From c5b07ddc01ed3c18641a41f30396a57dc596d5ec Mon Sep 17 00:00:00 2001 From: Lukas Weiss Date: Fri, 24 Apr 2026 20:55:50 +0200 Subject: [PATCH 1/2] switch to esm --- generator.js | 10 +++++----- package.json | 1 + tsconfig.json | 6 +++--- 3 files changed, 9 insertions(+), 8 deletions(-) diff --git a/generator.js b/generator.js index c5ba45664..c288cebb9 100644 --- a/generator.js +++ b/generator.js @@ -1,6 +1,6 @@ -const fs = require('fs') -const path = require('path') -const axios = require('axios') +import fs from 'fs' +import path from 'path' +import axios from 'axios' const GOOGLE_FONTS_URL = 'https://fonts.google.com/metadata/icons?key=material_symbols&incomplete=true' @@ -41,7 +41,7 @@ function generatePropsFile() { } ` - fs.writeFileSync(path.join(__dirname, 'src', 'types.ts'), typesFile) + fs.writeFileSync(path.join(import.meta.dirname, 'src', 'types.ts'), typesFile) } async function generateComponentsForAllFamilies(icon) { @@ -64,7 +64,7 @@ async function generateComponent(icon, family, filled = false) { console.log(`Downloading ${name}`) await fs.writeFileSync( - path.join(__dirname, 'src', `${name}.tsx`), + path.join(import.meta.dirname, 'src', `${name}.tsx`), mapSVGToTemplate(name, svg), ) } catch { diff --git a/package.json b/package.json index 886f2ed17..ce8f5ac1b 100644 --- a/package.json +++ b/package.json @@ -18,6 +18,7 @@ "react" ], "private": false, + "type": "module", "publishConfig": { "access": "public" }, diff --git a/tsconfig.json b/tsconfig.json index 0ced7aced..74531f4c1 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,9 +1,9 @@ { "compilerOptions": { - "module": "CommonJS", - "target": "ES5", + "module": "ES2020", + "target": "ES2020", "jsx": "react", - "moduleResolution": "Node", + "moduleResolution": "Bundler", "esModuleInterop": true, "outDir": "./dist", "declaration": true, From 3402b67393cdaaa1714ddf6b5d73cc272dc34961 Mon Sep 17 00:00:00 2001 From: Lukas Weiss Date: Fri, 24 Apr 2026 22:52:19 +0200 Subject: [PATCH 2/2] fix default exports --- generator.js | 2 +- src/Icon10kOutlined.tsx | 2 +- src/Icon10kOutlinedFilled.tsx | 2 +- src/Icon10kRounded.tsx | 2 +- src/Icon10kRoundedFilled.tsx | 2 +- src/Icon10kSharp.tsx | 2 +- src/Icon10kSharpFilled.tsx | 2 +- src/Icon10mpOutlined.tsx | 2 +- src/Icon10mpOutlinedFilled.tsx | 2 +- src/Icon10mpRounded.tsx | 2 +- src/Icon10mpRoundedFilled.tsx | 2 +- src/Icon10mpSharp.tsx | 2 +- src/Icon10mpSharpFilled.tsx | 2 +- src/Icon11mpOutlined.tsx | 2 +- src/Icon11mpOutlinedFilled.tsx | 2 +- src/Icon11mpRounded.tsx | 2 +- src/Icon11mpRoundedFilled.tsx | 2 +- src/Icon11mpSharp.tsx | 2 +- src/Icon11mpSharpFilled.tsx | 2 +- src/Icon123Outlined.tsx | 2 +- src/Icon123OutlinedFilled.tsx | 2 +- src/Icon123Rounded.tsx | 2 +- src/Icon123RoundedFilled.tsx | 2 +- src/Icon123Sharp.tsx | 2 +- src/Icon123SharpFilled.tsx | 2 +- src/Icon12mpOutlined.tsx | 2 +- src/Icon12mpOutlinedFilled.tsx | 2 +- src/Icon12mpRounded.tsx | 2 +- src/Icon12mpRoundedFilled.tsx | 2 +- src/Icon12mpSharp.tsx | 2 +- src/Icon12mpSharpFilled.tsx | 2 +- src/Icon13mpOutlined.tsx | 2 +- src/Icon13mpOutlinedFilled.tsx | 2 +- src/Icon13mpRounded.tsx | 2 +- src/Icon13mpRoundedFilled.tsx | 2 +- src/Icon13mpSharp.tsx | 2 +- src/Icon13mpSharpFilled.tsx | 2 +- src/Icon14mpOutlined.tsx | 2 +- src/Icon14mpOutlinedFilled.tsx | 2 +- src/Icon14mpRounded.tsx | 2 +- src/Icon14mpRoundedFilled.tsx | 2 +- src/Icon14mpSharp.tsx | 2 +- src/Icon14mpSharpFilled.tsx | 2 +- src/Icon15mpOutlined.tsx | 2 +- src/Icon15mpOutlinedFilled.tsx | 2 +- src/Icon15mpRounded.tsx | 2 +- src/Icon15mpRoundedFilled.tsx | 2 +- src/Icon15mpSharp.tsx | 2 +- src/Icon15mpSharpFilled.tsx | 2 +- src/Icon16mpOutlined.tsx | 2 +- src/Icon16mpOutlinedFilled.tsx | 2 +- src/Icon16mpRounded.tsx | 2 +- src/Icon16mpRoundedFilled.tsx | 2 +- src/Icon16mpSharp.tsx | 2 +- src/Icon16mpSharpFilled.tsx | 2 +- src/Icon17mpOutlined.tsx | 2 +- src/Icon17mpOutlinedFilled.tsx | 2 +- src/Icon17mpRounded.tsx | 2 +- src/Icon17mpRoundedFilled.tsx | 2 +- src/Icon17mpSharp.tsx | 2 +- src/Icon17mpSharpFilled.tsx | 2 +- src/Icon18UpRatingOutlined.tsx | 2 +- src/Icon18UpRatingOutlinedFilled.tsx | 2 +- src/Icon18UpRatingRounded.tsx | 2 +- src/Icon18UpRatingRoundedFilled.tsx | 2 +- src/Icon18UpRatingSharp.tsx | 2 +- src/Icon18UpRatingSharpFilled.tsx | 2 +- src/Icon18mpOutlined.tsx | 2 +- src/Icon18mpOutlinedFilled.tsx | 2 +- src/Icon18mpRounded.tsx | 2 +- src/Icon18mpRoundedFilled.tsx | 2 +- src/Icon18mpSharp.tsx | 2 +- src/Icon18mpSharpFilled.tsx | 2 +- src/Icon19mpOutlined.tsx | 2 +- src/Icon19mpOutlinedFilled.tsx | 2 +- src/Icon19mpRounded.tsx | 2 +- src/Icon19mpRoundedFilled.tsx | 2 +- src/Icon19mpSharp.tsx | 2 +- src/Icon19mpSharpFilled.tsx | 2 +- src/Icon1kOutlined.tsx | 2 +- src/Icon1kOutlinedFilled.tsx | 2 +- src/Icon1kPlusOutlined.tsx | 2 +- src/Icon1kPlusOutlinedFilled.tsx | 2 +- src/Icon1kPlusRounded.tsx | 2 +- src/Icon1kPlusRoundedFilled.tsx | 2 +- src/Icon1kPlusSharp.tsx | 2 +- src/Icon1kPlusSharpFilled.tsx | 2 +- src/Icon1kRounded.tsx | 2 +- src/Icon1kRoundedFilled.tsx | 2 +- src/Icon1kSharp.tsx | 2 +- src/Icon1kSharpFilled.tsx | 2 +- src/Icon1xMobiledataBadgeOutlined.tsx | 2 +- src/Icon1xMobiledataBadgeOutlinedFilled.tsx | 2 +- src/Icon1xMobiledataBadgeRounded.tsx | 2 +- src/Icon1xMobiledataBadgeRoundedFilled.tsx | 2 +- src/Icon1xMobiledataBadgeSharp.tsx | 2 +- src/Icon1xMobiledataBadgeSharpFilled.tsx | 2 +- src/Icon1xMobiledataOutlined.tsx | 2 +- src/Icon1xMobiledataOutlinedFilled.tsx | 2 +- src/Icon1xMobiledataRounded.tsx | 2 +- src/Icon1xMobiledataRoundedFilled.tsx | 2 +- src/Icon1xMobiledataSharp.tsx | 2 +- src/Icon1xMobiledataSharpFilled.tsx | 2 +- src/Icon20mpOutlined.tsx | 2 +- src/Icon20mpOutlinedFilled.tsx | 2 +- src/Icon20mpRounded.tsx | 2 +- src/Icon20mpRoundedFilled.tsx | 2 +- src/Icon20mpSharp.tsx | 2 +- src/Icon20mpSharpFilled.tsx | 2 +- src/Icon21mpOutlined.tsx | 2 +- src/Icon21mpOutlinedFilled.tsx | 2 +- src/Icon21mpRounded.tsx | 2 +- src/Icon21mpRoundedFilled.tsx | 2 +- src/Icon21mpSharp.tsx | 2 +- src/Icon21mpSharpFilled.tsx | 2 +- src/Icon22mpOutlined.tsx | 2 +- src/Icon22mpOutlinedFilled.tsx | 2 +- src/Icon22mpRounded.tsx | 2 +- src/Icon22mpRoundedFilled.tsx | 2 +- src/Icon22mpSharp.tsx | 2 +- src/Icon22mpSharpFilled.tsx | 2 +- src/Icon23mpOutlined.tsx | 2 +- src/Icon23mpOutlinedFilled.tsx | 2 +- src/Icon23mpRounded.tsx | 2 +- src/Icon23mpRoundedFilled.tsx | 2 +- src/Icon23mpSharp.tsx | 2 +- src/Icon23mpSharpFilled.tsx | 2 +- src/Icon24fpsSelectOutlined.tsx | 2 +- src/Icon24fpsSelectOutlinedFilled.tsx | 2 +- src/Icon24fpsSelectRounded.tsx | 2 +- src/Icon24fpsSelectRoundedFilled.tsx | 2 +- src/Icon24fpsSelectSharp.tsx | 2 +- src/Icon24fpsSelectSharpFilled.tsx | 2 +- src/Icon24mpOutlined.tsx | 2 +- src/Icon24mpOutlinedFilled.tsx | 2 +- src/Icon24mpRounded.tsx | 2 +- src/Icon24mpRoundedFilled.tsx | 2 +- src/Icon24mpSharp.tsx | 2 +- src/Icon24mpSharpFilled.tsx | 2 +- src/Icon2dOutlined.tsx | 2 +- src/Icon2dOutlinedFilled.tsx | 2 +- src/Icon2dRounded.tsx | 2 +- src/Icon2dRoundedFilled.tsx | 2 +- src/Icon2dSharp.tsx | 2 +- src/Icon2dSharpFilled.tsx | 2 +- src/Icon2kOutlined.tsx | 2 +- src/Icon2kOutlinedFilled.tsx | 2 +- src/Icon2kPlusOutlined.tsx | 2 +- src/Icon2kPlusOutlinedFilled.tsx | 2 +- src/Icon2kPlusRounded.tsx | 2 +- src/Icon2kPlusRoundedFilled.tsx | 2 +- src/Icon2kPlusSharp.tsx | 2 +- src/Icon2kPlusSharpFilled.tsx | 2 +- src/Icon2kRounded.tsx | 2 +- src/Icon2kRoundedFilled.tsx | 2 +- src/Icon2kSharp.tsx | 2 +- src/Icon2kSharpFilled.tsx | 2 +- src/Icon2mpOutlined.tsx | 2 +- src/Icon2mpOutlinedFilled.tsx | 2 +- src/Icon2mpRounded.tsx | 2 +- src/Icon2mpRoundedFilled.tsx | 2 +- src/Icon2mpSharp.tsx | 2 +- src/Icon2mpSharpFilled.tsx | 2 +- src/Icon30fpsOutlined.tsx | 2 +- src/Icon30fpsOutlinedFilled.tsx | 2 +- src/Icon30fpsRounded.tsx | 2 +- src/Icon30fpsRoundedFilled.tsx | 2 +- src/Icon30fpsSelectOutlined.tsx | 2 +- src/Icon30fpsSelectOutlinedFilled.tsx | 2 +- src/Icon30fpsSelectRounded.tsx | 2 +- src/Icon30fpsSelectRoundedFilled.tsx | 2 +- src/Icon30fpsSelectSharp.tsx | 2 +- src/Icon30fpsSelectSharpFilled.tsx | 2 +- src/Icon30fpsSharp.tsx | 2 +- src/Icon30fpsSharpFilled.tsx | 2 +- src/Icon360Outlined.tsx | 2 +- src/Icon360OutlinedFilled.tsx | 2 +- src/Icon360Rounded.tsx | 2 +- src/Icon360RoundedFilled.tsx | 2 +- src/Icon360Sharp.tsx | 2 +- src/Icon360SharpFilled.tsx | 2 +- src/Icon3dRotationOutlined.tsx | 2 +- src/Icon3dRotationOutlinedFilled.tsx | 2 +- src/Icon3dRotationRounded.tsx | 2 +- src/Icon3dRotationRoundedFilled.tsx | 2 +- src/Icon3dRotationSharp.tsx | 2 +- src/Icon3dRotationSharpFilled.tsx | 2 +- src/Icon3gMobiledataBadgeOutlined.tsx | 2 +- src/Icon3gMobiledataBadgeOutlinedFilled.tsx | 2 +- src/Icon3gMobiledataBadgeRounded.tsx | 2 +- src/Icon3gMobiledataBadgeRoundedFilled.tsx | 2 +- src/Icon3gMobiledataBadgeSharp.tsx | 2 +- src/Icon3gMobiledataBadgeSharpFilled.tsx | 2 +- src/Icon3gMobiledataOutlined.tsx | 2 +- src/Icon3gMobiledataOutlinedFilled.tsx | 2 +- src/Icon3gMobiledataRounded.tsx | 2 +- src/Icon3gMobiledataRoundedFilled.tsx | 2 +- src/Icon3gMobiledataSharp.tsx | 2 +- src/Icon3gMobiledataSharpFilled.tsx | 2 +- src/Icon3kOutlined.tsx | 2 +- src/Icon3kOutlinedFilled.tsx | 2 +- src/Icon3kPlusOutlined.tsx | 2 +- src/Icon3kPlusOutlinedFilled.tsx | 2 +- src/Icon3kPlusRounded.tsx | 2 +- src/Icon3kPlusRoundedFilled.tsx | 2 +- src/Icon3kPlusSharp.tsx | 2 +- src/Icon3kPlusSharpFilled.tsx | 2 +- src/Icon3kRounded.tsx | 2 +- src/Icon3kRoundedFilled.tsx | 2 +- src/Icon3kSharp.tsx | 2 +- src/Icon3kSharpFilled.tsx | 2 +- src/Icon3mpOutlined.tsx | 2 +- src/Icon3mpOutlinedFilled.tsx | 2 +- src/Icon3mpRounded.tsx | 2 +- src/Icon3mpRoundedFilled.tsx | 2 +- src/Icon3mpSharp.tsx | 2 +- src/Icon3mpSharpFilled.tsx | 2 +- src/Icon3pOutlined.tsx | 2 +- src/Icon3pOutlinedFilled.tsx | 2 +- src/Icon3pRounded.tsx | 2 +- src/Icon3pRoundedFilled.tsx | 2 +- src/Icon3pSharp.tsx | 2 +- src/Icon3pSharpFilled.tsx | 2 +- src/Icon4gMobiledataBadgeOutlined.tsx | 2 +- src/Icon4gMobiledataBadgeOutlinedFilled.tsx | 2 +- src/Icon4gMobiledataBadgeRounded.tsx | 2 +- src/Icon4gMobiledataBadgeRoundedFilled.tsx | 2 +- src/Icon4gMobiledataBadgeSharp.tsx | 2 +- src/Icon4gMobiledataBadgeSharpFilled.tsx | 2 +- src/Icon4gMobiledataOutlined.tsx | 2 +- src/Icon4gMobiledataOutlinedFilled.tsx | 2 +- src/Icon4gMobiledataRounded.tsx | 2 +- src/Icon4gMobiledataRoundedFilled.tsx | 2 +- src/Icon4gMobiledataSharp.tsx | 2 +- src/Icon4gMobiledataSharpFilled.tsx | 2 +- src/Icon4gPlusMobiledataOutlined.tsx | 2 +- src/Icon4gPlusMobiledataOutlinedFilled.tsx | 2 +- src/Icon4gPlusMobiledataRounded.tsx | 2 +- src/Icon4gPlusMobiledataRoundedFilled.tsx | 2 +- src/Icon4gPlusMobiledataSharp.tsx | 2 +- src/Icon4gPlusMobiledataSharpFilled.tsx | 2 +- src/Icon4kOutlined.tsx | 2 +- src/Icon4kOutlinedFilled.tsx | 2 +- src/Icon4kPlusOutlined.tsx | 2 +- src/Icon4kPlusOutlinedFilled.tsx | 2 +- src/Icon4kPlusRounded.tsx | 2 +- src/Icon4kPlusRoundedFilled.tsx | 2 +- src/Icon4kPlusSharp.tsx | 2 +- src/Icon4kPlusSharpFilled.tsx | 2 +- src/Icon4kRounded.tsx | 2 +- src/Icon4kRoundedFilled.tsx | 2 +- src/Icon4kSharp.tsx | 2 +- src/Icon4kSharpFilled.tsx | 2 +- src/Icon4mpOutlined.tsx | 2 +- src/Icon4mpOutlinedFilled.tsx | 2 +- src/Icon4mpRounded.tsx | 2 +- src/Icon4mpRoundedFilled.tsx | 2 +- src/Icon4mpSharp.tsx | 2 +- src/Icon4mpSharpFilled.tsx | 2 +- src/Icon50mpOutlined.tsx | 2 +- src/Icon50mpOutlinedFilled.tsx | 2 +- src/Icon50mpRounded.tsx | 2 +- src/Icon50mpRoundedFilled.tsx | 2 +- src/Icon50mpSharp.tsx | 2 +- src/Icon50mpSharpFilled.tsx | 2 +- src/Icon5gMobiledataBadgeOutlined.tsx | 2 +- src/Icon5gMobiledataBadgeOutlinedFilled.tsx | 2 +- src/Icon5gMobiledataBadgeRounded.tsx | 2 +- src/Icon5gMobiledataBadgeRoundedFilled.tsx | 2 +- src/Icon5gMobiledataBadgeSharp.tsx | 2 +- src/Icon5gMobiledataBadgeSharpFilled.tsx | 2 +- src/Icon5gOutlined.tsx | 2 +- src/Icon5gOutlinedFilled.tsx | 2 +- src/Icon5gRounded.tsx | 2 +- src/Icon5gRoundedFilled.tsx | 2 +- src/Icon5gSharp.tsx | 2 +- src/Icon5gSharpFilled.tsx | 2 +- src/Icon5kOutlined.tsx | 2 +- src/Icon5kOutlinedFilled.tsx | 2 +- src/Icon5kPlusOutlined.tsx | 2 +- src/Icon5kPlusOutlinedFilled.tsx | 2 +- src/Icon5kPlusRounded.tsx | 2 +- src/Icon5kPlusRoundedFilled.tsx | 2 +- src/Icon5kPlusSharp.tsx | 2 +- src/Icon5kPlusSharpFilled.tsx | 2 +- src/Icon5kRounded.tsx | 2 +- src/Icon5kRoundedFilled.tsx | 2 +- src/Icon5kSharp.tsx | 2 +- src/Icon5kSharpFilled.tsx | 2 +- src/Icon5mpOutlined.tsx | 2 +- src/Icon5mpOutlinedFilled.tsx | 2 +- src/Icon5mpRounded.tsx | 2 +- src/Icon5mpRoundedFilled.tsx | 2 +- src/Icon5mpSharp.tsx | 2 +- src/Icon5mpSharpFilled.tsx | 2 +- src/Icon60fpsOutlined.tsx | 2 +- src/Icon60fpsOutlinedFilled.tsx | 2 +- src/Icon60fpsRounded.tsx | 2 +- src/Icon60fpsRoundedFilled.tsx | 2 +- src/Icon60fpsSelectOutlined.tsx | 2 +- src/Icon60fpsSelectOutlinedFilled.tsx | 2 +- src/Icon60fpsSelectRounded.tsx | 2 +- src/Icon60fpsSelectRoundedFilled.tsx | 2 +- src/Icon60fpsSelectSharp.tsx | 2 +- src/Icon60fpsSelectSharpFilled.tsx | 2 +- src/Icon60fpsSharp.tsx | 2 +- src/Icon60fpsSharpFilled.tsx | 2 +- src/Icon6FtApartOutlined.tsx | 2 +- src/Icon6FtApartOutlinedFilled.tsx | 2 +- src/Icon6FtApartRounded.tsx | 2 +- src/Icon6FtApartRoundedFilled.tsx | 2 +- src/Icon6FtApartSharp.tsx | 2 +- src/Icon6FtApartSharpFilled.tsx | 2 +- src/Icon6kOutlined.tsx | 2 +- src/Icon6kOutlinedFilled.tsx | 2 +- src/Icon6kPlusOutlined.tsx | 2 +- src/Icon6kPlusOutlinedFilled.tsx | 2 +- src/Icon6kPlusRounded.tsx | 2 +- src/Icon6kPlusRoundedFilled.tsx | 2 +- src/Icon6kPlusSharp.tsx | 2 +- src/Icon6kPlusSharpFilled.tsx | 2 +- src/Icon6kRounded.tsx | 2 +- src/Icon6kRoundedFilled.tsx | 2 +- src/Icon6kSharp.tsx | 2 +- src/Icon6kSharpFilled.tsx | 2 +- src/Icon6mpOutlined.tsx | 2 +- src/Icon6mpOutlinedFilled.tsx | 2 +- src/Icon6mpRounded.tsx | 2 +- src/Icon6mpRoundedFilled.tsx | 2 +- src/Icon6mpSharp.tsx | 2 +- src/Icon6mpSharpFilled.tsx | 2 +- src/Icon7kOutlined.tsx | 2 +- src/Icon7kOutlinedFilled.tsx | 2 +- src/Icon7kPlusOutlined.tsx | 2 +- src/Icon7kPlusOutlinedFilled.tsx | 2 +- src/Icon7kPlusRounded.tsx | 2 +- src/Icon7kPlusRoundedFilled.tsx | 2 +- src/Icon7kPlusSharp.tsx | 2 +- src/Icon7kPlusSharpFilled.tsx | 2 +- src/Icon7kRounded.tsx | 2 +- src/Icon7kRoundedFilled.tsx | 2 +- src/Icon7kSharp.tsx | 2 +- src/Icon7kSharpFilled.tsx | 2 +- src/Icon7mpOutlined.tsx | 2 +- src/Icon7mpOutlinedFilled.tsx | 2 +- src/Icon7mpRounded.tsx | 2 +- src/Icon7mpRoundedFilled.tsx | 2 +- src/Icon7mpSharp.tsx | 2 +- src/Icon7mpSharpFilled.tsx | 2 +- src/Icon8kOutlined.tsx | 2 +- src/Icon8kOutlinedFilled.tsx | 2 +- src/Icon8kPlusOutlined.tsx | 2 +- src/Icon8kPlusOutlinedFilled.tsx | 2 +- src/Icon8kPlusRounded.tsx | 2 +- src/Icon8kPlusRoundedFilled.tsx | 2 +- src/Icon8kPlusSharp.tsx | 2 +- src/Icon8kPlusSharpFilled.tsx | 2 +- src/Icon8kRounded.tsx | 2 +- src/Icon8kRoundedFilled.tsx | 2 +- src/Icon8kSharp.tsx | 2 +- src/Icon8kSharpFilled.tsx | 2 +- src/Icon8mpOutlined.tsx | 2 +- src/Icon8mpOutlinedFilled.tsx | 2 +- src/Icon8mpRounded.tsx | 2 +- src/Icon8mpRoundedFilled.tsx | 2 +- src/Icon8mpSharp.tsx | 2 +- src/Icon8mpSharpFilled.tsx | 2 +- src/Icon9kOutlined.tsx | 2 +- src/Icon9kOutlinedFilled.tsx | 2 +- src/Icon9kPlusOutlined.tsx | 2 +- src/Icon9kPlusOutlinedFilled.tsx | 2 +- src/Icon9kPlusRounded.tsx | 2 +- src/Icon9kPlusRoundedFilled.tsx | 2 +- src/Icon9kPlusSharp.tsx | 2 +- src/Icon9kPlusSharpFilled.tsx | 2 +- src/Icon9kRounded.tsx | 2 +- src/Icon9kRoundedFilled.tsx | 2 +- src/Icon9kSharp.tsx | 2 +- src/Icon9kSharpFilled.tsx | 2 +- src/Icon9mpOutlined.tsx | 2 +- src/Icon9mpOutlinedFilled.tsx | 2 +- src/Icon9mpRounded.tsx | 2 +- src/Icon9mpRoundedFilled.tsx | 2 +- src/Icon9mpSharp.tsx | 2 +- src/Icon9mpSharpFilled.tsx | 2 +- src/IconAbcOutlined.tsx | 2 +- src/IconAbcOutlinedFilled.tsx | 2 +- src/IconAbcRounded.tsx | 2 +- src/IconAbcRoundedFilled.tsx | 2 +- src/IconAbcSharp.tsx | 2 +- src/IconAbcSharpFilled.tsx | 2 +- src/IconAcUnitOutlined.tsx | 2 +- src/IconAcUnitOutlinedFilled.tsx | 2 +- src/IconAcUnitRounded.tsx | 2 +- src/IconAcUnitRoundedFilled.tsx | 2 +- src/IconAcUnitSharp.tsx | 2 +- src/IconAcUnitSharpFilled.tsx | 2 +- src/IconAccessibilityNewOutlined.tsx | 2 +- src/IconAccessibilityNewOutlinedFilled.tsx | 2 +- src/IconAccessibilityNewRounded.tsx | 2 +- src/IconAccessibilityNewRoundedFilled.tsx | 2 +- src/IconAccessibilityNewSharp.tsx | 2 +- src/IconAccessibilityNewSharpFilled.tsx | 2 +- src/IconAccessibilityOutlined.tsx | 2 +- src/IconAccessibilityOutlinedFilled.tsx | 2 +- src/IconAccessibilityRounded.tsx | 2 +- src/IconAccessibilityRoundedFilled.tsx | 2 +- src/IconAccessibilitySharp.tsx | 2 +- src/IconAccessibilitySharpFilled.tsx | 2 +- src/IconAccessibleForwardOutlined.tsx | 2 +- src/IconAccessibleForwardOutlinedFilled.tsx | 2 +- src/IconAccessibleForwardRounded.tsx | 2 +- src/IconAccessibleForwardRoundedFilled.tsx | 2 +- src/IconAccessibleForwardSharp.tsx | 2 +- src/IconAccessibleForwardSharpFilled.tsx | 2 +- src/IconAccessibleOutlined.tsx | 2 +- src/IconAccessibleOutlinedFilled.tsx | 2 +- src/IconAccessibleRounded.tsx | 2 +- src/IconAccessibleRoundedFilled.tsx | 2 +- src/IconAccessibleSharp.tsx | 2 +- src/IconAccessibleSharpFilled.tsx | 2 +- src/IconAccountBalanceOutlined.tsx | 2 +- src/IconAccountBalanceOutlinedFilled.tsx | 2 +- src/IconAccountBalanceRounded.tsx | 2 +- src/IconAccountBalanceRoundedFilled.tsx | 2 +- src/IconAccountBalanceSharp.tsx | 2 +- src/IconAccountBalanceSharpFilled.tsx | 2 +- src/IconAccountBalanceWalletOutlined.tsx | 2 +- src/IconAccountBalanceWalletOutlinedFilled.tsx | 2 +- src/IconAccountBalanceWalletRounded.tsx | 2 +- src/IconAccountBalanceWalletRoundedFilled.tsx | 2 +- src/IconAccountBalanceWalletSharp.tsx | 2 +- src/IconAccountBalanceWalletSharpFilled.tsx | 2 +- src/IconAccountBoxOutlined.tsx | 2 +- src/IconAccountBoxOutlinedFilled.tsx | 2 +- src/IconAccountBoxRounded.tsx | 2 +- src/IconAccountBoxRoundedFilled.tsx | 2 +- src/IconAccountBoxSharp.tsx | 2 +- src/IconAccountBoxSharpFilled.tsx | 2 +- src/IconAccountChildInvertOutlined.tsx | 2 +- src/IconAccountChildInvertOutlinedFilled.tsx | 2 +- src/IconAccountChildInvertRounded.tsx | 2 +- src/IconAccountChildInvertRoundedFilled.tsx | 2 +- src/IconAccountChildInvertSharp.tsx | 2 +- src/IconAccountChildInvertSharpFilled.tsx | 2 +- src/IconAccountChildOutlined.tsx | 2 +- src/IconAccountChildOutlinedFilled.tsx | 2 +- src/IconAccountChildRounded.tsx | 2 +- src/IconAccountChildRoundedFilled.tsx | 2 +- src/IconAccountChildSharp.tsx | 2 +- src/IconAccountChildSharpFilled.tsx | 2 +- src/IconAccountCircleOffOutlined.tsx | 2 +- src/IconAccountCircleOffOutlinedFilled.tsx | 2 +- src/IconAccountCircleOffRounded.tsx | 2 +- src/IconAccountCircleOffRoundedFilled.tsx | 2 +- src/IconAccountCircleOffSharp.tsx | 2 +- src/IconAccountCircleOffSharpFilled.tsx | 2 +- src/IconAccountCircleOutlined.tsx | 2 +- src/IconAccountCircleOutlinedFilled.tsx | 2 +- src/IconAccountCircleRounded.tsx | 2 +- src/IconAccountCircleRoundedFilled.tsx | 2 +- src/IconAccountCircleSharp.tsx | 2 +- src/IconAccountCircleSharpFilled.tsx | 2 +- src/IconAccountTreeOutlined.tsx | 2 +- src/IconAccountTreeOutlinedFilled.tsx | 2 +- src/IconAccountTreeRounded.tsx | 2 +- src/IconAccountTreeRoundedFilled.tsx | 2 +- src/IconAccountTreeSharp.tsx | 2 +- src/IconAccountTreeSharpFilled.tsx | 2 +- src/IconActionKeyOutlined.tsx | 2 +- src/IconActionKeyOutlinedFilled.tsx | 2 +- src/IconActionKeyRounded.tsx | 2 +- src/IconActionKeyRoundedFilled.tsx | 2 +- src/IconActionKeySharp.tsx | 2 +- src/IconActionKeySharpFilled.tsx | 2 +- src/IconActivityZoneOutlined.tsx | 2 +- src/IconActivityZoneOutlinedFilled.tsx | 2 +- src/IconActivityZoneRounded.tsx | 2 +- src/IconActivityZoneRoundedFilled.tsx | 2 +- src/IconActivityZoneSharp.tsx | 2 +- src/IconActivityZoneSharpFilled.tsx | 2 +- src/IconAcuteOutlined.tsx | 2 +- src/IconAcuteOutlinedFilled.tsx | 2 +- src/IconAcuteRounded.tsx | 2 +- src/IconAcuteRoundedFilled.tsx | 2 +- src/IconAcuteSharp.tsx | 2 +- src/IconAcuteSharpFilled.tsx | 2 +- src/IconAdGroupOffOutlined.tsx | 2 +- src/IconAdGroupOffOutlinedFilled.tsx | 2 +- src/IconAdGroupOffRounded.tsx | 2 +- src/IconAdGroupOffRoundedFilled.tsx | 2 +- src/IconAdGroupOffSharp.tsx | 2 +- src/IconAdGroupOffSharpFilled.tsx | 2 +- src/IconAdGroupOutlined.tsx | 2 +- src/IconAdGroupOutlinedFilled.tsx | 2 +- src/IconAdGroupRounded.tsx | 2 +- src/IconAdGroupRoundedFilled.tsx | 2 +- src/IconAdGroupSharp.tsx | 2 +- src/IconAdGroupSharpFilled.tsx | 2 +- src/IconAdOffOutlined.tsx | 2 +- src/IconAdOffOutlinedFilled.tsx | 2 +- src/IconAdOffRounded.tsx | 2 +- src/IconAdOffRoundedFilled.tsx | 2 +- src/IconAdOffSharp.tsx | 2 +- src/IconAdOffSharpFilled.tsx | 2 +- src/IconAdOutlined.tsx | 2 +- src/IconAdOutlinedFilled.tsx | 2 +- src/IconAdRounded.tsx | 2 +- src/IconAdRoundedFilled.tsx | 2 +- src/IconAdSharp.tsx | 2 +- src/IconAdSharpFilled.tsx | 2 +- src/IconAdUnitsOutlined.tsx | 2 +- src/IconAdUnitsOutlinedFilled.tsx | 2 +- src/IconAdUnitsRounded.tsx | 2 +- src/IconAdUnitsRoundedFilled.tsx | 2 +- src/IconAdUnitsSharp.tsx | 2 +- src/IconAdUnitsSharpFilled.tsx | 2 +- src/IconAdaptiveAudioMicOffOutlined.tsx | 2 +- src/IconAdaptiveAudioMicOffOutlinedFilled.tsx | 2 +- src/IconAdaptiveAudioMicOffRounded.tsx | 2 +- src/IconAdaptiveAudioMicOffRoundedFilled.tsx | 2 +- src/IconAdaptiveAudioMicOffSharp.tsx | 2 +- src/IconAdaptiveAudioMicOffSharpFilled.tsx | 2 +- src/IconAdaptiveAudioMicOutlined.tsx | 2 +- src/IconAdaptiveAudioMicOutlinedFilled.tsx | 2 +- src/IconAdaptiveAudioMicRounded.tsx | 2 +- src/IconAdaptiveAudioMicRoundedFilled.tsx | 2 +- src/IconAdaptiveAudioMicSharp.tsx | 2 +- src/IconAdaptiveAudioMicSharpFilled.tsx | 2 +- src/IconAdbOutlined.tsx | 2 +- src/IconAdbOutlinedFilled.tsx | 2 +- src/IconAdbRounded.tsx | 2 +- src/IconAdbRoundedFilled.tsx | 2 +- src/IconAdbSharp.tsx | 2 +- src/IconAdbSharpFilled.tsx | 2 +- src/IconAddAPhotoOutlined.tsx | 2 +- src/IconAddAPhotoOutlinedFilled.tsx | 2 +- src/IconAddAPhotoRounded.tsx | 2 +- src/IconAddAPhotoRoundedFilled.tsx | 2 +- src/IconAddAPhotoSharp.tsx | 2 +- src/IconAddAPhotoSharpFilled.tsx | 2 +- src/IconAddAdOutlined.tsx | 2 +- src/IconAddAdOutlinedFilled.tsx | 2 +- src/IconAddAdRounded.tsx | 2 +- src/IconAddAdRoundedFilled.tsx | 2 +- src/IconAddAdSharp.tsx | 2 +- src/IconAddAdSharpFilled.tsx | 2 +- src/IconAddAlertOutlined.tsx | 2 +- src/IconAddAlertOutlinedFilled.tsx | 2 +- src/IconAddAlertRounded.tsx | 2 +- src/IconAddAlertRoundedFilled.tsx | 2 +- src/IconAddAlertSharp.tsx | 2 +- src/IconAddAlertSharpFilled.tsx | 2 +- src/IconAddBoxOutlined.tsx | 2 +- src/IconAddBoxOutlinedFilled.tsx | 2 +- src/IconAddBoxRounded.tsx | 2 +- src/IconAddBoxRoundedFilled.tsx | 2 +- src/IconAddBoxSharp.tsx | 2 +- src/IconAddBoxSharpFilled.tsx | 2 +- src/IconAddBusinessOutlined.tsx | 2 +- src/IconAddBusinessOutlinedFilled.tsx | 2 +- src/IconAddBusinessRounded.tsx | 2 +- src/IconAddBusinessRoundedFilled.tsx | 2 +- src/IconAddBusinessSharp.tsx | 2 +- src/IconAddBusinessSharpFilled.tsx | 2 +- src/IconAddCallOutlined.tsx | 2 +- src/IconAddCallOutlinedFilled.tsx | 2 +- src/IconAddCallRounded.tsx | 2 +- src/IconAddCallRoundedFilled.tsx | 2 +- src/IconAddCallSharp.tsx | 2 +- src/IconAddCallSharpFilled.tsx | 2 +- src/IconAddCardOutlined.tsx | 2 +- src/IconAddCardOutlinedFilled.tsx | 2 +- src/IconAddCardRounded.tsx | 2 +- src/IconAddCardRoundedFilled.tsx | 2 +- src/IconAddCardSharp.tsx | 2 +- src/IconAddCardSharpFilled.tsx | 2 +- src/IconAddChartOutlined.tsx | 2 +- src/IconAddChartOutlinedFilled.tsx | 2 +- src/IconAddChartRounded.tsx | 2 +- src/IconAddChartRoundedFilled.tsx | 2 +- src/IconAddChartSharp.tsx | 2 +- src/IconAddChartSharpFilled.tsx | 2 +- src/IconAddCircleOutlined.tsx | 2 +- src/IconAddCircleOutlinedFilled.tsx | 2 +- src/IconAddCircleRounded.tsx | 2 +- src/IconAddCircleRoundedFilled.tsx | 2 +- src/IconAddCircleSharp.tsx | 2 +- src/IconAddCircleSharpFilled.tsx | 2 +- src/IconAddColumnLeftOutlined.tsx | 2 +- src/IconAddColumnLeftOutlinedFilled.tsx | 2 +- src/IconAddColumnLeftRounded.tsx | 2 +- src/IconAddColumnLeftRoundedFilled.tsx | 2 +- src/IconAddColumnLeftSharp.tsx | 2 +- src/IconAddColumnLeftSharpFilled.tsx | 2 +- src/IconAddColumnRightOutlined.tsx | 2 +- src/IconAddColumnRightOutlinedFilled.tsx | 2 +- src/IconAddColumnRightRounded.tsx | 2 +- src/IconAddColumnRightRoundedFilled.tsx | 2 +- src/IconAddColumnRightSharp.tsx | 2 +- src/IconAddColumnRightSharpFilled.tsx | 2 +- src/IconAddCommentOutlined.tsx | 2 +- src/IconAddCommentOutlinedFilled.tsx | 2 +- src/IconAddCommentRounded.tsx | 2 +- src/IconAddCommentRoundedFilled.tsx | 2 +- src/IconAddCommentSharp.tsx | 2 +- src/IconAddCommentSharpFilled.tsx | 2 +- src/IconAddDiamondOutlined.tsx | 2 +- src/IconAddDiamondOutlinedFilled.tsx | 2 +- src/IconAddDiamondRounded.tsx | 2 +- src/IconAddDiamondRoundedFilled.tsx | 2 +- src/IconAddDiamondSharp.tsx | 2 +- src/IconAddDiamondSharpFilled.tsx | 2 +- src/IconAddHomeOutlined.tsx | 2 +- src/IconAddHomeOutlinedFilled.tsx | 2 +- src/IconAddHomeRounded.tsx | 2 +- src/IconAddHomeRoundedFilled.tsx | 2 +- src/IconAddHomeSharp.tsx | 2 +- src/IconAddHomeSharpFilled.tsx | 2 +- src/IconAddHomeWorkOutlined.tsx | 2 +- src/IconAddHomeWorkOutlinedFilled.tsx | 2 +- src/IconAddHomeWorkRounded.tsx | 2 +- src/IconAddHomeWorkRoundedFilled.tsx | 2 +- src/IconAddHomeWorkSharp.tsx | 2 +- src/IconAddHomeWorkSharpFilled.tsx | 2 +- src/IconAddLinkOutlined.tsx | 2 +- src/IconAddLinkOutlinedFilled.tsx | 2 +- src/IconAddLinkRounded.tsx | 2 +- src/IconAddLinkRoundedFilled.tsx | 2 +- src/IconAddLinkSharp.tsx | 2 +- src/IconAddLinkSharpFilled.tsx | 2 +- src/IconAddLocationAltOutlined.tsx | 2 +- src/IconAddLocationAltOutlinedFilled.tsx | 2 +- src/IconAddLocationAltRounded.tsx | 2 +- src/IconAddLocationAltRoundedFilled.tsx | 2 +- src/IconAddLocationAltSharp.tsx | 2 +- src/IconAddLocationAltSharpFilled.tsx | 2 +- src/IconAddLocationOutlined.tsx | 2 +- src/IconAddLocationOutlinedFilled.tsx | 2 +- src/IconAddLocationRounded.tsx | 2 +- src/IconAddLocationRoundedFilled.tsx | 2 +- src/IconAddLocationSharp.tsx | 2 +- src/IconAddLocationSharpFilled.tsx | 2 +- src/IconAddModeratorOutlined.tsx | 2 +- src/IconAddModeratorOutlinedFilled.tsx | 2 +- src/IconAddModeratorRounded.tsx | 2 +- src/IconAddModeratorRoundedFilled.tsx | 2 +- src/IconAddModeratorSharp.tsx | 2 +- src/IconAddModeratorSharpFilled.tsx | 2 +- src/IconAddNotesOutlined.tsx | 2 +- src/IconAddNotesOutlinedFilled.tsx | 2 +- src/IconAddNotesRounded.tsx | 2 +- src/IconAddNotesRoundedFilled.tsx | 2 +- src/IconAddNotesSharp.tsx | 2 +- src/IconAddNotesSharpFilled.tsx | 2 +- src/IconAddOutlined.tsx | 2 +- src/IconAddOutlinedFilled.tsx | 2 +- src/IconAddPhotoAlternateOutlined.tsx | 2 +- src/IconAddPhotoAlternateOutlinedFilled.tsx | 2 +- src/IconAddPhotoAlternateRounded.tsx | 2 +- src/IconAddPhotoAlternateRoundedFilled.tsx | 2 +- src/IconAddPhotoAlternateSharp.tsx | 2 +- src/IconAddPhotoAlternateSharpFilled.tsx | 2 +- src/IconAddReactionOutlined.tsx | 2 +- src/IconAddReactionOutlinedFilled.tsx | 2 +- src/IconAddReactionRounded.tsx | 2 +- src/IconAddReactionRoundedFilled.tsx | 2 +- src/IconAddReactionSharp.tsx | 2 +- src/IconAddReactionSharpFilled.tsx | 2 +- src/IconAddRoadOutlined.tsx | 2 +- src/IconAddRoadOutlinedFilled.tsx | 2 +- src/IconAddRoadRounded.tsx | 2 +- src/IconAddRoadRoundedFilled.tsx | 2 +- src/IconAddRoadSharp.tsx | 2 +- src/IconAddRoadSharpFilled.tsx | 2 +- src/IconAddRounded.tsx | 2 +- src/IconAddRoundedFilled.tsx | 2 +- src/IconAddRowAboveOutlined.tsx | 2 +- src/IconAddRowAboveOutlinedFilled.tsx | 2 +- src/IconAddRowAboveRounded.tsx | 2 +- src/IconAddRowAboveRoundedFilled.tsx | 2 +- src/IconAddRowAboveSharp.tsx | 2 +- src/IconAddRowAboveSharpFilled.tsx | 2 +- src/IconAddRowBelowOutlined.tsx | 2 +- src/IconAddRowBelowOutlinedFilled.tsx | 2 +- src/IconAddRowBelowRounded.tsx | 2 +- src/IconAddRowBelowRoundedFilled.tsx | 2 +- src/IconAddRowBelowSharp.tsx | 2 +- src/IconAddRowBelowSharpFilled.tsx | 2 +- src/IconAddSharp.tsx | 2 +- src/IconAddSharpFilled.tsx | 2 +- src/IconAddShoppingCartOutlined.tsx | 2 +- src/IconAddShoppingCartOutlinedFilled.tsx | 2 +- src/IconAddShoppingCartRounded.tsx | 2 +- src/IconAddShoppingCartRoundedFilled.tsx | 2 +- src/IconAddShoppingCartSharp.tsx | 2 +- src/IconAddShoppingCartSharpFilled.tsx | 2 +- src/IconAddTaskOutlined.tsx | 2 +- src/IconAddTaskOutlinedFilled.tsx | 2 +- src/IconAddTaskRounded.tsx | 2 +- src/IconAddTaskRoundedFilled.tsx | 2 +- src/IconAddTaskSharp.tsx | 2 +- src/IconAddTaskSharpFilled.tsx | 2 +- src/IconAddToDriveOutlined.tsx | 2 +- src/IconAddToDriveOutlinedFilled.tsx | 2 +- src/IconAddToDriveRounded.tsx | 2 +- src/IconAddToDriveRoundedFilled.tsx | 2 +- src/IconAddToDriveSharp.tsx | 2 +- src/IconAddToDriveSharpFilled.tsx | 2 +- src/IconAddToHomeScreenOutlined.tsx | 2 +- src/IconAddToHomeScreenOutlinedFilled.tsx | 2 +- src/IconAddToHomeScreenRounded.tsx | 2 +- src/IconAddToHomeScreenRoundedFilled.tsx | 2 +- src/IconAddToHomeScreenSharp.tsx | 2 +- src/IconAddToHomeScreenSharpFilled.tsx | 2 +- src/IconAddToPhotosOutlined.tsx | 2 +- src/IconAddToPhotosOutlinedFilled.tsx | 2 +- src/IconAddToPhotosRounded.tsx | 2 +- src/IconAddToPhotosRoundedFilled.tsx | 2 +- src/IconAddToPhotosSharp.tsx | 2 +- src/IconAddToPhotosSharpFilled.tsx | 2 +- src/IconAddToQueueOutlined.tsx | 2 +- src/IconAddToQueueOutlinedFilled.tsx | 2 +- src/IconAddToQueueRounded.tsx | 2 +- src/IconAddToQueueRoundedFilled.tsx | 2 +- src/IconAddToQueueSharp.tsx | 2 +- src/IconAddToQueueSharpFilled.tsx | 2 +- src/IconAddTriangleOutlined.tsx | 2 +- src/IconAddTriangleOutlinedFilled.tsx | 2 +- src/IconAddTriangleRounded.tsx | 2 +- src/IconAddTriangleRoundedFilled.tsx | 2 +- src/IconAddTriangleSharp.tsx | 2 +- src/IconAddTriangleSharpFilled.tsx | 2 +- src/IconAdfScannerOutlined.tsx | 2 +- src/IconAdfScannerOutlinedFilled.tsx | 2 +- src/IconAdfScannerRounded.tsx | 2 +- src/IconAdfScannerRoundedFilled.tsx | 2 +- src/IconAdfScannerSharp.tsx | 2 +- src/IconAdfScannerSharpFilled.tsx | 2 +- src/IconAdjustOutlined.tsx | 2 +- src/IconAdjustOutlinedFilled.tsx | 2 +- src/IconAdjustRounded.tsx | 2 +- src/IconAdjustRoundedFilled.tsx | 2 +- src/IconAdjustSharp.tsx | 2 +- src/IconAdjustSharpFilled.tsx | 2 +- src/IconAdminMedsOutlined.tsx | 2 +- src/IconAdminMedsOutlinedFilled.tsx | 2 +- src/IconAdminMedsRounded.tsx | 2 +- src/IconAdminMedsRoundedFilled.tsx | 2 +- src/IconAdminMedsSharp.tsx | 2 +- src/IconAdminMedsSharpFilled.tsx | 2 +- src/IconAdminPanelSettingsOutlined.tsx | 2 +- src/IconAdminPanelSettingsOutlinedFilled.tsx | 2 +- src/IconAdminPanelSettingsRounded.tsx | 2 +- src/IconAdminPanelSettingsRoundedFilled.tsx | 2 +- src/IconAdminPanelSettingsSharp.tsx | 2 +- src/IconAdminPanelSettingsSharpFilled.tsx | 2 +- src/IconAdsClickOutlined.tsx | 2 +- src/IconAdsClickOutlinedFilled.tsx | 2 +- src/IconAdsClickRounded.tsx | 2 +- src/IconAdsClickRoundedFilled.tsx | 2 +- src/IconAdsClickSharp.tsx | 2 +- src/IconAdsClickSharpFilled.tsx | 2 +- src/IconAgenderOutlined.tsx | 2 +- src/IconAgenderOutlinedFilled.tsx | 2 +- src/IconAgenderRounded.tsx | 2 +- src/IconAgenderRoundedFilled.tsx | 2 +- src/IconAgenderSharp.tsx | 2 +- src/IconAgenderSharpFilled.tsx | 2 +- src/IconAgricultureOutlined.tsx | 2 +- src/IconAgricultureOutlinedFilled.tsx | 2 +- src/IconAgricultureRounded.tsx | 2 +- src/IconAgricultureRoundedFilled.tsx | 2 +- src/IconAgricultureSharp.tsx | 2 +- src/IconAgricultureSharpFilled.tsx | 2 +- src/IconAirFreshenerOutlined.tsx | 2 +- src/IconAirFreshenerOutlinedFilled.tsx | 2 +- src/IconAirFreshenerRounded.tsx | 2 +- src/IconAirFreshenerRoundedFilled.tsx | 2 +- src/IconAirFreshenerSharp.tsx | 2 +- src/IconAirFreshenerSharpFilled.tsx | 2 +- src/IconAirOutlined.tsx | 2 +- src/IconAirOutlinedFilled.tsx | 2 +- src/IconAirPurifierGenOutlined.tsx | 2 +- src/IconAirPurifierGenOutlinedFilled.tsx | 2 +- src/IconAirPurifierGenRounded.tsx | 2 +- src/IconAirPurifierGenRoundedFilled.tsx | 2 +- src/IconAirPurifierGenSharp.tsx | 2 +- src/IconAirPurifierGenSharpFilled.tsx | 2 +- src/IconAirPurifierOutlined.tsx | 2 +- src/IconAirPurifierOutlinedFilled.tsx | 2 +- src/IconAirPurifierRounded.tsx | 2 +- src/IconAirPurifierRoundedFilled.tsx | 2 +- src/IconAirPurifierSharp.tsx | 2 +- src/IconAirPurifierSharpFilled.tsx | 2 +- src/IconAirRounded.tsx | 2 +- src/IconAirRoundedFilled.tsx | 2 +- src/IconAirSharp.tsx | 2 +- src/IconAirSharpFilled.tsx | 2 +- src/IconAirlineSeatFlatAngledOutlined.tsx | 2 +- src/IconAirlineSeatFlatAngledOutlinedFilled.tsx | 2 +- src/IconAirlineSeatFlatAngledRounded.tsx | 2 +- src/IconAirlineSeatFlatAngledRoundedFilled.tsx | 2 +- src/IconAirlineSeatFlatAngledSharp.tsx | 2 +- src/IconAirlineSeatFlatAngledSharpFilled.tsx | 2 +- src/IconAirlineSeatFlatOutlined.tsx | 2 +- src/IconAirlineSeatFlatOutlinedFilled.tsx | 2 +- src/IconAirlineSeatFlatRounded.tsx | 2 +- src/IconAirlineSeatFlatRoundedFilled.tsx | 2 +- src/IconAirlineSeatFlatSharp.tsx | 2 +- src/IconAirlineSeatFlatSharpFilled.tsx | 2 +- src/IconAirlineSeatIndividualSuiteOutlined.tsx | 2 +- src/IconAirlineSeatIndividualSuiteOutlinedFilled.tsx | 2 +- src/IconAirlineSeatIndividualSuiteRounded.tsx | 2 +- src/IconAirlineSeatIndividualSuiteRoundedFilled.tsx | 2 +- src/IconAirlineSeatIndividualSuiteSharp.tsx | 2 +- src/IconAirlineSeatIndividualSuiteSharpFilled.tsx | 2 +- src/IconAirlineSeatLegroomExtraOutlined.tsx | 2 +- src/IconAirlineSeatLegroomExtraOutlinedFilled.tsx | 2 +- src/IconAirlineSeatLegroomExtraRounded.tsx | 2 +- src/IconAirlineSeatLegroomExtraRoundedFilled.tsx | 2 +- src/IconAirlineSeatLegroomExtraSharp.tsx | 2 +- src/IconAirlineSeatLegroomExtraSharpFilled.tsx | 2 +- src/IconAirlineSeatLegroomNormalOutlined.tsx | 2 +- src/IconAirlineSeatLegroomNormalOutlinedFilled.tsx | 2 +- src/IconAirlineSeatLegroomNormalRounded.tsx | 2 +- src/IconAirlineSeatLegroomNormalRoundedFilled.tsx | 2 +- src/IconAirlineSeatLegroomNormalSharp.tsx | 2 +- src/IconAirlineSeatLegroomNormalSharpFilled.tsx | 2 +- src/IconAirlineSeatLegroomReducedOutlined.tsx | 2 +- src/IconAirlineSeatLegroomReducedOutlinedFilled.tsx | 2 +- src/IconAirlineSeatLegroomReducedRounded.tsx | 2 +- src/IconAirlineSeatLegroomReducedRoundedFilled.tsx | 2 +- src/IconAirlineSeatLegroomReducedSharp.tsx | 2 +- src/IconAirlineSeatLegroomReducedSharpFilled.tsx | 2 +- src/IconAirlineSeatReclineExtraOutlined.tsx | 2 +- src/IconAirlineSeatReclineExtraOutlinedFilled.tsx | 2 +- src/IconAirlineSeatReclineExtraRounded.tsx | 2 +- src/IconAirlineSeatReclineExtraRoundedFilled.tsx | 2 +- src/IconAirlineSeatReclineExtraSharp.tsx | 2 +- src/IconAirlineSeatReclineExtraSharpFilled.tsx | 2 +- src/IconAirlineSeatReclineNormalOutlined.tsx | 2 +- src/IconAirlineSeatReclineNormalOutlinedFilled.tsx | 2 +- src/IconAirlineSeatReclineNormalRounded.tsx | 2 +- src/IconAirlineSeatReclineNormalRoundedFilled.tsx | 2 +- src/IconAirlineSeatReclineNormalSharp.tsx | 2 +- src/IconAirlineSeatReclineNormalSharpFilled.tsx | 2 +- src/IconAirlineStopsOutlined.tsx | 2 +- src/IconAirlineStopsOutlinedFilled.tsx | 2 +- src/IconAirlineStopsRounded.tsx | 2 +- src/IconAirlineStopsRoundedFilled.tsx | 2 +- src/IconAirlineStopsSharp.tsx | 2 +- src/IconAirlineStopsSharpFilled.tsx | 2 +- src/IconAirlinesOutlined.tsx | 2 +- src/IconAirlinesOutlinedFilled.tsx | 2 +- src/IconAirlinesRounded.tsx | 2 +- src/IconAirlinesRoundedFilled.tsx | 2 +- src/IconAirlinesSharp.tsx | 2 +- src/IconAirlinesSharpFilled.tsx | 2 +- src/IconAirplaneTicketOutlined.tsx | 2 +- src/IconAirplaneTicketOutlinedFilled.tsx | 2 +- src/IconAirplaneTicketRounded.tsx | 2 +- src/IconAirplaneTicketRoundedFilled.tsx | 2 +- src/IconAirplaneTicketSharp.tsx | 2 +- src/IconAirplaneTicketSharpFilled.tsx | 2 +- src/IconAirplanemodeInactiveOutlined.tsx | 2 +- src/IconAirplanemodeInactiveOutlinedFilled.tsx | 2 +- src/IconAirplanemodeInactiveRounded.tsx | 2 +- src/IconAirplanemodeInactiveRoundedFilled.tsx | 2 +- src/IconAirplanemodeInactiveSharp.tsx | 2 +- src/IconAirplanemodeInactiveSharpFilled.tsx | 2 +- src/IconAirplayOutlined.tsx | 2 +- src/IconAirplayOutlinedFilled.tsx | 2 +- src/IconAirplayRounded.tsx | 2 +- src/IconAirplayRoundedFilled.tsx | 2 +- src/IconAirplaySharp.tsx | 2 +- src/IconAirplaySharpFilled.tsx | 2 +- src/IconAirportShuttleOutlined.tsx | 2 +- src/IconAirportShuttleOutlinedFilled.tsx | 2 +- src/IconAirportShuttleRounded.tsx | 2 +- src/IconAirportShuttleRoundedFilled.tsx | 2 +- src/IconAirportShuttleSharp.tsx | 2 +- src/IconAirportShuttleSharpFilled.tsx | 2 +- src/IconAirwareOutlined.tsx | 2 +- src/IconAirwareOutlinedFilled.tsx | 2 +- src/IconAirwareRounded.tsx | 2 +- src/IconAirwareRoundedFilled.tsx | 2 +- src/IconAirwareSharp.tsx | 2 +- src/IconAirwareSharpFilled.tsx | 2 +- src/IconAirwaveOutlined.tsx | 2 +- src/IconAirwaveOutlinedFilled.tsx | 2 +- src/IconAirwaveRounded.tsx | 2 +- src/IconAirwaveRoundedFilled.tsx | 2 +- src/IconAirwaveSharp.tsx | 2 +- src/IconAirwaveSharpFilled.tsx | 2 +- src/IconAlarmAddOutlined.tsx | 2 +- src/IconAlarmAddOutlinedFilled.tsx | 2 +- src/IconAlarmAddRounded.tsx | 2 +- src/IconAlarmAddRoundedFilled.tsx | 2 +- src/IconAlarmAddSharp.tsx | 2 +- src/IconAlarmAddSharpFilled.tsx | 2 +- src/IconAlarmOffOutlined.tsx | 2 +- src/IconAlarmOffOutlinedFilled.tsx | 2 +- src/IconAlarmOffRounded.tsx | 2 +- src/IconAlarmOffRoundedFilled.tsx | 2 +- src/IconAlarmOffSharp.tsx | 2 +- src/IconAlarmOffSharpFilled.tsx | 2 +- src/IconAlarmOnOutlined.tsx | 2 +- src/IconAlarmOnOutlinedFilled.tsx | 2 +- src/IconAlarmOnRounded.tsx | 2 +- src/IconAlarmOnRoundedFilled.tsx | 2 +- src/IconAlarmOnSharp.tsx | 2 +- src/IconAlarmOnSharpFilled.tsx | 2 +- src/IconAlarmOutlined.tsx | 2 +- src/IconAlarmOutlinedFilled.tsx | 2 +- src/IconAlarmRounded.tsx | 2 +- src/IconAlarmRoundedFilled.tsx | 2 +- src/IconAlarmSharp.tsx | 2 +- src/IconAlarmSharpFilled.tsx | 2 +- src/IconAlarmSmartWakeOutlined.tsx | 2 +- src/IconAlarmSmartWakeOutlinedFilled.tsx | 2 +- src/IconAlarmSmartWakeRounded.tsx | 2 +- src/IconAlarmSmartWakeRoundedFilled.tsx | 2 +- src/IconAlarmSmartWakeSharp.tsx | 2 +- src/IconAlarmSmartWakeSharpFilled.tsx | 2 +- src/IconAlbumOutlined.tsx | 2 +- src/IconAlbumOutlinedFilled.tsx | 2 +- src/IconAlbumRounded.tsx | 2 +- src/IconAlbumRoundedFilled.tsx | 2 +- src/IconAlbumSharp.tsx | 2 +- src/IconAlbumSharpFilled.tsx | 2 +- src/IconAlignCenterOutlined.tsx | 2 +- src/IconAlignCenterOutlinedFilled.tsx | 2 +- src/IconAlignCenterRounded.tsx | 2 +- src/IconAlignCenterRoundedFilled.tsx | 2 +- src/IconAlignCenterSharp.tsx | 2 +- src/IconAlignCenterSharpFilled.tsx | 2 +- src/IconAlignEndOutlined.tsx | 2 +- src/IconAlignEndOutlinedFilled.tsx | 2 +- src/IconAlignEndRounded.tsx | 2 +- src/IconAlignEndRoundedFilled.tsx | 2 +- src/IconAlignEndSharp.tsx | 2 +- src/IconAlignEndSharpFilled.tsx | 2 +- src/IconAlignFlexCenterOutlined.tsx | 2 +- src/IconAlignFlexCenterOutlinedFilled.tsx | 2 +- src/IconAlignFlexCenterRounded.tsx | 2 +- src/IconAlignFlexCenterRoundedFilled.tsx | 2 +- src/IconAlignFlexCenterSharp.tsx | 2 +- src/IconAlignFlexCenterSharpFilled.tsx | 2 +- src/IconAlignFlexEndOutlined.tsx | 2 +- src/IconAlignFlexEndOutlinedFilled.tsx | 2 +- src/IconAlignFlexEndRounded.tsx | 2 +- src/IconAlignFlexEndRoundedFilled.tsx | 2 +- src/IconAlignFlexEndSharp.tsx | 2 +- src/IconAlignFlexEndSharpFilled.tsx | 2 +- src/IconAlignFlexStartOutlined.tsx | 2 +- src/IconAlignFlexStartOutlinedFilled.tsx | 2 +- src/IconAlignFlexStartRounded.tsx | 2 +- src/IconAlignFlexStartRoundedFilled.tsx | 2 +- src/IconAlignFlexStartSharp.tsx | 2 +- src/IconAlignFlexStartSharpFilled.tsx | 2 +- src/IconAlignHorizontalCenterOutlined.tsx | 2 +- src/IconAlignHorizontalCenterOutlinedFilled.tsx | 2 +- src/IconAlignHorizontalCenterRounded.tsx | 2 +- src/IconAlignHorizontalCenterRoundedFilled.tsx | 2 +- src/IconAlignHorizontalCenterSharp.tsx | 2 +- src/IconAlignHorizontalCenterSharpFilled.tsx | 2 +- src/IconAlignHorizontalLeftOutlined.tsx | 2 +- src/IconAlignHorizontalLeftOutlinedFilled.tsx | 2 +- src/IconAlignHorizontalLeftRounded.tsx | 2 +- src/IconAlignHorizontalLeftRoundedFilled.tsx | 2 +- src/IconAlignHorizontalLeftSharp.tsx | 2 +- src/IconAlignHorizontalLeftSharpFilled.tsx | 2 +- src/IconAlignHorizontalRightOutlined.tsx | 2 +- src/IconAlignHorizontalRightOutlinedFilled.tsx | 2 +- src/IconAlignHorizontalRightRounded.tsx | 2 +- src/IconAlignHorizontalRightRoundedFilled.tsx | 2 +- src/IconAlignHorizontalRightSharp.tsx | 2 +- src/IconAlignHorizontalRightSharpFilled.tsx | 2 +- src/IconAlignItemsStretchOutlined.tsx | 2 +- src/IconAlignItemsStretchOutlinedFilled.tsx | 2 +- src/IconAlignItemsStretchRounded.tsx | 2 +- src/IconAlignItemsStretchRoundedFilled.tsx | 2 +- src/IconAlignItemsStretchSharp.tsx | 2 +- src/IconAlignItemsStretchSharpFilled.tsx | 2 +- src/IconAlignJustifyCenterOutlined.tsx | 2 +- src/IconAlignJustifyCenterOutlinedFilled.tsx | 2 +- src/IconAlignJustifyCenterRounded.tsx | 2 +- src/IconAlignJustifyCenterRoundedFilled.tsx | 2 +- src/IconAlignJustifyCenterSharp.tsx | 2 +- src/IconAlignJustifyCenterSharpFilled.tsx | 2 +- src/IconAlignJustifyFlexEndOutlined.tsx | 2 +- src/IconAlignJustifyFlexEndOutlinedFilled.tsx | 2 +- src/IconAlignJustifyFlexEndRounded.tsx | 2 +- src/IconAlignJustifyFlexEndRoundedFilled.tsx | 2 +- src/IconAlignJustifyFlexEndSharp.tsx | 2 +- src/IconAlignJustifyFlexEndSharpFilled.tsx | 2 +- src/IconAlignJustifyFlexStartOutlined.tsx | 2 +- src/IconAlignJustifyFlexStartOutlinedFilled.tsx | 2 +- src/IconAlignJustifyFlexStartRounded.tsx | 2 +- src/IconAlignJustifyFlexStartRoundedFilled.tsx | 2 +- src/IconAlignJustifyFlexStartSharp.tsx | 2 +- src/IconAlignJustifyFlexStartSharpFilled.tsx | 2 +- src/IconAlignJustifySpaceAroundOutlined.tsx | 2 +- src/IconAlignJustifySpaceAroundOutlinedFilled.tsx | 2 +- src/IconAlignJustifySpaceAroundRounded.tsx | 2 +- src/IconAlignJustifySpaceAroundRoundedFilled.tsx | 2 +- src/IconAlignJustifySpaceAroundSharp.tsx | 2 +- src/IconAlignJustifySpaceAroundSharpFilled.tsx | 2 +- src/IconAlignJustifySpaceBetweenOutlined.tsx | 2 +- src/IconAlignJustifySpaceBetweenOutlinedFilled.tsx | 2 +- src/IconAlignJustifySpaceBetweenRounded.tsx | 2 +- src/IconAlignJustifySpaceBetweenRoundedFilled.tsx | 2 +- src/IconAlignJustifySpaceBetweenSharp.tsx | 2 +- src/IconAlignJustifySpaceBetweenSharpFilled.tsx | 2 +- src/IconAlignJustifySpaceEvenOutlined.tsx | 2 +- src/IconAlignJustifySpaceEvenOutlinedFilled.tsx | 2 +- src/IconAlignJustifySpaceEvenRounded.tsx | 2 +- src/IconAlignJustifySpaceEvenRoundedFilled.tsx | 2 +- src/IconAlignJustifySpaceEvenSharp.tsx | 2 +- src/IconAlignJustifySpaceEvenSharpFilled.tsx | 2 +- src/IconAlignJustifyStretchOutlined.tsx | 2 +- src/IconAlignJustifyStretchOutlinedFilled.tsx | 2 +- src/IconAlignJustifyStretchRounded.tsx | 2 +- src/IconAlignJustifyStretchRoundedFilled.tsx | 2 +- src/IconAlignJustifyStretchSharp.tsx | 2 +- src/IconAlignJustifyStretchSharpFilled.tsx | 2 +- src/IconAlignSelfStretchOutlined.tsx | 2 +- src/IconAlignSelfStretchOutlinedFilled.tsx | 2 +- src/IconAlignSelfStretchRounded.tsx | 2 +- src/IconAlignSelfStretchRoundedFilled.tsx | 2 +- src/IconAlignSelfStretchSharp.tsx | 2 +- src/IconAlignSelfStretchSharpFilled.tsx | 2 +- src/IconAlignSpaceAroundOutlined.tsx | 2 +- src/IconAlignSpaceAroundOutlinedFilled.tsx | 2 +- src/IconAlignSpaceAroundRounded.tsx | 2 +- src/IconAlignSpaceAroundRoundedFilled.tsx | 2 +- src/IconAlignSpaceAroundSharp.tsx | 2 +- src/IconAlignSpaceAroundSharpFilled.tsx | 2 +- src/IconAlignSpaceBetweenOutlined.tsx | 2 +- src/IconAlignSpaceBetweenOutlinedFilled.tsx | 2 +- src/IconAlignSpaceBetweenRounded.tsx | 2 +- src/IconAlignSpaceBetweenRoundedFilled.tsx | 2 +- src/IconAlignSpaceBetweenSharp.tsx | 2 +- src/IconAlignSpaceBetweenSharpFilled.tsx | 2 +- src/IconAlignSpaceEvenOutlined.tsx | 2 +- src/IconAlignSpaceEvenOutlinedFilled.tsx | 2 +- src/IconAlignSpaceEvenRounded.tsx | 2 +- src/IconAlignSpaceEvenRoundedFilled.tsx | 2 +- src/IconAlignSpaceEvenSharp.tsx | 2 +- src/IconAlignSpaceEvenSharpFilled.tsx | 2 +- src/IconAlignStartOutlined.tsx | 2 +- src/IconAlignStartOutlinedFilled.tsx | 2 +- src/IconAlignStartRounded.tsx | 2 +- src/IconAlignStartRoundedFilled.tsx | 2 +- src/IconAlignStartSharp.tsx | 2 +- src/IconAlignStartSharpFilled.tsx | 2 +- src/IconAlignStretchOutlined.tsx | 2 +- src/IconAlignStretchOutlinedFilled.tsx | 2 +- src/IconAlignStretchRounded.tsx | 2 +- src/IconAlignStretchRoundedFilled.tsx | 2 +- src/IconAlignStretchSharp.tsx | 2 +- src/IconAlignStretchSharpFilled.tsx | 2 +- src/IconAlignVerticalBottomOutlined.tsx | 2 +- src/IconAlignVerticalBottomOutlinedFilled.tsx | 2 +- src/IconAlignVerticalBottomRounded.tsx | 2 +- src/IconAlignVerticalBottomRoundedFilled.tsx | 2 +- src/IconAlignVerticalBottomSharp.tsx | 2 +- src/IconAlignVerticalBottomSharpFilled.tsx | 2 +- src/IconAlignVerticalCenterOutlined.tsx | 2 +- src/IconAlignVerticalCenterOutlinedFilled.tsx | 2 +- src/IconAlignVerticalCenterRounded.tsx | 2 +- src/IconAlignVerticalCenterRoundedFilled.tsx | 2 +- src/IconAlignVerticalCenterSharp.tsx | 2 +- src/IconAlignVerticalCenterSharpFilled.tsx | 2 +- src/IconAlignVerticalTopOutlined.tsx | 2 +- src/IconAlignVerticalTopOutlinedFilled.tsx | 2 +- src/IconAlignVerticalTopRounded.tsx | 2 +- src/IconAlignVerticalTopRoundedFilled.tsx | 2 +- src/IconAlignVerticalTopSharp.tsx | 2 +- src/IconAlignVerticalTopSharpFilled.tsx | 2 +- src/IconAllInboxOutlined.tsx | 2 +- src/IconAllInboxOutlinedFilled.tsx | 2 +- src/IconAllInboxRounded.tsx | 2 +- src/IconAllInboxRoundedFilled.tsx | 2 +- src/IconAllInboxSharp.tsx | 2 +- src/IconAllInboxSharpFilled.tsx | 2 +- src/IconAllInclusiveOutlined.tsx | 2 +- src/IconAllInclusiveOutlinedFilled.tsx | 2 +- src/IconAllInclusiveRounded.tsx | 2 +- src/IconAllInclusiveRoundedFilled.tsx | 2 +- src/IconAllInclusiveSharp.tsx | 2 +- src/IconAllInclusiveSharpFilled.tsx | 2 +- src/IconAllMatchOutlined.tsx | 2 +- src/IconAllMatchOutlinedFilled.tsx | 2 +- src/IconAllMatchRounded.tsx | 2 +- src/IconAllMatchRoundedFilled.tsx | 2 +- src/IconAllMatchSharp.tsx | 2 +- src/IconAllMatchSharpFilled.tsx | 2 +- src/IconAllOutOutlined.tsx | 2 +- src/IconAllOutOutlinedFilled.tsx | 2 +- src/IconAllOutRounded.tsx | 2 +- src/IconAllOutRoundedFilled.tsx | 2 +- src/IconAllOutSharp.tsx | 2 +- src/IconAllOutSharpFilled.tsx | 2 +- src/IconAllergiesOutlined.tsx | 2 +- src/IconAllergiesOutlinedFilled.tsx | 2 +- src/IconAllergiesRounded.tsx | 2 +- src/IconAllergiesRoundedFilled.tsx | 2 +- src/IconAllergiesSharp.tsx | 2 +- src/IconAllergiesSharpFilled.tsx | 2 +- src/IconAllergyOutlined.tsx | 2 +- src/IconAllergyOutlinedFilled.tsx | 2 +- src/IconAllergyRounded.tsx | 2 +- src/IconAllergyRoundedFilled.tsx | 2 +- src/IconAllergySharp.tsx | 2 +- src/IconAllergySharpFilled.tsx | 2 +- src/IconAltRouteOutlined.tsx | 2 +- src/IconAltRouteOutlinedFilled.tsx | 2 +- src/IconAltRouteRounded.tsx | 2 +- src/IconAltRouteRoundedFilled.tsx | 2 +- src/IconAltRouteSharp.tsx | 2 +- src/IconAltRouteSharpFilled.tsx | 2 +- src/IconAlternateEmailOutlined.tsx | 2 +- src/IconAlternateEmailOutlinedFilled.tsx | 2 +- src/IconAlternateEmailRounded.tsx | 2 +- src/IconAlternateEmailRoundedFilled.tsx | 2 +- src/IconAlternateEmailSharp.tsx | 2 +- src/IconAlternateEmailSharpFilled.tsx | 2 +- src/IconAltitudeOutlined.tsx | 2 +- src/IconAltitudeOutlinedFilled.tsx | 2 +- src/IconAltitudeRounded.tsx | 2 +- src/IconAltitudeRoundedFilled.tsx | 2 +- src/IconAltitudeSharp.tsx | 2 +- src/IconAltitudeSharpFilled.tsx | 2 +- src/IconAmbulanceOutlined.tsx | 2 +- src/IconAmbulanceOutlinedFilled.tsx | 2 +- src/IconAmbulanceRounded.tsx | 2 +- src/IconAmbulanceRoundedFilled.tsx | 2 +- src/IconAmbulanceSharp.tsx | 2 +- src/IconAmbulanceSharpFilled.tsx | 2 +- src/IconAmendOutlined.tsx | 2 +- src/IconAmendOutlinedFilled.tsx | 2 +- src/IconAmendRounded.tsx | 2 +- src/IconAmendRoundedFilled.tsx | 2 +- src/IconAmendSharp.tsx | 2 +- src/IconAmendSharpFilled.tsx | 2 +- src/IconAmpStoriesOutlined.tsx | 2 +- src/IconAmpStoriesOutlinedFilled.tsx | 2 +- src/IconAmpStoriesRounded.tsx | 2 +- src/IconAmpStoriesRoundedFilled.tsx | 2 +- src/IconAmpStoriesSharp.tsx | 2 +- src/IconAmpStoriesSharpFilled.tsx | 2 +- src/IconAnalyticsOutlined.tsx | 2 +- src/IconAnalyticsOutlinedFilled.tsx | 2 +- src/IconAnalyticsRounded.tsx | 2 +- src/IconAnalyticsRoundedFilled.tsx | 2 +- src/IconAnalyticsSharp.tsx | 2 +- src/IconAnalyticsSharpFilled.tsx | 2 +- src/IconAnchorOutlined.tsx | 2 +- src/IconAnchorOutlinedFilled.tsx | 2 +- src/IconAnchorRounded.tsx | 2 +- src/IconAnchorRoundedFilled.tsx | 2 +- src/IconAnchorSharp.tsx | 2 +- src/IconAnchorSharpFilled.tsx | 2 +- src/IconAndroidOutlined.tsx | 2 +- src/IconAndroidOutlinedFilled.tsx | 2 +- src/IconAndroidRounded.tsx | 2 +- src/IconAndroidRoundedFilled.tsx | 2 +- src/IconAndroidSharp.tsx | 2 +- src/IconAndroidSharpFilled.tsx | 2 +- src/IconAnimatedImagesOutlined.tsx | 2 +- src/IconAnimatedImagesOutlinedFilled.tsx | 2 +- src/IconAnimatedImagesRounded.tsx | 2 +- src/IconAnimatedImagesRoundedFilled.tsx | 2 +- src/IconAnimatedImagesSharp.tsx | 2 +- src/IconAnimatedImagesSharpFilled.tsx | 2 +- src/IconAnimationOutlined.tsx | 2 +- src/IconAnimationOutlinedFilled.tsx | 2 +- src/IconAnimationRounded.tsx | 2 +- src/IconAnimationRoundedFilled.tsx | 2 +- src/IconAnimationSharp.tsx | 2 +- src/IconAnimationSharpFilled.tsx | 2 +- src/IconAodOutlined.tsx | 2 +- src/IconAodOutlinedFilled.tsx | 2 +- src/IconAodRounded.tsx | 2 +- src/IconAodRoundedFilled.tsx | 2 +- src/IconAodSharp.tsx | 2 +- src/IconAodSharpFilled.tsx | 2 +- src/IconAodTabletOutlined.tsx | 2 +- src/IconAodTabletOutlinedFilled.tsx | 2 +- src/IconAodTabletRounded.tsx | 2 +- src/IconAodTabletRoundedFilled.tsx | 2 +- src/IconAodTabletSharp.tsx | 2 +- src/IconAodTabletSharpFilled.tsx | 2 +- src/IconAodWatchOutlined.tsx | 2 +- src/IconAodWatchOutlinedFilled.tsx | 2 +- src/IconAodWatchRounded.tsx | 2 +- src/IconAodWatchRoundedFilled.tsx | 2 +- src/IconAodWatchSharp.tsx | 2 +- src/IconAodWatchSharpFilled.tsx | 2 +- src/IconApartmentOutlined.tsx | 2 +- src/IconApartmentOutlinedFilled.tsx | 2 +- src/IconApartmentRounded.tsx | 2 +- src/IconApartmentRoundedFilled.tsx | 2 +- src/IconApartmentSharp.tsx | 2 +- src/IconApartmentSharpFilled.tsx | 2 +- src/IconApiOutlined.tsx | 2 +- src/IconApiOutlinedFilled.tsx | 2 +- src/IconApiRounded.tsx | 2 +- src/IconApiRoundedFilled.tsx | 2 +- src/IconApiSharp.tsx | 2 +- src/IconApiSharpFilled.tsx | 2 +- src/IconApkDocumentOutlined.tsx | 2 +- src/IconApkDocumentOutlinedFilled.tsx | 2 +- src/IconApkDocumentRounded.tsx | 2 +- src/IconApkDocumentRoundedFilled.tsx | 2 +- src/IconApkDocumentSharp.tsx | 2 +- src/IconApkDocumentSharpFilled.tsx | 2 +- src/IconApkInstallOutlined.tsx | 2 +- src/IconApkInstallOutlinedFilled.tsx | 2 +- src/IconApkInstallRounded.tsx | 2 +- src/IconApkInstallRoundedFilled.tsx | 2 +- src/IconApkInstallSharp.tsx | 2 +- src/IconApkInstallSharpFilled.tsx | 2 +- src/IconAppBadgingOutlined.tsx | 2 +- src/IconAppBadgingOutlinedFilled.tsx | 2 +- src/IconAppBadgingRounded.tsx | 2 +- src/IconAppBadgingRoundedFilled.tsx | 2 +- src/IconAppBadgingSharp.tsx | 2 +- src/IconAppBadgingSharpFilled.tsx | 2 +- src/IconAppBlockingOutlined.tsx | 2 +- src/IconAppBlockingOutlinedFilled.tsx | 2 +- src/IconAppBlockingRounded.tsx | 2 +- src/IconAppBlockingRoundedFilled.tsx | 2 +- src/IconAppBlockingSharp.tsx | 2 +- src/IconAppBlockingSharpFilled.tsx | 2 +- src/IconAppPromoOutlined.tsx | 2 +- src/IconAppPromoOutlinedFilled.tsx | 2 +- src/IconAppPromoRounded.tsx | 2 +- src/IconAppPromoRoundedFilled.tsx | 2 +- src/IconAppPromoSharp.tsx | 2 +- src/IconAppPromoSharpFilled.tsx | 2 +- src/IconAppRegistrationOutlined.tsx | 2 +- src/IconAppRegistrationOutlinedFilled.tsx | 2 +- src/IconAppRegistrationRounded.tsx | 2 +- src/IconAppRegistrationRoundedFilled.tsx | 2 +- src/IconAppRegistrationSharp.tsx | 2 +- src/IconAppRegistrationSharpFilled.tsx | 2 +- src/IconAppShortcutOutlined.tsx | 2 +- src/IconAppShortcutOutlinedFilled.tsx | 2 +- src/IconAppShortcutRounded.tsx | 2 +- src/IconAppShortcutRoundedFilled.tsx | 2 +- src/IconAppShortcutSharp.tsx | 2 +- src/IconAppShortcutSharpFilled.tsx | 2 +- src/IconApparelOutlined.tsx | 2 +- src/IconApparelOutlinedFilled.tsx | 2 +- src/IconApparelRounded.tsx | 2 +- src/IconApparelRoundedFilled.tsx | 2 +- src/IconApparelSharp.tsx | 2 +- src/IconApparelSharpFilled.tsx | 2 +- src/IconApprovalDelegationOutlined.tsx | 2 +- src/IconApprovalDelegationOutlinedFilled.tsx | 2 +- src/IconApprovalDelegationRounded.tsx | 2 +- src/IconApprovalDelegationRoundedFilled.tsx | 2 +- src/IconApprovalDelegationSharp.tsx | 2 +- src/IconApprovalDelegationSharpFilled.tsx | 2 +- src/IconApprovalOutlined.tsx | 2 +- src/IconApprovalOutlinedFilled.tsx | 2 +- src/IconApprovalRounded.tsx | 2 +- src/IconApprovalRoundedFilled.tsx | 2 +- src/IconApprovalSharp.tsx | 2 +- src/IconApprovalSharpFilled.tsx | 2 +- src/IconAppsOutageOutlined.tsx | 2 +- src/IconAppsOutageOutlinedFilled.tsx | 2 +- src/IconAppsOutageRounded.tsx | 2 +- src/IconAppsOutageRoundedFilled.tsx | 2 +- src/IconAppsOutageSharp.tsx | 2 +- src/IconAppsOutageSharpFilled.tsx | 2 +- src/IconAppsOutlined.tsx | 2 +- src/IconAppsOutlinedFilled.tsx | 2 +- src/IconAppsRounded.tsx | 2 +- src/IconAppsRoundedFilled.tsx | 2 +- src/IconAppsSharp.tsx | 2 +- src/IconAppsSharpFilled.tsx | 2 +- src/IconAqIndoorOutlined.tsx | 2 +- src/IconAqIndoorOutlinedFilled.tsx | 2 +- src/IconAqIndoorRounded.tsx | 2 +- src/IconAqIndoorRoundedFilled.tsx | 2 +- src/IconAqIndoorSharp.tsx | 2 +- src/IconAqIndoorSharpFilled.tsx | 2 +- src/IconAqOutlined.tsx | 2 +- src/IconAqOutlinedFilled.tsx | 2 +- src/IconAqRounded.tsx | 2 +- src/IconAqRoundedFilled.tsx | 2 +- src/IconAqSharp.tsx | 2 +- src/IconAqSharpFilled.tsx | 2 +- src/IconArOnYouOutlined.tsx | 2 +- src/IconArOnYouOutlinedFilled.tsx | 2 +- src/IconArOnYouRounded.tsx | 2 +- src/IconArOnYouRoundedFilled.tsx | 2 +- src/IconArOnYouSharp.tsx | 2 +- src/IconArOnYouSharpFilled.tsx | 2 +- src/IconArStickersOutlined.tsx | 2 +- src/IconArStickersOutlinedFilled.tsx | 2 +- src/IconArStickersRounded.tsx | 2 +- src/IconArStickersRoundedFilled.tsx | 2 +- src/IconArStickersSharp.tsx | 2 +- src/IconArStickersSharpFilled.tsx | 2 +- src/IconArchitectureOutlined.tsx | 2 +- src/IconArchitectureOutlinedFilled.tsx | 2 +- src/IconArchitectureRounded.tsx | 2 +- src/IconArchitectureRoundedFilled.tsx | 2 +- src/IconArchitectureSharp.tsx | 2 +- src/IconArchitectureSharpFilled.tsx | 2 +- src/IconArchiveOutlined.tsx | 2 +- src/IconArchiveOutlinedFilled.tsx | 2 +- src/IconArchiveRounded.tsx | 2 +- src/IconArchiveRoundedFilled.tsx | 2 +- src/IconArchiveSharp.tsx | 2 +- src/IconArchiveSharpFilled.tsx | 2 +- src/IconAreaChartOutlined.tsx | 2 +- src/IconAreaChartOutlinedFilled.tsx | 2 +- src/IconAreaChartRounded.tsx | 2 +- src/IconAreaChartRoundedFilled.tsx | 2 +- src/IconAreaChartSharp.tsx | 2 +- src/IconAreaChartSharpFilled.tsx | 2 +- src/IconArmingCountdownOutlined.tsx | 2 +- src/IconArmingCountdownOutlinedFilled.tsx | 2 +- src/IconArmingCountdownRounded.tsx | 2 +- src/IconArmingCountdownRoundedFilled.tsx | 2 +- src/IconArmingCountdownSharp.tsx | 2 +- src/IconArmingCountdownSharpFilled.tsx | 2 +- src/IconArrowAndEdgeOutlined.tsx | 2 +- src/IconArrowAndEdgeOutlinedFilled.tsx | 2 +- src/IconArrowAndEdgeRounded.tsx | 2 +- src/IconArrowAndEdgeRoundedFilled.tsx | 2 +- src/IconArrowAndEdgeSharp.tsx | 2 +- src/IconArrowAndEdgeSharpFilled.tsx | 2 +- src/IconArrowBack2Outlined.tsx | 2 +- src/IconArrowBack2OutlinedFilled.tsx | 2 +- src/IconArrowBack2Rounded.tsx | 2 +- src/IconArrowBack2RoundedFilled.tsx | 2 +- src/IconArrowBack2Sharp.tsx | 2 +- src/IconArrowBack2SharpFilled.tsx | 2 +- src/IconArrowBackIosNewOutlined.tsx | 2 +- src/IconArrowBackIosNewOutlinedFilled.tsx | 2 +- src/IconArrowBackIosNewRounded.tsx | 2 +- src/IconArrowBackIosNewRoundedFilled.tsx | 2 +- src/IconArrowBackIosNewSharp.tsx | 2 +- src/IconArrowBackIosNewSharpFilled.tsx | 2 +- src/IconArrowBackIosOutlined.tsx | 2 +- src/IconArrowBackIosOutlinedFilled.tsx | 2 +- src/IconArrowBackIosRounded.tsx | 2 +- src/IconArrowBackIosRoundedFilled.tsx | 2 +- src/IconArrowBackIosSharp.tsx | 2 +- src/IconArrowBackIosSharpFilled.tsx | 2 +- src/IconArrowBackOutlined.tsx | 2 +- src/IconArrowBackOutlinedFilled.tsx | 2 +- src/IconArrowBackRounded.tsx | 2 +- src/IconArrowBackRoundedFilled.tsx | 2 +- src/IconArrowBackSharp.tsx | 2 +- src/IconArrowBackSharpFilled.tsx | 2 +- src/IconArrowCircleDownOutlined.tsx | 2 +- src/IconArrowCircleDownOutlinedFilled.tsx | 2 +- src/IconArrowCircleDownRounded.tsx | 2 +- src/IconArrowCircleDownRoundedFilled.tsx | 2 +- src/IconArrowCircleDownSharp.tsx | 2 +- src/IconArrowCircleDownSharpFilled.tsx | 2 +- src/IconArrowCircleLeftOutlined.tsx | 2 +- src/IconArrowCircleLeftOutlinedFilled.tsx | 2 +- src/IconArrowCircleLeftRounded.tsx | 2 +- src/IconArrowCircleLeftRoundedFilled.tsx | 2 +- src/IconArrowCircleLeftSharp.tsx | 2 +- src/IconArrowCircleLeftSharpFilled.tsx | 2 +- src/IconArrowCircleRightOutlined.tsx | 2 +- src/IconArrowCircleRightOutlinedFilled.tsx | 2 +- src/IconArrowCircleRightRounded.tsx | 2 +- src/IconArrowCircleRightRoundedFilled.tsx | 2 +- src/IconArrowCircleRightSharp.tsx | 2 +- src/IconArrowCircleRightSharpFilled.tsx | 2 +- src/IconArrowCircleUpOutlined.tsx | 2 +- src/IconArrowCircleUpOutlinedFilled.tsx | 2 +- src/IconArrowCircleUpRounded.tsx | 2 +- src/IconArrowCircleUpRoundedFilled.tsx | 2 +- src/IconArrowCircleUpSharp.tsx | 2 +- src/IconArrowCircleUpSharpFilled.tsx | 2 +- src/IconArrowCoolDownOutlined.tsx | 2 +- src/IconArrowCoolDownOutlinedFilled.tsx | 2 +- src/IconArrowCoolDownRounded.tsx | 2 +- src/IconArrowCoolDownRoundedFilled.tsx | 2 +- src/IconArrowCoolDownSharp.tsx | 2 +- src/IconArrowCoolDownSharpFilled.tsx | 2 +- src/IconArrowDownwardAltOutlined.tsx | 2 +- src/IconArrowDownwardAltOutlinedFilled.tsx | 2 +- src/IconArrowDownwardAltRounded.tsx | 2 +- src/IconArrowDownwardAltRoundedFilled.tsx | 2 +- src/IconArrowDownwardAltSharp.tsx | 2 +- src/IconArrowDownwardAltSharpFilled.tsx | 2 +- src/IconArrowDownwardOutlined.tsx | 2 +- src/IconArrowDownwardOutlinedFilled.tsx | 2 +- src/IconArrowDownwardRounded.tsx | 2 +- src/IconArrowDownwardRoundedFilled.tsx | 2 +- src/IconArrowDownwardSharp.tsx | 2 +- src/IconArrowDownwardSharpFilled.tsx | 2 +- src/IconArrowDropDownCircleOutlined.tsx | 2 +- src/IconArrowDropDownCircleOutlinedFilled.tsx | 2 +- src/IconArrowDropDownCircleRounded.tsx | 2 +- src/IconArrowDropDownCircleRoundedFilled.tsx | 2 +- src/IconArrowDropDownCircleSharp.tsx | 2 +- src/IconArrowDropDownCircleSharpFilled.tsx | 2 +- src/IconArrowDropDownOutlined.tsx | 2 +- src/IconArrowDropDownOutlinedFilled.tsx | 2 +- src/IconArrowDropDownRounded.tsx | 2 +- src/IconArrowDropDownRoundedFilled.tsx | 2 +- src/IconArrowDropDownSharp.tsx | 2 +- src/IconArrowDropDownSharpFilled.tsx | 2 +- src/IconArrowDropUpOutlined.tsx | 2 +- src/IconArrowDropUpOutlinedFilled.tsx | 2 +- src/IconArrowDropUpRounded.tsx | 2 +- src/IconArrowDropUpRoundedFilled.tsx | 2 +- src/IconArrowDropUpSharp.tsx | 2 +- src/IconArrowDropUpSharpFilled.tsx | 2 +- src/IconArrowForwardIosOutlined.tsx | 2 +- src/IconArrowForwardIosOutlinedFilled.tsx | 2 +- src/IconArrowForwardIosRounded.tsx | 2 +- src/IconArrowForwardIosRoundedFilled.tsx | 2 +- src/IconArrowForwardIosSharp.tsx | 2 +- src/IconArrowForwardIosSharpFilled.tsx | 2 +- src/IconArrowForwardOutlined.tsx | 2 +- src/IconArrowForwardOutlinedFilled.tsx | 2 +- src/IconArrowForwardRounded.tsx | 2 +- src/IconArrowForwardRoundedFilled.tsx | 2 +- src/IconArrowForwardSharp.tsx | 2 +- src/IconArrowForwardSharpFilled.tsx | 2 +- src/IconArrowInsertOutlined.tsx | 2 +- src/IconArrowInsertOutlinedFilled.tsx | 2 +- src/IconArrowInsertRounded.tsx | 2 +- src/IconArrowInsertRoundedFilled.tsx | 2 +- src/IconArrowInsertSharp.tsx | 2 +- src/IconArrowInsertSharpFilled.tsx | 2 +- src/IconArrowLeftAltOutlined.tsx | 2 +- src/IconArrowLeftAltOutlinedFilled.tsx | 2 +- src/IconArrowLeftAltRounded.tsx | 2 +- src/IconArrowLeftAltRoundedFilled.tsx | 2 +- src/IconArrowLeftAltSharp.tsx | 2 +- src/IconArrowLeftAltSharpFilled.tsx | 2 +- src/IconArrowLeftOutlined.tsx | 2 +- src/IconArrowLeftOutlinedFilled.tsx | 2 +- src/IconArrowLeftRounded.tsx | 2 +- src/IconArrowLeftRoundedFilled.tsx | 2 +- src/IconArrowLeftSharp.tsx | 2 +- src/IconArrowLeftSharpFilled.tsx | 2 +- src/IconArrowOrEdgeOutlined.tsx | 2 +- src/IconArrowOrEdgeOutlinedFilled.tsx | 2 +- src/IconArrowOrEdgeRounded.tsx | 2 +- src/IconArrowOrEdgeRoundedFilled.tsx | 2 +- src/IconArrowOrEdgeSharp.tsx | 2 +- src/IconArrowOrEdgeSharpFilled.tsx | 2 +- src/IconArrowOutwardOutlined.tsx | 2 +- src/IconArrowOutwardOutlinedFilled.tsx | 2 +- src/IconArrowOutwardRounded.tsx | 2 +- src/IconArrowOutwardRoundedFilled.tsx | 2 +- src/IconArrowOutwardSharp.tsx | 2 +- src/IconArrowOutwardSharpFilled.tsx | 2 +- src/IconArrowRangeOutlined.tsx | 2 +- src/IconArrowRangeOutlinedFilled.tsx | 2 +- src/IconArrowRangeRounded.tsx | 2 +- src/IconArrowRangeRoundedFilled.tsx | 2 +- src/IconArrowRangeSharp.tsx | 2 +- src/IconArrowRangeSharpFilled.tsx | 2 +- src/IconArrowRightAltOutlined.tsx | 2 +- src/IconArrowRightAltOutlinedFilled.tsx | 2 +- src/IconArrowRightAltRounded.tsx | 2 +- src/IconArrowRightAltRoundedFilled.tsx | 2 +- src/IconArrowRightAltSharp.tsx | 2 +- src/IconArrowRightAltSharpFilled.tsx | 2 +- src/IconArrowRightOutlined.tsx | 2 +- src/IconArrowRightOutlinedFilled.tsx | 2 +- src/IconArrowRightRounded.tsx | 2 +- src/IconArrowRightRoundedFilled.tsx | 2 +- src/IconArrowRightSharp.tsx | 2 +- src/IconArrowRightSharpFilled.tsx | 2 +- src/IconArrowSelectorToolOutlined.tsx | 2 +- src/IconArrowSelectorToolOutlinedFilled.tsx | 2 +- src/IconArrowSelectorToolRounded.tsx | 2 +- src/IconArrowSelectorToolRoundedFilled.tsx | 2 +- src/IconArrowSelectorToolSharp.tsx | 2 +- src/IconArrowSelectorToolSharpFilled.tsx | 2 +- src/IconArrowSplitOutlined.tsx | 2 +- src/IconArrowSplitOutlinedFilled.tsx | 2 +- src/IconArrowSplitRounded.tsx | 2 +- src/IconArrowSplitRoundedFilled.tsx | 2 +- src/IconArrowSplitSharp.tsx | 2 +- src/IconArrowSplitSharpFilled.tsx | 2 +- src/IconArrowTopLeftOutlined.tsx | 2 +- src/IconArrowTopLeftOutlinedFilled.tsx | 2 +- src/IconArrowTopLeftRounded.tsx | 2 +- src/IconArrowTopLeftRoundedFilled.tsx | 2 +- src/IconArrowTopLeftSharp.tsx | 2 +- src/IconArrowTopLeftSharpFilled.tsx | 2 +- src/IconArrowTopRightOutlined.tsx | 2 +- src/IconArrowTopRightOutlinedFilled.tsx | 2 +- src/IconArrowTopRightRounded.tsx | 2 +- src/IconArrowTopRightRoundedFilled.tsx | 2 +- src/IconArrowTopRightSharp.tsx | 2 +- src/IconArrowTopRightSharpFilled.tsx | 2 +- src/IconArrowUploadProgressOutlined.tsx | 2 +- src/IconArrowUploadProgressOutlinedFilled.tsx | 2 +- src/IconArrowUploadProgressRounded.tsx | 2 +- src/IconArrowUploadProgressRoundedFilled.tsx | 2 +- src/IconArrowUploadProgressSharp.tsx | 2 +- src/IconArrowUploadProgressSharpFilled.tsx | 2 +- src/IconArrowUploadReadyOutlined.tsx | 2 +- src/IconArrowUploadReadyOutlinedFilled.tsx | 2 +- src/IconArrowUploadReadyRounded.tsx | 2 +- src/IconArrowUploadReadyRoundedFilled.tsx | 2 +- src/IconArrowUploadReadySharp.tsx | 2 +- src/IconArrowUploadReadySharpFilled.tsx | 2 +- src/IconArrowUpwardAltOutlined.tsx | 2 +- src/IconArrowUpwardAltOutlinedFilled.tsx | 2 +- src/IconArrowUpwardAltRounded.tsx | 2 +- src/IconArrowUpwardAltRoundedFilled.tsx | 2 +- src/IconArrowUpwardAltSharp.tsx | 2 +- src/IconArrowUpwardAltSharpFilled.tsx | 2 +- src/IconArrowUpwardOutlined.tsx | 2 +- src/IconArrowUpwardOutlinedFilled.tsx | 2 +- src/IconArrowUpwardRounded.tsx | 2 +- src/IconArrowUpwardRoundedFilled.tsx | 2 +- src/IconArrowUpwardSharp.tsx | 2 +- src/IconArrowUpwardSharpFilled.tsx | 2 +- src/IconArrowWarmUpOutlined.tsx | 2 +- src/IconArrowWarmUpOutlinedFilled.tsx | 2 +- src/IconArrowWarmUpRounded.tsx | 2 +- src/IconArrowWarmUpRoundedFilled.tsx | 2 +- src/IconArrowWarmUpSharp.tsx | 2 +- src/IconArrowWarmUpSharpFilled.tsx | 2 +- src/IconArrowsMoreDownOutlined.tsx | 2 +- src/IconArrowsMoreDownOutlinedFilled.tsx | 2 +- src/IconArrowsMoreDownRounded.tsx | 2 +- src/IconArrowsMoreDownRoundedFilled.tsx | 2 +- src/IconArrowsMoreDownSharp.tsx | 2 +- src/IconArrowsMoreDownSharpFilled.tsx | 2 +- src/IconArrowsMoreUpOutlined.tsx | 2 +- src/IconArrowsMoreUpOutlinedFilled.tsx | 2 +- src/IconArrowsMoreUpRounded.tsx | 2 +- src/IconArrowsMoreUpRoundedFilled.tsx | 2 +- src/IconArrowsMoreUpSharp.tsx | 2 +- src/IconArrowsMoreUpSharpFilled.tsx | 2 +- src/IconArrowsOutwardOutlined.tsx | 2 +- src/IconArrowsOutwardOutlinedFilled.tsx | 2 +- src/IconArrowsOutwardRounded.tsx | 2 +- src/IconArrowsOutwardRoundedFilled.tsx | 2 +- src/IconArrowsOutwardSharp.tsx | 2 +- src/IconArrowsOutwardSharpFilled.tsx | 2 +- src/IconArtTrackOutlined.tsx | 2 +- src/IconArtTrackOutlinedFilled.tsx | 2 +- src/IconArtTrackRounded.tsx | 2 +- src/IconArtTrackRoundedFilled.tsx | 2 +- src/IconArtTrackSharp.tsx | 2 +- src/IconArtTrackSharpFilled.tsx | 2 +- src/IconArticleOutlined.tsx | 2 +- src/IconArticleOutlinedFilled.tsx | 2 +- src/IconArticleRounded.tsx | 2 +- src/IconArticleRoundedFilled.tsx | 2 +- src/IconArticleSharp.tsx | 2 +- src/IconArticleSharpFilled.tsx | 2 +- src/IconArticleShortcutOutlined.tsx | 2 +- src/IconArticleShortcutOutlinedFilled.tsx | 2 +- src/IconArticleShortcutRounded.tsx | 2 +- src/IconArticleShortcutRoundedFilled.tsx | 2 +- src/IconArticleShortcutSharp.tsx | 2 +- src/IconArticleShortcutSharpFilled.tsx | 2 +- src/IconArtistOutlined.tsx | 2 +- src/IconArtistOutlinedFilled.tsx | 2 +- src/IconArtistRounded.tsx | 2 +- src/IconArtistRoundedFilled.tsx | 2 +- src/IconArtistSharp.tsx | 2 +- src/IconArtistSharpFilled.tsx | 2 +- src/IconAspectRatioOutlined.tsx | 2 +- src/IconAspectRatioOutlinedFilled.tsx | 2 +- src/IconAspectRatioRounded.tsx | 2 +- src/IconAspectRatioRoundedFilled.tsx | 2 +- src/IconAspectRatioSharp.tsx | 2 +- src/IconAspectRatioSharpFilled.tsx | 2 +- src/IconAssignmentAddOutlined.tsx | 2 +- src/IconAssignmentAddOutlinedFilled.tsx | 2 +- src/IconAssignmentAddRounded.tsx | 2 +- src/IconAssignmentAddRoundedFilled.tsx | 2 +- src/IconAssignmentAddSharp.tsx | 2 +- src/IconAssignmentAddSharpFilled.tsx | 2 +- src/IconAssignmentIndOutlined.tsx | 2 +- src/IconAssignmentIndOutlinedFilled.tsx | 2 +- src/IconAssignmentIndRounded.tsx | 2 +- src/IconAssignmentIndRoundedFilled.tsx | 2 +- src/IconAssignmentIndSharp.tsx | 2 +- src/IconAssignmentIndSharpFilled.tsx | 2 +- src/IconAssignmentLateOutlined.tsx | 2 +- src/IconAssignmentLateOutlinedFilled.tsx | 2 +- src/IconAssignmentLateRounded.tsx | 2 +- src/IconAssignmentLateRoundedFilled.tsx | 2 +- src/IconAssignmentLateSharp.tsx | 2 +- src/IconAssignmentLateSharpFilled.tsx | 2 +- src/IconAssignmentOutlined.tsx | 2 +- src/IconAssignmentOutlinedFilled.tsx | 2 +- src/IconAssignmentReturnOutlined.tsx | 2 +- src/IconAssignmentReturnOutlinedFilled.tsx | 2 +- src/IconAssignmentReturnRounded.tsx | 2 +- src/IconAssignmentReturnRoundedFilled.tsx | 2 +- src/IconAssignmentReturnSharp.tsx | 2 +- src/IconAssignmentReturnSharpFilled.tsx | 2 +- src/IconAssignmentReturnedOutlined.tsx | 2 +- src/IconAssignmentReturnedOutlinedFilled.tsx | 2 +- src/IconAssignmentReturnedRounded.tsx | 2 +- src/IconAssignmentReturnedRoundedFilled.tsx | 2 +- src/IconAssignmentReturnedSharp.tsx | 2 +- src/IconAssignmentReturnedSharpFilled.tsx | 2 +- src/IconAssignmentRounded.tsx | 2 +- src/IconAssignmentRoundedFilled.tsx | 2 +- src/IconAssignmentSharp.tsx | 2 +- src/IconAssignmentSharpFilled.tsx | 2 +- src/IconAssignmentTurnedInOutlined.tsx | 2 +- src/IconAssignmentTurnedInOutlinedFilled.tsx | 2 +- src/IconAssignmentTurnedInRounded.tsx | 2 +- src/IconAssignmentTurnedInRoundedFilled.tsx | 2 +- src/IconAssignmentTurnedInSharp.tsx | 2 +- src/IconAssignmentTurnedInSharpFilled.tsx | 2 +- src/IconAssistWalkerOutlined.tsx | 2 +- src/IconAssistWalkerOutlinedFilled.tsx | 2 +- src/IconAssistWalkerRounded.tsx | 2 +- src/IconAssistWalkerRoundedFilled.tsx | 2 +- src/IconAssistWalkerSharp.tsx | 2 +- src/IconAssistWalkerSharpFilled.tsx | 2 +- src/IconAssistantDeviceOutlined.tsx | 2 +- src/IconAssistantDeviceOutlinedFilled.tsx | 2 +- src/IconAssistantDeviceRounded.tsx | 2 +- src/IconAssistantDeviceRoundedFilled.tsx | 2 +- src/IconAssistantDeviceSharp.tsx | 2 +- src/IconAssistantDeviceSharpFilled.tsx | 2 +- src/IconAssistantDirectionOutlined.tsx | 2 +- src/IconAssistantDirectionOutlinedFilled.tsx | 2 +- src/IconAssistantDirectionRounded.tsx | 2 +- src/IconAssistantDirectionRoundedFilled.tsx | 2 +- src/IconAssistantDirectionSharp.tsx | 2 +- src/IconAssistantDirectionSharpFilled.tsx | 2 +- src/IconAssistantNavigationOutlined.tsx | 2 +- src/IconAssistantNavigationOutlinedFilled.tsx | 2 +- src/IconAssistantNavigationRounded.tsx | 2 +- src/IconAssistantNavigationRoundedFilled.tsx | 2 +- src/IconAssistantNavigationSharp.tsx | 2 +- src/IconAssistantNavigationSharpFilled.tsx | 2 +- src/IconAssistantOnHubOutlined.tsx | 2 +- src/IconAssistantOnHubOutlinedFilled.tsx | 2 +- src/IconAssistantOnHubRounded.tsx | 2 +- src/IconAssistantOnHubRoundedFilled.tsx | 2 +- src/IconAssistantOnHubSharp.tsx | 2 +- src/IconAssistantOnHubSharpFilled.tsx | 2 +- src/IconAssuredWorkloadOutlined.tsx | 2 +- src/IconAssuredWorkloadOutlinedFilled.tsx | 2 +- src/IconAssuredWorkloadRounded.tsx | 2 +- src/IconAssuredWorkloadRoundedFilled.tsx | 2 +- src/IconAssuredWorkloadSharp.tsx | 2 +- src/IconAssuredWorkloadSharpFilled.tsx | 2 +- src/IconAsteriskOutlined.tsx | 2 +- src/IconAsteriskOutlinedFilled.tsx | 2 +- src/IconAsteriskRounded.tsx | 2 +- src/IconAsteriskRoundedFilled.tsx | 2 +- src/IconAsteriskSharp.tsx | 2 +- src/IconAsteriskSharpFilled.tsx | 2 +- src/IconAtmOutlined.tsx | 2 +- src/IconAtmOutlinedFilled.tsx | 2 +- src/IconAtmRounded.tsx | 2 +- src/IconAtmRoundedFilled.tsx | 2 +- src/IconAtmSharp.tsx | 2 +- src/IconAtmSharpFilled.tsx | 2 +- src/IconAtrOutlined.tsx | 2 +- src/IconAtrOutlinedFilled.tsx | 2 +- src/IconAtrRounded.tsx | 2 +- src/IconAtrRoundedFilled.tsx | 2 +- src/IconAtrSharp.tsx | 2 +- src/IconAtrSharpFilled.tsx | 2 +- src/IconAttachEmailOutlined.tsx | 2 +- src/IconAttachEmailOutlinedFilled.tsx | 2 +- src/IconAttachEmailRounded.tsx | 2 +- src/IconAttachEmailRoundedFilled.tsx | 2 +- src/IconAttachEmailSharp.tsx | 2 +- src/IconAttachEmailSharpFilled.tsx | 2 +- src/IconAttachFileAddOutlined.tsx | 2 +- src/IconAttachFileAddOutlinedFilled.tsx | 2 +- src/IconAttachFileAddRounded.tsx | 2 +- src/IconAttachFileAddRoundedFilled.tsx | 2 +- src/IconAttachFileAddSharp.tsx | 2 +- src/IconAttachFileAddSharpFilled.tsx | 2 +- src/IconAttachFileOffOutlined.tsx | 2 +- src/IconAttachFileOffOutlinedFilled.tsx | 2 +- src/IconAttachFileOffRounded.tsx | 2 +- src/IconAttachFileOffRoundedFilled.tsx | 2 +- src/IconAttachFileOffSharp.tsx | 2 +- src/IconAttachFileOffSharpFilled.tsx | 2 +- src/IconAttachFileOutlined.tsx | 2 +- src/IconAttachFileOutlinedFilled.tsx | 2 +- src/IconAttachFileRounded.tsx | 2 +- src/IconAttachFileRoundedFilled.tsx | 2 +- src/IconAttachFileSharp.tsx | 2 +- src/IconAttachFileSharpFilled.tsx | 2 +- src/IconAttachMoneyOutlined.tsx | 2 +- src/IconAttachMoneyOutlinedFilled.tsx | 2 +- src/IconAttachMoneyRounded.tsx | 2 +- src/IconAttachMoneyRoundedFilled.tsx | 2 +- src/IconAttachMoneySharp.tsx | 2 +- src/IconAttachMoneySharpFilled.tsx | 2 +- src/IconAttachmentOutlined.tsx | 2 +- src/IconAttachmentOutlinedFilled.tsx | 2 +- src/IconAttachmentRounded.tsx | 2 +- src/IconAttachmentRoundedFilled.tsx | 2 +- src/IconAttachmentSharp.tsx | 2 +- src/IconAttachmentSharpFilled.tsx | 2 +- src/IconAttractionsOutlined.tsx | 2 +- src/IconAttractionsOutlinedFilled.tsx | 2 +- src/IconAttractionsRounded.tsx | 2 +- src/IconAttractionsRoundedFilled.tsx | 2 +- src/IconAttractionsSharp.tsx | 2 +- src/IconAttractionsSharpFilled.tsx | 2 +- src/IconAttributionOutlined.tsx | 2 +- src/IconAttributionOutlinedFilled.tsx | 2 +- src/IconAttributionRounded.tsx | 2 +- src/IconAttributionRoundedFilled.tsx | 2 +- src/IconAttributionSharp.tsx | 2 +- src/IconAttributionSharpFilled.tsx | 2 +- src/IconAudioDescriptionOutlined.tsx | 2 +- src/IconAudioDescriptionOutlinedFilled.tsx | 2 +- src/IconAudioDescriptionRounded.tsx | 2 +- src/IconAudioDescriptionRoundedFilled.tsx | 2 +- src/IconAudioDescriptionSharp.tsx | 2 +- src/IconAudioDescriptionSharpFilled.tsx | 2 +- src/IconAudioFileOutlined.tsx | 2 +- src/IconAudioFileOutlinedFilled.tsx | 2 +- src/IconAudioFileRounded.tsx | 2 +- src/IconAudioFileRoundedFilled.tsx | 2 +- src/IconAudioFileSharp.tsx | 2 +- src/IconAudioFileSharpFilled.tsx | 2 +- src/IconAudioVideoReceiverOutlined.tsx | 2 +- src/IconAudioVideoReceiverOutlinedFilled.tsx | 2 +- src/IconAudioVideoReceiverRounded.tsx | 2 +- src/IconAudioVideoReceiverRoundedFilled.tsx | 2 +- src/IconAudioVideoReceiverSharp.tsx | 2 +- src/IconAudioVideoReceiverSharpFilled.tsx | 2 +- src/IconAutoAwesomeMosaicOutlined.tsx | 2 +- src/IconAutoAwesomeMosaicOutlinedFilled.tsx | 2 +- src/IconAutoAwesomeMosaicRounded.tsx | 2 +- src/IconAutoAwesomeMosaicRoundedFilled.tsx | 2 +- src/IconAutoAwesomeMosaicSharp.tsx | 2 +- src/IconAutoAwesomeMosaicSharpFilled.tsx | 2 +- src/IconAutoAwesomeMotionOutlined.tsx | 2 +- src/IconAutoAwesomeMotionOutlinedFilled.tsx | 2 +- src/IconAutoAwesomeMotionRounded.tsx | 2 +- src/IconAutoAwesomeMotionRoundedFilled.tsx | 2 +- src/IconAutoAwesomeMotionSharp.tsx | 2 +- src/IconAutoAwesomeMotionSharpFilled.tsx | 2 +- src/IconAutoDeleteOutlined.tsx | 2 +- src/IconAutoDeleteOutlinedFilled.tsx | 2 +- src/IconAutoDeleteRounded.tsx | 2 +- src/IconAutoDeleteRoundedFilled.tsx | 2 +- src/IconAutoDeleteSharp.tsx | 2 +- src/IconAutoDeleteSharpFilled.tsx | 2 +- src/IconAutoReadPauseOutlined.tsx | 2 +- src/IconAutoReadPauseOutlinedFilled.tsx | 2 +- src/IconAutoReadPauseRounded.tsx | 2 +- src/IconAutoReadPauseRoundedFilled.tsx | 2 +- src/IconAutoReadPauseSharp.tsx | 2 +- src/IconAutoReadPauseSharpFilled.tsx | 2 +- src/IconAutoReadPlayOutlined.tsx | 2 +- src/IconAutoReadPlayOutlinedFilled.tsx | 2 +- src/IconAutoReadPlayRounded.tsx | 2 +- src/IconAutoReadPlayRoundedFilled.tsx | 2 +- src/IconAutoReadPlaySharp.tsx | 2 +- src/IconAutoReadPlaySharpFilled.tsx | 2 +- src/IconAutoStoriesOutlined.tsx | 2 +- src/IconAutoStoriesOutlinedFilled.tsx | 2 +- src/IconAutoStoriesRounded.tsx | 2 +- src/IconAutoStoriesRoundedFilled.tsx | 2 +- src/IconAutoStoriesSharp.tsx | 2 +- src/IconAutoStoriesSharpFilled.tsx | 2 +- src/IconAutoTowingOutlined.tsx | 2 +- src/IconAutoTowingOutlinedFilled.tsx | 2 +- src/IconAutoTowingRounded.tsx | 2 +- src/IconAutoTowingRoundedFilled.tsx | 2 +- src/IconAutoTowingSharp.tsx | 2 +- src/IconAutoTowingSharpFilled.tsx | 2 +- src/IconAutoTransmissionOutlined.tsx | 2 +- src/IconAutoTransmissionOutlinedFilled.tsx | 2 +- src/IconAutoTransmissionRounded.tsx | 2 +- src/IconAutoTransmissionRoundedFilled.tsx | 2 +- src/IconAutoTransmissionSharp.tsx | 2 +- src/IconAutoTransmissionSharpFilled.tsx | 2 +- src/IconAutofpsSelectOutlined.tsx | 2 +- src/IconAutofpsSelectOutlinedFilled.tsx | 2 +- src/IconAutofpsSelectRounded.tsx | 2 +- src/IconAutofpsSelectRoundedFilled.tsx | 2 +- src/IconAutofpsSelectSharp.tsx | 2 +- src/IconAutofpsSelectSharpFilled.tsx | 2 +- src/IconAutomationOutlined.tsx | 2 +- src/IconAutomationOutlinedFilled.tsx | 2 +- src/IconAutomationRounded.tsx | 2 +- src/IconAutomationRoundedFilled.tsx | 2 +- src/IconAutomationSharp.tsx | 2 +- src/IconAutomationSharpFilled.tsx | 2 +- src/IconAutopauseOutlined.tsx | 2 +- src/IconAutopauseOutlinedFilled.tsx | 2 +- src/IconAutopauseRounded.tsx | 2 +- src/IconAutopauseRoundedFilled.tsx | 2 +- src/IconAutopauseSharp.tsx | 2 +- src/IconAutopauseSharpFilled.tsx | 2 +- src/IconAutoplayOutlined.tsx | 2 +- src/IconAutoplayOutlinedFilled.tsx | 2 +- src/IconAutoplayRounded.tsx | 2 +- src/IconAutoplayRoundedFilled.tsx | 2 +- src/IconAutoplaySharp.tsx | 2 +- src/IconAutoplaySharpFilled.tsx | 2 +- src/IconAutorenewOutlined.tsx | 2 +- src/IconAutorenewOutlinedFilled.tsx | 2 +- src/IconAutorenewRounded.tsx | 2 +- src/IconAutorenewRoundedFilled.tsx | 2 +- src/IconAutorenewSharp.tsx | 2 +- src/IconAutorenewSharpFilled.tsx | 2 +- src/IconAutostopOutlined.tsx | 2 +- src/IconAutostopOutlinedFilled.tsx | 2 +- src/IconAutostopRounded.tsx | 2 +- src/IconAutostopRoundedFilled.tsx | 2 +- src/IconAutostopSharp.tsx | 2 +- src/IconAutostopSharpFilled.tsx | 2 +- src/IconAv1Outlined.tsx | 2 +- src/IconAv1OutlinedFilled.tsx | 2 +- src/IconAv1Rounded.tsx | 2 +- src/IconAv1RoundedFilled.tsx | 2 +- src/IconAv1Sharp.tsx | 2 +- src/IconAv1SharpFilled.tsx | 2 +- src/IconAvTimerOutlined.tsx | 2 +- src/IconAvTimerOutlinedFilled.tsx | 2 +- src/IconAvTimerRounded.tsx | 2 +- src/IconAvTimerRoundedFilled.tsx | 2 +- src/IconAvTimerSharp.tsx | 2 +- src/IconAvTimerSharpFilled.tsx | 2 +- src/IconAvcOutlined.tsx | 2 +- src/IconAvcOutlinedFilled.tsx | 2 +- src/IconAvcRounded.tsx | 2 +- src/IconAvcRoundedFilled.tsx | 2 +- src/IconAvcSharp.tsx | 2 +- src/IconAvcSharpFilled.tsx | 2 +- src/IconAvgPaceOutlined.tsx | 2 +- src/IconAvgPaceOutlinedFilled.tsx | 2 +- src/IconAvgPaceRounded.tsx | 2 +- src/IconAvgPaceRoundedFilled.tsx | 2 +- src/IconAvgPaceSharp.tsx | 2 +- src/IconAvgPaceSharpFilled.tsx | 2 +- src/IconAvgTimeOutlined.tsx | 2 +- src/IconAvgTimeOutlinedFilled.tsx | 2 +- src/IconAvgTimeRounded.tsx | 2 +- src/IconAvgTimeRoundedFilled.tsx | 2 +- src/IconAvgTimeSharp.tsx | 2 +- src/IconAvgTimeSharpFilled.tsx | 2 +- src/IconAwardStarOutlined.tsx | 2 +- src/IconAwardStarOutlinedFilled.tsx | 2 +- src/IconAwardStarRounded.tsx | 2 +- src/IconAwardStarRoundedFilled.tsx | 2 +- src/IconAwardStarSharp.tsx | 2 +- src/IconAwardStarSharpFilled.tsx | 2 +- src/IconAzmOutlined.tsx | 2 +- src/IconAzmOutlinedFilled.tsx | 2 +- src/IconAzmRounded.tsx | 2 +- src/IconAzmRoundedFilled.tsx | 2 +- src/IconAzmSharp.tsx | 2 +- src/IconAzmSharpFilled.tsx | 2 +- src/IconBabyChangingStationOutlined.tsx | 2 +- src/IconBabyChangingStationOutlinedFilled.tsx | 2 +- src/IconBabyChangingStationRounded.tsx | 2 +- src/IconBabyChangingStationRoundedFilled.tsx | 2 +- src/IconBabyChangingStationSharp.tsx | 2 +- src/IconBabyChangingStationSharpFilled.tsx | 2 +- src/IconBackHandOutlined.tsx | 2 +- src/IconBackHandOutlinedFilled.tsx | 2 +- src/IconBackHandRounded.tsx | 2 +- src/IconBackHandRoundedFilled.tsx | 2 +- src/IconBackHandSharp.tsx | 2 +- src/IconBackHandSharpFilled.tsx | 2 +- src/IconBackToTabOutlined.tsx | 2 +- src/IconBackToTabOutlinedFilled.tsx | 2 +- src/IconBackToTabRounded.tsx | 2 +- src/IconBackToTabRoundedFilled.tsx | 2 +- src/IconBackToTabSharp.tsx | 2 +- src/IconBackToTabSharpFilled.tsx | 2 +- src/IconBackgroundDotLargeOutlined.tsx | 2 +- src/IconBackgroundDotLargeOutlinedFilled.tsx | 2 +- src/IconBackgroundDotLargeRounded.tsx | 2 +- src/IconBackgroundDotLargeRoundedFilled.tsx | 2 +- src/IconBackgroundDotLargeSharp.tsx | 2 +- src/IconBackgroundDotLargeSharpFilled.tsx | 2 +- src/IconBackgroundDotSmallOutlined.tsx | 2 +- src/IconBackgroundDotSmallOutlinedFilled.tsx | 2 +- src/IconBackgroundDotSmallRounded.tsx | 2 +- src/IconBackgroundDotSmallRoundedFilled.tsx | 2 +- src/IconBackgroundDotSmallSharp.tsx | 2 +- src/IconBackgroundDotSmallSharpFilled.tsx | 2 +- src/IconBackgroundGridSmallOutlined.tsx | 2 +- src/IconBackgroundGridSmallOutlinedFilled.tsx | 2 +- src/IconBackgroundGridSmallRounded.tsx | 2 +- src/IconBackgroundGridSmallRoundedFilled.tsx | 2 +- src/IconBackgroundGridSmallSharp.tsx | 2 +- src/IconBackgroundGridSmallSharpFilled.tsx | 2 +- src/IconBackgroundReplaceOutlined.tsx | 2 +- src/IconBackgroundReplaceOutlinedFilled.tsx | 2 +- src/IconBackgroundReplaceRounded.tsx | 2 +- src/IconBackgroundReplaceRoundedFilled.tsx | 2 +- src/IconBackgroundReplaceSharp.tsx | 2 +- src/IconBackgroundReplaceSharpFilled.tsx | 2 +- src/IconBacklightHighOffOutlined.tsx | 2 +- src/IconBacklightHighOffOutlinedFilled.tsx | 2 +- src/IconBacklightHighOffRounded.tsx | 2 +- src/IconBacklightHighOffRoundedFilled.tsx | 2 +- src/IconBacklightHighOffSharp.tsx | 2 +- src/IconBacklightHighOffSharpFilled.tsx | 2 +- src/IconBacklightHighOutlined.tsx | 2 +- src/IconBacklightHighOutlinedFilled.tsx | 2 +- src/IconBacklightHighRounded.tsx | 2 +- src/IconBacklightHighRoundedFilled.tsx | 2 +- src/IconBacklightHighSharp.tsx | 2 +- src/IconBacklightHighSharpFilled.tsx | 2 +- src/IconBacklightLowOutlined.tsx | 2 +- src/IconBacklightLowOutlinedFilled.tsx | 2 +- src/IconBacklightLowRounded.tsx | 2 +- src/IconBacklightLowRoundedFilled.tsx | 2 +- src/IconBacklightLowSharp.tsx | 2 +- src/IconBacklightLowSharpFilled.tsx | 2 +- src/IconBackpackOutlined.tsx | 2 +- src/IconBackpackOutlinedFilled.tsx | 2 +- src/IconBackpackRounded.tsx | 2 +- src/IconBackpackRoundedFilled.tsx | 2 +- src/IconBackpackSharp.tsx | 2 +- src/IconBackpackSharpFilled.tsx | 2 +- src/IconBackspaceOutlined.tsx | 2 +- src/IconBackspaceOutlinedFilled.tsx | 2 +- src/IconBackspaceRounded.tsx | 2 +- src/IconBackspaceRoundedFilled.tsx | 2 +- src/IconBackspaceSharp.tsx | 2 +- src/IconBackspaceSharpFilled.tsx | 2 +- src/IconBackupOutlined.tsx | 2 +- src/IconBackupOutlinedFilled.tsx | 2 +- src/IconBackupRounded.tsx | 2 +- src/IconBackupRoundedFilled.tsx | 2 +- src/IconBackupSharp.tsx | 2 +- src/IconBackupSharpFilled.tsx | 2 +- src/IconBackupTableOutlined.tsx | 2 +- src/IconBackupTableOutlinedFilled.tsx | 2 +- src/IconBackupTableRounded.tsx | 2 +- src/IconBackupTableRoundedFilled.tsx | 2 +- src/IconBackupTableSharp.tsx | 2 +- src/IconBackupTableSharpFilled.tsx | 2 +- src/IconBadgeCriticalBatteryOutlined.tsx | 2 +- src/IconBadgeCriticalBatteryOutlinedFilled.tsx | 2 +- src/IconBadgeCriticalBatteryRounded.tsx | 2 +- src/IconBadgeCriticalBatteryRoundedFilled.tsx | 2 +- src/IconBadgeCriticalBatterySharp.tsx | 2 +- src/IconBadgeCriticalBatterySharpFilled.tsx | 2 +- src/IconBadgeOutlined.tsx | 2 +- src/IconBadgeOutlinedFilled.tsx | 2 +- src/IconBadgeRounded.tsx | 2 +- src/IconBadgeRoundedFilled.tsx | 2 +- src/IconBadgeSharp.tsx | 2 +- src/IconBadgeSharpFilled.tsx | 2 +- src/IconBakeryDiningOutlined.tsx | 2 +- src/IconBakeryDiningOutlinedFilled.tsx | 2 +- src/IconBakeryDiningRounded.tsx | 2 +- src/IconBakeryDiningRoundedFilled.tsx | 2 +- src/IconBakeryDiningSharp.tsx | 2 +- src/IconBakeryDiningSharpFilled.tsx | 2 +- src/IconBalanceOutlined.tsx | 2 +- src/IconBalanceOutlinedFilled.tsx | 2 +- src/IconBalanceRounded.tsx | 2 +- src/IconBalanceRoundedFilled.tsx | 2 +- src/IconBalanceSharp.tsx | 2 +- src/IconBalanceSharpFilled.tsx | 2 +- src/IconBalconyOutlined.tsx | 2 +- src/IconBalconyOutlinedFilled.tsx | 2 +- src/IconBalconyRounded.tsx | 2 +- src/IconBalconyRoundedFilled.tsx | 2 +- src/IconBalconySharp.tsx | 2 +- src/IconBalconySharpFilled.tsx | 2 +- src/IconBallotOutlined.tsx | 2 +- src/IconBallotOutlinedFilled.tsx | 2 +- src/IconBallotRounded.tsx | 2 +- src/IconBallotRoundedFilled.tsx | 2 +- src/IconBallotSharp.tsx | 2 +- src/IconBallotSharpFilled.tsx | 2 +- src/IconBarChart4BarsOutlined.tsx | 2 +- src/IconBarChart4BarsOutlinedFilled.tsx | 2 +- src/IconBarChart4BarsRounded.tsx | 2 +- src/IconBarChart4BarsRoundedFilled.tsx | 2 +- src/IconBarChart4BarsSharp.tsx | 2 +- src/IconBarChart4BarsSharpFilled.tsx | 2 +- src/IconBarChartOffOutlined.tsx | 2 +- src/IconBarChartOffOutlinedFilled.tsx | 2 +- src/IconBarChartOffRounded.tsx | 2 +- src/IconBarChartOffRoundedFilled.tsx | 2 +- src/IconBarChartOffSharp.tsx | 2 +- src/IconBarChartOffSharpFilled.tsx | 2 +- src/IconBarChartOutlined.tsx | 2 +- src/IconBarChartOutlinedFilled.tsx | 2 +- src/IconBarChartRounded.tsx | 2 +- src/IconBarChartRoundedFilled.tsx | 2 +- src/IconBarChartSharp.tsx | 2 +- src/IconBarChartSharpFilled.tsx | 2 +- src/IconBarcodeOutlined.tsx | 2 +- src/IconBarcodeOutlinedFilled.tsx | 2 +- src/IconBarcodeReaderOutlined.tsx | 2 +- src/IconBarcodeReaderOutlinedFilled.tsx | 2 +- src/IconBarcodeReaderRounded.tsx | 2 +- src/IconBarcodeReaderRoundedFilled.tsx | 2 +- src/IconBarcodeReaderSharp.tsx | 2 +- src/IconBarcodeReaderSharpFilled.tsx | 2 +- src/IconBarcodeRounded.tsx | 2 +- src/IconBarcodeRoundedFilled.tsx | 2 +- src/IconBarcodeScannerOutlined.tsx | 2 +- src/IconBarcodeScannerOutlinedFilled.tsx | 2 +- src/IconBarcodeScannerRounded.tsx | 2 +- src/IconBarcodeScannerRoundedFilled.tsx | 2 +- src/IconBarcodeScannerSharp.tsx | 2 +- src/IconBarcodeScannerSharpFilled.tsx | 2 +- src/IconBarcodeSharp.tsx | 2 +- src/IconBarcodeSharpFilled.tsx | 2 +- src/IconBarefootOutlined.tsx | 2 +- src/IconBarefootOutlinedFilled.tsx | 2 +- src/IconBarefootRounded.tsx | 2 +- src/IconBarefootRoundedFilled.tsx | 2 +- src/IconBarefootSharp.tsx | 2 +- src/IconBarefootSharpFilled.tsx | 2 +- src/IconBatchPredictionOutlined.tsx | 2 +- src/IconBatchPredictionOutlinedFilled.tsx | 2 +- src/IconBatchPredictionRounded.tsx | 2 +- src/IconBatchPredictionRoundedFilled.tsx | 2 +- src/IconBatchPredictionSharp.tsx | 2 +- src/IconBatchPredictionSharpFilled.tsx | 2 +- src/IconBathOutdoorOutlined.tsx | 2 +- src/IconBathOutdoorOutlinedFilled.tsx | 2 +- src/IconBathOutdoorRounded.tsx | 2 +- src/IconBathOutdoorRoundedFilled.tsx | 2 +- src/IconBathOutdoorSharp.tsx | 2 +- src/IconBathOutdoorSharpFilled.tsx | 2 +- src/IconBathPrivateOutlined.tsx | 2 +- src/IconBathPrivateOutlinedFilled.tsx | 2 +- src/IconBathPrivateRounded.tsx | 2 +- src/IconBathPrivateRoundedFilled.tsx | 2 +- src/IconBathPrivateSharp.tsx | 2 +- src/IconBathPrivateSharpFilled.tsx | 2 +- src/IconBathPublicLargeOutlined.tsx | 2 +- src/IconBathPublicLargeOutlinedFilled.tsx | 2 +- src/IconBathPublicLargeRounded.tsx | 2 +- src/IconBathPublicLargeRoundedFilled.tsx | 2 +- src/IconBathPublicLargeSharp.tsx | 2 +- src/IconBathPublicLargeSharpFilled.tsx | 2 +- src/IconBathroomOutlined.tsx | 2 +- src/IconBathroomOutlinedFilled.tsx | 2 +- src/IconBathroomRounded.tsx | 2 +- src/IconBathroomRoundedFilled.tsx | 2 +- src/IconBathroomSharp.tsx | 2 +- src/IconBathroomSharpFilled.tsx | 2 +- src/IconBathtubOutlined.tsx | 2 +- src/IconBathtubOutlinedFilled.tsx | 2 +- src/IconBathtubRounded.tsx | 2 +- src/IconBathtubRoundedFilled.tsx | 2 +- src/IconBathtubSharp.tsx | 2 +- src/IconBathtubSharpFilled.tsx | 2 +- src/IconBattery0BarOutlined.tsx | 2 +- src/IconBattery0BarOutlinedFilled.tsx | 2 +- src/IconBattery0BarRounded.tsx | 2 +- src/IconBattery0BarRoundedFilled.tsx | 2 +- src/IconBattery0BarSharp.tsx | 2 +- src/IconBattery0BarSharpFilled.tsx | 2 +- src/IconBattery1BarOutlined.tsx | 2 +- src/IconBattery1BarOutlinedFilled.tsx | 2 +- src/IconBattery1BarRounded.tsx | 2 +- src/IconBattery1BarRoundedFilled.tsx | 2 +- src/IconBattery1BarSharp.tsx | 2 +- src/IconBattery1BarSharpFilled.tsx | 2 +- src/IconBattery2BarOutlined.tsx | 2 +- src/IconBattery2BarOutlinedFilled.tsx | 2 +- src/IconBattery2BarRounded.tsx | 2 +- src/IconBattery2BarRoundedFilled.tsx | 2 +- src/IconBattery2BarSharp.tsx | 2 +- src/IconBattery2BarSharpFilled.tsx | 2 +- src/IconBattery3BarOutlined.tsx | 2 +- src/IconBattery3BarOutlinedFilled.tsx | 2 +- src/IconBattery3BarRounded.tsx | 2 +- src/IconBattery3BarRoundedFilled.tsx | 2 +- src/IconBattery3BarSharp.tsx | 2 +- src/IconBattery3BarSharpFilled.tsx | 2 +- src/IconBattery4BarOutlined.tsx | 2 +- src/IconBattery4BarOutlinedFilled.tsx | 2 +- src/IconBattery4BarRounded.tsx | 2 +- src/IconBattery4BarRoundedFilled.tsx | 2 +- src/IconBattery4BarSharp.tsx | 2 +- src/IconBattery4BarSharpFilled.tsx | 2 +- src/IconBattery5BarOutlined.tsx | 2 +- src/IconBattery5BarOutlinedFilled.tsx | 2 +- src/IconBattery5BarRounded.tsx | 2 +- src/IconBattery5BarRoundedFilled.tsx | 2 +- src/IconBattery5BarSharp.tsx | 2 +- src/IconBattery5BarSharpFilled.tsx | 2 +- src/IconBattery6BarOutlined.tsx | 2 +- src/IconBattery6BarOutlinedFilled.tsx | 2 +- src/IconBattery6BarRounded.tsx | 2 +- src/IconBattery6BarRoundedFilled.tsx | 2 +- src/IconBattery6BarSharp.tsx | 2 +- src/IconBattery6BarSharpFilled.tsx | 2 +- src/IconBatteryAlertOutlined.tsx | 2 +- src/IconBatteryAlertOutlinedFilled.tsx | 2 +- src/IconBatteryAlertRounded.tsx | 2 +- src/IconBatteryAlertRoundedFilled.tsx | 2 +- src/IconBatteryAlertSharp.tsx | 2 +- src/IconBatteryAlertSharpFilled.tsx | 2 +- src/IconBatteryChangeOutlined.tsx | 2 +- src/IconBatteryChangeOutlinedFilled.tsx | 2 +- src/IconBatteryChangeRounded.tsx | 2 +- src/IconBatteryChangeRoundedFilled.tsx | 2 +- src/IconBatteryChangeSharp.tsx | 2 +- src/IconBatteryChangeSharpFilled.tsx | 2 +- src/IconBatteryCharging20Outlined.tsx | 2 +- src/IconBatteryCharging20OutlinedFilled.tsx | 2 +- src/IconBatteryCharging20Rounded.tsx | 2 +- src/IconBatteryCharging20RoundedFilled.tsx | 2 +- src/IconBatteryCharging20Sharp.tsx | 2 +- src/IconBatteryCharging20SharpFilled.tsx | 2 +- src/IconBatteryCharging30Outlined.tsx | 2 +- src/IconBatteryCharging30OutlinedFilled.tsx | 2 +- src/IconBatteryCharging30Rounded.tsx | 2 +- src/IconBatteryCharging30RoundedFilled.tsx | 2 +- src/IconBatteryCharging30Sharp.tsx | 2 +- src/IconBatteryCharging30SharpFilled.tsx | 2 +- src/IconBatteryCharging50Outlined.tsx | 2 +- src/IconBatteryCharging50OutlinedFilled.tsx | 2 +- src/IconBatteryCharging50Rounded.tsx | 2 +- src/IconBatteryCharging50RoundedFilled.tsx | 2 +- src/IconBatteryCharging50Sharp.tsx | 2 +- src/IconBatteryCharging50SharpFilled.tsx | 2 +- src/IconBatteryCharging60Outlined.tsx | 2 +- src/IconBatteryCharging60OutlinedFilled.tsx | 2 +- src/IconBatteryCharging60Rounded.tsx | 2 +- src/IconBatteryCharging60RoundedFilled.tsx | 2 +- src/IconBatteryCharging60Sharp.tsx | 2 +- src/IconBatteryCharging60SharpFilled.tsx | 2 +- src/IconBatteryCharging80Outlined.tsx | 2 +- src/IconBatteryCharging80OutlinedFilled.tsx | 2 +- src/IconBatteryCharging80Rounded.tsx | 2 +- src/IconBatteryCharging80RoundedFilled.tsx | 2 +- src/IconBatteryCharging80Sharp.tsx | 2 +- src/IconBatteryCharging80SharpFilled.tsx | 2 +- src/IconBatteryCharging90Outlined.tsx | 2 +- src/IconBatteryCharging90OutlinedFilled.tsx | 2 +- src/IconBatteryCharging90Rounded.tsx | 2 +- src/IconBatteryCharging90RoundedFilled.tsx | 2 +- src/IconBatteryCharging90Sharp.tsx | 2 +- src/IconBatteryCharging90SharpFilled.tsx | 2 +- src/IconBatteryChargingFullOutlined.tsx | 2 +- src/IconBatteryChargingFullOutlinedFilled.tsx | 2 +- src/IconBatteryChargingFullRounded.tsx | 2 +- src/IconBatteryChargingFullRoundedFilled.tsx | 2 +- src/IconBatteryChargingFullSharp.tsx | 2 +- src/IconBatteryChargingFullSharpFilled.tsx | 2 +- src/IconBatteryErrorOutlined.tsx | 2 +- src/IconBatteryErrorOutlinedFilled.tsx | 2 +- src/IconBatteryErrorRounded.tsx | 2 +- src/IconBatteryErrorRoundedFilled.tsx | 2 +- src/IconBatteryErrorSharp.tsx | 2 +- src/IconBatteryErrorSharpFilled.tsx | 2 +- src/IconBatteryFullAltOutlined.tsx | 2 +- src/IconBatteryFullAltOutlinedFilled.tsx | 2 +- src/IconBatteryFullAltRounded.tsx | 2 +- src/IconBatteryFullAltRoundedFilled.tsx | 2 +- src/IconBatteryFullAltSharp.tsx | 2 +- src/IconBatteryFullAltSharpFilled.tsx | 2 +- src/IconBatteryFullOutlined.tsx | 2 +- src/IconBatteryFullOutlinedFilled.tsx | 2 +- src/IconBatteryFullRounded.tsx | 2 +- src/IconBatteryFullRoundedFilled.tsx | 2 +- src/IconBatteryFullSharp.tsx | 2 +- src/IconBatteryFullSharpFilled.tsx | 2 +- src/IconBatteryHoriz000Outlined.tsx | 2 +- src/IconBatteryHoriz000OutlinedFilled.tsx | 2 +- src/IconBatteryHoriz000Rounded.tsx | 2 +- src/IconBatteryHoriz000RoundedFilled.tsx | 2 +- src/IconBatteryHoriz000Sharp.tsx | 2 +- src/IconBatteryHoriz000SharpFilled.tsx | 2 +- src/IconBatteryHoriz050Outlined.tsx | 2 +- src/IconBatteryHoriz050OutlinedFilled.tsx | 2 +- src/IconBatteryHoriz050Rounded.tsx | 2 +- src/IconBatteryHoriz050RoundedFilled.tsx | 2 +- src/IconBatteryHoriz050SharpFilled.tsx | 2 +- src/IconBatteryHoriz075Outlined.tsx | 2 +- src/IconBatteryHoriz075OutlinedFilled.tsx | 2 +- src/IconBatteryHoriz075Rounded.tsx | 2 +- src/IconBatteryHoriz075RoundedFilled.tsx | 2 +- src/IconBatteryHoriz075Sharp.tsx | 2 +- src/IconBatteryHoriz075SharpFilled.tsx | 2 +- src/IconBatteryLowOutlined.tsx | 2 +- src/IconBatteryLowOutlinedFilled.tsx | 2 +- src/IconBatteryLowRounded.tsx | 2 +- src/IconBatteryLowRoundedFilled.tsx | 2 +- src/IconBatteryLowSharp.tsx | 2 +- src/IconBatteryLowSharpFilled.tsx | 2 +- src/IconBatteryPlusOutlined.tsx | 2 +- src/IconBatteryPlusOutlinedFilled.tsx | 2 +- src/IconBatteryPlusRounded.tsx | 2 +- src/IconBatteryPlusRoundedFilled.tsx | 2 +- src/IconBatteryPlusSharp.tsx | 2 +- src/IconBatteryPlusSharpFilled.tsx | 2 +- src/IconBatteryProfileOutlined.tsx | 2 +- src/IconBatteryProfileOutlinedFilled.tsx | 2 +- src/IconBatteryProfileRounded.tsx | 2 +- src/IconBatteryProfileRoundedFilled.tsx | 2 +- src/IconBatteryProfileSharp.tsx | 2 +- src/IconBatteryProfileSharpFilled.tsx | 2 +- src/IconBatterySaverOutlined.tsx | 2 +- src/IconBatterySaverOutlinedFilled.tsx | 2 +- src/IconBatterySaverRounded.tsx | 2 +- src/IconBatterySaverRoundedFilled.tsx | 2 +- src/IconBatterySaverSharp.tsx | 2 +- src/IconBatterySaverSharpFilled.tsx | 2 +- src/IconBatteryShareOutlined.tsx | 2 +- src/IconBatteryShareOutlinedFilled.tsx | 2 +- src/IconBatteryShareRounded.tsx | 2 +- src/IconBatteryShareRoundedFilled.tsx | 2 +- src/IconBatteryShareSharp.tsx | 2 +- src/IconBatteryShareSharpFilled.tsx | 2 +- src/IconBatteryStatusGoodOutlined.tsx | 2 +- src/IconBatteryStatusGoodOutlinedFilled.tsx | 2 +- src/IconBatteryStatusGoodRounded.tsx | 2 +- src/IconBatteryStatusGoodRoundedFilled.tsx | 2 +- src/IconBatteryStatusGoodSharp.tsx | 2 +- src/IconBatteryStatusGoodSharpFilled.tsx | 2 +- src/IconBatteryUnknownOutlined.tsx | 2 +- src/IconBatteryUnknownOutlinedFilled.tsx | 2 +- src/IconBatteryUnknownRounded.tsx | 2 +- src/IconBatteryUnknownRoundedFilled.tsx | 2 +- src/IconBatteryUnknownSharp.tsx | 2 +- src/IconBatteryUnknownSharpFilled.tsx | 2 +- src/IconBatteryVeryLowOutlined.tsx | 2 +- src/IconBatteryVeryLowOutlinedFilled.tsx | 2 +- src/IconBatteryVeryLowRounded.tsx | 2 +- src/IconBatteryVeryLowRoundedFilled.tsx | 2 +- src/IconBatteryVeryLowSharp.tsx | 2 +- src/IconBatteryVeryLowSharpFilled.tsx | 2 +- src/IconBeachAccessOutlined.tsx | 2 +- src/IconBeachAccessOutlinedFilled.tsx | 2 +- src/IconBeachAccessRounded.tsx | 2 +- src/IconBeachAccessRoundedFilled.tsx | 2 +- src/IconBeachAccessSharp.tsx | 2 +- src/IconBeachAccessSharpFilled.tsx | 2 +- src/IconBedOutlined.tsx | 2 +- src/IconBedOutlinedFilled.tsx | 2 +- src/IconBedRounded.tsx | 2 +- src/IconBedRoundedFilled.tsx | 2 +- src/IconBedSharp.tsx | 2 +- src/IconBedSharpFilled.tsx | 2 +- src/IconBedroomBabyOutlined.tsx | 2 +- src/IconBedroomBabyOutlinedFilled.tsx | 2 +- src/IconBedroomBabyRounded.tsx | 2 +- src/IconBedroomBabyRoundedFilled.tsx | 2 +- src/IconBedroomBabySharp.tsx | 2 +- src/IconBedroomBabySharpFilled.tsx | 2 +- src/IconBedroomChildOutlined.tsx | 2 +- src/IconBedroomChildOutlinedFilled.tsx | 2 +- src/IconBedroomChildRounded.tsx | 2 +- src/IconBedroomChildRoundedFilled.tsx | 2 +- src/IconBedroomChildSharp.tsx | 2 +- src/IconBedroomChildSharpFilled.tsx | 2 +- src/IconBedroomParentOutlined.tsx | 2 +- src/IconBedroomParentOutlinedFilled.tsx | 2 +- src/IconBedroomParentRounded.tsx | 2 +- src/IconBedroomParentRoundedFilled.tsx | 2 +- src/IconBedroomParentSharp.tsx | 2 +- src/IconBedroomParentSharpFilled.tsx | 2 +- src/IconBedtimeOffOutlined.tsx | 2 +- src/IconBedtimeOffOutlinedFilled.tsx | 2 +- src/IconBedtimeOffRounded.tsx | 2 +- src/IconBedtimeOffRoundedFilled.tsx | 2 +- src/IconBedtimeOffSharp.tsx | 2 +- src/IconBedtimeOffSharpFilled.tsx | 2 +- src/IconBedtimeOutlined.tsx | 2 +- src/IconBedtimeOutlinedFilled.tsx | 2 +- src/IconBedtimeRounded.tsx | 2 +- src/IconBedtimeRoundedFilled.tsx | 2 +- src/IconBedtimeSharp.tsx | 2 +- src/IconBedtimeSharpFilled.tsx | 2 +- src/IconBeenhereOutlined.tsx | 2 +- src/IconBeenhereOutlinedFilled.tsx | 2 +- src/IconBeenhereRounded.tsx | 2 +- src/IconBeenhereRoundedFilled.tsx | 2 +- src/IconBeenhereSharp.tsx | 2 +- src/IconBeenhereSharpFilled.tsx | 2 +- src/IconBentoOutlined.tsx | 2 +- src/IconBentoOutlinedFilled.tsx | 2 +- src/IconBentoRounded.tsx | 2 +- src/IconBentoRoundedFilled.tsx | 2 +- src/IconBentoSharp.tsx | 2 +- src/IconBentoSharpFilled.tsx | 2 +- src/IconBiaOutlined.tsx | 2 +- src/IconBiaOutlinedFilled.tsx | 2 +- src/IconBiaRounded.tsx | 2 +- src/IconBiaRoundedFilled.tsx | 2 +- src/IconBiaSharp.tsx | 2 +- src/IconBiaSharpFilled.tsx | 2 +- src/IconBidLandscapeDisabledOutlined.tsx | 2 +- src/IconBidLandscapeDisabledOutlinedFilled.tsx | 2 +- src/IconBidLandscapeDisabledRounded.tsx | 2 +- src/IconBidLandscapeDisabledRoundedFilled.tsx | 2 +- src/IconBidLandscapeDisabledSharp.tsx | 2 +- src/IconBidLandscapeDisabledSharpFilled.tsx | 2 +- src/IconBidLandscapeOutlined.tsx | 2 +- src/IconBidLandscapeOutlinedFilled.tsx | 2 +- src/IconBidLandscapeRounded.tsx | 2 +- src/IconBidLandscapeRoundedFilled.tsx | 2 +- src/IconBidLandscapeSharp.tsx | 2 +- src/IconBidLandscapeSharpFilled.tsx | 2 +- src/IconBigtopUpdatesOutlined.tsx | 2 +- src/IconBigtopUpdatesOutlinedFilled.tsx | 2 +- src/IconBigtopUpdatesRounded.tsx | 2 +- src/IconBigtopUpdatesRoundedFilled.tsx | 2 +- src/IconBigtopUpdatesSharp.tsx | 2 +- src/IconBigtopUpdatesSharpFilled.tsx | 2 +- src/IconBikeDockOutlined.tsx | 2 +- src/IconBikeDockOutlinedFilled.tsx | 2 +- src/IconBikeDockRounded.tsx | 2 +- src/IconBikeDockRoundedFilled.tsx | 2 +- src/IconBikeDockSharp.tsx | 2 +- src/IconBikeDockSharpFilled.tsx | 2 +- src/IconBikeLaneOutlined.tsx | 2 +- src/IconBikeLaneOutlinedFilled.tsx | 2 +- src/IconBikeLaneRounded.tsx | 2 +- src/IconBikeLaneRoundedFilled.tsx | 2 +- src/IconBikeLaneSharp.tsx | 2 +- src/IconBikeLaneSharpFilled.tsx | 2 +- src/IconBikeScooterOutlined.tsx | 2 +- src/IconBikeScooterOutlinedFilled.tsx | 2 +- src/IconBikeScooterRounded.tsx | 2 +- src/IconBikeScooterRoundedFilled.tsx | 2 +- src/IconBikeScooterSharp.tsx | 2 +- src/IconBikeScooterSharpFilled.tsx | 2 +- src/IconBiotechOutlined.tsx | 2 +- src/IconBiotechOutlinedFilled.tsx | 2 +- src/IconBiotechRounded.tsx | 2 +- src/IconBiotechRoundedFilled.tsx | 2 +- src/IconBiotechSharp.tsx | 2 +- src/IconBiotechSharpFilled.tsx | 2 +- src/IconBlanketOutlined.tsx | 2 +- src/IconBlanketOutlinedFilled.tsx | 2 +- src/IconBlanketRounded.tsx | 2 +- src/IconBlanketRoundedFilled.tsx | 2 +- src/IconBlanketSharp.tsx | 2 +- src/IconBlanketSharpFilled.tsx | 2 +- src/IconBlenderOutlined.tsx | 2 +- src/IconBlenderOutlinedFilled.tsx | 2 +- src/IconBlenderRounded.tsx | 2 +- src/IconBlenderRoundedFilled.tsx | 2 +- src/IconBlenderSharp.tsx | 2 +- src/IconBlenderSharpFilled.tsx | 2 +- src/IconBlindOutlined.tsx | 2 +- src/IconBlindOutlinedFilled.tsx | 2 +- src/IconBlindRounded.tsx | 2 +- src/IconBlindRoundedFilled.tsx | 2 +- src/IconBlindSharp.tsx | 2 +- src/IconBlindSharpFilled.tsx | 2 +- src/IconBlindsClosedOutlined.tsx | 2 +- src/IconBlindsClosedOutlinedFilled.tsx | 2 +- src/IconBlindsClosedRounded.tsx | 2 +- src/IconBlindsClosedRoundedFilled.tsx | 2 +- src/IconBlindsClosedSharp.tsx | 2 +- src/IconBlindsClosedSharpFilled.tsx | 2 +- src/IconBlindsOutlined.tsx | 2 +- src/IconBlindsOutlinedFilled.tsx | 2 +- src/IconBlindsRounded.tsx | 2 +- src/IconBlindsRoundedFilled.tsx | 2 +- src/IconBlindsSharp.tsx | 2 +- src/IconBlindsSharpFilled.tsx | 2 +- src/IconBlockOutlined.tsx | 2 +- src/IconBlockOutlinedFilled.tsx | 2 +- src/IconBlockRounded.tsx | 2 +- src/IconBlockRoundedFilled.tsx | 2 +- src/IconBlockSharp.tsx | 2 +- src/IconBlockSharpFilled.tsx | 2 +- src/IconBloodPressureOutlined.tsx | 2 +- src/IconBloodPressureOutlinedFilled.tsx | 2 +- src/IconBloodPressureRounded.tsx | 2 +- src/IconBloodPressureRoundedFilled.tsx | 2 +- src/IconBloodPressureSharp.tsx | 2 +- src/IconBloodPressureSharpFilled.tsx | 2 +- src/IconBloodtypeOutlined.tsx | 2 +- src/IconBloodtypeOutlinedFilled.tsx | 2 +- src/IconBloodtypeRounded.tsx | 2 +- src/IconBloodtypeRoundedFilled.tsx | 2 +- src/IconBloodtypeSharp.tsx | 2 +- src/IconBloodtypeSharpFilled.tsx | 2 +- src/IconBluetoothConnectedOutlined.tsx | 2 +- src/IconBluetoothConnectedOutlinedFilled.tsx | 2 +- src/IconBluetoothConnectedRounded.tsx | 2 +- src/IconBluetoothConnectedRoundedFilled.tsx | 2 +- src/IconBluetoothConnectedSharp.tsx | 2 +- src/IconBluetoothConnectedSharpFilled.tsx | 2 +- src/IconBluetoothDisabledOutlined.tsx | 2 +- src/IconBluetoothDisabledOutlinedFilled.tsx | 2 +- src/IconBluetoothDisabledRounded.tsx | 2 +- src/IconBluetoothDisabledRoundedFilled.tsx | 2 +- src/IconBluetoothDisabledSharp.tsx | 2 +- src/IconBluetoothDisabledSharpFilled.tsx | 2 +- src/IconBluetoothDriveOutlined.tsx | 2 +- src/IconBluetoothDriveOutlinedFilled.tsx | 2 +- src/IconBluetoothDriveRounded.tsx | 2 +- src/IconBluetoothDriveRoundedFilled.tsx | 2 +- src/IconBluetoothDriveSharp.tsx | 2 +- src/IconBluetoothDriveSharpFilled.tsx | 2 +- src/IconBluetoothOutlined.tsx | 2 +- src/IconBluetoothOutlinedFilled.tsx | 2 +- src/IconBluetoothRounded.tsx | 2 +- src/IconBluetoothRoundedFilled.tsx | 2 +- src/IconBluetoothSearchingOutlined.tsx | 2 +- src/IconBluetoothSearchingOutlinedFilled.tsx | 2 +- src/IconBluetoothSearchingRounded.tsx | 2 +- src/IconBluetoothSearchingRoundedFilled.tsx | 2 +- src/IconBluetoothSearchingSharp.tsx | 2 +- src/IconBluetoothSearchingSharpFilled.tsx | 2 +- src/IconBluetoothSharp.tsx | 2 +- src/IconBluetoothSharpFilled.tsx | 2 +- src/IconBlurCircularOutlined.tsx | 2 +- src/IconBlurCircularOutlinedFilled.tsx | 2 +- src/IconBlurCircularRounded.tsx | 2 +- src/IconBlurCircularRoundedFilled.tsx | 2 +- src/IconBlurCircularSharp.tsx | 2 +- src/IconBlurCircularSharpFilled.tsx | 2 +- src/IconBlurLinearOutlined.tsx | 2 +- src/IconBlurLinearOutlinedFilled.tsx | 2 +- src/IconBlurLinearRounded.tsx | 2 +- src/IconBlurLinearRoundedFilled.tsx | 2 +- src/IconBlurLinearSharp.tsx | 2 +- src/IconBlurLinearSharpFilled.tsx | 2 +- src/IconBlurMediumOutlined.tsx | 2 +- src/IconBlurMediumOutlinedFilled.tsx | 2 +- src/IconBlurMediumRounded.tsx | 2 +- src/IconBlurMediumRoundedFilled.tsx | 2 +- src/IconBlurMediumSharp.tsx | 2 +- src/IconBlurMediumSharpFilled.tsx | 2 +- src/IconBlurOffOutlined.tsx | 2 +- src/IconBlurOffOutlinedFilled.tsx | 2 +- src/IconBlurOffRounded.tsx | 2 +- src/IconBlurOffRoundedFilled.tsx | 2 +- src/IconBlurOffSharp.tsx | 2 +- src/IconBlurOffSharpFilled.tsx | 2 +- src/IconBlurOnOutlined.tsx | 2 +- src/IconBlurOnOutlinedFilled.tsx | 2 +- src/IconBlurOnRounded.tsx | 2 +- src/IconBlurOnRoundedFilled.tsx | 2 +- src/IconBlurOnSharp.tsx | 2 +- src/IconBlurOnSharpFilled.tsx | 2 +- src/IconBlurShortOutlined.tsx | 2 +- src/IconBlurShortOutlinedFilled.tsx | 2 +- src/IconBlurShortRounded.tsx | 2 +- src/IconBlurShortRoundedFilled.tsx | 2 +- src/IconBlurShortSharp.tsx | 2 +- src/IconBlurShortSharpFilled.tsx | 2 +- src/IconBodyFatOutlined.tsx | 2 +- src/IconBodyFatOutlinedFilled.tsx | 2 +- src/IconBodyFatRounded.tsx | 2 +- src/IconBodyFatRoundedFilled.tsx | 2 +- src/IconBodyFatSharp.tsx | 2 +- src/IconBodyFatSharpFilled.tsx | 2 +- src/IconBodySystemOutlined.tsx | 2 +- src/IconBodySystemOutlinedFilled.tsx | 2 +- src/IconBodySystemRounded.tsx | 2 +- src/IconBodySystemRoundedFilled.tsx | 2 +- src/IconBodySystemSharp.tsx | 2 +- src/IconBodySystemSharpFilled.tsx | 2 +- src/IconBoltOutlined.tsx | 2 +- src/IconBoltOutlinedFilled.tsx | 2 +- src/IconBoltRounded.tsx | 2 +- src/IconBoltRoundedFilled.tsx | 2 +- src/IconBoltSharp.tsx | 2 +- src/IconBoltSharpFilled.tsx | 2 +- src/IconBombOutlined.tsx | 2 +- src/IconBombOutlinedFilled.tsx | 2 +- src/IconBombRounded.tsx | 2 +- src/IconBombRoundedFilled.tsx | 2 +- src/IconBombSharp.tsx | 2 +- src/IconBombSharpFilled.tsx | 2 +- src/IconBook2Outlined.tsx | 2 +- src/IconBook2OutlinedFilled.tsx | 2 +- src/IconBook2Rounded.tsx | 2 +- src/IconBook2RoundedFilled.tsx | 2 +- src/IconBook2Sharp.tsx | 2 +- src/IconBook2SharpFilled.tsx | 2 +- src/IconBook3Outlined.tsx | 2 +- src/IconBook3OutlinedFilled.tsx | 2 +- src/IconBook3Rounded.tsx | 2 +- src/IconBook3RoundedFilled.tsx | 2 +- src/IconBook3Sharp.tsx | 2 +- src/IconBook3SharpFilled.tsx | 2 +- src/IconBook4Outlined.tsx | 2 +- src/IconBook4OutlinedFilled.tsx | 2 +- src/IconBook4Rounded.tsx | 2 +- src/IconBook4RoundedFilled.tsx | 2 +- src/IconBook4Sharp.tsx | 2 +- src/IconBook4SharpFilled.tsx | 2 +- src/IconBook5Outlined.tsx | 2 +- src/IconBook5OutlinedFilled.tsx | 2 +- src/IconBook5Rounded.tsx | 2 +- src/IconBook5RoundedFilled.tsx | 2 +- src/IconBook5Sharp.tsx | 2 +- src/IconBook5SharpFilled.tsx | 2 +- src/IconBookOnlineOutlined.tsx | 2 +- src/IconBookOnlineOutlinedFilled.tsx | 2 +- src/IconBookOnlineRounded.tsx | 2 +- src/IconBookOnlineRoundedFilled.tsx | 2 +- src/IconBookOnlineSharp.tsx | 2 +- src/IconBookOnlineSharpFilled.tsx | 2 +- src/IconBookOutlined.tsx | 2 +- src/IconBookOutlinedFilled.tsx | 2 +- src/IconBookRounded.tsx | 2 +- src/IconBookRoundedFilled.tsx | 2 +- src/IconBookSharp.tsx | 2 +- src/IconBookSharpFilled.tsx | 2 +- src/IconBookmarkAddOutlined.tsx | 2 +- src/IconBookmarkAddOutlinedFilled.tsx | 2 +- src/IconBookmarkAddRounded.tsx | 2 +- src/IconBookmarkAddRoundedFilled.tsx | 2 +- src/IconBookmarkAddSharp.tsx | 2 +- src/IconBookmarkAddSharpFilled.tsx | 2 +- src/IconBookmarkAddedOutlined.tsx | 2 +- src/IconBookmarkAddedOutlinedFilled.tsx | 2 +- src/IconBookmarkAddedRounded.tsx | 2 +- src/IconBookmarkAddedRoundedFilled.tsx | 2 +- src/IconBookmarkAddedSharp.tsx | 2 +- src/IconBookmarkAddedSharpFilled.tsx | 2 +- src/IconBookmarkBagOutlined.tsx | 2 +- src/IconBookmarkBagOutlinedFilled.tsx | 2 +- src/IconBookmarkBagRounded.tsx | 2 +- src/IconBookmarkBagRoundedFilled.tsx | 2 +- src/IconBookmarkBagSharp.tsx | 2 +- src/IconBookmarkBagSharpFilled.tsx | 2 +- src/IconBookmarkCheckOutlined.tsx | 2 +- src/IconBookmarkCheckOutlinedFilled.tsx | 2 +- src/IconBookmarkCheckRounded.tsx | 2 +- src/IconBookmarkCheckRoundedFilled.tsx | 2 +- src/IconBookmarkCheckSharp.tsx | 2 +- src/IconBookmarkCheckSharpFilled.tsx | 2 +- src/IconBookmarkFlagOutlined.tsx | 2 +- src/IconBookmarkFlagOutlinedFilled.tsx | 2 +- src/IconBookmarkFlagRounded.tsx | 2 +- src/IconBookmarkFlagRoundedFilled.tsx | 2 +- src/IconBookmarkFlagSharp.tsx | 2 +- src/IconBookmarkFlagSharpFilled.tsx | 2 +- src/IconBookmarkHeartOutlined.tsx | 2 +- src/IconBookmarkHeartOutlinedFilled.tsx | 2 +- src/IconBookmarkHeartRounded.tsx | 2 +- src/IconBookmarkHeartRoundedFilled.tsx | 2 +- src/IconBookmarkHeartSharp.tsx | 2 +- src/IconBookmarkHeartSharpFilled.tsx | 2 +- src/IconBookmarkManagerOutlined.tsx | 2 +- src/IconBookmarkManagerOutlinedFilled.tsx | 2 +- src/IconBookmarkManagerRounded.tsx | 2 +- src/IconBookmarkManagerRoundedFilled.tsx | 2 +- src/IconBookmarkManagerSharp.tsx | 2 +- src/IconBookmarkManagerSharpFilled.tsx | 2 +- src/IconBookmarkOutlined.tsx | 2 +- src/IconBookmarkOutlinedFilled.tsx | 2 +- src/IconBookmarkRemoveOutlined.tsx | 2 +- src/IconBookmarkRemoveOutlinedFilled.tsx | 2 +- src/IconBookmarkRemoveRounded.tsx | 2 +- src/IconBookmarkRemoveRoundedFilled.tsx | 2 +- src/IconBookmarkRemoveSharp.tsx | 2 +- src/IconBookmarkRemoveSharpFilled.tsx | 2 +- src/IconBookmarkRounded.tsx | 2 +- src/IconBookmarkRoundedFilled.tsx | 2 +- src/IconBookmarkSharp.tsx | 2 +- src/IconBookmarkSharpFilled.tsx | 2 +- src/IconBookmarkStarOutlined.tsx | 2 +- src/IconBookmarkStarOutlinedFilled.tsx | 2 +- src/IconBookmarkStarRounded.tsx | 2 +- src/IconBookmarkStarRoundedFilled.tsx | 2 +- src/IconBookmarkStarSharp.tsx | 2 +- src/IconBookmarkStarSharpFilled.tsx | 2 +- src/IconBookmarksOutlined.tsx | 2 +- src/IconBookmarksOutlinedFilled.tsx | 2 +- src/IconBookmarksRounded.tsx | 2 +- src/IconBookmarksRoundedFilled.tsx | 2 +- src/IconBookmarksSharp.tsx | 2 +- src/IconBookmarksSharpFilled.tsx | 2 +- src/IconBorderAllOutlined.tsx | 2 +- src/IconBorderAllOutlinedFilled.tsx | 2 +- src/IconBorderAllRounded.tsx | 2 +- src/IconBorderAllRoundedFilled.tsx | 2 +- src/IconBorderAllSharp.tsx | 2 +- src/IconBorderAllSharpFilled.tsx | 2 +- src/IconBorderBottomOutlined.tsx | 2 +- src/IconBorderBottomOutlinedFilled.tsx | 2 +- src/IconBorderBottomRounded.tsx | 2 +- src/IconBorderBottomRoundedFilled.tsx | 2 +- src/IconBorderBottomSharp.tsx | 2 +- src/IconBorderBottomSharpFilled.tsx | 2 +- src/IconBorderClearOutlined.tsx | 2 +- src/IconBorderClearOutlinedFilled.tsx | 2 +- src/IconBorderClearRounded.tsx | 2 +- src/IconBorderClearRoundedFilled.tsx | 2 +- src/IconBorderClearSharp.tsx | 2 +- src/IconBorderClearSharpFilled.tsx | 2 +- src/IconBorderColorOutlined.tsx | 2 +- src/IconBorderColorOutlinedFilled.tsx | 2 +- src/IconBorderColorRounded.tsx | 2 +- src/IconBorderColorRoundedFilled.tsx | 2 +- src/IconBorderColorSharp.tsx | 2 +- src/IconBorderColorSharpFilled.tsx | 2 +- src/IconBorderHorizontalOutlined.tsx | 2 +- src/IconBorderHorizontalOutlinedFilled.tsx | 2 +- src/IconBorderHorizontalRounded.tsx | 2 +- src/IconBorderHorizontalRoundedFilled.tsx | 2 +- src/IconBorderHorizontalSharp.tsx | 2 +- src/IconBorderHorizontalSharpFilled.tsx | 2 +- src/IconBorderInnerOutlined.tsx | 2 +- src/IconBorderInnerOutlinedFilled.tsx | 2 +- src/IconBorderInnerRounded.tsx | 2 +- src/IconBorderInnerRoundedFilled.tsx | 2 +- src/IconBorderInnerSharp.tsx | 2 +- src/IconBorderInnerSharpFilled.tsx | 2 +- src/IconBorderLeftOutlined.tsx | 2 +- src/IconBorderLeftOutlinedFilled.tsx | 2 +- src/IconBorderLeftRounded.tsx | 2 +- src/IconBorderLeftRoundedFilled.tsx | 2 +- src/IconBorderLeftSharp.tsx | 2 +- src/IconBorderLeftSharpFilled.tsx | 2 +- src/IconBorderOuterOutlined.tsx | 2 +- src/IconBorderOuterOutlinedFilled.tsx | 2 +- src/IconBorderOuterRounded.tsx | 2 +- src/IconBorderOuterRoundedFilled.tsx | 2 +- src/IconBorderOuterSharp.tsx | 2 +- src/IconBorderOuterSharpFilled.tsx | 2 +- src/IconBorderRightOutlined.tsx | 2 +- src/IconBorderRightOutlinedFilled.tsx | 2 +- src/IconBorderRightRounded.tsx | 2 +- src/IconBorderRightRoundedFilled.tsx | 2 +- src/IconBorderRightSharp.tsx | 2 +- src/IconBorderRightSharpFilled.tsx | 2 +- src/IconBorderStyleOutlined.tsx | 2 +- src/IconBorderStyleOutlinedFilled.tsx | 2 +- src/IconBorderStyleRounded.tsx | 2 +- src/IconBorderStyleRoundedFilled.tsx | 2 +- src/IconBorderStyleSharp.tsx | 2 +- src/IconBorderStyleSharpFilled.tsx | 2 +- src/IconBorderTopOutlined.tsx | 2 +- src/IconBorderTopOutlinedFilled.tsx | 2 +- src/IconBorderTopRounded.tsx | 2 +- src/IconBorderTopRoundedFilled.tsx | 2 +- src/IconBorderTopSharp.tsx | 2 +- src/IconBorderTopSharpFilled.tsx | 2 +- src/IconBorderVerticalOutlined.tsx | 2 +- src/IconBorderVerticalOutlinedFilled.tsx | 2 +- src/IconBorderVerticalRounded.tsx | 2 +- src/IconBorderVerticalRoundedFilled.tsx | 2 +- src/IconBorderVerticalSharp.tsx | 2 +- src/IconBorderVerticalSharpFilled.tsx | 2 +- src/IconBorgOutlined.tsx | 2 +- src/IconBorgOutlinedFilled.tsx | 2 +- src/IconBorgRounded.tsx | 2 +- src/IconBorgRoundedFilled.tsx | 2 +- src/IconBorgSharp.tsx | 2 +- src/IconBorgSharpFilled.tsx | 2 +- src/IconBottomAppBarOutlined.tsx | 2 +- src/IconBottomAppBarOutlinedFilled.tsx | 2 +- src/IconBottomAppBarRounded.tsx | 2 +- src/IconBottomAppBarRoundedFilled.tsx | 2 +- src/IconBottomAppBarSharp.tsx | 2 +- src/IconBottomAppBarSharpFilled.tsx | 2 +- src/IconBottomDrawerOutlined.tsx | 2 +- src/IconBottomDrawerOutlinedFilled.tsx | 2 +- src/IconBottomDrawerRounded.tsx | 2 +- src/IconBottomDrawerRoundedFilled.tsx | 2 +- src/IconBottomDrawerSharp.tsx | 2 +- src/IconBottomDrawerSharpFilled.tsx | 2 +- src/IconBottomNavigationOutlined.tsx | 2 +- src/IconBottomNavigationOutlinedFilled.tsx | 2 +- src/IconBottomNavigationRounded.tsx | 2 +- src/IconBottomNavigationRoundedFilled.tsx | 2 +- src/IconBottomNavigationSharp.tsx | 2 +- src/IconBottomNavigationSharpFilled.tsx | 2 +- src/IconBottomPanelCloseOutlined.tsx | 2 +- src/IconBottomPanelCloseOutlinedFilled.tsx | 2 +- src/IconBottomPanelCloseRounded.tsx | 2 +- src/IconBottomPanelCloseRoundedFilled.tsx | 2 +- src/IconBottomPanelCloseSharp.tsx | 2 +- src/IconBottomPanelCloseSharpFilled.tsx | 2 +- src/IconBottomPanelOpenOutlined.tsx | 2 +- src/IconBottomPanelOpenOutlinedFilled.tsx | 2 +- src/IconBottomPanelOpenRounded.tsx | 2 +- src/IconBottomPanelOpenRoundedFilled.tsx | 2 +- src/IconBottomPanelOpenSharp.tsx | 2 +- src/IconBottomPanelOpenSharpFilled.tsx | 2 +- src/IconBottomRightClickOutlined.tsx | 2 +- src/IconBottomRightClickOutlinedFilled.tsx | 2 +- src/IconBottomRightClickRounded.tsx | 2 +- src/IconBottomRightClickRoundedFilled.tsx | 2 +- src/IconBottomRightClickSharp.tsx | 2 +- src/IconBottomRightClickSharpFilled.tsx | 2 +- src/IconBottomSheetsOutlined.tsx | 2 +- src/IconBottomSheetsOutlinedFilled.tsx | 2 +- src/IconBottomSheetsRounded.tsx | 2 +- src/IconBottomSheetsRoundedFilled.tsx | 2 +- src/IconBottomSheetsSharp.tsx | 2 +- src/IconBottomSheetsSharpFilled.tsx | 2 +- src/IconBoxAddOutlined.tsx | 2 +- src/IconBoxAddOutlinedFilled.tsx | 2 +- src/IconBoxAddRounded.tsx | 2 +- src/IconBoxAddRoundedFilled.tsx | 2 +- src/IconBoxAddSharp.tsx | 2 +- src/IconBoxAddSharpFilled.tsx | 2 +- src/IconBoxEditOutlined.tsx | 2 +- src/IconBoxEditOutlinedFilled.tsx | 2 +- src/IconBoxEditRounded.tsx | 2 +- src/IconBoxEditRoundedFilled.tsx | 2 +- src/IconBoxEditSharp.tsx | 2 +- src/IconBoxEditSharpFilled.tsx | 2 +- src/IconBoxOutlined.tsx | 2 +- src/IconBoxOutlinedFilled.tsx | 2 +- src/IconBoxRounded.tsx | 2 +- src/IconBoxRoundedFilled.tsx | 2 +- src/IconBoxSharp.tsx | 2 +- src/IconBoxSharpFilled.tsx | 2 +- src/IconBoyOutlined.tsx | 2 +- src/IconBoyOutlinedFilled.tsx | 2 +- src/IconBoyRounded.tsx | 2 +- src/IconBoyRoundedFilled.tsx | 2 +- src/IconBoySharp.tsx | 2 +- src/IconBoySharpFilled.tsx | 2 +- src/IconBrandAwarenessOutlined.tsx | 2 +- src/IconBrandAwarenessOutlinedFilled.tsx | 2 +- src/IconBrandAwarenessRounded.tsx | 2 +- src/IconBrandAwarenessRoundedFilled.tsx | 2 +- src/IconBrandAwarenessSharp.tsx | 2 +- src/IconBrandAwarenessSharpFilled.tsx | 2 +- src/IconBrandFamilyOutlined.tsx | 2 +- src/IconBrandFamilyOutlinedFilled.tsx | 2 +- src/IconBrandFamilyRounded.tsx | 2 +- src/IconBrandFamilyRoundedFilled.tsx | 2 +- src/IconBrandFamilySharp.tsx | 2 +- src/IconBrandFamilySharpFilled.tsx | 2 +- src/IconBrandingWatermarkOutlined.tsx | 2 +- src/IconBrandingWatermarkOutlinedFilled.tsx | 2 +- src/IconBrandingWatermarkRounded.tsx | 2 +- src/IconBrandingWatermarkRoundedFilled.tsx | 2 +- src/IconBrandingWatermarkSharp.tsx | 2 +- src/IconBrandingWatermarkSharpFilled.tsx | 2 +- src/IconBreakfastDiningOutlined.tsx | 2 +- src/IconBreakfastDiningOutlinedFilled.tsx | 2 +- src/IconBreakfastDiningRounded.tsx | 2 +- src/IconBreakfastDiningRoundedFilled.tsx | 2 +- src/IconBreakfastDiningSharp.tsx | 2 +- src/IconBreakfastDiningSharpFilled.tsx | 2 +- src/IconBreakingNewsAlt1Outlined.tsx | 2 +- src/IconBreakingNewsAlt1OutlinedFilled.tsx | 2 +- src/IconBreakingNewsAlt1Rounded.tsx | 2 +- src/IconBreakingNewsAlt1RoundedFilled.tsx | 2 +- src/IconBreakingNewsAlt1Sharp.tsx | 2 +- src/IconBreakingNewsAlt1SharpFilled.tsx | 2 +- src/IconBreakingNewsOutlined.tsx | 2 +- src/IconBreakingNewsOutlinedFilled.tsx | 2 +- src/IconBreakingNewsRounded.tsx | 2 +- src/IconBreakingNewsRoundedFilled.tsx | 2 +- src/IconBreakingNewsSharp.tsx | 2 +- src/IconBreakingNewsSharpFilled.tsx | 2 +- src/IconBreastfeedingOutlined.tsx | 2 +- src/IconBreastfeedingOutlinedFilled.tsx | 2 +- src/IconBreastfeedingRounded.tsx | 2 +- src/IconBreastfeedingRoundedFilled.tsx | 2 +- src/IconBreastfeedingSharp.tsx | 2 +- src/IconBreastfeedingSharpFilled.tsx | 2 +- src/IconBrightness1Outlined.tsx | 2 +- src/IconBrightness1OutlinedFilled.tsx | 2 +- src/IconBrightness1Rounded.tsx | 2 +- src/IconBrightness1RoundedFilled.tsx | 2 +- src/IconBrightness1Sharp.tsx | 2 +- src/IconBrightness1SharpFilled.tsx | 2 +- src/IconBrightness2Outlined.tsx | 2 +- src/IconBrightness2OutlinedFilled.tsx | 2 +- src/IconBrightness2Rounded.tsx | 2 +- src/IconBrightness2RoundedFilled.tsx | 2 +- src/IconBrightness2Sharp.tsx | 2 +- src/IconBrightness2SharpFilled.tsx | 2 +- src/IconBrightness3Outlined.tsx | 2 +- src/IconBrightness3OutlinedFilled.tsx | 2 +- src/IconBrightness3Rounded.tsx | 2 +- src/IconBrightness3RoundedFilled.tsx | 2 +- src/IconBrightness3Sharp.tsx | 2 +- src/IconBrightness3SharpFilled.tsx | 2 +- src/IconBrightness4Outlined.tsx | 2 +- src/IconBrightness4OutlinedFilled.tsx | 2 +- src/IconBrightness4Rounded.tsx | 2 +- src/IconBrightness4RoundedFilled.tsx | 2 +- src/IconBrightness4Sharp.tsx | 2 +- src/IconBrightness4SharpFilled.tsx | 2 +- src/IconBrightness5Outlined.tsx | 2 +- src/IconBrightness5OutlinedFilled.tsx | 2 +- src/IconBrightness5Rounded.tsx | 2 +- src/IconBrightness5RoundedFilled.tsx | 2 +- src/IconBrightness5Sharp.tsx | 2 +- src/IconBrightness5SharpFilled.tsx | 2 +- src/IconBrightness6Outlined.tsx | 2 +- src/IconBrightness6OutlinedFilled.tsx | 2 +- src/IconBrightness6Rounded.tsx | 2 +- src/IconBrightness6RoundedFilled.tsx | 2 +- src/IconBrightness6Sharp.tsx | 2 +- src/IconBrightness6SharpFilled.tsx | 2 +- src/IconBrightness7Outlined.tsx | 2 +- src/IconBrightness7OutlinedFilled.tsx | 2 +- src/IconBrightness7Rounded.tsx | 2 +- src/IconBrightness7RoundedFilled.tsx | 2 +- src/IconBrightness7Sharp.tsx | 2 +- src/IconBrightness7SharpFilled.tsx | 2 +- src/IconBrightnessAlertOutlined.tsx | 2 +- src/IconBrightnessAlertOutlinedFilled.tsx | 2 +- src/IconBrightnessAlertRounded.tsx | 2 +- src/IconBrightnessAlertRoundedFilled.tsx | 2 +- src/IconBrightnessAlertSharp.tsx | 2 +- src/IconBrightnessAlertSharpFilled.tsx | 2 +- src/IconBrightnessAutoOutlined.tsx | 2 +- src/IconBrightnessAutoOutlinedFilled.tsx | 2 +- src/IconBrightnessAutoRounded.tsx | 2 +- src/IconBrightnessAutoRoundedFilled.tsx | 2 +- src/IconBrightnessAutoSharp.tsx | 2 +- src/IconBrightnessAutoSharpFilled.tsx | 2 +- src/IconBrightnessEmptyOutlined.tsx | 2 +- src/IconBrightnessEmptyOutlinedFilled.tsx | 2 +- src/IconBrightnessEmptyRounded.tsx | 2 +- src/IconBrightnessEmptyRoundedFilled.tsx | 2 +- src/IconBrightnessEmptySharp.tsx | 2 +- src/IconBrightnessEmptySharpFilled.tsx | 2 +- src/IconBrightnessHighOutlined.tsx | 2 +- src/IconBrightnessHighOutlinedFilled.tsx | 2 +- src/IconBrightnessHighRounded.tsx | 2 +- src/IconBrightnessHighRoundedFilled.tsx | 2 +- src/IconBrightnessHighSharp.tsx | 2 +- src/IconBrightnessHighSharpFilled.tsx | 2 +- src/IconBrightnessLowOutlined.tsx | 2 +- src/IconBrightnessLowOutlinedFilled.tsx | 2 +- src/IconBrightnessLowRounded.tsx | 2 +- src/IconBrightnessLowRoundedFilled.tsx | 2 +- src/IconBrightnessLowSharp.tsx | 2 +- src/IconBrightnessLowSharpFilled.tsx | 2 +- src/IconBrightnessMediumOutlined.tsx | 2 +- src/IconBrightnessMediumOutlinedFilled.tsx | 2 +- src/IconBrightnessMediumRounded.tsx | 2 +- src/IconBrightnessMediumRoundedFilled.tsx | 2 +- src/IconBrightnessMediumSharp.tsx | 2 +- src/IconBrightnessMediumSharpFilled.tsx | 2 +- src/IconBringYourOwnIpOutlined.tsx | 2 +- src/IconBringYourOwnIpOutlinedFilled.tsx | 2 +- src/IconBringYourOwnIpRounded.tsx | 2 +- src/IconBringYourOwnIpRoundedFilled.tsx | 2 +- src/IconBringYourOwnIpSharp.tsx | 2 +- src/IconBringYourOwnIpSharpFilled.tsx | 2 +- src/IconBroadcastOnHomeOutlined.tsx | 2 +- src/IconBroadcastOnHomeOutlinedFilled.tsx | 2 +- src/IconBroadcastOnHomeRounded.tsx | 2 +- src/IconBroadcastOnHomeRoundedFilled.tsx | 2 +- src/IconBroadcastOnHomeSharp.tsx | 2 +- src/IconBroadcastOnHomeSharpFilled.tsx | 2 +- src/IconBroadcastOnPersonalOutlined.tsx | 2 +- src/IconBroadcastOnPersonalOutlinedFilled.tsx | 2 +- src/IconBroadcastOnPersonalRounded.tsx | 2 +- src/IconBroadcastOnPersonalRoundedFilled.tsx | 2 +- src/IconBroadcastOnPersonalSharp.tsx | 2 +- src/IconBroadcastOnPersonalSharpFilled.tsx | 2 +- src/IconBrokenImageOutlined.tsx | 2 +- src/IconBrokenImageOutlinedFilled.tsx | 2 +- src/IconBrokenImageRounded.tsx | 2 +- src/IconBrokenImageRoundedFilled.tsx | 2 +- src/IconBrokenImageSharp.tsx | 2 +- src/IconBrokenImageSharpFilled.tsx | 2 +- src/IconBrowseActivityOutlined.tsx | 2 +- src/IconBrowseActivityOutlinedFilled.tsx | 2 +- src/IconBrowseActivityRounded.tsx | 2 +- src/IconBrowseActivityRoundedFilled.tsx | 2 +- src/IconBrowseActivitySharp.tsx | 2 +- src/IconBrowseActivitySharpFilled.tsx | 2 +- src/IconBrowseGalleryOutlined.tsx | 2 +- src/IconBrowseGalleryOutlinedFilled.tsx | 2 +- src/IconBrowseGalleryRounded.tsx | 2 +- src/IconBrowseGalleryRoundedFilled.tsx | 2 +- src/IconBrowseGallerySharp.tsx | 2 +- src/IconBrowseGallerySharpFilled.tsx | 2 +- src/IconBrowseOutlined.tsx | 2 +- src/IconBrowseOutlinedFilled.tsx | 2 +- src/IconBrowseRounded.tsx | 2 +- src/IconBrowseRoundedFilled.tsx | 2 +- src/IconBrowseSharp.tsx | 2 +- src/IconBrowseSharpFilled.tsx | 2 +- src/IconBrowserUpdatedOutlined.tsx | 2 +- src/IconBrowserUpdatedOutlinedFilled.tsx | 2 +- src/IconBrowserUpdatedRounded.tsx | 2 +- src/IconBrowserUpdatedRoundedFilled.tsx | 2 +- src/IconBrowserUpdatedSharp.tsx | 2 +- src/IconBrowserUpdatedSharpFilled.tsx | 2 +- src/IconBrunchDiningOutlined.tsx | 2 +- src/IconBrunchDiningOutlinedFilled.tsx | 2 +- src/IconBrunchDiningRounded.tsx | 2 +- src/IconBrunchDiningRoundedFilled.tsx | 2 +- src/IconBrunchDiningSharp.tsx | 2 +- src/IconBrunchDiningSharpFilled.tsx | 2 +- src/IconBrushOutlined.tsx | 2 +- src/IconBrushOutlinedFilled.tsx | 2 +- src/IconBrushRounded.tsx | 2 +- src/IconBrushRoundedFilled.tsx | 2 +- src/IconBrushSharp.tsx | 2 +- src/IconBrushSharpFilled.tsx | 2 +- src/IconBubbleChartOutlined.tsx | 2 +- src/IconBubbleChartOutlinedFilled.tsx | 2 +- src/IconBubbleChartRounded.tsx | 2 +- src/IconBubbleChartRoundedFilled.tsx | 2 +- src/IconBubbleChartSharp.tsx | 2 +- src/IconBubbleChartSharpFilled.tsx | 2 +- src/IconBubbleOutlined.tsx | 2 +- src/IconBubbleOutlinedFilled.tsx | 2 +- src/IconBubbleRounded.tsx | 2 +- src/IconBubbleRoundedFilled.tsx | 2 +- src/IconBubbleSharp.tsx | 2 +- src/IconBubbleSharpFilled.tsx | 2 +- src/IconBubblesOutlined.tsx | 2 +- src/IconBubblesOutlinedFilled.tsx | 2 +- src/IconBubblesRounded.tsx | 2 +- src/IconBubblesRoundedFilled.tsx | 2 +- src/IconBubblesSharp.tsx | 2 +- src/IconBubblesSharpFilled.tsx | 2 +- src/IconBugReportOutlined.tsx | 2 +- src/IconBugReportOutlinedFilled.tsx | 2 +- src/IconBugReportRounded.tsx | 2 +- src/IconBugReportRoundedFilled.tsx | 2 +- src/IconBugReportSharp.tsx | 2 +- src/IconBugReportSharpFilled.tsx | 2 +- src/IconBuildCircleOutlined.tsx | 2 +- src/IconBuildCircleOutlinedFilled.tsx | 2 +- src/IconBuildCircleRounded.tsx | 2 +- src/IconBuildCircleRoundedFilled.tsx | 2 +- src/IconBuildCircleSharp.tsx | 2 +- src/IconBuildCircleSharpFilled.tsx | 2 +- src/IconBuildOutlined.tsx | 2 +- src/IconBuildOutlinedFilled.tsx | 2 +- src/IconBuildRounded.tsx | 2 +- src/IconBuildRoundedFilled.tsx | 2 +- src/IconBuildSharp.tsx | 2 +- src/IconBuildSharpFilled.tsx | 2 +- src/IconBungalowOutlined.tsx | 2 +- src/IconBungalowOutlinedFilled.tsx | 2 +- src/IconBungalowRounded.tsx | 2 +- src/IconBungalowRoundedFilled.tsx | 2 +- src/IconBungalowSharp.tsx | 2 +- src/IconBungalowSharpFilled.tsx | 2 +- src/IconBurstModeOutlined.tsx | 2 +- src/IconBurstModeOutlinedFilled.tsx | 2 +- src/IconBurstModeRounded.tsx | 2 +- src/IconBurstModeRoundedFilled.tsx | 2 +- src/IconBurstModeSharp.tsx | 2 +- src/IconBurstModeSharpFilled.tsx | 2 +- src/IconBusAlertOutlined.tsx | 2 +- src/IconBusAlertOutlinedFilled.tsx | 2 +- src/IconBusAlertRounded.tsx | 2 +- src/IconBusAlertRoundedFilled.tsx | 2 +- src/IconBusAlertSharp.tsx | 2 +- src/IconBusAlertSharpFilled.tsx | 2 +- src/IconBusinessCenterOutlined.tsx | 2 +- src/IconBusinessCenterOutlinedFilled.tsx | 2 +- src/IconBusinessCenterRounded.tsx | 2 +- src/IconBusinessCenterRoundedFilled.tsx | 2 +- src/IconBusinessCenterSharp.tsx | 2 +- src/IconBusinessCenterSharpFilled.tsx | 2 +- src/IconBusinessChipOutlined.tsx | 2 +- src/IconBusinessChipOutlinedFilled.tsx | 2 +- src/IconBusinessChipRounded.tsx | 2 +- src/IconBusinessChipRoundedFilled.tsx | 2 +- src/IconBusinessChipSharp.tsx | 2 +- src/IconBusinessChipSharpFilled.tsx | 2 +- src/IconBusinessMessagesOutlined.tsx | 2 +- src/IconBusinessMessagesOutlinedFilled.tsx | 2 +- src/IconBusinessMessagesRounded.tsx | 2 +- src/IconBusinessMessagesRoundedFilled.tsx | 2 +- src/IconBusinessMessagesSharp.tsx | 2 +- src/IconBusinessMessagesSharpFilled.tsx | 2 +- src/IconButtonsAltOutlined.tsx | 2 +- src/IconButtonsAltOutlinedFilled.tsx | 2 +- src/IconButtonsAltRounded.tsx | 2 +- src/IconButtonsAltRoundedFilled.tsx | 2 +- src/IconButtonsAltSharp.tsx | 2 +- src/IconButtonsAltSharpFilled.tsx | 2 +- src/IconCabinOutlined.tsx | 2 +- src/IconCabinOutlinedFilled.tsx | 2 +- src/IconCabinRounded.tsx | 2 +- src/IconCabinRoundedFilled.tsx | 2 +- src/IconCabinSharp.tsx | 2 +- src/IconCabinSharpFilled.tsx | 2 +- src/IconCableCarOutlined.tsx | 2 +- src/IconCableCarOutlinedFilled.tsx | 2 +- src/IconCableCarRounded.tsx | 2 +- src/IconCableCarRoundedFilled.tsx | 2 +- src/IconCableCarSharp.tsx | 2 +- src/IconCableCarSharpFilled.tsx | 2 +- src/IconCableOutlined.tsx | 2 +- src/IconCableOutlinedFilled.tsx | 2 +- src/IconCableRounded.tsx | 2 +- src/IconCableRoundedFilled.tsx | 2 +- src/IconCableSharp.tsx | 2 +- src/IconCableSharpFilled.tsx | 2 +- src/IconCachedOutlined.tsx | 2 +- src/IconCachedOutlinedFilled.tsx | 2 +- src/IconCachedRounded.tsx | 2 +- src/IconCachedRoundedFilled.tsx | 2 +- src/IconCachedSharp.tsx | 2 +- src/IconCachedSharpFilled.tsx | 2 +- src/IconCadenceOutlined.tsx | 2 +- src/IconCadenceOutlinedFilled.tsx | 2 +- src/IconCadenceRounded.tsx | 2 +- src/IconCadenceRoundedFilled.tsx | 2 +- src/IconCadenceSharp.tsx | 2 +- src/IconCadenceSharpFilled.tsx | 2 +- src/IconCakeAddOutlined.tsx | 2 +- src/IconCakeAddOutlinedFilled.tsx | 2 +- src/IconCakeAddRounded.tsx | 2 +- src/IconCakeAddRoundedFilled.tsx | 2 +- src/IconCakeAddSharp.tsx | 2 +- src/IconCakeAddSharpFilled.tsx | 2 +- src/IconCakeOutlined.tsx | 2 +- src/IconCakeOutlinedFilled.tsx | 2 +- src/IconCakeRounded.tsx | 2 +- src/IconCakeRoundedFilled.tsx | 2 +- src/IconCakeSharp.tsx | 2 +- src/IconCakeSharpFilled.tsx | 2 +- src/IconCalculateOutlined.tsx | 2 +- src/IconCalculateOutlinedFilled.tsx | 2 +- src/IconCalculateRounded.tsx | 2 +- src/IconCalculateRoundedFilled.tsx | 2 +- src/IconCalculateSharp.tsx | 2 +- src/IconCalculateSharpFilled.tsx | 2 +- src/IconCalendarAddOnOutlined.tsx | 2 +- src/IconCalendarAddOnOutlinedFilled.tsx | 2 +- src/IconCalendarAddOnRounded.tsx | 2 +- src/IconCalendarAddOnRoundedFilled.tsx | 2 +- src/IconCalendarAddOnSharp.tsx | 2 +- src/IconCalendarAddOnSharpFilled.tsx | 2 +- src/IconCalendarAppsScriptOutlined.tsx | 2 +- src/IconCalendarAppsScriptOutlinedFilled.tsx | 2 +- src/IconCalendarAppsScriptRounded.tsx | 2 +- src/IconCalendarAppsScriptRoundedFilled.tsx | 2 +- src/IconCalendarAppsScriptSharp.tsx | 2 +- src/IconCalendarAppsScriptSharpFilled.tsx | 2 +- src/IconCalendarClockOutlined.tsx | 2 +- src/IconCalendarClockOutlinedFilled.tsx | 2 +- src/IconCalendarClockRounded.tsx | 2 +- src/IconCalendarClockRoundedFilled.tsx | 2 +- src/IconCalendarClockSharp.tsx | 2 +- src/IconCalendarClockSharpFilled.tsx | 2 +- src/IconCalendarMonthOutlined.tsx | 2 +- src/IconCalendarMonthOutlinedFilled.tsx | 2 +- src/IconCalendarMonthRounded.tsx | 2 +- src/IconCalendarMonthRoundedFilled.tsx | 2 +- src/IconCalendarMonthSharp.tsx | 2 +- src/IconCalendarMonthSharpFilled.tsx | 2 +- src/IconCalendarTodayOutlined.tsx | 2 +- src/IconCalendarTodayOutlinedFilled.tsx | 2 +- src/IconCalendarTodayRounded.tsx | 2 +- src/IconCalendarTodayRoundedFilled.tsx | 2 +- src/IconCalendarTodaySharp.tsx | 2 +- src/IconCalendarTodaySharpFilled.tsx | 2 +- src/IconCalendarViewDayOutlined.tsx | 2 +- src/IconCalendarViewDayOutlinedFilled.tsx | 2 +- src/IconCalendarViewDayRounded.tsx | 2 +- src/IconCalendarViewDayRoundedFilled.tsx | 2 +- src/IconCalendarViewDaySharp.tsx | 2 +- src/IconCalendarViewDaySharpFilled.tsx | 2 +- src/IconCalendarViewMonthOutlined.tsx | 2 +- src/IconCalendarViewMonthOutlinedFilled.tsx | 2 +- src/IconCalendarViewMonthRounded.tsx | 2 +- src/IconCalendarViewMonthRoundedFilled.tsx | 2 +- src/IconCalendarViewMonthSharp.tsx | 2 +- src/IconCalendarViewMonthSharpFilled.tsx | 2 +- src/IconCalendarViewWeekOutlined.tsx | 2 +- src/IconCalendarViewWeekOutlinedFilled.tsx | 2 +- src/IconCalendarViewWeekRounded.tsx | 2 +- src/IconCalendarViewWeekRoundedFilled.tsx | 2 +- src/IconCalendarViewWeekSharp.tsx | 2 +- src/IconCalendarViewWeekSharpFilled.tsx | 2 +- src/IconCallEndOutlined.tsx | 2 +- src/IconCallEndOutlinedFilled.tsx | 2 +- src/IconCallEndRounded.tsx | 2 +- src/IconCallEndRoundedFilled.tsx | 2 +- src/IconCallEndSharp.tsx | 2 +- src/IconCallEndSharpFilled.tsx | 2 +- src/IconCallLogOutlined.tsx | 2 +- src/IconCallLogOutlinedFilled.tsx | 2 +- src/IconCallLogRounded.tsx | 2 +- src/IconCallLogRoundedFilled.tsx | 2 +- src/IconCallLogSharp.tsx | 2 +- src/IconCallLogSharpFilled.tsx | 2 +- src/IconCallMadeOutlined.tsx | 2 +- src/IconCallMadeOutlinedFilled.tsx | 2 +- src/IconCallMadeRounded.tsx | 2 +- src/IconCallMadeRoundedFilled.tsx | 2 +- src/IconCallMadeSharp.tsx | 2 +- src/IconCallMadeSharpFilled.tsx | 2 +- src/IconCallMergeOutlined.tsx | 2 +- src/IconCallMergeOutlinedFilled.tsx | 2 +- src/IconCallMergeRounded.tsx | 2 +- src/IconCallMergeRoundedFilled.tsx | 2 +- src/IconCallMergeSharp.tsx | 2 +- src/IconCallMergeSharpFilled.tsx | 2 +- src/IconCallMissedOutgoingOutlined.tsx | 2 +- src/IconCallMissedOutgoingOutlinedFilled.tsx | 2 +- src/IconCallMissedOutgoingRounded.tsx | 2 +- src/IconCallMissedOutgoingRoundedFilled.tsx | 2 +- src/IconCallMissedOutgoingSharp.tsx | 2 +- src/IconCallMissedOutgoingSharpFilled.tsx | 2 +- src/IconCallMissedOutlined.tsx | 2 +- src/IconCallMissedOutlinedFilled.tsx | 2 +- src/IconCallMissedRounded.tsx | 2 +- src/IconCallMissedRoundedFilled.tsx | 2 +- src/IconCallMissedSharp.tsx | 2 +- src/IconCallMissedSharpFilled.tsx | 2 +- src/IconCallOutlined.tsx | 2 +- src/IconCallOutlinedFilled.tsx | 2 +- src/IconCallQualityOutlined.tsx | 2 +- src/IconCallQualityOutlinedFilled.tsx | 2 +- src/IconCallQualityRounded.tsx | 2 +- src/IconCallQualityRoundedFilled.tsx | 2 +- src/IconCallQualitySharp.tsx | 2 +- src/IconCallQualitySharpFilled.tsx | 2 +- src/IconCallReceivedOutlined.tsx | 2 +- src/IconCallReceivedOutlinedFilled.tsx | 2 +- src/IconCallReceivedRounded.tsx | 2 +- src/IconCallReceivedRoundedFilled.tsx | 2 +- src/IconCallReceivedSharp.tsx | 2 +- src/IconCallReceivedSharpFilled.tsx | 2 +- src/IconCallRounded.tsx | 2 +- src/IconCallRoundedFilled.tsx | 2 +- src/IconCallSharp.tsx | 2 +- src/IconCallSharpFilled.tsx | 2 +- src/IconCallSplitOutlined.tsx | 2 +- src/IconCallSplitOutlinedFilled.tsx | 2 +- src/IconCallSplitRounded.tsx | 2 +- src/IconCallSplitRoundedFilled.tsx | 2 +- src/IconCallSplitSharp.tsx | 2 +- src/IconCallSplitSharpFilled.tsx | 2 +- src/IconCallToActionOutlined.tsx | 2 +- src/IconCallToActionOutlinedFilled.tsx | 2 +- src/IconCallToActionRounded.tsx | 2 +- src/IconCallToActionRoundedFilled.tsx | 2 +- src/IconCallToActionSharp.tsx | 2 +- src/IconCallToActionSharpFilled.tsx | 2 +- src/IconCameraFrontOutlined.tsx | 2 +- src/IconCameraFrontOutlinedFilled.tsx | 2 +- src/IconCameraFrontRounded.tsx | 2 +- src/IconCameraFrontRoundedFilled.tsx | 2 +- src/IconCameraFrontSharp.tsx | 2 +- src/IconCameraFrontSharpFilled.tsx | 2 +- src/IconCameraIndoorOutlined.tsx | 2 +- src/IconCameraIndoorOutlinedFilled.tsx | 2 +- src/IconCameraIndoorRounded.tsx | 2 +- src/IconCameraIndoorRoundedFilled.tsx | 2 +- src/IconCameraIndoorSharp.tsx | 2 +- src/IconCameraIndoorSharpFilled.tsx | 2 +- src/IconCameraOutdoorOutlined.tsx | 2 +- src/IconCameraOutdoorOutlinedFilled.tsx | 2 +- src/IconCameraOutdoorRounded.tsx | 2 +- src/IconCameraOutdoorRoundedFilled.tsx | 2 +- src/IconCameraOutdoorSharp.tsx | 2 +- src/IconCameraOutdoorSharpFilled.tsx | 2 +- src/IconCameraOutlined.tsx | 2 +- src/IconCameraOutlinedFilled.tsx | 2 +- src/IconCameraRearOutlined.tsx | 2 +- src/IconCameraRearOutlinedFilled.tsx | 2 +- src/IconCameraRearRounded.tsx | 2 +- src/IconCameraRearRoundedFilled.tsx | 2 +- src/IconCameraRearSharp.tsx | 2 +- src/IconCameraRearSharpFilled.tsx | 2 +- src/IconCameraRollOutlined.tsx | 2 +- src/IconCameraRollOutlinedFilled.tsx | 2 +- src/IconCameraRollRounded.tsx | 2 +- src/IconCameraRollRoundedFilled.tsx | 2 +- src/IconCameraRollSharp.tsx | 2 +- src/IconCameraRollSharpFilled.tsx | 2 +- src/IconCameraRounded.tsx | 2 +- src/IconCameraRoundedFilled.tsx | 2 +- src/IconCameraSharp.tsx | 2 +- src/IconCameraSharpFilled.tsx | 2 +- src/IconCameraVideoOutlined.tsx | 2 +- src/IconCameraVideoOutlinedFilled.tsx | 2 +- src/IconCameraVideoRounded.tsx | 2 +- src/IconCameraVideoRoundedFilled.tsx | 2 +- src/IconCameraVideoSharp.tsx | 2 +- src/IconCameraVideoSharpFilled.tsx | 2 +- src/IconCameraswitchOutlined.tsx | 2 +- src/IconCameraswitchOutlinedFilled.tsx | 2 +- src/IconCameraswitchRounded.tsx | 2 +- src/IconCameraswitchRoundedFilled.tsx | 2 +- src/IconCameraswitchSharp.tsx | 2 +- src/IconCameraswitchSharpFilled.tsx | 2 +- src/IconCampaignOutlined.tsx | 2 +- src/IconCampaignOutlinedFilled.tsx | 2 +- src/IconCampaignRounded.tsx | 2 +- src/IconCampaignRoundedFilled.tsx | 2 +- src/IconCampaignSharp.tsx | 2 +- src/IconCampaignSharpFilled.tsx | 2 +- src/IconCampingOutlined.tsx | 2 +- src/IconCampingOutlinedFilled.tsx | 2 +- src/IconCampingRounded.tsx | 2 +- src/IconCampingRoundedFilled.tsx | 2 +- src/IconCampingSharp.tsx | 2 +- src/IconCampingSharpFilled.tsx | 2 +- src/IconCancelOutlined.tsx | 2 +- src/IconCancelOutlinedFilled.tsx | 2 +- src/IconCancelPresentationOutlined.tsx | 2 +- src/IconCancelPresentationOutlinedFilled.tsx | 2 +- src/IconCancelPresentationRounded.tsx | 2 +- src/IconCancelPresentationRoundedFilled.tsx | 2 +- src/IconCancelPresentationSharp.tsx | 2 +- src/IconCancelPresentationSharpFilled.tsx | 2 +- src/IconCancelRounded.tsx | 2 +- src/IconCancelRoundedFilled.tsx | 2 +- src/IconCancelScheduleSendOutlined.tsx | 2 +- src/IconCancelScheduleSendOutlinedFilled.tsx | 2 +- src/IconCancelScheduleSendRounded.tsx | 2 +- src/IconCancelScheduleSendRoundedFilled.tsx | 2 +- src/IconCancelScheduleSendSharp.tsx | 2 +- src/IconCancelScheduleSendSharpFilled.tsx | 2 +- src/IconCancelSharp.tsx | 2 +- src/IconCancelSharpFilled.tsx | 2 +- src/IconCandleOutlined.tsx | 2 +- src/IconCandleOutlinedFilled.tsx | 2 +- src/IconCandleRounded.tsx | 2 +- src/IconCandleRoundedFilled.tsx | 2 +- src/IconCandleSharp.tsx | 2 +- src/IconCandleSharpFilled.tsx | 2 +- src/IconCandlestickChartOutlined.tsx | 2 +- src/IconCandlestickChartOutlinedFilled.tsx | 2 +- src/IconCandlestickChartRounded.tsx | 2 +- src/IconCandlestickChartRoundedFilled.tsx | 2 +- src/IconCandlestickChartSharp.tsx | 2 +- src/IconCandlestickChartSharpFilled.tsx | 2 +- src/IconCaptivePortalOutlined.tsx | 2 +- src/IconCaptivePortalOutlinedFilled.tsx | 2 +- src/IconCaptivePortalRounded.tsx | 2 +- src/IconCaptivePortalRoundedFilled.tsx | 2 +- src/IconCaptivePortalSharp.tsx | 2 +- src/IconCaptivePortalSharpFilled.tsx | 2 +- src/IconCaptureOutlined.tsx | 2 +- src/IconCaptureOutlinedFilled.tsx | 2 +- src/IconCaptureRounded.tsx | 2 +- src/IconCaptureRoundedFilled.tsx | 2 +- src/IconCaptureSharp.tsx | 2 +- src/IconCaptureSharpFilled.tsx | 2 +- src/IconCarCrashOutlined.tsx | 2 +- src/IconCarCrashOutlinedFilled.tsx | 2 +- src/IconCarCrashRounded.tsx | 2 +- src/IconCarCrashRoundedFilled.tsx | 2 +- src/IconCarCrashSharp.tsx | 2 +- src/IconCarCrashSharpFilled.tsx | 2 +- src/IconCarRentalOutlined.tsx | 2 +- src/IconCarRentalOutlinedFilled.tsx | 2 +- src/IconCarRentalRounded.tsx | 2 +- src/IconCarRentalRoundedFilled.tsx | 2 +- src/IconCarRentalSharp.tsx | 2 +- src/IconCarRentalSharpFilled.tsx | 2 +- src/IconCarRepairOutlined.tsx | 2 +- src/IconCarRepairOutlinedFilled.tsx | 2 +- src/IconCarRepairRounded.tsx | 2 +- src/IconCarRepairRoundedFilled.tsx | 2 +- src/IconCarRepairSharp.tsx | 2 +- src/IconCarRepairSharpFilled.tsx | 2 +- src/IconCarTagOutlined.tsx | 2 +- src/IconCarTagOutlinedFilled.tsx | 2 +- src/IconCarTagRounded.tsx | 2 +- src/IconCarTagRoundedFilled.tsx | 2 +- src/IconCarTagSharp.tsx | 2 +- src/IconCarTagSharpFilled.tsx | 2 +- src/IconCardMembershipOutlined.tsx | 2 +- src/IconCardMembershipOutlinedFilled.tsx | 2 +- src/IconCardMembershipRounded.tsx | 2 +- src/IconCardMembershipRoundedFilled.tsx | 2 +- src/IconCardMembershipSharp.tsx | 2 +- src/IconCardMembershipSharpFilled.tsx | 2 +- src/IconCardTravelOutlined.tsx | 2 +- src/IconCardTravelOutlinedFilled.tsx | 2 +- src/IconCardTravelRounded.tsx | 2 +- src/IconCardTravelRoundedFilled.tsx | 2 +- src/IconCardTravelSharp.tsx | 2 +- src/IconCardTravelSharpFilled.tsx | 2 +- src/IconCardioLoadOutlined.tsx | 2 +- src/IconCardioLoadOutlinedFilled.tsx | 2 +- src/IconCardioLoadRounded.tsx | 2 +- src/IconCardioLoadRoundedFilled.tsx | 2 +- src/IconCardioLoadSharp.tsx | 2 +- src/IconCardioLoadSharpFilled.tsx | 2 +- src/IconCardiologyOutlined.tsx | 2 +- src/IconCardiologyOutlinedFilled.tsx | 2 +- src/IconCardiologyRounded.tsx | 2 +- src/IconCardiologyRoundedFilled.tsx | 2 +- src/IconCardiologySharp.tsx | 2 +- src/IconCardiologySharpFilled.tsx | 2 +- src/IconCardsOutlined.tsx | 2 +- src/IconCardsOutlinedFilled.tsx | 2 +- src/IconCardsRounded.tsx | 2 +- src/IconCardsRoundedFilled.tsx | 2 +- src/IconCardsSharp.tsx | 2 +- src/IconCardsSharpFilled.tsx | 2 +- src/IconCarpenterOutlined.tsx | 2 +- src/IconCarpenterOutlinedFilled.tsx | 2 +- src/IconCarpenterRounded.tsx | 2 +- src/IconCarpenterRoundedFilled.tsx | 2 +- src/IconCarpenterSharp.tsx | 2 +- src/IconCarpenterSharpFilled.tsx | 2 +- src/IconCarryOnBagCheckedOutlined.tsx | 2 +- src/IconCarryOnBagCheckedOutlinedFilled.tsx | 2 +- src/IconCarryOnBagCheckedRounded.tsx | 2 +- src/IconCarryOnBagCheckedRoundedFilled.tsx | 2 +- src/IconCarryOnBagCheckedSharp.tsx | 2 +- src/IconCarryOnBagCheckedSharpFilled.tsx | 2 +- src/IconCarryOnBagInactiveOutlined.tsx | 2 +- src/IconCarryOnBagInactiveOutlinedFilled.tsx | 2 +- src/IconCarryOnBagInactiveRounded.tsx | 2 +- src/IconCarryOnBagInactiveRoundedFilled.tsx | 2 +- src/IconCarryOnBagInactiveSharp.tsx | 2 +- src/IconCarryOnBagInactiveSharpFilled.tsx | 2 +- src/IconCarryOnBagOutlined.tsx | 2 +- src/IconCarryOnBagOutlinedFilled.tsx | 2 +- src/IconCarryOnBagQuestionOutlined.tsx | 2 +- src/IconCarryOnBagQuestionOutlinedFilled.tsx | 2 +- src/IconCarryOnBagQuestionRounded.tsx | 2 +- src/IconCarryOnBagQuestionRoundedFilled.tsx | 2 +- src/IconCarryOnBagQuestionSharp.tsx | 2 +- src/IconCarryOnBagQuestionSharpFilled.tsx | 2 +- src/IconCarryOnBagRounded.tsx | 2 +- src/IconCarryOnBagRoundedFilled.tsx | 2 +- src/IconCarryOnBagSharp.tsx | 2 +- src/IconCarryOnBagSharpFilled.tsx | 2 +- src/IconCasesOutlined.tsx | 2 +- src/IconCasesOutlinedFilled.tsx | 2 +- src/IconCasesRounded.tsx | 2 +- src/IconCasesRoundedFilled.tsx | 2 +- src/IconCasesSharp.tsx | 2 +- src/IconCasesSharpFilled.tsx | 2 +- src/IconCasinoOutlined.tsx | 2 +- src/IconCasinoOutlinedFilled.tsx | 2 +- src/IconCasinoRounded.tsx | 2 +- src/IconCasinoRoundedFilled.tsx | 2 +- src/IconCasinoSharp.tsx | 2 +- src/IconCasinoSharpFilled.tsx | 2 +- src/IconCastConnectedOutlined.tsx | 2 +- src/IconCastConnectedOutlinedFilled.tsx | 2 +- src/IconCastConnectedRounded.tsx | 2 +- src/IconCastConnectedRoundedFilled.tsx | 2 +- src/IconCastConnectedSharp.tsx | 2 +- src/IconCastConnectedSharpFilled.tsx | 2 +- src/IconCastForEducationOutlined.tsx | 2 +- src/IconCastForEducationOutlinedFilled.tsx | 2 +- src/IconCastForEducationRounded.tsx | 2 +- src/IconCastForEducationRoundedFilled.tsx | 2 +- src/IconCastForEducationSharp.tsx | 2 +- src/IconCastForEducationSharpFilled.tsx | 2 +- src/IconCastOutlined.tsx | 2 +- src/IconCastOutlinedFilled.tsx | 2 +- src/IconCastPauseOutlined.tsx | 2 +- src/IconCastPauseOutlinedFilled.tsx | 2 +- src/IconCastPauseRounded.tsx | 2 +- src/IconCastPauseRoundedFilled.tsx | 2 +- src/IconCastPauseSharp.tsx | 2 +- src/IconCastPauseSharpFilled.tsx | 2 +- src/IconCastRounded.tsx | 2 +- src/IconCastRoundedFilled.tsx | 2 +- src/IconCastSharp.tsx | 2 +- src/IconCastSharpFilled.tsx | 2 +- src/IconCastWarningOutlined.tsx | 2 +- src/IconCastWarningOutlinedFilled.tsx | 2 +- src/IconCastWarningRounded.tsx | 2 +- src/IconCastWarningRoundedFilled.tsx | 2 +- src/IconCastWarningSharp.tsx | 2 +- src/IconCastWarningSharpFilled.tsx | 2 +- src/IconCastleOutlined.tsx | 2 +- src/IconCastleOutlinedFilled.tsx | 2 +- src/IconCastleRounded.tsx | 2 +- src/IconCastleRoundedFilled.tsx | 2 +- src/IconCastleSharp.tsx | 2 +- src/IconCastleSharpFilled.tsx | 2 +- src/IconCategoryOutlined.tsx | 2 +- src/IconCategoryOutlinedFilled.tsx | 2 +- src/IconCategoryRounded.tsx | 2 +- src/IconCategoryRoundedFilled.tsx | 2 +- src/IconCategorySearchOutlined.tsx | 2 +- src/IconCategorySearchOutlinedFilled.tsx | 2 +- src/IconCategorySearchRounded.tsx | 2 +- src/IconCategorySearchRoundedFilled.tsx | 2 +- src/IconCategorySearchSharp.tsx | 2 +- src/IconCategorySearchSharpFilled.tsx | 2 +- src/IconCategorySharp.tsx | 2 +- src/IconCategorySharpFilled.tsx | 2 +- src/IconCelebrationOutlined.tsx | 2 +- src/IconCelebrationOutlinedFilled.tsx | 2 +- src/IconCelebrationRounded.tsx | 2 +- src/IconCelebrationRoundedFilled.tsx | 2 +- src/IconCelebrationSharp.tsx | 2 +- src/IconCelebrationSharpFilled.tsx | 2 +- src/IconCellMergeOutlined.tsx | 2 +- src/IconCellMergeOutlinedFilled.tsx | 2 +- src/IconCellMergeRounded.tsx | 2 +- src/IconCellMergeRoundedFilled.tsx | 2 +- src/IconCellMergeSharp.tsx | 2 +- src/IconCellMergeSharpFilled.tsx | 2 +- src/IconCellTowerOutlined.tsx | 2 +- src/IconCellTowerOutlinedFilled.tsx | 2 +- src/IconCellTowerRounded.tsx | 2 +- src/IconCellTowerRoundedFilled.tsx | 2 +- src/IconCellTowerSharp.tsx | 2 +- src/IconCellTowerSharpFilled.tsx | 2 +- src/IconCellWifiOutlined.tsx | 2 +- src/IconCellWifiOutlinedFilled.tsx | 2 +- src/IconCellWifiRounded.tsx | 2 +- src/IconCellWifiRoundedFilled.tsx | 2 +- src/IconCellWifiSharp.tsx | 2 +- src/IconCellWifiSharpFilled.tsx | 2 +- src/IconCenterFocusStrongOutlined.tsx | 2 +- src/IconCenterFocusStrongOutlinedFilled.tsx | 2 +- src/IconCenterFocusStrongRounded.tsx | 2 +- src/IconCenterFocusStrongRoundedFilled.tsx | 2 +- src/IconCenterFocusStrongSharp.tsx | 2 +- src/IconCenterFocusStrongSharpFilled.tsx | 2 +- src/IconCenterFocusWeakOutlined.tsx | 2 +- src/IconCenterFocusWeakOutlinedFilled.tsx | 2 +- src/IconCenterFocusWeakRounded.tsx | 2 +- src/IconCenterFocusWeakRoundedFilled.tsx | 2 +- src/IconCenterFocusWeakSharp.tsx | 2 +- src/IconCenterFocusWeakSharpFilled.tsx | 2 +- src/IconChairAltOutlined.tsx | 2 +- src/IconChairAltOutlinedFilled.tsx | 2 +- src/IconChairAltRounded.tsx | 2 +- src/IconChairAltRoundedFilled.tsx | 2 +- src/IconChairAltSharp.tsx | 2 +- src/IconChairAltSharpFilled.tsx | 2 +- src/IconChairOutlined.tsx | 2 +- src/IconChairOutlinedFilled.tsx | 2 +- src/IconChairRounded.tsx | 2 +- src/IconChairRoundedFilled.tsx | 2 +- src/IconChairSharp.tsx | 2 +- src/IconChairSharpFilled.tsx | 2 +- src/IconChaletOutlined.tsx | 2 +- src/IconChaletOutlinedFilled.tsx | 2 +- src/IconChaletRounded.tsx | 2 +- src/IconChaletRoundedFilled.tsx | 2 +- src/IconChaletSharp.tsx | 2 +- src/IconChaletSharpFilled.tsx | 2 +- src/IconChangeCircleOutlined.tsx | 2 +- src/IconChangeCircleOutlinedFilled.tsx | 2 +- src/IconChangeCircleRounded.tsx | 2 +- src/IconChangeCircleRoundedFilled.tsx | 2 +- src/IconChangeCircleSharp.tsx | 2 +- src/IconChangeCircleSharpFilled.tsx | 2 +- src/IconChangeHistoryOutlined.tsx | 2 +- src/IconChangeHistoryOutlinedFilled.tsx | 2 +- src/IconChangeHistoryRounded.tsx | 2 +- src/IconChangeHistoryRoundedFilled.tsx | 2 +- src/IconChangeHistorySharp.tsx | 2 +- src/IconChangeHistorySharpFilled.tsx | 2 +- src/IconChargerOutlined.tsx | 2 +- src/IconChargerOutlinedFilled.tsx | 2 +- src/IconChargerRounded.tsx | 2 +- src/IconChargerRoundedFilled.tsx | 2 +- src/IconChargerSharp.tsx | 2 +- src/IconChargerSharpFilled.tsx | 2 +- src/IconChargingStationOutlined.tsx | 2 +- src/IconChargingStationOutlinedFilled.tsx | 2 +- src/IconChargingStationRounded.tsx | 2 +- src/IconChargingStationRoundedFilled.tsx | 2 +- src/IconChargingStationSharp.tsx | 2 +- src/IconChargingStationSharpFilled.tsx | 2 +- src/IconChartDataOutlined.tsx | 2 +- src/IconChartDataOutlinedFilled.tsx | 2 +- src/IconChartDataRounded.tsx | 2 +- src/IconChartDataRoundedFilled.tsx | 2 +- src/IconChartDataSharp.tsx | 2 +- src/IconChartDataSharpFilled.tsx | 2 +- src/IconChatAddOnOutlined.tsx | 2 +- src/IconChatAddOnOutlinedFilled.tsx | 2 +- src/IconChatAddOnRounded.tsx | 2 +- src/IconChatAddOnRoundedFilled.tsx | 2 +- src/IconChatAddOnSharp.tsx | 2 +- src/IconChatAddOnSharpFilled.tsx | 2 +- src/IconChatAppsScriptOutlined.tsx | 2 +- src/IconChatAppsScriptOutlinedFilled.tsx | 2 +- src/IconChatAppsScriptRounded.tsx | 2 +- src/IconChatAppsScriptRoundedFilled.tsx | 2 +- src/IconChatAppsScriptSharp.tsx | 2 +- src/IconChatAppsScriptSharpFilled.tsx | 2 +- src/IconChatBubbleOutlined.tsx | 2 +- src/IconChatBubbleOutlinedFilled.tsx | 2 +- src/IconChatBubbleRounded.tsx | 2 +- src/IconChatBubbleRoundedFilled.tsx | 2 +- src/IconChatBubbleSharp.tsx | 2 +- src/IconChatBubbleSharpFilled.tsx | 2 +- src/IconChatErrorOutlined.tsx | 2 +- src/IconChatErrorOutlinedFilled.tsx | 2 +- src/IconChatErrorRounded.tsx | 2 +- src/IconChatErrorRoundedFilled.tsx | 2 +- src/IconChatErrorSharp.tsx | 2 +- src/IconChatErrorSharpFilled.tsx | 2 +- src/IconChatInfoOutlined.tsx | 2 +- src/IconChatInfoOutlinedFilled.tsx | 2 +- src/IconChatInfoRounded.tsx | 2 +- src/IconChatInfoRoundedFilled.tsx | 2 +- src/IconChatInfoSharp.tsx | 2 +- src/IconChatInfoSharpFilled.tsx | 2 +- src/IconChatOutlined.tsx | 2 +- src/IconChatOutlinedFilled.tsx | 2 +- src/IconChatPasteGoOutlined.tsx | 2 +- src/IconChatPasteGoOutlinedFilled.tsx | 2 +- src/IconChatPasteGoRounded.tsx | 2 +- src/IconChatPasteGoRoundedFilled.tsx | 2 +- src/IconChatPasteGoSharp.tsx | 2 +- src/IconChatPasteGoSharpFilled.tsx | 2 +- src/IconChatRounded.tsx | 2 +- src/IconChatRoundedFilled.tsx | 2 +- src/IconChatSharp.tsx | 2 +- src/IconChatSharpFilled.tsx | 2 +- src/IconCheckBoxOutlineBlankOutlined.tsx | 2 +- src/IconCheckBoxOutlineBlankOutlinedFilled.tsx | 2 +- src/IconCheckBoxOutlineBlankRounded.tsx | 2 +- src/IconCheckBoxOutlineBlankRoundedFilled.tsx | 2 +- src/IconCheckBoxOutlineBlankSharp.tsx | 2 +- src/IconCheckBoxOutlineBlankSharpFilled.tsx | 2 +- src/IconCheckBoxOutlined.tsx | 2 +- src/IconCheckBoxOutlinedFilled.tsx | 2 +- src/IconCheckBoxRounded.tsx | 2 +- src/IconCheckBoxRoundedFilled.tsx | 2 +- src/IconCheckBoxSharp.tsx | 2 +- src/IconCheckBoxSharpFilled.tsx | 2 +- src/IconCheckCircleOutlined.tsx | 2 +- src/IconCheckCircleOutlinedFilled.tsx | 2 +- src/IconCheckCircleRounded.tsx | 2 +- src/IconCheckCircleRoundedFilled.tsx | 2 +- src/IconCheckCircleSharp.tsx | 2 +- src/IconCheckCircleSharpFilled.tsx | 2 +- src/IconCheckInOutOutlined.tsx | 2 +- src/IconCheckInOutOutlinedFilled.tsx | 2 +- src/IconCheckInOutRounded.tsx | 2 +- src/IconCheckInOutRoundedFilled.tsx | 2 +- src/IconCheckInOutSharp.tsx | 2 +- src/IconCheckInOutSharpFilled.tsx | 2 +- src/IconCheckIndeterminateSmallOutlined.tsx | 2 +- src/IconCheckIndeterminateSmallOutlinedFilled.tsx | 2 +- src/IconCheckIndeterminateSmallRounded.tsx | 2 +- src/IconCheckIndeterminateSmallRoundedFilled.tsx | 2 +- src/IconCheckIndeterminateSmallSharp.tsx | 2 +- src/IconCheckIndeterminateSmallSharpFilled.tsx | 2 +- src/IconCheckOutlined.tsx | 2 +- src/IconCheckOutlinedFilled.tsx | 2 +- src/IconCheckRounded.tsx | 2 +- src/IconCheckRoundedFilled.tsx | 2 +- src/IconCheckSharp.tsx | 2 +- src/IconCheckSharpFilled.tsx | 2 +- src/IconCheckSmallOutlined.tsx | 2 +- src/IconCheckSmallOutlinedFilled.tsx | 2 +- src/IconCheckSmallRounded.tsx | 2 +- src/IconCheckSmallRoundedFilled.tsx | 2 +- src/IconCheckSmallSharp.tsx | 2 +- src/IconCheckSmallSharpFilled.tsx | 2 +- src/IconCheckbookOutlined.tsx | 2 +- src/IconCheckbookOutlinedFilled.tsx | 2 +- src/IconCheckbookRounded.tsx | 2 +- src/IconCheckbookRoundedFilled.tsx | 2 +- src/IconCheckbookSharp.tsx | 2 +- src/IconCheckbookSharpFilled.tsx | 2 +- src/IconCheckedBagOutlined.tsx | 2 +- src/IconCheckedBagOutlinedFilled.tsx | 2 +- src/IconCheckedBagQuestionOutlined.tsx | 2 +- src/IconCheckedBagQuestionOutlinedFilled.tsx | 2 +- src/IconCheckedBagQuestionRounded.tsx | 2 +- src/IconCheckedBagQuestionRoundedFilled.tsx | 2 +- src/IconCheckedBagQuestionSharp.tsx | 2 +- src/IconCheckedBagQuestionSharpFilled.tsx | 2 +- src/IconCheckedBagRounded.tsx | 2 +- src/IconCheckedBagRoundedFilled.tsx | 2 +- src/IconCheckedBagSharp.tsx | 2 +- src/IconCheckedBagSharpFilled.tsx | 2 +- src/IconChecklistOutlined.tsx | 2 +- src/IconChecklistOutlinedFilled.tsx | 2 +- src/IconChecklistRounded.tsx | 2 +- src/IconChecklistRoundedFilled.tsx | 2 +- src/IconChecklistRtlOutlined.tsx | 2 +- src/IconChecklistRtlOutlinedFilled.tsx | 2 +- src/IconChecklistRtlRounded.tsx | 2 +- src/IconChecklistRtlRoundedFilled.tsx | 2 +- src/IconChecklistRtlSharp.tsx | 2 +- src/IconChecklistRtlSharpFilled.tsx | 2 +- src/IconChecklistSharp.tsx | 2 +- src/IconChecklistSharpFilled.tsx | 2 +- src/IconCheckroomOutlined.tsx | 2 +- src/IconCheckroomOutlinedFilled.tsx | 2 +- src/IconCheckroomRounded.tsx | 2 +- src/IconCheckroomRoundedFilled.tsx | 2 +- src/IconCheckroomSharp.tsx | 2 +- src/IconCheckroomSharpFilled.tsx | 2 +- src/IconCheerOutlined.tsx | 2 +- src/IconCheerOutlinedFilled.tsx | 2 +- src/IconCheerRounded.tsx | 2 +- src/IconCheerRoundedFilled.tsx | 2 +- src/IconCheerSharp.tsx | 2 +- src/IconCheerSharpFilled.tsx | 2 +- src/IconChessOutlined.tsx | 2 +- src/IconChessOutlinedFilled.tsx | 2 +- src/IconChessRounded.tsx | 2 +- src/IconChessRoundedFilled.tsx | 2 +- src/IconChessSharp.tsx | 2 +- src/IconChessSharpFilled.tsx | 2 +- src/IconChevronBackwardOutlined.tsx | 2 +- src/IconChevronBackwardOutlinedFilled.tsx | 2 +- src/IconChevronBackwardRounded.tsx | 2 +- src/IconChevronBackwardRoundedFilled.tsx | 2 +- src/IconChevronBackwardSharp.tsx | 2 +- src/IconChevronBackwardSharpFilled.tsx | 2 +- src/IconChevronForwardOutlined.tsx | 2 +- src/IconChevronForwardOutlinedFilled.tsx | 2 +- src/IconChevronForwardRounded.tsx | 2 +- src/IconChevronForwardRoundedFilled.tsx | 2 +- src/IconChevronForwardSharp.tsx | 2 +- src/IconChevronForwardSharpFilled.tsx | 2 +- src/IconChevronLeftOutlined.tsx | 2 +- src/IconChevronLeftOutlinedFilled.tsx | 2 +- src/IconChevronLeftRounded.tsx | 2 +- src/IconChevronLeftRoundedFilled.tsx | 2 +- src/IconChevronLeftSharp.tsx | 2 +- src/IconChevronLeftSharpFilled.tsx | 2 +- src/IconChevronRightOutlined.tsx | 2 +- src/IconChevronRightOutlinedFilled.tsx | 2 +- src/IconChevronRightRounded.tsx | 2 +- src/IconChevronRightRoundedFilled.tsx | 2 +- src/IconChevronRightSharp.tsx | 2 +- src/IconChevronRightSharpFilled.tsx | 2 +- src/IconChildCareOutlined.tsx | 2 +- src/IconChildCareOutlinedFilled.tsx | 2 +- src/IconChildCareRounded.tsx | 2 +- src/IconChildCareRoundedFilled.tsx | 2 +- src/IconChildCareSharp.tsx | 2 +- src/IconChildCareSharpFilled.tsx | 2 +- src/IconChildFriendlyOutlined.tsx | 2 +- src/IconChildFriendlyOutlinedFilled.tsx | 2 +- src/IconChildFriendlyRounded.tsx | 2 +- src/IconChildFriendlyRoundedFilled.tsx | 2 +- src/IconChildFriendlySharp.tsx | 2 +- src/IconChildFriendlySharpFilled.tsx | 2 +- src/IconChipExtractionOutlined.tsx | 2 +- src/IconChipExtractionOutlinedFilled.tsx | 2 +- src/IconChipExtractionRounded.tsx | 2 +- src/IconChipExtractionRoundedFilled.tsx | 2 +- src/IconChipExtractionSharp.tsx | 2 +- src/IconChipExtractionSharpFilled.tsx | 2 +- src/IconChipsOutlined.tsx | 2 +- src/IconChipsOutlinedFilled.tsx | 2 +- src/IconChipsRounded.tsx | 2 +- src/IconChipsRoundedFilled.tsx | 2 +- src/IconChipsSharp.tsx | 2 +- src/IconChipsSharpFilled.tsx | 2 +- src/IconChromeReaderModeOutlined.tsx | 2 +- src/IconChromeReaderModeOutlinedFilled.tsx | 2 +- src/IconChromeReaderModeRounded.tsx | 2 +- src/IconChromeReaderModeRoundedFilled.tsx | 2 +- src/IconChromeReaderModeSharp.tsx | 2 +- src/IconChromeReaderModeSharpFilled.tsx | 2 +- src/IconChromecast2Outlined.tsx | 2 +- src/IconChromecast2OutlinedFilled.tsx | 2 +- src/IconChromecast2Rounded.tsx | 2 +- src/IconChromecast2RoundedFilled.tsx | 2 +- src/IconChromecast2Sharp.tsx | 2 +- src/IconChromecast2SharpFilled.tsx | 2 +- src/IconChromecastDeviceOutlined.tsx | 2 +- src/IconChromecastDeviceOutlinedFilled.tsx | 2 +- src/IconChromecastDeviceRounded.tsx | 2 +- src/IconChromecastDeviceRoundedFilled.tsx | 2 +- src/IconChromecastDeviceSharp.tsx | 2 +- src/IconChromecastDeviceSharpFilled.tsx | 2 +- src/IconChronicOutlined.tsx | 2 +- src/IconChronicOutlinedFilled.tsx | 2 +- src/IconChronicRounded.tsx | 2 +- src/IconChronicRoundedFilled.tsx | 2 +- src/IconChronicSharp.tsx | 2 +- src/IconChronicSharpFilled.tsx | 2 +- src/IconChurchOutlined.tsx | 2 +- src/IconChurchOutlinedFilled.tsx | 2 +- src/IconChurchRounded.tsx | 2 +- src/IconChurchRoundedFilled.tsx | 2 +- src/IconChurchSharp.tsx | 2 +- src/IconChurchSharpFilled.tsx | 2 +- src/IconCinematicBlurOutlined.tsx | 2 +- src/IconCinematicBlurOutlinedFilled.tsx | 2 +- src/IconCinematicBlurRounded.tsx | 2 +- src/IconCinematicBlurRoundedFilled.tsx | 2 +- src/IconCinematicBlurSharp.tsx | 2 +- src/IconCinematicBlurSharpFilled.tsx | 2 +- src/IconCircleNotificationsOutlined.tsx | 2 +- src/IconCircleNotificationsOutlinedFilled.tsx | 2 +- src/IconCircleNotificationsRounded.tsx | 2 +- src/IconCircleNotificationsRoundedFilled.tsx | 2 +- src/IconCircleNotificationsSharp.tsx | 2 +- src/IconCircleNotificationsSharpFilled.tsx | 2 +- src/IconCircleOutlined.tsx | 2 +- src/IconCircleOutlinedFilled.tsx | 2 +- src/IconCircleRounded.tsx | 2 +- src/IconCircleRoundedFilled.tsx | 2 +- src/IconCircleSharp.tsx | 2 +- src/IconCircleSharpFilled.tsx | 2 +- src/IconCirclesExtOutlined.tsx | 2 +- src/IconCirclesExtOutlinedFilled.tsx | 2 +- src/IconCirclesExtRounded.tsx | 2 +- src/IconCirclesExtRoundedFilled.tsx | 2 +- src/IconCirclesExtSharp.tsx | 2 +- src/IconCirclesExtSharpFilled.tsx | 2 +- src/IconCirclesOutlined.tsx | 2 +- src/IconCirclesOutlinedFilled.tsx | 2 +- src/IconCirclesRounded.tsx | 2 +- src/IconCirclesRoundedFilled.tsx | 2 +- src/IconCirclesSharp.tsx | 2 +- src/IconCirclesSharpFilled.tsx | 2 +- src/IconClarifyOutlined.tsx | 2 +- src/IconClarifyOutlinedFilled.tsx | 2 +- src/IconClarifyRounded.tsx | 2 +- src/IconClarifyRoundedFilled.tsx | 2 +- src/IconClarifySharp.tsx | 2 +- src/IconClarifySharpFilled.tsx | 2 +- src/IconCleanHandsOutlined.tsx | 2 +- src/IconCleanHandsOutlinedFilled.tsx | 2 +- src/IconCleanHandsRounded.tsx | 2 +- src/IconCleanHandsRoundedFilled.tsx | 2 +- src/IconCleanHandsSharp.tsx | 2 +- src/IconCleanHandsSharpFilled.tsx | 2 +- src/IconCleaningBucketOutlined.tsx | 2 +- src/IconCleaningBucketOutlinedFilled.tsx | 2 +- src/IconCleaningBucketRounded.tsx | 2 +- src/IconCleaningBucketRoundedFilled.tsx | 2 +- src/IconCleaningBucketSharp.tsx | 2 +- src/IconCleaningBucketSharpFilled.tsx | 2 +- src/IconCleaningOutlined.tsx | 2 +- src/IconCleaningOutlinedFilled.tsx | 2 +- src/IconCleaningRounded.tsx | 2 +- src/IconCleaningRoundedFilled.tsx | 2 +- src/IconCleaningServicesOutlined.tsx | 2 +- src/IconCleaningServicesOutlinedFilled.tsx | 2 +- src/IconCleaningServicesRounded.tsx | 2 +- src/IconCleaningServicesRoundedFilled.tsx | 2 +- src/IconCleaningServicesSharp.tsx | 2 +- src/IconCleaningServicesSharpFilled.tsx | 2 +- src/IconCleaningSharp.tsx | 2 +- src/IconCleaningSharpFilled.tsx | 2 +- src/IconClearAllOutlined.tsx | 2 +- src/IconClearAllOutlinedFilled.tsx | 2 +- src/IconClearAllRounded.tsx | 2 +- src/IconClearAllRoundedFilled.tsx | 2 +- src/IconClearAllSharp.tsx | 2 +- src/IconClearAllSharpFilled.tsx | 2 +- src/IconClearDayOutlined.tsx | 2 +- src/IconClearDayOutlinedFilled.tsx | 2 +- src/IconClearDayRounded.tsx | 2 +- src/IconClearDayRoundedFilled.tsx | 2 +- src/IconClearDaySharp.tsx | 2 +- src/IconClearDaySharpFilled.tsx | 2 +- src/IconClimateMiniSplitOutlined.tsx | 2 +- src/IconClimateMiniSplitOutlinedFilled.tsx | 2 +- src/IconClimateMiniSplitRounded.tsx | 2 +- src/IconClimateMiniSplitRoundedFilled.tsx | 2 +- src/IconClimateMiniSplitSharp.tsx | 2 +- src/IconClimateMiniSplitSharpFilled.tsx | 2 +- src/IconClinicalNotesOutlined.tsx | 2 +- src/IconClinicalNotesOutlinedFilled.tsx | 2 +- src/IconClinicalNotesRounded.tsx | 2 +- src/IconClinicalNotesRoundedFilled.tsx | 2 +- src/IconClinicalNotesSharp.tsx | 2 +- src/IconClinicalNotesSharpFilled.tsx | 2 +- src/IconClockLoader10Outlined.tsx | 2 +- src/IconClockLoader10OutlinedFilled.tsx | 2 +- src/IconClockLoader10Rounded.tsx | 2 +- src/IconClockLoader10RoundedFilled.tsx | 2 +- src/IconClockLoader10Sharp.tsx | 2 +- src/IconClockLoader10SharpFilled.tsx | 2 +- src/IconClockLoader20Outlined.tsx | 2 +- src/IconClockLoader20OutlinedFilled.tsx | 2 +- src/IconClockLoader20Rounded.tsx | 2 +- src/IconClockLoader20RoundedFilled.tsx | 2 +- src/IconClockLoader20Sharp.tsx | 2 +- src/IconClockLoader20SharpFilled.tsx | 2 +- src/IconClockLoader40Outlined.tsx | 2 +- src/IconClockLoader40OutlinedFilled.tsx | 2 +- src/IconClockLoader40Rounded.tsx | 2 +- src/IconClockLoader40RoundedFilled.tsx | 2 +- src/IconClockLoader40Sharp.tsx | 2 +- src/IconClockLoader40SharpFilled.tsx | 2 +- src/IconClockLoader60Outlined.tsx | 2 +- src/IconClockLoader60OutlinedFilled.tsx | 2 +- src/IconClockLoader60Rounded.tsx | 2 +- src/IconClockLoader60RoundedFilled.tsx | 2 +- src/IconClockLoader60Sharp.tsx | 2 +- src/IconClockLoader60SharpFilled.tsx | 2 +- src/IconClockLoader80Outlined.tsx | 2 +- src/IconClockLoader80OutlinedFilled.tsx | 2 +- src/IconClockLoader80Rounded.tsx | 2 +- src/IconClockLoader80RoundedFilled.tsx | 2 +- src/IconClockLoader80Sharp.tsx | 2 +- src/IconClockLoader80SharpFilled.tsx | 2 +- src/IconClockLoader90Outlined.tsx | 2 +- src/IconClockLoader90OutlinedFilled.tsx | 2 +- src/IconClockLoader90Rounded.tsx | 2 +- src/IconClockLoader90RoundedFilled.tsx | 2 +- src/IconClockLoader90Sharp.tsx | 2 +- src/IconClockLoader90SharpFilled.tsx | 2 +- src/IconCloseFullscreenOutlined.tsx | 2 +- src/IconCloseFullscreenOutlinedFilled.tsx | 2 +- src/IconCloseFullscreenRounded.tsx | 2 +- src/IconCloseFullscreenRoundedFilled.tsx | 2 +- src/IconCloseFullscreenSharp.tsx | 2 +- src/IconCloseFullscreenSharpFilled.tsx | 2 +- src/IconCloseOutlined.tsx | 2 +- src/IconCloseOutlinedFilled.tsx | 2 +- src/IconCloseRounded.tsx | 2 +- src/IconCloseRoundedFilled.tsx | 2 +- src/IconCloseSharp.tsx | 2 +- src/IconCloseSharpFilled.tsx | 2 +- src/IconCloseSmallOutlined.tsx | 2 +- src/IconCloseSmallOutlinedFilled.tsx | 2 +- src/IconCloseSmallRounded.tsx | 2 +- src/IconCloseSmallRoundedFilled.tsx | 2 +- src/IconCloseSmallSharp.tsx | 2 +- src/IconCloseSmallSharpFilled.tsx | 2 +- src/IconClosedCaptionAddOutlined.tsx | 2 +- src/IconClosedCaptionAddOutlinedFilled.tsx | 2 +- src/IconClosedCaptionAddRounded.tsx | 2 +- src/IconClosedCaptionAddRoundedFilled.tsx | 2 +- src/IconClosedCaptionAddSharp.tsx | 2 +- src/IconClosedCaptionAddSharpFilled.tsx | 2 +- src/IconClosedCaptionDisabledOutlined.tsx | 2 +- src/IconClosedCaptionDisabledOutlinedFilled.tsx | 2 +- src/IconClosedCaptionDisabledRounded.tsx | 2 +- src/IconClosedCaptionDisabledRoundedFilled.tsx | 2 +- src/IconClosedCaptionDisabledSharp.tsx | 2 +- src/IconClosedCaptionDisabledSharpFilled.tsx | 2 +- src/IconClosedCaptionOutlined.tsx | 2 +- src/IconClosedCaptionOutlinedFilled.tsx | 2 +- src/IconClosedCaptionRounded.tsx | 2 +- src/IconClosedCaptionRoundedFilled.tsx | 2 +- src/IconClosedCaptionSharp.tsx | 2 +- src/IconClosedCaptionSharpFilled.tsx | 2 +- src/IconCloudCircleOutlined.tsx | 2 +- src/IconCloudCircleOutlinedFilled.tsx | 2 +- src/IconCloudCircleRounded.tsx | 2 +- src/IconCloudCircleRoundedFilled.tsx | 2 +- src/IconCloudCircleSharp.tsx | 2 +- src/IconCloudCircleSharpFilled.tsx | 2 +- src/IconCloudDoneOutlined.tsx | 2 +- src/IconCloudDoneOutlinedFilled.tsx | 2 +- src/IconCloudDoneRounded.tsx | 2 +- src/IconCloudDoneRoundedFilled.tsx | 2 +- src/IconCloudDoneSharp.tsx | 2 +- src/IconCloudDoneSharpFilled.tsx | 2 +- src/IconCloudDownloadOutlined.tsx | 2 +- src/IconCloudDownloadOutlinedFilled.tsx | 2 +- src/IconCloudDownloadRounded.tsx | 2 +- src/IconCloudDownloadRoundedFilled.tsx | 2 +- src/IconCloudDownloadSharp.tsx | 2 +- src/IconCloudDownloadSharpFilled.tsx | 2 +- src/IconCloudOffOutlined.tsx | 2 +- src/IconCloudOffOutlinedFilled.tsx | 2 +- src/IconCloudOffRounded.tsx | 2 +- src/IconCloudOffRoundedFilled.tsx | 2 +- src/IconCloudOffSharp.tsx | 2 +- src/IconCloudOffSharpFilled.tsx | 2 +- src/IconCloudOutlined.tsx | 2 +- src/IconCloudOutlinedFilled.tsx | 2 +- src/IconCloudRounded.tsx | 2 +- src/IconCloudRoundedFilled.tsx | 2 +- src/IconCloudSharp.tsx | 2 +- src/IconCloudSharpFilled.tsx | 2 +- src/IconCloudSyncOutlined.tsx | 2 +- src/IconCloudSyncOutlinedFilled.tsx | 2 +- src/IconCloudSyncRounded.tsx | 2 +- src/IconCloudSyncRoundedFilled.tsx | 2 +- src/IconCloudSyncSharp.tsx | 2 +- src/IconCloudSyncSharpFilled.tsx | 2 +- src/IconCloudUploadOutlined.tsx | 2 +- src/IconCloudUploadOutlinedFilled.tsx | 2 +- src/IconCloudUploadRounded.tsx | 2 +- src/IconCloudUploadRoundedFilled.tsx | 2 +- src/IconCloudUploadSharp.tsx | 2 +- src/IconCloudUploadSharpFilled.tsx | 2 +- src/IconCloudySnowingOutlined.tsx | 2 +- src/IconCloudySnowingOutlinedFilled.tsx | 2 +- src/IconCloudySnowingRounded.tsx | 2 +- src/IconCloudySnowingRoundedFilled.tsx | 2 +- src/IconCloudySnowingSharp.tsx | 2 +- src/IconCloudySnowingSharpFilled.tsx | 2 +- src/IconCo2Outlined.tsx | 2 +- src/IconCo2OutlinedFilled.tsx | 2 +- src/IconCo2Rounded.tsx | 2 +- src/IconCo2RoundedFilled.tsx | 2 +- src/IconCo2Sharp.tsx | 2 +- src/IconCo2SharpFilled.tsx | 2 +- src/IconCoPresentOutlined.tsx | 2 +- src/IconCoPresentOutlinedFilled.tsx | 2 +- src/IconCoPresentRounded.tsx | 2 +- src/IconCoPresentRoundedFilled.tsx | 2 +- src/IconCoPresentSharp.tsx | 2 +- src/IconCoPresentSharpFilled.tsx | 2 +- src/IconCodeBlocksOutlined.tsx | 2 +- src/IconCodeBlocksOutlinedFilled.tsx | 2 +- src/IconCodeBlocksRounded.tsx | 2 +- src/IconCodeBlocksRoundedFilled.tsx | 2 +- src/IconCodeBlocksSharp.tsx | 2 +- src/IconCodeBlocksSharpFilled.tsx | 2 +- src/IconCodeOffOutlined.tsx | 2 +- src/IconCodeOffOutlinedFilled.tsx | 2 +- src/IconCodeOffRounded.tsx | 2 +- src/IconCodeOffRoundedFilled.tsx | 2 +- src/IconCodeOffSharp.tsx | 2 +- src/IconCodeOffSharpFilled.tsx | 2 +- src/IconCodeOutlined.tsx | 2 +- src/IconCodeOutlinedFilled.tsx | 2 +- src/IconCodeRounded.tsx | 2 +- src/IconCodeRoundedFilled.tsx | 2 +- src/IconCodeSharp.tsx | 2 +- src/IconCodeSharpFilled.tsx | 2 +- src/IconCoffeeMakerOutlined.tsx | 2 +- src/IconCoffeeMakerOutlinedFilled.tsx | 2 +- src/IconCoffeeMakerRounded.tsx | 2 +- src/IconCoffeeMakerRoundedFilled.tsx | 2 +- src/IconCoffeeMakerSharp.tsx | 2 +- src/IconCoffeeMakerSharpFilled.tsx | 2 +- src/IconCoffeeOutlined.tsx | 2 +- src/IconCoffeeOutlinedFilled.tsx | 2 +- src/IconCoffeeRounded.tsx | 2 +- src/IconCoffeeRoundedFilled.tsx | 2 +- src/IconCoffeeSharp.tsx | 2 +- src/IconCoffeeSharpFilled.tsx | 2 +- src/IconCognitionOutlined.tsx | 2 +- src/IconCognitionOutlinedFilled.tsx | 2 +- src/IconCognitionRounded.tsx | 2 +- src/IconCognitionRoundedFilled.tsx | 2 +- src/IconCognitionSharp.tsx | 2 +- src/IconCognitionSharpFilled.tsx | 2 +- src/IconCollapseAllOutlined.tsx | 2 +- src/IconCollapseAllOutlinedFilled.tsx | 2 +- src/IconCollapseAllRounded.tsx | 2 +- src/IconCollapseAllRoundedFilled.tsx | 2 +- src/IconCollapseAllSharp.tsx | 2 +- src/IconCollapseAllSharpFilled.tsx | 2 +- src/IconCollapseContentOutlined.tsx | 2 +- src/IconCollapseContentOutlinedFilled.tsx | 2 +- src/IconCollapseContentRounded.tsx | 2 +- src/IconCollapseContentRoundedFilled.tsx | 2 +- src/IconCollapseContentSharp.tsx | 2 +- src/IconCollapseContentSharpFilled.tsx | 2 +- src/IconCollectionsBookmarkOutlined.tsx | 2 +- src/IconCollectionsBookmarkOutlinedFilled.tsx | 2 +- src/IconCollectionsBookmarkRounded.tsx | 2 +- src/IconCollectionsBookmarkRoundedFilled.tsx | 2 +- src/IconCollectionsBookmarkSharp.tsx | 2 +- src/IconCollectionsBookmarkSharpFilled.tsx | 2 +- src/IconColorizeOutlined.tsx | 2 +- src/IconColorizeOutlinedFilled.tsx | 2 +- src/IconColorizeRounded.tsx | 2 +- src/IconColorizeRoundedFilled.tsx | 2 +- src/IconColorizeSharp.tsx | 2 +- src/IconColorizeSharpFilled.tsx | 2 +- src/IconColorsOutlined.tsx | 2 +- src/IconColorsOutlinedFilled.tsx | 2 +- src/IconColorsRounded.tsx | 2 +- src/IconColorsRoundedFilled.tsx | 2 +- src/IconColorsSharp.tsx | 2 +- src/IconColorsSharpFilled.tsx | 2 +- src/IconCombineColumnsOutlined.tsx | 2 +- src/IconCombineColumnsOutlinedFilled.tsx | 2 +- src/IconCombineColumnsRounded.tsx | 2 +- src/IconCombineColumnsRoundedFilled.tsx | 2 +- src/IconCombineColumnsSharp.tsx | 2 +- src/IconCombineColumnsSharpFilled.tsx | 2 +- src/IconComedyMaskOutlined.tsx | 2 +- src/IconComedyMaskOutlinedFilled.tsx | 2 +- src/IconComedyMaskRounded.tsx | 2 +- src/IconComedyMaskRoundedFilled.tsx | 2 +- src/IconComedyMaskSharp.tsx | 2 +- src/IconComedyMaskSharpFilled.tsx | 2 +- src/IconComicBubbleOutlined.tsx | 2 +- src/IconComicBubbleOutlinedFilled.tsx | 2 +- src/IconComicBubbleRounded.tsx | 2 +- src/IconComicBubbleRoundedFilled.tsx | 2 +- src/IconComicBubbleSharp.tsx | 2 +- src/IconComicBubbleSharpFilled.tsx | 2 +- src/IconCommentBankOutlined.tsx | 2 +- src/IconCommentBankOutlinedFilled.tsx | 2 +- src/IconCommentBankRounded.tsx | 2 +- src/IconCommentBankRoundedFilled.tsx | 2 +- src/IconCommentBankSharp.tsx | 2 +- src/IconCommentBankSharpFilled.tsx | 2 +- src/IconCommentOutlined.tsx | 2 +- src/IconCommentOutlinedFilled.tsx | 2 +- src/IconCommentRounded.tsx | 2 +- src/IconCommentRoundedFilled.tsx | 2 +- src/IconCommentSharp.tsx | 2 +- src/IconCommentSharpFilled.tsx | 2 +- src/IconCommentsDisabledOutlined.tsx | 2 +- src/IconCommentsDisabledOutlinedFilled.tsx | 2 +- src/IconCommentsDisabledRounded.tsx | 2 +- src/IconCommentsDisabledRoundedFilled.tsx | 2 +- src/IconCommentsDisabledSharp.tsx | 2 +- src/IconCommentsDisabledSharpFilled.tsx | 2 +- src/IconCommitOutlined.tsx | 2 +- src/IconCommitOutlinedFilled.tsx | 2 +- src/IconCommitRounded.tsx | 2 +- src/IconCommitRoundedFilled.tsx | 2 +- src/IconCommitSharp.tsx | 2 +- src/IconCommitSharpFilled.tsx | 2 +- src/IconCommunicationOutlined.tsx | 2 +- src/IconCommunicationOutlinedFilled.tsx | 2 +- src/IconCommunicationRounded.tsx | 2 +- src/IconCommunicationRoundedFilled.tsx | 2 +- src/IconCommunicationSharp.tsx | 2 +- src/IconCommunicationSharpFilled.tsx | 2 +- src/IconCommunitiesOutlined.tsx | 2 +- src/IconCommunitiesOutlinedFilled.tsx | 2 +- src/IconCommunitiesRounded.tsx | 2 +- src/IconCommunitiesRoundedFilled.tsx | 2 +- src/IconCommunitiesSharp.tsx | 2 +- src/IconCommunitiesSharpFilled.tsx | 2 +- src/IconCommuteOutlined.tsx | 2 +- src/IconCommuteOutlinedFilled.tsx | 2 +- src/IconCommuteRounded.tsx | 2 +- src/IconCommuteRoundedFilled.tsx | 2 +- src/IconCommuteSharp.tsx | 2 +- src/IconCommuteSharpFilled.tsx | 2 +- src/IconCompareArrowsOutlined.tsx | 2 +- src/IconCompareArrowsOutlinedFilled.tsx | 2 +- src/IconCompareArrowsRounded.tsx | 2 +- src/IconCompareArrowsRoundedFilled.tsx | 2 +- src/IconCompareArrowsSharp.tsx | 2 +- src/IconCompareArrowsSharpFilled.tsx | 2 +- src/IconCompareOutlined.tsx | 2 +- src/IconCompareOutlinedFilled.tsx | 2 +- src/IconCompareRounded.tsx | 2 +- src/IconCompareRoundedFilled.tsx | 2 +- src/IconCompareSharp.tsx | 2 +- src/IconCompareSharpFilled.tsx | 2 +- src/IconCompassCalibrationOutlined.tsx | 2 +- src/IconCompassCalibrationOutlinedFilled.tsx | 2 +- src/IconCompassCalibrationRounded.tsx | 2 +- src/IconCompassCalibrationRoundedFilled.tsx | 2 +- src/IconCompassCalibrationSharp.tsx | 2 +- src/IconCompassCalibrationSharpFilled.tsx | 2 +- src/IconComponentExchangeOutlined.tsx | 2 +- src/IconComponentExchangeOutlinedFilled.tsx | 2 +- src/IconComponentExchangeRounded.tsx | 2 +- src/IconComponentExchangeRoundedFilled.tsx | 2 +- src/IconComponentExchangeSharp.tsx | 2 +- src/IconComponentExchangeSharpFilled.tsx | 2 +- src/IconCompostOutlined.tsx | 2 +- src/IconCompostOutlinedFilled.tsx | 2 +- src/IconCompostRounded.tsx | 2 +- src/IconCompostRoundedFilled.tsx | 2 +- src/IconCompostSharp.tsx | 2 +- src/IconCompostSharpFilled.tsx | 2 +- src/IconCompressOutlined.tsx | 2 +- src/IconCompressOutlinedFilled.tsx | 2 +- src/IconCompressRounded.tsx | 2 +- src/IconCompressRoundedFilled.tsx | 2 +- src/IconCompressSharp.tsx | 2 +- src/IconCompressSharpFilled.tsx | 2 +- src/IconComputerOutlined.tsx | 2 +- src/IconComputerOutlinedFilled.tsx | 2 +- src/IconComputerRounded.tsx | 2 +- src/IconComputerRoundedFilled.tsx | 2 +- src/IconComputerSharp.tsx | 2 +- src/IconComputerSharpFilled.tsx | 2 +- src/IconConciergeOutlined.tsx | 2 +- src/IconConciergeOutlinedFilled.tsx | 2 +- src/IconConciergeRounded.tsx | 2 +- src/IconConciergeRoundedFilled.tsx | 2 +- src/IconConciergeSharp.tsx | 2 +- src/IconConciergeSharpFilled.tsx | 2 +- src/IconConditionsOutlined.tsx | 2 +- src/IconConditionsOutlinedFilled.tsx | 2 +- src/IconConditionsRounded.tsx | 2 +- src/IconConditionsRoundedFilled.tsx | 2 +- src/IconConditionsSharp.tsx | 2 +- src/IconConditionsSharpFilled.tsx | 2 +- src/IconConfirmationNumberOutlined.tsx | 2 +- src/IconConfirmationNumberOutlinedFilled.tsx | 2 +- src/IconConfirmationNumberRounded.tsx | 2 +- src/IconConfirmationNumberRoundedFilled.tsx | 2 +- src/IconConfirmationNumberSharp.tsx | 2 +- src/IconConfirmationNumberSharpFilled.tsx | 2 +- src/IconCongenitalOutlined.tsx | 2 +- src/IconCongenitalOutlinedFilled.tsx | 2 +- src/IconCongenitalRounded.tsx | 2 +- src/IconCongenitalRoundedFilled.tsx | 2 +- src/IconCongenitalSharp.tsx | 2 +- src/IconCongenitalSharpFilled.tsx | 2 +- src/IconConnectWithoutContactOutlined.tsx | 2 +- src/IconConnectWithoutContactOutlinedFilled.tsx | 2 +- src/IconConnectWithoutContactRounded.tsx | 2 +- src/IconConnectWithoutContactRoundedFilled.tsx | 2 +- src/IconConnectWithoutContactSharp.tsx | 2 +- src/IconConnectWithoutContactSharpFilled.tsx | 2 +- src/IconConnectedTvOutlined.tsx | 2 +- src/IconConnectedTvOutlinedFilled.tsx | 2 +- src/IconConnectedTvRounded.tsx | 2 +- src/IconConnectedTvRoundedFilled.tsx | 2 +- src/IconConnectedTvSharp.tsx | 2 +- src/IconConnectedTvSharpFilled.tsx | 2 +- src/IconConnectingAirportsOutlined.tsx | 2 +- src/IconConnectingAirportsOutlinedFilled.tsx | 2 +- src/IconConnectingAirportsRounded.tsx | 2 +- src/IconConnectingAirportsRoundedFilled.tsx | 2 +- src/IconConnectingAirportsSharp.tsx | 2 +- src/IconConnectingAirportsSharpFilled.tsx | 2 +- src/IconConstructionOutlined.tsx | 2 +- src/IconConstructionOutlinedFilled.tsx | 2 +- src/IconConstructionRounded.tsx | 2 +- src/IconConstructionRoundedFilled.tsx | 2 +- src/IconConstructionSharp.tsx | 2 +- src/IconConstructionSharpFilled.tsx | 2 +- src/IconContactEmergencyOutlined.tsx | 2 +- src/IconContactEmergencyOutlinedFilled.tsx | 2 +- src/IconContactEmergencyRounded.tsx | 2 +- src/IconContactEmergencyRoundedFilled.tsx | 2 +- src/IconContactEmergencySharp.tsx | 2 +- src/IconContactEmergencySharpFilled.tsx | 2 +- src/IconContactMailOutlined.tsx | 2 +- src/IconContactMailOutlinedFilled.tsx | 2 +- src/IconContactMailRounded.tsx | 2 +- src/IconContactMailRoundedFilled.tsx | 2 +- src/IconContactMailSharp.tsx | 2 +- src/IconContactMailSharpFilled.tsx | 2 +- src/IconContactPageOutlined.tsx | 2 +- src/IconContactPageOutlinedFilled.tsx | 2 +- src/IconContactPageRounded.tsx | 2 +- src/IconContactPageRoundedFilled.tsx | 2 +- src/IconContactPageSharp.tsx | 2 +- src/IconContactPageSharpFilled.tsx | 2 +- src/IconContactPhoneOutlined.tsx | 2 +- src/IconContactPhoneOutlinedFilled.tsx | 2 +- src/IconContactPhoneRounded.tsx | 2 +- src/IconContactPhoneRoundedFilled.tsx | 2 +- src/IconContactPhoneSharp.tsx | 2 +- src/IconContactPhoneSharpFilled.tsx | 2 +- src/IconContactSupportOutlined.tsx | 2 +- src/IconContactSupportOutlinedFilled.tsx | 2 +- src/IconContactSupportRounded.tsx | 2 +- src/IconContactSupportRoundedFilled.tsx | 2 +- src/IconContactSupportSharp.tsx | 2 +- src/IconContactSupportSharpFilled.tsx | 2 +- src/IconContactlessOffOutlined.tsx | 2 +- src/IconContactlessOffOutlinedFilled.tsx | 2 +- src/IconContactlessOffRounded.tsx | 2 +- src/IconContactlessOffRoundedFilled.tsx | 2 +- src/IconContactlessOffSharp.tsx | 2 +- src/IconContactlessOffSharpFilled.tsx | 2 +- src/IconContactlessOutlined.tsx | 2 +- src/IconContactlessOutlinedFilled.tsx | 2 +- src/IconContactlessRounded.tsx | 2 +- src/IconContactlessRoundedFilled.tsx | 2 +- src/IconContactlessSharp.tsx | 2 +- src/IconContactlessSharpFilled.tsx | 2 +- src/IconContactsOutlined.tsx | 2 +- src/IconContactsOutlinedFilled.tsx | 2 +- src/IconContactsProductOutlined.tsx | 2 +- src/IconContactsProductOutlinedFilled.tsx | 2 +- src/IconContactsProductRounded.tsx | 2 +- src/IconContactsProductRoundedFilled.tsx | 2 +- src/IconContactsProductSharp.tsx | 2 +- src/IconContactsProductSharpFilled.tsx | 2 +- src/IconContactsRounded.tsx | 2 +- src/IconContactsRoundedFilled.tsx | 2 +- src/IconContactsSharp.tsx | 2 +- src/IconContactsSharpFilled.tsx | 2 +- src/IconContentCopyOutlined.tsx | 2 +- src/IconContentCopyOutlinedFilled.tsx | 2 +- src/IconContentCopyRounded.tsx | 2 +- src/IconContentCopyRoundedFilled.tsx | 2 +- src/IconContentCopySharp.tsx | 2 +- src/IconContentCopySharpFilled.tsx | 2 +- src/IconContentCutOutlined.tsx | 2 +- src/IconContentCutOutlinedFilled.tsx | 2 +- src/IconContentCutRounded.tsx | 2 +- src/IconContentCutRoundedFilled.tsx | 2 +- src/IconContentCutSharp.tsx | 2 +- src/IconContentCutSharpFilled.tsx | 2 +- src/IconContentPasteGoOutlined.tsx | 2 +- src/IconContentPasteGoOutlinedFilled.tsx | 2 +- src/IconContentPasteGoRounded.tsx | 2 +- src/IconContentPasteGoRoundedFilled.tsx | 2 +- src/IconContentPasteGoSharp.tsx | 2 +- src/IconContentPasteGoSharpFilled.tsx | 2 +- src/IconContentPasteOffOutlined.tsx | 2 +- src/IconContentPasteOffOutlinedFilled.tsx | 2 +- src/IconContentPasteOffRounded.tsx | 2 +- src/IconContentPasteOffRoundedFilled.tsx | 2 +- src/IconContentPasteOffSharp.tsx | 2 +- src/IconContentPasteOffSharpFilled.tsx | 2 +- src/IconContentPasteOutlined.tsx | 2 +- src/IconContentPasteOutlinedFilled.tsx | 2 +- src/IconContentPasteRounded.tsx | 2 +- src/IconContentPasteRoundedFilled.tsx | 2 +- src/IconContentPasteSearchOutlined.tsx | 2 +- src/IconContentPasteSearchOutlinedFilled.tsx | 2 +- src/IconContentPasteSearchRounded.tsx | 2 +- src/IconContentPasteSearchRoundedFilled.tsx | 2 +- src/IconContentPasteSearchSharp.tsx | 2 +- src/IconContentPasteSearchSharpFilled.tsx | 2 +- src/IconContentPasteSharp.tsx | 2 +- src/IconContentPasteSharpFilled.tsx | 2 +- src/IconContextualTokenAddOutlined.tsx | 2 +- src/IconContextualTokenAddOutlinedFilled.tsx | 2 +- src/IconContextualTokenAddRounded.tsx | 2 +- src/IconContextualTokenAddRoundedFilled.tsx | 2 +- src/IconContextualTokenAddSharp.tsx | 2 +- src/IconContextualTokenAddSharpFilled.tsx | 2 +- src/IconContextualTokenOutlined.tsx | 2 +- src/IconContextualTokenOutlinedFilled.tsx | 2 +- src/IconContextualTokenRounded.tsx | 2 +- src/IconContextualTokenRoundedFilled.tsx | 2 +- src/IconContextualTokenSharp.tsx | 2 +- src/IconContextualTokenSharpFilled.tsx | 2 +- src/IconContractDeleteOutlined.tsx | 2 +- src/IconContractDeleteOutlinedFilled.tsx | 2 +- src/IconContractDeleteRounded.tsx | 2 +- src/IconContractDeleteRoundedFilled.tsx | 2 +- src/IconContractDeleteSharp.tsx | 2 +- src/IconContractDeleteSharpFilled.tsx | 2 +- src/IconContractEditOutlined.tsx | 2 +- src/IconContractEditOutlinedFilled.tsx | 2 +- src/IconContractEditRounded.tsx | 2 +- src/IconContractEditRoundedFilled.tsx | 2 +- src/IconContractEditSharp.tsx | 2 +- src/IconContractEditSharpFilled.tsx | 2 +- src/IconContractOutlined.tsx | 2 +- src/IconContractOutlinedFilled.tsx | 2 +- src/IconContractRounded.tsx | 2 +- src/IconContractRoundedFilled.tsx | 2 +- src/IconContractSharp.tsx | 2 +- src/IconContractSharpFilled.tsx | 2 +- src/IconContrastCircleOutlined.tsx | 2 +- src/IconContrastCircleOutlinedFilled.tsx | 2 +- src/IconContrastCircleRounded.tsx | 2 +- src/IconContrastCircleRoundedFilled.tsx | 2 +- src/IconContrastCircleSharp.tsx | 2 +- src/IconContrastCircleSharpFilled.tsx | 2 +- src/IconContrastOutlined.tsx | 2 +- src/IconContrastOutlinedFilled.tsx | 2 +- src/IconContrastRounded.tsx | 2 +- src/IconContrastRoundedFilled.tsx | 2 +- src/IconContrastRtlOffOutlined.tsx | 2 +- src/IconContrastRtlOffOutlinedFilled.tsx | 2 +- src/IconContrastRtlOffRounded.tsx | 2 +- src/IconContrastRtlOffRoundedFilled.tsx | 2 +- src/IconContrastRtlOffSharp.tsx | 2 +- src/IconContrastRtlOffSharpFilled.tsx | 2 +- src/IconContrastSharp.tsx | 2 +- src/IconContrastSharpFilled.tsx | 2 +- src/IconContrastSquareOutlined.tsx | 2 +- src/IconContrastSquareOutlinedFilled.tsx | 2 +- src/IconContrastSquareRounded.tsx | 2 +- src/IconContrastSquareRoundedFilled.tsx | 2 +- src/IconContrastSquareSharp.tsx | 2 +- src/IconContrastSquareSharpFilled.tsx | 2 +- src/IconControlCameraOutlined.tsx | 2 +- src/IconControlCameraOutlinedFilled.tsx | 2 +- src/IconControlCameraRounded.tsx | 2 +- src/IconControlCameraRoundedFilled.tsx | 2 +- src/IconControlCameraSharp.tsx | 2 +- src/IconControlCameraSharpFilled.tsx | 2 +- src/IconControlPointDuplicateOutlined.tsx | 2 +- src/IconControlPointDuplicateOutlinedFilled.tsx | 2 +- src/IconControlPointDuplicateRounded.tsx | 2 +- src/IconControlPointDuplicateRoundedFilled.tsx | 2 +- src/IconControlPointDuplicateSharp.tsx | 2 +- src/IconControlPointDuplicateSharpFilled.tsx | 2 +- src/IconControllerGenOutlined.tsx | 2 +- src/IconControllerGenOutlinedFilled.tsx | 2 +- src/IconControllerGenRounded.tsx | 2 +- src/IconControllerGenRoundedFilled.tsx | 2 +- src/IconControllerGenSharp.tsx | 2 +- src/IconControllerGenSharpFilled.tsx | 2 +- src/IconConversionPathOffOutlined.tsx | 2 +- src/IconConversionPathOffOutlinedFilled.tsx | 2 +- src/IconConversionPathOffRounded.tsx | 2 +- src/IconConversionPathOffRoundedFilled.tsx | 2 +- src/IconConversionPathOffSharp.tsx | 2 +- src/IconConversionPathOffSharpFilled.tsx | 2 +- src/IconConversionPathOutlined.tsx | 2 +- src/IconConversionPathOutlinedFilled.tsx | 2 +- src/IconConversionPathRounded.tsx | 2 +- src/IconConversionPathRoundedFilled.tsx | 2 +- src/IconConversionPathSharp.tsx | 2 +- src/IconConversionPathSharpFilled.tsx | 2 +- src/IconConvertToTextOutlined.tsx | 2 +- src/IconConvertToTextOutlinedFilled.tsx | 2 +- src/IconConvertToTextRounded.tsx | 2 +- src/IconConvertToTextRoundedFilled.tsx | 2 +- src/IconConvertToTextSharp.tsx | 2 +- src/IconConvertToTextSharpFilled.tsx | 2 +- src/IconConveyorBeltOutlined.tsx | 2 +- src/IconConveyorBeltOutlinedFilled.tsx | 2 +- src/IconConveyorBeltRounded.tsx | 2 +- src/IconConveyorBeltRoundedFilled.tsx | 2 +- src/IconConveyorBeltSharp.tsx | 2 +- src/IconConveyorBeltSharpFilled.tsx | 2 +- src/IconCookieOffOutlined.tsx | 2 +- src/IconCookieOffOutlinedFilled.tsx | 2 +- src/IconCookieOffRounded.tsx | 2 +- src/IconCookieOffRoundedFilled.tsx | 2 +- src/IconCookieOffSharp.tsx | 2 +- src/IconCookieOffSharpFilled.tsx | 2 +- src/IconCookieOutlined.tsx | 2 +- src/IconCookieOutlinedFilled.tsx | 2 +- src/IconCookieRounded.tsx | 2 +- src/IconCookieRoundedFilled.tsx | 2 +- src/IconCookieSharp.tsx | 2 +- src/IconCookieSharpFilled.tsx | 2 +- src/IconCookingOutlined.tsx | 2 +- src/IconCookingOutlinedFilled.tsx | 2 +- src/IconCookingRounded.tsx | 2 +- src/IconCookingRoundedFilled.tsx | 2 +- src/IconCookingSharp.tsx | 2 +- src/IconCookingSharpFilled.tsx | 2 +- src/IconCoolToDryOutlined.tsx | 2 +- src/IconCoolToDryOutlinedFilled.tsx | 2 +- src/IconCoolToDryRounded.tsx | 2 +- src/IconCoolToDryRoundedFilled.tsx | 2 +- src/IconCoolToDrySharp.tsx | 2 +- src/IconCoolToDrySharpFilled.tsx | 2 +- src/IconCopyAllOutlined.tsx | 2 +- src/IconCopyAllOutlinedFilled.tsx | 2 +- src/IconCopyAllRounded.tsx | 2 +- src/IconCopyAllRoundedFilled.tsx | 2 +- src/IconCopyAllSharp.tsx | 2 +- src/IconCopyAllSharpFilled.tsx | 2 +- src/IconCopyrightOutlined.tsx | 2 +- src/IconCopyrightOutlinedFilled.tsx | 2 +- src/IconCopyrightRounded.tsx | 2 +- src/IconCopyrightRoundedFilled.tsx | 2 +- src/IconCopyrightSharp.tsx | 2 +- src/IconCopyrightSharpFilled.tsx | 2 +- src/IconCoronavirusOutlined.tsx | 2 +- src/IconCoronavirusOutlinedFilled.tsx | 2 +- src/IconCoronavirusRounded.tsx | 2 +- src/IconCoronavirusRoundedFilled.tsx | 2 +- src/IconCoronavirusSharp.tsx | 2 +- src/IconCoronavirusSharpFilled.tsx | 2 +- src/IconCorporateFareOutlined.tsx | 2 +- src/IconCorporateFareOutlinedFilled.tsx | 2 +- src/IconCorporateFareRounded.tsx | 2 +- src/IconCorporateFareRoundedFilled.tsx | 2 +- src/IconCorporateFareSharp.tsx | 2 +- src/IconCorporateFareSharpFilled.tsx | 2 +- src/IconCottageOutlined.tsx | 2 +- src/IconCottageOutlinedFilled.tsx | 2 +- src/IconCottageRounded.tsx | 2 +- src/IconCottageRoundedFilled.tsx | 2 +- src/IconCottageSharp.tsx | 2 +- src/IconCottageSharpFilled.tsx | 2 +- src/IconCounter0Outlined.tsx | 2 +- src/IconCounter0OutlinedFilled.tsx | 2 +- src/IconCounter0Rounded.tsx | 2 +- src/IconCounter0RoundedFilled.tsx | 2 +- src/IconCounter0Sharp.tsx | 2 +- src/IconCounter0SharpFilled.tsx | 2 +- src/IconCounter1Outlined.tsx | 2 +- src/IconCounter1OutlinedFilled.tsx | 2 +- src/IconCounter1Rounded.tsx | 2 +- src/IconCounter1RoundedFilled.tsx | 2 +- src/IconCounter1Sharp.tsx | 2 +- src/IconCounter1SharpFilled.tsx | 2 +- src/IconCounter2Outlined.tsx | 2 +- src/IconCounter2OutlinedFilled.tsx | 2 +- src/IconCounter2Rounded.tsx | 2 +- src/IconCounter2RoundedFilled.tsx | 2 +- src/IconCounter2Sharp.tsx | 2 +- src/IconCounter2SharpFilled.tsx | 2 +- src/IconCounter3Outlined.tsx | 2 +- src/IconCounter3OutlinedFilled.tsx | 2 +- src/IconCounter3Rounded.tsx | 2 +- src/IconCounter3RoundedFilled.tsx | 2 +- src/IconCounter3Sharp.tsx | 2 +- src/IconCounter3SharpFilled.tsx | 2 +- src/IconCounter4Outlined.tsx | 2 +- src/IconCounter4OutlinedFilled.tsx | 2 +- src/IconCounter4Rounded.tsx | 2 +- src/IconCounter4RoundedFilled.tsx | 2 +- src/IconCounter4Sharp.tsx | 2 +- src/IconCounter4SharpFilled.tsx | 2 +- src/IconCounter5Outlined.tsx | 2 +- src/IconCounter5OutlinedFilled.tsx | 2 +- src/IconCounter5Rounded.tsx | 2 +- src/IconCounter5RoundedFilled.tsx | 2 +- src/IconCounter5Sharp.tsx | 2 +- src/IconCounter5SharpFilled.tsx | 2 +- src/IconCounter6Outlined.tsx | 2 +- src/IconCounter6OutlinedFilled.tsx | 2 +- src/IconCounter6Rounded.tsx | 2 +- src/IconCounter6RoundedFilled.tsx | 2 +- src/IconCounter6Sharp.tsx | 2 +- src/IconCounter6SharpFilled.tsx | 2 +- src/IconCounter7Outlined.tsx | 2 +- src/IconCounter7OutlinedFilled.tsx | 2 +- src/IconCounter7Rounded.tsx | 2 +- src/IconCounter7RoundedFilled.tsx | 2 +- src/IconCounter7Sharp.tsx | 2 +- src/IconCounter7SharpFilled.tsx | 2 +- src/IconCounter8Outlined.tsx | 2 +- src/IconCounter8OutlinedFilled.tsx | 2 +- src/IconCounter8Rounded.tsx | 2 +- src/IconCounter8RoundedFilled.tsx | 2 +- src/IconCounter8Sharp.tsx | 2 +- src/IconCounter8SharpFilled.tsx | 2 +- src/IconCounter9Outlined.tsx | 2 +- src/IconCounter9OutlinedFilled.tsx | 2 +- src/IconCounter9Rounded.tsx | 2 +- src/IconCounter9RoundedFilled.tsx | 2 +- src/IconCounter9Sharp.tsx | 2 +- src/IconCounter9SharpFilled.tsx | 2 +- src/IconCountertopsOutlined.tsx | 2 +- src/IconCountertopsOutlinedFilled.tsx | 2 +- src/IconCountertopsRounded.tsx | 2 +- src/IconCountertopsRoundedFilled.tsx | 2 +- src/IconCountertopsSharp.tsx | 2 +- src/IconCountertopsSharpFilled.tsx | 2 +- src/IconCreateNewFolderOutlined.tsx | 2 +- src/IconCreateNewFolderOutlinedFilled.tsx | 2 +- src/IconCreateNewFolderRounded.tsx | 2 +- src/IconCreateNewFolderRoundedFilled.tsx | 2 +- src/IconCreateNewFolderSharp.tsx | 2 +- src/IconCreateNewFolderSharpFilled.tsx | 2 +- src/IconCreditCardClockOutlined.tsx | 2 +- src/IconCreditCardClockOutlinedFilled.tsx | 2 +- src/IconCreditCardClockRounded.tsx | 2 +- src/IconCreditCardClockRoundedFilled.tsx | 2 +- src/IconCreditCardClockSharp.tsx | 2 +- src/IconCreditCardClockSharpFilled.tsx | 2 +- src/IconCreditCardGearOutlined.tsx | 2 +- src/IconCreditCardGearOutlinedFilled.tsx | 2 +- src/IconCreditCardGearRounded.tsx | 2 +- src/IconCreditCardGearRoundedFilled.tsx | 2 +- src/IconCreditCardGearSharp.tsx | 2 +- src/IconCreditCardGearSharpFilled.tsx | 2 +- src/IconCreditCardHeartOutlined.tsx | 2 +- src/IconCreditCardHeartOutlinedFilled.tsx | 2 +- src/IconCreditCardHeartRounded.tsx | 2 +- src/IconCreditCardHeartRoundedFilled.tsx | 2 +- src/IconCreditCardHeartSharp.tsx | 2 +- src/IconCreditCardHeartSharpFilled.tsx | 2 +- src/IconCreditCardOffOutlined.tsx | 2 +- src/IconCreditCardOffOutlinedFilled.tsx | 2 +- src/IconCreditCardOffRounded.tsx | 2 +- src/IconCreditCardOffRoundedFilled.tsx | 2 +- src/IconCreditCardOffSharp.tsx | 2 +- src/IconCreditCardOffSharpFilled.tsx | 2 +- src/IconCreditCardOutlined.tsx | 2 +- src/IconCreditCardOutlinedFilled.tsx | 2 +- src/IconCreditCardRounded.tsx | 2 +- src/IconCreditCardRoundedFilled.tsx | 2 +- src/IconCreditCardSharp.tsx | 2 +- src/IconCreditCardSharpFilled.tsx | 2 +- src/IconCreditScoreOutlined.tsx | 2 +- src/IconCreditScoreOutlinedFilled.tsx | 2 +- src/IconCreditScoreRounded.tsx | 2 +- src/IconCreditScoreRoundedFilled.tsx | 2 +- src/IconCreditScoreSharp.tsx | 2 +- src/IconCreditScoreSharpFilled.tsx | 2 +- src/IconCribOutlined.tsx | 2 +- src/IconCribOutlinedFilled.tsx | 2 +- src/IconCribRounded.tsx | 2 +- src/IconCribRoundedFilled.tsx | 2 +- src/IconCribSharp.tsx | 2 +- src/IconCribSharpFilled.tsx | 2 +- src/IconCrisisAlertOutlined.tsx | 2 +- src/IconCrisisAlertOutlinedFilled.tsx | 2 +- src/IconCrisisAlertRounded.tsx | 2 +- src/IconCrisisAlertRoundedFilled.tsx | 2 +- src/IconCrisisAlertSharp.tsx | 2 +- src/IconCrisisAlertSharpFilled.tsx | 2 +- src/IconCrop169Outlined.tsx | 2 +- src/IconCrop169OutlinedFilled.tsx | 2 +- src/IconCrop169Rounded.tsx | 2 +- src/IconCrop169RoundedFilled.tsx | 2 +- src/IconCrop169Sharp.tsx | 2 +- src/IconCrop169SharpFilled.tsx | 2 +- src/IconCrop32Outlined.tsx | 2 +- src/IconCrop32OutlinedFilled.tsx | 2 +- src/IconCrop32Rounded.tsx | 2 +- src/IconCrop32RoundedFilled.tsx | 2 +- src/IconCrop32Sharp.tsx | 2 +- src/IconCrop32SharpFilled.tsx | 2 +- src/IconCrop54Outlined.tsx | 2 +- src/IconCrop54OutlinedFilled.tsx | 2 +- src/IconCrop54Rounded.tsx | 2 +- src/IconCrop54RoundedFilled.tsx | 2 +- src/IconCrop54Sharp.tsx | 2 +- src/IconCrop54SharpFilled.tsx | 2 +- src/IconCrop75Outlined.tsx | 2 +- src/IconCrop75OutlinedFilled.tsx | 2 +- src/IconCrop75Rounded.tsx | 2 +- src/IconCrop75RoundedFilled.tsx | 2 +- src/IconCrop75Sharp.tsx | 2 +- src/IconCrop75SharpFilled.tsx | 2 +- src/IconCrop916Outlined.tsx | 2 +- src/IconCrop916OutlinedFilled.tsx | 2 +- src/IconCrop916Rounded.tsx | 2 +- src/IconCrop916RoundedFilled.tsx | 2 +- src/IconCrop916Sharp.tsx | 2 +- src/IconCrop916SharpFilled.tsx | 2 +- src/IconCropFreeOutlined.tsx | 2 +- src/IconCropFreeOutlinedFilled.tsx | 2 +- src/IconCropFreeRounded.tsx | 2 +- src/IconCropFreeRoundedFilled.tsx | 2 +- src/IconCropFreeSharp.tsx | 2 +- src/IconCropFreeSharpFilled.tsx | 2 +- src/IconCropLandscapeOutlined.tsx | 2 +- src/IconCropLandscapeOutlinedFilled.tsx | 2 +- src/IconCropLandscapeRounded.tsx | 2 +- src/IconCropLandscapeRoundedFilled.tsx | 2 +- src/IconCropLandscapeSharp.tsx | 2 +- src/IconCropLandscapeSharpFilled.tsx | 2 +- src/IconCropOutlined.tsx | 2 +- src/IconCropOutlinedFilled.tsx | 2 +- src/IconCropPortraitOutlined.tsx | 2 +- src/IconCropPortraitOutlinedFilled.tsx | 2 +- src/IconCropPortraitRounded.tsx | 2 +- src/IconCropPortraitRoundedFilled.tsx | 2 +- src/IconCropPortraitSharp.tsx | 2 +- src/IconCropPortraitSharpFilled.tsx | 2 +- src/IconCropRotateOutlined.tsx | 2 +- src/IconCropRotateOutlinedFilled.tsx | 2 +- src/IconCropRotateRounded.tsx | 2 +- src/IconCropRotateRoundedFilled.tsx | 2 +- src/IconCropRotateSharp.tsx | 2 +- src/IconCropRotateSharpFilled.tsx | 2 +- src/IconCropRounded.tsx | 2 +- src/IconCropRoundedFilled.tsx | 2 +- src/IconCropSharp.tsx | 2 +- src/IconCropSharpFilled.tsx | 2 +- src/IconCropSquareOutlined.tsx | 2 +- src/IconCropSquareOutlinedFilled.tsx | 2 +- src/IconCropSquareRounded.tsx | 2 +- src/IconCropSquareRoundedFilled.tsx | 2 +- src/IconCropSquareSharp.tsx | 2 +- src/IconCropSquareSharpFilled.tsx | 2 +- src/IconCrosswordOutlined.tsx | 2 +- src/IconCrosswordOutlinedFilled.tsx | 2 +- src/IconCrosswordRounded.tsx | 2 +- src/IconCrosswordRoundedFilled.tsx | 2 +- src/IconCrosswordSharp.tsx | 2 +- src/IconCrosswordSharpFilled.tsx | 2 +- src/IconCrowdsourceOutlined.tsx | 2 +- src/IconCrowdsourceOutlinedFilled.tsx | 2 +- src/IconCrowdsourceRounded.tsx | 2 +- src/IconCrowdsourceRoundedFilled.tsx | 2 +- src/IconCrowdsourceSharp.tsx | 2 +- src/IconCrowdsourceSharpFilled.tsx | 2 +- src/IconCrueltyFreeOutlined.tsx | 2 +- src/IconCrueltyFreeOutlinedFilled.tsx | 2 +- src/IconCrueltyFreeRounded.tsx | 2 +- src/IconCrueltyFreeRoundedFilled.tsx | 2 +- src/IconCrueltyFreeSharp.tsx | 2 +- src/IconCrueltyFreeSharpFilled.tsx | 2 +- src/IconCssOutlined.tsx | 2 +- src/IconCssOutlinedFilled.tsx | 2 +- src/IconCssRounded.tsx | 2 +- src/IconCssRoundedFilled.tsx | 2 +- src/IconCssSharp.tsx | 2 +- src/IconCssSharpFilled.tsx | 2 +- src/IconCsvOutlined.tsx | 2 +- src/IconCsvOutlinedFilled.tsx | 2 +- src/IconCsvRounded.tsx | 2 +- src/IconCsvRoundedFilled.tsx | 2 +- src/IconCsvSharp.tsx | 2 +- src/IconCsvSharpFilled.tsx | 2 +- src/IconCurrencyBitcoinOutlined.tsx | 2 +- src/IconCurrencyBitcoinOutlinedFilled.tsx | 2 +- src/IconCurrencyBitcoinRounded.tsx | 2 +- src/IconCurrencyBitcoinRoundedFilled.tsx | 2 +- src/IconCurrencyBitcoinSharp.tsx | 2 +- src/IconCurrencyBitcoinSharpFilled.tsx | 2 +- src/IconCurrencyExchangeOutlined.tsx | 2 +- src/IconCurrencyExchangeOutlinedFilled.tsx | 2 +- src/IconCurrencyExchangeRounded.tsx | 2 +- src/IconCurrencyExchangeRoundedFilled.tsx | 2 +- src/IconCurrencyExchangeSharp.tsx | 2 +- src/IconCurrencyExchangeSharpFilled.tsx | 2 +- src/IconCurrencyFrancOutlined.tsx | 2 +- src/IconCurrencyFrancOutlinedFilled.tsx | 2 +- src/IconCurrencyFrancRounded.tsx | 2 +- src/IconCurrencyFrancRoundedFilled.tsx | 2 +- src/IconCurrencyFrancSharp.tsx | 2 +- src/IconCurrencyFrancSharpFilled.tsx | 2 +- src/IconCurrencyLiraOutlined.tsx | 2 +- src/IconCurrencyLiraOutlinedFilled.tsx | 2 +- src/IconCurrencyLiraRounded.tsx | 2 +- src/IconCurrencyLiraRoundedFilled.tsx | 2 +- src/IconCurrencyLiraSharp.tsx | 2 +- src/IconCurrencyLiraSharpFilled.tsx | 2 +- src/IconCurrencyPoundOutlined.tsx | 2 +- src/IconCurrencyPoundOutlinedFilled.tsx | 2 +- src/IconCurrencyPoundRounded.tsx | 2 +- src/IconCurrencyPoundRoundedFilled.tsx | 2 +- src/IconCurrencyPoundSharp.tsx | 2 +- src/IconCurrencyPoundSharpFilled.tsx | 2 +- src/IconCurrencyRubleOutlined.tsx | 2 +- src/IconCurrencyRubleOutlinedFilled.tsx | 2 +- src/IconCurrencyRubleRounded.tsx | 2 +- src/IconCurrencyRubleRoundedFilled.tsx | 2 +- src/IconCurrencyRubleSharp.tsx | 2 +- src/IconCurrencyRubleSharpFilled.tsx | 2 +- src/IconCurrencyRupeeCircleOutlined.tsx | 2 +- src/IconCurrencyRupeeCircleOutlinedFilled.tsx | 2 +- src/IconCurrencyRupeeCircleRounded.tsx | 2 +- src/IconCurrencyRupeeCircleRoundedFilled.tsx | 2 +- src/IconCurrencyRupeeCircleSharp.tsx | 2 +- src/IconCurrencyRupeeCircleSharpFilled.tsx | 2 +- src/IconCurrencyRupeeOutlined.tsx | 2 +- src/IconCurrencyRupeeOutlinedFilled.tsx | 2 +- src/IconCurrencyRupeeRounded.tsx | 2 +- src/IconCurrencyRupeeRoundedFilled.tsx | 2 +- src/IconCurrencyRupeeSharp.tsx | 2 +- src/IconCurrencyRupeeSharpFilled.tsx | 2 +- src/IconCurrencyYenOutlined.tsx | 2 +- src/IconCurrencyYenOutlinedFilled.tsx | 2 +- src/IconCurrencyYenRounded.tsx | 2 +- src/IconCurrencyYenRoundedFilled.tsx | 2 +- src/IconCurrencyYenSharp.tsx | 2 +- src/IconCurrencyYenSharpFilled.tsx | 2 +- src/IconCurrencyYuanOutlined.tsx | 2 +- src/IconCurrencyYuanOutlinedFilled.tsx | 2 +- src/IconCurrencyYuanRounded.tsx | 2 +- src/IconCurrencyYuanRoundedFilled.tsx | 2 +- src/IconCurrencyYuanSharp.tsx | 2 +- src/IconCurrencyYuanSharpFilled.tsx | 2 +- src/IconCurtainsClosedOutlined.tsx | 2 +- src/IconCurtainsClosedOutlinedFilled.tsx | 2 +- src/IconCurtainsClosedRounded.tsx | 2 +- src/IconCurtainsClosedRoundedFilled.tsx | 2 +- src/IconCurtainsClosedSharp.tsx | 2 +- src/IconCurtainsClosedSharpFilled.tsx | 2 +- src/IconCurtainsOutlined.tsx | 2 +- src/IconCurtainsOutlinedFilled.tsx | 2 +- src/IconCurtainsRounded.tsx | 2 +- src/IconCurtainsRoundedFilled.tsx | 2 +- src/IconCurtainsSharp.tsx | 2 +- src/IconCurtainsSharpFilled.tsx | 2 +- src/IconCustomTypographyOutlined.tsx | 2 +- src/IconCustomTypographyOutlinedFilled.tsx | 2 +- src/IconCustomTypographyRounded.tsx | 2 +- src/IconCustomTypographyRoundedFilled.tsx | 2 +- src/IconCustomTypographySharp.tsx | 2 +- src/IconCustomTypographySharpFilled.tsx | 2 +- src/IconCycleOutlined.tsx | 2 +- src/IconCycleOutlinedFilled.tsx | 2 +- src/IconCycleRounded.tsx | 2 +- src/IconCycleRoundedFilled.tsx | 2 +- src/IconCycleSharp.tsx | 2 +- src/IconCycleSharpFilled.tsx | 2 +- src/IconCycloneOutlined.tsx | 2 +- src/IconCycloneOutlinedFilled.tsx | 2 +- src/IconCycloneRounded.tsx | 2 +- src/IconCycloneRoundedFilled.tsx | 2 +- src/IconCycloneSharp.tsx | 2 +- src/IconCycloneSharpFilled.tsx | 2 +- src/IconDangerousOutlined.tsx | 2 +- src/IconDangerousOutlinedFilled.tsx | 2 +- src/IconDangerousRounded.tsx | 2 +- src/IconDangerousRoundedFilled.tsx | 2 +- src/IconDangerousSharp.tsx | 2 +- src/IconDangerousSharpFilled.tsx | 2 +- src/IconDarkModeOutlined.tsx | 2 +- src/IconDarkModeOutlinedFilled.tsx | 2 +- src/IconDarkModeRounded.tsx | 2 +- src/IconDarkModeRoundedFilled.tsx | 2 +- src/IconDarkModeSharp.tsx | 2 +- src/IconDarkModeSharpFilled.tsx | 2 +- src/IconDashboardCustomizeOutlined.tsx | 2 +- src/IconDashboardCustomizeOutlinedFilled.tsx | 2 +- src/IconDashboardCustomizeRounded.tsx | 2 +- src/IconDashboardCustomizeRoundedFilled.tsx | 2 +- src/IconDashboardCustomizeSharp.tsx | 2 +- src/IconDashboardCustomizeSharpFilled.tsx | 2 +- src/IconDashboardOutlined.tsx | 2 +- src/IconDashboardOutlinedFilled.tsx | 2 +- src/IconDashboardRounded.tsx | 2 +- src/IconDashboardRoundedFilled.tsx | 2 +- src/IconDashboardSharp.tsx | 2 +- src/IconDashboardSharpFilled.tsx | 2 +- src/IconDataAlertOutlined.tsx | 2 +- src/IconDataAlertOutlinedFilled.tsx | 2 +- src/IconDataAlertRounded.tsx | 2 +- src/IconDataAlertRoundedFilled.tsx | 2 +- src/IconDataAlertSharp.tsx | 2 +- src/IconDataAlertSharpFilled.tsx | 2 +- src/IconDataArrayOutlined.tsx | 2 +- src/IconDataArrayOutlinedFilled.tsx | 2 +- src/IconDataArrayRounded.tsx | 2 +- src/IconDataArrayRoundedFilled.tsx | 2 +- src/IconDataArraySharp.tsx | 2 +- src/IconDataArraySharpFilled.tsx | 2 +- src/IconDataCheckOutlined.tsx | 2 +- src/IconDataCheckOutlinedFilled.tsx | 2 +- src/IconDataCheckRounded.tsx | 2 +- src/IconDataCheckRoundedFilled.tsx | 2 +- src/IconDataCheckSharp.tsx | 2 +- src/IconDataCheckSharpFilled.tsx | 2 +- src/IconDataExplorationOutlined.tsx | 2 +- src/IconDataExplorationOutlinedFilled.tsx | 2 +- src/IconDataExplorationRounded.tsx | 2 +- src/IconDataExplorationRoundedFilled.tsx | 2 +- src/IconDataExplorationSharp.tsx | 2 +- src/IconDataExplorationSharpFilled.tsx | 2 +- src/IconDataInfoAlertOutlined.tsx | 2 +- src/IconDataInfoAlertOutlinedFilled.tsx | 2 +- src/IconDataInfoAlertRounded.tsx | 2 +- src/IconDataInfoAlertRoundedFilled.tsx | 2 +- src/IconDataInfoAlertSharp.tsx | 2 +- src/IconDataInfoAlertSharpFilled.tsx | 2 +- src/IconDataLossPreventionOutlined.tsx | 2 +- src/IconDataLossPreventionOutlinedFilled.tsx | 2 +- src/IconDataLossPreventionRounded.tsx | 2 +- src/IconDataLossPreventionRoundedFilled.tsx | 2 +- src/IconDataLossPreventionSharp.tsx | 2 +- src/IconDataLossPreventionSharpFilled.tsx | 2 +- src/IconDataObjectOutlined.tsx | 2 +- src/IconDataObjectOutlinedFilled.tsx | 2 +- src/IconDataObjectRounded.tsx | 2 +- src/IconDataObjectRoundedFilled.tsx | 2 +- src/IconDataObjectSharp.tsx | 2 +- src/IconDataObjectSharpFilled.tsx | 2 +- src/IconDataSaverOnOutlined.tsx | 2 +- src/IconDataSaverOnOutlinedFilled.tsx | 2 +- src/IconDataSaverOnRounded.tsx | 2 +- src/IconDataSaverOnRoundedFilled.tsx | 2 +- src/IconDataSaverOnSharp.tsx | 2 +- src/IconDataSaverOnSharpFilled.tsx | 2 +- src/IconDataTableOutlined.tsx | 2 +- src/IconDataTableOutlinedFilled.tsx | 2 +- src/IconDataTableRounded.tsx | 2 +- src/IconDataTableRoundedFilled.tsx | 2 +- src/IconDataTableSharp.tsx | 2 +- src/IconDataTableSharpFilled.tsx | 2 +- src/IconDataThresholdingOutlined.tsx | 2 +- src/IconDataThresholdingOutlinedFilled.tsx | 2 +- src/IconDataThresholdingRounded.tsx | 2 +- src/IconDataThresholdingRoundedFilled.tsx | 2 +- src/IconDataThresholdingSharp.tsx | 2 +- src/IconDataThresholdingSharpFilled.tsx | 2 +- src/IconDataUsageOutlined.tsx | 2 +- src/IconDataUsageOutlinedFilled.tsx | 2 +- src/IconDataUsageRounded.tsx | 2 +- src/IconDataUsageRoundedFilled.tsx | 2 +- src/IconDataUsageSharp.tsx | 2 +- src/IconDataUsageSharpFilled.tsx | 2 +- src/IconDatabaseOffOutlined.tsx | 2 +- src/IconDatabaseOffOutlinedFilled.tsx | 2 +- src/IconDatabaseOffRounded.tsx | 2 +- src/IconDatabaseOffRoundedFilled.tsx | 2 +- src/IconDatabaseOffSharp.tsx | 2 +- src/IconDatabaseOffSharpFilled.tsx | 2 +- src/IconDatabaseOutlined.tsx | 2 +- src/IconDatabaseOutlinedFilled.tsx | 2 +- src/IconDatabaseRounded.tsx | 2 +- src/IconDatabaseRoundedFilled.tsx | 2 +- src/IconDatabaseSharp.tsx | 2 +- src/IconDatabaseSharpFilled.tsx | 2 +- src/IconDatasetLinkedOutlined.tsx | 2 +- src/IconDatasetLinkedOutlinedFilled.tsx | 2 +- src/IconDatasetLinkedRounded.tsx | 2 +- src/IconDatasetLinkedRoundedFilled.tsx | 2 +- src/IconDatasetLinkedSharp.tsx | 2 +- src/IconDatasetLinkedSharpFilled.tsx | 2 +- src/IconDatasetOutlined.tsx | 2 +- src/IconDatasetOutlinedFilled.tsx | 2 +- src/IconDatasetRounded.tsx | 2 +- src/IconDatasetRoundedFilled.tsx | 2 +- src/IconDatasetSharp.tsx | 2 +- src/IconDatasetSharpFilled.tsx | 2 +- src/IconDateRangeOutlined.tsx | 2 +- src/IconDateRangeOutlinedFilled.tsx | 2 +- src/IconDateRangeRounded.tsx | 2 +- src/IconDateRangeRoundedFilled.tsx | 2 +- src/IconDateRangeSharp.tsx | 2 +- src/IconDateRangeSharpFilled.tsx | 2 +- src/IconDeblurOutlined.tsx | 2 +- src/IconDeblurOutlinedFilled.tsx | 2 +- src/IconDeblurRounded.tsx | 2 +- src/IconDeblurRoundedFilled.tsx | 2 +- src/IconDeblurSharp.tsx | 2 +- src/IconDeblurSharpFilled.tsx | 2 +- src/IconDeceasedOutlined.tsx | 2 +- src/IconDeceasedOutlinedFilled.tsx | 2 +- src/IconDeceasedRounded.tsx | 2 +- src/IconDeceasedRoundedFilled.tsx | 2 +- src/IconDeceasedSharp.tsx | 2 +- src/IconDeceasedSharpFilled.tsx | 2 +- src/IconDecimalDecreaseOutlined.tsx | 2 +- src/IconDecimalDecreaseOutlinedFilled.tsx | 2 +- src/IconDecimalDecreaseRounded.tsx | 2 +- src/IconDecimalDecreaseRoundedFilled.tsx | 2 +- src/IconDecimalDecreaseSharp.tsx | 2 +- src/IconDecimalDecreaseSharpFilled.tsx | 2 +- src/IconDecimalIncreaseOutlined.tsx | 2 +- src/IconDecimalIncreaseOutlinedFilled.tsx | 2 +- src/IconDecimalIncreaseRounded.tsx | 2 +- src/IconDecimalIncreaseRoundedFilled.tsx | 2 +- src/IconDecimalIncreaseSharp.tsx | 2 +- src/IconDecimalIncreaseSharpFilled.tsx | 2 +- src/IconDeckOutlined.tsx | 2 +- src/IconDeckOutlinedFilled.tsx | 2 +- src/IconDeckRounded.tsx | 2 +- src/IconDeckRoundedFilled.tsx | 2 +- src/IconDeckSharp.tsx | 2 +- src/IconDeckSharpFilled.tsx | 2 +- src/IconDehazeOutlined.tsx | 2 +- src/IconDehazeOutlinedFilled.tsx | 2 +- src/IconDehazeRounded.tsx | 2 +- src/IconDehazeRoundedFilled.tsx | 2 +- src/IconDehazeSharp.tsx | 2 +- src/IconDehazeSharpFilled.tsx | 2 +- src/IconDeleteForeverOutlined.tsx | 2 +- src/IconDeleteForeverOutlinedFilled.tsx | 2 +- src/IconDeleteForeverRounded.tsx | 2 +- src/IconDeleteForeverRoundedFilled.tsx | 2 +- src/IconDeleteForeverSharp.tsx | 2 +- src/IconDeleteForeverSharpFilled.tsx | 2 +- src/IconDeleteHistoryOutlined.tsx | 2 +- src/IconDeleteHistoryOutlinedFilled.tsx | 2 +- src/IconDeleteHistoryRounded.tsx | 2 +- src/IconDeleteHistoryRoundedFilled.tsx | 2 +- src/IconDeleteHistorySharp.tsx | 2 +- src/IconDeleteHistorySharpFilled.tsx | 2 +- src/IconDeleteOutlined.tsx | 2 +- src/IconDeleteOutlinedFilled.tsx | 2 +- src/IconDeleteRounded.tsx | 2 +- src/IconDeleteRoundedFilled.tsx | 2 +- src/IconDeleteSharp.tsx | 2 +- src/IconDeleteSharpFilled.tsx | 2 +- src/IconDeleteSweepOutlined.tsx | 2 +- src/IconDeleteSweepOutlinedFilled.tsx | 2 +- src/IconDeleteSweepRounded.tsx | 2 +- src/IconDeleteSweepRoundedFilled.tsx | 2 +- src/IconDeleteSweepSharp.tsx | 2 +- src/IconDeleteSweepSharpFilled.tsx | 2 +- src/IconDemographyOutlined.tsx | 2 +- src/IconDemographyOutlinedFilled.tsx | 2 +- src/IconDemographyRounded.tsx | 2 +- src/IconDemographyRoundedFilled.tsx | 2 +- src/IconDemographySharp.tsx | 2 +- src/IconDemographySharpFilled.tsx | 2 +- src/IconDensityLargeOutlined.tsx | 2 +- src/IconDensityLargeOutlinedFilled.tsx | 2 +- src/IconDensityLargeRounded.tsx | 2 +- src/IconDensityLargeRoundedFilled.tsx | 2 +- src/IconDensityLargeSharp.tsx | 2 +- src/IconDensityLargeSharpFilled.tsx | 2 +- src/IconDensityMediumOutlined.tsx | 2 +- src/IconDensityMediumOutlinedFilled.tsx | 2 +- src/IconDensityMediumRounded.tsx | 2 +- src/IconDensityMediumRoundedFilled.tsx | 2 +- src/IconDensityMediumSharp.tsx | 2 +- src/IconDensityMediumSharpFilled.tsx | 2 +- src/IconDensitySmallOutlined.tsx | 2 +- src/IconDensitySmallOutlinedFilled.tsx | 2 +- src/IconDensitySmallRounded.tsx | 2 +- src/IconDensitySmallRoundedFilled.tsx | 2 +- src/IconDensitySmallSharp.tsx | 2 +- src/IconDensitySmallSharpFilled.tsx | 2 +- src/IconDentistryOutlined.tsx | 2 +- src/IconDentistryOutlinedFilled.tsx | 2 +- src/IconDentistryRounded.tsx | 2 +- src/IconDentistryRoundedFilled.tsx | 2 +- src/IconDentistrySharp.tsx | 2 +- src/IconDentistrySharpFilled.tsx | 2 +- src/IconDepartureBoardOutlined.tsx | 2 +- src/IconDepartureBoardOutlinedFilled.tsx | 2 +- src/IconDepartureBoardRounded.tsx | 2 +- src/IconDepartureBoardRoundedFilled.tsx | 2 +- src/IconDepartureBoardSharp.tsx | 2 +- src/IconDepartureBoardSharpFilled.tsx | 2 +- src/IconDeployedCodeAccountOutlined.tsx | 2 +- src/IconDeployedCodeAccountOutlinedFilled.tsx | 2 +- src/IconDeployedCodeAccountRounded.tsx | 2 +- src/IconDeployedCodeAccountRoundedFilled.tsx | 2 +- src/IconDeployedCodeAccountSharp.tsx | 2 +- src/IconDeployedCodeAccountSharpFilled.tsx | 2 +- src/IconDeployedCodeAlertOutlined.tsx | 2 +- src/IconDeployedCodeAlertOutlinedFilled.tsx | 2 +- src/IconDeployedCodeAlertRounded.tsx | 2 +- src/IconDeployedCodeAlertRoundedFilled.tsx | 2 +- src/IconDeployedCodeAlertSharp.tsx | 2 +- src/IconDeployedCodeAlertSharpFilled.tsx | 2 +- src/IconDeployedCodeHistoryOutlined.tsx | 2 +- src/IconDeployedCodeHistoryOutlinedFilled.tsx | 2 +- src/IconDeployedCodeHistoryRounded.tsx | 2 +- src/IconDeployedCodeHistoryRoundedFilled.tsx | 2 +- src/IconDeployedCodeHistorySharp.tsx | 2 +- src/IconDeployedCodeHistorySharpFilled.tsx | 2 +- src/IconDeployedCodeOutlined.tsx | 2 +- src/IconDeployedCodeOutlinedFilled.tsx | 2 +- src/IconDeployedCodeRounded.tsx | 2 +- src/IconDeployedCodeRoundedFilled.tsx | 2 +- src/IconDeployedCodeSharp.tsx | 2 +- src/IconDeployedCodeSharpFilled.tsx | 2 +- src/IconDeployedCodeUpdateOutlined.tsx | 2 +- src/IconDeployedCodeUpdateOutlinedFilled.tsx | 2 +- src/IconDeployedCodeUpdateRounded.tsx | 2 +- src/IconDeployedCodeUpdateRoundedFilled.tsx | 2 +- src/IconDeployedCodeUpdateSharp.tsx | 2 +- src/IconDeployedCodeUpdateSharpFilled.tsx | 2 +- src/IconDermatologyOutlined.tsx | 2 +- src/IconDermatologyOutlinedFilled.tsx | 2 +- src/IconDermatologyRounded.tsx | 2 +- src/IconDermatologyRoundedFilled.tsx | 2 +- src/IconDermatologySharp.tsx | 2 +- src/IconDermatologySharpFilled.tsx | 2 +- src/IconDescriptionOutlined.tsx | 2 +- src/IconDescriptionOutlinedFilled.tsx | 2 +- src/IconDescriptionRounded.tsx | 2 +- src/IconDescriptionRoundedFilled.tsx | 2 +- src/IconDescriptionSharp.tsx | 2 +- src/IconDescriptionSharpFilled.tsx | 2 +- src/IconDeselectOutlined.tsx | 2 +- src/IconDeselectOutlinedFilled.tsx | 2 +- src/IconDeselectRounded.tsx | 2 +- src/IconDeselectRoundedFilled.tsx | 2 +- src/IconDeselectSharp.tsx | 2 +- src/IconDeselectSharpFilled.tsx | 2 +- src/IconDesignServicesOutlined.tsx | 2 +- src/IconDesignServicesOutlinedFilled.tsx | 2 +- src/IconDesignServicesRounded.tsx | 2 +- src/IconDesignServicesRoundedFilled.tsx | 2 +- src/IconDesignServicesSharp.tsx | 2 +- src/IconDesignServicesSharpFilled.tsx | 2 +- src/IconDeskOutlined.tsx | 2 +- src/IconDeskOutlinedFilled.tsx | 2 +- src/IconDeskRounded.tsx | 2 +- src/IconDeskRoundedFilled.tsx | 2 +- src/IconDeskSharp.tsx | 2 +- src/IconDeskSharpFilled.tsx | 2 +- src/IconDeskphoneOutlined.tsx | 2 +- src/IconDeskphoneOutlinedFilled.tsx | 2 +- src/IconDeskphoneRounded.tsx | 2 +- src/IconDeskphoneRoundedFilled.tsx | 2 +- src/IconDeskphoneSharp.tsx | 2 +- src/IconDeskphoneSharpFilled.tsx | 2 +- src/IconDesktopAccessDisabledOutlined.tsx | 2 +- src/IconDesktopAccessDisabledOutlinedFilled.tsx | 2 +- src/IconDesktopAccessDisabledRounded.tsx | 2 +- src/IconDesktopAccessDisabledRoundedFilled.tsx | 2 +- src/IconDesktopAccessDisabledSharp.tsx | 2 +- src/IconDesktopAccessDisabledSharpFilled.tsx | 2 +- src/IconDesktopLandscapeAddOutlined.tsx | 2 +- src/IconDesktopLandscapeAddOutlinedFilled.tsx | 2 +- src/IconDesktopLandscapeAddRounded.tsx | 2 +- src/IconDesktopLandscapeAddRoundedFilled.tsx | 2 +- src/IconDesktopLandscapeAddSharp.tsx | 2 +- src/IconDesktopLandscapeAddSharpFilled.tsx | 2 +- src/IconDesktopLandscapeOutlined.tsx | 2 +- src/IconDesktopLandscapeOutlinedFilled.tsx | 2 +- src/IconDesktopLandscapeRounded.tsx | 2 +- src/IconDesktopLandscapeRoundedFilled.tsx | 2 +- src/IconDesktopLandscapeSharp.tsx | 2 +- src/IconDesktopLandscapeSharpFilled.tsx | 2 +- src/IconDesktopMacOutlined.tsx | 2 +- src/IconDesktopMacOutlinedFilled.tsx | 2 +- src/IconDesktopMacRounded.tsx | 2 +- src/IconDesktopMacRoundedFilled.tsx | 2 +- src/IconDesktopMacSharp.tsx | 2 +- src/IconDesktopMacSharpFilled.tsx | 2 +- src/IconDesktopPortraitOutlined.tsx | 2 +- src/IconDesktopPortraitOutlinedFilled.tsx | 2 +- src/IconDesktopPortraitRounded.tsx | 2 +- src/IconDesktopPortraitRoundedFilled.tsx | 2 +- src/IconDesktopPortraitSharp.tsx | 2 +- src/IconDesktopPortraitSharpFilled.tsx | 2 +- src/IconDesktopWindowsOutlined.tsx | 2 +- src/IconDesktopWindowsOutlinedFilled.tsx | 2 +- src/IconDesktopWindowsRounded.tsx | 2 +- src/IconDesktopWindowsRoundedFilled.tsx | 2 +- src/IconDesktopWindowsSharp.tsx | 2 +- src/IconDesktopWindowsSharpFilled.tsx | 2 +- src/IconDestructionOutlined.tsx | 2 +- src/IconDestructionOutlinedFilled.tsx | 2 +- src/IconDestructionRounded.tsx | 2 +- src/IconDestructionRoundedFilled.tsx | 2 +- src/IconDestructionSharp.tsx | 2 +- src/IconDestructionSharpFilled.tsx | 2 +- src/IconDetailsOutlined.tsx | 2 +- src/IconDetailsOutlinedFilled.tsx | 2 +- src/IconDetailsRounded.tsx | 2 +- src/IconDetailsRoundedFilled.tsx | 2 +- src/IconDetailsSharp.tsx | 2 +- src/IconDetailsSharpFilled.tsx | 2 +- src/IconDetectionAndZoneOutlined.tsx | 2 +- src/IconDetectionAndZoneOutlinedFilled.tsx | 2 +- src/IconDetectionAndZoneRounded.tsx | 2 +- src/IconDetectionAndZoneRoundedFilled.tsx | 2 +- src/IconDetectionAndZoneSharp.tsx | 2 +- src/IconDetectionAndZoneSharpFilled.tsx | 2 +- src/IconDetectorAlarmOutlined.tsx | 2 +- src/IconDetectorAlarmOutlinedFilled.tsx | 2 +- src/IconDetectorAlarmRounded.tsx | 2 +- src/IconDetectorAlarmRoundedFilled.tsx | 2 +- src/IconDetectorAlarmSharp.tsx | 2 +- src/IconDetectorAlarmSharpFilled.tsx | 2 +- src/IconDetectorBatteryOutlined.tsx | 2 +- src/IconDetectorBatteryOutlinedFilled.tsx | 2 +- src/IconDetectorBatteryRounded.tsx | 2 +- src/IconDetectorBatteryRoundedFilled.tsx | 2 +- src/IconDetectorBatterySharp.tsx | 2 +- src/IconDetectorBatterySharpFilled.tsx | 2 +- src/IconDetectorCoOutlined.tsx | 2 +- src/IconDetectorCoOutlinedFilled.tsx | 2 +- src/IconDetectorCoRounded.tsx | 2 +- src/IconDetectorCoRoundedFilled.tsx | 2 +- src/IconDetectorCoSharp.tsx | 2 +- src/IconDetectorCoSharpFilled.tsx | 2 +- src/IconDetectorOfflineOutlined.tsx | 2 +- src/IconDetectorOfflineOutlinedFilled.tsx | 2 +- src/IconDetectorOfflineRounded.tsx | 2 +- src/IconDetectorOfflineRoundedFilled.tsx | 2 +- src/IconDetectorOfflineSharp.tsx | 2 +- src/IconDetectorOfflineSharpFilled.tsx | 2 +- src/IconDetectorOutlined.tsx | 2 +- src/IconDetectorOutlinedFilled.tsx | 2 +- src/IconDetectorRounded.tsx | 2 +- src/IconDetectorRoundedFilled.tsx | 2 +- src/IconDetectorSharp.tsx | 2 +- src/IconDetectorSharpFilled.tsx | 2 +- src/IconDetectorSmokeOutlined.tsx | 2 +- src/IconDetectorSmokeOutlinedFilled.tsx | 2 +- src/IconDetectorSmokeRounded.tsx | 2 +- src/IconDetectorSmokeRoundedFilled.tsx | 2 +- src/IconDetectorSmokeSharp.tsx | 2 +- src/IconDetectorSmokeSharpFilled.tsx | 2 +- src/IconDetectorStatusOutlined.tsx | 2 +- src/IconDetectorStatusOutlinedFilled.tsx | 2 +- src/IconDetectorStatusRounded.tsx | 2 +- src/IconDetectorStatusRoundedFilled.tsx | 2 +- src/IconDetectorStatusSharp.tsx | 2 +- src/IconDetectorStatusSharpFilled.tsx | 2 +- src/IconDeveloperBoardOffOutlined.tsx | 2 +- src/IconDeveloperBoardOffOutlinedFilled.tsx | 2 +- src/IconDeveloperBoardOffRounded.tsx | 2 +- src/IconDeveloperBoardOffRoundedFilled.tsx | 2 +- src/IconDeveloperBoardOffSharp.tsx | 2 +- src/IconDeveloperBoardOffSharpFilled.tsx | 2 +- src/IconDeveloperBoardOutlined.tsx | 2 +- src/IconDeveloperBoardOutlinedFilled.tsx | 2 +- src/IconDeveloperBoardRounded.tsx | 2 +- src/IconDeveloperBoardRoundedFilled.tsx | 2 +- src/IconDeveloperBoardSharp.tsx | 2 +- src/IconDeveloperBoardSharpFilled.tsx | 2 +- src/IconDeveloperGuideOutlined.tsx | 2 +- src/IconDeveloperGuideOutlinedFilled.tsx | 2 +- src/IconDeveloperGuideRounded.tsx | 2 +- src/IconDeveloperGuideRoundedFilled.tsx | 2 +- src/IconDeveloperGuideSharp.tsx | 2 +- src/IconDeveloperGuideSharpFilled.tsx | 2 +- src/IconDeveloperModeOutlined.tsx | 2 +- src/IconDeveloperModeOutlinedFilled.tsx | 2 +- src/IconDeveloperModeRounded.tsx | 2 +- src/IconDeveloperModeRoundedFilled.tsx | 2 +- src/IconDeveloperModeSharp.tsx | 2 +- src/IconDeveloperModeSharpFilled.tsx | 2 +- src/IconDeveloperModeTvOutlined.tsx | 2 +- src/IconDeveloperModeTvOutlinedFilled.tsx | 2 +- src/IconDeveloperModeTvRounded.tsx | 2 +- src/IconDeveloperModeTvRoundedFilled.tsx | 2 +- src/IconDeveloperModeTvSharp.tsx | 2 +- src/IconDeveloperModeTvSharpFilled.tsx | 2 +- src/IconDeviceHubOutlined.tsx | 2 +- src/IconDeviceHubOutlinedFilled.tsx | 2 +- src/IconDeviceHubRounded.tsx | 2 +- src/IconDeviceHubRoundedFilled.tsx | 2 +- src/IconDeviceHubSharp.tsx | 2 +- src/IconDeviceHubSharpFilled.tsx | 2 +- src/IconDeviceThermostatOutlined.tsx | 2 +- src/IconDeviceThermostatOutlinedFilled.tsx | 2 +- src/IconDeviceThermostatRounded.tsx | 2 +- src/IconDeviceThermostatRoundedFilled.tsx | 2 +- src/IconDeviceThermostatSharp.tsx | 2 +- src/IconDeviceThermostatSharpFilled.tsx | 2 +- src/IconDeviceUnknownOutlined.tsx | 2 +- src/IconDeviceUnknownOutlinedFilled.tsx | 2 +- src/IconDeviceUnknownRounded.tsx | 2 +- src/IconDeviceUnknownRoundedFilled.tsx | 2 +- src/IconDeviceUnknownSharp.tsx | 2 +- src/IconDeviceUnknownSharpFilled.tsx | 2 +- src/IconDevicesFold2Outlined.tsx | 2 +- src/IconDevicesFold2OutlinedFilled.tsx | 2 +- src/IconDevicesFold2Rounded.tsx | 2 +- src/IconDevicesFold2RoundedFilled.tsx | 2 +- src/IconDevicesFold2Sharp.tsx | 2 +- src/IconDevicesFold2SharpFilled.tsx | 2 +- src/IconDevicesFoldOutlined.tsx | 2 +- src/IconDevicesFoldOutlinedFilled.tsx | 2 +- src/IconDevicesFoldRounded.tsx | 2 +- src/IconDevicesFoldRoundedFilled.tsx | 2 +- src/IconDevicesFoldSharp.tsx | 2 +- src/IconDevicesFoldSharpFilled.tsx | 2 +- src/IconDevicesOffOutlined.tsx | 2 +- src/IconDevicesOffOutlinedFilled.tsx | 2 +- src/IconDevicesOffRounded.tsx | 2 +- src/IconDevicesOffRoundedFilled.tsx | 2 +- src/IconDevicesOffSharp.tsx | 2 +- src/IconDevicesOffSharpFilled.tsx | 2 +- src/IconDevicesOtherOutlined.tsx | 2 +- src/IconDevicesOtherOutlinedFilled.tsx | 2 +- src/IconDevicesOtherRounded.tsx | 2 +- src/IconDevicesOtherRoundedFilled.tsx | 2 +- src/IconDevicesOtherSharp.tsx | 2 +- src/IconDevicesOtherSharpFilled.tsx | 2 +- src/IconDevicesOutlined.tsx | 2 +- src/IconDevicesOutlinedFilled.tsx | 2 +- src/IconDevicesRounded.tsx | 2 +- src/IconDevicesRoundedFilled.tsx | 2 +- src/IconDevicesSharp.tsx | 2 +- src/IconDevicesSharpFilled.tsx | 2 +- src/IconDevicesWearablesOutlined.tsx | 2 +- src/IconDevicesWearablesOutlinedFilled.tsx | 2 +- src/IconDevicesWearablesRounded.tsx | 2 +- src/IconDevicesWearablesRoundedFilled.tsx | 2 +- src/IconDevicesWearablesSharp.tsx | 2 +- src/IconDevicesWearablesSharpFilled.tsx | 2 +- src/IconDewPointOutlined.tsx | 2 +- src/IconDewPointOutlinedFilled.tsx | 2 +- src/IconDewPointRounded.tsx | 2 +- src/IconDewPointRoundedFilled.tsx | 2 +- src/IconDewPointSharp.tsx | 2 +- src/IconDewPointSharpFilled.tsx | 2 +- src/IconDiagnosisOutlined.tsx | 2 +- src/IconDiagnosisOutlinedFilled.tsx | 2 +- src/IconDiagnosisRounded.tsx | 2 +- src/IconDiagnosisRoundedFilled.tsx | 2 +- src/IconDiagnosisSharp.tsx | 2 +- src/IconDiagnosisSharpFilled.tsx | 2 +- src/IconDiagonalLineOutlined.tsx | 2 +- src/IconDiagonalLineOutlinedFilled.tsx | 2 +- src/IconDiagonalLineRounded.tsx | 2 +- src/IconDiagonalLineRoundedFilled.tsx | 2 +- src/IconDiagonalLineSharp.tsx | 2 +- src/IconDiagonalLineSharpFilled.tsx | 2 +- src/IconDialerSipOutlined.tsx | 2 +- src/IconDialerSipOutlinedFilled.tsx | 2 +- src/IconDialerSipRounded.tsx | 2 +- src/IconDialerSipRoundedFilled.tsx | 2 +- src/IconDialerSipSharp.tsx | 2 +- src/IconDialerSipSharpFilled.tsx | 2 +- src/IconDialogsOutlined.tsx | 2 +- src/IconDialogsOutlinedFilled.tsx | 2 +- src/IconDialogsRounded.tsx | 2 +- src/IconDialogsRoundedFilled.tsx | 2 +- src/IconDialogsSharp.tsx | 2 +- src/IconDialogsSharpFilled.tsx | 2 +- src/IconDialpadOutlined.tsx | 2 +- src/IconDialpadOutlinedFilled.tsx | 2 +- src/IconDialpadRounded.tsx | 2 +- src/IconDialpadRoundedFilled.tsx | 2 +- src/IconDialpadSharp.tsx | 2 +- src/IconDialpadSharpFilled.tsx | 2 +- src/IconDiamondOutlined.tsx | 2 +- src/IconDiamondOutlinedFilled.tsx | 2 +- src/IconDiamondRounded.tsx | 2 +- src/IconDiamondRoundedFilled.tsx | 2 +- src/IconDiamondSharp.tsx | 2 +- src/IconDiamondSharpFilled.tsx | 2 +- src/IconDictionaryOutlined.tsx | 2 +- src/IconDictionaryOutlinedFilled.tsx | 2 +- src/IconDictionaryRounded.tsx | 2 +- src/IconDictionaryRoundedFilled.tsx | 2 +- src/IconDictionarySharp.tsx | 2 +- src/IconDictionarySharpFilled.tsx | 2 +- src/IconDifferenceOutlined.tsx | 2 +- src/IconDifferenceOutlinedFilled.tsx | 2 +- src/IconDifferenceRounded.tsx | 2 +- src/IconDifferenceRoundedFilled.tsx | 2 +- src/IconDifferenceSharp.tsx | 2 +- src/IconDifferenceSharpFilled.tsx | 2 +- src/IconDigitalOutOfHomeOutlined.tsx | 2 +- src/IconDigitalOutOfHomeOutlinedFilled.tsx | 2 +- src/IconDigitalOutOfHomeRounded.tsx | 2 +- src/IconDigitalOutOfHomeRoundedFilled.tsx | 2 +- src/IconDigitalOutOfHomeSharp.tsx | 2 +- src/IconDigitalOutOfHomeSharpFilled.tsx | 2 +- src/IconDigitalWellbeingOutlined.tsx | 2 +- src/IconDigitalWellbeingOutlinedFilled.tsx | 2 +- src/IconDigitalWellbeingRounded.tsx | 2 +- src/IconDigitalWellbeingRoundedFilled.tsx | 2 +- src/IconDigitalWellbeingSharp.tsx | 2 +- src/IconDigitalWellbeingSharpFilled.tsx | 2 +- src/IconDiningOutlined.tsx | 2 +- src/IconDiningOutlinedFilled.tsx | 2 +- src/IconDiningRounded.tsx | 2 +- src/IconDiningRoundedFilled.tsx | 2 +- src/IconDiningSharp.tsx | 2 +- src/IconDiningSharpFilled.tsx | 2 +- src/IconDinnerDiningOutlined.tsx | 2 +- src/IconDinnerDiningOutlinedFilled.tsx | 2 +- src/IconDinnerDiningRounded.tsx | 2 +- src/IconDinnerDiningRoundedFilled.tsx | 2 +- src/IconDinnerDiningSharp.tsx | 2 +- src/IconDinnerDiningSharpFilled.tsx | 2 +- src/IconDirectionsAltOffOutlined.tsx | 2 +- src/IconDirectionsAltOffOutlinedFilled.tsx | 2 +- src/IconDirectionsAltOffRounded.tsx | 2 +- src/IconDirectionsAltOffRoundedFilled.tsx | 2 +- src/IconDirectionsAltOffSharp.tsx | 2 +- src/IconDirectionsAltOffSharpFilled.tsx | 2 +- src/IconDirectionsAltOutlined.tsx | 2 +- src/IconDirectionsAltOutlinedFilled.tsx | 2 +- src/IconDirectionsAltRounded.tsx | 2 +- src/IconDirectionsAltRoundedFilled.tsx | 2 +- src/IconDirectionsAltSharp.tsx | 2 +- src/IconDirectionsAltSharpFilled.tsx | 2 +- src/IconDirectionsBikeOutlined.tsx | 2 +- src/IconDirectionsBikeOutlinedFilled.tsx | 2 +- src/IconDirectionsBikeRounded.tsx | 2 +- src/IconDirectionsBikeRoundedFilled.tsx | 2 +- src/IconDirectionsBikeSharp.tsx | 2 +- src/IconDirectionsBikeSharpFilled.tsx | 2 +- src/IconDirectionsBoatOutlined.tsx | 2 +- src/IconDirectionsBoatOutlinedFilled.tsx | 2 +- src/IconDirectionsBoatRounded.tsx | 2 +- src/IconDirectionsBoatRoundedFilled.tsx | 2 +- src/IconDirectionsBoatSharp.tsx | 2 +- src/IconDirectionsBoatSharpFilled.tsx | 2 +- src/IconDirectionsBusOutlined.tsx | 2 +- src/IconDirectionsBusOutlinedFilled.tsx | 2 +- src/IconDirectionsBusRounded.tsx | 2 +- src/IconDirectionsBusRoundedFilled.tsx | 2 +- src/IconDirectionsBusSharp.tsx | 2 +- src/IconDirectionsBusSharpFilled.tsx | 2 +- src/IconDirectionsCarOutlined.tsx | 2 +- src/IconDirectionsCarOutlinedFilled.tsx | 2 +- src/IconDirectionsCarRounded.tsx | 2 +- src/IconDirectionsCarRoundedFilled.tsx | 2 +- src/IconDirectionsCarSharp.tsx | 2 +- src/IconDirectionsCarSharpFilled.tsx | 2 +- src/IconDirectionsOffOutlined.tsx | 2 +- src/IconDirectionsOffOutlinedFilled.tsx | 2 +- src/IconDirectionsOffRounded.tsx | 2 +- src/IconDirectionsOffRoundedFilled.tsx | 2 +- src/IconDirectionsOffSharp.tsx | 2 +- src/IconDirectionsOffSharpFilled.tsx | 2 +- src/IconDirectionsOutlined.tsx | 2 +- src/IconDirectionsOutlinedFilled.tsx | 2 +- src/IconDirectionsRailway2Outlined.tsx | 2 +- src/IconDirectionsRailway2OutlinedFilled.tsx | 2 +- src/IconDirectionsRailway2Rounded.tsx | 2 +- src/IconDirectionsRailway2RoundedFilled.tsx | 2 +- src/IconDirectionsRailway2Sharp.tsx | 2 +- src/IconDirectionsRailway2SharpFilled.tsx | 2 +- src/IconDirectionsRailwayOutlined.tsx | 2 +- src/IconDirectionsRailwayOutlinedFilled.tsx | 2 +- src/IconDirectionsRailwayRounded.tsx | 2 +- src/IconDirectionsRailwayRoundedFilled.tsx | 2 +- src/IconDirectionsRailwaySharp.tsx | 2 +- src/IconDirectionsRailwaySharpFilled.tsx | 2 +- src/IconDirectionsRounded.tsx | 2 +- src/IconDirectionsRoundedFilled.tsx | 2 +- src/IconDirectionsRunOutlined.tsx | 2 +- src/IconDirectionsRunOutlinedFilled.tsx | 2 +- src/IconDirectionsRunRounded.tsx | 2 +- src/IconDirectionsRunRoundedFilled.tsx | 2 +- src/IconDirectionsRunSharp.tsx | 2 +- src/IconDirectionsRunSharpFilled.tsx | 2 +- src/IconDirectionsSharp.tsx | 2 +- src/IconDirectionsSharpFilled.tsx | 2 +- src/IconDirectionsSubwayOutlined.tsx | 2 +- src/IconDirectionsSubwayOutlinedFilled.tsx | 2 +- src/IconDirectionsSubwayRounded.tsx | 2 +- src/IconDirectionsSubwayRoundedFilled.tsx | 2 +- src/IconDirectionsSubwaySharp.tsx | 2 +- src/IconDirectionsSubwaySharpFilled.tsx | 2 +- src/IconDirectionsWalkOutlined.tsx | 2 +- src/IconDirectionsWalkOutlinedFilled.tsx | 2 +- src/IconDirectionsWalkRounded.tsx | 2 +- src/IconDirectionsWalkRoundedFilled.tsx | 2 +- src/IconDirectionsWalkSharp.tsx | 2 +- src/IconDirectionsWalkSharpFilled.tsx | 2 +- src/IconDirectorySyncOutlined.tsx | 2 +- src/IconDirectorySyncOutlinedFilled.tsx | 2 +- src/IconDirectorySyncRounded.tsx | 2 +- src/IconDirectorySyncRoundedFilled.tsx | 2 +- src/IconDirectorySyncSharp.tsx | 2 +- src/IconDirectorySyncSharpFilled.tsx | 2 +- src/IconDirtyLensOutlined.tsx | 2 +- src/IconDirtyLensOutlinedFilled.tsx | 2 +- src/IconDirtyLensRounded.tsx | 2 +- src/IconDirtyLensRoundedFilled.tsx | 2 +- src/IconDirtyLensSharp.tsx | 2 +- src/IconDirtyLensSharpFilled.tsx | 2 +- src/IconDisabledByDefaultOutlined.tsx | 2 +- src/IconDisabledByDefaultOutlinedFilled.tsx | 2 +- src/IconDisabledByDefaultRounded.tsx | 2 +- src/IconDisabledByDefaultRoundedFilled.tsx | 2 +- src/IconDisabledByDefaultSharp.tsx | 2 +- src/IconDisabledByDefaultSharpFilled.tsx | 2 +- src/IconDisabledVisibleOutlined.tsx | 2 +- src/IconDisabledVisibleOutlinedFilled.tsx | 2 +- src/IconDisabledVisibleRounded.tsx | 2 +- src/IconDisabledVisibleRoundedFilled.tsx | 2 +- src/IconDisabledVisibleSharp.tsx | 2 +- src/IconDisabledVisibleSharpFilled.tsx | 2 +- src/IconDiscFullOutlined.tsx | 2 +- src/IconDiscFullOutlinedFilled.tsx | 2 +- src/IconDiscFullRounded.tsx | 2 +- src/IconDiscFullRoundedFilled.tsx | 2 +- src/IconDiscFullSharp.tsx | 2 +- src/IconDiscFullSharpFilled.tsx | 2 +- src/IconDiscoverTuneOutlined.tsx | 2 +- src/IconDiscoverTuneOutlinedFilled.tsx | 2 +- src/IconDiscoverTuneRounded.tsx | 2 +- src/IconDiscoverTuneRoundedFilled.tsx | 2 +- src/IconDiscoverTuneSharp.tsx | 2 +- src/IconDiscoverTuneSharpFilled.tsx | 2 +- src/IconDishwasherGenOutlined.tsx | 2 +- src/IconDishwasherGenOutlinedFilled.tsx | 2 +- src/IconDishwasherGenRounded.tsx | 2 +- src/IconDishwasherGenRoundedFilled.tsx | 2 +- src/IconDishwasherGenSharp.tsx | 2 +- src/IconDishwasherGenSharpFilled.tsx | 2 +- src/IconDishwasherOutlined.tsx | 2 +- src/IconDishwasherOutlinedFilled.tsx | 2 +- src/IconDishwasherRounded.tsx | 2 +- src/IconDishwasherRoundedFilled.tsx | 2 +- src/IconDishwasherSharp.tsx | 2 +- src/IconDishwasherSharpFilled.tsx | 2 +- src/IconDisplayExternalInputOutlined.tsx | 2 +- src/IconDisplayExternalInputOutlinedFilled.tsx | 2 +- src/IconDisplayExternalInputRounded.tsx | 2 +- src/IconDisplayExternalInputRoundedFilled.tsx | 2 +- src/IconDisplayExternalInputSharp.tsx | 2 +- src/IconDisplayExternalInputSharpFilled.tsx | 2 +- src/IconDisplaySettingsOutlined.tsx | 2 +- src/IconDisplaySettingsOutlinedFilled.tsx | 2 +- src/IconDisplaySettingsRounded.tsx | 2 +- src/IconDisplaySettingsRoundedFilled.tsx | 2 +- src/IconDisplaySettingsSharp.tsx | 2 +- src/IconDisplaySettingsSharpFilled.tsx | 2 +- src/IconDistanceOutlined.tsx | 2 +- src/IconDistanceOutlinedFilled.tsx | 2 +- src/IconDistanceRounded.tsx | 2 +- src/IconDistanceRoundedFilled.tsx | 2 +- src/IconDistanceSharp.tsx | 2 +- src/IconDistanceSharpFilled.tsx | 2 +- src/IconDiversity1Outlined.tsx | 2 +- src/IconDiversity1OutlinedFilled.tsx | 2 +- src/IconDiversity1Rounded.tsx | 2 +- src/IconDiversity1RoundedFilled.tsx | 2 +- src/IconDiversity1Sharp.tsx | 2 +- src/IconDiversity1SharpFilled.tsx | 2 +- src/IconDiversity2Outlined.tsx | 2 +- src/IconDiversity2OutlinedFilled.tsx | 2 +- src/IconDiversity2Rounded.tsx | 2 +- src/IconDiversity2RoundedFilled.tsx | 2 +- src/IconDiversity2Sharp.tsx | 2 +- src/IconDiversity2SharpFilled.tsx | 2 +- src/IconDiversity3Outlined.tsx | 2 +- src/IconDiversity3OutlinedFilled.tsx | 2 +- src/IconDiversity3Rounded.tsx | 2 +- src/IconDiversity3RoundedFilled.tsx | 2 +- src/IconDiversity3Sharp.tsx | 2 +- src/IconDiversity3SharpFilled.tsx | 2 +- src/IconDiversity4Outlined.tsx | 2 +- src/IconDiversity4OutlinedFilled.tsx | 2 +- src/IconDiversity4Rounded.tsx | 2 +- src/IconDiversity4RoundedFilled.tsx | 2 +- src/IconDiversity4Sharp.tsx | 2 +- src/IconDiversity4SharpFilled.tsx | 2 +- src/IconDnsOutlined.tsx | 2 +- src/IconDnsOutlinedFilled.tsx | 2 +- src/IconDnsRounded.tsx | 2 +- src/IconDnsRoundedFilled.tsx | 2 +- src/IconDnsSharp.tsx | 2 +- src/IconDnsSharpFilled.tsx | 2 +- src/IconDoNotDisturbOffOutlined.tsx | 2 +- src/IconDoNotDisturbOffOutlinedFilled.tsx | 2 +- src/IconDoNotDisturbOffRounded.tsx | 2 +- src/IconDoNotDisturbOffRoundedFilled.tsx | 2 +- src/IconDoNotDisturbOffSharp.tsx | 2 +- src/IconDoNotDisturbOffSharpFilled.tsx | 2 +- src/IconDoNotDisturbOnOutlined.tsx | 2 +- src/IconDoNotDisturbOnOutlinedFilled.tsx | 2 +- src/IconDoNotDisturbOnRounded.tsx | 2 +- src/IconDoNotDisturbOnRoundedFilled.tsx | 2 +- src/IconDoNotDisturbOnSharp.tsx | 2 +- src/IconDoNotDisturbOnSharpFilled.tsx | 2 +- src/IconDoNotDisturbOnTotalSilenceOutlined.tsx | 2 +- src/IconDoNotDisturbOnTotalSilenceOutlinedFilled.tsx | 2 +- src/IconDoNotDisturbOnTotalSilenceRounded.tsx | 2 +- src/IconDoNotDisturbOnTotalSilenceRoundedFilled.tsx | 2 +- src/IconDoNotDisturbOnTotalSilenceSharp.tsx | 2 +- src/IconDoNotDisturbOnTotalSilenceSharpFilled.tsx | 2 +- src/IconDoNotStepOutlined.tsx | 2 +- src/IconDoNotStepOutlinedFilled.tsx | 2 +- src/IconDoNotStepRounded.tsx | 2 +- src/IconDoNotStepRoundedFilled.tsx | 2 +- src/IconDoNotStepSharp.tsx | 2 +- src/IconDoNotStepSharpFilled.tsx | 2 +- src/IconDoNotTouchOutlined.tsx | 2 +- src/IconDoNotTouchOutlinedFilled.tsx | 2 +- src/IconDoNotTouchRounded.tsx | 2 +- src/IconDoNotTouchRoundedFilled.tsx | 2 +- src/IconDoNotTouchSharp.tsx | 2 +- src/IconDoNotTouchSharpFilled.tsx | 2 +- src/IconDockOutlined.tsx | 2 +- src/IconDockOutlinedFilled.tsx | 2 +- src/IconDockRounded.tsx | 2 +- src/IconDockRoundedFilled.tsx | 2 +- src/IconDockSharp.tsx | 2 +- src/IconDockSharpFilled.tsx | 2 +- src/IconDockToBottomOutlined.tsx | 2 +- src/IconDockToBottomOutlinedFilled.tsx | 2 +- src/IconDockToBottomRounded.tsx | 2 +- src/IconDockToBottomRoundedFilled.tsx | 2 +- src/IconDockToBottomSharp.tsx | 2 +- src/IconDockToBottomSharpFilled.tsx | 2 +- src/IconDockToLeftOutlined.tsx | 2 +- src/IconDockToLeftOutlinedFilled.tsx | 2 +- src/IconDockToLeftRounded.tsx | 2 +- src/IconDockToLeftRoundedFilled.tsx | 2 +- src/IconDockToLeftSharp.tsx | 2 +- src/IconDockToLeftSharpFilled.tsx | 2 +- src/IconDockToRightOutlined.tsx | 2 +- src/IconDockToRightOutlinedFilled.tsx | 2 +- src/IconDockToRightRounded.tsx | 2 +- src/IconDockToRightRoundedFilled.tsx | 2 +- src/IconDockToRightSharp.tsx | 2 +- src/IconDockToRightSharpFilled.tsx | 2 +- src/IconDocsAddOnOutlined.tsx | 2 +- src/IconDocsAddOnOutlinedFilled.tsx | 2 +- src/IconDocsAddOnRounded.tsx | 2 +- src/IconDocsAddOnRoundedFilled.tsx | 2 +- src/IconDocsAddOnSharp.tsx | 2 +- src/IconDocsAddOnSharpFilled.tsx | 2 +- src/IconDocsAppsScriptOutlined.tsx | 2 +- src/IconDocsAppsScriptOutlinedFilled.tsx | 2 +- src/IconDocsAppsScriptRounded.tsx | 2 +- src/IconDocsAppsScriptRoundedFilled.tsx | 2 +- src/IconDocsAppsScriptSharp.tsx | 2 +- src/IconDocsAppsScriptSharpFilled.tsx | 2 +- src/IconDocumentScannerOutlined.tsx | 2 +- src/IconDocumentScannerOutlinedFilled.tsx | 2 +- src/IconDocumentScannerRounded.tsx | 2 +- src/IconDocumentScannerRoundedFilled.tsx | 2 +- src/IconDocumentScannerSharp.tsx | 2 +- src/IconDocumentScannerSharpFilled.tsx | 2 +- src/IconDomainAddOutlined.tsx | 2 +- src/IconDomainAddOutlinedFilled.tsx | 2 +- src/IconDomainAddRounded.tsx | 2 +- src/IconDomainAddRoundedFilled.tsx | 2 +- src/IconDomainAddSharp.tsx | 2 +- src/IconDomainAddSharpFilled.tsx | 2 +- src/IconDomainDisabledOutlined.tsx | 2 +- src/IconDomainDisabledOutlinedFilled.tsx | 2 +- src/IconDomainDisabledRounded.tsx | 2 +- src/IconDomainDisabledRoundedFilled.tsx | 2 +- src/IconDomainDisabledSharp.tsx | 2 +- src/IconDomainDisabledSharpFilled.tsx | 2 +- src/IconDomainOutlined.tsx | 2 +- src/IconDomainOutlinedFilled.tsx | 2 +- src/IconDomainRounded.tsx | 2 +- src/IconDomainRoundedFilled.tsx | 2 +- src/IconDomainSharp.tsx | 2 +- src/IconDomainSharpFilled.tsx | 2 +- src/IconDomainVerificationOffOutlined.tsx | 2 +- src/IconDomainVerificationOffOutlinedFilled.tsx | 2 +- src/IconDomainVerificationOffRounded.tsx | 2 +- src/IconDomainVerificationOffRoundedFilled.tsx | 2 +- src/IconDomainVerificationOffSharp.tsx | 2 +- src/IconDomainVerificationOffSharpFilled.tsx | 2 +- src/IconDomainVerificationOutlined.tsx | 2 +- src/IconDomainVerificationOutlinedFilled.tsx | 2 +- src/IconDomainVerificationRounded.tsx | 2 +- src/IconDomainVerificationRoundedFilled.tsx | 2 +- src/IconDomainVerificationSharp.tsx | 2 +- src/IconDomainVerificationSharpFilled.tsx | 2 +- src/IconDominoMaskOutlined.tsx | 2 +- src/IconDominoMaskOutlinedFilled.tsx | 2 +- src/IconDominoMaskRounded.tsx | 2 +- src/IconDominoMaskRoundedFilled.tsx | 2 +- src/IconDominoMaskSharp.tsx | 2 +- src/IconDominoMaskSharpFilled.tsx | 2 +- src/IconDoneAllOutlined.tsx | 2 +- src/IconDoneAllOutlinedFilled.tsx | 2 +- src/IconDoneAllRounded.tsx | 2 +- src/IconDoneAllRoundedFilled.tsx | 2 +- src/IconDoneAllSharp.tsx | 2 +- src/IconDoneAllSharpFilled.tsx | 2 +- src/IconDoneOutlineOutlined.tsx | 2 +- src/IconDoneOutlineOutlinedFilled.tsx | 2 +- src/IconDoneOutlineRounded.tsx | 2 +- src/IconDoneOutlineRoundedFilled.tsx | 2 +- src/IconDoneOutlineSharp.tsx | 2 +- src/IconDoneOutlineSharpFilled.tsx | 2 +- src/IconDonutLargeOutlined.tsx | 2 +- src/IconDonutLargeOutlinedFilled.tsx | 2 +- src/IconDonutLargeRounded.tsx | 2 +- src/IconDonutLargeRoundedFilled.tsx | 2 +- src/IconDonutLargeSharp.tsx | 2 +- src/IconDonutLargeSharpFilled.tsx | 2 +- src/IconDonutSmallOutlined.tsx | 2 +- src/IconDonutSmallOutlinedFilled.tsx | 2 +- src/IconDonutSmallRounded.tsx | 2 +- src/IconDonutSmallRoundedFilled.tsx | 2 +- src/IconDonutSmallSharp.tsx | 2 +- src/IconDonutSmallSharpFilled.tsx | 2 +- src/IconDoorBackOutlined.tsx | 2 +- src/IconDoorBackOutlinedFilled.tsx | 2 +- src/IconDoorBackRounded.tsx | 2 +- src/IconDoorBackRoundedFilled.tsx | 2 +- src/IconDoorBackSharp.tsx | 2 +- src/IconDoorBackSharpFilled.tsx | 2 +- src/IconDoorFrontOutlined.tsx | 2 +- src/IconDoorFrontOutlinedFilled.tsx | 2 +- src/IconDoorFrontRounded.tsx | 2 +- src/IconDoorFrontRoundedFilled.tsx | 2 +- src/IconDoorFrontSharp.tsx | 2 +- src/IconDoorFrontSharpFilled.tsx | 2 +- src/IconDoorOpenOutlined.tsx | 2 +- src/IconDoorOpenOutlinedFilled.tsx | 2 +- src/IconDoorOpenRounded.tsx | 2 +- src/IconDoorOpenRoundedFilled.tsx | 2 +- src/IconDoorOpenSharp.tsx | 2 +- src/IconDoorOpenSharpFilled.tsx | 2 +- src/IconDoorSensorOutlined.tsx | 2 +- src/IconDoorSensorOutlinedFilled.tsx | 2 +- src/IconDoorSensorRounded.tsx | 2 +- src/IconDoorSensorRoundedFilled.tsx | 2 +- src/IconDoorSensorSharp.tsx | 2 +- src/IconDoorSensorSharpFilled.tsx | 2 +- src/IconDoorSlidingOutlined.tsx | 2 +- src/IconDoorSlidingOutlinedFilled.tsx | 2 +- src/IconDoorSlidingRounded.tsx | 2 +- src/IconDoorSlidingRoundedFilled.tsx | 2 +- src/IconDoorSlidingSharp.tsx | 2 +- src/IconDoorSlidingSharpFilled.tsx | 2 +- src/IconDoorbell3pOutlined.tsx | 2 +- src/IconDoorbell3pOutlinedFilled.tsx | 2 +- src/IconDoorbell3pRounded.tsx | 2 +- src/IconDoorbell3pRoundedFilled.tsx | 2 +- src/IconDoorbell3pSharp.tsx | 2 +- src/IconDoorbell3pSharpFilled.tsx | 2 +- src/IconDoorbellChimeOutlined.tsx | 2 +- src/IconDoorbellChimeOutlinedFilled.tsx | 2 +- src/IconDoorbellChimeRounded.tsx | 2 +- src/IconDoorbellChimeRoundedFilled.tsx | 2 +- src/IconDoorbellChimeSharp.tsx | 2 +- src/IconDoorbellChimeSharpFilled.tsx | 2 +- src/IconDoorbellOutlined.tsx | 2 +- src/IconDoorbellOutlinedFilled.tsx | 2 +- src/IconDoorbellRounded.tsx | 2 +- src/IconDoorbellRoundedFilled.tsx | 2 +- src/IconDoorbellSharp.tsx | 2 +- src/IconDoorbellSharpFilled.tsx | 2 +- src/IconDoubleArrowOutlined.tsx | 2 +- src/IconDoubleArrowOutlinedFilled.tsx | 2 +- src/IconDoubleArrowRounded.tsx | 2 +- src/IconDoubleArrowRoundedFilled.tsx | 2 +- src/IconDoubleArrowSharp.tsx | 2 +- src/IconDoubleArrowSharpFilled.tsx | 2 +- src/IconDownhillSkiingOutlined.tsx | 2 +- src/IconDownhillSkiingOutlinedFilled.tsx | 2 +- src/IconDownhillSkiingRounded.tsx | 2 +- src/IconDownhillSkiingRoundedFilled.tsx | 2 +- src/IconDownhillSkiingSharp.tsx | 2 +- src/IconDownhillSkiingSharpFilled.tsx | 2 +- src/IconDownload2Outlined.tsx | 2 +- src/IconDownload2OutlinedFilled.tsx | 2 +- src/IconDownload2Rounded.tsx | 2 +- src/IconDownload2RoundedFilled.tsx | 2 +- src/IconDownload2Sharp.tsx | 2 +- src/IconDownload2SharpFilled.tsx | 2 +- src/IconDownloadDoneOutlined.tsx | 2 +- src/IconDownloadDoneOutlinedFilled.tsx | 2 +- src/IconDownloadDoneRounded.tsx | 2 +- src/IconDownloadDoneRoundedFilled.tsx | 2 +- src/IconDownloadDoneSharp.tsx | 2 +- src/IconDownloadDoneSharpFilled.tsx | 2 +- src/IconDownloadForOfflineOutlined.tsx | 2 +- src/IconDownloadForOfflineOutlinedFilled.tsx | 2 +- src/IconDownloadForOfflineRounded.tsx | 2 +- src/IconDownloadForOfflineRoundedFilled.tsx | 2 +- src/IconDownloadForOfflineSharp.tsx | 2 +- src/IconDownloadForOfflineSharpFilled.tsx | 2 +- src/IconDownloadOutlined.tsx | 2 +- src/IconDownloadOutlinedFilled.tsx | 2 +- src/IconDownloadRounded.tsx | 2 +- src/IconDownloadRoundedFilled.tsx | 2 +- src/IconDownloadSharp.tsx | 2 +- src/IconDownloadSharpFilled.tsx | 2 +- src/IconDownloadingOutlined.tsx | 2 +- src/IconDownloadingOutlinedFilled.tsx | 2 +- src/IconDownloadingRounded.tsx | 2 +- src/IconDownloadingRoundedFilled.tsx | 2 +- src/IconDownloadingSharp.tsx | 2 +- src/IconDownloadingSharpFilled.tsx | 2 +- src/IconDraftOrdersOutlined.tsx | 2 +- src/IconDraftOrdersOutlinedFilled.tsx | 2 +- src/IconDraftOrdersRounded.tsx | 2 +- src/IconDraftOrdersRoundedFilled.tsx | 2 +- src/IconDraftOrdersSharp.tsx | 2 +- src/IconDraftOrdersSharpFilled.tsx | 2 +- src/IconDraftOutlined.tsx | 2 +- src/IconDraftOutlinedFilled.tsx | 2 +- src/IconDraftRounded.tsx | 2 +- src/IconDraftRoundedFilled.tsx | 2 +- src/IconDraftSharp.tsx | 2 +- src/IconDraftSharpFilled.tsx | 2 +- src/IconDraftsOutlined.tsx | 2 +- src/IconDraftsOutlinedFilled.tsx | 2 +- src/IconDraftsRounded.tsx | 2 +- src/IconDraftsRoundedFilled.tsx | 2 +- src/IconDraftsSharp.tsx | 2 +- src/IconDraftsSharpFilled.tsx | 2 +- src/IconDragClickOutlined.tsx | 2 +- src/IconDragClickOutlinedFilled.tsx | 2 +- src/IconDragClickRounded.tsx | 2 +- src/IconDragClickRoundedFilled.tsx | 2 +- src/IconDragClickSharp.tsx | 2 +- src/IconDragClickSharpFilled.tsx | 2 +- src/IconDragHandleOutlined.tsx | 2 +- src/IconDragHandleOutlinedFilled.tsx | 2 +- src/IconDragHandleRounded.tsx | 2 +- src/IconDragHandleRoundedFilled.tsx | 2 +- src/IconDragHandleSharp.tsx | 2 +- src/IconDragHandleSharpFilled.tsx | 2 +- src/IconDragIndicatorOutlined.tsx | 2 +- src/IconDragIndicatorOutlinedFilled.tsx | 2 +- src/IconDragIndicatorRounded.tsx | 2 +- src/IconDragIndicatorRoundedFilled.tsx | 2 +- src/IconDragIndicatorSharp.tsx | 2 +- src/IconDragIndicatorSharpFilled.tsx | 2 +- src/IconDragPanOutlined.tsx | 2 +- src/IconDragPanOutlinedFilled.tsx | 2 +- src/IconDragPanRounded.tsx | 2 +- src/IconDragPanRoundedFilled.tsx | 2 +- src/IconDragPanSharp.tsx | 2 +- src/IconDragPanSharpFilled.tsx | 2 +- src/IconDrawAbstractOutlined.tsx | 2 +- src/IconDrawAbstractOutlinedFilled.tsx | 2 +- src/IconDrawAbstractRounded.tsx | 2 +- src/IconDrawAbstractRoundedFilled.tsx | 2 +- src/IconDrawAbstractSharp.tsx | 2 +- src/IconDrawAbstractSharpFilled.tsx | 2 +- src/IconDrawCollageOutlined.tsx | 2 +- src/IconDrawCollageOutlinedFilled.tsx | 2 +- src/IconDrawCollageRounded.tsx | 2 +- src/IconDrawCollageRoundedFilled.tsx | 2 +- src/IconDrawCollageSharp.tsx | 2 +- src/IconDrawCollageSharpFilled.tsx | 2 +- src/IconDrawOutlined.tsx | 2 +- src/IconDrawOutlinedFilled.tsx | 2 +- src/IconDrawRounded.tsx | 2 +- src/IconDrawRoundedFilled.tsx | 2 +- src/IconDrawSharp.tsx | 2 +- src/IconDrawSharpFilled.tsx | 2 +- src/IconDresserOutlined.tsx | 2 +- src/IconDresserOutlinedFilled.tsx | 2 +- src/IconDresserRounded.tsx | 2 +- src/IconDresserRoundedFilled.tsx | 2 +- src/IconDresserSharp.tsx | 2 +- src/IconDresserSharpFilled.tsx | 2 +- src/IconDriveExportOutlined.tsx | 2 +- src/IconDriveExportOutlinedFilled.tsx | 2 +- src/IconDriveExportRounded.tsx | 2 +- src/IconDriveExportRoundedFilled.tsx | 2 +- src/IconDriveExportSharp.tsx | 2 +- src/IconDriveExportSharpFilled.tsx | 2 +- src/IconDriveFileMoveOutlined.tsx | 2 +- src/IconDriveFileMoveOutlinedFilled.tsx | 2 +- src/IconDriveFileMoveRounded.tsx | 2 +- src/IconDriveFileMoveRoundedFilled.tsx | 2 +- src/IconDriveFileMoveSharp.tsx | 2 +- src/IconDriveFileMoveSharpFilled.tsx | 2 +- src/IconDriveFolderUploadOutlined.tsx | 2 +- src/IconDriveFolderUploadOutlinedFilled.tsx | 2 +- src/IconDriveFolderUploadRounded.tsx | 2 +- src/IconDriveFolderUploadRoundedFilled.tsx | 2 +- src/IconDriveFolderUploadSharp.tsx | 2 +- src/IconDriveFolderUploadSharpFilled.tsx | 2 +- src/IconDropdownOutlined.tsx | 2 +- src/IconDropdownOutlinedFilled.tsx | 2 +- src/IconDropdownRounded.tsx | 2 +- src/IconDropdownRoundedFilled.tsx | 2 +- src/IconDropdownSharp.tsx | 2 +- src/IconDropdownSharpFilled.tsx | 2 +- src/IconDryCleaningOutlined.tsx | 2 +- src/IconDryCleaningOutlinedFilled.tsx | 2 +- src/IconDryCleaningRounded.tsx | 2 +- src/IconDryCleaningRoundedFilled.tsx | 2 +- src/IconDryCleaningSharp.tsx | 2 +- src/IconDryCleaningSharpFilled.tsx | 2 +- src/IconDryOutlined.tsx | 2 +- src/IconDryOutlinedFilled.tsx | 2 +- src/IconDryRounded.tsx | 2 +- src/IconDryRoundedFilled.tsx | 2 +- src/IconDrySharp.tsx | 2 +- src/IconDrySharpFilled.tsx | 2 +- src/IconDualScreenOutlined.tsx | 2 +- src/IconDualScreenOutlinedFilled.tsx | 2 +- src/IconDualScreenRounded.tsx | 2 +- src/IconDualScreenRoundedFilled.tsx | 2 +- src/IconDualScreenSharp.tsx | 2 +- src/IconDualScreenSharpFilled.tsx | 2 +- src/IconDuoOutlined.tsx | 2 +- src/IconDuoOutlinedFilled.tsx | 2 +- src/IconDuoRounded.tsx | 2 +- src/IconDuoRoundedFilled.tsx | 2 +- src/IconDuoSharp.tsx | 2 +- src/IconDuoSharpFilled.tsx | 2 +- src/IconDvrOutlined.tsx | 2 +- src/IconDvrOutlinedFilled.tsx | 2 +- src/IconDvrRounded.tsx | 2 +- src/IconDvrRoundedFilled.tsx | 2 +- src/IconDvrSharp.tsx | 2 +- src/IconDvrSharpFilled.tsx | 2 +- src/IconDynamicFeedOutlined.tsx | 2 +- src/IconDynamicFeedOutlinedFilled.tsx | 2 +- src/IconDynamicFeedRounded.tsx | 2 +- src/IconDynamicFeedRoundedFilled.tsx | 2 +- src/IconDynamicFeedSharp.tsx | 2 +- src/IconDynamicFeedSharpFilled.tsx | 2 +- src/IconDynamicFormOutlined.tsx | 2 +- src/IconDynamicFormOutlinedFilled.tsx | 2 +- src/IconDynamicFormRounded.tsx | 2 +- src/IconDynamicFormRoundedFilled.tsx | 2 +- src/IconDynamicFormSharp.tsx | 2 +- src/IconDynamicFormSharpFilled.tsx | 2 +- src/IconE911AvatarOutlined.tsx | 2 +- src/IconE911AvatarOutlinedFilled.tsx | 2 +- src/IconE911AvatarRounded.tsx | 2 +- src/IconE911AvatarRoundedFilled.tsx | 2 +- src/IconE911AvatarSharp.tsx | 2 +- src/IconE911AvatarSharpFilled.tsx | 2 +- src/IconE911EmergencyOutlined.tsx | 2 +- src/IconE911EmergencyOutlinedFilled.tsx | 2 +- src/IconE911EmergencyRounded.tsx | 2 +- src/IconE911EmergencyRoundedFilled.tsx | 2 +- src/IconE911EmergencySharp.tsx | 2 +- src/IconE911EmergencySharpFilled.tsx | 2 +- src/IconEMobiledataBadgeOutlined.tsx | 2 +- src/IconEMobiledataBadgeOutlinedFilled.tsx | 2 +- src/IconEMobiledataBadgeRounded.tsx | 2 +- src/IconEMobiledataBadgeRoundedFilled.tsx | 2 +- src/IconEMobiledataBadgeSharp.tsx | 2 +- src/IconEMobiledataBadgeSharpFilled.tsx | 2 +- src/IconEMobiledataOutlined.tsx | 2 +- src/IconEMobiledataOutlinedFilled.tsx | 2 +- src/IconEMobiledataRounded.tsx | 2 +- src/IconEMobiledataRoundedFilled.tsx | 2 +- src/IconEMobiledataSharp.tsx | 2 +- src/IconEMobiledataSharpFilled.tsx | 2 +- src/IconEarbudsBatteryOutlined.tsx | 2 +- src/IconEarbudsBatteryOutlinedFilled.tsx | 2 +- src/IconEarbudsBatteryRounded.tsx | 2 +- src/IconEarbudsBatteryRoundedFilled.tsx | 2 +- src/IconEarbudsBatterySharp.tsx | 2 +- src/IconEarbudsBatterySharpFilled.tsx | 2 +- src/IconEarbudsOutlined.tsx | 2 +- src/IconEarbudsOutlinedFilled.tsx | 2 +- src/IconEarbudsRounded.tsx | 2 +- src/IconEarbudsRoundedFilled.tsx | 2 +- src/IconEarbudsSharp.tsx | 2 +- src/IconEarbudsSharpFilled.tsx | 2 +- src/IconEarlyOnOutlined.tsx | 2 +- src/IconEarlyOnOutlinedFilled.tsx | 2 +- src/IconEarlyOnRounded.tsx | 2 +- src/IconEarlyOnRoundedFilled.tsx | 2 +- src/IconEarlyOnSharp.tsx | 2 +- src/IconEarlyOnSharpFilled.tsx | 2 +- src/IconEarthquakeOutlined.tsx | 2 +- src/IconEarthquakeOutlinedFilled.tsx | 2 +- src/IconEarthquakeRounded.tsx | 2 +- src/IconEarthquakeRoundedFilled.tsx | 2 +- src/IconEarthquakeSharp.tsx | 2 +- src/IconEarthquakeSharpFilled.tsx | 2 +- src/IconEastOutlined.tsx | 2 +- src/IconEastOutlinedFilled.tsx | 2 +- src/IconEastRounded.tsx | 2 +- src/IconEastRoundedFilled.tsx | 2 +- src/IconEastSharp.tsx | 2 +- src/IconEastSharpFilled.tsx | 2 +- src/IconEcgHeartOutlined.tsx | 2 +- src/IconEcgHeartOutlinedFilled.tsx | 2 +- src/IconEcgHeartRounded.tsx | 2 +- src/IconEcgHeartRoundedFilled.tsx | 2 +- src/IconEcgHeartSharp.tsx | 2 +- src/IconEcgHeartSharpFilled.tsx | 2 +- src/IconEcgOutlined.tsx | 2 +- src/IconEcgOutlinedFilled.tsx | 2 +- src/IconEcgRounded.tsx | 2 +- src/IconEcgRoundedFilled.tsx | 2 +- src/IconEcgSharp.tsx | 2 +- src/IconEcgSharpFilled.tsx | 2 +- src/IconEcoOutlined.tsx | 2 +- src/IconEcoOutlinedFilled.tsx | 2 +- src/IconEcoRounded.tsx | 2 +- src/IconEcoRoundedFilled.tsx | 2 +- src/IconEcoSharp.tsx | 2 +- src/IconEcoSharpFilled.tsx | 2 +- src/IconEdaOutlined.tsx | 2 +- src/IconEdaOutlinedFilled.tsx | 2 +- src/IconEdaRounded.tsx | 2 +- src/IconEdaRoundedFilled.tsx | 2 +- src/IconEdaSharp.tsx | 2 +- src/IconEdaSharpFilled.tsx | 2 +- src/IconEdgesensorHighOutlined.tsx | 2 +- src/IconEdgesensorHighOutlinedFilled.tsx | 2 +- src/IconEdgesensorHighRounded.tsx | 2 +- src/IconEdgesensorHighRoundedFilled.tsx | 2 +- src/IconEdgesensorHighSharp.tsx | 2 +- src/IconEdgesensorHighSharpFilled.tsx | 2 +- src/IconEdgesensorLowOutlined.tsx | 2 +- src/IconEdgesensorLowOutlinedFilled.tsx | 2 +- src/IconEdgesensorLowRounded.tsx | 2 +- src/IconEdgesensorLowRoundedFilled.tsx | 2 +- src/IconEdgesensorLowSharpFilled.tsx | 2 +- src/IconEditAttributesOutlined.tsx | 2 +- src/IconEditAttributesOutlinedFilled.tsx | 2 +- src/IconEditAttributesRounded.tsx | 2 +- src/IconEditAttributesRoundedFilled.tsx | 2 +- src/IconEditAttributesSharp.tsx | 2 +- src/IconEditAttributesSharpFilled.tsx | 2 +- src/IconEditAudioOutlined.tsx | 2 +- src/IconEditAudioOutlinedFilled.tsx | 2 +- src/IconEditAudioRounded.tsx | 2 +- src/IconEditAudioRoundedFilled.tsx | 2 +- src/IconEditAudioSharp.tsx | 2 +- src/IconEditAudioSharpFilled.tsx | 2 +- src/IconEditCalendarOutlined.tsx | 2 +- src/IconEditCalendarOutlinedFilled.tsx | 2 +- src/IconEditCalendarRounded.tsx | 2 +- src/IconEditCalendarRoundedFilled.tsx | 2 +- src/IconEditCalendarSharp.tsx | 2 +- src/IconEditCalendarSharpFilled.tsx | 2 +- src/IconEditDocumentOutlined.tsx | 2 +- src/IconEditDocumentOutlinedFilled.tsx | 2 +- src/IconEditDocumentRounded.tsx | 2 +- src/IconEditDocumentRoundedFilled.tsx | 2 +- src/IconEditDocumentSharp.tsx | 2 +- src/IconEditDocumentSharpFilled.tsx | 2 +- src/IconEditLocationAltOutlined.tsx | 2 +- src/IconEditLocationAltOutlinedFilled.tsx | 2 +- src/IconEditLocationAltRounded.tsx | 2 +- src/IconEditLocationAltRoundedFilled.tsx | 2 +- src/IconEditLocationAltSharp.tsx | 2 +- src/IconEditLocationAltSharpFilled.tsx | 2 +- src/IconEditLocationOutlined.tsx | 2 +- src/IconEditLocationOutlinedFilled.tsx | 2 +- src/IconEditLocationRounded.tsx | 2 +- src/IconEditLocationRoundedFilled.tsx | 2 +- src/IconEditLocationSharp.tsx | 2 +- src/IconEditLocationSharpFilled.tsx | 2 +- src/IconEditNoteOutlined.tsx | 2 +- src/IconEditNoteOutlinedFilled.tsx | 2 +- src/IconEditNoteRounded.tsx | 2 +- src/IconEditNoteRoundedFilled.tsx | 2 +- src/IconEditNoteSharp.tsx | 2 +- src/IconEditNoteSharpFilled.tsx | 2 +- src/IconEditNotificationsOutlined.tsx | 2 +- src/IconEditNotificationsOutlinedFilled.tsx | 2 +- src/IconEditNotificationsRounded.tsx | 2 +- src/IconEditNotificationsRoundedFilled.tsx | 2 +- src/IconEditNotificationsSharp.tsx | 2 +- src/IconEditNotificationsSharpFilled.tsx | 2 +- src/IconEditOffOutlined.tsx | 2 +- src/IconEditOffOutlinedFilled.tsx | 2 +- src/IconEditOffRounded.tsx | 2 +- src/IconEditOffRoundedFilled.tsx | 2 +- src/IconEditOffSharp.tsx | 2 +- src/IconEditOffSharpFilled.tsx | 2 +- src/IconEditOutlined.tsx | 2 +- src/IconEditOutlinedFilled.tsx | 2 +- src/IconEditRoadOutlined.tsx | 2 +- src/IconEditRoadOutlinedFilled.tsx | 2 +- src/IconEditRoadRounded.tsx | 2 +- src/IconEditRoadRoundedFilled.tsx | 2 +- src/IconEditRoadSharp.tsx | 2 +- src/IconEditRoadSharpFilled.tsx | 2 +- src/IconEditRounded.tsx | 2 +- src/IconEditRoundedFilled.tsx | 2 +- src/IconEditSharp.tsx | 2 +- src/IconEditSharpFilled.tsx | 2 +- src/IconEditSquareOutlined.tsx | 2 +- src/IconEditSquareOutlinedFilled.tsx | 2 +- src/IconEditSquareRounded.tsx | 2 +- src/IconEditSquareRoundedFilled.tsx | 2 +- src/IconEditSquareSharp.tsx | 2 +- src/IconEditSquareSharpFilled.tsx | 2 +- src/IconEditorChoiceOutlined.tsx | 2 +- src/IconEditorChoiceOutlinedFilled.tsx | 2 +- src/IconEditorChoiceRounded.tsx | 2 +- src/IconEditorChoiceRoundedFilled.tsx | 2 +- src/IconEditorChoiceSharp.tsx | 2 +- src/IconEditorChoiceSharpFilled.tsx | 2 +- src/IconEggAltOutlined.tsx | 2 +- src/IconEggAltOutlinedFilled.tsx | 2 +- src/IconEggAltRounded.tsx | 2 +- src/IconEggAltRoundedFilled.tsx | 2 +- src/IconEggAltSharp.tsx | 2 +- src/IconEggAltSharpFilled.tsx | 2 +- src/IconEggOutlined.tsx | 2 +- src/IconEggOutlinedFilled.tsx | 2 +- src/IconEggRounded.tsx | 2 +- src/IconEggRoundedFilled.tsx | 2 +- src/IconEggSharp.tsx | 2 +- src/IconEggSharpFilled.tsx | 2 +- src/IconEjectOutlined.tsx | 2 +- src/IconEjectOutlinedFilled.tsx | 2 +- src/IconEjectRounded.tsx | 2 +- src/IconEjectRoundedFilled.tsx | 2 +- src/IconEjectSharp.tsx | 2 +- src/IconEjectSharpFilled.tsx | 2 +- src/IconElderlyOutlined.tsx | 2 +- src/IconElderlyOutlinedFilled.tsx | 2 +- src/IconElderlyRounded.tsx | 2 +- src/IconElderlyRoundedFilled.tsx | 2 +- src/IconElderlySharp.tsx | 2 +- src/IconElderlySharpFilled.tsx | 2 +- src/IconElderlyWomanOutlined.tsx | 2 +- src/IconElderlyWomanOutlinedFilled.tsx | 2 +- src/IconElderlyWomanRounded.tsx | 2 +- src/IconElderlyWomanRoundedFilled.tsx | 2 +- src/IconElderlyWomanSharp.tsx | 2 +- src/IconElderlyWomanSharpFilled.tsx | 2 +- src/IconElectricBikeOutlined.tsx | 2 +- src/IconElectricBikeOutlinedFilled.tsx | 2 +- src/IconElectricBikeRounded.tsx | 2 +- src/IconElectricBikeRoundedFilled.tsx | 2 +- src/IconElectricBikeSharp.tsx | 2 +- src/IconElectricBikeSharpFilled.tsx | 2 +- src/IconElectricBoltOutlined.tsx | 2 +- src/IconElectricBoltOutlinedFilled.tsx | 2 +- src/IconElectricBoltRounded.tsx | 2 +- src/IconElectricBoltRoundedFilled.tsx | 2 +- src/IconElectricBoltSharp.tsx | 2 +- src/IconElectricBoltSharpFilled.tsx | 2 +- src/IconElectricCarOutlined.tsx | 2 +- src/IconElectricCarOutlinedFilled.tsx | 2 +- src/IconElectricCarRounded.tsx | 2 +- src/IconElectricCarRoundedFilled.tsx | 2 +- src/IconElectricCarSharp.tsx | 2 +- src/IconElectricCarSharpFilled.tsx | 2 +- src/IconElectricMeterOutlined.tsx | 2 +- src/IconElectricMeterOutlinedFilled.tsx | 2 +- src/IconElectricMeterRounded.tsx | 2 +- src/IconElectricMeterRoundedFilled.tsx | 2 +- src/IconElectricMeterSharp.tsx | 2 +- src/IconElectricMeterSharpFilled.tsx | 2 +- src/IconElectricMopedOutlined.tsx | 2 +- src/IconElectricMopedOutlinedFilled.tsx | 2 +- src/IconElectricMopedRounded.tsx | 2 +- src/IconElectricMopedRoundedFilled.tsx | 2 +- src/IconElectricMopedSharp.tsx | 2 +- src/IconElectricMopedSharpFilled.tsx | 2 +- src/IconElectricRickshawOutlined.tsx | 2 +- src/IconElectricRickshawOutlinedFilled.tsx | 2 +- src/IconElectricRickshawRounded.tsx | 2 +- src/IconElectricRickshawRoundedFilled.tsx | 2 +- src/IconElectricRickshawSharp.tsx | 2 +- src/IconElectricRickshawSharpFilled.tsx | 2 +- src/IconElectricScooterOutlined.tsx | 2 +- src/IconElectricScooterOutlinedFilled.tsx | 2 +- src/IconElectricScooterRounded.tsx | 2 +- src/IconElectricScooterRoundedFilled.tsx | 2 +- src/IconElectricScooterSharp.tsx | 2 +- src/IconElectricScooterSharpFilled.tsx | 2 +- src/IconElectricalServicesOutlined.tsx | 2 +- src/IconElectricalServicesOutlinedFilled.tsx | 2 +- src/IconElectricalServicesRounded.tsx | 2 +- src/IconElectricalServicesRoundedFilled.tsx | 2 +- src/IconElectricalServicesSharp.tsx | 2 +- src/IconElectricalServicesSharpFilled.tsx | 2 +- src/IconElevationOutlined.tsx | 2 +- src/IconElevationOutlinedFilled.tsx | 2 +- src/IconElevationRounded.tsx | 2 +- src/IconElevationRoundedFilled.tsx | 2 +- src/IconElevationSharp.tsx | 2 +- src/IconElevationSharpFilled.tsx | 2 +- src/IconElevatorOutlined.tsx | 2 +- src/IconElevatorOutlinedFilled.tsx | 2 +- src/IconElevatorRounded.tsx | 2 +- src/IconElevatorRoundedFilled.tsx | 2 +- src/IconElevatorSharp.tsx | 2 +- src/IconElevatorSharpFilled.tsx | 2 +- src/IconEmergencyHeat2Outlined.tsx | 2 +- src/IconEmergencyHeat2OutlinedFilled.tsx | 2 +- src/IconEmergencyHeat2Rounded.tsx | 2 +- src/IconEmergencyHeat2RoundedFilled.tsx | 2 +- src/IconEmergencyHeat2Sharp.tsx | 2 +- src/IconEmergencyHeat2SharpFilled.tsx | 2 +- src/IconEmergencyHeatOutlined.tsx | 2 +- src/IconEmergencyHeatOutlinedFilled.tsx | 2 +- src/IconEmergencyHeatRounded.tsx | 2 +- src/IconEmergencyHeatRoundedFilled.tsx | 2 +- src/IconEmergencyHeatSharp.tsx | 2 +- src/IconEmergencyHeatSharpFilled.tsx | 2 +- src/IconEmergencyHomeOutlined.tsx | 2 +- src/IconEmergencyHomeOutlinedFilled.tsx | 2 +- src/IconEmergencyHomeRounded.tsx | 2 +- src/IconEmergencyHomeRoundedFilled.tsx | 2 +- src/IconEmergencyHomeSharp.tsx | 2 +- src/IconEmergencyHomeSharpFilled.tsx | 2 +- src/IconEmergencyOutlined.tsx | 2 +- src/IconEmergencyOutlinedFilled.tsx | 2 +- src/IconEmergencyRecordingOutlined.tsx | 2 +- src/IconEmergencyRecordingOutlinedFilled.tsx | 2 +- src/IconEmergencyRecordingRounded.tsx | 2 +- src/IconEmergencyRecordingRoundedFilled.tsx | 2 +- src/IconEmergencyRecordingSharp.tsx | 2 +- src/IconEmergencyRecordingSharpFilled.tsx | 2 +- src/IconEmergencyRounded.tsx | 2 +- src/IconEmergencyRoundedFilled.tsx | 2 +- src/IconEmergencyShareOffOutlined.tsx | 2 +- src/IconEmergencyShareOffOutlinedFilled.tsx | 2 +- src/IconEmergencyShareOffRounded.tsx | 2 +- src/IconEmergencyShareOffRoundedFilled.tsx | 2 +- src/IconEmergencyShareOffSharp.tsx | 2 +- src/IconEmergencyShareOffSharpFilled.tsx | 2 +- src/IconEmergencyShareOutlined.tsx | 2 +- src/IconEmergencyShareOutlinedFilled.tsx | 2 +- src/IconEmergencyShareRounded.tsx | 2 +- src/IconEmergencyShareRoundedFilled.tsx | 2 +- src/IconEmergencyShareSharp.tsx | 2 +- src/IconEmergencyShareSharpFilled.tsx | 2 +- src/IconEmergencySharp.tsx | 2 +- src/IconEmergencySharpFilled.tsx | 2 +- src/IconEmojiEventsOutlined.tsx | 2 +- src/IconEmojiEventsOutlinedFilled.tsx | 2 +- src/IconEmojiEventsRounded.tsx | 2 +- src/IconEmojiEventsRoundedFilled.tsx | 2 +- src/IconEmojiEventsSharp.tsx | 2 +- src/IconEmojiEventsSharpFilled.tsx | 2 +- src/IconEmojiFoodBeverageOutlined.tsx | 2 +- src/IconEmojiFoodBeverageOutlinedFilled.tsx | 2 +- src/IconEmojiFoodBeverageRounded.tsx | 2 +- src/IconEmojiFoodBeverageRoundedFilled.tsx | 2 +- src/IconEmojiFoodBeverageSharp.tsx | 2 +- src/IconEmojiFoodBeverageSharpFilled.tsx | 2 +- src/IconEmojiLanguageOutlined.tsx | 2 +- src/IconEmojiLanguageOutlinedFilled.tsx | 2 +- src/IconEmojiLanguageRounded.tsx | 2 +- src/IconEmojiLanguageRoundedFilled.tsx | 2 +- src/IconEmojiLanguageSharp.tsx | 2 +- src/IconEmojiLanguageSharpFilled.tsx | 2 +- src/IconEmojiNatureOutlined.tsx | 2 +- src/IconEmojiNatureOutlinedFilled.tsx | 2 +- src/IconEmojiNatureRounded.tsx | 2 +- src/IconEmojiNatureRoundedFilled.tsx | 2 +- src/IconEmojiNatureSharp.tsx | 2 +- src/IconEmojiNatureSharpFilled.tsx | 2 +- src/IconEmojiObjectsOutlined.tsx | 2 +- src/IconEmojiObjectsOutlinedFilled.tsx | 2 +- src/IconEmojiObjectsRounded.tsx | 2 +- src/IconEmojiObjectsRoundedFilled.tsx | 2 +- src/IconEmojiObjectsSharp.tsx | 2 +- src/IconEmojiObjectsSharpFilled.tsx | 2 +- src/IconEmojiPeopleOutlined.tsx | 2 +- src/IconEmojiPeopleOutlinedFilled.tsx | 2 +- src/IconEmojiPeopleRounded.tsx | 2 +- src/IconEmojiPeopleRoundedFilled.tsx | 2 +- src/IconEmojiPeopleSharp.tsx | 2 +- src/IconEmojiPeopleSharpFilled.tsx | 2 +- src/IconEmojiSymbolsOutlined.tsx | 2 +- src/IconEmojiSymbolsOutlinedFilled.tsx | 2 +- src/IconEmojiSymbolsRounded.tsx | 2 +- src/IconEmojiSymbolsRoundedFilled.tsx | 2 +- src/IconEmojiSymbolsSharp.tsx | 2 +- src/IconEmojiSymbolsSharpFilled.tsx | 2 +- src/IconEmojiTransportationOutlined.tsx | 2 +- src/IconEmojiTransportationOutlinedFilled.tsx | 2 +- src/IconEmojiTransportationRounded.tsx | 2 +- src/IconEmojiTransportationRoundedFilled.tsx | 2 +- src/IconEmojiTransportationSharp.tsx | 2 +- src/IconEmojiTransportationSharpFilled.tsx | 2 +- src/IconEmoticonOutlined.tsx | 2 +- src/IconEmoticonOutlinedFilled.tsx | 2 +- src/IconEmoticonRounded.tsx | 2 +- src/IconEmoticonRoundedFilled.tsx | 2 +- src/IconEmoticonSharp.tsx | 2 +- src/IconEmoticonSharpFilled.tsx | 2 +- src/IconEmptyDashboardOutlined.tsx | 2 +- src/IconEmptyDashboardOutlinedFilled.tsx | 2 +- src/IconEmptyDashboardRounded.tsx | 2 +- src/IconEmptyDashboardRoundedFilled.tsx | 2 +- src/IconEmptyDashboardSharp.tsx | 2 +- src/IconEmptyDashboardSharpFilled.tsx | 2 +- src/IconEnableOutlined.tsx | 2 +- src/IconEnableOutlinedFilled.tsx | 2 +- src/IconEnableRounded.tsx | 2 +- src/IconEnableRoundedFilled.tsx | 2 +- src/IconEnableSharp.tsx | 2 +- src/IconEnableSharpFilled.tsx | 2 +- src/IconEncryptedAddCircleOutlined.tsx | 2 +- src/IconEncryptedAddCircleOutlinedFilled.tsx | 2 +- src/IconEncryptedAddCircleRounded.tsx | 2 +- src/IconEncryptedAddCircleRoundedFilled.tsx | 2 +- src/IconEncryptedAddCircleSharp.tsx | 2 +- src/IconEncryptedAddCircleSharpFilled.tsx | 2 +- src/IconEncryptedAddOutlined.tsx | 2 +- src/IconEncryptedAddOutlinedFilled.tsx | 2 +- src/IconEncryptedAddRounded.tsx | 2 +- src/IconEncryptedAddRoundedFilled.tsx | 2 +- src/IconEncryptedAddSharp.tsx | 2 +- src/IconEncryptedAddSharpFilled.tsx | 2 +- src/IconEncryptedMinusCircleOutlined.tsx | 2 +- src/IconEncryptedMinusCircleOutlinedFilled.tsx | 2 +- src/IconEncryptedMinusCircleRounded.tsx | 2 +- src/IconEncryptedMinusCircleRoundedFilled.tsx | 2 +- src/IconEncryptedMinusCircleSharp.tsx | 2 +- src/IconEncryptedMinusCircleSharpFilled.tsx | 2 +- src/IconEncryptedOffOutlined.tsx | 2 +- src/IconEncryptedOffOutlinedFilled.tsx | 2 +- src/IconEncryptedOffRounded.tsx | 2 +- src/IconEncryptedOffRoundedFilled.tsx | 2 +- src/IconEncryptedOffSharp.tsx | 2 +- src/IconEncryptedOffSharpFilled.tsx | 2 +- src/IconEncryptedOutlined.tsx | 2 +- src/IconEncryptedOutlinedFilled.tsx | 2 +- src/IconEncryptedRounded.tsx | 2 +- src/IconEncryptedRoundedFilled.tsx | 2 +- src/IconEncryptedSharp.tsx | 2 +- src/IconEncryptedSharpFilled.tsx | 2 +- src/IconEndocrinologyOutlined.tsx | 2 +- src/IconEndocrinologyOutlinedFilled.tsx | 2 +- src/IconEndocrinologyRounded.tsx | 2 +- src/IconEndocrinologyRoundedFilled.tsx | 2 +- src/IconEndocrinologySharp.tsx | 2 +- src/IconEndocrinologySharpFilled.tsx | 2 +- src/IconEnergyOutlined.tsx | 2 +- src/IconEnergyOutlinedFilled.tsx | 2 +- src/IconEnergyProgramSavingOutlined.tsx | 2 +- src/IconEnergyProgramSavingOutlinedFilled.tsx | 2 +- src/IconEnergyProgramSavingRounded.tsx | 2 +- src/IconEnergyProgramSavingRoundedFilled.tsx | 2 +- src/IconEnergyProgramSavingSharp.tsx | 2 +- src/IconEnergyProgramSavingSharpFilled.tsx | 2 +- src/IconEnergyProgramTimeUsedOutlined.tsx | 2 +- src/IconEnergyProgramTimeUsedOutlinedFilled.tsx | 2 +- src/IconEnergyProgramTimeUsedRounded.tsx | 2 +- src/IconEnergyProgramTimeUsedRoundedFilled.tsx | 2 +- src/IconEnergyProgramTimeUsedSharp.tsx | 2 +- src/IconEnergyProgramTimeUsedSharpFilled.tsx | 2 +- src/IconEnergyRounded.tsx | 2 +- src/IconEnergyRoundedFilled.tsx | 2 +- src/IconEnergySavingsLeafOutlined.tsx | 2 +- src/IconEnergySavingsLeafOutlinedFilled.tsx | 2 +- src/IconEnergySavingsLeafRounded.tsx | 2 +- src/IconEnergySavingsLeafRoundedFilled.tsx | 2 +- src/IconEnergySavingsLeafSharp.tsx | 2 +- src/IconEnergySavingsLeafSharpFilled.tsx | 2 +- src/IconEnergySharp.tsx | 2 +- src/IconEnergySharpFilled.tsx | 2 +- src/IconEngineeringOutlined.tsx | 2 +- src/IconEngineeringOutlinedFilled.tsx | 2 +- src/IconEngineeringRounded.tsx | 2 +- src/IconEngineeringRoundedFilled.tsx | 2 +- src/IconEngineeringSharp.tsx | 2 +- src/IconEngineeringSharpFilled.tsx | 2 +- src/IconEnhancedEncryptionOutlined.tsx | 2 +- src/IconEnhancedEncryptionOutlinedFilled.tsx | 2 +- src/IconEnhancedEncryptionRounded.tsx | 2 +- src/IconEnhancedEncryptionRoundedFilled.tsx | 2 +- src/IconEnhancedEncryptionSharp.tsx | 2 +- src/IconEnhancedEncryptionSharpFilled.tsx | 2 +- src/IconEntOutlined.tsx | 2 +- src/IconEntOutlinedFilled.tsx | 2 +- src/IconEntRounded.tsx | 2 +- src/IconEntRoundedFilled.tsx | 2 +- src/IconEntSharp.tsx | 2 +- src/IconEntSharpFilled.tsx | 2 +- src/IconEnterpriseOffOutlined.tsx | 2 +- src/IconEnterpriseOffOutlinedFilled.tsx | 2 +- src/IconEnterpriseOffRounded.tsx | 2 +- src/IconEnterpriseOffRoundedFilled.tsx | 2 +- src/IconEnterpriseOffSharp.tsx | 2 +- src/IconEnterpriseOffSharpFilled.tsx | 2 +- src/IconEnterpriseOutlined.tsx | 2 +- src/IconEnterpriseOutlinedFilled.tsx | 2 +- src/IconEnterpriseRounded.tsx | 2 +- src/IconEnterpriseRoundedFilled.tsx | 2 +- src/IconEnterpriseSharp.tsx | 2 +- src/IconEnterpriseSharpFilled.tsx | 2 +- src/IconEqualOutlined.tsx | 2 +- src/IconEqualOutlinedFilled.tsx | 2 +- src/IconEqualRounded.tsx | 2 +- src/IconEqualRoundedFilled.tsx | 2 +- src/IconEqualSharp.tsx | 2 +- src/IconEqualSharpFilled.tsx | 2 +- src/IconEqualizerOutlined.tsx | 2 +- src/IconEqualizerOutlinedFilled.tsx | 2 +- src/IconEqualizerRounded.tsx | 2 +- src/IconEqualizerRoundedFilled.tsx | 2 +- src/IconEqualizerSharp.tsx | 2 +- src/IconEqualizerSharpFilled.tsx | 2 +- src/IconEraserSize1Outlined.tsx | 2 +- src/IconEraserSize1OutlinedFilled.tsx | 2 +- src/IconEraserSize1Rounded.tsx | 2 +- src/IconEraserSize1RoundedFilled.tsx | 2 +- src/IconEraserSize1Sharp.tsx | 2 +- src/IconEraserSize1SharpFilled.tsx | 2 +- src/IconEraserSize2Outlined.tsx | 2 +- src/IconEraserSize2OutlinedFilled.tsx | 2 +- src/IconEraserSize2Rounded.tsx | 2 +- src/IconEraserSize2RoundedFilled.tsx | 2 +- src/IconEraserSize2Sharp.tsx | 2 +- src/IconEraserSize2SharpFilled.tsx | 2 +- src/IconEraserSize3Outlined.tsx | 2 +- src/IconEraserSize3OutlinedFilled.tsx | 2 +- src/IconEraserSize3Rounded.tsx | 2 +- src/IconEraserSize3RoundedFilled.tsx | 2 +- src/IconEraserSize3Sharp.tsx | 2 +- src/IconEraserSize3SharpFilled.tsx | 2 +- src/IconEraserSize4Outlined.tsx | 2 +- src/IconEraserSize4OutlinedFilled.tsx | 2 +- src/IconEraserSize4Rounded.tsx | 2 +- src/IconEraserSize4RoundedFilled.tsx | 2 +- src/IconEraserSize4Sharp.tsx | 2 +- src/IconEraserSize4SharpFilled.tsx | 2 +- src/IconEraserSize5Outlined.tsx | 2 +- src/IconEraserSize5OutlinedFilled.tsx | 2 +- src/IconEraserSize5Rounded.tsx | 2 +- src/IconEraserSize5RoundedFilled.tsx | 2 +- src/IconEraserSize5Sharp.tsx | 2 +- src/IconEraserSize5SharpFilled.tsx | 2 +- src/IconErrorMedOutlined.tsx | 2 +- src/IconErrorMedOutlinedFilled.tsx | 2 +- src/IconErrorMedRounded.tsx | 2 +- src/IconErrorMedRoundedFilled.tsx | 2 +- src/IconErrorMedSharp.tsx | 2 +- src/IconErrorMedSharpFilled.tsx | 2 +- src/IconErrorOutlined.tsx | 2 +- src/IconErrorOutlinedFilled.tsx | 2 +- src/IconErrorRounded.tsx | 2 +- src/IconErrorRoundedFilled.tsx | 2 +- src/IconErrorSharp.tsx | 2 +- src/IconErrorSharpFilled.tsx | 2 +- src/IconEscalatorOutlined.tsx | 2 +- src/IconEscalatorOutlinedFilled.tsx | 2 +- src/IconEscalatorRounded.tsx | 2 +- src/IconEscalatorRoundedFilled.tsx | 2 +- src/IconEscalatorSharp.tsx | 2 +- src/IconEscalatorSharpFilled.tsx | 2 +- src/IconEscalatorWarningOutlined.tsx | 2 +- src/IconEscalatorWarningOutlinedFilled.tsx | 2 +- src/IconEscalatorWarningRounded.tsx | 2 +- src/IconEscalatorWarningRoundedFilled.tsx | 2 +- src/IconEscalatorWarningSharp.tsx | 2 +- src/IconEscalatorWarningSharpFilled.tsx | 2 +- src/IconEuroOutlined.tsx | 2 +- src/IconEuroOutlinedFilled.tsx | 2 +- src/IconEuroRounded.tsx | 2 +- src/IconEuroRoundedFilled.tsx | 2 +- src/IconEuroSharp.tsx | 2 +- src/IconEuroSharpFilled.tsx | 2 +- src/IconEuroSymbolOutlined.tsx | 2 +- src/IconEuroSymbolOutlinedFilled.tsx | 2 +- src/IconEuroSymbolRounded.tsx | 2 +- src/IconEuroSymbolRoundedFilled.tsx | 2 +- src/IconEuroSymbolSharp.tsx | 2 +- src/IconEuroSymbolSharpFilled.tsx | 2 +- src/IconEvChargerOutlined.tsx | 2 +- src/IconEvChargerOutlinedFilled.tsx | 2 +- src/IconEvChargerRounded.tsx | 2 +- src/IconEvChargerRoundedFilled.tsx | 2 +- src/IconEvChargerSharp.tsx | 2 +- src/IconEvChargerSharpFilled.tsx | 2 +- src/IconEvMobiledataBadgeOutlined.tsx | 2 +- src/IconEvMobiledataBadgeOutlinedFilled.tsx | 2 +- src/IconEvMobiledataBadgeRounded.tsx | 2 +- src/IconEvMobiledataBadgeRoundedFilled.tsx | 2 +- src/IconEvMobiledataBadgeSharp.tsx | 2 +- src/IconEvMobiledataBadgeSharpFilled.tsx | 2 +- src/IconEvShadowAddOutlined.tsx | 2 +- src/IconEvShadowAddOutlinedFilled.tsx | 2 +- src/IconEvShadowAddRounded.tsx | 2 +- src/IconEvShadowAddRoundedFilled.tsx | 2 +- src/IconEvShadowAddSharp.tsx | 2 +- src/IconEvShadowAddSharpFilled.tsx | 2 +- src/IconEvShadowMinusOutlined.tsx | 2 +- src/IconEvShadowMinusOutlinedFilled.tsx | 2 +- src/IconEvShadowMinusRounded.tsx | 2 +- src/IconEvShadowMinusRoundedFilled.tsx | 2 +- src/IconEvShadowMinusSharp.tsx | 2 +- src/IconEvShadowMinusSharpFilled.tsx | 2 +- src/IconEvShadowOutlined.tsx | 2 +- src/IconEvShadowOutlinedFilled.tsx | 2 +- src/IconEvShadowRounded.tsx | 2 +- src/IconEvShadowRoundedFilled.tsx | 2 +- src/IconEvShadowSharp.tsx | 2 +- src/IconEvShadowSharpFilled.tsx | 2 +- src/IconEvStationOutlined.tsx | 2 +- src/IconEvStationOutlinedFilled.tsx | 2 +- src/IconEvStationRounded.tsx | 2 +- src/IconEvStationRoundedFilled.tsx | 2 +- src/IconEvStationSharp.tsx | 2 +- src/IconEvStationSharpFilled.tsx | 2 +- src/IconEventAvailableOutlined.tsx | 2 +- src/IconEventAvailableOutlinedFilled.tsx | 2 +- src/IconEventAvailableRounded.tsx | 2 +- src/IconEventAvailableRoundedFilled.tsx | 2 +- src/IconEventAvailableSharp.tsx | 2 +- src/IconEventAvailableSharpFilled.tsx | 2 +- src/IconEventBusyOutlined.tsx | 2 +- src/IconEventBusyOutlinedFilled.tsx | 2 +- src/IconEventBusyRounded.tsx | 2 +- src/IconEventBusyRoundedFilled.tsx | 2 +- src/IconEventBusySharp.tsx | 2 +- src/IconEventBusySharpFilled.tsx | 2 +- src/IconEventListOutlined.tsx | 2 +- src/IconEventListOutlinedFilled.tsx | 2 +- src/IconEventListRounded.tsx | 2 +- src/IconEventListRoundedFilled.tsx | 2 +- src/IconEventListSharp.tsx | 2 +- src/IconEventListSharpFilled.tsx | 2 +- src/IconEventNoteOutlined.tsx | 2 +- src/IconEventNoteOutlinedFilled.tsx | 2 +- src/IconEventNoteRounded.tsx | 2 +- src/IconEventNoteRoundedFilled.tsx | 2 +- src/IconEventNoteSharp.tsx | 2 +- src/IconEventNoteSharpFilled.tsx | 2 +- src/IconEventOutlined.tsx | 2 +- src/IconEventOutlinedFilled.tsx | 2 +- src/IconEventRepeatOutlined.tsx | 2 +- src/IconEventRepeatOutlinedFilled.tsx | 2 +- src/IconEventRepeatRounded.tsx | 2 +- src/IconEventRepeatRoundedFilled.tsx | 2 +- src/IconEventRepeatSharp.tsx | 2 +- src/IconEventRepeatSharpFilled.tsx | 2 +- src/IconEventRounded.tsx | 2 +- src/IconEventRoundedFilled.tsx | 2 +- src/IconEventSeatOutlined.tsx | 2 +- src/IconEventSeatOutlinedFilled.tsx | 2 +- src/IconEventSeatRounded.tsx | 2 +- src/IconEventSeatRoundedFilled.tsx | 2 +- src/IconEventSeatSharp.tsx | 2 +- src/IconEventSeatSharpFilled.tsx | 2 +- src/IconEventSharp.tsx | 2 +- src/IconEventSharpFilled.tsx | 2 +- src/IconEventUpcomingOutlined.tsx | 2 +- src/IconEventUpcomingOutlinedFilled.tsx | 2 +- src/IconEventUpcomingRounded.tsx | 2 +- src/IconEventUpcomingRoundedFilled.tsx | 2 +- src/IconEventUpcomingSharp.tsx | 2 +- src/IconEventUpcomingSharpFilled.tsx | 2 +- src/IconExclamationOutlined.tsx | 2 +- src/IconExclamationOutlinedFilled.tsx | 2 +- src/IconExclamationRounded.tsx | 2 +- src/IconExclamationRoundedFilled.tsx | 2 +- src/IconExclamationSharp.tsx | 2 +- src/IconExclamationSharpFilled.tsx | 2 +- src/IconExerciseOutlined.tsx | 2 +- src/IconExerciseOutlinedFilled.tsx | 2 +- src/IconExerciseRounded.tsx | 2 +- src/IconExerciseRoundedFilled.tsx | 2 +- src/IconExerciseSharp.tsx | 2 +- src/IconExerciseSharpFilled.tsx | 2 +- src/IconExitToAppOutlined.tsx | 2 +- src/IconExitToAppOutlinedFilled.tsx | 2 +- src/IconExitToAppRounded.tsx | 2 +- src/IconExitToAppRoundedFilled.tsx | 2 +- src/IconExitToAppSharp.tsx | 2 +- src/IconExitToAppSharpFilled.tsx | 2 +- src/IconExpandAllOutlined.tsx | 2 +- src/IconExpandAllOutlinedFilled.tsx | 2 +- src/IconExpandAllRounded.tsx | 2 +- src/IconExpandAllRoundedFilled.tsx | 2 +- src/IconExpandAllSharp.tsx | 2 +- src/IconExpandAllSharpFilled.tsx | 2 +- src/IconExpandCircleDownOutlined.tsx | 2 +- src/IconExpandCircleDownOutlinedFilled.tsx | 2 +- src/IconExpandCircleDownRounded.tsx | 2 +- src/IconExpandCircleDownRoundedFilled.tsx | 2 +- src/IconExpandCircleDownSharp.tsx | 2 +- src/IconExpandCircleDownSharpFilled.tsx | 2 +- src/IconExpandCircleRightOutlined.tsx | 2 +- src/IconExpandCircleRightOutlinedFilled.tsx | 2 +- src/IconExpandCircleRightRounded.tsx | 2 +- src/IconExpandCircleRightRoundedFilled.tsx | 2 +- src/IconExpandCircleRightSharp.tsx | 2 +- src/IconExpandCircleRightSharpFilled.tsx | 2 +- src/IconExpandCircleUpOutlined.tsx | 2 +- src/IconExpandCircleUpOutlinedFilled.tsx | 2 +- src/IconExpandCircleUpRounded.tsx | 2 +- src/IconExpandCircleUpRoundedFilled.tsx | 2 +- src/IconExpandCircleUpSharp.tsx | 2 +- src/IconExpandCircleUpSharpFilled.tsx | 2 +- src/IconExpandContentOutlined.tsx | 2 +- src/IconExpandContentOutlinedFilled.tsx | 2 +- src/IconExpandContentRounded.tsx | 2 +- src/IconExpandContentRoundedFilled.tsx | 2 +- src/IconExpandContentSharp.tsx | 2 +- src/IconExpandContentSharpFilled.tsx | 2 +- src/IconExpandOutlined.tsx | 2 +- src/IconExpandOutlinedFilled.tsx | 2 +- src/IconExpandRounded.tsx | 2 +- src/IconExpandRoundedFilled.tsx | 2 +- src/IconExpandSharp.tsx | 2 +- src/IconExpandSharpFilled.tsx | 2 +- src/IconExperimentOutlined.tsx | 2 +- src/IconExperimentOutlinedFilled.tsx | 2 +- src/IconExperimentRounded.tsx | 2 +- src/IconExperimentRoundedFilled.tsx | 2 +- src/IconExperimentSharp.tsx | 2 +- src/IconExperimentSharpFilled.tsx | 2 +- src/IconExplicitOutlined.tsx | 2 +- src/IconExplicitOutlinedFilled.tsx | 2 +- src/IconExplicitRounded.tsx | 2 +- src/IconExplicitRoundedFilled.tsx | 2 +- src/IconExplicitSharp.tsx | 2 +- src/IconExplicitSharpFilled.tsx | 2 +- src/IconExploreNearbyOutlined.tsx | 2 +- src/IconExploreNearbyOutlinedFilled.tsx | 2 +- src/IconExploreNearbyRounded.tsx | 2 +- src/IconExploreNearbyRoundedFilled.tsx | 2 +- src/IconExploreNearbySharp.tsx | 2 +- src/IconExploreNearbySharpFilled.tsx | 2 +- src/IconExploreOffOutlined.tsx | 2 +- src/IconExploreOffOutlinedFilled.tsx | 2 +- src/IconExploreOffRounded.tsx | 2 +- src/IconExploreOffRoundedFilled.tsx | 2 +- src/IconExploreOffSharp.tsx | 2 +- src/IconExploreOffSharpFilled.tsx | 2 +- src/IconExploreOutlined.tsx | 2 +- src/IconExploreOutlinedFilled.tsx | 2 +- src/IconExploreRounded.tsx | 2 +- src/IconExploreRoundedFilled.tsx | 2 +- src/IconExploreSharp.tsx | 2 +- src/IconExploreSharpFilled.tsx | 2 +- src/IconExplosionOutlined.tsx | 2 +- src/IconExplosionOutlinedFilled.tsx | 2 +- src/IconExplosionRounded.tsx | 2 +- src/IconExplosionRoundedFilled.tsx | 2 +- src/IconExplosionSharp.tsx | 2 +- src/IconExplosionSharpFilled.tsx | 2 +- src/IconExportNotesOutlined.tsx | 2 +- src/IconExportNotesOutlinedFilled.tsx | 2 +- src/IconExportNotesRounded.tsx | 2 +- src/IconExportNotesRoundedFilled.tsx | 2 +- src/IconExportNotesSharp.tsx | 2 +- src/IconExportNotesSharpFilled.tsx | 2 +- src/IconExposureNeg1Outlined.tsx | 2 +- src/IconExposureNeg1OutlinedFilled.tsx | 2 +- src/IconExposureNeg1Rounded.tsx | 2 +- src/IconExposureNeg1RoundedFilled.tsx | 2 +- src/IconExposureNeg1Sharp.tsx | 2 +- src/IconExposureNeg1SharpFilled.tsx | 2 +- src/IconExposureNeg2Outlined.tsx | 2 +- src/IconExposureNeg2OutlinedFilled.tsx | 2 +- src/IconExposureNeg2Rounded.tsx | 2 +- src/IconExposureNeg2RoundedFilled.tsx | 2 +- src/IconExposureNeg2Sharp.tsx | 2 +- src/IconExposureNeg2SharpFilled.tsx | 2 +- src/IconExposureOutlined.tsx | 2 +- src/IconExposureOutlinedFilled.tsx | 2 +- src/IconExposurePlus1Outlined.tsx | 2 +- src/IconExposurePlus1OutlinedFilled.tsx | 2 +- src/IconExposurePlus1Rounded.tsx | 2 +- src/IconExposurePlus1RoundedFilled.tsx | 2 +- src/IconExposurePlus1Sharp.tsx | 2 +- src/IconExposurePlus1SharpFilled.tsx | 2 +- src/IconExposurePlus2Outlined.tsx | 2 +- src/IconExposurePlus2OutlinedFilled.tsx | 2 +- src/IconExposurePlus2Rounded.tsx | 2 +- src/IconExposurePlus2RoundedFilled.tsx | 2 +- src/IconExposurePlus2Sharp.tsx | 2 +- src/IconExposurePlus2SharpFilled.tsx | 2 +- src/IconExposureRounded.tsx | 2 +- src/IconExposureRoundedFilled.tsx | 2 +- src/IconExposureSharp.tsx | 2 +- src/IconExposureSharpFilled.tsx | 2 +- src/IconExposureZeroOutlined.tsx | 2 +- src/IconExposureZeroOutlinedFilled.tsx | 2 +- src/IconExposureZeroRounded.tsx | 2 +- src/IconExposureZeroRoundedFilled.tsx | 2 +- src/IconExposureZeroSharp.tsx | 2 +- src/IconExposureZeroSharpFilled.tsx | 2 +- src/IconExtensionOffOutlined.tsx | 2 +- src/IconExtensionOffOutlinedFilled.tsx | 2 +- src/IconExtensionOffRounded.tsx | 2 +- src/IconExtensionOffRoundedFilled.tsx | 2 +- src/IconExtensionOffSharp.tsx | 2 +- src/IconExtensionOffSharpFilled.tsx | 2 +- src/IconExtensionOutlined.tsx | 2 +- src/IconExtensionOutlinedFilled.tsx | 2 +- src/IconExtensionRounded.tsx | 2 +- src/IconExtensionRoundedFilled.tsx | 2 +- src/IconExtensionSharp.tsx | 2 +- src/IconExtensionSharpFilled.tsx | 2 +- src/IconEyeTrackingOutlined.tsx | 2 +- src/IconEyeTrackingOutlinedFilled.tsx | 2 +- src/IconEyeTrackingRounded.tsx | 2 +- src/IconEyeTrackingRoundedFilled.tsx | 2 +- src/IconEyeTrackingSharp.tsx | 2 +- src/IconEyeTrackingSharpFilled.tsx | 2 +- src/IconEyeglassesOutlined.tsx | 2 +- src/IconEyeglassesOutlinedFilled.tsx | 2 +- src/IconEyeglassesRounded.tsx | 2 +- src/IconEyeglassesRoundedFilled.tsx | 2 +- src/IconEyeglassesSharp.tsx | 2 +- src/IconEyeglassesSharpFilled.tsx | 2 +- src/IconFace2Outlined.tsx | 2 +- src/IconFace2OutlinedFilled.tsx | 2 +- src/IconFace2Rounded.tsx | 2 +- src/IconFace2RoundedFilled.tsx | 2 +- src/IconFace2Sharp.tsx | 2 +- src/IconFace2SharpFilled.tsx | 2 +- src/IconFace3Outlined.tsx | 2 +- src/IconFace3OutlinedFilled.tsx | 2 +- src/IconFace3Rounded.tsx | 2 +- src/IconFace3RoundedFilled.tsx | 2 +- src/IconFace3Sharp.tsx | 2 +- src/IconFace3SharpFilled.tsx | 2 +- src/IconFace4Outlined.tsx | 2 +- src/IconFace4OutlinedFilled.tsx | 2 +- src/IconFace4Rounded.tsx | 2 +- src/IconFace4RoundedFilled.tsx | 2 +- src/IconFace4Sharp.tsx | 2 +- src/IconFace4SharpFilled.tsx | 2 +- src/IconFace5Outlined.tsx | 2 +- src/IconFace5OutlinedFilled.tsx | 2 +- src/IconFace5Rounded.tsx | 2 +- src/IconFace5RoundedFilled.tsx | 2 +- src/IconFace5Sharp.tsx | 2 +- src/IconFace5SharpFilled.tsx | 2 +- src/IconFace6Outlined.tsx | 2 +- src/IconFace6OutlinedFilled.tsx | 2 +- src/IconFace6Rounded.tsx | 2 +- src/IconFace6RoundedFilled.tsx | 2 +- src/IconFace6Sharp.tsx | 2 +- src/IconFace6SharpFilled.tsx | 2 +- src/IconFaceDownOutlined.tsx | 2 +- src/IconFaceDownOutlinedFilled.tsx | 2 +- src/IconFaceDownRounded.tsx | 2 +- src/IconFaceDownRoundedFilled.tsx | 2 +- src/IconFaceDownSharp.tsx | 2 +- src/IconFaceDownSharpFilled.tsx | 2 +- src/IconFaceLeftOutlined.tsx | 2 +- src/IconFaceLeftOutlinedFilled.tsx | 2 +- src/IconFaceLeftRounded.tsx | 2 +- src/IconFaceLeftRoundedFilled.tsx | 2 +- src/IconFaceLeftSharp.tsx | 2 +- src/IconFaceLeftSharpFilled.tsx | 2 +- src/IconFaceNodOutlined.tsx | 2 +- src/IconFaceNodOutlinedFilled.tsx | 2 +- src/IconFaceNodRounded.tsx | 2 +- src/IconFaceNodRoundedFilled.tsx | 2 +- src/IconFaceNodSharp.tsx | 2 +- src/IconFaceNodSharpFilled.tsx | 2 +- src/IconFaceOutlined.tsx | 2 +- src/IconFaceOutlinedFilled.tsx | 2 +- src/IconFaceRetouchingOffOutlined.tsx | 2 +- src/IconFaceRetouchingOffOutlinedFilled.tsx | 2 +- src/IconFaceRetouchingOffRounded.tsx | 2 +- src/IconFaceRetouchingOffRoundedFilled.tsx | 2 +- src/IconFaceRetouchingOffSharp.tsx | 2 +- src/IconFaceRetouchingOffSharpFilled.tsx | 2 +- src/IconFaceRightOutlined.tsx | 2 +- src/IconFaceRightOutlinedFilled.tsx | 2 +- src/IconFaceRightRounded.tsx | 2 +- src/IconFaceRightRoundedFilled.tsx | 2 +- src/IconFaceRightSharp.tsx | 2 +- src/IconFaceRightSharpFilled.tsx | 2 +- src/IconFaceRounded.tsx | 2 +- src/IconFaceRoundedFilled.tsx | 2 +- src/IconFaceShakeOutlined.tsx | 2 +- src/IconFaceShakeOutlinedFilled.tsx | 2 +- src/IconFaceShakeRounded.tsx | 2 +- src/IconFaceShakeRoundedFilled.tsx | 2 +- src/IconFaceShakeSharp.tsx | 2 +- src/IconFaceShakeSharpFilled.tsx | 2 +- src/IconFaceSharp.tsx | 2 +- src/IconFaceSharpFilled.tsx | 2 +- src/IconFaceUpOutlined.tsx | 2 +- src/IconFaceUpOutlinedFilled.tsx | 2 +- src/IconFaceUpRounded.tsx | 2 +- src/IconFaceUpRoundedFilled.tsx | 2 +- src/IconFaceUpSharp.tsx | 2 +- src/IconFaceUpSharpFilled.tsx | 2 +- src/IconFactCheckOutlined.tsx | 2 +- src/IconFactCheckOutlinedFilled.tsx | 2 +- src/IconFactCheckRounded.tsx | 2 +- src/IconFactCheckRoundedFilled.tsx | 2 +- src/IconFactCheckSharp.tsx | 2 +- src/IconFactCheckSharpFilled.tsx | 2 +- src/IconFactoryOutlined.tsx | 2 +- src/IconFactoryOutlinedFilled.tsx | 2 +- src/IconFactoryRounded.tsx | 2 +- src/IconFactoryRoundedFilled.tsx | 2 +- src/IconFactorySharp.tsx | 2 +- src/IconFactorySharpFilled.tsx | 2 +- src/IconFallingOutlined.tsx | 2 +- src/IconFallingOutlinedFilled.tsx | 2 +- src/IconFallingRounded.tsx | 2 +- src/IconFallingRoundedFilled.tsx | 2 +- src/IconFallingSharp.tsx | 2 +- src/IconFallingSharpFilled.tsx | 2 +- src/IconFamiliarFaceAndZoneOutlined.tsx | 2 +- src/IconFamiliarFaceAndZoneOutlinedFilled.tsx | 2 +- src/IconFamiliarFaceAndZoneRounded.tsx | 2 +- src/IconFamiliarFaceAndZoneRoundedFilled.tsx | 2 +- src/IconFamiliarFaceAndZoneSharp.tsx | 2 +- src/IconFamiliarFaceAndZoneSharpFilled.tsx | 2 +- src/IconFamilyHistoryOutlined.tsx | 2 +- src/IconFamilyHistoryOutlinedFilled.tsx | 2 +- src/IconFamilyHistoryRounded.tsx | 2 +- src/IconFamilyHistoryRoundedFilled.tsx | 2 +- src/IconFamilyHistorySharp.tsx | 2 +- src/IconFamilyHistorySharpFilled.tsx | 2 +- src/IconFamilyHomeOutlined.tsx | 2 +- src/IconFamilyHomeOutlinedFilled.tsx | 2 +- src/IconFamilyHomeRounded.tsx | 2 +- src/IconFamilyHomeRoundedFilled.tsx | 2 +- src/IconFamilyHomeSharp.tsx | 2 +- src/IconFamilyHomeSharpFilled.tsx | 2 +- src/IconFamilyLinkOutlined.tsx | 2 +- src/IconFamilyLinkOutlinedFilled.tsx | 2 +- src/IconFamilyLinkRounded.tsx | 2 +- src/IconFamilyLinkRoundedFilled.tsx | 2 +- src/IconFamilyLinkSharp.tsx | 2 +- src/IconFamilyLinkSharpFilled.tsx | 2 +- src/IconFamilyRestroomOutlined.tsx | 2 +- src/IconFamilyRestroomOutlinedFilled.tsx | 2 +- src/IconFamilyRestroomRounded.tsx | 2 +- src/IconFamilyRestroomRoundedFilled.tsx | 2 +- src/IconFamilyRestroomSharp.tsx | 2 +- src/IconFamilyRestroomSharpFilled.tsx | 2 +- src/IconFamilyStarOutlined.tsx | 2 +- src/IconFamilyStarOutlinedFilled.tsx | 2 +- src/IconFamilyStarRounded.tsx | 2 +- src/IconFamilyStarRoundedFilled.tsx | 2 +- src/IconFamilyStarSharp.tsx | 2 +- src/IconFamilyStarSharpFilled.tsx | 2 +- src/IconFarsightDigitalOutlined.tsx | 2 +- src/IconFarsightDigitalOutlinedFilled.tsx | 2 +- src/IconFarsightDigitalRounded.tsx | 2 +- src/IconFarsightDigitalRoundedFilled.tsx | 2 +- src/IconFarsightDigitalSharp.tsx | 2 +- src/IconFarsightDigitalSharpFilled.tsx | 2 +- src/IconFastForwardOutlined.tsx | 2 +- src/IconFastForwardOutlinedFilled.tsx | 2 +- src/IconFastForwardRounded.tsx | 2 +- src/IconFastForwardRoundedFilled.tsx | 2 +- src/IconFastForwardSharp.tsx | 2 +- src/IconFastForwardSharpFilled.tsx | 2 +- src/IconFastRewindOutlined.tsx | 2 +- src/IconFastRewindOutlinedFilled.tsx | 2 +- src/IconFastRewindRounded.tsx | 2 +- src/IconFastRewindRoundedFilled.tsx | 2 +- src/IconFastRewindSharp.tsx | 2 +- src/IconFastRewindSharpFilled.tsx | 2 +- src/IconFastfoodOutlined.tsx | 2 +- src/IconFastfoodOutlinedFilled.tsx | 2 +- src/IconFastfoodRounded.tsx | 2 +- src/IconFastfoodRoundedFilled.tsx | 2 +- src/IconFastfoodSharp.tsx | 2 +- src/IconFastfoodSharpFilled.tsx | 2 +- src/IconFaucetOutlined.tsx | 2 +- src/IconFaucetOutlinedFilled.tsx | 2 +- src/IconFaucetRounded.tsx | 2 +- src/IconFaucetRoundedFilled.tsx | 2 +- src/IconFaucetSharp.tsx | 2 +- src/IconFaucetSharpFilled.tsx | 2 +- src/IconFavoriteOutlined.tsx | 2 +- src/IconFavoriteOutlinedFilled.tsx | 2 +- src/IconFavoriteRounded.tsx | 2 +- src/IconFavoriteRoundedFilled.tsx | 2 +- src/IconFavoriteSharp.tsx | 2 +- src/IconFavoriteSharpFilled.tsx | 2 +- src/IconFaxOutlined.tsx | 2 +- src/IconFaxOutlinedFilled.tsx | 2 +- src/IconFaxRounded.tsx | 2 +- src/IconFaxRoundedFilled.tsx | 2 +- src/IconFaxSharp.tsx | 2 +- src/IconFaxSharpFilled.tsx | 2 +- src/IconFeatureSearchOutlined.tsx | 2 +- src/IconFeatureSearchOutlinedFilled.tsx | 2 +- src/IconFeatureSearchRounded.tsx | 2 +- src/IconFeatureSearchRoundedFilled.tsx | 2 +- src/IconFeatureSearchSharp.tsx | 2 +- src/IconFeatureSearchSharpFilled.tsx | 2 +- src/IconFeaturedPlayListOutlined.tsx | 2 +- src/IconFeaturedPlayListOutlinedFilled.tsx | 2 +- src/IconFeaturedPlayListRounded.tsx | 2 +- src/IconFeaturedPlayListRoundedFilled.tsx | 2 +- src/IconFeaturedPlayListSharp.tsx | 2 +- src/IconFeaturedPlayListSharpFilled.tsx | 2 +- src/IconFeaturedSeasonalAndGiftsOutlined.tsx | 2 +- src/IconFeaturedSeasonalAndGiftsOutlinedFilled.tsx | 2 +- src/IconFeaturedSeasonalAndGiftsRounded.tsx | 2 +- src/IconFeaturedSeasonalAndGiftsRoundedFilled.tsx | 2 +- src/IconFeaturedSeasonalAndGiftsSharp.tsx | 2 +- src/IconFeaturedSeasonalAndGiftsSharpFilled.tsx | 2 +- src/IconFeaturedVideoOutlined.tsx | 2 +- src/IconFeaturedVideoOutlinedFilled.tsx | 2 +- src/IconFeaturedVideoRounded.tsx | 2 +- src/IconFeaturedVideoRoundedFilled.tsx | 2 +- src/IconFeaturedVideoSharp.tsx | 2 +- src/IconFeaturedVideoSharpFilled.tsx | 2 +- src/IconFeedbackOutlined.tsx | 2 +- src/IconFeedbackOutlinedFilled.tsx | 2 +- src/IconFeedbackRounded.tsx | 2 +- src/IconFeedbackRoundedFilled.tsx | 2 +- src/IconFeedbackSharp.tsx | 2 +- src/IconFeedbackSharpFilled.tsx | 2 +- src/IconFemaleOutlined.tsx | 2 +- src/IconFemaleOutlinedFilled.tsx | 2 +- src/IconFemaleRounded.tsx | 2 +- src/IconFemaleRoundedFilled.tsx | 2 +- src/IconFemaleSharp.tsx | 2 +- src/IconFemaleSharpFilled.tsx | 2 +- src/IconFemurAltOutlined.tsx | 2 +- src/IconFemurAltOutlinedFilled.tsx | 2 +- src/IconFemurAltRounded.tsx | 2 +- src/IconFemurAltRoundedFilled.tsx | 2 +- src/IconFemurAltSharp.tsx | 2 +- src/IconFemurAltSharpFilled.tsx | 2 +- src/IconFemurOutlined.tsx | 2 +- src/IconFemurOutlinedFilled.tsx | 2 +- src/IconFemurRounded.tsx | 2 +- src/IconFemurRoundedFilled.tsx | 2 +- src/IconFemurSharp.tsx | 2 +- src/IconFemurSharpFilled.tsx | 2 +- src/IconFenceOutlined.tsx | 2 +- src/IconFenceOutlinedFilled.tsx | 2 +- src/IconFenceRounded.tsx | 2 +- src/IconFenceRoundedFilled.tsx | 2 +- src/IconFenceSharp.tsx | 2 +- src/IconFenceSharpFilled.tsx | 2 +- src/IconFertileOutlined.tsx | 2 +- src/IconFertileOutlinedFilled.tsx | 2 +- src/IconFertileRounded.tsx | 2 +- src/IconFertileRoundedFilled.tsx | 2 +- src/IconFertileSharp.tsx | 2 +- src/IconFertileSharpFilled.tsx | 2 +- src/IconFestivalOutlined.tsx | 2 +- src/IconFestivalOutlinedFilled.tsx | 2 +- src/IconFestivalRounded.tsx | 2 +- src/IconFestivalRoundedFilled.tsx | 2 +- src/IconFestivalSharp.tsx | 2 +- src/IconFestivalSharpFilled.tsx | 2 +- src/IconFiberDvrOutlined.tsx | 2 +- src/IconFiberDvrOutlinedFilled.tsx | 2 +- src/IconFiberDvrRounded.tsx | 2 +- src/IconFiberDvrRoundedFilled.tsx | 2 +- src/IconFiberDvrSharp.tsx | 2 +- src/IconFiberDvrSharpFilled.tsx | 2 +- src/IconFiberManualRecordOutlined.tsx | 2 +- src/IconFiberManualRecordOutlinedFilled.tsx | 2 +- src/IconFiberManualRecordRounded.tsx | 2 +- src/IconFiberManualRecordRoundedFilled.tsx | 2 +- src/IconFiberManualRecordSharp.tsx | 2 +- src/IconFiberManualRecordSharpFilled.tsx | 2 +- src/IconFiberNewOutlined.tsx | 2 +- src/IconFiberNewOutlinedFilled.tsx | 2 +- src/IconFiberNewRounded.tsx | 2 +- src/IconFiberNewRoundedFilled.tsx | 2 +- src/IconFiberNewSharp.tsx | 2 +- src/IconFiberNewSharpFilled.tsx | 2 +- src/IconFiberPinOutlined.tsx | 2 +- src/IconFiberPinOutlinedFilled.tsx | 2 +- src/IconFiberPinRounded.tsx | 2 +- src/IconFiberPinRoundedFilled.tsx | 2 +- src/IconFiberPinSharp.tsx | 2 +- src/IconFiberPinSharpFilled.tsx | 2 +- src/IconFiberSmartRecordOutlined.tsx | 2 +- src/IconFiberSmartRecordOutlinedFilled.tsx | 2 +- src/IconFiberSmartRecordRounded.tsx | 2 +- src/IconFiberSmartRecordRoundedFilled.tsx | 2 +- src/IconFiberSmartRecordSharp.tsx | 2 +- src/IconFiberSmartRecordSharpFilled.tsx | 2 +- src/IconFileCopyOffOutlined.tsx | 2 +- src/IconFileCopyOffOutlinedFilled.tsx | 2 +- src/IconFileCopyOffRounded.tsx | 2 +- src/IconFileCopyOffRoundedFilled.tsx | 2 +- src/IconFileCopyOffSharp.tsx | 2 +- src/IconFileCopyOffSharpFilled.tsx | 2 +- src/IconFileCopyOutlined.tsx | 2 +- src/IconFileCopyOutlinedFilled.tsx | 2 +- src/IconFileCopyRounded.tsx | 2 +- src/IconFileCopyRoundedFilled.tsx | 2 +- src/IconFileCopySharp.tsx | 2 +- src/IconFileCopySharpFilled.tsx | 2 +- src/IconFileDownloadOffOutlined.tsx | 2 +- src/IconFileDownloadOffOutlinedFilled.tsx | 2 +- src/IconFileDownloadOffRounded.tsx | 2 +- src/IconFileDownloadOffRoundedFilled.tsx | 2 +- src/IconFileDownloadOffSharp.tsx | 2 +- src/IconFileDownloadOffSharpFilled.tsx | 2 +- src/IconFileMapOutlined.tsx | 2 +- src/IconFileMapOutlinedFilled.tsx | 2 +- src/IconFileMapRounded.tsx | 2 +- src/IconFileMapRoundedFilled.tsx | 2 +- src/IconFileMapSharp.tsx | 2 +- src/IconFileMapSharpFilled.tsx | 2 +- src/IconFileOpenOutlined.tsx | 2 +- src/IconFileOpenOutlinedFilled.tsx | 2 +- src/IconFileOpenRounded.tsx | 2 +- src/IconFileOpenRoundedFilled.tsx | 2 +- src/IconFileOpenSharp.tsx | 2 +- src/IconFileOpenSharpFilled.tsx | 2 +- src/IconFilePresentOutlined.tsx | 2 +- src/IconFilePresentOutlinedFilled.tsx | 2 +- src/IconFilePresentRounded.tsx | 2 +- src/IconFilePresentRoundedFilled.tsx | 2 +- src/IconFilePresentSharp.tsx | 2 +- src/IconFilePresentSharpFilled.tsx | 2 +- src/IconFileSaveOffOutlined.tsx | 2 +- src/IconFileSaveOffOutlinedFilled.tsx | 2 +- src/IconFileSaveOffRounded.tsx | 2 +- src/IconFileSaveOffRoundedFilled.tsx | 2 +- src/IconFileSaveOffSharp.tsx | 2 +- src/IconFileSaveOffSharpFilled.tsx | 2 +- src/IconFileSaveOutlined.tsx | 2 +- src/IconFileSaveOutlinedFilled.tsx | 2 +- src/IconFileSaveRounded.tsx | 2 +- src/IconFileSaveRoundedFilled.tsx | 2 +- src/IconFileSaveSharp.tsx | 2 +- src/IconFileSaveSharpFilled.tsx | 2 +- src/IconFileUploadOffOutlined.tsx | 2 +- src/IconFileUploadOffOutlinedFilled.tsx | 2 +- src/IconFileUploadOffRounded.tsx | 2 +- src/IconFileUploadOffRoundedFilled.tsx | 2 +- src/IconFileUploadOffSharp.tsx | 2 +- src/IconFileUploadOffSharpFilled.tsx | 2 +- src/IconFilter1Outlined.tsx | 2 +- src/IconFilter1OutlinedFilled.tsx | 2 +- src/IconFilter1Rounded.tsx | 2 +- src/IconFilter1RoundedFilled.tsx | 2 +- src/IconFilter1Sharp.tsx | 2 +- src/IconFilter1SharpFilled.tsx | 2 +- src/IconFilter2Outlined.tsx | 2 +- src/IconFilter2OutlinedFilled.tsx | 2 +- src/IconFilter2Rounded.tsx | 2 +- src/IconFilter2RoundedFilled.tsx | 2 +- src/IconFilter2Sharp.tsx | 2 +- src/IconFilter2SharpFilled.tsx | 2 +- src/IconFilter3Outlined.tsx | 2 +- src/IconFilter3OutlinedFilled.tsx | 2 +- src/IconFilter3Rounded.tsx | 2 +- src/IconFilter3RoundedFilled.tsx | 2 +- src/IconFilter3Sharp.tsx | 2 +- src/IconFilter3SharpFilled.tsx | 2 +- src/IconFilter4Outlined.tsx | 2 +- src/IconFilter4OutlinedFilled.tsx | 2 +- src/IconFilter4Rounded.tsx | 2 +- src/IconFilter4RoundedFilled.tsx | 2 +- src/IconFilter4SharpFilled.tsx | 2 +- src/IconFilter5Outlined.tsx | 2 +- src/IconFilter5OutlinedFilled.tsx | 2 +- src/IconFilter5Rounded.tsx | 2 +- src/IconFilter5RoundedFilled.tsx | 2 +- src/IconFilter5Sharp.tsx | 2 +- src/IconFilter5SharpFilled.tsx | 2 +- src/IconFilter6Outlined.tsx | 2 +- src/IconFilter6OutlinedFilled.tsx | 2 +- src/IconFilter6Rounded.tsx | 2 +- src/IconFilter6RoundedFilled.tsx | 2 +- src/IconFilter6Sharp.tsx | 2 +- src/IconFilter6SharpFilled.tsx | 2 +- src/IconFilter7Outlined.tsx | 2 +- src/IconFilter7OutlinedFilled.tsx | 2 +- src/IconFilter7Rounded.tsx | 2 +- src/IconFilter7RoundedFilled.tsx | 2 +- src/IconFilter7Sharp.tsx | 2 +- src/IconFilter7SharpFilled.tsx | 2 +- src/IconFilter8Outlined.tsx | 2 +- src/IconFilter8OutlinedFilled.tsx | 2 +- src/IconFilter8Rounded.tsx | 2 +- src/IconFilter8RoundedFilled.tsx | 2 +- src/IconFilter8Sharp.tsx | 2 +- src/IconFilter8SharpFilled.tsx | 2 +- src/IconFilter9Outlined.tsx | 2 +- src/IconFilter9OutlinedFilled.tsx | 2 +- src/IconFilter9PlusOutlined.tsx | 2 +- src/IconFilter9PlusOutlinedFilled.tsx | 2 +- src/IconFilter9PlusRounded.tsx | 2 +- src/IconFilter9PlusRoundedFilled.tsx | 2 +- src/IconFilter9PlusSharp.tsx | 2 +- src/IconFilter9PlusSharpFilled.tsx | 2 +- src/IconFilter9Rounded.tsx | 2 +- src/IconFilter9RoundedFilled.tsx | 2 +- src/IconFilter9Sharp.tsx | 2 +- src/IconFilter9SharpFilled.tsx | 2 +- src/IconFilterAltOffOutlined.tsx | 2 +- src/IconFilterAltOffOutlinedFilled.tsx | 2 +- src/IconFilterAltOffRounded.tsx | 2 +- src/IconFilterAltOffRoundedFilled.tsx | 2 +- src/IconFilterAltOffSharp.tsx | 2 +- src/IconFilterAltOffSharpFilled.tsx | 2 +- src/IconFilterAltOutlined.tsx | 2 +- src/IconFilterAltOutlinedFilled.tsx | 2 +- src/IconFilterAltRounded.tsx | 2 +- src/IconFilterAltRoundedFilled.tsx | 2 +- src/IconFilterAltSharp.tsx | 2 +- src/IconFilterAltSharpFilled.tsx | 2 +- src/IconFilterBAndWOutlined.tsx | 2 +- src/IconFilterBAndWOutlinedFilled.tsx | 2 +- src/IconFilterBAndWRounded.tsx | 2 +- src/IconFilterBAndWRoundedFilled.tsx | 2 +- src/IconFilterBAndWSharp.tsx | 2 +- src/IconFilterBAndWSharpFilled.tsx | 2 +- src/IconFilterCenterFocusOutlined.tsx | 2 +- src/IconFilterCenterFocusOutlinedFilled.tsx | 2 +- src/IconFilterCenterFocusRounded.tsx | 2 +- src/IconFilterCenterFocusRoundedFilled.tsx | 2 +- src/IconFilterCenterFocusSharp.tsx | 2 +- src/IconFilterCenterFocusSharpFilled.tsx | 2 +- src/IconFilterDramaOutlined.tsx | 2 +- src/IconFilterDramaOutlinedFilled.tsx | 2 +- src/IconFilterDramaRounded.tsx | 2 +- src/IconFilterDramaRoundedFilled.tsx | 2 +- src/IconFilterDramaSharp.tsx | 2 +- src/IconFilterDramaSharpFilled.tsx | 2 +- src/IconFilterFramesOutlined.tsx | 2 +- src/IconFilterFramesOutlinedFilled.tsx | 2 +- src/IconFilterFramesRounded.tsx | 2 +- src/IconFilterFramesRoundedFilled.tsx | 2 +- src/IconFilterFramesSharp.tsx | 2 +- src/IconFilterFramesSharpFilled.tsx | 2 +- src/IconFilterHdrOutlined.tsx | 2 +- src/IconFilterHdrOutlinedFilled.tsx | 2 +- src/IconFilterHdrRounded.tsx | 2 +- src/IconFilterHdrRoundedFilled.tsx | 2 +- src/IconFilterHdrSharp.tsx | 2 +- src/IconFilterHdrSharpFilled.tsx | 2 +- src/IconFilterListOffOutlined.tsx | 2 +- src/IconFilterListOffOutlinedFilled.tsx | 2 +- src/IconFilterListOffRounded.tsx | 2 +- src/IconFilterListOffRoundedFilled.tsx | 2 +- src/IconFilterListOffSharp.tsx | 2 +- src/IconFilterListOffSharpFilled.tsx | 2 +- src/IconFilterListOutlined.tsx | 2 +- src/IconFilterListOutlinedFilled.tsx | 2 +- src/IconFilterListRounded.tsx | 2 +- src/IconFilterListRoundedFilled.tsx | 2 +- src/IconFilterListSharp.tsx | 2 +- src/IconFilterListSharpFilled.tsx | 2 +- src/IconFilterNoneOutlined.tsx | 2 +- src/IconFilterNoneOutlinedFilled.tsx | 2 +- src/IconFilterNoneRounded.tsx | 2 +- src/IconFilterNoneRoundedFilled.tsx | 2 +- src/IconFilterNoneSharp.tsx | 2 +- src/IconFilterNoneSharpFilled.tsx | 2 +- src/IconFilterOutlined.tsx | 2 +- src/IconFilterOutlinedFilled.tsx | 2 +- src/IconFilterRetroluxOutlined.tsx | 2 +- src/IconFilterRetroluxOutlinedFilled.tsx | 2 +- src/IconFilterRetroluxRounded.tsx | 2 +- src/IconFilterRetroluxRoundedFilled.tsx | 2 +- src/IconFilterRetroluxSharp.tsx | 2 +- src/IconFilterRetroluxSharpFilled.tsx | 2 +- src/IconFilterRounded.tsx | 2 +- src/IconFilterRoundedFilled.tsx | 2 +- src/IconFilterSharp.tsx | 2 +- src/IconFilterSharpFilled.tsx | 2 +- src/IconFilterTiltShiftOutlined.tsx | 2 +- src/IconFilterTiltShiftOutlinedFilled.tsx | 2 +- src/IconFilterTiltShiftRounded.tsx | 2 +- src/IconFilterTiltShiftRoundedFilled.tsx | 2 +- src/IconFilterTiltShiftSharp.tsx | 2 +- src/IconFilterTiltShiftSharpFilled.tsx | 2 +- src/IconFilterVintageOutlined.tsx | 2 +- src/IconFilterVintageOutlinedFilled.tsx | 2 +- src/IconFilterVintageRounded.tsx | 2 +- src/IconFilterVintageRoundedFilled.tsx | 2 +- src/IconFilterVintageSharp.tsx | 2 +- src/IconFilterVintageSharpFilled.tsx | 2 +- src/IconFinanceChipOutlined.tsx | 2 +- src/IconFinanceChipOutlinedFilled.tsx | 2 +- src/IconFinanceChipRounded.tsx | 2 +- src/IconFinanceChipRoundedFilled.tsx | 2 +- src/IconFinanceChipSharp.tsx | 2 +- src/IconFinanceChipSharpFilled.tsx | 2 +- src/IconFinanceModeOutlined.tsx | 2 +- src/IconFinanceModeOutlinedFilled.tsx | 2 +- src/IconFinanceModeRounded.tsx | 2 +- src/IconFinanceModeRoundedFilled.tsx | 2 +- src/IconFinanceModeSharp.tsx | 2 +- src/IconFinanceModeSharpFilled.tsx | 2 +- src/IconFinanceOutlined.tsx | 2 +- src/IconFinanceOutlinedFilled.tsx | 2 +- src/IconFinanceRounded.tsx | 2 +- src/IconFinanceRoundedFilled.tsx | 2 +- src/IconFinanceSharp.tsx | 2 +- src/IconFinanceSharpFilled.tsx | 2 +- src/IconFindInPageOutlined.tsx | 2 +- src/IconFindInPageOutlinedFilled.tsx | 2 +- src/IconFindInPageRounded.tsx | 2 +- src/IconFindInPageRoundedFilled.tsx | 2 +- src/IconFindInPageSharp.tsx | 2 +- src/IconFindInPageSharpFilled.tsx | 2 +- src/IconFindReplaceOutlined.tsx | 2 +- src/IconFindReplaceOutlinedFilled.tsx | 2 +- src/IconFindReplaceRounded.tsx | 2 +- src/IconFindReplaceRoundedFilled.tsx | 2 +- src/IconFindReplaceSharp.tsx | 2 +- src/IconFindReplaceSharpFilled.tsx | 2 +- src/IconFingerprintOffOutlined.tsx | 2 +- src/IconFingerprintOffOutlinedFilled.tsx | 2 +- src/IconFingerprintOffRounded.tsx | 2 +- src/IconFingerprintOffRoundedFilled.tsx | 2 +- src/IconFingerprintOffSharp.tsx | 2 +- src/IconFingerprintOffSharpFilled.tsx | 2 +- src/IconFingerprintOutlined.tsx | 2 +- src/IconFingerprintOutlinedFilled.tsx | 2 +- src/IconFingerprintRounded.tsx | 2 +- src/IconFingerprintRoundedFilled.tsx | 2 +- src/IconFingerprintSharp.tsx | 2 +- src/IconFingerprintSharpFilled.tsx | 2 +- src/IconFireExtinguisherOutlined.tsx | 2 +- src/IconFireExtinguisherOutlinedFilled.tsx | 2 +- src/IconFireExtinguisherRounded.tsx | 2 +- src/IconFireExtinguisherRoundedFilled.tsx | 2 +- src/IconFireExtinguisherSharp.tsx | 2 +- src/IconFireExtinguisherSharpFilled.tsx | 2 +- src/IconFireHydrantOutlined.tsx | 2 +- src/IconFireHydrantOutlinedFilled.tsx | 2 +- src/IconFireHydrantRounded.tsx | 2 +- src/IconFireHydrantRoundedFilled.tsx | 2 +- src/IconFireHydrantSharp.tsx | 2 +- src/IconFireHydrantSharpFilled.tsx | 2 +- src/IconFireTruckOutlined.tsx | 2 +- src/IconFireTruckOutlinedFilled.tsx | 2 +- src/IconFireTruckRounded.tsx | 2 +- src/IconFireTruckRoundedFilled.tsx | 2 +- src/IconFireTruckSharp.tsx | 2 +- src/IconFireTruckSharpFilled.tsx | 2 +- src/IconFireplaceOutlined.tsx | 2 +- src/IconFireplaceOutlinedFilled.tsx | 2 +- src/IconFireplaceRounded.tsx | 2 +- src/IconFireplaceRoundedFilled.tsx | 2 +- src/IconFireplaceSharp.tsx | 2 +- src/IconFireplaceSharpFilled.tsx | 2 +- src/IconFirstPageOutlined.tsx | 2 +- src/IconFirstPageOutlinedFilled.tsx | 2 +- src/IconFirstPageRounded.tsx | 2 +- src/IconFirstPageRoundedFilled.tsx | 2 +- src/IconFirstPageSharp.tsx | 2 +- src/IconFirstPageSharpFilled.tsx | 2 +- src/IconFitPageOutlined.tsx | 2 +- src/IconFitPageOutlinedFilled.tsx | 2 +- src/IconFitPageRounded.tsx | 2 +- src/IconFitPageRoundedFilled.tsx | 2 +- src/IconFitPageSharp.tsx | 2 +- src/IconFitPageSharpFilled.tsx | 2 +- src/IconFitScreenOutlined.tsx | 2 +- src/IconFitScreenOutlinedFilled.tsx | 2 +- src/IconFitScreenRounded.tsx | 2 +- src/IconFitScreenRoundedFilled.tsx | 2 +- src/IconFitScreenSharp.tsx | 2 +- src/IconFitScreenSharpFilled.tsx | 2 +- src/IconFitWidthOutlined.tsx | 2 +- src/IconFitWidthOutlinedFilled.tsx | 2 +- src/IconFitWidthRounded.tsx | 2 +- src/IconFitWidthRoundedFilled.tsx | 2 +- src/IconFitWidthSharp.tsx | 2 +- src/IconFitWidthSharpFilled.tsx | 2 +- src/IconFitnessCenterOutlined.tsx | 2 +- src/IconFitnessCenterOutlinedFilled.tsx | 2 +- src/IconFitnessCenterRounded.tsx | 2 +- src/IconFitnessCenterRoundedFilled.tsx | 2 +- src/IconFitnessCenterSharp.tsx | 2 +- src/IconFitnessCenterSharpFilled.tsx | 2 +- src/IconFitnessTrackerOutlined.tsx | 2 +- src/IconFitnessTrackerOutlinedFilled.tsx | 2 +- src/IconFitnessTrackerRounded.tsx | 2 +- src/IconFitnessTrackerRoundedFilled.tsx | 2 +- src/IconFitnessTrackerSharp.tsx | 2 +- src/IconFitnessTrackerSharpFilled.tsx | 2 +- src/IconFlag2Outlined.tsx | 2 +- src/IconFlag2OutlinedFilled.tsx | 2 +- src/IconFlag2Rounded.tsx | 2 +- src/IconFlag2RoundedFilled.tsx | 2 +- src/IconFlag2Sharp.tsx | 2 +- src/IconFlag2SharpFilled.tsx | 2 +- src/IconFlagCircleOutlined.tsx | 2 +- src/IconFlagCircleOutlinedFilled.tsx | 2 +- src/IconFlagCircleRounded.tsx | 2 +- src/IconFlagCircleRoundedFilled.tsx | 2 +- src/IconFlagCircleSharp.tsx | 2 +- src/IconFlagCircleSharpFilled.tsx | 2 +- src/IconFlagOutlined.tsx | 2 +- src/IconFlagOutlinedFilled.tsx | 2 +- src/IconFlagRounded.tsx | 2 +- src/IconFlagRoundedFilled.tsx | 2 +- src/IconFlagSharp.tsx | 2 +- src/IconFlagSharpFilled.tsx | 2 +- src/IconFlakyOutlined.tsx | 2 +- src/IconFlakyOutlinedFilled.tsx | 2 +- src/IconFlakyRounded.tsx | 2 +- src/IconFlakyRoundedFilled.tsx | 2 +- src/IconFlakySharp.tsx | 2 +- src/IconFlakySharpFilled.tsx | 2 +- src/IconFlareOutlined.tsx | 2 +- src/IconFlareOutlinedFilled.tsx | 2 +- src/IconFlareRounded.tsx | 2 +- src/IconFlareRoundedFilled.tsx | 2 +- src/IconFlareSharp.tsx | 2 +- src/IconFlareSharpFilled.tsx | 2 +- src/IconFlashAutoOutlined.tsx | 2 +- src/IconFlashAutoOutlinedFilled.tsx | 2 +- src/IconFlashAutoRounded.tsx | 2 +- src/IconFlashAutoRoundedFilled.tsx | 2 +- src/IconFlashAutoSharp.tsx | 2 +- src/IconFlashAutoSharpFilled.tsx | 2 +- src/IconFlashOffOutlined.tsx | 2 +- src/IconFlashOffOutlinedFilled.tsx | 2 +- src/IconFlashOffRounded.tsx | 2 +- src/IconFlashOffRoundedFilled.tsx | 2 +- src/IconFlashOffSharp.tsx | 2 +- src/IconFlashOffSharpFilled.tsx | 2 +- src/IconFlashOnOutlined.tsx | 2 +- src/IconFlashOnOutlinedFilled.tsx | 2 +- src/IconFlashOnRounded.tsx | 2 +- src/IconFlashOnRoundedFilled.tsx | 2 +- src/IconFlashOnSharp.tsx | 2 +- src/IconFlashOnSharpFilled.tsx | 2 +- src/IconFlashlightOffOutlined.tsx | 2 +- src/IconFlashlightOffOutlinedFilled.tsx | 2 +- src/IconFlashlightOffRounded.tsx | 2 +- src/IconFlashlightOffRoundedFilled.tsx | 2 +- src/IconFlashlightOffSharp.tsx | 2 +- src/IconFlashlightOffSharpFilled.tsx | 2 +- src/IconFlashlightOnOutlined.tsx | 2 +- src/IconFlashlightOnOutlinedFilled.tsx | 2 +- src/IconFlashlightOnRounded.tsx | 2 +- src/IconFlashlightOnRoundedFilled.tsx | 2 +- src/IconFlashlightOnSharp.tsx | 2 +- src/IconFlashlightOnSharpFilled.tsx | 2 +- src/IconFlatwareOutlined.tsx | 2 +- src/IconFlatwareOutlinedFilled.tsx | 2 +- src/IconFlatwareRounded.tsx | 2 +- src/IconFlatwareRoundedFilled.tsx | 2 +- src/IconFlatwareSharp.tsx | 2 +- src/IconFlatwareSharpFilled.tsx | 2 +- src/IconFlexDirectionOutlined.tsx | 2 +- src/IconFlexDirectionOutlinedFilled.tsx | 2 +- src/IconFlexDirectionRounded.tsx | 2 +- src/IconFlexDirectionRoundedFilled.tsx | 2 +- src/IconFlexDirectionSharp.tsx | 2 +- src/IconFlexDirectionSharpFilled.tsx | 2 +- src/IconFlexNoWrapOutlined.tsx | 2 +- src/IconFlexNoWrapOutlinedFilled.tsx | 2 +- src/IconFlexNoWrapRounded.tsx | 2 +- src/IconFlexNoWrapRoundedFilled.tsx | 2 +- src/IconFlexNoWrapSharp.tsx | 2 +- src/IconFlexNoWrapSharpFilled.tsx | 2 +- src/IconFlexWrapOutlined.tsx | 2 +- src/IconFlexWrapOutlinedFilled.tsx | 2 +- src/IconFlexWrapRounded.tsx | 2 +- src/IconFlexWrapRoundedFilled.tsx | 2 +- src/IconFlexWrapSharp.tsx | 2 +- src/IconFlexWrapSharpFilled.tsx | 2 +- src/IconFlightClassOutlined.tsx | 2 +- src/IconFlightClassOutlinedFilled.tsx | 2 +- src/IconFlightClassRounded.tsx | 2 +- src/IconFlightClassRoundedFilled.tsx | 2 +- src/IconFlightClassSharp.tsx | 2 +- src/IconFlightClassSharpFilled.tsx | 2 +- src/IconFlightLandOutlined.tsx | 2 +- src/IconFlightLandOutlinedFilled.tsx | 2 +- src/IconFlightLandRounded.tsx | 2 +- src/IconFlightLandRoundedFilled.tsx | 2 +- src/IconFlightLandSharp.tsx | 2 +- src/IconFlightLandSharpFilled.tsx | 2 +- src/IconFlightOutlined.tsx | 2 +- src/IconFlightOutlinedFilled.tsx | 2 +- src/IconFlightRounded.tsx | 2 +- src/IconFlightRoundedFilled.tsx | 2 +- src/IconFlightSharp.tsx | 2 +- src/IconFlightSharpFilled.tsx | 2 +- src/IconFlightTakeoffOutlined.tsx | 2 +- src/IconFlightTakeoffOutlinedFilled.tsx | 2 +- src/IconFlightTakeoffRounded.tsx | 2 +- src/IconFlightTakeoffRoundedFilled.tsx | 2 +- src/IconFlightTakeoffSharp.tsx | 2 +- src/IconFlightTakeoffSharpFilled.tsx | 2 +- src/IconFlightsAndHotelsOutlined.tsx | 2 +- src/IconFlightsAndHotelsOutlinedFilled.tsx | 2 +- src/IconFlightsAndHotelsRounded.tsx | 2 +- src/IconFlightsAndHotelsRoundedFilled.tsx | 2 +- src/IconFlightsAndHotelsSharp.tsx | 2 +- src/IconFlightsAndHotelsSharpFilled.tsx | 2 +- src/IconFlipCameraAndroidOutlined.tsx | 2 +- src/IconFlipCameraAndroidOutlinedFilled.tsx | 2 +- src/IconFlipCameraAndroidRounded.tsx | 2 +- src/IconFlipCameraAndroidRoundedFilled.tsx | 2 +- src/IconFlipCameraAndroidSharp.tsx | 2 +- src/IconFlipCameraAndroidSharpFilled.tsx | 2 +- src/IconFlipCameraIosOutlined.tsx | 2 +- src/IconFlipCameraIosOutlinedFilled.tsx | 2 +- src/IconFlipCameraIosRounded.tsx | 2 +- src/IconFlipCameraIosRoundedFilled.tsx | 2 +- src/IconFlipCameraIosSharp.tsx | 2 +- src/IconFlipCameraIosSharpFilled.tsx | 2 +- src/IconFlipOutlined.tsx | 2 +- src/IconFlipOutlinedFilled.tsx | 2 +- src/IconFlipRounded.tsx | 2 +- src/IconFlipRoundedFilled.tsx | 2 +- src/IconFlipSharp.tsx | 2 +- src/IconFlipSharpFilled.tsx | 2 +- src/IconFlipToBackOutlined.tsx | 2 +- src/IconFlipToBackOutlinedFilled.tsx | 2 +- src/IconFlipToBackRounded.tsx | 2 +- src/IconFlipToBackRoundedFilled.tsx | 2 +- src/IconFlipToBackSharp.tsx | 2 +- src/IconFlipToBackSharpFilled.tsx | 2 +- src/IconFlipToFrontOutlined.tsx | 2 +- src/IconFlipToFrontOutlinedFilled.tsx | 2 +- src/IconFlipToFrontRounded.tsx | 2 +- src/IconFlipToFrontRoundedFilled.tsx | 2 +- src/IconFlipToFrontSharp.tsx | 2 +- src/IconFlipToFrontSharpFilled.tsx | 2 +- src/IconFloatLandscape2Outlined.tsx | 2 +- src/IconFloatLandscape2OutlinedFilled.tsx | 2 +- src/IconFloatLandscape2Rounded.tsx | 2 +- src/IconFloatLandscape2RoundedFilled.tsx | 2 +- src/IconFloatLandscape2Sharp.tsx | 2 +- src/IconFloatLandscape2SharpFilled.tsx | 2 +- src/IconFloatPortrait2Outlined.tsx | 2 +- src/IconFloatPortrait2OutlinedFilled.tsx | 2 +- src/IconFloatPortrait2Rounded.tsx | 2 +- src/IconFloatPortrait2RoundedFilled.tsx | 2 +- src/IconFloatPortrait2Sharp.tsx | 2 +- src/IconFloatPortrait2SharpFilled.tsx | 2 +- src/IconFloodOutlined.tsx | 2 +- src/IconFloodOutlinedFilled.tsx | 2 +- src/IconFloodRounded.tsx | 2 +- src/IconFloodRoundedFilled.tsx | 2 +- src/IconFloodSharp.tsx | 2 +- src/IconFloodSharpFilled.tsx | 2 +- src/IconFloorLampOutlined.tsx | 2 +- src/IconFloorLampOutlinedFilled.tsx | 2 +- src/IconFloorLampRounded.tsx | 2 +- src/IconFloorLampRoundedFilled.tsx | 2 +- src/IconFloorLampSharp.tsx | 2 +- src/IconFloorLampSharpFilled.tsx | 2 +- src/IconFloorOutlined.tsx | 2 +- src/IconFloorOutlinedFilled.tsx | 2 +- src/IconFloorRounded.tsx | 2 +- src/IconFloorRoundedFilled.tsx | 2 +- src/IconFloorSharp.tsx | 2 +- src/IconFloorSharpFilled.tsx | 2 +- src/IconFlowsheetOutlined.tsx | 2 +- src/IconFlowsheetOutlinedFilled.tsx | 2 +- src/IconFlowsheetRounded.tsx | 2 +- src/IconFlowsheetRoundedFilled.tsx | 2 +- src/IconFlowsheetSharp.tsx | 2 +- src/IconFlowsheetSharpFilled.tsx | 2 +- src/IconFluidBalanceOutlined.tsx | 2 +- src/IconFluidBalanceOutlinedFilled.tsx | 2 +- src/IconFluidBalanceRounded.tsx | 2 +- src/IconFluidBalanceRoundedFilled.tsx | 2 +- src/IconFluidBalanceSharp.tsx | 2 +- src/IconFluidBalanceSharpFilled.tsx | 2 +- src/IconFluidMedOutlined.tsx | 2 +- src/IconFluidMedOutlinedFilled.tsx | 2 +- src/IconFluidMedRounded.tsx | 2 +- src/IconFluidMedRoundedFilled.tsx | 2 +- src/IconFluidMedSharp.tsx | 2 +- src/IconFluidMedSharpFilled.tsx | 2 +- src/IconFluidOutlined.tsx | 2 +- src/IconFluidOutlinedFilled.tsx | 2 +- src/IconFluidRounded.tsx | 2 +- src/IconFluidRoundedFilled.tsx | 2 +- src/IconFluidSharp.tsx | 2 +- src/IconFluidSharpFilled.tsx | 2 +- src/IconFluorescentOutlined.tsx | 2 +- src/IconFluorescentOutlinedFilled.tsx | 2 +- src/IconFluorescentRounded.tsx | 2 +- src/IconFluorescentRoundedFilled.tsx | 2 +- src/IconFluorescentSharp.tsx | 2 +- src/IconFluorescentSharpFilled.tsx | 2 +- src/IconFlutterDashOutlined.tsx | 2 +- src/IconFlutterDashOutlinedFilled.tsx | 2 +- src/IconFlutterDashRounded.tsx | 2 +- src/IconFlutterDashRoundedFilled.tsx | 2 +- src/IconFlutterDashSharp.tsx | 2 +- src/IconFlutterDashSharpFilled.tsx | 2 +- src/IconFlutterOutlined.tsx | 2 +- src/IconFlutterOutlinedFilled.tsx | 2 +- src/IconFlutterRounded.tsx | 2 +- src/IconFlutterRoundedFilled.tsx | 2 +- src/IconFlutterSharp.tsx | 2 +- src/IconFlutterSharpFilled.tsx | 2 +- src/IconFlyoverOutlined.tsx | 2 +- src/IconFlyoverOutlinedFilled.tsx | 2 +- src/IconFlyoverRounded.tsx | 2 +- src/IconFlyoverRoundedFilled.tsx | 2 +- src/IconFlyoverSharp.tsx | 2 +- src/IconFlyoverSharpFilled.tsx | 2 +- src/IconFmdBadOutlined.tsx | 2 +- src/IconFmdBadOutlinedFilled.tsx | 2 +- src/IconFmdBadRounded.tsx | 2 +- src/IconFmdBadRoundedFilled.tsx | 2 +- src/IconFmdBadSharp.tsx | 2 +- src/IconFmdBadSharpFilled.tsx | 2 +- src/IconFoggyOutlined.tsx | 2 +- src/IconFoggyOutlinedFilled.tsx | 2 +- src/IconFoggyRounded.tsx | 2 +- src/IconFoggyRoundedFilled.tsx | 2 +- src/IconFoggySharp.tsx | 2 +- src/IconFoggySharpFilled.tsx | 2 +- src/IconFoldedHandsOutlined.tsx | 2 +- src/IconFoldedHandsOutlinedFilled.tsx | 2 +- src/IconFoldedHandsRounded.tsx | 2 +- src/IconFoldedHandsRoundedFilled.tsx | 2 +- src/IconFoldedHandsSharp.tsx | 2 +- src/IconFoldedHandsSharpFilled.tsx | 2 +- src/IconFolderCopyOutlined.tsx | 2 +- src/IconFolderCopyOutlinedFilled.tsx | 2 +- src/IconFolderCopyRounded.tsx | 2 +- src/IconFolderCopyRoundedFilled.tsx | 2 +- src/IconFolderCopySharp.tsx | 2 +- src/IconFolderCopySharpFilled.tsx | 2 +- src/IconFolderDataOutlined.tsx | 2 +- src/IconFolderDataOutlinedFilled.tsx | 2 +- src/IconFolderDataRounded.tsx | 2 +- src/IconFolderDataRoundedFilled.tsx | 2 +- src/IconFolderDataSharp.tsx | 2 +- src/IconFolderDataSharpFilled.tsx | 2 +- src/IconFolderDeleteOutlined.tsx | 2 +- src/IconFolderDeleteOutlinedFilled.tsx | 2 +- src/IconFolderDeleteRounded.tsx | 2 +- src/IconFolderDeleteRoundedFilled.tsx | 2 +- src/IconFolderDeleteSharp.tsx | 2 +- src/IconFolderDeleteSharpFilled.tsx | 2 +- src/IconFolderLimitedOutlined.tsx | 2 +- src/IconFolderLimitedOutlinedFilled.tsx | 2 +- src/IconFolderLimitedRounded.tsx | 2 +- src/IconFolderLimitedRoundedFilled.tsx | 2 +- src/IconFolderLimitedSharp.tsx | 2 +- src/IconFolderLimitedSharpFilled.tsx | 2 +- src/IconFolderManagedOutlined.tsx | 2 +- src/IconFolderManagedOutlinedFilled.tsx | 2 +- src/IconFolderManagedRounded.tsx | 2 +- src/IconFolderManagedRoundedFilled.tsx | 2 +- src/IconFolderManagedSharp.tsx | 2 +- src/IconFolderManagedSharpFilled.tsx | 2 +- src/IconFolderOffOutlined.tsx | 2 +- src/IconFolderOffOutlinedFilled.tsx | 2 +- src/IconFolderOffRounded.tsx | 2 +- src/IconFolderOffRoundedFilled.tsx | 2 +- src/IconFolderOffSharp.tsx | 2 +- src/IconFolderOffSharpFilled.tsx | 2 +- src/IconFolderOpenOutlined.tsx | 2 +- src/IconFolderOpenOutlinedFilled.tsx | 2 +- src/IconFolderOpenRounded.tsx | 2 +- src/IconFolderOpenRoundedFilled.tsx | 2 +- src/IconFolderOpenSharp.tsx | 2 +- src/IconFolderOpenSharpFilled.tsx | 2 +- src/IconFolderOutlined.tsx | 2 +- src/IconFolderOutlinedFilled.tsx | 2 +- src/IconFolderRounded.tsx | 2 +- src/IconFolderRoundedFilled.tsx | 2 +- src/IconFolderSharedOutlined.tsx | 2 +- src/IconFolderSharedOutlinedFilled.tsx | 2 +- src/IconFolderSharedRounded.tsx | 2 +- src/IconFolderSharedRoundedFilled.tsx | 2 +- src/IconFolderSharedSharp.tsx | 2 +- src/IconFolderSharedSharpFilled.tsx | 2 +- src/IconFolderSharp.tsx | 2 +- src/IconFolderSharpFilled.tsx | 2 +- src/IconFolderSpecialOutlined.tsx | 2 +- src/IconFolderSpecialOutlinedFilled.tsx | 2 +- src/IconFolderSpecialRounded.tsx | 2 +- src/IconFolderSpecialRoundedFilled.tsx | 2 +- src/IconFolderSpecialSharp.tsx | 2 +- src/IconFolderSpecialSharpFilled.tsx | 2 +- src/IconFolderSupervisedOutlined.tsx | 2 +- src/IconFolderSupervisedOutlinedFilled.tsx | 2 +- src/IconFolderSupervisedRounded.tsx | 2 +- src/IconFolderSupervisedRoundedFilled.tsx | 2 +- src/IconFolderSupervisedSharp.tsx | 2 +- src/IconFolderSupervisedSharpFilled.tsx | 2 +- src/IconFolderZipOutlined.tsx | 2 +- src/IconFolderZipOutlinedFilled.tsx | 2 +- src/IconFolderZipRounded.tsx | 2 +- src/IconFolderZipRoundedFilled.tsx | 2 +- src/IconFolderZipSharp.tsx | 2 +- src/IconFolderZipSharpFilled.tsx | 2 +- src/IconFollowTheSignsOutlined.tsx | 2 +- src/IconFollowTheSignsOutlinedFilled.tsx | 2 +- src/IconFollowTheSignsRounded.tsx | 2 +- src/IconFollowTheSignsRoundedFilled.tsx | 2 +- src/IconFollowTheSignsSharp.tsx | 2 +- src/IconFollowTheSignsSharpFilled.tsx | 2 +- src/IconFontDownloadOffOutlined.tsx | 2 +- src/IconFontDownloadOffOutlinedFilled.tsx | 2 +- src/IconFontDownloadOffRounded.tsx | 2 +- src/IconFontDownloadOffRoundedFilled.tsx | 2 +- src/IconFontDownloadOffSharp.tsx | 2 +- src/IconFontDownloadOffSharpFilled.tsx | 2 +- src/IconFontDownloadOutlined.tsx | 2 +- src/IconFontDownloadOutlinedFilled.tsx | 2 +- src/IconFontDownloadRounded.tsx | 2 +- src/IconFontDownloadRoundedFilled.tsx | 2 +- src/IconFontDownloadSharp.tsx | 2 +- src/IconFontDownloadSharpFilled.tsx | 2 +- src/IconFoodBankOutlined.tsx | 2 +- src/IconFoodBankOutlinedFilled.tsx | 2 +- src/IconFoodBankRounded.tsx | 2 +- src/IconFoodBankRoundedFilled.tsx | 2 +- src/IconFoodBankSharp.tsx | 2 +- src/IconFoodBankSharpFilled.tsx | 2 +- src/IconFootBonesOutlined.tsx | 2 +- src/IconFootBonesOutlinedFilled.tsx | 2 +- src/IconFootBonesRounded.tsx | 2 +- src/IconFootBonesRoundedFilled.tsx | 2 +- src/IconFootBonesSharp.tsx | 2 +- src/IconFootBonesSharpFilled.tsx | 2 +- src/IconFootprintOutlined.tsx | 2 +- src/IconFootprintOutlinedFilled.tsx | 2 +- src/IconFootprintRounded.tsx | 2 +- src/IconFootprintRoundedFilled.tsx | 2 +- src/IconFootprintSharp.tsx | 2 +- src/IconFootprintSharpFilled.tsx | 2 +- src/IconForYouOutlined.tsx | 2 +- src/IconForYouOutlinedFilled.tsx | 2 +- src/IconForYouRounded.tsx | 2 +- src/IconForYouRoundedFilled.tsx | 2 +- src/IconForYouSharp.tsx | 2 +- src/IconForYouSharpFilled.tsx | 2 +- src/IconForestOutlined.tsx | 2 +- src/IconForestOutlinedFilled.tsx | 2 +- src/IconForestRounded.tsx | 2 +- src/IconForestRoundedFilled.tsx | 2 +- src/IconForestSharp.tsx | 2 +- src/IconForestSharpFilled.tsx | 2 +- src/IconForkLeftOutlined.tsx | 2 +- src/IconForkLeftOutlinedFilled.tsx | 2 +- src/IconForkLeftRounded.tsx | 2 +- src/IconForkLeftRoundedFilled.tsx | 2 +- src/IconForkLeftSharp.tsx | 2 +- src/IconForkLeftSharpFilled.tsx | 2 +- src/IconForkRightOutlined.tsx | 2 +- src/IconForkRightOutlinedFilled.tsx | 2 +- src/IconForkRightRounded.tsx | 2 +- src/IconForkRightRoundedFilled.tsx | 2 +- src/IconForkRightSharp.tsx | 2 +- src/IconForkRightSharpFilled.tsx | 2 +- src/IconForkliftOutlined.tsx | 2 +- src/IconForkliftOutlinedFilled.tsx | 2 +- src/IconForkliftRounded.tsx | 2 +- src/IconForkliftRoundedFilled.tsx | 2 +- src/IconForkliftSharp.tsx | 2 +- src/IconForkliftSharpFilled.tsx | 2 +- src/IconFormatAlignCenterOutlined.tsx | 2 +- src/IconFormatAlignCenterOutlinedFilled.tsx | 2 +- src/IconFormatAlignCenterRounded.tsx | 2 +- src/IconFormatAlignCenterRoundedFilled.tsx | 2 +- src/IconFormatAlignCenterSharp.tsx | 2 +- src/IconFormatAlignCenterSharpFilled.tsx | 2 +- src/IconFormatAlignJustifyOutlined.tsx | 2 +- src/IconFormatAlignJustifyOutlinedFilled.tsx | 2 +- src/IconFormatAlignJustifyRounded.tsx | 2 +- src/IconFormatAlignJustifyRoundedFilled.tsx | 2 +- src/IconFormatAlignJustifySharp.tsx | 2 +- src/IconFormatAlignJustifySharpFilled.tsx | 2 +- src/IconFormatAlignLeftOutlined.tsx | 2 +- src/IconFormatAlignLeftOutlinedFilled.tsx | 2 +- src/IconFormatAlignLeftRounded.tsx | 2 +- src/IconFormatAlignLeftRoundedFilled.tsx | 2 +- src/IconFormatAlignLeftSharp.tsx | 2 +- src/IconFormatAlignLeftSharpFilled.tsx | 2 +- src/IconFormatAlignRightOutlined.tsx | 2 +- src/IconFormatAlignRightOutlinedFilled.tsx | 2 +- src/IconFormatAlignRightRounded.tsx | 2 +- src/IconFormatAlignRightRoundedFilled.tsx | 2 +- src/IconFormatAlignRightSharp.tsx | 2 +- src/IconFormatAlignRightSharpFilled.tsx | 2 +- src/IconFormatBoldOutlined.tsx | 2 +- src/IconFormatBoldOutlinedFilled.tsx | 2 +- src/IconFormatBoldRounded.tsx | 2 +- src/IconFormatBoldRoundedFilled.tsx | 2 +- src/IconFormatBoldSharp.tsx | 2 +- src/IconFormatBoldSharpFilled.tsx | 2 +- src/IconFormatClearOutlined.tsx | 2 +- src/IconFormatClearOutlinedFilled.tsx | 2 +- src/IconFormatClearRounded.tsx | 2 +- src/IconFormatClearRoundedFilled.tsx | 2 +- src/IconFormatClearSharp.tsx | 2 +- src/IconFormatClearSharpFilled.tsx | 2 +- src/IconFormatColorFillOutlined.tsx | 2 +- src/IconFormatColorFillOutlinedFilled.tsx | 2 +- src/IconFormatColorFillRounded.tsx | 2 +- src/IconFormatColorFillRoundedFilled.tsx | 2 +- src/IconFormatColorFillSharp.tsx | 2 +- src/IconFormatColorFillSharpFilled.tsx | 2 +- src/IconFormatColorResetOutlined.tsx | 2 +- src/IconFormatColorResetOutlinedFilled.tsx | 2 +- src/IconFormatColorResetRounded.tsx | 2 +- src/IconFormatColorResetRoundedFilled.tsx | 2 +- src/IconFormatColorResetSharp.tsx | 2 +- src/IconFormatColorResetSharpFilled.tsx | 2 +- src/IconFormatColorTextOutlined.tsx | 2 +- src/IconFormatColorTextOutlinedFilled.tsx | 2 +- src/IconFormatColorTextRounded.tsx | 2 +- src/IconFormatColorTextRoundedFilled.tsx | 2 +- src/IconFormatColorTextSharp.tsx | 2 +- src/IconFormatColorTextSharpFilled.tsx | 2 +- src/IconFormatH1Outlined.tsx | 2 +- src/IconFormatH1OutlinedFilled.tsx | 2 +- src/IconFormatH1Rounded.tsx | 2 +- src/IconFormatH1RoundedFilled.tsx | 2 +- src/IconFormatH1Sharp.tsx | 2 +- src/IconFormatH1SharpFilled.tsx | 2 +- src/IconFormatH2Outlined.tsx | 2 +- src/IconFormatH2OutlinedFilled.tsx | 2 +- src/IconFormatH2Rounded.tsx | 2 +- src/IconFormatH2RoundedFilled.tsx | 2 +- src/IconFormatH2Sharp.tsx | 2 +- src/IconFormatH2SharpFilled.tsx | 2 +- src/IconFormatH3Outlined.tsx | 2 +- src/IconFormatH3OutlinedFilled.tsx | 2 +- src/IconFormatH3Rounded.tsx | 2 +- src/IconFormatH3RoundedFilled.tsx | 2 +- src/IconFormatH3Sharp.tsx | 2 +- src/IconFormatH3SharpFilled.tsx | 2 +- src/IconFormatH4Outlined.tsx | 2 +- src/IconFormatH4OutlinedFilled.tsx | 2 +- src/IconFormatH4Rounded.tsx | 2 +- src/IconFormatH4RoundedFilled.tsx | 2 +- src/IconFormatH4Sharp.tsx | 2 +- src/IconFormatH4SharpFilled.tsx | 2 +- src/IconFormatH5Outlined.tsx | 2 +- src/IconFormatH5OutlinedFilled.tsx | 2 +- src/IconFormatH5Rounded.tsx | 2 +- src/IconFormatH5RoundedFilled.tsx | 2 +- src/IconFormatH5Sharp.tsx | 2 +- src/IconFormatH5SharpFilled.tsx | 2 +- src/IconFormatH6Outlined.tsx | 2 +- src/IconFormatH6OutlinedFilled.tsx | 2 +- src/IconFormatH6Rounded.tsx | 2 +- src/IconFormatH6RoundedFilled.tsx | 2 +- src/IconFormatH6Sharp.tsx | 2 +- src/IconFormatH6SharpFilled.tsx | 2 +- src/IconFormatImageLeftOutlined.tsx | 2 +- src/IconFormatImageLeftOutlinedFilled.tsx | 2 +- src/IconFormatImageLeftRounded.tsx | 2 +- src/IconFormatImageLeftRoundedFilled.tsx | 2 +- src/IconFormatImageLeftSharp.tsx | 2 +- src/IconFormatImageLeftSharpFilled.tsx | 2 +- src/IconFormatImageRightOutlined.tsx | 2 +- src/IconFormatImageRightOutlinedFilled.tsx | 2 +- src/IconFormatImageRightRounded.tsx | 2 +- src/IconFormatImageRightRoundedFilled.tsx | 2 +- src/IconFormatImageRightSharp.tsx | 2 +- src/IconFormatImageRightSharpFilled.tsx | 2 +- src/IconFormatIndentDecreaseOutlined.tsx | 2 +- src/IconFormatIndentDecreaseOutlinedFilled.tsx | 2 +- src/IconFormatIndentDecreaseRounded.tsx | 2 +- src/IconFormatIndentDecreaseRoundedFilled.tsx | 2 +- src/IconFormatIndentDecreaseSharp.tsx | 2 +- src/IconFormatIndentDecreaseSharpFilled.tsx | 2 +- src/IconFormatIndentIncreaseOutlined.tsx | 2 +- src/IconFormatIndentIncreaseOutlinedFilled.tsx | 2 +- src/IconFormatIndentIncreaseRounded.tsx | 2 +- src/IconFormatIndentIncreaseRoundedFilled.tsx | 2 +- src/IconFormatIndentIncreaseSharp.tsx | 2 +- src/IconFormatIndentIncreaseSharpFilled.tsx | 2 +- src/IconFormatInkHighlighterOutlined.tsx | 2 +- src/IconFormatInkHighlighterOutlinedFilled.tsx | 2 +- src/IconFormatInkHighlighterRounded.tsx | 2 +- src/IconFormatInkHighlighterRoundedFilled.tsx | 2 +- src/IconFormatInkHighlighterSharp.tsx | 2 +- src/IconFormatInkHighlighterSharpFilled.tsx | 2 +- src/IconFormatItalicOutlined.tsx | 2 +- src/IconFormatItalicOutlinedFilled.tsx | 2 +- src/IconFormatItalicRounded.tsx | 2 +- src/IconFormatItalicRoundedFilled.tsx | 2 +- src/IconFormatItalicSharp.tsx | 2 +- src/IconFormatItalicSharpFilled.tsx | 2 +- src/IconFormatLetterSpacing2Outlined.tsx | 2 +- src/IconFormatLetterSpacing2OutlinedFilled.tsx | 2 +- src/IconFormatLetterSpacing2Rounded.tsx | 2 +- src/IconFormatLetterSpacing2RoundedFilled.tsx | 2 +- src/IconFormatLetterSpacing2Sharp.tsx | 2 +- src/IconFormatLetterSpacing2SharpFilled.tsx | 2 +- src/IconFormatLetterSpacingOutlined.tsx | 2 +- src/IconFormatLetterSpacingOutlinedFilled.tsx | 2 +- src/IconFormatLetterSpacingRounded.tsx | 2 +- src/IconFormatLetterSpacingRoundedFilled.tsx | 2 +- src/IconFormatLetterSpacingSharp.tsx | 2 +- src/IconFormatLetterSpacingSharpFilled.tsx | 2 +- src/IconFormatLetterSpacingStandardOutlined.tsx | 2 +- src/IconFormatLetterSpacingStandardOutlinedFilled.tsx | 2 +- src/IconFormatLetterSpacingStandardRounded.tsx | 2 +- src/IconFormatLetterSpacingStandardRoundedFilled.tsx | 2 +- src/IconFormatLetterSpacingStandardSharp.tsx | 2 +- src/IconFormatLetterSpacingStandardSharpFilled.tsx | 2 +- src/IconFormatLetterSpacingWideOutlined.tsx | 2 +- src/IconFormatLetterSpacingWideOutlinedFilled.tsx | 2 +- src/IconFormatLetterSpacingWideRounded.tsx | 2 +- src/IconFormatLetterSpacingWideRoundedFilled.tsx | 2 +- src/IconFormatLetterSpacingWideSharp.tsx | 2 +- src/IconFormatLetterSpacingWideSharpFilled.tsx | 2 +- src/IconFormatLetterSpacingWiderOutlined.tsx | 2 +- src/IconFormatLetterSpacingWiderOutlinedFilled.tsx | 2 +- src/IconFormatLetterSpacingWiderRounded.tsx | 2 +- src/IconFormatLetterSpacingWiderRoundedFilled.tsx | 2 +- src/IconFormatLetterSpacingWiderSharp.tsx | 2 +- src/IconFormatLetterSpacingWiderSharpFilled.tsx | 2 +- src/IconFormatLineSpacingOutlined.tsx | 2 +- src/IconFormatLineSpacingOutlinedFilled.tsx | 2 +- src/IconFormatLineSpacingRounded.tsx | 2 +- src/IconFormatLineSpacingRoundedFilled.tsx | 2 +- src/IconFormatLineSpacingSharp.tsx | 2 +- src/IconFormatLineSpacingSharpFilled.tsx | 2 +- src/IconFormatListBulletedAddOutlined.tsx | 2 +- src/IconFormatListBulletedAddOutlinedFilled.tsx | 2 +- src/IconFormatListBulletedAddRounded.tsx | 2 +- src/IconFormatListBulletedAddRoundedFilled.tsx | 2 +- src/IconFormatListBulletedAddSharp.tsx | 2 +- src/IconFormatListBulletedAddSharpFilled.tsx | 2 +- src/IconFormatListBulletedOutlined.tsx | 2 +- src/IconFormatListBulletedOutlinedFilled.tsx | 2 +- src/IconFormatListBulletedRounded.tsx | 2 +- src/IconFormatListBulletedRoundedFilled.tsx | 2 +- src/IconFormatListBulletedSharp.tsx | 2 +- src/IconFormatListBulletedSharpFilled.tsx | 2 +- src/IconFormatListNumberedOutlined.tsx | 2 +- src/IconFormatListNumberedOutlinedFilled.tsx | 2 +- src/IconFormatListNumberedRounded.tsx | 2 +- src/IconFormatListNumberedRoundedFilled.tsx | 2 +- src/IconFormatListNumberedRtlOutlined.tsx | 2 +- src/IconFormatListNumberedRtlOutlinedFilled.tsx | 2 +- src/IconFormatListNumberedRtlRounded.tsx | 2 +- src/IconFormatListNumberedRtlRoundedFilled.tsx | 2 +- src/IconFormatListNumberedRtlSharp.tsx | 2 +- src/IconFormatListNumberedRtlSharpFilled.tsx | 2 +- src/IconFormatListNumberedSharp.tsx | 2 +- src/IconFormatListNumberedSharpFilled.tsx | 2 +- src/IconFormatOverlineOutlined.tsx | 2 +- src/IconFormatOverlineOutlinedFilled.tsx | 2 +- src/IconFormatOverlineRounded.tsx | 2 +- src/IconFormatOverlineRoundedFilled.tsx | 2 +- src/IconFormatOverlineSharp.tsx | 2 +- src/IconFormatOverlineSharpFilled.tsx | 2 +- src/IconFormatPaintOutlined.tsx | 2 +- src/IconFormatPaintOutlinedFilled.tsx | 2 +- src/IconFormatPaintRounded.tsx | 2 +- src/IconFormatPaintRoundedFilled.tsx | 2 +- src/IconFormatPaintSharp.tsx | 2 +- src/IconFormatPaintSharpFilled.tsx | 2 +- src/IconFormatParagraphOutlined.tsx | 2 +- src/IconFormatParagraphOutlinedFilled.tsx | 2 +- src/IconFormatParagraphRounded.tsx | 2 +- src/IconFormatParagraphRoundedFilled.tsx | 2 +- src/IconFormatParagraphSharp.tsx | 2 +- src/IconFormatParagraphSharpFilled.tsx | 2 +- src/IconFormatQuoteOffOutlined.tsx | 2 +- src/IconFormatQuoteOffOutlinedFilled.tsx | 2 +- src/IconFormatQuoteOffRounded.tsx | 2 +- src/IconFormatQuoteOffRoundedFilled.tsx | 2 +- src/IconFormatQuoteOffSharp.tsx | 2 +- src/IconFormatQuoteOffSharpFilled.tsx | 2 +- src/IconFormatQuoteOutlined.tsx | 2 +- src/IconFormatQuoteOutlinedFilled.tsx | 2 +- src/IconFormatQuoteRounded.tsx | 2 +- src/IconFormatQuoteRoundedFilled.tsx | 2 +- src/IconFormatQuoteSharp.tsx | 2 +- src/IconFormatQuoteSharpFilled.tsx | 2 +- src/IconFormatShapesOutlined.tsx | 2 +- src/IconFormatShapesOutlinedFilled.tsx | 2 +- src/IconFormatShapesRounded.tsx | 2 +- src/IconFormatShapesRoundedFilled.tsx | 2 +- src/IconFormatShapesSharp.tsx | 2 +- src/IconFormatShapesSharpFilled.tsx | 2 +- src/IconFormatSizeOutlined.tsx | 2 +- src/IconFormatSizeOutlinedFilled.tsx | 2 +- src/IconFormatSizeRounded.tsx | 2 +- src/IconFormatSizeRoundedFilled.tsx | 2 +- src/IconFormatSizeSharp.tsx | 2 +- src/IconFormatSizeSharpFilled.tsx | 2 +- src/IconFormatStrikethroughOutlined.tsx | 2 +- src/IconFormatStrikethroughOutlinedFilled.tsx | 2 +- src/IconFormatStrikethroughRounded.tsx | 2 +- src/IconFormatStrikethroughRoundedFilled.tsx | 2 +- src/IconFormatStrikethroughSharp.tsx | 2 +- src/IconFormatStrikethroughSharpFilled.tsx | 2 +- src/IconFormatTextClipOutlined.tsx | 2 +- src/IconFormatTextClipOutlinedFilled.tsx | 2 +- src/IconFormatTextClipRounded.tsx | 2 +- src/IconFormatTextClipRoundedFilled.tsx | 2 +- src/IconFormatTextClipSharp.tsx | 2 +- src/IconFormatTextClipSharpFilled.tsx | 2 +- src/IconFormatTextOverflowOutlined.tsx | 2 +- src/IconFormatTextOverflowOutlinedFilled.tsx | 2 +- src/IconFormatTextOverflowRounded.tsx | 2 +- src/IconFormatTextOverflowRoundedFilled.tsx | 2 +- src/IconFormatTextOverflowSharp.tsx | 2 +- src/IconFormatTextOverflowSharpFilled.tsx | 2 +- src/IconFormatTextWrapOutlined.tsx | 2 +- src/IconFormatTextWrapOutlinedFilled.tsx | 2 +- src/IconFormatTextWrapRounded.tsx | 2 +- src/IconFormatTextWrapRoundedFilled.tsx | 2 +- src/IconFormatTextWrapSharp.tsx | 2 +- src/IconFormatTextWrapSharpFilled.tsx | 2 +- src/IconFormatTextdirectionLToROutlined.tsx | 2 +- src/IconFormatTextdirectionLToROutlinedFilled.tsx | 2 +- src/IconFormatTextdirectionLToRRounded.tsx | 2 +- src/IconFormatTextdirectionLToRRoundedFilled.tsx | 2 +- src/IconFormatTextdirectionLToRSharp.tsx | 2 +- src/IconFormatTextdirectionLToRSharpFilled.tsx | 2 +- src/IconFormatTextdirectionRToLOutlined.tsx | 2 +- src/IconFormatTextdirectionRToLOutlinedFilled.tsx | 2 +- src/IconFormatTextdirectionRToLRounded.tsx | 2 +- src/IconFormatTextdirectionRToLRoundedFilled.tsx | 2 +- src/IconFormatTextdirectionRToLSharp.tsx | 2 +- src/IconFormatTextdirectionRToLSharpFilled.tsx | 2 +- src/IconFormatTextdirectionVerticalOutlined.tsx | 2 +- src/IconFormatTextdirectionVerticalOutlinedFilled.tsx | 2 +- src/IconFormatTextdirectionVerticalRounded.tsx | 2 +- src/IconFormatTextdirectionVerticalRoundedFilled.tsx | 2 +- src/IconFormatTextdirectionVerticalSharp.tsx | 2 +- src/IconFormatTextdirectionVerticalSharpFilled.tsx | 2 +- src/IconFormatUnderlinedOutlined.tsx | 2 +- src/IconFormatUnderlinedOutlinedFilled.tsx | 2 +- src/IconFormatUnderlinedRounded.tsx | 2 +- src/IconFormatUnderlinedRoundedFilled.tsx | 2 +- src/IconFormatUnderlinedSharp.tsx | 2 +- src/IconFormatUnderlinedSharpFilled.tsx | 2 +- src/IconFormatUnderlinedSquiggleOutlined.tsx | 2 +- src/IconFormatUnderlinedSquiggleOutlinedFilled.tsx | 2 +- src/IconFormatUnderlinedSquiggleRounded.tsx | 2 +- src/IconFormatUnderlinedSquiggleRoundedFilled.tsx | 2 +- src/IconFormatUnderlinedSquiggleSharp.tsx | 2 +- src/IconFormatUnderlinedSquiggleSharpFilled.tsx | 2 +- src/IconFormsAddOnOutlined.tsx | 2 +- src/IconFormsAddOnOutlinedFilled.tsx | 2 +- src/IconFormsAddOnRounded.tsx | 2 +- src/IconFormsAddOnRoundedFilled.tsx | 2 +- src/IconFormsAddOnSharp.tsx | 2 +- src/IconFormsAddOnSharpFilled.tsx | 2 +- src/IconFormsAppsScriptOutlined.tsx | 2 +- src/IconFormsAppsScriptOutlinedFilled.tsx | 2 +- src/IconFormsAppsScriptRounded.tsx | 2 +- src/IconFormsAppsScriptRoundedFilled.tsx | 2 +- src/IconFormsAppsScriptSharp.tsx | 2 +- src/IconFormsAppsScriptSharpFilled.tsx | 2 +- src/IconFortOutlined.tsx | 2 +- src/IconFortOutlinedFilled.tsx | 2 +- src/IconFortRounded.tsx | 2 +- src/IconFortRoundedFilled.tsx | 2 +- src/IconFortSharp.tsx | 2 +- src/IconFortSharpFilled.tsx | 2 +- src/IconForumOutlined.tsx | 2 +- src/IconForumOutlinedFilled.tsx | 2 +- src/IconForumRounded.tsx | 2 +- src/IconForumRoundedFilled.tsx | 2 +- src/IconForumSharp.tsx | 2 +- src/IconForumSharpFilled.tsx | 2 +- src/IconForward10Outlined.tsx | 2 +- src/IconForward10OutlinedFilled.tsx | 2 +- src/IconForward10Rounded.tsx | 2 +- src/IconForward10RoundedFilled.tsx | 2 +- src/IconForward10Sharp.tsx | 2 +- src/IconForward10SharpFilled.tsx | 2 +- src/IconForward30Outlined.tsx | 2 +- src/IconForward30OutlinedFilled.tsx | 2 +- src/IconForward30Rounded.tsx | 2 +- src/IconForward30RoundedFilled.tsx | 2 +- src/IconForward30Sharp.tsx | 2 +- src/IconForward30SharpFilled.tsx | 2 +- src/IconForward5Outlined.tsx | 2 +- src/IconForward5OutlinedFilled.tsx | 2 +- src/IconForward5Rounded.tsx | 2 +- src/IconForward5RoundedFilled.tsx | 2 +- src/IconForward5Sharp.tsx | 2 +- src/IconForward5SharpFilled.tsx | 2 +- src/IconForwardCircleOutlined.tsx | 2 +- src/IconForwardCircleOutlinedFilled.tsx | 2 +- src/IconForwardCircleRounded.tsx | 2 +- src/IconForwardCircleRoundedFilled.tsx | 2 +- src/IconForwardCircleSharp.tsx | 2 +- src/IconForwardCircleSharpFilled.tsx | 2 +- src/IconForwardMediaOutlined.tsx | 2 +- src/IconForwardMediaOutlinedFilled.tsx | 2 +- src/IconForwardMediaRounded.tsx | 2 +- src/IconForwardMediaRoundedFilled.tsx | 2 +- src/IconForwardMediaSharp.tsx | 2 +- src/IconForwardMediaSharpFilled.tsx | 2 +- src/IconForwardOutlined.tsx | 2 +- src/IconForwardOutlinedFilled.tsx | 2 +- src/IconForwardRounded.tsx | 2 +- src/IconForwardRoundedFilled.tsx | 2 +- src/IconForwardSharp.tsx | 2 +- src/IconForwardSharpFilled.tsx | 2 +- src/IconForwardToInboxOutlined.tsx | 2 +- src/IconForwardToInboxOutlinedFilled.tsx | 2 +- src/IconForwardToInboxRounded.tsx | 2 +- src/IconForwardToInboxRoundedFilled.tsx | 2 +- src/IconForwardToInboxSharp.tsx | 2 +- src/IconForwardToInboxSharpFilled.tsx | 2 +- src/IconFoundationOutlined.tsx | 2 +- src/IconFoundationOutlinedFilled.tsx | 2 +- src/IconFoundationRounded.tsx | 2 +- src/IconFoundationRoundedFilled.tsx | 2 +- src/IconFoundationSharp.tsx | 2 +- src/IconFoundationSharpFilled.tsx | 2 +- src/IconFrameInspectOutlined.tsx | 2 +- src/IconFrameInspectOutlinedFilled.tsx | 2 +- src/IconFrameInspectRounded.tsx | 2 +- src/IconFrameInspectRoundedFilled.tsx | 2 +- src/IconFrameInspectSharp.tsx | 2 +- src/IconFrameInspectSharpFilled.tsx | 2 +- src/IconFramePersonMicOutlined.tsx | 2 +- src/IconFramePersonMicOutlinedFilled.tsx | 2 +- src/IconFramePersonMicRounded.tsx | 2 +- src/IconFramePersonMicRoundedFilled.tsx | 2 +- src/IconFramePersonMicSharp.tsx | 2 +- src/IconFramePersonMicSharpFilled.tsx | 2 +- src/IconFramePersonOffOutlined.tsx | 2 +- src/IconFramePersonOffOutlinedFilled.tsx | 2 +- src/IconFramePersonOffRounded.tsx | 2 +- src/IconFramePersonOffRoundedFilled.tsx | 2 +- src/IconFramePersonOffSharp.tsx | 2 +- src/IconFramePersonOffSharpFilled.tsx | 2 +- src/IconFramePersonOutlined.tsx | 2 +- src/IconFramePersonOutlinedFilled.tsx | 2 +- src/IconFramePersonRounded.tsx | 2 +- src/IconFramePersonRoundedFilled.tsx | 2 +- src/IconFramePersonSharp.tsx | 2 +- src/IconFramePersonSharpFilled.tsx | 2 +- src/IconFrameReloadOutlined.tsx | 2 +- src/IconFrameReloadOutlinedFilled.tsx | 2 +- src/IconFrameReloadRounded.tsx | 2 +- src/IconFrameReloadRoundedFilled.tsx | 2 +- src/IconFrameReloadSharp.tsx | 2 +- src/IconFrameReloadSharpFilled.tsx | 2 +- src/IconFrameSourceOutlined.tsx | 2 +- src/IconFrameSourceOutlinedFilled.tsx | 2 +- src/IconFrameSourceRounded.tsx | 2 +- src/IconFrameSourceRoundedFilled.tsx | 2 +- src/IconFrameSourceSharp.tsx | 2 +- src/IconFrameSourceSharpFilled.tsx | 2 +- src/IconFreeCancellationOutlined.tsx | 2 +- src/IconFreeCancellationOutlinedFilled.tsx | 2 +- src/IconFreeCancellationRounded.tsx | 2 +- src/IconFreeCancellationRoundedFilled.tsx | 2 +- src/IconFreeCancellationSharp.tsx | 2 +- src/IconFreeCancellationSharpFilled.tsx | 2 +- src/IconFrontHandOutlined.tsx | 2 +- src/IconFrontHandOutlinedFilled.tsx | 2 +- src/IconFrontHandRounded.tsx | 2 +- src/IconFrontHandRoundedFilled.tsx | 2 +- src/IconFrontHandSharp.tsx | 2 +- src/IconFrontHandSharpFilled.tsx | 2 +- src/IconFrontLoaderOutlined.tsx | 2 +- src/IconFrontLoaderOutlinedFilled.tsx | 2 +- src/IconFrontLoaderRounded.tsx | 2 +- src/IconFrontLoaderRoundedFilled.tsx | 2 +- src/IconFrontLoaderSharp.tsx | 2 +- src/IconFrontLoaderSharpFilled.tsx | 2 +- src/IconFullCoverageOutlined.tsx | 2 +- src/IconFullCoverageOutlinedFilled.tsx | 2 +- src/IconFullCoverageRounded.tsx | 2 +- src/IconFullCoverageRoundedFilled.tsx | 2 +- src/IconFullCoverageSharp.tsx | 2 +- src/IconFullCoverageSharpFilled.tsx | 2 +- src/IconFullHdOutlined.tsx | 2 +- src/IconFullHdOutlinedFilled.tsx | 2 +- src/IconFullHdRounded.tsx | 2 +- src/IconFullHdRoundedFilled.tsx | 2 +- src/IconFullHdSharp.tsx | 2 +- src/IconFullHdSharpFilled.tsx | 2 +- src/IconFullStackedBarChartOutlined.tsx | 2 +- src/IconFullStackedBarChartOutlinedFilled.tsx | 2 +- src/IconFullStackedBarChartRounded.tsx | 2 +- src/IconFullStackedBarChartRoundedFilled.tsx | 2 +- src/IconFullStackedBarChartSharp.tsx | 2 +- src/IconFullStackedBarChartSharpFilled.tsx | 2 +- src/IconFullscreenExitOutlined.tsx | 2 +- src/IconFullscreenExitOutlinedFilled.tsx | 2 +- src/IconFullscreenExitRounded.tsx | 2 +- src/IconFullscreenExitRoundedFilled.tsx | 2 +- src/IconFullscreenExitSharp.tsx | 2 +- src/IconFullscreenExitSharpFilled.tsx | 2 +- src/IconFullscreenOutlined.tsx | 2 +- src/IconFullscreenOutlinedFilled.tsx | 2 +- src/IconFullscreenPortraitOutlined.tsx | 2 +- src/IconFullscreenPortraitOutlinedFilled.tsx | 2 +- src/IconFullscreenPortraitRounded.tsx | 2 +- src/IconFullscreenPortraitRoundedFilled.tsx | 2 +- src/IconFullscreenPortraitSharp.tsx | 2 +- src/IconFullscreenPortraitSharpFilled.tsx | 2 +- src/IconFullscreenRounded.tsx | 2 +- src/IconFullscreenRoundedFilled.tsx | 2 +- src/IconFullscreenSharp.tsx | 2 +- src/IconFullscreenSharpFilled.tsx | 2 +- src/IconFunctionOutlined.tsx | 2 +- src/IconFunctionOutlinedFilled.tsx | 2 +- src/IconFunctionRounded.tsx | 2 +- src/IconFunctionRoundedFilled.tsx | 2 +- src/IconFunctionSharp.tsx | 2 +- src/IconFunctionSharpFilled.tsx | 2 +- src/IconFunctionsOutlined.tsx | 2 +- src/IconFunctionsOutlinedFilled.tsx | 2 +- src/IconFunctionsRounded.tsx | 2 +- src/IconFunctionsRoundedFilled.tsx | 2 +- src/IconFunctionsSharp.tsx | 2 +- src/IconFunctionsSharpFilled.tsx | 2 +- src/IconFunicularOutlined.tsx | 2 +- src/IconFunicularOutlinedFilled.tsx | 2 +- src/IconFunicularRounded.tsx | 2 +- src/IconFunicularRoundedFilled.tsx | 2 +- src/IconFunicularSharp.tsx | 2 +- src/IconFunicularSharpFilled.tsx | 2 +- src/IconGMobiledataBadgeOutlined.tsx | 2 +- src/IconGMobiledataBadgeOutlinedFilled.tsx | 2 +- src/IconGMobiledataBadgeRounded.tsx | 2 +- src/IconGMobiledataBadgeRoundedFilled.tsx | 2 +- src/IconGMobiledataBadgeSharp.tsx | 2 +- src/IconGMobiledataBadgeSharpFilled.tsx | 2 +- src/IconGMobiledataOutlined.tsx | 2 +- src/IconGMobiledataOutlinedFilled.tsx | 2 +- src/IconGMobiledataRounded.tsx | 2 +- src/IconGMobiledataRoundedFilled.tsx | 2 +- src/IconGMobiledataSharp.tsx | 2 +- src/IconGMobiledataSharpFilled.tsx | 2 +- src/IconGTranslateOutlined.tsx | 2 +- src/IconGTranslateOutlinedFilled.tsx | 2 +- src/IconGTranslateRounded.tsx | 2 +- src/IconGTranslateRoundedFilled.tsx | 2 +- src/IconGTranslateSharp.tsx | 2 +- src/IconGTranslateSharpFilled.tsx | 2 +- src/IconGalleryThumbnailOutlined.tsx | 2 +- src/IconGalleryThumbnailOutlinedFilled.tsx | 2 +- src/IconGalleryThumbnailRounded.tsx | 2 +- src/IconGalleryThumbnailRoundedFilled.tsx | 2 +- src/IconGalleryThumbnailSharp.tsx | 2 +- src/IconGalleryThumbnailSharpFilled.tsx | 2 +- src/IconGamepadOutlined.tsx | 2 +- src/IconGamepadOutlinedFilled.tsx | 2 +- src/IconGamepadRounded.tsx | 2 +- src/IconGamepadRoundedFilled.tsx | 2 +- src/IconGamepadSharp.tsx | 2 +- src/IconGamepadSharpFilled.tsx | 2 +- src/IconGarageDoorOutlined.tsx | 2 +- src/IconGarageDoorOutlinedFilled.tsx | 2 +- src/IconGarageDoorRounded.tsx | 2 +- src/IconGarageDoorRoundedFilled.tsx | 2 +- src/IconGarageDoorSharp.tsx | 2 +- src/IconGarageDoorSharpFilled.tsx | 2 +- src/IconGarageHomeOutlined.tsx | 2 +- src/IconGarageHomeOutlinedFilled.tsx | 2 +- src/IconGarageHomeRounded.tsx | 2 +- src/IconGarageHomeRoundedFilled.tsx | 2 +- src/IconGarageHomeSharp.tsx | 2 +- src/IconGarageHomeSharpFilled.tsx | 2 +- src/IconGarageOutlined.tsx | 2 +- src/IconGarageOutlinedFilled.tsx | 2 +- src/IconGarageRounded.tsx | 2 +- src/IconGarageRoundedFilled.tsx | 2 +- src/IconGarageSharp.tsx | 2 +- src/IconGarageSharpFilled.tsx | 2 +- src/IconGardenCartOutlined.tsx | 2 +- src/IconGardenCartOutlinedFilled.tsx | 2 +- src/IconGardenCartRounded.tsx | 2 +- src/IconGardenCartRoundedFilled.tsx | 2 +- src/IconGardenCartSharp.tsx | 2 +- src/IconGardenCartSharpFilled.tsx | 2 +- src/IconGasMeterOutlined.tsx | 2 +- src/IconGasMeterOutlinedFilled.tsx | 2 +- src/IconGasMeterRounded.tsx | 2 +- src/IconGasMeterRoundedFilled.tsx | 2 +- src/IconGasMeterSharp.tsx | 2 +- src/IconGasMeterSharpFilled.tsx | 2 +- src/IconGastroenterologyOutlined.tsx | 2 +- src/IconGastroenterologyOutlinedFilled.tsx | 2 +- src/IconGastroenterologyRounded.tsx | 2 +- src/IconGastroenterologyRoundedFilled.tsx | 2 +- src/IconGastroenterologySharp.tsx | 2 +- src/IconGastroenterologySharpFilled.tsx | 2 +- src/IconGateOutlined.tsx | 2 +- src/IconGateOutlinedFilled.tsx | 2 +- src/IconGateRounded.tsx | 2 +- src/IconGateRoundedFilled.tsx | 2 +- src/IconGateSharp.tsx | 2 +- src/IconGateSharpFilled.tsx | 2 +- src/IconGavelOutlined.tsx | 2 +- src/IconGavelOutlinedFilled.tsx | 2 +- src/IconGavelRounded.tsx | 2 +- src/IconGavelRoundedFilled.tsx | 2 +- src/IconGavelSharp.tsx | 2 +- src/IconGavelSharpFilled.tsx | 2 +- src/IconGeneralDeviceOutlined.tsx | 2 +- src/IconGeneralDeviceOutlinedFilled.tsx | 2 +- src/IconGeneralDeviceRounded.tsx | 2 +- src/IconGeneralDeviceRoundedFilled.tsx | 2 +- src/IconGeneralDeviceSharp.tsx | 2 +- src/IconGeneralDeviceSharpFilled.tsx | 2 +- src/IconGeneticsOutlined.tsx | 2 +- src/IconGeneticsOutlinedFilled.tsx | 2 +- src/IconGeneticsRounded.tsx | 2 +- src/IconGeneticsRoundedFilled.tsx | 2 +- src/IconGeneticsSharp.tsx | 2 +- src/IconGeneticsSharpFilled.tsx | 2 +- src/IconGenresOutlined.tsx | 2 +- src/IconGenresOutlinedFilled.tsx | 2 +- src/IconGenresRounded.tsx | 2 +- src/IconGenresRoundedFilled.tsx | 2 +- src/IconGenresSharp.tsx | 2 +- src/IconGenresSharpFilled.tsx | 2 +- src/IconGestureOutlined.tsx | 2 +- src/IconGestureOutlinedFilled.tsx | 2 +- src/IconGestureRounded.tsx | 2 +- src/IconGestureRoundedFilled.tsx | 2 +- src/IconGestureSelectOutlined.tsx | 2 +- src/IconGestureSelectOutlinedFilled.tsx | 2 +- src/IconGestureSelectRounded.tsx | 2 +- src/IconGestureSelectRoundedFilled.tsx | 2 +- src/IconGestureSelectSharp.tsx | 2 +- src/IconGestureSelectSharpFilled.tsx | 2 +- src/IconGestureSharp.tsx | 2 +- src/IconGestureSharpFilled.tsx | 2 +- src/IconGif2Outlined.tsx | 2 +- src/IconGif2OutlinedFilled.tsx | 2 +- src/IconGif2Rounded.tsx | 2 +- src/IconGif2RoundedFilled.tsx | 2 +- src/IconGif2Sharp.tsx | 2 +- src/IconGif2SharpFilled.tsx | 2 +- src/IconGifBoxOutlined.tsx | 2 +- src/IconGifBoxOutlinedFilled.tsx | 2 +- src/IconGifBoxRounded.tsx | 2 +- src/IconGifBoxRoundedFilled.tsx | 2 +- src/IconGifBoxSharp.tsx | 2 +- src/IconGifBoxSharpFilled.tsx | 2 +- src/IconGifOutlined.tsx | 2 +- src/IconGifOutlinedFilled.tsx | 2 +- src/IconGifRounded.tsx | 2 +- src/IconGifRoundedFilled.tsx | 2 +- src/IconGifSharp.tsx | 2 +- src/IconGifSharpFilled.tsx | 2 +- src/IconGirlOutlined.tsx | 2 +- src/IconGirlOutlinedFilled.tsx | 2 +- src/IconGirlRounded.tsx | 2 +- src/IconGirlRoundedFilled.tsx | 2 +- src/IconGirlSharp.tsx | 2 +- src/IconGirlSharpFilled.tsx | 2 +- src/IconGiteOutlined.tsx | 2 +- src/IconGiteOutlinedFilled.tsx | 2 +- src/IconGiteRounded.tsx | 2 +- src/IconGiteRoundedFilled.tsx | 2 +- src/IconGiteSharp.tsx | 2 +- src/IconGiteSharpFilled.tsx | 2 +- src/IconGlassCupOutlined.tsx | 2 +- src/IconGlassCupOutlinedFilled.tsx | 2 +- src/IconGlassCupRounded.tsx | 2 +- src/IconGlassCupRoundedFilled.tsx | 2 +- src/IconGlassCupSharp.tsx | 2 +- src/IconGlassCupSharpFilled.tsx | 2 +- src/IconGlobeAsiaOutlined.tsx | 2 +- src/IconGlobeAsiaOutlinedFilled.tsx | 2 +- src/IconGlobeAsiaRounded.tsx | 2 +- src/IconGlobeAsiaRoundedFilled.tsx | 2 +- src/IconGlobeAsiaSharp.tsx | 2 +- src/IconGlobeAsiaSharpFilled.tsx | 2 +- src/IconGlobeOutlined.tsx | 2 +- src/IconGlobeOutlinedFilled.tsx | 2 +- src/IconGlobeRounded.tsx | 2 +- src/IconGlobeRoundedFilled.tsx | 2 +- src/IconGlobeSharp.tsx | 2 +- src/IconGlobeSharpFilled.tsx | 2 +- src/IconGlobeUkOutlined.tsx | 2 +- src/IconGlobeUkOutlinedFilled.tsx | 2 +- src/IconGlobeUkRounded.tsx | 2 +- src/IconGlobeUkRoundedFilled.tsx | 2 +- src/IconGlobeUkSharp.tsx | 2 +- src/IconGlobeUkSharpFilled.tsx | 2 +- src/IconGlucoseOutlined.tsx | 2 +- src/IconGlucoseOutlinedFilled.tsx | 2 +- src/IconGlucoseRounded.tsx | 2 +- src/IconGlucoseRoundedFilled.tsx | 2 +- src/IconGlucoseSharp.tsx | 2 +- src/IconGlucoseSharpFilled.tsx | 2 +- src/IconGlyphsOutlined.tsx | 2 +- src/IconGlyphsOutlinedFilled.tsx | 2 +- src/IconGlyphsRounded.tsx | 2 +- src/IconGlyphsRoundedFilled.tsx | 2 +- src/IconGlyphsSharp.tsx | 2 +- src/IconGlyphsSharpFilled.tsx | 2 +- src/IconGoToLineOutlined.tsx | 2 +- src/IconGoToLineOutlinedFilled.tsx | 2 +- src/IconGoToLineRounded.tsx | 2 +- src/IconGoToLineRoundedFilled.tsx | 2 +- src/IconGoToLineSharp.tsx | 2 +- src/IconGoToLineSharpFilled.tsx | 2 +- src/IconGolfCourseOutlined.tsx | 2 +- src/IconGolfCourseOutlinedFilled.tsx | 2 +- src/IconGolfCourseRounded.tsx | 2 +- src/IconGolfCourseRoundedFilled.tsx | 2 +- src/IconGolfCourseSharp.tsx | 2 +- src/IconGolfCourseSharpFilled.tsx | 2 +- src/IconGondolaLiftOutlined.tsx | 2 +- src/IconGondolaLiftOutlinedFilled.tsx | 2 +- src/IconGondolaLiftRounded.tsx | 2 +- src/IconGondolaLiftRoundedFilled.tsx | 2 +- src/IconGondolaLiftSharp.tsx | 2 +- src/IconGondolaLiftSharpFilled.tsx | 2 +- src/IconGoogleHomeDevicesOutlined.tsx | 2 +- src/IconGoogleHomeDevicesOutlinedFilled.tsx | 2 +- src/IconGoogleHomeDevicesRounded.tsx | 2 +- src/IconGoogleHomeDevicesRoundedFilled.tsx | 2 +- src/IconGoogleHomeDevicesSharp.tsx | 2 +- src/IconGoogleHomeDevicesSharpFilled.tsx | 2 +- src/IconGoogleTvRemoteOutlined.tsx | 2 +- src/IconGoogleTvRemoteOutlinedFilled.tsx | 2 +- src/IconGoogleTvRemoteRounded.tsx | 2 +- src/IconGoogleTvRemoteRoundedFilled.tsx | 2 +- src/IconGoogleTvRemoteSharp.tsx | 2 +- src/IconGoogleTvRemoteSharpFilled.tsx | 2 +- src/IconGoogleWifiOutlined.tsx | 2 +- src/IconGoogleWifiOutlinedFilled.tsx | 2 +- src/IconGoogleWifiRounded.tsx | 2 +- src/IconGoogleWifiRoundedFilled.tsx | 2 +- src/IconGoogleWifiSharp.tsx | 2 +- src/IconGoogleWifiSharpFilled.tsx | 2 +- src/IconGppBadOutlined.tsx | 2 +- src/IconGppBadOutlinedFilled.tsx | 2 +- src/IconGppBadRounded.tsx | 2 +- src/IconGppBadRoundedFilled.tsx | 2 +- src/IconGppBadSharp.tsx | 2 +- src/IconGppBadSharpFilled.tsx | 2 +- src/IconGppMaybeOutlined.tsx | 2 +- src/IconGppMaybeOutlinedFilled.tsx | 2 +- src/IconGppMaybeRounded.tsx | 2 +- src/IconGppMaybeRoundedFilled.tsx | 2 +- src/IconGppMaybeSharp.tsx | 2 +- src/IconGppMaybeSharpFilled.tsx | 2 +- src/IconGradeOutlined.tsx | 2 +- src/IconGradeOutlinedFilled.tsx | 2 +- src/IconGradeRounded.tsx | 2 +- src/IconGradeRoundedFilled.tsx | 2 +- src/IconGradeSharp.tsx | 2 +- src/IconGradeSharpFilled.tsx | 2 +- src/IconGradientOutlined.tsx | 2 +- src/IconGradientOutlinedFilled.tsx | 2 +- src/IconGradientRounded.tsx | 2 +- src/IconGradientRoundedFilled.tsx | 2 +- src/IconGradientSharp.tsx | 2 +- src/IconGradientSharpFilled.tsx | 2 +- src/IconGradingOutlined.tsx | 2 +- src/IconGradingOutlinedFilled.tsx | 2 +- src/IconGradingRounded.tsx | 2 +- src/IconGradingRoundedFilled.tsx | 2 +- src/IconGradingSharp.tsx | 2 +- src/IconGradingSharpFilled.tsx | 2 +- src/IconGrainOutlined.tsx | 2 +- src/IconGrainOutlinedFilled.tsx | 2 +- src/IconGrainRounded.tsx | 2 +- src/IconGrainRoundedFilled.tsx | 2 +- src/IconGrainSharp.tsx | 2 +- src/IconGrainSharpFilled.tsx | 2 +- src/IconGraphicEqOutlined.tsx | 2 +- src/IconGraphicEqOutlinedFilled.tsx | 2 +- src/IconGraphicEqRounded.tsx | 2 +- src/IconGraphicEqRoundedFilled.tsx | 2 +- src/IconGraphicEqSharp.tsx | 2 +- src/IconGraphicEqSharpFilled.tsx | 2 +- src/IconGrassOutlined.tsx | 2 +- src/IconGrassOutlinedFilled.tsx | 2 +- src/IconGrassRounded.tsx | 2 +- src/IconGrassRoundedFilled.tsx | 2 +- src/IconGrassSharp.tsx | 2 +- src/IconGrassSharpFilled.tsx | 2 +- src/IconGrid3x3OffOutlined.tsx | 2 +- src/IconGrid3x3OffOutlinedFilled.tsx | 2 +- src/IconGrid3x3OffRounded.tsx | 2 +- src/IconGrid3x3OffRoundedFilled.tsx | 2 +- src/IconGrid3x3OffSharp.tsx | 2 +- src/IconGrid3x3OffSharpFilled.tsx | 2 +- src/IconGrid3x3Outlined.tsx | 2 +- src/IconGrid3x3OutlinedFilled.tsx | 2 +- src/IconGrid3x3Rounded.tsx | 2 +- src/IconGrid3x3RoundedFilled.tsx | 2 +- src/IconGrid3x3Sharp.tsx | 2 +- src/IconGrid3x3SharpFilled.tsx | 2 +- src/IconGrid4x4Outlined.tsx | 2 +- src/IconGrid4x4OutlinedFilled.tsx | 2 +- src/IconGrid4x4Rounded.tsx | 2 +- src/IconGrid4x4RoundedFilled.tsx | 2 +- src/IconGrid4x4Sharp.tsx | 2 +- src/IconGrid4x4SharpFilled.tsx | 2 +- src/IconGridGoldenratioOutlined.tsx | 2 +- src/IconGridGoldenratioOutlinedFilled.tsx | 2 +- src/IconGridGoldenratioRounded.tsx | 2 +- src/IconGridGoldenratioRoundedFilled.tsx | 2 +- src/IconGridGoldenratioSharp.tsx | 2 +- src/IconGridGoldenratioSharpFilled.tsx | 2 +- src/IconGridGuidesOutlined.tsx | 2 +- src/IconGridGuidesOutlinedFilled.tsx | 2 +- src/IconGridGuidesRounded.tsx | 2 +- src/IconGridGuidesRoundedFilled.tsx | 2 +- src/IconGridGuidesSharp.tsx | 2 +- src/IconGridGuidesSharpFilled.tsx | 2 +- src/IconGridOffOutlined.tsx | 2 +- src/IconGridOffOutlinedFilled.tsx | 2 +- src/IconGridOffRounded.tsx | 2 +- src/IconGridOffRoundedFilled.tsx | 2 +- src/IconGridOffSharp.tsx | 2 +- src/IconGridOffSharpFilled.tsx | 2 +- src/IconGridOnOutlined.tsx | 2 +- src/IconGridOnOutlinedFilled.tsx | 2 +- src/IconGridOnRounded.tsx | 2 +- src/IconGridOnRoundedFilled.tsx | 2 +- src/IconGridOnSharp.tsx | 2 +- src/IconGridOnSharpFilled.tsx | 2 +- src/IconGridViewOutlined.tsx | 2 +- src/IconGridViewOutlinedFilled.tsx | 2 +- src/IconGridViewRounded.tsx | 2 +- src/IconGridViewRoundedFilled.tsx | 2 +- src/IconGridViewSharp.tsx | 2 +- src/IconGridViewSharpFilled.tsx | 2 +- src/IconGroceryOutlined.tsx | 2 +- src/IconGroceryOutlinedFilled.tsx | 2 +- src/IconGroceryRounded.tsx | 2 +- src/IconGroceryRoundedFilled.tsx | 2 +- src/IconGrocerySharp.tsx | 2 +- src/IconGrocerySharpFilled.tsx | 2 +- src/IconGroupAddOutlined.tsx | 2 +- src/IconGroupAddOutlinedFilled.tsx | 2 +- src/IconGroupAddRounded.tsx | 2 +- src/IconGroupAddRoundedFilled.tsx | 2 +- src/IconGroupAddSharp.tsx | 2 +- src/IconGroupAddSharpFilled.tsx | 2 +- src/IconGroupOffOutlined.tsx | 2 +- src/IconGroupOffOutlinedFilled.tsx | 2 +- src/IconGroupOffRounded.tsx | 2 +- src/IconGroupOffRoundedFilled.tsx | 2 +- src/IconGroupOffSharp.tsx | 2 +- src/IconGroupOffSharpFilled.tsx | 2 +- src/IconGroupOutlined.tsx | 2 +- src/IconGroupOutlinedFilled.tsx | 2 +- src/IconGroupRemoveOutlined.tsx | 2 +- src/IconGroupRemoveOutlinedFilled.tsx | 2 +- src/IconGroupRemoveRounded.tsx | 2 +- src/IconGroupRemoveRoundedFilled.tsx | 2 +- src/IconGroupRemoveSharp.tsx | 2 +- src/IconGroupRemoveSharpFilled.tsx | 2 +- src/IconGroupRounded.tsx | 2 +- src/IconGroupRoundedFilled.tsx | 2 +- src/IconGroupSharp.tsx | 2 +- src/IconGroupSharpFilled.tsx | 2 +- src/IconGroupWorkOutlined.tsx | 2 +- src/IconGroupWorkOutlinedFilled.tsx | 2 +- src/IconGroupWorkRounded.tsx | 2 +- src/IconGroupWorkRoundedFilled.tsx | 2 +- src/IconGroupWorkSharp.tsx | 2 +- src/IconGroupWorkSharpFilled.tsx | 2 +- src/IconGroupedBarChartOutlined.tsx | 2 +- src/IconGroupedBarChartOutlinedFilled.tsx | 2 +- src/IconGroupedBarChartRounded.tsx | 2 +- src/IconGroupedBarChartRoundedFilled.tsx | 2 +- src/IconGroupedBarChartSharp.tsx | 2 +- src/IconGroupedBarChartSharpFilled.tsx | 2 +- src/IconGroups2Outlined.tsx | 2 +- src/IconGroups2OutlinedFilled.tsx | 2 +- src/IconGroups2Rounded.tsx | 2 +- src/IconGroups2RoundedFilled.tsx | 2 +- src/IconGroups2Sharp.tsx | 2 +- src/IconGroups2SharpFilled.tsx | 2 +- src/IconGroups3Outlined.tsx | 2 +- src/IconGroups3OutlinedFilled.tsx | 2 +- src/IconGroups3Rounded.tsx | 2 +- src/IconGroups3RoundedFilled.tsx | 2 +- src/IconGroups3Sharp.tsx | 2 +- src/IconGroups3SharpFilled.tsx | 2 +- src/IconGroupsOutlined.tsx | 2 +- src/IconGroupsOutlinedFilled.tsx | 2 +- src/IconGroupsRounded.tsx | 2 +- src/IconGroupsRoundedFilled.tsx | 2 +- src/IconGroupsSharp.tsx | 2 +- src/IconGroupsSharpFilled.tsx | 2 +- src/IconGuardianOutlined.tsx | 2 +- src/IconGuardianOutlinedFilled.tsx | 2 +- src/IconGuardianRounded.tsx | 2 +- src/IconGuardianRoundedFilled.tsx | 2 +- src/IconGuardianSharp.tsx | 2 +- src/IconGuardianSharpFilled.tsx | 2 +- src/IconGynecologyOutlined.tsx | 2 +- src/IconGynecologyOutlinedFilled.tsx | 2 +- src/IconGynecologyRounded.tsx | 2 +- src/IconGynecologyRoundedFilled.tsx | 2 +- src/IconGynecologySharp.tsx | 2 +- src/IconGynecologySharpFilled.tsx | 2 +- src/IconHMobiledataBadgeOutlined.tsx | 2 +- src/IconHMobiledataBadgeOutlinedFilled.tsx | 2 +- src/IconHMobiledataBadgeRounded.tsx | 2 +- src/IconHMobiledataBadgeRoundedFilled.tsx | 2 +- src/IconHMobiledataBadgeSharp.tsx | 2 +- src/IconHMobiledataBadgeSharpFilled.tsx | 2 +- src/IconHMobiledataOutlined.tsx | 2 +- src/IconHMobiledataOutlinedFilled.tsx | 2 +- src/IconHMobiledataRounded.tsx | 2 +- src/IconHMobiledataRoundedFilled.tsx | 2 +- src/IconHMobiledataSharp.tsx | 2 +- src/IconHMobiledataSharpFilled.tsx | 2 +- src/IconHPlusMobiledataBadgeOutlined.tsx | 2 +- src/IconHPlusMobiledataBadgeOutlinedFilled.tsx | 2 +- src/IconHPlusMobiledataBadgeRounded.tsx | 2 +- src/IconHPlusMobiledataBadgeRoundedFilled.tsx | 2 +- src/IconHPlusMobiledataBadgeSharp.tsx | 2 +- src/IconHPlusMobiledataBadgeSharpFilled.tsx | 2 +- src/IconHPlusMobiledataOutlined.tsx | 2 +- src/IconHPlusMobiledataOutlinedFilled.tsx | 2 +- src/IconHPlusMobiledataRounded.tsx | 2 +- src/IconHPlusMobiledataRoundedFilled.tsx | 2 +- src/IconHPlusMobiledataSharp.tsx | 2 +- src/IconHPlusMobiledataSharpFilled.tsx | 2 +- src/IconHailOutlined.tsx | 2 +- src/IconHailOutlinedFilled.tsx | 2 +- src/IconHailRounded.tsx | 2 +- src/IconHailRoundedFilled.tsx | 2 +- src/IconHailSharp.tsx | 2 +- src/IconHailSharpFilled.tsx | 2 +- src/IconHallwayOutlined.tsx | 2 +- src/IconHallwayOutlinedFilled.tsx | 2 +- src/IconHallwayRounded.tsx | 2 +- src/IconHallwayRoundedFilled.tsx | 2 +- src/IconHallwaySharp.tsx | 2 +- src/IconHallwaySharpFilled.tsx | 2 +- src/IconHandBonesOutlined.tsx | 2 +- src/IconHandBonesOutlinedFilled.tsx | 2 +- src/IconHandBonesRounded.tsx | 2 +- src/IconHandBonesRoundedFilled.tsx | 2 +- src/IconHandBonesSharp.tsx | 2 +- src/IconHandBonesSharpFilled.tsx | 2 +- src/IconHandGestureOffOutlined.tsx | 2 +- src/IconHandGestureOffOutlinedFilled.tsx | 2 +- src/IconHandGestureOffRounded.tsx | 2 +- src/IconHandGestureOffRoundedFilled.tsx | 2 +- src/IconHandGestureOffSharp.tsx | 2 +- src/IconHandGestureOffSharpFilled.tsx | 2 +- src/IconHandGestureOutlined.tsx | 2 +- src/IconHandGestureOutlinedFilled.tsx | 2 +- src/IconHandGestureRounded.tsx | 2 +- src/IconHandGestureRoundedFilled.tsx | 2 +- src/IconHandGestureSharp.tsx | 2 +- src/IconHandGestureSharpFilled.tsx | 2 +- src/IconHandheldControllerOutlined.tsx | 2 +- src/IconHandheldControllerOutlinedFilled.tsx | 2 +- src/IconHandheldControllerRounded.tsx | 2 +- src/IconHandheldControllerRoundedFilled.tsx | 2 +- src/IconHandheldControllerSharp.tsx | 2 +- src/IconHandheldControllerSharpFilled.tsx | 2 +- src/IconHandshakeOutlined.tsx | 2 +- src/IconHandshakeOutlinedFilled.tsx | 2 +- src/IconHandshakeRounded.tsx | 2 +- src/IconHandshakeRoundedFilled.tsx | 2 +- src/IconHandshakeSharp.tsx | 2 +- src/IconHandshakeSharpFilled.tsx | 2 +- src/IconHandymanOutlined.tsx | 2 +- src/IconHandymanOutlinedFilled.tsx | 2 +- src/IconHandymanRounded.tsx | 2 +- src/IconHandymanRoundedFilled.tsx | 2 +- src/IconHandymanSharp.tsx | 2 +- src/IconHandymanSharpFilled.tsx | 2 +- src/IconHangoutVideoOffOutlined.tsx | 2 +- src/IconHangoutVideoOffOutlinedFilled.tsx | 2 +- src/IconHangoutVideoOffRounded.tsx | 2 +- src/IconHangoutVideoOffRoundedFilled.tsx | 2 +- src/IconHangoutVideoOffSharp.tsx | 2 +- src/IconHangoutVideoOffSharpFilled.tsx | 2 +- src/IconHangoutVideoOutlined.tsx | 2 +- src/IconHangoutVideoOutlinedFilled.tsx | 2 +- src/IconHangoutVideoRounded.tsx | 2 +- src/IconHangoutVideoRoundedFilled.tsx | 2 +- src/IconHangoutVideoSharp.tsx | 2 +- src/IconHangoutVideoSharpFilled.tsx | 2 +- src/IconHardDrive2Outlined.tsx | 2 +- src/IconHardDrive2OutlinedFilled.tsx | 2 +- src/IconHardDrive2Rounded.tsx | 2 +- src/IconHardDrive2RoundedFilled.tsx | 2 +- src/IconHardDrive2Sharp.tsx | 2 +- src/IconHardDrive2SharpFilled.tsx | 2 +- src/IconHardDriveOutlined.tsx | 2 +- src/IconHardDriveOutlinedFilled.tsx | 2 +- src/IconHardDriveRounded.tsx | 2 +- src/IconHardDriveRoundedFilled.tsx | 2 +- src/IconHardDriveSharp.tsx | 2 +- src/IconHardDriveSharpFilled.tsx | 2 +- src/IconHardwareOutlined.tsx | 2 +- src/IconHardwareOutlinedFilled.tsx | 2 +- src/IconHardwareRounded.tsx | 2 +- src/IconHardwareRoundedFilled.tsx | 2 +- src/IconHardwareSharp.tsx | 2 +- src/IconHardwareSharpFilled.tsx | 2 +- src/IconHdOutlined.tsx | 2 +- src/IconHdOutlinedFilled.tsx | 2 +- src/IconHdRounded.tsx | 2 +- src/IconHdRoundedFilled.tsx | 2 +- src/IconHdSharp.tsx | 2 +- src/IconHdSharpFilled.tsx | 2 +- src/IconHdrAutoOutlined.tsx | 2 +- src/IconHdrAutoOutlinedFilled.tsx | 2 +- src/IconHdrAutoRounded.tsx | 2 +- src/IconHdrAutoRoundedFilled.tsx | 2 +- src/IconHdrAutoSelectOutlined.tsx | 2 +- src/IconHdrAutoSelectOutlinedFilled.tsx | 2 +- src/IconHdrAutoSelectRounded.tsx | 2 +- src/IconHdrAutoSelectRoundedFilled.tsx | 2 +- src/IconHdrAutoSelectSharp.tsx | 2 +- src/IconHdrAutoSelectSharpFilled.tsx | 2 +- src/IconHdrAutoSharp.tsx | 2 +- src/IconHdrAutoSharpFilled.tsx | 2 +- src/IconHdrEnhancedSelectOutlined.tsx | 2 +- src/IconHdrEnhancedSelectOutlinedFilled.tsx | 2 +- src/IconHdrEnhancedSelectRounded.tsx | 2 +- src/IconHdrEnhancedSelectRoundedFilled.tsx | 2 +- src/IconHdrEnhancedSelectSharp.tsx | 2 +- src/IconHdrEnhancedSelectSharpFilled.tsx | 2 +- src/IconHdrOffOutlined.tsx | 2 +- src/IconHdrOffOutlinedFilled.tsx | 2 +- src/IconHdrOffRounded.tsx | 2 +- src/IconHdrOffRoundedFilled.tsx | 2 +- src/IconHdrOffSelectOutlined.tsx | 2 +- src/IconHdrOffSelectOutlinedFilled.tsx | 2 +- src/IconHdrOffSelectRounded.tsx | 2 +- src/IconHdrOffSelectRoundedFilled.tsx | 2 +- src/IconHdrOffSelectSharp.tsx | 2 +- src/IconHdrOffSelectSharpFilled.tsx | 2 +- src/IconHdrOffSharp.tsx | 2 +- src/IconHdrOffSharpFilled.tsx | 2 +- src/IconHdrOnOutlined.tsx | 2 +- src/IconHdrOnOutlinedFilled.tsx | 2 +- src/IconHdrOnRounded.tsx | 2 +- src/IconHdrOnRoundedFilled.tsx | 2 +- src/IconHdrOnSelectOutlined.tsx | 2 +- src/IconHdrOnSelectOutlinedFilled.tsx | 2 +- src/IconHdrOnSelectRounded.tsx | 2 +- src/IconHdrOnSelectRoundedFilled.tsx | 2 +- src/IconHdrOnSelectSharp.tsx | 2 +- src/IconHdrOnSelectSharpFilled.tsx | 2 +- src/IconHdrOnSharp.tsx | 2 +- src/IconHdrOnSharpFilled.tsx | 2 +- src/IconHdrPlusOffOutlined.tsx | 2 +- src/IconHdrPlusOffOutlinedFilled.tsx | 2 +- src/IconHdrPlusOffRounded.tsx | 2 +- src/IconHdrPlusOffRoundedFilled.tsx | 2 +- src/IconHdrPlusOffSharp.tsx | 2 +- src/IconHdrPlusOffSharpFilled.tsx | 2 +- src/IconHdrPlusOutlined.tsx | 2 +- src/IconHdrPlusOutlinedFilled.tsx | 2 +- src/IconHdrPlusRounded.tsx | 2 +- src/IconHdrPlusRoundedFilled.tsx | 2 +- src/IconHdrPlusSharp.tsx | 2 +- src/IconHdrPlusSharpFilled.tsx | 2 +- src/IconHdrStrongOutlined.tsx | 2 +- src/IconHdrStrongOutlinedFilled.tsx | 2 +- src/IconHdrStrongRounded.tsx | 2 +- src/IconHdrStrongRoundedFilled.tsx | 2 +- src/IconHdrStrongSharp.tsx | 2 +- src/IconHdrStrongSharpFilled.tsx | 2 +- src/IconHdrWeakOutlined.tsx | 2 +- src/IconHdrWeakOutlinedFilled.tsx | 2 +- src/IconHdrWeakRounded.tsx | 2 +- src/IconHdrWeakRoundedFilled.tsx | 2 +- src/IconHdrWeakSharp.tsx | 2 +- src/IconHdrWeakSharpFilled.tsx | 2 +- src/IconHeadMountedDeviceOutlined.tsx | 2 +- src/IconHeadMountedDeviceOutlinedFilled.tsx | 2 +- src/IconHeadMountedDeviceRounded.tsx | 2 +- src/IconHeadMountedDeviceRoundedFilled.tsx | 2 +- src/IconHeadMountedDeviceSharp.tsx | 2 +- src/IconHeadMountedDeviceSharpFilled.tsx | 2 +- src/IconHeadphonesBatteryOutlined.tsx | 2 +- src/IconHeadphonesBatteryOutlinedFilled.tsx | 2 +- src/IconHeadphonesBatteryRounded.tsx | 2 +- src/IconHeadphonesBatteryRoundedFilled.tsx | 2 +- src/IconHeadphonesBatterySharp.tsx | 2 +- src/IconHeadphonesBatterySharpFilled.tsx | 2 +- src/IconHeadphonesOutlined.tsx | 2 +- src/IconHeadphonesOutlinedFilled.tsx | 2 +- src/IconHeadphonesRounded.tsx | 2 +- src/IconHeadphonesRoundedFilled.tsx | 2 +- src/IconHeadphonesSharp.tsx | 2 +- src/IconHeadphonesSharpFilled.tsx | 2 +- src/IconHeadsetMicOutlined.tsx | 2 +- src/IconHeadsetMicOutlinedFilled.tsx | 2 +- src/IconHeadsetMicRounded.tsx | 2 +- src/IconHeadsetMicRoundedFilled.tsx | 2 +- src/IconHeadsetMicSharp.tsx | 2 +- src/IconHeadsetMicSharpFilled.tsx | 2 +- src/IconHeadsetOffOutlined.tsx | 2 +- src/IconHeadsetOffOutlinedFilled.tsx | 2 +- src/IconHeadsetOffRounded.tsx | 2 +- src/IconHeadsetOffRoundedFilled.tsx | 2 +- src/IconHeadsetOffSharp.tsx | 2 +- src/IconHeadsetOffSharpFilled.tsx | 2 +- src/IconHealingOutlined.tsx | 2 +- src/IconHealingOutlinedFilled.tsx | 2 +- src/IconHealingRounded.tsx | 2 +- src/IconHealingRoundedFilled.tsx | 2 +- src/IconHealingSharp.tsx | 2 +- src/IconHealingSharpFilled.tsx | 2 +- src/IconHealthAndBeautyOutlined.tsx | 2 +- src/IconHealthAndBeautyOutlinedFilled.tsx | 2 +- src/IconHealthAndBeautyRounded.tsx | 2 +- src/IconHealthAndBeautyRoundedFilled.tsx | 2 +- src/IconHealthAndBeautySharp.tsx | 2 +- src/IconHealthAndBeautySharpFilled.tsx | 2 +- src/IconHealthAndSafetyOutlined.tsx | 2 +- src/IconHealthAndSafetyOutlinedFilled.tsx | 2 +- src/IconHealthAndSafetyRounded.tsx | 2 +- src/IconHealthAndSafetyRoundedFilled.tsx | 2 +- src/IconHealthAndSafetySharp.tsx | 2 +- src/IconHealthAndSafetySharpFilled.tsx | 2 +- src/IconHealthMetricsOutlined.tsx | 2 +- src/IconHealthMetricsOutlinedFilled.tsx | 2 +- src/IconHealthMetricsRounded.tsx | 2 +- src/IconHealthMetricsRoundedFilled.tsx | 2 +- src/IconHealthMetricsSharp.tsx | 2 +- src/IconHealthMetricsSharpFilled.tsx | 2 +- src/IconHeapSnapshotLargeOutlined.tsx | 2 +- src/IconHeapSnapshotLargeOutlinedFilled.tsx | 2 +- src/IconHeapSnapshotLargeRounded.tsx | 2 +- src/IconHeapSnapshotLargeRoundedFilled.tsx | 2 +- src/IconHeapSnapshotLargeSharp.tsx | 2 +- src/IconHeapSnapshotLargeSharpFilled.tsx | 2 +- src/IconHeapSnapshotMultipleOutlined.tsx | 2 +- src/IconHeapSnapshotMultipleOutlinedFilled.tsx | 2 +- src/IconHeapSnapshotMultipleRounded.tsx | 2 +- src/IconHeapSnapshotMultipleRoundedFilled.tsx | 2 +- src/IconHeapSnapshotMultipleSharp.tsx | 2 +- src/IconHeapSnapshotMultipleSharpFilled.tsx | 2 +- src/IconHeapSnapshotThumbnailOutlined.tsx | 2 +- src/IconHeapSnapshotThumbnailOutlinedFilled.tsx | 2 +- src/IconHeapSnapshotThumbnailRounded.tsx | 2 +- src/IconHeapSnapshotThumbnailRoundedFilled.tsx | 2 +- src/IconHeapSnapshotThumbnailSharp.tsx | 2 +- src/IconHeapSnapshotThumbnailSharpFilled.tsx | 2 +- src/IconHearingAidOutlined.tsx | 2 +- src/IconHearingAidOutlinedFilled.tsx | 2 +- src/IconHearingAidRounded.tsx | 2 +- src/IconHearingAidRoundedFilled.tsx | 2 +- src/IconHearingAidSharp.tsx | 2 +- src/IconHearingAidSharpFilled.tsx | 2 +- src/IconHearingDisabledOutlined.tsx | 2 +- src/IconHearingDisabledOutlinedFilled.tsx | 2 +- src/IconHearingDisabledRounded.tsx | 2 +- src/IconHearingDisabledRoundedFilled.tsx | 2 +- src/IconHearingDisabledSharp.tsx | 2 +- src/IconHearingDisabledSharpFilled.tsx | 2 +- src/IconHearingOutlined.tsx | 2 +- src/IconHearingOutlinedFilled.tsx | 2 +- src/IconHearingRounded.tsx | 2 +- src/IconHearingRoundedFilled.tsx | 2 +- src/IconHearingSharp.tsx | 2 +- src/IconHearingSharpFilled.tsx | 2 +- src/IconHeartBrokenOutlined.tsx | 2 +- src/IconHeartBrokenOutlinedFilled.tsx | 2 +- src/IconHeartBrokenRounded.tsx | 2 +- src/IconHeartBrokenRoundedFilled.tsx | 2 +- src/IconHeartBrokenSharp.tsx | 2 +- src/IconHeartBrokenSharpFilled.tsx | 2 +- src/IconHeartCheckOutlined.tsx | 2 +- src/IconHeartCheckOutlinedFilled.tsx | 2 +- src/IconHeartCheckRounded.tsx | 2 +- src/IconHeartCheckRoundedFilled.tsx | 2 +- src/IconHeartCheckSharp.tsx | 2 +- src/IconHeartCheckSharpFilled.tsx | 2 +- src/IconHeartMinusOutlined.tsx | 2 +- src/IconHeartMinusOutlinedFilled.tsx | 2 +- src/IconHeartMinusRounded.tsx | 2 +- src/IconHeartMinusRoundedFilled.tsx | 2 +- src/IconHeartMinusSharp.tsx | 2 +- src/IconHeartMinusSharpFilled.tsx | 2 +- src/IconHeartPlusOutlined.tsx | 2 +- src/IconHeartPlusOutlinedFilled.tsx | 2 +- src/IconHeartPlusRounded.tsx | 2 +- src/IconHeartPlusRoundedFilled.tsx | 2 +- src/IconHeartPlusSharp.tsx | 2 +- src/IconHeartPlusSharpFilled.tsx | 2 +- src/IconHeatOutlined.tsx | 2 +- src/IconHeatOutlinedFilled.tsx | 2 +- src/IconHeatPumpBalanceOutlined.tsx | 2 +- src/IconHeatPumpBalanceOutlinedFilled.tsx | 2 +- src/IconHeatPumpBalanceRounded.tsx | 2 +- src/IconHeatPumpBalanceRoundedFilled.tsx | 2 +- src/IconHeatPumpBalanceSharp.tsx | 2 +- src/IconHeatPumpBalanceSharpFilled.tsx | 2 +- src/IconHeatPumpOutlined.tsx | 2 +- src/IconHeatPumpOutlinedFilled.tsx | 2 +- src/IconHeatPumpRounded.tsx | 2 +- src/IconHeatPumpRoundedFilled.tsx | 2 +- src/IconHeatPumpSharp.tsx | 2 +- src/IconHeatPumpSharpFilled.tsx | 2 +- src/IconHeatRounded.tsx | 2 +- src/IconHeatRoundedFilled.tsx | 2 +- src/IconHeatSharp.tsx | 2 +- src/IconHeatSharpFilled.tsx | 2 +- src/IconHeightOutlined.tsx | 2 +- src/IconHeightOutlinedFilled.tsx | 2 +- src/IconHeightRounded.tsx | 2 +- src/IconHeightRoundedFilled.tsx | 2 +- src/IconHeightSharp.tsx | 2 +- src/IconHeightSharpFilled.tsx | 2 +- src/IconHelicopterOutlined.tsx | 2 +- src/IconHelicopterOutlinedFilled.tsx | 2 +- src/IconHelicopterRounded.tsx | 2 +- src/IconHelicopterRoundedFilled.tsx | 2 +- src/IconHelicopterSharp.tsx | 2 +- src/IconHelicopterSharpFilled.tsx | 2 +- src/IconHelpCenterOutlined.tsx | 2 +- src/IconHelpCenterOutlinedFilled.tsx | 2 +- src/IconHelpCenterRounded.tsx | 2 +- src/IconHelpCenterRoundedFilled.tsx | 2 +- src/IconHelpCenterSharp.tsx | 2 +- src/IconHelpCenterSharpFilled.tsx | 2 +- src/IconHelpClinicOutlined.tsx | 2 +- src/IconHelpClinicOutlinedFilled.tsx | 2 +- src/IconHelpClinicRounded.tsx | 2 +- src/IconHelpClinicRoundedFilled.tsx | 2 +- src/IconHelpClinicSharp.tsx | 2 +- src/IconHelpClinicSharpFilled.tsx | 2 +- src/IconHelpOutlined.tsx | 2 +- src/IconHelpOutlinedFilled.tsx | 2 +- src/IconHelpRounded.tsx | 2 +- src/IconHelpRoundedFilled.tsx | 2 +- src/IconHelpSharp.tsx | 2 +- src/IconHelpSharpFilled.tsx | 2 +- src/IconHematologyOutlined.tsx | 2 +- src/IconHematologyOutlinedFilled.tsx | 2 +- src/IconHematologyRounded.tsx | 2 +- src/IconHematologyRoundedFilled.tsx | 2 +- src/IconHematologySharp.tsx | 2 +- src/IconHematologySharpFilled.tsx | 2 +- src/IconHevcOutlined.tsx | 2 +- src/IconHevcOutlinedFilled.tsx | 2 +- src/IconHevcRounded.tsx | 2 +- src/IconHevcRoundedFilled.tsx | 2 +- src/IconHevcSharp.tsx | 2 +- src/IconHevcSharpFilled.tsx | 2 +- src/IconHexagonOutlined.tsx | 2 +- src/IconHexagonOutlinedFilled.tsx | 2 +- src/IconHexagonRounded.tsx | 2 +- src/IconHexagonRoundedFilled.tsx | 2 +- src/IconHexagonSharp.tsx | 2 +- src/IconHexagonSharpFilled.tsx | 2 +- src/IconHideImageOutlined.tsx | 2 +- src/IconHideImageOutlinedFilled.tsx | 2 +- src/IconHideImageRounded.tsx | 2 +- src/IconHideImageRoundedFilled.tsx | 2 +- src/IconHideImageSharp.tsx | 2 +- src/IconHideImageSharpFilled.tsx | 2 +- src/IconHideOutlined.tsx | 2 +- src/IconHideOutlinedFilled.tsx | 2 +- src/IconHideRounded.tsx | 2 +- src/IconHideRoundedFilled.tsx | 2 +- src/IconHideSharp.tsx | 2 +- src/IconHideSharpFilled.tsx | 2 +- src/IconHideSourceOutlined.tsx | 2 +- src/IconHideSourceOutlinedFilled.tsx | 2 +- src/IconHideSourceRounded.tsx | 2 +- src/IconHideSourceRoundedFilled.tsx | 2 +- src/IconHideSourceSharp.tsx | 2 +- src/IconHideSourceSharpFilled.tsx | 2 +- src/IconHighDensityOutlined.tsx | 2 +- src/IconHighDensityOutlinedFilled.tsx | 2 +- src/IconHighDensityRounded.tsx | 2 +- src/IconHighDensityRoundedFilled.tsx | 2 +- src/IconHighDensitySharp.tsx | 2 +- src/IconHighDensitySharpFilled.tsx | 2 +- src/IconHighQualityOutlined.tsx | 2 +- src/IconHighQualityOutlinedFilled.tsx | 2 +- src/IconHighQualityRounded.tsx | 2 +- src/IconHighQualityRoundedFilled.tsx | 2 +- src/IconHighQualitySharp.tsx | 2 +- src/IconHighQualitySharpFilled.tsx | 2 +- src/IconHighResOutlined.tsx | 2 +- src/IconHighResOutlinedFilled.tsx | 2 +- src/IconHighResRounded.tsx | 2 +- src/IconHighResRoundedFilled.tsx | 2 +- src/IconHighResSharp.tsx | 2 +- src/IconHighResSharpFilled.tsx | 2 +- src/IconHighlightKeyboardFocusOutlined.tsx | 2 +- src/IconHighlightKeyboardFocusOutlinedFilled.tsx | 2 +- src/IconHighlightKeyboardFocusRounded.tsx | 2 +- src/IconHighlightKeyboardFocusRoundedFilled.tsx | 2 +- src/IconHighlightKeyboardFocusSharp.tsx | 2 +- src/IconHighlightKeyboardFocusSharpFilled.tsx | 2 +- src/IconHighlightMouseCursorOutlined.tsx | 2 +- src/IconHighlightMouseCursorOutlinedFilled.tsx | 2 +- src/IconHighlightMouseCursorRounded.tsx | 2 +- src/IconHighlightMouseCursorRoundedFilled.tsx | 2 +- src/IconHighlightMouseCursorSharp.tsx | 2 +- src/IconHighlightMouseCursorSharpFilled.tsx | 2 +- src/IconHighlightOutlined.tsx | 2 +- src/IconHighlightOutlinedFilled.tsx | 2 +- src/IconHighlightRounded.tsx | 2 +- src/IconHighlightRoundedFilled.tsx | 2 +- src/IconHighlightSharp.tsx | 2 +- src/IconHighlightSharpFilled.tsx | 2 +- src/IconHighlightTextCursorOutlined.tsx | 2 +- src/IconHighlightTextCursorOutlinedFilled.tsx | 2 +- src/IconHighlightTextCursorRounded.tsx | 2 +- src/IconHighlightTextCursorRoundedFilled.tsx | 2 +- src/IconHighlightTextCursorSharp.tsx | 2 +- src/IconHighlightTextCursorSharpFilled.tsx | 2 +- src/IconHighlighterSize1Outlined.tsx | 2 +- src/IconHighlighterSize1OutlinedFilled.tsx | 2 +- src/IconHighlighterSize1Rounded.tsx | 2 +- src/IconHighlighterSize1RoundedFilled.tsx | 2 +- src/IconHighlighterSize1Sharp.tsx | 2 +- src/IconHighlighterSize1SharpFilled.tsx | 2 +- src/IconHighlighterSize2Outlined.tsx | 2 +- src/IconHighlighterSize2OutlinedFilled.tsx | 2 +- src/IconHighlighterSize2Rounded.tsx | 2 +- src/IconHighlighterSize2RoundedFilled.tsx | 2 +- src/IconHighlighterSize2Sharp.tsx | 2 +- src/IconHighlighterSize2SharpFilled.tsx | 2 +- src/IconHighlighterSize3Outlined.tsx | 2 +- src/IconHighlighterSize3OutlinedFilled.tsx | 2 +- src/IconHighlighterSize3Rounded.tsx | 2 +- src/IconHighlighterSize3RoundedFilled.tsx | 2 +- src/IconHighlighterSize3Sharp.tsx | 2 +- src/IconHighlighterSize3SharpFilled.tsx | 2 +- src/IconHighlighterSize4Outlined.tsx | 2 +- src/IconHighlighterSize4OutlinedFilled.tsx | 2 +- src/IconHighlighterSize4Rounded.tsx | 2 +- src/IconHighlighterSize4RoundedFilled.tsx | 2 +- src/IconHighlighterSize4Sharp.tsx | 2 +- src/IconHighlighterSize4SharpFilled.tsx | 2 +- src/IconHighlighterSize5Outlined.tsx | 2 +- src/IconHighlighterSize5OutlinedFilled.tsx | 2 +- src/IconHighlighterSize5Rounded.tsx | 2 +- src/IconHighlighterSize5RoundedFilled.tsx | 2 +- src/IconHighlighterSize5Sharp.tsx | 2 +- src/IconHighlighterSize5SharpFilled.tsx | 2 +- src/IconHikingOutlined.tsx | 2 +- src/IconHikingOutlinedFilled.tsx | 2 +- src/IconHikingRounded.tsx | 2 +- src/IconHikingRoundedFilled.tsx | 2 +- src/IconHikingSharp.tsx | 2 +- src/IconHikingSharpFilled.tsx | 2 +- src/IconHistoryEduOutlined.tsx | 2 +- src/IconHistoryEduOutlinedFilled.tsx | 2 +- src/IconHistoryEduRounded.tsx | 2 +- src/IconHistoryEduRoundedFilled.tsx | 2 +- src/IconHistoryEduSharp.tsx | 2 +- src/IconHistoryEduSharpFilled.tsx | 2 +- src/IconHistoryOffOutlined.tsx | 2 +- src/IconHistoryOffOutlinedFilled.tsx | 2 +- src/IconHistoryOffRounded.tsx | 2 +- src/IconHistoryOffRoundedFilled.tsx | 2 +- src/IconHistoryOffSharp.tsx | 2 +- src/IconHistoryOffSharpFilled.tsx | 2 +- src/IconHistoryOutlined.tsx | 2 +- src/IconHistoryOutlinedFilled.tsx | 2 +- src/IconHistoryRounded.tsx | 2 +- src/IconHistoryRoundedFilled.tsx | 2 +- src/IconHistorySharp.tsx | 2 +- src/IconHistorySharpFilled.tsx | 2 +- src/IconHistoryToggleOffOutlined.tsx | 2 +- src/IconHistoryToggleOffOutlinedFilled.tsx | 2 +- src/IconHistoryToggleOffRounded.tsx | 2 +- src/IconHistoryToggleOffRoundedFilled.tsx | 2 +- src/IconHistoryToggleOffSharp.tsx | 2 +- src/IconHistoryToggleOffSharpFilled.tsx | 2 +- src/IconHiveOutlined.tsx | 2 +- src/IconHiveOutlinedFilled.tsx | 2 +- src/IconHiveRounded.tsx | 2 +- src/IconHiveRoundedFilled.tsx | 2 +- src/IconHiveSharp.tsx | 2 +- src/IconHiveSharpFilled.tsx | 2 +- src/IconHlsOffOutlined.tsx | 2 +- src/IconHlsOffOutlinedFilled.tsx | 2 +- src/IconHlsOffRounded.tsx | 2 +- src/IconHlsOffRoundedFilled.tsx | 2 +- src/IconHlsOffSharp.tsx | 2 +- src/IconHlsOffSharpFilled.tsx | 2 +- src/IconHlsOutlined.tsx | 2 +- src/IconHlsOutlinedFilled.tsx | 2 +- src/IconHlsRounded.tsx | 2 +- src/IconHlsRoundedFilled.tsx | 2 +- src/IconHlsSharp.tsx | 2 +- src/IconHlsSharpFilled.tsx | 2 +- src/IconHolidayVillageOutlined.tsx | 2 +- src/IconHolidayVillageOutlinedFilled.tsx | 2 +- src/IconHolidayVillageRounded.tsx | 2 +- src/IconHolidayVillageRoundedFilled.tsx | 2 +- src/IconHolidayVillageSharp.tsx | 2 +- src/IconHolidayVillageSharpFilled.tsx | 2 +- src/IconHomeAndGardenOutlined.tsx | 2 +- src/IconHomeAndGardenOutlinedFilled.tsx | 2 +- src/IconHomeAndGardenRounded.tsx | 2 +- src/IconHomeAndGardenRoundedFilled.tsx | 2 +- src/IconHomeAndGardenSharp.tsx | 2 +- src/IconHomeAndGardenSharpFilled.tsx | 2 +- src/IconHomeAppLogoOutlined.tsx | 2 +- src/IconHomeAppLogoOutlinedFilled.tsx | 2 +- src/IconHomeAppLogoRounded.tsx | 2 +- src/IconHomeAppLogoRoundedFilled.tsx | 2 +- src/IconHomeAppLogoSharp.tsx | 2 +- src/IconHomeAppLogoSharpFilled.tsx | 2 +- src/IconHomeHealthOutlined.tsx | 2 +- src/IconHomeHealthOutlinedFilled.tsx | 2 +- src/IconHomeHealthRounded.tsx | 2 +- src/IconHomeHealthRoundedFilled.tsx | 2 +- src/IconHomeHealthSharp.tsx | 2 +- src/IconHomeHealthSharpFilled.tsx | 2 +- src/IconHomeImprovementAndToolsOutlined.tsx | 2 +- src/IconHomeImprovementAndToolsOutlinedFilled.tsx | 2 +- src/IconHomeImprovementAndToolsRounded.tsx | 2 +- src/IconHomeImprovementAndToolsRoundedFilled.tsx | 2 +- src/IconHomeImprovementAndToolsSharp.tsx | 2 +- src/IconHomeImprovementAndToolsSharpFilled.tsx | 2 +- src/IconHomeIotDeviceOutlined.tsx | 2 +- src/IconHomeIotDeviceOutlinedFilled.tsx | 2 +- src/IconHomeIotDeviceRounded.tsx | 2 +- src/IconHomeIotDeviceRoundedFilled.tsx | 2 +- src/IconHomeIotDeviceSharp.tsx | 2 +- src/IconHomeIotDeviceSharpFilled.tsx | 2 +- src/IconHomeMaxDotsOutlined.tsx | 2 +- src/IconHomeMaxDotsOutlinedFilled.tsx | 2 +- src/IconHomeMaxDotsRounded.tsx | 2 +- src/IconHomeMaxDotsRoundedFilled.tsx | 2 +- src/IconHomeMaxDotsSharp.tsx | 2 +- src/IconHomeMaxDotsSharpFilled.tsx | 2 +- src/IconHomeMaxOutlined.tsx | 2 +- src/IconHomeMaxOutlinedFilled.tsx | 2 +- src/IconHomeMaxRounded.tsx | 2 +- src/IconHomeMaxRoundedFilled.tsx | 2 +- src/IconHomeMaxSharp.tsx | 2 +- src/IconHomeMaxSharpFilled.tsx | 2 +- src/IconHomeMiniOutlined.tsx | 2 +- src/IconHomeMiniOutlinedFilled.tsx | 2 +- src/IconHomeMiniRounded.tsx | 2 +- src/IconHomeMiniRoundedFilled.tsx | 2 +- src/IconHomeMiniSharp.tsx | 2 +- src/IconHomeMiniSharpFilled.tsx | 2 +- src/IconHomeOutlined.tsx | 2 +- src/IconHomeOutlinedFilled.tsx | 2 +- src/IconHomePinOutlined.tsx | 2 +- src/IconHomePinOutlinedFilled.tsx | 2 +- src/IconHomePinRounded.tsx | 2 +- src/IconHomePinRoundedFilled.tsx | 2 +- src/IconHomePinSharp.tsx | 2 +- src/IconHomePinSharpFilled.tsx | 2 +- src/IconHomeRepairServiceOutlined.tsx | 2 +- src/IconHomeRepairServiceOutlinedFilled.tsx | 2 +- src/IconHomeRepairServiceRounded.tsx | 2 +- src/IconHomeRepairServiceRoundedFilled.tsx | 2 +- src/IconHomeRepairServiceSharp.tsx | 2 +- src/IconHomeRepairServiceSharpFilled.tsx | 2 +- src/IconHomeRounded.tsx | 2 +- src/IconHomeRoundedFilled.tsx | 2 +- src/IconHomeSharp.tsx | 2 +- src/IconHomeSharpFilled.tsx | 2 +- src/IconHomeSpeakerOutlined.tsx | 2 +- src/IconHomeSpeakerOutlinedFilled.tsx | 2 +- src/IconHomeSpeakerRounded.tsx | 2 +- src/IconHomeSpeakerRoundedFilled.tsx | 2 +- src/IconHomeSpeakerSharp.tsx | 2 +- src/IconHomeSpeakerSharpFilled.tsx | 2 +- src/IconHomeStorageOutlined.tsx | 2 +- src/IconHomeStorageOutlinedFilled.tsx | 2 +- src/IconHomeStorageRounded.tsx | 2 +- src/IconHomeStorageRoundedFilled.tsx | 2 +- src/IconHomeStorageSharp.tsx | 2 +- src/IconHomeStorageSharpFilled.tsx | 2 +- src/IconHomeWorkOutlined.tsx | 2 +- src/IconHomeWorkOutlinedFilled.tsx | 2 +- src/IconHomeWorkRounded.tsx | 2 +- src/IconHomeWorkRoundedFilled.tsx | 2 +- src/IconHomeWorkSharp.tsx | 2 +- src/IconHomeWorkSharpFilled.tsx | 2 +- src/IconHorizontalDistributeOutlined.tsx | 2 +- src/IconHorizontalDistributeOutlinedFilled.tsx | 2 +- src/IconHorizontalDistributeRounded.tsx | 2 +- src/IconHorizontalDistributeRoundedFilled.tsx | 2 +- src/IconHorizontalDistributeSharp.tsx | 2 +- src/IconHorizontalDistributeSharpFilled.tsx | 2 +- src/IconHorizontalRuleOutlined.tsx | 2 +- src/IconHorizontalRuleOutlinedFilled.tsx | 2 +- src/IconHorizontalRuleRounded.tsx | 2 +- src/IconHorizontalRuleRoundedFilled.tsx | 2 +- src/IconHorizontalRuleSharp.tsx | 2 +- src/IconHorizontalRuleSharpFilled.tsx | 2 +- src/IconHorizontalSplitOutlined.tsx | 2 +- src/IconHorizontalSplitOutlinedFilled.tsx | 2 +- src/IconHorizontalSplitRounded.tsx | 2 +- src/IconHorizontalSplitRoundedFilled.tsx | 2 +- src/IconHorizontalSplitSharp.tsx | 2 +- src/IconHorizontalSplitSharpFilled.tsx | 2 +- src/IconHotTubOutlined.tsx | 2 +- src/IconHotTubOutlinedFilled.tsx | 2 +- src/IconHotTubRounded.tsx | 2 +- src/IconHotTubRoundedFilled.tsx | 2 +- src/IconHotTubSharp.tsx | 2 +- src/IconHotTubSharpFilled.tsx | 2 +- src/IconHotelClassOutlined.tsx | 2 +- src/IconHotelClassOutlinedFilled.tsx | 2 +- src/IconHotelClassRounded.tsx | 2 +- src/IconHotelClassRoundedFilled.tsx | 2 +- src/IconHotelClassSharp.tsx | 2 +- src/IconHotelClassSharpFilled.tsx | 2 +- src/IconHotelOutlined.tsx | 2 +- src/IconHotelOutlinedFilled.tsx | 2 +- src/IconHotelRounded.tsx | 2 +- src/IconHotelRoundedFilled.tsx | 2 +- src/IconHotelSharp.tsx | 2 +- src/IconHotelSharpFilled.tsx | 2 +- src/IconHourglassBottomOutlined.tsx | 2 +- src/IconHourglassBottomOutlinedFilled.tsx | 2 +- src/IconHourglassBottomRounded.tsx | 2 +- src/IconHourglassBottomRoundedFilled.tsx | 2 +- src/IconHourglassBottomSharp.tsx | 2 +- src/IconHourglassBottomSharpFilled.tsx | 2 +- src/IconHourglassDisabledOutlined.tsx | 2 +- src/IconHourglassDisabledOutlinedFilled.tsx | 2 +- src/IconHourglassDisabledRounded.tsx | 2 +- src/IconHourglassDisabledRoundedFilled.tsx | 2 +- src/IconHourglassDisabledSharp.tsx | 2 +- src/IconHourglassDisabledSharpFilled.tsx | 2 +- src/IconHourglassEmptyOutlined.tsx | 2 +- src/IconHourglassEmptyOutlinedFilled.tsx | 2 +- src/IconHourglassEmptyRounded.tsx | 2 +- src/IconHourglassEmptyRoundedFilled.tsx | 2 +- src/IconHourglassEmptySharp.tsx | 2 +- src/IconHourglassEmptySharpFilled.tsx | 2 +- src/IconHourglassOutlined.tsx | 2 +- src/IconHourglassOutlinedFilled.tsx | 2 +- src/IconHourglassRounded.tsx | 2 +- src/IconHourglassRoundedFilled.tsx | 2 +- src/IconHourglassSharp.tsx | 2 +- src/IconHourglassSharpFilled.tsx | 2 +- src/IconHourglassTopOutlined.tsx | 2 +- src/IconHourglassTopOutlinedFilled.tsx | 2 +- src/IconHourglassTopRounded.tsx | 2 +- src/IconHourglassTopRoundedFilled.tsx | 2 +- src/IconHourglassTopSharp.tsx | 2 +- src/IconHourglassTopSharpFilled.tsx | 2 +- src/IconHouseOutlined.tsx | 2 +- src/IconHouseOutlinedFilled.tsx | 2 +- src/IconHouseRounded.tsx | 2 +- src/IconHouseRoundedFilled.tsx | 2 +- src/IconHouseSharp.tsx | 2 +- src/IconHouseSharpFilled.tsx | 2 +- src/IconHouseSidingOutlined.tsx | 2 +- src/IconHouseSidingOutlinedFilled.tsx | 2 +- src/IconHouseSidingRounded.tsx | 2 +- src/IconHouseSidingRoundedFilled.tsx | 2 +- src/IconHouseSidingSharp.tsx | 2 +- src/IconHouseSidingSharpFilled.tsx | 2 +- src/IconHouseWithShieldOutlined.tsx | 2 +- src/IconHouseWithShieldOutlinedFilled.tsx | 2 +- src/IconHouseWithShieldRounded.tsx | 2 +- src/IconHouseWithShieldRoundedFilled.tsx | 2 +- src/IconHouseWithShieldSharp.tsx | 2 +- src/IconHouseWithShieldSharpFilled.tsx | 2 +- src/IconHouseboatOutlined.tsx | 2 +- src/IconHouseboatOutlinedFilled.tsx | 2 +- src/IconHouseboatRounded.tsx | 2 +- src/IconHouseboatRoundedFilled.tsx | 2 +- src/IconHouseboatSharp.tsx | 2 +- src/IconHouseboatSharpFilled.tsx | 2 +- src/IconHouseholdSuppliesOutlined.tsx | 2 +- src/IconHouseholdSuppliesOutlinedFilled.tsx | 2 +- src/IconHouseholdSuppliesRounded.tsx | 2 +- src/IconHouseholdSuppliesRoundedFilled.tsx | 2 +- src/IconHouseholdSuppliesSharp.tsx | 2 +- src/IconHouseholdSuppliesSharpFilled.tsx | 2 +- src/IconHovOutlined.tsx | 2 +- src/IconHovOutlinedFilled.tsx | 2 +- src/IconHovRounded.tsx | 2 +- src/IconHovRoundedFilled.tsx | 2 +- src/IconHovSharp.tsx | 2 +- src/IconHovSharpFilled.tsx | 2 +- src/IconHowToRegOutlined.tsx | 2 +- src/IconHowToRegOutlinedFilled.tsx | 2 +- src/IconHowToRegRounded.tsx | 2 +- src/IconHowToRegRoundedFilled.tsx | 2 +- src/IconHowToRegSharp.tsx | 2 +- src/IconHowToRegSharpFilled.tsx | 2 +- src/IconHowToVoteOutlined.tsx | 2 +- src/IconHowToVoteOutlinedFilled.tsx | 2 +- src/IconHowToVoteRounded.tsx | 2 +- src/IconHowToVoteRoundedFilled.tsx | 2 +- src/IconHowToVoteSharp.tsx | 2 +- src/IconHowToVoteSharpFilled.tsx | 2 +- src/IconHrRestingOutlined.tsx | 2 +- src/IconHrRestingOutlinedFilled.tsx | 2 +- src/IconHrRestingRounded.tsx | 2 +- src/IconHrRestingRoundedFilled.tsx | 2 +- src/IconHrRestingSharp.tsx | 2 +- src/IconHrRestingSharpFilled.tsx | 2 +- src/IconHtmlOutlined.tsx | 2 +- src/IconHtmlOutlinedFilled.tsx | 2 +- src/IconHtmlRounded.tsx | 2 +- src/IconHtmlRoundedFilled.tsx | 2 +- src/IconHtmlSharp.tsx | 2 +- src/IconHtmlSharpFilled.tsx | 2 +- src/IconHttpOutlined.tsx | 2 +- src/IconHttpOutlinedFilled.tsx | 2 +- src/IconHttpRounded.tsx | 2 +- src/IconHttpRoundedFilled.tsx | 2 +- src/IconHttpSharp.tsx | 2 +- src/IconHttpSharpFilled.tsx | 2 +- src/IconHubOutlined.tsx | 2 +- src/IconHubOutlinedFilled.tsx | 2 +- src/IconHubRounded.tsx | 2 +- src/IconHubRoundedFilled.tsx | 2 +- src/IconHubSharp.tsx | 2 +- src/IconHubSharpFilled.tsx | 2 +- src/IconHumerusAltOutlined.tsx | 2 +- src/IconHumerusAltOutlinedFilled.tsx | 2 +- src/IconHumerusAltRounded.tsx | 2 +- src/IconHumerusAltRoundedFilled.tsx | 2 +- src/IconHumerusAltSharp.tsx | 2 +- src/IconHumerusAltSharpFilled.tsx | 2 +- src/IconHumerusOutlined.tsx | 2 +- src/IconHumerusOutlinedFilled.tsx | 2 +- src/IconHumerusRounded.tsx | 2 +- src/IconHumerusRoundedFilled.tsx | 2 +- src/IconHumerusSharp.tsx | 2 +- src/IconHumerusSharpFilled.tsx | 2 +- src/IconHumidityHighOutlined.tsx | 2 +- src/IconHumidityHighOutlinedFilled.tsx | 2 +- src/IconHumidityHighRounded.tsx | 2 +- src/IconHumidityHighRoundedFilled.tsx | 2 +- src/IconHumidityHighSharp.tsx | 2 +- src/IconHumidityHighSharpFilled.tsx | 2 +- src/IconHumidityIndoorOutlined.tsx | 2 +- src/IconHumidityIndoorOutlinedFilled.tsx | 2 +- src/IconHumidityIndoorRounded.tsx | 2 +- src/IconHumidityIndoorRoundedFilled.tsx | 2 +- src/IconHumidityIndoorSharp.tsx | 2 +- src/IconHumidityIndoorSharpFilled.tsx | 2 +- src/IconHumidityLowOutlined.tsx | 2 +- src/IconHumidityLowOutlinedFilled.tsx | 2 +- src/IconHumidityLowRounded.tsx | 2 +- src/IconHumidityLowRoundedFilled.tsx | 2 +- src/IconHumidityLowSharp.tsx | 2 +- src/IconHumidityLowSharpFilled.tsx | 2 +- src/IconHumidityMidOutlined.tsx | 2 +- src/IconHumidityMidOutlinedFilled.tsx | 2 +- src/IconHumidityMidRounded.tsx | 2 +- src/IconHumidityMidRoundedFilled.tsx | 2 +- src/IconHumidityMidSharp.tsx | 2 +- src/IconHumidityMidSharpFilled.tsx | 2 +- src/IconHumidityPercentageOutlined.tsx | 2 +- src/IconHumidityPercentageOutlinedFilled.tsx | 2 +- src/IconHumidityPercentageRounded.tsx | 2 +- src/IconHumidityPercentageRoundedFilled.tsx | 2 +- src/IconHumidityPercentageSharp.tsx | 2 +- src/IconHumidityPercentageSharpFilled.tsx | 2 +- src/IconHvacOutlined.tsx | 2 +- src/IconHvacOutlinedFilled.tsx | 2 +- src/IconHvacRounded.tsx | 2 +- src/IconHvacRoundedFilled.tsx | 2 +- src/IconHvacSharp.tsx | 2 +- src/IconHvacSharpFilled.tsx | 2 +- src/IconIceSkatingOutlined.tsx | 2 +- src/IconIceSkatingOutlinedFilled.tsx | 2 +- src/IconIceSkatingRounded.tsx | 2 +- src/IconIceSkatingRoundedFilled.tsx | 2 +- src/IconIceSkatingSharp.tsx | 2 +- src/IconIceSkatingSharpFilled.tsx | 2 +- src/IconIcecreamOutlined.tsx | 2 +- src/IconIcecreamOutlinedFilled.tsx | 2 +- src/IconIcecreamRounded.tsx | 2 +- src/IconIcecreamRoundedFilled.tsx | 2 +- src/IconIcecreamSharp.tsx | 2 +- src/IconIcecreamSharpFilled.tsx | 2 +- src/IconIdCardOutlined.tsx | 2 +- src/IconIdCardOutlinedFilled.tsx | 2 +- src/IconIdCardRounded.tsx | 2 +- src/IconIdCardRoundedFilled.tsx | 2 +- src/IconIdCardSharp.tsx | 2 +- src/IconIdCardSharpFilled.tsx | 2 +- src/IconIflOutlined.tsx | 2 +- src/IconIflOutlinedFilled.tsx | 2 +- src/IconIflRounded.tsx | 2 +- src/IconIflRoundedFilled.tsx | 2 +- src/IconIflSharp.tsx | 2 +- src/IconIflSharpFilled.tsx | 2 +- src/IconIframeOffOutlined.tsx | 2 +- src/IconIframeOffOutlinedFilled.tsx | 2 +- src/IconIframeOffRounded.tsx | 2 +- src/IconIframeOffRoundedFilled.tsx | 2 +- src/IconIframeOffSharp.tsx | 2 +- src/IconIframeOffSharpFilled.tsx | 2 +- src/IconIframeOutlined.tsx | 2 +- src/IconIframeOutlinedFilled.tsx | 2 +- src/IconIframeRounded.tsx | 2 +- src/IconIframeRoundedFilled.tsx | 2 +- src/IconIframeSharp.tsx | 2 +- src/IconIframeSharpFilled.tsx | 2 +- src/IconImageAspectRatioOutlined.tsx | 2 +- src/IconImageAspectRatioOutlinedFilled.tsx | 2 +- src/IconImageAspectRatioRounded.tsx | 2 +- src/IconImageAspectRatioRoundedFilled.tsx | 2 +- src/IconImageAspectRatioSharp.tsx | 2 +- src/IconImageAspectRatioSharpFilled.tsx | 2 +- src/IconImageOutlined.tsx | 2 +- src/IconImageOutlinedFilled.tsx | 2 +- src/IconImageRounded.tsx | 2 +- src/IconImageRoundedFilled.tsx | 2 +- src/IconImageSearchOutlined.tsx | 2 +- src/IconImageSearchOutlinedFilled.tsx | 2 +- src/IconImageSearchRounded.tsx | 2 +- src/IconImageSearchRoundedFilled.tsx | 2 +- src/IconImageSearchSharp.tsx | 2 +- src/IconImageSearchSharpFilled.tsx | 2 +- src/IconImageSharp.tsx | 2 +- src/IconImageSharpFilled.tsx | 2 +- src/IconImagesearchRollerOutlined.tsx | 2 +- src/IconImagesearchRollerOutlinedFilled.tsx | 2 +- src/IconImagesearchRollerRounded.tsx | 2 +- src/IconImagesearchRollerRoundedFilled.tsx | 2 +- src/IconImagesearchRollerSharp.tsx | 2 +- src/IconImagesearchRollerSharpFilled.tsx | 2 +- src/IconImagesmodeOutlined.tsx | 2 +- src/IconImagesmodeOutlinedFilled.tsx | 2 +- src/IconImagesmodeRounded.tsx | 2 +- src/IconImagesmodeRoundedFilled.tsx | 2 +- src/IconImagesmodeSharp.tsx | 2 +- src/IconImagesmodeSharpFilled.tsx | 2 +- src/IconImmunologyOutlined.tsx | 2 +- src/IconImmunologyOutlinedFilled.tsx | 2 +- src/IconImmunologyRounded.tsx | 2 +- src/IconImmunologyRoundedFilled.tsx | 2 +- src/IconImmunologySharp.tsx | 2 +- src/IconImmunologySharpFilled.tsx | 2 +- src/IconImportContactsOutlined.tsx | 2 +- src/IconImportContactsOutlinedFilled.tsx | 2 +- src/IconImportContactsRounded.tsx | 2 +- src/IconImportContactsRoundedFilled.tsx | 2 +- src/IconImportContactsSharp.tsx | 2 +- src/IconImportContactsSharpFilled.tsx | 2 +- src/IconImportantDevicesOutlined.tsx | 2 +- src/IconImportantDevicesOutlinedFilled.tsx | 2 +- src/IconImportantDevicesRounded.tsx | 2 +- src/IconImportantDevicesRoundedFilled.tsx | 2 +- src/IconImportantDevicesSharp.tsx | 2 +- src/IconImportantDevicesSharpFilled.tsx | 2 +- src/IconInHomeModeOutlined.tsx | 2 +- src/IconInHomeModeOutlinedFilled.tsx | 2 +- src/IconInHomeModeRounded.tsx | 2 +- src/IconInHomeModeRoundedFilled.tsx | 2 +- src/IconInHomeModeSharp.tsx | 2 +- src/IconInHomeModeSharpFilled.tsx | 2 +- src/IconInactiveOrderOutlined.tsx | 2 +- src/IconInactiveOrderOutlinedFilled.tsx | 2 +- src/IconInactiveOrderRounded.tsx | 2 +- src/IconInactiveOrderRoundedFilled.tsx | 2 +- src/IconInactiveOrderSharp.tsx | 2 +- src/IconInactiveOrderSharpFilled.tsx | 2 +- src/IconInboxCustomizeOutlined.tsx | 2 +- src/IconInboxCustomizeOutlinedFilled.tsx | 2 +- src/IconInboxCustomizeRounded.tsx | 2 +- src/IconInboxCustomizeRoundedFilled.tsx | 2 +- src/IconInboxCustomizeSharp.tsx | 2 +- src/IconInboxCustomizeSharpFilled.tsx | 2 +- src/IconInboxOutlined.tsx | 2 +- src/IconInboxOutlinedFilled.tsx | 2 +- src/IconInboxRounded.tsx | 2 +- src/IconInboxRoundedFilled.tsx | 2 +- src/IconInboxSharp.tsx | 2 +- src/IconInboxSharpFilled.tsx | 2 +- src/IconIncompleteCircleOutlined.tsx | 2 +- src/IconIncompleteCircleOutlinedFilled.tsx | 2 +- src/IconIncompleteCircleRounded.tsx | 2 +- src/IconIncompleteCircleRoundedFilled.tsx | 2 +- src/IconIncompleteCircleSharp.tsx | 2 +- src/IconIncompleteCircleSharpFilled.tsx | 2 +- src/IconIndeterminateCheckBoxOutlined.tsx | 2 +- src/IconIndeterminateCheckBoxOutlinedFilled.tsx | 2 +- src/IconIndeterminateCheckBoxRounded.tsx | 2 +- src/IconIndeterminateCheckBoxRoundedFilled.tsx | 2 +- src/IconIndeterminateCheckBoxSharp.tsx | 2 +- src/IconIndeterminateCheckBoxSharpFilled.tsx | 2 +- src/IconIndeterminateQuestionBoxOutlined.tsx | 2 +- src/IconIndeterminateQuestionBoxOutlinedFilled.tsx | 2 +- src/IconIndeterminateQuestionBoxRounded.tsx | 2 +- src/IconIndeterminateQuestionBoxRoundedFilled.tsx | 2 +- src/IconIndeterminateQuestionBoxSharp.tsx | 2 +- src/IconIndeterminateQuestionBoxSharpFilled.tsx | 2 +- src/IconInfoIOutlined.tsx | 2 +- src/IconInfoIOutlinedFilled.tsx | 2 +- src/IconInfoIRounded.tsx | 2 +- src/IconInfoIRoundedFilled.tsx | 2 +- src/IconInfoISharp.tsx | 2 +- src/IconInfoISharpFilled.tsx | 2 +- src/IconInfoOutlined.tsx | 2 +- src/IconInfoOutlinedFilled.tsx | 2 +- src/IconInfoRounded.tsx | 2 +- src/IconInfoRoundedFilled.tsx | 2 +- src/IconInfoSharp.tsx | 2 +- src/IconInfoSharpFilled.tsx | 2 +- src/IconInfraredOutlined.tsx | 2 +- src/IconInfraredOutlinedFilled.tsx | 2 +- src/IconInfraredRounded.tsx | 2 +- src/IconInfraredRoundedFilled.tsx | 2 +- src/IconInfraredSharp.tsx | 2 +- src/IconInfraredSharpFilled.tsx | 2 +- src/IconInkEraserOffOutlined.tsx | 2 +- src/IconInkEraserOffOutlinedFilled.tsx | 2 +- src/IconInkEraserOffRounded.tsx | 2 +- src/IconInkEraserOffRoundedFilled.tsx | 2 +- src/IconInkEraserOffSharp.tsx | 2 +- src/IconInkEraserOffSharpFilled.tsx | 2 +- src/IconInkEraserOutlined.tsx | 2 +- src/IconInkEraserOutlinedFilled.tsx | 2 +- src/IconInkEraserRounded.tsx | 2 +- src/IconInkEraserRoundedFilled.tsx | 2 +- src/IconInkEraserSharp.tsx | 2 +- src/IconInkEraserSharpFilled.tsx | 2 +- src/IconInkHighlighterMoveOutlined.tsx | 2 +- src/IconInkHighlighterMoveOutlinedFilled.tsx | 2 +- src/IconInkHighlighterMoveRounded.tsx | 2 +- src/IconInkHighlighterMoveRoundedFilled.tsx | 2 +- src/IconInkHighlighterMoveSharp.tsx | 2 +- src/IconInkHighlighterMoveSharpFilled.tsx | 2 +- src/IconInkHighlighterOutlined.tsx | 2 +- src/IconInkHighlighterOutlinedFilled.tsx | 2 +- src/IconInkHighlighterRounded.tsx | 2 +- src/IconInkHighlighterRoundedFilled.tsx | 2 +- src/IconInkHighlighterSharp.tsx | 2 +- src/IconInkHighlighterSharpFilled.tsx | 2 +- src/IconInkMarkerOutlined.tsx | 2 +- src/IconInkMarkerOutlinedFilled.tsx | 2 +- src/IconInkMarkerRounded.tsx | 2 +- src/IconInkMarkerRoundedFilled.tsx | 2 +- src/IconInkMarkerSharp.tsx | 2 +- src/IconInkMarkerSharpFilled.tsx | 2 +- src/IconInkPenOutlined.tsx | 2 +- src/IconInkPenOutlinedFilled.tsx | 2 +- src/IconInkPenRounded.tsx | 2 +- src/IconInkPenRoundedFilled.tsx | 2 +- src/IconInkPenSharp.tsx | 2 +- src/IconInkPenSharpFilled.tsx | 2 +- src/IconInpatientOutlined.tsx | 2 +- src/IconInpatientOutlinedFilled.tsx | 2 +- src/IconInpatientRounded.tsx | 2 +- src/IconInpatientRoundedFilled.tsx | 2 +- src/IconInpatientSharp.tsx | 2 +- src/IconInpatientSharpFilled.tsx | 2 +- src/IconInputCircleOutlined.tsx | 2 +- src/IconInputCircleOutlinedFilled.tsx | 2 +- src/IconInputCircleRounded.tsx | 2 +- src/IconInputCircleRoundedFilled.tsx | 2 +- src/IconInputCircleSharp.tsx | 2 +- src/IconInputCircleSharpFilled.tsx | 2 +- src/IconInputOutlined.tsx | 2 +- src/IconInputOutlinedFilled.tsx | 2 +- src/IconInputRounded.tsx | 2 +- src/IconInputRoundedFilled.tsx | 2 +- src/IconInputSharp.tsx | 2 +- src/IconInputSharpFilled.tsx | 2 +- src/IconInsertChartOutlined.tsx | 2 +- src/IconInsertChartOutlinedFilled.tsx | 2 +- src/IconInsertChartRounded.tsx | 2 +- src/IconInsertChartRoundedFilled.tsx | 2 +- src/IconInsertChartSharp.tsx | 2 +- src/IconInsertChartSharpFilled.tsx | 2 +- src/IconInsertPageBreakOutlined.tsx | 2 +- src/IconInsertPageBreakOutlinedFilled.tsx | 2 +- src/IconInsertPageBreakRounded.tsx | 2 +- src/IconInsertPageBreakRoundedFilled.tsx | 2 +- src/IconInsertPageBreakSharp.tsx | 2 +- src/IconInsertPageBreakSharpFilled.tsx | 2 +- src/IconInsertTextOutlined.tsx | 2 +- src/IconInsertTextOutlinedFilled.tsx | 2 +- src/IconInsertTextRounded.tsx | 2 +- src/IconInsertTextRoundedFilled.tsx | 2 +- src/IconInsertTextSharp.tsx | 2 +- src/IconInsertTextSharpFilled.tsx | 2 +- src/IconInstallDesktopOutlined.tsx | 2 +- src/IconInstallDesktopOutlinedFilled.tsx | 2 +- src/IconInstallDesktopRounded.tsx | 2 +- src/IconInstallDesktopRoundedFilled.tsx | 2 +- src/IconInstallDesktopSharp.tsx | 2 +- src/IconInstallDesktopSharpFilled.tsx | 2 +- src/IconInstallMobileOutlined.tsx | 2 +- src/IconInstallMobileOutlinedFilled.tsx | 2 +- src/IconInstallMobileRounded.tsx | 2 +- src/IconInstallMobileRoundedFilled.tsx | 2 +- src/IconInstallMobileSharp.tsx | 2 +- src/IconInstallMobileSharpFilled.tsx | 2 +- src/IconInstantMixOutlined.tsx | 2 +- src/IconInstantMixOutlinedFilled.tsx | 2 +- src/IconInstantMixRounded.tsx | 2 +- src/IconInstantMixRoundedFilled.tsx | 2 +- src/IconInstantMixSharp.tsx | 2 +- src/IconInstantMixSharpFilled.tsx | 2 +- src/IconIntegrationInstructionsOutlined.tsx | 2 +- src/IconIntegrationInstructionsOutlinedFilled.tsx | 2 +- src/IconIntegrationInstructionsRounded.tsx | 2 +- src/IconIntegrationInstructionsRoundedFilled.tsx | 2 +- src/IconIntegrationInstructionsSharp.tsx | 2 +- src/IconIntegrationInstructionsSharpFilled.tsx | 2 +- src/IconInteractiveSpaceOutlined.tsx | 2 +- src/IconInteractiveSpaceOutlinedFilled.tsx | 2 +- src/IconInteractiveSpaceRounded.tsx | 2 +- src/IconInteractiveSpaceRoundedFilled.tsx | 2 +- src/IconInteractiveSpaceSharp.tsx | 2 +- src/IconInteractiveSpaceSharpFilled.tsx | 2 +- src/IconInterestsOutlined.tsx | 2 +- src/IconInterestsOutlinedFilled.tsx | 2 +- src/IconInterestsRounded.tsx | 2 +- src/IconInterestsRoundedFilled.tsx | 2 +- src/IconInterestsSharp.tsx | 2 +- src/IconInterestsSharpFilled.tsx | 2 +- src/IconInterpreterModeOutlined.tsx | 2 +- src/IconInterpreterModeOutlinedFilled.tsx | 2 +- src/IconInterpreterModeRounded.tsx | 2 +- src/IconInterpreterModeRoundedFilled.tsx | 2 +- src/IconInterpreterModeSharp.tsx | 2 +- src/IconInterpreterModeSharpFilled.tsx | 2 +- src/IconInventory2Outlined.tsx | 2 +- src/IconInventory2OutlinedFilled.tsx | 2 +- src/IconInventory2Rounded.tsx | 2 +- src/IconInventory2RoundedFilled.tsx | 2 +- src/IconInventory2Sharp.tsx | 2 +- src/IconInventory2SharpFilled.tsx | 2 +- src/IconInventoryOutlined.tsx | 2 +- src/IconInventoryOutlinedFilled.tsx | 2 +- src/IconInventoryRounded.tsx | 2 +- src/IconInventoryRoundedFilled.tsx | 2 +- src/IconInventorySharp.tsx | 2 +- src/IconInventorySharpFilled.tsx | 2 +- src/IconInvertColorsOffOutlined.tsx | 2 +- src/IconInvertColorsOffOutlinedFilled.tsx | 2 +- src/IconInvertColorsOffRounded.tsx | 2 +- src/IconInvertColorsOffRoundedFilled.tsx | 2 +- src/IconInvertColorsOffSharp.tsx | 2 +- src/IconInvertColorsOffSharpFilled.tsx | 2 +- src/IconInvertColorsOutlined.tsx | 2 +- src/IconInvertColorsOutlinedFilled.tsx | 2 +- src/IconInvertColorsRounded.tsx | 2 +- src/IconInvertColorsRoundedFilled.tsx | 2 +- src/IconInvertColorsSharp.tsx | 2 +- src/IconInvertColorsSharpFilled.tsx | 2 +- src/IconIosOutlined.tsx | 2 +- src/IconIosOutlinedFilled.tsx | 2 +- src/IconIosRounded.tsx | 2 +- src/IconIosRoundedFilled.tsx | 2 +- src/IconIosShareOutlined.tsx | 2 +- src/IconIosShareOutlinedFilled.tsx | 2 +- src/IconIosShareRounded.tsx | 2 +- src/IconIosShareRoundedFilled.tsx | 2 +- src/IconIosShareSharp.tsx | 2 +- src/IconIosShareSharpFilled.tsx | 2 +- src/IconIosSharp.tsx | 2 +- src/IconIosSharpFilled.tsx | 2 +- src/IconIronOutlined.tsx | 2 +- src/IconIronOutlinedFilled.tsx | 2 +- src/IconIronRounded.tsx | 2 +- src/IconIronRoundedFilled.tsx | 2 +- src/IconIronSharp.tsx | 2 +- src/IconIronSharpFilled.tsx | 2 +- src/IconJamboardKioskOutlined.tsx | 2 +- src/IconJamboardKioskOutlinedFilled.tsx | 2 +- src/IconJamboardKioskRounded.tsx | 2 +- src/IconJamboardKioskRoundedFilled.tsx | 2 +- src/IconJamboardKioskSharp.tsx | 2 +- src/IconJamboardKioskSharpFilled.tsx | 2 +- src/IconJavascriptOutlined.tsx | 2 +- src/IconJavascriptOutlinedFilled.tsx | 2 +- src/IconJavascriptRounded.tsx | 2 +- src/IconJavascriptRoundedFilled.tsx | 2 +- src/IconJavascriptSharp.tsx | 2 +- src/IconJavascriptSharpFilled.tsx | 2 +- src/IconJoinInnerOutlined.tsx | 2 +- src/IconJoinInnerOutlinedFilled.tsx | 2 +- src/IconJoinInnerRounded.tsx | 2 +- src/IconJoinInnerRoundedFilled.tsx | 2 +- src/IconJoinInnerSharp.tsx | 2 +- src/IconJoinInnerSharpFilled.tsx | 2 +- src/IconJoinLeftOutlined.tsx | 2 +- src/IconJoinLeftOutlinedFilled.tsx | 2 +- src/IconJoinLeftRounded.tsx | 2 +- src/IconJoinLeftRoundedFilled.tsx | 2 +- src/IconJoinLeftSharp.tsx | 2 +- src/IconJoinLeftSharpFilled.tsx | 2 +- src/IconJoinOutlined.tsx | 2 +- src/IconJoinOutlinedFilled.tsx | 2 +- src/IconJoinRightOutlined.tsx | 2 +- src/IconJoinRightOutlinedFilled.tsx | 2 +- src/IconJoinRightRounded.tsx | 2 +- src/IconJoinRightRoundedFilled.tsx | 2 +- src/IconJoinRightSharp.tsx | 2 +- src/IconJoinRightSharpFilled.tsx | 2 +- src/IconJoinRounded.tsx | 2 +- src/IconJoinRoundedFilled.tsx | 2 +- src/IconJoinSharp.tsx | 2 +- src/IconJoinSharpFilled.tsx | 2 +- src/IconJoystickOutlined.tsx | 2 +- src/IconJoystickOutlinedFilled.tsx | 2 +- src/IconJoystickRounded.tsx | 2 +- src/IconJoystickRoundedFilled.tsx | 2 +- src/IconJoystickSharp.tsx | 2 +- src/IconJoystickSharpFilled.tsx | 2 +- src/IconJumpToElementOutlined.tsx | 2 +- src/IconJumpToElementOutlinedFilled.tsx | 2 +- src/IconJumpToElementRounded.tsx | 2 +- src/IconJumpToElementRoundedFilled.tsx | 2 +- src/IconJumpToElementSharp.tsx | 2 +- src/IconJumpToElementSharpFilled.tsx | 2 +- src/IconKayakingOutlined.tsx | 2 +- src/IconKayakingOutlinedFilled.tsx | 2 +- src/IconKayakingRounded.tsx | 2 +- src/IconKayakingRoundedFilled.tsx | 2 +- src/IconKayakingSharp.tsx | 2 +- src/IconKayakingSharpFilled.tsx | 2 +- src/IconKebabDiningOutlined.tsx | 2 +- src/IconKebabDiningOutlinedFilled.tsx | 2 +- src/IconKebabDiningRounded.tsx | 2 +- src/IconKebabDiningRoundedFilled.tsx | 2 +- src/IconKebabDiningSharp.tsx | 2 +- src/IconKebabDiningSharpFilled.tsx | 2 +- src/IconKeepOffOutlined.tsx | 2 +- src/IconKeepOffOutlinedFilled.tsx | 2 +- src/IconKeepOffRounded.tsx | 2 +- src/IconKeepOffRoundedFilled.tsx | 2 +- src/IconKeepOffSharp.tsx | 2 +- src/IconKeepOffSharpFilled.tsx | 2 +- src/IconKeepOutlined.tsx | 2 +- src/IconKeepOutlinedFilled.tsx | 2 +- src/IconKeepPublicOutlined.tsx | 2 +- src/IconKeepPublicOutlinedFilled.tsx | 2 +- src/IconKeepPublicRounded.tsx | 2 +- src/IconKeepPublicRoundedFilled.tsx | 2 +- src/IconKeepPublicSharp.tsx | 2 +- src/IconKeepPublicSharpFilled.tsx | 2 +- src/IconKeepRounded.tsx | 2 +- src/IconKeepRoundedFilled.tsx | 2 +- src/IconKeepSharp.tsx | 2 +- src/IconKeepSharpFilled.tsx | 2 +- src/IconKettleOutlined.tsx | 2 +- src/IconKettleOutlinedFilled.tsx | 2 +- src/IconKettleRounded.tsx | 2 +- src/IconKettleRoundedFilled.tsx | 2 +- src/IconKettleSharp.tsx | 2 +- src/IconKettleSharpFilled.tsx | 2 +- src/IconKeyOffOutlined.tsx | 2 +- src/IconKeyOffOutlinedFilled.tsx | 2 +- src/IconKeyOffRounded.tsx | 2 +- src/IconKeyOffRoundedFilled.tsx | 2 +- src/IconKeyOffSharp.tsx | 2 +- src/IconKeyOffSharpFilled.tsx | 2 +- src/IconKeyOutlined.tsx | 2 +- src/IconKeyOutlinedFilled.tsx | 2 +- src/IconKeyRounded.tsx | 2 +- src/IconKeyRoundedFilled.tsx | 2 +- src/IconKeySharp.tsx | 2 +- src/IconKeySharpFilled.tsx | 2 +- src/IconKeyVerticalOutlined.tsx | 2 +- src/IconKeyVerticalOutlinedFilled.tsx | 2 +- src/IconKeyVerticalRounded.tsx | 2 +- src/IconKeyVerticalRoundedFilled.tsx | 2 +- src/IconKeyVerticalSharp.tsx | 2 +- src/IconKeyVerticalSharpFilled.tsx | 2 +- src/IconKeyVisualizerOutlined.tsx | 2 +- src/IconKeyVisualizerOutlinedFilled.tsx | 2 +- src/IconKeyVisualizerRounded.tsx | 2 +- src/IconKeyVisualizerRoundedFilled.tsx | 2 +- src/IconKeyVisualizerSharp.tsx | 2 +- src/IconKeyVisualizerSharpFilled.tsx | 2 +- src/IconKeyboardAltOutlined.tsx | 2 +- src/IconKeyboardAltOutlinedFilled.tsx | 2 +- src/IconKeyboardAltRounded.tsx | 2 +- src/IconKeyboardAltRoundedFilled.tsx | 2 +- src/IconKeyboardAltSharp.tsx | 2 +- src/IconKeyboardAltSharpFilled.tsx | 2 +- src/IconKeyboardArrowDownOutlined.tsx | 2 +- src/IconKeyboardArrowDownOutlinedFilled.tsx | 2 +- src/IconKeyboardArrowDownRounded.tsx | 2 +- src/IconKeyboardArrowDownRoundedFilled.tsx | 2 +- src/IconKeyboardArrowDownSharp.tsx | 2 +- src/IconKeyboardArrowDownSharpFilled.tsx | 2 +- src/IconKeyboardArrowLeftOutlined.tsx | 2 +- src/IconKeyboardArrowLeftOutlinedFilled.tsx | 2 +- src/IconKeyboardArrowLeftRounded.tsx | 2 +- src/IconKeyboardArrowLeftRoundedFilled.tsx | 2 +- src/IconKeyboardArrowLeftSharp.tsx | 2 +- src/IconKeyboardArrowLeftSharpFilled.tsx | 2 +- src/IconKeyboardArrowRightOutlined.tsx | 2 +- src/IconKeyboardArrowRightOutlinedFilled.tsx | 2 +- src/IconKeyboardArrowRightRounded.tsx | 2 +- src/IconKeyboardArrowRightRoundedFilled.tsx | 2 +- src/IconKeyboardArrowRightSharp.tsx | 2 +- src/IconKeyboardArrowRightSharpFilled.tsx | 2 +- src/IconKeyboardArrowUpOutlined.tsx | 2 +- src/IconKeyboardArrowUpOutlinedFilled.tsx | 2 +- src/IconKeyboardArrowUpRounded.tsx | 2 +- src/IconKeyboardArrowUpRoundedFilled.tsx | 2 +- src/IconKeyboardArrowUpSharp.tsx | 2 +- src/IconKeyboardArrowUpSharpFilled.tsx | 2 +- src/IconKeyboardBackspaceOutlined.tsx | 2 +- src/IconKeyboardBackspaceOutlinedFilled.tsx | 2 +- src/IconKeyboardBackspaceRounded.tsx | 2 +- src/IconKeyboardBackspaceRoundedFilled.tsx | 2 +- src/IconKeyboardBackspaceSharp.tsx | 2 +- src/IconKeyboardBackspaceSharpFilled.tsx | 2 +- src/IconKeyboardCapslockBadgeOutlined.tsx | 2 +- src/IconKeyboardCapslockBadgeOutlinedFilled.tsx | 2 +- src/IconKeyboardCapslockBadgeRounded.tsx | 2 +- src/IconKeyboardCapslockBadgeRoundedFilled.tsx | 2 +- src/IconKeyboardCapslockBadgeSharp.tsx | 2 +- src/IconKeyboardCapslockBadgeSharpFilled.tsx | 2 +- src/IconKeyboardCapslockOutlined.tsx | 2 +- src/IconKeyboardCapslockOutlinedFilled.tsx | 2 +- src/IconKeyboardCapslockRounded.tsx | 2 +- src/IconKeyboardCapslockRoundedFilled.tsx | 2 +- src/IconKeyboardCapslockSharp.tsx | 2 +- src/IconKeyboardCapslockSharpFilled.tsx | 2 +- src/IconKeyboardCommandKeyOutlined.tsx | 2 +- src/IconKeyboardCommandKeyOutlinedFilled.tsx | 2 +- src/IconKeyboardCommandKeyRounded.tsx | 2 +- src/IconKeyboardCommandKeyRoundedFilled.tsx | 2 +- src/IconKeyboardCommandKeySharp.tsx | 2 +- src/IconKeyboardCommandKeySharpFilled.tsx | 2 +- src/IconKeyboardControlKeyOutlined.tsx | 2 +- src/IconKeyboardControlKeyOutlinedFilled.tsx | 2 +- src/IconKeyboardControlKeyRounded.tsx | 2 +- src/IconKeyboardControlKeyRoundedFilled.tsx | 2 +- src/IconKeyboardControlKeySharp.tsx | 2 +- src/IconKeyboardControlKeySharpFilled.tsx | 2 +- src/IconKeyboardDoubleArrowDownOutlined.tsx | 2 +- src/IconKeyboardDoubleArrowDownOutlinedFilled.tsx | 2 +- src/IconKeyboardDoubleArrowDownRounded.tsx | 2 +- src/IconKeyboardDoubleArrowDownRoundedFilled.tsx | 2 +- src/IconKeyboardDoubleArrowDownSharp.tsx | 2 +- src/IconKeyboardDoubleArrowDownSharpFilled.tsx | 2 +- src/IconKeyboardDoubleArrowLeftOutlined.tsx | 2 +- src/IconKeyboardDoubleArrowLeftOutlinedFilled.tsx | 2 +- src/IconKeyboardDoubleArrowLeftRounded.tsx | 2 +- src/IconKeyboardDoubleArrowLeftRoundedFilled.tsx | 2 +- src/IconKeyboardDoubleArrowLeftSharp.tsx | 2 +- src/IconKeyboardDoubleArrowLeftSharpFilled.tsx | 2 +- src/IconKeyboardDoubleArrowRightOutlined.tsx | 2 +- src/IconKeyboardDoubleArrowRightOutlinedFilled.tsx | 2 +- src/IconKeyboardDoubleArrowRightRounded.tsx | 2 +- src/IconKeyboardDoubleArrowRightRoundedFilled.tsx | 2 +- src/IconKeyboardDoubleArrowRightSharp.tsx | 2 +- src/IconKeyboardDoubleArrowRightSharpFilled.tsx | 2 +- src/IconKeyboardDoubleArrowUpOutlined.tsx | 2 +- src/IconKeyboardDoubleArrowUpOutlinedFilled.tsx | 2 +- src/IconKeyboardDoubleArrowUpRounded.tsx | 2 +- src/IconKeyboardDoubleArrowUpRoundedFilled.tsx | 2 +- src/IconKeyboardDoubleArrowUpSharp.tsx | 2 +- src/IconKeyboardDoubleArrowUpSharpFilled.tsx | 2 +- src/IconKeyboardExternalInputOutlined.tsx | 2 +- src/IconKeyboardExternalInputOutlinedFilled.tsx | 2 +- src/IconKeyboardExternalInputRounded.tsx | 2 +- src/IconKeyboardExternalInputRoundedFilled.tsx | 2 +- src/IconKeyboardExternalInputSharp.tsx | 2 +- src/IconKeyboardExternalInputSharpFilled.tsx | 2 +- src/IconKeyboardFullOutlined.tsx | 2 +- src/IconKeyboardFullOutlinedFilled.tsx | 2 +- src/IconKeyboardFullRounded.tsx | 2 +- src/IconKeyboardFullRoundedFilled.tsx | 2 +- src/IconKeyboardFullSharp.tsx | 2 +- src/IconKeyboardFullSharpFilled.tsx | 2 +- src/IconKeyboardHideOutlined.tsx | 2 +- src/IconKeyboardHideOutlinedFilled.tsx | 2 +- src/IconKeyboardHideRounded.tsx | 2 +- src/IconKeyboardHideRoundedFilled.tsx | 2 +- src/IconKeyboardHideSharp.tsx | 2 +- src/IconKeyboardHideSharpFilled.tsx | 2 +- src/IconKeyboardKeysOutlined.tsx | 2 +- src/IconKeyboardKeysOutlinedFilled.tsx | 2 +- src/IconKeyboardKeysRounded.tsx | 2 +- src/IconKeyboardKeysRoundedFilled.tsx | 2 +- src/IconKeyboardKeysSharp.tsx | 2 +- src/IconKeyboardKeysSharpFilled.tsx | 2 +- src/IconKeyboardLockOffOutlined.tsx | 2 +- src/IconKeyboardLockOffOutlinedFilled.tsx | 2 +- src/IconKeyboardLockOffRounded.tsx | 2 +- src/IconKeyboardLockOffRoundedFilled.tsx | 2 +- src/IconKeyboardLockOffSharp.tsx | 2 +- src/IconKeyboardLockOffSharpFilled.tsx | 2 +- src/IconKeyboardLockOutlined.tsx | 2 +- src/IconKeyboardLockOutlinedFilled.tsx | 2 +- src/IconKeyboardLockRounded.tsx | 2 +- src/IconKeyboardLockRoundedFilled.tsx | 2 +- src/IconKeyboardLockSharp.tsx | 2 +- src/IconKeyboardLockSharpFilled.tsx | 2 +- src/IconKeyboardOffOutlined.tsx | 2 +- src/IconKeyboardOffOutlinedFilled.tsx | 2 +- src/IconKeyboardOffRounded.tsx | 2 +- src/IconKeyboardOffRoundedFilled.tsx | 2 +- src/IconKeyboardOffSharp.tsx | 2 +- src/IconKeyboardOffSharpFilled.tsx | 2 +- src/IconKeyboardOnscreenOutlined.tsx | 2 +- src/IconKeyboardOnscreenOutlinedFilled.tsx | 2 +- src/IconKeyboardOnscreenRounded.tsx | 2 +- src/IconKeyboardOnscreenRoundedFilled.tsx | 2 +- src/IconKeyboardOnscreenSharp.tsx | 2 +- src/IconKeyboardOnscreenSharpFilled.tsx | 2 +- src/IconKeyboardOptionKeyOutlined.tsx | 2 +- src/IconKeyboardOptionKeyOutlinedFilled.tsx | 2 +- src/IconKeyboardOptionKeyRounded.tsx | 2 +- src/IconKeyboardOptionKeyRoundedFilled.tsx | 2 +- src/IconKeyboardOptionKeySharp.tsx | 2 +- src/IconKeyboardOptionKeySharpFilled.tsx | 2 +- src/IconKeyboardOutlined.tsx | 2 +- src/IconKeyboardOutlinedFilled.tsx | 2 +- src/IconKeyboardPreviousLanguageOutlined.tsx | 2 +- src/IconKeyboardPreviousLanguageOutlinedFilled.tsx | 2 +- src/IconKeyboardPreviousLanguageRounded.tsx | 2 +- src/IconKeyboardPreviousLanguageRoundedFilled.tsx | 2 +- src/IconKeyboardPreviousLanguageSharp.tsx | 2 +- src/IconKeyboardPreviousLanguageSharpFilled.tsx | 2 +- src/IconKeyboardReturnOutlined.tsx | 2 +- src/IconKeyboardReturnOutlinedFilled.tsx | 2 +- src/IconKeyboardReturnRounded.tsx | 2 +- src/IconKeyboardReturnRoundedFilled.tsx | 2 +- src/IconKeyboardReturnSharp.tsx | 2 +- src/IconKeyboardReturnSharpFilled.tsx | 2 +- src/IconKeyboardRounded.tsx | 2 +- src/IconKeyboardRoundedFilled.tsx | 2 +- src/IconKeyboardSharp.tsx | 2 +- src/IconKeyboardSharpFilled.tsx | 2 +- src/IconKeyboardTabOutlined.tsx | 2 +- src/IconKeyboardTabOutlinedFilled.tsx | 2 +- src/IconKeyboardTabRounded.tsx | 2 +- src/IconKeyboardTabRoundedFilled.tsx | 2 +- src/IconKeyboardTabRtlOutlined.tsx | 2 +- src/IconKeyboardTabRtlOutlinedFilled.tsx | 2 +- src/IconKeyboardTabRtlRounded.tsx | 2 +- src/IconKeyboardTabRtlRoundedFilled.tsx | 2 +- src/IconKeyboardTabRtlSharp.tsx | 2 +- src/IconKeyboardTabRtlSharpFilled.tsx | 2 +- src/IconKeyboardTabSharp.tsx | 2 +- src/IconKeyboardTabSharpFilled.tsx | 2 +- src/IconKidStarOutlined.tsx | 2 +- src/IconKidStarOutlinedFilled.tsx | 2 +- src/IconKidStarRounded.tsx | 2 +- src/IconKidStarRoundedFilled.tsx | 2 +- src/IconKidStarSharp.tsx | 2 +- src/IconKidStarSharpFilled.tsx | 2 +- src/IconKingBedOutlined.tsx | 2 +- src/IconKingBedOutlinedFilled.tsx | 2 +- src/IconKingBedRounded.tsx | 2 +- src/IconKingBedRoundedFilled.tsx | 2 +- src/IconKingBedSharp.tsx | 2 +- src/IconKingBedSharpFilled.tsx | 2 +- src/IconKitchenOutlined.tsx | 2 +- src/IconKitchenOutlinedFilled.tsx | 2 +- src/IconKitchenRounded.tsx | 2 +- src/IconKitchenRoundedFilled.tsx | 2 +- src/IconKitchenSharp.tsx | 2 +- src/IconKitchenSharpFilled.tsx | 2 +- src/IconKitesurfingOutlined.tsx | 2 +- src/IconKitesurfingOutlinedFilled.tsx | 2 +- src/IconKitesurfingRounded.tsx | 2 +- src/IconKitesurfingRoundedFilled.tsx | 2 +- src/IconKitesurfingSharp.tsx | 2 +- src/IconKitesurfingSharpFilled.tsx | 2 +- src/IconLabPanelOutlined.tsx | 2 +- src/IconLabPanelOutlinedFilled.tsx | 2 +- src/IconLabPanelRounded.tsx | 2 +- src/IconLabPanelRoundedFilled.tsx | 2 +- src/IconLabPanelSharp.tsx | 2 +- src/IconLabPanelSharpFilled.tsx | 2 +- src/IconLabProfileOutlined.tsx | 2 +- src/IconLabProfileOutlinedFilled.tsx | 2 +- src/IconLabProfileRounded.tsx | 2 +- src/IconLabProfileRoundedFilled.tsx | 2 +- src/IconLabProfileSharp.tsx | 2 +- src/IconLabProfileSharpFilled.tsx | 2 +- src/IconLabResearchOutlined.tsx | 2 +- src/IconLabResearchOutlinedFilled.tsx | 2 +- src/IconLabResearchRounded.tsx | 2 +- src/IconLabResearchRoundedFilled.tsx | 2 +- src/IconLabResearchSharp.tsx | 2 +- src/IconLabResearchSharpFilled.tsx | 2 +- src/IconLabelImportantOutlined.tsx | 2 +- src/IconLabelImportantOutlinedFilled.tsx | 2 +- src/IconLabelImportantRounded.tsx | 2 +- src/IconLabelImportantRoundedFilled.tsx | 2 +- src/IconLabelImportantSharp.tsx | 2 +- src/IconLabelImportantSharpFilled.tsx | 2 +- src/IconLabelOffOutlined.tsx | 2 +- src/IconLabelOffOutlinedFilled.tsx | 2 +- src/IconLabelOffRounded.tsx | 2 +- src/IconLabelOffRoundedFilled.tsx | 2 +- src/IconLabelOffSharp.tsx | 2 +- src/IconLabelOffSharpFilled.tsx | 2 +- src/IconLabelOutlined.tsx | 2 +- src/IconLabelOutlinedFilled.tsx | 2 +- src/IconLabelRounded.tsx | 2 +- src/IconLabelRoundedFilled.tsx | 2 +- src/IconLabelSharp.tsx | 2 +- src/IconLabelSharpFilled.tsx | 2 +- src/IconLabsOutlined.tsx | 2 +- src/IconLabsOutlinedFilled.tsx | 2 +- src/IconLabsRounded.tsx | 2 +- src/IconLabsRoundedFilled.tsx | 2 +- src/IconLabsSharp.tsx | 2 +- src/IconLabsSharpFilled.tsx | 2 +- src/IconLanOutlined.tsx | 2 +- src/IconLanOutlinedFilled.tsx | 2 +- src/IconLanRounded.tsx | 2 +- src/IconLanRoundedFilled.tsx | 2 +- src/IconLanSharp.tsx | 2 +- src/IconLanSharpFilled.tsx | 2 +- src/IconLandscape2OffOutlined.tsx | 2 +- src/IconLandscape2OffOutlinedFilled.tsx | 2 +- src/IconLandscape2OffRounded.tsx | 2 +- src/IconLandscape2OffRoundedFilled.tsx | 2 +- src/IconLandscape2OffSharp.tsx | 2 +- src/IconLandscape2OffSharpFilled.tsx | 2 +- src/IconLandscape2Outlined.tsx | 2 +- src/IconLandscape2OutlinedFilled.tsx | 2 +- src/IconLandscape2Rounded.tsx | 2 +- src/IconLandscape2RoundedFilled.tsx | 2 +- src/IconLandscape2Sharp.tsx | 2 +- src/IconLandscape2SharpFilled.tsx | 2 +- src/IconLandscapeOutlined.tsx | 2 +- src/IconLandscapeOutlinedFilled.tsx | 2 +- src/IconLandscapeRounded.tsx | 2 +- src/IconLandscapeRoundedFilled.tsx | 2 +- src/IconLandscapeSharp.tsx | 2 +- src/IconLandscapeSharpFilled.tsx | 2 +- src/IconLandslideOutlined.tsx | 2 +- src/IconLandslideOutlinedFilled.tsx | 2 +- src/IconLandslideRounded.tsx | 2 +- src/IconLandslideRoundedFilled.tsx | 2 +- src/IconLandslideSharp.tsx | 2 +- src/IconLandslideSharpFilled.tsx | 2 +- src/IconLanguageChineseArrayOutlined.tsx | 2 +- src/IconLanguageChineseArrayOutlinedFilled.tsx | 2 +- src/IconLanguageChineseArrayRounded.tsx | 2 +- src/IconLanguageChineseArrayRoundedFilled.tsx | 2 +- src/IconLanguageChineseArraySharp.tsx | 2 +- src/IconLanguageChineseArraySharpFilled.tsx | 2 +- src/IconLanguageChineseCangjieOutlined.tsx | 2 +- src/IconLanguageChineseCangjieOutlinedFilled.tsx | 2 +- src/IconLanguageChineseCangjieRounded.tsx | 2 +- src/IconLanguageChineseCangjieRoundedFilled.tsx | 2 +- src/IconLanguageChineseCangjieSharp.tsx | 2 +- src/IconLanguageChineseCangjieSharpFilled.tsx | 2 +- src/IconLanguageChineseDayiOutlined.tsx | 2 +- src/IconLanguageChineseDayiOutlinedFilled.tsx | 2 +- src/IconLanguageChineseDayiRounded.tsx | 2 +- src/IconLanguageChineseDayiRoundedFilled.tsx | 2 +- src/IconLanguageChineseDayiSharp.tsx | 2 +- src/IconLanguageChineseDayiSharpFilled.tsx | 2 +- src/IconLanguageChinesePinyinOutlined.tsx | 2 +- src/IconLanguageChinesePinyinOutlinedFilled.tsx | 2 +- src/IconLanguageChinesePinyinRounded.tsx | 2 +- src/IconLanguageChinesePinyinRoundedFilled.tsx | 2 +- src/IconLanguageChinesePinyinSharp.tsx | 2 +- src/IconLanguageChinesePinyinSharpFilled.tsx | 2 +- src/IconLanguageChineseQuickOutlined.tsx | 2 +- src/IconLanguageChineseQuickOutlinedFilled.tsx | 2 +- src/IconLanguageChineseQuickRounded.tsx | 2 +- src/IconLanguageChineseQuickRoundedFilled.tsx | 2 +- src/IconLanguageChineseQuickSharp.tsx | 2 +- src/IconLanguageChineseQuickSharpFilled.tsx | 2 +- src/IconLanguageChineseWubiOutlined.tsx | 2 +- src/IconLanguageChineseWubiOutlinedFilled.tsx | 2 +- src/IconLanguageChineseWubiRounded.tsx | 2 +- src/IconLanguageChineseWubiRoundedFilled.tsx | 2 +- src/IconLanguageChineseWubiSharp.tsx | 2 +- src/IconLanguageChineseWubiSharpFilled.tsx | 2 +- src/IconLanguageFrenchOutlined.tsx | 2 +- src/IconLanguageFrenchOutlinedFilled.tsx | 2 +- src/IconLanguageFrenchRounded.tsx | 2 +- src/IconLanguageFrenchRoundedFilled.tsx | 2 +- src/IconLanguageFrenchSharp.tsx | 2 +- src/IconLanguageFrenchSharpFilled.tsx | 2 +- src/IconLanguageGbEnglishOutlined.tsx | 2 +- src/IconLanguageGbEnglishOutlinedFilled.tsx | 2 +- src/IconLanguageGbEnglishRounded.tsx | 2 +- src/IconLanguageGbEnglishRoundedFilled.tsx | 2 +- src/IconLanguageGbEnglishSharp.tsx | 2 +- src/IconLanguageGbEnglishSharpFilled.tsx | 2 +- src/IconLanguageInternationalOutlined.tsx | 2 +- src/IconLanguageInternationalOutlinedFilled.tsx | 2 +- src/IconLanguageInternationalRounded.tsx | 2 +- src/IconLanguageInternationalRoundedFilled.tsx | 2 +- src/IconLanguageInternationalSharp.tsx | 2 +- src/IconLanguageInternationalSharpFilled.tsx | 2 +- src/IconLanguageJapaneseKanaOutlined.tsx | 2 +- src/IconLanguageJapaneseKanaOutlinedFilled.tsx | 2 +- src/IconLanguageJapaneseKanaRounded.tsx | 2 +- src/IconLanguageJapaneseKanaRoundedFilled.tsx | 2 +- src/IconLanguageJapaneseKanaSharp.tsx | 2 +- src/IconLanguageJapaneseKanaSharpFilled.tsx | 2 +- src/IconLanguageKoreanLatinOutlined.tsx | 2 +- src/IconLanguageKoreanLatinOutlinedFilled.tsx | 2 +- src/IconLanguageKoreanLatinRounded.tsx | 2 +- src/IconLanguageKoreanLatinRoundedFilled.tsx | 2 +- src/IconLanguageKoreanLatinSharp.tsx | 2 +- src/IconLanguageKoreanLatinSharpFilled.tsx | 2 +- src/IconLanguageOutlined.tsx | 2 +- src/IconLanguageOutlinedFilled.tsx | 2 +- src/IconLanguagePinyinOutlined.tsx | 2 +- src/IconLanguagePinyinOutlinedFilled.tsx | 2 +- src/IconLanguagePinyinRounded.tsx | 2 +- src/IconLanguagePinyinRoundedFilled.tsx | 2 +- src/IconLanguagePinyinSharp.tsx | 2 +- src/IconLanguagePinyinSharpFilled.tsx | 2 +- src/IconLanguageRounded.tsx | 2 +- src/IconLanguageRoundedFilled.tsx | 2 +- src/IconLanguageSharp.tsx | 2 +- src/IconLanguageSharpFilled.tsx | 2 +- src/IconLanguageSpanishOutlined.tsx | 2 +- src/IconLanguageSpanishOutlinedFilled.tsx | 2 +- src/IconLanguageSpanishRounded.tsx | 2 +- src/IconLanguageSpanishRoundedFilled.tsx | 2 +- src/IconLanguageSpanishSharp.tsx | 2 +- src/IconLanguageSpanishSharpFilled.tsx | 2 +- src/IconLanguageUsColemakOutlined.tsx | 2 +- src/IconLanguageUsColemakOutlinedFilled.tsx | 2 +- src/IconLanguageUsColemakRounded.tsx | 2 +- src/IconLanguageUsColemakRoundedFilled.tsx | 2 +- src/IconLanguageUsColemakSharp.tsx | 2 +- src/IconLanguageUsColemakSharpFilled.tsx | 2 +- src/IconLanguageUsDvorakOutlined.tsx | 2 +- src/IconLanguageUsDvorakOutlinedFilled.tsx | 2 +- src/IconLanguageUsDvorakRounded.tsx | 2 +- src/IconLanguageUsDvorakRoundedFilled.tsx | 2 +- src/IconLanguageUsDvorakSharp.tsx | 2 +- src/IconLanguageUsDvorakSharpFilled.tsx | 2 +- src/IconLanguageUsOutlined.tsx | 2 +- src/IconLanguageUsOutlinedFilled.tsx | 2 +- src/IconLanguageUsRounded.tsx | 2 +- src/IconLanguageUsRoundedFilled.tsx | 2 +- src/IconLanguageUsSharp.tsx | 2 +- src/IconLanguageUsSharpFilled.tsx | 2 +- src/IconLapsOutlined.tsx | 2 +- src/IconLapsOutlinedFilled.tsx | 2 +- src/IconLapsRounded.tsx | 2 +- src/IconLapsRoundedFilled.tsx | 2 +- src/IconLapsSharp.tsx | 2 +- src/IconLapsSharpFilled.tsx | 2 +- src/IconLaptopChromebookOutlined.tsx | 2 +- src/IconLaptopChromebookOutlinedFilled.tsx | 2 +- src/IconLaptopChromebookRounded.tsx | 2 +- src/IconLaptopChromebookRoundedFilled.tsx | 2 +- src/IconLaptopChromebookSharp.tsx | 2 +- src/IconLaptopChromebookSharpFilled.tsx | 2 +- src/IconLaptopMacOutlined.tsx | 2 +- src/IconLaptopMacOutlinedFilled.tsx | 2 +- src/IconLaptopMacRounded.tsx | 2 +- src/IconLaptopMacRoundedFilled.tsx | 2 +- src/IconLaptopMacSharp.tsx | 2 +- src/IconLaptopMacSharpFilled.tsx | 2 +- src/IconLaptopWindowsOutlined.tsx | 2 +- src/IconLaptopWindowsOutlinedFilled.tsx | 2 +- src/IconLaptopWindowsRounded.tsx | 2 +- src/IconLaptopWindowsRoundedFilled.tsx | 2 +- src/IconLaptopWindowsSharp.tsx | 2 +- src/IconLaptopWindowsSharpFilled.tsx | 2 +- src/IconLassoSelectOutlined.tsx | 2 +- src/IconLassoSelectOutlinedFilled.tsx | 2 +- src/IconLassoSelectRounded.tsx | 2 +- src/IconLassoSelectRoundedFilled.tsx | 2 +- src/IconLassoSelectSharp.tsx | 2 +- src/IconLassoSelectSharpFilled.tsx | 2 +- src/IconLastPageOutlined.tsx | 2 +- src/IconLastPageOutlinedFilled.tsx | 2 +- src/IconLastPageRounded.tsx | 2 +- src/IconLastPageRoundedFilled.tsx | 2 +- src/IconLastPageSharp.tsx | 2 +- src/IconLastPageSharpFilled.tsx | 2 +- src/IconLaundryOutlined.tsx | 2 +- src/IconLaundryOutlinedFilled.tsx | 2 +- src/IconLaundryRounded.tsx | 2 +- src/IconLaundryRoundedFilled.tsx | 2 +- src/IconLaundrySharp.tsx | 2 +- src/IconLaundrySharpFilled.tsx | 2 +- src/IconLayersClearOutlined.tsx | 2 +- src/IconLayersClearOutlinedFilled.tsx | 2 +- src/IconLayersClearRounded.tsx | 2 +- src/IconLayersClearRoundedFilled.tsx | 2 +- src/IconLayersClearSharp.tsx | 2 +- src/IconLayersClearSharpFilled.tsx | 2 +- src/IconLayersOutlined.tsx | 2 +- src/IconLayersOutlinedFilled.tsx | 2 +- src/IconLayersRounded.tsx | 2 +- src/IconLayersRoundedFilled.tsx | 2 +- src/IconLayersSharp.tsx | 2 +- src/IconLayersSharpFilled.tsx | 2 +- src/IconLdaOutlined.tsx | 2 +- src/IconLdaOutlinedFilled.tsx | 2 +- src/IconLdaRounded.tsx | 2 +- src/IconLdaRoundedFilled.tsx | 2 +- src/IconLdaSharp.tsx | 2 +- src/IconLdaSharpFilled.tsx | 2 +- src/IconLeaderboardOutlined.tsx | 2 +- src/IconLeaderboardOutlinedFilled.tsx | 2 +- src/IconLeaderboardRounded.tsx | 2 +- src/IconLeaderboardRoundedFilled.tsx | 2 +- src/IconLeaderboardSharp.tsx | 2 +- src/IconLeaderboardSharpFilled.tsx | 2 +- src/IconLeakAddOutlined.tsx | 2 +- src/IconLeakAddOutlinedFilled.tsx | 2 +- src/IconLeakAddRounded.tsx | 2 +- src/IconLeakAddRoundedFilled.tsx | 2 +- src/IconLeakAddSharp.tsx | 2 +- src/IconLeakAddSharpFilled.tsx | 2 +- src/IconLeakRemoveOutlined.tsx | 2 +- src/IconLeakRemoveOutlinedFilled.tsx | 2 +- src/IconLeakRemoveRounded.tsx | 2 +- src/IconLeakRemoveRoundedFilled.tsx | 2 +- src/IconLeakRemoveSharp.tsx | 2 +- src/IconLeakRemoveSharpFilled.tsx | 2 +- src/IconLeftClickOutlined.tsx | 2 +- src/IconLeftClickOutlinedFilled.tsx | 2 +- src/IconLeftClickRounded.tsx | 2 +- src/IconLeftClickRoundedFilled.tsx | 2 +- src/IconLeftClickSharp.tsx | 2 +- src/IconLeftClickSharpFilled.tsx | 2 +- src/IconLeftPanelCloseOutlined.tsx | 2 +- src/IconLeftPanelCloseOutlinedFilled.tsx | 2 +- src/IconLeftPanelCloseRounded.tsx | 2 +- src/IconLeftPanelCloseRoundedFilled.tsx | 2 +- src/IconLeftPanelCloseSharp.tsx | 2 +- src/IconLeftPanelCloseSharpFilled.tsx | 2 +- src/IconLeftPanelOpenOutlined.tsx | 2 +- src/IconLeftPanelOpenOutlinedFilled.tsx | 2 +- src/IconLeftPanelOpenRounded.tsx | 2 +- src/IconLeftPanelOpenRoundedFilled.tsx | 2 +- src/IconLeftPanelOpenSharp.tsx | 2 +- src/IconLeftPanelOpenSharpFilled.tsx | 2 +- src/IconLegendToggleOutlined.tsx | 2 +- src/IconLegendToggleOutlinedFilled.tsx | 2 +- src/IconLegendToggleRounded.tsx | 2 +- src/IconLegendToggleRoundedFilled.tsx | 2 +- src/IconLegendToggleSharp.tsx | 2 +- src/IconLegendToggleSharpFilled.tsx | 2 +- src/IconLensBlurOutlined.tsx | 2 +- src/IconLensBlurOutlinedFilled.tsx | 2 +- src/IconLensBlurRounded.tsx | 2 +- src/IconLensBlurRoundedFilled.tsx | 2 +- src/IconLensBlurSharp.tsx | 2 +- src/IconLensBlurSharpFilled.tsx | 2 +- src/IconLetterSwitchOutlined.tsx | 2 +- src/IconLetterSwitchOutlinedFilled.tsx | 2 +- src/IconLetterSwitchRounded.tsx | 2 +- src/IconLetterSwitchRoundedFilled.tsx | 2 +- src/IconLetterSwitchSharp.tsx | 2 +- src/IconLetterSwitchSharpFilled.tsx | 2 +- src/IconLibraryAddCheckOutlined.tsx | 2 +- src/IconLibraryAddCheckOutlinedFilled.tsx | 2 +- src/IconLibraryAddCheckRounded.tsx | 2 +- src/IconLibraryAddCheckRoundedFilled.tsx | 2 +- src/IconLibraryAddCheckSharp.tsx | 2 +- src/IconLibraryAddCheckSharpFilled.tsx | 2 +- src/IconLibraryAddOutlined.tsx | 2 +- src/IconLibraryAddOutlinedFilled.tsx | 2 +- src/IconLibraryAddRounded.tsx | 2 +- src/IconLibraryAddRoundedFilled.tsx | 2 +- src/IconLibraryAddSharp.tsx | 2 +- src/IconLibraryAddSharpFilled.tsx | 2 +- src/IconLibraryBooksOutlined.tsx | 2 +- src/IconLibraryBooksOutlinedFilled.tsx | 2 +- src/IconLibraryBooksRounded.tsx | 2 +- src/IconLibraryBooksRoundedFilled.tsx | 2 +- src/IconLibraryBooksSharp.tsx | 2 +- src/IconLibraryBooksSharpFilled.tsx | 2 +- src/IconLibraryMusicOutlined.tsx | 2 +- src/IconLibraryMusicOutlinedFilled.tsx | 2 +- src/IconLibraryMusicRounded.tsx | 2 +- src/IconLibraryMusicRoundedFilled.tsx | 2 +- src/IconLibraryMusicSharp.tsx | 2 +- src/IconLibraryMusicSharpFilled.tsx | 2 +- src/IconLicenseOutlined.tsx | 2 +- src/IconLicenseOutlinedFilled.tsx | 2 +- src/IconLicenseRounded.tsx | 2 +- src/IconLicenseRoundedFilled.tsx | 2 +- src/IconLicenseSharp.tsx | 2 +- src/IconLicenseSharpFilled.tsx | 2 +- src/IconLiftToTalkOutlined.tsx | 2 +- src/IconLiftToTalkOutlinedFilled.tsx | 2 +- src/IconLiftToTalkRounded.tsx | 2 +- src/IconLiftToTalkRoundedFilled.tsx | 2 +- src/IconLiftToTalkSharp.tsx | 2 +- src/IconLiftToTalkSharpFilled.tsx | 2 +- src/IconLightGroupOutlined.tsx | 2 +- src/IconLightGroupOutlinedFilled.tsx | 2 +- src/IconLightGroupRounded.tsx | 2 +- src/IconLightGroupRoundedFilled.tsx | 2 +- src/IconLightGroupSharp.tsx | 2 +- src/IconLightGroupSharpFilled.tsx | 2 +- src/IconLightModeOutlined.tsx | 2 +- src/IconLightModeOutlinedFilled.tsx | 2 +- src/IconLightModeRounded.tsx | 2 +- src/IconLightModeRoundedFilled.tsx | 2 +- src/IconLightModeSharp.tsx | 2 +- src/IconLightModeSharpFilled.tsx | 2 +- src/IconLightOffOutlined.tsx | 2 +- src/IconLightOffOutlinedFilled.tsx | 2 +- src/IconLightOffRounded.tsx | 2 +- src/IconLightOffRoundedFilled.tsx | 2 +- src/IconLightOffSharp.tsx | 2 +- src/IconLightOffSharpFilled.tsx | 2 +- src/IconLightOutlined.tsx | 2 +- src/IconLightOutlinedFilled.tsx | 2 +- src/IconLightRounded.tsx | 2 +- src/IconLightRoundedFilled.tsx | 2 +- src/IconLightSharp.tsx | 2 +- src/IconLightSharpFilled.tsx | 2 +- src/IconLightbulbCircleOutlined.tsx | 2 +- src/IconLightbulbCircleOutlinedFilled.tsx | 2 +- src/IconLightbulbCircleRounded.tsx | 2 +- src/IconLightbulbCircleRoundedFilled.tsx | 2 +- src/IconLightbulbCircleSharp.tsx | 2 +- src/IconLightbulbCircleSharpFilled.tsx | 2 +- src/IconLightbulbOutlined.tsx | 2 +- src/IconLightbulbOutlinedFilled.tsx | 2 +- src/IconLightbulbRounded.tsx | 2 +- src/IconLightbulbRoundedFilled.tsx | 2 +- src/IconLightbulbSharp.tsx | 2 +- src/IconLightbulbSharpFilled.tsx | 2 +- src/IconLightningStandOutlined.tsx | 2 +- src/IconLightningStandOutlinedFilled.tsx | 2 +- src/IconLightningStandRounded.tsx | 2 +- src/IconLightningStandRoundedFilled.tsx | 2 +- src/IconLightningStandSharp.tsx | 2 +- src/IconLightningStandSharpFilled.tsx | 2 +- src/IconLineAxisOutlined.tsx | 2 +- src/IconLineAxisOutlinedFilled.tsx | 2 +- src/IconLineAxisRounded.tsx | 2 +- src/IconLineAxisRoundedFilled.tsx | 2 +- src/IconLineAxisSharp.tsx | 2 +- src/IconLineAxisSharpFilled.tsx | 2 +- src/IconLineCurveOutlined.tsx | 2 +- src/IconLineCurveOutlinedFilled.tsx | 2 +- src/IconLineCurveRounded.tsx | 2 +- src/IconLineCurveRoundedFilled.tsx | 2 +- src/IconLineCurveSharp.tsx | 2 +- src/IconLineCurveSharpFilled.tsx | 2 +- src/IconLineEndArrowNotchOutlined.tsx | 2 +- src/IconLineEndArrowNotchOutlinedFilled.tsx | 2 +- src/IconLineEndArrowNotchRounded.tsx | 2 +- src/IconLineEndArrowNotchRoundedFilled.tsx | 2 +- src/IconLineEndArrowNotchSharp.tsx | 2 +- src/IconLineEndArrowNotchSharpFilled.tsx | 2 +- src/IconLineEndArrowOutlined.tsx | 2 +- src/IconLineEndArrowOutlinedFilled.tsx | 2 +- src/IconLineEndArrowRounded.tsx | 2 +- src/IconLineEndArrowRoundedFilled.tsx | 2 +- src/IconLineEndArrowSharp.tsx | 2 +- src/IconLineEndArrowSharpFilled.tsx | 2 +- src/IconLineEndCircleOutlined.tsx | 2 +- src/IconLineEndCircleOutlinedFilled.tsx | 2 +- src/IconLineEndCircleRounded.tsx | 2 +- src/IconLineEndCircleRoundedFilled.tsx | 2 +- src/IconLineEndCircleSharp.tsx | 2 +- src/IconLineEndCircleSharpFilled.tsx | 2 +- src/IconLineEndDiamondOutlined.tsx | 2 +- src/IconLineEndDiamondOutlinedFilled.tsx | 2 +- src/IconLineEndDiamondRounded.tsx | 2 +- src/IconLineEndDiamondRoundedFilled.tsx | 2 +- src/IconLineEndDiamondSharp.tsx | 2 +- src/IconLineEndDiamondSharpFilled.tsx | 2 +- src/IconLineEndOutlined.tsx | 2 +- src/IconLineEndOutlinedFilled.tsx | 2 +- src/IconLineEndRounded.tsx | 2 +- src/IconLineEndRoundedFilled.tsx | 2 +- src/IconLineEndSharp.tsx | 2 +- src/IconLineEndSharpFilled.tsx | 2 +- src/IconLineEndSquareOutlined.tsx | 2 +- src/IconLineEndSquareOutlinedFilled.tsx | 2 +- src/IconLineEndSquareRounded.tsx | 2 +- src/IconLineEndSquareRoundedFilled.tsx | 2 +- src/IconLineEndSquareSharp.tsx | 2 +- src/IconLineEndSquareSharpFilled.tsx | 2 +- src/IconLineStartArrowNotchOutlined.tsx | 2 +- src/IconLineStartArrowNotchOutlinedFilled.tsx | 2 +- src/IconLineStartArrowNotchRounded.tsx | 2 +- src/IconLineStartArrowNotchRoundedFilled.tsx | 2 +- src/IconLineStartArrowNotchSharp.tsx | 2 +- src/IconLineStartArrowNotchSharpFilled.tsx | 2 +- src/IconLineStartArrowOutlined.tsx | 2 +- src/IconLineStartArrowOutlinedFilled.tsx | 2 +- src/IconLineStartArrowRounded.tsx | 2 +- src/IconLineStartArrowRoundedFilled.tsx | 2 +- src/IconLineStartArrowSharp.tsx | 2 +- src/IconLineStartArrowSharpFilled.tsx | 2 +- src/IconLineStartCircleOutlined.tsx | 2 +- src/IconLineStartCircleOutlinedFilled.tsx | 2 +- src/IconLineStartCircleRounded.tsx | 2 +- src/IconLineStartCircleRoundedFilled.tsx | 2 +- src/IconLineStartCircleSharp.tsx | 2 +- src/IconLineStartCircleSharpFilled.tsx | 2 +- src/IconLineStartDiamondOutlined.tsx | 2 +- src/IconLineStartDiamondOutlinedFilled.tsx | 2 +- src/IconLineStartDiamondRounded.tsx | 2 +- src/IconLineStartDiamondRoundedFilled.tsx | 2 +- src/IconLineStartDiamondSharp.tsx | 2 +- src/IconLineStartDiamondSharpFilled.tsx | 2 +- src/IconLineStartOutlined.tsx | 2 +- src/IconLineStartOutlinedFilled.tsx | 2 +- src/IconLineStartRounded.tsx | 2 +- src/IconLineStartRoundedFilled.tsx | 2 +- src/IconLineStartSharp.tsx | 2 +- src/IconLineStartSharpFilled.tsx | 2 +- src/IconLineStartSquareOutlined.tsx | 2 +- src/IconLineStartSquareOutlinedFilled.tsx | 2 +- src/IconLineStartSquareRounded.tsx | 2 +- src/IconLineStartSquareRoundedFilled.tsx | 2 +- src/IconLineStartSquareSharp.tsx | 2 +- src/IconLineStartSquareSharpFilled.tsx | 2 +- src/IconLineStyleOutlined.tsx | 2 +- src/IconLineStyleOutlinedFilled.tsx | 2 +- src/IconLineStyleRounded.tsx | 2 +- src/IconLineStyleRoundedFilled.tsx | 2 +- src/IconLineStyleSharp.tsx | 2 +- src/IconLineStyleSharpFilled.tsx | 2 +- src/IconLineWeightOutlined.tsx | 2 +- src/IconLineWeightOutlinedFilled.tsx | 2 +- src/IconLineWeightRounded.tsx | 2 +- src/IconLineWeightRoundedFilled.tsx | 2 +- src/IconLineWeightSharp.tsx | 2 +- src/IconLineWeightSharpFilled.tsx | 2 +- src/IconLinearScaleOutlined.tsx | 2 +- src/IconLinearScaleOutlinedFilled.tsx | 2 +- src/IconLinearScaleRounded.tsx | 2 +- src/IconLinearScaleRoundedFilled.tsx | 2 +- src/IconLinearScaleSharp.tsx | 2 +- src/IconLinearScaleSharpFilled.tsx | 2 +- src/IconLinkOffOutlined.tsx | 2 +- src/IconLinkOffOutlinedFilled.tsx | 2 +- src/IconLinkOffRounded.tsx | 2 +- src/IconLinkOffRoundedFilled.tsx | 2 +- src/IconLinkOffSharp.tsx | 2 +- src/IconLinkOffSharpFilled.tsx | 2 +- src/IconLinkOutlined.tsx | 2 +- src/IconLinkOutlinedFilled.tsx | 2 +- src/IconLinkRounded.tsx | 2 +- src/IconLinkRoundedFilled.tsx | 2 +- src/IconLinkSharp.tsx | 2 +- src/IconLinkSharpFilled.tsx | 2 +- src/IconLinkedCameraOutlined.tsx | 2 +- src/IconLinkedCameraOutlinedFilled.tsx | 2 +- src/IconLinkedCameraRounded.tsx | 2 +- src/IconLinkedCameraRoundedFilled.tsx | 2 +- src/IconLinkedCameraSharp.tsx | 2 +- src/IconLinkedCameraSharpFilled.tsx | 2 +- src/IconLinkedServicesOutlined.tsx | 2 +- src/IconLinkedServicesOutlinedFilled.tsx | 2 +- src/IconLinkedServicesRounded.tsx | 2 +- src/IconLinkedServicesRoundedFilled.tsx | 2 +- src/IconLinkedServicesSharp.tsx | 2 +- src/IconLinkedServicesSharpFilled.tsx | 2 +- src/IconLiquorOutlined.tsx | 2 +- src/IconLiquorOutlinedFilled.tsx | 2 +- src/IconLiquorRounded.tsx | 2 +- src/IconLiquorRoundedFilled.tsx | 2 +- src/IconLiquorSharp.tsx | 2 +- src/IconLiquorSharpFilled.tsx | 2 +- src/IconListAltAddOutlined.tsx | 2 +- src/IconListAltAddOutlinedFilled.tsx | 2 +- src/IconListAltAddRounded.tsx | 2 +- src/IconListAltAddRoundedFilled.tsx | 2 +- src/IconListAltAddSharp.tsx | 2 +- src/IconListAltAddSharpFilled.tsx | 2 +- src/IconListAltOutlined.tsx | 2 +- src/IconListAltOutlinedFilled.tsx | 2 +- src/IconListAltRounded.tsx | 2 +- src/IconListAltRoundedFilled.tsx | 2 +- src/IconListAltSharp.tsx | 2 +- src/IconListAltSharpFilled.tsx | 2 +- src/IconListOutlined.tsx | 2 +- src/IconListOutlinedFilled.tsx | 2 +- src/IconListRounded.tsx | 2 +- src/IconListRoundedFilled.tsx | 2 +- src/IconListSharp.tsx | 2 +- src/IconListSharpFilled.tsx | 2 +- src/IconListsOutlined.tsx | 2 +- src/IconListsOutlinedFilled.tsx | 2 +- src/IconListsRounded.tsx | 2 +- src/IconListsRoundedFilled.tsx | 2 +- src/IconListsSharp.tsx | 2 +- src/IconListsSharpFilled.tsx | 2 +- src/IconLiveHelpOutlined.tsx | 2 +- src/IconLiveHelpOutlinedFilled.tsx | 2 +- src/IconLiveHelpRounded.tsx | 2 +- src/IconLiveHelpRoundedFilled.tsx | 2 +- src/IconLiveHelpSharp.tsx | 2 +- src/IconLiveHelpSharpFilled.tsx | 2 +- src/IconLiveTvOutlined.tsx | 2 +- src/IconLiveTvOutlinedFilled.tsx | 2 +- src/IconLiveTvRounded.tsx | 2 +- src/IconLiveTvRoundedFilled.tsx | 2 +- src/IconLiveTvSharp.tsx | 2 +- src/IconLiveTvSharpFilled.tsx | 2 +- src/IconLivingOutlined.tsx | 2 +- src/IconLivingOutlinedFilled.tsx | 2 +- src/IconLivingRounded.tsx | 2 +- src/IconLivingRoundedFilled.tsx | 2 +- src/IconLivingSharp.tsx | 2 +- src/IconLivingSharpFilled.tsx | 2 +- src/IconLocalActivityOutlined.tsx | 2 +- src/IconLocalActivityOutlinedFilled.tsx | 2 +- src/IconLocalActivityRounded.tsx | 2 +- src/IconLocalActivityRoundedFilled.tsx | 2 +- src/IconLocalActivitySharp.tsx | 2 +- src/IconLocalActivitySharpFilled.tsx | 2 +- src/IconLocalAtmOutlined.tsx | 2 +- src/IconLocalAtmOutlinedFilled.tsx | 2 +- src/IconLocalAtmRounded.tsx | 2 +- src/IconLocalAtmRoundedFilled.tsx | 2 +- src/IconLocalAtmSharp.tsx | 2 +- src/IconLocalAtmSharpFilled.tsx | 2 +- src/IconLocalBarOutlined.tsx | 2 +- src/IconLocalBarOutlinedFilled.tsx | 2 +- src/IconLocalBarRounded.tsx | 2 +- src/IconLocalBarRoundedFilled.tsx | 2 +- src/IconLocalBarSharp.tsx | 2 +- src/IconLocalBarSharpFilled.tsx | 2 +- src/IconLocalCafeOutlined.tsx | 2 +- src/IconLocalCafeOutlinedFilled.tsx | 2 +- src/IconLocalCafeRounded.tsx | 2 +- src/IconLocalCafeRoundedFilled.tsx | 2 +- src/IconLocalCafeSharp.tsx | 2 +- src/IconLocalCafeSharpFilled.tsx | 2 +- src/IconLocalCarWashOutlined.tsx | 2 +- src/IconLocalCarWashOutlinedFilled.tsx | 2 +- src/IconLocalCarWashRounded.tsx | 2 +- src/IconLocalCarWashRoundedFilled.tsx | 2 +- src/IconLocalCarWashSharp.tsx | 2 +- src/IconLocalCarWashSharpFilled.tsx | 2 +- src/IconLocalConvenienceStoreOutlined.tsx | 2 +- src/IconLocalConvenienceStoreOutlinedFilled.tsx | 2 +- src/IconLocalConvenienceStoreRounded.tsx | 2 +- src/IconLocalConvenienceStoreRoundedFilled.tsx | 2 +- src/IconLocalConvenienceStoreSharp.tsx | 2 +- src/IconLocalConvenienceStoreSharpFilled.tsx | 2 +- src/IconLocalDiningOutlined.tsx | 2 +- src/IconLocalDiningOutlinedFilled.tsx | 2 +- src/IconLocalDiningRounded.tsx | 2 +- src/IconLocalDiningRoundedFilled.tsx | 2 +- src/IconLocalDiningSharp.tsx | 2 +- src/IconLocalDiningSharpFilled.tsx | 2 +- src/IconLocalDrinkOutlined.tsx | 2 +- src/IconLocalDrinkOutlinedFilled.tsx | 2 +- src/IconLocalDrinkRounded.tsx | 2 +- src/IconLocalDrinkRoundedFilled.tsx | 2 +- src/IconLocalDrinkSharp.tsx | 2 +- src/IconLocalDrinkSharpFilled.tsx | 2 +- src/IconLocalFireDepartmentOutlined.tsx | 2 +- src/IconLocalFireDepartmentOutlinedFilled.tsx | 2 +- src/IconLocalFireDepartmentRounded.tsx | 2 +- src/IconLocalFireDepartmentRoundedFilled.tsx | 2 +- src/IconLocalFireDepartmentSharp.tsx | 2 +- src/IconLocalFireDepartmentSharpFilled.tsx | 2 +- src/IconLocalFloristOutlined.tsx | 2 +- src/IconLocalFloristOutlinedFilled.tsx | 2 +- src/IconLocalFloristRounded.tsx | 2 +- src/IconLocalFloristRoundedFilled.tsx | 2 +- src/IconLocalFloristSharp.tsx | 2 +- src/IconLocalFloristSharpFilled.tsx | 2 +- src/IconLocalGasStationOutlined.tsx | 2 +- src/IconLocalGasStationOutlinedFilled.tsx | 2 +- src/IconLocalGasStationRounded.tsx | 2 +- src/IconLocalGasStationRoundedFilled.tsx | 2 +- src/IconLocalGasStationSharp.tsx | 2 +- src/IconLocalGasStationSharpFilled.tsx | 2 +- src/IconLocalHospitalOutlined.tsx | 2 +- src/IconLocalHospitalOutlinedFilled.tsx | 2 +- src/IconLocalHospitalRounded.tsx | 2 +- src/IconLocalHospitalRoundedFilled.tsx | 2 +- src/IconLocalHospitalSharp.tsx | 2 +- src/IconLocalHospitalSharpFilled.tsx | 2 +- src/IconLocalLaundryServiceOutlined.tsx | 2 +- src/IconLocalLaundryServiceOutlinedFilled.tsx | 2 +- src/IconLocalLaundryServiceRounded.tsx | 2 +- src/IconLocalLaundryServiceRoundedFilled.tsx | 2 +- src/IconLocalLaundryServiceSharp.tsx | 2 +- src/IconLocalLaundryServiceSharpFilled.tsx | 2 +- src/IconLocalLibraryOutlined.tsx | 2 +- src/IconLocalLibraryOutlinedFilled.tsx | 2 +- src/IconLocalLibraryRounded.tsx | 2 +- src/IconLocalLibraryRoundedFilled.tsx | 2 +- src/IconLocalLibrarySharp.tsx | 2 +- src/IconLocalLibrarySharpFilled.tsx | 2 +- src/IconLocalMallOutlined.tsx | 2 +- src/IconLocalMallOutlinedFilled.tsx | 2 +- src/IconLocalMallRounded.tsx | 2 +- src/IconLocalMallRoundedFilled.tsx | 2 +- src/IconLocalMallSharp.tsx | 2 +- src/IconLocalMallSharpFilled.tsx | 2 +- src/IconLocalParkingOutlined.tsx | 2 +- src/IconLocalParkingOutlinedFilled.tsx | 2 +- src/IconLocalParkingRounded.tsx | 2 +- src/IconLocalParkingRoundedFilled.tsx | 2 +- src/IconLocalParkingSharp.tsx | 2 +- src/IconLocalParkingSharpFilled.tsx | 2 +- src/IconLocalPharmacyOutlined.tsx | 2 +- src/IconLocalPharmacyOutlinedFilled.tsx | 2 +- src/IconLocalPharmacyRounded.tsx | 2 +- src/IconLocalPharmacyRoundedFilled.tsx | 2 +- src/IconLocalPharmacySharp.tsx | 2 +- src/IconLocalPharmacySharpFilled.tsx | 2 +- src/IconLocalPizzaOutlined.tsx | 2 +- src/IconLocalPizzaOutlinedFilled.tsx | 2 +- src/IconLocalPizzaRounded.tsx | 2 +- src/IconLocalPizzaRoundedFilled.tsx | 2 +- src/IconLocalPizzaSharp.tsx | 2 +- src/IconLocalPizzaSharpFilled.tsx | 2 +- src/IconLocalPoliceOutlined.tsx | 2 +- src/IconLocalPoliceOutlinedFilled.tsx | 2 +- src/IconLocalPoliceRounded.tsx | 2 +- src/IconLocalPoliceRoundedFilled.tsx | 2 +- src/IconLocalPoliceSharp.tsx | 2 +- src/IconLocalPoliceSharpFilled.tsx | 2 +- src/IconLocalPostOfficeOutlined.tsx | 2 +- src/IconLocalPostOfficeOutlinedFilled.tsx | 2 +- src/IconLocalPostOfficeRounded.tsx | 2 +- src/IconLocalPostOfficeRoundedFilled.tsx | 2 +- src/IconLocalPostOfficeSharp.tsx | 2 +- src/IconLocalPostOfficeSharpFilled.tsx | 2 +- src/IconLocalSeeOutlined.tsx | 2 +- src/IconLocalSeeOutlinedFilled.tsx | 2 +- src/IconLocalSeeRounded.tsx | 2 +- src/IconLocalSeeRoundedFilled.tsx | 2 +- src/IconLocalSeeSharp.tsx | 2 +- src/IconLocalSeeSharpFilled.tsx | 2 +- src/IconLocalShippingOutlined.tsx | 2 +- src/IconLocalShippingOutlinedFilled.tsx | 2 +- src/IconLocalShippingRounded.tsx | 2 +- src/IconLocalShippingRoundedFilled.tsx | 2 +- src/IconLocalShippingSharp.tsx | 2 +- src/IconLocalShippingSharpFilled.tsx | 2 +- src/IconLocalTaxiOutlined.tsx | 2 +- src/IconLocalTaxiOutlinedFilled.tsx | 2 +- src/IconLocalTaxiRounded.tsx | 2 +- src/IconLocalTaxiRoundedFilled.tsx | 2 +- src/IconLocalTaxiSharp.tsx | 2 +- src/IconLocalTaxiSharpFilled.tsx | 2 +- src/IconLocationAwayOutlined.tsx | 2 +- src/IconLocationAwayOutlinedFilled.tsx | 2 +- src/IconLocationAwayRounded.tsx | 2 +- src/IconLocationAwayRoundedFilled.tsx | 2 +- src/IconLocationAwaySharp.tsx | 2 +- src/IconLocationAwaySharpFilled.tsx | 2 +- src/IconLocationChipOutlined.tsx | 2 +- src/IconLocationChipOutlinedFilled.tsx | 2 +- src/IconLocationChipRounded.tsx | 2 +- src/IconLocationChipRoundedFilled.tsx | 2 +- src/IconLocationChipSharp.tsx | 2 +- src/IconLocationChipSharpFilled.tsx | 2 +- src/IconLocationCityOutlined.tsx | 2 +- src/IconLocationCityOutlinedFilled.tsx | 2 +- src/IconLocationCityRounded.tsx | 2 +- src/IconLocationCityRoundedFilled.tsx | 2 +- src/IconLocationCitySharp.tsx | 2 +- src/IconLocationCitySharpFilled.tsx | 2 +- src/IconLocationDisabledOutlined.tsx | 2 +- src/IconLocationDisabledOutlinedFilled.tsx | 2 +- src/IconLocationDisabledRounded.tsx | 2 +- src/IconLocationDisabledRoundedFilled.tsx | 2 +- src/IconLocationDisabledSharp.tsx | 2 +- src/IconLocationDisabledSharpFilled.tsx | 2 +- src/IconLocationHomeOutlined.tsx | 2 +- src/IconLocationHomeOutlinedFilled.tsx | 2 +- src/IconLocationHomeRounded.tsx | 2 +- src/IconLocationHomeRoundedFilled.tsx | 2 +- src/IconLocationHomeSharp.tsx | 2 +- src/IconLocationHomeSharpFilled.tsx | 2 +- src/IconLocationOffOutlined.tsx | 2 +- src/IconLocationOffOutlinedFilled.tsx | 2 +- src/IconLocationOffRounded.tsx | 2 +- src/IconLocationOffRoundedFilled.tsx | 2 +- src/IconLocationOffSharp.tsx | 2 +- src/IconLocationOffSharpFilled.tsx | 2 +- src/IconLocationOnOutlined.tsx | 2 +- src/IconLocationOnOutlinedFilled.tsx | 2 +- src/IconLocationOnRounded.tsx | 2 +- src/IconLocationOnRoundedFilled.tsx | 2 +- src/IconLocationOnSharp.tsx | 2 +- src/IconLocationOnSharpFilled.tsx | 2 +- src/IconLocationSearchingOutlined.tsx | 2 +- src/IconLocationSearchingOutlinedFilled.tsx | 2 +- src/IconLocationSearchingRounded.tsx | 2 +- src/IconLocationSearchingRoundedFilled.tsx | 2 +- src/IconLocationSearchingSharp.tsx | 2 +- src/IconLocationSearchingSharpFilled.tsx | 2 +- src/IconLockClockOutlined.tsx | 2 +- src/IconLockClockOutlinedFilled.tsx | 2 +- src/IconLockClockRounded.tsx | 2 +- src/IconLockClockRoundedFilled.tsx | 2 +- src/IconLockClockSharp.tsx | 2 +- src/IconLockClockSharpFilled.tsx | 2 +- src/IconLockOpenOutlined.tsx | 2 +- src/IconLockOpenOutlinedFilled.tsx | 2 +- src/IconLockOpenRightOutlined.tsx | 2 +- src/IconLockOpenRightOutlinedFilled.tsx | 2 +- src/IconLockOpenRightRounded.tsx | 2 +- src/IconLockOpenRightRoundedFilled.tsx | 2 +- src/IconLockOpenRightSharp.tsx | 2 +- src/IconLockOpenRightSharpFilled.tsx | 2 +- src/IconLockOpenRounded.tsx | 2 +- src/IconLockOpenRoundedFilled.tsx | 2 +- src/IconLockOpenSharp.tsx | 2 +- src/IconLockOpenSharpFilled.tsx | 2 +- src/IconLockOutlined.tsx | 2 +- src/IconLockOutlinedFilled.tsx | 2 +- src/IconLockPersonOutlined.tsx | 2 +- src/IconLockPersonOutlinedFilled.tsx | 2 +- src/IconLockPersonRounded.tsx | 2 +- src/IconLockPersonRoundedFilled.tsx | 2 +- src/IconLockPersonSharp.tsx | 2 +- src/IconLockPersonSharpFilled.tsx | 2 +- src/IconLockResetOutlined.tsx | 2 +- src/IconLockResetOutlinedFilled.tsx | 2 +- src/IconLockResetRounded.tsx | 2 +- src/IconLockResetRoundedFilled.tsx | 2 +- src/IconLockResetSharp.tsx | 2 +- src/IconLockResetSharpFilled.tsx | 2 +- src/IconLockRounded.tsx | 2 +- src/IconLockRoundedFilled.tsx | 2 +- src/IconLockSharp.tsx | 2 +- src/IconLockSharpFilled.tsx | 2 +- src/IconLoginOutlined.tsx | 2 +- src/IconLoginOutlinedFilled.tsx | 2 +- src/IconLoginRounded.tsx | 2 +- src/IconLoginRoundedFilled.tsx | 2 +- src/IconLoginSharp.tsx | 2 +- src/IconLoginSharpFilled.tsx | 2 +- src/IconLogoDevOutlined.tsx | 2 +- src/IconLogoDevOutlinedFilled.tsx | 2 +- src/IconLogoDevRounded.tsx | 2 +- src/IconLogoDevRoundedFilled.tsx | 2 +- src/IconLogoDevSharp.tsx | 2 +- src/IconLogoDevSharpFilled.tsx | 2 +- src/IconLogoutOutlined.tsx | 2 +- src/IconLogoutOutlinedFilled.tsx | 2 +- src/IconLogoutRounded.tsx | 2 +- src/IconLogoutRoundedFilled.tsx | 2 +- src/IconLogoutSharp.tsx | 2 +- src/IconLogoutSharpFilled.tsx | 2 +- src/IconLooks3Outlined.tsx | 2 +- src/IconLooks3OutlinedFilled.tsx | 2 +- src/IconLooks3Rounded.tsx | 2 +- src/IconLooks3RoundedFilled.tsx | 2 +- src/IconLooks3Sharp.tsx | 2 +- src/IconLooks3SharpFilled.tsx | 2 +- src/IconLooks4Outlined.tsx | 2 +- src/IconLooks4OutlinedFilled.tsx | 2 +- src/IconLooks4Rounded.tsx | 2 +- src/IconLooks4RoundedFilled.tsx | 2 +- src/IconLooks4Sharp.tsx | 2 +- src/IconLooks4SharpFilled.tsx | 2 +- src/IconLooks5Outlined.tsx | 2 +- src/IconLooks5OutlinedFilled.tsx | 2 +- src/IconLooks5Rounded.tsx | 2 +- src/IconLooks5RoundedFilled.tsx | 2 +- src/IconLooks5Sharp.tsx | 2 +- src/IconLooks5SharpFilled.tsx | 2 +- src/IconLooks6Outlined.tsx | 2 +- src/IconLooks6OutlinedFilled.tsx | 2 +- src/IconLooks6Rounded.tsx | 2 +- src/IconLooks6RoundedFilled.tsx | 2 +- src/IconLooks6Sharp.tsx | 2 +- src/IconLooks6SharpFilled.tsx | 2 +- src/IconLooksOneOutlined.tsx | 2 +- src/IconLooksOneOutlinedFilled.tsx | 2 +- src/IconLooksOneRounded.tsx | 2 +- src/IconLooksOneRoundedFilled.tsx | 2 +- src/IconLooksOneSharp.tsx | 2 +- src/IconLooksOneSharpFilled.tsx | 2 +- src/IconLooksOutlined.tsx | 2 +- src/IconLooksOutlinedFilled.tsx | 2 +- src/IconLooksRounded.tsx | 2 +- src/IconLooksRoundedFilled.tsx | 2 +- src/IconLooksSharp.tsx | 2 +- src/IconLooksSharpFilled.tsx | 2 +- src/IconLooksTwoOutlined.tsx | 2 +- src/IconLooksTwoOutlinedFilled.tsx | 2 +- src/IconLooksTwoRounded.tsx | 2 +- src/IconLooksTwoRoundedFilled.tsx | 2 +- src/IconLooksTwoSharp.tsx | 2 +- src/IconLooksTwoSharpFilled.tsx | 2 +- src/IconLoupeOutlined.tsx | 2 +- src/IconLoupeOutlinedFilled.tsx | 2 +- src/IconLoupeRounded.tsx | 2 +- src/IconLoupeRoundedFilled.tsx | 2 +- src/IconLoupeSharp.tsx | 2 +- src/IconLoupeSharpFilled.tsx | 2 +- src/IconLowDensityOutlined.tsx | 2 +- src/IconLowDensityOutlinedFilled.tsx | 2 +- src/IconLowDensityRounded.tsx | 2 +- src/IconLowDensityRoundedFilled.tsx | 2 +- src/IconLowDensitySharp.tsx | 2 +- src/IconLowDensitySharpFilled.tsx | 2 +- src/IconLowPriorityOutlined.tsx | 2 +- src/IconLowPriorityOutlinedFilled.tsx | 2 +- src/IconLowPriorityRounded.tsx | 2 +- src/IconLowPriorityRoundedFilled.tsx | 2 +- src/IconLowPrioritySharp.tsx | 2 +- src/IconLowPrioritySharpFilled.tsx | 2 +- src/IconLowercaseOutlined.tsx | 2 +- src/IconLowercaseOutlinedFilled.tsx | 2 +- src/IconLowercaseRounded.tsx | 2 +- src/IconLowercaseRoundedFilled.tsx | 2 +- src/IconLowercaseSharp.tsx | 2 +- src/IconLowercaseSharpFilled.tsx | 2 +- src/IconLoyaltyOutlined.tsx | 2 +- src/IconLoyaltyOutlinedFilled.tsx | 2 +- src/IconLoyaltyRounded.tsx | 2 +- src/IconLoyaltyRoundedFilled.tsx | 2 +- src/IconLoyaltySharp.tsx | 2 +- src/IconLoyaltySharpFilled.tsx | 2 +- src/IconLteMobiledataBadgeOutlined.tsx | 2 +- src/IconLteMobiledataBadgeOutlinedFilled.tsx | 2 +- src/IconLteMobiledataBadgeRounded.tsx | 2 +- src/IconLteMobiledataBadgeRoundedFilled.tsx | 2 +- src/IconLteMobiledataBadgeSharp.tsx | 2 +- src/IconLteMobiledataBadgeSharpFilled.tsx | 2 +- src/IconLteMobiledataOutlined.tsx | 2 +- src/IconLteMobiledataOutlinedFilled.tsx | 2 +- src/IconLteMobiledataRounded.tsx | 2 +- src/IconLteMobiledataRoundedFilled.tsx | 2 +- src/IconLteMobiledataSharp.tsx | 2 +- src/IconLteMobiledataSharpFilled.tsx | 2 +- src/IconLtePlusMobiledataBadgeOutlined.tsx | 2 +- src/IconLtePlusMobiledataBadgeOutlinedFilled.tsx | 2 +- src/IconLtePlusMobiledataBadgeRounded.tsx | 2 +- src/IconLtePlusMobiledataBadgeRoundedFilled.tsx | 2 +- src/IconLtePlusMobiledataBadgeSharp.tsx | 2 +- src/IconLtePlusMobiledataBadgeSharpFilled.tsx | 2 +- src/IconLtePlusMobiledataOutlined.tsx | 2 +- src/IconLtePlusMobiledataOutlinedFilled.tsx | 2 +- src/IconLtePlusMobiledataRounded.tsx | 2 +- src/IconLtePlusMobiledataRoundedFilled.tsx | 2 +- src/IconLtePlusMobiledataSharp.tsx | 2 +- src/IconLtePlusMobiledataSharpFilled.tsx | 2 +- src/IconLuggageOutlined.tsx | 2 +- src/IconLuggageOutlinedFilled.tsx | 2 +- src/IconLuggageRounded.tsx | 2 +- src/IconLuggageRoundedFilled.tsx | 2 +- src/IconLuggageSharp.tsx | 2 +- src/IconLuggageSharpFilled.tsx | 2 +- src/IconLunchDiningOutlined.tsx | 2 +- src/IconLunchDiningOutlinedFilled.tsx | 2 +- src/IconLunchDiningRounded.tsx | 2 +- src/IconLunchDiningRoundedFilled.tsx | 2 +- src/IconLunchDiningSharp.tsx | 2 +- src/IconLunchDiningSharpFilled.tsx | 2 +- src/IconLyricsOutlined.tsx | 2 +- src/IconLyricsOutlinedFilled.tsx | 2 +- src/IconLyricsRounded.tsx | 2 +- src/IconLyricsRoundedFilled.tsx | 2 +- src/IconLyricsSharp.tsx | 2 +- src/IconLyricsSharpFilled.tsx | 2 +- src/IconMacroAutoOutlined.tsx | 2 +- src/IconMacroAutoOutlinedFilled.tsx | 2 +- src/IconMacroAutoRounded.tsx | 2 +- src/IconMacroAutoRoundedFilled.tsx | 2 +- src/IconMacroAutoSharp.tsx | 2 +- src/IconMacroAutoSharpFilled.tsx | 2 +- src/IconMacroOffOutlined.tsx | 2 +- src/IconMacroOffOutlinedFilled.tsx | 2 +- src/IconMacroOffRounded.tsx | 2 +- src/IconMacroOffRoundedFilled.tsx | 2 +- src/IconMacroOffSharp.tsx | 2 +- src/IconMacroOffSharpFilled.tsx | 2 +- src/IconMagnificationLargeOutlined.tsx | 2 +- src/IconMagnificationLargeOutlinedFilled.tsx | 2 +- src/IconMagnificationLargeRounded.tsx | 2 +- src/IconMagnificationLargeRoundedFilled.tsx | 2 +- src/IconMagnificationLargeSharp.tsx | 2 +- src/IconMagnificationLargeSharpFilled.tsx | 2 +- src/IconMagnificationSmallOutlined.tsx | 2 +- src/IconMagnificationSmallOutlinedFilled.tsx | 2 +- src/IconMagnificationSmallRounded.tsx | 2 +- src/IconMagnificationSmallRoundedFilled.tsx | 2 +- src/IconMagnificationSmallSharp.tsx | 2 +- src/IconMagnificationSmallSharpFilled.tsx | 2 +- src/IconMagnifyDockedOutlined.tsx | 2 +- src/IconMagnifyDockedOutlinedFilled.tsx | 2 +- src/IconMagnifyDockedRounded.tsx | 2 +- src/IconMagnifyDockedRoundedFilled.tsx | 2 +- src/IconMagnifyDockedSharp.tsx | 2 +- src/IconMagnifyDockedSharpFilled.tsx | 2 +- src/IconMagnifyFullscreenOutlined.tsx | 2 +- src/IconMagnifyFullscreenOutlinedFilled.tsx | 2 +- src/IconMagnifyFullscreenRounded.tsx | 2 +- src/IconMagnifyFullscreenRoundedFilled.tsx | 2 +- src/IconMagnifyFullscreenSharp.tsx | 2 +- src/IconMagnifyFullscreenSharpFilled.tsx | 2 +- src/IconMailLockOutlined.tsx | 2 +- src/IconMailLockOutlinedFilled.tsx | 2 +- src/IconMailLockRounded.tsx | 2 +- src/IconMailLockRoundedFilled.tsx | 2 +- src/IconMailLockSharp.tsx | 2 +- src/IconMailLockSharpFilled.tsx | 2 +- src/IconMailOffOutlined.tsx | 2 +- src/IconMailOffOutlinedFilled.tsx | 2 +- src/IconMailOffRounded.tsx | 2 +- src/IconMailOffRoundedFilled.tsx | 2 +- src/IconMailOffSharp.tsx | 2 +- src/IconMailOffSharpFilled.tsx | 2 +- src/IconMailOutlined.tsx | 2 +- src/IconMailOutlinedFilled.tsx | 2 +- src/IconMailRounded.tsx | 2 +- src/IconMailRoundedFilled.tsx | 2 +- src/IconMailSharp.tsx | 2 +- src/IconMailSharpFilled.tsx | 2 +- src/IconMaleOutlined.tsx | 2 +- src/IconMaleOutlinedFilled.tsx | 2 +- src/IconMaleRounded.tsx | 2 +- src/IconMaleRoundedFilled.tsx | 2 +- src/IconMaleSharp.tsx | 2 +- src/IconMaleSharpFilled.tsx | 2 +- src/IconMan2Outlined.tsx | 2 +- src/IconMan2OutlinedFilled.tsx | 2 +- src/IconMan2Rounded.tsx | 2 +- src/IconMan2RoundedFilled.tsx | 2 +- src/IconMan2Sharp.tsx | 2 +- src/IconMan2SharpFilled.tsx | 2 +- src/IconMan3Outlined.tsx | 2 +- src/IconMan3OutlinedFilled.tsx | 2 +- src/IconMan3Rounded.tsx | 2 +- src/IconMan3RoundedFilled.tsx | 2 +- src/IconMan3Sharp.tsx | 2 +- src/IconMan3SharpFilled.tsx | 2 +- src/IconMan4Outlined.tsx | 2 +- src/IconMan4OutlinedFilled.tsx | 2 +- src/IconMan4Rounded.tsx | 2 +- src/IconMan4RoundedFilled.tsx | 2 +- src/IconMan4Sharp.tsx | 2 +- src/IconMan4SharpFilled.tsx | 2 +- src/IconManOutlined.tsx | 2 +- src/IconManOutlinedFilled.tsx | 2 +- src/IconManRounded.tsx | 2 +- src/IconManRoundedFilled.tsx | 2 +- src/IconManSharp.tsx | 2 +- src/IconManSharpFilled.tsx | 2 +- src/IconManageAccountsOutlined.tsx | 2 +- src/IconManageAccountsOutlinedFilled.tsx | 2 +- src/IconManageAccountsRounded.tsx | 2 +- src/IconManageAccountsRoundedFilled.tsx | 2 +- src/IconManageAccountsSharp.tsx | 2 +- src/IconManageAccountsSharpFilled.tsx | 2 +- src/IconManageHistoryOutlined.tsx | 2 +- src/IconManageHistoryOutlinedFilled.tsx | 2 +- src/IconManageHistoryRounded.tsx | 2 +- src/IconManageHistoryRoundedFilled.tsx | 2 +- src/IconManageHistorySharp.tsx | 2 +- src/IconManageHistorySharpFilled.tsx | 2 +- src/IconManageSearchOutlined.tsx | 2 +- src/IconManageSearchOutlinedFilled.tsx | 2 +- src/IconManageSearchRounded.tsx | 2 +- src/IconManageSearchRoundedFilled.tsx | 2 +- src/IconManageSearchSharp.tsx | 2 +- src/IconManageSearchSharpFilled.tsx | 2 +- src/IconMangaOutlined.tsx | 2 +- src/IconMangaOutlinedFilled.tsx | 2 +- src/IconMangaRounded.tsx | 2 +- src/IconMangaRoundedFilled.tsx | 2 +- src/IconMangaSharp.tsx | 2 +- src/IconMangaSharpFilled.tsx | 2 +- src/IconManufacturingOutlined.tsx | 2 +- src/IconManufacturingOutlinedFilled.tsx | 2 +- src/IconManufacturingRounded.tsx | 2 +- src/IconManufacturingRoundedFilled.tsx | 2 +- src/IconManufacturingSharp.tsx | 2 +- src/IconManufacturingSharpFilled.tsx | 2 +- src/IconMapOutlined.tsx | 2 +- src/IconMapOutlinedFilled.tsx | 2 +- src/IconMapRounded.tsx | 2 +- src/IconMapRoundedFilled.tsx | 2 +- src/IconMapSharp.tsx | 2 +- src/IconMapSharpFilled.tsx | 2 +- src/IconMapsUgcOutlined.tsx | 2 +- src/IconMapsUgcOutlinedFilled.tsx | 2 +- src/IconMapsUgcRounded.tsx | 2 +- src/IconMapsUgcRoundedFilled.tsx | 2 +- src/IconMapsUgcSharp.tsx | 2 +- src/IconMapsUgcSharpFilled.tsx | 2 +- src/IconMarginOutlined.tsx | 2 +- src/IconMarginOutlinedFilled.tsx | 2 +- src/IconMarginRounded.tsx | 2 +- src/IconMarginRoundedFilled.tsx | 2 +- src/IconMarginSharp.tsx | 2 +- src/IconMarginSharpFilled.tsx | 2 +- src/IconMarkAsUnreadOutlined.tsx | 2 +- src/IconMarkAsUnreadOutlinedFilled.tsx | 2 +- src/IconMarkAsUnreadRounded.tsx | 2 +- src/IconMarkAsUnreadRoundedFilled.tsx | 2 +- src/IconMarkAsUnreadSharp.tsx | 2 +- src/IconMarkAsUnreadSharpFilled.tsx | 2 +- src/IconMarkChatReadOutlined.tsx | 2 +- src/IconMarkChatReadOutlinedFilled.tsx | 2 +- src/IconMarkChatReadRounded.tsx | 2 +- src/IconMarkChatReadRoundedFilled.tsx | 2 +- src/IconMarkChatReadSharp.tsx | 2 +- src/IconMarkChatReadSharpFilled.tsx | 2 +- src/IconMarkChatUnreadOutlined.tsx | 2 +- src/IconMarkChatUnreadOutlinedFilled.tsx | 2 +- src/IconMarkChatUnreadRounded.tsx | 2 +- src/IconMarkChatUnreadRoundedFilled.tsx | 2 +- src/IconMarkChatUnreadSharp.tsx | 2 +- src/IconMarkChatUnreadSharpFilled.tsx | 2 +- src/IconMarkEmailReadOutlined.tsx | 2 +- src/IconMarkEmailReadOutlinedFilled.tsx | 2 +- src/IconMarkEmailReadRounded.tsx | 2 +- src/IconMarkEmailReadRoundedFilled.tsx | 2 +- src/IconMarkEmailReadSharp.tsx | 2 +- src/IconMarkEmailReadSharpFilled.tsx | 2 +- src/IconMarkEmailUnreadOutlined.tsx | 2 +- src/IconMarkEmailUnreadOutlinedFilled.tsx | 2 +- src/IconMarkEmailUnreadRounded.tsx | 2 +- src/IconMarkEmailUnreadRoundedFilled.tsx | 2 +- src/IconMarkEmailUnreadSharp.tsx | 2 +- src/IconMarkEmailUnreadSharpFilled.tsx | 2 +- src/IconMarkUnreadChatAltOutlined.tsx | 2 +- src/IconMarkUnreadChatAltOutlinedFilled.tsx | 2 +- src/IconMarkUnreadChatAltRounded.tsx | 2 +- src/IconMarkUnreadChatAltRoundedFilled.tsx | 2 +- src/IconMarkUnreadChatAltSharp.tsx | 2 +- src/IconMarkUnreadChatAltSharpFilled.tsx | 2 +- src/IconMarkdownCopyOutlined.tsx | 2 +- src/IconMarkdownCopyOutlinedFilled.tsx | 2 +- src/IconMarkdownCopyRounded.tsx | 2 +- src/IconMarkdownCopyRoundedFilled.tsx | 2 +- src/IconMarkdownCopySharp.tsx | 2 +- src/IconMarkdownCopySharpFilled.tsx | 2 +- src/IconMarkdownOutlined.tsx | 2 +- src/IconMarkdownOutlinedFilled.tsx | 2 +- src/IconMarkdownPasteOutlined.tsx | 2 +- src/IconMarkdownPasteOutlinedFilled.tsx | 2 +- src/IconMarkdownPasteRounded.tsx | 2 +- src/IconMarkdownPasteRoundedFilled.tsx | 2 +- src/IconMarkdownPasteSharp.tsx | 2 +- src/IconMarkdownPasteSharpFilled.tsx | 2 +- src/IconMarkdownRounded.tsx | 2 +- src/IconMarkdownRoundedFilled.tsx | 2 +- src/IconMarkdownSharp.tsx | 2 +- src/IconMarkdownSharpFilled.tsx | 2 +- src/IconMarkunreadMailboxOutlined.tsx | 2 +- src/IconMarkunreadMailboxOutlinedFilled.tsx | 2 +- src/IconMarkunreadMailboxRounded.tsx | 2 +- src/IconMarkunreadMailboxRoundedFilled.tsx | 2 +- src/IconMarkunreadMailboxSharp.tsx | 2 +- src/IconMarkunreadMailboxSharpFilled.tsx | 2 +- src/IconMaskedTransitionsAddOutlined.tsx | 2 +- src/IconMaskedTransitionsAddOutlinedFilled.tsx | 2 +- src/IconMaskedTransitionsAddRounded.tsx | 2 +- src/IconMaskedTransitionsAddRoundedFilled.tsx | 2 +- src/IconMaskedTransitionsAddSharp.tsx | 2 +- src/IconMaskedTransitionsAddSharpFilled.tsx | 2 +- src/IconMaskedTransitionsOutlined.tsx | 2 +- src/IconMaskedTransitionsOutlinedFilled.tsx | 2 +- src/IconMaskedTransitionsRounded.tsx | 2 +- src/IconMaskedTransitionsRoundedFilled.tsx | 2 +- src/IconMaskedTransitionsSharp.tsx | 2 +- src/IconMaskedTransitionsSharpFilled.tsx | 2 +- src/IconMasksOutlined.tsx | 2 +- src/IconMasksOutlinedFilled.tsx | 2 +- src/IconMasksRounded.tsx | 2 +- src/IconMasksRoundedFilled.tsx | 2 +- src/IconMasksSharp.tsx | 2 +- src/IconMasksSharpFilled.tsx | 2 +- src/IconMatchCaseOutlined.tsx | 2 +- src/IconMatchCaseOutlinedFilled.tsx | 2 +- src/IconMatchCaseRounded.tsx | 2 +- src/IconMatchCaseRoundedFilled.tsx | 2 +- src/IconMatchCaseSharp.tsx | 2 +- src/IconMatchCaseSharpFilled.tsx | 2 +- src/IconMatchWordOutlined.tsx | 2 +- src/IconMatchWordOutlinedFilled.tsx | 2 +- src/IconMatchWordRounded.tsx | 2 +- src/IconMatchWordRoundedFilled.tsx | 2 +- src/IconMatchWordSharp.tsx | 2 +- src/IconMatchWordSharpFilled.tsx | 2 +- src/IconMatterOutlined.tsx | 2 +- src/IconMatterOutlinedFilled.tsx | 2 +- src/IconMatterRounded.tsx | 2 +- src/IconMatterRoundedFilled.tsx | 2 +- src/IconMatterSharp.tsx | 2 +- src/IconMatterSharpFilled.tsx | 2 +- src/IconMaximizeOutlined.tsx | 2 +- src/IconMaximizeOutlinedFilled.tsx | 2 +- src/IconMaximizeRounded.tsx | 2 +- src/IconMaximizeRoundedFilled.tsx | 2 +- src/IconMaximizeSharp.tsx | 2 +- src/IconMaximizeSharpFilled.tsx | 2 +- src/IconMeasuringTapeOutlined.tsx | 2 +- src/IconMeasuringTapeOutlinedFilled.tsx | 2 +- src/IconMeasuringTapeRounded.tsx | 2 +- src/IconMeasuringTapeRoundedFilled.tsx | 2 +- src/IconMeasuringTapeSharp.tsx | 2 +- src/IconMeasuringTapeSharpFilled.tsx | 2 +- src/IconMediaBluetoothOffOutlined.tsx | 2 +- src/IconMediaBluetoothOffOutlinedFilled.tsx | 2 +- src/IconMediaBluetoothOffRounded.tsx | 2 +- src/IconMediaBluetoothOffRoundedFilled.tsx | 2 +- src/IconMediaBluetoothOffSharp.tsx | 2 +- src/IconMediaBluetoothOffSharpFilled.tsx | 2 +- src/IconMediaBluetoothOnOutlined.tsx | 2 +- src/IconMediaBluetoothOnOutlinedFilled.tsx | 2 +- src/IconMediaBluetoothOnRounded.tsx | 2 +- src/IconMediaBluetoothOnRoundedFilled.tsx | 2 +- src/IconMediaBluetoothOnSharp.tsx | 2 +- src/IconMediaBluetoothOnSharpFilled.tsx | 2 +- src/IconMediaLinkOutlined.tsx | 2 +- src/IconMediaLinkOutlinedFilled.tsx | 2 +- src/IconMediaLinkRounded.tsx | 2 +- src/IconMediaLinkRoundedFilled.tsx | 2 +- src/IconMediaLinkSharp.tsx | 2 +- src/IconMediaLinkSharpFilled.tsx | 2 +- src/IconMediaOutputOffOutlined.tsx | 2 +- src/IconMediaOutputOffOutlinedFilled.tsx | 2 +- src/IconMediaOutputOffRounded.tsx | 2 +- src/IconMediaOutputOffRoundedFilled.tsx | 2 +- src/IconMediaOutputOffSharp.tsx | 2 +- src/IconMediaOutputOffSharpFilled.tsx | 2 +- src/IconMediaOutputOutlined.tsx | 2 +- src/IconMediaOutputOutlinedFilled.tsx | 2 +- src/IconMediaOutputRounded.tsx | 2 +- src/IconMediaOutputRoundedFilled.tsx | 2 +- src/IconMediaOutputSharp.tsx | 2 +- src/IconMediaOutputSharpFilled.tsx | 2 +- src/IconMediationOutlined.tsx | 2 +- src/IconMediationOutlinedFilled.tsx | 2 +- src/IconMediationRounded.tsx | 2 +- src/IconMediationRoundedFilled.tsx | 2 +- src/IconMediationSharp.tsx | 2 +- src/IconMediationSharpFilled.tsx | 2 +- src/IconMedicalInformationOutlined.tsx | 2 +- src/IconMedicalInformationOutlinedFilled.tsx | 2 +- src/IconMedicalInformationRounded.tsx | 2 +- src/IconMedicalInformationRoundedFilled.tsx | 2 +- src/IconMedicalInformationSharp.tsx | 2 +- src/IconMedicalInformationSharpFilled.tsx | 2 +- src/IconMedicalMaskOutlined.tsx | 2 +- src/IconMedicalMaskOutlinedFilled.tsx | 2 +- src/IconMedicalMaskRounded.tsx | 2 +- src/IconMedicalMaskRoundedFilled.tsx | 2 +- src/IconMedicalMaskSharp.tsx | 2 +- src/IconMedicalMaskSharpFilled.tsx | 2 +- src/IconMedicalServicesOutlined.tsx | 2 +- src/IconMedicalServicesOutlinedFilled.tsx | 2 +- src/IconMedicalServicesRounded.tsx | 2 +- src/IconMedicalServicesRoundedFilled.tsx | 2 +- src/IconMedicalServicesSharp.tsx | 2 +- src/IconMedicalServicesSharpFilled.tsx | 2 +- src/IconMedicationLiquidOutlined.tsx | 2 +- src/IconMedicationLiquidOutlinedFilled.tsx | 2 +- src/IconMedicationLiquidRounded.tsx | 2 +- src/IconMedicationLiquidRoundedFilled.tsx | 2 +- src/IconMedicationLiquidSharp.tsx | 2 +- src/IconMedicationLiquidSharpFilled.tsx | 2 +- src/IconMedicationOutlined.tsx | 2 +- src/IconMedicationOutlinedFilled.tsx | 2 +- src/IconMedicationRounded.tsx | 2 +- src/IconMedicationRoundedFilled.tsx | 2 +- src/IconMedicationSharp.tsx | 2 +- src/IconMedicationSharpFilled.tsx | 2 +- src/IconMeetingRoomOutlined.tsx | 2 +- src/IconMeetingRoomOutlinedFilled.tsx | 2 +- src/IconMeetingRoomRounded.tsx | 2 +- src/IconMeetingRoomRoundedFilled.tsx | 2 +- src/IconMeetingRoomSharp.tsx | 2 +- src/IconMeetingRoomSharpFilled.tsx | 2 +- src/IconMemoryAltOutlined.tsx | 2 +- src/IconMemoryAltOutlinedFilled.tsx | 2 +- src/IconMemoryAltRounded.tsx | 2 +- src/IconMemoryAltRoundedFilled.tsx | 2 +- src/IconMemoryAltSharp.tsx | 2 +- src/IconMemoryAltSharpFilled.tsx | 2 +- src/IconMemoryOutlined.tsx | 2 +- src/IconMemoryOutlinedFilled.tsx | 2 +- src/IconMemoryRounded.tsx | 2 +- src/IconMemoryRoundedFilled.tsx | 2 +- src/IconMemorySharp.tsx | 2 +- src/IconMemorySharpFilled.tsx | 2 +- src/IconMenstrualHealthOutlined.tsx | 2 +- src/IconMenstrualHealthOutlinedFilled.tsx | 2 +- src/IconMenstrualHealthRounded.tsx | 2 +- src/IconMenstrualHealthRoundedFilled.tsx | 2 +- src/IconMenstrualHealthSharp.tsx | 2 +- src/IconMenstrualHealthSharpFilled.tsx | 2 +- src/IconMenuBookOutlined.tsx | 2 +- src/IconMenuBookOutlinedFilled.tsx | 2 +- src/IconMenuBookRounded.tsx | 2 +- src/IconMenuBookRoundedFilled.tsx | 2 +- src/IconMenuBookSharp.tsx | 2 +- src/IconMenuBookSharpFilled.tsx | 2 +- src/IconMenuOpenOutlined.tsx | 2 +- src/IconMenuOpenOutlinedFilled.tsx | 2 +- src/IconMenuOpenRounded.tsx | 2 +- src/IconMenuOpenRoundedFilled.tsx | 2 +- src/IconMenuOpenSharp.tsx | 2 +- src/IconMenuOpenSharpFilled.tsx | 2 +- src/IconMenuOutlined.tsx | 2 +- src/IconMenuOutlinedFilled.tsx | 2 +- src/IconMenuRounded.tsx | 2 +- src/IconMenuRoundedFilled.tsx | 2 +- src/IconMenuSharp.tsx | 2 +- src/IconMenuSharpFilled.tsx | 2 +- src/IconMergeOutlined.tsx | 2 +- src/IconMergeOutlinedFilled.tsx | 2 +- src/IconMergeRounded.tsx | 2 +- src/IconMergeRoundedFilled.tsx | 2 +- src/IconMergeSharp.tsx | 2 +- src/IconMergeSharpFilled.tsx | 2 +- src/IconMergeTypeOutlined.tsx | 2 +- src/IconMergeTypeOutlinedFilled.tsx | 2 +- src/IconMergeTypeRounded.tsx | 2 +- src/IconMergeTypeRoundedFilled.tsx | 2 +- src/IconMergeTypeSharp.tsx | 2 +- src/IconMergeTypeSharpFilled.tsx | 2 +- src/IconMetabolismOutlined.tsx | 2 +- src/IconMetabolismOutlinedFilled.tsx | 2 +- src/IconMetabolismRounded.tsx | 2 +- src/IconMetabolismRoundedFilled.tsx | 2 +- src/IconMetabolismSharp.tsx | 2 +- src/IconMetabolismSharpFilled.tsx | 2 +- src/IconMetroOutlined.tsx | 2 +- src/IconMetroOutlinedFilled.tsx | 2 +- src/IconMetroRounded.tsx | 2 +- src/IconMetroRoundedFilled.tsx | 2 +- src/IconMetroSharp.tsx | 2 +- src/IconMetroSharpFilled.tsx | 2 +- src/IconMfgNestYaleLockOutlined.tsx | 2 +- src/IconMfgNestYaleLockOutlinedFilled.tsx | 2 +- src/IconMfgNestYaleLockRounded.tsx | 2 +- src/IconMfgNestYaleLockRoundedFilled.tsx | 2 +- src/IconMfgNestYaleLockSharp.tsx | 2 +- src/IconMfgNestYaleLockSharpFilled.tsx | 2 +- src/IconMicDoubleOutlined.tsx | 2 +- src/IconMicDoubleOutlinedFilled.tsx | 2 +- src/IconMicDoubleRounded.tsx | 2 +- src/IconMicDoubleRoundedFilled.tsx | 2 +- src/IconMicDoubleSharp.tsx | 2 +- src/IconMicDoubleSharpFilled.tsx | 2 +- src/IconMicExternalOffOutlined.tsx | 2 +- src/IconMicExternalOffOutlinedFilled.tsx | 2 +- src/IconMicExternalOffRounded.tsx | 2 +- src/IconMicExternalOffRoundedFilled.tsx | 2 +- src/IconMicExternalOffSharp.tsx | 2 +- src/IconMicExternalOffSharpFilled.tsx | 2 +- src/IconMicExternalOnOutlined.tsx | 2 +- src/IconMicExternalOnOutlinedFilled.tsx | 2 +- src/IconMicExternalOnRounded.tsx | 2 +- src/IconMicExternalOnRoundedFilled.tsx | 2 +- src/IconMicExternalOnSharp.tsx | 2 +- src/IconMicExternalOnSharpFilled.tsx | 2 +- src/IconMicOffOutlined.tsx | 2 +- src/IconMicOffOutlinedFilled.tsx | 2 +- src/IconMicOffRounded.tsx | 2 +- src/IconMicOffRoundedFilled.tsx | 2 +- src/IconMicOffSharp.tsx | 2 +- src/IconMicOffSharpFilled.tsx | 2 +- src/IconMicOutlined.tsx | 2 +- src/IconMicOutlinedFilled.tsx | 2 +- src/IconMicRounded.tsx | 2 +- src/IconMicRoundedFilled.tsx | 2 +- src/IconMicSharp.tsx | 2 +- src/IconMicSharpFilled.tsx | 2 +- src/IconMicrobiologyOutlined.tsx | 2 +- src/IconMicrobiologyOutlinedFilled.tsx | 2 +- src/IconMicrobiologyRounded.tsx | 2 +- src/IconMicrobiologyRoundedFilled.tsx | 2 +- src/IconMicrobiologySharp.tsx | 2 +- src/IconMicrobiologySharpFilled.tsx | 2 +- src/IconMicrowaveGenOutlined.tsx | 2 +- src/IconMicrowaveGenOutlinedFilled.tsx | 2 +- src/IconMicrowaveGenRounded.tsx | 2 +- src/IconMicrowaveGenRoundedFilled.tsx | 2 +- src/IconMicrowaveGenSharp.tsx | 2 +- src/IconMicrowaveGenSharpFilled.tsx | 2 +- src/IconMicrowaveOutlined.tsx | 2 +- src/IconMicrowaveOutlinedFilled.tsx | 2 +- src/IconMicrowaveRounded.tsx | 2 +- src/IconMicrowaveRoundedFilled.tsx | 2 +- src/IconMicrowaveSharp.tsx | 2 +- src/IconMicrowaveSharpFilled.tsx | 2 +- src/IconMilitaryTechOutlined.tsx | 2 +- src/IconMilitaryTechOutlinedFilled.tsx | 2 +- src/IconMilitaryTechRounded.tsx | 2 +- src/IconMilitaryTechRoundedFilled.tsx | 2 +- src/IconMilitaryTechSharp.tsx | 2 +- src/IconMilitaryTechSharpFilled.tsx | 2 +- src/IconMimoDisconnectOutlined.tsx | 2 +- src/IconMimoDisconnectOutlinedFilled.tsx | 2 +- src/IconMimoDisconnectRounded.tsx | 2 +- src/IconMimoDisconnectRoundedFilled.tsx | 2 +- src/IconMimoDisconnectSharp.tsx | 2 +- src/IconMimoDisconnectSharpFilled.tsx | 2 +- src/IconMimoOutlined.tsx | 2 +- src/IconMimoOutlinedFilled.tsx | 2 +- src/IconMimoRounded.tsx | 2 +- src/IconMimoRoundedFilled.tsx | 2 +- src/IconMimoSharp.tsx | 2 +- src/IconMimoSharpFilled.tsx | 2 +- src/IconMindfulnessOutlined.tsx | 2 +- src/IconMindfulnessOutlinedFilled.tsx | 2 +- src/IconMindfulnessRounded.tsx | 2 +- src/IconMindfulnessRoundedFilled.tsx | 2 +- src/IconMindfulnessSharp.tsx | 2 +- src/IconMindfulnessSharpFilled.tsx | 2 +- src/IconMinimizeOutlined.tsx | 2 +- src/IconMinimizeOutlinedFilled.tsx | 2 +- src/IconMinimizeRounded.tsx | 2 +- src/IconMinimizeRoundedFilled.tsx | 2 +- src/IconMinimizeSharp.tsx | 2 +- src/IconMinimizeSharpFilled.tsx | 2 +- src/IconMinorCrashOutlined.tsx | 2 +- src/IconMinorCrashOutlinedFilled.tsx | 2 +- src/IconMinorCrashRounded.tsx | 2 +- src/IconMinorCrashRoundedFilled.tsx | 2 +- src/IconMinorCrashSharp.tsx | 2 +- src/IconMinorCrashSharpFilled.tsx | 2 +- src/IconMintmarkOutlined.tsx | 2 +- src/IconMintmarkOutlinedFilled.tsx | 2 +- src/IconMintmarkRounded.tsx | 2 +- src/IconMintmarkRoundedFilled.tsx | 2 +- src/IconMintmarkSharp.tsx | 2 +- src/IconMintmarkSharpFilled.tsx | 2 +- src/IconMissedVideoCallOutlined.tsx | 2 +- src/IconMissedVideoCallOutlinedFilled.tsx | 2 +- src/IconMissedVideoCallRounded.tsx | 2 +- src/IconMissedVideoCallRoundedFilled.tsx | 2 +- src/IconMissedVideoCallSharp.tsx | 2 +- src/IconMissedVideoCallSharpFilled.tsx | 2 +- src/IconMissingControllerOutlined.tsx | 2 +- src/IconMissingControllerOutlinedFilled.tsx | 2 +- src/IconMissingControllerRounded.tsx | 2 +- src/IconMissingControllerRoundedFilled.tsx | 2 +- src/IconMissingControllerSharp.tsx | 2 +- src/IconMissingControllerSharpFilled.tsx | 2 +- src/IconMistOutlined.tsx | 2 +- src/IconMistOutlinedFilled.tsx | 2 +- src/IconMistRounded.tsx | 2 +- src/IconMistRoundedFilled.tsx | 2 +- src/IconMistSharp.tsx | 2 +- src/IconMistSharpFilled.tsx | 2 +- src/IconMitreOutlined.tsx | 2 +- src/IconMitreOutlinedFilled.tsx | 2 +- src/IconMitreRounded.tsx | 2 +- src/IconMitreRoundedFilled.tsx | 2 +- src/IconMitreSharp.tsx | 2 +- src/IconMitreSharpFilled.tsx | 2 +- src/IconMixtureMedOutlined.tsx | 2 +- src/IconMixtureMedOutlinedFilled.tsx | 2 +- src/IconMixtureMedRounded.tsx | 2 +- src/IconMixtureMedRoundedFilled.tsx | 2 +- src/IconMixtureMedSharp.tsx | 2 +- src/IconMixtureMedSharpFilled.tsx | 2 +- src/IconMmsOutlined.tsx | 2 +- src/IconMmsOutlinedFilled.tsx | 2 +- src/IconMmsRounded.tsx | 2 +- src/IconMmsRoundedFilled.tsx | 2 +- src/IconMmsSharp.tsx | 2 +- src/IconMmsSharpFilled.tsx | 2 +- src/IconMobileFriendlyOutlined.tsx | 2 +- src/IconMobileFriendlyOutlinedFilled.tsx | 2 +- src/IconMobileFriendlyRounded.tsx | 2 +- src/IconMobileFriendlyRoundedFilled.tsx | 2 +- src/IconMobileFriendlySharp.tsx | 2 +- src/IconMobileFriendlySharpFilled.tsx | 2 +- src/IconMobileOffOutlined.tsx | 2 +- src/IconMobileOffOutlinedFilled.tsx | 2 +- src/IconMobileOffRounded.tsx | 2 +- src/IconMobileOffRoundedFilled.tsx | 2 +- src/IconMobileOffSharp.tsx | 2 +- src/IconMobileOffSharpFilled.tsx | 2 +- src/IconMobileScreenShareOutlined.tsx | 2 +- src/IconMobileScreenShareOutlinedFilled.tsx | 2 +- src/IconMobileScreenShareRounded.tsx | 2 +- src/IconMobileScreenShareRoundedFilled.tsx | 2 +- src/IconMobileScreenShareSharp.tsx | 2 +- src/IconMobileScreenShareSharpFilled.tsx | 2 +- src/IconMobiledataOffOutlined.tsx | 2 +- src/IconMobiledataOffOutlinedFilled.tsx | 2 +- src/IconMobiledataOffRounded.tsx | 2 +- src/IconMobiledataOffRoundedFilled.tsx | 2 +- src/IconMobiledataOffSharp.tsx | 2 +- src/IconMobiledataOffSharpFilled.tsx | 2 +- src/IconModeCommentOutlined.tsx | 2 +- src/IconModeCommentOutlinedFilled.tsx | 2 +- src/IconModeCommentRounded.tsx | 2 +- src/IconModeCommentRoundedFilled.tsx | 2 +- src/IconModeCommentSharp.tsx | 2 +- src/IconModeCommentSharpFilled.tsx | 2 +- src/IconModeCoolOffOutlined.tsx | 2 +- src/IconModeCoolOffOutlinedFilled.tsx | 2 +- src/IconModeCoolOffRounded.tsx | 2 +- src/IconModeCoolOffRoundedFilled.tsx | 2 +- src/IconModeCoolOffSharp.tsx | 2 +- src/IconModeCoolOffSharpFilled.tsx | 2 +- src/IconModeCoolOutlined.tsx | 2 +- src/IconModeCoolOutlinedFilled.tsx | 2 +- src/IconModeCoolRounded.tsx | 2 +- src/IconModeCoolRoundedFilled.tsx | 2 +- src/IconModeCoolSharp.tsx | 2 +- src/IconModeCoolSharpFilled.tsx | 2 +- src/IconModeDualOutlined.tsx | 2 +- src/IconModeDualOutlinedFilled.tsx | 2 +- src/IconModeDualRounded.tsx | 2 +- src/IconModeDualRoundedFilled.tsx | 2 +- src/IconModeDualSharp.tsx | 2 +- src/IconModeDualSharpFilled.tsx | 2 +- src/IconModeFanOffOutlined.tsx | 2 +- src/IconModeFanOffOutlinedFilled.tsx | 2 +- src/IconModeFanOffRounded.tsx | 2 +- src/IconModeFanOffRoundedFilled.tsx | 2 +- src/IconModeFanOffSharp.tsx | 2 +- src/IconModeFanOffSharpFilled.tsx | 2 +- src/IconModeFanOutlined.tsx | 2 +- src/IconModeFanOutlinedFilled.tsx | 2 +- src/IconModeFanRounded.tsx | 2 +- src/IconModeFanRoundedFilled.tsx | 2 +- src/IconModeFanSharp.tsx | 2 +- src/IconModeFanSharpFilled.tsx | 2 +- src/IconModeHeatCoolOutlined.tsx | 2 +- src/IconModeHeatCoolOutlinedFilled.tsx | 2 +- src/IconModeHeatCoolRounded.tsx | 2 +- src/IconModeHeatCoolRoundedFilled.tsx | 2 +- src/IconModeHeatCoolSharp.tsx | 2 +- src/IconModeHeatCoolSharpFilled.tsx | 2 +- src/IconModeHeatOffOutlined.tsx | 2 +- src/IconModeHeatOffOutlinedFilled.tsx | 2 +- src/IconModeHeatOffRounded.tsx | 2 +- src/IconModeHeatOffRoundedFilled.tsx | 2 +- src/IconModeHeatOffSharp.tsx | 2 +- src/IconModeHeatOffSharpFilled.tsx | 2 +- src/IconModeHeatOutlined.tsx | 2 +- src/IconModeHeatOutlinedFilled.tsx | 2 +- src/IconModeHeatRounded.tsx | 2 +- src/IconModeHeatRoundedFilled.tsx | 2 +- src/IconModeHeatSharp.tsx | 2 +- src/IconModeHeatSharpFilled.tsx | 2 +- src/IconModeNightOutlined.tsx | 2 +- src/IconModeNightOutlinedFilled.tsx | 2 +- src/IconModeNightRounded.tsx | 2 +- src/IconModeNightRoundedFilled.tsx | 2 +- src/IconModeNightSharp.tsx | 2 +- src/IconModeNightSharpFilled.tsx | 2 +- src/IconModeOfTravelOutlined.tsx | 2 +- src/IconModeOfTravelOutlinedFilled.tsx | 2 +- src/IconModeOfTravelRounded.tsx | 2 +- src/IconModeOfTravelRoundedFilled.tsx | 2 +- src/IconModeOfTravelSharp.tsx | 2 +- src/IconModeOfTravelSharpFilled.tsx | 2 +- src/IconModeOffOnOutlined.tsx | 2 +- src/IconModeOffOnOutlinedFilled.tsx | 2 +- src/IconModeOffOnRounded.tsx | 2 +- src/IconModeOffOnRoundedFilled.tsx | 2 +- src/IconModeOffOnSharp.tsx | 2 +- src/IconModeOffOnSharpFilled.tsx | 2 +- src/IconModeStandbyOutlined.tsx | 2 +- src/IconModeStandbyOutlinedFilled.tsx | 2 +- src/IconModeStandbyRounded.tsx | 2 +- src/IconModeStandbyRoundedFilled.tsx | 2 +- src/IconModeStandbySharp.tsx | 2 +- src/IconModeStandbySharpFilled.tsx | 2 +- src/IconModelTrainingOutlined.tsx | 2 +- src/IconModelTrainingOutlinedFilled.tsx | 2 +- src/IconModelTrainingRounded.tsx | 2 +- src/IconModelTrainingRoundedFilled.tsx | 2 +- src/IconModelTrainingSharp.tsx | 2 +- src/IconModelTrainingSharpFilled.tsx | 2 +- src/IconMoneyOffOutlined.tsx | 2 +- src/IconMoneyOffOutlinedFilled.tsx | 2 +- src/IconMoneyOffRounded.tsx | 2 +- src/IconMoneyOffRoundedFilled.tsx | 2 +- src/IconMoneyOffSharp.tsx | 2 +- src/IconMoneyOffSharpFilled.tsx | 2 +- src/IconMoneyOutlined.tsx | 2 +- src/IconMoneyOutlinedFilled.tsx | 2 +- src/IconMoneyRounded.tsx | 2 +- src/IconMoneyRoundedFilled.tsx | 2 +- src/IconMoneySharp.tsx | 2 +- src/IconMoneySharpFilled.tsx | 2 +- src/IconMonitorHeartOutlined.tsx | 2 +- src/IconMonitorHeartOutlinedFilled.tsx | 2 +- src/IconMonitorHeartRounded.tsx | 2 +- src/IconMonitorHeartRoundedFilled.tsx | 2 +- src/IconMonitorHeartSharp.tsx | 2 +- src/IconMonitorHeartSharpFilled.tsx | 2 +- src/IconMonitorOutlined.tsx | 2 +- src/IconMonitorOutlinedFilled.tsx | 2 +- src/IconMonitorRounded.tsx | 2 +- src/IconMonitorRoundedFilled.tsx | 2 +- src/IconMonitorSharp.tsx | 2 +- src/IconMonitorSharpFilled.tsx | 2 +- src/IconMonitorWeightGainOutlined.tsx | 2 +- src/IconMonitorWeightGainOutlinedFilled.tsx | 2 +- src/IconMonitorWeightGainRounded.tsx | 2 +- src/IconMonitorWeightGainRoundedFilled.tsx | 2 +- src/IconMonitorWeightGainSharp.tsx | 2 +- src/IconMonitorWeightGainSharpFilled.tsx | 2 +- src/IconMonitorWeightLossOutlined.tsx | 2 +- src/IconMonitorWeightLossOutlinedFilled.tsx | 2 +- src/IconMonitorWeightLossRounded.tsx | 2 +- src/IconMonitorWeightLossRoundedFilled.tsx | 2 +- src/IconMonitorWeightLossSharp.tsx | 2 +- src/IconMonitorWeightLossSharpFilled.tsx | 2 +- src/IconMonitorWeightOutlined.tsx | 2 +- src/IconMonitorWeightOutlinedFilled.tsx | 2 +- src/IconMonitorWeightRounded.tsx | 2 +- src/IconMonitorWeightRoundedFilled.tsx | 2 +- src/IconMonitorWeightSharp.tsx | 2 +- src/IconMonitorWeightSharpFilled.tsx | 2 +- src/IconMonitoringOutlined.tsx | 2 +- src/IconMonitoringOutlinedFilled.tsx | 2 +- src/IconMonitoringRounded.tsx | 2 +- src/IconMonitoringRoundedFilled.tsx | 2 +- src/IconMonitoringSharp.tsx | 2 +- src/IconMonitoringSharpFilled.tsx | 2 +- src/IconMonochromePhotosOutlined.tsx | 2 +- src/IconMonochromePhotosOutlinedFilled.tsx | 2 +- src/IconMonochromePhotosRounded.tsx | 2 +- src/IconMonochromePhotosRoundedFilled.tsx | 2 +- src/IconMonochromePhotosSharp.tsx | 2 +- src/IconMonochromePhotosSharpFilled.tsx | 2 +- src/IconMonorailOutlined.tsx | 2 +- src/IconMonorailOutlinedFilled.tsx | 2 +- src/IconMonorailRounded.tsx | 2 +- src/IconMonorailRoundedFilled.tsx | 2 +- src/IconMonorailSharp.tsx | 2 +- src/IconMonorailSharpFilled.tsx | 2 +- src/IconMoodBadOutlined.tsx | 2 +- src/IconMoodBadOutlinedFilled.tsx | 2 +- src/IconMoodBadRounded.tsx | 2 +- src/IconMoodBadRoundedFilled.tsx | 2 +- src/IconMoodBadSharp.tsx | 2 +- src/IconMoodBadSharpFilled.tsx | 2 +- src/IconMoodOutlined.tsx | 2 +- src/IconMoodOutlinedFilled.tsx | 2 +- src/IconMoodRounded.tsx | 2 +- src/IconMoodRoundedFilled.tsx | 2 +- src/IconMoodSharp.tsx | 2 +- src/IconMoodSharpFilled.tsx | 2 +- src/IconMopOutlined.tsx | 2 +- src/IconMopOutlinedFilled.tsx | 2 +- src/IconMopRounded.tsx | 2 +- src/IconMopRoundedFilled.tsx | 2 +- src/IconMopSharp.tsx | 2 +- src/IconMopSharpFilled.tsx | 2 +- src/IconMoreDownOutlined.tsx | 2 +- src/IconMoreDownOutlinedFilled.tsx | 2 +- src/IconMoreDownRounded.tsx | 2 +- src/IconMoreDownRoundedFilled.tsx | 2 +- src/IconMoreDownSharp.tsx | 2 +- src/IconMoreDownSharpFilled.tsx | 2 +- src/IconMoreHorizOutlined.tsx | 2 +- src/IconMoreHorizOutlinedFilled.tsx | 2 +- src/IconMoreHorizRounded.tsx | 2 +- src/IconMoreHorizRoundedFilled.tsx | 2 +- src/IconMoreHorizSharp.tsx | 2 +- src/IconMoreHorizSharpFilled.tsx | 2 +- src/IconMoreOutlined.tsx | 2 +- src/IconMoreOutlinedFilled.tsx | 2 +- src/IconMoreRounded.tsx | 2 +- src/IconMoreRoundedFilled.tsx | 2 +- src/IconMoreSharp.tsx | 2 +- src/IconMoreSharpFilled.tsx | 2 +- src/IconMoreTimeOutlined.tsx | 2 +- src/IconMoreTimeOutlinedFilled.tsx | 2 +- src/IconMoreTimeRounded.tsx | 2 +- src/IconMoreTimeRoundedFilled.tsx | 2 +- src/IconMoreTimeSharp.tsx | 2 +- src/IconMoreTimeSharpFilled.tsx | 2 +- src/IconMoreUpOutlined.tsx | 2 +- src/IconMoreUpOutlinedFilled.tsx | 2 +- src/IconMoreUpRounded.tsx | 2 +- src/IconMoreUpRoundedFilled.tsx | 2 +- src/IconMoreUpSharp.tsx | 2 +- src/IconMoreUpSharpFilled.tsx | 2 +- src/IconMoreVertOutlined.tsx | 2 +- src/IconMoreVertOutlinedFilled.tsx | 2 +- src/IconMoreVertRounded.tsx | 2 +- src/IconMoreVertRoundedFilled.tsx | 2 +- src/IconMoreVertSharp.tsx | 2 +- src/IconMoreVertSharpFilled.tsx | 2 +- src/IconMosqueOutlined.tsx | 2 +- src/IconMosqueOutlinedFilled.tsx | 2 +- src/IconMosqueRounded.tsx | 2 +- src/IconMosqueRoundedFilled.tsx | 2 +- src/IconMosqueSharp.tsx | 2 +- src/IconMosqueSharpFilled.tsx | 2 +- src/IconMotionBlurOutlined.tsx | 2 +- src/IconMotionBlurOutlinedFilled.tsx | 2 +- src/IconMotionBlurRounded.tsx | 2 +- src/IconMotionBlurRoundedFilled.tsx | 2 +- src/IconMotionBlurSharp.tsx | 2 +- src/IconMotionBlurSharpFilled.tsx | 2 +- src/IconMotionModeOutlined.tsx | 2 +- src/IconMotionModeOutlinedFilled.tsx | 2 +- src/IconMotionModeRounded.tsx | 2 +- src/IconMotionModeRoundedFilled.tsx | 2 +- src/IconMotionModeSharp.tsx | 2 +- src/IconMotionModeSharpFilled.tsx | 2 +- src/IconMotionPhotosAutoOutlined.tsx | 2 +- src/IconMotionPhotosAutoOutlinedFilled.tsx | 2 +- src/IconMotionPhotosAutoRounded.tsx | 2 +- src/IconMotionPhotosAutoRoundedFilled.tsx | 2 +- src/IconMotionPhotosAutoSharp.tsx | 2 +- src/IconMotionPhotosAutoSharpFilled.tsx | 2 +- src/IconMotionPhotosOffOutlined.tsx | 2 +- src/IconMotionPhotosOffOutlinedFilled.tsx | 2 +- src/IconMotionPhotosOffRounded.tsx | 2 +- src/IconMotionPhotosOffRoundedFilled.tsx | 2 +- src/IconMotionPhotosOffSharp.tsx | 2 +- src/IconMotionPhotosOffSharpFilled.tsx | 2 +- src/IconMotionPhotosOnOutlined.tsx | 2 +- src/IconMotionPhotosOnOutlinedFilled.tsx | 2 +- src/IconMotionPhotosOnRounded.tsx | 2 +- src/IconMotionPhotosOnRoundedFilled.tsx | 2 +- src/IconMotionPhotosOnSharp.tsx | 2 +- src/IconMotionPhotosOnSharpFilled.tsx | 2 +- src/IconMotionPhotosPausedOutlined.tsx | 2 +- src/IconMotionPhotosPausedOutlinedFilled.tsx | 2 +- src/IconMotionPhotosPausedRounded.tsx | 2 +- src/IconMotionPhotosPausedRoundedFilled.tsx | 2 +- src/IconMotionPhotosPausedSharp.tsx | 2 +- src/IconMotionPhotosPausedSharpFilled.tsx | 2 +- src/IconMotionPlayOutlined.tsx | 2 +- src/IconMotionPlayOutlinedFilled.tsx | 2 +- src/IconMotionPlayRounded.tsx | 2 +- src/IconMotionPlayRoundedFilled.tsx | 2 +- src/IconMotionPlaySharp.tsx | 2 +- src/IconMotionPlaySharpFilled.tsx | 2 +- src/IconMotionSensorActiveOutlined.tsx | 2 +- src/IconMotionSensorActiveOutlinedFilled.tsx | 2 +- src/IconMotionSensorActiveRounded.tsx | 2 +- src/IconMotionSensorActiveRoundedFilled.tsx | 2 +- src/IconMotionSensorActiveSharp.tsx | 2 +- src/IconMotionSensorActiveSharpFilled.tsx | 2 +- src/IconMotionSensorAlertOutlined.tsx | 2 +- src/IconMotionSensorAlertOutlinedFilled.tsx | 2 +- src/IconMotionSensorAlertRounded.tsx | 2 +- src/IconMotionSensorAlertRoundedFilled.tsx | 2 +- src/IconMotionSensorAlertSharp.tsx | 2 +- src/IconMotionSensorAlertSharpFilled.tsx | 2 +- src/IconMotionSensorIdleOutlined.tsx | 2 +- src/IconMotionSensorIdleOutlinedFilled.tsx | 2 +- src/IconMotionSensorIdleRounded.tsx | 2 +- src/IconMotionSensorIdleRoundedFilled.tsx | 2 +- src/IconMotionSensorIdleSharp.tsx | 2 +- src/IconMotionSensorIdleSharpFilled.tsx | 2 +- src/IconMotionSensorUrgentOutlined.tsx | 2 +- src/IconMotionSensorUrgentOutlinedFilled.tsx | 2 +- src/IconMotionSensorUrgentRounded.tsx | 2 +- src/IconMotionSensorUrgentRoundedFilled.tsx | 2 +- src/IconMotionSensorUrgentSharp.tsx | 2 +- src/IconMotionSensorUrgentSharpFilled.tsx | 2 +- src/IconMotorcycleOutlined.tsx | 2 +- src/IconMotorcycleOutlinedFilled.tsx | 2 +- src/IconMotorcycleRounded.tsx | 2 +- src/IconMotorcycleRoundedFilled.tsx | 2 +- src/IconMotorcycleSharp.tsx | 2 +- src/IconMotorcycleSharpFilled.tsx | 2 +- src/IconMountainFlagOutlined.tsx | 2 +- src/IconMountainFlagOutlinedFilled.tsx | 2 +- src/IconMountainFlagRounded.tsx | 2 +- src/IconMountainFlagRoundedFilled.tsx | 2 +- src/IconMountainFlagSharp.tsx | 2 +- src/IconMountainFlagSharpFilled.tsx | 2 +- src/IconMouseLockOffOutlined.tsx | 2 +- src/IconMouseLockOffOutlinedFilled.tsx | 2 +- src/IconMouseLockOffRounded.tsx | 2 +- src/IconMouseLockOffRoundedFilled.tsx | 2 +- src/IconMouseLockOffSharp.tsx | 2 +- src/IconMouseLockOffSharpFilled.tsx | 2 +- src/IconMouseLockOutlined.tsx | 2 +- src/IconMouseLockOutlinedFilled.tsx | 2 +- src/IconMouseLockRounded.tsx | 2 +- src/IconMouseLockRoundedFilled.tsx | 2 +- src/IconMouseLockSharp.tsx | 2 +- src/IconMouseLockSharpFilled.tsx | 2 +- src/IconMouseOutlined.tsx | 2 +- src/IconMouseOutlinedFilled.tsx | 2 +- src/IconMouseRounded.tsx | 2 +- src/IconMouseRoundedFilled.tsx | 2 +- src/IconMouseSharp.tsx | 2 +- src/IconMouseSharpFilled.tsx | 2 +- src/IconMoveDownOutlined.tsx | 2 +- src/IconMoveDownOutlinedFilled.tsx | 2 +- src/IconMoveDownRounded.tsx | 2 +- src/IconMoveDownRoundedFilled.tsx | 2 +- src/IconMoveDownSharp.tsx | 2 +- src/IconMoveDownSharpFilled.tsx | 2 +- src/IconMoveGroupOutlined.tsx | 2 +- src/IconMoveGroupOutlinedFilled.tsx | 2 +- src/IconMoveGroupRounded.tsx | 2 +- src/IconMoveGroupRoundedFilled.tsx | 2 +- src/IconMoveGroupSharp.tsx | 2 +- src/IconMoveGroupSharpFilled.tsx | 2 +- src/IconMoveItemOutlined.tsx | 2 +- src/IconMoveItemOutlinedFilled.tsx | 2 +- src/IconMoveItemRounded.tsx | 2 +- src/IconMoveItemRoundedFilled.tsx | 2 +- src/IconMoveItemSharp.tsx | 2 +- src/IconMoveItemSharpFilled.tsx | 2 +- src/IconMoveLocationOutlined.tsx | 2 +- src/IconMoveLocationOutlinedFilled.tsx | 2 +- src/IconMoveLocationRounded.tsx | 2 +- src/IconMoveLocationRoundedFilled.tsx | 2 +- src/IconMoveLocationSharp.tsx | 2 +- src/IconMoveLocationSharpFilled.tsx | 2 +- src/IconMoveOutlined.tsx | 2 +- src/IconMoveOutlinedFilled.tsx | 2 +- src/IconMoveRounded.tsx | 2 +- src/IconMoveRoundedFilled.tsx | 2 +- src/IconMoveSelectionDownOutlined.tsx | 2 +- src/IconMoveSelectionDownOutlinedFilled.tsx | 2 +- src/IconMoveSelectionDownRounded.tsx | 2 +- src/IconMoveSelectionDownRoundedFilled.tsx | 2 +- src/IconMoveSelectionDownSharp.tsx | 2 +- src/IconMoveSelectionDownSharpFilled.tsx | 2 +- src/IconMoveSelectionLeftOutlined.tsx | 2 +- src/IconMoveSelectionLeftOutlinedFilled.tsx | 2 +- src/IconMoveSelectionLeftRounded.tsx | 2 +- src/IconMoveSelectionLeftRoundedFilled.tsx | 2 +- src/IconMoveSelectionLeftSharp.tsx | 2 +- src/IconMoveSelectionLeftSharpFilled.tsx | 2 +- src/IconMoveSelectionRightOutlined.tsx | 2 +- src/IconMoveSelectionRightOutlinedFilled.tsx | 2 +- src/IconMoveSelectionRightRounded.tsx | 2 +- src/IconMoveSelectionRightRoundedFilled.tsx | 2 +- src/IconMoveSelectionRightSharp.tsx | 2 +- src/IconMoveSelectionRightSharpFilled.tsx | 2 +- src/IconMoveSelectionUpOutlined.tsx | 2 +- src/IconMoveSelectionUpOutlinedFilled.tsx | 2 +- src/IconMoveSelectionUpRounded.tsx | 2 +- src/IconMoveSelectionUpRoundedFilled.tsx | 2 +- src/IconMoveSelectionUpSharp.tsx | 2 +- src/IconMoveSelectionUpSharpFilled.tsx | 2 +- src/IconMoveSharp.tsx | 2 +- src/IconMoveSharpFilled.tsx | 2 +- src/IconMoveToInboxOutlined.tsx | 2 +- src/IconMoveToInboxOutlinedFilled.tsx | 2 +- src/IconMoveToInboxRounded.tsx | 2 +- src/IconMoveToInboxRoundedFilled.tsx | 2 +- src/IconMoveToInboxSharp.tsx | 2 +- src/IconMoveToInboxSharpFilled.tsx | 2 +- src/IconMoveUpOutlined.tsx | 2 +- src/IconMoveUpOutlinedFilled.tsx | 2 +- src/IconMoveUpRounded.tsx | 2 +- src/IconMoveUpRoundedFilled.tsx | 2 +- src/IconMoveUpSharp.tsx | 2 +- src/IconMoveUpSharpFilled.tsx | 2 +- src/IconMovedLocationOutlined.tsx | 2 +- src/IconMovedLocationOutlinedFilled.tsx | 2 +- src/IconMovedLocationRounded.tsx | 2 +- src/IconMovedLocationRoundedFilled.tsx | 2 +- src/IconMovedLocationSharp.tsx | 2 +- src/IconMovedLocationSharpFilled.tsx | 2 +- src/IconMovieEditOutlined.tsx | 2 +- src/IconMovieEditOutlinedFilled.tsx | 2 +- src/IconMovieEditRounded.tsx | 2 +- src/IconMovieEditRoundedFilled.tsx | 2 +- src/IconMovieEditSharp.tsx | 2 +- src/IconMovieEditSharpFilled.tsx | 2 +- src/IconMovieInfoOutlined.tsx | 2 +- src/IconMovieInfoOutlinedFilled.tsx | 2 +- src/IconMovieInfoRounded.tsx | 2 +- src/IconMovieInfoRoundedFilled.tsx | 2 +- src/IconMovieInfoSharp.tsx | 2 +- src/IconMovieInfoSharpFilled.tsx | 2 +- src/IconMovieOffOutlined.tsx | 2 +- src/IconMovieOffOutlinedFilled.tsx | 2 +- src/IconMovieOffRounded.tsx | 2 +- src/IconMovieOffRoundedFilled.tsx | 2 +- src/IconMovieOffSharp.tsx | 2 +- src/IconMovieOffSharpFilled.tsx | 2 +- src/IconMovieOutlined.tsx | 2 +- src/IconMovieOutlinedFilled.tsx | 2 +- src/IconMovieRounded.tsx | 2 +- src/IconMovieRoundedFilled.tsx | 2 +- src/IconMovieSharp.tsx | 2 +- src/IconMovieSharpFilled.tsx | 2 +- src/IconMovingBedsOutlined.tsx | 2 +- src/IconMovingBedsOutlinedFilled.tsx | 2 +- src/IconMovingBedsRounded.tsx | 2 +- src/IconMovingBedsRoundedFilled.tsx | 2 +- src/IconMovingBedsSharp.tsx | 2 +- src/IconMovingBedsSharpFilled.tsx | 2 +- src/IconMovingMinistryOutlined.tsx | 2 +- src/IconMovingMinistryOutlinedFilled.tsx | 2 +- src/IconMovingMinistryRounded.tsx | 2 +- src/IconMovingMinistryRoundedFilled.tsx | 2 +- src/IconMovingMinistrySharp.tsx | 2 +- src/IconMovingMinistrySharpFilled.tsx | 2 +- src/IconMovingOutlined.tsx | 2 +- src/IconMovingOutlinedFilled.tsx | 2 +- src/IconMovingRounded.tsx | 2 +- src/IconMovingRoundedFilled.tsx | 2 +- src/IconMovingSharp.tsx | 2 +- src/IconMovingSharpFilled.tsx | 2 +- src/IconMpOutlined.tsx | 2 +- src/IconMpOutlinedFilled.tsx | 2 +- src/IconMpRounded.tsx | 2 +- src/IconMpRoundedFilled.tsx | 2 +- src/IconMpSharp.tsx | 2 +- src/IconMpSharpFilled.tsx | 2 +- src/IconMulticookerOutlined.tsx | 2 +- src/IconMulticookerOutlinedFilled.tsx | 2 +- src/IconMulticookerRounded.tsx | 2 +- src/IconMulticookerRoundedFilled.tsx | 2 +- src/IconMulticookerSharp.tsx | 2 +- src/IconMulticookerSharpFilled.tsx | 2 +- src/IconMultilineChartOutlined.tsx | 2 +- src/IconMultilineChartOutlinedFilled.tsx | 2 +- src/IconMultilineChartRounded.tsx | 2 +- src/IconMultilineChartRoundedFilled.tsx | 2 +- src/IconMultilineChartSharp.tsx | 2 +- src/IconMultilineChartSharpFilled.tsx | 2 +- src/IconMultimodalHandEyeOutlined.tsx | 2 +- src/IconMultimodalHandEyeOutlinedFilled.tsx | 2 +- src/IconMultimodalHandEyeRounded.tsx | 2 +- src/IconMultimodalHandEyeRoundedFilled.tsx | 2 +- src/IconMultimodalHandEyeSharp.tsx | 2 +- src/IconMultimodalHandEyeSharpFilled.tsx | 2 +- src/IconMultipleStopOutlined.tsx | 2 +- src/IconMultipleStopOutlinedFilled.tsx | 2 +- src/IconMultipleStopRounded.tsx | 2 +- src/IconMultipleStopRoundedFilled.tsx | 2 +- src/IconMultipleStopSharp.tsx | 2 +- src/IconMultipleStopSharpFilled.tsx | 2 +- src/IconMuseumOutlined.tsx | 2 +- src/IconMuseumOutlinedFilled.tsx | 2 +- src/IconMuseumRounded.tsx | 2 +- src/IconMuseumRoundedFilled.tsx | 2 +- src/IconMuseumSharp.tsx | 2 +- src/IconMuseumSharpFilled.tsx | 2 +- src/IconMusicCastOutlined.tsx | 2 +- src/IconMusicCastOutlinedFilled.tsx | 2 +- src/IconMusicCastRounded.tsx | 2 +- src/IconMusicCastRoundedFilled.tsx | 2 +- src/IconMusicCastSharp.tsx | 2 +- src/IconMusicCastSharpFilled.tsx | 2 +- src/IconMusicNoteOutlined.tsx | 2 +- src/IconMusicNoteOutlinedFilled.tsx | 2 +- src/IconMusicNoteRounded.tsx | 2 +- src/IconMusicNoteRoundedFilled.tsx | 2 +- src/IconMusicNoteSharp.tsx | 2 +- src/IconMusicNoteSharpFilled.tsx | 2 +- src/IconMusicOffOutlined.tsx | 2 +- src/IconMusicOffOutlinedFilled.tsx | 2 +- src/IconMusicOffRounded.tsx | 2 +- src/IconMusicOffRoundedFilled.tsx | 2 +- src/IconMusicOffSharp.tsx | 2 +- src/IconMusicOffSharpFilled.tsx | 2 +- src/IconMusicVideoOutlined.tsx | 2 +- src/IconMusicVideoOutlinedFilled.tsx | 2 +- src/IconMusicVideoRounded.tsx | 2 +- src/IconMusicVideoRoundedFilled.tsx | 2 +- src/IconMusicVideoSharp.tsx | 2 +- src/IconMusicVideoSharpFilled.tsx | 2 +- src/IconMyLocationOutlined.tsx | 2 +- src/IconMyLocationOutlinedFilled.tsx | 2 +- src/IconMyLocationRounded.tsx | 2 +- src/IconMyLocationRoundedFilled.tsx | 2 +- src/IconMyLocationSharp.tsx | 2 +- src/IconMyLocationSharpFilled.tsx | 2 +- src/IconMysteryOutlined.tsx | 2 +- src/IconMysteryOutlinedFilled.tsx | 2 +- src/IconMysteryRounded.tsx | 2 +- src/IconMysteryRoundedFilled.tsx | 2 +- src/IconMysterySharp.tsx | 2 +- src/IconMysterySharpFilled.tsx | 2 +- src/IconNatOutlined.tsx | 2 +- src/IconNatOutlinedFilled.tsx | 2 +- src/IconNatRounded.tsx | 2 +- src/IconNatRoundedFilled.tsx | 2 +- src/IconNatSharp.tsx | 2 +- src/IconNatSharpFilled.tsx | 2 +- src/IconNatureOutlined.tsx | 2 +- src/IconNatureOutlinedFilled.tsx | 2 +- src/IconNaturePeopleOutlined.tsx | 2 +- src/IconNaturePeopleOutlinedFilled.tsx | 2 +- src/IconNaturePeopleRounded.tsx | 2 +- src/IconNaturePeopleRoundedFilled.tsx | 2 +- src/IconNaturePeopleSharp.tsx | 2 +- src/IconNaturePeopleSharpFilled.tsx | 2 +- src/IconNatureRounded.tsx | 2 +- src/IconNatureRoundedFilled.tsx | 2 +- src/IconNatureSharp.tsx | 2 +- src/IconNatureSharpFilled.tsx | 2 +- src/IconNavigationOutlined.tsx | 2 +- src/IconNavigationOutlinedFilled.tsx | 2 +- src/IconNavigationRounded.tsx | 2 +- src/IconNavigationRoundedFilled.tsx | 2 +- src/IconNavigationSharp.tsx | 2 +- src/IconNavigationSharpFilled.tsx | 2 +- src/IconNearMeDisabledOutlined.tsx | 2 +- src/IconNearMeDisabledOutlinedFilled.tsx | 2 +- src/IconNearMeDisabledRounded.tsx | 2 +- src/IconNearMeDisabledRoundedFilled.tsx | 2 +- src/IconNearMeDisabledSharp.tsx | 2 +- src/IconNearMeDisabledSharpFilled.tsx | 2 +- src/IconNearMeOutlined.tsx | 2 +- src/IconNearMeOutlinedFilled.tsx | 2 +- src/IconNearMeRounded.tsx | 2 +- src/IconNearMeRoundedFilled.tsx | 2 +- src/IconNearMeSharp.tsx | 2 +- src/IconNearMeSharpFilled.tsx | 2 +- src/IconNearbyErrorOutlined.tsx | 2 +- src/IconNearbyErrorOutlinedFilled.tsx | 2 +- src/IconNearbyErrorRounded.tsx | 2 +- src/IconNearbyErrorRoundedFilled.tsx | 2 +- src/IconNearbyErrorSharp.tsx | 2 +- src/IconNearbyErrorSharpFilled.tsx | 2 +- src/IconNearbyOffOutlined.tsx | 2 +- src/IconNearbyOffOutlinedFilled.tsx | 2 +- src/IconNearbyOffRounded.tsx | 2 +- src/IconNearbyOffRoundedFilled.tsx | 2 +- src/IconNearbyOffSharp.tsx | 2 +- src/IconNearbyOffSharpFilled.tsx | 2 +- src/IconNearbyOutlined.tsx | 2 +- src/IconNearbyOutlinedFilled.tsx | 2 +- src/IconNearbyRounded.tsx | 2 +- src/IconNearbyRoundedFilled.tsx | 2 +- src/IconNearbySharp.tsx | 2 +- src/IconNearbySharpFilled.tsx | 2 +- src/IconNephrologyOutlined.tsx | 2 +- src/IconNephrologyOutlinedFilled.tsx | 2 +- src/IconNephrologyRounded.tsx | 2 +- src/IconNephrologyRoundedFilled.tsx | 2 +- src/IconNephrologySharp.tsx | 2 +- src/IconNephrologySharpFilled.tsx | 2 +- src/IconNestAudioOutlined.tsx | 2 +- src/IconNestAudioOutlinedFilled.tsx | 2 +- src/IconNestAudioRounded.tsx | 2 +- src/IconNestAudioRoundedFilled.tsx | 2 +- src/IconNestAudioSharp.tsx | 2 +- src/IconNestAudioSharpFilled.tsx | 2 +- src/IconNestCamFloodlightOutlined.tsx | 2 +- src/IconNestCamFloodlightOutlinedFilled.tsx | 2 +- src/IconNestCamFloodlightRounded.tsx | 2 +- src/IconNestCamFloodlightRoundedFilled.tsx | 2 +- src/IconNestCamFloodlightSharp.tsx | 2 +- src/IconNestCamFloodlightSharpFilled.tsx | 2 +- src/IconNestCamIndoorOutlined.tsx | 2 +- src/IconNestCamIndoorOutlinedFilled.tsx | 2 +- src/IconNestCamIndoorRounded.tsx | 2 +- src/IconNestCamIndoorRoundedFilled.tsx | 2 +- src/IconNestCamIndoorSharp.tsx | 2 +- src/IconNestCamIndoorSharpFilled.tsx | 2 +- src/IconNestCamIqOutdoorOutlined.tsx | 2 +- src/IconNestCamIqOutdoorOutlinedFilled.tsx | 2 +- src/IconNestCamIqOutdoorRounded.tsx | 2 +- src/IconNestCamIqOutdoorRoundedFilled.tsx | 2 +- src/IconNestCamIqOutdoorSharp.tsx | 2 +- src/IconNestCamIqOutdoorSharpFilled.tsx | 2 +- src/IconNestCamIqOutlined.tsx | 2 +- src/IconNestCamIqOutlinedFilled.tsx | 2 +- src/IconNestCamIqRounded.tsx | 2 +- src/IconNestCamIqRoundedFilled.tsx | 2 +- src/IconNestCamIqSharp.tsx | 2 +- src/IconNestCamIqSharpFilled.tsx | 2 +- src/IconNestCamMagnetMountOutlined.tsx | 2 +- src/IconNestCamMagnetMountOutlinedFilled.tsx | 2 +- src/IconNestCamMagnetMountRounded.tsx | 2 +- src/IconNestCamMagnetMountRoundedFilled.tsx | 2 +- src/IconNestCamMagnetMountSharp.tsx | 2 +- src/IconNestCamMagnetMountSharpFilled.tsx | 2 +- src/IconNestCamOutdoorOutlined.tsx | 2 +- src/IconNestCamOutdoorOutlinedFilled.tsx | 2 +- src/IconNestCamOutdoorRounded.tsx | 2 +- src/IconNestCamOutdoorRoundedFilled.tsx | 2 +- src/IconNestCamOutdoorSharp.tsx | 2 +- src/IconNestCamOutdoorSharpFilled.tsx | 2 +- src/IconNestCamStandOutlined.tsx | 2 +- src/IconNestCamStandOutlinedFilled.tsx | 2 +- src/IconNestCamStandRounded.tsx | 2 +- src/IconNestCamStandRoundedFilled.tsx | 2 +- src/IconNestCamStandSharp.tsx | 2 +- src/IconNestCamStandSharpFilled.tsx | 2 +- src/IconNestCamWallMountOutlined.tsx | 2 +- src/IconNestCamWallMountOutlinedFilled.tsx | 2 +- src/IconNestCamWallMountRounded.tsx | 2 +- src/IconNestCamWallMountRoundedFilled.tsx | 2 +- src/IconNestCamWallMountSharp.tsx | 2 +- src/IconNestCamWallMountSharpFilled.tsx | 2 +- src/IconNestCamWiredStandOutlined.tsx | 2 +- src/IconNestCamWiredStandOutlinedFilled.tsx | 2 +- src/IconNestCamWiredStandRounded.tsx | 2 +- src/IconNestCamWiredStandRoundedFilled.tsx | 2 +- src/IconNestCamWiredStandSharp.tsx | 2 +- src/IconNestCamWiredStandSharpFilled.tsx | 2 +- src/IconNestClockFarsightAnalogOutlined.tsx | 2 +- src/IconNestClockFarsightAnalogOutlinedFilled.tsx | 2 +- src/IconNestClockFarsightAnalogRounded.tsx | 2 +- src/IconNestClockFarsightAnalogRoundedFilled.tsx | 2 +- src/IconNestClockFarsightAnalogSharp.tsx | 2 +- src/IconNestClockFarsightAnalogSharpFilled.tsx | 2 +- src/IconNestClockFarsightDigitalOutlined.tsx | 2 +- src/IconNestClockFarsightDigitalOutlinedFilled.tsx | 2 +- src/IconNestClockFarsightDigitalRounded.tsx | 2 +- src/IconNestClockFarsightDigitalRoundedFilled.tsx | 2 +- src/IconNestClockFarsightDigitalSharp.tsx | 2 +- src/IconNestClockFarsightDigitalSharpFilled.tsx | 2 +- src/IconNestConnectOutlined.tsx | 2 +- src/IconNestConnectOutlinedFilled.tsx | 2 +- src/IconNestConnectRounded.tsx | 2 +- src/IconNestConnectRoundedFilled.tsx | 2 +- src/IconNestConnectSharp.tsx | 2 +- src/IconNestConnectSharpFilled.tsx | 2 +- src/IconNestDetectOutlined.tsx | 2 +- src/IconNestDetectOutlinedFilled.tsx | 2 +- src/IconNestDetectRounded.tsx | 2 +- src/IconNestDetectRoundedFilled.tsx | 2 +- src/IconNestDetectSharp.tsx | 2 +- src/IconNestDetectSharpFilled.tsx | 2 +- src/IconNestDisplayMaxOutlined.tsx | 2 +- src/IconNestDisplayMaxOutlinedFilled.tsx | 2 +- src/IconNestDisplayMaxRounded.tsx | 2 +- src/IconNestDisplayMaxRoundedFilled.tsx | 2 +- src/IconNestDisplayMaxSharp.tsx | 2 +- src/IconNestDisplayMaxSharpFilled.tsx | 2 +- src/IconNestDisplayOutlined.tsx | 2 +- src/IconNestDisplayOutlinedFilled.tsx | 2 +- src/IconNestDisplayRounded.tsx | 2 +- src/IconNestDisplayRoundedFilled.tsx | 2 +- src/IconNestDisplaySharp.tsx | 2 +- src/IconNestDisplaySharpFilled.tsx | 2 +- src/IconNestDoorbellVisitorOutlined.tsx | 2 +- src/IconNestDoorbellVisitorOutlinedFilled.tsx | 2 +- src/IconNestDoorbellVisitorRounded.tsx | 2 +- src/IconNestDoorbellVisitorRoundedFilled.tsx | 2 +- src/IconNestDoorbellVisitorSharp.tsx | 2 +- src/IconNestDoorbellVisitorSharpFilled.tsx | 2 +- src/IconNestEcoLeafOutlined.tsx | 2 +- src/IconNestEcoLeafOutlinedFilled.tsx | 2 +- src/IconNestEcoLeafRounded.tsx | 2 +- src/IconNestEcoLeafRoundedFilled.tsx | 2 +- src/IconNestEcoLeafSharp.tsx | 2 +- src/IconNestEcoLeafSharpFilled.tsx | 2 +- src/IconNestFarsightWeatherOutlined.tsx | 2 +- src/IconNestFarsightWeatherOutlinedFilled.tsx | 2 +- src/IconNestFarsightWeatherRounded.tsx | 2 +- src/IconNestFarsightWeatherRoundedFilled.tsx | 2 +- src/IconNestFarsightWeatherSharp.tsx | 2 +- src/IconNestFarsightWeatherSharpFilled.tsx | 2 +- src/IconNestFoundSavingsOutlined.tsx | 2 +- src/IconNestFoundSavingsOutlinedFilled.tsx | 2 +- src/IconNestFoundSavingsRounded.tsx | 2 +- src/IconNestFoundSavingsRoundedFilled.tsx | 2 +- src/IconNestFoundSavingsSharp.tsx | 2 +- src/IconNestFoundSavingsSharpFilled.tsx | 2 +- src/IconNestGaleWifiOutlined.tsx | 2 +- src/IconNestGaleWifiOutlinedFilled.tsx | 2 +- src/IconNestGaleWifiRounded.tsx | 2 +- src/IconNestGaleWifiRoundedFilled.tsx | 2 +- src/IconNestGaleWifiSharp.tsx | 2 +- src/IconNestGaleWifiSharpFilled.tsx | 2 +- src/IconNestHeatLinkEOutlined.tsx | 2 +- src/IconNestHeatLinkEOutlinedFilled.tsx | 2 +- src/IconNestHeatLinkERounded.tsx | 2 +- src/IconNestHeatLinkERoundedFilled.tsx | 2 +- src/IconNestHeatLinkESharp.tsx | 2 +- src/IconNestHeatLinkESharpFilled.tsx | 2 +- src/IconNestHeatLinkGen3Outlined.tsx | 2 +- src/IconNestHeatLinkGen3OutlinedFilled.tsx | 2 +- src/IconNestHeatLinkGen3Rounded.tsx | 2 +- src/IconNestHeatLinkGen3RoundedFilled.tsx | 2 +- src/IconNestHeatLinkGen3Sharp.tsx | 2 +- src/IconNestHeatLinkGen3SharpFilled.tsx | 2 +- src/IconNestHelloDoorbellOutlined.tsx | 2 +- src/IconNestHelloDoorbellOutlinedFilled.tsx | 2 +- src/IconNestHelloDoorbellRounded.tsx | 2 +- src/IconNestHelloDoorbellRoundedFilled.tsx | 2 +- src/IconNestHelloDoorbellSharp.tsx | 2 +- src/IconNestHelloDoorbellSharpFilled.tsx | 2 +- src/IconNestMiniOutlined.tsx | 2 +- src/IconNestMiniOutlinedFilled.tsx | 2 +- src/IconNestMiniRounded.tsx | 2 +- src/IconNestMiniRoundedFilled.tsx | 2 +- src/IconNestMiniSharp.tsx | 2 +- src/IconNestMiniSharpFilled.tsx | 2 +- src/IconNestMultiRoomOutlined.tsx | 2 +- src/IconNestMultiRoomOutlinedFilled.tsx | 2 +- src/IconNestMultiRoomRounded.tsx | 2 +- src/IconNestMultiRoomRoundedFilled.tsx | 2 +- src/IconNestMultiRoomSharp.tsx | 2 +- src/IconNestMultiRoomSharpFilled.tsx | 2 +- src/IconNestProtectOutlined.tsx | 2 +- src/IconNestProtectOutlinedFilled.tsx | 2 +- src/IconNestProtectRounded.tsx | 2 +- src/IconNestProtectRoundedFilled.tsx | 2 +- src/IconNestProtectSharp.tsx | 2 +- src/IconNestProtectSharpFilled.tsx | 2 +- src/IconNestRemoteComfortSensorOutlined.tsx | 2 +- src/IconNestRemoteComfortSensorOutlinedFilled.tsx | 2 +- src/IconNestRemoteComfortSensorRounded.tsx | 2 +- src/IconNestRemoteComfortSensorRoundedFilled.tsx | 2 +- src/IconNestRemoteComfortSensorSharp.tsx | 2 +- src/IconNestRemoteComfortSensorSharpFilled.tsx | 2 +- src/IconNestRemoteOutlined.tsx | 2 +- src/IconNestRemoteOutlinedFilled.tsx | 2 +- src/IconNestRemoteRounded.tsx | 2 +- src/IconNestRemoteRoundedFilled.tsx | 2 +- src/IconNestRemoteSharp.tsx | 2 +- src/IconNestRemoteSharpFilled.tsx | 2 +- src/IconNestSecureAlarmOutlined.tsx | 2 +- src/IconNestSecureAlarmOutlinedFilled.tsx | 2 +- src/IconNestSecureAlarmRounded.tsx | 2 +- src/IconNestSecureAlarmRoundedFilled.tsx | 2 +- src/IconNestSecureAlarmSharp.tsx | 2 +- src/IconNestSecureAlarmSharpFilled.tsx | 2 +- src/IconNestSunblockOutlined.tsx | 2 +- src/IconNestSunblockOutlinedFilled.tsx | 2 +- src/IconNestSunblockRounded.tsx | 2 +- src/IconNestSunblockRoundedFilled.tsx | 2 +- src/IconNestSunblockSharp.tsx | 2 +- src/IconNestSunblockSharpFilled.tsx | 2 +- src/IconNestTagOutlined.tsx | 2 +- src/IconNestTagOutlinedFilled.tsx | 2 +- src/IconNestTagRounded.tsx | 2 +- src/IconNestTagRoundedFilled.tsx | 2 +- src/IconNestTagSharp.tsx | 2 +- src/IconNestTagSharpFilled.tsx | 2 +- src/IconNestThermostatEEuOutlined.tsx | 2 +- src/IconNestThermostatEEuOutlinedFilled.tsx | 2 +- src/IconNestThermostatEEuRounded.tsx | 2 +- src/IconNestThermostatEEuRoundedFilled.tsx | 2 +- src/IconNestThermostatEEuSharp.tsx | 2 +- src/IconNestThermostatEEuSharpFilled.tsx | 2 +- src/IconNestThermostatGen3Outlined.tsx | 2 +- src/IconNestThermostatGen3OutlinedFilled.tsx | 2 +- src/IconNestThermostatGen3Rounded.tsx | 2 +- src/IconNestThermostatGen3RoundedFilled.tsx | 2 +- src/IconNestThermostatGen3Sharp.tsx | 2 +- src/IconNestThermostatGen3SharpFilled.tsx | 2 +- src/IconNestThermostatOutlined.tsx | 2 +- src/IconNestThermostatOutlinedFilled.tsx | 2 +- src/IconNestThermostatRounded.tsx | 2 +- src/IconNestThermostatRoundedFilled.tsx | 2 +- src/IconNestThermostatSensorEuOutlined.tsx | 2 +- src/IconNestThermostatSensorEuOutlinedFilled.tsx | 2 +- src/IconNestThermostatSensorEuRounded.tsx | 2 +- src/IconNestThermostatSensorEuRoundedFilled.tsx | 2 +- src/IconNestThermostatSensorEuSharp.tsx | 2 +- src/IconNestThermostatSensorEuSharpFilled.tsx | 2 +- src/IconNestThermostatSensorOutlined.tsx | 2 +- src/IconNestThermostatSensorOutlinedFilled.tsx | 2 +- src/IconNestThermostatSensorRounded.tsx | 2 +- src/IconNestThermostatSensorRoundedFilled.tsx | 2 +- src/IconNestThermostatSensorSharp.tsx | 2 +- src/IconNestThermostatSensorSharpFilled.tsx | 2 +- src/IconNestThermostatSharp.tsx | 2 +- src/IconNestThermostatSharpFilled.tsx | 2 +- src/IconNestThermostatZirconiumEuOutlined.tsx | 2 +- src/IconNestThermostatZirconiumEuOutlinedFilled.tsx | 2 +- src/IconNestThermostatZirconiumEuRounded.tsx | 2 +- src/IconNestThermostatZirconiumEuRoundedFilled.tsx | 2 +- src/IconNestThermostatZirconiumEuSharp.tsx | 2 +- src/IconNestThermostatZirconiumEuSharpFilled.tsx | 2 +- src/IconNestTrueRadiantOutlined.tsx | 2 +- src/IconNestTrueRadiantOutlinedFilled.tsx | 2 +- src/IconNestTrueRadiantRounded.tsx | 2 +- src/IconNestTrueRadiantRoundedFilled.tsx | 2 +- src/IconNestTrueRadiantSharp.tsx | 2 +- src/IconNestTrueRadiantSharpFilled.tsx | 2 +- src/IconNestWakeOnApproachOutlined.tsx | 2 +- src/IconNestWakeOnApproachOutlinedFilled.tsx | 2 +- src/IconNestWakeOnApproachRounded.tsx | 2 +- src/IconNestWakeOnApproachRoundedFilled.tsx | 2 +- src/IconNestWakeOnApproachSharp.tsx | 2 +- src/IconNestWakeOnApproachSharpFilled.tsx | 2 +- src/IconNestWakeOnPressOutlined.tsx | 2 +- src/IconNestWakeOnPressOutlinedFilled.tsx | 2 +- src/IconNestWakeOnPressRounded.tsx | 2 +- src/IconNestWakeOnPressRoundedFilled.tsx | 2 +- src/IconNestWakeOnPressSharp.tsx | 2 +- src/IconNestWakeOnPressSharpFilled.tsx | 2 +- src/IconNestWifiPointOutlined.tsx | 2 +- src/IconNestWifiPointOutlinedFilled.tsx | 2 +- src/IconNestWifiPointRounded.tsx | 2 +- src/IconNestWifiPointRoundedFilled.tsx | 2 +- src/IconNestWifiPointSharp.tsx | 2 +- src/IconNestWifiPointSharpFilled.tsx | 2 +- src/IconNestWifiPro2Outlined.tsx | 2 +- src/IconNestWifiPro2OutlinedFilled.tsx | 2 +- src/IconNestWifiPro2Rounded.tsx | 2 +- src/IconNestWifiPro2RoundedFilled.tsx | 2 +- src/IconNestWifiPro2Sharp.tsx | 2 +- src/IconNestWifiPro2SharpFilled.tsx | 2 +- src/IconNestWifiProOutlined.tsx | 2 +- src/IconNestWifiProOutlinedFilled.tsx | 2 +- src/IconNestWifiProRounded.tsx | 2 +- src/IconNestWifiProRoundedFilled.tsx | 2 +- src/IconNestWifiProSharp.tsx | 2 +- src/IconNestWifiProSharpFilled.tsx | 2 +- src/IconNestWifiRouterOutlined.tsx | 2 +- src/IconNestWifiRouterOutlinedFilled.tsx | 2 +- src/IconNestWifiRouterRounded.tsx | 2 +- src/IconNestWifiRouterRoundedFilled.tsx | 2 +- src/IconNestWifiRouterSharp.tsx | 2 +- src/IconNestWifiRouterSharpFilled.tsx | 2 +- src/IconNetworkCellOutlined.tsx | 2 +- src/IconNetworkCellOutlinedFilled.tsx | 2 +- src/IconNetworkCellRounded.tsx | 2 +- src/IconNetworkCellRoundedFilled.tsx | 2 +- src/IconNetworkCellSharp.tsx | 2 +- src/IconNetworkCellSharpFilled.tsx | 2 +- src/IconNetworkCheckOutlined.tsx | 2 +- src/IconNetworkCheckOutlinedFilled.tsx | 2 +- src/IconNetworkCheckRounded.tsx | 2 +- src/IconNetworkCheckRoundedFilled.tsx | 2 +- src/IconNetworkCheckSharp.tsx | 2 +- src/IconNetworkCheckSharpFilled.tsx | 2 +- src/IconNetworkIntelligenceHistoryOutlined.tsx | 2 +- src/IconNetworkIntelligenceHistoryOutlinedFilled.tsx | 2 +- src/IconNetworkIntelligenceHistoryRounded.tsx | 2 +- src/IconNetworkIntelligenceHistoryRoundedFilled.tsx | 2 +- src/IconNetworkIntelligenceHistorySharp.tsx | 2 +- src/IconNetworkIntelligenceHistorySharpFilled.tsx | 2 +- src/IconNetworkIntelligenceUpdateOutlined.tsx | 2 +- src/IconNetworkIntelligenceUpdateOutlinedFilled.tsx | 2 +- src/IconNetworkIntelligenceUpdateRounded.tsx | 2 +- src/IconNetworkIntelligenceUpdateRoundedFilled.tsx | 2 +- src/IconNetworkIntelligenceUpdateSharp.tsx | 2 +- src/IconNetworkIntelligenceUpdateSharpFilled.tsx | 2 +- src/IconNetworkLockedOutlined.tsx | 2 +- src/IconNetworkLockedOutlinedFilled.tsx | 2 +- src/IconNetworkLockedRounded.tsx | 2 +- src/IconNetworkLockedRoundedFilled.tsx | 2 +- src/IconNetworkLockedSharp.tsx | 2 +- src/IconNetworkLockedSharpFilled.tsx | 2 +- src/IconNetworkManageOutlined.tsx | 2 +- src/IconNetworkManageOutlinedFilled.tsx | 2 +- src/IconNetworkManageRounded.tsx | 2 +- src/IconNetworkManageRoundedFilled.tsx | 2 +- src/IconNetworkManageSharp.tsx | 2 +- src/IconNetworkManageSharpFilled.tsx | 2 +- src/IconNetworkNodeOutlined.tsx | 2 +- src/IconNetworkNodeOutlinedFilled.tsx | 2 +- src/IconNetworkNodeRounded.tsx | 2 +- src/IconNetworkNodeRoundedFilled.tsx | 2 +- src/IconNetworkNodeSharp.tsx | 2 +- src/IconNetworkNodeSharpFilled.tsx | 2 +- src/IconNetworkPingOutlined.tsx | 2 +- src/IconNetworkPingOutlinedFilled.tsx | 2 +- src/IconNetworkPingRounded.tsx | 2 +- src/IconNetworkPingRoundedFilled.tsx | 2 +- src/IconNetworkPingSharp.tsx | 2 +- src/IconNetworkPingSharpFilled.tsx | 2 +- src/IconNetworkWifi1BarLockedOutlined.tsx | 2 +- src/IconNetworkWifi1BarLockedOutlinedFilled.tsx | 2 +- src/IconNetworkWifi1BarLockedRounded.tsx | 2 +- src/IconNetworkWifi1BarLockedRoundedFilled.tsx | 2 +- src/IconNetworkWifi1BarLockedSharp.tsx | 2 +- src/IconNetworkWifi1BarLockedSharpFilled.tsx | 2 +- src/IconNetworkWifi1BarOutlined.tsx | 2 +- src/IconNetworkWifi1BarOutlinedFilled.tsx | 2 +- src/IconNetworkWifi1BarRounded.tsx | 2 +- src/IconNetworkWifi1BarRoundedFilled.tsx | 2 +- src/IconNetworkWifi1BarSharp.tsx | 2 +- src/IconNetworkWifi1BarSharpFilled.tsx | 2 +- src/IconNetworkWifi2BarLockedOutlined.tsx | 2 +- src/IconNetworkWifi2BarLockedOutlinedFilled.tsx | 2 +- src/IconNetworkWifi2BarLockedRounded.tsx | 2 +- src/IconNetworkWifi2BarLockedRoundedFilled.tsx | 2 +- src/IconNetworkWifi2BarLockedSharp.tsx | 2 +- src/IconNetworkWifi2BarLockedSharpFilled.tsx | 2 +- src/IconNetworkWifi2BarOutlined.tsx | 2 +- src/IconNetworkWifi2BarOutlinedFilled.tsx | 2 +- src/IconNetworkWifi2BarRounded.tsx | 2 +- src/IconNetworkWifi2BarRoundedFilled.tsx | 2 +- src/IconNetworkWifi2BarSharp.tsx | 2 +- src/IconNetworkWifi2BarSharpFilled.tsx | 2 +- src/IconNetworkWifi3BarLockedOutlined.tsx | 2 +- src/IconNetworkWifi3BarLockedOutlinedFilled.tsx | 2 +- src/IconNetworkWifi3BarLockedRounded.tsx | 2 +- src/IconNetworkWifi3BarLockedRoundedFilled.tsx | 2 +- src/IconNetworkWifi3BarLockedSharp.tsx | 2 +- src/IconNetworkWifi3BarLockedSharpFilled.tsx | 2 +- src/IconNetworkWifi3BarOutlined.tsx | 2 +- src/IconNetworkWifi3BarOutlinedFilled.tsx | 2 +- src/IconNetworkWifi3BarRounded.tsx | 2 +- src/IconNetworkWifi3BarRoundedFilled.tsx | 2 +- src/IconNetworkWifi3BarSharp.tsx | 2 +- src/IconNetworkWifi3BarSharpFilled.tsx | 2 +- src/IconNetworkWifiLockedOutlined.tsx | 2 +- src/IconNetworkWifiLockedOutlinedFilled.tsx | 2 +- src/IconNetworkWifiLockedRounded.tsx | 2 +- src/IconNetworkWifiLockedRoundedFilled.tsx | 2 +- src/IconNetworkWifiLockedSharp.tsx | 2 +- src/IconNetworkWifiLockedSharpFilled.tsx | 2 +- src/IconNetworkWifiOutlined.tsx | 2 +- src/IconNetworkWifiOutlinedFilled.tsx | 2 +- src/IconNetworkWifiRounded.tsx | 2 +- src/IconNetworkWifiRoundedFilled.tsx | 2 +- src/IconNetworkWifiSharp.tsx | 2 +- src/IconNetworkWifiSharpFilled.tsx | 2 +- src/IconNeurologyOutlined.tsx | 2 +- src/IconNeurologyOutlinedFilled.tsx | 2 +- src/IconNeurologyRounded.tsx | 2 +- src/IconNeurologyRoundedFilled.tsx | 2 +- src/IconNeurologySharp.tsx | 2 +- src/IconNeurologySharpFilled.tsx | 2 +- src/IconNewLabelOutlined.tsx | 2 +- src/IconNewLabelOutlinedFilled.tsx | 2 +- src/IconNewLabelRounded.tsx | 2 +- src/IconNewLabelRoundedFilled.tsx | 2 +- src/IconNewLabelSharp.tsx | 2 +- src/IconNewLabelSharpFilled.tsx | 2 +- src/IconNewReleasesOutlined.tsx | 2 +- src/IconNewReleasesOutlinedFilled.tsx | 2 +- src/IconNewReleasesRounded.tsx | 2 +- src/IconNewReleasesRoundedFilled.tsx | 2 +- src/IconNewReleasesSharp.tsx | 2 +- src/IconNewReleasesSharpFilled.tsx | 2 +- src/IconNewWindowOutlined.tsx | 2 +- src/IconNewWindowOutlinedFilled.tsx | 2 +- src/IconNewWindowRounded.tsx | 2 +- src/IconNewWindowRoundedFilled.tsx | 2 +- src/IconNewWindowSharp.tsx | 2 +- src/IconNewWindowSharpFilled.tsx | 2 +- src/IconNewsOutlined.tsx | 2 +- src/IconNewsOutlinedFilled.tsx | 2 +- src/IconNewsRounded.tsx | 2 +- src/IconNewsRoundedFilled.tsx | 2 +- src/IconNewsSharp.tsx | 2 +- src/IconNewsSharpFilled.tsx | 2 +- src/IconNewsmodeOutlined.tsx | 2 +- src/IconNewsmodeOutlinedFilled.tsx | 2 +- src/IconNewsmodeRounded.tsx | 2 +- src/IconNewsmodeRoundedFilled.tsx | 2 +- src/IconNewsmodeSharp.tsx | 2 +- src/IconNewsmodeSharpFilled.tsx | 2 +- src/IconNewspaperOutlined.tsx | 2 +- src/IconNewspaperOutlinedFilled.tsx | 2 +- src/IconNewspaperRounded.tsx | 2 +- src/IconNewspaperRoundedFilled.tsx | 2 +- src/IconNewspaperSharp.tsx | 2 +- src/IconNewspaperSharpFilled.tsx | 2 +- src/IconNewsstandOutlined.tsx | 2 +- src/IconNewsstandOutlinedFilled.tsx | 2 +- src/IconNewsstandRounded.tsx | 2 +- src/IconNewsstandRoundedFilled.tsx | 2 +- src/IconNewsstandSharp.tsx | 2 +- src/IconNewsstandSharpFilled.tsx | 2 +- src/IconNextPlanOutlined.tsx | 2 +- src/IconNextPlanOutlinedFilled.tsx | 2 +- src/IconNextPlanRounded.tsx | 2 +- src/IconNextPlanRoundedFilled.tsx | 2 +- src/IconNextPlanSharp.tsx | 2 +- src/IconNextPlanSharpFilled.tsx | 2 +- src/IconNextWeekOutlined.tsx | 2 +- src/IconNextWeekOutlinedFilled.tsx | 2 +- src/IconNextWeekRounded.tsx | 2 +- src/IconNextWeekRoundedFilled.tsx | 2 +- src/IconNextWeekSharp.tsx | 2 +- src/IconNextWeekSharpFilled.tsx | 2 +- src/IconNfcOutlined.tsx | 2 +- src/IconNfcOutlinedFilled.tsx | 2 +- src/IconNfcRounded.tsx | 2 +- src/IconNfcRoundedFilled.tsx | 2 +- src/IconNfcSharp.tsx | 2 +- src/IconNfcSharpFilled.tsx | 2 +- src/IconNightShelterOutlined.tsx | 2 +- src/IconNightShelterOutlinedFilled.tsx | 2 +- src/IconNightShelterRounded.tsx | 2 +- src/IconNightShelterRoundedFilled.tsx | 2 +- src/IconNightShelterSharp.tsx | 2 +- src/IconNightShelterSharpFilled.tsx | 2 +- src/IconNightSightAutoOffOutlined.tsx | 2 +- src/IconNightSightAutoOffOutlinedFilled.tsx | 2 +- src/IconNightSightAutoOffRounded.tsx | 2 +- src/IconNightSightAutoOffRoundedFilled.tsx | 2 +- src/IconNightSightAutoOffSharp.tsx | 2 +- src/IconNightSightAutoOffSharpFilled.tsx | 2 +- src/IconNightSightAutoOutlined.tsx | 2 +- src/IconNightSightAutoOutlinedFilled.tsx | 2 +- src/IconNightSightAutoRounded.tsx | 2 +- src/IconNightSightAutoRoundedFilled.tsx | 2 +- src/IconNightSightAutoSharp.tsx | 2 +- src/IconNightSightAutoSharpFilled.tsx | 2 +- src/IconNightSightMaxOutlined.tsx | 2 +- src/IconNightSightMaxOutlinedFilled.tsx | 2 +- src/IconNightSightMaxRounded.tsx | 2 +- src/IconNightSightMaxRoundedFilled.tsx | 2 +- src/IconNightSightMaxSharp.tsx | 2 +- src/IconNightSightMaxSharpFilled.tsx | 2 +- src/IconNightlifeOutlined.tsx | 2 +- src/IconNightlifeOutlinedFilled.tsx | 2 +- src/IconNightlifeRounded.tsx | 2 +- src/IconNightlifeRoundedFilled.tsx | 2 +- src/IconNightlifeSharp.tsx | 2 +- src/IconNightlifeSharpFilled.tsx | 2 +- src/IconNightlightOutlined.tsx | 2 +- src/IconNightlightOutlinedFilled.tsx | 2 +- src/IconNightlightRounded.tsx | 2 +- src/IconNightlightRoundedFilled.tsx | 2 +- src/IconNightlightSharp.tsx | 2 +- src/IconNightlightSharpFilled.tsx | 2 +- src/IconNightsStayOutlined.tsx | 2 +- src/IconNightsStayOutlinedFilled.tsx | 2 +- src/IconNightsStayRounded.tsx | 2 +- src/IconNightsStayRoundedFilled.tsx | 2 +- src/IconNightsStaySharp.tsx | 2 +- src/IconNightsStaySharpFilled.tsx | 2 +- src/IconNoAccountsOutlined.tsx | 2 +- src/IconNoAccountsOutlinedFilled.tsx | 2 +- src/IconNoAccountsRounded.tsx | 2 +- src/IconNoAccountsRoundedFilled.tsx | 2 +- src/IconNoAccountsSharp.tsx | 2 +- src/IconNoAccountsSharpFilled.tsx | 2 +- src/IconNoAdultContentOutlined.tsx | 2 +- src/IconNoAdultContentOutlinedFilled.tsx | 2 +- src/IconNoAdultContentRounded.tsx | 2 +- src/IconNoAdultContentRoundedFilled.tsx | 2 +- src/IconNoAdultContentSharp.tsx | 2 +- src/IconNoAdultContentSharpFilled.tsx | 2 +- src/IconNoBackpackOutlined.tsx | 2 +- src/IconNoBackpackOutlinedFilled.tsx | 2 +- src/IconNoBackpackRounded.tsx | 2 +- src/IconNoBackpackRoundedFilled.tsx | 2 +- src/IconNoBackpackSharp.tsx | 2 +- src/IconNoBackpackSharpFilled.tsx | 2 +- src/IconNoCrashOutlined.tsx | 2 +- src/IconNoCrashOutlinedFilled.tsx | 2 +- src/IconNoCrashRounded.tsx | 2 +- src/IconNoCrashRoundedFilled.tsx | 2 +- src/IconNoCrashSharp.tsx | 2 +- src/IconNoCrashSharpFilled.tsx | 2 +- src/IconNoDrinksOutlined.tsx | 2 +- src/IconNoDrinksOutlinedFilled.tsx | 2 +- src/IconNoDrinksRounded.tsx | 2 +- src/IconNoDrinksRoundedFilled.tsx | 2 +- src/IconNoDrinksSharp.tsx | 2 +- src/IconNoDrinksSharpFilled.tsx | 2 +- src/IconNoEncryptionOutlined.tsx | 2 +- src/IconNoEncryptionOutlinedFilled.tsx | 2 +- src/IconNoEncryptionRounded.tsx | 2 +- src/IconNoEncryptionRoundedFilled.tsx | 2 +- src/IconNoEncryptionSharp.tsx | 2 +- src/IconNoEncryptionSharpFilled.tsx | 2 +- src/IconNoFlashOutlined.tsx | 2 +- src/IconNoFlashOutlinedFilled.tsx | 2 +- src/IconNoFlashRounded.tsx | 2 +- src/IconNoFlashRoundedFilled.tsx | 2 +- src/IconNoFlashSharp.tsx | 2 +- src/IconNoFlashSharpFilled.tsx | 2 +- src/IconNoFoodOutlined.tsx | 2 +- src/IconNoFoodOutlinedFilled.tsx | 2 +- src/IconNoFoodRounded.tsx | 2 +- src/IconNoFoodRoundedFilled.tsx | 2 +- src/IconNoFoodSharp.tsx | 2 +- src/IconNoFoodSharpFilled.tsx | 2 +- src/IconNoLuggageOutlined.tsx | 2 +- src/IconNoLuggageOutlinedFilled.tsx | 2 +- src/IconNoLuggageRounded.tsx | 2 +- src/IconNoLuggageRoundedFilled.tsx | 2 +- src/IconNoLuggageSharp.tsx | 2 +- src/IconNoLuggageSharpFilled.tsx | 2 +- src/IconNoMealsOutlined.tsx | 2 +- src/IconNoMealsOutlinedFilled.tsx | 2 +- src/IconNoMealsRounded.tsx | 2 +- src/IconNoMealsRoundedFilled.tsx | 2 +- src/IconNoMealsSharp.tsx | 2 +- src/IconNoMealsSharpFilled.tsx | 2 +- src/IconNoMeetingRoomOutlined.tsx | 2 +- src/IconNoMeetingRoomOutlinedFilled.tsx | 2 +- src/IconNoMeetingRoomRounded.tsx | 2 +- src/IconNoMeetingRoomRoundedFilled.tsx | 2 +- src/IconNoMeetingRoomSharp.tsx | 2 +- src/IconNoMeetingRoomSharpFilled.tsx | 2 +- src/IconNoPhotographyOutlined.tsx | 2 +- src/IconNoPhotographyOutlinedFilled.tsx | 2 +- src/IconNoPhotographyRounded.tsx | 2 +- src/IconNoPhotographyRoundedFilled.tsx | 2 +- src/IconNoPhotographySharp.tsx | 2 +- src/IconNoPhotographySharpFilled.tsx | 2 +- src/IconNoSimOutlined.tsx | 2 +- src/IconNoSimOutlinedFilled.tsx | 2 +- src/IconNoSimRounded.tsx | 2 +- src/IconNoSimRoundedFilled.tsx | 2 +- src/IconNoSimSharp.tsx | 2 +- src/IconNoSimSharpFilled.tsx | 2 +- src/IconNoSoundOutlined.tsx | 2 +- src/IconNoSoundOutlinedFilled.tsx | 2 +- src/IconNoSoundRounded.tsx | 2 +- src/IconNoSoundRoundedFilled.tsx | 2 +- src/IconNoSoundSharp.tsx | 2 +- src/IconNoSoundSharpFilled.tsx | 2 +- src/IconNoStrollerOutlined.tsx | 2 +- src/IconNoStrollerOutlinedFilled.tsx | 2 +- src/IconNoStrollerRounded.tsx | 2 +- src/IconNoStrollerRoundedFilled.tsx | 2 +- src/IconNoStrollerSharp.tsx | 2 +- src/IconNoStrollerSharpFilled.tsx | 2 +- src/IconNoTransferOutlined.tsx | 2 +- src/IconNoTransferOutlinedFilled.tsx | 2 +- src/IconNoTransferRounded.tsx | 2 +- src/IconNoTransferRoundedFilled.tsx | 2 +- src/IconNoTransferSharp.tsx | 2 +- src/IconNoTransferSharpFilled.tsx | 2 +- src/IconNoiseAwareOutlined.tsx | 2 +- src/IconNoiseAwareOutlinedFilled.tsx | 2 +- src/IconNoiseAwareRounded.tsx | 2 +- src/IconNoiseAwareRoundedFilled.tsx | 2 +- src/IconNoiseAwareSharp.tsx | 2 +- src/IconNoiseAwareSharpFilled.tsx | 2 +- src/IconNoiseControlOffOutlined.tsx | 2 +- src/IconNoiseControlOffOutlinedFilled.tsx | 2 +- src/IconNoiseControlOffRounded.tsx | 2 +- src/IconNoiseControlOffRoundedFilled.tsx | 2 +- src/IconNoiseControlOffSharp.tsx | 2 +- src/IconNoiseControlOffSharpFilled.tsx | 2 +- src/IconNoiseControlOnOutlined.tsx | 2 +- src/IconNoiseControlOnOutlinedFilled.tsx | 2 +- src/IconNoiseControlOnRounded.tsx | 2 +- src/IconNoiseControlOnRoundedFilled.tsx | 2 +- src/IconNoiseControlOnSharp.tsx | 2 +- src/IconNoiseControlOnSharpFilled.tsx | 2 +- src/IconNordicWalkingOutlined.tsx | 2 +- src/IconNordicWalkingOutlinedFilled.tsx | 2 +- src/IconNordicWalkingRounded.tsx | 2 +- src/IconNordicWalkingRoundedFilled.tsx | 2 +- src/IconNordicWalkingSharp.tsx | 2 +- src/IconNordicWalkingSharpFilled.tsx | 2 +- src/IconNorthEastOutlined.tsx | 2 +- src/IconNorthEastOutlinedFilled.tsx | 2 +- src/IconNorthEastRounded.tsx | 2 +- src/IconNorthEastRoundedFilled.tsx | 2 +- src/IconNorthEastSharp.tsx | 2 +- src/IconNorthEastSharpFilled.tsx | 2 +- src/IconNorthOutlined.tsx | 2 +- src/IconNorthOutlinedFilled.tsx | 2 +- src/IconNorthRounded.tsx | 2 +- src/IconNorthRoundedFilled.tsx | 2 +- src/IconNorthSharp.tsx | 2 +- src/IconNorthSharpFilled.tsx | 2 +- src/IconNorthWestOutlined.tsx | 2 +- src/IconNorthWestOutlinedFilled.tsx | 2 +- src/IconNorthWestRounded.tsx | 2 +- src/IconNorthWestRoundedFilled.tsx | 2 +- src/IconNorthWestSharp.tsx | 2 +- src/IconNorthWestSharpFilled.tsx | 2 +- src/IconNotAccessibleForwardOutlined.tsx | 2 +- src/IconNotAccessibleForwardOutlinedFilled.tsx | 2 +- src/IconNotAccessibleForwardRounded.tsx | 2 +- src/IconNotAccessibleForwardRoundedFilled.tsx | 2 +- src/IconNotAccessibleForwardSharp.tsx | 2 +- src/IconNotAccessibleForwardSharpFilled.tsx | 2 +- src/IconNotAccessibleOutlined.tsx | 2 +- src/IconNotAccessibleOutlinedFilled.tsx | 2 +- src/IconNotAccessibleRounded.tsx | 2 +- src/IconNotAccessibleRoundedFilled.tsx | 2 +- src/IconNotAccessibleSharp.tsx | 2 +- src/IconNotAccessibleSharpFilled.tsx | 2 +- src/IconNotListedLocationOutlined.tsx | 2 +- src/IconNotListedLocationOutlinedFilled.tsx | 2 +- src/IconNotListedLocationRounded.tsx | 2 +- src/IconNotListedLocationRoundedFilled.tsx | 2 +- src/IconNotListedLocationSharp.tsx | 2 +- src/IconNotListedLocationSharpFilled.tsx | 2 +- src/IconNotStartedOutlined.tsx | 2 +- src/IconNotStartedOutlinedFilled.tsx | 2 +- src/IconNotStartedRounded.tsx | 2 +- src/IconNotStartedRoundedFilled.tsx | 2 +- src/IconNotStartedSharp.tsx | 2 +- src/IconNotStartedSharpFilled.tsx | 2 +- src/IconNoteAddOutlined.tsx | 2 +- src/IconNoteAddOutlinedFilled.tsx | 2 +- src/IconNoteAddRounded.tsx | 2 +- src/IconNoteAddRoundedFilled.tsx | 2 +- src/IconNoteAddSharp.tsx | 2 +- src/IconNoteAddSharpFilled.tsx | 2 +- src/IconNoteAltOutlined.tsx | 2 +- src/IconNoteAltOutlinedFilled.tsx | 2 +- src/IconNoteAltRounded.tsx | 2 +- src/IconNoteAltRoundedFilled.tsx | 2 +- src/IconNoteAltSharp.tsx | 2 +- src/IconNoteAltSharpFilled.tsx | 2 +- src/IconNoteStackAddOutlined.tsx | 2 +- src/IconNoteStackAddOutlinedFilled.tsx | 2 +- src/IconNoteStackAddRounded.tsx | 2 +- src/IconNoteStackAddRoundedFilled.tsx | 2 +- src/IconNoteStackAddSharp.tsx | 2 +- src/IconNoteStackAddSharpFilled.tsx | 2 +- src/IconNoteStackOutlined.tsx | 2 +- src/IconNoteStackOutlinedFilled.tsx | 2 +- src/IconNoteStackRounded.tsx | 2 +- src/IconNoteStackRoundedFilled.tsx | 2 +- src/IconNoteStackSharp.tsx | 2 +- src/IconNoteStackSharpFilled.tsx | 2 +- src/IconNotesOutlined.tsx | 2 +- src/IconNotesOutlinedFilled.tsx | 2 +- src/IconNotesRounded.tsx | 2 +- src/IconNotesRoundedFilled.tsx | 2 +- src/IconNotesSharp.tsx | 2 +- src/IconNotesSharpFilled.tsx | 2 +- src/IconNotificationAddOutlined.tsx | 2 +- src/IconNotificationAddOutlinedFilled.tsx | 2 +- src/IconNotificationAddRounded.tsx | 2 +- src/IconNotificationAddRoundedFilled.tsx | 2 +- src/IconNotificationAddSharp.tsx | 2 +- src/IconNotificationAddSharpFilled.tsx | 2 +- src/IconNotificationImportantOutlined.tsx | 2 +- src/IconNotificationImportantOutlinedFilled.tsx | 2 +- src/IconNotificationImportantRounded.tsx | 2 +- src/IconNotificationImportantRoundedFilled.tsx | 2 +- src/IconNotificationImportantSharp.tsx | 2 +- src/IconNotificationImportantSharpFilled.tsx | 2 +- src/IconNotificationMultipleOutlined.tsx | 2 +- src/IconNotificationMultipleOutlinedFilled.tsx | 2 +- src/IconNotificationMultipleRounded.tsx | 2 +- src/IconNotificationMultipleRoundedFilled.tsx | 2 +- src/IconNotificationMultipleSharp.tsx | 2 +- src/IconNotificationMultipleSharpFilled.tsx | 2 +- src/IconNotificationsActiveOutlined.tsx | 2 +- src/IconNotificationsActiveOutlinedFilled.tsx | 2 +- src/IconNotificationsActiveRounded.tsx | 2 +- src/IconNotificationsActiveRoundedFilled.tsx | 2 +- src/IconNotificationsActiveSharp.tsx | 2 +- src/IconNotificationsActiveSharpFilled.tsx | 2 +- src/IconNotificationsOffOutlined.tsx | 2 +- src/IconNotificationsOffOutlinedFilled.tsx | 2 +- src/IconNotificationsOffRounded.tsx | 2 +- src/IconNotificationsOffRoundedFilled.tsx | 2 +- src/IconNotificationsOffSharp.tsx | 2 +- src/IconNotificationsOffSharpFilled.tsx | 2 +- src/IconNotificationsOutlined.tsx | 2 +- src/IconNotificationsOutlinedFilled.tsx | 2 +- src/IconNotificationsPausedOutlined.tsx | 2 +- src/IconNotificationsPausedOutlinedFilled.tsx | 2 +- src/IconNotificationsPausedRounded.tsx | 2 +- src/IconNotificationsPausedRoundedFilled.tsx | 2 +- src/IconNotificationsPausedSharp.tsx | 2 +- src/IconNotificationsPausedSharpFilled.tsx | 2 +- src/IconNotificationsRounded.tsx | 2 +- src/IconNotificationsRoundedFilled.tsx | 2 +- src/IconNotificationsSharp.tsx | 2 +- src/IconNotificationsSharpFilled.tsx | 2 +- src/IconNotificationsUnreadOutlined.tsx | 2 +- src/IconNotificationsUnreadOutlinedFilled.tsx | 2 +- src/IconNotificationsUnreadRounded.tsx | 2 +- src/IconNotificationsUnreadRoundedFilled.tsx | 2 +- src/IconNotificationsUnreadSharp.tsx | 2 +- src/IconNotificationsUnreadSharpFilled.tsx | 2 +- src/IconNumbersOutlined.tsx | 2 +- src/IconNumbersOutlinedFilled.tsx | 2 +- src/IconNumbersRounded.tsx | 2 +- src/IconNumbersRoundedFilled.tsx | 2 +- src/IconNumbersSharp.tsx | 2 +- src/IconNumbersSharpFilled.tsx | 2 +- src/IconNutritionOutlined.tsx | 2 +- src/IconNutritionOutlinedFilled.tsx | 2 +- src/IconNutritionRounded.tsx | 2 +- src/IconNutritionRoundedFilled.tsx | 2 +- src/IconNutritionSharp.tsx | 2 +- src/IconNutritionSharpFilled.tsx | 2 +- src/IconOdsOutlined.tsx | 2 +- src/IconOdsOutlinedFilled.tsx | 2 +- src/IconOdsRounded.tsx | 2 +- src/IconOdsRoundedFilled.tsx | 2 +- src/IconOdsSharp.tsx | 2 +- src/IconOdsSharpFilled.tsx | 2 +- src/IconOdtOutlined.tsx | 2 +- src/IconOdtOutlinedFilled.tsx | 2 +- src/IconOdtRounded.tsx | 2 +- src/IconOdtRoundedFilled.tsx | 2 +- src/IconOdtSharp.tsx | 2 +- src/IconOdtSharpFilled.tsx | 2 +- src/IconOfflineBoltOutlined.tsx | 2 +- src/IconOfflineBoltOutlinedFilled.tsx | 2 +- src/IconOfflineBoltRounded.tsx | 2 +- src/IconOfflineBoltRoundedFilled.tsx | 2 +- src/IconOfflineBoltSharp.tsx | 2 +- src/IconOfflineBoltSharpFilled.tsx | 2 +- src/IconOfflinePinOffOutlined.tsx | 2 +- src/IconOfflinePinOffOutlinedFilled.tsx | 2 +- src/IconOfflinePinOffRounded.tsx | 2 +- src/IconOfflinePinOffRoundedFilled.tsx | 2 +- src/IconOfflinePinOffSharp.tsx | 2 +- src/IconOfflinePinOffSharpFilled.tsx | 2 +- src/IconOfflinePinOutlined.tsx | 2 +- src/IconOfflinePinOutlinedFilled.tsx | 2 +- src/IconOfflinePinRounded.tsx | 2 +- src/IconOfflinePinRoundedFilled.tsx | 2 +- src/IconOfflinePinSharp.tsx | 2 +- src/IconOfflinePinSharpFilled.tsx | 2 +- src/IconOfflineShareOutlined.tsx | 2 +- src/IconOfflineShareOutlinedFilled.tsx | 2 +- src/IconOfflineShareRounded.tsx | 2 +- src/IconOfflineShareRoundedFilled.tsx | 2 +- src/IconOfflineShareSharp.tsx | 2 +- src/IconOfflineShareSharpFilled.tsx | 2 +- src/IconOilBarrelOutlined.tsx | 2 +- src/IconOilBarrelOutlinedFilled.tsx | 2 +- src/IconOilBarrelRounded.tsx | 2 +- src/IconOilBarrelRoundedFilled.tsx | 2 +- src/IconOilBarrelSharp.tsx | 2 +- src/IconOilBarrelSharpFilled.tsx | 2 +- src/IconOnDeviceTrainingOutlined.tsx | 2 +- src/IconOnDeviceTrainingOutlinedFilled.tsx | 2 +- src/IconOnDeviceTrainingRounded.tsx | 2 +- src/IconOnDeviceTrainingRoundedFilled.tsx | 2 +- src/IconOnDeviceTrainingSharp.tsx | 2 +- src/IconOnDeviceTrainingSharpFilled.tsx | 2 +- src/IconOnHubDeviceOutlined.tsx | 2 +- src/IconOnHubDeviceOutlinedFilled.tsx | 2 +- src/IconOnHubDeviceRounded.tsx | 2 +- src/IconOnHubDeviceRoundedFilled.tsx | 2 +- src/IconOnHubDeviceSharp.tsx | 2 +- src/IconOnHubDeviceSharpFilled.tsx | 2 +- src/IconOncologyOutlined.tsx | 2 +- src/IconOncologyOutlinedFilled.tsx | 2 +- src/IconOncologyRounded.tsx | 2 +- src/IconOncologyRoundedFilled.tsx | 2 +- src/IconOncologySharp.tsx | 2 +- src/IconOncologySharpFilled.tsx | 2 +- src/IconOnlinePredictionOutlined.tsx | 2 +- src/IconOnlinePredictionOutlinedFilled.tsx | 2 +- src/IconOnlinePredictionRounded.tsx | 2 +- src/IconOnlinePredictionRoundedFilled.tsx | 2 +- src/IconOnlinePredictionSharp.tsx | 2 +- src/IconOnlinePredictionSharpFilled.tsx | 2 +- src/IconOnsenOutlined.tsx | 2 +- src/IconOnsenOutlinedFilled.tsx | 2 +- src/IconOnsenRounded.tsx | 2 +- src/IconOnsenRoundedFilled.tsx | 2 +- src/IconOnsenSharp.tsx | 2 +- src/IconOnsenSharpFilled.tsx | 2 +- src/IconOpacityOutlined.tsx | 2 +- src/IconOpacityOutlinedFilled.tsx | 2 +- src/IconOpacityRounded.tsx | 2 +- src/IconOpacityRoundedFilled.tsx | 2 +- src/IconOpacitySharp.tsx | 2 +- src/IconOpacitySharpFilled.tsx | 2 +- src/IconOpenInBrowserOutlined.tsx | 2 +- src/IconOpenInBrowserOutlinedFilled.tsx | 2 +- src/IconOpenInBrowserRounded.tsx | 2 +- src/IconOpenInBrowserRoundedFilled.tsx | 2 +- src/IconOpenInBrowserSharp.tsx | 2 +- src/IconOpenInBrowserSharpFilled.tsx | 2 +- src/IconOpenInFullOutlined.tsx | 2 +- src/IconOpenInFullOutlinedFilled.tsx | 2 +- src/IconOpenInFullRounded.tsx | 2 +- src/IconOpenInFullRoundedFilled.tsx | 2 +- src/IconOpenInFullSharp.tsx | 2 +- src/IconOpenInFullSharpFilled.tsx | 2 +- src/IconOpenInNewDownOutlined.tsx | 2 +- src/IconOpenInNewDownOutlinedFilled.tsx | 2 +- src/IconOpenInNewDownRounded.tsx | 2 +- src/IconOpenInNewDownRoundedFilled.tsx | 2 +- src/IconOpenInNewDownSharp.tsx | 2 +- src/IconOpenInNewDownSharpFilled.tsx | 2 +- src/IconOpenInNewOffOutlined.tsx | 2 +- src/IconOpenInNewOffOutlinedFilled.tsx | 2 +- src/IconOpenInNewOffRounded.tsx | 2 +- src/IconOpenInNewOffRoundedFilled.tsx | 2 +- src/IconOpenInNewOffSharp.tsx | 2 +- src/IconOpenInNewOffSharpFilled.tsx | 2 +- src/IconOpenInNewOutlined.tsx | 2 +- src/IconOpenInNewOutlinedFilled.tsx | 2 +- src/IconOpenInNewRounded.tsx | 2 +- src/IconOpenInNewRoundedFilled.tsx | 2 +- src/IconOpenInNewSharp.tsx | 2 +- src/IconOpenInNewSharpFilled.tsx | 2 +- src/IconOpenInPhoneOutlined.tsx | 2 +- src/IconOpenInPhoneOutlinedFilled.tsx | 2 +- src/IconOpenInPhoneRounded.tsx | 2 +- src/IconOpenInPhoneRoundedFilled.tsx | 2 +- src/IconOpenInPhoneSharp.tsx | 2 +- src/IconOpenInPhoneSharpFilled.tsx | 2 +- src/IconOpenJamOutlined.tsx | 2 +- src/IconOpenJamOutlinedFilled.tsx | 2 +- src/IconOpenJamRounded.tsx | 2 +- src/IconOpenJamRoundedFilled.tsx | 2 +- src/IconOpenJamSharp.tsx | 2 +- src/IconOpenJamSharpFilled.tsx | 2 +- src/IconOpenRunOutlined.tsx | 2 +- src/IconOpenRunOutlinedFilled.tsx | 2 +- src/IconOpenRunRounded.tsx | 2 +- src/IconOpenRunRoundedFilled.tsx | 2 +- src/IconOpenRunSharp.tsx | 2 +- src/IconOpenRunSharpFilled.tsx | 2 +- src/IconOpenWithOutlined.tsx | 2 +- src/IconOpenWithOutlinedFilled.tsx | 2 +- src/IconOpenWithRounded.tsx | 2 +- src/IconOpenWithRoundedFilled.tsx | 2 +- src/IconOpenWithSharp.tsx | 2 +- src/IconOpenWithSharpFilled.tsx | 2 +- src/IconOphthalmologyOutlined.tsx | 2 +- src/IconOphthalmologyOutlinedFilled.tsx | 2 +- src/IconOphthalmologyRounded.tsx | 2 +- src/IconOphthalmologyRoundedFilled.tsx | 2 +- src/IconOphthalmologySharp.tsx | 2 +- src/IconOphthalmologySharpFilled.tsx | 2 +- src/IconOralDiseaseOutlined.tsx | 2 +- src/IconOralDiseaseOutlinedFilled.tsx | 2 +- src/IconOralDiseaseRounded.tsx | 2 +- src/IconOralDiseaseRoundedFilled.tsx | 2 +- src/IconOralDiseaseSharp.tsx | 2 +- src/IconOralDiseaseSharpFilled.tsx | 2 +- src/IconOrbitOutlined.tsx | 2 +- src/IconOrbitOutlinedFilled.tsx | 2 +- src/IconOrbitRounded.tsx | 2 +- src/IconOrbitRoundedFilled.tsx | 2 +- src/IconOrbitSharp.tsx | 2 +- src/IconOrbitSharpFilled.tsx | 2 +- src/IconOrderApproveOutlined.tsx | 2 +- src/IconOrderApproveOutlinedFilled.tsx | 2 +- src/IconOrderApproveRounded.tsx | 2 +- src/IconOrderApproveRoundedFilled.tsx | 2 +- src/IconOrderApproveSharp.tsx | 2 +- src/IconOrderApproveSharpFilled.tsx | 2 +- src/IconOrderPlayOutlined.tsx | 2 +- src/IconOrderPlayOutlinedFilled.tsx | 2 +- src/IconOrderPlayRounded.tsx | 2 +- src/IconOrderPlayRoundedFilled.tsx | 2 +- src/IconOrderPlaySharp.tsx | 2 +- src/IconOrderPlaySharpFilled.tsx | 2 +- src/IconOrdersOutlined.tsx | 2 +- src/IconOrdersOutlinedFilled.tsx | 2 +- src/IconOrdersRounded.tsx | 2 +- src/IconOrdersRoundedFilled.tsx | 2 +- src/IconOrdersSharp.tsx | 2 +- src/IconOrdersSharpFilled.tsx | 2 +- src/IconOrthopedicsOutlined.tsx | 2 +- src/IconOrthopedicsOutlinedFilled.tsx | 2 +- src/IconOrthopedicsRounded.tsx | 2 +- src/IconOrthopedicsRoundedFilled.tsx | 2 +- src/IconOrthopedicsSharp.tsx | 2 +- src/IconOrthopedicsSharpFilled.tsx | 2 +- src/IconOtherAdmissionOutlined.tsx | 2 +- src/IconOtherAdmissionOutlinedFilled.tsx | 2 +- src/IconOtherAdmissionRounded.tsx | 2 +- src/IconOtherAdmissionRoundedFilled.tsx | 2 +- src/IconOtherAdmissionSharp.tsx | 2 +- src/IconOtherAdmissionSharpFilled.tsx | 2 +- src/IconOtherHousesOutlined.tsx | 2 +- src/IconOtherHousesOutlinedFilled.tsx | 2 +- src/IconOtherHousesRounded.tsx | 2 +- src/IconOtherHousesRoundedFilled.tsx | 2 +- src/IconOtherHousesSharp.tsx | 2 +- src/IconOtherHousesSharpFilled.tsx | 2 +- src/IconOutboundOutlined.tsx | 2 +- src/IconOutboundOutlinedFilled.tsx | 2 +- src/IconOutboundRounded.tsx | 2 +- src/IconOutboundRoundedFilled.tsx | 2 +- src/IconOutboundSharp.tsx | 2 +- src/IconOutboundSharpFilled.tsx | 2 +- src/IconOutboxAltOutlined.tsx | 2 +- src/IconOutboxAltOutlinedFilled.tsx | 2 +- src/IconOutboxAltRounded.tsx | 2 +- src/IconOutboxAltRoundedFilled.tsx | 2 +- src/IconOutboxAltSharp.tsx | 2 +- src/IconOutboxAltSharpFilled.tsx | 2 +- src/IconOutboxOutlined.tsx | 2 +- src/IconOutboxOutlinedFilled.tsx | 2 +- src/IconOutboxRounded.tsx | 2 +- src/IconOutboxRoundedFilled.tsx | 2 +- src/IconOutboxSharp.tsx | 2 +- src/IconOutboxSharpFilled.tsx | 2 +- src/IconOutdoorGardenOutlined.tsx | 2 +- src/IconOutdoorGardenOutlinedFilled.tsx | 2 +- src/IconOutdoorGardenRounded.tsx | 2 +- src/IconOutdoorGardenRoundedFilled.tsx | 2 +- src/IconOutdoorGardenSharp.tsx | 2 +- src/IconOutdoorGardenSharpFilled.tsx | 2 +- src/IconOutdoorGrillOutlined.tsx | 2 +- src/IconOutdoorGrillOutlinedFilled.tsx | 2 +- src/IconOutdoorGrillRounded.tsx | 2 +- src/IconOutdoorGrillRoundedFilled.tsx | 2 +- src/IconOutdoorGrillSharp.tsx | 2 +- src/IconOutdoorGrillSharpFilled.tsx | 2 +- src/IconOutgoingMailOutlined.tsx | 2 +- src/IconOutgoingMailOutlinedFilled.tsx | 2 +- src/IconOutgoingMailRounded.tsx | 2 +- src/IconOutgoingMailRoundedFilled.tsx | 2 +- src/IconOutgoingMailSharp.tsx | 2 +- src/IconOutgoingMailSharpFilled.tsx | 2 +- src/IconOutletOutlined.tsx | 2 +- src/IconOutletOutlinedFilled.tsx | 2 +- src/IconOutletRounded.tsx | 2 +- src/IconOutletRoundedFilled.tsx | 2 +- src/IconOutletSharp.tsx | 2 +- src/IconOutletSharpFilled.tsx | 2 +- src/IconOutpatientMedOutlined.tsx | 2 +- src/IconOutpatientMedOutlinedFilled.tsx | 2 +- src/IconOutpatientMedRounded.tsx | 2 +- src/IconOutpatientMedRoundedFilled.tsx | 2 +- src/IconOutpatientMedSharp.tsx | 2 +- src/IconOutpatientMedSharpFilled.tsx | 2 +- src/IconOutpatientOutlined.tsx | 2 +- src/IconOutpatientOutlinedFilled.tsx | 2 +- src/IconOutpatientRounded.tsx | 2 +- src/IconOutpatientRoundedFilled.tsx | 2 +- src/IconOutpatientSharp.tsx | 2 +- src/IconOutpatientSharpFilled.tsx | 2 +- src/IconOutputCircleOutlined.tsx | 2 +- src/IconOutputCircleOutlinedFilled.tsx | 2 +- src/IconOutputCircleRounded.tsx | 2 +- src/IconOutputCircleRoundedFilled.tsx | 2 +- src/IconOutputCircleSharp.tsx | 2 +- src/IconOutputCircleSharpFilled.tsx | 2 +- src/IconOutputOutlined.tsx | 2 +- src/IconOutputOutlinedFilled.tsx | 2 +- src/IconOutputRounded.tsx | 2 +- src/IconOutputRoundedFilled.tsx | 2 +- src/IconOutputSharp.tsx | 2 +- src/IconOutputSharpFilled.tsx | 2 +- src/IconOvenGenOutlined.tsx | 2 +- src/IconOvenGenOutlinedFilled.tsx | 2 +- src/IconOvenGenRounded.tsx | 2 +- src/IconOvenGenRoundedFilled.tsx | 2 +- src/IconOvenGenSharp.tsx | 2 +- src/IconOvenGenSharpFilled.tsx | 2 +- src/IconOvenOutlined.tsx | 2 +- src/IconOvenOutlinedFilled.tsx | 2 +- src/IconOvenRounded.tsx | 2 +- src/IconOvenRoundedFilled.tsx | 2 +- src/IconOvenSharp.tsx | 2 +- src/IconOvenSharpFilled.tsx | 2 +- src/IconOverviewKeyOutlined.tsx | 2 +- src/IconOverviewKeyOutlinedFilled.tsx | 2 +- src/IconOverviewKeyRounded.tsx | 2 +- src/IconOverviewKeyRoundedFilled.tsx | 2 +- src/IconOverviewKeySharp.tsx | 2 +- src/IconOverviewKeySharpFilled.tsx | 2 +- src/IconOverviewOutlined.tsx | 2 +- src/IconOverviewOutlinedFilled.tsx | 2 +- src/IconOverviewRounded.tsx | 2 +- src/IconOverviewRoundedFilled.tsx | 2 +- src/IconOverviewSharp.tsx | 2 +- src/IconOverviewSharpFilled.tsx | 2 +- src/IconOxygenSaturationOutlined.tsx | 2 +- src/IconOxygenSaturationOutlinedFilled.tsx | 2 +- src/IconOxygenSaturationRounded.tsx | 2 +- src/IconOxygenSaturationRoundedFilled.tsx | 2 +- src/IconOxygenSaturationSharp.tsx | 2 +- src/IconOxygenSaturationSharpFilled.tsx | 2 +- src/IconP2pOutlined.tsx | 2 +- src/IconP2pOutlinedFilled.tsx | 2 +- src/IconP2pRounded.tsx | 2 +- src/IconP2pRoundedFilled.tsx | 2 +- src/IconP2pSharp.tsx | 2 +- src/IconP2pSharpFilled.tsx | 2 +- src/IconPaceOutlined.tsx | 2 +- src/IconPaceOutlinedFilled.tsx | 2 +- src/IconPaceRounded.tsx | 2 +- src/IconPaceRoundedFilled.tsx | 2 +- src/IconPaceSharp.tsx | 2 +- src/IconPaceSharpFilled.tsx | 2 +- src/IconPacemakerOutlined.tsx | 2 +- src/IconPacemakerOutlinedFilled.tsx | 2 +- src/IconPacemakerRounded.tsx | 2 +- src/IconPacemakerRoundedFilled.tsx | 2 +- src/IconPacemakerSharp.tsx | 2 +- src/IconPacemakerSharpFilled.tsx | 2 +- src/IconPackage2Outlined.tsx | 2 +- src/IconPackage2OutlinedFilled.tsx | 2 +- src/IconPackage2Rounded.tsx | 2 +- src/IconPackage2RoundedFilled.tsx | 2 +- src/IconPackage2Sharp.tsx | 2 +- src/IconPackage2SharpFilled.tsx | 2 +- src/IconPackageOutlined.tsx | 2 +- src/IconPackageOutlinedFilled.tsx | 2 +- src/IconPackageRounded.tsx | 2 +- src/IconPackageRoundedFilled.tsx | 2 +- src/IconPackageSharp.tsx | 2 +- src/IconPackageSharpFilled.tsx | 2 +- src/IconPaddingOutlined.tsx | 2 +- src/IconPaddingOutlinedFilled.tsx | 2 +- src/IconPaddingRounded.tsx | 2 +- src/IconPaddingRoundedFilled.tsx | 2 +- src/IconPaddingSharp.tsx | 2 +- src/IconPaddingSharpFilled.tsx | 2 +- src/IconPageControlOutlined.tsx | 2 +- src/IconPageControlOutlinedFilled.tsx | 2 +- src/IconPageControlRounded.tsx | 2 +- src/IconPageControlRoundedFilled.tsx | 2 +- src/IconPageControlSharp.tsx | 2 +- src/IconPageControlSharpFilled.tsx | 2 +- src/IconPageInfoOutlined.tsx | 2 +- src/IconPageInfoOutlinedFilled.tsx | 2 +- src/IconPageInfoRounded.tsx | 2 +- src/IconPageInfoRoundedFilled.tsx | 2 +- src/IconPageInfoSharp.tsx | 2 +- src/IconPageInfoSharpFilled.tsx | 2 +- src/IconPagelessOutlined.tsx | 2 +- src/IconPagelessOutlinedFilled.tsx | 2 +- src/IconPagelessRounded.tsx | 2 +- src/IconPagelessRoundedFilled.tsx | 2 +- src/IconPagelessSharp.tsx | 2 +- src/IconPagelessSharpFilled.tsx | 2 +- src/IconPagesOutlined.tsx | 2 +- src/IconPagesOutlinedFilled.tsx | 2 +- src/IconPagesRounded.tsx | 2 +- src/IconPagesRoundedFilled.tsx | 2 +- src/IconPagesSharp.tsx | 2 +- src/IconPagesSharpFilled.tsx | 2 +- src/IconPageviewOutlined.tsx | 2 +- src/IconPageviewOutlinedFilled.tsx | 2 +- src/IconPageviewRounded.tsx | 2 +- src/IconPageviewRoundedFilled.tsx | 2 +- src/IconPageviewSharp.tsx | 2 +- src/IconPageviewSharpFilled.tsx | 2 +- src/IconPaidOutlined.tsx | 2 +- src/IconPaidOutlinedFilled.tsx | 2 +- src/IconPaidRounded.tsx | 2 +- src/IconPaidRoundedFilled.tsx | 2 +- src/IconPaidSharp.tsx | 2 +- src/IconPaidSharpFilled.tsx | 2 +- src/IconPaletteOutlined.tsx | 2 +- src/IconPaletteOutlinedFilled.tsx | 2 +- src/IconPaletteRounded.tsx | 2 +- src/IconPaletteRoundedFilled.tsx | 2 +- src/IconPaletteSharp.tsx | 2 +- src/IconPaletteSharpFilled.tsx | 2 +- src/IconPalletOutlined.tsx | 2 +- src/IconPalletOutlinedFilled.tsx | 2 +- src/IconPalletRounded.tsx | 2 +- src/IconPalletRoundedFilled.tsx | 2 +- src/IconPalletSharp.tsx | 2 +- src/IconPalletSharpFilled.tsx | 2 +- src/IconPanToolAltOutlined.tsx | 2 +- src/IconPanToolAltOutlinedFilled.tsx | 2 +- src/IconPanToolAltRounded.tsx | 2 +- src/IconPanToolAltRoundedFilled.tsx | 2 +- src/IconPanToolAltSharp.tsx | 2 +- src/IconPanToolAltSharpFilled.tsx | 2 +- src/IconPanToolOutlined.tsx | 2 +- src/IconPanToolOutlinedFilled.tsx | 2 +- src/IconPanToolRounded.tsx | 2 +- src/IconPanToolRoundedFilled.tsx | 2 +- src/IconPanToolSharp.tsx | 2 +- src/IconPanToolSharpFilled.tsx | 2 +- src/IconPanZoomOutlined.tsx | 2 +- src/IconPanZoomOutlinedFilled.tsx | 2 +- src/IconPanZoomRounded.tsx | 2 +- src/IconPanZoomRoundedFilled.tsx | 2 +- src/IconPanZoomSharp.tsx | 2 +- src/IconPanZoomSharpFilled.tsx | 2 +- src/IconPanoramaHorizontalOutlined.tsx | 2 +- src/IconPanoramaHorizontalOutlinedFilled.tsx | 2 +- src/IconPanoramaHorizontalRounded.tsx | 2 +- src/IconPanoramaHorizontalRoundedFilled.tsx | 2 +- src/IconPanoramaHorizontalSharp.tsx | 2 +- src/IconPanoramaHorizontalSharpFilled.tsx | 2 +- src/IconPanoramaOutlined.tsx | 2 +- src/IconPanoramaOutlinedFilled.tsx | 2 +- src/IconPanoramaPhotosphereOutlined.tsx | 2 +- src/IconPanoramaPhotosphereOutlinedFilled.tsx | 2 +- src/IconPanoramaPhotosphereRounded.tsx | 2 +- src/IconPanoramaPhotosphereRoundedFilled.tsx | 2 +- src/IconPanoramaPhotosphereSharp.tsx | 2 +- src/IconPanoramaPhotosphereSharpFilled.tsx | 2 +- src/IconPanoramaRounded.tsx | 2 +- src/IconPanoramaRoundedFilled.tsx | 2 +- src/IconPanoramaSharp.tsx | 2 +- src/IconPanoramaSharpFilled.tsx | 2 +- src/IconPanoramaVerticalOutlined.tsx | 2 +- src/IconPanoramaVerticalOutlinedFilled.tsx | 2 +- src/IconPanoramaVerticalRounded.tsx | 2 +- src/IconPanoramaVerticalRoundedFilled.tsx | 2 +- src/IconPanoramaVerticalSharp.tsx | 2 +- src/IconPanoramaVerticalSharpFilled.tsx | 2 +- src/IconPanoramaWideAngleOutlined.tsx | 2 +- src/IconPanoramaWideAngleOutlinedFilled.tsx | 2 +- src/IconPanoramaWideAngleRounded.tsx | 2 +- src/IconPanoramaWideAngleRoundedFilled.tsx | 2 +- src/IconPanoramaWideAngleSharp.tsx | 2 +- src/IconPanoramaWideAngleSharpFilled.tsx | 2 +- src/IconParaglidingOutlined.tsx | 2 +- src/IconParaglidingOutlinedFilled.tsx | 2 +- src/IconParaglidingRounded.tsx | 2 +- src/IconParaglidingRoundedFilled.tsx | 2 +- src/IconParaglidingSharp.tsx | 2 +- src/IconParaglidingSharpFilled.tsx | 2 +- src/IconParkOutlined.tsx | 2 +- src/IconParkOutlinedFilled.tsx | 2 +- src/IconParkRounded.tsx | 2 +- src/IconParkRoundedFilled.tsx | 2 +- src/IconParkSharp.tsx | 2 +- src/IconParkSharpFilled.tsx | 2 +- src/IconPartlyCloudyDayOutlined.tsx | 2 +- src/IconPartlyCloudyDayOutlinedFilled.tsx | 2 +- src/IconPartlyCloudyDayRounded.tsx | 2 +- src/IconPartlyCloudyDayRoundedFilled.tsx | 2 +- src/IconPartlyCloudyDaySharp.tsx | 2 +- src/IconPartlyCloudyDaySharpFilled.tsx | 2 +- src/IconPartlyCloudyNightOutlined.tsx | 2 +- src/IconPartlyCloudyNightOutlinedFilled.tsx | 2 +- src/IconPartlyCloudyNightRounded.tsx | 2 +- src/IconPartlyCloudyNightRoundedFilled.tsx | 2 +- src/IconPartlyCloudyNightSharp.tsx | 2 +- src/IconPartlyCloudyNightSharpFilled.tsx | 2 +- src/IconPartnerExchangeOutlined.tsx | 2 +- src/IconPartnerExchangeOutlinedFilled.tsx | 2 +- src/IconPartnerExchangeRounded.tsx | 2 +- src/IconPartnerExchangeRoundedFilled.tsx | 2 +- src/IconPartnerExchangeSharp.tsx | 2 +- src/IconPartnerExchangeSharpFilled.tsx | 2 +- src/IconPartnerReportsOutlined.tsx | 2 +- src/IconPartnerReportsOutlinedFilled.tsx | 2 +- src/IconPartnerReportsRounded.tsx | 2 +- src/IconPartnerReportsRoundedFilled.tsx | 2 +- src/IconPartnerReportsSharp.tsx | 2 +- src/IconPartnerReportsSharpFilled.tsx | 2 +- src/IconPartyModeOutlined.tsx | 2 +- src/IconPartyModeOutlinedFilled.tsx | 2 +- src/IconPartyModeRounded.tsx | 2 +- src/IconPartyModeRoundedFilled.tsx | 2 +- src/IconPartyModeSharp.tsx | 2 +- src/IconPartyModeSharpFilled.tsx | 2 +- src/IconPasskeyOutlined.tsx | 2 +- src/IconPasskeyOutlinedFilled.tsx | 2 +- src/IconPasskeyRounded.tsx | 2 +- src/IconPasskeyRoundedFilled.tsx | 2 +- src/IconPasskeySharp.tsx | 2 +- src/IconPasskeySharpFilled.tsx | 2 +- src/IconPassword2OffOutlined.tsx | 2 +- src/IconPassword2OffOutlinedFilled.tsx | 2 +- src/IconPassword2OffRounded.tsx | 2 +- src/IconPassword2OffRoundedFilled.tsx | 2 +- src/IconPassword2OffSharp.tsx | 2 +- src/IconPassword2OffSharpFilled.tsx | 2 +- src/IconPassword2Outlined.tsx | 2 +- src/IconPassword2OutlinedFilled.tsx | 2 +- src/IconPassword2Rounded.tsx | 2 +- src/IconPassword2RoundedFilled.tsx | 2 +- src/IconPassword2Sharp.tsx | 2 +- src/IconPassword2SharpFilled.tsx | 2 +- src/IconPasswordOutlined.tsx | 2 +- src/IconPasswordOutlinedFilled.tsx | 2 +- src/IconPasswordRounded.tsx | 2 +- src/IconPasswordRoundedFilled.tsx | 2 +- src/IconPasswordSharp.tsx | 2 +- src/IconPasswordSharpFilled.tsx | 2 +- src/IconPatientListOutlined.tsx | 2 +- src/IconPatientListOutlinedFilled.tsx | 2 +- src/IconPatientListRounded.tsx | 2 +- src/IconPatientListRoundedFilled.tsx | 2 +- src/IconPatientListSharp.tsx | 2 +- src/IconPatientListSharpFilled.tsx | 2 +- src/IconPatternOutlined.tsx | 2 +- src/IconPatternOutlinedFilled.tsx | 2 +- src/IconPatternRounded.tsx | 2 +- src/IconPatternRoundedFilled.tsx | 2 +- src/IconPatternSharp.tsx | 2 +- src/IconPatternSharpFilled.tsx | 2 +- src/IconPauseCircleOutlined.tsx | 2 +- src/IconPauseCircleOutlinedFilled.tsx | 2 +- src/IconPauseCircleRounded.tsx | 2 +- src/IconPauseCircleRoundedFilled.tsx | 2 +- src/IconPauseCircleSharp.tsx | 2 +- src/IconPauseCircleSharpFilled.tsx | 2 +- src/IconPauseOutlined.tsx | 2 +- src/IconPauseOutlinedFilled.tsx | 2 +- src/IconPausePresentationOutlined.tsx | 2 +- src/IconPausePresentationOutlinedFilled.tsx | 2 +- src/IconPausePresentationRounded.tsx | 2 +- src/IconPausePresentationRoundedFilled.tsx | 2 +- src/IconPausePresentationSharp.tsx | 2 +- src/IconPausePresentationSharpFilled.tsx | 2 +- src/IconPauseRounded.tsx | 2 +- src/IconPauseRoundedFilled.tsx | 2 +- src/IconPauseSharp.tsx | 2 +- src/IconPauseSharpFilled.tsx | 2 +- src/IconPaymentsOutlined.tsx | 2 +- src/IconPaymentsOutlinedFilled.tsx | 2 +- src/IconPaymentsRounded.tsx | 2 +- src/IconPaymentsRoundedFilled.tsx | 2 +- src/IconPaymentsSharp.tsx | 2 +- src/IconPaymentsSharpFilled.tsx | 2 +- src/IconPedalBikeOutlined.tsx | 2 +- src/IconPedalBikeOutlinedFilled.tsx | 2 +- src/IconPedalBikeRounded.tsx | 2 +- src/IconPedalBikeRoundedFilled.tsx | 2 +- src/IconPedalBikeSharp.tsx | 2 +- src/IconPedalBikeSharpFilled.tsx | 2 +- src/IconPediatricsOutlined.tsx | 2 +- src/IconPediatricsOutlinedFilled.tsx | 2 +- src/IconPediatricsRounded.tsx | 2 +- src/IconPediatricsRoundedFilled.tsx | 2 +- src/IconPediatricsSharp.tsx | 2 +- src/IconPediatricsSharpFilled.tsx | 2 +- src/IconPenSize1Outlined.tsx | 2 +- src/IconPenSize1OutlinedFilled.tsx | 2 +- src/IconPenSize1Rounded.tsx | 2 +- src/IconPenSize1RoundedFilled.tsx | 2 +- src/IconPenSize1Sharp.tsx | 2 +- src/IconPenSize1SharpFilled.tsx | 2 +- src/IconPenSize2Outlined.tsx | 2 +- src/IconPenSize2OutlinedFilled.tsx | 2 +- src/IconPenSize2Rounded.tsx | 2 +- src/IconPenSize2RoundedFilled.tsx | 2 +- src/IconPenSize2Sharp.tsx | 2 +- src/IconPenSize2SharpFilled.tsx | 2 +- src/IconPenSize3Outlined.tsx | 2 +- src/IconPenSize3OutlinedFilled.tsx | 2 +- src/IconPenSize3Rounded.tsx | 2 +- src/IconPenSize3RoundedFilled.tsx | 2 +- src/IconPenSize3Sharp.tsx | 2 +- src/IconPenSize3SharpFilled.tsx | 2 +- src/IconPenSize4Outlined.tsx | 2 +- src/IconPenSize4OutlinedFilled.tsx | 2 +- src/IconPenSize4Rounded.tsx | 2 +- src/IconPenSize4RoundedFilled.tsx | 2 +- src/IconPenSize4Sharp.tsx | 2 +- src/IconPenSize4SharpFilled.tsx | 2 +- src/IconPenSize5Outlined.tsx | 2 +- src/IconPenSize5OutlinedFilled.tsx | 2 +- src/IconPenSize5Rounded.tsx | 2 +- src/IconPenSize5RoundedFilled.tsx | 2 +- src/IconPenSize5Sharp.tsx | 2 +- src/IconPenSize5SharpFilled.tsx | 2 +- src/IconPendingActionsOutlined.tsx | 2 +- src/IconPendingActionsOutlinedFilled.tsx | 2 +- src/IconPendingActionsRounded.tsx | 2 +- src/IconPendingActionsRoundedFilled.tsx | 2 +- src/IconPendingActionsSharp.tsx | 2 +- src/IconPendingActionsSharpFilled.tsx | 2 +- src/IconPendingOutlined.tsx | 2 +- src/IconPendingOutlinedFilled.tsx | 2 +- src/IconPendingRounded.tsx | 2 +- src/IconPendingRoundedFilled.tsx | 2 +- src/IconPendingSharp.tsx | 2 +- src/IconPendingSharpFilled.tsx | 2 +- src/IconPentagonOutlined.tsx | 2 +- src/IconPentagonOutlinedFilled.tsx | 2 +- src/IconPentagonRounded.tsx | 2 +- src/IconPentagonRoundedFilled.tsx | 2 +- src/IconPentagonSharp.tsx | 2 +- src/IconPentagonSharpFilled.tsx | 2 +- src/IconPercentOutlined.tsx | 2 +- src/IconPercentOutlinedFilled.tsx | 2 +- src/IconPercentRounded.tsx | 2 +- src/IconPercentRoundedFilled.tsx | 2 +- src/IconPercentSharp.tsx | 2 +- src/IconPercentSharpFilled.tsx | 2 +- src/IconPergolaOutlined.tsx | 2 +- src/IconPergolaOutlinedFilled.tsx | 2 +- src/IconPergolaRounded.tsx | 2 +- src/IconPergolaRoundedFilled.tsx | 2 +- src/IconPergolaSharp.tsx | 2 +- src/IconPergolaSharpFilled.tsx | 2 +- src/IconPermCameraMicOutlined.tsx | 2 +- src/IconPermCameraMicOutlinedFilled.tsx | 2 +- src/IconPermCameraMicRounded.tsx | 2 +- src/IconPermCameraMicRoundedFilled.tsx | 2 +- src/IconPermCameraMicSharp.tsx | 2 +- src/IconPermCameraMicSharpFilled.tsx | 2 +- src/IconPermContactCalendarOutlined.tsx | 2 +- src/IconPermContactCalendarOutlinedFilled.tsx | 2 +- src/IconPermContactCalendarRounded.tsx | 2 +- src/IconPermContactCalendarRoundedFilled.tsx | 2 +- src/IconPermContactCalendarSharp.tsx | 2 +- src/IconPermContactCalendarSharpFilled.tsx | 2 +- src/IconPermDataSettingOutlined.tsx | 2 +- src/IconPermDataSettingOutlinedFilled.tsx | 2 +- src/IconPermDataSettingRounded.tsx | 2 +- src/IconPermDataSettingRoundedFilled.tsx | 2 +- src/IconPermDataSettingSharp.tsx | 2 +- src/IconPermDataSettingSharpFilled.tsx | 2 +- src/IconPermDeviceInformationOutlined.tsx | 2 +- src/IconPermDeviceInformationOutlinedFilled.tsx | 2 +- src/IconPermDeviceInformationRounded.tsx | 2 +- src/IconPermDeviceInformationRoundedFilled.tsx | 2 +- src/IconPermDeviceInformationSharp.tsx | 2 +- src/IconPermDeviceInformationSharpFilled.tsx | 2 +- src/IconPermMediaOutlined.tsx | 2 +- src/IconPermMediaOutlinedFilled.tsx | 2 +- src/IconPermMediaRounded.tsx | 2 +- src/IconPermMediaRoundedFilled.tsx | 2 +- src/IconPermMediaSharp.tsx | 2 +- src/IconPermMediaSharpFilled.tsx | 2 +- src/IconPermPhoneMsgOutlined.tsx | 2 +- src/IconPermPhoneMsgOutlinedFilled.tsx | 2 +- src/IconPermPhoneMsgRounded.tsx | 2 +- src/IconPermPhoneMsgRoundedFilled.tsx | 2 +- src/IconPermPhoneMsgSharp.tsx | 2 +- src/IconPermPhoneMsgSharpFilled.tsx | 2 +- src/IconPermScanWifiOutlined.tsx | 2 +- src/IconPermScanWifiOutlinedFilled.tsx | 2 +- src/IconPermScanWifiRounded.tsx | 2 +- src/IconPermScanWifiRoundedFilled.tsx | 2 +- src/IconPermScanWifiSharp.tsx | 2 +- src/IconPermScanWifiSharpFilled.tsx | 2 +- src/IconPerson2Outlined.tsx | 2 +- src/IconPerson2OutlinedFilled.tsx | 2 +- src/IconPerson2Rounded.tsx | 2 +- src/IconPerson2RoundedFilled.tsx | 2 +- src/IconPerson2Sharp.tsx | 2 +- src/IconPerson2SharpFilled.tsx | 2 +- src/IconPerson3Outlined.tsx | 2 +- src/IconPerson3OutlinedFilled.tsx | 2 +- src/IconPerson3Rounded.tsx | 2 +- src/IconPerson3RoundedFilled.tsx | 2 +- src/IconPerson3Sharp.tsx | 2 +- src/IconPerson3SharpFilled.tsx | 2 +- src/IconPerson4Outlined.tsx | 2 +- src/IconPerson4OutlinedFilled.tsx | 2 +- src/IconPerson4Rounded.tsx | 2 +- src/IconPerson4RoundedFilled.tsx | 2 +- src/IconPerson4Sharp.tsx | 2 +- src/IconPerson4SharpFilled.tsx | 2 +- src/IconPersonAddDisabledOutlined.tsx | 2 +- src/IconPersonAddDisabledOutlinedFilled.tsx | 2 +- src/IconPersonAddDisabledRounded.tsx | 2 +- src/IconPersonAddDisabledRoundedFilled.tsx | 2 +- src/IconPersonAddDisabledSharp.tsx | 2 +- src/IconPersonAddDisabledSharpFilled.tsx | 2 +- src/IconPersonAddOutlined.tsx | 2 +- src/IconPersonAddOutlinedFilled.tsx | 2 +- src/IconPersonAddRounded.tsx | 2 +- src/IconPersonAddRoundedFilled.tsx | 2 +- src/IconPersonAddSharp.tsx | 2 +- src/IconPersonAddSharpFilled.tsx | 2 +- src/IconPersonAlertOutlined.tsx | 2 +- src/IconPersonAlertOutlinedFilled.tsx | 2 +- src/IconPersonAlertRounded.tsx | 2 +- src/IconPersonAlertRoundedFilled.tsx | 2 +- src/IconPersonAlertSharp.tsx | 2 +- src/IconPersonAlertSharpFilled.tsx | 2 +- src/IconPersonApronOutlined.tsx | 2 +- src/IconPersonApronOutlinedFilled.tsx | 2 +- src/IconPersonApronRounded.tsx | 2 +- src/IconPersonApronRoundedFilled.tsx | 2 +- src/IconPersonApronSharp.tsx | 2 +- src/IconPersonApronSharpFilled.tsx | 2 +- src/IconPersonBookOutlined.tsx | 2 +- src/IconPersonBookOutlinedFilled.tsx | 2 +- src/IconPersonBookRounded.tsx | 2 +- src/IconPersonBookRoundedFilled.tsx | 2 +- src/IconPersonBookSharp.tsx | 2 +- src/IconPersonBookSharpFilled.tsx | 2 +- src/IconPersonCancelOutlined.tsx | 2 +- src/IconPersonCancelOutlinedFilled.tsx | 2 +- src/IconPersonCancelRounded.tsx | 2 +- src/IconPersonCancelRoundedFilled.tsx | 2 +- src/IconPersonCancelSharp.tsx | 2 +- src/IconPersonCancelSharpFilled.tsx | 2 +- src/IconPersonCelebrateOutlined.tsx | 2 +- src/IconPersonCelebrateOutlinedFilled.tsx | 2 +- src/IconPersonCelebrateRounded.tsx | 2 +- src/IconPersonCelebrateRoundedFilled.tsx | 2 +- src/IconPersonCelebrateSharp.tsx | 2 +- src/IconPersonCelebrateSharpFilled.tsx | 2 +- src/IconPersonCheckOutlined.tsx | 2 +- src/IconPersonCheckOutlinedFilled.tsx | 2 +- src/IconPersonCheckRounded.tsx | 2 +- src/IconPersonCheckRoundedFilled.tsx | 2 +- src/IconPersonCheckSharp.tsx | 2 +- src/IconPersonCheckSharpFilled.tsx | 2 +- src/IconPersonEditOutlined.tsx | 2 +- src/IconPersonEditOutlinedFilled.tsx | 2 +- src/IconPersonEditRounded.tsx | 2 +- src/IconPersonEditRoundedFilled.tsx | 2 +- src/IconPersonEditSharp.tsx | 2 +- src/IconPersonEditSharpFilled.tsx | 2 +- src/IconPersonOffOutlined.tsx | 2 +- src/IconPersonOffOutlinedFilled.tsx | 2 +- src/IconPersonOffRounded.tsx | 2 +- src/IconPersonOffRoundedFilled.tsx | 2 +- src/IconPersonOffSharp.tsx | 2 +- src/IconPersonOffSharpFilled.tsx | 2 +- src/IconPersonOutlined.tsx | 2 +- src/IconPersonOutlinedFilled.tsx | 2 +- src/IconPersonPinCircleOutlined.tsx | 2 +- src/IconPersonPinCircleOutlinedFilled.tsx | 2 +- src/IconPersonPinCircleRounded.tsx | 2 +- src/IconPersonPinCircleRoundedFilled.tsx | 2 +- src/IconPersonPinCircleSharp.tsx | 2 +- src/IconPersonPinCircleSharpFilled.tsx | 2 +- src/IconPersonPinOutlined.tsx | 2 +- src/IconPersonPinOutlinedFilled.tsx | 2 +- src/IconPersonPinRounded.tsx | 2 +- src/IconPersonPinRoundedFilled.tsx | 2 +- src/IconPersonPinSharp.tsx | 2 +- src/IconPersonPinSharpFilled.tsx | 2 +- src/IconPersonPlayOutlined.tsx | 2 +- src/IconPersonPlayOutlinedFilled.tsx | 2 +- src/IconPersonPlayRounded.tsx | 2 +- src/IconPersonPlayRoundedFilled.tsx | 2 +- src/IconPersonPlaySharp.tsx | 2 +- src/IconPersonPlaySharpFilled.tsx | 2 +- src/IconPersonRaisedHandOutlined.tsx | 2 +- src/IconPersonRaisedHandOutlinedFilled.tsx | 2 +- src/IconPersonRaisedHandRounded.tsx | 2 +- src/IconPersonRaisedHandRoundedFilled.tsx | 2 +- src/IconPersonRaisedHandSharp.tsx | 2 +- src/IconPersonRaisedHandSharpFilled.tsx | 2 +- src/IconPersonRemoveOutlined.tsx | 2 +- src/IconPersonRemoveOutlinedFilled.tsx | 2 +- src/IconPersonRemoveRounded.tsx | 2 +- src/IconPersonRemoveRoundedFilled.tsx | 2 +- src/IconPersonRemoveSharp.tsx | 2 +- src/IconPersonRemoveSharpFilled.tsx | 2 +- src/IconPersonRounded.tsx | 2 +- src/IconPersonRoundedFilled.tsx | 2 +- src/IconPersonSearchOutlined.tsx | 2 +- src/IconPersonSearchOutlinedFilled.tsx | 2 +- src/IconPersonSearchRounded.tsx | 2 +- src/IconPersonSearchRoundedFilled.tsx | 2 +- src/IconPersonSearchSharp.tsx | 2 +- src/IconPersonSearchSharpFilled.tsx | 2 +- src/IconPersonSharp.tsx | 2 +- src/IconPersonSharpFilled.tsx | 2 +- src/IconPersonalBagOffOutlined.tsx | 2 +- src/IconPersonalBagOffOutlinedFilled.tsx | 2 +- src/IconPersonalBagOffRounded.tsx | 2 +- src/IconPersonalBagOffRoundedFilled.tsx | 2 +- src/IconPersonalBagOffSharp.tsx | 2 +- src/IconPersonalBagOffSharpFilled.tsx | 2 +- src/IconPersonalBagOutlined.tsx | 2 +- src/IconPersonalBagOutlinedFilled.tsx | 2 +- src/IconPersonalBagQuestionOutlined.tsx | 2 +- src/IconPersonalBagQuestionOutlinedFilled.tsx | 2 +- src/IconPersonalBagQuestionRounded.tsx | 2 +- src/IconPersonalBagQuestionRoundedFilled.tsx | 2 +- src/IconPersonalBagQuestionSharp.tsx | 2 +- src/IconPersonalBagQuestionSharpFilled.tsx | 2 +- src/IconPersonalBagRounded.tsx | 2 +- src/IconPersonalBagRoundedFilled.tsx | 2 +- src/IconPersonalBagSharp.tsx | 2 +- src/IconPersonalBagSharpFilled.tsx | 2 +- src/IconPersonalInjuryOutlined.tsx | 2 +- src/IconPersonalInjuryOutlinedFilled.tsx | 2 +- src/IconPersonalInjuryRounded.tsx | 2 +- src/IconPersonalInjuryRoundedFilled.tsx | 2 +- src/IconPersonalInjurySharp.tsx | 2 +- src/IconPersonalInjurySharpFilled.tsx | 2 +- src/IconPersonalPlacesOutlined.tsx | 2 +- src/IconPersonalPlacesOutlinedFilled.tsx | 2 +- src/IconPersonalPlacesRounded.tsx | 2 +- src/IconPersonalPlacesRoundedFilled.tsx | 2 +- src/IconPersonalPlacesSharp.tsx | 2 +- src/IconPersonalPlacesSharpFilled.tsx | 2 +- src/IconPestControlOutlined.tsx | 2 +- src/IconPestControlOutlinedFilled.tsx | 2 +- src/IconPestControlRodentOutlined.tsx | 2 +- src/IconPestControlRodentOutlinedFilled.tsx | 2 +- src/IconPestControlRodentRounded.tsx | 2 +- src/IconPestControlRodentRoundedFilled.tsx | 2 +- src/IconPestControlRodentSharp.tsx | 2 +- src/IconPestControlRodentSharpFilled.tsx | 2 +- src/IconPestControlRounded.tsx | 2 +- src/IconPestControlRoundedFilled.tsx | 2 +- src/IconPestControlSharp.tsx | 2 +- src/IconPestControlSharpFilled.tsx | 2 +- src/IconPetSuppliesOutlined.tsx | 2 +- src/IconPetSuppliesOutlinedFilled.tsx | 2 +- src/IconPetSuppliesRounded.tsx | 2 +- src/IconPetSuppliesRoundedFilled.tsx | 2 +- src/IconPetSuppliesSharp.tsx | 2 +- src/IconPetSuppliesSharpFilled.tsx | 2 +- src/IconPetsOutlined.tsx | 2 +- src/IconPetsOutlinedFilled.tsx | 2 +- src/IconPetsRounded.tsx | 2 +- src/IconPetsRoundedFilled.tsx | 2 +- src/IconPetsSharp.tsx | 2 +- src/IconPetsSharpFilled.tsx | 2 +- src/IconPhishingOutlined.tsx | 2 +- src/IconPhishingOutlinedFilled.tsx | 2 +- src/IconPhishingRounded.tsx | 2 +- src/IconPhishingRoundedFilled.tsx | 2 +- src/IconPhishingSharp.tsx | 2 +- src/IconPhishingSharpFilled.tsx | 2 +- src/IconPhoneAndroidOutlined.tsx | 2 +- src/IconPhoneAndroidOutlinedFilled.tsx | 2 +- src/IconPhoneAndroidRounded.tsx | 2 +- src/IconPhoneAndroidRoundedFilled.tsx | 2 +- src/IconPhoneAndroidSharp.tsx | 2 +- src/IconPhoneAndroidSharpFilled.tsx | 2 +- src/IconPhoneBluetoothSpeakerOutlined.tsx | 2 +- src/IconPhoneBluetoothSpeakerOutlinedFilled.tsx | 2 +- src/IconPhoneBluetoothSpeakerRounded.tsx | 2 +- src/IconPhoneBluetoothSpeakerRoundedFilled.tsx | 2 +- src/IconPhoneBluetoothSpeakerSharp.tsx | 2 +- src/IconPhoneBluetoothSpeakerSharpFilled.tsx | 2 +- src/IconPhoneCallbackOutlined.tsx | 2 +- src/IconPhoneCallbackOutlinedFilled.tsx | 2 +- src/IconPhoneCallbackRounded.tsx | 2 +- src/IconPhoneCallbackRoundedFilled.tsx | 2 +- src/IconPhoneCallbackSharp.tsx | 2 +- src/IconPhoneCallbackSharpFilled.tsx | 2 +- src/IconPhoneDisabledOutlined.tsx | 2 +- src/IconPhoneDisabledOutlinedFilled.tsx | 2 +- src/IconPhoneDisabledRounded.tsx | 2 +- src/IconPhoneDisabledRoundedFilled.tsx | 2 +- src/IconPhoneDisabledSharp.tsx | 2 +- src/IconPhoneDisabledSharpFilled.tsx | 2 +- src/IconPhoneEnabledOutlined.tsx | 2 +- src/IconPhoneEnabledOutlinedFilled.tsx | 2 +- src/IconPhoneEnabledRounded.tsx | 2 +- src/IconPhoneEnabledRoundedFilled.tsx | 2 +- src/IconPhoneEnabledSharp.tsx | 2 +- src/IconPhoneEnabledSharpFilled.tsx | 2 +- src/IconPhoneForwardedOutlined.tsx | 2 +- src/IconPhoneForwardedOutlinedFilled.tsx | 2 +- src/IconPhoneForwardedRounded.tsx | 2 +- src/IconPhoneForwardedRoundedFilled.tsx | 2 +- src/IconPhoneForwardedSharp.tsx | 2 +- src/IconPhoneForwardedSharpFilled.tsx | 2 +- src/IconPhoneInTalkOutlined.tsx | 2 +- src/IconPhoneInTalkOutlinedFilled.tsx | 2 +- src/IconPhoneInTalkRounded.tsx | 2 +- src/IconPhoneInTalkRoundedFilled.tsx | 2 +- src/IconPhoneInTalkSharp.tsx | 2 +- src/IconPhoneInTalkSharpFilled.tsx | 2 +- src/IconPhoneIphoneOutlined.tsx | 2 +- src/IconPhoneIphoneOutlinedFilled.tsx | 2 +- src/IconPhoneIphoneRounded.tsx | 2 +- src/IconPhoneIphoneRoundedFilled.tsx | 2 +- src/IconPhoneIphoneSharp.tsx | 2 +- src/IconPhoneIphoneSharpFilled.tsx | 2 +- src/IconPhoneLockedOutlined.tsx | 2 +- src/IconPhoneLockedOutlinedFilled.tsx | 2 +- src/IconPhoneLockedRounded.tsx | 2 +- src/IconPhoneLockedRoundedFilled.tsx | 2 +- src/IconPhoneLockedSharp.tsx | 2 +- src/IconPhoneLockedSharpFilled.tsx | 2 +- src/IconPhoneMissedOutlined.tsx | 2 +- src/IconPhoneMissedOutlinedFilled.tsx | 2 +- src/IconPhoneMissedRounded.tsx | 2 +- src/IconPhoneMissedRoundedFilled.tsx | 2 +- src/IconPhoneMissedSharp.tsx | 2 +- src/IconPhoneMissedSharpFilled.tsx | 2 +- src/IconPhonePausedOutlined.tsx | 2 +- src/IconPhonePausedOutlinedFilled.tsx | 2 +- src/IconPhonePausedRounded.tsx | 2 +- src/IconPhonePausedRoundedFilled.tsx | 2 +- src/IconPhonePausedSharp.tsx | 2 +- src/IconPhonePausedSharpFilled.tsx | 2 +- src/IconPhonelinkEraseOutlined.tsx | 2 +- src/IconPhonelinkEraseOutlinedFilled.tsx | 2 +- src/IconPhonelinkEraseRounded.tsx | 2 +- src/IconPhonelinkEraseRoundedFilled.tsx | 2 +- src/IconPhonelinkEraseSharp.tsx | 2 +- src/IconPhonelinkEraseSharpFilled.tsx | 2 +- src/IconPhonelinkLockOutlined.tsx | 2 +- src/IconPhonelinkLockOutlinedFilled.tsx | 2 +- src/IconPhonelinkLockRounded.tsx | 2 +- src/IconPhonelinkLockRoundedFilled.tsx | 2 +- src/IconPhonelinkLockSharp.tsx | 2 +- src/IconPhonelinkLockSharpFilled.tsx | 2 +- src/IconPhonelinkOffOutlined.tsx | 2 +- src/IconPhonelinkOffOutlinedFilled.tsx | 2 +- src/IconPhonelinkOffRounded.tsx | 2 +- src/IconPhonelinkOffRoundedFilled.tsx | 2 +- src/IconPhonelinkOffSharp.tsx | 2 +- src/IconPhonelinkOffSharpFilled.tsx | 2 +- src/IconPhonelinkRingOffOutlined.tsx | 2 +- src/IconPhonelinkRingOffOutlinedFilled.tsx | 2 +- src/IconPhonelinkRingOffRounded.tsx | 2 +- src/IconPhonelinkRingOffRoundedFilled.tsx | 2 +- src/IconPhonelinkRingOffSharp.tsx | 2 +- src/IconPhonelinkRingOffSharpFilled.tsx | 2 +- src/IconPhonelinkRingOutlined.tsx | 2 +- src/IconPhonelinkRingOutlinedFilled.tsx | 2 +- src/IconPhonelinkRingRounded.tsx | 2 +- src/IconPhonelinkRingRoundedFilled.tsx | 2 +- src/IconPhonelinkRingSharp.tsx | 2 +- src/IconPhonelinkRingSharpFilled.tsx | 2 +- src/IconPhonelinkSetupOutlined.tsx | 2 +- src/IconPhonelinkSetupOutlinedFilled.tsx | 2 +- src/IconPhonelinkSetupRounded.tsx | 2 +- src/IconPhonelinkSetupRoundedFilled.tsx | 2 +- src/IconPhonelinkSetupSharp.tsx | 2 +- src/IconPhonelinkSetupSharpFilled.tsx | 2 +- src/IconPhotoAlbumOutlined.tsx | 2 +- src/IconPhotoAlbumOutlinedFilled.tsx | 2 +- src/IconPhotoAlbumRounded.tsx | 2 +- src/IconPhotoAlbumRoundedFilled.tsx | 2 +- src/IconPhotoAlbumSharp.tsx | 2 +- src/IconPhotoAlbumSharpFilled.tsx | 2 +- src/IconPhotoAutoMergeOutlined.tsx | 2 +- src/IconPhotoAutoMergeOutlinedFilled.tsx | 2 +- src/IconPhotoAutoMergeRounded.tsx | 2 +- src/IconPhotoAutoMergeRoundedFilled.tsx | 2 +- src/IconPhotoAutoMergeSharp.tsx | 2 +- src/IconPhotoAutoMergeSharpFilled.tsx | 2 +- src/IconPhotoCameraBackOutlined.tsx | 2 +- src/IconPhotoCameraBackOutlinedFilled.tsx | 2 +- src/IconPhotoCameraBackRounded.tsx | 2 +- src/IconPhotoCameraBackRoundedFilled.tsx | 2 +- src/IconPhotoCameraBackSharp.tsx | 2 +- src/IconPhotoCameraBackSharpFilled.tsx | 2 +- src/IconPhotoCameraFrontOutlined.tsx | 2 +- src/IconPhotoCameraFrontOutlinedFilled.tsx | 2 +- src/IconPhotoCameraFrontRounded.tsx | 2 +- src/IconPhotoCameraFrontRoundedFilled.tsx | 2 +- src/IconPhotoCameraFrontSharp.tsx | 2 +- src/IconPhotoCameraFrontSharpFilled.tsx | 2 +- src/IconPhotoCameraOutlined.tsx | 2 +- src/IconPhotoCameraOutlinedFilled.tsx | 2 +- src/IconPhotoCameraRounded.tsx | 2 +- src/IconPhotoCameraRoundedFilled.tsx | 2 +- src/IconPhotoCameraSharp.tsx | 2 +- src/IconPhotoCameraSharpFilled.tsx | 2 +- src/IconPhotoFrameOutlined.tsx | 2 +- src/IconPhotoFrameOutlinedFilled.tsx | 2 +- src/IconPhotoFrameRounded.tsx | 2 +- src/IconPhotoFrameRoundedFilled.tsx | 2 +- src/IconPhotoFrameSharp.tsx | 2 +- src/IconPhotoFrameSharpFilled.tsx | 2 +- src/IconPhotoLibraryOutlined.tsx | 2 +- src/IconPhotoLibraryOutlinedFilled.tsx | 2 +- src/IconPhotoLibraryRounded.tsx | 2 +- src/IconPhotoLibraryRoundedFilled.tsx | 2 +- src/IconPhotoLibrarySharp.tsx | 2 +- src/IconPhotoLibrarySharpFilled.tsx | 2 +- src/IconPhotoOutlined.tsx | 2 +- src/IconPhotoOutlinedFilled.tsx | 2 +- src/IconPhotoPrintsOutlined.tsx | 2 +- src/IconPhotoPrintsOutlinedFilled.tsx | 2 +- src/IconPhotoPrintsRounded.tsx | 2 +- src/IconPhotoPrintsRoundedFilled.tsx | 2 +- src/IconPhotoPrintsSharp.tsx | 2 +- src/IconPhotoPrintsSharpFilled.tsx | 2 +- src/IconPhotoRounded.tsx | 2 +- src/IconPhotoRoundedFilled.tsx | 2 +- src/IconPhotoSharp.tsx | 2 +- src/IconPhotoSharpFilled.tsx | 2 +- src/IconPhotoSizeSelectLargeOutlined.tsx | 2 +- src/IconPhotoSizeSelectLargeOutlinedFilled.tsx | 2 +- src/IconPhotoSizeSelectLargeRounded.tsx | 2 +- src/IconPhotoSizeSelectLargeRoundedFilled.tsx | 2 +- src/IconPhotoSizeSelectLargeSharp.tsx | 2 +- src/IconPhotoSizeSelectLargeSharpFilled.tsx | 2 +- src/IconPhotoSizeSelectSmallOutlined.tsx | 2 +- src/IconPhotoSizeSelectSmallOutlinedFilled.tsx | 2 +- src/IconPhotoSizeSelectSmallRounded.tsx | 2 +- src/IconPhotoSizeSelectSmallRoundedFilled.tsx | 2 +- src/IconPhotoSizeSelectSmallSharp.tsx | 2 +- src/IconPhotoSizeSelectSmallSharpFilled.tsx | 2 +- src/IconPhpOutlined.tsx | 2 +- src/IconPhpOutlinedFilled.tsx | 2 +- src/IconPhpRounded.tsx | 2 +- src/IconPhpRoundedFilled.tsx | 2 +- src/IconPhpSharp.tsx | 2 +- src/IconPhpSharpFilled.tsx | 2 +- src/IconPhysicalTherapyOutlined.tsx | 2 +- src/IconPhysicalTherapyOutlinedFilled.tsx | 2 +- src/IconPhysicalTherapyRounded.tsx | 2 +- src/IconPhysicalTherapyRoundedFilled.tsx | 2 +- src/IconPhysicalTherapySharp.tsx | 2 +- src/IconPhysicalTherapySharpFilled.tsx | 2 +- src/IconPianoOffOutlined.tsx | 2 +- src/IconPianoOffOutlinedFilled.tsx | 2 +- src/IconPianoOffRounded.tsx | 2 +- src/IconPianoOffRoundedFilled.tsx | 2 +- src/IconPianoOffSharp.tsx | 2 +- src/IconPianoOffSharpFilled.tsx | 2 +- src/IconPianoOutlined.tsx | 2 +- src/IconPianoOutlinedFilled.tsx | 2 +- src/IconPianoRounded.tsx | 2 +- src/IconPianoRoundedFilled.tsx | 2 +- src/IconPianoSharp.tsx | 2 +- src/IconPianoSharpFilled.tsx | 2 +- src/IconPictureAsPdfOutlined.tsx | 2 +- src/IconPictureAsPdfOutlinedFilled.tsx | 2 +- src/IconPictureAsPdfRounded.tsx | 2 +- src/IconPictureAsPdfRoundedFilled.tsx | 2 +- src/IconPictureAsPdfSharp.tsx | 2 +- src/IconPictureAsPdfSharpFilled.tsx | 2 +- src/IconPictureInPictureAltOutlined.tsx | 2 +- src/IconPictureInPictureAltOutlinedFilled.tsx | 2 +- src/IconPictureInPictureAltRounded.tsx | 2 +- src/IconPictureInPictureAltRoundedFilled.tsx | 2 +- src/IconPictureInPictureAltSharp.tsx | 2 +- src/IconPictureInPictureAltSharpFilled.tsx | 2 +- src/IconPictureInPictureCenterOutlined.tsx | 2 +- src/IconPictureInPictureCenterOutlinedFilled.tsx | 2 +- src/IconPictureInPictureCenterRounded.tsx | 2 +- src/IconPictureInPictureCenterRoundedFilled.tsx | 2 +- src/IconPictureInPictureCenterSharp.tsx | 2 +- src/IconPictureInPictureCenterSharpFilled.tsx | 2 +- src/IconPictureInPictureLargeOutlined.tsx | 2 +- src/IconPictureInPictureLargeOutlinedFilled.tsx | 2 +- src/IconPictureInPictureLargeRounded.tsx | 2 +- src/IconPictureInPictureLargeRoundedFilled.tsx | 2 +- src/IconPictureInPictureLargeSharp.tsx | 2 +- src/IconPictureInPictureLargeSharpFilled.tsx | 2 +- src/IconPictureInPictureMediumOutlined.tsx | 2 +- src/IconPictureInPictureMediumOutlinedFilled.tsx | 2 +- src/IconPictureInPictureMediumRounded.tsx | 2 +- src/IconPictureInPictureMediumRoundedFilled.tsx | 2 +- src/IconPictureInPictureMediumSharp.tsx | 2 +- src/IconPictureInPictureMediumSharpFilled.tsx | 2 +- src/IconPictureInPictureMobileOutlined.tsx | 2 +- src/IconPictureInPictureMobileOutlinedFilled.tsx | 2 +- src/IconPictureInPictureMobileRounded.tsx | 2 +- src/IconPictureInPictureMobileRoundedFilled.tsx | 2 +- src/IconPictureInPictureMobileSharp.tsx | 2 +- src/IconPictureInPictureMobileSharpFilled.tsx | 2 +- src/IconPictureInPictureOffOutlined.tsx | 2 +- src/IconPictureInPictureOffOutlinedFilled.tsx | 2 +- src/IconPictureInPictureOffRounded.tsx | 2 +- src/IconPictureInPictureOffRoundedFilled.tsx | 2 +- src/IconPictureInPictureOffSharp.tsx | 2 +- src/IconPictureInPictureOffSharpFilled.tsx | 2 +- src/IconPictureInPictureOutlined.tsx | 2 +- src/IconPictureInPictureOutlinedFilled.tsx | 2 +- src/IconPictureInPictureRounded.tsx | 2 +- src/IconPictureInPictureRoundedFilled.tsx | 2 +- src/IconPictureInPictureSharp.tsx | 2 +- src/IconPictureInPictureSharpFilled.tsx | 2 +- src/IconPictureInPictureSmallOutlined.tsx | 2 +- src/IconPictureInPictureSmallOutlinedFilled.tsx | 2 +- src/IconPictureInPictureSmallRounded.tsx | 2 +- src/IconPictureInPictureSmallRoundedFilled.tsx | 2 +- src/IconPictureInPictureSmallSharp.tsx | 2 +- src/IconPictureInPictureSmallSharpFilled.tsx | 2 +- src/IconPieChartOutlined.tsx | 2 +- src/IconPieChartOutlinedFilled.tsx | 2 +- src/IconPieChartRounded.tsx | 2 +- src/IconPieChartRoundedFilled.tsx | 2 +- src/IconPieChartSharp.tsx | 2 +- src/IconPieChartSharpFilled.tsx | 2 +- src/IconPillOffOutlined.tsx | 2 +- src/IconPillOffOutlinedFilled.tsx | 2 +- src/IconPillOffRounded.tsx | 2 +- src/IconPillOffRoundedFilled.tsx | 2 +- src/IconPillOffSharp.tsx | 2 +- src/IconPillOffSharpFilled.tsx | 2 +- src/IconPillOutlined.tsx | 2 +- src/IconPillOutlinedFilled.tsx | 2 +- src/IconPillRounded.tsx | 2 +- src/IconPillRoundedFilled.tsx | 2 +- src/IconPillSharp.tsx | 2 +- src/IconPillSharpFilled.tsx | 2 +- src/IconPinDropOutlined.tsx | 2 +- src/IconPinDropOutlinedFilled.tsx | 2 +- src/IconPinDropRounded.tsx | 2 +- src/IconPinDropRoundedFilled.tsx | 2 +- src/IconPinDropSharp.tsx | 2 +- src/IconPinDropSharpFilled.tsx | 2 +- src/IconPinEndOutlined.tsx | 2 +- src/IconPinEndOutlinedFilled.tsx | 2 +- src/IconPinEndRounded.tsx | 2 +- src/IconPinEndRoundedFilled.tsx | 2 +- src/IconPinEndSharp.tsx | 2 +- src/IconPinEndSharpFilled.tsx | 2 +- src/IconPinInvokeOutlined.tsx | 2 +- src/IconPinInvokeOutlinedFilled.tsx | 2 +- src/IconPinInvokeRounded.tsx | 2 +- src/IconPinInvokeRoundedFilled.tsx | 2 +- src/IconPinInvokeSharp.tsx | 2 +- src/IconPinInvokeSharpFilled.tsx | 2 +- src/IconPinOutlined.tsx | 2 +- src/IconPinOutlinedFilled.tsx | 2 +- src/IconPinRounded.tsx | 2 +- src/IconPinRoundedFilled.tsx | 2 +- src/IconPinSharp.tsx | 2 +- src/IconPinSharpFilled.tsx | 2 +- src/IconPinchOutlined.tsx | 2 +- src/IconPinchOutlinedFilled.tsx | 2 +- src/IconPinchRounded.tsx | 2 +- src/IconPinchRoundedFilled.tsx | 2 +- src/IconPinchSharp.tsx | 2 +- src/IconPinchSharpFilled.tsx | 2 +- src/IconPinchZoomInOutlined.tsx | 2 +- src/IconPinchZoomInOutlinedFilled.tsx | 2 +- src/IconPinchZoomInRounded.tsx | 2 +- src/IconPinchZoomInRoundedFilled.tsx | 2 +- src/IconPinchZoomInSharp.tsx | 2 +- src/IconPinchZoomInSharpFilled.tsx | 2 +- src/IconPinchZoomOutOutlined.tsx | 2 +- src/IconPinchZoomOutOutlinedFilled.tsx | 2 +- src/IconPinchZoomOutRounded.tsx | 2 +- src/IconPinchZoomOutRoundedFilled.tsx | 2 +- src/IconPinchZoomOutSharp.tsx | 2 +- src/IconPinchZoomOutSharpFilled.tsx | 2 +- src/IconPipExitOutlined.tsx | 2 +- src/IconPipExitOutlinedFilled.tsx | 2 +- src/IconPipExitRounded.tsx | 2 +- src/IconPipExitRoundedFilled.tsx | 2 +- src/IconPipExitSharp.tsx | 2 +- src/IconPipExitSharpFilled.tsx | 2 +- src/IconPipOutlined.tsx | 2 +- src/IconPipOutlinedFilled.tsx | 2 +- src/IconPipRounded.tsx | 2 +- src/IconPipRoundedFilled.tsx | 2 +- src/IconPipSharp.tsx | 2 +- src/IconPipSharpFilled.tsx | 2 +- src/IconPivotTableChartOutlined.tsx | 2 +- src/IconPivotTableChartOutlinedFilled.tsx | 2 +- src/IconPivotTableChartRounded.tsx | 2 +- src/IconPivotTableChartRoundedFilled.tsx | 2 +- src/IconPivotTableChartSharp.tsx | 2 +- src/IconPivotTableChartSharpFilled.tsx | 2 +- src/IconPlaceItemOutlined.tsx | 2 +- src/IconPlaceItemOutlinedFilled.tsx | 2 +- src/IconPlaceItemRounded.tsx | 2 +- src/IconPlaceItemRoundedFilled.tsx | 2 +- src/IconPlaceItemSharp.tsx | 2 +- src/IconPlaceItemSharpFilled.tsx | 2 +- src/IconPlagiarismOutlined.tsx | 2 +- src/IconPlagiarismOutlinedFilled.tsx | 2 +- src/IconPlagiarismRounded.tsx | 2 +- src/IconPlagiarismRoundedFilled.tsx | 2 +- src/IconPlagiarismSharp.tsx | 2 +- src/IconPlagiarismSharpFilled.tsx | 2 +- src/IconPlannerBannerAdPtOutlined.tsx | 2 +- src/IconPlannerBannerAdPtOutlinedFilled.tsx | 2 +- src/IconPlannerBannerAdPtRounded.tsx | 2 +- src/IconPlannerBannerAdPtRoundedFilled.tsx | 2 +- src/IconPlannerBannerAdPtSharp.tsx | 2 +- src/IconPlannerBannerAdPtSharpFilled.tsx | 2 +- src/IconPlannerReviewOutlined.tsx | 2 +- src/IconPlannerReviewOutlinedFilled.tsx | 2 +- src/IconPlannerReviewRounded.tsx | 2 +- src/IconPlannerReviewRoundedFilled.tsx | 2 +- src/IconPlannerReviewSharp.tsx | 2 +- src/IconPlannerReviewSharpFilled.tsx | 2 +- src/IconPlayArrowOutlined.tsx | 2 +- src/IconPlayArrowOutlinedFilled.tsx | 2 +- src/IconPlayArrowRounded.tsx | 2 +- src/IconPlayArrowRoundedFilled.tsx | 2 +- src/IconPlayArrowSharp.tsx | 2 +- src/IconPlayArrowSharpFilled.tsx | 2 +- src/IconPlayCircleOutlined.tsx | 2 +- src/IconPlayCircleOutlinedFilled.tsx | 2 +- src/IconPlayCircleRounded.tsx | 2 +- src/IconPlayCircleRoundedFilled.tsx | 2 +- src/IconPlayCircleSharp.tsx | 2 +- src/IconPlayCircleSharpFilled.tsx | 2 +- src/IconPlayDisabledOutlined.tsx | 2 +- src/IconPlayDisabledOutlinedFilled.tsx | 2 +- src/IconPlayDisabledRounded.tsx | 2 +- src/IconPlayDisabledRoundedFilled.tsx | 2 +- src/IconPlayDisabledSharp.tsx | 2 +- src/IconPlayDisabledSharpFilled.tsx | 2 +- src/IconPlayForWorkOutlined.tsx | 2 +- src/IconPlayForWorkOutlinedFilled.tsx | 2 +- src/IconPlayForWorkRounded.tsx | 2 +- src/IconPlayForWorkRoundedFilled.tsx | 2 +- src/IconPlayForWorkSharp.tsx | 2 +- src/IconPlayForWorkSharpFilled.tsx | 2 +- src/IconPlayLessonOutlined.tsx | 2 +- src/IconPlayLessonOutlinedFilled.tsx | 2 +- src/IconPlayLessonRounded.tsx | 2 +- src/IconPlayLessonRoundedFilled.tsx | 2 +- src/IconPlayLessonSharp.tsx | 2 +- src/IconPlayLessonSharpFilled.tsx | 2 +- src/IconPlayPauseOutlined.tsx | 2 +- src/IconPlayPauseOutlinedFilled.tsx | 2 +- src/IconPlayPauseRounded.tsx | 2 +- src/IconPlayPauseRoundedFilled.tsx | 2 +- src/IconPlayPauseSharp.tsx | 2 +- src/IconPlayPauseSharpFilled.tsx | 2 +- src/IconPlayingCardsOutlined.tsx | 2 +- src/IconPlayingCardsOutlinedFilled.tsx | 2 +- src/IconPlayingCardsRounded.tsx | 2 +- src/IconPlayingCardsRoundedFilled.tsx | 2 +- src/IconPlayingCardsSharp.tsx | 2 +- src/IconPlayingCardsSharpFilled.tsx | 2 +- src/IconPlaylistAddCheckCircleOutlined.tsx | 2 +- src/IconPlaylistAddCheckCircleOutlinedFilled.tsx | 2 +- src/IconPlaylistAddCheckCircleRounded.tsx | 2 +- src/IconPlaylistAddCheckCircleRoundedFilled.tsx | 2 +- src/IconPlaylistAddCheckCircleSharp.tsx | 2 +- src/IconPlaylistAddCheckCircleSharpFilled.tsx | 2 +- src/IconPlaylistAddCheckOutlined.tsx | 2 +- src/IconPlaylistAddCheckOutlinedFilled.tsx | 2 +- src/IconPlaylistAddCheckRounded.tsx | 2 +- src/IconPlaylistAddCheckRoundedFilled.tsx | 2 +- src/IconPlaylistAddCheckSharp.tsx | 2 +- src/IconPlaylistAddCheckSharpFilled.tsx | 2 +- src/IconPlaylistAddCircleOutlined.tsx | 2 +- src/IconPlaylistAddCircleOutlinedFilled.tsx | 2 +- src/IconPlaylistAddCircleRounded.tsx | 2 +- src/IconPlaylistAddCircleRoundedFilled.tsx | 2 +- src/IconPlaylistAddCircleSharp.tsx | 2 +- src/IconPlaylistAddCircleSharpFilled.tsx | 2 +- src/IconPlaylistAddOutlined.tsx | 2 +- src/IconPlaylistAddOutlinedFilled.tsx | 2 +- src/IconPlaylistAddRounded.tsx | 2 +- src/IconPlaylistAddRoundedFilled.tsx | 2 +- src/IconPlaylistAddSharp.tsx | 2 +- src/IconPlaylistAddSharpFilled.tsx | 2 +- src/IconPlaylistPlayOutlined.tsx | 2 +- src/IconPlaylistPlayOutlinedFilled.tsx | 2 +- src/IconPlaylistPlayRounded.tsx | 2 +- src/IconPlaylistPlayRoundedFilled.tsx | 2 +- src/IconPlaylistPlaySharp.tsx | 2 +- src/IconPlaylistPlaySharpFilled.tsx | 2 +- src/IconPlaylistRemoveOutlined.tsx | 2 +- src/IconPlaylistRemoveOutlinedFilled.tsx | 2 +- src/IconPlaylistRemoveRounded.tsx | 2 +- src/IconPlaylistRemoveRoundedFilled.tsx | 2 +- src/IconPlaylistRemoveSharp.tsx | 2 +- src/IconPlaylistRemoveSharpFilled.tsx | 2 +- src/IconPlumbingOutlined.tsx | 2 +- src/IconPlumbingOutlinedFilled.tsx | 2 +- src/IconPlumbingRounded.tsx | 2 +- src/IconPlumbingRoundedFilled.tsx | 2 +- src/IconPlumbingSharp.tsx | 2 +- src/IconPlumbingSharpFilled.tsx | 2 +- src/IconPodcastsOutlined.tsx | 2 +- src/IconPodcastsOutlinedFilled.tsx | 2 +- src/IconPodcastsRounded.tsx | 2 +- src/IconPodcastsRoundedFilled.tsx | 2 +- src/IconPodcastsSharp.tsx | 2 +- src/IconPodcastsSharpFilled.tsx | 2 +- src/IconPodiatryOutlined.tsx | 2 +- src/IconPodiatryOutlinedFilled.tsx | 2 +- src/IconPodiatryRounded.tsx | 2 +- src/IconPodiatryRoundedFilled.tsx | 2 +- src/IconPodiatrySharp.tsx | 2 +- src/IconPodiatrySharpFilled.tsx | 2 +- src/IconPodiumOutlined.tsx | 2 +- src/IconPodiumOutlinedFilled.tsx | 2 +- src/IconPodiumRounded.tsx | 2 +- src/IconPodiumRoundedFilled.tsx | 2 +- src/IconPodiumSharp.tsx | 2 +- src/IconPodiumSharpFilled.tsx | 2 +- src/IconPointOfSaleOutlined.tsx | 2 +- src/IconPointOfSaleOutlinedFilled.tsx | 2 +- src/IconPointOfSaleRounded.tsx | 2 +- src/IconPointOfSaleRoundedFilled.tsx | 2 +- src/IconPointOfSaleSharp.tsx | 2 +- src/IconPointOfSaleSharpFilled.tsx | 2 +- src/IconPointScanOutlined.tsx | 2 +- src/IconPointScanOutlinedFilled.tsx | 2 +- src/IconPointScanRounded.tsx | 2 +- src/IconPointScanRoundedFilled.tsx | 2 +- src/IconPointScanSharp.tsx | 2 +- src/IconPointScanSharpFilled.tsx | 2 +- src/IconPokerChipOutlined.tsx | 2 +- src/IconPokerChipOutlinedFilled.tsx | 2 +- src/IconPokerChipRounded.tsx | 2 +- src/IconPokerChipRoundedFilled.tsx | 2 +- src/IconPokerChipSharp.tsx | 2 +- src/IconPokerChipSharpFilled.tsx | 2 +- src/IconPolicyAlertOutlined.tsx | 2 +- src/IconPolicyAlertOutlinedFilled.tsx | 2 +- src/IconPolicyAlertRounded.tsx | 2 +- src/IconPolicyAlertRoundedFilled.tsx | 2 +- src/IconPolicyAlertSharp.tsx | 2 +- src/IconPolicyAlertSharpFilled.tsx | 2 +- src/IconPolicyOutlined.tsx | 2 +- src/IconPolicyOutlinedFilled.tsx | 2 +- src/IconPolicyRounded.tsx | 2 +- src/IconPolicyRoundedFilled.tsx | 2 +- src/IconPolicySharp.tsx | 2 +- src/IconPolicySharpFilled.tsx | 2 +- src/IconPolylineOutlined.tsx | 2 +- src/IconPolylineOutlinedFilled.tsx | 2 +- src/IconPolylineRounded.tsx | 2 +- src/IconPolylineRoundedFilled.tsx | 2 +- src/IconPolylineSharp.tsx | 2 +- src/IconPolylineSharpFilled.tsx | 2 +- src/IconPolymerOutlined.tsx | 2 +- src/IconPolymerOutlinedFilled.tsx | 2 +- src/IconPolymerRounded.tsx | 2 +- src/IconPolymerRoundedFilled.tsx | 2 +- src/IconPolymerSharp.tsx | 2 +- src/IconPolymerSharpFilled.tsx | 2 +- src/IconPoolOutlined.tsx | 2 +- src/IconPoolOutlinedFilled.tsx | 2 +- src/IconPoolRounded.tsx | 2 +- src/IconPoolRoundedFilled.tsx | 2 +- src/IconPoolSharp.tsx | 2 +- src/IconPoolSharpFilled.tsx | 2 +- src/IconPortableWifiOffOutlined.tsx | 2 +- src/IconPortableWifiOffOutlinedFilled.tsx | 2 +- src/IconPortableWifiOffRounded.tsx | 2 +- src/IconPortableWifiOffRoundedFilled.tsx | 2 +- src/IconPortableWifiOffSharp.tsx | 2 +- src/IconPortableWifiOffSharpFilled.tsx | 2 +- src/IconPositionBottomLeftOutlined.tsx | 2 +- src/IconPositionBottomLeftOutlinedFilled.tsx | 2 +- src/IconPositionBottomLeftRounded.tsx | 2 +- src/IconPositionBottomLeftRoundedFilled.tsx | 2 +- src/IconPositionBottomLeftSharp.tsx | 2 +- src/IconPositionBottomLeftSharpFilled.tsx | 2 +- src/IconPositionBottomRightOutlined.tsx | 2 +- src/IconPositionBottomRightOutlinedFilled.tsx | 2 +- src/IconPositionBottomRightRounded.tsx | 2 +- src/IconPositionBottomRightRoundedFilled.tsx | 2 +- src/IconPositionBottomRightSharp.tsx | 2 +- src/IconPositionBottomRightSharpFilled.tsx | 2 +- src/IconPositionTopRightOutlined.tsx | 2 +- src/IconPositionTopRightOutlinedFilled.tsx | 2 +- src/IconPositionTopRightRounded.tsx | 2 +- src/IconPositionTopRightRoundedFilled.tsx | 2 +- src/IconPositionTopRightSharp.tsx | 2 +- src/IconPositionTopRightSharpFilled.tsx | 2 +- src/IconPostAddOutlined.tsx | 2 +- src/IconPostAddOutlinedFilled.tsx | 2 +- src/IconPostAddRounded.tsx | 2 +- src/IconPostAddRoundedFilled.tsx | 2 +- src/IconPostAddSharp.tsx | 2 +- src/IconPostAddSharpFilled.tsx | 2 +- src/IconPostOutlined.tsx | 2 +- src/IconPostOutlinedFilled.tsx | 2 +- src/IconPostRounded.tsx | 2 +- src/IconPostRoundedFilled.tsx | 2 +- src/IconPostSharp.tsx | 2 +- src/IconPostSharpFilled.tsx | 2 +- src/IconPottedPlantOutlined.tsx | 2 +- src/IconPottedPlantOutlinedFilled.tsx | 2 +- src/IconPottedPlantRounded.tsx | 2 +- src/IconPottedPlantRoundedFilled.tsx | 2 +- src/IconPottedPlantSharp.tsx | 2 +- src/IconPottedPlantSharpFilled.tsx | 2 +- src/IconPowerInputOutlined.tsx | 2 +- src/IconPowerInputOutlinedFilled.tsx | 2 +- src/IconPowerInputRounded.tsx | 2 +- src/IconPowerInputRoundedFilled.tsx | 2 +- src/IconPowerInputSharp.tsx | 2 +- src/IconPowerInputSharpFilled.tsx | 2 +- src/IconPowerOffOutlined.tsx | 2 +- src/IconPowerOffOutlinedFilled.tsx | 2 +- src/IconPowerOffRounded.tsx | 2 +- src/IconPowerOffRoundedFilled.tsx | 2 +- src/IconPowerOffSharp.tsx | 2 +- src/IconPowerOffSharpFilled.tsx | 2 +- src/IconPowerOutlined.tsx | 2 +- src/IconPowerOutlinedFilled.tsx | 2 +- src/IconPowerRounded.tsx | 2 +- src/IconPowerRoundedFilled.tsx | 2 +- src/IconPowerSettingsCircleOutlined.tsx | 2 +- src/IconPowerSettingsCircleOutlinedFilled.tsx | 2 +- src/IconPowerSettingsCircleRounded.tsx | 2 +- src/IconPowerSettingsCircleRoundedFilled.tsx | 2 +- src/IconPowerSettingsCircleSharp.tsx | 2 +- src/IconPowerSettingsCircleSharpFilled.tsx | 2 +- src/IconPowerSettingsNewOutlined.tsx | 2 +- src/IconPowerSettingsNewOutlinedFilled.tsx | 2 +- src/IconPowerSettingsNewRounded.tsx | 2 +- src/IconPowerSettingsNewRoundedFilled.tsx | 2 +- src/IconPowerSettingsNewSharp.tsx | 2 +- src/IconPowerSettingsNewSharpFilled.tsx | 2 +- src/IconPowerSharp.tsx | 2 +- src/IconPowerSharpFilled.tsx | 2 +- src/IconPrayerTimesOutlined.tsx | 2 +- src/IconPrayerTimesOutlinedFilled.tsx | 2 +- src/IconPrayerTimesRounded.tsx | 2 +- src/IconPrayerTimesRoundedFilled.tsx | 2 +- src/IconPrayerTimesSharp.tsx | 2 +- src/IconPrayerTimesSharpFilled.tsx | 2 +- src/IconPrecisionManufacturingOutlined.tsx | 2 +- src/IconPrecisionManufacturingOutlinedFilled.tsx | 2 +- src/IconPrecisionManufacturingRounded.tsx | 2 +- src/IconPrecisionManufacturingRoundedFilled.tsx | 2 +- src/IconPrecisionManufacturingSharp.tsx | 2 +- src/IconPrecisionManufacturingSharpFilled.tsx | 2 +- src/IconPregnancyOutlined.tsx | 2 +- src/IconPregnancyOutlinedFilled.tsx | 2 +- src/IconPregnancyRounded.tsx | 2 +- src/IconPregnancyRoundedFilled.tsx | 2 +- src/IconPregnancySharp.tsx | 2 +- src/IconPregnancySharpFilled.tsx | 2 +- src/IconPregnantWomanOutlined.tsx | 2 +- src/IconPregnantWomanOutlinedFilled.tsx | 2 +- src/IconPregnantWomanRounded.tsx | 2 +- src/IconPregnantWomanRoundedFilled.tsx | 2 +- src/IconPregnantWomanSharp.tsx | 2 +- src/IconPregnantWomanSharpFilled.tsx | 2 +- src/IconPreliminaryOutlined.tsx | 2 +- src/IconPreliminaryOutlinedFilled.tsx | 2 +- src/IconPreliminaryRounded.tsx | 2 +- src/IconPreliminaryRoundedFilled.tsx | 2 +- src/IconPreliminarySharp.tsx | 2 +- src/IconPreliminarySharpFilled.tsx | 2 +- src/IconPrescriptionsOutlined.tsx | 2 +- src/IconPrescriptionsOutlinedFilled.tsx | 2 +- src/IconPrescriptionsRounded.tsx | 2 +- src/IconPrescriptionsRoundedFilled.tsx | 2 +- src/IconPrescriptionsSharp.tsx | 2 +- src/IconPrescriptionsSharpFilled.tsx | 2 +- src/IconPresentToAllOutlined.tsx | 2 +- src/IconPresentToAllOutlinedFilled.tsx | 2 +- src/IconPresentToAllRounded.tsx | 2 +- src/IconPresentToAllRoundedFilled.tsx | 2 +- src/IconPresentToAllSharp.tsx | 2 +- src/IconPresentToAllSharpFilled.tsx | 2 +- src/IconPreviewOffOutlined.tsx | 2 +- src/IconPreviewOffOutlinedFilled.tsx | 2 +- src/IconPreviewOffRounded.tsx | 2 +- src/IconPreviewOffRoundedFilled.tsx | 2 +- src/IconPreviewOffSharp.tsx | 2 +- src/IconPreviewOffSharpFilled.tsx | 2 +- src/IconPreviewOutlined.tsx | 2 +- src/IconPreviewOutlinedFilled.tsx | 2 +- src/IconPreviewRounded.tsx | 2 +- src/IconPreviewRoundedFilled.tsx | 2 +- src/IconPreviewSharp.tsx | 2 +- src/IconPreviewSharpFilled.tsx | 2 +- src/IconPriceChangeOutlined.tsx | 2 +- src/IconPriceChangeOutlinedFilled.tsx | 2 +- src/IconPriceChangeRounded.tsx | 2 +- src/IconPriceChangeRoundedFilled.tsx | 2 +- src/IconPriceChangeSharp.tsx | 2 +- src/IconPriceChangeSharpFilled.tsx | 2 +- src/IconPriceCheckOutlined.tsx | 2 +- src/IconPriceCheckOutlinedFilled.tsx | 2 +- src/IconPriceCheckRounded.tsx | 2 +- src/IconPriceCheckRoundedFilled.tsx | 2 +- src/IconPriceCheckSharp.tsx | 2 +- src/IconPriceCheckSharpFilled.tsx | 2 +- src/IconPrintAddOutlined.tsx | 2 +- src/IconPrintAddOutlinedFilled.tsx | 2 +- src/IconPrintAddRounded.tsx | 2 +- src/IconPrintAddRoundedFilled.tsx | 2 +- src/IconPrintAddSharp.tsx | 2 +- src/IconPrintAddSharpFilled.tsx | 2 +- src/IconPrintConnectOutlined.tsx | 2 +- src/IconPrintConnectOutlinedFilled.tsx | 2 +- src/IconPrintConnectRounded.tsx | 2 +- src/IconPrintConnectRoundedFilled.tsx | 2 +- src/IconPrintConnectSharp.tsx | 2 +- src/IconPrintConnectSharpFilled.tsx | 2 +- src/IconPrintDisabledOutlined.tsx | 2 +- src/IconPrintDisabledOutlinedFilled.tsx | 2 +- src/IconPrintDisabledRounded.tsx | 2 +- src/IconPrintDisabledRoundedFilled.tsx | 2 +- src/IconPrintDisabledSharp.tsx | 2 +- src/IconPrintDisabledSharpFilled.tsx | 2 +- src/IconPrintErrorOutlined.tsx | 2 +- src/IconPrintErrorOutlinedFilled.tsx | 2 +- src/IconPrintErrorRounded.tsx | 2 +- src/IconPrintErrorRoundedFilled.tsx | 2 +- src/IconPrintErrorSharp.tsx | 2 +- src/IconPrintErrorSharpFilled.tsx | 2 +- src/IconPrintLockOutlined.tsx | 2 +- src/IconPrintLockOutlinedFilled.tsx | 2 +- src/IconPrintLockRounded.tsx | 2 +- src/IconPrintLockRoundedFilled.tsx | 2 +- src/IconPrintLockSharp.tsx | 2 +- src/IconPrintLockSharpFilled.tsx | 2 +- src/IconPrintOutlined.tsx | 2 +- src/IconPrintOutlinedFilled.tsx | 2 +- src/IconPrintRounded.tsx | 2 +- src/IconPrintRoundedFilled.tsx | 2 +- src/IconPrintSharp.tsx | 2 +- src/IconPrintSharpFilled.tsx | 2 +- src/IconPriorityHighOutlined.tsx | 2 +- src/IconPriorityHighOutlinedFilled.tsx | 2 +- src/IconPriorityHighRounded.tsx | 2 +- src/IconPriorityHighRoundedFilled.tsx | 2 +- src/IconPriorityHighSharp.tsx | 2 +- src/IconPriorityHighSharpFilled.tsx | 2 +- src/IconPriorityOutlined.tsx | 2 +- src/IconPriorityOutlinedFilled.tsx | 2 +- src/IconPriorityRounded.tsx | 2 +- src/IconPriorityRoundedFilled.tsx | 2 +- src/IconPrioritySharp.tsx | 2 +- src/IconPrioritySharpFilled.tsx | 2 +- src/IconPrivacyOutlined.tsx | 2 +- src/IconPrivacyOutlinedFilled.tsx | 2 +- src/IconPrivacyRounded.tsx | 2 +- src/IconPrivacyRoundedFilled.tsx | 2 +- src/IconPrivacySharp.tsx | 2 +- src/IconPrivacySharpFilled.tsx | 2 +- src/IconPrivacyTipOutlined.tsx | 2 +- src/IconPrivacyTipOutlinedFilled.tsx | 2 +- src/IconPrivacyTipRounded.tsx | 2 +- src/IconPrivacyTipRoundedFilled.tsx | 2 +- src/IconPrivacyTipSharp.tsx | 2 +- src/IconPrivacyTipSharpFilled.tsx | 2 +- src/IconPrivateConnectivityOutlined.tsx | 2 +- src/IconPrivateConnectivityOutlinedFilled.tsx | 2 +- src/IconPrivateConnectivityRounded.tsx | 2 +- src/IconPrivateConnectivityRoundedFilled.tsx | 2 +- src/IconPrivateConnectivitySharp.tsx | 2 +- src/IconPrivateConnectivitySharpFilled.tsx | 2 +- src/IconProblemOutlined.tsx | 2 +- src/IconProblemOutlinedFilled.tsx | 2 +- src/IconProblemRounded.tsx | 2 +- src/IconProblemRoundedFilled.tsx | 2 +- src/IconProblemSharp.tsx | 2 +- src/IconProblemSharpFilled.tsx | 2 +- src/IconProcedureOutlined.tsx | 2 +- src/IconProcedureOutlinedFilled.tsx | 2 +- src/IconProcedureRounded.tsx | 2 +- src/IconProcedureRoundedFilled.tsx | 2 +- src/IconProcedureSharp.tsx | 2 +- src/IconProcedureSharpFilled.tsx | 2 +- src/IconProcessChartOutlined.tsx | 2 +- src/IconProcessChartOutlinedFilled.tsx | 2 +- src/IconProcessChartRounded.tsx | 2 +- src/IconProcessChartRoundedFilled.tsx | 2 +- src/IconProcessChartSharp.tsx | 2 +- src/IconProcessChartSharpFilled.tsx | 2 +- src/IconProductionQuantityLimitsOutlined.tsx | 2 +- src/IconProductionQuantityLimitsOutlinedFilled.tsx | 2 +- src/IconProductionQuantityLimitsRounded.tsx | 2 +- src/IconProductionQuantityLimitsRoundedFilled.tsx | 2 +- src/IconProductionQuantityLimitsSharp.tsx | 2 +- src/IconProductionQuantityLimitsSharpFilled.tsx | 2 +- src/IconProductivityOutlined.tsx | 2 +- src/IconProductivityOutlinedFilled.tsx | 2 +- src/IconProductivityRounded.tsx | 2 +- src/IconProductivityRoundedFilled.tsx | 2 +- src/IconProductivitySharp.tsx | 2 +- src/IconProductivitySharpFilled.tsx | 2 +- src/IconProgressActivityOutlined.tsx | 2 +- src/IconProgressActivityOutlinedFilled.tsx | 2 +- src/IconProgressActivityRounded.tsx | 2 +- src/IconProgressActivityRoundedFilled.tsx | 2 +- src/IconProgressActivitySharp.tsx | 2 +- src/IconProgressActivitySharpFilled.tsx | 2 +- src/IconPromptSuggestionOutlined.tsx | 2 +- src/IconPromptSuggestionOutlinedFilled.tsx | 2 +- src/IconPromptSuggestionRounded.tsx | 2 +- src/IconPromptSuggestionRoundedFilled.tsx | 2 +- src/IconPromptSuggestionSharp.tsx | 2 +- src/IconPromptSuggestionSharpFilled.tsx | 2 +- src/IconPropaneOutlined.tsx | 2 +- src/IconPropaneOutlinedFilled.tsx | 2 +- src/IconPropaneRounded.tsx | 2 +- src/IconPropaneRoundedFilled.tsx | 2 +- src/IconPropaneSharp.tsx | 2 +- src/IconPropaneSharpFilled.tsx | 2 +- src/IconPropaneTankOutlined.tsx | 2 +- src/IconPropaneTankOutlinedFilled.tsx | 2 +- src/IconPropaneTankRounded.tsx | 2 +- src/IconPropaneTankRoundedFilled.tsx | 2 +- src/IconPropaneTankSharp.tsx | 2 +- src/IconPropaneTankSharpFilled.tsx | 2 +- src/IconPsychiatryOutlined.tsx | 2 +- src/IconPsychiatryOutlinedFilled.tsx | 2 +- src/IconPsychiatryRounded.tsx | 2 +- src/IconPsychiatryRoundedFilled.tsx | 2 +- src/IconPsychiatrySharp.tsx | 2 +- src/IconPsychiatrySharpFilled.tsx | 2 +- src/IconPsychologyAltOutlined.tsx | 2 +- src/IconPsychologyAltOutlinedFilled.tsx | 2 +- src/IconPsychologyAltRounded.tsx | 2 +- src/IconPsychologyAltRoundedFilled.tsx | 2 +- src/IconPsychologyAltSharp.tsx | 2 +- src/IconPsychologyAltSharpFilled.tsx | 2 +- src/IconPsychologyOutlined.tsx | 2 +- src/IconPsychologyOutlinedFilled.tsx | 2 +- src/IconPsychologyRounded.tsx | 2 +- src/IconPsychologyRoundedFilled.tsx | 2 +- src/IconPsychologySharp.tsx | 2 +- src/IconPsychologySharpFilled.tsx | 2 +- src/IconPublicOffOutlined.tsx | 2 +- src/IconPublicOffOutlinedFilled.tsx | 2 +- src/IconPublicOffRounded.tsx | 2 +- src/IconPublicOffRoundedFilled.tsx | 2 +- src/IconPublicOffSharp.tsx | 2 +- src/IconPublicOffSharpFilled.tsx | 2 +- src/IconPublicOutlined.tsx | 2 +- src/IconPublicOutlinedFilled.tsx | 2 +- src/IconPublicRounded.tsx | 2 +- src/IconPublicRoundedFilled.tsx | 2 +- src/IconPublicSharp.tsx | 2 +- src/IconPublicSharpFilled.tsx | 2 +- src/IconPublishOutlined.tsx | 2 +- src/IconPublishOutlinedFilled.tsx | 2 +- src/IconPublishRounded.tsx | 2 +- src/IconPublishRoundedFilled.tsx | 2 +- src/IconPublishSharp.tsx | 2 +- src/IconPublishSharpFilled.tsx | 2 +- src/IconPublishedWithChangesOutlined.tsx | 2 +- src/IconPublishedWithChangesOutlinedFilled.tsx | 2 +- src/IconPublishedWithChangesRounded.tsx | 2 +- src/IconPublishedWithChangesRoundedFilled.tsx | 2 +- src/IconPublishedWithChangesSharp.tsx | 2 +- src/IconPublishedWithChangesSharpFilled.tsx | 2 +- src/IconPulmonologyOutlined.tsx | 2 +- src/IconPulmonologyOutlinedFilled.tsx | 2 +- src/IconPulmonologyRounded.tsx | 2 +- src/IconPulmonologyRoundedFilled.tsx | 2 +- src/IconPulmonologySharp.tsx | 2 +- src/IconPulmonologySharpFilled.tsx | 2 +- src/IconPulseAlertOutlined.tsx | 2 +- src/IconPulseAlertOutlinedFilled.tsx | 2 +- src/IconPulseAlertRounded.tsx | 2 +- src/IconPulseAlertRoundedFilled.tsx | 2 +- src/IconPulseAlertSharp.tsx | 2 +- src/IconPulseAlertSharpFilled.tsx | 2 +- src/IconPunchClockOutlined.tsx | 2 +- src/IconPunchClockOutlinedFilled.tsx | 2 +- src/IconPunchClockRounded.tsx | 2 +- src/IconPunchClockRoundedFilled.tsx | 2 +- src/IconPunchClockSharp.tsx | 2 +- src/IconPunchClockSharpFilled.tsx | 2 +- src/IconQrCode2AddOutlined.tsx | 2 +- src/IconQrCode2AddOutlinedFilled.tsx | 2 +- src/IconQrCode2AddRounded.tsx | 2 +- src/IconQrCode2AddRoundedFilled.tsx | 2 +- src/IconQrCode2AddSharp.tsx | 2 +- src/IconQrCode2AddSharpFilled.tsx | 2 +- src/IconQrCode2Outlined.tsx | 2 +- src/IconQrCode2OutlinedFilled.tsx | 2 +- src/IconQrCode2Rounded.tsx | 2 +- src/IconQrCode2RoundedFilled.tsx | 2 +- src/IconQrCode2Sharp.tsx | 2 +- src/IconQrCode2SharpFilled.tsx | 2 +- src/IconQrCodeOutlined.tsx | 2 +- src/IconQrCodeOutlinedFilled.tsx | 2 +- src/IconQrCodeRounded.tsx | 2 +- src/IconQrCodeRoundedFilled.tsx | 2 +- src/IconQrCodeScannerOutlined.tsx | 2 +- src/IconQrCodeScannerOutlinedFilled.tsx | 2 +- src/IconQrCodeScannerRounded.tsx | 2 +- src/IconQrCodeScannerRoundedFilled.tsx | 2 +- src/IconQrCodeScannerSharp.tsx | 2 +- src/IconQrCodeScannerSharpFilled.tsx | 2 +- src/IconQrCodeSharp.tsx | 2 +- src/IconQrCodeSharpFilled.tsx | 2 +- src/IconQueryStatsOutlined.tsx | 2 +- src/IconQueryStatsOutlinedFilled.tsx | 2 +- src/IconQueryStatsRounded.tsx | 2 +- src/IconQueryStatsRoundedFilled.tsx | 2 +- src/IconQueryStatsSharp.tsx | 2 +- src/IconQueryStatsSharpFilled.tsx | 2 +- src/IconQuestionExchangeOutlined.tsx | 2 +- src/IconQuestionExchangeOutlinedFilled.tsx | 2 +- src/IconQuestionExchangeRounded.tsx | 2 +- src/IconQuestionExchangeRoundedFilled.tsx | 2 +- src/IconQuestionExchangeSharp.tsx | 2 +- src/IconQuestionExchangeSharpFilled.tsx | 2 +- src/IconQuestionMarkOutlined.tsx | 2 +- src/IconQuestionMarkOutlinedFilled.tsx | 2 +- src/IconQuestionMarkRounded.tsx | 2 +- src/IconQuestionMarkRoundedFilled.tsx | 2 +- src/IconQuestionMarkSharp.tsx | 2 +- src/IconQuestionMarkSharpFilled.tsx | 2 +- src/IconQueueMusicOutlined.tsx | 2 +- src/IconQueueMusicOutlinedFilled.tsx | 2 +- src/IconQueueMusicRounded.tsx | 2 +- src/IconQueueMusicRoundedFilled.tsx | 2 +- src/IconQueueMusicSharp.tsx | 2 +- src/IconQueueMusicSharpFilled.tsx | 2 +- src/IconQueuePlayNextOutlined.tsx | 2 +- src/IconQueuePlayNextOutlinedFilled.tsx | 2 +- src/IconQueuePlayNextRounded.tsx | 2 +- src/IconQueuePlayNextRoundedFilled.tsx | 2 +- src/IconQueuePlayNextSharp.tsx | 2 +- src/IconQueuePlayNextSharpFilled.tsx | 2 +- src/IconQuickPhrasesOutlined.tsx | 2 +- src/IconQuickPhrasesOutlinedFilled.tsx | 2 +- src/IconQuickPhrasesRounded.tsx | 2 +- src/IconQuickPhrasesRoundedFilled.tsx | 2 +- src/IconQuickPhrasesSharp.tsx | 2 +- src/IconQuickPhrasesSharpFilled.tsx | 2 +- src/IconQuickReferenceAllOutlined.tsx | 2 +- src/IconQuickReferenceAllOutlinedFilled.tsx | 2 +- src/IconQuickReferenceAllRounded.tsx | 2 +- src/IconQuickReferenceAllRoundedFilled.tsx | 2 +- src/IconQuickReferenceAllSharp.tsx | 2 +- src/IconQuickReferenceAllSharpFilled.tsx | 2 +- src/IconQuickReferenceOutlined.tsx | 2 +- src/IconQuickReferenceOutlinedFilled.tsx | 2 +- src/IconQuickReferenceRounded.tsx | 2 +- src/IconQuickReferenceRoundedFilled.tsx | 2 +- src/IconQuickReferenceSharp.tsx | 2 +- src/IconQuickReferenceSharpFilled.tsx | 2 +- src/IconQuickReorderOutlined.tsx | 2 +- src/IconQuickReorderOutlinedFilled.tsx | 2 +- src/IconQuickReorderRounded.tsx | 2 +- src/IconQuickReorderRoundedFilled.tsx | 2 +- src/IconQuickReorderSharp.tsx | 2 +- src/IconQuickReorderSharpFilled.tsx | 2 +- src/IconQuickreplyOutlined.tsx | 2 +- src/IconQuickreplyOutlinedFilled.tsx | 2 +- src/IconQuickreplyRounded.tsx | 2 +- src/IconQuickreplyRoundedFilled.tsx | 2 +- src/IconQuickreplySharp.tsx | 2 +- src/IconQuickreplySharpFilled.tsx | 2 +- src/IconQuizOutlined.tsx | 2 +- src/IconQuizOutlinedFilled.tsx | 2 +- src/IconQuizRounded.tsx | 2 +- src/IconQuizRoundedFilled.tsx | 2 +- src/IconQuizSharp.tsx | 2 +- src/IconQuizSharpFilled.tsx | 2 +- src/IconRMobiledataOutlined.tsx | 2 +- src/IconRMobiledataOutlinedFilled.tsx | 2 +- src/IconRMobiledataRounded.tsx | 2 +- src/IconRMobiledataRoundedFilled.tsx | 2 +- src/IconRMobiledataSharp.tsx | 2 +- src/IconRMobiledataSharpFilled.tsx | 2 +- src/IconRadarOutlined.tsx | 2 +- src/IconRadarOutlinedFilled.tsx | 2 +- src/IconRadarRounded.tsx | 2 +- src/IconRadarRoundedFilled.tsx | 2 +- src/IconRadarSharp.tsx | 2 +- src/IconRadarSharpFilled.tsx | 2 +- src/IconRadioButtonCheckedOutlined.tsx | 2 +- src/IconRadioButtonCheckedOutlinedFilled.tsx | 2 +- src/IconRadioButtonCheckedRounded.tsx | 2 +- src/IconRadioButtonCheckedRoundedFilled.tsx | 2 +- src/IconRadioButtonCheckedSharp.tsx | 2 +- src/IconRadioButtonCheckedSharpFilled.tsx | 2 +- src/IconRadioButtonPartialOutlined.tsx | 2 +- src/IconRadioButtonPartialOutlinedFilled.tsx | 2 +- src/IconRadioButtonPartialRounded.tsx | 2 +- src/IconRadioButtonPartialRoundedFilled.tsx | 2 +- src/IconRadioButtonPartialSharp.tsx | 2 +- src/IconRadioButtonPartialSharpFilled.tsx | 2 +- src/IconRadioButtonUncheckedOutlined.tsx | 2 +- src/IconRadioButtonUncheckedOutlinedFilled.tsx | 2 +- src/IconRadioButtonUncheckedRounded.tsx | 2 +- src/IconRadioButtonUncheckedRoundedFilled.tsx | 2 +- src/IconRadioButtonUncheckedSharp.tsx | 2 +- src/IconRadioButtonUncheckedSharpFilled.tsx | 2 +- src/IconRadioOutlined.tsx | 2 +- src/IconRadioOutlinedFilled.tsx | 2 +- src/IconRadioRounded.tsx | 2 +- src/IconRadioRoundedFilled.tsx | 2 +- src/IconRadioSharp.tsx | 2 +- src/IconRadioSharpFilled.tsx | 2 +- src/IconRadiologyOutlined.tsx | 2 +- src/IconRadiologyOutlinedFilled.tsx | 2 +- src/IconRadiologyRounded.tsx | 2 +- src/IconRadiologyRoundedFilled.tsx | 2 +- src/IconRadiologySharp.tsx | 2 +- src/IconRadiologySharpFilled.tsx | 2 +- src/IconRailwayAlert2Outlined.tsx | 2 +- src/IconRailwayAlert2OutlinedFilled.tsx | 2 +- src/IconRailwayAlert2Rounded.tsx | 2 +- src/IconRailwayAlert2RoundedFilled.tsx | 2 +- src/IconRailwayAlert2Sharp.tsx | 2 +- src/IconRailwayAlert2SharpFilled.tsx | 2 +- src/IconRailwayAlertOutlined.tsx | 2 +- src/IconRailwayAlertOutlinedFilled.tsx | 2 +- src/IconRailwayAlertRounded.tsx | 2 +- src/IconRailwayAlertRoundedFilled.tsx | 2 +- src/IconRailwayAlertSharp.tsx | 2 +- src/IconRailwayAlertSharpFilled.tsx | 2 +- src/IconRainyHeavyOutlined.tsx | 2 +- src/IconRainyHeavyOutlinedFilled.tsx | 2 +- src/IconRainyHeavyRounded.tsx | 2 +- src/IconRainyHeavyRoundedFilled.tsx | 2 +- src/IconRainyHeavySharp.tsx | 2 +- src/IconRainyHeavySharpFilled.tsx | 2 +- src/IconRainyLightOutlined.tsx | 2 +- src/IconRainyLightOutlinedFilled.tsx | 2 +- src/IconRainyLightRounded.tsx | 2 +- src/IconRainyLightRoundedFilled.tsx | 2 +- src/IconRainyLightSharp.tsx | 2 +- src/IconRainyLightSharpFilled.tsx | 2 +- src/IconRainyOutlined.tsx | 2 +- src/IconRainyOutlinedFilled.tsx | 2 +- src/IconRainyRounded.tsx | 2 +- src/IconRainyRoundedFilled.tsx | 2 +- src/IconRainySharp.tsx | 2 +- src/IconRainySharpFilled.tsx | 2 +- src/IconRainySnowOutlined.tsx | 2 +- src/IconRainySnowOutlinedFilled.tsx | 2 +- src/IconRainySnowRounded.tsx | 2 +- src/IconRainySnowRoundedFilled.tsx | 2 +- src/IconRainySnowSharp.tsx | 2 +- src/IconRainySnowSharpFilled.tsx | 2 +- src/IconRamenDiningOutlined.tsx | 2 +- src/IconRamenDiningOutlinedFilled.tsx | 2 +- src/IconRamenDiningRounded.tsx | 2 +- src/IconRamenDiningRoundedFilled.tsx | 2 +- src/IconRamenDiningSharp.tsx | 2 +- src/IconRamenDiningSharpFilled.tsx | 2 +- src/IconRampLeftOutlined.tsx | 2 +- src/IconRampLeftOutlinedFilled.tsx | 2 +- src/IconRampLeftRounded.tsx | 2 +- src/IconRampLeftRoundedFilled.tsx | 2 +- src/IconRampLeftSharp.tsx | 2 +- src/IconRampLeftSharpFilled.tsx | 2 +- src/IconRampRightOutlined.tsx | 2 +- src/IconRampRightOutlinedFilled.tsx | 2 +- src/IconRampRightRounded.tsx | 2 +- src/IconRampRightRoundedFilled.tsx | 2 +- src/IconRampRightSharp.tsx | 2 +- src/IconRampRightSharpFilled.tsx | 2 +- src/IconRangeHoodOutlined.tsx | 2 +- src/IconRangeHoodOutlinedFilled.tsx | 2 +- src/IconRangeHoodRounded.tsx | 2 +- src/IconRangeHoodRoundedFilled.tsx | 2 +- src/IconRangeHoodSharp.tsx | 2 +- src/IconRangeHoodSharpFilled.tsx | 2 +- src/IconRateReviewOutlined.tsx | 2 +- src/IconRateReviewOutlinedFilled.tsx | 2 +- src/IconRateReviewRounded.tsx | 2 +- src/IconRateReviewRoundedFilled.tsx | 2 +- src/IconRateReviewSharp.tsx | 2 +- src/IconRateReviewSharpFilled.tsx | 2 +- src/IconRavenOutlined.tsx | 2 +- src/IconRavenOutlinedFilled.tsx | 2 +- src/IconRavenRounded.tsx | 2 +- src/IconRavenRoundedFilled.tsx | 2 +- src/IconRavenSharp.tsx | 2 +- src/IconRavenSharpFilled.tsx | 2 +- src/IconRawOffOutlined.tsx | 2 +- src/IconRawOffOutlinedFilled.tsx | 2 +- src/IconRawOffRounded.tsx | 2 +- src/IconRawOffRoundedFilled.tsx | 2 +- src/IconRawOffSharp.tsx | 2 +- src/IconRawOffSharpFilled.tsx | 2 +- src/IconRawOnOutlined.tsx | 2 +- src/IconRawOnOutlinedFilled.tsx | 2 +- src/IconRawOnRounded.tsx | 2 +- src/IconRawOnRoundedFilled.tsx | 2 +- src/IconRawOnSharp.tsx | 2 +- src/IconRawOnSharpFilled.tsx | 2 +- src/IconReadMoreOutlined.tsx | 2 +- src/IconReadMoreOutlinedFilled.tsx | 2 +- src/IconReadMoreRounded.tsx | 2 +- src/IconReadMoreRoundedFilled.tsx | 2 +- src/IconReadMoreSharp.tsx | 2 +- src/IconReadMoreSharpFilled.tsx | 2 +- src/IconReadinessScoreOutlined.tsx | 2 +- src/IconReadinessScoreOutlinedFilled.tsx | 2 +- src/IconReadinessScoreRounded.tsx | 2 +- src/IconReadinessScoreRoundedFilled.tsx | 2 +- src/IconReadinessScoreSharp.tsx | 2 +- src/IconReadinessScoreSharpFilled.tsx | 2 +- src/IconRealEstateAgentOutlined.tsx | 2 +- src/IconRealEstateAgentOutlinedFilled.tsx | 2 +- src/IconRealEstateAgentRounded.tsx | 2 +- src/IconRealEstateAgentRoundedFilled.tsx | 2 +- src/IconRealEstateAgentSharp.tsx | 2 +- src/IconRealEstateAgentSharpFilled.tsx | 2 +- src/IconRearCameraOutlined.tsx | 2 +- src/IconRearCameraOutlinedFilled.tsx | 2 +- src/IconRearCameraRounded.tsx | 2 +- src/IconRearCameraRoundedFilled.tsx | 2 +- src/IconRearCameraSharp.tsx | 2 +- src/IconRearCameraSharpFilled.tsx | 2 +- src/IconRebaseEditOutlined.tsx | 2 +- src/IconRebaseEditOutlinedFilled.tsx | 2 +- src/IconRebaseEditRounded.tsx | 2 +- src/IconRebaseEditRoundedFilled.tsx | 2 +- src/IconRebaseEditSharp.tsx | 2 +- src/IconRebaseEditSharpFilled.tsx | 2 +- src/IconRebaseOutlined.tsx | 2 +- src/IconRebaseOutlinedFilled.tsx | 2 +- src/IconRebaseRounded.tsx | 2 +- src/IconRebaseRoundedFilled.tsx | 2 +- src/IconRebaseSharp.tsx | 2 +- src/IconRebaseSharpFilled.tsx | 2 +- src/IconReceiptLongOffOutlined.tsx | 2 +- src/IconReceiptLongOffOutlinedFilled.tsx | 2 +- src/IconReceiptLongOffRounded.tsx | 2 +- src/IconReceiptLongOffRoundedFilled.tsx | 2 +- src/IconReceiptLongOffSharp.tsx | 2 +- src/IconReceiptLongOffSharpFilled.tsx | 2 +- src/IconReceiptLongOutlined.tsx | 2 +- src/IconReceiptLongOutlinedFilled.tsx | 2 +- src/IconReceiptLongRounded.tsx | 2 +- src/IconReceiptLongRoundedFilled.tsx | 2 +- src/IconReceiptLongSharp.tsx | 2 +- src/IconReceiptLongSharpFilled.tsx | 2 +- src/IconReceiptOutlined.tsx | 2 +- src/IconReceiptOutlinedFilled.tsx | 2 +- src/IconReceiptRounded.tsx | 2 +- src/IconReceiptRoundedFilled.tsx | 2 +- src/IconReceiptSharp.tsx | 2 +- src/IconReceiptSharpFilled.tsx | 2 +- src/IconRecentActorsOutlined.tsx | 2 +- src/IconRecentActorsOutlinedFilled.tsx | 2 +- src/IconRecentActorsRounded.tsx | 2 +- src/IconRecentActorsRoundedFilled.tsx | 2 +- src/IconRecentActorsSharp.tsx | 2 +- src/IconRecentActorsSharpFilled.tsx | 2 +- src/IconRecentPatientOutlined.tsx | 2 +- src/IconRecentPatientOutlinedFilled.tsx | 2 +- src/IconRecentPatientRounded.tsx | 2 +- src/IconRecentPatientRoundedFilled.tsx | 2 +- src/IconRecentPatientSharp.tsx | 2 +- src/IconRecentPatientSharpFilled.tsx | 2 +- src/IconRecenterOutlined.tsx | 2 +- src/IconRecenterOutlinedFilled.tsx | 2 +- src/IconRecenterRounded.tsx | 2 +- src/IconRecenterRoundedFilled.tsx | 2 +- src/IconRecenterSharp.tsx | 2 +- src/IconRecenterSharpFilled.tsx | 2 +- src/IconRecommendOutlined.tsx | 2 +- src/IconRecommendOutlinedFilled.tsx | 2 +- src/IconRecommendRounded.tsx | 2 +- src/IconRecommendRoundedFilled.tsx | 2 +- src/IconRecommendSharp.tsx | 2 +- src/IconRecommendSharpFilled.tsx | 2 +- src/IconRecordVoiceOverOutlined.tsx | 2 +- src/IconRecordVoiceOverOutlinedFilled.tsx | 2 +- src/IconRecordVoiceOverRounded.tsx | 2 +- src/IconRecordVoiceOverRoundedFilled.tsx | 2 +- src/IconRecordVoiceOverSharp.tsx | 2 +- src/IconRecordVoiceOverSharpFilled.tsx | 2 +- src/IconRectangleOutlined.tsx | 2 +- src/IconRectangleOutlinedFilled.tsx | 2 +- src/IconRectangleRounded.tsx | 2 +- src/IconRectangleRoundedFilled.tsx | 2 +- src/IconRectangleSharp.tsx | 2 +- src/IconRectangleSharpFilled.tsx | 2 +- src/IconRecyclingOutlined.tsx | 2 +- src/IconRecyclingOutlinedFilled.tsx | 2 +- src/IconRecyclingRounded.tsx | 2 +- src/IconRecyclingRoundedFilled.tsx | 2 +- src/IconRecyclingSharp.tsx | 2 +- src/IconRecyclingSharpFilled.tsx | 2 +- src/IconRedeemOutlined.tsx | 2 +- src/IconRedeemOutlinedFilled.tsx | 2 +- src/IconRedeemRounded.tsx | 2 +- src/IconRedeemRoundedFilled.tsx | 2 +- src/IconRedeemSharp.tsx | 2 +- src/IconRedeemSharpFilled.tsx | 2 +- src/IconRedoOutlined.tsx | 2 +- src/IconRedoOutlinedFilled.tsx | 2 +- src/IconRedoRounded.tsx | 2 +- src/IconRedoRoundedFilled.tsx | 2 +- src/IconRedoSharp.tsx | 2 +- src/IconRedoSharpFilled.tsx | 2 +- src/IconReduceCapacityOutlined.tsx | 2 +- src/IconReduceCapacityOutlinedFilled.tsx | 2 +- src/IconReduceCapacityRounded.tsx | 2 +- src/IconReduceCapacityRoundedFilled.tsx | 2 +- src/IconReduceCapacitySharp.tsx | 2 +- src/IconReduceCapacitySharpFilled.tsx | 2 +- src/IconRefreshOutlined.tsx | 2 +- src/IconRefreshOutlinedFilled.tsx | 2 +- src/IconRefreshRounded.tsx | 2 +- src/IconRefreshRoundedFilled.tsx | 2 +- src/IconRefreshSharp.tsx | 2 +- src/IconRefreshSharpFilled.tsx | 2 +- src/IconRegularExpressionOutlined.tsx | 2 +- src/IconRegularExpressionOutlinedFilled.tsx | 2 +- src/IconRegularExpressionRounded.tsx | 2 +- src/IconRegularExpressionRoundedFilled.tsx | 2 +- src/IconRegularExpressionSharp.tsx | 2 +- src/IconRegularExpressionSharpFilled.tsx | 2 +- src/IconRelaxOutlined.tsx | 2 +- src/IconRelaxOutlinedFilled.tsx | 2 +- src/IconRelaxRounded.tsx | 2 +- src/IconRelaxRoundedFilled.tsx | 2 +- src/IconRelaxSharp.tsx | 2 +- src/IconRelaxSharpFilled.tsx | 2 +- src/IconReleaseAlertOutlined.tsx | 2 +- src/IconReleaseAlertOutlinedFilled.tsx | 2 +- src/IconReleaseAlertRounded.tsx | 2 +- src/IconReleaseAlertRoundedFilled.tsx | 2 +- src/IconReleaseAlertSharp.tsx | 2 +- src/IconReleaseAlertSharpFilled.tsx | 2 +- src/IconRememberMeOutlined.tsx | 2 +- src/IconRememberMeOutlinedFilled.tsx | 2 +- src/IconRememberMeRounded.tsx | 2 +- src/IconRememberMeRoundedFilled.tsx | 2 +- src/IconRememberMeSharp.tsx | 2 +- src/IconRememberMeSharpFilled.tsx | 2 +- src/IconReminderOutlined.tsx | 2 +- src/IconReminderOutlinedFilled.tsx | 2 +- src/IconReminderRounded.tsx | 2 +- src/IconReminderRoundedFilled.tsx | 2 +- src/IconReminderSharp.tsx | 2 +- src/IconReminderSharpFilled.tsx | 2 +- src/IconRemoteGenOutlined.tsx | 2 +- src/IconRemoteGenOutlinedFilled.tsx | 2 +- src/IconRemoteGenRounded.tsx | 2 +- src/IconRemoteGenRoundedFilled.tsx | 2 +- src/IconRemoteGenSharp.tsx | 2 +- src/IconRemoteGenSharpFilled.tsx | 2 +- src/IconRemoveDoneOutlined.tsx | 2 +- src/IconRemoveDoneOutlinedFilled.tsx | 2 +- src/IconRemoveDoneRounded.tsx | 2 +- src/IconRemoveDoneRoundedFilled.tsx | 2 +- src/IconRemoveDoneSharp.tsx | 2 +- src/IconRemoveDoneSharpFilled.tsx | 2 +- src/IconRemoveFromQueueOutlined.tsx | 2 +- src/IconRemoveFromQueueOutlinedFilled.tsx | 2 +- src/IconRemoveFromQueueRounded.tsx | 2 +- src/IconRemoveFromQueueRoundedFilled.tsx | 2 +- src/IconRemoveFromQueueSharp.tsx | 2 +- src/IconRemoveFromQueueSharpFilled.tsx | 2 +- src/IconRemoveModeratorOutlined.tsx | 2 +- src/IconRemoveModeratorOutlinedFilled.tsx | 2 +- src/IconRemoveModeratorRounded.tsx | 2 +- src/IconRemoveModeratorRoundedFilled.tsx | 2 +- src/IconRemoveModeratorSharp.tsx | 2 +- src/IconRemoveModeratorSharpFilled.tsx | 2 +- src/IconRemoveOutlined.tsx | 2 +- src/IconRemoveOutlinedFilled.tsx | 2 +- src/IconRemoveRoadOutlined.tsx | 2 +- src/IconRemoveRoadOutlinedFilled.tsx | 2 +- src/IconRemoveRoadRounded.tsx | 2 +- src/IconRemoveRoadRoundedFilled.tsx | 2 +- src/IconRemoveRoadSharp.tsx | 2 +- src/IconRemoveRoadSharpFilled.tsx | 2 +- src/IconRemoveRounded.tsx | 2 +- src/IconRemoveRoundedFilled.tsx | 2 +- src/IconRemoveSelectionOutlined.tsx | 2 +- src/IconRemoveSelectionOutlinedFilled.tsx | 2 +- src/IconRemoveSelectionRounded.tsx | 2 +- src/IconRemoveSelectionRoundedFilled.tsx | 2 +- src/IconRemoveSelectionSharp.tsx | 2 +- src/IconRemoveSelectionSharpFilled.tsx | 2 +- src/IconRemoveSharp.tsx | 2 +- src/IconRemoveSharpFilled.tsx | 2 +- src/IconRemoveShoppingCartOutlined.tsx | 2 +- src/IconRemoveShoppingCartOutlinedFilled.tsx | 2 +- src/IconRemoveShoppingCartRounded.tsx | 2 +- src/IconRemoveShoppingCartRoundedFilled.tsx | 2 +- src/IconRemoveShoppingCartSharp.tsx | 2 +- src/IconRemoveShoppingCartSharpFilled.tsx | 2 +- src/IconReopenWindowOutlined.tsx | 2 +- src/IconReopenWindowOutlinedFilled.tsx | 2 +- src/IconReopenWindowRounded.tsx | 2 +- src/IconReopenWindowRoundedFilled.tsx | 2 +- src/IconReopenWindowSharp.tsx | 2 +- src/IconReopenWindowSharpFilled.tsx | 2 +- src/IconReorderOutlined.tsx | 2 +- src/IconReorderOutlinedFilled.tsx | 2 +- src/IconReorderRounded.tsx | 2 +- src/IconReorderRoundedFilled.tsx | 2 +- src/IconReorderSharp.tsx | 2 +- src/IconReorderSharpFilled.tsx | 2 +- src/IconRepartitionOutlined.tsx | 2 +- src/IconRepartitionOutlinedFilled.tsx | 2 +- src/IconRepartitionRounded.tsx | 2 +- src/IconRepartitionRoundedFilled.tsx | 2 +- src/IconRepartitionSharp.tsx | 2 +- src/IconRepartitionSharpFilled.tsx | 2 +- src/IconRepeatOnOutlined.tsx | 2 +- src/IconRepeatOnOutlinedFilled.tsx | 2 +- src/IconRepeatOnRounded.tsx | 2 +- src/IconRepeatOnRoundedFilled.tsx | 2 +- src/IconRepeatOnSharp.tsx | 2 +- src/IconRepeatOnSharpFilled.tsx | 2 +- src/IconRepeatOneOnOutlined.tsx | 2 +- src/IconRepeatOneOnOutlinedFilled.tsx | 2 +- src/IconRepeatOneOnRounded.tsx | 2 +- src/IconRepeatOneOnRoundedFilled.tsx | 2 +- src/IconRepeatOneOnSharp.tsx | 2 +- src/IconRepeatOneOnSharpFilled.tsx | 2 +- src/IconRepeatOneOutlined.tsx | 2 +- src/IconRepeatOneOutlinedFilled.tsx | 2 +- src/IconRepeatOneRounded.tsx | 2 +- src/IconRepeatOneRoundedFilled.tsx | 2 +- src/IconRepeatOneSharp.tsx | 2 +- src/IconRepeatOneSharpFilled.tsx | 2 +- src/IconRepeatOutlined.tsx | 2 +- src/IconRepeatOutlinedFilled.tsx | 2 +- src/IconRepeatRounded.tsx | 2 +- src/IconRepeatRoundedFilled.tsx | 2 +- src/IconRepeatSharp.tsx | 2 +- src/IconRepeatSharpFilled.tsx | 2 +- src/IconReplaceAudioOutlined.tsx | 2 +- src/IconReplaceAudioOutlinedFilled.tsx | 2 +- src/IconReplaceAudioRounded.tsx | 2 +- src/IconReplaceAudioRoundedFilled.tsx | 2 +- src/IconReplaceAudioSharp.tsx | 2 +- src/IconReplaceAudioSharpFilled.tsx | 2 +- src/IconReplaceImageOutlined.tsx | 2 +- src/IconReplaceImageOutlinedFilled.tsx | 2 +- src/IconReplaceImageRounded.tsx | 2 +- src/IconReplaceImageRoundedFilled.tsx | 2 +- src/IconReplaceImageSharp.tsx | 2 +- src/IconReplaceImageSharpFilled.tsx | 2 +- src/IconReplaceVideoOutlined.tsx | 2 +- src/IconReplaceVideoOutlinedFilled.tsx | 2 +- src/IconReplaceVideoRounded.tsx | 2 +- src/IconReplaceVideoRoundedFilled.tsx | 2 +- src/IconReplaceVideoSharp.tsx | 2 +- src/IconReplaceVideoSharpFilled.tsx | 2 +- src/IconReplay10Outlined.tsx | 2 +- src/IconReplay10OutlinedFilled.tsx | 2 +- src/IconReplay10Rounded.tsx | 2 +- src/IconReplay10RoundedFilled.tsx | 2 +- src/IconReplay10Sharp.tsx | 2 +- src/IconReplay10SharpFilled.tsx | 2 +- src/IconReplay30Outlined.tsx | 2 +- src/IconReplay30OutlinedFilled.tsx | 2 +- src/IconReplay30Rounded.tsx | 2 +- src/IconReplay30RoundedFilled.tsx | 2 +- src/IconReplay30Sharp.tsx | 2 +- src/IconReplay30SharpFilled.tsx | 2 +- src/IconReplay5Outlined.tsx | 2 +- src/IconReplay5OutlinedFilled.tsx | 2 +- src/IconReplay5Rounded.tsx | 2 +- src/IconReplay5RoundedFilled.tsx | 2 +- src/IconReplay5Sharp.tsx | 2 +- src/IconReplay5SharpFilled.tsx | 2 +- src/IconReplayOutlined.tsx | 2 +- src/IconReplayOutlinedFilled.tsx | 2 +- src/IconReplayRounded.tsx | 2 +- src/IconReplayRoundedFilled.tsx | 2 +- src/IconReplaySharp.tsx | 2 +- src/IconReplaySharpFilled.tsx | 2 +- src/IconReplyAllOutlined.tsx | 2 +- src/IconReplyAllOutlinedFilled.tsx | 2 +- src/IconReplyAllRounded.tsx | 2 +- src/IconReplyAllRoundedFilled.tsx | 2 +- src/IconReplyAllSharp.tsx | 2 +- src/IconReplyAllSharpFilled.tsx | 2 +- src/IconReplyOutlined.tsx | 2 +- src/IconReplyOutlinedFilled.tsx | 2 +- src/IconReplyRounded.tsx | 2 +- src/IconReplyRoundedFilled.tsx | 2 +- src/IconReplySharp.tsx | 2 +- src/IconReplySharpFilled.tsx | 2 +- src/IconReportOffOutlined.tsx | 2 +- src/IconReportOffOutlinedFilled.tsx | 2 +- src/IconReportOffRounded.tsx | 2 +- src/IconReportOffRoundedFilled.tsx | 2 +- src/IconReportOffSharp.tsx | 2 +- src/IconReportOffSharpFilled.tsx | 2 +- src/IconReportOutlined.tsx | 2 +- src/IconReportOutlinedFilled.tsx | 2 +- src/IconReportRounded.tsx | 2 +- src/IconReportRoundedFilled.tsx | 2 +- src/IconReportSharp.tsx | 2 +- src/IconReportSharpFilled.tsx | 2 +- src/IconRequestPageOutlined.tsx | 2 +- src/IconRequestPageOutlinedFilled.tsx | 2 +- src/IconRequestPageRounded.tsx | 2 +- src/IconRequestPageRoundedFilled.tsx | 2 +- src/IconRequestPageSharp.tsx | 2 +- src/IconRequestPageSharpFilled.tsx | 2 +- src/IconRequestQuoteOutlined.tsx | 2 +- src/IconRequestQuoteOutlinedFilled.tsx | 2 +- src/IconRequestQuoteRounded.tsx | 2 +- src/IconRequestQuoteRoundedFilled.tsx | 2 +- src/IconRequestQuoteSharp.tsx | 2 +- src/IconRequestQuoteSharpFilled.tsx | 2 +- src/IconResetBrightnessOutlined.tsx | 2 +- src/IconResetBrightnessOutlinedFilled.tsx | 2 +- src/IconResetBrightnessRounded.tsx | 2 +- src/IconResetBrightnessRoundedFilled.tsx | 2 +- src/IconResetBrightnessSharp.tsx | 2 +- src/IconResetBrightnessSharpFilled.tsx | 2 +- src/IconResetFocusOutlined.tsx | 2 +- src/IconResetFocusOutlinedFilled.tsx | 2 +- src/IconResetFocusRounded.tsx | 2 +- src/IconResetFocusRoundedFilled.tsx | 2 +- src/IconResetFocusSharp.tsx | 2 +- src/IconResetFocusSharpFilled.tsx | 2 +- src/IconResetImageOutlined.tsx | 2 +- src/IconResetImageOutlinedFilled.tsx | 2 +- src/IconResetImageRounded.tsx | 2 +- src/IconResetImageRoundedFilled.tsx | 2 +- src/IconResetImageSharp.tsx | 2 +- src/IconResetImageSharpFilled.tsx | 2 +- src/IconResetIsoOutlined.tsx | 2 +- src/IconResetIsoOutlinedFilled.tsx | 2 +- src/IconResetIsoRounded.tsx | 2 +- src/IconResetIsoRoundedFilled.tsx | 2 +- src/IconResetIsoSharp.tsx | 2 +- src/IconResetIsoSharpFilled.tsx | 2 +- src/IconResetSettingsOutlined.tsx | 2 +- src/IconResetSettingsOutlinedFilled.tsx | 2 +- src/IconResetSettingsRounded.tsx | 2 +- src/IconResetSettingsRoundedFilled.tsx | 2 +- src/IconResetSettingsSharp.tsx | 2 +- src/IconResetSettingsSharpFilled.tsx | 2 +- src/IconResetShadowOutlined.tsx | 2 +- src/IconResetShadowOutlinedFilled.tsx | 2 +- src/IconResetShadowRounded.tsx | 2 +- src/IconResetShadowRoundedFilled.tsx | 2 +- src/IconResetShadowSharp.tsx | 2 +- src/IconResetShadowSharpFilled.tsx | 2 +- src/IconResetShutterSpeedOutlined.tsx | 2 +- src/IconResetShutterSpeedOutlinedFilled.tsx | 2 +- src/IconResetShutterSpeedRounded.tsx | 2 +- src/IconResetShutterSpeedRoundedFilled.tsx | 2 +- src/IconResetShutterSpeedSharp.tsx | 2 +- src/IconResetShutterSpeedSharpFilled.tsx | 2 +- src/IconResetTvOutlined.tsx | 2 +- src/IconResetTvOutlinedFilled.tsx | 2 +- src/IconResetTvRounded.tsx | 2 +- src/IconResetTvRoundedFilled.tsx | 2 +- src/IconResetTvSharp.tsx | 2 +- src/IconResetTvSharpFilled.tsx | 2 +- src/IconResetWhiteBalanceOutlined.tsx | 2 +- src/IconResetWhiteBalanceOutlinedFilled.tsx | 2 +- src/IconResetWhiteBalanceRounded.tsx | 2 +- src/IconResetWhiteBalanceRoundedFilled.tsx | 2 +- src/IconResetWhiteBalanceSharp.tsx | 2 +- src/IconResetWhiteBalanceSharpFilled.tsx | 2 +- src/IconResetWrenchOutlined.tsx | 2 +- src/IconResetWrenchOutlinedFilled.tsx | 2 +- src/IconResetWrenchRounded.tsx | 2 +- src/IconResetWrenchRoundedFilled.tsx | 2 +- src/IconResetWrenchSharp.tsx | 2 +- src/IconResetWrenchSharpFilled.tsx | 2 +- src/IconResizeOutlined.tsx | 2 +- src/IconResizeOutlinedFilled.tsx | 2 +- src/IconResizeRounded.tsx | 2 +- src/IconResizeRoundedFilled.tsx | 2 +- src/IconResizeSharp.tsx | 2 +- src/IconResizeSharpFilled.tsx | 2 +- src/IconRespiratoryRateOutlined.tsx | 2 +- src/IconRespiratoryRateOutlinedFilled.tsx | 2 +- src/IconRespiratoryRateRounded.tsx | 2 +- src/IconRespiratoryRateRoundedFilled.tsx | 2 +- src/IconRespiratoryRateSharp.tsx | 2 +- src/IconRespiratoryRateSharpFilled.tsx | 2 +- src/IconResponsiveLayoutOutlined.tsx | 2 +- src/IconResponsiveLayoutOutlinedFilled.tsx | 2 +- src/IconResponsiveLayoutRounded.tsx | 2 +- src/IconResponsiveLayoutRoundedFilled.tsx | 2 +- src/IconResponsiveLayoutSharp.tsx | 2 +- src/IconResponsiveLayoutSharpFilled.tsx | 2 +- src/IconRestartAltOutlined.tsx | 2 +- src/IconRestartAltOutlinedFilled.tsx | 2 +- src/IconRestartAltRounded.tsx | 2 +- src/IconRestartAltRoundedFilled.tsx | 2 +- src/IconRestartAltSharp.tsx | 2 +- src/IconRestartAltSharpFilled.tsx | 2 +- src/IconRestaurantOutlined.tsx | 2 +- src/IconRestaurantOutlinedFilled.tsx | 2 +- src/IconRestaurantRounded.tsx | 2 +- src/IconRestaurantRoundedFilled.tsx | 2 +- src/IconRestaurantSharp.tsx | 2 +- src/IconRestaurantSharpFilled.tsx | 2 +- src/IconRestoreFromTrashOutlined.tsx | 2 +- src/IconRestoreFromTrashOutlinedFilled.tsx | 2 +- src/IconRestoreFromTrashRounded.tsx | 2 +- src/IconRestoreFromTrashRoundedFilled.tsx | 2 +- src/IconRestoreFromTrashSharp.tsx | 2 +- src/IconRestoreFromTrashSharpFilled.tsx | 2 +- src/IconRestorePageOutlined.tsx | 2 +- src/IconRestorePageOutlinedFilled.tsx | 2 +- src/IconRestorePageRounded.tsx | 2 +- src/IconRestorePageRoundedFilled.tsx | 2 +- src/IconRestorePageSharp.tsx | 2 +- src/IconRestorePageSharpFilled.tsx | 2 +- src/IconResumeOutlined.tsx | 2 +- src/IconResumeOutlinedFilled.tsx | 2 +- src/IconResumeRounded.tsx | 2 +- src/IconResumeRoundedFilled.tsx | 2 +- src/IconResumeSharp.tsx | 2 +- src/IconResumeSharpFilled.tsx | 2 +- src/IconReviewsOutlined.tsx | 2 +- src/IconReviewsOutlinedFilled.tsx | 2 +- src/IconReviewsRounded.tsx | 2 +- src/IconReviewsRoundedFilled.tsx | 2 +- src/IconReviewsSharp.tsx | 2 +- src/IconReviewsSharpFilled.tsx | 2 +- src/IconRewardedAdsOutlined.tsx | 2 +- src/IconRewardedAdsOutlinedFilled.tsx | 2 +- src/IconRewardedAdsRounded.tsx | 2 +- src/IconRewardedAdsRoundedFilled.tsx | 2 +- src/IconRewardedAdsSharp.tsx | 2 +- src/IconRewardedAdsSharpFilled.tsx | 2 +- src/IconRheumatologyOutlined.tsx | 2 +- src/IconRheumatologyOutlinedFilled.tsx | 2 +- src/IconRheumatologyRounded.tsx | 2 +- src/IconRheumatologyRoundedFilled.tsx | 2 +- src/IconRheumatologySharp.tsx | 2 +- src/IconRheumatologySharpFilled.tsx | 2 +- src/IconRibCageOutlined.tsx | 2 +- src/IconRibCageOutlinedFilled.tsx | 2 +- src/IconRibCageRounded.tsx | 2 +- src/IconRibCageRoundedFilled.tsx | 2 +- src/IconRibCageSharp.tsx | 2 +- src/IconRibCageSharpFilled.tsx | 2 +- src/IconRiceBowlOutlined.tsx | 2 +- src/IconRiceBowlOutlinedFilled.tsx | 2 +- src/IconRiceBowlRounded.tsx | 2 +- src/IconRiceBowlRoundedFilled.tsx | 2 +- src/IconRiceBowlSharp.tsx | 2 +- src/IconRiceBowlSharpFilled.tsx | 2 +- src/IconRightClickOutlined.tsx | 2 +- src/IconRightClickOutlinedFilled.tsx | 2 +- src/IconRightClickRounded.tsx | 2 +- src/IconRightClickRoundedFilled.tsx | 2 +- src/IconRightClickSharp.tsx | 2 +- src/IconRightClickSharpFilled.tsx | 2 +- src/IconRightPanelCloseOutlined.tsx | 2 +- src/IconRightPanelCloseOutlinedFilled.tsx | 2 +- src/IconRightPanelCloseRounded.tsx | 2 +- src/IconRightPanelCloseRoundedFilled.tsx | 2 +- src/IconRightPanelCloseSharp.tsx | 2 +- src/IconRightPanelCloseSharpFilled.tsx | 2 +- src/IconRightPanelOpenOutlined.tsx | 2 +- src/IconRightPanelOpenOutlinedFilled.tsx | 2 +- src/IconRightPanelOpenRounded.tsx | 2 +- src/IconRightPanelOpenRoundedFilled.tsx | 2 +- src/IconRightPanelOpenSharp.tsx | 2 +- src/IconRightPanelOpenSharpFilled.tsx | 2 +- src/IconRingVolumeOutlined.tsx | 2 +- src/IconRingVolumeOutlinedFilled.tsx | 2 +- src/IconRingVolumeRounded.tsx | 2 +- src/IconRingVolumeRoundedFilled.tsx | 2 +- src/IconRingVolumeSharp.tsx | 2 +- src/IconRingVolumeSharpFilled.tsx | 2 +- src/IconRipplesOutlined.tsx | 2 +- src/IconRipplesOutlinedFilled.tsx | 2 +- src/IconRipplesRounded.tsx | 2 +- src/IconRipplesRoundedFilled.tsx | 2 +- src/IconRipplesSharp.tsx | 2 +- src/IconRipplesSharpFilled.tsx | 2 +- src/IconRoadOutlined.tsx | 2 +- src/IconRoadOutlinedFilled.tsx | 2 +- src/IconRoadRounded.tsx | 2 +- src/IconRoadRoundedFilled.tsx | 2 +- src/IconRoadSharp.tsx | 2 +- src/IconRoadSharpFilled.tsx | 2 +- src/IconRobot2Outlined.tsx | 2 +- src/IconRobot2OutlinedFilled.tsx | 2 +- src/IconRobot2Rounded.tsx | 2 +- src/IconRobot2RoundedFilled.tsx | 2 +- src/IconRobot2Sharp.tsx | 2 +- src/IconRobot2SharpFilled.tsx | 2 +- src/IconRobotOutlined.tsx | 2 +- src/IconRobotOutlinedFilled.tsx | 2 +- src/IconRobotRounded.tsx | 2 +- src/IconRobotRoundedFilled.tsx | 2 +- src/IconRobotSharp.tsx | 2 +- src/IconRobotSharpFilled.tsx | 2 +- src/IconRocketLaunchOutlined.tsx | 2 +- src/IconRocketLaunchOutlinedFilled.tsx | 2 +- src/IconRocketLaunchRounded.tsx | 2 +- src/IconRocketLaunchRoundedFilled.tsx | 2 +- src/IconRocketLaunchSharp.tsx | 2 +- src/IconRocketLaunchSharpFilled.tsx | 2 +- src/IconRocketOutlined.tsx | 2 +- src/IconRocketOutlinedFilled.tsx | 2 +- src/IconRocketRounded.tsx | 2 +- src/IconRocketRoundedFilled.tsx | 2 +- src/IconRocketSharp.tsx | 2 +- src/IconRocketSharpFilled.tsx | 2 +- src/IconRollerShadesClosedOutlined.tsx | 2 +- src/IconRollerShadesClosedOutlinedFilled.tsx | 2 +- src/IconRollerShadesClosedRounded.tsx | 2 +- src/IconRollerShadesClosedRoundedFilled.tsx | 2 +- src/IconRollerShadesClosedSharp.tsx | 2 +- src/IconRollerShadesClosedSharpFilled.tsx | 2 +- src/IconRollerShadesOutlined.tsx | 2 +- src/IconRollerShadesOutlinedFilled.tsx | 2 +- src/IconRollerShadesRounded.tsx | 2 +- src/IconRollerShadesRoundedFilled.tsx | 2 +- src/IconRollerShadesSharp.tsx | 2 +- src/IconRollerShadesSharpFilled.tsx | 2 +- src/IconRollerSkatingOutlined.tsx | 2 +- src/IconRollerSkatingOutlinedFilled.tsx | 2 +- src/IconRollerSkatingRounded.tsx | 2 +- src/IconRollerSkatingRoundedFilled.tsx | 2 +- src/IconRollerSkatingSharp.tsx | 2 +- src/IconRollerSkatingSharpFilled.tsx | 2 +- src/IconRoofingOutlined.tsx | 2 +- src/IconRoofingOutlinedFilled.tsx | 2 +- src/IconRoofingRounded.tsx | 2 +- src/IconRoofingRoundedFilled.tsx | 2 +- src/IconRoofingSharp.tsx | 2 +- src/IconRoofingSharpFilled.tsx | 2 +- src/IconRoomPreferencesOutlined.tsx | 2 +- src/IconRoomPreferencesOutlinedFilled.tsx | 2 +- src/IconRoomPreferencesRounded.tsx | 2 +- src/IconRoomPreferencesRoundedFilled.tsx | 2 +- src/IconRoomPreferencesSharp.tsx | 2 +- src/IconRoomPreferencesSharpFilled.tsx | 2 +- src/IconRoomServiceOutlined.tsx | 2 +- src/IconRoomServiceOutlinedFilled.tsx | 2 +- src/IconRoomServiceRounded.tsx | 2 +- src/IconRoomServiceRoundedFilled.tsx | 2 +- src/IconRoomServiceSharp.tsx | 2 +- src/IconRoomServiceSharpFilled.tsx | 2 +- src/IconRotate90DegreesCcwOutlined.tsx | 2 +- src/IconRotate90DegreesCcwOutlinedFilled.tsx | 2 +- src/IconRotate90DegreesCcwRounded.tsx | 2 +- src/IconRotate90DegreesCcwRoundedFilled.tsx | 2 +- src/IconRotate90DegreesCcwSharp.tsx | 2 +- src/IconRotate90DegreesCcwSharpFilled.tsx | 2 +- src/IconRotate90DegreesCwOutlined.tsx | 2 +- src/IconRotate90DegreesCwOutlinedFilled.tsx | 2 +- src/IconRotate90DegreesCwRounded.tsx | 2 +- src/IconRotate90DegreesCwRoundedFilled.tsx | 2 +- src/IconRotate90DegreesCwSharp.tsx | 2 +- src/IconRotate90DegreesCwSharpFilled.tsx | 2 +- src/IconRotateAutoOutlined.tsx | 2 +- src/IconRotateAutoOutlinedFilled.tsx | 2 +- src/IconRotateAutoRounded.tsx | 2 +- src/IconRotateAutoRoundedFilled.tsx | 2 +- src/IconRotateAutoSharp.tsx | 2 +- src/IconRotateAutoSharpFilled.tsx | 2 +- src/IconRotateLeftOutlined.tsx | 2 +- src/IconRotateLeftOutlinedFilled.tsx | 2 +- src/IconRotateLeftRounded.tsx | 2 +- src/IconRotateLeftRoundedFilled.tsx | 2 +- src/IconRotateLeftSharp.tsx | 2 +- src/IconRotateLeftSharpFilled.tsx | 2 +- src/IconRotateRightOutlined.tsx | 2 +- src/IconRotateRightOutlinedFilled.tsx | 2 +- src/IconRotateRightRounded.tsx | 2 +- src/IconRotateRightRoundedFilled.tsx | 2 +- src/IconRotateRightSharp.tsx | 2 +- src/IconRotateRightSharpFilled.tsx | 2 +- src/IconRoundaboutLeftOutlined.tsx | 2 +- src/IconRoundaboutLeftOutlinedFilled.tsx | 2 +- src/IconRoundaboutLeftRounded.tsx | 2 +- src/IconRoundaboutLeftRoundedFilled.tsx | 2 +- src/IconRoundaboutLeftSharp.tsx | 2 +- src/IconRoundaboutLeftSharpFilled.tsx | 2 +- src/IconRoundaboutRightOutlined.tsx | 2 +- src/IconRoundaboutRightOutlinedFilled.tsx | 2 +- src/IconRoundaboutRightRounded.tsx | 2 +- src/IconRoundaboutRightRoundedFilled.tsx | 2 +- src/IconRoundaboutRightSharp.tsx | 2 +- src/IconRoundaboutRightSharpFilled.tsx | 2 +- src/IconRoundedCornerOutlined.tsx | 2 +- src/IconRoundedCornerOutlinedFilled.tsx | 2 +- src/IconRoundedCornerRounded.tsx | 2 +- src/IconRoundedCornerRoundedFilled.tsx | 2 +- src/IconRoundedCornerSharp.tsx | 2 +- src/IconRoundedCornerSharpFilled.tsx | 2 +- src/IconRouteOutlined.tsx | 2 +- src/IconRouteOutlinedFilled.tsx | 2 +- src/IconRouteRounded.tsx | 2 +- src/IconRouteRoundedFilled.tsx | 2 +- src/IconRouteSharp.tsx | 2 +- src/IconRouteSharpFilled.tsx | 2 +- src/IconRouterOutlined.tsx | 2 +- src/IconRouterOutlinedFilled.tsx | 2 +- src/IconRouterRounded.tsx | 2 +- src/IconRouterRoundedFilled.tsx | 2 +- src/IconRouterSharp.tsx | 2 +- src/IconRouterSharpFilled.tsx | 2 +- src/IconRoutineOutlined.tsx | 2 +- src/IconRoutineOutlinedFilled.tsx | 2 +- src/IconRoutineRounded.tsx | 2 +- src/IconRoutineRoundedFilled.tsx | 2 +- src/IconRoutineSharp.tsx | 2 +- src/IconRoutineSharpFilled.tsx | 2 +- src/IconRowingOutlined.tsx | 2 +- src/IconRowingOutlinedFilled.tsx | 2 +- src/IconRowingRounded.tsx | 2 +- src/IconRowingRoundedFilled.tsx | 2 +- src/IconRowingSharp.tsx | 2 +- src/IconRowingSharpFilled.tsx | 2 +- src/IconRssFeedOutlined.tsx | 2 +- src/IconRssFeedOutlinedFilled.tsx | 2 +- src/IconRssFeedRounded.tsx | 2 +- src/IconRssFeedRoundedFilled.tsx | 2 +- src/IconRssFeedSharp.tsx | 2 +- src/IconRssFeedSharpFilled.tsx | 2 +- src/IconRsvpOutlined.tsx | 2 +- src/IconRsvpOutlinedFilled.tsx | 2 +- src/IconRsvpRounded.tsx | 2 +- src/IconRsvpRoundedFilled.tsx | 2 +- src/IconRsvpSharp.tsx | 2 +- src/IconRsvpSharpFilled.tsx | 2 +- src/IconRttOutlined.tsx | 2 +- src/IconRttOutlinedFilled.tsx | 2 +- src/IconRttRounded.tsx | 2 +- src/IconRttRoundedFilled.tsx | 2 +- src/IconRttSharp.tsx | 2 +- src/IconRttSharpFilled.tsx | 2 +- src/IconRubricOutlined.tsx | 2 +- src/IconRubricOutlinedFilled.tsx | 2 +- src/IconRubricRounded.tsx | 2 +- src/IconRubricRoundedFilled.tsx | 2 +- src/IconRubricSharp.tsx | 2 +- src/IconRubricSharpFilled.tsx | 2 +- src/IconRuleFolderOutlined.tsx | 2 +- src/IconRuleFolderOutlinedFilled.tsx | 2 +- src/IconRuleFolderRounded.tsx | 2 +- src/IconRuleFolderRoundedFilled.tsx | 2 +- src/IconRuleFolderSharp.tsx | 2 +- src/IconRuleFolderSharpFilled.tsx | 2 +- src/IconRuleOutlined.tsx | 2 +- src/IconRuleOutlinedFilled.tsx | 2 +- src/IconRuleRounded.tsx | 2 +- src/IconRuleRoundedFilled.tsx | 2 +- src/IconRuleSettingsOutlined.tsx | 2 +- src/IconRuleSettingsOutlinedFilled.tsx | 2 +- src/IconRuleSettingsRounded.tsx | 2 +- src/IconRuleSettingsRoundedFilled.tsx | 2 +- src/IconRuleSettingsSharp.tsx | 2 +- src/IconRuleSettingsSharpFilled.tsx | 2 +- src/IconRuleSharp.tsx | 2 +- src/IconRuleSharpFilled.tsx | 2 +- src/IconRunCircleOutlined.tsx | 2 +- src/IconRunCircleOutlinedFilled.tsx | 2 +- src/IconRunCircleRounded.tsx | 2 +- src/IconRunCircleRoundedFilled.tsx | 2 +- src/IconRunCircleSharp.tsx | 2 +- src/IconRunCircleSharpFilled.tsx | 2 +- src/IconRunningWithErrorsOutlined.tsx | 2 +- src/IconRunningWithErrorsOutlinedFilled.tsx | 2 +- src/IconRunningWithErrorsRounded.tsx | 2 +- src/IconRunningWithErrorsRoundedFilled.tsx | 2 +- src/IconRunningWithErrorsSharp.tsx | 2 +- src/IconRunningWithErrorsSharpFilled.tsx | 2 +- src/IconRvHookupOutlined.tsx | 2 +- src/IconRvHookupOutlinedFilled.tsx | 2 +- src/IconRvHookupRounded.tsx | 2 +- src/IconRvHookupRoundedFilled.tsx | 2 +- src/IconRvHookupSharp.tsx | 2 +- src/IconRvHookupSharpFilled.tsx | 2 +- src/IconSafetyCheckOffOutlined.tsx | 2 +- src/IconSafetyCheckOffOutlinedFilled.tsx | 2 +- src/IconSafetyCheckOffRounded.tsx | 2 +- src/IconSafetyCheckOffRoundedFilled.tsx | 2 +- src/IconSafetyCheckOffSharp.tsx | 2 +- src/IconSafetyCheckOffSharpFilled.tsx | 2 +- src/IconSafetyCheckOutlined.tsx | 2 +- src/IconSafetyCheckOutlinedFilled.tsx | 2 +- src/IconSafetyCheckRounded.tsx | 2 +- src/IconSafetyCheckRoundedFilled.tsx | 2 +- src/IconSafetyCheckSharp.tsx | 2 +- src/IconSafetyCheckSharpFilled.tsx | 2 +- src/IconSafetyDividerOutlined.tsx | 2 +- src/IconSafetyDividerOutlinedFilled.tsx | 2 +- src/IconSafetyDividerRounded.tsx | 2 +- src/IconSafetyDividerRoundedFilled.tsx | 2 +- src/IconSafetyDividerSharp.tsx | 2 +- src/IconSafetyDividerSharpFilled.tsx | 2 +- src/IconSailingOutlined.tsx | 2 +- src/IconSailingOutlinedFilled.tsx | 2 +- src/IconSailingRounded.tsx | 2 +- src/IconSailingRoundedFilled.tsx | 2 +- src/IconSailingSharp.tsx | 2 +- src/IconSailingSharpFilled.tsx | 2 +- src/IconSalinityOutlined.tsx | 2 +- src/IconSalinityOutlinedFilled.tsx | 2 +- src/IconSalinityRounded.tsx | 2 +- src/IconSalinityRoundedFilled.tsx | 2 +- src/IconSalinitySharp.tsx | 2 +- src/IconSalinitySharpFilled.tsx | 2 +- src/IconSanitizerOutlined.tsx | 2 +- src/IconSanitizerOutlinedFilled.tsx | 2 +- src/IconSanitizerRounded.tsx | 2 +- src/IconSanitizerRoundedFilled.tsx | 2 +- src/IconSanitizerSharp.tsx | 2 +- src/IconSanitizerSharpFilled.tsx | 2 +- src/IconSatelliteAltOutlined.tsx | 2 +- src/IconSatelliteAltOutlinedFilled.tsx | 2 +- src/IconSatelliteAltRounded.tsx | 2 +- src/IconSatelliteAltRoundedFilled.tsx | 2 +- src/IconSatelliteAltSharp.tsx | 2 +- src/IconSatelliteAltSharpFilled.tsx | 2 +- src/IconSatelliteOutlined.tsx | 2 +- src/IconSatelliteOutlinedFilled.tsx | 2 +- src/IconSatelliteRounded.tsx | 2 +- src/IconSatelliteRoundedFilled.tsx | 2 +- src/IconSatelliteSharp.tsx | 2 +- src/IconSatelliteSharpFilled.tsx | 2 +- src/IconSaunaOutlined.tsx | 2 +- src/IconSaunaOutlinedFilled.tsx | 2 +- src/IconSaunaRounded.tsx | 2 +- src/IconSaunaRoundedFilled.tsx | 2 +- src/IconSaunaSharp.tsx | 2 +- src/IconSaunaSharpFilled.tsx | 2 +- src/IconSaveAsOutlined.tsx | 2 +- src/IconSaveAsOutlinedFilled.tsx | 2 +- src/IconSaveAsRounded.tsx | 2 +- src/IconSaveAsRoundedFilled.tsx | 2 +- src/IconSaveAsSharp.tsx | 2 +- src/IconSaveAsSharpFilled.tsx | 2 +- src/IconSaveOutlined.tsx | 2 +- src/IconSaveOutlinedFilled.tsx | 2 +- src/IconSaveRounded.tsx | 2 +- src/IconSaveRoundedFilled.tsx | 2 +- src/IconSaveSharp.tsx | 2 +- src/IconSaveSharpFilled.tsx | 2 +- src/IconSavedSearchOutlined.tsx | 2 +- src/IconSavedSearchOutlinedFilled.tsx | 2 +- src/IconSavedSearchRounded.tsx | 2 +- src/IconSavedSearchRoundedFilled.tsx | 2 +- src/IconSavedSearchSharp.tsx | 2 +- src/IconSavedSearchSharpFilled.tsx | 2 +- src/IconSavingsOutlined.tsx | 2 +- src/IconSavingsOutlinedFilled.tsx | 2 +- src/IconSavingsRounded.tsx | 2 +- src/IconSavingsRoundedFilled.tsx | 2 +- src/IconSavingsSharp.tsx | 2 +- src/IconSavingsSharpFilled.tsx | 2 +- src/IconScaleOutlined.tsx | 2 +- src/IconScaleOutlinedFilled.tsx | 2 +- src/IconScaleRounded.tsx | 2 +- src/IconScaleRoundedFilled.tsx | 2 +- src/IconScaleSharp.tsx | 2 +- src/IconScaleSharpFilled.tsx | 2 +- src/IconScanDeleteOutlined.tsx | 2 +- src/IconScanDeleteOutlinedFilled.tsx | 2 +- src/IconScanDeleteRounded.tsx | 2 +- src/IconScanDeleteRoundedFilled.tsx | 2 +- src/IconScanDeleteSharp.tsx | 2 +- src/IconScanDeleteSharpFilled.tsx | 2 +- src/IconScanOutlined.tsx | 2 +- src/IconScanOutlinedFilled.tsx | 2 +- src/IconScanRounded.tsx | 2 +- src/IconScanRoundedFilled.tsx | 2 +- src/IconScanSharp.tsx | 2 +- src/IconScanSharpFilled.tsx | 2 +- src/IconScannerOutlined.tsx | 2 +- src/IconScannerOutlinedFilled.tsx | 2 +- src/IconScannerRounded.tsx | 2 +- src/IconScannerRoundedFilled.tsx | 2 +- src/IconScannerSharp.tsx | 2 +- src/IconScannerSharpFilled.tsx | 2 +- src/IconScatterPlotOutlined.tsx | 2 +- src/IconScatterPlotOutlinedFilled.tsx | 2 +- src/IconScatterPlotRounded.tsx | 2 +- src/IconScatterPlotRoundedFilled.tsx | 2 +- src/IconScatterPlotSharp.tsx | 2 +- src/IconScatterPlotSharpFilled.tsx | 2 +- src/IconSceneOutlined.tsx | 2 +- src/IconSceneOutlinedFilled.tsx | 2 +- src/IconSceneRounded.tsx | 2 +- src/IconSceneRoundedFilled.tsx | 2 +- src/IconSceneSharp.tsx | 2 +- src/IconSceneSharpFilled.tsx | 2 +- src/IconScheduleOutlined.tsx | 2 +- src/IconScheduleOutlinedFilled.tsx | 2 +- src/IconScheduleRounded.tsx | 2 +- src/IconScheduleRoundedFilled.tsx | 2 +- src/IconScheduleSendOutlined.tsx | 2 +- src/IconScheduleSendOutlinedFilled.tsx | 2 +- src/IconScheduleSendRounded.tsx | 2 +- src/IconScheduleSendRoundedFilled.tsx | 2 +- src/IconScheduleSendSharp.tsx | 2 +- src/IconScheduleSendSharpFilled.tsx | 2 +- src/IconScheduleSharp.tsx | 2 +- src/IconScheduleSharpFilled.tsx | 2 +- src/IconSchemaOutlined.tsx | 2 +- src/IconSchemaOutlinedFilled.tsx | 2 +- src/IconSchemaRounded.tsx | 2 +- src/IconSchemaRoundedFilled.tsx | 2 +- src/IconSchemaSharp.tsx | 2 +- src/IconSchemaSharpFilled.tsx | 2 +- src/IconSchoolOutlined.tsx | 2 +- src/IconSchoolOutlinedFilled.tsx | 2 +- src/IconSchoolRounded.tsx | 2 +- src/IconSchoolRoundedFilled.tsx | 2 +- src/IconSchoolSharp.tsx | 2 +- src/IconSchoolSharpFilled.tsx | 2 +- src/IconScienceOffOutlined.tsx | 2 +- src/IconScienceOffOutlinedFilled.tsx | 2 +- src/IconScienceOffRounded.tsx | 2 +- src/IconScienceOffRoundedFilled.tsx | 2 +- src/IconScienceOffSharp.tsx | 2 +- src/IconScienceOffSharpFilled.tsx | 2 +- src/IconScienceOutlined.tsx | 2 +- src/IconScienceOutlinedFilled.tsx | 2 +- src/IconScienceRounded.tsx | 2 +- src/IconScienceRoundedFilled.tsx | 2 +- src/IconScienceSharp.tsx | 2 +- src/IconScienceSharpFilled.tsx | 2 +- src/IconScooterOutlined.tsx | 2 +- src/IconScooterOutlinedFilled.tsx | 2 +- src/IconScooterRounded.tsx | 2 +- src/IconScooterRoundedFilled.tsx | 2 +- src/IconScooterSharp.tsx | 2 +- src/IconScooterSharpFilled.tsx | 2 +- src/IconScoreOutlined.tsx | 2 +- src/IconScoreOutlinedFilled.tsx | 2 +- src/IconScoreRounded.tsx | 2 +- src/IconScoreRoundedFilled.tsx | 2 +- src/IconScoreSharp.tsx | 2 +- src/IconScoreSharpFilled.tsx | 2 +- src/IconScoreboardOutlined.tsx | 2 +- src/IconScoreboardOutlinedFilled.tsx | 2 +- src/IconScoreboardRounded.tsx | 2 +- src/IconScoreboardRoundedFilled.tsx | 2 +- src/IconScoreboardSharp.tsx | 2 +- src/IconScoreboardSharpFilled.tsx | 2 +- src/IconScreenLockLandscapeOutlined.tsx | 2 +- src/IconScreenLockLandscapeOutlinedFilled.tsx | 2 +- src/IconScreenLockLandscapeRounded.tsx | 2 +- src/IconScreenLockLandscapeRoundedFilled.tsx | 2 +- src/IconScreenLockLandscapeSharp.tsx | 2 +- src/IconScreenLockLandscapeSharpFilled.tsx | 2 +- src/IconScreenLockPortraitOutlined.tsx | 2 +- src/IconScreenLockPortraitOutlinedFilled.tsx | 2 +- src/IconScreenLockPortraitRounded.tsx | 2 +- src/IconScreenLockPortraitRoundedFilled.tsx | 2 +- src/IconScreenLockPortraitSharp.tsx | 2 +- src/IconScreenLockPortraitSharpFilled.tsx | 2 +- src/IconScreenLockRotationOutlined.tsx | 2 +- src/IconScreenLockRotationOutlinedFilled.tsx | 2 +- src/IconScreenLockRotationRounded.tsx | 2 +- src/IconScreenLockRotationRoundedFilled.tsx | 2 +- src/IconScreenLockRotationSharp.tsx | 2 +- src/IconScreenLockRotationSharpFilled.tsx | 2 +- src/IconScreenRecordOutlined.tsx | 2 +- src/IconScreenRecordOutlinedFilled.tsx | 2 +- src/IconScreenRecordRounded.tsx | 2 +- src/IconScreenRecordRoundedFilled.tsx | 2 +- src/IconScreenRecordSharp.tsx | 2 +- src/IconScreenRecordSharpFilled.tsx | 2 +- src/IconScreenRotationAltOutlined.tsx | 2 +- src/IconScreenRotationAltOutlinedFilled.tsx | 2 +- src/IconScreenRotationAltRounded.tsx | 2 +- src/IconScreenRotationAltRoundedFilled.tsx | 2 +- src/IconScreenRotationAltSharp.tsx | 2 +- src/IconScreenRotationAltSharpFilled.tsx | 2 +- src/IconScreenRotationOutlined.tsx | 2 +- src/IconScreenRotationOutlinedFilled.tsx | 2 +- src/IconScreenRotationRounded.tsx | 2 +- src/IconScreenRotationRoundedFilled.tsx | 2 +- src/IconScreenRotationSharp.tsx | 2 +- src/IconScreenRotationSharpFilled.tsx | 2 +- src/IconScreenRotationUpOutlined.tsx | 2 +- src/IconScreenRotationUpOutlinedFilled.tsx | 2 +- src/IconScreenRotationUpRounded.tsx | 2 +- src/IconScreenRotationUpRoundedFilled.tsx | 2 +- src/IconScreenRotationUpSharp.tsx | 2 +- src/IconScreenRotationUpSharpFilled.tsx | 2 +- src/IconScreenSearchDesktopOutlined.tsx | 2 +- src/IconScreenSearchDesktopOutlinedFilled.tsx | 2 +- src/IconScreenSearchDesktopRounded.tsx | 2 +- src/IconScreenSearchDesktopRoundedFilled.tsx | 2 +- src/IconScreenSearchDesktopSharp.tsx | 2 +- src/IconScreenSearchDesktopSharpFilled.tsx | 2 +- src/IconScreenShareOutlined.tsx | 2 +- src/IconScreenShareOutlinedFilled.tsx | 2 +- src/IconScreenShareRounded.tsx | 2 +- src/IconScreenShareRoundedFilled.tsx | 2 +- src/IconScreenShareSharp.tsx | 2 +- src/IconScreenShareSharpFilled.tsx | 2 +- src/IconScreenshotFrameOutlined.tsx | 2 +- src/IconScreenshotFrameOutlinedFilled.tsx | 2 +- src/IconScreenshotFrameRounded.tsx | 2 +- src/IconScreenshotFrameRoundedFilled.tsx | 2 +- src/IconScreenshotFrameSharp.tsx | 2 +- src/IconScreenshotFrameSharpFilled.tsx | 2 +- src/IconScreenshotKeyboardOutlined.tsx | 2 +- src/IconScreenshotKeyboardOutlinedFilled.tsx | 2 +- src/IconScreenshotKeyboardRounded.tsx | 2 +- src/IconScreenshotKeyboardRoundedFilled.tsx | 2 +- src/IconScreenshotKeyboardSharp.tsx | 2 +- src/IconScreenshotKeyboardSharpFilled.tsx | 2 +- src/IconScreenshotMonitorOutlined.tsx | 2 +- src/IconScreenshotMonitorOutlinedFilled.tsx | 2 +- src/IconScreenshotMonitorRounded.tsx | 2 +- src/IconScreenshotMonitorRoundedFilled.tsx | 2 +- src/IconScreenshotMonitorSharp.tsx | 2 +- src/IconScreenshotMonitorSharpFilled.tsx | 2 +- src/IconScreenshotOutlined.tsx | 2 +- src/IconScreenshotOutlinedFilled.tsx | 2 +- src/IconScreenshotRegionOutlined.tsx | 2 +- src/IconScreenshotRegionOutlinedFilled.tsx | 2 +- src/IconScreenshotRegionRounded.tsx | 2 +- src/IconScreenshotRegionRoundedFilled.tsx | 2 +- src/IconScreenshotRegionSharp.tsx | 2 +- src/IconScreenshotRegionSharpFilled.tsx | 2 +- src/IconScreenshotRounded.tsx | 2 +- src/IconScreenshotRoundedFilled.tsx | 2 +- src/IconScreenshotSharp.tsx | 2 +- src/IconScreenshotSharpFilled.tsx | 2 +- src/IconScreenshotTabletOutlined.tsx | 2 +- src/IconScreenshotTabletOutlinedFilled.tsx | 2 +- src/IconScreenshotTabletRounded.tsx | 2 +- src/IconScreenshotTabletRoundedFilled.tsx | 2 +- src/IconScreenshotTabletSharp.tsx | 2 +- src/IconScreenshotTabletSharpFilled.tsx | 2 +- src/IconScriptOutlined.tsx | 2 +- src/IconScriptOutlinedFilled.tsx | 2 +- src/IconScriptRounded.tsx | 2 +- src/IconScriptRoundedFilled.tsx | 2 +- src/IconScriptSharp.tsx | 2 +- src/IconScriptSharpFilled.tsx | 2 +- src/IconScrollableHeaderOutlined.tsx | 2 +- src/IconScrollableHeaderOutlinedFilled.tsx | 2 +- src/IconScrollableHeaderRounded.tsx | 2 +- src/IconScrollableHeaderRoundedFilled.tsx | 2 +- src/IconScrollableHeaderSharp.tsx | 2 +- src/IconScrollableHeaderSharpFilled.tsx | 2 +- src/IconScubaDivingOutlined.tsx | 2 +- src/IconScubaDivingOutlinedFilled.tsx | 2 +- src/IconScubaDivingRounded.tsx | 2 +- src/IconScubaDivingRoundedFilled.tsx | 2 +- src/IconScubaDivingSharp.tsx | 2 +- src/IconScubaDivingSharpFilled.tsx | 2 +- src/IconSdCardAlertOutlined.tsx | 2 +- src/IconSdCardAlertOutlinedFilled.tsx | 2 +- src/IconSdCardAlertRounded.tsx | 2 +- src/IconSdCardAlertRoundedFilled.tsx | 2 +- src/IconSdCardAlertSharp.tsx | 2 +- src/IconSdCardAlertSharpFilled.tsx | 2 +- src/IconSdCardOutlined.tsx | 2 +- src/IconSdCardOutlinedFilled.tsx | 2 +- src/IconSdCardRounded.tsx | 2 +- src/IconSdCardRoundedFilled.tsx | 2 +- src/IconSdCardSharp.tsx | 2 +- src/IconSdCardSharpFilled.tsx | 2 +- src/IconSdOutlined.tsx | 2 +- src/IconSdOutlinedFilled.tsx | 2 +- src/IconSdRounded.tsx | 2 +- src/IconSdRoundedFilled.tsx | 2 +- src/IconSdSharp.tsx | 2 +- src/IconSdSharpFilled.tsx | 2 +- src/IconSdkOutlined.tsx | 2 +- src/IconSdkOutlinedFilled.tsx | 2 +- src/IconSdkRounded.tsx | 2 +- src/IconSdkRoundedFilled.tsx | 2 +- src/IconSdkSharp.tsx | 2 +- src/IconSdkSharpFilled.tsx | 2 +- src/IconSearchCheck2Outlined.tsx | 2 +- src/IconSearchCheck2OutlinedFilled.tsx | 2 +- src/IconSearchCheck2Rounded.tsx | 2 +- src/IconSearchCheck2RoundedFilled.tsx | 2 +- src/IconSearchCheck2Sharp.tsx | 2 +- src/IconSearchCheck2SharpFilled.tsx | 2 +- src/IconSearchCheckOutlined.tsx | 2 +- src/IconSearchCheckOutlinedFilled.tsx | 2 +- src/IconSearchCheckRounded.tsx | 2 +- src/IconSearchCheckRoundedFilled.tsx | 2 +- src/IconSearchCheckSharp.tsx | 2 +- src/IconSearchCheckSharpFilled.tsx | 2 +- src/IconSearchHandsFreeOutlined.tsx | 2 +- src/IconSearchHandsFreeOutlinedFilled.tsx | 2 +- src/IconSearchHandsFreeRounded.tsx | 2 +- src/IconSearchHandsFreeRoundedFilled.tsx | 2 +- src/IconSearchHandsFreeSharp.tsx | 2 +- src/IconSearchHandsFreeSharpFilled.tsx | 2 +- src/IconSearchInsightsOutlined.tsx | 2 +- src/IconSearchInsightsOutlinedFilled.tsx | 2 +- src/IconSearchInsightsRounded.tsx | 2 +- src/IconSearchInsightsRoundedFilled.tsx | 2 +- src/IconSearchInsightsSharp.tsx | 2 +- src/IconSearchInsightsSharpFilled.tsx | 2 +- src/IconSearchOffOutlined.tsx | 2 +- src/IconSearchOffOutlinedFilled.tsx | 2 +- src/IconSearchOffRounded.tsx | 2 +- src/IconSearchOffRoundedFilled.tsx | 2 +- src/IconSearchOffSharp.tsx | 2 +- src/IconSearchOffSharpFilled.tsx | 2 +- src/IconSearchOutlined.tsx | 2 +- src/IconSearchOutlinedFilled.tsx | 2 +- src/IconSearchRounded.tsx | 2 +- src/IconSearchRoundedFilled.tsx | 2 +- src/IconSearchSharp.tsx | 2 +- src/IconSearchSharpFilled.tsx | 2 +- src/IconSecurityKeyOutlined.tsx | 2 +- src/IconSecurityKeyOutlinedFilled.tsx | 2 +- src/IconSecurityKeyRounded.tsx | 2 +- src/IconSecurityKeyRoundedFilled.tsx | 2 +- src/IconSecurityKeySharp.tsx | 2 +- src/IconSecurityKeySharpFilled.tsx | 2 +- src/IconSecurityOutlined.tsx | 2 +- src/IconSecurityOutlinedFilled.tsx | 2 +- src/IconSecurityRounded.tsx | 2 +- src/IconSecurityRoundedFilled.tsx | 2 +- src/IconSecuritySharp.tsx | 2 +- src/IconSecuritySharpFilled.tsx | 2 +- src/IconSecurityUpdateGoodOutlined.tsx | 2 +- src/IconSecurityUpdateGoodOutlinedFilled.tsx | 2 +- src/IconSecurityUpdateGoodRounded.tsx | 2 +- src/IconSecurityUpdateGoodRoundedFilled.tsx | 2 +- src/IconSecurityUpdateGoodSharp.tsx | 2 +- src/IconSecurityUpdateGoodSharpFilled.tsx | 2 +- src/IconSecurityUpdateWarningOutlined.tsx | 2 +- src/IconSecurityUpdateWarningOutlinedFilled.tsx | 2 +- src/IconSecurityUpdateWarningRounded.tsx | 2 +- src/IconSecurityUpdateWarningRoundedFilled.tsx | 2 +- src/IconSecurityUpdateWarningSharp.tsx | 2 +- src/IconSecurityUpdateWarningSharpFilled.tsx | 2 +- src/IconSegmentOutlined.tsx | 2 +- src/IconSegmentOutlinedFilled.tsx | 2 +- src/IconSegmentRounded.tsx | 2 +- src/IconSegmentRoundedFilled.tsx | 2 +- src/IconSegmentSharp.tsx | 2 +- src/IconSegmentSharpFilled.tsx | 2 +- src/IconSelectAllOutlined.tsx | 2 +- src/IconSelectAllOutlinedFilled.tsx | 2 +- src/IconSelectAllRounded.tsx | 2 +- src/IconSelectAllRoundedFilled.tsx | 2 +- src/IconSelectAllSharp.tsx | 2 +- src/IconSelectAllSharpFilled.tsx | 2 +- src/IconSelectCheckBoxOutlined.tsx | 2 +- src/IconSelectCheckBoxOutlinedFilled.tsx | 2 +- src/IconSelectCheckBoxRounded.tsx | 2 +- src/IconSelectCheckBoxRoundedFilled.tsx | 2 +- src/IconSelectCheckBoxSharp.tsx | 2 +- src/IconSelectCheckBoxSharpFilled.tsx | 2 +- src/IconSelectOutlined.tsx | 2 +- src/IconSelectOutlinedFilled.tsx | 2 +- src/IconSelectRounded.tsx | 2 +- src/IconSelectRoundedFilled.tsx | 2 +- src/IconSelectSharp.tsx | 2 +- src/IconSelectSharpFilled.tsx | 2 +- src/IconSelectToSpeakOutlined.tsx | 2 +- src/IconSelectToSpeakOutlinedFilled.tsx | 2 +- src/IconSelectToSpeakRounded.tsx | 2 +- src/IconSelectToSpeakRoundedFilled.tsx | 2 +- src/IconSelectToSpeakSharp.tsx | 2 +- src/IconSelectToSpeakSharpFilled.tsx | 2 +- src/IconSelectWindow2Outlined.tsx | 2 +- src/IconSelectWindow2OutlinedFilled.tsx | 2 +- src/IconSelectWindow2Rounded.tsx | 2 +- src/IconSelectWindow2RoundedFilled.tsx | 2 +- src/IconSelectWindow2Sharp.tsx | 2 +- src/IconSelectWindow2SharpFilled.tsx | 2 +- src/IconSelectWindowOffOutlined.tsx | 2 +- src/IconSelectWindowOffOutlinedFilled.tsx | 2 +- src/IconSelectWindowOffRounded.tsx | 2 +- src/IconSelectWindowOffRoundedFilled.tsx | 2 +- src/IconSelectWindowOffSharp.tsx | 2 +- src/IconSelectWindowOffSharpFilled.tsx | 2 +- src/IconSelectWindowOutlined.tsx | 2 +- src/IconSelectWindowOutlinedFilled.tsx | 2 +- src/IconSelectWindowRounded.tsx | 2 +- src/IconSelectWindowRoundedFilled.tsx | 2 +- src/IconSelectWindowSharp.tsx | 2 +- src/IconSelectWindowSharpFilled.tsx | 2 +- src/IconSelfCareOutlined.tsx | 2 +- src/IconSelfCareOutlinedFilled.tsx | 2 +- src/IconSelfCareRounded.tsx | 2 +- src/IconSelfCareRoundedFilled.tsx | 2 +- src/IconSelfCareSharp.tsx | 2 +- src/IconSelfCareSharpFilled.tsx | 2 +- src/IconSelfImprovementOutlined.tsx | 2 +- src/IconSelfImprovementOutlinedFilled.tsx | 2 +- src/IconSelfImprovementRounded.tsx | 2 +- src/IconSelfImprovementRoundedFilled.tsx | 2 +- src/IconSelfImprovementSharp.tsx | 2 +- src/IconSelfImprovementSharpFilled.tsx | 2 +- src/IconSellOutlined.tsx | 2 +- src/IconSellOutlinedFilled.tsx | 2 +- src/IconSellRounded.tsx | 2 +- src/IconSellRoundedFilled.tsx | 2 +- src/IconSellSharp.tsx | 2 +- src/IconSellSharpFilled.tsx | 2 +- src/IconSendAndArchiveOutlined.tsx | 2 +- src/IconSendAndArchiveOutlinedFilled.tsx | 2 +- src/IconSendAndArchiveRounded.tsx | 2 +- src/IconSendAndArchiveRoundedFilled.tsx | 2 +- src/IconSendAndArchiveSharp.tsx | 2 +- src/IconSendAndArchiveSharpFilled.tsx | 2 +- src/IconSendMoneyOutlined.tsx | 2 +- src/IconSendMoneyOutlinedFilled.tsx | 2 +- src/IconSendMoneyRounded.tsx | 2 +- src/IconSendMoneyRoundedFilled.tsx | 2 +- src/IconSendMoneySharp.tsx | 2 +- src/IconSendMoneySharpFilled.tsx | 2 +- src/IconSendOutlined.tsx | 2 +- src/IconSendOutlinedFilled.tsx | 2 +- src/IconSendRounded.tsx | 2 +- src/IconSendRoundedFilled.tsx | 2 +- src/IconSendSharp.tsx | 2 +- src/IconSendSharpFilled.tsx | 2 +- src/IconSendTimeExtensionOutlined.tsx | 2 +- src/IconSendTimeExtensionOutlinedFilled.tsx | 2 +- src/IconSendTimeExtensionRounded.tsx | 2 +- src/IconSendTimeExtensionRoundedFilled.tsx | 2 +- src/IconSendTimeExtensionSharp.tsx | 2 +- src/IconSendTimeExtensionSharpFilled.tsx | 2 +- src/IconSendToMobileOutlined.tsx | 2 +- src/IconSendToMobileOutlinedFilled.tsx | 2 +- src/IconSendToMobileRounded.tsx | 2 +- src/IconSendToMobileRoundedFilled.tsx | 2 +- src/IconSendToMobileSharp.tsx | 2 +- src/IconSendToMobileSharpFilled.tsx | 2 +- src/IconSensorDoorOutlined.tsx | 2 +- src/IconSensorDoorOutlinedFilled.tsx | 2 +- src/IconSensorDoorRounded.tsx | 2 +- src/IconSensorDoorRoundedFilled.tsx | 2 +- src/IconSensorDoorSharp.tsx | 2 +- src/IconSensorDoorSharpFilled.tsx | 2 +- src/IconSensorOccupiedOutlined.tsx | 2 +- src/IconSensorOccupiedOutlinedFilled.tsx | 2 +- src/IconSensorOccupiedRounded.tsx | 2 +- src/IconSensorOccupiedRoundedFilled.tsx | 2 +- src/IconSensorOccupiedSharp.tsx | 2 +- src/IconSensorOccupiedSharpFilled.tsx | 2 +- src/IconSensorWindowOutlined.tsx | 2 +- src/IconSensorWindowOutlinedFilled.tsx | 2 +- src/IconSensorWindowRounded.tsx | 2 +- src/IconSensorWindowRoundedFilled.tsx | 2 +- src/IconSensorWindowSharp.tsx | 2 +- src/IconSensorWindowSharpFilled.tsx | 2 +- src/IconSensorsKrxOffOutlined.tsx | 2 +- src/IconSensorsKrxOffOutlinedFilled.tsx | 2 +- src/IconSensorsKrxOffRounded.tsx | 2 +- src/IconSensorsKrxOffRoundedFilled.tsx | 2 +- src/IconSensorsKrxOffSharp.tsx | 2 +- src/IconSensorsKrxOffSharpFilled.tsx | 2 +- src/IconSensorsKrxOutlined.tsx | 2 +- src/IconSensorsKrxOutlinedFilled.tsx | 2 +- src/IconSensorsKrxRounded.tsx | 2 +- src/IconSensorsKrxRoundedFilled.tsx | 2 +- src/IconSensorsKrxSharp.tsx | 2 +- src/IconSensorsKrxSharpFilled.tsx | 2 +- src/IconSensorsOffOutlined.tsx | 2 +- src/IconSensorsOffOutlinedFilled.tsx | 2 +- src/IconSensorsOffRounded.tsx | 2 +- src/IconSensorsOffRoundedFilled.tsx | 2 +- src/IconSensorsOffSharp.tsx | 2 +- src/IconSensorsOffSharpFilled.tsx | 2 +- src/IconSensorsOutlined.tsx | 2 +- src/IconSensorsOutlinedFilled.tsx | 2 +- src/IconSensorsRounded.tsx | 2 +- src/IconSensorsRoundedFilled.tsx | 2 +- src/IconSensorsSharp.tsx | 2 +- src/IconSensorsSharpFilled.tsx | 2 +- src/IconSentimentCalmOutlined.tsx | 2 +- src/IconSentimentCalmOutlinedFilled.tsx | 2 +- src/IconSentimentCalmRounded.tsx | 2 +- src/IconSentimentCalmRoundedFilled.tsx | 2 +- src/IconSentimentCalmSharp.tsx | 2 +- src/IconSentimentCalmSharpFilled.tsx | 2 +- src/IconSentimentContentOutlined.tsx | 2 +- src/IconSentimentContentOutlinedFilled.tsx | 2 +- src/IconSentimentContentRounded.tsx | 2 +- src/IconSentimentContentRoundedFilled.tsx | 2 +- src/IconSentimentContentSharp.tsx | 2 +- src/IconSentimentContentSharpFilled.tsx | 2 +- src/IconSentimentDissatisfiedOutlined.tsx | 2 +- src/IconSentimentDissatisfiedOutlinedFilled.tsx | 2 +- src/IconSentimentDissatisfiedRounded.tsx | 2 +- src/IconSentimentDissatisfiedRoundedFilled.tsx | 2 +- src/IconSentimentDissatisfiedSharp.tsx | 2 +- src/IconSentimentDissatisfiedSharpFilled.tsx | 2 +- src/IconSentimentExcitedOutlined.tsx | 2 +- src/IconSentimentExcitedOutlinedFilled.tsx | 2 +- src/IconSentimentExcitedRounded.tsx | 2 +- src/IconSentimentExcitedRoundedFilled.tsx | 2 +- src/IconSentimentExcitedSharp.tsx | 2 +- src/IconSentimentExcitedSharpFilled.tsx | 2 +- src/IconSentimentExtremelyDissatisfiedOutlined.tsx | 2 +- src/IconSentimentExtremelyDissatisfiedOutlinedFilled.tsx | 2 +- src/IconSentimentExtremelyDissatisfiedRounded.tsx | 2 +- src/IconSentimentExtremelyDissatisfiedRoundedFilled.tsx | 2 +- src/IconSentimentExtremelyDissatisfiedSharp.tsx | 2 +- src/IconSentimentExtremelyDissatisfiedSharpFilled.tsx | 2 +- src/IconSentimentFrustratedOutlined.tsx | 2 +- src/IconSentimentFrustratedOutlinedFilled.tsx | 2 +- src/IconSentimentFrustratedRounded.tsx | 2 +- src/IconSentimentFrustratedRoundedFilled.tsx | 2 +- src/IconSentimentFrustratedSharp.tsx | 2 +- src/IconSentimentFrustratedSharpFilled.tsx | 2 +- src/IconSentimentNeutralOutlined.tsx | 2 +- src/IconSentimentNeutralOutlinedFilled.tsx | 2 +- src/IconSentimentNeutralRounded.tsx | 2 +- src/IconSentimentNeutralRoundedFilled.tsx | 2 +- src/IconSentimentNeutralSharp.tsx | 2 +- src/IconSentimentNeutralSharpFilled.tsx | 2 +- src/IconSentimentSadOutlined.tsx | 2 +- src/IconSentimentSadOutlinedFilled.tsx | 2 +- src/IconSentimentSadRounded.tsx | 2 +- src/IconSentimentSadRoundedFilled.tsx | 2 +- src/IconSentimentSadSharp.tsx | 2 +- src/IconSentimentSadSharpFilled.tsx | 2 +- src/IconSentimentSatisfiedOutlined.tsx | 2 +- src/IconSentimentSatisfiedOutlinedFilled.tsx | 2 +- src/IconSentimentSatisfiedRounded.tsx | 2 +- src/IconSentimentSatisfiedRoundedFilled.tsx | 2 +- src/IconSentimentSatisfiedSharp.tsx | 2 +- src/IconSentimentSatisfiedSharpFilled.tsx | 2 +- src/IconSentimentStressedOutlined.tsx | 2 +- src/IconSentimentStressedOutlinedFilled.tsx | 2 +- src/IconSentimentStressedRounded.tsx | 2 +- src/IconSentimentStressedRoundedFilled.tsx | 2 +- src/IconSentimentStressedSharp.tsx | 2 +- src/IconSentimentStressedSharpFilled.tsx | 2 +- src/IconSentimentVeryDissatisfiedOutlined.tsx | 2 +- src/IconSentimentVeryDissatisfiedOutlinedFilled.tsx | 2 +- src/IconSentimentVeryDissatisfiedRounded.tsx | 2 +- src/IconSentimentVeryDissatisfiedRoundedFilled.tsx | 2 +- src/IconSentimentVeryDissatisfiedSharp.tsx | 2 +- src/IconSentimentVeryDissatisfiedSharpFilled.tsx | 2 +- src/IconSentimentVerySatisfiedOutlined.tsx | 2 +- src/IconSentimentVerySatisfiedOutlinedFilled.tsx | 2 +- src/IconSentimentVerySatisfiedRounded.tsx | 2 +- src/IconSentimentVerySatisfiedRoundedFilled.tsx | 2 +- src/IconSentimentVerySatisfiedSharp.tsx | 2 +- src/IconSentimentVerySatisfiedSharpFilled.tsx | 2 +- src/IconSentimentWorriedOutlined.tsx | 2 +- src/IconSentimentWorriedOutlinedFilled.tsx | 2 +- src/IconSentimentWorriedRounded.tsx | 2 +- src/IconSentimentWorriedRoundedFilled.tsx | 2 +- src/IconSentimentWorriedSharp.tsx | 2 +- src/IconSentimentWorriedSharpFilled.tsx | 2 +- src/IconSerifOutlined.tsx | 2 +- src/IconSerifOutlinedFilled.tsx | 2 +- src/IconSerifRounded.tsx | 2 +- src/IconSerifRoundedFilled.tsx | 2 +- src/IconSerifSharp.tsx | 2 +- src/IconSerifSharpFilled.tsx | 2 +- src/IconServiceToolboxOutlined.tsx | 2 +- src/IconServiceToolboxOutlinedFilled.tsx | 2 +- src/IconServiceToolboxRounded.tsx | 2 +- src/IconServiceToolboxRoundedFilled.tsx | 2 +- src/IconServiceToolboxSharp.tsx | 2 +- src/IconServiceToolboxSharpFilled.tsx | 2 +- src/IconSetMealOutlined.tsx | 2 +- src/IconSetMealOutlinedFilled.tsx | 2 +- src/IconSetMealRounded.tsx | 2 +- src/IconSetMealRoundedFilled.tsx | 2 +- src/IconSetMealSharp.tsx | 2 +- src/IconSetMealSharpFilled.tsx | 2 +- src/IconSettingsAccessibilityOutlined.tsx | 2 +- src/IconSettingsAccessibilityOutlinedFilled.tsx | 2 +- src/IconSettingsAccessibilityRounded.tsx | 2 +- src/IconSettingsAccessibilityRoundedFilled.tsx | 2 +- src/IconSettingsAccessibilitySharp.tsx | 2 +- src/IconSettingsAccessibilitySharpFilled.tsx | 2 +- src/IconSettingsAccountBoxOutlined.tsx | 2 +- src/IconSettingsAccountBoxOutlinedFilled.tsx | 2 +- src/IconSettingsAccountBoxRounded.tsx | 2 +- src/IconSettingsAccountBoxRoundedFilled.tsx | 2 +- src/IconSettingsAccountBoxSharp.tsx | 2 +- src/IconSettingsAccountBoxSharpFilled.tsx | 2 +- src/IconSettingsAlertOutlined.tsx | 2 +- src/IconSettingsAlertOutlinedFilled.tsx | 2 +- src/IconSettingsAlertRounded.tsx | 2 +- src/IconSettingsAlertRoundedFilled.tsx | 2 +- src/IconSettingsAlertSharp.tsx | 2 +- src/IconSettingsAlertSharpFilled.tsx | 2 +- src/IconSettingsApplicationsOutlined.tsx | 2 +- src/IconSettingsApplicationsOutlinedFilled.tsx | 2 +- src/IconSettingsApplicationsRounded.tsx | 2 +- src/IconSettingsApplicationsRoundedFilled.tsx | 2 +- src/IconSettingsApplicationsSharp.tsx | 2 +- src/IconSettingsApplicationsSharpFilled.tsx | 2 +- src/IconSettingsBRollOutlined.tsx | 2 +- src/IconSettingsBRollOutlinedFilled.tsx | 2 +- src/IconSettingsBRollRounded.tsx | 2 +- src/IconSettingsBRollRoundedFilled.tsx | 2 +- src/IconSettingsBRollSharp.tsx | 2 +- src/IconSettingsBRollSharpFilled.tsx | 2 +- src/IconSettingsBackupRestoreOutlined.tsx | 2 +- src/IconSettingsBackupRestoreOutlinedFilled.tsx | 2 +- src/IconSettingsBackupRestoreRounded.tsx | 2 +- src/IconSettingsBackupRestoreRoundedFilled.tsx | 2 +- src/IconSettingsBackupRestoreSharp.tsx | 2 +- src/IconSettingsBackupRestoreSharpFilled.tsx | 2 +- src/IconSettingsBluetoothOutlined.tsx | 2 +- src/IconSettingsBluetoothOutlinedFilled.tsx | 2 +- src/IconSettingsBluetoothRounded.tsx | 2 +- src/IconSettingsBluetoothRoundedFilled.tsx | 2 +- src/IconSettingsBluetoothSharp.tsx | 2 +- src/IconSettingsBluetoothSharpFilled.tsx | 2 +- src/IconSettingsBrightnessOutlined.tsx | 2 +- src/IconSettingsBrightnessOutlinedFilled.tsx | 2 +- src/IconSettingsBrightnessRounded.tsx | 2 +- src/IconSettingsBrightnessRoundedFilled.tsx | 2 +- src/IconSettingsBrightnessSharp.tsx | 2 +- src/IconSettingsBrightnessSharpFilled.tsx | 2 +- src/IconSettingsCellOutlined.tsx | 2 +- src/IconSettingsCellOutlinedFilled.tsx | 2 +- src/IconSettingsCellRounded.tsx | 2 +- src/IconSettingsCellRoundedFilled.tsx | 2 +- src/IconSettingsCellSharp.tsx | 2 +- src/IconSettingsCellSharpFilled.tsx | 2 +- src/IconSettingsCinematicBlurOutlined.tsx | 2 +- src/IconSettingsCinematicBlurOutlinedFilled.tsx | 2 +- src/IconSettingsCinematicBlurRounded.tsx | 2 +- src/IconSettingsCinematicBlurRoundedFilled.tsx | 2 +- src/IconSettingsCinematicBlurSharp.tsx | 2 +- src/IconSettingsCinematicBlurSharpFilled.tsx | 2 +- src/IconSettingsEthernetOutlined.tsx | 2 +- src/IconSettingsEthernetOutlinedFilled.tsx | 2 +- src/IconSettingsEthernetRounded.tsx | 2 +- src/IconSettingsEthernetRoundedFilled.tsx | 2 +- src/IconSettingsEthernetSharp.tsx | 2 +- src/IconSettingsEthernetSharpFilled.tsx | 2 +- src/IconSettingsHeartOutlined.tsx | 2 +- src/IconSettingsHeartOutlinedFilled.tsx | 2 +- src/IconSettingsHeartRounded.tsx | 2 +- src/IconSettingsHeartRoundedFilled.tsx | 2 +- src/IconSettingsHeartSharp.tsx | 2 +- src/IconSettingsHeartSharpFilled.tsx | 2 +- src/IconSettingsInputAntennaOutlined.tsx | 2 +- src/IconSettingsInputAntennaOutlinedFilled.tsx | 2 +- src/IconSettingsInputAntennaRounded.tsx | 2 +- src/IconSettingsInputAntennaRoundedFilled.tsx | 2 +- src/IconSettingsInputAntennaSharp.tsx | 2 +- src/IconSettingsInputAntennaSharpFilled.tsx | 2 +- src/IconSettingsInputComponentOutlined.tsx | 2 +- src/IconSettingsInputComponentOutlinedFilled.tsx | 2 +- src/IconSettingsInputComponentRounded.tsx | 2 +- src/IconSettingsInputComponentRoundedFilled.tsx | 2 +- src/IconSettingsInputComponentSharp.tsx | 2 +- src/IconSettingsInputComponentSharpFilled.tsx | 2 +- src/IconSettingsInputHdmiOutlined.tsx | 2 +- src/IconSettingsInputHdmiOutlinedFilled.tsx | 2 +- src/IconSettingsInputHdmiRounded.tsx | 2 +- src/IconSettingsInputHdmiRoundedFilled.tsx | 2 +- src/IconSettingsInputHdmiSharp.tsx | 2 +- src/IconSettingsInputHdmiSharpFilled.tsx | 2 +- src/IconSettingsInputSvideoOutlined.tsx | 2 +- src/IconSettingsInputSvideoOutlinedFilled.tsx | 2 +- src/IconSettingsInputSvideoRounded.tsx | 2 +- src/IconSettingsInputSvideoRoundedFilled.tsx | 2 +- src/IconSettingsInputSvideoSharp.tsx | 2 +- src/IconSettingsInputSvideoSharpFilled.tsx | 2 +- src/IconSettingsMotionModeOutlined.tsx | 2 +- src/IconSettingsMotionModeOutlinedFilled.tsx | 2 +- src/IconSettingsMotionModeRounded.tsx | 2 +- src/IconSettingsMotionModeRoundedFilled.tsx | 2 +- src/IconSettingsMotionModeSharp.tsx | 2 +- src/IconSettingsMotionModeSharpFilled.tsx | 2 +- src/IconSettingsNightSightOutlined.tsx | 2 +- src/IconSettingsNightSightOutlinedFilled.tsx | 2 +- src/IconSettingsNightSightRounded.tsx | 2 +- src/IconSettingsNightSightRoundedFilled.tsx | 2 +- src/IconSettingsNightSightSharp.tsx | 2 +- src/IconSettingsNightSightSharpFilled.tsx | 2 +- src/IconSettingsOutlined.tsx | 2 +- src/IconSettingsOutlinedFilled.tsx | 2 +- src/IconSettingsOverscanOutlined.tsx | 2 +- src/IconSettingsOverscanOutlinedFilled.tsx | 2 +- src/IconSettingsOverscanRounded.tsx | 2 +- src/IconSettingsOverscanRoundedFilled.tsx | 2 +- src/IconSettingsOverscanSharp.tsx | 2 +- src/IconSettingsOverscanSharpFilled.tsx | 2 +- src/IconSettingsPanoramaOutlined.tsx | 2 +- src/IconSettingsPanoramaOutlinedFilled.tsx | 2 +- src/IconSettingsPanoramaRounded.tsx | 2 +- src/IconSettingsPanoramaRoundedFilled.tsx | 2 +- src/IconSettingsPanoramaSharp.tsx | 2 +- src/IconSettingsPanoramaSharpFilled.tsx | 2 +- src/IconSettingsPhoneOutlined.tsx | 2 +- src/IconSettingsPhoneOutlinedFilled.tsx | 2 +- src/IconSettingsPhoneRounded.tsx | 2 +- src/IconSettingsPhoneRoundedFilled.tsx | 2 +- src/IconSettingsPhoneSharp.tsx | 2 +- src/IconSettingsPhoneSharpFilled.tsx | 2 +- src/IconSettingsPhotoCameraOutlined.tsx | 2 +- src/IconSettingsPhotoCameraOutlinedFilled.tsx | 2 +- src/IconSettingsPhotoCameraRounded.tsx | 2 +- src/IconSettingsPhotoCameraRoundedFilled.tsx | 2 +- src/IconSettingsPhotoCameraSharp.tsx | 2 +- src/IconSettingsPhotoCameraSharpFilled.tsx | 2 +- src/IconSettingsPowerOutlined.tsx | 2 +- src/IconSettingsPowerOutlinedFilled.tsx | 2 +- src/IconSettingsPowerRounded.tsx | 2 +- src/IconSettingsPowerRoundedFilled.tsx | 2 +- src/IconSettingsPowerSharp.tsx | 2 +- src/IconSettingsPowerSharpFilled.tsx | 2 +- src/IconSettingsRemoteOutlined.tsx | 2 +- src/IconSettingsRemoteOutlinedFilled.tsx | 2 +- src/IconSettingsRemoteRounded.tsx | 2 +- src/IconSettingsRemoteRoundedFilled.tsx | 2 +- src/IconSettingsRemoteSharp.tsx | 2 +- src/IconSettingsRemoteSharpFilled.tsx | 2 +- src/IconSettingsRounded.tsx | 2 +- src/IconSettingsRoundedFilled.tsx | 2 +- src/IconSettingsSharp.tsx | 2 +- src/IconSettingsSharpFilled.tsx | 2 +- src/IconSettingsSlowMotionOutlined.tsx | 2 +- src/IconSettingsSlowMotionOutlinedFilled.tsx | 2 +- src/IconSettingsSlowMotionRounded.tsx | 2 +- src/IconSettingsSlowMotionRoundedFilled.tsx | 2 +- src/IconSettingsSlowMotionSharp.tsx | 2 +- src/IconSettingsSlowMotionSharpFilled.tsx | 2 +- src/IconSettingsSystemDaydreamOutlined.tsx | 2 +- src/IconSettingsSystemDaydreamOutlinedFilled.tsx | 2 +- src/IconSettingsSystemDaydreamRounded.tsx | 2 +- src/IconSettingsSystemDaydreamRoundedFilled.tsx | 2 +- src/IconSettingsSystemDaydreamSharp.tsx | 2 +- src/IconSettingsSystemDaydreamSharpFilled.tsx | 2 +- src/IconSettingsTimelapseOutlined.tsx | 2 +- src/IconSettingsTimelapseOutlinedFilled.tsx | 2 +- src/IconSettingsTimelapseRounded.tsx | 2 +- src/IconSettingsTimelapseRoundedFilled.tsx | 2 +- src/IconSettingsTimelapseSharp.tsx | 2 +- src/IconSettingsTimelapseSharpFilled.tsx | 2 +- src/IconSettingsVideoCameraOutlined.tsx | 2 +- src/IconSettingsVideoCameraOutlinedFilled.tsx | 2 +- src/IconSettingsVideoCameraRounded.tsx | 2 +- src/IconSettingsVideoCameraRoundedFilled.tsx | 2 +- src/IconSettingsVideoCameraSharp.tsx | 2 +- src/IconSettingsVideoCameraSharpFilled.tsx | 2 +- src/IconSettingsVoiceOutlined.tsx | 2 +- src/IconSettingsVoiceOutlinedFilled.tsx | 2 +- src/IconSettingsVoiceRounded.tsx | 2 +- src/IconSettingsVoiceRoundedFilled.tsx | 2 +- src/IconSettingsVoiceSharp.tsx | 2 +- src/IconSettingsVoiceSharpFilled.tsx | 2 +- src/IconSettopComponentOutlined.tsx | 2 +- src/IconSettopComponentOutlinedFilled.tsx | 2 +- src/IconSettopComponentRounded.tsx | 2 +- src/IconSettopComponentRoundedFilled.tsx | 2 +- src/IconSettopComponentSharp.tsx | 2 +- src/IconSettopComponentSharpFilled.tsx | 2 +- src/IconSevereColdOutlined.tsx | 2 +- src/IconSevereColdOutlinedFilled.tsx | 2 +- src/IconSevereColdRounded.tsx | 2 +- src/IconSevereColdRoundedFilled.tsx | 2 +- src/IconSevereColdSharp.tsx | 2 +- src/IconSevereColdSharpFilled.tsx | 2 +- src/IconShadowAddOutlined.tsx | 2 +- src/IconShadowAddOutlinedFilled.tsx | 2 +- src/IconShadowAddRounded.tsx | 2 +- src/IconShadowAddRoundedFilled.tsx | 2 +- src/IconShadowAddSharp.tsx | 2 +- src/IconShadowAddSharpFilled.tsx | 2 +- src/IconShadowMinusOutlined.tsx | 2 +- src/IconShadowMinusOutlinedFilled.tsx | 2 +- src/IconShadowMinusRounded.tsx | 2 +- src/IconShadowMinusRoundedFilled.tsx | 2 +- src/IconShadowMinusSharp.tsx | 2 +- src/IconShadowMinusSharpFilled.tsx | 2 +- src/IconShadowOutlined.tsx | 2 +- src/IconShadowOutlinedFilled.tsx | 2 +- src/IconShadowRounded.tsx | 2 +- src/IconShadowRoundedFilled.tsx | 2 +- src/IconShadowSharp.tsx | 2 +- src/IconShadowSharpFilled.tsx | 2 +- src/IconShapeLineOutlined.tsx | 2 +- src/IconShapeLineOutlinedFilled.tsx | 2 +- src/IconShapeLineRounded.tsx | 2 +- src/IconShapeLineRoundedFilled.tsx | 2 +- src/IconShapeLineSharp.tsx | 2 +- src/IconShapeLineSharpFilled.tsx | 2 +- src/IconShapesOutlined.tsx | 2 +- src/IconShapesOutlinedFilled.tsx | 2 +- src/IconShapesRounded.tsx | 2 +- src/IconShapesRoundedFilled.tsx | 2 +- src/IconShapesSharp.tsx | 2 +- src/IconShapesSharpFilled.tsx | 2 +- src/IconShareLocationOutlined.tsx | 2 +- src/IconShareLocationOutlinedFilled.tsx | 2 +- src/IconShareLocationRounded.tsx | 2 +- src/IconShareLocationRoundedFilled.tsx | 2 +- src/IconShareLocationSharp.tsx | 2 +- src/IconShareLocationSharpFilled.tsx | 2 +- src/IconShareOffOutlined.tsx | 2 +- src/IconShareOffOutlinedFilled.tsx | 2 +- src/IconShareOffRounded.tsx | 2 +- src/IconShareOffRoundedFilled.tsx | 2 +- src/IconShareOffSharp.tsx | 2 +- src/IconShareOffSharpFilled.tsx | 2 +- src/IconShareOutlined.tsx | 2 +- src/IconShareOutlinedFilled.tsx | 2 +- src/IconShareReviewsOutlined.tsx | 2 +- src/IconShareReviewsOutlinedFilled.tsx | 2 +- src/IconShareReviewsRounded.tsx | 2 +- src/IconShareReviewsRoundedFilled.tsx | 2 +- src/IconShareReviewsSharp.tsx | 2 +- src/IconShareReviewsSharpFilled.tsx | 2 +- src/IconShareRounded.tsx | 2 +- src/IconShareRoundedFilled.tsx | 2 +- src/IconShareSharp.tsx | 2 +- src/IconShareSharpFilled.tsx | 2 +- src/IconShareWindowsOutlined.tsx | 2 +- src/IconShareWindowsOutlinedFilled.tsx | 2 +- src/IconShareWindowsRounded.tsx | 2 +- src/IconShareWindowsRoundedFilled.tsx | 2 +- src/IconShareWindowsSharp.tsx | 2 +- src/IconShareWindowsSharpFilled.tsx | 2 +- src/IconSheetsRtlOutlined.tsx | 2 +- src/IconSheetsRtlOutlinedFilled.tsx | 2 +- src/IconSheetsRtlRounded.tsx | 2 +- src/IconSheetsRtlRoundedFilled.tsx | 2 +- src/IconSheetsRtlSharp.tsx | 2 +- src/IconSheetsRtlSharpFilled.tsx | 2 +- src/IconShelfAutoHideOutlined.tsx | 2 +- src/IconShelfAutoHideOutlinedFilled.tsx | 2 +- src/IconShelfAutoHideRounded.tsx | 2 +- src/IconShelfAutoHideRoundedFilled.tsx | 2 +- src/IconShelfAutoHideSharp.tsx | 2 +- src/IconShelfAutoHideSharpFilled.tsx | 2 +- src/IconShelfPositionOutlined.tsx | 2 +- src/IconShelfPositionOutlinedFilled.tsx | 2 +- src/IconShelfPositionRounded.tsx | 2 +- src/IconShelfPositionRoundedFilled.tsx | 2 +- src/IconShelfPositionSharp.tsx | 2 +- src/IconShelfPositionSharpFilled.tsx | 2 +- src/IconShelvesOutlined.tsx | 2 +- src/IconShelvesOutlinedFilled.tsx | 2 +- src/IconShelvesRounded.tsx | 2 +- src/IconShelvesRoundedFilled.tsx | 2 +- src/IconShelvesSharp.tsx | 2 +- src/IconShelvesSharpFilled.tsx | 2 +- src/IconShieldLockOutlined.tsx | 2 +- src/IconShieldLockOutlinedFilled.tsx | 2 +- src/IconShieldLockRounded.tsx | 2 +- src/IconShieldLockRoundedFilled.tsx | 2 +- src/IconShieldLockSharp.tsx | 2 +- src/IconShieldLockSharpFilled.tsx | 2 +- src/IconShieldLockedOutlined.tsx | 2 +- src/IconShieldLockedOutlinedFilled.tsx | 2 +- src/IconShieldLockedRounded.tsx | 2 +- src/IconShieldLockedRoundedFilled.tsx | 2 +- src/IconShieldLockedSharp.tsx | 2 +- src/IconShieldLockedSharpFilled.tsx | 2 +- src/IconShieldMoonOutlined.tsx | 2 +- src/IconShieldMoonOutlinedFilled.tsx | 2 +- src/IconShieldMoonRounded.tsx | 2 +- src/IconShieldMoonRoundedFilled.tsx | 2 +- src/IconShieldMoonSharp.tsx | 2 +- src/IconShieldMoonSharpFilled.tsx | 2 +- src/IconShieldOutlined.tsx | 2 +- src/IconShieldOutlinedFilled.tsx | 2 +- src/IconShieldPersonOutlined.tsx | 2 +- src/IconShieldPersonOutlinedFilled.tsx | 2 +- src/IconShieldPersonRounded.tsx | 2 +- src/IconShieldPersonRoundedFilled.tsx | 2 +- src/IconShieldPersonSharp.tsx | 2 +- src/IconShieldPersonSharpFilled.tsx | 2 +- src/IconShieldQuestionOutlined.tsx | 2 +- src/IconShieldQuestionOutlinedFilled.tsx | 2 +- src/IconShieldQuestionRounded.tsx | 2 +- src/IconShieldQuestionRoundedFilled.tsx | 2 +- src/IconShieldQuestionSharp.tsx | 2 +- src/IconShieldQuestionSharpFilled.tsx | 2 +- src/IconShieldRounded.tsx | 2 +- src/IconShieldRoundedFilled.tsx | 2 +- src/IconShieldSharp.tsx | 2 +- src/IconShieldSharpFilled.tsx | 2 +- src/IconShieldWithHeartOutlined.tsx | 2 +- src/IconShieldWithHeartOutlinedFilled.tsx | 2 +- src/IconShieldWithHeartRounded.tsx | 2 +- src/IconShieldWithHeartRoundedFilled.tsx | 2 +- src/IconShieldWithHeartSharp.tsx | 2 +- src/IconShieldWithHeartSharpFilled.tsx | 2 +- src/IconShieldWithHouseOutlined.tsx | 2 +- src/IconShieldWithHouseOutlinedFilled.tsx | 2 +- src/IconShieldWithHouseRounded.tsx | 2 +- src/IconShieldWithHouseRoundedFilled.tsx | 2 +- src/IconShieldWithHouseSharp.tsx | 2 +- src/IconShieldWithHouseSharpFilled.tsx | 2 +- src/IconShiftLockOffOutlined.tsx | 2 +- src/IconShiftLockOffOutlinedFilled.tsx | 2 +- src/IconShiftLockOffRounded.tsx | 2 +- src/IconShiftLockOffRoundedFilled.tsx | 2 +- src/IconShiftLockOffSharp.tsx | 2 +- src/IconShiftLockOffSharpFilled.tsx | 2 +- src/IconShiftLockOutlined.tsx | 2 +- src/IconShiftLockOutlinedFilled.tsx | 2 +- src/IconShiftLockRounded.tsx | 2 +- src/IconShiftLockRoundedFilled.tsx | 2 +- src/IconShiftLockSharp.tsx | 2 +- src/IconShiftLockSharpFilled.tsx | 2 +- src/IconShiftOutlined.tsx | 2 +- src/IconShiftOutlinedFilled.tsx | 2 +- src/IconShiftRounded.tsx | 2 +- src/IconShiftRoundedFilled.tsx | 2 +- src/IconShiftSharp.tsx | 2 +- src/IconShiftSharpFilled.tsx | 2 +- src/IconShopOutlined.tsx | 2 +- src/IconShopOutlinedFilled.tsx | 2 +- src/IconShopRounded.tsx | 2 +- src/IconShopRoundedFilled.tsx | 2 +- src/IconShopSharp.tsx | 2 +- src/IconShopSharpFilled.tsx | 2 +- src/IconShopTwoOutlined.tsx | 2 +- src/IconShopTwoOutlinedFilled.tsx | 2 +- src/IconShopTwoRounded.tsx | 2 +- src/IconShopTwoRoundedFilled.tsx | 2 +- src/IconShopTwoSharp.tsx | 2 +- src/IconShopTwoSharpFilled.tsx | 2 +- src/IconShoppingBagOutlined.tsx | 2 +- src/IconShoppingBagOutlinedFilled.tsx | 2 +- src/IconShoppingBagRounded.tsx | 2 +- src/IconShoppingBagRoundedFilled.tsx | 2 +- src/IconShoppingBagSharp.tsx | 2 +- src/IconShoppingBagSharpFilled.tsx | 2 +- src/IconShoppingBasketOutlined.tsx | 2 +- src/IconShoppingBasketOutlinedFilled.tsx | 2 +- src/IconShoppingBasketRounded.tsx | 2 +- src/IconShoppingBasketRoundedFilled.tsx | 2 +- src/IconShoppingBasketSharp.tsx | 2 +- src/IconShoppingBasketSharpFilled.tsx | 2 +- src/IconShoppingCartCheckoutOutlined.tsx | 2 +- src/IconShoppingCartCheckoutOutlinedFilled.tsx | 2 +- src/IconShoppingCartCheckoutRounded.tsx | 2 +- src/IconShoppingCartCheckoutRoundedFilled.tsx | 2 +- src/IconShoppingCartCheckoutSharp.tsx | 2 +- src/IconShoppingCartCheckoutSharpFilled.tsx | 2 +- src/IconShoppingCartOffOutlined.tsx | 2 +- src/IconShoppingCartOffOutlinedFilled.tsx | 2 +- src/IconShoppingCartOffRounded.tsx | 2 +- src/IconShoppingCartOffRoundedFilled.tsx | 2 +- src/IconShoppingCartOffSharp.tsx | 2 +- src/IconShoppingCartOffSharpFilled.tsx | 2 +- src/IconShoppingCartOutlined.tsx | 2 +- src/IconShoppingCartOutlinedFilled.tsx | 2 +- src/IconShoppingCartRounded.tsx | 2 +- src/IconShoppingCartRoundedFilled.tsx | 2 +- src/IconShoppingCartSharp.tsx | 2 +- src/IconShoppingCartSharpFilled.tsx | 2 +- src/IconShoppingmodeOutlined.tsx | 2 +- src/IconShoppingmodeOutlinedFilled.tsx | 2 +- src/IconShoppingmodeRounded.tsx | 2 +- src/IconShoppingmodeRoundedFilled.tsx | 2 +- src/IconShoppingmodeSharp.tsx | 2 +- src/IconShoppingmodeSharpFilled.tsx | 2 +- src/IconShortStayOutlined.tsx | 2 +- src/IconShortStayOutlinedFilled.tsx | 2 +- src/IconShortStayRounded.tsx | 2 +- src/IconShortStayRoundedFilled.tsx | 2 +- src/IconShortStaySharp.tsx | 2 +- src/IconShortStaySharpFilled.tsx | 2 +- src/IconShortTextOutlined.tsx | 2 +- src/IconShortTextOutlinedFilled.tsx | 2 +- src/IconShortTextRounded.tsx | 2 +- src/IconShortTextRoundedFilled.tsx | 2 +- src/IconShortTextSharp.tsx | 2 +- src/IconShortTextSharpFilled.tsx | 2 +- src/IconShowChartOutlined.tsx | 2 +- src/IconShowChartOutlinedFilled.tsx | 2 +- src/IconShowChartRounded.tsx | 2 +- src/IconShowChartRoundedFilled.tsx | 2 +- src/IconShowChartSharp.tsx | 2 +- src/IconShowChartSharpFilled.tsx | 2 +- src/IconShowerOutlined.tsx | 2 +- src/IconShowerOutlinedFilled.tsx | 2 +- src/IconShowerRounded.tsx | 2 +- src/IconShowerRoundedFilled.tsx | 2 +- src/IconShowerSharp.tsx | 2 +- src/IconShowerSharpFilled.tsx | 2 +- src/IconShuffleOnOutlined.tsx | 2 +- src/IconShuffleOnOutlinedFilled.tsx | 2 +- src/IconShuffleOnRounded.tsx | 2 +- src/IconShuffleOnRoundedFilled.tsx | 2 +- src/IconShuffleOnSharp.tsx | 2 +- src/IconShuffleOnSharpFilled.tsx | 2 +- src/IconShuffleOutlined.tsx | 2 +- src/IconShuffleOutlinedFilled.tsx | 2 +- src/IconShuffleRounded.tsx | 2 +- src/IconShuffleRoundedFilled.tsx | 2 +- src/IconShuffleSharp.tsx | 2 +- src/IconShuffleSharpFilled.tsx | 2 +- src/IconShutterSpeedAddOutlined.tsx | 2 +- src/IconShutterSpeedAddOutlinedFilled.tsx | 2 +- src/IconShutterSpeedAddRounded.tsx | 2 +- src/IconShutterSpeedAddRoundedFilled.tsx | 2 +- src/IconShutterSpeedAddSharp.tsx | 2 +- src/IconShutterSpeedAddSharpFilled.tsx | 2 +- src/IconShutterSpeedMinusOutlined.tsx | 2 +- src/IconShutterSpeedMinusOutlinedFilled.tsx | 2 +- src/IconShutterSpeedMinusRounded.tsx | 2 +- src/IconShutterSpeedMinusRoundedFilled.tsx | 2 +- src/IconShutterSpeedMinusSharp.tsx | 2 +- src/IconShutterSpeedMinusSharpFilled.tsx | 2 +- src/IconShutterSpeedOutlinedFilled.tsx | 2 +- src/IconShutterSpeedRounded.tsx | 2 +- src/IconShutterSpeedRoundedFilled.tsx | 2 +- src/IconShutterSpeedSharp.tsx | 2 +- src/IconShutterSpeedSharpFilled.tsx | 2 +- src/IconSickOutlined.tsx | 2 +- src/IconSickOutlinedFilled.tsx | 2 +- src/IconSickRounded.tsx | 2 +- src/IconSickRoundedFilled.tsx | 2 +- src/IconSickSharp.tsx | 2 +- src/IconSickSharpFilled.tsx | 2 +- src/IconSideNavigationOutlined.tsx | 2 +- src/IconSideNavigationOutlinedFilled.tsx | 2 +- src/IconSideNavigationRounded.tsx | 2 +- src/IconSideNavigationRoundedFilled.tsx | 2 +- src/IconSideNavigationSharp.tsx | 2 +- src/IconSideNavigationSharpFilled.tsx | 2 +- src/IconSignLanguageOutlined.tsx | 2 +- src/IconSignLanguageOutlinedFilled.tsx | 2 +- src/IconSignLanguageRounded.tsx | 2 +- src/IconSignLanguageRoundedFilled.tsx | 2 +- src/IconSignLanguageSharp.tsx | 2 +- src/IconSignLanguageSharpFilled.tsx | 2 +- src/IconSignalCellular0BarOutlined.tsx | 2 +- src/IconSignalCellular0BarOutlinedFilled.tsx | 2 +- src/IconSignalCellular0BarRounded.tsx | 2 +- src/IconSignalCellular0BarRoundedFilled.tsx | 2 +- src/IconSignalCellular0BarSharp.tsx | 2 +- src/IconSignalCellular0BarSharpFilled.tsx | 2 +- src/IconSignalCellular1BarOutlined.tsx | 2 +- src/IconSignalCellular1BarOutlinedFilled.tsx | 2 +- src/IconSignalCellular1BarRounded.tsx | 2 +- src/IconSignalCellular1BarRoundedFilled.tsx | 2 +- src/IconSignalCellular1BarSharp.tsx | 2 +- src/IconSignalCellular1BarSharpFilled.tsx | 2 +- src/IconSignalCellular2BarOutlined.tsx | 2 +- src/IconSignalCellular2BarOutlinedFilled.tsx | 2 +- src/IconSignalCellular2BarRounded.tsx | 2 +- src/IconSignalCellular2BarRoundedFilled.tsx | 2 +- src/IconSignalCellular2BarSharp.tsx | 2 +- src/IconSignalCellular2BarSharpFilled.tsx | 2 +- src/IconSignalCellular3BarOutlined.tsx | 2 +- src/IconSignalCellular3BarOutlinedFilled.tsx | 2 +- src/IconSignalCellular3BarRounded.tsx | 2 +- src/IconSignalCellular3BarRoundedFilled.tsx | 2 +- src/IconSignalCellular3BarSharp.tsx | 2 +- src/IconSignalCellular3BarSharpFilled.tsx | 2 +- src/IconSignalCellular4BarOutlined.tsx | 2 +- src/IconSignalCellular4BarOutlinedFilled.tsx | 2 +- src/IconSignalCellular4BarRounded.tsx | 2 +- src/IconSignalCellular4BarRoundedFilled.tsx | 2 +- src/IconSignalCellular4BarSharp.tsx | 2 +- src/IconSignalCellular4BarSharpFilled.tsx | 2 +- src/IconSignalCellularAddOutlined.tsx | 2 +- src/IconSignalCellularAddOutlinedFilled.tsx | 2 +- src/IconSignalCellularAddRounded.tsx | 2 +- src/IconSignalCellularAddRoundedFilled.tsx | 2 +- src/IconSignalCellularAddSharp.tsx | 2 +- src/IconSignalCellularAddSharpFilled.tsx | 2 +- src/IconSignalCellularAlt1BarOutlined.tsx | 2 +- src/IconSignalCellularAlt1BarOutlinedFilled.tsx | 2 +- src/IconSignalCellularAlt1BarRounded.tsx | 2 +- src/IconSignalCellularAlt1BarRoundedFilled.tsx | 2 +- src/IconSignalCellularAlt1BarSharp.tsx | 2 +- src/IconSignalCellularAlt1BarSharpFilled.tsx | 2 +- src/IconSignalCellularAlt2BarOutlined.tsx | 2 +- src/IconSignalCellularAlt2BarOutlinedFilled.tsx | 2 +- src/IconSignalCellularAlt2BarRounded.tsx | 2 +- src/IconSignalCellularAlt2BarRoundedFilled.tsx | 2 +- src/IconSignalCellularAlt2BarSharp.tsx | 2 +- src/IconSignalCellularAlt2BarSharpFilled.tsx | 2 +- src/IconSignalCellularAltOutlined.tsx | 2 +- src/IconSignalCellularAltOutlinedFilled.tsx | 2 +- src/IconSignalCellularAltRounded.tsx | 2 +- src/IconSignalCellularAltRoundedFilled.tsx | 2 +- src/IconSignalCellularAltSharp.tsx | 2 +- src/IconSignalCellularAltSharpFilled.tsx | 2 +- src/IconSignalCellularConnectedNoInternet0BarOutlined.tsx | 2 +- src/IconSignalCellularConnectedNoInternet0BarOutlinedFilled.tsx | 2 +- src/IconSignalCellularConnectedNoInternet0BarRounded.tsx | 2 +- src/IconSignalCellularConnectedNoInternet0BarRoundedFilled.tsx | 2 +- src/IconSignalCellularConnectedNoInternet0BarSharp.tsx | 2 +- src/IconSignalCellularConnectedNoInternet0BarSharpFilled.tsx | 2 +- src/IconSignalCellularConnectedNoInternet4BarOutlined.tsx | 2 +- src/IconSignalCellularConnectedNoInternet4BarOutlinedFilled.tsx | 2 +- src/IconSignalCellularConnectedNoInternet4BarRounded.tsx | 2 +- src/IconSignalCellularConnectedNoInternet4BarRoundedFilled.tsx | 2 +- src/IconSignalCellularConnectedNoInternet4BarSharp.tsx | 2 +- src/IconSignalCellularConnectedNoInternet4BarSharpFilled.tsx | 2 +- src/IconSignalCellularNodataOutlined.tsx | 2 +- src/IconSignalCellularNodataOutlinedFilled.tsx | 2 +- src/IconSignalCellularNodataRounded.tsx | 2 +- src/IconSignalCellularNodataRoundedFilled.tsx | 2 +- src/IconSignalCellularNodataSharp.tsx | 2 +- src/IconSignalCellularNodataSharpFilled.tsx | 2 +- src/IconSignalCellularNullOutlinedFilled.tsx | 2 +- src/IconSignalCellularNullRounded.tsx | 2 +- src/IconSignalCellularNullRoundedFilled.tsx | 2 +- src/IconSignalCellularNullSharp.tsx | 2 +- src/IconSignalCellularNullSharpFilled.tsx | 2 +- src/IconSignalCellularOffOutlined.tsx | 2 +- src/IconSignalCellularOffOutlinedFilled.tsx | 2 +- src/IconSignalCellularOffRounded.tsx | 2 +- src/IconSignalCellularOffRoundedFilled.tsx | 2 +- src/IconSignalCellularOffSharp.tsx | 2 +- src/IconSignalCellularOffSharpFilled.tsx | 2 +- src/IconSignalCellularPauseOutlined.tsx | 2 +- src/IconSignalCellularPauseOutlinedFilled.tsx | 2 +- src/IconSignalCellularPauseRounded.tsx | 2 +- src/IconSignalCellularPauseRoundedFilled.tsx | 2 +- src/IconSignalCellularPauseSharp.tsx | 2 +- src/IconSignalCellularPauseSharpFilled.tsx | 2 +- src/IconSignalDisconnectedOutlined.tsx | 2 +- src/IconSignalDisconnectedOutlinedFilled.tsx | 2 +- src/IconSignalDisconnectedRounded.tsx | 2 +- src/IconSignalDisconnectedRoundedFilled.tsx | 2 +- src/IconSignalDisconnectedSharp.tsx | 2 +- src/IconSignalDisconnectedSharpFilled.tsx | 2 +- src/IconSignalWifi0BarOutlined.tsx | 2 +- src/IconSignalWifi0BarOutlinedFilled.tsx | 2 +- src/IconSignalWifi0BarRounded.tsx | 2 +- src/IconSignalWifi0BarRoundedFilled.tsx | 2 +- src/IconSignalWifi0BarSharp.tsx | 2 +- src/IconSignalWifi0BarSharpFilled.tsx | 2 +- src/IconSignalWifi4BarOutlined.tsx | 2 +- src/IconSignalWifi4BarOutlinedFilled.tsx | 2 +- src/IconSignalWifi4BarRounded.tsx | 2 +- src/IconSignalWifi4BarRoundedFilled.tsx | 2 +- src/IconSignalWifi4BarSharp.tsx | 2 +- src/IconSignalWifi4BarSharpFilled.tsx | 2 +- src/IconSignalWifiBadOutlined.tsx | 2 +- src/IconSignalWifiBadOutlinedFilled.tsx | 2 +- src/IconSignalWifiBadRounded.tsx | 2 +- src/IconSignalWifiBadRoundedFilled.tsx | 2 +- src/IconSignalWifiBadSharp.tsx | 2 +- src/IconSignalWifiBadSharpFilled.tsx | 2 +- src/IconSignalWifiOffOutlined.tsx | 2 +- src/IconSignalWifiOffOutlinedFilled.tsx | 2 +- src/IconSignalWifiOffRounded.tsx | 2 +- src/IconSignalWifiOffRoundedFilled.tsx | 2 +- src/IconSignalWifiOffSharp.tsx | 2 +- src/IconSignalWifiOffSharpFilled.tsx | 2 +- src/IconSignalWifiStatusbarNotConnectedOutlined.tsx | 2 +- src/IconSignalWifiStatusbarNotConnectedOutlinedFilled.tsx | 2 +- src/IconSignalWifiStatusbarNotConnectedRounded.tsx | 2 +- src/IconSignalWifiStatusbarNotConnectedRoundedFilled.tsx | 2 +- src/IconSignalWifiStatusbarNotConnectedSharp.tsx | 2 +- src/IconSignalWifiStatusbarNotConnectedSharpFilled.tsx | 2 +- src/IconSignalWifiStatusbarNullOutlined.tsx | 2 +- src/IconSignalWifiStatusbarNullOutlinedFilled.tsx | 2 +- src/IconSignalWifiStatusbarNullRounded.tsx | 2 +- src/IconSignalWifiStatusbarNullRoundedFilled.tsx | 2 +- src/IconSignalWifiStatusbarNullSharp.tsx | 2 +- src/IconSignalWifiStatusbarNullSharpFilled.tsx | 2 +- src/IconSignatureOutlined.tsx | 2 +- src/IconSignatureOutlinedFilled.tsx | 2 +- src/IconSignatureRounded.tsx | 2 +- src/IconSignatureRoundedFilled.tsx | 2 +- src/IconSignatureSharp.tsx | 2 +- src/IconSignatureSharpFilled.tsx | 2 +- src/IconSignpostOutlined.tsx | 2 +- src/IconSignpostOutlinedFilled.tsx | 2 +- src/IconSignpostRounded.tsx | 2 +- src/IconSignpostRoundedFilled.tsx | 2 +- src/IconSignpostSharp.tsx | 2 +- src/IconSignpostSharpFilled.tsx | 2 +- src/IconSimCardDownloadOutlined.tsx | 2 +- src/IconSimCardDownloadOutlinedFilled.tsx | 2 +- src/IconSimCardDownloadRounded.tsx | 2 +- src/IconSimCardDownloadRoundedFilled.tsx | 2 +- src/IconSimCardDownloadSharp.tsx | 2 +- src/IconSimCardDownloadSharpFilled.tsx | 2 +- src/IconSimCardOutlined.tsx | 2 +- src/IconSimCardOutlinedFilled.tsx | 2 +- src/IconSimCardRounded.tsx | 2 +- src/IconSimCardRoundedFilled.tsx | 2 +- src/IconSimCardSharp.tsx | 2 +- src/IconSimCardSharpFilled.tsx | 2 +- src/IconSingleBedOutlined.tsx | 2 +- src/IconSingleBedOutlinedFilled.tsx | 2 +- src/IconSingleBedRounded.tsx | 2 +- src/IconSingleBedRoundedFilled.tsx | 2 +- src/IconSingleBedSharp.tsx | 2 +- src/IconSingleBedSharpFilled.tsx | 2 +- src/IconSipOutlined.tsx | 2 +- src/IconSipOutlinedFilled.tsx | 2 +- src/IconSipRounded.tsx | 2 +- src/IconSipRoundedFilled.tsx | 2 +- src/IconSipSharp.tsx | 2 +- src/IconSipSharpFilled.tsx | 2 +- src/IconSkateboardingOutlined.tsx | 2 +- src/IconSkateboardingOutlinedFilled.tsx | 2 +- src/IconSkateboardingRounded.tsx | 2 +- src/IconSkateboardingRoundedFilled.tsx | 2 +- src/IconSkateboardingSharp.tsx | 2 +- src/IconSkateboardingSharpFilled.tsx | 2 +- src/IconSkeletonOutlined.tsx | 2 +- src/IconSkeletonOutlinedFilled.tsx | 2 +- src/IconSkeletonRounded.tsx | 2 +- src/IconSkeletonRoundedFilled.tsx | 2 +- src/IconSkeletonSharp.tsx | 2 +- src/IconSkeletonSharpFilled.tsx | 2 +- src/IconSkilletCooktopOutlined.tsx | 2 +- src/IconSkilletCooktopOutlinedFilled.tsx | 2 +- src/IconSkilletCooktopRounded.tsx | 2 +- src/IconSkilletCooktopRoundedFilled.tsx | 2 +- src/IconSkilletCooktopSharp.tsx | 2 +- src/IconSkilletCooktopSharpFilled.tsx | 2 +- src/IconSkilletOutlined.tsx | 2 +- src/IconSkilletOutlinedFilled.tsx | 2 +- src/IconSkilletRounded.tsx | 2 +- src/IconSkilletRoundedFilled.tsx | 2 +- src/IconSkilletSharp.tsx | 2 +- src/IconSkilletSharpFilled.tsx | 2 +- src/IconSkipNextOutlined.tsx | 2 +- src/IconSkipNextOutlinedFilled.tsx | 2 +- src/IconSkipNextRounded.tsx | 2 +- src/IconSkipNextRoundedFilled.tsx | 2 +- src/IconSkipNextSharp.tsx | 2 +- src/IconSkipNextSharpFilled.tsx | 2 +- src/IconSkipPreviousOutlined.tsx | 2 +- src/IconSkipPreviousOutlinedFilled.tsx | 2 +- src/IconSkipPreviousRounded.tsx | 2 +- src/IconSkipPreviousRoundedFilled.tsx | 2 +- src/IconSkipPreviousSharp.tsx | 2 +- src/IconSkipPreviousSharpFilled.tsx | 2 +- src/IconSkullOutlined.tsx | 2 +- src/IconSkullOutlinedFilled.tsx | 2 +- src/IconSkullRounded.tsx | 2 +- src/IconSkullRoundedFilled.tsx | 2 +- src/IconSkullSharp.tsx | 2 +- src/IconSkullSharpFilled.tsx | 2 +- src/IconSlabSerifOutlined.tsx | 2 +- src/IconSlabSerifOutlinedFilled.tsx | 2 +- src/IconSlabSerifRounded.tsx | 2 +- src/IconSlabSerifRoundedFilled.tsx | 2 +- src/IconSlabSerifSharp.tsx | 2 +- src/IconSlabSerifSharpFilled.tsx | 2 +- src/IconSleddingOutlined.tsx | 2 +- src/IconSleddingOutlinedFilled.tsx | 2 +- src/IconSleddingRounded.tsx | 2 +- src/IconSleddingRoundedFilled.tsx | 2 +- src/IconSleddingSharp.tsx | 2 +- src/IconSleddingSharpFilled.tsx | 2 +- src/IconSleepScoreOutlined.tsx | 2 +- src/IconSleepScoreOutlinedFilled.tsx | 2 +- src/IconSleepScoreRounded.tsx | 2 +- src/IconSleepScoreRoundedFilled.tsx | 2 +- src/IconSleepScoreSharp.tsx | 2 +- src/IconSleepScoreSharpFilled.tsx | 2 +- src/IconSlideLibraryOutlined.tsx | 2 +- src/IconSlideLibraryOutlinedFilled.tsx | 2 +- src/IconSlideLibraryRounded.tsx | 2 +- src/IconSlideLibraryRoundedFilled.tsx | 2 +- src/IconSlideLibrarySharp.tsx | 2 +- src/IconSlideLibrarySharpFilled.tsx | 2 +- src/IconSlidersOutlined.tsx | 2 +- src/IconSlidersOutlinedFilled.tsx | 2 +- src/IconSlidersRounded.tsx | 2 +- src/IconSlidersRoundedFilled.tsx | 2 +- src/IconSlidersSharp.tsx | 2 +- src/IconSlidersSharpFilled.tsx | 2 +- src/IconSlideshowOutlined.tsx | 2 +- src/IconSlideshowOutlinedFilled.tsx | 2 +- src/IconSlideshowRounded.tsx | 2 +- src/IconSlideshowRoundedFilled.tsx | 2 +- src/IconSlideshowSharp.tsx | 2 +- src/IconSlideshowSharpFilled.tsx | 2 +- src/IconSlowMotionVideoOutlined.tsx | 2 +- src/IconSlowMotionVideoOutlinedFilled.tsx | 2 +- src/IconSlowMotionVideoRounded.tsx | 2 +- src/IconSlowMotionVideoRoundedFilled.tsx | 2 +- src/IconSlowMotionVideoSharp.tsx | 2 +- src/IconSlowMotionVideoSharpFilled.tsx | 2 +- src/IconSmartCardReaderOffOutlined.tsx | 2 +- src/IconSmartCardReaderOffOutlinedFilled.tsx | 2 +- src/IconSmartCardReaderOffRounded.tsx | 2 +- src/IconSmartCardReaderOffRoundedFilled.tsx | 2 +- src/IconSmartCardReaderOffSharp.tsx | 2 +- src/IconSmartCardReaderOffSharpFilled.tsx | 2 +- src/IconSmartCardReaderOutlined.tsx | 2 +- src/IconSmartCardReaderOutlinedFilled.tsx | 2 +- src/IconSmartCardReaderRounded.tsx | 2 +- src/IconSmartCardReaderRoundedFilled.tsx | 2 +- src/IconSmartCardReaderSharp.tsx | 2 +- src/IconSmartCardReaderSharpFilled.tsx | 2 +- src/IconSmartDisplayOutlined.tsx | 2 +- src/IconSmartDisplayOutlinedFilled.tsx | 2 +- src/IconSmartDisplayRounded.tsx | 2 +- src/IconSmartDisplayRoundedFilled.tsx | 2 +- src/IconSmartDisplaySharp.tsx | 2 +- src/IconSmartDisplaySharpFilled.tsx | 2 +- src/IconSmartOutletOutlined.tsx | 2 +- src/IconSmartOutletOutlinedFilled.tsx | 2 +- src/IconSmartOutletRounded.tsx | 2 +- src/IconSmartOutletRoundedFilled.tsx | 2 +- src/IconSmartOutletSharp.tsx | 2 +- src/IconSmartOutletSharpFilled.tsx | 2 +- src/IconSmartScreenOutlined.tsx | 2 +- src/IconSmartScreenOutlinedFilled.tsx | 2 +- src/IconSmartScreenRounded.tsx | 2 +- src/IconSmartScreenRoundedFilled.tsx | 2 +- src/IconSmartScreenSharp.tsx | 2 +- src/IconSmartScreenSharpFilled.tsx | 2 +- src/IconSmartToyOutlined.tsx | 2 +- src/IconSmartToyOutlinedFilled.tsx | 2 +- src/IconSmartToyRounded.tsx | 2 +- src/IconSmartToyRoundedFilled.tsx | 2 +- src/IconSmartToySharp.tsx | 2 +- src/IconSmartToySharpFilled.tsx | 2 +- src/IconSmartphoneCameraOutlined.tsx | 2 +- src/IconSmartphoneCameraOutlinedFilled.tsx | 2 +- src/IconSmartphoneCameraRounded.tsx | 2 +- src/IconSmartphoneCameraRoundedFilled.tsx | 2 +- src/IconSmartphoneCameraSharp.tsx | 2 +- src/IconSmartphoneCameraSharpFilled.tsx | 2 +- src/IconSmartphoneOutlined.tsx | 2 +- src/IconSmartphoneOutlinedFilled.tsx | 2 +- src/IconSmartphoneRounded.tsx | 2 +- src/IconSmartphoneRoundedFilled.tsx | 2 +- src/IconSmartphoneSharp.tsx | 2 +- src/IconSmartphoneSharpFilled.tsx | 2 +- src/IconSmbShareOutlined.tsx | 2 +- src/IconSmbShareOutlinedFilled.tsx | 2 +- src/IconSmbShareRounded.tsx | 2 +- src/IconSmbShareRoundedFilled.tsx | 2 +- src/IconSmbShareSharp.tsx | 2 +- src/IconSmbShareSharpFilled.tsx | 2 +- src/IconSmokeFreeOutlined.tsx | 2 +- src/IconSmokeFreeOutlinedFilled.tsx | 2 +- src/IconSmokeFreeRounded.tsx | 2 +- src/IconSmokeFreeRoundedFilled.tsx | 2 +- src/IconSmokeFreeSharp.tsx | 2 +- src/IconSmokeFreeSharpFilled.tsx | 2 +- src/IconSmokingRoomsOutlined.tsx | 2 +- src/IconSmokingRoomsOutlinedFilled.tsx | 2 +- src/IconSmokingRoomsRounded.tsx | 2 +- src/IconSmokingRoomsRoundedFilled.tsx | 2 +- src/IconSmokingRoomsSharp.tsx | 2 +- src/IconSmokingRoomsSharpFilled.tsx | 2 +- src/IconSmsOutlined.tsx | 2 +- src/IconSmsOutlinedFilled.tsx | 2 +- src/IconSmsRounded.tsx | 2 +- src/IconSmsRoundedFilled.tsx | 2 +- src/IconSmsSharp.tsx | 2 +- src/IconSmsSharpFilled.tsx | 2 +- src/IconSnippetFolderOutlined.tsx | 2 +- src/IconSnippetFolderOutlinedFilled.tsx | 2 +- src/IconSnippetFolderRounded.tsx | 2 +- src/IconSnippetFolderRoundedFilled.tsx | 2 +- src/IconSnippetFolderSharp.tsx | 2 +- src/IconSnippetFolderSharpFilled.tsx | 2 +- src/IconSnoozeOutlined.tsx | 2 +- src/IconSnoozeOutlinedFilled.tsx | 2 +- src/IconSnoozeRounded.tsx | 2 +- src/IconSnoozeRoundedFilled.tsx | 2 +- src/IconSnoozeSharp.tsx | 2 +- src/IconSnoozeSharpFilled.tsx | 2 +- src/IconSnowboardingOutlined.tsx | 2 +- src/IconSnowboardingOutlinedFilled.tsx | 2 +- src/IconSnowboardingRounded.tsx | 2 +- src/IconSnowboardingRoundedFilled.tsx | 2 +- src/IconSnowboardingSharp.tsx | 2 +- src/IconSnowboardingSharpFilled.tsx | 2 +- src/IconSnowingHeavyOutlined.tsx | 2 +- src/IconSnowingHeavyOutlinedFilled.tsx | 2 +- src/IconSnowingHeavyRounded.tsx | 2 +- src/IconSnowingHeavyRoundedFilled.tsx | 2 +- src/IconSnowingHeavySharp.tsx | 2 +- src/IconSnowingHeavySharpFilled.tsx | 2 +- src/IconSnowingOutlined.tsx | 2 +- src/IconSnowingOutlinedFilled.tsx | 2 +- src/IconSnowingRounded.tsx | 2 +- src/IconSnowingRoundedFilled.tsx | 2 +- src/IconSnowingSharp.tsx | 2 +- src/IconSnowingSharpFilled.tsx | 2 +- src/IconSnowmobileOutlined.tsx | 2 +- src/IconSnowmobileOutlinedFilled.tsx | 2 +- src/IconSnowmobileRounded.tsx | 2 +- src/IconSnowmobileRoundedFilled.tsx | 2 +- src/IconSnowmobileSharp.tsx | 2 +- src/IconSnowmobileSharpFilled.tsx | 2 +- src/IconSnowshoeingOutlined.tsx | 2 +- src/IconSnowshoeingOutlinedFilled.tsx | 2 +- src/IconSnowshoeingRounded.tsx | 2 +- src/IconSnowshoeingRoundedFilled.tsx | 2 +- src/IconSnowshoeingSharp.tsx | 2 +- src/IconSnowshoeingSharpFilled.tsx | 2 +- src/IconSoapOutlined.tsx | 2 +- src/IconSoapOutlinedFilled.tsx | 2 +- src/IconSoapRounded.tsx | 2 +- src/IconSoapRoundedFilled.tsx | 2 +- src/IconSoapSharp.tsx | 2 +- src/IconSoapSharpFilled.tsx | 2 +- src/IconSocialDistanceOutlined.tsx | 2 +- src/IconSocialDistanceOutlinedFilled.tsx | 2 +- src/IconSocialDistanceRounded.tsx | 2 +- src/IconSocialDistanceRoundedFilled.tsx | 2 +- src/IconSocialDistanceSharp.tsx | 2 +- src/IconSocialDistanceSharpFilled.tsx | 2 +- src/IconSocialLeaderboardOutlined.tsx | 2 +- src/IconSocialLeaderboardOutlinedFilled.tsx | 2 +- src/IconSocialLeaderboardRounded.tsx | 2 +- src/IconSocialLeaderboardRoundedFilled.tsx | 2 +- src/IconSocialLeaderboardSharp.tsx | 2 +- src/IconSocialLeaderboardSharpFilled.tsx | 2 +- src/IconSolarPowerOutlined.tsx | 2 +- src/IconSolarPowerOutlinedFilled.tsx | 2 +- src/IconSolarPowerRounded.tsx | 2 +- src/IconSolarPowerRoundedFilled.tsx | 2 +- src/IconSolarPowerSharp.tsx | 2 +- src/IconSolarPowerSharpFilled.tsx | 2 +- src/IconSortByAlphaOutlined.tsx | 2 +- src/IconSortByAlphaOutlinedFilled.tsx | 2 +- src/IconSortByAlphaRounded.tsx | 2 +- src/IconSortByAlphaRoundedFilled.tsx | 2 +- src/IconSortByAlphaSharp.tsx | 2 +- src/IconSortByAlphaSharpFilled.tsx | 2 +- src/IconSortOutlined.tsx | 2 +- src/IconSortOutlinedFilled.tsx | 2 +- src/IconSortRounded.tsx | 2 +- src/IconSortRoundedFilled.tsx | 2 +- src/IconSortSharp.tsx | 2 +- src/IconSortSharpFilled.tsx | 2 +- src/IconSosOutlined.tsx | 2 +- src/IconSosOutlinedFilled.tsx | 2 +- src/IconSosRounded.tsx | 2 +- src/IconSosRoundedFilled.tsx | 2 +- src/IconSosSharp.tsx | 2 +- src/IconSosSharpFilled.tsx | 2 +- src/IconSoundDetectionDogBarkingOutlined.tsx | 2 +- src/IconSoundDetectionDogBarkingOutlinedFilled.tsx | 2 +- src/IconSoundDetectionDogBarkingRounded.tsx | 2 +- src/IconSoundDetectionDogBarkingRoundedFilled.tsx | 2 +- src/IconSoundDetectionDogBarkingSharp.tsx | 2 +- src/IconSoundDetectionDogBarkingSharpFilled.tsx | 2 +- src/IconSoundDetectionGlassBreakOutlined.tsx | 2 +- src/IconSoundDetectionGlassBreakOutlinedFilled.tsx | 2 +- src/IconSoundDetectionGlassBreakRounded.tsx | 2 +- src/IconSoundDetectionGlassBreakRoundedFilled.tsx | 2 +- src/IconSoundDetectionGlassBreakSharp.tsx | 2 +- src/IconSoundDetectionGlassBreakSharpFilled.tsx | 2 +- src/IconSoundDetectionLoudSoundOutlined.tsx | 2 +- src/IconSoundDetectionLoudSoundOutlinedFilled.tsx | 2 +- src/IconSoundDetectionLoudSoundRounded.tsx | 2 +- src/IconSoundDetectionLoudSoundRoundedFilled.tsx | 2 +- src/IconSoundDetectionLoudSoundSharp.tsx | 2 +- src/IconSoundDetectionLoudSoundSharpFilled.tsx | 2 +- src/IconSoundSamplerOutlined.tsx | 2 +- src/IconSoundSamplerOutlinedFilled.tsx | 2 +- src/IconSoundSamplerRounded.tsx | 2 +- src/IconSoundSamplerRoundedFilled.tsx | 2 +- src/IconSoundSamplerSharp.tsx | 2 +- src/IconSoundSamplerSharpFilled.tsx | 2 +- src/IconSoupKitchenOutlined.tsx | 2 +- src/IconSoupKitchenOutlinedFilled.tsx | 2 +- src/IconSoupKitchenRounded.tsx | 2 +- src/IconSoupKitchenRoundedFilled.tsx | 2 +- src/IconSoupKitchenSharp.tsx | 2 +- src/IconSoupKitchenSharpFilled.tsx | 2 +- src/IconSourceEnvironmentOutlined.tsx | 2 +- src/IconSourceEnvironmentOutlinedFilled.tsx | 2 +- src/IconSourceEnvironmentRounded.tsx | 2 +- src/IconSourceEnvironmentRoundedFilled.tsx | 2 +- src/IconSourceEnvironmentSharp.tsx | 2 +- src/IconSourceEnvironmentSharpFilled.tsx | 2 +- src/IconSourceNotesOutlined.tsx | 2 +- src/IconSourceNotesOutlinedFilled.tsx | 2 +- src/IconSourceNotesRounded.tsx | 2 +- src/IconSourceNotesRoundedFilled.tsx | 2 +- src/IconSourceNotesSharp.tsx | 2 +- src/IconSourceNotesSharpFilled.tsx | 2 +- src/IconSouthAmericaOutlined.tsx | 2 +- src/IconSouthAmericaOutlinedFilled.tsx | 2 +- src/IconSouthAmericaRounded.tsx | 2 +- src/IconSouthAmericaRoundedFilled.tsx | 2 +- src/IconSouthAmericaSharp.tsx | 2 +- src/IconSouthAmericaSharpFilled.tsx | 2 +- src/IconSouthEastOutlined.tsx | 2 +- src/IconSouthEastOutlinedFilled.tsx | 2 +- src/IconSouthEastRounded.tsx | 2 +- src/IconSouthEastRoundedFilled.tsx | 2 +- src/IconSouthEastSharp.tsx | 2 +- src/IconSouthEastSharpFilled.tsx | 2 +- src/IconSouthOutlined.tsx | 2 +- src/IconSouthOutlinedFilled.tsx | 2 +- src/IconSouthRounded.tsx | 2 +- src/IconSouthRoundedFilled.tsx | 2 +- src/IconSouthSharp.tsx | 2 +- src/IconSouthSharpFilled.tsx | 2 +- src/IconSouthWestOutlined.tsx | 2 +- src/IconSouthWestOutlinedFilled.tsx | 2 +- src/IconSouthWestRounded.tsx | 2 +- src/IconSouthWestRoundedFilled.tsx | 2 +- src/IconSouthWestSharp.tsx | 2 +- src/IconSouthWestSharpFilled.tsx | 2 +- src/IconSpaOutlined.tsx | 2 +- src/IconSpaOutlinedFilled.tsx | 2 +- src/IconSpaRounded.tsx | 2 +- src/IconSpaRoundedFilled.tsx | 2 +- src/IconSpaSharp.tsx | 2 +- src/IconSpaSharpFilled.tsx | 2 +- src/IconSpaceBarOutlined.tsx | 2 +- src/IconSpaceBarOutlinedFilled.tsx | 2 +- src/IconSpaceBarRounded.tsx | 2 +- src/IconSpaceBarRoundedFilled.tsx | 2 +- src/IconSpaceBarSharp.tsx | 2 +- src/IconSpaceBarSharpFilled.tsx | 2 +- src/IconSpaceDashboardOutlined.tsx | 2 +- src/IconSpaceDashboardOutlinedFilled.tsx | 2 +- src/IconSpaceDashboardRounded.tsx | 2 +- src/IconSpaceDashboardRoundedFilled.tsx | 2 +- src/IconSpaceDashboardSharp.tsx | 2 +- src/IconSpaceDashboardSharpFilled.tsx | 2 +- src/IconSpatialAudioOffOutlined.tsx | 2 +- src/IconSpatialAudioOffOutlinedFilled.tsx | 2 +- src/IconSpatialAudioOffRounded.tsx | 2 +- src/IconSpatialAudioOffRoundedFilled.tsx | 2 +- src/IconSpatialAudioOffSharp.tsx | 2 +- src/IconSpatialAudioOffSharpFilled.tsx | 2 +- src/IconSpatialAudioOutlined.tsx | 2 +- src/IconSpatialAudioOutlinedFilled.tsx | 2 +- src/IconSpatialAudioRounded.tsx | 2 +- src/IconSpatialAudioRoundedFilled.tsx | 2 +- src/IconSpatialAudioSharp.tsx | 2 +- src/IconSpatialAudioSharpFilled.tsx | 2 +- src/IconSpatialSpeakerOutlined.tsx | 2 +- src/IconSpatialSpeakerOutlinedFilled.tsx | 2 +- src/IconSpatialSpeakerRounded.tsx | 2 +- src/IconSpatialSpeakerRoundedFilled.tsx | 2 +- src/IconSpatialSpeakerSharp.tsx | 2 +- src/IconSpatialSpeakerSharpFilled.tsx | 2 +- src/IconSpatialTrackingOutlined.tsx | 2 +- src/IconSpatialTrackingOutlinedFilled.tsx | 2 +- src/IconSpatialTrackingRounded.tsx | 2 +- src/IconSpatialTrackingRoundedFilled.tsx | 2 +- src/IconSpatialTrackingSharp.tsx | 2 +- src/IconSpatialTrackingSharpFilled.tsx | 2 +- src/IconSpeakerGroupOutlined.tsx | 2 +- src/IconSpeakerGroupOutlinedFilled.tsx | 2 +- src/IconSpeakerGroupRounded.tsx | 2 +- src/IconSpeakerGroupRoundedFilled.tsx | 2 +- src/IconSpeakerGroupSharp.tsx | 2 +- src/IconSpeakerGroupSharpFilled.tsx | 2 +- src/IconSpeakerNotesOffOutlined.tsx | 2 +- src/IconSpeakerNotesOffOutlinedFilled.tsx | 2 +- src/IconSpeakerNotesOffRounded.tsx | 2 +- src/IconSpeakerNotesOffRoundedFilled.tsx | 2 +- src/IconSpeakerNotesOffSharp.tsx | 2 +- src/IconSpeakerNotesOffSharpFilled.tsx | 2 +- src/IconSpeakerNotesOutlined.tsx | 2 +- src/IconSpeakerNotesOutlinedFilled.tsx | 2 +- src/IconSpeakerNotesRounded.tsx | 2 +- src/IconSpeakerNotesRoundedFilled.tsx | 2 +- src/IconSpeakerNotesSharp.tsx | 2 +- src/IconSpeakerNotesSharpFilled.tsx | 2 +- src/IconSpeakerOutlined.tsx | 2 +- src/IconSpeakerOutlinedFilled.tsx | 2 +- src/IconSpeakerPhoneOutlined.tsx | 2 +- src/IconSpeakerPhoneOutlinedFilled.tsx | 2 +- src/IconSpeakerPhoneRounded.tsx | 2 +- src/IconSpeakerPhoneRoundedFilled.tsx | 2 +- src/IconSpeakerPhoneSharp.tsx | 2 +- src/IconSpeakerPhoneSharpFilled.tsx | 2 +- src/IconSpeakerRounded.tsx | 2 +- src/IconSpeakerRoundedFilled.tsx | 2 +- src/IconSpeakerSharp.tsx | 2 +- src/IconSpeakerSharpFilled.tsx | 2 +- src/IconSpecialCharacterOutlined.tsx | 2 +- src/IconSpecialCharacterOutlinedFilled.tsx | 2 +- src/IconSpecialCharacterRounded.tsx | 2 +- src/IconSpecialCharacterRoundedFilled.tsx | 2 +- src/IconSpecialCharacterSharp.tsx | 2 +- src/IconSpecialCharacterSharpFilled.tsx | 2 +- src/IconSpecificGravityOutlined.tsx | 2 +- src/IconSpecificGravityOutlinedFilled.tsx | 2 +- src/IconSpecificGravityRounded.tsx | 2 +- src/IconSpecificGravityRoundedFilled.tsx | 2 +- src/IconSpecificGravitySharp.tsx | 2 +- src/IconSpecificGravitySharpFilled.tsx | 2 +- src/IconSpeechToTextOutlined.tsx | 2 +- src/IconSpeechToTextOutlinedFilled.tsx | 2 +- src/IconSpeechToTextRounded.tsx | 2 +- src/IconSpeechToTextRoundedFilled.tsx | 2 +- src/IconSpeechToTextSharp.tsx | 2 +- src/IconSpeechToTextSharpFilled.tsx | 2 +- src/IconSpeed025Outlined.tsx | 2 +- src/IconSpeed025OutlinedFilled.tsx | 2 +- src/IconSpeed025Rounded.tsx | 2 +- src/IconSpeed025RoundedFilled.tsx | 2 +- src/IconSpeed025Sharp.tsx | 2 +- src/IconSpeed025SharpFilled.tsx | 2 +- src/IconSpeed02xOutlined.tsx | 2 +- src/IconSpeed02xOutlinedFilled.tsx | 2 +- src/IconSpeed02xRounded.tsx | 2 +- src/IconSpeed02xRoundedFilled.tsx | 2 +- src/IconSpeed02xSharp.tsx | 2 +- src/IconSpeed02xSharpFilled.tsx | 2 +- src/IconSpeed05Outlined.tsx | 2 +- src/IconSpeed05OutlinedFilled.tsx | 2 +- src/IconSpeed05Rounded.tsx | 2 +- src/IconSpeed05RoundedFilled.tsx | 2 +- src/IconSpeed05Sharp.tsx | 2 +- src/IconSpeed05SharpFilled.tsx | 2 +- src/IconSpeed05xOutlined.tsx | 2 +- src/IconSpeed05xOutlinedFilled.tsx | 2 +- src/IconSpeed05xRounded.tsx | 2 +- src/IconSpeed05xRoundedFilled.tsx | 2 +- src/IconSpeed05xSharp.tsx | 2 +- src/IconSpeed05xSharpFilled.tsx | 2 +- src/IconSpeed075Outlined.tsx | 2 +- src/IconSpeed075OutlinedFilled.tsx | 2 +- src/IconSpeed075Rounded.tsx | 2 +- src/IconSpeed075RoundedFilled.tsx | 2 +- src/IconSpeed075Sharp.tsx | 2 +- src/IconSpeed075SharpFilled.tsx | 2 +- src/IconSpeed07xOutlined.tsx | 2 +- src/IconSpeed07xOutlinedFilled.tsx | 2 +- src/IconSpeed07xRounded.tsx | 2 +- src/IconSpeed07xRoundedFilled.tsx | 2 +- src/IconSpeed07xSharp.tsx | 2 +- src/IconSpeed07xSharpFilled.tsx | 2 +- src/IconSpeed125Outlined.tsx | 2 +- src/IconSpeed125OutlinedFilled.tsx | 2 +- src/IconSpeed125Rounded.tsx | 2 +- src/IconSpeed125RoundedFilled.tsx | 2 +- src/IconSpeed125Sharp.tsx | 2 +- src/IconSpeed125SharpFilled.tsx | 2 +- src/IconSpeed12Outlined.tsx | 2 +- src/IconSpeed12OutlinedFilled.tsx | 2 +- src/IconSpeed12Rounded.tsx | 2 +- src/IconSpeed12RoundedFilled.tsx | 2 +- src/IconSpeed12Sharp.tsx | 2 +- src/IconSpeed12SharpFilled.tsx | 2 +- src/IconSpeed12xOutlined.tsx | 2 +- src/IconSpeed12xOutlinedFilled.tsx | 2 +- src/IconSpeed12xRounded.tsx | 2 +- src/IconSpeed12xRoundedFilled.tsx | 2 +- src/IconSpeed12xSharp.tsx | 2 +- src/IconSpeed12xSharpFilled.tsx | 2 +- src/IconSpeed15Outlined.tsx | 2 +- src/IconSpeed15OutlinedFilled.tsx | 2 +- src/IconSpeed15Rounded.tsx | 2 +- src/IconSpeed15RoundedFilled.tsx | 2 +- src/IconSpeed15Sharp.tsx | 2 +- src/IconSpeed15SharpFilled.tsx | 2 +- src/IconSpeed15xOutlined.tsx | 2 +- src/IconSpeed15xOutlinedFilled.tsx | 2 +- src/IconSpeed15xRounded.tsx | 2 +- src/IconSpeed15xRoundedFilled.tsx | 2 +- src/IconSpeed15xSharp.tsx | 2 +- src/IconSpeed15xSharpFilled.tsx | 2 +- src/IconSpeed175Outlined.tsx | 2 +- src/IconSpeed175OutlinedFilled.tsx | 2 +- src/IconSpeed175Rounded.tsx | 2 +- src/IconSpeed175RoundedFilled.tsx | 2 +- src/IconSpeed175Sharp.tsx | 2 +- src/IconSpeed175SharpFilled.tsx | 2 +- src/IconSpeed17xOutlined.tsx | 2 +- src/IconSpeed17xOutlinedFilled.tsx | 2 +- src/IconSpeed17xRounded.tsx | 2 +- src/IconSpeed17xRoundedFilled.tsx | 2 +- src/IconSpeed17xSharp.tsx | 2 +- src/IconSpeed17xSharpFilled.tsx | 2 +- src/IconSpeed2xOutlined.tsx | 2 +- src/IconSpeed2xOutlinedFilled.tsx | 2 +- src/IconSpeed2xRounded.tsx | 2 +- src/IconSpeed2xRoundedFilled.tsx | 2 +- src/IconSpeed2xSharp.tsx | 2 +- src/IconSpeed2xSharpFilled.tsx | 2 +- src/IconSpeedCameraOutlined.tsx | 2 +- src/IconSpeedCameraOutlinedFilled.tsx | 2 +- src/IconSpeedCameraRounded.tsx | 2 +- src/IconSpeedCameraRoundedFilled.tsx | 2 +- src/IconSpeedCameraSharp.tsx | 2 +- src/IconSpeedCameraSharpFilled.tsx | 2 +- src/IconSpeedOutlined.tsx | 2 +- src/IconSpeedOutlinedFilled.tsx | 2 +- src/IconSpeedRounded.tsx | 2 +- src/IconSpeedRoundedFilled.tsx | 2 +- src/IconSpeedSharp.tsx | 2 +- src/IconSpeedSharpFilled.tsx | 2 +- src/IconSpellcheckOutlined.tsx | 2 +- src/IconSpellcheckOutlinedFilled.tsx | 2 +- src/IconSpellcheckRounded.tsx | 2 +- src/IconSpellcheckRoundedFilled.tsx | 2 +- src/IconSpellcheckSharp.tsx | 2 +- src/IconSpellcheckSharpFilled.tsx | 2 +- src/IconSplitscreenAddOutlined.tsx | 2 +- src/IconSplitscreenAddOutlinedFilled.tsx | 2 +- src/IconSplitscreenAddRounded.tsx | 2 +- src/IconSplitscreenAddRoundedFilled.tsx | 2 +- src/IconSplitscreenAddSharp.tsx | 2 +- src/IconSplitscreenAddSharpFilled.tsx | 2 +- src/IconSplitscreenBottomOutlined.tsx | 2 +- src/IconSplitscreenBottomOutlinedFilled.tsx | 2 +- src/IconSplitscreenBottomRounded.tsx | 2 +- src/IconSplitscreenBottomRoundedFilled.tsx | 2 +- src/IconSplitscreenBottomSharp.tsx | 2 +- src/IconSplitscreenBottomSharpFilled.tsx | 2 +- src/IconSplitscreenLandscapeOutlined.tsx | 2 +- src/IconSplitscreenLandscapeOutlinedFilled.tsx | 2 +- src/IconSplitscreenLandscapeRounded.tsx | 2 +- src/IconSplitscreenLandscapeRoundedFilled.tsx | 2 +- src/IconSplitscreenLandscapeSharp.tsx | 2 +- src/IconSplitscreenLandscapeSharpFilled.tsx | 2 +- src/IconSplitscreenLeftOutlined.tsx | 2 +- src/IconSplitscreenLeftOutlinedFilled.tsx | 2 +- src/IconSplitscreenLeftRounded.tsx | 2 +- src/IconSplitscreenLeftRoundedFilled.tsx | 2 +- src/IconSplitscreenLeftSharp.tsx | 2 +- src/IconSplitscreenLeftSharpFilled.tsx | 2 +- src/IconSplitscreenOutlined.tsx | 2 +- src/IconSplitscreenOutlinedFilled.tsx | 2 +- src/IconSplitscreenPortraitOutlined.tsx | 2 +- src/IconSplitscreenPortraitOutlinedFilled.tsx | 2 +- src/IconSplitscreenPortraitRounded.tsx | 2 +- src/IconSplitscreenPortraitRoundedFilled.tsx | 2 +- src/IconSplitscreenPortraitSharp.tsx | 2 +- src/IconSplitscreenPortraitSharpFilled.tsx | 2 +- src/IconSplitscreenRightOutlined.tsx | 2 +- src/IconSplitscreenRightOutlinedFilled.tsx | 2 +- src/IconSplitscreenRightRounded.tsx | 2 +- src/IconSplitscreenRightRoundedFilled.tsx | 2 +- src/IconSplitscreenRightSharp.tsx | 2 +- src/IconSplitscreenRightSharpFilled.tsx | 2 +- src/IconSplitscreenRounded.tsx | 2 +- src/IconSplitscreenRoundedFilled.tsx | 2 +- src/IconSplitscreenSharp.tsx | 2 +- src/IconSplitscreenSharpFilled.tsx | 2 +- src/IconSplitscreenTopOutlined.tsx | 2 +- src/IconSplitscreenTopOutlinedFilled.tsx | 2 +- src/IconSplitscreenTopRounded.tsx | 2 +- src/IconSplitscreenTopRoundedFilled.tsx | 2 +- src/IconSplitscreenTopSharp.tsx | 2 +- src/IconSplitscreenTopSharpFilled.tsx | 2 +- src/IconSplitscreenVerticalAddOutlined.tsx | 2 +- src/IconSplitscreenVerticalAddOutlinedFilled.tsx | 2 +- src/IconSplitscreenVerticalAddRounded.tsx | 2 +- src/IconSplitscreenVerticalAddRoundedFilled.tsx | 2 +- src/IconSplitscreenVerticalAddSharp.tsx | 2 +- src/IconSplitscreenVerticalAddSharpFilled.tsx | 2 +- src/IconSpo2Outlined.tsx | 2 +- src/IconSpo2OutlinedFilled.tsx | 2 +- src/IconSpo2Rounded.tsx | 2 +- src/IconSpo2RoundedFilled.tsx | 2 +- src/IconSpo2Sharp.tsx | 2 +- src/IconSpo2SharpFilled.tsx | 2 +- src/IconSpokeOutlined.tsx | 2 +- src/IconSpokeOutlinedFilled.tsx | 2 +- src/IconSpokeRounded.tsx | 2 +- src/IconSpokeRoundedFilled.tsx | 2 +- src/IconSpokeSharp.tsx | 2 +- src/IconSpokeSharpFilled.tsx | 2 +- src/IconSportsAndOutdoorsOutlined.tsx | 2 +- src/IconSportsAndOutdoorsOutlinedFilled.tsx | 2 +- src/IconSportsAndOutdoorsRounded.tsx | 2 +- src/IconSportsAndOutdoorsRoundedFilled.tsx | 2 +- src/IconSportsAndOutdoorsSharp.tsx | 2 +- src/IconSportsAndOutdoorsSharpFilled.tsx | 2 +- src/IconSportsBarOutlined.tsx | 2 +- src/IconSportsBarOutlinedFilled.tsx | 2 +- src/IconSportsBarRounded.tsx | 2 +- src/IconSportsBarRoundedFilled.tsx | 2 +- src/IconSportsBarSharp.tsx | 2 +- src/IconSportsBarSharpFilled.tsx | 2 +- src/IconSportsBaseballOutlined.tsx | 2 +- src/IconSportsBaseballOutlinedFilled.tsx | 2 +- src/IconSportsBaseballRounded.tsx | 2 +- src/IconSportsBaseballRoundedFilled.tsx | 2 +- src/IconSportsBaseballSharp.tsx | 2 +- src/IconSportsBaseballSharpFilled.tsx | 2 +- src/IconSportsBasketballOutlined.tsx | 2 +- src/IconSportsBasketballOutlinedFilled.tsx | 2 +- src/IconSportsBasketballRounded.tsx | 2 +- src/IconSportsBasketballRoundedFilled.tsx | 2 +- src/IconSportsBasketballSharp.tsx | 2 +- src/IconSportsBasketballSharpFilled.tsx | 2 +- src/IconSportsCricketOutlined.tsx | 2 +- src/IconSportsCricketOutlinedFilled.tsx | 2 +- src/IconSportsCricketRounded.tsx | 2 +- src/IconSportsCricketRoundedFilled.tsx | 2 +- src/IconSportsCricketSharp.tsx | 2 +- src/IconSportsCricketSharpFilled.tsx | 2 +- src/IconSportsEsportsOutlined.tsx | 2 +- src/IconSportsEsportsOutlinedFilled.tsx | 2 +- src/IconSportsEsportsRounded.tsx | 2 +- src/IconSportsEsportsRoundedFilled.tsx | 2 +- src/IconSportsEsportsSharp.tsx | 2 +- src/IconSportsEsportsSharpFilled.tsx | 2 +- src/IconSportsFootballOutlined.tsx | 2 +- src/IconSportsFootballOutlinedFilled.tsx | 2 +- src/IconSportsFootballRounded.tsx | 2 +- src/IconSportsFootballRoundedFilled.tsx | 2 +- src/IconSportsFootballSharp.tsx | 2 +- src/IconSportsFootballSharpFilled.tsx | 2 +- src/IconSportsGolfOutlined.tsx | 2 +- src/IconSportsGolfOutlinedFilled.tsx | 2 +- src/IconSportsGolfRounded.tsx | 2 +- src/IconSportsGolfRoundedFilled.tsx | 2 +- src/IconSportsGolfSharp.tsx | 2 +- src/IconSportsGolfSharpFilled.tsx | 2 +- src/IconSportsGymnasticsOutlined.tsx | 2 +- src/IconSportsGymnasticsOutlinedFilled.tsx | 2 +- src/IconSportsGymnasticsRounded.tsx | 2 +- src/IconSportsGymnasticsRoundedFilled.tsx | 2 +- src/IconSportsGymnasticsSharp.tsx | 2 +- src/IconSportsGymnasticsSharpFilled.tsx | 2 +- src/IconSportsHandballOutlined.tsx | 2 +- src/IconSportsHandballOutlinedFilled.tsx | 2 +- src/IconSportsHandballRounded.tsx | 2 +- src/IconSportsHandballRoundedFilled.tsx | 2 +- src/IconSportsHandballSharp.tsx | 2 +- src/IconSportsHandballSharpFilled.tsx | 2 +- src/IconSportsHockeyOutlined.tsx | 2 +- src/IconSportsHockeyOutlinedFilled.tsx | 2 +- src/IconSportsHockeyRounded.tsx | 2 +- src/IconSportsHockeyRoundedFilled.tsx | 2 +- src/IconSportsHockeySharp.tsx | 2 +- src/IconSportsHockeySharpFilled.tsx | 2 +- src/IconSportsKabaddiOutlined.tsx | 2 +- src/IconSportsKabaddiOutlinedFilled.tsx | 2 +- src/IconSportsKabaddiRounded.tsx | 2 +- src/IconSportsKabaddiRoundedFilled.tsx | 2 +- src/IconSportsKabaddiSharp.tsx | 2 +- src/IconSportsKabaddiSharpFilled.tsx | 2 +- src/IconSportsMartialArtsOutlined.tsx | 2 +- src/IconSportsMartialArtsOutlinedFilled.tsx | 2 +- src/IconSportsMartialArtsRounded.tsx | 2 +- src/IconSportsMartialArtsRoundedFilled.tsx | 2 +- src/IconSportsMartialArtsSharp.tsx | 2 +- src/IconSportsMartialArtsSharpFilled.tsx | 2 +- src/IconSportsMmaOutlined.tsx | 2 +- src/IconSportsMmaOutlinedFilled.tsx | 2 +- src/IconSportsMmaRounded.tsx | 2 +- src/IconSportsMmaRoundedFilled.tsx | 2 +- src/IconSportsMmaSharp.tsx | 2 +- src/IconSportsMmaSharpFilled.tsx | 2 +- src/IconSportsMotorsportsOutlined.tsx | 2 +- src/IconSportsMotorsportsOutlinedFilled.tsx | 2 +- src/IconSportsMotorsportsRounded.tsx | 2 +- src/IconSportsMotorsportsRoundedFilled.tsx | 2 +- src/IconSportsMotorsportsSharp.tsx | 2 +- src/IconSportsMotorsportsSharpFilled.tsx | 2 +- src/IconSportsOutlined.tsx | 2 +- src/IconSportsOutlinedFilled.tsx | 2 +- src/IconSportsRounded.tsx | 2 +- src/IconSportsRoundedFilled.tsx | 2 +- src/IconSportsRugbyOutlined.tsx | 2 +- src/IconSportsRugbyOutlinedFilled.tsx | 2 +- src/IconSportsRugbyRounded.tsx | 2 +- src/IconSportsRugbyRoundedFilled.tsx | 2 +- src/IconSportsRugbySharp.tsx | 2 +- src/IconSportsRugbySharpFilled.tsx | 2 +- src/IconSportsScoreOutlined.tsx | 2 +- src/IconSportsScoreOutlinedFilled.tsx | 2 +- src/IconSportsScoreRounded.tsx | 2 +- src/IconSportsScoreRoundedFilled.tsx | 2 +- src/IconSportsScoreSharp.tsx | 2 +- src/IconSportsScoreSharpFilled.tsx | 2 +- src/IconSportsSharp.tsx | 2 +- src/IconSportsSharpFilled.tsx | 2 +- src/IconSportsSoccerOutlined.tsx | 2 +- src/IconSportsSoccerOutlinedFilled.tsx | 2 +- src/IconSportsSoccerRounded.tsx | 2 +- src/IconSportsSoccerRoundedFilled.tsx | 2 +- src/IconSportsSoccerSharp.tsx | 2 +- src/IconSportsSoccerSharpFilled.tsx | 2 +- src/IconSportsTennisOutlined.tsx | 2 +- src/IconSportsTennisOutlinedFilled.tsx | 2 +- src/IconSportsTennisRounded.tsx | 2 +- src/IconSportsTennisRoundedFilled.tsx | 2 +- src/IconSportsTennisSharp.tsx | 2 +- src/IconSportsTennisSharpFilled.tsx | 2 +- src/IconSportsVolleyballOutlined.tsx | 2 +- src/IconSportsVolleyballOutlinedFilled.tsx | 2 +- src/IconSportsVolleyballRounded.tsx | 2 +- src/IconSportsVolleyballRoundedFilled.tsx | 2 +- src/IconSportsVolleyballSharp.tsx | 2 +- src/IconSportsVolleyballSharpFilled.tsx | 2 +- src/IconSprinklerOutlined.tsx | 2 +- src/IconSprinklerOutlinedFilled.tsx | 2 +- src/IconSprinklerRounded.tsx | 2 +- src/IconSprinklerRoundedFilled.tsx | 2 +- src/IconSprinklerSharp.tsx | 2 +- src/IconSprinklerSharpFilled.tsx | 2 +- src/IconSprintOutlined.tsx | 2 +- src/IconSprintOutlinedFilled.tsx | 2 +- src/IconSprintRounded.tsx | 2 +- src/IconSprintRoundedFilled.tsx | 2 +- src/IconSprintSharp.tsx | 2 +- src/IconSprintSharpFilled.tsx | 2 +- src/IconSquareFootOutlined.tsx | 2 +- src/IconSquareFootOutlinedFilled.tsx | 2 +- src/IconSquareFootRounded.tsx | 2 +- src/IconSquareFootRoundedFilled.tsx | 2 +- src/IconSquareFootSharp.tsx | 2 +- src/IconSquareFootSharpFilled.tsx | 2 +- src/IconSquareOutlined.tsx | 2 +- src/IconSquareOutlinedFilled.tsx | 2 +- src/IconSquareRounded.tsx | 2 +- src/IconSquareRoundedFilled.tsx | 2 +- src/IconSquareSharp.tsx | 2 +- src/IconSquareSharpFilled.tsx | 2 +- src/IconSsidChartOutlined.tsx | 2 +- src/IconSsidChartOutlinedFilled.tsx | 2 +- src/IconSsidChartRounded.tsx | 2 +- src/IconSsidChartRoundedFilled.tsx | 2 +- src/IconSsidChartSharp.tsx | 2 +- src/IconSsidChartSharpFilled.tsx | 2 +- src/IconStackHexagonOutlined.tsx | 2 +- src/IconStackHexagonOutlinedFilled.tsx | 2 +- src/IconStackHexagonRounded.tsx | 2 +- src/IconStackHexagonRoundedFilled.tsx | 2 +- src/IconStackHexagonSharp.tsx | 2 +- src/IconStackHexagonSharpFilled.tsx | 2 +- src/IconStackOffOutlined.tsx | 2 +- src/IconStackOffOutlinedFilled.tsx | 2 +- src/IconStackOffRounded.tsx | 2 +- src/IconStackOffRoundedFilled.tsx | 2 +- src/IconStackOffSharp.tsx | 2 +- src/IconStackOffSharpFilled.tsx | 2 +- src/IconStackOutlined.tsx | 2 +- src/IconStackOutlinedFilled.tsx | 2 +- src/IconStackRounded.tsx | 2 +- src/IconStackRoundedFilled.tsx | 2 +- src/IconStackSharp.tsx | 2 +- src/IconStackSharpFilled.tsx | 2 +- src/IconStackStarOutlined.tsx | 2 +- src/IconStackStarOutlinedFilled.tsx | 2 +- src/IconStackStarRounded.tsx | 2 +- src/IconStackStarRoundedFilled.tsx | 2 +- src/IconStackStarSharp.tsx | 2 +- src/IconStackStarSharpFilled.tsx | 2 +- src/IconStackedBarChartOutlined.tsx | 2 +- src/IconStackedBarChartOutlinedFilled.tsx | 2 +- src/IconStackedBarChartRounded.tsx | 2 +- src/IconStackedBarChartRoundedFilled.tsx | 2 +- src/IconStackedBarChartSharp.tsx | 2 +- src/IconStackedBarChartSharpFilled.tsx | 2 +- src/IconStackedEmailOutlined.tsx | 2 +- src/IconStackedEmailOutlinedFilled.tsx | 2 +- src/IconStackedEmailRounded.tsx | 2 +- src/IconStackedEmailRoundedFilled.tsx | 2 +- src/IconStackedEmailSharp.tsx | 2 +- src/IconStackedEmailSharpFilled.tsx | 2 +- src/IconStackedInboxOutlined.tsx | 2 +- src/IconStackedInboxOutlinedFilled.tsx | 2 +- src/IconStackedInboxRounded.tsx | 2 +- src/IconStackedInboxRoundedFilled.tsx | 2 +- src/IconStackedInboxSharp.tsx | 2 +- src/IconStackedInboxSharpFilled.tsx | 2 +- src/IconStackedLineChartOutlined.tsx | 2 +- src/IconStackedLineChartOutlinedFilled.tsx | 2 +- src/IconStackedLineChartRounded.tsx | 2 +- src/IconStackedLineChartRoundedFilled.tsx | 2 +- src/IconStackedLineChartSharp.tsx | 2 +- src/IconStackedLineChartSharpFilled.tsx | 2 +- src/IconStacksOutlined.tsx | 2 +- src/IconStacksOutlinedFilled.tsx | 2 +- src/IconStacksRounded.tsx | 2 +- src/IconStacksRoundedFilled.tsx | 2 +- src/IconStacksSharp.tsx | 2 +- src/IconStacksSharpFilled.tsx | 2 +- src/IconStadiaControllerOutlined.tsx | 2 +- src/IconStadiaControllerOutlinedFilled.tsx | 2 +- src/IconStadiaControllerRounded.tsx | 2 +- src/IconStadiaControllerRoundedFilled.tsx | 2 +- src/IconStadiaControllerSharp.tsx | 2 +- src/IconStadiaControllerSharpFilled.tsx | 2 +- src/IconStadiumOutlined.tsx | 2 +- src/IconStadiumOutlinedFilled.tsx | 2 +- src/IconStadiumRounded.tsx | 2 +- src/IconStadiumRoundedFilled.tsx | 2 +- src/IconStadiumSharp.tsx | 2 +- src/IconStadiumSharpFilled.tsx | 2 +- src/IconStairs2Outlined.tsx | 2 +- src/IconStairs2OutlinedFilled.tsx | 2 +- src/IconStairs2Rounded.tsx | 2 +- src/IconStairs2RoundedFilled.tsx | 2 +- src/IconStairs2Sharp.tsx | 2 +- src/IconStairs2SharpFilled.tsx | 2 +- src/IconStairsOutlined.tsx | 2 +- src/IconStairsOutlinedFilled.tsx | 2 +- src/IconStairsRounded.tsx | 2 +- src/IconStairsRoundedFilled.tsx | 2 +- src/IconStairsSharp.tsx | 2 +- src/IconStairsSharpFilled.tsx | 2 +- src/IconStarHalfOutlined.tsx | 2 +- src/IconStarHalfOutlinedFilled.tsx | 2 +- src/IconStarHalfRounded.tsx | 2 +- src/IconStarHalfRoundedFilled.tsx | 2 +- src/IconStarHalfSharp.tsx | 2 +- src/IconStarHalfSharpFilled.tsx | 2 +- src/IconStarOutlined.tsx | 2 +- src/IconStarOutlinedFilled.tsx | 2 +- src/IconStarRateHalfOutlined.tsx | 2 +- src/IconStarRateHalfOutlinedFilled.tsx | 2 +- src/IconStarRateHalfRounded.tsx | 2 +- src/IconStarRateHalfRoundedFilled.tsx | 2 +- src/IconStarRateHalfSharp.tsx | 2 +- src/IconStarRateHalfSharpFilled.tsx | 2 +- src/IconStarRateOutlined.tsx | 2 +- src/IconStarRateOutlinedFilled.tsx | 2 +- src/IconStarRateRounded.tsx | 2 +- src/IconStarRateRoundedFilled.tsx | 2 +- src/IconStarRateSharp.tsx | 2 +- src/IconStarRateSharpFilled.tsx | 2 +- src/IconStarRounded.tsx | 2 +- src/IconStarRoundedFilled.tsx | 2 +- src/IconStarSharp.tsx | 2 +- src/IconStarSharpFilled.tsx | 2 +- src/IconStarsOutlined.tsx | 2 +- src/IconStarsOutlinedFilled.tsx | 2 +- src/IconStarsRounded.tsx | 2 +- src/IconStarsRoundedFilled.tsx | 2 +- src/IconStarsSharp.tsx | 2 +- src/IconStarsSharpFilled.tsx | 2 +- src/IconStartOutlined.tsx | 2 +- src/IconStartOutlinedFilled.tsx | 2 +- src/IconStartRounded.tsx | 2 +- src/IconStartRoundedFilled.tsx | 2 +- src/IconStartSharp.tsx | 2 +- src/IconStartSharpFilled.tsx | 2 +- src/IconStat0Outlined.tsx | 2 +- src/IconStat0OutlinedFilled.tsx | 2 +- src/IconStat0Rounded.tsx | 2 +- src/IconStat0RoundedFilled.tsx | 2 +- src/IconStat0Sharp.tsx | 2 +- src/IconStat0SharpFilled.tsx | 2 +- src/IconStat1Outlined.tsx | 2 +- src/IconStat1OutlinedFilled.tsx | 2 +- src/IconStat1Rounded.tsx | 2 +- src/IconStat1RoundedFilled.tsx | 2 +- src/IconStat1Sharp.tsx | 2 +- src/IconStat1SharpFilled.tsx | 2 +- src/IconStat2Outlined.tsx | 2 +- src/IconStat2OutlinedFilled.tsx | 2 +- src/IconStat2Rounded.tsx | 2 +- src/IconStat2RoundedFilled.tsx | 2 +- src/IconStat2Sharp.tsx | 2 +- src/IconStat2SharpFilled.tsx | 2 +- src/IconStat3Outlined.tsx | 2 +- src/IconStat3OutlinedFilled.tsx | 2 +- src/IconStat3Rounded.tsx | 2 +- src/IconStat3RoundedFilled.tsx | 2 +- src/IconStat3Sharp.tsx | 2 +- src/IconStat3SharpFilled.tsx | 2 +- src/IconStatMinus1Outlined.tsx | 2 +- src/IconStatMinus1OutlinedFilled.tsx | 2 +- src/IconStatMinus1Rounded.tsx | 2 +- src/IconStatMinus1RoundedFilled.tsx | 2 +- src/IconStatMinus1Sharp.tsx | 2 +- src/IconStatMinus1SharpFilled.tsx | 2 +- src/IconStatMinus2Outlined.tsx | 2 +- src/IconStatMinus2OutlinedFilled.tsx | 2 +- src/IconStatMinus2Rounded.tsx | 2 +- src/IconStatMinus2RoundedFilled.tsx | 2 +- src/IconStatMinus2Sharp.tsx | 2 +- src/IconStatMinus2SharpFilled.tsx | 2 +- src/IconStatMinus3Outlined.tsx | 2 +- src/IconStatMinus3OutlinedFilled.tsx | 2 +- src/IconStatMinus3Rounded.tsx | 2 +- src/IconStatMinus3RoundedFilled.tsx | 2 +- src/IconStatMinus3Sharp.tsx | 2 +- src/IconStatMinus3SharpFilled.tsx | 2 +- src/IconStayCurrentLandscapeOutlined.tsx | 2 +- src/IconStayCurrentLandscapeOutlinedFilled.tsx | 2 +- src/IconStayCurrentLandscapeRounded.tsx | 2 +- src/IconStayCurrentLandscapeRoundedFilled.tsx | 2 +- src/IconStayCurrentLandscapeSharp.tsx | 2 +- src/IconStayCurrentLandscapeSharpFilled.tsx | 2 +- src/IconStayCurrentPortraitOutlined.tsx | 2 +- src/IconStayCurrentPortraitOutlinedFilled.tsx | 2 +- src/IconStayCurrentPortraitRounded.tsx | 2 +- src/IconStayCurrentPortraitRoundedFilled.tsx | 2 +- src/IconStayCurrentPortraitSharp.tsx | 2 +- src/IconStayCurrentPortraitSharpFilled.tsx | 2 +- src/IconStayPrimaryLandscapeOutlined.tsx | 2 +- src/IconStayPrimaryLandscapeOutlinedFilled.tsx | 2 +- src/IconStayPrimaryLandscapeRounded.tsx | 2 +- src/IconStayPrimaryLandscapeRoundedFilled.tsx | 2 +- src/IconStayPrimaryLandscapeSharp.tsx | 2 +- src/IconStayPrimaryLandscapeSharpFilled.tsx | 2 +- src/IconStayPrimaryPortraitOutlined.tsx | 2 +- src/IconStayPrimaryPortraitOutlinedFilled.tsx | 2 +- src/IconStayPrimaryPortraitRounded.tsx | 2 +- src/IconStayPrimaryPortraitRoundedFilled.tsx | 2 +- src/IconStayPrimaryPortraitSharp.tsx | 2 +- src/IconStayPrimaryPortraitSharpFilled.tsx | 2 +- src/IconStepIntoOutlined.tsx | 2 +- src/IconStepIntoOutlinedFilled.tsx | 2 +- src/IconStepIntoRounded.tsx | 2 +- src/IconStepIntoRoundedFilled.tsx | 2 +- src/IconStepIntoSharp.tsx | 2 +- src/IconStepIntoSharpFilled.tsx | 2 +- src/IconStepOutOutlined.tsx | 2 +- src/IconStepOutOutlinedFilled.tsx | 2 +- src/IconStepOutRounded.tsx | 2 +- src/IconStepOutRoundedFilled.tsx | 2 +- src/IconStepOutSharp.tsx | 2 +- src/IconStepOutSharpFilled.tsx | 2 +- src/IconStepOutlined.tsx | 2 +- src/IconStepOutlinedFilled.tsx | 2 +- src/IconStepOverOutlined.tsx | 2 +- src/IconStepOverOutlinedFilled.tsx | 2 +- src/IconStepOverRounded.tsx | 2 +- src/IconStepOverRoundedFilled.tsx | 2 +- src/IconStepOverSharp.tsx | 2 +- src/IconStepOverSharpFilled.tsx | 2 +- src/IconStepRounded.tsx | 2 +- src/IconStepRoundedFilled.tsx | 2 +- src/IconStepSharp.tsx | 2 +- src/IconStepSharpFilled.tsx | 2 +- src/IconSteppersOutlined.tsx | 2 +- src/IconSteppersOutlinedFilled.tsx | 2 +- src/IconSteppersRounded.tsx | 2 +- src/IconSteppersRoundedFilled.tsx | 2 +- src/IconSteppersSharp.tsx | 2 +- src/IconSteppersSharpFilled.tsx | 2 +- src/IconStepsOutlined.tsx | 2 +- src/IconStepsOutlinedFilled.tsx | 2 +- src/IconStepsRounded.tsx | 2 +- src/IconStepsRoundedFilled.tsx | 2 +- src/IconStepsSharp.tsx | 2 +- src/IconStepsSharpFilled.tsx | 2 +- src/IconStethoscopeArrowOutlined.tsx | 2 +- src/IconStethoscopeArrowOutlinedFilled.tsx | 2 +- src/IconStethoscopeArrowRounded.tsx | 2 +- src/IconStethoscopeArrowRoundedFilled.tsx | 2 +- src/IconStethoscopeArrowSharp.tsx | 2 +- src/IconStethoscopeArrowSharpFilled.tsx | 2 +- src/IconStethoscopeCheckOutlined.tsx | 2 +- src/IconStethoscopeCheckOutlinedFilled.tsx | 2 +- src/IconStethoscopeCheckRounded.tsx | 2 +- src/IconStethoscopeCheckRoundedFilled.tsx | 2 +- src/IconStethoscopeCheckSharp.tsx | 2 +- src/IconStethoscopeCheckSharpFilled.tsx | 2 +- src/IconStethoscopeOutlined.tsx | 2 +- src/IconStethoscopeOutlinedFilled.tsx | 2 +- src/IconStethoscopeRounded.tsx | 2 +- src/IconStethoscopeRoundedFilled.tsx | 2 +- src/IconStethoscopeSharp.tsx | 2 +- src/IconStethoscopeSharpFilled.tsx | 2 +- src/IconStickyNote2Outlined.tsx | 2 +- src/IconStickyNote2OutlinedFilled.tsx | 2 +- src/IconStickyNote2Rounded.tsx | 2 +- src/IconStickyNote2RoundedFilled.tsx | 2 +- src/IconStickyNote2Sharp.tsx | 2 +- src/IconStickyNote2SharpFilled.tsx | 2 +- src/IconStickyNoteOutlined.tsx | 2 +- src/IconStickyNoteOutlinedFilled.tsx | 2 +- src/IconStickyNoteRounded.tsx | 2 +- src/IconStickyNoteRoundedFilled.tsx | 2 +- src/IconStickyNoteSharp.tsx | 2 +- src/IconStickyNoteSharpFilled.tsx | 2 +- src/IconStockMediaOutlined.tsx | 2 +- src/IconStockMediaOutlinedFilled.tsx | 2 +- src/IconStockMediaRounded.tsx | 2 +- src/IconStockMediaRoundedFilled.tsx | 2 +- src/IconStockMediaSharp.tsx | 2 +- src/IconStockMediaSharpFilled.tsx | 2 +- src/IconStockpotOutlined.tsx | 2 +- src/IconStockpotOutlinedFilled.tsx | 2 +- src/IconStockpotRounded.tsx | 2 +- src/IconStockpotRoundedFilled.tsx | 2 +- src/IconStockpotSharp.tsx | 2 +- src/IconStockpotSharpFilled.tsx | 2 +- src/IconStopCircleOutlined.tsx | 2 +- src/IconStopCircleOutlinedFilled.tsx | 2 +- src/IconStopCircleRounded.tsx | 2 +- src/IconStopCircleRoundedFilled.tsx | 2 +- src/IconStopCircleSharp.tsx | 2 +- src/IconStopCircleSharpFilled.tsx | 2 +- src/IconStopOutlined.tsx | 2 +- src/IconStopOutlinedFilled.tsx | 2 +- src/IconStopRounded.tsx | 2 +- src/IconStopRoundedFilled.tsx | 2 +- src/IconStopScreenShareOutlined.tsx | 2 +- src/IconStopScreenShareOutlinedFilled.tsx | 2 +- src/IconStopScreenShareRounded.tsx | 2 +- src/IconStopScreenShareRoundedFilled.tsx | 2 +- src/IconStopScreenShareSharp.tsx | 2 +- src/IconStopScreenShareSharpFilled.tsx | 2 +- src/IconStopSharp.tsx | 2 +- src/IconStopSharpFilled.tsx | 2 +- src/IconStorageOutlined.tsx | 2 +- src/IconStorageOutlinedFilled.tsx | 2 +- src/IconStorageRounded.tsx | 2 +- src/IconStorageRoundedFilled.tsx | 2 +- src/IconStorageSharp.tsx | 2 +- src/IconStorageSharpFilled.tsx | 2 +- src/IconStoreOutlined.tsx | 2 +- src/IconStoreOutlinedFilled.tsx | 2 +- src/IconStoreRounded.tsx | 2 +- src/IconStoreRoundedFilled.tsx | 2 +- src/IconStoreSharp.tsx | 2 +- src/IconStoreSharpFilled.tsx | 2 +- src/IconStorefrontOutlined.tsx | 2 +- src/IconStorefrontOutlinedFilled.tsx | 2 +- src/IconStorefrontRounded.tsx | 2 +- src/IconStorefrontRoundedFilled.tsx | 2 +- src/IconStorefrontSharp.tsx | 2 +- src/IconStorefrontSharpFilled.tsx | 2 +- src/IconStormOutlined.tsx | 2 +- src/IconStormOutlinedFilled.tsx | 2 +- src/IconStormRounded.tsx | 2 +- src/IconStormRoundedFilled.tsx | 2 +- src/IconStormSharp.tsx | 2 +- src/IconStormSharpFilled.tsx | 2 +- src/IconStraightOutlined.tsx | 2 +- src/IconStraightOutlinedFilled.tsx | 2 +- src/IconStraightRounded.tsx | 2 +- src/IconStraightRoundedFilled.tsx | 2 +- src/IconStraightSharp.tsx | 2 +- src/IconStraightSharpFilled.tsx | 2 +- src/IconStraightenOutlined.tsx | 2 +- src/IconStraightenOutlinedFilled.tsx | 2 +- src/IconStraightenRounded.tsx | 2 +- src/IconStraightenRoundedFilled.tsx | 2 +- src/IconStraightenSharp.tsx | 2 +- src/IconStraightenSharpFilled.tsx | 2 +- src/IconStrategyOutlined.tsx | 2 +- src/IconStrategyOutlinedFilled.tsx | 2 +- src/IconStrategyRounded.tsx | 2 +- src/IconStrategyRoundedFilled.tsx | 2 +- src/IconStrategySharp.tsx | 2 +- src/IconStrategySharpFilled.tsx | 2 +- src/IconStreamAppsOutlined.tsx | 2 +- src/IconStreamAppsOutlinedFilled.tsx | 2 +- src/IconStreamAppsRounded.tsx | 2 +- src/IconStreamAppsRoundedFilled.tsx | 2 +- src/IconStreamAppsSharp.tsx | 2 +- src/IconStreamAppsSharpFilled.tsx | 2 +- src/IconStreamOutlined.tsx | 2 +- src/IconStreamOutlinedFilled.tsx | 2 +- src/IconStreamRounded.tsx | 2 +- src/IconStreamRoundedFilled.tsx | 2 +- src/IconStreamSharp.tsx | 2 +- src/IconStreamSharpFilled.tsx | 2 +- src/IconStreetviewOutlined.tsx | 2 +- src/IconStreetviewOutlinedFilled.tsx | 2 +- src/IconStreetviewRounded.tsx | 2 +- src/IconStreetviewRoundedFilled.tsx | 2 +- src/IconStreetviewSharp.tsx | 2 +- src/IconStreetviewSharpFilled.tsx | 2 +- src/IconStressManagementOutlined.tsx | 2 +- src/IconStressManagementOutlinedFilled.tsx | 2 +- src/IconStressManagementRounded.tsx | 2 +- src/IconStressManagementRoundedFilled.tsx | 2 +- src/IconStressManagementSharp.tsx | 2 +- src/IconStressManagementSharpFilled.tsx | 2 +- src/IconStrikethroughSOutlined.tsx | 2 +- src/IconStrikethroughSOutlinedFilled.tsx | 2 +- src/IconStrikethroughSRounded.tsx | 2 +- src/IconStrikethroughSRoundedFilled.tsx | 2 +- src/IconStrikethroughSSharp.tsx | 2 +- src/IconStrikethroughSSharpFilled.tsx | 2 +- src/IconStrokeFullOutlined.tsx | 2 +- src/IconStrokeFullOutlinedFilled.tsx | 2 +- src/IconStrokeFullRounded.tsx | 2 +- src/IconStrokeFullRoundedFilled.tsx | 2 +- src/IconStrokeFullSharp.tsx | 2 +- src/IconStrokeFullSharpFilled.tsx | 2 +- src/IconStrokePartialOutlined.tsx | 2 +- src/IconStrokePartialOutlinedFilled.tsx | 2 +- src/IconStrokePartialRounded.tsx | 2 +- src/IconStrokePartialRoundedFilled.tsx | 2 +- src/IconStrokePartialSharp.tsx | 2 +- src/IconStrokePartialSharpFilled.tsx | 2 +- src/IconStrollerOutlined.tsx | 2 +- src/IconStrollerOutlinedFilled.tsx | 2 +- src/IconStrollerRounded.tsx | 2 +- src/IconStrollerRoundedFilled.tsx | 2 +- src/IconStrollerSharp.tsx | 2 +- src/IconStrollerSharpFilled.tsx | 2 +- src/IconStyleOutlined.tsx | 2 +- src/IconStyleOutlinedFilled.tsx | 2 +- src/IconStyleRounded.tsx | 2 +- src/IconStyleRoundedFilled.tsx | 2 +- src/IconStyleSharp.tsx | 2 +- src/IconStyleSharpFilled.tsx | 2 +- src/IconStylerOutlined.tsx | 2 +- src/IconStylerOutlinedFilled.tsx | 2 +- src/IconStylerRounded.tsx | 2 +- src/IconStylerRoundedFilled.tsx | 2 +- src/IconStylerSharp.tsx | 2 +- src/IconStylerSharpFilled.tsx | 2 +- src/IconStylusLaserPointerOutlined.tsx | 2 +- src/IconStylusLaserPointerOutlinedFilled.tsx | 2 +- src/IconStylusLaserPointerRounded.tsx | 2 +- src/IconStylusLaserPointerRoundedFilled.tsx | 2 +- src/IconStylusLaserPointerSharp.tsx | 2 +- src/IconStylusLaserPointerSharpFilled.tsx | 2 +- src/IconStylusNoteOutlined.tsx | 2 +- src/IconStylusNoteOutlinedFilled.tsx | 2 +- src/IconStylusNoteRounded.tsx | 2 +- src/IconStylusNoteRoundedFilled.tsx | 2 +- src/IconStylusNoteSharp.tsx | 2 +- src/IconStylusNoteSharpFilled.tsx | 2 +- src/IconStylusOutlined.tsx | 2 +- src/IconStylusOutlinedFilled.tsx | 2 +- src/IconStylusRounded.tsx | 2 +- src/IconStylusRoundedFilled.tsx | 2 +- src/IconStylusSharp.tsx | 2 +- src/IconStylusSharpFilled.tsx | 2 +- src/IconSubdirectoryArrowLeftOutlined.tsx | 2 +- src/IconSubdirectoryArrowLeftOutlinedFilled.tsx | 2 +- src/IconSubdirectoryArrowLeftRounded.tsx | 2 +- src/IconSubdirectoryArrowLeftRoundedFilled.tsx | 2 +- src/IconSubdirectoryArrowLeftSharp.tsx | 2 +- src/IconSubdirectoryArrowLeftSharpFilled.tsx | 2 +- src/IconSubdirectoryArrowRightOutlined.tsx | 2 +- src/IconSubdirectoryArrowRightOutlinedFilled.tsx | 2 +- src/IconSubdirectoryArrowRightRounded.tsx | 2 +- src/IconSubdirectoryArrowRightRoundedFilled.tsx | 2 +- src/IconSubdirectoryArrowRightSharp.tsx | 2 +- src/IconSubdirectoryArrowRightSharpFilled.tsx | 2 +- src/IconSubheaderOutlined.tsx | 2 +- src/IconSubheaderOutlinedFilled.tsx | 2 +- src/IconSubheaderRounded.tsx | 2 +- src/IconSubheaderRoundedFilled.tsx | 2 +- src/IconSubheaderSharp.tsx | 2 +- src/IconSubheaderSharpFilled.tsx | 2 +- src/IconSubjectOutlined.tsx | 2 +- src/IconSubjectOutlinedFilled.tsx | 2 +- src/IconSubjectRounded.tsx | 2 +- src/IconSubjectRoundedFilled.tsx | 2 +- src/IconSubjectSharp.tsx | 2 +- src/IconSubjectSharpFilled.tsx | 2 +- src/IconSubscriptOutlined.tsx | 2 +- src/IconSubscriptOutlinedFilled.tsx | 2 +- src/IconSubscriptRounded.tsx | 2 +- src/IconSubscriptRoundedFilled.tsx | 2 +- src/IconSubscriptSharp.tsx | 2 +- src/IconSubscriptSharpFilled.tsx | 2 +- src/IconSubscriptionsOutlined.tsx | 2 +- src/IconSubscriptionsOutlinedFilled.tsx | 2 +- src/IconSubscriptionsRounded.tsx | 2 +- src/IconSubscriptionsRoundedFilled.tsx | 2 +- src/IconSubscriptionsSharp.tsx | 2 +- src/IconSubscriptionsSharpFilled.tsx | 2 +- src/IconSubtitlesOffOutlined.tsx | 2 +- src/IconSubtitlesOffOutlinedFilled.tsx | 2 +- src/IconSubtitlesOffRounded.tsx | 2 +- src/IconSubtitlesOffRoundedFilled.tsx | 2 +- src/IconSubtitlesOffSharp.tsx | 2 +- src/IconSubtitlesOffSharpFilled.tsx | 2 +- src/IconSubtitlesOutlined.tsx | 2 +- src/IconSubtitlesOutlinedFilled.tsx | 2 +- src/IconSubtitlesRounded.tsx | 2 +- src/IconSubtitlesRoundedFilled.tsx | 2 +- src/IconSubtitlesSharp.tsx | 2 +- src/IconSubtitlesSharpFilled.tsx | 2 +- src/IconSubwayOutlined.tsx | 2 +- src/IconSubwayOutlinedFilled.tsx | 2 +- src/IconSubwayRounded.tsx | 2 +- src/IconSubwayRoundedFilled.tsx | 2 +- src/IconSubwaySharp.tsx | 2 +- src/IconSubwaySharpFilled.tsx | 2 +- src/IconSummarizeOutlined.tsx | 2 +- src/IconSummarizeOutlinedFilled.tsx | 2 +- src/IconSummarizeRounded.tsx | 2 +- src/IconSummarizeRoundedFilled.tsx | 2 +- src/IconSummarizeSharp.tsx | 2 +- src/IconSummarizeSharpFilled.tsx | 2 +- src/IconSunnyOutlined.tsx | 2 +- src/IconSunnyOutlinedFilled.tsx | 2 +- src/IconSunnyRounded.tsx | 2 +- src/IconSunnyRoundedFilled.tsx | 2 +- src/IconSunnySharp.tsx | 2 +- src/IconSunnySharpFilled.tsx | 2 +- src/IconSunnySnowingOutlined.tsx | 2 +- src/IconSunnySnowingOutlinedFilled.tsx | 2 +- src/IconSunnySnowingRounded.tsx | 2 +- src/IconSunnySnowingRoundedFilled.tsx | 2 +- src/IconSunnySnowingSharp.tsx | 2 +- src/IconSunnySnowingSharpFilled.tsx | 2 +- src/IconSuperscriptOutlined.tsx | 2 +- src/IconSuperscriptOutlinedFilled.tsx | 2 +- src/IconSuperscriptRounded.tsx | 2 +- src/IconSuperscriptRoundedFilled.tsx | 2 +- src/IconSuperscriptSharp.tsx | 2 +- src/IconSuperscriptSharpFilled.tsx | 2 +- src/IconSupervisedUserCircleOffOutlined.tsx | 2 +- src/IconSupervisedUserCircleOffOutlinedFilled.tsx | 2 +- src/IconSupervisedUserCircleOffRounded.tsx | 2 +- src/IconSupervisedUserCircleOffRoundedFilled.tsx | 2 +- src/IconSupervisedUserCircleOffSharp.tsx | 2 +- src/IconSupervisedUserCircleOffSharpFilled.tsx | 2 +- src/IconSupervisedUserCircleOutlined.tsx | 2 +- src/IconSupervisedUserCircleOutlinedFilled.tsx | 2 +- src/IconSupervisedUserCircleRounded.tsx | 2 +- src/IconSupervisedUserCircleRoundedFilled.tsx | 2 +- src/IconSupervisedUserCircleSharp.tsx | 2 +- src/IconSupervisedUserCircleSharpFilled.tsx | 2 +- src/IconSupervisorAccountOutlined.tsx | 2 +- src/IconSupervisorAccountOutlinedFilled.tsx | 2 +- src/IconSupervisorAccountRounded.tsx | 2 +- src/IconSupervisorAccountRoundedFilled.tsx | 2 +- src/IconSupervisorAccountSharp.tsx | 2 +- src/IconSupervisorAccountSharpFilled.tsx | 2 +- src/IconSupportAgentOutlined.tsx | 2 +- src/IconSupportAgentOutlinedFilled.tsx | 2 +- src/IconSupportAgentRounded.tsx | 2 +- src/IconSupportAgentRoundedFilled.tsx | 2 +- src/IconSupportAgentSharp.tsx | 2 +- src/IconSupportAgentSharpFilled.tsx | 2 +- src/IconSupportOutlined.tsx | 2 +- src/IconSupportOutlinedFilled.tsx | 2 +- src/IconSupportRounded.tsx | 2 +- src/IconSupportRoundedFilled.tsx | 2 +- src/IconSupportSharp.tsx | 2 +- src/IconSupportSharpFilled.tsx | 2 +- src/IconSurfingOutlined.tsx | 2 +- src/IconSurfingOutlinedFilled.tsx | 2 +- src/IconSurfingRounded.tsx | 2 +- src/IconSurfingRoundedFilled.tsx | 2 +- src/IconSurfingSharp.tsx | 2 +- src/IconSurfingSharpFilled.tsx | 2 +- src/IconSurgicalOutlined.tsx | 2 +- src/IconSurgicalOutlinedFilled.tsx | 2 +- src/IconSurgicalRounded.tsx | 2 +- src/IconSurgicalRoundedFilled.tsx | 2 +- src/IconSurgicalSharp.tsx | 2 +- src/IconSurgicalSharpFilled.tsx | 2 +- src/IconSurroundSoundOutlined.tsx | 2 +- src/IconSurroundSoundOutlinedFilled.tsx | 2 +- src/IconSurroundSoundRounded.tsx | 2 +- src/IconSurroundSoundRoundedFilled.tsx | 2 +- src/IconSurroundSoundSharp.tsx | 2 +- src/IconSurroundSoundSharpFilled.tsx | 2 +- src/IconSwapCallsOutlined.tsx | 2 +- src/IconSwapCallsOutlinedFilled.tsx | 2 +- src/IconSwapCallsRounded.tsx | 2 +- src/IconSwapCallsRoundedFilled.tsx | 2 +- src/IconSwapCallsSharp.tsx | 2 +- src/IconSwapCallsSharpFilled.tsx | 2 +- src/IconSwapDrivingAppsOutlined.tsx | 2 +- src/IconSwapDrivingAppsOutlinedFilled.tsx | 2 +- src/IconSwapDrivingAppsRounded.tsx | 2 +- src/IconSwapDrivingAppsRoundedFilled.tsx | 2 +- src/IconSwapDrivingAppsSharp.tsx | 2 +- src/IconSwapDrivingAppsSharpFilled.tsx | 2 +- src/IconSwapDrivingAppsWheelOutlined.tsx | 2 +- src/IconSwapDrivingAppsWheelOutlinedFilled.tsx | 2 +- src/IconSwapDrivingAppsWheelRounded.tsx | 2 +- src/IconSwapDrivingAppsWheelRoundedFilled.tsx | 2 +- src/IconSwapDrivingAppsWheelSharp.tsx | 2 +- src/IconSwapDrivingAppsWheelSharpFilled.tsx | 2 +- src/IconSwapHorizOutlined.tsx | 2 +- src/IconSwapHorizOutlinedFilled.tsx | 2 +- src/IconSwapHorizRounded.tsx | 2 +- src/IconSwapHorizRoundedFilled.tsx | 2 +- src/IconSwapHorizSharp.tsx | 2 +- src/IconSwapHorizSharpFilled.tsx | 2 +- src/IconSwapHorizontalCircleOutlined.tsx | 2 +- src/IconSwapHorizontalCircleOutlinedFilled.tsx | 2 +- src/IconSwapHorizontalCircleRounded.tsx | 2 +- src/IconSwapHorizontalCircleRoundedFilled.tsx | 2 +- src/IconSwapHorizontalCircleSharp.tsx | 2 +- src/IconSwapHorizontalCircleSharpFilled.tsx | 2 +- src/IconSwapVertOutlined.tsx | 2 +- src/IconSwapVertOutlinedFilled.tsx | 2 +- src/IconSwapVertRounded.tsx | 2 +- src/IconSwapVertRoundedFilled.tsx | 2 +- src/IconSwapVertSharp.tsx | 2 +- src/IconSwapVertSharpFilled.tsx | 2 +- src/IconSwapVerticalCircleOutlined.tsx | 2 +- src/IconSwapVerticalCircleOutlinedFilled.tsx | 2 +- src/IconSwapVerticalCircleRounded.tsx | 2 +- src/IconSwapVerticalCircleRoundedFilled.tsx | 2 +- src/IconSwapVerticalCircleSharp.tsx | 2 +- src/IconSwapVerticalCircleSharpFilled.tsx | 2 +- src/IconSweepOutlined.tsx | 2 +- src/IconSweepOutlinedFilled.tsx | 2 +- src/IconSweepRounded.tsx | 2 +- src/IconSweepRoundedFilled.tsx | 2 +- src/IconSweepSharp.tsx | 2 +- src/IconSweepSharpFilled.tsx | 2 +- src/IconSwipeDownAltOutlined.tsx | 2 +- src/IconSwipeDownAltOutlinedFilled.tsx | 2 +- src/IconSwipeDownAltRounded.tsx | 2 +- src/IconSwipeDownAltRoundedFilled.tsx | 2 +- src/IconSwipeDownAltSharp.tsx | 2 +- src/IconSwipeDownAltSharpFilled.tsx | 2 +- src/IconSwipeDownOutlined.tsx | 2 +- src/IconSwipeDownOutlinedFilled.tsx | 2 +- src/IconSwipeDownRounded.tsx | 2 +- src/IconSwipeDownRoundedFilled.tsx | 2 +- src/IconSwipeDownSharp.tsx | 2 +- src/IconSwipeDownSharpFilled.tsx | 2 +- src/IconSwipeLeftAltOutlined.tsx | 2 +- src/IconSwipeLeftAltOutlinedFilled.tsx | 2 +- src/IconSwipeLeftAltRounded.tsx | 2 +- src/IconSwipeLeftAltRoundedFilled.tsx | 2 +- src/IconSwipeLeftAltSharp.tsx | 2 +- src/IconSwipeLeftAltSharpFilled.tsx | 2 +- src/IconSwipeLeftOutlined.tsx | 2 +- src/IconSwipeLeftOutlinedFilled.tsx | 2 +- src/IconSwipeLeftRounded.tsx | 2 +- src/IconSwipeLeftRoundedFilled.tsx | 2 +- src/IconSwipeLeftSharp.tsx | 2 +- src/IconSwipeLeftSharpFilled.tsx | 2 +- src/IconSwipeOutlined.tsx | 2 +- src/IconSwipeOutlinedFilled.tsx | 2 +- src/IconSwipeRightAltOutlined.tsx | 2 +- src/IconSwipeRightAltOutlinedFilled.tsx | 2 +- src/IconSwipeRightAltRounded.tsx | 2 +- src/IconSwipeRightAltRoundedFilled.tsx | 2 +- src/IconSwipeRightAltSharp.tsx | 2 +- src/IconSwipeRightAltSharpFilled.tsx | 2 +- src/IconSwipeRightOutlined.tsx | 2 +- src/IconSwipeRightOutlinedFilled.tsx | 2 +- src/IconSwipeRightRounded.tsx | 2 +- src/IconSwipeRightRoundedFilled.tsx | 2 +- src/IconSwipeRightSharp.tsx | 2 +- src/IconSwipeRightSharpFilled.tsx | 2 +- src/IconSwipeRounded.tsx | 2 +- src/IconSwipeRoundedFilled.tsx | 2 +- src/IconSwipeSharp.tsx | 2 +- src/IconSwipeSharpFilled.tsx | 2 +- src/IconSwipeUpAltOutlined.tsx | 2 +- src/IconSwipeUpAltOutlinedFilled.tsx | 2 +- src/IconSwipeUpAltRounded.tsx | 2 +- src/IconSwipeUpAltRoundedFilled.tsx | 2 +- src/IconSwipeUpAltSharp.tsx | 2 +- src/IconSwipeUpAltSharpFilled.tsx | 2 +- src/IconSwipeUpOutlined.tsx | 2 +- src/IconSwipeUpOutlinedFilled.tsx | 2 +- src/IconSwipeUpRounded.tsx | 2 +- src/IconSwipeUpRoundedFilled.tsx | 2 +- src/IconSwipeUpSharp.tsx | 2 +- src/IconSwipeUpSharpFilled.tsx | 2 +- src/IconSwipeVerticalOutlined.tsx | 2 +- src/IconSwipeVerticalOutlinedFilled.tsx | 2 +- src/IconSwipeVerticalRounded.tsx | 2 +- src/IconSwipeVerticalRoundedFilled.tsx | 2 +- src/IconSwipeVerticalSharp.tsx | 2 +- src/IconSwipeVerticalSharpFilled.tsx | 2 +- src/IconSwitchAccess2Outlined.tsx | 2 +- src/IconSwitchAccess2OutlinedFilled.tsx | 2 +- src/IconSwitchAccess2Rounded.tsx | 2 +- src/IconSwitchAccess2RoundedFilled.tsx | 2 +- src/IconSwitchAccess2Sharp.tsx | 2 +- src/IconSwitchAccess2SharpFilled.tsx | 2 +- src/IconSwitchAccessOutlined.tsx | 2 +- src/IconSwitchAccessOutlinedFilled.tsx | 2 +- src/IconSwitchAccessRounded.tsx | 2 +- src/IconSwitchAccessRoundedFilled.tsx | 2 +- src/IconSwitchAccessSharp.tsx | 2 +- src/IconSwitchAccessSharpFilled.tsx | 2 +- src/IconSwitchAccessShortcutAddOutlined.tsx | 2 +- src/IconSwitchAccessShortcutAddOutlinedFilled.tsx | 2 +- src/IconSwitchAccessShortcutAddRounded.tsx | 2 +- src/IconSwitchAccessShortcutAddRoundedFilled.tsx | 2 +- src/IconSwitchAccessShortcutAddSharp.tsx | 2 +- src/IconSwitchAccessShortcutAddSharpFilled.tsx | 2 +- src/IconSwitchAccessShortcutOutlined.tsx | 2 +- src/IconSwitchAccessShortcutOutlinedFilled.tsx | 2 +- src/IconSwitchAccessShortcutRounded.tsx | 2 +- src/IconSwitchAccessShortcutRoundedFilled.tsx | 2 +- src/IconSwitchAccessShortcutSharp.tsx | 2 +- src/IconSwitchAccessShortcutSharpFilled.tsx | 2 +- src/IconSwitchAccountOutlined.tsx | 2 +- src/IconSwitchAccountOutlinedFilled.tsx | 2 +- src/IconSwitchAccountRounded.tsx | 2 +- src/IconSwitchAccountRoundedFilled.tsx | 2 +- src/IconSwitchAccountSharp.tsx | 2 +- src/IconSwitchAccountSharpFilled.tsx | 2 +- src/IconSwitchCameraOutlined.tsx | 2 +- src/IconSwitchCameraOutlinedFilled.tsx | 2 +- src/IconSwitchCameraRounded.tsx | 2 +- src/IconSwitchCameraRoundedFilled.tsx | 2 +- src/IconSwitchCameraSharp.tsx | 2 +- src/IconSwitchCameraSharpFilled.tsx | 2 +- src/IconSwitchLeftOutlined.tsx | 2 +- src/IconSwitchLeftOutlinedFilled.tsx | 2 +- src/IconSwitchLeftRounded.tsx | 2 +- src/IconSwitchLeftRoundedFilled.tsx | 2 +- src/IconSwitchLeftSharp.tsx | 2 +- src/IconSwitchLeftSharpFilled.tsx | 2 +- src/IconSwitchOutlined.tsx | 2 +- src/IconSwitchOutlinedFilled.tsx | 2 +- src/IconSwitchRightOutlined.tsx | 2 +- src/IconSwitchRightOutlinedFilled.tsx | 2 +- src/IconSwitchRightRounded.tsx | 2 +- src/IconSwitchRightRoundedFilled.tsx | 2 +- src/IconSwitchRightSharp.tsx | 2 +- src/IconSwitchRightSharpFilled.tsx | 2 +- src/IconSwitchRounded.tsx | 2 +- src/IconSwitchRoundedFilled.tsx | 2 +- src/IconSwitchSharp.tsx | 2 +- src/IconSwitchSharpFilled.tsx | 2 +- src/IconSwitchVideoOutlined.tsx | 2 +- src/IconSwitchVideoOutlinedFilled.tsx | 2 +- src/IconSwitchVideoRounded.tsx | 2 +- src/IconSwitchVideoRoundedFilled.tsx | 2 +- src/IconSwitchVideoSharp.tsx | 2 +- src/IconSwitchVideoSharpFilled.tsx | 2 +- src/IconSwitchesOutlined.tsx | 2 +- src/IconSwitchesOutlinedFilled.tsx | 2 +- src/IconSwitchesRounded.tsx | 2 +- src/IconSwitchesRoundedFilled.tsx | 2 +- src/IconSwitchesSharp.tsx | 2 +- src/IconSwitchesSharpFilled.tsx | 2 +- src/IconSwordRoseOutlined.tsx | 2 +- src/IconSwordRoseOutlinedFilled.tsx | 2 +- src/IconSwordRoseRounded.tsx | 2 +- src/IconSwordRoseRoundedFilled.tsx | 2 +- src/IconSwordRoseSharp.tsx | 2 +- src/IconSwordRoseSharpFilled.tsx | 2 +- src/IconSwordsOutlined.tsx | 2 +- src/IconSwordsOutlinedFilled.tsx | 2 +- src/IconSwordsRounded.tsx | 2 +- src/IconSwordsRoundedFilled.tsx | 2 +- src/IconSwordsSharp.tsx | 2 +- src/IconSwordsSharpFilled.tsx | 2 +- src/IconSymptomsOutlined.tsx | 2 +- src/IconSymptomsOutlinedFilled.tsx | 2 +- src/IconSymptomsRounded.tsx | 2 +- src/IconSymptomsRoundedFilled.tsx | 2 +- src/IconSymptomsSharp.tsx | 2 +- src/IconSymptomsSharpFilled.tsx | 2 +- src/IconSynagogueOutlined.tsx | 2 +- src/IconSynagogueOutlinedFilled.tsx | 2 +- src/IconSynagogueRounded.tsx | 2 +- src/IconSynagogueRoundedFilled.tsx | 2 +- src/IconSynagogueSharp.tsx | 2 +- src/IconSynagogueSharpFilled.tsx | 2 +- src/IconSyncAltOutlined.tsx | 2 +- src/IconSyncAltOutlinedFilled.tsx | 2 +- src/IconSyncAltRounded.tsx | 2 +- src/IconSyncAltRoundedFilled.tsx | 2 +- src/IconSyncAltSharp.tsx | 2 +- src/IconSyncAltSharpFilled.tsx | 2 +- src/IconSyncDesktopOutlined.tsx | 2 +- src/IconSyncDesktopOutlinedFilled.tsx | 2 +- src/IconSyncDesktopRounded.tsx | 2 +- src/IconSyncDesktopRoundedFilled.tsx | 2 +- src/IconSyncDesktopSharp.tsx | 2 +- src/IconSyncDesktopSharpFilled.tsx | 2 +- src/IconSyncDisabledOutlined.tsx | 2 +- src/IconSyncDisabledOutlinedFilled.tsx | 2 +- src/IconSyncDisabledRounded.tsx | 2 +- src/IconSyncDisabledRoundedFilled.tsx | 2 +- src/IconSyncDisabledSharp.tsx | 2 +- src/IconSyncDisabledSharpFilled.tsx | 2 +- src/IconSyncLockOutlined.tsx | 2 +- src/IconSyncLockOutlinedFilled.tsx | 2 +- src/IconSyncLockRounded.tsx | 2 +- src/IconSyncLockRoundedFilled.tsx | 2 +- src/IconSyncLockSharp.tsx | 2 +- src/IconSyncLockSharpFilled.tsx | 2 +- src/IconSyncOutlined.tsx | 2 +- src/IconSyncOutlinedFilled.tsx | 2 +- src/IconSyncProblemOutlined.tsx | 2 +- src/IconSyncProblemOutlinedFilled.tsx | 2 +- src/IconSyncProblemRounded.tsx | 2 +- src/IconSyncProblemRoundedFilled.tsx | 2 +- src/IconSyncProblemSharp.tsx | 2 +- src/IconSyncProblemSharpFilled.tsx | 2 +- src/IconSyncRounded.tsx | 2 +- src/IconSyncRoundedFilled.tsx | 2 +- src/IconSyncSavedLocallyOutlined.tsx | 2 +- src/IconSyncSavedLocallyOutlinedFilled.tsx | 2 +- src/IconSyncSavedLocallyRounded.tsx | 2 +- src/IconSyncSavedLocallyRoundedFilled.tsx | 2 +- src/IconSyncSavedLocallySharp.tsx | 2 +- src/IconSyncSavedLocallySharpFilled.tsx | 2 +- src/IconSyncSharp.tsx | 2 +- src/IconSyncSharpFilled.tsx | 2 +- src/IconSyringeOutlined.tsx | 2 +- src/IconSyringeOutlinedFilled.tsx | 2 +- src/IconSyringeRounded.tsx | 2 +- src/IconSyringeRoundedFilled.tsx | 2 +- src/IconSyringeSharp.tsx | 2 +- src/IconSyringeSharpFilled.tsx | 2 +- src/IconSystemUpdateAltOutlined.tsx | 2 +- src/IconSystemUpdateAltOutlinedFilled.tsx | 2 +- src/IconSystemUpdateAltRounded.tsx | 2 +- src/IconSystemUpdateAltRoundedFilled.tsx | 2 +- src/IconSystemUpdateAltSharp.tsx | 2 +- src/IconSystemUpdateAltSharpFilled.tsx | 2 +- src/IconSystemUpdateOutlined.tsx | 2 +- src/IconSystemUpdateOutlinedFilled.tsx | 2 +- src/IconSystemUpdateRounded.tsx | 2 +- src/IconSystemUpdateRoundedFilled.tsx | 2 +- src/IconSystemUpdateSharp.tsx | 2 +- src/IconSystemUpdateSharpFilled.tsx | 2 +- src/IconTabCloseOutlined.tsx | 2 +- src/IconTabCloseOutlinedFilled.tsx | 2 +- src/IconTabCloseRightOutlined.tsx | 2 +- src/IconTabCloseRightOutlinedFilled.tsx | 2 +- src/IconTabCloseRightRounded.tsx | 2 +- src/IconTabCloseRightRoundedFilled.tsx | 2 +- src/IconTabCloseRightSharp.tsx | 2 +- src/IconTabCloseRightSharpFilled.tsx | 2 +- src/IconTabCloseRounded.tsx | 2 +- src/IconTabCloseRoundedFilled.tsx | 2 +- src/IconTabCloseSharp.tsx | 2 +- src/IconTabCloseSharpFilled.tsx | 2 +- src/IconTabDuplicateOutlined.tsx | 2 +- src/IconTabDuplicateOutlinedFilled.tsx | 2 +- src/IconTabDuplicateRounded.tsx | 2 +- src/IconTabDuplicateRoundedFilled.tsx | 2 +- src/IconTabDuplicateSharp.tsx | 2 +- src/IconTabDuplicateSharpFilled.tsx | 2 +- src/IconTabGroupOutlined.tsx | 2 +- src/IconTabGroupOutlinedFilled.tsx | 2 +- src/IconTabGroupRounded.tsx | 2 +- src/IconTabGroupRoundedFilled.tsx | 2 +- src/IconTabGroupSharp.tsx | 2 +- src/IconTabGroupSharpFilled.tsx | 2 +- src/IconTabInactiveOutlined.tsx | 2 +- src/IconTabInactiveOutlinedFilled.tsx | 2 +- src/IconTabInactiveRounded.tsx | 2 +- src/IconTabInactiveRoundedFilled.tsx | 2 +- src/IconTabInactiveSharp.tsx | 2 +- src/IconTabInactiveSharpFilled.tsx | 2 +- src/IconTabMoveOutlined.tsx | 2 +- src/IconTabMoveOutlinedFilled.tsx | 2 +- src/IconTabMoveRounded.tsx | 2 +- src/IconTabMoveRoundedFilled.tsx | 2 +- src/IconTabMoveSharp.tsx | 2 +- src/IconTabMoveSharpFilled.tsx | 2 +- src/IconTabNewRightOutlined.tsx | 2 +- src/IconTabNewRightOutlinedFilled.tsx | 2 +- src/IconTabNewRightRounded.tsx | 2 +- src/IconTabNewRightRoundedFilled.tsx | 2 +- src/IconTabNewRightSharp.tsx | 2 +- src/IconTabNewRightSharpFilled.tsx | 2 +- src/IconTabOutlined.tsx | 2 +- src/IconTabOutlinedFilled.tsx | 2 +- src/IconTabRecentOutlined.tsx | 2 +- src/IconTabRecentOutlinedFilled.tsx | 2 +- src/IconTabRecentRounded.tsx | 2 +- src/IconTabRecentRoundedFilled.tsx | 2 +- src/IconTabRecentSharp.tsx | 2 +- src/IconTabRecentSharpFilled.tsx | 2 +- src/IconTabRounded.tsx | 2 +- src/IconTabRoundedFilled.tsx | 2 +- src/IconTabSharp.tsx | 2 +- src/IconTabSharpFilled.tsx | 2 +- src/IconTabUnselectedOutlined.tsx | 2 +- src/IconTabUnselectedOutlinedFilled.tsx | 2 +- src/IconTabUnselectedRounded.tsx | 2 +- src/IconTabUnselectedRoundedFilled.tsx | 2 +- src/IconTabUnselectedSharp.tsx | 2 +- src/IconTabUnselectedSharpFilled.tsx | 2 +- src/IconTableBarOutlined.tsx | 2 +- src/IconTableBarOutlinedFilled.tsx | 2 +- src/IconTableBarRounded.tsx | 2 +- src/IconTableBarRoundedFilled.tsx | 2 +- src/IconTableBarSharp.tsx | 2 +- src/IconTableBarSharpFilled.tsx | 2 +- src/IconTableChartOutlined.tsx | 2 +- src/IconTableChartOutlinedFilled.tsx | 2 +- src/IconTableChartRounded.tsx | 2 +- src/IconTableChartRoundedFilled.tsx | 2 +- src/IconTableChartSharp.tsx | 2 +- src/IconTableChartSharpFilled.tsx | 2 +- src/IconTableChartViewOutlined.tsx | 2 +- src/IconTableChartViewOutlinedFilled.tsx | 2 +- src/IconTableChartViewRounded.tsx | 2 +- src/IconTableChartViewRoundedFilled.tsx | 2 +- src/IconTableChartViewSharp.tsx | 2 +- src/IconTableChartViewSharpFilled.tsx | 2 +- src/IconTableEyeOutlined.tsx | 2 +- src/IconTableEyeOutlinedFilled.tsx | 2 +- src/IconTableEyeRounded.tsx | 2 +- src/IconTableEyeRoundedFilled.tsx | 2 +- src/IconTableEyeSharp.tsx | 2 +- src/IconTableEyeSharpFilled.tsx | 2 +- src/IconTableLampOutlined.tsx | 2 +- src/IconTableLampOutlinedFilled.tsx | 2 +- src/IconTableLampRounded.tsx | 2 +- src/IconTableLampRoundedFilled.tsx | 2 +- src/IconTableLampSharp.tsx | 2 +- src/IconTableLampSharpFilled.tsx | 2 +- src/IconTableOutlined.tsx | 2 +- src/IconTableOutlinedFilled.tsx | 2 +- src/IconTableRestaurantOutlined.tsx | 2 +- src/IconTableRestaurantOutlinedFilled.tsx | 2 +- src/IconTableRestaurantRounded.tsx | 2 +- src/IconTableRestaurantRoundedFilled.tsx | 2 +- src/IconTableRestaurantSharp.tsx | 2 +- src/IconTableRestaurantSharpFilled.tsx | 2 +- src/IconTableRounded.tsx | 2 +- src/IconTableRoundedFilled.tsx | 2 +- src/IconTableRowsNarrowOutlined.tsx | 2 +- src/IconTableRowsNarrowOutlinedFilled.tsx | 2 +- src/IconTableRowsNarrowRounded.tsx | 2 +- src/IconTableRowsNarrowRoundedFilled.tsx | 2 +- src/IconTableRowsNarrowSharp.tsx | 2 +- src/IconTableRowsNarrowSharpFilled.tsx | 2 +- src/IconTableRowsOutlined.tsx | 2 +- src/IconTableRowsOutlinedFilled.tsx | 2 +- src/IconTableRowsRounded.tsx | 2 +- src/IconTableRowsRoundedFilled.tsx | 2 +- src/IconTableRowsSharp.tsx | 2 +- src/IconTableRowsSharpFilled.tsx | 2 +- src/IconTableSharp.tsx | 2 +- src/IconTableSharpFilled.tsx | 2 +- src/IconTableViewOutlined.tsx | 2 +- src/IconTableViewOutlinedFilled.tsx | 2 +- src/IconTableViewRounded.tsx | 2 +- src/IconTableViewRoundedFilled.tsx | 2 +- src/IconTableViewSharp.tsx | 2 +- src/IconTableViewSharpFilled.tsx | 2 +- src/IconTabletAndroidOutlined.tsx | 2 +- src/IconTabletAndroidOutlinedFilled.tsx | 2 +- src/IconTabletAndroidRounded.tsx | 2 +- src/IconTabletAndroidRoundedFilled.tsx | 2 +- src/IconTabletAndroidSharp.tsx | 2 +- src/IconTabletAndroidSharpFilled.tsx | 2 +- src/IconTabletCameraOutlined.tsx | 2 +- src/IconTabletCameraOutlinedFilled.tsx | 2 +- src/IconTabletCameraRounded.tsx | 2 +- src/IconTabletCameraRoundedFilled.tsx | 2 +- src/IconTabletCameraSharp.tsx | 2 +- src/IconTabletCameraSharpFilled.tsx | 2 +- src/IconTabletMacOutlined.tsx | 2 +- src/IconTabletMacOutlinedFilled.tsx | 2 +- src/IconTabletMacRounded.tsx | 2 +- src/IconTabletMacRoundedFilled.tsx | 2 +- src/IconTabletMacSharp.tsx | 2 +- src/IconTabletMacSharpFilled.tsx | 2 +- src/IconTabletOutlined.tsx | 2 +- src/IconTabletOutlinedFilled.tsx | 2 +- src/IconTabletRounded.tsx | 2 +- src/IconTabletRoundedFilled.tsx | 2 +- src/IconTabletSharp.tsx | 2 +- src/IconTabletSharpFilled.tsx | 2 +- src/IconTabsOutlined.tsx | 2 +- src/IconTabsOutlinedFilled.tsx | 2 +- src/IconTabsRounded.tsx | 2 +- src/IconTabsRoundedFilled.tsx | 2 +- src/IconTabsSharp.tsx | 2 +- src/IconTabsSharpFilled.tsx | 2 +- src/IconTacticOutlined.tsx | 2 +- src/IconTacticOutlinedFilled.tsx | 2 +- src/IconTacticRounded.tsx | 2 +- src/IconTacticRoundedFilled.tsx | 2 +- src/IconTacticSharp.tsx | 2 +- src/IconTacticSharpFilled.tsx | 2 +- src/IconTagOutlined.tsx | 2 +- src/IconTagOutlinedFilled.tsx | 2 +- src/IconTagRounded.tsx | 2 +- src/IconTagRoundedFilled.tsx | 2 +- src/IconTagSharp.tsx | 2 +- src/IconTagSharpFilled.tsx | 2 +- src/IconTakeoutDiningOutlined.tsx | 2 +- src/IconTakeoutDiningOutlinedFilled.tsx | 2 +- src/IconTakeoutDiningRounded.tsx | 2 +- src/IconTakeoutDiningRoundedFilled.tsx | 2 +- src/IconTakeoutDiningSharp.tsx | 2 +- src/IconTakeoutDiningSharpFilled.tsx | 2 +- src/IconTamperDetectionOffOutlined.tsx | 2 +- src/IconTamperDetectionOffOutlinedFilled.tsx | 2 +- src/IconTamperDetectionOffRounded.tsx | 2 +- src/IconTamperDetectionOffRoundedFilled.tsx | 2 +- src/IconTamperDetectionOffSharp.tsx | 2 +- src/IconTamperDetectionOffSharpFilled.tsx | 2 +- src/IconTamperDetectionOnOutlined.tsx | 2 +- src/IconTamperDetectionOnOutlinedFilled.tsx | 2 +- src/IconTamperDetectionOnRounded.tsx | 2 +- src/IconTamperDetectionOnRoundedFilled.tsx | 2 +- src/IconTamperDetectionOnSharp.tsx | 2 +- src/IconTamperDetectionOnSharpFilled.tsx | 2 +- src/IconTapAndPlayOutlined.tsx | 2 +- src/IconTapAndPlayOutlinedFilled.tsx | 2 +- src/IconTapAndPlayRounded.tsx | 2 +- src/IconTapAndPlayRoundedFilled.tsx | 2 +- src/IconTapAndPlaySharp.tsx | 2 +- src/IconTapAndPlaySharpFilled.tsx | 2 +- src/IconTapasOutlined.tsx | 2 +- src/IconTapasOutlinedFilled.tsx | 2 +- src/IconTapasRounded.tsx | 2 +- src/IconTapasRoundedFilled.tsx | 2 +- src/IconTapasSharp.tsx | 2 +- src/IconTapasSharpFilled.tsx | 2 +- src/IconTargetOutlined.tsx | 2 +- src/IconTargetOutlinedFilled.tsx | 2 +- src/IconTargetRounded.tsx | 2 +- src/IconTargetRoundedFilled.tsx | 2 +- src/IconTargetSharp.tsx | 2 +- src/IconTargetSharpFilled.tsx | 2 +- src/IconTaskAltOutlined.tsx | 2 +- src/IconTaskAltOutlinedFilled.tsx | 2 +- src/IconTaskAltRounded.tsx | 2 +- src/IconTaskAltRoundedFilled.tsx | 2 +- src/IconTaskAltSharp.tsx | 2 +- src/IconTaskAltSharpFilled.tsx | 2 +- src/IconTaskOutlined.tsx | 2 +- src/IconTaskOutlinedFilled.tsx | 2 +- src/IconTaskRounded.tsx | 2 +- src/IconTaskRoundedFilled.tsx | 2 +- src/IconTaskSharp.tsx | 2 +- src/IconTaskSharpFilled.tsx | 2 +- src/IconTauntOutlined.tsx | 2 +- src/IconTauntOutlinedFilled.tsx | 2 +- src/IconTauntRounded.tsx | 2 +- src/IconTauntRoundedFilled.tsx | 2 +- src/IconTauntSharp.tsx | 2 +- src/IconTauntSharpFilled.tsx | 2 +- src/IconTaxiAlertOutlined.tsx | 2 +- src/IconTaxiAlertOutlinedFilled.tsx | 2 +- src/IconTaxiAlertRounded.tsx | 2 +- src/IconTaxiAlertRoundedFilled.tsx | 2 +- src/IconTaxiAlertSharp.tsx | 2 +- src/IconTaxiAlertSharpFilled.tsx | 2 +- src/IconTeamDashboardOutlined.tsx | 2 +- src/IconTeamDashboardOutlinedFilled.tsx | 2 +- src/IconTeamDashboardRounded.tsx | 2 +- src/IconTeamDashboardRoundedFilled.tsx | 2 +- src/IconTeamDashboardSharp.tsx | 2 +- src/IconTeamDashboardSharpFilled.tsx | 2 +- src/IconTempPreferencesEcoOutlined.tsx | 2 +- src/IconTempPreferencesEcoOutlinedFilled.tsx | 2 +- src/IconTempPreferencesEcoRounded.tsx | 2 +- src/IconTempPreferencesEcoRoundedFilled.tsx | 2 +- src/IconTempPreferencesEcoSharp.tsx | 2 +- src/IconTempPreferencesEcoSharpFilled.tsx | 2 +- src/IconTempleBuddhistOutlined.tsx | 2 +- src/IconTempleBuddhistOutlinedFilled.tsx | 2 +- src/IconTempleBuddhistRounded.tsx | 2 +- src/IconTempleBuddhistRoundedFilled.tsx | 2 +- src/IconTempleBuddhistSharp.tsx | 2 +- src/IconTempleBuddhistSharpFilled.tsx | 2 +- src/IconTempleHinduOutlined.tsx | 2 +- src/IconTempleHinduOutlinedFilled.tsx | 2 +- src/IconTempleHinduRounded.tsx | 2 +- src/IconTempleHinduRoundedFilled.tsx | 2 +- src/IconTempleHinduSharp.tsx | 2 +- src/IconTempleHinduSharpFilled.tsx | 2 +- src/IconTenancyOutlined.tsx | 2 +- src/IconTenancyOutlinedFilled.tsx | 2 +- src/IconTenancyRounded.tsx | 2 +- src/IconTenancyRoundedFilled.tsx | 2 +- src/IconTenancySharp.tsx | 2 +- src/IconTenancySharpFilled.tsx | 2 +- src/IconTerminalOutlined.tsx | 2 +- src/IconTerminalOutlinedFilled.tsx | 2 +- src/IconTerminalRounded.tsx | 2 +- src/IconTerminalRoundedFilled.tsx | 2 +- src/IconTerminalSharp.tsx | 2 +- src/IconTerminalSharpFilled.tsx | 2 +- src/IconTextAdOutlined.tsx | 2 +- src/IconTextAdOutlinedFilled.tsx | 2 +- src/IconTextAdRounded.tsx | 2 +- src/IconTextAdRoundedFilled.tsx | 2 +- src/IconTextAdSharp.tsx | 2 +- src/IconTextAdSharpFilled.tsx | 2 +- src/IconTextDecreaseOutlined.tsx | 2 +- src/IconTextDecreaseOutlinedFilled.tsx | 2 +- src/IconTextDecreaseRounded.tsx | 2 +- src/IconTextDecreaseRoundedFilled.tsx | 2 +- src/IconTextDecreaseSharp.tsx | 2 +- src/IconTextDecreaseSharpFilled.tsx | 2 +- src/IconTextFieldsAltOutlined.tsx | 2 +- src/IconTextFieldsAltOutlinedFilled.tsx | 2 +- src/IconTextFieldsAltRounded.tsx | 2 +- src/IconTextFieldsAltRoundedFilled.tsx | 2 +- src/IconTextFieldsAltSharp.tsx | 2 +- src/IconTextFieldsAltSharpFilled.tsx | 2 +- src/IconTextFieldsOutlined.tsx | 2 +- src/IconTextFieldsOutlinedFilled.tsx | 2 +- src/IconTextFieldsRounded.tsx | 2 +- src/IconTextFieldsRoundedFilled.tsx | 2 +- src/IconTextFieldsSharp.tsx | 2 +- src/IconTextFieldsSharpFilled.tsx | 2 +- src/IconTextFormatOutlined.tsx | 2 +- src/IconTextFormatOutlinedFilled.tsx | 2 +- src/IconTextFormatRounded.tsx | 2 +- src/IconTextFormatRoundedFilled.tsx | 2 +- src/IconTextFormatSharp.tsx | 2 +- src/IconTextFormatSharpFilled.tsx | 2 +- src/IconTextIncreaseOutlined.tsx | 2 +- src/IconTextIncreaseOutlinedFilled.tsx | 2 +- src/IconTextIncreaseRounded.tsx | 2 +- src/IconTextIncreaseRoundedFilled.tsx | 2 +- src/IconTextIncreaseSharp.tsx | 2 +- src/IconTextIncreaseSharpFilled.tsx | 2 +- src/IconTextRotateUpOutlined.tsx | 2 +- src/IconTextRotateUpOutlinedFilled.tsx | 2 +- src/IconTextRotateUpRounded.tsx | 2 +- src/IconTextRotateUpRoundedFilled.tsx | 2 +- src/IconTextRotateUpSharp.tsx | 2 +- src/IconTextRotateUpSharpFilled.tsx | 2 +- src/IconTextRotateVerticalOutlined.tsx | 2 +- src/IconTextRotateVerticalOutlinedFilled.tsx | 2 +- src/IconTextRotateVerticalRounded.tsx | 2 +- src/IconTextRotateVerticalRoundedFilled.tsx | 2 +- src/IconTextRotateVerticalSharp.tsx | 2 +- src/IconTextRotateVerticalSharpFilled.tsx | 2 +- src/IconTextRotationAngledownOutlined.tsx | 2 +- src/IconTextRotationAngledownOutlinedFilled.tsx | 2 +- src/IconTextRotationAngledownRounded.tsx | 2 +- src/IconTextRotationAngledownRoundedFilled.tsx | 2 +- src/IconTextRotationAngledownSharp.tsx | 2 +- src/IconTextRotationAngledownSharpFilled.tsx | 2 +- src/IconTextRotationAngleupOutlined.tsx | 2 +- src/IconTextRotationAngleupOutlinedFilled.tsx | 2 +- src/IconTextRotationAngleupRounded.tsx | 2 +- src/IconTextRotationAngleupRoundedFilled.tsx | 2 +- src/IconTextRotationAngleupSharp.tsx | 2 +- src/IconTextRotationAngleupSharpFilled.tsx | 2 +- src/IconTextRotationDownOutlined.tsx | 2 +- src/IconTextRotationDownOutlinedFilled.tsx | 2 +- src/IconTextRotationDownRounded.tsx | 2 +- src/IconTextRotationDownRoundedFilled.tsx | 2 +- src/IconTextRotationDownSharp.tsx | 2 +- src/IconTextRotationDownSharpFilled.tsx | 2 +- src/IconTextRotationNoneOutlined.tsx | 2 +- src/IconTextRotationNoneOutlinedFilled.tsx | 2 +- src/IconTextRotationNoneRounded.tsx | 2 +- src/IconTextRotationNoneRoundedFilled.tsx | 2 +- src/IconTextRotationNoneSharp.tsx | 2 +- src/IconTextRotationNoneSharpFilled.tsx | 2 +- src/IconTextSelectEndOutlined.tsx | 2 +- src/IconTextSelectEndOutlinedFilled.tsx | 2 +- src/IconTextSelectEndRounded.tsx | 2 +- src/IconTextSelectEndRoundedFilled.tsx | 2 +- src/IconTextSelectEndSharp.tsx | 2 +- src/IconTextSelectEndSharpFilled.tsx | 2 +- src/IconTextSelectJumpToBeginningOutlined.tsx | 2 +- src/IconTextSelectJumpToBeginningOutlinedFilled.tsx | 2 +- src/IconTextSelectJumpToBeginningRounded.tsx | 2 +- src/IconTextSelectJumpToBeginningRoundedFilled.tsx | 2 +- src/IconTextSelectJumpToBeginningSharp.tsx | 2 +- src/IconTextSelectJumpToBeginningSharpFilled.tsx | 2 +- src/IconTextSelectJumpToEndOutlined.tsx | 2 +- src/IconTextSelectJumpToEndOutlinedFilled.tsx | 2 +- src/IconTextSelectJumpToEndRounded.tsx | 2 +- src/IconTextSelectJumpToEndRoundedFilled.tsx | 2 +- src/IconTextSelectJumpToEndSharp.tsx | 2 +- src/IconTextSelectJumpToEndSharpFilled.tsx | 2 +- src/IconTextSelectMoveBackCharacterOutlined.tsx | 2 +- src/IconTextSelectMoveBackCharacterOutlinedFilled.tsx | 2 +- src/IconTextSelectMoveBackCharacterRounded.tsx | 2 +- src/IconTextSelectMoveBackCharacterRoundedFilled.tsx | 2 +- src/IconTextSelectMoveBackCharacterSharp.tsx | 2 +- src/IconTextSelectMoveBackCharacterSharpFilled.tsx | 2 +- src/IconTextSelectMoveBackWordOutlined.tsx | 2 +- src/IconTextSelectMoveBackWordOutlinedFilled.tsx | 2 +- src/IconTextSelectMoveBackWordRounded.tsx | 2 +- src/IconTextSelectMoveBackWordRoundedFilled.tsx | 2 +- src/IconTextSelectMoveBackWordSharp.tsx | 2 +- src/IconTextSelectMoveBackWordSharpFilled.tsx | 2 +- src/IconTextSelectMoveDownOutlined.tsx | 2 +- src/IconTextSelectMoveDownOutlinedFilled.tsx | 2 +- src/IconTextSelectMoveDownRounded.tsx | 2 +- src/IconTextSelectMoveDownRoundedFilled.tsx | 2 +- src/IconTextSelectMoveDownSharp.tsx | 2 +- src/IconTextSelectMoveDownSharpFilled.tsx | 2 +- src/IconTextSelectMoveForwardCharacterOutlined.tsx | 2 +- src/IconTextSelectMoveForwardCharacterOutlinedFilled.tsx | 2 +- src/IconTextSelectMoveForwardCharacterRounded.tsx | 2 +- src/IconTextSelectMoveForwardCharacterRoundedFilled.tsx | 2 +- src/IconTextSelectMoveForwardCharacterSharp.tsx | 2 +- src/IconTextSelectMoveForwardCharacterSharpFilled.tsx | 2 +- src/IconTextSelectMoveForwardWordOutlined.tsx | 2 +- src/IconTextSelectMoveForwardWordOutlinedFilled.tsx | 2 +- src/IconTextSelectMoveForwardWordRounded.tsx | 2 +- src/IconTextSelectMoveForwardWordRoundedFilled.tsx | 2 +- src/IconTextSelectMoveForwardWordSharp.tsx | 2 +- src/IconTextSelectMoveForwardWordSharpFilled.tsx | 2 +- src/IconTextSelectMoveUpOutlined.tsx | 2 +- src/IconTextSelectMoveUpOutlinedFilled.tsx | 2 +- src/IconTextSelectMoveUpRounded.tsx | 2 +- src/IconTextSelectMoveUpRoundedFilled.tsx | 2 +- src/IconTextSelectMoveUpSharp.tsx | 2 +- src/IconTextSelectMoveUpSharpFilled.tsx | 2 +- src/IconTextSelectStartOutlined.tsx | 2 +- src/IconTextSelectStartOutlinedFilled.tsx | 2 +- src/IconTextSelectStartRounded.tsx | 2 +- src/IconTextSelectStartRoundedFilled.tsx | 2 +- src/IconTextSelectStartSharp.tsx | 2 +- src/IconTextSelectStartSharpFilled.tsx | 2 +- src/IconTextSnippetOutlined.tsx | 2 +- src/IconTextSnippetOutlinedFilled.tsx | 2 +- src/IconTextSnippetRounded.tsx | 2 +- src/IconTextSnippetRoundedFilled.tsx | 2 +- src/IconTextSnippetSharp.tsx | 2 +- src/IconTextSnippetSharpFilled.tsx | 2 +- src/IconTextToSpeechOutlined.tsx | 2 +- src/IconTextToSpeechOutlinedFilled.tsx | 2 +- src/IconTextToSpeechRounded.tsx | 2 +- src/IconTextToSpeechRoundedFilled.tsx | 2 +- src/IconTextToSpeechSharp.tsx | 2 +- src/IconTextToSpeechSharpFilled.tsx | 2 +- src/IconTextUpOutlined.tsx | 2 +- src/IconTextUpOutlinedFilled.tsx | 2 +- src/IconTextUpRounded.tsx | 2 +- src/IconTextUpRoundedFilled.tsx | 2 +- src/IconTextUpSharp.tsx | 2 +- src/IconTextUpSharpFilled.tsx | 2 +- src/IconTextureAddOutlined.tsx | 2 +- src/IconTextureAddOutlinedFilled.tsx | 2 +- src/IconTextureAddRounded.tsx | 2 +- src/IconTextureAddRoundedFilled.tsx | 2 +- src/IconTextureAddSharp.tsx | 2 +- src/IconTextureAddSharpFilled.tsx | 2 +- src/IconTextureMinusOutlined.tsx | 2 +- src/IconTextureMinusOutlinedFilled.tsx | 2 +- src/IconTextureMinusRounded.tsx | 2 +- src/IconTextureMinusRoundedFilled.tsx | 2 +- src/IconTextureMinusSharp.tsx | 2 +- src/IconTextureMinusSharpFilled.tsx | 2 +- src/IconTextureOutlined.tsx | 2 +- src/IconTextureOutlinedFilled.tsx | 2 +- src/IconTextureRounded.tsx | 2 +- src/IconTextureRoundedFilled.tsx | 2 +- src/IconTextureSharp.tsx | 2 +- src/IconTextureSharpFilled.tsx | 2 +- src/IconTheaterComedyOutlined.tsx | 2 +- src/IconTheaterComedyOutlinedFilled.tsx | 2 +- src/IconTheaterComedyRounded.tsx | 2 +- src/IconTheaterComedyRoundedFilled.tsx | 2 +- src/IconTheaterComedySharp.tsx | 2 +- src/IconTheaterComedySharpFilled.tsx | 2 +- src/IconTheatersOutlined.tsx | 2 +- src/IconTheatersOutlinedFilled.tsx | 2 +- src/IconTheatersRounded.tsx | 2 +- src/IconTheatersRoundedFilled.tsx | 2 +- src/IconTheatersSharp.tsx | 2 +- src/IconTheatersSharpFilled.tsx | 2 +- src/IconThermometerAddOutlined.tsx | 2 +- src/IconThermometerAddOutlinedFilled.tsx | 2 +- src/IconThermometerAddRounded.tsx | 2 +- src/IconThermometerAddRoundedFilled.tsx | 2 +- src/IconThermometerAddSharp.tsx | 2 +- src/IconThermometerAddSharpFilled.tsx | 2 +- src/IconThermometerGainOutlined.tsx | 2 +- src/IconThermometerGainOutlinedFilled.tsx | 2 +- src/IconThermometerGainRounded.tsx | 2 +- src/IconThermometerGainRoundedFilled.tsx | 2 +- src/IconThermometerGainSharp.tsx | 2 +- src/IconThermometerGainSharpFilled.tsx | 2 +- src/IconThermometerLossOutlined.tsx | 2 +- src/IconThermometerLossOutlinedFilled.tsx | 2 +- src/IconThermometerLossRounded.tsx | 2 +- src/IconThermometerLossRoundedFilled.tsx | 2 +- src/IconThermometerLossSharp.tsx | 2 +- src/IconThermometerLossSharpFilled.tsx | 2 +- src/IconThermometerMinusOutlined.tsx | 2 +- src/IconThermometerMinusOutlinedFilled.tsx | 2 +- src/IconThermometerMinusRounded.tsx | 2 +- src/IconThermometerMinusRoundedFilled.tsx | 2 +- src/IconThermometerMinusSharp.tsx | 2 +- src/IconThermometerMinusSharpFilled.tsx | 2 +- src/IconThermometerOutlined.tsx | 2 +- src/IconThermometerOutlinedFilled.tsx | 2 +- src/IconThermometerRounded.tsx | 2 +- src/IconThermometerRoundedFilled.tsx | 2 +- src/IconThermometerSharp.tsx | 2 +- src/IconThermometerSharpFilled.tsx | 2 +- src/IconThermostatAutoOutlined.tsx | 2 +- src/IconThermostatAutoOutlinedFilled.tsx | 2 +- src/IconThermostatAutoRounded.tsx | 2 +- src/IconThermostatAutoRoundedFilled.tsx | 2 +- src/IconThermostatAutoSharp.tsx | 2 +- src/IconThermostatAutoSharpFilled.tsx | 2 +- src/IconThermostatCarbonOutlined.tsx | 2 +- src/IconThermostatCarbonOutlinedFilled.tsx | 2 +- src/IconThermostatCarbonRounded.tsx | 2 +- src/IconThermostatCarbonRoundedFilled.tsx | 2 +- src/IconThermostatCarbonSharp.tsx | 2 +- src/IconThermostatCarbonSharpFilled.tsx | 2 +- src/IconThermostatOutlined.tsx | 2 +- src/IconThermostatOutlinedFilled.tsx | 2 +- src/IconThermostatRounded.tsx | 2 +- src/IconThermostatRoundedFilled.tsx | 2 +- src/IconThermostatSharp.tsx | 2 +- src/IconThermostatSharpFilled.tsx | 2 +- src/IconThingsToDoOutlined.tsx | 2 +- src/IconThingsToDoOutlinedFilled.tsx | 2 +- src/IconThingsToDoRounded.tsx | 2 +- src/IconThingsToDoRoundedFilled.tsx | 2 +- src/IconThingsToDoSharp.tsx | 2 +- src/IconThingsToDoSharpFilled.tsx | 2 +- src/IconThreadUnreadOutlined.tsx | 2 +- src/IconThreadUnreadOutlinedFilled.tsx | 2 +- src/IconThreadUnreadRounded.tsx | 2 +- src/IconThreadUnreadRoundedFilled.tsx | 2 +- src/IconThreadUnreadSharp.tsx | 2 +- src/IconThreadUnreadSharpFilled.tsx | 2 +- src/IconThumbDownOutlined.tsx | 2 +- src/IconThumbDownOutlinedFilled.tsx | 2 +- src/IconThumbDownRounded.tsx | 2 +- src/IconThumbDownRoundedFilled.tsx | 2 +- src/IconThumbDownSharp.tsx | 2 +- src/IconThumbDownSharpFilled.tsx | 2 +- src/IconThumbUpOutlined.tsx | 2 +- src/IconThumbUpOutlinedFilled.tsx | 2 +- src/IconThumbUpRounded.tsx | 2 +- src/IconThumbUpRoundedFilled.tsx | 2 +- src/IconThumbUpSharp.tsx | 2 +- src/IconThumbUpSharpFilled.tsx | 2 +- src/IconThumbnailBarOutlined.tsx | 2 +- src/IconThumbnailBarOutlinedFilled.tsx | 2 +- src/IconThumbnailBarRounded.tsx | 2 +- src/IconThumbnailBarRoundedFilled.tsx | 2 +- src/IconThumbnailBarSharp.tsx | 2 +- src/IconThumbnailBarSharpFilled.tsx | 2 +- src/IconThumbsUpDownOutlined.tsx | 2 +- src/IconThumbsUpDownOutlinedFilled.tsx | 2 +- src/IconThumbsUpDownRounded.tsx | 2 +- src/IconThumbsUpDownRoundedFilled.tsx | 2 +- src/IconThumbsUpDownSharp.tsx | 2 +- src/IconThumbsUpDownSharpFilled.tsx | 2 +- src/IconThunderstormOutlined.tsx | 2 +- src/IconThunderstormOutlinedFilled.tsx | 2 +- src/IconThunderstormRounded.tsx | 2 +- src/IconThunderstormRoundedFilled.tsx | 2 +- src/IconThunderstormSharp.tsx | 2 +- src/IconThunderstormSharpFilled.tsx | 2 +- src/IconTibiaAltOutlined.tsx | 2 +- src/IconTibiaAltOutlinedFilled.tsx | 2 +- src/IconTibiaAltRounded.tsx | 2 +- src/IconTibiaAltRoundedFilled.tsx | 2 +- src/IconTibiaAltSharp.tsx | 2 +- src/IconTibiaAltSharpFilled.tsx | 2 +- src/IconTibiaOutlined.tsx | 2 +- src/IconTibiaOutlinedFilled.tsx | 2 +- src/IconTibiaRounded.tsx | 2 +- src/IconTibiaRoundedFilled.tsx | 2 +- src/IconTibiaSharp.tsx | 2 +- src/IconTibiaSharpFilled.tsx | 2 +- src/IconTimeAutoOutlined.tsx | 2 +- src/IconTimeAutoOutlinedFilled.tsx | 2 +- src/IconTimeAutoRounded.tsx | 2 +- src/IconTimeAutoRoundedFilled.tsx | 2 +- src/IconTimeAutoSharp.tsx | 2 +- src/IconTimeAutoSharpFilled.tsx | 2 +- src/IconTimelapseOutlined.tsx | 2 +- src/IconTimelapseOutlinedFilled.tsx | 2 +- src/IconTimelapseRounded.tsx | 2 +- src/IconTimelapseRoundedFilled.tsx | 2 +- src/IconTimelapseSharp.tsx | 2 +- src/IconTimelapseSharpFilled.tsx | 2 +- src/IconTimelineOutlined.tsx | 2 +- src/IconTimelineOutlinedFilled.tsx | 2 +- src/IconTimelineRounded.tsx | 2 +- src/IconTimelineRoundedFilled.tsx | 2 +- src/IconTimelineSharp.tsx | 2 +- src/IconTimelineSharpFilled.tsx | 2 +- src/IconTimer10Alt1Outlined.tsx | 2 +- src/IconTimer10Alt1OutlinedFilled.tsx | 2 +- src/IconTimer10Alt1Rounded.tsx | 2 +- src/IconTimer10Alt1RoundedFilled.tsx | 2 +- src/IconTimer10Alt1Sharp.tsx | 2 +- src/IconTimer10Alt1SharpFilled.tsx | 2 +- src/IconTimer10Outlined.tsx | 2 +- src/IconTimer10OutlinedFilled.tsx | 2 +- src/IconTimer10Rounded.tsx | 2 +- src/IconTimer10RoundedFilled.tsx | 2 +- src/IconTimer10SelectOutlined.tsx | 2 +- src/IconTimer10SelectOutlinedFilled.tsx | 2 +- src/IconTimer10SelectRounded.tsx | 2 +- src/IconTimer10SelectRoundedFilled.tsx | 2 +- src/IconTimer10SelectSharp.tsx | 2 +- src/IconTimer10SelectSharpFilled.tsx | 2 +- src/IconTimer10Sharp.tsx | 2 +- src/IconTimer10SharpFilled.tsx | 2 +- src/IconTimer3Alt1Outlined.tsx | 2 +- src/IconTimer3Alt1OutlinedFilled.tsx | 2 +- src/IconTimer3Alt1Rounded.tsx | 2 +- src/IconTimer3Alt1RoundedFilled.tsx | 2 +- src/IconTimer3Alt1Sharp.tsx | 2 +- src/IconTimer3Alt1SharpFilled.tsx | 2 +- src/IconTimer3Outlined.tsx | 2 +- src/IconTimer3OutlinedFilled.tsx | 2 +- src/IconTimer3Rounded.tsx | 2 +- src/IconTimer3RoundedFilled.tsx | 2 +- src/IconTimer3SelectOutlined.tsx | 2 +- src/IconTimer3SelectOutlinedFilled.tsx | 2 +- src/IconTimer3SelectRounded.tsx | 2 +- src/IconTimer3SelectRoundedFilled.tsx | 2 +- src/IconTimer3SelectSharp.tsx | 2 +- src/IconTimer3SelectSharpFilled.tsx | 2 +- src/IconTimer3Sharp.tsx | 2 +- src/IconTimer3SharpFilled.tsx | 2 +- src/IconTimer5Outlined.tsx | 2 +- src/IconTimer5OutlinedFilled.tsx | 2 +- src/IconTimer5Rounded.tsx | 2 +- src/IconTimer5RoundedFilled.tsx | 2 +- src/IconTimer5Sharp.tsx | 2 +- src/IconTimer5SharpFilled.tsx | 2 +- src/IconTimer5ShutterOutlined.tsx | 2 +- src/IconTimer5ShutterOutlinedFilled.tsx | 2 +- src/IconTimer5ShutterRounded.tsx | 2 +- src/IconTimer5ShutterRoundedFilled.tsx | 2 +- src/IconTimer5ShutterSharp.tsx | 2 +- src/IconTimer5ShutterSharpFilled.tsx | 2 +- src/IconTimerOffOutlined.tsx | 2 +- src/IconTimerOffOutlinedFilled.tsx | 2 +- src/IconTimerOffRounded.tsx | 2 +- src/IconTimerOffRoundedFilled.tsx | 2 +- src/IconTimerOffSharp.tsx | 2 +- src/IconTimerOffSharpFilled.tsx | 2 +- src/IconTimerOutlined.tsx | 2 +- src/IconTimerOutlinedFilled.tsx | 2 +- src/IconTimerPauseOutlined.tsx | 2 +- src/IconTimerPauseOutlinedFilled.tsx | 2 +- src/IconTimerPauseRounded.tsx | 2 +- src/IconTimerPauseRoundedFilled.tsx | 2 +- src/IconTimerPauseSharp.tsx | 2 +- src/IconTimerPauseSharpFilled.tsx | 2 +- src/IconTimerPlayOutlined.tsx | 2 +- src/IconTimerPlayOutlinedFilled.tsx | 2 +- src/IconTimerPlayRounded.tsx | 2 +- src/IconTimerPlayRoundedFilled.tsx | 2 +- src/IconTimerPlaySharp.tsx | 2 +- src/IconTimerPlaySharpFilled.tsx | 2 +- src/IconTimerRounded.tsx | 2 +- src/IconTimerRoundedFilled.tsx | 2 +- src/IconTimerSharp.tsx | 2 +- src/IconTimerSharpFilled.tsx | 2 +- src/IconTireRepairOutlined.tsx | 2 +- src/IconTireRepairOutlinedFilled.tsx | 2 +- src/IconTireRepairRounded.tsx | 2 +- src/IconTireRepairRoundedFilled.tsx | 2 +- src/IconTireRepairSharp.tsx | 2 +- src/IconTireRepairSharpFilled.tsx | 2 +- src/IconTitleOutlined.tsx | 2 +- src/IconTitleOutlinedFilled.tsx | 2 +- src/IconTitleRounded.tsx | 2 +- src/IconTitleRoundedFilled.tsx | 2 +- src/IconTitleSharp.tsx | 2 +- src/IconTitleSharpFilled.tsx | 2 +- src/IconTitlecaseOutlined.tsx | 2 +- src/IconTitlecaseOutlinedFilled.tsx | 2 +- src/IconTitlecaseRounded.tsx | 2 +- src/IconTitlecaseRoundedFilled.tsx | 2 +- src/IconTitlecaseSharp.tsx | 2 +- src/IconTitlecaseSharpFilled.tsx | 2 +- src/IconToastOutlined.tsx | 2 +- src/IconToastOutlinedFilled.tsx | 2 +- src/IconToastRounded.tsx | 2 +- src/IconToastRoundedFilled.tsx | 2 +- src/IconToastSharp.tsx | 2 +- src/IconToastSharpFilled.tsx | 2 +- src/IconTocOutlined.tsx | 2 +- src/IconTocOutlinedFilled.tsx | 2 +- src/IconTocRounded.tsx | 2 +- src/IconTocRoundedFilled.tsx | 2 +- src/IconTocSharp.tsx | 2 +- src/IconTocSharpFilled.tsx | 2 +- src/IconTodayOutlined.tsx | 2 +- src/IconTodayOutlinedFilled.tsx | 2 +- src/IconTodayRounded.tsx | 2 +- src/IconTodayRoundedFilled.tsx | 2 +- src/IconTodaySharp.tsx | 2 +- src/IconTodaySharpFilled.tsx | 2 +- src/IconToggleOffOutlined.tsx | 2 +- src/IconToggleOffOutlinedFilled.tsx | 2 +- src/IconToggleOffRounded.tsx | 2 +- src/IconToggleOffRoundedFilled.tsx | 2 +- src/IconToggleOffSharp.tsx | 2 +- src/IconToggleOffSharpFilled.tsx | 2 +- src/IconToggleOnOutlined.tsx | 2 +- src/IconToggleOnOutlinedFilled.tsx | 2 +- src/IconToggleOnRounded.tsx | 2 +- src/IconToggleOnRoundedFilled.tsx | 2 +- src/IconToggleOnSharp.tsx | 2 +- src/IconToggleOnSharpFilled.tsx | 2 +- src/IconTokenOutlined.tsx | 2 +- src/IconTokenOutlinedFilled.tsx | 2 +- src/IconTokenRounded.tsx | 2 +- src/IconTokenRoundedFilled.tsx | 2 +- src/IconTokenSharp.tsx | 2 +- src/IconTokenSharpFilled.tsx | 2 +- src/IconTollOutlined.tsx | 2 +- src/IconTollOutlinedFilled.tsx | 2 +- src/IconTollRounded.tsx | 2 +- src/IconTollRoundedFilled.tsx | 2 +- src/IconTollSharp.tsx | 2 +- src/IconTollSharpFilled.tsx | 2 +- src/IconTonalityOutlined.tsx | 2 +- src/IconTonalityOutlinedFilled.tsx | 2 +- src/IconTonalityRounded.tsx | 2 +- src/IconTonalityRoundedFilled.tsx | 2 +- src/IconTonalitySharp.tsx | 2 +- src/IconTonalitySharpFilled.tsx | 2 +- src/IconToolbarOutlined.tsx | 2 +- src/IconToolbarOutlinedFilled.tsx | 2 +- src/IconToolbarRounded.tsx | 2 +- src/IconToolbarRoundedFilled.tsx | 2 +- src/IconToolbarSharp.tsx | 2 +- src/IconToolbarSharpFilled.tsx | 2 +- src/IconToolsFlatHeadOutlined.tsx | 2 +- src/IconToolsFlatHeadOutlinedFilled.tsx | 2 +- src/IconToolsFlatHeadRounded.tsx | 2 +- src/IconToolsFlatHeadRoundedFilled.tsx | 2 +- src/IconToolsFlatHeadSharp.tsx | 2 +- src/IconToolsFlatHeadSharpFilled.tsx | 2 +- src/IconToolsInstallationKitOutlined.tsx | 2 +- src/IconToolsInstallationKitOutlinedFilled.tsx | 2 +- src/IconToolsInstallationKitRounded.tsx | 2 +- src/IconToolsInstallationKitRoundedFilled.tsx | 2 +- src/IconToolsInstallationKitSharp.tsx | 2 +- src/IconToolsInstallationKitSharpFilled.tsx | 2 +- src/IconToolsLadderOutlined.tsx | 2 +- src/IconToolsLadderOutlinedFilled.tsx | 2 +- src/IconToolsLadderRounded.tsx | 2 +- src/IconToolsLadderRoundedFilled.tsx | 2 +- src/IconToolsLadderSharp.tsx | 2 +- src/IconToolsLadderSharpFilled.tsx | 2 +- src/IconToolsLevelOutlined.tsx | 2 +- src/IconToolsLevelOutlinedFilled.tsx | 2 +- src/IconToolsLevelRounded.tsx | 2 +- src/IconToolsLevelRoundedFilled.tsx | 2 +- src/IconToolsLevelSharp.tsx | 2 +- src/IconToolsLevelSharpFilled.tsx | 2 +- src/IconToolsPhillipsOutlined.tsx | 2 +- src/IconToolsPhillipsOutlinedFilled.tsx | 2 +- src/IconToolsPhillipsRounded.tsx | 2 +- src/IconToolsPhillipsRoundedFilled.tsx | 2 +- src/IconToolsPhillipsSharp.tsx | 2 +- src/IconToolsPhillipsSharpFilled.tsx | 2 +- src/IconToolsPliersWireStripperOutlined.tsx | 2 +- src/IconToolsPliersWireStripperOutlinedFilled.tsx | 2 +- src/IconToolsPliersWireStripperRounded.tsx | 2 +- src/IconToolsPliersWireStripperRoundedFilled.tsx | 2 +- src/IconToolsPliersWireStripperSharp.tsx | 2 +- src/IconToolsPliersWireStripperSharpFilled.tsx | 2 +- src/IconToolsPowerDrillOutlined.tsx | 2 +- src/IconToolsPowerDrillOutlinedFilled.tsx | 2 +- src/IconToolsPowerDrillRounded.tsx | 2 +- src/IconToolsPowerDrillRoundedFilled.tsx | 2 +- src/IconToolsPowerDrillSharp.tsx | 2 +- src/IconToolsPowerDrillSharpFilled.tsx | 2 +- src/IconTooltipOutlined.tsx | 2 +- src/IconTooltipOutlinedFilled.tsx | 2 +- src/IconTooltipRounded.tsx | 2 +- src/IconTooltipRoundedFilled.tsx | 2 +- src/IconTooltipSharp.tsx | 2 +- src/IconTooltipSharpFilled.tsx | 2 +- src/IconTopPanelCloseOutlined.tsx | 2 +- src/IconTopPanelCloseOutlinedFilled.tsx | 2 +- src/IconTopPanelCloseRounded.tsx | 2 +- src/IconTopPanelCloseRoundedFilled.tsx | 2 +- src/IconTopPanelCloseSharp.tsx | 2 +- src/IconTopPanelCloseSharpFilled.tsx | 2 +- src/IconTopPanelOpenOutlined.tsx | 2 +- src/IconTopPanelOpenOutlinedFilled.tsx | 2 +- src/IconTopPanelOpenRounded.tsx | 2 +- src/IconTopPanelOpenRoundedFilled.tsx | 2 +- src/IconTopPanelOpenSharp.tsx | 2 +- src/IconTopPanelOpenSharpFilled.tsx | 2 +- src/IconTopicOutlined.tsx | 2 +- src/IconTopicOutlinedFilled.tsx | 2 +- src/IconTopicRounded.tsx | 2 +- src/IconTopicRoundedFilled.tsx | 2 +- src/IconTopicSharp.tsx | 2 +- src/IconTopicSharpFilled.tsx | 2 +- src/IconTornadoOutlined.tsx | 2 +- src/IconTornadoOutlinedFilled.tsx | 2 +- src/IconTornadoRounded.tsx | 2 +- src/IconTornadoRoundedFilled.tsx | 2 +- src/IconTornadoSharp.tsx | 2 +- src/IconTornadoSharpFilled.tsx | 2 +- src/IconTotalDissolvedSolidsOutlined.tsx | 2 +- src/IconTotalDissolvedSolidsOutlinedFilled.tsx | 2 +- src/IconTotalDissolvedSolidsRounded.tsx | 2 +- src/IconTotalDissolvedSolidsRoundedFilled.tsx | 2 +- src/IconTotalDissolvedSolidsSharp.tsx | 2 +- src/IconTotalDissolvedSolidsSharpFilled.tsx | 2 +- src/IconTouchAppOutlined.tsx | 2 +- src/IconTouchAppOutlinedFilled.tsx | 2 +- src/IconTouchAppRounded.tsx | 2 +- src/IconTouchAppRoundedFilled.tsx | 2 +- src/IconTouchAppSharp.tsx | 2 +- src/IconTouchAppSharpFilled.tsx | 2 +- src/IconTouchpadMouseOffOutlined.tsx | 2 +- src/IconTouchpadMouseOffOutlinedFilled.tsx | 2 +- src/IconTouchpadMouseOffRounded.tsx | 2 +- src/IconTouchpadMouseOffRoundedFilled.tsx | 2 +- src/IconTouchpadMouseOffSharp.tsx | 2 +- src/IconTouchpadMouseOffSharpFilled.tsx | 2 +- src/IconTouchpadMouseOutlined.tsx | 2 +- src/IconTouchpadMouseOutlinedFilled.tsx | 2 +- src/IconTouchpadMouseRounded.tsx | 2 +- src/IconTouchpadMouseRoundedFilled.tsx | 2 +- src/IconTouchpadMouseSharp.tsx | 2 +- src/IconTouchpadMouseSharpFilled.tsx | 2 +- src/IconTourOutlined.tsx | 2 +- src/IconTourOutlinedFilled.tsx | 2 +- src/IconTourRounded.tsx | 2 +- src/IconTourRoundedFilled.tsx | 2 +- src/IconTourSharp.tsx | 2 +- src/IconTourSharpFilled.tsx | 2 +- src/IconToysAndGamesOutlined.tsx | 2 +- src/IconToysAndGamesOutlinedFilled.tsx | 2 +- src/IconToysAndGamesRounded.tsx | 2 +- src/IconToysAndGamesRoundedFilled.tsx | 2 +- src/IconToysAndGamesSharp.tsx | 2 +- src/IconToysAndGamesSharpFilled.tsx | 2 +- src/IconToysFanOutlined.tsx | 2 +- src/IconToysFanOutlinedFilled.tsx | 2 +- src/IconToysFanRounded.tsx | 2 +- src/IconToysFanRoundedFilled.tsx | 2 +- src/IconToysFanSharp.tsx | 2 +- src/IconToysFanSharpFilled.tsx | 2 +- src/IconToysOutlined.tsx | 2 +- src/IconToysOutlinedFilled.tsx | 2 +- src/IconToysRounded.tsx | 2 +- src/IconToysRoundedFilled.tsx | 2 +- src/IconToysSharp.tsx | 2 +- src/IconToysSharpFilled.tsx | 2 +- src/IconTrackChangesOutlined.tsx | 2 +- src/IconTrackChangesOutlinedFilled.tsx | 2 +- src/IconTrackChangesRounded.tsx | 2 +- src/IconTrackChangesRoundedFilled.tsx | 2 +- src/IconTrackChangesSharp.tsx | 2 +- src/IconTrackChangesSharpFilled.tsx | 2 +- src/IconTrackpadInput2Outlined.tsx | 2 +- src/IconTrackpadInput2OutlinedFilled.tsx | 2 +- src/IconTrackpadInput2Rounded.tsx | 2 +- src/IconTrackpadInput2RoundedFilled.tsx | 2 +- src/IconTrackpadInput2Sharp.tsx | 2 +- src/IconTrackpadInput2SharpFilled.tsx | 2 +- src/IconTrackpadInput3Outlined.tsx | 2 +- src/IconTrackpadInput3OutlinedFilled.tsx | 2 +- src/IconTrackpadInput3Rounded.tsx | 2 +- src/IconTrackpadInput3RoundedFilled.tsx | 2 +- src/IconTrackpadInput3Sharp.tsx | 2 +- src/IconTrackpadInput3SharpFilled.tsx | 2 +- src/IconTrackpadInputOutlined.tsx | 2 +- src/IconTrackpadInputOutlinedFilled.tsx | 2 +- src/IconTrackpadInputRounded.tsx | 2 +- src/IconTrackpadInputRoundedFilled.tsx | 2 +- src/IconTrackpadInputSharp.tsx | 2 +- src/IconTrackpadInputSharpFilled.tsx | 2 +- src/IconTrafficJamOutlined.tsx | 2 +- src/IconTrafficJamOutlinedFilled.tsx | 2 +- src/IconTrafficJamRounded.tsx | 2 +- src/IconTrafficJamRoundedFilled.tsx | 2 +- src/IconTrafficJamSharp.tsx | 2 +- src/IconTrafficJamSharpFilled.tsx | 2 +- src/IconTrafficOutlined.tsx | 2 +- src/IconTrafficOutlinedFilled.tsx | 2 +- src/IconTrafficRounded.tsx | 2 +- src/IconTrafficRoundedFilled.tsx | 2 +- src/IconTrafficSharp.tsx | 2 +- src/IconTrafficSharpFilled.tsx | 2 +- src/IconTrailLengthMediumOutlined.tsx | 2 +- src/IconTrailLengthMediumOutlinedFilled.tsx | 2 +- src/IconTrailLengthMediumRounded.tsx | 2 +- src/IconTrailLengthMediumRoundedFilled.tsx | 2 +- src/IconTrailLengthMediumSharp.tsx | 2 +- src/IconTrailLengthMediumSharpFilled.tsx | 2 +- src/IconTrailLengthOutlined.tsx | 2 +- src/IconTrailLengthOutlinedFilled.tsx | 2 +- src/IconTrailLengthRounded.tsx | 2 +- src/IconTrailLengthRoundedFilled.tsx | 2 +- src/IconTrailLengthSharp.tsx | 2 +- src/IconTrailLengthSharpFilled.tsx | 2 +- src/IconTrailLengthShortOutlined.tsx | 2 +- src/IconTrailLengthShortOutlinedFilled.tsx | 2 +- src/IconTrailLengthShortRounded.tsx | 2 +- src/IconTrailLengthShortRoundedFilled.tsx | 2 +- src/IconTrailLengthShortSharp.tsx | 2 +- src/IconTrailLengthShortSharpFilled.tsx | 2 +- src/IconTrainOutlined.tsx | 2 +- src/IconTrainOutlinedFilled.tsx | 2 +- src/IconTrainRounded.tsx | 2 +- src/IconTrainRoundedFilled.tsx | 2 +- src/IconTrainSharp.tsx | 2 +- src/IconTrainSharpFilled.tsx | 2 +- src/IconTramOutlined.tsx | 2 +- src/IconTramOutlinedFilled.tsx | 2 +- src/IconTramRounded.tsx | 2 +- src/IconTramRoundedFilled.tsx | 2 +- src/IconTramSharp.tsx | 2 +- src/IconTramSharpFilled.tsx | 2 +- src/IconTranscribeOutlined.tsx | 2 +- src/IconTranscribeOutlinedFilled.tsx | 2 +- src/IconTranscribeRounded.tsx | 2 +- src/IconTranscribeRoundedFilled.tsx | 2 +- src/IconTranscribeSharp.tsx | 2 +- src/IconTranscribeSharpFilled.tsx | 2 +- src/IconTransferWithinAStationOutlined.tsx | 2 +- src/IconTransferWithinAStationOutlinedFilled.tsx | 2 +- src/IconTransferWithinAStationRounded.tsx | 2 +- src/IconTransferWithinAStationRoundedFilled.tsx | 2 +- src/IconTransferWithinAStationSharp.tsx | 2 +- src/IconTransferWithinAStationSharpFilled.tsx | 2 +- src/IconTransformOutlined.tsx | 2 +- src/IconTransformOutlinedFilled.tsx | 2 +- src/IconTransformRounded.tsx | 2 +- src/IconTransformRoundedFilled.tsx | 2 +- src/IconTransformSharp.tsx | 2 +- src/IconTransformSharpFilled.tsx | 2 +- src/IconTransgenderOutlined.tsx | 2 +- src/IconTransgenderOutlinedFilled.tsx | 2 +- src/IconTransgenderRounded.tsx | 2 +- src/IconTransgenderRoundedFilled.tsx | 2 +- src/IconTransgenderSharp.tsx | 2 +- src/IconTransgenderSharpFilled.tsx | 2 +- src/IconTransitEnterexitOutlined.tsx | 2 +- src/IconTransitEnterexitOutlinedFilled.tsx | 2 +- src/IconTransitEnterexitRounded.tsx | 2 +- src/IconTransitEnterexitRoundedFilled.tsx | 2 +- src/IconTransitEnterexitSharp.tsx | 2 +- src/IconTransitEnterexitSharpFilled.tsx | 2 +- src/IconTransitTicketOutlined.tsx | 2 +- src/IconTransitTicketOutlinedFilled.tsx | 2 +- src/IconTransitTicketRounded.tsx | 2 +- src/IconTransitTicketRoundedFilled.tsx | 2 +- src/IconTransitTicketSharp.tsx | 2 +- src/IconTransitTicketSharpFilled.tsx | 2 +- src/IconTransitionChopOutlined.tsx | 2 +- src/IconTransitionChopOutlinedFilled.tsx | 2 +- src/IconTransitionChopRounded.tsx | 2 +- src/IconTransitionChopRoundedFilled.tsx | 2 +- src/IconTransitionChopSharp.tsx | 2 +- src/IconTransitionChopSharpFilled.tsx | 2 +- src/IconTransitionDissolveOutlined.tsx | 2 +- src/IconTransitionDissolveOutlinedFilled.tsx | 2 +- src/IconTransitionDissolveRounded.tsx | 2 +- src/IconTransitionDissolveRoundedFilled.tsx | 2 +- src/IconTransitionDissolveSharp.tsx | 2 +- src/IconTransitionDissolveSharpFilled.tsx | 2 +- src/IconTransitionFadeOutlined.tsx | 2 +- src/IconTransitionFadeOutlinedFilled.tsx | 2 +- src/IconTransitionFadeRounded.tsx | 2 +- src/IconTransitionFadeRoundedFilled.tsx | 2 +- src/IconTransitionFadeSharp.tsx | 2 +- src/IconTransitionFadeSharpFilled.tsx | 2 +- src/IconTransitionPushOutlined.tsx | 2 +- src/IconTransitionPushOutlinedFilled.tsx | 2 +- src/IconTransitionPushRounded.tsx | 2 +- src/IconTransitionPushRoundedFilled.tsx | 2 +- src/IconTransitionPushSharp.tsx | 2 +- src/IconTransitionPushSharpFilled.tsx | 2 +- src/IconTransitionSlideOutlined.tsx | 2 +- src/IconTransitionSlideOutlinedFilled.tsx | 2 +- src/IconTransitionSlideRounded.tsx | 2 +- src/IconTransitionSlideRoundedFilled.tsx | 2 +- src/IconTransitionSlideSharp.tsx | 2 +- src/IconTransitionSlideSharpFilled.tsx | 2 +- src/IconTranslateOutlined.tsx | 2 +- src/IconTranslateOutlinedFilled.tsx | 2 +- src/IconTranslateRounded.tsx | 2 +- src/IconTranslateRoundedFilled.tsx | 2 +- src/IconTranslateSharp.tsx | 2 +- src/IconTranslateSharpFilled.tsx | 2 +- src/IconTransportationOutlined.tsx | 2 +- src/IconTransportationOutlinedFilled.tsx | 2 +- src/IconTransportationRounded.tsx | 2 +- src/IconTransportationRoundedFilled.tsx | 2 +- src/IconTransportationSharp.tsx | 2 +- src/IconTransportationSharpFilled.tsx | 2 +- src/IconTravelExploreOutlined.tsx | 2 +- src/IconTravelExploreOutlinedFilled.tsx | 2 +- src/IconTravelExploreRounded.tsx | 2 +- src/IconTravelExploreRoundedFilled.tsx | 2 +- src/IconTravelExploreSharp.tsx | 2 +- src/IconTravelExploreSharpFilled.tsx | 2 +- src/IconTravelLuggageAndBagsOutlined.tsx | 2 +- src/IconTravelLuggageAndBagsOutlinedFilled.tsx | 2 +- src/IconTravelLuggageAndBagsRounded.tsx | 2 +- src/IconTravelLuggageAndBagsRoundedFilled.tsx | 2 +- src/IconTravelLuggageAndBagsSharp.tsx | 2 +- src/IconTravelLuggageAndBagsSharpFilled.tsx | 2 +- src/IconTravelOutlined.tsx | 2 +- src/IconTravelOutlinedFilled.tsx | 2 +- src/IconTravelRounded.tsx | 2 +- src/IconTravelRoundedFilled.tsx | 2 +- src/IconTravelSharp.tsx | 2 +- src/IconTravelSharpFilled.tsx | 2 +- src/IconTrendingDownOutlined.tsx | 2 +- src/IconTrendingDownOutlinedFilled.tsx | 2 +- src/IconTrendingDownRounded.tsx | 2 +- src/IconTrendingDownRoundedFilled.tsx | 2 +- src/IconTrendingDownSharp.tsx | 2 +- src/IconTrendingDownSharpFilled.tsx | 2 +- src/IconTrendingFlatOutlined.tsx | 2 +- src/IconTrendingFlatOutlinedFilled.tsx | 2 +- src/IconTrendingFlatRounded.tsx | 2 +- src/IconTrendingFlatRoundedFilled.tsx | 2 +- src/IconTrendingFlatSharp.tsx | 2 +- src/IconTrendingFlatSharpFilled.tsx | 2 +- src/IconTrendingUpOutlined.tsx | 2 +- src/IconTrendingUpOutlinedFilled.tsx | 2 +- src/IconTrendingUpRounded.tsx | 2 +- src/IconTrendingUpRoundedFilled.tsx | 2 +- src/IconTrendingUpSharp.tsx | 2 +- src/IconTrendingUpSharpFilled.tsx | 2 +- src/IconTripOriginOutlined.tsx | 2 +- src/IconTripOriginOutlinedFilled.tsx | 2 +- src/IconTripOriginRounded.tsx | 2 +- src/IconTripOriginRoundedFilled.tsx | 2 +- src/IconTripOriginSharp.tsx | 2 +- src/IconTripOriginSharpFilled.tsx | 2 +- src/IconTripOutlined.tsx | 2 +- src/IconTripOutlinedFilled.tsx | 2 +- src/IconTripRounded.tsx | 2 +- src/IconTripRoundedFilled.tsx | 2 +- src/IconTripSharp.tsx | 2 +- src/IconTripSharpFilled.tsx | 2 +- src/IconTrolleyCableCarOutlined.tsx | 2 +- src/IconTrolleyCableCarOutlinedFilled.tsx | 2 +- src/IconTrolleyCableCarRounded.tsx | 2 +- src/IconTrolleyCableCarRoundedFilled.tsx | 2 +- src/IconTrolleyCableCarSharp.tsx | 2 +- src/IconTrolleyCableCarSharpFilled.tsx | 2 +- src/IconTrolleyOutlined.tsx | 2 +- src/IconTrolleyOutlinedFilled.tsx | 2 +- src/IconTrolleyRounded.tsx | 2 +- src/IconTrolleyRoundedFilled.tsx | 2 +- src/IconTrolleySharp.tsx | 2 +- src/IconTrolleySharpFilled.tsx | 2 +- src/IconTrophyOutlined.tsx | 2 +- src/IconTrophyOutlinedFilled.tsx | 2 +- src/IconTrophyRounded.tsx | 2 +- src/IconTrophyRoundedFilled.tsx | 2 +- src/IconTrophySharp.tsx | 2 +- src/IconTrophySharpFilled.tsx | 2 +- src/IconTroubleshootOutlined.tsx | 2 +- src/IconTroubleshootOutlinedFilled.tsx | 2 +- src/IconTroubleshootRounded.tsx | 2 +- src/IconTroubleshootRoundedFilled.tsx | 2 +- src/IconTroubleshootSharp.tsx | 2 +- src/IconTroubleshootSharpFilled.tsx | 2 +- src/IconTsunamiOutlined.tsx | 2 +- src/IconTsunamiOutlinedFilled.tsx | 2 +- src/IconTsunamiRounded.tsx | 2 +- src/IconTsunamiRoundedFilled.tsx | 2 +- src/IconTsunamiSharp.tsx | 2 +- src/IconTsunamiSharpFilled.tsx | 2 +- src/IconTsvOutlined.tsx | 2 +- src/IconTsvOutlinedFilled.tsx | 2 +- src/IconTsvRounded.tsx | 2 +- src/IconTsvRoundedFilled.tsx | 2 +- src/IconTsvSharp.tsx | 2 +- src/IconTsvSharpFilled.tsx | 2 +- src/IconTtyOutlined.tsx | 2 +- src/IconTtyOutlinedFilled.tsx | 2 +- src/IconTtyRounded.tsx | 2 +- src/IconTtyRoundedFilled.tsx | 2 +- src/IconTtySharp.tsx | 2 +- src/IconTtySharpFilled.tsx | 2 +- src/IconTuneOutlined.tsx | 2 +- src/IconTuneOutlinedFilled.tsx | 2 +- src/IconTuneRounded.tsx | 2 +- src/IconTuneRoundedFilled.tsx | 2 +- src/IconTuneSharp.tsx | 2 +- src/IconTuneSharpFilled.tsx | 2 +- src/IconTurnLeftOutlined.tsx | 2 +- src/IconTurnLeftOutlinedFilled.tsx | 2 +- src/IconTurnLeftRounded.tsx | 2 +- src/IconTurnLeftRoundedFilled.tsx | 2 +- src/IconTurnLeftSharp.tsx | 2 +- src/IconTurnLeftSharpFilled.tsx | 2 +- src/IconTurnRightOutlined.tsx | 2 +- src/IconTurnRightOutlinedFilled.tsx | 2 +- src/IconTurnRightRounded.tsx | 2 +- src/IconTurnRightRoundedFilled.tsx | 2 +- src/IconTurnRightSharp.tsx | 2 +- src/IconTurnRightSharpFilled.tsx | 2 +- src/IconTurnSharpLeftOutlined.tsx | 2 +- src/IconTurnSharpLeftOutlinedFilled.tsx | 2 +- src/IconTurnSharpLeftRounded.tsx | 2 +- src/IconTurnSharpLeftRoundedFilled.tsx | 2 +- src/IconTurnSharpLeftSharp.tsx | 2 +- src/IconTurnSharpLeftSharpFilled.tsx | 2 +- src/IconTurnSharpRightOutlined.tsx | 2 +- src/IconTurnSharpRightOutlinedFilled.tsx | 2 +- src/IconTurnSharpRightRounded.tsx | 2 +- src/IconTurnSharpRightRoundedFilled.tsx | 2 +- src/IconTurnSharpRightSharp.tsx | 2 +- src/IconTurnSharpRightSharpFilled.tsx | 2 +- src/IconTurnSlightLeftOutlined.tsx | 2 +- src/IconTurnSlightLeftOutlinedFilled.tsx | 2 +- src/IconTurnSlightLeftRounded.tsx | 2 +- src/IconTurnSlightLeftRoundedFilled.tsx | 2 +- src/IconTurnSlightLeftSharp.tsx | 2 +- src/IconTurnSlightLeftSharpFilled.tsx | 2 +- src/IconTurnSlightRightOutlined.tsx | 2 +- src/IconTurnSlightRightOutlinedFilled.tsx | 2 +- src/IconTurnSlightRightRounded.tsx | 2 +- src/IconTurnSlightRightRoundedFilled.tsx | 2 +- src/IconTurnSlightRightSharp.tsx | 2 +- src/IconTurnSlightRightSharpFilled.tsx | 2 +- src/IconTvGenOutlined.tsx | 2 +- src/IconTvGenOutlinedFilled.tsx | 2 +- src/IconTvGenRounded.tsx | 2 +- src/IconTvGenRoundedFilled.tsx | 2 +- src/IconTvGenSharp.tsx | 2 +- src/IconTvGenSharpFilled.tsx | 2 +- src/IconTvGuideOutlined.tsx | 2 +- src/IconTvGuideOutlinedFilled.tsx | 2 +- src/IconTvGuideRounded.tsx | 2 +- src/IconTvGuideRoundedFilled.tsx | 2 +- src/IconTvGuideSharp.tsx | 2 +- src/IconTvGuideSharpFilled.tsx | 2 +- src/IconTvOffOutlined.tsx | 2 +- src/IconTvOffOutlinedFilled.tsx | 2 +- src/IconTvOffRounded.tsx | 2 +- src/IconTvOffRoundedFilled.tsx | 2 +- src/IconTvOffSharp.tsx | 2 +- src/IconTvOffSharpFilled.tsx | 2 +- src/IconTvOptionsEditChannelsOutlined.tsx | 2 +- src/IconTvOptionsEditChannelsOutlinedFilled.tsx | 2 +- src/IconTvOptionsEditChannelsRounded.tsx | 2 +- src/IconTvOptionsEditChannelsRoundedFilled.tsx | 2 +- src/IconTvOptionsEditChannelsSharp.tsx | 2 +- src/IconTvOptionsEditChannelsSharpFilled.tsx | 2 +- src/IconTvOptionsInputSettingsOutlined.tsx | 2 +- src/IconTvOptionsInputSettingsOutlinedFilled.tsx | 2 +- src/IconTvOptionsInputSettingsRounded.tsx | 2 +- src/IconTvOptionsInputSettingsRoundedFilled.tsx | 2 +- src/IconTvOptionsInputSettingsSharp.tsx | 2 +- src/IconTvOptionsInputSettingsSharpFilled.tsx | 2 +- src/IconTvOutlined.tsx | 2 +- src/IconTvOutlinedFilled.tsx | 2 +- src/IconTvRemoteOutlined.tsx | 2 +- src/IconTvRemoteOutlinedFilled.tsx | 2 +- src/IconTvRemoteRounded.tsx | 2 +- src/IconTvRemoteRoundedFilled.tsx | 2 +- src/IconTvRemoteSharp.tsx | 2 +- src/IconTvRemoteSharpFilled.tsx | 2 +- src/IconTvRounded.tsx | 2 +- src/IconTvRoundedFilled.tsx | 2 +- src/IconTvSharp.tsx | 2 +- src/IconTvSharpFilled.tsx | 2 +- src/IconTvSigninOutlined.tsx | 2 +- src/IconTvSigninOutlinedFilled.tsx | 2 +- src/IconTvSigninRounded.tsx | 2 +- src/IconTvSigninRoundedFilled.tsx | 2 +- src/IconTvSigninSharp.tsx | 2 +- src/IconTvSigninSharpFilled.tsx | 2 +- src/IconTvWithAssistantOutlined.tsx | 2 +- src/IconTvWithAssistantOutlinedFilled.tsx | 2 +- src/IconTvWithAssistantRounded.tsx | 2 +- src/IconTvWithAssistantRoundedFilled.tsx | 2 +- src/IconTvWithAssistantSharp.tsx | 2 +- src/IconTvWithAssistantSharpFilled.tsx | 2 +- src/IconTwoPagerOutlined.tsx | 2 +- src/IconTwoPagerOutlinedFilled.tsx | 2 +- src/IconTwoPagerRounded.tsx | 2 +- src/IconTwoPagerRoundedFilled.tsx | 2 +- src/IconTwoPagerSharp.tsx | 2 +- src/IconTwoPagerSharpFilled.tsx | 2 +- src/IconTwoWheelerOutlined.tsx | 2 +- src/IconTwoWheelerOutlinedFilled.tsx | 2 +- src/IconTwoWheelerRounded.tsx | 2 +- src/IconTwoWheelerRoundedFilled.tsx | 2 +- src/IconTwoWheelerSharp.tsx | 2 +- src/IconTwoWheelerSharpFilled.tsx | 2 +- src/IconTypeSpecimenOutlined.tsx | 2 +- src/IconTypeSpecimenOutlinedFilled.tsx | 2 +- src/IconTypeSpecimenRounded.tsx | 2 +- src/IconTypeSpecimenRoundedFilled.tsx | 2 +- src/IconTypeSpecimenSharp.tsx | 2 +- src/IconTypeSpecimenSharpFilled.tsx | 2 +- src/IconUTurnLeftOutlined.tsx | 2 +- src/IconUTurnLeftOutlinedFilled.tsx | 2 +- src/IconUTurnLeftRounded.tsx | 2 +- src/IconUTurnLeftRoundedFilled.tsx | 2 +- src/IconUTurnLeftSharp.tsx | 2 +- src/IconUTurnLeftSharpFilled.tsx | 2 +- src/IconUTurnRightOutlined.tsx | 2 +- src/IconUTurnRightOutlinedFilled.tsx | 2 +- src/IconUTurnRightRounded.tsx | 2 +- src/IconUTurnRightRoundedFilled.tsx | 2 +- src/IconUTurnRightSharp.tsx | 2 +- src/IconUTurnRightSharpFilled.tsx | 2 +- src/IconUlnaRadiusAltOutlined.tsx | 2 +- src/IconUlnaRadiusAltOutlinedFilled.tsx | 2 +- src/IconUlnaRadiusAltRounded.tsx | 2 +- src/IconUlnaRadiusAltRoundedFilled.tsx | 2 +- src/IconUlnaRadiusAltSharp.tsx | 2 +- src/IconUlnaRadiusAltSharpFilled.tsx | 2 +- src/IconUlnaRadiusOutlined.tsx | 2 +- src/IconUlnaRadiusOutlinedFilled.tsx | 2 +- src/IconUlnaRadiusRounded.tsx | 2 +- src/IconUlnaRadiusRoundedFilled.tsx | 2 +- src/IconUlnaRadiusSharp.tsx | 2 +- src/IconUlnaRadiusSharpFilled.tsx | 2 +- src/IconUmbrellaOutlined.tsx | 2 +- src/IconUmbrellaOutlinedFilled.tsx | 2 +- src/IconUmbrellaRounded.tsx | 2 +- src/IconUmbrellaRoundedFilled.tsx | 2 +- src/IconUmbrellaSharp.tsx | 2 +- src/IconUmbrellaSharpFilled.tsx | 2 +- src/IconUnarchiveOutlined.tsx | 2 +- src/IconUnarchiveOutlinedFilled.tsx | 2 +- src/IconUnarchiveRounded.tsx | 2 +- src/IconUnarchiveRoundedFilled.tsx | 2 +- src/IconUnarchiveSharp.tsx | 2 +- src/IconUnarchiveSharpFilled.tsx | 2 +- src/IconUndoOutlined.tsx | 2 +- src/IconUndoOutlinedFilled.tsx | 2 +- src/IconUndoRounded.tsx | 2 +- src/IconUndoRoundedFilled.tsx | 2 +- src/IconUndoSharp.tsx | 2 +- src/IconUndoSharpFilled.tsx | 2 +- src/IconUnfoldLessDoubleOutlined.tsx | 2 +- src/IconUnfoldLessDoubleOutlinedFilled.tsx | 2 +- src/IconUnfoldLessDoubleRounded.tsx | 2 +- src/IconUnfoldLessDoubleRoundedFilled.tsx | 2 +- src/IconUnfoldLessDoubleSharp.tsx | 2 +- src/IconUnfoldLessDoubleSharpFilled.tsx | 2 +- src/IconUnfoldLessOutlined.tsx | 2 +- src/IconUnfoldLessOutlinedFilled.tsx | 2 +- src/IconUnfoldLessRounded.tsx | 2 +- src/IconUnfoldLessRoundedFilled.tsx | 2 +- src/IconUnfoldLessSharp.tsx | 2 +- src/IconUnfoldLessSharpFilled.tsx | 2 +- src/IconUnfoldMoreDoubleOutlined.tsx | 2 +- src/IconUnfoldMoreDoubleOutlinedFilled.tsx | 2 +- src/IconUnfoldMoreDoubleRounded.tsx | 2 +- src/IconUnfoldMoreDoubleRoundedFilled.tsx | 2 +- src/IconUnfoldMoreDoubleSharp.tsx | 2 +- src/IconUnfoldMoreDoubleSharpFilled.tsx | 2 +- src/IconUnfoldMoreOutlined.tsx | 2 +- src/IconUnfoldMoreOutlinedFilled.tsx | 2 +- src/IconUnfoldMoreRounded.tsx | 2 +- src/IconUnfoldMoreRoundedFilled.tsx | 2 +- src/IconUnfoldMoreSharp.tsx | 2 +- src/IconUnfoldMoreSharpFilled.tsx | 2 +- src/IconUngroupOutlined.tsx | 2 +- src/IconUngroupOutlinedFilled.tsx | 2 +- src/IconUngroupRounded.tsx | 2 +- src/IconUngroupRoundedFilled.tsx | 2 +- src/IconUngroupSharp.tsx | 2 +- src/IconUngroupSharpFilled.tsx | 2 +- src/IconUniversalCurrencyAltOutlined.tsx | 2 +- src/IconUniversalCurrencyAltOutlinedFilled.tsx | 2 +- src/IconUniversalCurrencyAltRounded.tsx | 2 +- src/IconUniversalCurrencyAltRoundedFilled.tsx | 2 +- src/IconUniversalCurrencyAltSharp.tsx | 2 +- src/IconUniversalCurrencyAltSharpFilled.tsx | 2 +- src/IconUniversalCurrencyOutlined.tsx | 2 +- src/IconUniversalCurrencyOutlinedFilled.tsx | 2 +- src/IconUniversalCurrencyRounded.tsx | 2 +- src/IconUniversalCurrencyRoundedFilled.tsx | 2 +- src/IconUniversalCurrencySharp.tsx | 2 +- src/IconUniversalCurrencySharpFilled.tsx | 2 +- src/IconUniversalLocalOutlined.tsx | 2 +- src/IconUniversalLocalOutlinedFilled.tsx | 2 +- src/IconUniversalLocalRounded.tsx | 2 +- src/IconUniversalLocalRoundedFilled.tsx | 2 +- src/IconUniversalLocalSharp.tsx | 2 +- src/IconUniversalLocalSharpFilled.tsx | 2 +- src/IconUnknown2Outlined.tsx | 2 +- src/IconUnknown2OutlinedFilled.tsx | 2 +- src/IconUnknown2Rounded.tsx | 2 +- src/IconUnknown2RoundedFilled.tsx | 2 +- src/IconUnknown2Sharp.tsx | 2 +- src/IconUnknown2SharpFilled.tsx | 2 +- src/IconUnknown5Outlined.tsx | 2 +- src/IconUnknown5OutlinedFilled.tsx | 2 +- src/IconUnknown5Rounded.tsx | 2 +- src/IconUnknown5RoundedFilled.tsx | 2 +- src/IconUnknown5Sharp.tsx | 2 +- src/IconUnknown5SharpFilled.tsx | 2 +- src/IconUnknown7Outlined.tsx | 2 +- src/IconUnknown7OutlinedFilled.tsx | 2 +- src/IconUnknown7Rounded.tsx | 2 +- src/IconUnknown7RoundedFilled.tsx | 2 +- src/IconUnknown7Sharp.tsx | 2 +- src/IconUnknown7SharpFilled.tsx | 2 +- src/IconUnknownDocumentOutlined.tsx | 2 +- src/IconUnknownDocumentOutlinedFilled.tsx | 2 +- src/IconUnknownDocumentRounded.tsx | 2 +- src/IconUnknownDocumentRoundedFilled.tsx | 2 +- src/IconUnknownDocumentSharp.tsx | 2 +- src/IconUnknownDocumentSharpFilled.tsx | 2 +- src/IconUnknownMedOutlined.tsx | 2 +- src/IconUnknownMedOutlinedFilled.tsx | 2 +- src/IconUnknownMedRounded.tsx | 2 +- src/IconUnknownMedRoundedFilled.tsx | 2 +- src/IconUnknownMedSharp.tsx | 2 +- src/IconUnknownMedSharpFilled.tsx | 2 +- src/IconUnlicenseOutlined.tsx | 2 +- src/IconUnlicenseOutlinedFilled.tsx | 2 +- src/IconUnlicenseRounded.tsx | 2 +- src/IconUnlicenseRoundedFilled.tsx | 2 +- src/IconUnlicenseSharp.tsx | 2 +- src/IconUnlicenseSharpFilled.tsx | 2 +- src/IconUnpavedRoadOutlined.tsx | 2 +- src/IconUnpavedRoadOutlinedFilled.tsx | 2 +- src/IconUnpavedRoadRounded.tsx | 2 +- src/IconUnpavedRoadRoundedFilled.tsx | 2 +- src/IconUnpavedRoadSharp.tsx | 2 +- src/IconUnpavedRoadSharpFilled.tsx | 2 +- src/IconUnpublishedOutlined.tsx | 2 +- src/IconUnpublishedOutlinedFilled.tsx | 2 +- src/IconUnpublishedRounded.tsx | 2 +- src/IconUnpublishedRoundedFilled.tsx | 2 +- src/IconUnpublishedSharp.tsx | 2 +- src/IconUnpublishedSharpFilled.tsx | 2 +- src/IconUnsubscribeOutlined.tsx | 2 +- src/IconUnsubscribeOutlinedFilled.tsx | 2 +- src/IconUnsubscribeRounded.tsx | 2 +- src/IconUnsubscribeRoundedFilled.tsx | 2 +- src/IconUnsubscribeSharp.tsx | 2 +- src/IconUnsubscribeSharpFilled.tsx | 2 +- src/IconUpcomingOutlined.tsx | 2 +- src/IconUpcomingOutlinedFilled.tsx | 2 +- src/IconUpcomingRounded.tsx | 2 +- src/IconUpcomingRoundedFilled.tsx | 2 +- src/IconUpcomingSharp.tsx | 2 +- src/IconUpcomingSharpFilled.tsx | 2 +- src/IconUpdateDisabledOutlined.tsx | 2 +- src/IconUpdateDisabledOutlinedFilled.tsx | 2 +- src/IconUpdateDisabledRounded.tsx | 2 +- src/IconUpdateDisabledRoundedFilled.tsx | 2 +- src/IconUpdateDisabledSharp.tsx | 2 +- src/IconUpdateDisabledSharpFilled.tsx | 2 +- src/IconUpdateOutlined.tsx | 2 +- src/IconUpdateOutlinedFilled.tsx | 2 +- src/IconUpdateRounded.tsx | 2 +- src/IconUpdateRoundedFilled.tsx | 2 +- src/IconUpdateSharp.tsx | 2 +- src/IconUpdateSharpFilled.tsx | 2 +- src/IconUpgradeOutlined.tsx | 2 +- src/IconUpgradeOutlinedFilled.tsx | 2 +- src/IconUpgradeRounded.tsx | 2 +- src/IconUpgradeRoundedFilled.tsx | 2 +- src/IconUpgradeSharp.tsx | 2 +- src/IconUpgradeSharpFilled.tsx | 2 +- src/IconUpload2Outlined.tsx | 2 +- src/IconUpload2OutlinedFilled.tsx | 2 +- src/IconUpload2Rounded.tsx | 2 +- src/IconUpload2RoundedFilled.tsx | 2 +- src/IconUpload2Sharp.tsx | 2 +- src/IconUpload2SharpFilled.tsx | 2 +- src/IconUploadFileOutlined.tsx | 2 +- src/IconUploadFileOutlinedFilled.tsx | 2 +- src/IconUploadFileRounded.tsx | 2 +- src/IconUploadFileRoundedFilled.tsx | 2 +- src/IconUploadFileSharp.tsx | 2 +- src/IconUploadFileSharpFilled.tsx | 2 +- src/IconUploadOutlined.tsx | 2 +- src/IconUploadOutlinedFilled.tsx | 2 +- src/IconUploadRounded.tsx | 2 +- src/IconUploadRoundedFilled.tsx | 2 +- src/IconUploadSharp.tsx | 2 +- src/IconUploadSharpFilled.tsx | 2 +- src/IconUppercaseOutlined.tsx | 2 +- src/IconUppercaseOutlinedFilled.tsx | 2 +- src/IconUppercaseRounded.tsx | 2 +- src/IconUppercaseRoundedFilled.tsx | 2 +- src/IconUppercaseSharp.tsx | 2 +- src/IconUppercaseSharpFilled.tsx | 2 +- src/IconUrologyOutlined.tsx | 2 +- src/IconUrologyOutlinedFilled.tsx | 2 +- src/IconUrologyRounded.tsx | 2 +- src/IconUrologyRoundedFilled.tsx | 2 +- src/IconUrologySharp.tsx | 2 +- src/IconUrologySharpFilled.tsx | 2 +- src/IconUsbOffOutlined.tsx | 2 +- src/IconUsbOffOutlinedFilled.tsx | 2 +- src/IconUsbOffRounded.tsx | 2 +- src/IconUsbOffRoundedFilled.tsx | 2 +- src/IconUsbOffSharp.tsx | 2 +- src/IconUsbOffSharpFilled.tsx | 2 +- src/IconUsbOutlined.tsx | 2 +- src/IconUsbOutlinedFilled.tsx | 2 +- src/IconUsbRounded.tsx | 2 +- src/IconUsbRoundedFilled.tsx | 2 +- src/IconUsbSharp.tsx | 2 +- src/IconUsbSharpFilled.tsx | 2 +- src/IconUserAttributesOutlined.tsx | 2 +- src/IconUserAttributesOutlinedFilled.tsx | 2 +- src/IconUserAttributesRounded.tsx | 2 +- src/IconUserAttributesRoundedFilled.tsx | 2 +- src/IconUserAttributesSharp.tsx | 2 +- src/IconUserAttributesSharpFilled.tsx | 2 +- src/IconVaccinesOutlined.tsx | 2 +- src/IconVaccinesOutlinedFilled.tsx | 2 +- src/IconVaccinesRoundedFilled.tsx | 2 +- src/IconVaccinesSharp.tsx | 2 +- src/IconVaccinesSharpFilled.tsx | 2 +- src/IconVacuumOutlined.tsx | 2 +- src/IconVacuumOutlinedFilled.tsx | 2 +- src/IconVacuumRounded.tsx | 2 +- src/IconVacuumRoundedFilled.tsx | 2 +- src/IconVacuumSharp.tsx | 2 +- src/IconVacuumSharpFilled.tsx | 2 +- src/IconValveOutlined.tsx | 2 +- src/IconValveOutlinedFilled.tsx | 2 +- src/IconValveRounded.tsx | 2 +- src/IconValveRoundedFilled.tsx | 2 +- src/IconValveSharp.tsx | 2 +- src/IconValveSharpFilled.tsx | 2 +- src/IconVapeFreeOutlined.tsx | 2 +- src/IconVapeFreeOutlinedFilled.tsx | 2 +- src/IconVapeFreeRounded.tsx | 2 +- src/IconVapeFreeRoundedFilled.tsx | 2 +- src/IconVapeFreeSharp.tsx | 2 +- src/IconVapeFreeSharpFilled.tsx | 2 +- src/IconVapingRoomsOutlined.tsx | 2 +- src/IconVapingRoomsOutlinedFilled.tsx | 2 +- src/IconVapingRoomsRounded.tsx | 2 +- src/IconVapingRoomsRoundedFilled.tsx | 2 +- src/IconVapingRoomsSharp.tsx | 2 +- src/IconVapingRoomsSharpFilled.tsx | 2 +- src/IconVariableAddOutlined.tsx | 2 +- src/IconVariableAddOutlinedFilled.tsx | 2 +- src/IconVariableAddRounded.tsx | 2 +- src/IconVariableAddRoundedFilled.tsx | 2 +- src/IconVariableAddSharp.tsx | 2 +- src/IconVariableAddSharpFilled.tsx | 2 +- src/IconVariableInsertOutlined.tsx | 2 +- src/IconVariableInsertOutlinedFilled.tsx | 2 +- src/IconVariableInsertRounded.tsx | 2 +- src/IconVariableInsertRoundedFilled.tsx | 2 +- src/IconVariableInsertSharp.tsx | 2 +- src/IconVariableInsertSharpFilled.tsx | 2 +- src/IconVariableRemoveOutlined.tsx | 2 +- src/IconVariableRemoveOutlinedFilled.tsx | 2 +- src/IconVariableRemoveRounded.tsx | 2 +- src/IconVariableRemoveRoundedFilled.tsx | 2 +- src/IconVariableRemoveSharp.tsx | 2 +- src/IconVariableRemoveSharpFilled.tsx | 2 +- src/IconVariablesOutlined.tsx | 2 +- src/IconVariablesOutlinedFilled.tsx | 2 +- src/IconVariablesRounded.tsx | 2 +- src/IconVariablesRoundedFilled.tsx | 2 +- src/IconVariablesSharp.tsx | 2 +- src/IconVariablesSharpFilled.tsx | 2 +- src/IconVentilatorOutlined.tsx | 2 +- src/IconVentilatorOutlinedFilled.tsx | 2 +- src/IconVentilatorRounded.tsx | 2 +- src/IconVentilatorRoundedFilled.tsx | 2 +- src/IconVentilatorSharp.tsx | 2 +- src/IconVentilatorSharpFilled.tsx | 2 +- src/IconVerifiedOutlined.tsx | 2 +- src/IconVerifiedOutlinedFilled.tsx | 2 +- src/IconVerifiedRounded.tsx | 2 +- src/IconVerifiedRoundedFilled.tsx | 2 +- src/IconVerifiedSharp.tsx | 2 +- src/IconVerifiedSharpFilled.tsx | 2 +- src/IconVerifiedUserOutlined.tsx | 2 +- src/IconVerifiedUserOutlinedFilled.tsx | 2 +- src/IconVerifiedUserRounded.tsx | 2 +- src/IconVerifiedUserRoundedFilled.tsx | 2 +- src/IconVerifiedUserSharp.tsx | 2 +- src/IconVerifiedUserSharpFilled.tsx | 2 +- src/IconVerticalAlignBottomOutlined.tsx | 2 +- src/IconVerticalAlignBottomOutlinedFilled.tsx | 2 +- src/IconVerticalAlignBottomRounded.tsx | 2 +- src/IconVerticalAlignBottomRoundedFilled.tsx | 2 +- src/IconVerticalAlignBottomSharp.tsx | 2 +- src/IconVerticalAlignBottomSharpFilled.tsx | 2 +- src/IconVerticalAlignCenterOutlined.tsx | 2 +- src/IconVerticalAlignCenterOutlinedFilled.tsx | 2 +- src/IconVerticalAlignCenterRounded.tsx | 2 +- src/IconVerticalAlignCenterRoundedFilled.tsx | 2 +- src/IconVerticalAlignCenterSharp.tsx | 2 +- src/IconVerticalAlignCenterSharpFilled.tsx | 2 +- src/IconVerticalAlignTopOutlined.tsx | 2 +- src/IconVerticalAlignTopOutlinedFilled.tsx | 2 +- src/IconVerticalAlignTopRounded.tsx | 2 +- src/IconVerticalAlignTopRoundedFilled.tsx | 2 +- src/IconVerticalAlignTopSharp.tsx | 2 +- src/IconVerticalAlignTopSharpFilled.tsx | 2 +- src/IconVerticalDistributeOutlined.tsx | 2 +- src/IconVerticalDistributeOutlinedFilled.tsx | 2 +- src/IconVerticalDistributeRounded.tsx | 2 +- src/IconVerticalDistributeRoundedFilled.tsx | 2 +- src/IconVerticalDistributeSharp.tsx | 2 +- src/IconVerticalDistributeSharpFilled.tsx | 2 +- src/IconVerticalShadesClosedOutlined.tsx | 2 +- src/IconVerticalShadesClosedOutlinedFilled.tsx | 2 +- src/IconVerticalShadesClosedRounded.tsx | 2 +- src/IconVerticalShadesClosedRoundedFilled.tsx | 2 +- src/IconVerticalShadesClosedSharp.tsx | 2 +- src/IconVerticalShadesClosedSharpFilled.tsx | 2 +- src/IconVerticalShadesOutlined.tsx | 2 +- src/IconVerticalShadesOutlinedFilled.tsx | 2 +- src/IconVerticalShadesRounded.tsx | 2 +- src/IconVerticalShadesRoundedFilled.tsx | 2 +- src/IconVerticalShadesSharp.tsx | 2 +- src/IconVerticalShadesSharpFilled.tsx | 2 +- src/IconVerticalSplitOutlined.tsx | 2 +- src/IconVerticalSplitOutlinedFilled.tsx | 2 +- src/IconVerticalSplitRounded.tsx | 2 +- src/IconVerticalSplitRoundedFilled.tsx | 2 +- src/IconVerticalSplitSharp.tsx | 2 +- src/IconVerticalSplitSharpFilled.tsx | 2 +- src/IconVibrationOutlined.tsx | 2 +- src/IconVibrationOutlinedFilled.tsx | 2 +- src/IconVibrationRounded.tsx | 2 +- src/IconVibrationRoundedFilled.tsx | 2 +- src/IconVibrationSharp.tsx | 2 +- src/IconVibrationSharpFilled.tsx | 2 +- src/IconVideoCallOutlined.tsx | 2 +- src/IconVideoCallOutlinedFilled.tsx | 2 +- src/IconVideoCallRounded.tsx | 2 +- src/IconVideoCallRoundedFilled.tsx | 2 +- src/IconVideoCallSharp.tsx | 2 +- src/IconVideoCallSharpFilled.tsx | 2 +- src/IconVideoCameraBackAddOutlined.tsx | 2 +- src/IconVideoCameraBackAddOutlinedFilled.tsx | 2 +- src/IconVideoCameraBackAddRounded.tsx | 2 +- src/IconVideoCameraBackAddRoundedFilled.tsx | 2 +- src/IconVideoCameraBackAddSharp.tsx | 2 +- src/IconVideoCameraBackAddSharpFilled.tsx | 2 +- src/IconVideoCameraBackOutlined.tsx | 2 +- src/IconVideoCameraBackOutlinedFilled.tsx | 2 +- src/IconVideoCameraBackRounded.tsx | 2 +- src/IconVideoCameraBackRoundedFilled.tsx | 2 +- src/IconVideoCameraBackSharp.tsx | 2 +- src/IconVideoCameraBackSharpFilled.tsx | 2 +- src/IconVideoCameraFrontOffOutlined.tsx | 2 +- src/IconVideoCameraFrontOffOutlinedFilled.tsx | 2 +- src/IconVideoCameraFrontOffRounded.tsx | 2 +- src/IconVideoCameraFrontOffRoundedFilled.tsx | 2 +- src/IconVideoCameraFrontOffSharp.tsx | 2 +- src/IconVideoCameraFrontOffSharpFilled.tsx | 2 +- src/IconVideoCameraFrontOutlined.tsx | 2 +- src/IconVideoCameraFrontOutlinedFilled.tsx | 2 +- src/IconVideoCameraFrontRounded.tsx | 2 +- src/IconVideoCameraFrontRoundedFilled.tsx | 2 +- src/IconVideoCameraFrontSharp.tsx | 2 +- src/IconVideoCameraFrontSharpFilled.tsx | 2 +- src/IconVideoChatOutlined.tsx | 2 +- src/IconVideoChatOutlinedFilled.tsx | 2 +- src/IconVideoChatRounded.tsx | 2 +- src/IconVideoChatRoundedFilled.tsx | 2 +- src/IconVideoChatSharp.tsx | 2 +- src/IconVideoChatSharpFilled.tsx | 2 +- src/IconVideoFileOutlined.tsx | 2 +- src/IconVideoFileOutlinedFilled.tsx | 2 +- src/IconVideoFileRounded.tsx | 2 +- src/IconVideoFileRoundedFilled.tsx | 2 +- src/IconVideoFileSharp.tsx | 2 +- src/IconVideoFileSharpFilled.tsx | 2 +- src/IconVideoLabelOutlined.tsx | 2 +- src/IconVideoLabelOutlinedFilled.tsx | 2 +- src/IconVideoLabelRounded.tsx | 2 +- src/IconVideoLabelRoundedFilled.tsx | 2 +- src/IconVideoLabelSharp.tsx | 2 +- src/IconVideoLabelSharpFilled.tsx | 2 +- src/IconVideoLibraryOutlined.tsx | 2 +- src/IconVideoLibraryOutlinedFilled.tsx | 2 +- src/IconVideoLibraryRounded.tsx | 2 +- src/IconVideoLibraryRoundedFilled.tsx | 2 +- src/IconVideoLibrarySharp.tsx | 2 +- src/IconVideoLibrarySharpFilled.tsx | 2 +- src/IconVideoSearchOutlined.tsx | 2 +- src/IconVideoSearchOutlinedFilled.tsx | 2 +- src/IconVideoSearchRounded.tsx | 2 +- src/IconVideoSearchRoundedFilled.tsx | 2 +- src/IconVideoSearchSharp.tsx | 2 +- src/IconVideoSearchSharpFilled.tsx | 2 +- src/IconVideoSettingsOutlined.tsx | 2 +- src/IconVideoSettingsOutlinedFilled.tsx | 2 +- src/IconVideoSettingsRounded.tsx | 2 +- src/IconVideoSettingsRoundedFilled.tsx | 2 +- src/IconVideoSettingsSharp.tsx | 2 +- src/IconVideoSettingsSharpFilled.tsx | 2 +- src/IconVideoStableOutlined.tsx | 2 +- src/IconVideoStableOutlinedFilled.tsx | 2 +- src/IconVideoStableRounded.tsx | 2 +- src/IconVideoStableRoundedFilled.tsx | 2 +- src/IconVideoStableSharp.tsx | 2 +- src/IconVideoStableSharpFilled.tsx | 2 +- src/IconVideocamOffOutlined.tsx | 2 +- src/IconVideocamOffOutlinedFilled.tsx | 2 +- src/IconVideocamOffRounded.tsx | 2 +- src/IconVideocamOffRoundedFilled.tsx | 2 +- src/IconVideocamOffSharp.tsx | 2 +- src/IconVideocamOffSharpFilled.tsx | 2 +- src/IconVideocamOutlined.tsx | 2 +- src/IconVideocamOutlinedFilled.tsx | 2 +- src/IconVideocamRounded.tsx | 2 +- src/IconVideocamRoundedFilled.tsx | 2 +- src/IconVideocamSharp.tsx | 2 +- src/IconVideocamSharpFilled.tsx | 2 +- src/IconVideogameAssetOffOutlined.tsx | 2 +- src/IconVideogameAssetOffOutlinedFilled.tsx | 2 +- src/IconVideogameAssetOffRounded.tsx | 2 +- src/IconVideogameAssetOffRoundedFilled.tsx | 2 +- src/IconVideogameAssetOffSharp.tsx | 2 +- src/IconVideogameAssetOffSharpFilled.tsx | 2 +- src/IconVideogameAssetOutlined.tsx | 2 +- src/IconVideogameAssetOutlinedFilled.tsx | 2 +- src/IconVideogameAssetRounded.tsx | 2 +- src/IconVideogameAssetRoundedFilled.tsx | 2 +- src/IconVideogameAssetSharp.tsx | 2 +- src/IconVideogameAssetSharpFilled.tsx | 2 +- src/IconViewAgendaOutlined.tsx | 2 +- src/IconViewAgendaOutlinedFilled.tsx | 2 +- src/IconViewAgendaRounded.tsx | 2 +- src/IconViewAgendaRoundedFilled.tsx | 2 +- src/IconViewAgendaSharp.tsx | 2 +- src/IconViewAgendaSharpFilled.tsx | 2 +- src/IconViewArrayOutlined.tsx | 2 +- src/IconViewArrayOutlinedFilled.tsx | 2 +- src/IconViewArrayRounded.tsx | 2 +- src/IconViewArrayRoundedFilled.tsx | 2 +- src/IconViewArraySharp.tsx | 2 +- src/IconViewArraySharpFilled.tsx | 2 +- src/IconViewCarouselOutlined.tsx | 2 +- src/IconViewCarouselOutlinedFilled.tsx | 2 +- src/IconViewCarouselRounded.tsx | 2 +- src/IconViewCarouselRoundedFilled.tsx | 2 +- src/IconViewCarouselSharp.tsx | 2 +- src/IconViewCarouselSharpFilled.tsx | 2 +- src/IconViewColumn2Outlined.tsx | 2 +- src/IconViewColumn2OutlinedFilled.tsx | 2 +- src/IconViewColumn2Rounded.tsx | 2 +- src/IconViewColumn2RoundedFilled.tsx | 2 +- src/IconViewColumn2Sharp.tsx | 2 +- src/IconViewColumn2SharpFilled.tsx | 2 +- src/IconViewColumnOutlined.tsx | 2 +- src/IconViewColumnOutlinedFilled.tsx | 2 +- src/IconViewColumnRounded.tsx | 2 +- src/IconViewColumnRoundedFilled.tsx | 2 +- src/IconViewColumnSharp.tsx | 2 +- src/IconViewColumnSharpFilled.tsx | 2 +- src/IconViewComfyAltOutlined.tsx | 2 +- src/IconViewComfyAltOutlinedFilled.tsx | 2 +- src/IconViewComfyAltRounded.tsx | 2 +- src/IconViewComfyAltRoundedFilled.tsx | 2 +- src/IconViewComfyAltSharp.tsx | 2 +- src/IconViewComfyAltSharpFilled.tsx | 2 +- src/IconViewComfyOutlined.tsx | 2 +- src/IconViewComfyOutlinedFilled.tsx | 2 +- src/IconViewComfyRounded.tsx | 2 +- src/IconViewComfyRoundedFilled.tsx | 2 +- src/IconViewComfySharp.tsx | 2 +- src/IconViewComfySharpFilled.tsx | 2 +- src/IconViewCompactAltOutlined.tsx | 2 +- src/IconViewCompactAltOutlinedFilled.tsx | 2 +- src/IconViewCompactAltRounded.tsx | 2 +- src/IconViewCompactAltRoundedFilled.tsx | 2 +- src/IconViewCompactAltSharp.tsx | 2 +- src/IconViewCompactAltSharpFilled.tsx | 2 +- src/IconViewCompactOutlined.tsx | 2 +- src/IconViewCompactOutlinedFilled.tsx | 2 +- src/IconViewCompactRounded.tsx | 2 +- src/IconViewCompactRoundedFilled.tsx | 2 +- src/IconViewCompactSharp.tsx | 2 +- src/IconViewCompactSharpFilled.tsx | 2 +- src/IconViewCozyOutlined.tsx | 2 +- src/IconViewCozyOutlinedFilled.tsx | 2 +- src/IconViewCozyRounded.tsx | 2 +- src/IconViewCozyRoundedFilled.tsx | 2 +- src/IconViewCozySharp.tsx | 2 +- src/IconViewCozySharpFilled.tsx | 2 +- src/IconViewDayOutlined.tsx | 2 +- src/IconViewDayOutlinedFilled.tsx | 2 +- src/IconViewDayRounded.tsx | 2 +- src/IconViewDayRoundedFilled.tsx | 2 +- src/IconViewDaySharp.tsx | 2 +- src/IconViewDaySharpFilled.tsx | 2 +- src/IconViewHeadlineOutlined.tsx | 2 +- src/IconViewHeadlineOutlinedFilled.tsx | 2 +- src/IconViewHeadlineRounded.tsx | 2 +- src/IconViewHeadlineRoundedFilled.tsx | 2 +- src/IconViewHeadlineSharp.tsx | 2 +- src/IconViewHeadlineSharpFilled.tsx | 2 +- src/IconViewInArOffOutlined.tsx | 2 +- src/IconViewInArOffOutlinedFilled.tsx | 2 +- src/IconViewInArOffRounded.tsx | 2 +- src/IconViewInArOffRoundedFilled.tsx | 2 +- src/IconViewInArOffSharp.tsx | 2 +- src/IconViewInArOffSharpFilled.tsx | 2 +- src/IconViewInArOutlined.tsx | 2 +- src/IconViewInArOutlinedFilled.tsx | 2 +- src/IconViewInArRounded.tsx | 2 +- src/IconViewInArRoundedFilled.tsx | 2 +- src/IconViewInArSharp.tsx | 2 +- src/IconViewInArSharpFilled.tsx | 2 +- src/IconViewKanbanOutlined.tsx | 2 +- src/IconViewKanbanOutlinedFilled.tsx | 2 +- src/IconViewKanbanRounded.tsx | 2 +- src/IconViewKanbanRoundedFilled.tsx | 2 +- src/IconViewKanbanSharp.tsx | 2 +- src/IconViewKanbanSharpFilled.tsx | 2 +- src/IconViewListOutlined.tsx | 2 +- src/IconViewListOutlinedFilled.tsx | 2 +- src/IconViewListRounded.tsx | 2 +- src/IconViewListRoundedFilled.tsx | 2 +- src/IconViewListSharp.tsx | 2 +- src/IconViewListSharpFilled.tsx | 2 +- src/IconViewModuleOutlined.tsx | 2 +- src/IconViewModuleOutlinedFilled.tsx | 2 +- src/IconViewModuleRounded.tsx | 2 +- src/IconViewModuleRoundedFilled.tsx | 2 +- src/IconViewModuleSharp.tsx | 2 +- src/IconViewModuleSharpFilled.tsx | 2 +- src/IconViewObjectTrackOutlined.tsx | 2 +- src/IconViewObjectTrackOutlinedFilled.tsx | 2 +- src/IconViewObjectTrackRounded.tsx | 2 +- src/IconViewObjectTrackRoundedFilled.tsx | 2 +- src/IconViewObjectTrackSharp.tsx | 2 +- src/IconViewObjectTrackSharpFilled.tsx | 2 +- src/IconViewQuiltOutlined.tsx | 2 +- src/IconViewQuiltOutlinedFilled.tsx | 2 +- src/IconViewQuiltRounded.tsx | 2 +- src/IconViewQuiltRoundedFilled.tsx | 2 +- src/IconViewQuiltSharp.tsx | 2 +- src/IconViewQuiltSharpFilled.tsx | 2 +- src/IconViewRealSizeOutlined.tsx | 2 +- src/IconViewRealSizeOutlinedFilled.tsx | 2 +- src/IconViewRealSizeRounded.tsx | 2 +- src/IconViewRealSizeRoundedFilled.tsx | 2 +- src/IconViewRealSizeSharp.tsx | 2 +- src/IconViewRealSizeSharpFilled.tsx | 2 +- src/IconViewSidebarOutlined.tsx | 2 +- src/IconViewSidebarOutlinedFilled.tsx | 2 +- src/IconViewSidebarRounded.tsx | 2 +- src/IconViewSidebarRoundedFilled.tsx | 2 +- src/IconViewSidebarSharp.tsx | 2 +- src/IconViewSidebarSharpFilled.tsx | 2 +- src/IconViewStreamOutlined.tsx | 2 +- src/IconViewStreamOutlinedFilled.tsx | 2 +- src/IconViewStreamRounded.tsx | 2 +- src/IconViewStreamRoundedFilled.tsx | 2 +- src/IconViewStreamSharp.tsx | 2 +- src/IconViewStreamSharpFilled.tsx | 2 +- src/IconViewTimelineOutlined.tsx | 2 +- src/IconViewTimelineOutlinedFilled.tsx | 2 +- src/IconViewTimelineRounded.tsx | 2 +- src/IconViewTimelineRoundedFilled.tsx | 2 +- src/IconViewTimelineSharp.tsx | 2 +- src/IconViewTimelineSharpFilled.tsx | 2 +- src/IconViewWeekOutlined.tsx | 2 +- src/IconViewWeekOutlinedFilled.tsx | 2 +- src/IconViewWeekRounded.tsx | 2 +- src/IconViewWeekRoundedFilled.tsx | 2 +- src/IconViewWeekSharp.tsx | 2 +- src/IconViewWeekSharpFilled.tsx | 2 +- src/IconVignetteOutlined.tsx | 2 +- src/IconVignetteOutlinedFilled.tsx | 2 +- src/IconVignetteRounded.tsx | 2 +- src/IconVignetteRoundedFilled.tsx | 2 +- src/IconVignetteSharp.tsx | 2 +- src/IconVignetteSharpFilled.tsx | 2 +- src/IconVillaOutlined.tsx | 2 +- src/IconVillaOutlinedFilled.tsx | 2 +- src/IconVillaRounded.tsx | 2 +- src/IconVillaRoundedFilled.tsx | 2 +- src/IconVillaSharp.tsx | 2 +- src/IconVillaSharpFilled.tsx | 2 +- src/IconVisibilityLockOutlined.tsx | 2 +- src/IconVisibilityLockOutlinedFilled.tsx | 2 +- src/IconVisibilityLockRounded.tsx | 2 +- src/IconVisibilityLockRoundedFilled.tsx | 2 +- src/IconVisibilityLockSharp.tsx | 2 +- src/IconVisibilityLockSharpFilled.tsx | 2 +- src/IconVisibilityOffOutlined.tsx | 2 +- src/IconVisibilityOffOutlinedFilled.tsx | 2 +- src/IconVisibilityOffRounded.tsx | 2 +- src/IconVisibilityOffRoundedFilled.tsx | 2 +- src/IconVisibilityOffSharp.tsx | 2 +- src/IconVisibilityOffSharpFilled.tsx | 2 +- src/IconVisibilityOutlined.tsx | 2 +- src/IconVisibilityOutlinedFilled.tsx | 2 +- src/IconVisibilityRounded.tsx | 2 +- src/IconVisibilityRoundedFilled.tsx | 2 +- src/IconVisibilitySharp.tsx | 2 +- src/IconVisibilitySharpFilled.tsx | 2 +- src/IconVitalSignsOutlined.tsx | 2 +- src/IconVitalSignsOutlinedFilled.tsx | 2 +- src/IconVitalSignsRounded.tsx | 2 +- src/IconVitalSignsRoundedFilled.tsx | 2 +- src/IconVitalSignsSharp.tsx | 2 +- src/IconVitalSignsSharpFilled.tsx | 2 +- src/IconVo2MaxOutlined.tsx | 2 +- src/IconVo2MaxOutlinedFilled.tsx | 2 +- src/IconVo2MaxRounded.tsx | 2 +- src/IconVo2MaxRoundedFilled.tsx | 2 +- src/IconVo2MaxSharp.tsx | 2 +- src/IconVo2MaxSharpFilled.tsx | 2 +- src/IconVoiceChatOutlined.tsx | 2 +- src/IconVoiceChatOutlinedFilled.tsx | 2 +- src/IconVoiceChatRounded.tsx | 2 +- src/IconVoiceChatRoundedFilled.tsx | 2 +- src/IconVoiceChatSharp.tsx | 2 +- src/IconVoiceChatSharpFilled.tsx | 2 +- src/IconVoiceOverOffOutlined.tsx | 2 +- src/IconVoiceOverOffOutlinedFilled.tsx | 2 +- src/IconVoiceOverOffRounded.tsx | 2 +- src/IconVoiceOverOffRoundedFilled.tsx | 2 +- src/IconVoiceOverOffSharp.tsx | 2 +- src/IconVoiceOverOffSharpFilled.tsx | 2 +- src/IconVoiceSelectionOffOutlined.tsx | 2 +- src/IconVoiceSelectionOffOutlinedFilled.tsx | 2 +- src/IconVoiceSelectionOffRounded.tsx | 2 +- src/IconVoiceSelectionOffRoundedFilled.tsx | 2 +- src/IconVoiceSelectionOffSharp.tsx | 2 +- src/IconVoiceSelectionOffSharpFilled.tsx | 2 +- src/IconVoiceSelectionOutlined.tsx | 2 +- src/IconVoiceSelectionOutlinedFilled.tsx | 2 +- src/IconVoiceSelectionRounded.tsx | 2 +- src/IconVoiceSelectionRoundedFilled.tsx | 2 +- src/IconVoiceSelectionSharp.tsx | 2 +- src/IconVoiceSelectionSharpFilled.tsx | 2 +- src/IconVoicemailOutlined.tsx | 2 +- src/IconVoicemailOutlinedFilled.tsx | 2 +- src/IconVoicemailRounded.tsx | 2 +- src/IconVoicemailRoundedFilled.tsx | 2 +- src/IconVoicemailSharp.tsx | 2 +- src/IconVoicemailSharpFilled.tsx | 2 +- src/IconVolcanoOutlined.tsx | 2 +- src/IconVolcanoOutlinedFilled.tsx | 2 +- src/IconVolcanoRounded.tsx | 2 +- src/IconVolcanoRoundedFilled.tsx | 2 +- src/IconVolcanoSharp.tsx | 2 +- src/IconVolcanoSharpFilled.tsx | 2 +- src/IconVolumeDownAltOutlined.tsx | 2 +- src/IconVolumeDownAltOutlinedFilled.tsx | 2 +- src/IconVolumeDownAltRounded.tsx | 2 +- src/IconVolumeDownAltRoundedFilled.tsx | 2 +- src/IconVolumeDownAltSharp.tsx | 2 +- src/IconVolumeDownAltSharpFilled.tsx | 2 +- src/IconVolumeDownOutlined.tsx | 2 +- src/IconVolumeDownOutlinedFilled.tsx | 2 +- src/IconVolumeDownRounded.tsx | 2 +- src/IconVolumeDownRoundedFilled.tsx | 2 +- src/IconVolumeDownSharp.tsx | 2 +- src/IconVolumeDownSharpFilled.tsx | 2 +- src/IconVolumeMuteOutlined.tsx | 2 +- src/IconVolumeMuteOutlinedFilled.tsx | 2 +- src/IconVolumeMuteRounded.tsx | 2 +- src/IconVolumeMuteRoundedFilled.tsx | 2 +- src/IconVolumeMuteSharp.tsx | 2 +- src/IconVolumeMuteSharpFilled.tsx | 2 +- src/IconVolumeOffOutlined.tsx | 2 +- src/IconVolumeOffOutlinedFilled.tsx | 2 +- src/IconVolumeOffRounded.tsx | 2 +- src/IconVolumeOffRoundedFilled.tsx | 2 +- src/IconVolumeOffSharp.tsx | 2 +- src/IconVolumeOffSharpFilled.tsx | 2 +- src/IconVolumeUpOutlined.tsx | 2 +- src/IconVolumeUpOutlinedFilled.tsx | 2 +- src/IconVolumeUpRounded.tsx | 2 +- src/IconVolumeUpRoundedFilled.tsx | 2 +- src/IconVolumeUpSharp.tsx | 2 +- src/IconVolumeUpSharpFilled.tsx | 2 +- src/IconVolunteerActivismOutlined.tsx | 2 +- src/IconVolunteerActivismOutlinedFilled.tsx | 2 +- src/IconVolunteerActivismRounded.tsx | 2 +- src/IconVolunteerActivismRoundedFilled.tsx | 2 +- src/IconVolunteerActivismSharp.tsx | 2 +- src/IconVolunteerActivismSharpFilled.tsx | 2 +- src/IconVotingChipOutlined.tsx | 2 +- src/IconVotingChipOutlinedFilled.tsx | 2 +- src/IconVotingChipRounded.tsx | 2 +- src/IconVotingChipRoundedFilled.tsx | 2 +- src/IconVotingChipSharp.tsx | 2 +- src/IconVotingChipSharpFilled.tsx | 2 +- src/IconVpnKeyAlertOutlined.tsx | 2 +- src/IconVpnKeyAlertOutlinedFilled.tsx | 2 +- src/IconVpnKeyAlertRounded.tsx | 2 +- src/IconVpnKeyAlertRoundedFilled.tsx | 2 +- src/IconVpnKeyAlertSharp.tsx | 2 +- src/IconVpnKeyAlertSharpFilled.tsx | 2 +- src/IconVpnKeyOffOutlined.tsx | 2 +- src/IconVpnKeyOffOutlinedFilled.tsx | 2 +- src/IconVpnKeyOffRounded.tsx | 2 +- src/IconVpnKeyOffRoundedFilled.tsx | 2 +- src/IconVpnKeyOffSharp.tsx | 2 +- src/IconVpnKeyOffSharpFilled.tsx | 2 +- src/IconVpnKeyOutlined.tsx | 2 +- src/IconVpnKeyOutlinedFilled.tsx | 2 +- src/IconVpnKeyRounded.tsx | 2 +- src/IconVpnKeyRoundedFilled.tsx | 2 +- src/IconVpnKeySharp.tsx | 2 +- src/IconVpnKeySharpFilled.tsx | 2 +- src/IconVpnLockOutlined.tsx | 2 +- src/IconVpnLockOutlinedFilled.tsx | 2 +- src/IconVpnLockRounded.tsx | 2 +- src/IconVpnLockRoundedFilled.tsx | 2 +- src/IconVpnLockSharp.tsx | 2 +- src/IconVpnLockSharpFilled.tsx | 2 +- src/IconVr180Create2dOffOutlined.tsx | 2 +- src/IconVr180Create2dOffOutlinedFilled.tsx | 2 +- src/IconVr180Create2dOffRounded.tsx | 2 +- src/IconVr180Create2dOffRoundedFilled.tsx | 2 +- src/IconVr180Create2dOffSharp.tsx | 2 +- src/IconVr180Create2dOffSharpFilled.tsx | 2 +- src/IconVr180Create2dOutlined.tsx | 2 +- src/IconVr180Create2dOutlinedFilled.tsx | 2 +- src/IconVr180Create2dRounded.tsx | 2 +- src/IconVr180Create2dRoundedFilled.tsx | 2 +- src/IconVr180Create2dSharp.tsx | 2 +- src/IconVr180Create2dSharpFilled.tsx | 2 +- src/IconVrpanoOutlined.tsx | 2 +- src/IconVrpanoOutlinedFilled.tsx | 2 +- src/IconVrpanoRounded.tsx | 2 +- src/IconVrpanoRoundedFilled.tsx | 2 +- src/IconVrpanoSharp.tsx | 2 +- src/IconVrpanoSharpFilled.tsx | 2 +- src/IconWallArtOutlined.tsx | 2 +- src/IconWallArtOutlinedFilled.tsx | 2 +- src/IconWallArtRounded.tsx | 2 +- src/IconWallArtRoundedFilled.tsx | 2 +- src/IconWallArtSharp.tsx | 2 +- src/IconWallArtSharpFilled.tsx | 2 +- src/IconWallLampOutlined.tsx | 2 +- src/IconWallLampOutlinedFilled.tsx | 2 +- src/IconWallLampRounded.tsx | 2 +- src/IconWallLampRoundedFilled.tsx | 2 +- src/IconWallLampSharp.tsx | 2 +- src/IconWallLampSharpFilled.tsx | 2 +- src/IconWalletOutlined.tsx | 2 +- src/IconWalletOutlinedFilled.tsx | 2 +- src/IconWalletRounded.tsx | 2 +- src/IconWalletRoundedFilled.tsx | 2 +- src/IconWalletSharp.tsx | 2 +- src/IconWalletSharpFilled.tsx | 2 +- src/IconWallpaperOutlined.tsx | 2 +- src/IconWallpaperOutlinedFilled.tsx | 2 +- src/IconWallpaperRounded.tsx | 2 +- src/IconWallpaperRoundedFilled.tsx | 2 +- src/IconWallpaperSharp.tsx | 2 +- src/IconWallpaperSharpFilled.tsx | 2 +- src/IconWallpaperSlideshowOutlined.tsx | 2 +- src/IconWallpaperSlideshowOutlinedFilled.tsx | 2 +- src/IconWallpaperSlideshowRounded.tsx | 2 +- src/IconWallpaperSlideshowRoundedFilled.tsx | 2 +- src/IconWallpaperSlideshowSharp.tsx | 2 +- src/IconWallpaperSlideshowSharpFilled.tsx | 2 +- src/IconWardOutlined.tsx | 2 +- src/IconWardOutlinedFilled.tsx | 2 +- src/IconWardRounded.tsx | 2 +- src/IconWardRoundedFilled.tsx | 2 +- src/IconWardSharp.tsx | 2 +- src/IconWardSharpFilled.tsx | 2 +- src/IconWarehouseOutlined.tsx | 2 +- src/IconWarehouseOutlinedFilled.tsx | 2 +- src/IconWarehouseRounded.tsx | 2 +- src/IconWarehouseRoundedFilled.tsx | 2 +- src/IconWarehouseSharp.tsx | 2 +- src/IconWarehouseSharpFilled.tsx | 2 +- src/IconWarningOffOutlined.tsx | 2 +- src/IconWarningOffOutlinedFilled.tsx | 2 +- src/IconWarningOffRounded.tsx | 2 +- src/IconWarningOffRoundedFilled.tsx | 2 +- src/IconWarningOffSharp.tsx | 2 +- src/IconWarningOffSharpFilled.tsx | 2 +- src/IconWarningOutlined.tsx | 2 +- src/IconWarningOutlinedFilled.tsx | 2 +- src/IconWarningRounded.tsx | 2 +- src/IconWarningRoundedFilled.tsx | 2 +- src/IconWarningSharp.tsx | 2 +- src/IconWarningSharpFilled.tsx | 2 +- src/IconWashOutlined.tsx | 2 +- src/IconWashOutlinedFilled.tsx | 2 +- src/IconWashRounded.tsx | 2 +- src/IconWashRoundedFilled.tsx | 2 +- src/IconWashSharp.tsx | 2 +- src/IconWashSharpFilled.tsx | 2 +- src/IconWatchButtonPressOutlined.tsx | 2 +- src/IconWatchButtonPressOutlinedFilled.tsx | 2 +- src/IconWatchButtonPressRounded.tsx | 2 +- src/IconWatchButtonPressRoundedFilled.tsx | 2 +- src/IconWatchButtonPressSharp.tsx | 2 +- src/IconWatchButtonPressSharpFilled.tsx | 2 +- src/IconWatchCheckOutlined.tsx | 2 +- src/IconWatchCheckOutlinedFilled.tsx | 2 +- src/IconWatchCheckRounded.tsx | 2 +- src/IconWatchCheckRoundedFilled.tsx | 2 +- src/IconWatchCheckSharp.tsx | 2 +- src/IconWatchCheckSharpFilled.tsx | 2 +- src/IconWatchOffOutlined.tsx | 2 +- src/IconWatchOffOutlinedFilled.tsx | 2 +- src/IconWatchOffRounded.tsx | 2 +- src/IconWatchOffRoundedFilled.tsx | 2 +- src/IconWatchOffSharp.tsx | 2 +- src/IconWatchOffSharpFilled.tsx | 2 +- src/IconWatchOutlined.tsx | 2 +- src/IconWatchOutlinedFilled.tsx | 2 +- src/IconWatchRounded.tsx | 2 +- src/IconWatchRoundedFilled.tsx | 2 +- src/IconWatchScreentimeOutlined.tsx | 2 +- src/IconWatchScreentimeOutlinedFilled.tsx | 2 +- src/IconWatchScreentimeRounded.tsx | 2 +- src/IconWatchScreentimeRoundedFilled.tsx | 2 +- src/IconWatchScreentimeSharp.tsx | 2 +- src/IconWatchScreentimeSharpFilled.tsx | 2 +- src/IconWatchSharp.tsx | 2 +- src/IconWatchSharpFilled.tsx | 2 +- src/IconWatchVibrationOutlined.tsx | 2 +- src/IconWatchVibrationOutlinedFilled.tsx | 2 +- src/IconWatchVibrationRounded.tsx | 2 +- src/IconWatchVibrationRoundedFilled.tsx | 2 +- src/IconWatchVibrationSharp.tsx | 2 +- src/IconWatchVibrationSharpFilled.tsx | 2 +- src/IconWatchWakeOutlined.tsx | 2 +- src/IconWatchWakeOutlinedFilled.tsx | 2 +- src/IconWatchWakeRounded.tsx | 2 +- src/IconWatchWakeRoundedFilled.tsx | 2 +- src/IconWatchWakeSharp.tsx | 2 +- src/IconWatchWakeSharpFilled.tsx | 2 +- src/IconWaterBottleLargeOutlined.tsx | 2 +- src/IconWaterBottleLargeOutlinedFilled.tsx | 2 +- src/IconWaterBottleLargeRounded.tsx | 2 +- src/IconWaterBottleLargeRoundedFilled.tsx | 2 +- src/IconWaterBottleLargeSharp.tsx | 2 +- src/IconWaterBottleLargeSharpFilled.tsx | 2 +- src/IconWaterBottleOutlined.tsx | 2 +- src/IconWaterBottleOutlinedFilled.tsx | 2 +- src/IconWaterBottleRounded.tsx | 2 +- src/IconWaterBottleRoundedFilled.tsx | 2 +- src/IconWaterBottleSharp.tsx | 2 +- src/IconWaterBottleSharpFilled.tsx | 2 +- src/IconWaterDamageOutlined.tsx | 2 +- src/IconWaterDamageOutlinedFilled.tsx | 2 +- src/IconWaterDamageRounded.tsx | 2 +- src/IconWaterDamageRoundedFilled.tsx | 2 +- src/IconWaterDamageSharp.tsx | 2 +- src/IconWaterDamageSharpFilled.tsx | 2 +- src/IconWaterDoOutlined.tsx | 2 +- src/IconWaterDoOutlinedFilled.tsx | 2 +- src/IconWaterDoRounded.tsx | 2 +- src/IconWaterDoRoundedFilled.tsx | 2 +- src/IconWaterDoSharp.tsx | 2 +- src/IconWaterDoSharpFilled.tsx | 2 +- src/IconWaterDropOutlined.tsx | 2 +- src/IconWaterDropOutlinedFilled.tsx | 2 +- src/IconWaterDropRounded.tsx | 2 +- src/IconWaterDropRoundedFilled.tsx | 2 +- src/IconWaterDropSharp.tsx | 2 +- src/IconWaterDropSharpFilled.tsx | 2 +- src/IconWaterEcOutlined.tsx | 2 +- src/IconWaterEcOutlinedFilled.tsx | 2 +- src/IconWaterEcRounded.tsx | 2 +- src/IconWaterEcRoundedFilled.tsx | 2 +- src/IconWaterEcSharp.tsx | 2 +- src/IconWaterEcSharpFilled.tsx | 2 +- src/IconWaterFullOutlined.tsx | 2 +- src/IconWaterFullOutlinedFilled.tsx | 2 +- src/IconWaterFullRounded.tsx | 2 +- src/IconWaterFullRoundedFilled.tsx | 2 +- src/IconWaterFullSharp.tsx | 2 +- src/IconWaterFullSharpFilled.tsx | 2 +- src/IconWaterHeaterOutlined.tsx | 2 +- src/IconWaterHeaterOutlinedFilled.tsx | 2 +- src/IconWaterHeaterRounded.tsx | 2 +- src/IconWaterHeaterRoundedFilled.tsx | 2 +- src/IconWaterHeaterSharp.tsx | 2 +- src/IconWaterHeaterSharpFilled.tsx | 2 +- src/IconWaterLockOutlined.tsx | 2 +- src/IconWaterLockOutlinedFilled.tsx | 2 +- src/IconWaterLockRounded.tsx | 2 +- src/IconWaterLockRoundedFilled.tsx | 2 +- src/IconWaterLockSharp.tsx | 2 +- src/IconWaterLockSharpFilled.tsx | 2 +- src/IconWaterLossOutlined.tsx | 2 +- src/IconWaterLossOutlinedFilled.tsx | 2 +- src/IconWaterLossRounded.tsx | 2 +- src/IconWaterLossRoundedFilled.tsx | 2 +- src/IconWaterLossSharp.tsx | 2 +- src/IconWaterLossSharpFilled.tsx | 2 +- src/IconWaterLuxOutlined.tsx | 2 +- src/IconWaterLuxOutlinedFilled.tsx | 2 +- src/IconWaterLuxRounded.tsx | 2 +- src/IconWaterLuxRoundedFilled.tsx | 2 +- src/IconWaterLuxSharp.tsx | 2 +- src/IconWaterLuxSharpFilled.tsx | 2 +- src/IconWaterMediumOutlined.tsx | 2 +- src/IconWaterMediumOutlinedFilled.tsx | 2 +- src/IconWaterMediumRounded.tsx | 2 +- src/IconWaterMediumRoundedFilled.tsx | 2 +- src/IconWaterMediumSharp.tsx | 2 +- src/IconWaterMediumSharpFilled.tsx | 2 +- src/IconWaterOrpOutlined.tsx | 2 +- src/IconWaterOrpOutlinedFilled.tsx | 2 +- src/IconWaterOrpRounded.tsx | 2 +- src/IconWaterOrpRoundedFilled.tsx | 2 +- src/IconWaterOrpSharp.tsx | 2 +- src/IconWaterOrpSharpFilled.tsx | 2 +- src/IconWaterOutlined.tsx | 2 +- src/IconWaterOutlinedFilled.tsx | 2 +- src/IconWaterPhOutlined.tsx | 2 +- src/IconWaterPhOutlinedFilled.tsx | 2 +- src/IconWaterPhRounded.tsx | 2 +- src/IconWaterPhRoundedFilled.tsx | 2 +- src/IconWaterPhSharp.tsx | 2 +- src/IconWaterPhSharpFilled.tsx | 2 +- src/IconWaterPumpOutlined.tsx | 2 +- src/IconWaterPumpOutlinedFilled.tsx | 2 +- src/IconWaterPumpRounded.tsx | 2 +- src/IconWaterPumpRoundedFilled.tsx | 2 +- src/IconWaterPumpSharp.tsx | 2 +- src/IconWaterPumpSharpFilled.tsx | 2 +- src/IconWaterRounded.tsx | 2 +- src/IconWaterRoundedFilled.tsx | 2 +- src/IconWaterSharp.tsx | 2 +- src/IconWaterSharpFilled.tsx | 2 +- src/IconWaterVocOutlined.tsx | 2 +- src/IconWaterVocOutlinedFilled.tsx | 2 +- src/IconWaterVocRounded.tsx | 2 +- src/IconWaterVocRoundedFilled.tsx | 2 +- src/IconWaterVocSharp.tsx | 2 +- src/IconWaterVocSharpFilled.tsx | 2 +- src/IconWaterfallChartOutlined.tsx | 2 +- src/IconWaterfallChartOutlinedFilled.tsx | 2 +- src/IconWaterfallChartRounded.tsx | 2 +- src/IconWaterfallChartRoundedFilled.tsx | 2 +- src/IconWaterfallChartSharp.tsx | 2 +- src/IconWaterfallChartSharpFilled.tsx | 2 +- src/IconWavesOutlined.tsx | 2 +- src/IconWavesOutlinedFilled.tsx | 2 +- src/IconWavesRounded.tsx | 2 +- src/IconWavesRoundedFilled.tsx | 2 +- src/IconWavesSharp.tsx | 2 +- src/IconWavesSharpFilled.tsx | 2 +- src/IconWavingHandOutlined.tsx | 2 +- src/IconWavingHandOutlinedFilled.tsx | 2 +- src/IconWavingHandRounded.tsx | 2 +- src/IconWavingHandRoundedFilled.tsx | 2 +- src/IconWavingHandSharp.tsx | 2 +- src/IconWavingHandSharpFilled.tsx | 2 +- src/IconWbAutoOutlined.tsx | 2 +- src/IconWbAutoOutlinedFilled.tsx | 2 +- src/IconWbAutoRounded.tsx | 2 +- src/IconWbAutoRoundedFilled.tsx | 2 +- src/IconWbAutoSharp.tsx | 2 +- src/IconWbAutoSharpFilled.tsx | 2 +- src/IconWbIncandescentOutlined.tsx | 2 +- src/IconWbIncandescentOutlinedFilled.tsx | 2 +- src/IconWbIncandescentRounded.tsx | 2 +- src/IconWbIncandescentRoundedFilled.tsx | 2 +- src/IconWbIncandescentSharp.tsx | 2 +- src/IconWbIncandescentSharpFilled.tsx | 2 +- src/IconWbIridescentOutlined.tsx | 2 +- src/IconWbIridescentOutlinedFilled.tsx | 2 +- src/IconWbIridescentRounded.tsx | 2 +- src/IconWbIridescentRoundedFilled.tsx | 2 +- src/IconWbIridescentSharp.tsx | 2 +- src/IconWbIridescentSharpFilled.tsx | 2 +- src/IconWbShadeOutlined.tsx | 2 +- src/IconWbShadeOutlinedFilled.tsx | 2 +- src/IconWbShadeRounded.tsx | 2 +- src/IconWbShadeRoundedFilled.tsx | 2 +- src/IconWbShadeSharp.tsx | 2 +- src/IconWbShadeSharpFilled.tsx | 2 +- src/IconWbSunnyOutlined.tsx | 2 +- src/IconWbSunnyOutlinedFilled.tsx | 2 +- src/IconWbSunnyRounded.tsx | 2 +- src/IconWbSunnyRoundedFilled.tsx | 2 +- src/IconWbSunnySharp.tsx | 2 +- src/IconWbSunnySharpFilled.tsx | 2 +- src/IconWbTwilightOutlined.tsx | 2 +- src/IconWbTwilightOutlinedFilled.tsx | 2 +- src/IconWbTwilightRounded.tsx | 2 +- src/IconWbTwilightRoundedFilled.tsx | 2 +- src/IconWbTwilightSharp.tsx | 2 +- src/IconWbTwilightSharpFilled.tsx | 2 +- src/IconWcOutlined.tsx | 2 +- src/IconWcOutlinedFilled.tsx | 2 +- src/IconWcRounded.tsx | 2 +- src/IconWcRoundedFilled.tsx | 2 +- src/IconWcSharp.tsx | 2 +- src/IconWcSharpFilled.tsx | 2 +- src/IconWeatherHailOutlined.tsx | 2 +- src/IconWeatherHailOutlinedFilled.tsx | 2 +- src/IconWeatherHailRounded.tsx | 2 +- src/IconWeatherHailRoundedFilled.tsx | 2 +- src/IconWeatherHailSharp.tsx | 2 +- src/IconWeatherHailSharpFilled.tsx | 2 +- src/IconWeatherMixOutlined.tsx | 2 +- src/IconWeatherMixOutlinedFilled.tsx | 2 +- src/IconWeatherMixRounded.tsx | 2 +- src/IconWeatherMixRoundedFilled.tsx | 2 +- src/IconWeatherMixSharp.tsx | 2 +- src/IconWeatherMixSharpFilled.tsx | 2 +- src/IconWeatherSnowyOutlined.tsx | 2 +- src/IconWeatherSnowyOutlinedFilled.tsx | 2 +- src/IconWeatherSnowyRounded.tsx | 2 +- src/IconWeatherSnowyRoundedFilled.tsx | 2 +- src/IconWeatherSnowySharp.tsx | 2 +- src/IconWeatherSnowySharpFilled.tsx | 2 +- src/IconWebAssetOffOutlined.tsx | 2 +- src/IconWebAssetOffOutlinedFilled.tsx | 2 +- src/IconWebAssetOffRounded.tsx | 2 +- src/IconWebAssetOffRoundedFilled.tsx | 2 +- src/IconWebAssetOffSharp.tsx | 2 +- src/IconWebAssetOffSharpFilled.tsx | 2 +- src/IconWebAssetOutlined.tsx | 2 +- src/IconWebAssetOutlinedFilled.tsx | 2 +- src/IconWebAssetRounded.tsx | 2 +- src/IconWebAssetRoundedFilled.tsx | 2 +- src/IconWebAssetSharp.tsx | 2 +- src/IconWebAssetSharpFilled.tsx | 2 +- src/IconWebOutlined.tsx | 2 +- src/IconWebOutlinedFilled.tsx | 2 +- src/IconWebRounded.tsx | 2 +- src/IconWebRoundedFilled.tsx | 2 +- src/IconWebSharp.tsx | 2 +- src/IconWebSharpFilled.tsx | 2 +- src/IconWebStoriesOutlined.tsx | 2 +- src/IconWebStoriesOutlinedFilled.tsx | 2 +- src/IconWebStoriesRounded.tsx | 2 +- src/IconWebStoriesRoundedFilled.tsx | 2 +- src/IconWebStoriesSharp.tsx | 2 +- src/IconWebStoriesSharpFilled.tsx | 2 +- src/IconWebTrafficOutlined.tsx | 2 +- src/IconWebTrafficOutlinedFilled.tsx | 2 +- src/IconWebTrafficRounded.tsx | 2 +- src/IconWebTrafficRoundedFilled.tsx | 2 +- src/IconWebTrafficSharp.tsx | 2 +- src/IconWebTrafficSharpFilled.tsx | 2 +- src/IconWebhookOutlined.tsx | 2 +- src/IconWebhookOutlinedFilled.tsx | 2 +- src/IconWebhookRounded.tsx | 2 +- src/IconWebhookRoundedFilled.tsx | 2 +- src/IconWebhookSharp.tsx | 2 +- src/IconWebhookSharpFilled.tsx | 2 +- src/IconWeekendOutlined.tsx | 2 +- src/IconWeekendOutlinedFilled.tsx | 2 +- src/IconWeekendRounded.tsx | 2 +- src/IconWeekendRoundedFilled.tsx | 2 +- src/IconWeekendSharp.tsx | 2 +- src/IconWeekendSharpFilled.tsx | 2 +- src/IconWeightOutlined.tsx | 2 +- src/IconWeightOutlinedFilled.tsx | 2 +- src/IconWeightRounded.tsx | 2 +- src/IconWeightRoundedFilled.tsx | 2 +- src/IconWeightSharp.tsx | 2 +- src/IconWeightSharpFilled.tsx | 2 +- src/IconWestOutlined.tsx | 2 +- src/IconWestOutlinedFilled.tsx | 2 +- src/IconWestRounded.tsx | 2 +- src/IconWestRoundedFilled.tsx | 2 +- src/IconWestSharp.tsx | 2 +- src/IconWestSharpFilled.tsx | 2 +- src/IconWhatshotOutlined.tsx | 2 +- src/IconWhatshotOutlinedFilled.tsx | 2 +- src/IconWhatshotRounded.tsx | 2 +- src/IconWhatshotRoundedFilled.tsx | 2 +- src/IconWhatshotSharp.tsx | 2 +- src/IconWhatshotSharpFilled.tsx | 2 +- src/IconWheelchairPickupOutlined.tsx | 2 +- src/IconWheelchairPickupOutlinedFilled.tsx | 2 +- src/IconWheelchairPickupRounded.tsx | 2 +- src/IconWheelchairPickupRoundedFilled.tsx | 2 +- src/IconWheelchairPickupSharp.tsx | 2 +- src/IconWheelchairPickupSharpFilled.tsx | 2 +- src/IconWhereToVoteOutlined.tsx | 2 +- src/IconWhereToVoteOutlinedFilled.tsx | 2 +- src/IconWhereToVoteRounded.tsx | 2 +- src/IconWhereToVoteRoundedFilled.tsx | 2 +- src/IconWhereToVoteSharp.tsx | 2 +- src/IconWhereToVoteSharpFilled.tsx | 2 +- src/IconWidgetsOutlined.tsx | 2 +- src/IconWidgetsOutlinedFilled.tsx | 2 +- src/IconWidgetsRounded.tsx | 2 +- src/IconWidgetsRoundedFilled.tsx | 2 +- src/IconWidgetsSharp.tsx | 2 +- src/IconWidgetsSharpFilled.tsx | 2 +- src/IconWidthFullOutlined.tsx | 2 +- src/IconWidthFullOutlinedFilled.tsx | 2 +- src/IconWidthFullRounded.tsx | 2 +- src/IconWidthFullRoundedFilled.tsx | 2 +- src/IconWidthFullSharp.tsx | 2 +- src/IconWidthFullSharpFilled.tsx | 2 +- src/IconWidthNormalOutlined.tsx | 2 +- src/IconWidthNormalOutlinedFilled.tsx | 2 +- src/IconWidthNormalRounded.tsx | 2 +- src/IconWidthNormalRoundedFilled.tsx | 2 +- src/IconWidthNormalSharp.tsx | 2 +- src/IconWidthNormalSharpFilled.tsx | 2 +- src/IconWidthOutlined.tsx | 2 +- src/IconWidthOutlinedFilled.tsx | 2 +- src/IconWidthRounded.tsx | 2 +- src/IconWidthRoundedFilled.tsx | 2 +- src/IconWidthSharp.tsx | 2 +- src/IconWidthSharpFilled.tsx | 2 +- src/IconWidthWideOutlined.tsx | 2 +- src/IconWidthWideOutlinedFilled.tsx | 2 +- src/IconWidthWideRounded.tsx | 2 +- src/IconWidthWideRoundedFilled.tsx | 2 +- src/IconWidthWideSharp.tsx | 2 +- src/IconWidthWideSharpFilled.tsx | 2 +- src/IconWifi1BarOutlined.tsx | 2 +- src/IconWifi1BarOutlinedFilled.tsx | 2 +- src/IconWifi1BarRounded.tsx | 2 +- src/IconWifi1BarRoundedFilled.tsx | 2 +- src/IconWifi1BarSharp.tsx | 2 +- src/IconWifi1BarSharpFilled.tsx | 2 +- src/IconWifi2BarOutlined.tsx | 2 +- src/IconWifi2BarOutlinedFilled.tsx | 2 +- src/IconWifi2BarRounded.tsx | 2 +- src/IconWifi2BarRoundedFilled.tsx | 2 +- src/IconWifi2BarSharp.tsx | 2 +- src/IconWifi2BarSharpFilled.tsx | 2 +- src/IconWifiAddOutlined.tsx | 2 +- src/IconWifiAddOutlinedFilled.tsx | 2 +- src/IconWifiAddRounded.tsx | 2 +- src/IconWifiAddRoundedFilled.tsx | 2 +- src/IconWifiAddSharp.tsx | 2 +- src/IconWifiAddSharpFilled.tsx | 2 +- src/IconWifiCallingBar1Outlined.tsx | 2 +- src/IconWifiCallingBar1OutlinedFilled.tsx | 2 +- src/IconWifiCallingBar1Rounded.tsx | 2 +- src/IconWifiCallingBar1RoundedFilled.tsx | 2 +- src/IconWifiCallingBar1Sharp.tsx | 2 +- src/IconWifiCallingBar1SharpFilled.tsx | 2 +- src/IconWifiCallingBar2Outlined.tsx | 2 +- src/IconWifiCallingBar2OutlinedFilled.tsx | 2 +- src/IconWifiCallingBar2Rounded.tsx | 2 +- src/IconWifiCallingBar2RoundedFilled.tsx | 2 +- src/IconWifiCallingBar2Sharp.tsx | 2 +- src/IconWifiCallingBar2SharpFilled.tsx | 2 +- src/IconWifiCallingBar3Outlined.tsx | 2 +- src/IconWifiCallingBar3OutlinedFilled.tsx | 2 +- src/IconWifiCallingBar3Rounded.tsx | 2 +- src/IconWifiCallingBar3RoundedFilled.tsx | 2 +- src/IconWifiCallingBar3Sharp.tsx | 2 +- src/IconWifiCallingBar3SharpFilled.tsx | 2 +- src/IconWifiCallingOutlined.tsx | 2 +- src/IconWifiCallingOutlinedFilled.tsx | 2 +- src/IconWifiCallingRounded.tsx | 2 +- src/IconWifiCallingRoundedFilled.tsx | 2 +- src/IconWifiCallingSharp.tsx | 2 +- src/IconWifiCallingSharpFilled.tsx | 2 +- src/IconWifiChannelOutlined.tsx | 2 +- src/IconWifiChannelOutlinedFilled.tsx | 2 +- src/IconWifiChannelRounded.tsx | 2 +- src/IconWifiChannelRoundedFilled.tsx | 2 +- src/IconWifiChannelSharp.tsx | 2 +- src/IconWifiChannelSharpFilled.tsx | 2 +- src/IconWifiFindOutlined.tsx | 2 +- src/IconWifiFindOutlinedFilled.tsx | 2 +- src/IconWifiFindRounded.tsx | 2 +- src/IconWifiFindRoundedFilled.tsx | 2 +- src/IconWifiFindSharp.tsx | 2 +- src/IconWifiFindSharpFilled.tsx | 2 +- src/IconWifiHomeOutlined.tsx | 2 +- src/IconWifiHomeOutlinedFilled.tsx | 2 +- src/IconWifiHomeRounded.tsx | 2 +- src/IconWifiHomeRoundedFilled.tsx | 2 +- src/IconWifiHomeSharp.tsx | 2 +- src/IconWifiHomeSharpFilled.tsx | 2 +- src/IconWifiLockOutlined.tsx | 2 +- src/IconWifiLockOutlinedFilled.tsx | 2 +- src/IconWifiLockRounded.tsx | 2 +- src/IconWifiLockRoundedFilled.tsx | 2 +- src/IconWifiLockSharp.tsx | 2 +- src/IconWifiLockSharpFilled.tsx | 2 +- src/IconWifiNotificationOutlined.tsx | 2 +- src/IconWifiNotificationOutlinedFilled.tsx | 2 +- src/IconWifiNotificationRounded.tsx | 2 +- src/IconWifiNotificationRoundedFilled.tsx | 2 +- src/IconWifiNotificationSharp.tsx | 2 +- src/IconWifiNotificationSharpFilled.tsx | 2 +- src/IconWifiOffOutlined.tsx | 2 +- src/IconWifiOffOutlinedFilled.tsx | 2 +- src/IconWifiOffRounded.tsx | 2 +- src/IconWifiOffRoundedFilled.tsx | 2 +- src/IconWifiOffSharp.tsx | 2 +- src/IconWifiOffSharpFilled.tsx | 2 +- src/IconWifiOutlined.tsx | 2 +- src/IconWifiOutlinedFilled.tsx | 2 +- src/IconWifiPasswordOutlined.tsx | 2 +- src/IconWifiPasswordOutlinedFilled.tsx | 2 +- src/IconWifiPasswordRounded.tsx | 2 +- src/IconWifiPasswordRoundedFilled.tsx | 2 +- src/IconWifiPasswordSharp.tsx | 2 +- src/IconWifiPasswordSharpFilled.tsx | 2 +- src/IconWifiProtectedSetupOutlined.tsx | 2 +- src/IconWifiProtectedSetupOutlinedFilled.tsx | 2 +- src/IconWifiProtectedSetupRounded.tsx | 2 +- src/IconWifiProtectedSetupRoundedFilled.tsx | 2 +- src/IconWifiProtectedSetupSharp.tsx | 2 +- src/IconWifiProtectedSetupSharpFilled.tsx | 2 +- src/IconWifiProxyOutlined.tsx | 2 +- src/IconWifiProxyOutlinedFilled.tsx | 2 +- src/IconWifiProxyRounded.tsx | 2 +- src/IconWifiProxyRoundedFilled.tsx | 2 +- src/IconWifiProxySharp.tsx | 2 +- src/IconWifiProxySharpFilled.tsx | 2 +- src/IconWifiRounded.tsx | 2 +- src/IconWifiRoundedFilled.tsx | 2 +- src/IconWifiSharp.tsx | 2 +- src/IconWifiSharpFilled.tsx | 2 +- src/IconWifiTetheringErrorOutlined.tsx | 2 +- src/IconWifiTetheringErrorOutlinedFilled.tsx | 2 +- src/IconWifiTetheringErrorRounded.tsx | 2 +- src/IconWifiTetheringErrorRoundedFilled.tsx | 2 +- src/IconWifiTetheringErrorSharp.tsx | 2 +- src/IconWifiTetheringErrorSharpFilled.tsx | 2 +- src/IconWifiTetheringOffOutlined.tsx | 2 +- src/IconWifiTetheringOffOutlinedFilled.tsx | 2 +- src/IconWifiTetheringOffRounded.tsx | 2 +- src/IconWifiTetheringOffRoundedFilled.tsx | 2 +- src/IconWifiTetheringOffSharp.tsx | 2 +- src/IconWifiTetheringOffSharpFilled.tsx | 2 +- src/IconWifiTetheringOutlined.tsx | 2 +- src/IconWifiTetheringOutlinedFilled.tsx | 2 +- src/IconWifiTetheringRounded.tsx | 2 +- src/IconWifiTetheringRoundedFilled.tsx | 2 +- src/IconWifiTetheringSharp.tsx | 2 +- src/IconWifiTetheringSharpFilled.tsx | 2 +- src/IconWindPowerOutlined.tsx | 2 +- src/IconWindPowerOutlinedFilled.tsx | 2 +- src/IconWindPowerRounded.tsx | 2 +- src/IconWindPowerRoundedFilled.tsx | 2 +- src/IconWindPowerSharp.tsx | 2 +- src/IconWindPowerSharpFilled.tsx | 2 +- src/IconWindowClosedOutlined.tsx | 2 +- src/IconWindowClosedOutlinedFilled.tsx | 2 +- src/IconWindowClosedRounded.tsx | 2 +- src/IconWindowClosedRoundedFilled.tsx | 2 +- src/IconWindowClosedSharp.tsx | 2 +- src/IconWindowClosedSharpFilled.tsx | 2 +- src/IconWindowOpenOutlined.tsx | 2 +- src/IconWindowOpenOutlinedFilled.tsx | 2 +- src/IconWindowOpenRounded.tsx | 2 +- src/IconWindowOpenRoundedFilled.tsx | 2 +- src/IconWindowOpenSharp.tsx | 2 +- src/IconWindowOpenSharpFilled.tsx | 2 +- src/IconWindowOutlined.tsx | 2 +- src/IconWindowOutlinedFilled.tsx | 2 +- src/IconWindowRounded.tsx | 2 +- src/IconWindowRoundedFilled.tsx | 2 +- src/IconWindowSensorOutlined.tsx | 2 +- src/IconWindowSensorOutlinedFilled.tsx | 2 +- src/IconWindowSensorRounded.tsx | 2 +- src/IconWindowSensorRoundedFilled.tsx | 2 +- src/IconWindowSensorSharp.tsx | 2 +- src/IconWindowSensorSharpFilled.tsx | 2 +- src/IconWindowSharp.tsx | 2 +- src/IconWindowSharpFilled.tsx | 2 +- src/IconWineBarOutlined.tsx | 2 +- src/IconWineBarOutlinedFilled.tsx | 2 +- src/IconWineBarRounded.tsx | 2 +- src/IconWineBarRoundedFilled.tsx | 2 +- src/IconWineBarSharp.tsx | 2 +- src/IconWineBarSharpFilled.tsx | 2 +- src/IconWoman2Outlined.tsx | 2 +- src/IconWoman2OutlinedFilled.tsx | 2 +- src/IconWoman2Rounded.tsx | 2 +- src/IconWoman2RoundedFilled.tsx | 2 +- src/IconWoman2Sharp.tsx | 2 +- src/IconWoman2SharpFilled.tsx | 2 +- src/IconWomanOutlined.tsx | 2 +- src/IconWomanOutlinedFilled.tsx | 2 +- src/IconWomanRounded.tsx | 2 +- src/IconWomanRoundedFilled.tsx | 2 +- src/IconWomanSharp.tsx | 2 +- src/IconWomanSharpFilled.tsx | 2 +- src/IconWorkAlertOutlined.tsx | 2 +- src/IconWorkAlertOutlinedFilled.tsx | 2 +- src/IconWorkAlertRounded.tsx | 2 +- src/IconWorkAlertRoundedFilled.tsx | 2 +- src/IconWorkAlertSharp.tsx | 2 +- src/IconWorkAlertSharpFilled.tsx | 2 +- src/IconWorkHistoryOutlined.tsx | 2 +- src/IconWorkHistoryOutlinedFilled.tsx | 2 +- src/IconWorkHistoryRounded.tsx | 2 +- src/IconWorkHistoryRoundedFilled.tsx | 2 +- src/IconWorkHistorySharp.tsx | 2 +- src/IconWorkHistorySharpFilled.tsx | 2 +- src/IconWorkOutlined.tsx | 2 +- src/IconWorkOutlinedFilled.tsx | 2 +- src/IconWorkRounded.tsx | 2 +- src/IconWorkRoundedFilled.tsx | 2 +- src/IconWorkSharp.tsx | 2 +- src/IconWorkSharpFilled.tsx | 2 +- src/IconWorkUpdateOutlined.tsx | 2 +- src/IconWorkUpdateOutlinedFilled.tsx | 2 +- src/IconWorkUpdateRounded.tsx | 2 +- src/IconWorkUpdateRoundedFilled.tsx | 2 +- src/IconWorkUpdateSharp.tsx | 2 +- src/IconWorkUpdateSharpFilled.tsx | 2 +- src/IconWorkspacePremiumOutlined.tsx | 2 +- src/IconWorkspacePremiumOutlinedFilled.tsx | 2 +- src/IconWorkspacePremiumRounded.tsx | 2 +- src/IconWorkspacePremiumRoundedFilled.tsx | 2 +- src/IconWorkspacePremiumSharp.tsx | 2 +- src/IconWorkspacePremiumSharpFilled.tsx | 2 +- src/IconWorkspacesOutlined.tsx | 2 +- src/IconWorkspacesOutlinedFilled.tsx | 2 +- src/IconWorkspacesRounded.tsx | 2 +- src/IconWorkspacesRoundedFilled.tsx | 2 +- src/IconWorkspacesSharp.tsx | 2 +- src/IconWorkspacesSharpFilled.tsx | 2 +- src/IconWoundsInjuriesOutlined.tsx | 2 +- src/IconWoundsInjuriesOutlinedFilled.tsx | 2 +- src/IconWoundsInjuriesRounded.tsx | 2 +- src/IconWoundsInjuriesRoundedFilled.tsx | 2 +- src/IconWoundsInjuriesSharp.tsx | 2 +- src/IconWoundsInjuriesSharpFilled.tsx | 2 +- src/IconWrapTextOutlined.tsx | 2 +- src/IconWrapTextOutlinedFilled.tsx | 2 +- src/IconWrapTextRounded.tsx | 2 +- src/IconWrapTextRoundedFilled.tsx | 2 +- src/IconWrapTextSharp.tsx | 2 +- src/IconWrapTextSharpFilled.tsx | 2 +- src/IconWristOutlined.tsx | 2 +- src/IconWristOutlinedFilled.tsx | 2 +- src/IconWristRounded.tsx | 2 +- src/IconWristRoundedFilled.tsx | 2 +- src/IconWristSharp.tsx | 2 +- src/IconWristSharpFilled.tsx | 2 +- src/IconWrongLocationOutlined.tsx | 2 +- src/IconWrongLocationOutlinedFilled.tsx | 2 +- src/IconWrongLocationRounded.tsx | 2 +- src/IconWrongLocationRoundedFilled.tsx | 2 +- src/IconWrongLocationSharp.tsx | 2 +- src/IconWrongLocationSharpFilled.tsx | 2 +- src/IconWysiwygOutlined.tsx | 2 +- src/IconWysiwygOutlinedFilled.tsx | 2 +- src/IconWysiwygRounded.tsx | 2 +- src/IconWysiwygRoundedFilled.tsx | 2 +- src/IconWysiwygSharp.tsx | 2 +- src/IconWysiwygSharpFilled.tsx | 2 +- src/IconYardOutlined.tsx | 2 +- src/IconYardOutlinedFilled.tsx | 2 +- src/IconYardRounded.tsx | 2 +- src/IconYardRoundedFilled.tsx | 2 +- src/IconYardSharp.tsx | 2 +- src/IconYardSharpFilled.tsx | 2 +- src/IconYourTripsOutlined.tsx | 2 +- src/IconYourTripsOutlinedFilled.tsx | 2 +- src/IconYourTripsRounded.tsx | 2 +- src/IconYourTripsRoundedFilled.tsx | 2 +- src/IconYourTripsSharp.tsx | 2 +- src/IconYourTripsSharpFilled.tsx | 2 +- src/IconYoutubeActivityOutlined.tsx | 2 +- src/IconYoutubeActivityOutlinedFilled.tsx | 2 +- src/IconYoutubeActivityRounded.tsx | 2 +- src/IconYoutubeActivityRoundedFilled.tsx | 2 +- src/IconYoutubeActivitySharp.tsx | 2 +- src/IconYoutubeActivitySharpFilled.tsx | 2 +- src/IconYoutubeSearchedForOutlined.tsx | 2 +- src/IconYoutubeSearchedForOutlinedFilled.tsx | 2 +- src/IconYoutubeSearchedForRounded.tsx | 2 +- src/IconYoutubeSearchedForRoundedFilled.tsx | 2 +- src/IconYoutubeSearchedForSharp.tsx | 2 +- src/IconYoutubeSearchedForSharpFilled.tsx | 2 +- src/IconZonePersonAlertOutlined.tsx | 2 +- src/IconZonePersonAlertOutlinedFilled.tsx | 2 +- src/IconZonePersonAlertRounded.tsx | 2 +- src/IconZonePersonAlertRoundedFilled.tsx | 2 +- src/IconZonePersonAlertSharp.tsx | 2 +- src/IconZonePersonAlertSharpFilled.tsx | 2 +- src/IconZonePersonIdleOutlined.tsx | 2 +- src/IconZonePersonIdleOutlinedFilled.tsx | 2 +- src/IconZonePersonIdleRounded.tsx | 2 +- src/IconZonePersonIdleRoundedFilled.tsx | 2 +- src/IconZonePersonIdleSharp.tsx | 2 +- src/IconZonePersonIdleSharpFilled.tsx | 2 +- src/IconZonePersonUrgentOutlined.tsx | 2 +- src/IconZonePersonUrgentOutlinedFilled.tsx | 2 +- src/IconZonePersonUrgentRounded.tsx | 2 +- src/IconZonePersonUrgentRoundedFilled.tsx | 2 +- src/IconZonePersonUrgentSharp.tsx | 2 +- src/IconZonePersonUrgentSharpFilled.tsx | 2 +- src/IconZoomInMapOutlined.tsx | 2 +- src/IconZoomInMapOutlinedFilled.tsx | 2 +- src/IconZoomInMapRounded.tsx | 2 +- src/IconZoomInMapRoundedFilled.tsx | 2 +- src/IconZoomInMapSharp.tsx | 2 +- src/IconZoomInMapSharpFilled.tsx | 2 +- src/IconZoomInOutlined.tsx | 2 +- src/IconZoomInOutlinedFilled.tsx | 2 +- src/IconZoomInRounded.tsx | 2 +- src/IconZoomInRoundedFilled.tsx | 2 +- src/IconZoomInSharp.tsx | 2 +- src/IconZoomInSharpFilled.tsx | 2 +- src/IconZoomOutMapOutlined.tsx | 2 +- src/IconZoomOutMapOutlinedFilled.tsx | 2 +- src/IconZoomOutMapRounded.tsx | 2 +- src/IconZoomOutMapRoundedFilled.tsx | 2 +- src/IconZoomOutMapSharp.tsx | 2 +- src/IconZoomOutMapSharpFilled.tsx | 2 +- src/IconZoomOutOutlined.tsx | 2 +- src/IconZoomOutOutlinedFilled.tsx | 2 +- src/IconZoomOutRounded.tsx | 2 +- src/IconZoomOutRoundedFilled.tsx | 2 +- src/IconZoomOutSharp.tsx | 2 +- src/IconZoomOutSharpFilled.tsx | 2 +- 20203 files changed, 20203 insertions(+), 20203 deletions(-) diff --git a/generator.js b/generator.js index c288cebb9..440ec1d47 100644 --- a/generator.js +++ b/generator.js @@ -115,6 +115,6 @@ function mapSVGToTemplate(name, svg) { ${svg} ) - export { ${name} as default } + export default ${name} ` } diff --git a/src/Icon10kOutlined.tsx b/src/Icon10kOutlined.tsx index 21b351ee4..26afef629 100644 --- a/src/Icon10kOutlined.tsx +++ b/src/Icon10kOutlined.tsx @@ -8,4 +8,4 @@ const Icon10kOutlined: React.FC = ({ ...props }) => ( ) -export { Icon10kOutlined as default } +export default Icon10kOutlined diff --git a/src/Icon10kOutlinedFilled.tsx b/src/Icon10kOutlinedFilled.tsx index 3611eda1c..e879ce33e 100644 --- a/src/Icon10kOutlinedFilled.tsx +++ b/src/Icon10kOutlinedFilled.tsx @@ -8,4 +8,4 @@ const Icon10kOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { Icon10kOutlinedFilled as default } +export default Icon10kOutlinedFilled diff --git a/src/Icon10kRounded.tsx b/src/Icon10kRounded.tsx index 5587fb086..11189da36 100644 --- a/src/Icon10kRounded.tsx +++ b/src/Icon10kRounded.tsx @@ -8,4 +8,4 @@ const Icon10kRounded: React.FC = ({ ...props }) => ( ) -export { Icon10kRounded as default } +export default Icon10kRounded diff --git a/src/Icon10kRoundedFilled.tsx b/src/Icon10kRoundedFilled.tsx index 8598dd348..f84f966ba 100644 --- a/src/Icon10kRoundedFilled.tsx +++ b/src/Icon10kRoundedFilled.tsx @@ -8,4 +8,4 @@ const Icon10kRoundedFilled: React.FC = ({ ...props }) => ( ) -export { Icon10kRoundedFilled as default } +export default Icon10kRoundedFilled diff --git a/src/Icon10kSharp.tsx b/src/Icon10kSharp.tsx index 70128132f..4c862c66c 100644 --- a/src/Icon10kSharp.tsx +++ b/src/Icon10kSharp.tsx @@ -8,4 +8,4 @@ const Icon10kSharp: React.FC = ({ ...props }) => ( ) -export { Icon10kSharp as default } +export default Icon10kSharp diff --git a/src/Icon10kSharpFilled.tsx b/src/Icon10kSharpFilled.tsx index 829f28c53..a70ad441f 100644 --- a/src/Icon10kSharpFilled.tsx +++ b/src/Icon10kSharpFilled.tsx @@ -8,4 +8,4 @@ const Icon10kSharpFilled: React.FC = ({ ...props }) => ( ) -export { Icon10kSharpFilled as default } +export default Icon10kSharpFilled diff --git a/src/Icon10mpOutlined.tsx b/src/Icon10mpOutlined.tsx index 357d95cfc..0626658ad 100644 --- a/src/Icon10mpOutlined.tsx +++ b/src/Icon10mpOutlined.tsx @@ -8,4 +8,4 @@ const Icon10mpOutlined: React.FC = ({ ...props }) => ( ) -export { Icon10mpOutlined as default } +export default Icon10mpOutlined diff --git a/src/Icon10mpOutlinedFilled.tsx b/src/Icon10mpOutlinedFilled.tsx index e79ed9ca0..42f14706c 100644 --- a/src/Icon10mpOutlinedFilled.tsx +++ b/src/Icon10mpOutlinedFilled.tsx @@ -8,4 +8,4 @@ const Icon10mpOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { Icon10mpOutlinedFilled as default } +export default Icon10mpOutlinedFilled diff --git a/src/Icon10mpRounded.tsx b/src/Icon10mpRounded.tsx index f95feb130..0b257087a 100644 --- a/src/Icon10mpRounded.tsx +++ b/src/Icon10mpRounded.tsx @@ -8,4 +8,4 @@ const Icon10mpRounded: React.FC = ({ ...props }) => ( ) -export { Icon10mpRounded as default } +export default Icon10mpRounded diff --git a/src/Icon10mpRoundedFilled.tsx b/src/Icon10mpRoundedFilled.tsx index c878aa0a2..08622b85a 100644 --- a/src/Icon10mpRoundedFilled.tsx +++ b/src/Icon10mpRoundedFilled.tsx @@ -8,4 +8,4 @@ const Icon10mpRoundedFilled: React.FC = ({ ...props }) => ( ) -export { Icon10mpRoundedFilled as default } +export default Icon10mpRoundedFilled diff --git a/src/Icon10mpSharp.tsx b/src/Icon10mpSharp.tsx index 448353639..8730606a9 100644 --- a/src/Icon10mpSharp.tsx +++ b/src/Icon10mpSharp.tsx @@ -8,4 +8,4 @@ const Icon10mpSharp: React.FC = ({ ...props }) => ( ) -export { Icon10mpSharp as default } +export default Icon10mpSharp diff --git a/src/Icon10mpSharpFilled.tsx b/src/Icon10mpSharpFilled.tsx index 1f4f09d78..3038a1609 100644 --- a/src/Icon10mpSharpFilled.tsx +++ b/src/Icon10mpSharpFilled.tsx @@ -8,4 +8,4 @@ const Icon10mpSharpFilled: React.FC = ({ ...props }) => ( ) -export { Icon10mpSharpFilled as default } +export default Icon10mpSharpFilled diff --git a/src/Icon11mpOutlined.tsx b/src/Icon11mpOutlined.tsx index 6ee5091fa..90537a579 100644 --- a/src/Icon11mpOutlined.tsx +++ b/src/Icon11mpOutlined.tsx @@ -8,4 +8,4 @@ const Icon11mpOutlined: React.FC = ({ ...props }) => ( ) -export { Icon11mpOutlined as default } +export default Icon11mpOutlined diff --git a/src/Icon11mpOutlinedFilled.tsx b/src/Icon11mpOutlinedFilled.tsx index 79dbd7a18..2eef7451b 100644 --- a/src/Icon11mpOutlinedFilled.tsx +++ b/src/Icon11mpOutlinedFilled.tsx @@ -8,4 +8,4 @@ const Icon11mpOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { Icon11mpOutlinedFilled as default } +export default Icon11mpOutlinedFilled diff --git a/src/Icon11mpRounded.tsx b/src/Icon11mpRounded.tsx index 175ba941c..69c1bccec 100644 --- a/src/Icon11mpRounded.tsx +++ b/src/Icon11mpRounded.tsx @@ -8,4 +8,4 @@ const Icon11mpRounded: React.FC = ({ ...props }) => ( ) -export { Icon11mpRounded as default } +export default Icon11mpRounded diff --git a/src/Icon11mpRoundedFilled.tsx b/src/Icon11mpRoundedFilled.tsx index c79dd4206..441cf5a93 100644 --- a/src/Icon11mpRoundedFilled.tsx +++ b/src/Icon11mpRoundedFilled.tsx @@ -8,4 +8,4 @@ const Icon11mpRoundedFilled: React.FC = ({ ...props }) => ( ) -export { Icon11mpRoundedFilled as default } +export default Icon11mpRoundedFilled diff --git a/src/Icon11mpSharp.tsx b/src/Icon11mpSharp.tsx index f91752c20..0aed5abc5 100644 --- a/src/Icon11mpSharp.tsx +++ b/src/Icon11mpSharp.tsx @@ -8,4 +8,4 @@ const Icon11mpSharp: React.FC = ({ ...props }) => ( ) -export { Icon11mpSharp as default } +export default Icon11mpSharp diff --git a/src/Icon11mpSharpFilled.tsx b/src/Icon11mpSharpFilled.tsx index be7bd1f0c..af553cd37 100644 --- a/src/Icon11mpSharpFilled.tsx +++ b/src/Icon11mpSharpFilled.tsx @@ -8,4 +8,4 @@ const Icon11mpSharpFilled: React.FC = ({ ...props }) => ( ) -export { Icon11mpSharpFilled as default } +export default Icon11mpSharpFilled diff --git a/src/Icon123Outlined.tsx b/src/Icon123Outlined.tsx index 211e3fb98..dc65c8cf1 100644 --- a/src/Icon123Outlined.tsx +++ b/src/Icon123Outlined.tsx @@ -8,4 +8,4 @@ const Icon123Outlined: React.FC = ({ ...props }) => ( ) -export { Icon123Outlined as default } +export default Icon123Outlined diff --git a/src/Icon123OutlinedFilled.tsx b/src/Icon123OutlinedFilled.tsx index 989347c8d..935fb44d3 100644 --- a/src/Icon123OutlinedFilled.tsx +++ b/src/Icon123OutlinedFilled.tsx @@ -8,4 +8,4 @@ const Icon123OutlinedFilled: React.FC = ({ ...props }) => ( ) -export { Icon123OutlinedFilled as default } +export default Icon123OutlinedFilled diff --git a/src/Icon123Rounded.tsx b/src/Icon123Rounded.tsx index 71c914bb5..095d8ad19 100644 --- a/src/Icon123Rounded.tsx +++ b/src/Icon123Rounded.tsx @@ -8,4 +8,4 @@ const Icon123Rounded: React.FC = ({ ...props }) => ( ) -export { Icon123Rounded as default } +export default Icon123Rounded diff --git a/src/Icon123RoundedFilled.tsx b/src/Icon123RoundedFilled.tsx index 855c48ded..691228257 100644 --- a/src/Icon123RoundedFilled.tsx +++ b/src/Icon123RoundedFilled.tsx @@ -8,4 +8,4 @@ const Icon123RoundedFilled: React.FC = ({ ...props }) => ( ) -export { Icon123RoundedFilled as default } +export default Icon123RoundedFilled diff --git a/src/Icon123Sharp.tsx b/src/Icon123Sharp.tsx index 8044ddd2a..e0396b598 100644 --- a/src/Icon123Sharp.tsx +++ b/src/Icon123Sharp.tsx @@ -8,4 +8,4 @@ const Icon123Sharp: React.FC = ({ ...props }) => ( ) -export { Icon123Sharp as default } +export default Icon123Sharp diff --git a/src/Icon123SharpFilled.tsx b/src/Icon123SharpFilled.tsx index 61091aec0..882644cc4 100644 --- a/src/Icon123SharpFilled.tsx +++ b/src/Icon123SharpFilled.tsx @@ -8,4 +8,4 @@ const Icon123SharpFilled: React.FC = ({ ...props }) => ( ) -export { Icon123SharpFilled as default } +export default Icon123SharpFilled diff --git a/src/Icon12mpOutlined.tsx b/src/Icon12mpOutlined.tsx index 0783cdcd1..6b56293a4 100644 --- a/src/Icon12mpOutlined.tsx +++ b/src/Icon12mpOutlined.tsx @@ -8,4 +8,4 @@ const Icon12mpOutlined: React.FC = ({ ...props }) => ( ) -export { Icon12mpOutlined as default } +export default Icon12mpOutlined diff --git a/src/Icon12mpOutlinedFilled.tsx b/src/Icon12mpOutlinedFilled.tsx index 667e8b93f..a12c7a592 100644 --- a/src/Icon12mpOutlinedFilled.tsx +++ b/src/Icon12mpOutlinedFilled.tsx @@ -8,4 +8,4 @@ const Icon12mpOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { Icon12mpOutlinedFilled as default } +export default Icon12mpOutlinedFilled diff --git a/src/Icon12mpRounded.tsx b/src/Icon12mpRounded.tsx index f0f8c7407..daa3ca12e 100644 --- a/src/Icon12mpRounded.tsx +++ b/src/Icon12mpRounded.tsx @@ -8,4 +8,4 @@ const Icon12mpRounded: React.FC = ({ ...props }) => ( ) -export { Icon12mpRounded as default } +export default Icon12mpRounded diff --git a/src/Icon12mpRoundedFilled.tsx b/src/Icon12mpRoundedFilled.tsx index 4770b4731..dd7bd6136 100644 --- a/src/Icon12mpRoundedFilled.tsx +++ b/src/Icon12mpRoundedFilled.tsx @@ -8,4 +8,4 @@ const Icon12mpRoundedFilled: React.FC = ({ ...props }) => ( ) -export { Icon12mpRoundedFilled as default } +export default Icon12mpRoundedFilled diff --git a/src/Icon12mpSharp.tsx b/src/Icon12mpSharp.tsx index d0309e29a..d249beb90 100644 --- a/src/Icon12mpSharp.tsx +++ b/src/Icon12mpSharp.tsx @@ -8,4 +8,4 @@ const Icon12mpSharp: React.FC = ({ ...props }) => ( ) -export { Icon12mpSharp as default } +export default Icon12mpSharp diff --git a/src/Icon12mpSharpFilled.tsx b/src/Icon12mpSharpFilled.tsx index 72e32267a..5d4fd0097 100644 --- a/src/Icon12mpSharpFilled.tsx +++ b/src/Icon12mpSharpFilled.tsx @@ -8,4 +8,4 @@ const Icon12mpSharpFilled: React.FC = ({ ...props }) => ( ) -export { Icon12mpSharpFilled as default } +export default Icon12mpSharpFilled diff --git a/src/Icon13mpOutlined.tsx b/src/Icon13mpOutlined.tsx index 508961c8f..a4ad5292e 100644 --- a/src/Icon13mpOutlined.tsx +++ b/src/Icon13mpOutlined.tsx @@ -8,4 +8,4 @@ const Icon13mpOutlined: React.FC = ({ ...props }) => ( ) -export { Icon13mpOutlined as default } +export default Icon13mpOutlined diff --git a/src/Icon13mpOutlinedFilled.tsx b/src/Icon13mpOutlinedFilled.tsx index b2bcbc24f..3d941db3b 100644 --- a/src/Icon13mpOutlinedFilled.tsx +++ b/src/Icon13mpOutlinedFilled.tsx @@ -8,4 +8,4 @@ const Icon13mpOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { Icon13mpOutlinedFilled as default } +export default Icon13mpOutlinedFilled diff --git a/src/Icon13mpRounded.tsx b/src/Icon13mpRounded.tsx index dbd70b104..1430fd825 100644 --- a/src/Icon13mpRounded.tsx +++ b/src/Icon13mpRounded.tsx @@ -8,4 +8,4 @@ const Icon13mpRounded: React.FC = ({ ...props }) => ( ) -export { Icon13mpRounded as default } +export default Icon13mpRounded diff --git a/src/Icon13mpRoundedFilled.tsx b/src/Icon13mpRoundedFilled.tsx index b160b9b38..d80131115 100644 --- a/src/Icon13mpRoundedFilled.tsx +++ b/src/Icon13mpRoundedFilled.tsx @@ -8,4 +8,4 @@ const Icon13mpRoundedFilled: React.FC = ({ ...props }) => ( ) -export { Icon13mpRoundedFilled as default } +export default Icon13mpRoundedFilled diff --git a/src/Icon13mpSharp.tsx b/src/Icon13mpSharp.tsx index aea20a333..a9eba3926 100644 --- a/src/Icon13mpSharp.tsx +++ b/src/Icon13mpSharp.tsx @@ -8,4 +8,4 @@ const Icon13mpSharp: React.FC = ({ ...props }) => ( ) -export { Icon13mpSharp as default } +export default Icon13mpSharp diff --git a/src/Icon13mpSharpFilled.tsx b/src/Icon13mpSharpFilled.tsx index c9024d16b..6294d961c 100644 --- a/src/Icon13mpSharpFilled.tsx +++ b/src/Icon13mpSharpFilled.tsx @@ -8,4 +8,4 @@ const Icon13mpSharpFilled: React.FC = ({ ...props }) => ( ) -export { Icon13mpSharpFilled as default } +export default Icon13mpSharpFilled diff --git a/src/Icon14mpOutlined.tsx b/src/Icon14mpOutlined.tsx index 6c8eab22d..32b12524c 100644 --- a/src/Icon14mpOutlined.tsx +++ b/src/Icon14mpOutlined.tsx @@ -8,4 +8,4 @@ const Icon14mpOutlined: React.FC = ({ ...props }) => ( ) -export { Icon14mpOutlined as default } +export default Icon14mpOutlined diff --git a/src/Icon14mpOutlinedFilled.tsx b/src/Icon14mpOutlinedFilled.tsx index 8f037f831..fbb82238b 100644 --- a/src/Icon14mpOutlinedFilled.tsx +++ b/src/Icon14mpOutlinedFilled.tsx @@ -8,4 +8,4 @@ const Icon14mpOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { Icon14mpOutlinedFilled as default } +export default Icon14mpOutlinedFilled diff --git a/src/Icon14mpRounded.tsx b/src/Icon14mpRounded.tsx index d29dbe28c..07c945967 100644 --- a/src/Icon14mpRounded.tsx +++ b/src/Icon14mpRounded.tsx @@ -8,4 +8,4 @@ const Icon14mpRounded: React.FC = ({ ...props }) => ( ) -export { Icon14mpRounded as default } +export default Icon14mpRounded diff --git a/src/Icon14mpRoundedFilled.tsx b/src/Icon14mpRoundedFilled.tsx index 61c167f0c..91302ff8e 100644 --- a/src/Icon14mpRoundedFilled.tsx +++ b/src/Icon14mpRoundedFilled.tsx @@ -8,4 +8,4 @@ const Icon14mpRoundedFilled: React.FC = ({ ...props }) => ( ) -export { Icon14mpRoundedFilled as default } +export default Icon14mpRoundedFilled diff --git a/src/Icon14mpSharp.tsx b/src/Icon14mpSharp.tsx index 1cfe06a44..0f8ca7e5a 100644 --- a/src/Icon14mpSharp.tsx +++ b/src/Icon14mpSharp.tsx @@ -8,4 +8,4 @@ const Icon14mpSharp: React.FC = ({ ...props }) => ( ) -export { Icon14mpSharp as default } +export default Icon14mpSharp diff --git a/src/Icon14mpSharpFilled.tsx b/src/Icon14mpSharpFilled.tsx index 72b9c2030..32ee38300 100644 --- a/src/Icon14mpSharpFilled.tsx +++ b/src/Icon14mpSharpFilled.tsx @@ -8,4 +8,4 @@ const Icon14mpSharpFilled: React.FC = ({ ...props }) => ( ) -export { Icon14mpSharpFilled as default } +export default Icon14mpSharpFilled diff --git a/src/Icon15mpOutlined.tsx b/src/Icon15mpOutlined.tsx index 7149b2d23..a9d7f31b4 100644 --- a/src/Icon15mpOutlined.tsx +++ b/src/Icon15mpOutlined.tsx @@ -8,4 +8,4 @@ const Icon15mpOutlined: React.FC = ({ ...props }) => ( ) -export { Icon15mpOutlined as default } +export default Icon15mpOutlined diff --git a/src/Icon15mpOutlinedFilled.tsx b/src/Icon15mpOutlinedFilled.tsx index ef83fc56c..7de805de5 100644 --- a/src/Icon15mpOutlinedFilled.tsx +++ b/src/Icon15mpOutlinedFilled.tsx @@ -8,4 +8,4 @@ const Icon15mpOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { Icon15mpOutlinedFilled as default } +export default Icon15mpOutlinedFilled diff --git a/src/Icon15mpRounded.tsx b/src/Icon15mpRounded.tsx index c88e23aea..7c6b4c0b2 100644 --- a/src/Icon15mpRounded.tsx +++ b/src/Icon15mpRounded.tsx @@ -8,4 +8,4 @@ const Icon15mpRounded: React.FC = ({ ...props }) => ( ) -export { Icon15mpRounded as default } +export default Icon15mpRounded diff --git a/src/Icon15mpRoundedFilled.tsx b/src/Icon15mpRoundedFilled.tsx index fd89a85c0..22d4e0312 100644 --- a/src/Icon15mpRoundedFilled.tsx +++ b/src/Icon15mpRoundedFilled.tsx @@ -8,4 +8,4 @@ const Icon15mpRoundedFilled: React.FC = ({ ...props }) => ( ) -export { Icon15mpRoundedFilled as default } +export default Icon15mpRoundedFilled diff --git a/src/Icon15mpSharp.tsx b/src/Icon15mpSharp.tsx index 443708577..27d4bd602 100644 --- a/src/Icon15mpSharp.tsx +++ b/src/Icon15mpSharp.tsx @@ -8,4 +8,4 @@ const Icon15mpSharp: React.FC = ({ ...props }) => ( ) -export { Icon15mpSharp as default } +export default Icon15mpSharp diff --git a/src/Icon15mpSharpFilled.tsx b/src/Icon15mpSharpFilled.tsx index 4e9686a4d..347551c18 100644 --- a/src/Icon15mpSharpFilled.tsx +++ b/src/Icon15mpSharpFilled.tsx @@ -8,4 +8,4 @@ const Icon15mpSharpFilled: React.FC = ({ ...props }) => ( ) -export { Icon15mpSharpFilled as default } +export default Icon15mpSharpFilled diff --git a/src/Icon16mpOutlined.tsx b/src/Icon16mpOutlined.tsx index 54213e064..fb378dd63 100644 --- a/src/Icon16mpOutlined.tsx +++ b/src/Icon16mpOutlined.tsx @@ -8,4 +8,4 @@ const Icon16mpOutlined: React.FC = ({ ...props }) => ( ) -export { Icon16mpOutlined as default } +export default Icon16mpOutlined diff --git a/src/Icon16mpOutlinedFilled.tsx b/src/Icon16mpOutlinedFilled.tsx index d7e6abbdc..5829903cc 100644 --- a/src/Icon16mpOutlinedFilled.tsx +++ b/src/Icon16mpOutlinedFilled.tsx @@ -8,4 +8,4 @@ const Icon16mpOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { Icon16mpOutlinedFilled as default } +export default Icon16mpOutlinedFilled diff --git a/src/Icon16mpRounded.tsx b/src/Icon16mpRounded.tsx index ea1adf337..4cb4d8083 100644 --- a/src/Icon16mpRounded.tsx +++ b/src/Icon16mpRounded.tsx @@ -8,4 +8,4 @@ const Icon16mpRounded: React.FC = ({ ...props }) => ( ) -export { Icon16mpRounded as default } +export default Icon16mpRounded diff --git a/src/Icon16mpRoundedFilled.tsx b/src/Icon16mpRoundedFilled.tsx index 7dcaaa505..db685cff9 100644 --- a/src/Icon16mpRoundedFilled.tsx +++ b/src/Icon16mpRoundedFilled.tsx @@ -8,4 +8,4 @@ const Icon16mpRoundedFilled: React.FC = ({ ...props }) => ( ) -export { Icon16mpRoundedFilled as default } +export default Icon16mpRoundedFilled diff --git a/src/Icon16mpSharp.tsx b/src/Icon16mpSharp.tsx index 1fea2745f..ebc426708 100644 --- a/src/Icon16mpSharp.tsx +++ b/src/Icon16mpSharp.tsx @@ -8,4 +8,4 @@ const Icon16mpSharp: React.FC = ({ ...props }) => ( ) -export { Icon16mpSharp as default } +export default Icon16mpSharp diff --git a/src/Icon16mpSharpFilled.tsx b/src/Icon16mpSharpFilled.tsx index 8696ae88b..c2e704140 100644 --- a/src/Icon16mpSharpFilled.tsx +++ b/src/Icon16mpSharpFilled.tsx @@ -8,4 +8,4 @@ const Icon16mpSharpFilled: React.FC = ({ ...props }) => ( ) -export { Icon16mpSharpFilled as default } +export default Icon16mpSharpFilled diff --git a/src/Icon17mpOutlined.tsx b/src/Icon17mpOutlined.tsx index 5c6ae618d..506e6bf53 100644 --- a/src/Icon17mpOutlined.tsx +++ b/src/Icon17mpOutlined.tsx @@ -8,4 +8,4 @@ const Icon17mpOutlined: React.FC = ({ ...props }) => ( ) -export { Icon17mpOutlined as default } +export default Icon17mpOutlined diff --git a/src/Icon17mpOutlinedFilled.tsx b/src/Icon17mpOutlinedFilled.tsx index 79f47698c..7eb5c0ccf 100644 --- a/src/Icon17mpOutlinedFilled.tsx +++ b/src/Icon17mpOutlinedFilled.tsx @@ -8,4 +8,4 @@ const Icon17mpOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { Icon17mpOutlinedFilled as default } +export default Icon17mpOutlinedFilled diff --git a/src/Icon17mpRounded.tsx b/src/Icon17mpRounded.tsx index c0a79ab02..bb1e30343 100644 --- a/src/Icon17mpRounded.tsx +++ b/src/Icon17mpRounded.tsx @@ -8,4 +8,4 @@ const Icon17mpRounded: React.FC = ({ ...props }) => ( ) -export { Icon17mpRounded as default } +export default Icon17mpRounded diff --git a/src/Icon17mpRoundedFilled.tsx b/src/Icon17mpRoundedFilled.tsx index ad2672a68..6f1e4fa03 100644 --- a/src/Icon17mpRoundedFilled.tsx +++ b/src/Icon17mpRoundedFilled.tsx @@ -8,4 +8,4 @@ const Icon17mpRoundedFilled: React.FC = ({ ...props }) => ( ) -export { Icon17mpRoundedFilled as default } +export default Icon17mpRoundedFilled diff --git a/src/Icon17mpSharp.tsx b/src/Icon17mpSharp.tsx index fcc1830e1..62b01ea52 100644 --- a/src/Icon17mpSharp.tsx +++ b/src/Icon17mpSharp.tsx @@ -8,4 +8,4 @@ const Icon17mpSharp: React.FC = ({ ...props }) => ( ) -export { Icon17mpSharp as default } +export default Icon17mpSharp diff --git a/src/Icon17mpSharpFilled.tsx b/src/Icon17mpSharpFilled.tsx index 73351b30f..bef10efc0 100644 --- a/src/Icon17mpSharpFilled.tsx +++ b/src/Icon17mpSharpFilled.tsx @@ -8,4 +8,4 @@ const Icon17mpSharpFilled: React.FC = ({ ...props }) => ( ) -export { Icon17mpSharpFilled as default } +export default Icon17mpSharpFilled diff --git a/src/Icon18UpRatingOutlined.tsx b/src/Icon18UpRatingOutlined.tsx index 24fb96fe1..c42869d3c 100644 --- a/src/Icon18UpRatingOutlined.tsx +++ b/src/Icon18UpRatingOutlined.tsx @@ -8,4 +8,4 @@ const Icon18UpRatingOutlined: React.FC = ({ ...props }) => ( ) -export { Icon18UpRatingOutlined as default } +export default Icon18UpRatingOutlined diff --git a/src/Icon18UpRatingOutlinedFilled.tsx b/src/Icon18UpRatingOutlinedFilled.tsx index 4bf272481..a76208242 100644 --- a/src/Icon18UpRatingOutlinedFilled.tsx +++ b/src/Icon18UpRatingOutlinedFilled.tsx @@ -8,4 +8,4 @@ const Icon18UpRatingOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { Icon18UpRatingOutlinedFilled as default } +export default Icon18UpRatingOutlinedFilled diff --git a/src/Icon18UpRatingRounded.tsx b/src/Icon18UpRatingRounded.tsx index 820824b7c..2313308d7 100644 --- a/src/Icon18UpRatingRounded.tsx +++ b/src/Icon18UpRatingRounded.tsx @@ -8,4 +8,4 @@ const Icon18UpRatingRounded: React.FC = ({ ...props }) => ( ) -export { Icon18UpRatingRounded as default } +export default Icon18UpRatingRounded diff --git a/src/Icon18UpRatingRoundedFilled.tsx b/src/Icon18UpRatingRoundedFilled.tsx index 149479f3b..b91848d0e 100644 --- a/src/Icon18UpRatingRoundedFilled.tsx +++ b/src/Icon18UpRatingRoundedFilled.tsx @@ -8,4 +8,4 @@ const Icon18UpRatingRoundedFilled: React.FC = ({ ...props }) => ( ) -export { Icon18UpRatingRoundedFilled as default } +export default Icon18UpRatingRoundedFilled diff --git a/src/Icon18UpRatingSharp.tsx b/src/Icon18UpRatingSharp.tsx index a2c9ecd3d..03ed70607 100644 --- a/src/Icon18UpRatingSharp.tsx +++ b/src/Icon18UpRatingSharp.tsx @@ -8,4 +8,4 @@ const Icon18UpRatingSharp: React.FC = ({ ...props }) => ( ) -export { Icon18UpRatingSharp as default } +export default Icon18UpRatingSharp diff --git a/src/Icon18UpRatingSharpFilled.tsx b/src/Icon18UpRatingSharpFilled.tsx index 89cffac7a..6fb8d6fd5 100644 --- a/src/Icon18UpRatingSharpFilled.tsx +++ b/src/Icon18UpRatingSharpFilled.tsx @@ -8,4 +8,4 @@ const Icon18UpRatingSharpFilled: React.FC = ({ ...props }) => ( ) -export { Icon18UpRatingSharpFilled as default } +export default Icon18UpRatingSharpFilled diff --git a/src/Icon18mpOutlined.tsx b/src/Icon18mpOutlined.tsx index 6668e0dfb..afbbddde3 100644 --- a/src/Icon18mpOutlined.tsx +++ b/src/Icon18mpOutlined.tsx @@ -8,4 +8,4 @@ const Icon18mpOutlined: React.FC = ({ ...props }) => ( ) -export { Icon18mpOutlined as default } +export default Icon18mpOutlined diff --git a/src/Icon18mpOutlinedFilled.tsx b/src/Icon18mpOutlinedFilled.tsx index 228d0e9da..4d0c5e12a 100644 --- a/src/Icon18mpOutlinedFilled.tsx +++ b/src/Icon18mpOutlinedFilled.tsx @@ -8,4 +8,4 @@ const Icon18mpOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { Icon18mpOutlinedFilled as default } +export default Icon18mpOutlinedFilled diff --git a/src/Icon18mpRounded.tsx b/src/Icon18mpRounded.tsx index f2b8e0e78..dcccbd42b 100644 --- a/src/Icon18mpRounded.tsx +++ b/src/Icon18mpRounded.tsx @@ -8,4 +8,4 @@ const Icon18mpRounded: React.FC = ({ ...props }) => ( ) -export { Icon18mpRounded as default } +export default Icon18mpRounded diff --git a/src/Icon18mpRoundedFilled.tsx b/src/Icon18mpRoundedFilled.tsx index 2792db7b8..7ff6632c4 100644 --- a/src/Icon18mpRoundedFilled.tsx +++ b/src/Icon18mpRoundedFilled.tsx @@ -8,4 +8,4 @@ const Icon18mpRoundedFilled: React.FC = ({ ...props }) => ( ) -export { Icon18mpRoundedFilled as default } +export default Icon18mpRoundedFilled diff --git a/src/Icon18mpSharp.tsx b/src/Icon18mpSharp.tsx index 1d15d0e2d..51649e88f 100644 --- a/src/Icon18mpSharp.tsx +++ b/src/Icon18mpSharp.tsx @@ -8,4 +8,4 @@ const Icon18mpSharp: React.FC = ({ ...props }) => ( ) -export { Icon18mpSharp as default } +export default Icon18mpSharp diff --git a/src/Icon18mpSharpFilled.tsx b/src/Icon18mpSharpFilled.tsx index 763f6442b..a21961142 100644 --- a/src/Icon18mpSharpFilled.tsx +++ b/src/Icon18mpSharpFilled.tsx @@ -8,4 +8,4 @@ const Icon18mpSharpFilled: React.FC = ({ ...props }) => ( ) -export { Icon18mpSharpFilled as default } +export default Icon18mpSharpFilled diff --git a/src/Icon19mpOutlined.tsx b/src/Icon19mpOutlined.tsx index 505c71394..791d314d5 100644 --- a/src/Icon19mpOutlined.tsx +++ b/src/Icon19mpOutlined.tsx @@ -8,4 +8,4 @@ const Icon19mpOutlined: React.FC = ({ ...props }) => ( ) -export { Icon19mpOutlined as default } +export default Icon19mpOutlined diff --git a/src/Icon19mpOutlinedFilled.tsx b/src/Icon19mpOutlinedFilled.tsx index 2c809c73c..08434b277 100644 --- a/src/Icon19mpOutlinedFilled.tsx +++ b/src/Icon19mpOutlinedFilled.tsx @@ -8,4 +8,4 @@ const Icon19mpOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { Icon19mpOutlinedFilled as default } +export default Icon19mpOutlinedFilled diff --git a/src/Icon19mpRounded.tsx b/src/Icon19mpRounded.tsx index 4dd72187c..7c391f793 100644 --- a/src/Icon19mpRounded.tsx +++ b/src/Icon19mpRounded.tsx @@ -8,4 +8,4 @@ const Icon19mpRounded: React.FC = ({ ...props }) => ( ) -export { Icon19mpRounded as default } +export default Icon19mpRounded diff --git a/src/Icon19mpRoundedFilled.tsx b/src/Icon19mpRoundedFilled.tsx index 354b03e01..fe2c83482 100644 --- a/src/Icon19mpRoundedFilled.tsx +++ b/src/Icon19mpRoundedFilled.tsx @@ -8,4 +8,4 @@ const Icon19mpRoundedFilled: React.FC = ({ ...props }) => ( ) -export { Icon19mpRoundedFilled as default } +export default Icon19mpRoundedFilled diff --git a/src/Icon19mpSharp.tsx b/src/Icon19mpSharp.tsx index d581f9089..7466e8147 100644 --- a/src/Icon19mpSharp.tsx +++ b/src/Icon19mpSharp.tsx @@ -8,4 +8,4 @@ const Icon19mpSharp: React.FC = ({ ...props }) => ( ) -export { Icon19mpSharp as default } +export default Icon19mpSharp diff --git a/src/Icon19mpSharpFilled.tsx b/src/Icon19mpSharpFilled.tsx index 48bd1684a..cab87d587 100644 --- a/src/Icon19mpSharpFilled.tsx +++ b/src/Icon19mpSharpFilled.tsx @@ -8,4 +8,4 @@ const Icon19mpSharpFilled: React.FC = ({ ...props }) => ( ) -export { Icon19mpSharpFilled as default } +export default Icon19mpSharpFilled diff --git a/src/Icon1kOutlined.tsx b/src/Icon1kOutlined.tsx index 99cf6976a..d8b0e4174 100644 --- a/src/Icon1kOutlined.tsx +++ b/src/Icon1kOutlined.tsx @@ -8,4 +8,4 @@ const Icon1kOutlined: React.FC = ({ ...props }) => ( ) -export { Icon1kOutlined as default } +export default Icon1kOutlined diff --git a/src/Icon1kOutlinedFilled.tsx b/src/Icon1kOutlinedFilled.tsx index 65a5aa06c..ed2f61926 100644 --- a/src/Icon1kOutlinedFilled.tsx +++ b/src/Icon1kOutlinedFilled.tsx @@ -8,4 +8,4 @@ const Icon1kOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { Icon1kOutlinedFilled as default } +export default Icon1kOutlinedFilled diff --git a/src/Icon1kPlusOutlined.tsx b/src/Icon1kPlusOutlined.tsx index 18b0fb2d1..c43d260b0 100644 --- a/src/Icon1kPlusOutlined.tsx +++ b/src/Icon1kPlusOutlined.tsx @@ -8,4 +8,4 @@ const Icon1kPlusOutlined: React.FC = ({ ...props }) => ( ) -export { Icon1kPlusOutlined as default } +export default Icon1kPlusOutlined diff --git a/src/Icon1kPlusOutlinedFilled.tsx b/src/Icon1kPlusOutlinedFilled.tsx index 5007e4571..ca786a29d 100644 --- a/src/Icon1kPlusOutlinedFilled.tsx +++ b/src/Icon1kPlusOutlinedFilled.tsx @@ -8,4 +8,4 @@ const Icon1kPlusOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { Icon1kPlusOutlinedFilled as default } +export default Icon1kPlusOutlinedFilled diff --git a/src/Icon1kPlusRounded.tsx b/src/Icon1kPlusRounded.tsx index a4bd3b751..7a341339c 100644 --- a/src/Icon1kPlusRounded.tsx +++ b/src/Icon1kPlusRounded.tsx @@ -8,4 +8,4 @@ const Icon1kPlusRounded: React.FC = ({ ...props }) => ( ) -export { Icon1kPlusRounded as default } +export default Icon1kPlusRounded diff --git a/src/Icon1kPlusRoundedFilled.tsx b/src/Icon1kPlusRoundedFilled.tsx index 231f5004e..58d02fa6e 100644 --- a/src/Icon1kPlusRoundedFilled.tsx +++ b/src/Icon1kPlusRoundedFilled.tsx @@ -8,4 +8,4 @@ const Icon1kPlusRoundedFilled: React.FC = ({ ...props }) => ( ) -export { Icon1kPlusRoundedFilled as default } +export default Icon1kPlusRoundedFilled diff --git a/src/Icon1kPlusSharp.tsx b/src/Icon1kPlusSharp.tsx index 732742437..8c9196306 100644 --- a/src/Icon1kPlusSharp.tsx +++ b/src/Icon1kPlusSharp.tsx @@ -8,4 +8,4 @@ const Icon1kPlusSharp: React.FC = ({ ...props }) => ( ) -export { Icon1kPlusSharp as default } +export default Icon1kPlusSharp diff --git a/src/Icon1kPlusSharpFilled.tsx b/src/Icon1kPlusSharpFilled.tsx index 8ed567b0d..e5a86fe6d 100644 --- a/src/Icon1kPlusSharpFilled.tsx +++ b/src/Icon1kPlusSharpFilled.tsx @@ -8,4 +8,4 @@ const Icon1kPlusSharpFilled: React.FC = ({ ...props }) => ( ) -export { Icon1kPlusSharpFilled as default } +export default Icon1kPlusSharpFilled diff --git a/src/Icon1kRounded.tsx b/src/Icon1kRounded.tsx index 01e15d4d5..defdb1a55 100644 --- a/src/Icon1kRounded.tsx +++ b/src/Icon1kRounded.tsx @@ -8,4 +8,4 @@ const Icon1kRounded: React.FC = ({ ...props }) => ( ) -export { Icon1kRounded as default } +export default Icon1kRounded diff --git a/src/Icon1kRoundedFilled.tsx b/src/Icon1kRoundedFilled.tsx index ca427f21f..d5ede21c3 100644 --- a/src/Icon1kRoundedFilled.tsx +++ b/src/Icon1kRoundedFilled.tsx @@ -8,4 +8,4 @@ const Icon1kRoundedFilled: React.FC = ({ ...props }) => ( ) -export { Icon1kRoundedFilled as default } +export default Icon1kRoundedFilled diff --git a/src/Icon1kSharp.tsx b/src/Icon1kSharp.tsx index db7d0a9c5..612f960b4 100644 --- a/src/Icon1kSharp.tsx +++ b/src/Icon1kSharp.tsx @@ -8,4 +8,4 @@ const Icon1kSharp: React.FC = ({ ...props }) => ( ) -export { Icon1kSharp as default } +export default Icon1kSharp diff --git a/src/Icon1kSharpFilled.tsx b/src/Icon1kSharpFilled.tsx index cce45b9d8..d41443ffe 100644 --- a/src/Icon1kSharpFilled.tsx +++ b/src/Icon1kSharpFilled.tsx @@ -8,4 +8,4 @@ const Icon1kSharpFilled: React.FC = ({ ...props }) => ( ) -export { Icon1kSharpFilled as default } +export default Icon1kSharpFilled diff --git a/src/Icon1xMobiledataBadgeOutlined.tsx b/src/Icon1xMobiledataBadgeOutlined.tsx index c8d7e83a1..6665d6321 100644 --- a/src/Icon1xMobiledataBadgeOutlined.tsx +++ b/src/Icon1xMobiledataBadgeOutlined.tsx @@ -8,4 +8,4 @@ const Icon1xMobiledataBadgeOutlined: React.FC = ({ ...props }) => ( ) -export { Icon1xMobiledataBadgeOutlined as default } +export default Icon1xMobiledataBadgeOutlined diff --git a/src/Icon1xMobiledataBadgeOutlinedFilled.tsx b/src/Icon1xMobiledataBadgeOutlinedFilled.tsx index 66b83177c..31982b22e 100644 --- a/src/Icon1xMobiledataBadgeOutlinedFilled.tsx +++ b/src/Icon1xMobiledataBadgeOutlinedFilled.tsx @@ -10,4 +10,4 @@ const Icon1xMobiledataBadgeOutlinedFilled: React.FC = ({ ) -export { Icon1xMobiledataBadgeOutlinedFilled as default } +export default Icon1xMobiledataBadgeOutlinedFilled diff --git a/src/Icon1xMobiledataBadgeRounded.tsx b/src/Icon1xMobiledataBadgeRounded.tsx index 3d7e04115..fb0cc7d0c 100644 --- a/src/Icon1xMobiledataBadgeRounded.tsx +++ b/src/Icon1xMobiledataBadgeRounded.tsx @@ -8,4 +8,4 @@ const Icon1xMobiledataBadgeRounded: React.FC = ({ ...props }) => ( ) -export { Icon1xMobiledataBadgeRounded as default } +export default Icon1xMobiledataBadgeRounded diff --git a/src/Icon1xMobiledataBadgeRoundedFilled.tsx b/src/Icon1xMobiledataBadgeRoundedFilled.tsx index a2fc851cc..648d96a0e 100644 --- a/src/Icon1xMobiledataBadgeRoundedFilled.tsx +++ b/src/Icon1xMobiledataBadgeRoundedFilled.tsx @@ -10,4 +10,4 @@ const Icon1xMobiledataBadgeRoundedFilled: React.FC = ({ ) -export { Icon1xMobiledataBadgeRoundedFilled as default } +export default Icon1xMobiledataBadgeRoundedFilled diff --git a/src/Icon1xMobiledataBadgeSharp.tsx b/src/Icon1xMobiledataBadgeSharp.tsx index d680d2b8a..1581f1303 100644 --- a/src/Icon1xMobiledataBadgeSharp.tsx +++ b/src/Icon1xMobiledataBadgeSharp.tsx @@ -8,4 +8,4 @@ const Icon1xMobiledataBadgeSharp: React.FC = ({ ...props }) => ( ) -export { Icon1xMobiledataBadgeSharp as default } +export default Icon1xMobiledataBadgeSharp diff --git a/src/Icon1xMobiledataBadgeSharpFilled.tsx b/src/Icon1xMobiledataBadgeSharpFilled.tsx index fa88c6a2b..a27f3f918 100644 --- a/src/Icon1xMobiledataBadgeSharpFilled.tsx +++ b/src/Icon1xMobiledataBadgeSharpFilled.tsx @@ -10,4 +10,4 @@ const Icon1xMobiledataBadgeSharpFilled: React.FC = ({ ) -export { Icon1xMobiledataBadgeSharpFilled as default } +export default Icon1xMobiledataBadgeSharpFilled diff --git a/src/Icon1xMobiledataOutlined.tsx b/src/Icon1xMobiledataOutlined.tsx index fb5238126..b51d2a6b3 100644 --- a/src/Icon1xMobiledataOutlined.tsx +++ b/src/Icon1xMobiledataOutlined.tsx @@ -8,4 +8,4 @@ const Icon1xMobiledataOutlined: React.FC = ({ ...props }) => ( ) -export { Icon1xMobiledataOutlined as default } +export default Icon1xMobiledataOutlined diff --git a/src/Icon1xMobiledataOutlinedFilled.tsx b/src/Icon1xMobiledataOutlinedFilled.tsx index 388e311ec..62751d01c 100644 --- a/src/Icon1xMobiledataOutlinedFilled.tsx +++ b/src/Icon1xMobiledataOutlinedFilled.tsx @@ -8,4 +8,4 @@ const Icon1xMobiledataOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { Icon1xMobiledataOutlinedFilled as default } +export default Icon1xMobiledataOutlinedFilled diff --git a/src/Icon1xMobiledataRounded.tsx b/src/Icon1xMobiledataRounded.tsx index 45a586ba5..a385f058d 100644 --- a/src/Icon1xMobiledataRounded.tsx +++ b/src/Icon1xMobiledataRounded.tsx @@ -8,4 +8,4 @@ const Icon1xMobiledataRounded: React.FC = ({ ...props }) => ( ) -export { Icon1xMobiledataRounded as default } +export default Icon1xMobiledataRounded diff --git a/src/Icon1xMobiledataRoundedFilled.tsx b/src/Icon1xMobiledataRoundedFilled.tsx index cb2ed6b97..7304ae55d 100644 --- a/src/Icon1xMobiledataRoundedFilled.tsx +++ b/src/Icon1xMobiledataRoundedFilled.tsx @@ -8,4 +8,4 @@ const Icon1xMobiledataRoundedFilled: React.FC = ({ ...props }) => ( ) -export { Icon1xMobiledataRoundedFilled as default } +export default Icon1xMobiledataRoundedFilled diff --git a/src/Icon1xMobiledataSharp.tsx b/src/Icon1xMobiledataSharp.tsx index 629b46fb9..48e6cd3cc 100644 --- a/src/Icon1xMobiledataSharp.tsx +++ b/src/Icon1xMobiledataSharp.tsx @@ -8,4 +8,4 @@ const Icon1xMobiledataSharp: React.FC = ({ ...props }) => ( ) -export { Icon1xMobiledataSharp as default } +export default Icon1xMobiledataSharp diff --git a/src/Icon1xMobiledataSharpFilled.tsx b/src/Icon1xMobiledataSharpFilled.tsx index e25861055..5a992e3ad 100644 --- a/src/Icon1xMobiledataSharpFilled.tsx +++ b/src/Icon1xMobiledataSharpFilled.tsx @@ -8,4 +8,4 @@ const Icon1xMobiledataSharpFilled: React.FC = ({ ...props }) => ( ) -export { Icon1xMobiledataSharpFilled as default } +export default Icon1xMobiledataSharpFilled diff --git a/src/Icon20mpOutlined.tsx b/src/Icon20mpOutlined.tsx index 4a11b6d9d..e8cc874ae 100644 --- a/src/Icon20mpOutlined.tsx +++ b/src/Icon20mpOutlined.tsx @@ -8,4 +8,4 @@ const Icon20mpOutlined: React.FC = ({ ...props }) => ( ) -export { Icon20mpOutlined as default } +export default Icon20mpOutlined diff --git a/src/Icon20mpOutlinedFilled.tsx b/src/Icon20mpOutlinedFilled.tsx index bc326e488..317517ee1 100644 --- a/src/Icon20mpOutlinedFilled.tsx +++ b/src/Icon20mpOutlinedFilled.tsx @@ -8,4 +8,4 @@ const Icon20mpOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { Icon20mpOutlinedFilled as default } +export default Icon20mpOutlinedFilled diff --git a/src/Icon20mpRounded.tsx b/src/Icon20mpRounded.tsx index 822a1ec80..e6ce032de 100644 --- a/src/Icon20mpRounded.tsx +++ b/src/Icon20mpRounded.tsx @@ -8,4 +8,4 @@ const Icon20mpRounded: React.FC = ({ ...props }) => ( ) -export { Icon20mpRounded as default } +export default Icon20mpRounded diff --git a/src/Icon20mpRoundedFilled.tsx b/src/Icon20mpRoundedFilled.tsx index b79f4d920..82a1b77f6 100644 --- a/src/Icon20mpRoundedFilled.tsx +++ b/src/Icon20mpRoundedFilled.tsx @@ -8,4 +8,4 @@ const Icon20mpRoundedFilled: React.FC = ({ ...props }) => ( ) -export { Icon20mpRoundedFilled as default } +export default Icon20mpRoundedFilled diff --git a/src/Icon20mpSharp.tsx b/src/Icon20mpSharp.tsx index f5531f689..1996719eb 100644 --- a/src/Icon20mpSharp.tsx +++ b/src/Icon20mpSharp.tsx @@ -8,4 +8,4 @@ const Icon20mpSharp: React.FC = ({ ...props }) => ( ) -export { Icon20mpSharp as default } +export default Icon20mpSharp diff --git a/src/Icon20mpSharpFilled.tsx b/src/Icon20mpSharpFilled.tsx index deb6069eb..75c98df04 100644 --- a/src/Icon20mpSharpFilled.tsx +++ b/src/Icon20mpSharpFilled.tsx @@ -8,4 +8,4 @@ const Icon20mpSharpFilled: React.FC = ({ ...props }) => ( ) -export { Icon20mpSharpFilled as default } +export default Icon20mpSharpFilled diff --git a/src/Icon21mpOutlined.tsx b/src/Icon21mpOutlined.tsx index b80e02639..3e159d06a 100644 --- a/src/Icon21mpOutlined.tsx +++ b/src/Icon21mpOutlined.tsx @@ -8,4 +8,4 @@ const Icon21mpOutlined: React.FC = ({ ...props }) => ( ) -export { Icon21mpOutlined as default } +export default Icon21mpOutlined diff --git a/src/Icon21mpOutlinedFilled.tsx b/src/Icon21mpOutlinedFilled.tsx index 270dc5bd1..0a052016a 100644 --- a/src/Icon21mpOutlinedFilled.tsx +++ b/src/Icon21mpOutlinedFilled.tsx @@ -8,4 +8,4 @@ const Icon21mpOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { Icon21mpOutlinedFilled as default } +export default Icon21mpOutlinedFilled diff --git a/src/Icon21mpRounded.tsx b/src/Icon21mpRounded.tsx index f1c89274c..f9eb6c857 100644 --- a/src/Icon21mpRounded.tsx +++ b/src/Icon21mpRounded.tsx @@ -8,4 +8,4 @@ const Icon21mpRounded: React.FC = ({ ...props }) => ( ) -export { Icon21mpRounded as default } +export default Icon21mpRounded diff --git a/src/Icon21mpRoundedFilled.tsx b/src/Icon21mpRoundedFilled.tsx index 9acbd9dfc..94911a0da 100644 --- a/src/Icon21mpRoundedFilled.tsx +++ b/src/Icon21mpRoundedFilled.tsx @@ -8,4 +8,4 @@ const Icon21mpRoundedFilled: React.FC = ({ ...props }) => ( ) -export { Icon21mpRoundedFilled as default } +export default Icon21mpRoundedFilled diff --git a/src/Icon21mpSharp.tsx b/src/Icon21mpSharp.tsx index 32e65e047..651445c3e 100644 --- a/src/Icon21mpSharp.tsx +++ b/src/Icon21mpSharp.tsx @@ -8,4 +8,4 @@ const Icon21mpSharp: React.FC = ({ ...props }) => ( ) -export { Icon21mpSharp as default } +export default Icon21mpSharp diff --git a/src/Icon21mpSharpFilled.tsx b/src/Icon21mpSharpFilled.tsx index e1362596a..ded924301 100644 --- a/src/Icon21mpSharpFilled.tsx +++ b/src/Icon21mpSharpFilled.tsx @@ -8,4 +8,4 @@ const Icon21mpSharpFilled: React.FC = ({ ...props }) => ( ) -export { Icon21mpSharpFilled as default } +export default Icon21mpSharpFilled diff --git a/src/Icon22mpOutlined.tsx b/src/Icon22mpOutlined.tsx index 19263d032..e29e721d2 100644 --- a/src/Icon22mpOutlined.tsx +++ b/src/Icon22mpOutlined.tsx @@ -8,4 +8,4 @@ const Icon22mpOutlined: React.FC = ({ ...props }) => ( ) -export { Icon22mpOutlined as default } +export default Icon22mpOutlined diff --git a/src/Icon22mpOutlinedFilled.tsx b/src/Icon22mpOutlinedFilled.tsx index 2aca1abb5..d1a502003 100644 --- a/src/Icon22mpOutlinedFilled.tsx +++ b/src/Icon22mpOutlinedFilled.tsx @@ -8,4 +8,4 @@ const Icon22mpOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { Icon22mpOutlinedFilled as default } +export default Icon22mpOutlinedFilled diff --git a/src/Icon22mpRounded.tsx b/src/Icon22mpRounded.tsx index 16ec118a2..9b1f7a8e7 100644 --- a/src/Icon22mpRounded.tsx +++ b/src/Icon22mpRounded.tsx @@ -8,4 +8,4 @@ const Icon22mpRounded: React.FC = ({ ...props }) => ( ) -export { Icon22mpRounded as default } +export default Icon22mpRounded diff --git a/src/Icon22mpRoundedFilled.tsx b/src/Icon22mpRoundedFilled.tsx index 8b750a530..bf24ef9b2 100644 --- a/src/Icon22mpRoundedFilled.tsx +++ b/src/Icon22mpRoundedFilled.tsx @@ -8,4 +8,4 @@ const Icon22mpRoundedFilled: React.FC = ({ ...props }) => ( ) -export { Icon22mpRoundedFilled as default } +export default Icon22mpRoundedFilled diff --git a/src/Icon22mpSharp.tsx b/src/Icon22mpSharp.tsx index 3b0270efd..9ca85c737 100644 --- a/src/Icon22mpSharp.tsx +++ b/src/Icon22mpSharp.tsx @@ -8,4 +8,4 @@ const Icon22mpSharp: React.FC = ({ ...props }) => ( ) -export { Icon22mpSharp as default } +export default Icon22mpSharp diff --git a/src/Icon22mpSharpFilled.tsx b/src/Icon22mpSharpFilled.tsx index 5c6285511..e3b176109 100644 --- a/src/Icon22mpSharpFilled.tsx +++ b/src/Icon22mpSharpFilled.tsx @@ -8,4 +8,4 @@ const Icon22mpSharpFilled: React.FC = ({ ...props }) => ( ) -export { Icon22mpSharpFilled as default } +export default Icon22mpSharpFilled diff --git a/src/Icon23mpOutlined.tsx b/src/Icon23mpOutlined.tsx index 518a5072a..63eb98e12 100644 --- a/src/Icon23mpOutlined.tsx +++ b/src/Icon23mpOutlined.tsx @@ -8,4 +8,4 @@ const Icon23mpOutlined: React.FC = ({ ...props }) => ( ) -export { Icon23mpOutlined as default } +export default Icon23mpOutlined diff --git a/src/Icon23mpOutlinedFilled.tsx b/src/Icon23mpOutlinedFilled.tsx index 693188096..04e3fc3da 100644 --- a/src/Icon23mpOutlinedFilled.tsx +++ b/src/Icon23mpOutlinedFilled.tsx @@ -8,4 +8,4 @@ const Icon23mpOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { Icon23mpOutlinedFilled as default } +export default Icon23mpOutlinedFilled diff --git a/src/Icon23mpRounded.tsx b/src/Icon23mpRounded.tsx index 56a88ca01..276d07f12 100644 --- a/src/Icon23mpRounded.tsx +++ b/src/Icon23mpRounded.tsx @@ -8,4 +8,4 @@ const Icon23mpRounded: React.FC = ({ ...props }) => ( ) -export { Icon23mpRounded as default } +export default Icon23mpRounded diff --git a/src/Icon23mpRoundedFilled.tsx b/src/Icon23mpRoundedFilled.tsx index b264110cf..8ef2dfb32 100644 --- a/src/Icon23mpRoundedFilled.tsx +++ b/src/Icon23mpRoundedFilled.tsx @@ -8,4 +8,4 @@ const Icon23mpRoundedFilled: React.FC = ({ ...props }) => ( ) -export { Icon23mpRoundedFilled as default } +export default Icon23mpRoundedFilled diff --git a/src/Icon23mpSharp.tsx b/src/Icon23mpSharp.tsx index b585ed1da..8b8933911 100644 --- a/src/Icon23mpSharp.tsx +++ b/src/Icon23mpSharp.tsx @@ -8,4 +8,4 @@ const Icon23mpSharp: React.FC = ({ ...props }) => ( ) -export { Icon23mpSharp as default } +export default Icon23mpSharp diff --git a/src/Icon23mpSharpFilled.tsx b/src/Icon23mpSharpFilled.tsx index ec0c30543..d40944287 100644 --- a/src/Icon23mpSharpFilled.tsx +++ b/src/Icon23mpSharpFilled.tsx @@ -8,4 +8,4 @@ const Icon23mpSharpFilled: React.FC = ({ ...props }) => ( ) -export { Icon23mpSharpFilled as default } +export default Icon23mpSharpFilled diff --git a/src/Icon24fpsSelectOutlined.tsx b/src/Icon24fpsSelectOutlined.tsx index 1665622a9..a64bfabc4 100644 --- a/src/Icon24fpsSelectOutlined.tsx +++ b/src/Icon24fpsSelectOutlined.tsx @@ -8,4 +8,4 @@ const Icon24fpsSelectOutlined: React.FC = ({ ...props }) => ( ) -export { Icon24fpsSelectOutlined as default } +export default Icon24fpsSelectOutlined diff --git a/src/Icon24fpsSelectOutlinedFilled.tsx b/src/Icon24fpsSelectOutlinedFilled.tsx index 338a50c4b..aab1cfea4 100644 --- a/src/Icon24fpsSelectOutlinedFilled.tsx +++ b/src/Icon24fpsSelectOutlinedFilled.tsx @@ -8,4 +8,4 @@ const Icon24fpsSelectOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { Icon24fpsSelectOutlinedFilled as default } +export default Icon24fpsSelectOutlinedFilled diff --git a/src/Icon24fpsSelectRounded.tsx b/src/Icon24fpsSelectRounded.tsx index b25f20814..abbd8b94e 100644 --- a/src/Icon24fpsSelectRounded.tsx +++ b/src/Icon24fpsSelectRounded.tsx @@ -8,4 +8,4 @@ const Icon24fpsSelectRounded: React.FC = ({ ...props }) => ( ) -export { Icon24fpsSelectRounded as default } +export default Icon24fpsSelectRounded diff --git a/src/Icon24fpsSelectRoundedFilled.tsx b/src/Icon24fpsSelectRoundedFilled.tsx index a23a44349..32a8584cb 100644 --- a/src/Icon24fpsSelectRoundedFilled.tsx +++ b/src/Icon24fpsSelectRoundedFilled.tsx @@ -8,4 +8,4 @@ const Icon24fpsSelectRoundedFilled: React.FC = ({ ...props }) => ( ) -export { Icon24fpsSelectRoundedFilled as default } +export default Icon24fpsSelectRoundedFilled diff --git a/src/Icon24fpsSelectSharp.tsx b/src/Icon24fpsSelectSharp.tsx index 3ac330dfd..54627528c 100644 --- a/src/Icon24fpsSelectSharp.tsx +++ b/src/Icon24fpsSelectSharp.tsx @@ -8,4 +8,4 @@ const Icon24fpsSelectSharp: React.FC = ({ ...props }) => ( ) -export { Icon24fpsSelectSharp as default } +export default Icon24fpsSelectSharp diff --git a/src/Icon24fpsSelectSharpFilled.tsx b/src/Icon24fpsSelectSharpFilled.tsx index 2afc8629f..f63201cc7 100644 --- a/src/Icon24fpsSelectSharpFilled.tsx +++ b/src/Icon24fpsSelectSharpFilled.tsx @@ -8,4 +8,4 @@ const Icon24fpsSelectSharpFilled: React.FC = ({ ...props }) => ( ) -export { Icon24fpsSelectSharpFilled as default } +export default Icon24fpsSelectSharpFilled diff --git a/src/Icon24mpOutlined.tsx b/src/Icon24mpOutlined.tsx index ace0b8ec4..9a597f848 100644 --- a/src/Icon24mpOutlined.tsx +++ b/src/Icon24mpOutlined.tsx @@ -8,4 +8,4 @@ const Icon24mpOutlined: React.FC = ({ ...props }) => ( ) -export { Icon24mpOutlined as default } +export default Icon24mpOutlined diff --git a/src/Icon24mpOutlinedFilled.tsx b/src/Icon24mpOutlinedFilled.tsx index f2767ca9a..00af46ab4 100644 --- a/src/Icon24mpOutlinedFilled.tsx +++ b/src/Icon24mpOutlinedFilled.tsx @@ -8,4 +8,4 @@ const Icon24mpOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { Icon24mpOutlinedFilled as default } +export default Icon24mpOutlinedFilled diff --git a/src/Icon24mpRounded.tsx b/src/Icon24mpRounded.tsx index 8021bcff0..266133659 100644 --- a/src/Icon24mpRounded.tsx +++ b/src/Icon24mpRounded.tsx @@ -8,4 +8,4 @@ const Icon24mpRounded: React.FC = ({ ...props }) => ( ) -export { Icon24mpRounded as default } +export default Icon24mpRounded diff --git a/src/Icon24mpRoundedFilled.tsx b/src/Icon24mpRoundedFilled.tsx index 8f4ecbdcb..1bf70b68a 100644 --- a/src/Icon24mpRoundedFilled.tsx +++ b/src/Icon24mpRoundedFilled.tsx @@ -8,4 +8,4 @@ const Icon24mpRoundedFilled: React.FC = ({ ...props }) => ( ) -export { Icon24mpRoundedFilled as default } +export default Icon24mpRoundedFilled diff --git a/src/Icon24mpSharp.tsx b/src/Icon24mpSharp.tsx index 8a985f941..8a904a982 100644 --- a/src/Icon24mpSharp.tsx +++ b/src/Icon24mpSharp.tsx @@ -8,4 +8,4 @@ const Icon24mpSharp: React.FC = ({ ...props }) => ( ) -export { Icon24mpSharp as default } +export default Icon24mpSharp diff --git a/src/Icon24mpSharpFilled.tsx b/src/Icon24mpSharpFilled.tsx index f0704c8a8..d09913613 100644 --- a/src/Icon24mpSharpFilled.tsx +++ b/src/Icon24mpSharpFilled.tsx @@ -8,4 +8,4 @@ const Icon24mpSharpFilled: React.FC = ({ ...props }) => ( ) -export { Icon24mpSharpFilled as default } +export default Icon24mpSharpFilled diff --git a/src/Icon2dOutlined.tsx b/src/Icon2dOutlined.tsx index 1f9c42ad1..f1a12c9df 100644 --- a/src/Icon2dOutlined.tsx +++ b/src/Icon2dOutlined.tsx @@ -8,4 +8,4 @@ const Icon2dOutlined: React.FC = ({ ...props }) => ( ) -export { Icon2dOutlined as default } +export default Icon2dOutlined diff --git a/src/Icon2dOutlinedFilled.tsx b/src/Icon2dOutlinedFilled.tsx index 72eb57faf..5558e56d3 100644 --- a/src/Icon2dOutlinedFilled.tsx +++ b/src/Icon2dOutlinedFilled.tsx @@ -8,4 +8,4 @@ const Icon2dOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { Icon2dOutlinedFilled as default } +export default Icon2dOutlinedFilled diff --git a/src/Icon2dRounded.tsx b/src/Icon2dRounded.tsx index 4237ad6ec..c5d80f3eb 100644 --- a/src/Icon2dRounded.tsx +++ b/src/Icon2dRounded.tsx @@ -8,4 +8,4 @@ const Icon2dRounded: React.FC = ({ ...props }) => ( ) -export { Icon2dRounded as default } +export default Icon2dRounded diff --git a/src/Icon2dRoundedFilled.tsx b/src/Icon2dRoundedFilled.tsx index 024c42f3e..89605f777 100644 --- a/src/Icon2dRoundedFilled.tsx +++ b/src/Icon2dRoundedFilled.tsx @@ -8,4 +8,4 @@ const Icon2dRoundedFilled: React.FC = ({ ...props }) => ( ) -export { Icon2dRoundedFilled as default } +export default Icon2dRoundedFilled diff --git a/src/Icon2dSharp.tsx b/src/Icon2dSharp.tsx index 1ad1b8193..d6595ce33 100644 --- a/src/Icon2dSharp.tsx +++ b/src/Icon2dSharp.tsx @@ -8,4 +8,4 @@ const Icon2dSharp: React.FC = ({ ...props }) => ( ) -export { Icon2dSharp as default } +export default Icon2dSharp diff --git a/src/Icon2dSharpFilled.tsx b/src/Icon2dSharpFilled.tsx index e0b076d3b..273f014d8 100644 --- a/src/Icon2dSharpFilled.tsx +++ b/src/Icon2dSharpFilled.tsx @@ -8,4 +8,4 @@ const Icon2dSharpFilled: React.FC = ({ ...props }) => ( ) -export { Icon2dSharpFilled as default } +export default Icon2dSharpFilled diff --git a/src/Icon2kOutlined.tsx b/src/Icon2kOutlined.tsx index 944f1559a..fee105358 100644 --- a/src/Icon2kOutlined.tsx +++ b/src/Icon2kOutlined.tsx @@ -8,4 +8,4 @@ const Icon2kOutlined: React.FC = ({ ...props }) => ( ) -export { Icon2kOutlined as default } +export default Icon2kOutlined diff --git a/src/Icon2kOutlinedFilled.tsx b/src/Icon2kOutlinedFilled.tsx index 6c5503ccb..1fee97197 100644 --- a/src/Icon2kOutlinedFilled.tsx +++ b/src/Icon2kOutlinedFilled.tsx @@ -8,4 +8,4 @@ const Icon2kOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { Icon2kOutlinedFilled as default } +export default Icon2kOutlinedFilled diff --git a/src/Icon2kPlusOutlined.tsx b/src/Icon2kPlusOutlined.tsx index ce0337d77..61a14b6fe 100644 --- a/src/Icon2kPlusOutlined.tsx +++ b/src/Icon2kPlusOutlined.tsx @@ -8,4 +8,4 @@ const Icon2kPlusOutlined: React.FC = ({ ...props }) => ( ) -export { Icon2kPlusOutlined as default } +export default Icon2kPlusOutlined diff --git a/src/Icon2kPlusOutlinedFilled.tsx b/src/Icon2kPlusOutlinedFilled.tsx index 5b04e3fd0..5cd77da22 100644 --- a/src/Icon2kPlusOutlinedFilled.tsx +++ b/src/Icon2kPlusOutlinedFilled.tsx @@ -8,4 +8,4 @@ const Icon2kPlusOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { Icon2kPlusOutlinedFilled as default } +export default Icon2kPlusOutlinedFilled diff --git a/src/Icon2kPlusRounded.tsx b/src/Icon2kPlusRounded.tsx index 2c16d3a78..3023c4dd1 100644 --- a/src/Icon2kPlusRounded.tsx +++ b/src/Icon2kPlusRounded.tsx @@ -8,4 +8,4 @@ const Icon2kPlusRounded: React.FC = ({ ...props }) => ( ) -export { Icon2kPlusRounded as default } +export default Icon2kPlusRounded diff --git a/src/Icon2kPlusRoundedFilled.tsx b/src/Icon2kPlusRoundedFilled.tsx index 30b340832..49da4870d 100644 --- a/src/Icon2kPlusRoundedFilled.tsx +++ b/src/Icon2kPlusRoundedFilled.tsx @@ -8,4 +8,4 @@ const Icon2kPlusRoundedFilled: React.FC = ({ ...props }) => ( ) -export { Icon2kPlusRoundedFilled as default } +export default Icon2kPlusRoundedFilled diff --git a/src/Icon2kPlusSharp.tsx b/src/Icon2kPlusSharp.tsx index 35d9d78f1..15969190e 100644 --- a/src/Icon2kPlusSharp.tsx +++ b/src/Icon2kPlusSharp.tsx @@ -8,4 +8,4 @@ const Icon2kPlusSharp: React.FC = ({ ...props }) => ( ) -export { Icon2kPlusSharp as default } +export default Icon2kPlusSharp diff --git a/src/Icon2kPlusSharpFilled.tsx b/src/Icon2kPlusSharpFilled.tsx index af8584664..b6a745fef 100644 --- a/src/Icon2kPlusSharpFilled.tsx +++ b/src/Icon2kPlusSharpFilled.tsx @@ -8,4 +8,4 @@ const Icon2kPlusSharpFilled: React.FC = ({ ...props }) => ( ) -export { Icon2kPlusSharpFilled as default } +export default Icon2kPlusSharpFilled diff --git a/src/Icon2kRounded.tsx b/src/Icon2kRounded.tsx index fb6874968..c41d42d0a 100644 --- a/src/Icon2kRounded.tsx +++ b/src/Icon2kRounded.tsx @@ -8,4 +8,4 @@ const Icon2kRounded: React.FC = ({ ...props }) => ( ) -export { Icon2kRounded as default } +export default Icon2kRounded diff --git a/src/Icon2kRoundedFilled.tsx b/src/Icon2kRoundedFilled.tsx index 246cfe378..85fcc7fc0 100644 --- a/src/Icon2kRoundedFilled.tsx +++ b/src/Icon2kRoundedFilled.tsx @@ -8,4 +8,4 @@ const Icon2kRoundedFilled: React.FC = ({ ...props }) => ( ) -export { Icon2kRoundedFilled as default } +export default Icon2kRoundedFilled diff --git a/src/Icon2kSharp.tsx b/src/Icon2kSharp.tsx index 5d837cac2..39784810d 100644 --- a/src/Icon2kSharp.tsx +++ b/src/Icon2kSharp.tsx @@ -8,4 +8,4 @@ const Icon2kSharp: React.FC = ({ ...props }) => ( ) -export { Icon2kSharp as default } +export default Icon2kSharp diff --git a/src/Icon2kSharpFilled.tsx b/src/Icon2kSharpFilled.tsx index 6686962f3..68745db64 100644 --- a/src/Icon2kSharpFilled.tsx +++ b/src/Icon2kSharpFilled.tsx @@ -8,4 +8,4 @@ const Icon2kSharpFilled: React.FC = ({ ...props }) => ( ) -export { Icon2kSharpFilled as default } +export default Icon2kSharpFilled diff --git a/src/Icon2mpOutlined.tsx b/src/Icon2mpOutlined.tsx index 36295bd92..a648ba522 100644 --- a/src/Icon2mpOutlined.tsx +++ b/src/Icon2mpOutlined.tsx @@ -8,4 +8,4 @@ const Icon2mpOutlined: React.FC = ({ ...props }) => ( ) -export { Icon2mpOutlined as default } +export default Icon2mpOutlined diff --git a/src/Icon2mpOutlinedFilled.tsx b/src/Icon2mpOutlinedFilled.tsx index 5dac3560f..24ee379e6 100644 --- a/src/Icon2mpOutlinedFilled.tsx +++ b/src/Icon2mpOutlinedFilled.tsx @@ -8,4 +8,4 @@ const Icon2mpOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { Icon2mpOutlinedFilled as default } +export default Icon2mpOutlinedFilled diff --git a/src/Icon2mpRounded.tsx b/src/Icon2mpRounded.tsx index 262f43f75..c97cfeff3 100644 --- a/src/Icon2mpRounded.tsx +++ b/src/Icon2mpRounded.tsx @@ -8,4 +8,4 @@ const Icon2mpRounded: React.FC = ({ ...props }) => ( ) -export { Icon2mpRounded as default } +export default Icon2mpRounded diff --git a/src/Icon2mpRoundedFilled.tsx b/src/Icon2mpRoundedFilled.tsx index 7a4d547d9..e865311e0 100644 --- a/src/Icon2mpRoundedFilled.tsx +++ b/src/Icon2mpRoundedFilled.tsx @@ -8,4 +8,4 @@ const Icon2mpRoundedFilled: React.FC = ({ ...props }) => ( ) -export { Icon2mpRoundedFilled as default } +export default Icon2mpRoundedFilled diff --git a/src/Icon2mpSharp.tsx b/src/Icon2mpSharp.tsx index 12e5402d2..86c1ff3b9 100644 --- a/src/Icon2mpSharp.tsx +++ b/src/Icon2mpSharp.tsx @@ -8,4 +8,4 @@ const Icon2mpSharp: React.FC = ({ ...props }) => ( ) -export { Icon2mpSharp as default } +export default Icon2mpSharp diff --git a/src/Icon2mpSharpFilled.tsx b/src/Icon2mpSharpFilled.tsx index 85fb90c79..d9c7ff841 100644 --- a/src/Icon2mpSharpFilled.tsx +++ b/src/Icon2mpSharpFilled.tsx @@ -8,4 +8,4 @@ const Icon2mpSharpFilled: React.FC = ({ ...props }) => ( ) -export { Icon2mpSharpFilled as default } +export default Icon2mpSharpFilled diff --git a/src/Icon30fpsOutlined.tsx b/src/Icon30fpsOutlined.tsx index 7a24fd839..eb8b4437d 100644 --- a/src/Icon30fpsOutlined.tsx +++ b/src/Icon30fpsOutlined.tsx @@ -8,4 +8,4 @@ const Icon30fpsOutlined: React.FC = ({ ...props }) => ( ) -export { Icon30fpsOutlined as default } +export default Icon30fpsOutlined diff --git a/src/Icon30fpsOutlinedFilled.tsx b/src/Icon30fpsOutlinedFilled.tsx index 65cc6439f..01960e817 100644 --- a/src/Icon30fpsOutlinedFilled.tsx +++ b/src/Icon30fpsOutlinedFilled.tsx @@ -8,4 +8,4 @@ const Icon30fpsOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { Icon30fpsOutlinedFilled as default } +export default Icon30fpsOutlinedFilled diff --git a/src/Icon30fpsRounded.tsx b/src/Icon30fpsRounded.tsx index 42f4553f4..d01f6cfe0 100644 --- a/src/Icon30fpsRounded.tsx +++ b/src/Icon30fpsRounded.tsx @@ -8,4 +8,4 @@ const Icon30fpsRounded: React.FC = ({ ...props }) => ( ) -export { Icon30fpsRounded as default } +export default Icon30fpsRounded diff --git a/src/Icon30fpsRoundedFilled.tsx b/src/Icon30fpsRoundedFilled.tsx index 961c794bd..f4923aedc 100644 --- a/src/Icon30fpsRoundedFilled.tsx +++ b/src/Icon30fpsRoundedFilled.tsx @@ -8,4 +8,4 @@ const Icon30fpsRoundedFilled: React.FC = ({ ...props }) => ( ) -export { Icon30fpsRoundedFilled as default } +export default Icon30fpsRoundedFilled diff --git a/src/Icon30fpsSelectOutlined.tsx b/src/Icon30fpsSelectOutlined.tsx index dc1a4a966..3ccc03e7b 100644 --- a/src/Icon30fpsSelectOutlined.tsx +++ b/src/Icon30fpsSelectOutlined.tsx @@ -8,4 +8,4 @@ const Icon30fpsSelectOutlined: React.FC = ({ ...props }) => ( ) -export { Icon30fpsSelectOutlined as default } +export default Icon30fpsSelectOutlined diff --git a/src/Icon30fpsSelectOutlinedFilled.tsx b/src/Icon30fpsSelectOutlinedFilled.tsx index ffae94718..e1a1a3d61 100644 --- a/src/Icon30fpsSelectOutlinedFilled.tsx +++ b/src/Icon30fpsSelectOutlinedFilled.tsx @@ -8,4 +8,4 @@ const Icon30fpsSelectOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { Icon30fpsSelectOutlinedFilled as default } +export default Icon30fpsSelectOutlinedFilled diff --git a/src/Icon30fpsSelectRounded.tsx b/src/Icon30fpsSelectRounded.tsx index c8b984222..013c353fa 100644 --- a/src/Icon30fpsSelectRounded.tsx +++ b/src/Icon30fpsSelectRounded.tsx @@ -8,4 +8,4 @@ const Icon30fpsSelectRounded: React.FC = ({ ...props }) => ( ) -export { Icon30fpsSelectRounded as default } +export default Icon30fpsSelectRounded diff --git a/src/Icon30fpsSelectRoundedFilled.tsx b/src/Icon30fpsSelectRoundedFilled.tsx index 198e6a7b3..b335a541a 100644 --- a/src/Icon30fpsSelectRoundedFilled.tsx +++ b/src/Icon30fpsSelectRoundedFilled.tsx @@ -8,4 +8,4 @@ const Icon30fpsSelectRoundedFilled: React.FC = ({ ...props }) => ( ) -export { Icon30fpsSelectRoundedFilled as default } +export default Icon30fpsSelectRoundedFilled diff --git a/src/Icon30fpsSelectSharp.tsx b/src/Icon30fpsSelectSharp.tsx index c3298bae5..3e3ea14dd 100644 --- a/src/Icon30fpsSelectSharp.tsx +++ b/src/Icon30fpsSelectSharp.tsx @@ -8,4 +8,4 @@ const Icon30fpsSelectSharp: React.FC = ({ ...props }) => ( ) -export { Icon30fpsSelectSharp as default } +export default Icon30fpsSelectSharp diff --git a/src/Icon30fpsSelectSharpFilled.tsx b/src/Icon30fpsSelectSharpFilled.tsx index dca70b440..f0af18f36 100644 --- a/src/Icon30fpsSelectSharpFilled.tsx +++ b/src/Icon30fpsSelectSharpFilled.tsx @@ -8,4 +8,4 @@ const Icon30fpsSelectSharpFilled: React.FC = ({ ...props }) => ( ) -export { Icon30fpsSelectSharpFilled as default } +export default Icon30fpsSelectSharpFilled diff --git a/src/Icon30fpsSharp.tsx b/src/Icon30fpsSharp.tsx index ae2d4f99f..594b73aae 100644 --- a/src/Icon30fpsSharp.tsx +++ b/src/Icon30fpsSharp.tsx @@ -8,4 +8,4 @@ const Icon30fpsSharp: React.FC = ({ ...props }) => ( ) -export { Icon30fpsSharp as default } +export default Icon30fpsSharp diff --git a/src/Icon30fpsSharpFilled.tsx b/src/Icon30fpsSharpFilled.tsx index 1bc4387ef..21b953eb8 100644 --- a/src/Icon30fpsSharpFilled.tsx +++ b/src/Icon30fpsSharpFilled.tsx @@ -8,4 +8,4 @@ const Icon30fpsSharpFilled: React.FC = ({ ...props }) => ( ) -export { Icon30fpsSharpFilled as default } +export default Icon30fpsSharpFilled diff --git a/src/Icon360Outlined.tsx b/src/Icon360Outlined.tsx index 448f2e2a3..3ae7f50a9 100644 --- a/src/Icon360Outlined.tsx +++ b/src/Icon360Outlined.tsx @@ -8,4 +8,4 @@ const Icon360Outlined: React.FC = ({ ...props }) => ( ) -export { Icon360Outlined as default } +export default Icon360Outlined diff --git a/src/Icon360OutlinedFilled.tsx b/src/Icon360OutlinedFilled.tsx index 56867f72e..ff94a525b 100644 --- a/src/Icon360OutlinedFilled.tsx +++ b/src/Icon360OutlinedFilled.tsx @@ -8,4 +8,4 @@ const Icon360OutlinedFilled: React.FC = ({ ...props }) => ( ) -export { Icon360OutlinedFilled as default } +export default Icon360OutlinedFilled diff --git a/src/Icon360Rounded.tsx b/src/Icon360Rounded.tsx index f8503483c..cc7fd167e 100644 --- a/src/Icon360Rounded.tsx +++ b/src/Icon360Rounded.tsx @@ -8,4 +8,4 @@ const Icon360Rounded: React.FC = ({ ...props }) => ( ) -export { Icon360Rounded as default } +export default Icon360Rounded diff --git a/src/Icon360RoundedFilled.tsx b/src/Icon360RoundedFilled.tsx index da213b7bc..5374d0393 100644 --- a/src/Icon360RoundedFilled.tsx +++ b/src/Icon360RoundedFilled.tsx @@ -8,4 +8,4 @@ const Icon360RoundedFilled: React.FC = ({ ...props }) => ( ) -export { Icon360RoundedFilled as default } +export default Icon360RoundedFilled diff --git a/src/Icon360Sharp.tsx b/src/Icon360Sharp.tsx index f8a7950da..c9eb13e15 100644 --- a/src/Icon360Sharp.tsx +++ b/src/Icon360Sharp.tsx @@ -8,4 +8,4 @@ const Icon360Sharp: React.FC = ({ ...props }) => ( ) -export { Icon360Sharp as default } +export default Icon360Sharp diff --git a/src/Icon360SharpFilled.tsx b/src/Icon360SharpFilled.tsx index cfa3d93fd..a20cc92f6 100644 --- a/src/Icon360SharpFilled.tsx +++ b/src/Icon360SharpFilled.tsx @@ -8,4 +8,4 @@ const Icon360SharpFilled: React.FC = ({ ...props }) => ( ) -export { Icon360SharpFilled as default } +export default Icon360SharpFilled diff --git a/src/Icon3dRotationOutlined.tsx b/src/Icon3dRotationOutlined.tsx index cf04860b5..baf5d907c 100644 --- a/src/Icon3dRotationOutlined.tsx +++ b/src/Icon3dRotationOutlined.tsx @@ -8,4 +8,4 @@ const Icon3dRotationOutlined: React.FC = ({ ...props }) => ( ) -export { Icon3dRotationOutlined as default } +export default Icon3dRotationOutlined diff --git a/src/Icon3dRotationOutlinedFilled.tsx b/src/Icon3dRotationOutlinedFilled.tsx index 180274119..1dd875a6b 100644 --- a/src/Icon3dRotationOutlinedFilled.tsx +++ b/src/Icon3dRotationOutlinedFilled.tsx @@ -8,4 +8,4 @@ const Icon3dRotationOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { Icon3dRotationOutlinedFilled as default } +export default Icon3dRotationOutlinedFilled diff --git a/src/Icon3dRotationRounded.tsx b/src/Icon3dRotationRounded.tsx index 007c46ac9..e9bd1772f 100644 --- a/src/Icon3dRotationRounded.tsx +++ b/src/Icon3dRotationRounded.tsx @@ -8,4 +8,4 @@ const Icon3dRotationRounded: React.FC = ({ ...props }) => ( ) -export { Icon3dRotationRounded as default } +export default Icon3dRotationRounded diff --git a/src/Icon3dRotationRoundedFilled.tsx b/src/Icon3dRotationRoundedFilled.tsx index ed9bdb9fe..ed58c80e7 100644 --- a/src/Icon3dRotationRoundedFilled.tsx +++ b/src/Icon3dRotationRoundedFilled.tsx @@ -8,4 +8,4 @@ const Icon3dRotationRoundedFilled: React.FC = ({ ...props }) => ( ) -export { Icon3dRotationRoundedFilled as default } +export default Icon3dRotationRoundedFilled diff --git a/src/Icon3dRotationSharp.tsx b/src/Icon3dRotationSharp.tsx index b2dee0fa4..6025a7814 100644 --- a/src/Icon3dRotationSharp.tsx +++ b/src/Icon3dRotationSharp.tsx @@ -8,4 +8,4 @@ const Icon3dRotationSharp: React.FC = ({ ...props }) => ( ) -export { Icon3dRotationSharp as default } +export default Icon3dRotationSharp diff --git a/src/Icon3dRotationSharpFilled.tsx b/src/Icon3dRotationSharpFilled.tsx index 5fd71397d..72300bcb3 100644 --- a/src/Icon3dRotationSharpFilled.tsx +++ b/src/Icon3dRotationSharpFilled.tsx @@ -8,4 +8,4 @@ const Icon3dRotationSharpFilled: React.FC = ({ ...props }) => ( ) -export { Icon3dRotationSharpFilled as default } +export default Icon3dRotationSharpFilled diff --git a/src/Icon3gMobiledataBadgeOutlined.tsx b/src/Icon3gMobiledataBadgeOutlined.tsx index dc4f36fae..8445555b7 100644 --- a/src/Icon3gMobiledataBadgeOutlined.tsx +++ b/src/Icon3gMobiledataBadgeOutlined.tsx @@ -8,4 +8,4 @@ const Icon3gMobiledataBadgeOutlined: React.FC = ({ ...props }) => ( ) -export { Icon3gMobiledataBadgeOutlined as default } +export default Icon3gMobiledataBadgeOutlined diff --git a/src/Icon3gMobiledataBadgeOutlinedFilled.tsx b/src/Icon3gMobiledataBadgeOutlinedFilled.tsx index 00093d4c4..c9e7a4c45 100644 --- a/src/Icon3gMobiledataBadgeOutlinedFilled.tsx +++ b/src/Icon3gMobiledataBadgeOutlinedFilled.tsx @@ -10,4 +10,4 @@ const Icon3gMobiledataBadgeOutlinedFilled: React.FC = ({ ) -export { Icon3gMobiledataBadgeOutlinedFilled as default } +export default Icon3gMobiledataBadgeOutlinedFilled diff --git a/src/Icon3gMobiledataBadgeRounded.tsx b/src/Icon3gMobiledataBadgeRounded.tsx index 33019a724..67892b928 100644 --- a/src/Icon3gMobiledataBadgeRounded.tsx +++ b/src/Icon3gMobiledataBadgeRounded.tsx @@ -8,4 +8,4 @@ const Icon3gMobiledataBadgeRounded: React.FC = ({ ...props }) => ( ) -export { Icon3gMobiledataBadgeRounded as default } +export default Icon3gMobiledataBadgeRounded diff --git a/src/Icon3gMobiledataBadgeRoundedFilled.tsx b/src/Icon3gMobiledataBadgeRoundedFilled.tsx index a545a09dd..9b82fed48 100644 --- a/src/Icon3gMobiledataBadgeRoundedFilled.tsx +++ b/src/Icon3gMobiledataBadgeRoundedFilled.tsx @@ -10,4 +10,4 @@ const Icon3gMobiledataBadgeRoundedFilled: React.FC = ({ ) -export { Icon3gMobiledataBadgeRoundedFilled as default } +export default Icon3gMobiledataBadgeRoundedFilled diff --git a/src/Icon3gMobiledataBadgeSharp.tsx b/src/Icon3gMobiledataBadgeSharp.tsx index ffbd5240a..1203a4fa4 100644 --- a/src/Icon3gMobiledataBadgeSharp.tsx +++ b/src/Icon3gMobiledataBadgeSharp.tsx @@ -8,4 +8,4 @@ const Icon3gMobiledataBadgeSharp: React.FC = ({ ...props }) => ( ) -export { Icon3gMobiledataBadgeSharp as default } +export default Icon3gMobiledataBadgeSharp diff --git a/src/Icon3gMobiledataBadgeSharpFilled.tsx b/src/Icon3gMobiledataBadgeSharpFilled.tsx index a04cfe078..4ebbdeb67 100644 --- a/src/Icon3gMobiledataBadgeSharpFilled.tsx +++ b/src/Icon3gMobiledataBadgeSharpFilled.tsx @@ -10,4 +10,4 @@ const Icon3gMobiledataBadgeSharpFilled: React.FC = ({ ) -export { Icon3gMobiledataBadgeSharpFilled as default } +export default Icon3gMobiledataBadgeSharpFilled diff --git a/src/Icon3gMobiledataOutlined.tsx b/src/Icon3gMobiledataOutlined.tsx index 2987d58d5..cb2d4c515 100644 --- a/src/Icon3gMobiledataOutlined.tsx +++ b/src/Icon3gMobiledataOutlined.tsx @@ -8,4 +8,4 @@ const Icon3gMobiledataOutlined: React.FC = ({ ...props }) => ( ) -export { Icon3gMobiledataOutlined as default } +export default Icon3gMobiledataOutlined diff --git a/src/Icon3gMobiledataOutlinedFilled.tsx b/src/Icon3gMobiledataOutlinedFilled.tsx index 50041804a..4f8366da2 100644 --- a/src/Icon3gMobiledataOutlinedFilled.tsx +++ b/src/Icon3gMobiledataOutlinedFilled.tsx @@ -8,4 +8,4 @@ const Icon3gMobiledataOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { Icon3gMobiledataOutlinedFilled as default } +export default Icon3gMobiledataOutlinedFilled diff --git a/src/Icon3gMobiledataRounded.tsx b/src/Icon3gMobiledataRounded.tsx index 524a3dc65..1d234d9e1 100644 --- a/src/Icon3gMobiledataRounded.tsx +++ b/src/Icon3gMobiledataRounded.tsx @@ -8,4 +8,4 @@ const Icon3gMobiledataRounded: React.FC = ({ ...props }) => ( ) -export { Icon3gMobiledataRounded as default } +export default Icon3gMobiledataRounded diff --git a/src/Icon3gMobiledataRoundedFilled.tsx b/src/Icon3gMobiledataRoundedFilled.tsx index e2ad3494c..5a5536622 100644 --- a/src/Icon3gMobiledataRoundedFilled.tsx +++ b/src/Icon3gMobiledataRoundedFilled.tsx @@ -8,4 +8,4 @@ const Icon3gMobiledataRoundedFilled: React.FC = ({ ...props }) => ( ) -export { Icon3gMobiledataRoundedFilled as default } +export default Icon3gMobiledataRoundedFilled diff --git a/src/Icon3gMobiledataSharp.tsx b/src/Icon3gMobiledataSharp.tsx index 60ddd197f..a507d2667 100644 --- a/src/Icon3gMobiledataSharp.tsx +++ b/src/Icon3gMobiledataSharp.tsx @@ -8,4 +8,4 @@ const Icon3gMobiledataSharp: React.FC = ({ ...props }) => ( ) -export { Icon3gMobiledataSharp as default } +export default Icon3gMobiledataSharp diff --git a/src/Icon3gMobiledataSharpFilled.tsx b/src/Icon3gMobiledataSharpFilled.tsx index e1a3fe640..5e5831c55 100644 --- a/src/Icon3gMobiledataSharpFilled.tsx +++ b/src/Icon3gMobiledataSharpFilled.tsx @@ -8,4 +8,4 @@ const Icon3gMobiledataSharpFilled: React.FC = ({ ...props }) => ( ) -export { Icon3gMobiledataSharpFilled as default } +export default Icon3gMobiledataSharpFilled diff --git a/src/Icon3kOutlined.tsx b/src/Icon3kOutlined.tsx index d8a29a91d..872fe4acc 100644 --- a/src/Icon3kOutlined.tsx +++ b/src/Icon3kOutlined.tsx @@ -8,4 +8,4 @@ const Icon3kOutlined: React.FC = ({ ...props }) => ( ) -export { Icon3kOutlined as default } +export default Icon3kOutlined diff --git a/src/Icon3kOutlinedFilled.tsx b/src/Icon3kOutlinedFilled.tsx index e370aeca1..71f256fc9 100644 --- a/src/Icon3kOutlinedFilled.tsx +++ b/src/Icon3kOutlinedFilled.tsx @@ -8,4 +8,4 @@ const Icon3kOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { Icon3kOutlinedFilled as default } +export default Icon3kOutlinedFilled diff --git a/src/Icon3kPlusOutlined.tsx b/src/Icon3kPlusOutlined.tsx index cd388c969..9f9fcd0b8 100644 --- a/src/Icon3kPlusOutlined.tsx +++ b/src/Icon3kPlusOutlined.tsx @@ -8,4 +8,4 @@ const Icon3kPlusOutlined: React.FC = ({ ...props }) => ( ) -export { Icon3kPlusOutlined as default } +export default Icon3kPlusOutlined diff --git a/src/Icon3kPlusOutlinedFilled.tsx b/src/Icon3kPlusOutlinedFilled.tsx index d6f1a9aa1..4860d9fec 100644 --- a/src/Icon3kPlusOutlinedFilled.tsx +++ b/src/Icon3kPlusOutlinedFilled.tsx @@ -8,4 +8,4 @@ const Icon3kPlusOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { Icon3kPlusOutlinedFilled as default } +export default Icon3kPlusOutlinedFilled diff --git a/src/Icon3kPlusRounded.tsx b/src/Icon3kPlusRounded.tsx index b94f2b0c6..3e80522b5 100644 --- a/src/Icon3kPlusRounded.tsx +++ b/src/Icon3kPlusRounded.tsx @@ -8,4 +8,4 @@ const Icon3kPlusRounded: React.FC = ({ ...props }) => ( ) -export { Icon3kPlusRounded as default } +export default Icon3kPlusRounded diff --git a/src/Icon3kPlusRoundedFilled.tsx b/src/Icon3kPlusRoundedFilled.tsx index e4e1a9b84..118bb5593 100644 --- a/src/Icon3kPlusRoundedFilled.tsx +++ b/src/Icon3kPlusRoundedFilled.tsx @@ -8,4 +8,4 @@ const Icon3kPlusRoundedFilled: React.FC = ({ ...props }) => ( ) -export { Icon3kPlusRoundedFilled as default } +export default Icon3kPlusRoundedFilled diff --git a/src/Icon3kPlusSharp.tsx b/src/Icon3kPlusSharp.tsx index 060e44531..45ea19b86 100644 --- a/src/Icon3kPlusSharp.tsx +++ b/src/Icon3kPlusSharp.tsx @@ -8,4 +8,4 @@ const Icon3kPlusSharp: React.FC = ({ ...props }) => ( ) -export { Icon3kPlusSharp as default } +export default Icon3kPlusSharp diff --git a/src/Icon3kPlusSharpFilled.tsx b/src/Icon3kPlusSharpFilled.tsx index f769d2882..f04fa1005 100644 --- a/src/Icon3kPlusSharpFilled.tsx +++ b/src/Icon3kPlusSharpFilled.tsx @@ -8,4 +8,4 @@ const Icon3kPlusSharpFilled: React.FC = ({ ...props }) => ( ) -export { Icon3kPlusSharpFilled as default } +export default Icon3kPlusSharpFilled diff --git a/src/Icon3kRounded.tsx b/src/Icon3kRounded.tsx index c2f57b517..890c1d54e 100644 --- a/src/Icon3kRounded.tsx +++ b/src/Icon3kRounded.tsx @@ -8,4 +8,4 @@ const Icon3kRounded: React.FC = ({ ...props }) => ( ) -export { Icon3kRounded as default } +export default Icon3kRounded diff --git a/src/Icon3kRoundedFilled.tsx b/src/Icon3kRoundedFilled.tsx index c7a7cfd89..aa300b887 100644 --- a/src/Icon3kRoundedFilled.tsx +++ b/src/Icon3kRoundedFilled.tsx @@ -8,4 +8,4 @@ const Icon3kRoundedFilled: React.FC = ({ ...props }) => ( ) -export { Icon3kRoundedFilled as default } +export default Icon3kRoundedFilled diff --git a/src/Icon3kSharp.tsx b/src/Icon3kSharp.tsx index 5090f0415..26b0ec479 100644 --- a/src/Icon3kSharp.tsx +++ b/src/Icon3kSharp.tsx @@ -8,4 +8,4 @@ const Icon3kSharp: React.FC = ({ ...props }) => ( ) -export { Icon3kSharp as default } +export default Icon3kSharp diff --git a/src/Icon3kSharpFilled.tsx b/src/Icon3kSharpFilled.tsx index 5da544c1c..306f3e7c8 100644 --- a/src/Icon3kSharpFilled.tsx +++ b/src/Icon3kSharpFilled.tsx @@ -8,4 +8,4 @@ const Icon3kSharpFilled: React.FC = ({ ...props }) => ( ) -export { Icon3kSharpFilled as default } +export default Icon3kSharpFilled diff --git a/src/Icon3mpOutlined.tsx b/src/Icon3mpOutlined.tsx index 983b0bb34..e23769e9e 100644 --- a/src/Icon3mpOutlined.tsx +++ b/src/Icon3mpOutlined.tsx @@ -8,4 +8,4 @@ const Icon3mpOutlined: React.FC = ({ ...props }) => ( ) -export { Icon3mpOutlined as default } +export default Icon3mpOutlined diff --git a/src/Icon3mpOutlinedFilled.tsx b/src/Icon3mpOutlinedFilled.tsx index 7ecca6afb..12a810000 100644 --- a/src/Icon3mpOutlinedFilled.tsx +++ b/src/Icon3mpOutlinedFilled.tsx @@ -8,4 +8,4 @@ const Icon3mpOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { Icon3mpOutlinedFilled as default } +export default Icon3mpOutlinedFilled diff --git a/src/Icon3mpRounded.tsx b/src/Icon3mpRounded.tsx index 8d4e5d5d0..242e2d089 100644 --- a/src/Icon3mpRounded.tsx +++ b/src/Icon3mpRounded.tsx @@ -8,4 +8,4 @@ const Icon3mpRounded: React.FC = ({ ...props }) => ( ) -export { Icon3mpRounded as default } +export default Icon3mpRounded diff --git a/src/Icon3mpRoundedFilled.tsx b/src/Icon3mpRoundedFilled.tsx index 8cec4a907..b84ebcfb9 100644 --- a/src/Icon3mpRoundedFilled.tsx +++ b/src/Icon3mpRoundedFilled.tsx @@ -8,4 +8,4 @@ const Icon3mpRoundedFilled: React.FC = ({ ...props }) => ( ) -export { Icon3mpRoundedFilled as default } +export default Icon3mpRoundedFilled diff --git a/src/Icon3mpSharp.tsx b/src/Icon3mpSharp.tsx index a8e748310..4226a5d47 100644 --- a/src/Icon3mpSharp.tsx +++ b/src/Icon3mpSharp.tsx @@ -8,4 +8,4 @@ const Icon3mpSharp: React.FC = ({ ...props }) => ( ) -export { Icon3mpSharp as default } +export default Icon3mpSharp diff --git a/src/Icon3mpSharpFilled.tsx b/src/Icon3mpSharpFilled.tsx index 7d2f72672..84ecd3b35 100644 --- a/src/Icon3mpSharpFilled.tsx +++ b/src/Icon3mpSharpFilled.tsx @@ -8,4 +8,4 @@ const Icon3mpSharpFilled: React.FC = ({ ...props }) => ( ) -export { Icon3mpSharpFilled as default } +export default Icon3mpSharpFilled diff --git a/src/Icon3pOutlined.tsx b/src/Icon3pOutlined.tsx index a8ffdbf65..eb1bf1e86 100644 --- a/src/Icon3pOutlined.tsx +++ b/src/Icon3pOutlined.tsx @@ -8,4 +8,4 @@ const Icon3pOutlined: React.FC = ({ ...props }) => ( ) -export { Icon3pOutlined as default } +export default Icon3pOutlined diff --git a/src/Icon3pOutlinedFilled.tsx b/src/Icon3pOutlinedFilled.tsx index 555d1367d..a01d332ea 100644 --- a/src/Icon3pOutlinedFilled.tsx +++ b/src/Icon3pOutlinedFilled.tsx @@ -8,4 +8,4 @@ const Icon3pOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { Icon3pOutlinedFilled as default } +export default Icon3pOutlinedFilled diff --git a/src/Icon3pRounded.tsx b/src/Icon3pRounded.tsx index b09a372c0..9c85901e2 100644 --- a/src/Icon3pRounded.tsx +++ b/src/Icon3pRounded.tsx @@ -8,4 +8,4 @@ const Icon3pRounded: React.FC = ({ ...props }) => ( ) -export { Icon3pRounded as default } +export default Icon3pRounded diff --git a/src/Icon3pRoundedFilled.tsx b/src/Icon3pRoundedFilled.tsx index be14e09ee..d7de642a1 100644 --- a/src/Icon3pRoundedFilled.tsx +++ b/src/Icon3pRoundedFilled.tsx @@ -8,4 +8,4 @@ const Icon3pRoundedFilled: React.FC = ({ ...props }) => ( ) -export { Icon3pRoundedFilled as default } +export default Icon3pRoundedFilled diff --git a/src/Icon3pSharp.tsx b/src/Icon3pSharp.tsx index dcf53ec5a..1dac3be52 100644 --- a/src/Icon3pSharp.tsx +++ b/src/Icon3pSharp.tsx @@ -8,4 +8,4 @@ const Icon3pSharp: React.FC = ({ ...props }) => ( ) -export { Icon3pSharp as default } +export default Icon3pSharp diff --git a/src/Icon3pSharpFilled.tsx b/src/Icon3pSharpFilled.tsx index 68973919a..e7e902cc8 100644 --- a/src/Icon3pSharpFilled.tsx +++ b/src/Icon3pSharpFilled.tsx @@ -8,4 +8,4 @@ const Icon3pSharpFilled: React.FC = ({ ...props }) => ( ) -export { Icon3pSharpFilled as default } +export default Icon3pSharpFilled diff --git a/src/Icon4gMobiledataBadgeOutlined.tsx b/src/Icon4gMobiledataBadgeOutlined.tsx index 0ffd359aa..822965dde 100644 --- a/src/Icon4gMobiledataBadgeOutlined.tsx +++ b/src/Icon4gMobiledataBadgeOutlined.tsx @@ -8,4 +8,4 @@ const Icon4gMobiledataBadgeOutlined: React.FC = ({ ...props }) => ( ) -export { Icon4gMobiledataBadgeOutlined as default } +export default Icon4gMobiledataBadgeOutlined diff --git a/src/Icon4gMobiledataBadgeOutlinedFilled.tsx b/src/Icon4gMobiledataBadgeOutlinedFilled.tsx index 36621378b..c93d98ae9 100644 --- a/src/Icon4gMobiledataBadgeOutlinedFilled.tsx +++ b/src/Icon4gMobiledataBadgeOutlinedFilled.tsx @@ -10,4 +10,4 @@ const Icon4gMobiledataBadgeOutlinedFilled: React.FC = ({ ) -export { Icon4gMobiledataBadgeOutlinedFilled as default } +export default Icon4gMobiledataBadgeOutlinedFilled diff --git a/src/Icon4gMobiledataBadgeRounded.tsx b/src/Icon4gMobiledataBadgeRounded.tsx index 1d59725fb..2100a3031 100644 --- a/src/Icon4gMobiledataBadgeRounded.tsx +++ b/src/Icon4gMobiledataBadgeRounded.tsx @@ -8,4 +8,4 @@ const Icon4gMobiledataBadgeRounded: React.FC = ({ ...props }) => ( ) -export { Icon4gMobiledataBadgeRounded as default } +export default Icon4gMobiledataBadgeRounded diff --git a/src/Icon4gMobiledataBadgeRoundedFilled.tsx b/src/Icon4gMobiledataBadgeRoundedFilled.tsx index c81bc1a42..8c0c57cc3 100644 --- a/src/Icon4gMobiledataBadgeRoundedFilled.tsx +++ b/src/Icon4gMobiledataBadgeRoundedFilled.tsx @@ -10,4 +10,4 @@ const Icon4gMobiledataBadgeRoundedFilled: React.FC = ({ ) -export { Icon4gMobiledataBadgeRoundedFilled as default } +export default Icon4gMobiledataBadgeRoundedFilled diff --git a/src/Icon4gMobiledataBadgeSharp.tsx b/src/Icon4gMobiledataBadgeSharp.tsx index 98480d999..1dd910213 100644 --- a/src/Icon4gMobiledataBadgeSharp.tsx +++ b/src/Icon4gMobiledataBadgeSharp.tsx @@ -8,4 +8,4 @@ const Icon4gMobiledataBadgeSharp: React.FC = ({ ...props }) => ( ) -export { Icon4gMobiledataBadgeSharp as default } +export default Icon4gMobiledataBadgeSharp diff --git a/src/Icon4gMobiledataBadgeSharpFilled.tsx b/src/Icon4gMobiledataBadgeSharpFilled.tsx index 0e7a72096..edd938d81 100644 --- a/src/Icon4gMobiledataBadgeSharpFilled.tsx +++ b/src/Icon4gMobiledataBadgeSharpFilled.tsx @@ -10,4 +10,4 @@ const Icon4gMobiledataBadgeSharpFilled: React.FC = ({ ) -export { Icon4gMobiledataBadgeSharpFilled as default } +export default Icon4gMobiledataBadgeSharpFilled diff --git a/src/Icon4gMobiledataOutlined.tsx b/src/Icon4gMobiledataOutlined.tsx index bffa0dab4..d5758894c 100644 --- a/src/Icon4gMobiledataOutlined.tsx +++ b/src/Icon4gMobiledataOutlined.tsx @@ -8,4 +8,4 @@ const Icon4gMobiledataOutlined: React.FC = ({ ...props }) => ( ) -export { Icon4gMobiledataOutlined as default } +export default Icon4gMobiledataOutlined diff --git a/src/Icon4gMobiledataOutlinedFilled.tsx b/src/Icon4gMobiledataOutlinedFilled.tsx index 7badbe73a..4e3951b3c 100644 --- a/src/Icon4gMobiledataOutlinedFilled.tsx +++ b/src/Icon4gMobiledataOutlinedFilled.tsx @@ -8,4 +8,4 @@ const Icon4gMobiledataOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { Icon4gMobiledataOutlinedFilled as default } +export default Icon4gMobiledataOutlinedFilled diff --git a/src/Icon4gMobiledataRounded.tsx b/src/Icon4gMobiledataRounded.tsx index bba1e3e2b..9a345bbba 100644 --- a/src/Icon4gMobiledataRounded.tsx +++ b/src/Icon4gMobiledataRounded.tsx @@ -8,4 +8,4 @@ const Icon4gMobiledataRounded: React.FC = ({ ...props }) => ( ) -export { Icon4gMobiledataRounded as default } +export default Icon4gMobiledataRounded diff --git a/src/Icon4gMobiledataRoundedFilled.tsx b/src/Icon4gMobiledataRoundedFilled.tsx index 6d104a783..da5270c48 100644 --- a/src/Icon4gMobiledataRoundedFilled.tsx +++ b/src/Icon4gMobiledataRoundedFilled.tsx @@ -8,4 +8,4 @@ const Icon4gMobiledataRoundedFilled: React.FC = ({ ...props }) => ( ) -export { Icon4gMobiledataRoundedFilled as default } +export default Icon4gMobiledataRoundedFilled diff --git a/src/Icon4gMobiledataSharp.tsx b/src/Icon4gMobiledataSharp.tsx index 9981f26af..6b37b54e6 100644 --- a/src/Icon4gMobiledataSharp.tsx +++ b/src/Icon4gMobiledataSharp.tsx @@ -8,4 +8,4 @@ const Icon4gMobiledataSharp: React.FC = ({ ...props }) => ( ) -export { Icon4gMobiledataSharp as default } +export default Icon4gMobiledataSharp diff --git a/src/Icon4gMobiledataSharpFilled.tsx b/src/Icon4gMobiledataSharpFilled.tsx index d8fbf9f27..3655508b8 100644 --- a/src/Icon4gMobiledataSharpFilled.tsx +++ b/src/Icon4gMobiledataSharpFilled.tsx @@ -8,4 +8,4 @@ const Icon4gMobiledataSharpFilled: React.FC = ({ ...props }) => ( ) -export { Icon4gMobiledataSharpFilled as default } +export default Icon4gMobiledataSharpFilled diff --git a/src/Icon4gPlusMobiledataOutlined.tsx b/src/Icon4gPlusMobiledataOutlined.tsx index 2139109c3..9a5c43d01 100644 --- a/src/Icon4gPlusMobiledataOutlined.tsx +++ b/src/Icon4gPlusMobiledataOutlined.tsx @@ -8,4 +8,4 @@ const Icon4gPlusMobiledataOutlined: React.FC = ({ ...props }) => ( ) -export { Icon4gPlusMobiledataOutlined as default } +export default Icon4gPlusMobiledataOutlined diff --git a/src/Icon4gPlusMobiledataOutlinedFilled.tsx b/src/Icon4gPlusMobiledataOutlinedFilled.tsx index 4bd2aa8b6..cd838a445 100644 --- a/src/Icon4gPlusMobiledataOutlinedFilled.tsx +++ b/src/Icon4gPlusMobiledataOutlinedFilled.tsx @@ -10,4 +10,4 @@ const Icon4gPlusMobiledataOutlinedFilled: React.FC = ({ ) -export { Icon4gPlusMobiledataOutlinedFilled as default } +export default Icon4gPlusMobiledataOutlinedFilled diff --git a/src/Icon4gPlusMobiledataRounded.tsx b/src/Icon4gPlusMobiledataRounded.tsx index de1f6cf66..e8cc7d624 100644 --- a/src/Icon4gPlusMobiledataRounded.tsx +++ b/src/Icon4gPlusMobiledataRounded.tsx @@ -8,4 +8,4 @@ const Icon4gPlusMobiledataRounded: React.FC = ({ ...props }) => ( ) -export { Icon4gPlusMobiledataRounded as default } +export default Icon4gPlusMobiledataRounded diff --git a/src/Icon4gPlusMobiledataRoundedFilled.tsx b/src/Icon4gPlusMobiledataRoundedFilled.tsx index 80daf0682..4b96f3875 100644 --- a/src/Icon4gPlusMobiledataRoundedFilled.tsx +++ b/src/Icon4gPlusMobiledataRoundedFilled.tsx @@ -10,4 +10,4 @@ const Icon4gPlusMobiledataRoundedFilled: React.FC = ({ ) -export { Icon4gPlusMobiledataRoundedFilled as default } +export default Icon4gPlusMobiledataRoundedFilled diff --git a/src/Icon4gPlusMobiledataSharp.tsx b/src/Icon4gPlusMobiledataSharp.tsx index 79da9bfb2..d7917cf63 100644 --- a/src/Icon4gPlusMobiledataSharp.tsx +++ b/src/Icon4gPlusMobiledataSharp.tsx @@ -8,4 +8,4 @@ const Icon4gPlusMobiledataSharp: React.FC = ({ ...props }) => ( ) -export { Icon4gPlusMobiledataSharp as default } +export default Icon4gPlusMobiledataSharp diff --git a/src/Icon4gPlusMobiledataSharpFilled.tsx b/src/Icon4gPlusMobiledataSharpFilled.tsx index c1caca9ca..9b4a0e7db 100644 --- a/src/Icon4gPlusMobiledataSharpFilled.tsx +++ b/src/Icon4gPlusMobiledataSharpFilled.tsx @@ -8,4 +8,4 @@ const Icon4gPlusMobiledataSharpFilled: React.FC = ({ ...props }) => ( ) -export { Icon4gPlusMobiledataSharpFilled as default } +export default Icon4gPlusMobiledataSharpFilled diff --git a/src/Icon4kOutlined.tsx b/src/Icon4kOutlined.tsx index 10e58f24e..de23a415f 100644 --- a/src/Icon4kOutlined.tsx +++ b/src/Icon4kOutlined.tsx @@ -8,4 +8,4 @@ const Icon4kOutlined: React.FC = ({ ...props }) => ( ) -export { Icon4kOutlined as default } +export default Icon4kOutlined diff --git a/src/Icon4kOutlinedFilled.tsx b/src/Icon4kOutlinedFilled.tsx index c53b87189..18d498cb8 100644 --- a/src/Icon4kOutlinedFilled.tsx +++ b/src/Icon4kOutlinedFilled.tsx @@ -8,4 +8,4 @@ const Icon4kOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { Icon4kOutlinedFilled as default } +export default Icon4kOutlinedFilled diff --git a/src/Icon4kPlusOutlined.tsx b/src/Icon4kPlusOutlined.tsx index c3b599008..fc951f51c 100644 --- a/src/Icon4kPlusOutlined.tsx +++ b/src/Icon4kPlusOutlined.tsx @@ -8,4 +8,4 @@ const Icon4kPlusOutlined: React.FC = ({ ...props }) => ( ) -export { Icon4kPlusOutlined as default } +export default Icon4kPlusOutlined diff --git a/src/Icon4kPlusOutlinedFilled.tsx b/src/Icon4kPlusOutlinedFilled.tsx index 88022cc5e..3e3544ea1 100644 --- a/src/Icon4kPlusOutlinedFilled.tsx +++ b/src/Icon4kPlusOutlinedFilled.tsx @@ -8,4 +8,4 @@ const Icon4kPlusOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { Icon4kPlusOutlinedFilled as default } +export default Icon4kPlusOutlinedFilled diff --git a/src/Icon4kPlusRounded.tsx b/src/Icon4kPlusRounded.tsx index 8b188838a..1cd7cb0a2 100644 --- a/src/Icon4kPlusRounded.tsx +++ b/src/Icon4kPlusRounded.tsx @@ -8,4 +8,4 @@ const Icon4kPlusRounded: React.FC = ({ ...props }) => ( ) -export { Icon4kPlusRounded as default } +export default Icon4kPlusRounded diff --git a/src/Icon4kPlusRoundedFilled.tsx b/src/Icon4kPlusRoundedFilled.tsx index 4dbdfbb46..cce48865d 100644 --- a/src/Icon4kPlusRoundedFilled.tsx +++ b/src/Icon4kPlusRoundedFilled.tsx @@ -8,4 +8,4 @@ const Icon4kPlusRoundedFilled: React.FC = ({ ...props }) => ( ) -export { Icon4kPlusRoundedFilled as default } +export default Icon4kPlusRoundedFilled diff --git a/src/Icon4kPlusSharp.tsx b/src/Icon4kPlusSharp.tsx index 6fb00c650..c65346a79 100644 --- a/src/Icon4kPlusSharp.tsx +++ b/src/Icon4kPlusSharp.tsx @@ -8,4 +8,4 @@ const Icon4kPlusSharp: React.FC = ({ ...props }) => ( ) -export { Icon4kPlusSharp as default } +export default Icon4kPlusSharp diff --git a/src/Icon4kPlusSharpFilled.tsx b/src/Icon4kPlusSharpFilled.tsx index 7d91ee333..fc32dc4e8 100644 --- a/src/Icon4kPlusSharpFilled.tsx +++ b/src/Icon4kPlusSharpFilled.tsx @@ -8,4 +8,4 @@ const Icon4kPlusSharpFilled: React.FC = ({ ...props }) => ( ) -export { Icon4kPlusSharpFilled as default } +export default Icon4kPlusSharpFilled diff --git a/src/Icon4kRounded.tsx b/src/Icon4kRounded.tsx index a314f9739..5dae9ef25 100644 --- a/src/Icon4kRounded.tsx +++ b/src/Icon4kRounded.tsx @@ -8,4 +8,4 @@ const Icon4kRounded: React.FC = ({ ...props }) => ( ) -export { Icon4kRounded as default } +export default Icon4kRounded diff --git a/src/Icon4kRoundedFilled.tsx b/src/Icon4kRoundedFilled.tsx index 8d09bdd90..1798dea20 100644 --- a/src/Icon4kRoundedFilled.tsx +++ b/src/Icon4kRoundedFilled.tsx @@ -8,4 +8,4 @@ const Icon4kRoundedFilled: React.FC = ({ ...props }) => ( ) -export { Icon4kRoundedFilled as default } +export default Icon4kRoundedFilled diff --git a/src/Icon4kSharp.tsx b/src/Icon4kSharp.tsx index 282515f2e..bcabe6876 100644 --- a/src/Icon4kSharp.tsx +++ b/src/Icon4kSharp.tsx @@ -8,4 +8,4 @@ const Icon4kSharp: React.FC = ({ ...props }) => ( ) -export { Icon4kSharp as default } +export default Icon4kSharp diff --git a/src/Icon4kSharpFilled.tsx b/src/Icon4kSharpFilled.tsx index 630a24297..029d8a28e 100644 --- a/src/Icon4kSharpFilled.tsx +++ b/src/Icon4kSharpFilled.tsx @@ -8,4 +8,4 @@ const Icon4kSharpFilled: React.FC = ({ ...props }) => ( ) -export { Icon4kSharpFilled as default } +export default Icon4kSharpFilled diff --git a/src/Icon4mpOutlined.tsx b/src/Icon4mpOutlined.tsx index 5ed2b1e03..c07a625e8 100644 --- a/src/Icon4mpOutlined.tsx +++ b/src/Icon4mpOutlined.tsx @@ -8,4 +8,4 @@ const Icon4mpOutlined: React.FC = ({ ...props }) => ( ) -export { Icon4mpOutlined as default } +export default Icon4mpOutlined diff --git a/src/Icon4mpOutlinedFilled.tsx b/src/Icon4mpOutlinedFilled.tsx index a4100d2b6..3c7e5c781 100644 --- a/src/Icon4mpOutlinedFilled.tsx +++ b/src/Icon4mpOutlinedFilled.tsx @@ -8,4 +8,4 @@ const Icon4mpOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { Icon4mpOutlinedFilled as default } +export default Icon4mpOutlinedFilled diff --git a/src/Icon4mpRounded.tsx b/src/Icon4mpRounded.tsx index 07ea96472..14b61869d 100644 --- a/src/Icon4mpRounded.tsx +++ b/src/Icon4mpRounded.tsx @@ -8,4 +8,4 @@ const Icon4mpRounded: React.FC = ({ ...props }) => ( ) -export { Icon4mpRounded as default } +export default Icon4mpRounded diff --git a/src/Icon4mpRoundedFilled.tsx b/src/Icon4mpRoundedFilled.tsx index 3ffe3ee37..23858e661 100644 --- a/src/Icon4mpRoundedFilled.tsx +++ b/src/Icon4mpRoundedFilled.tsx @@ -8,4 +8,4 @@ const Icon4mpRoundedFilled: React.FC = ({ ...props }) => ( ) -export { Icon4mpRoundedFilled as default } +export default Icon4mpRoundedFilled diff --git a/src/Icon4mpSharp.tsx b/src/Icon4mpSharp.tsx index 28a4808a8..8b126d68f 100644 --- a/src/Icon4mpSharp.tsx +++ b/src/Icon4mpSharp.tsx @@ -8,4 +8,4 @@ const Icon4mpSharp: React.FC = ({ ...props }) => ( ) -export { Icon4mpSharp as default } +export default Icon4mpSharp diff --git a/src/Icon4mpSharpFilled.tsx b/src/Icon4mpSharpFilled.tsx index efe26e6d4..945102fd6 100644 --- a/src/Icon4mpSharpFilled.tsx +++ b/src/Icon4mpSharpFilled.tsx @@ -8,4 +8,4 @@ const Icon4mpSharpFilled: React.FC = ({ ...props }) => ( ) -export { Icon4mpSharpFilled as default } +export default Icon4mpSharpFilled diff --git a/src/Icon50mpOutlined.tsx b/src/Icon50mpOutlined.tsx index 0d2a6310f..dbb4a50f8 100644 --- a/src/Icon50mpOutlined.tsx +++ b/src/Icon50mpOutlined.tsx @@ -8,4 +8,4 @@ const Icon50mpOutlined: React.FC = ({ ...props }) => ( ) -export { Icon50mpOutlined as default } +export default Icon50mpOutlined diff --git a/src/Icon50mpOutlinedFilled.tsx b/src/Icon50mpOutlinedFilled.tsx index 0a2f65321..70147e6b9 100644 --- a/src/Icon50mpOutlinedFilled.tsx +++ b/src/Icon50mpOutlinedFilled.tsx @@ -8,4 +8,4 @@ const Icon50mpOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { Icon50mpOutlinedFilled as default } +export default Icon50mpOutlinedFilled diff --git a/src/Icon50mpRounded.tsx b/src/Icon50mpRounded.tsx index b8bd886d3..92af03a8f 100644 --- a/src/Icon50mpRounded.tsx +++ b/src/Icon50mpRounded.tsx @@ -8,4 +8,4 @@ const Icon50mpRounded: React.FC = ({ ...props }) => ( ) -export { Icon50mpRounded as default } +export default Icon50mpRounded diff --git a/src/Icon50mpRoundedFilled.tsx b/src/Icon50mpRoundedFilled.tsx index 5e63ad76c..b79774dcf 100644 --- a/src/Icon50mpRoundedFilled.tsx +++ b/src/Icon50mpRoundedFilled.tsx @@ -8,4 +8,4 @@ const Icon50mpRoundedFilled: React.FC = ({ ...props }) => ( ) -export { Icon50mpRoundedFilled as default } +export default Icon50mpRoundedFilled diff --git a/src/Icon50mpSharp.tsx b/src/Icon50mpSharp.tsx index dd0d7f20b..98da627d1 100644 --- a/src/Icon50mpSharp.tsx +++ b/src/Icon50mpSharp.tsx @@ -8,4 +8,4 @@ const Icon50mpSharp: React.FC = ({ ...props }) => ( ) -export { Icon50mpSharp as default } +export default Icon50mpSharp diff --git a/src/Icon50mpSharpFilled.tsx b/src/Icon50mpSharpFilled.tsx index 5fcafa519..3009113eb 100644 --- a/src/Icon50mpSharpFilled.tsx +++ b/src/Icon50mpSharpFilled.tsx @@ -8,4 +8,4 @@ const Icon50mpSharpFilled: React.FC = ({ ...props }) => ( ) -export { Icon50mpSharpFilled as default } +export default Icon50mpSharpFilled diff --git a/src/Icon5gMobiledataBadgeOutlined.tsx b/src/Icon5gMobiledataBadgeOutlined.tsx index 9c6971be3..2d1d65902 100644 --- a/src/Icon5gMobiledataBadgeOutlined.tsx +++ b/src/Icon5gMobiledataBadgeOutlined.tsx @@ -8,4 +8,4 @@ const Icon5gMobiledataBadgeOutlined: React.FC = ({ ...props }) => ( ) -export { Icon5gMobiledataBadgeOutlined as default } +export default Icon5gMobiledataBadgeOutlined diff --git a/src/Icon5gMobiledataBadgeOutlinedFilled.tsx b/src/Icon5gMobiledataBadgeOutlinedFilled.tsx index 11af511c0..9c5fe3598 100644 --- a/src/Icon5gMobiledataBadgeOutlinedFilled.tsx +++ b/src/Icon5gMobiledataBadgeOutlinedFilled.tsx @@ -10,4 +10,4 @@ const Icon5gMobiledataBadgeOutlinedFilled: React.FC = ({ ) -export { Icon5gMobiledataBadgeOutlinedFilled as default } +export default Icon5gMobiledataBadgeOutlinedFilled diff --git a/src/Icon5gMobiledataBadgeRounded.tsx b/src/Icon5gMobiledataBadgeRounded.tsx index 9beccea7b..9830f4971 100644 --- a/src/Icon5gMobiledataBadgeRounded.tsx +++ b/src/Icon5gMobiledataBadgeRounded.tsx @@ -8,4 +8,4 @@ const Icon5gMobiledataBadgeRounded: React.FC = ({ ...props }) => ( ) -export { Icon5gMobiledataBadgeRounded as default } +export default Icon5gMobiledataBadgeRounded diff --git a/src/Icon5gMobiledataBadgeRoundedFilled.tsx b/src/Icon5gMobiledataBadgeRoundedFilled.tsx index 066ba5787..591563620 100644 --- a/src/Icon5gMobiledataBadgeRoundedFilled.tsx +++ b/src/Icon5gMobiledataBadgeRoundedFilled.tsx @@ -10,4 +10,4 @@ const Icon5gMobiledataBadgeRoundedFilled: React.FC = ({ ) -export { Icon5gMobiledataBadgeRoundedFilled as default } +export default Icon5gMobiledataBadgeRoundedFilled diff --git a/src/Icon5gMobiledataBadgeSharp.tsx b/src/Icon5gMobiledataBadgeSharp.tsx index 63a8f0997..3a675c6a6 100644 --- a/src/Icon5gMobiledataBadgeSharp.tsx +++ b/src/Icon5gMobiledataBadgeSharp.tsx @@ -8,4 +8,4 @@ const Icon5gMobiledataBadgeSharp: React.FC = ({ ...props }) => ( ) -export { Icon5gMobiledataBadgeSharp as default } +export default Icon5gMobiledataBadgeSharp diff --git a/src/Icon5gMobiledataBadgeSharpFilled.tsx b/src/Icon5gMobiledataBadgeSharpFilled.tsx index 9300ea1b9..235078f6b 100644 --- a/src/Icon5gMobiledataBadgeSharpFilled.tsx +++ b/src/Icon5gMobiledataBadgeSharpFilled.tsx @@ -10,4 +10,4 @@ const Icon5gMobiledataBadgeSharpFilled: React.FC = ({ ) -export { Icon5gMobiledataBadgeSharpFilled as default } +export default Icon5gMobiledataBadgeSharpFilled diff --git a/src/Icon5gOutlined.tsx b/src/Icon5gOutlined.tsx index e71eb29d3..953dfc33f 100644 --- a/src/Icon5gOutlined.tsx +++ b/src/Icon5gOutlined.tsx @@ -8,4 +8,4 @@ const Icon5gOutlined: React.FC = ({ ...props }) => ( ) -export { Icon5gOutlined as default } +export default Icon5gOutlined diff --git a/src/Icon5gOutlinedFilled.tsx b/src/Icon5gOutlinedFilled.tsx index 05e418e35..1ea53d65d 100644 --- a/src/Icon5gOutlinedFilled.tsx +++ b/src/Icon5gOutlinedFilled.tsx @@ -8,4 +8,4 @@ const Icon5gOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { Icon5gOutlinedFilled as default } +export default Icon5gOutlinedFilled diff --git a/src/Icon5gRounded.tsx b/src/Icon5gRounded.tsx index b87c359cd..3511d7452 100644 --- a/src/Icon5gRounded.tsx +++ b/src/Icon5gRounded.tsx @@ -8,4 +8,4 @@ const Icon5gRounded: React.FC = ({ ...props }) => ( ) -export { Icon5gRounded as default } +export default Icon5gRounded diff --git a/src/Icon5gRoundedFilled.tsx b/src/Icon5gRoundedFilled.tsx index b57c87a01..d2b205956 100644 --- a/src/Icon5gRoundedFilled.tsx +++ b/src/Icon5gRoundedFilled.tsx @@ -8,4 +8,4 @@ const Icon5gRoundedFilled: React.FC = ({ ...props }) => ( ) -export { Icon5gRoundedFilled as default } +export default Icon5gRoundedFilled diff --git a/src/Icon5gSharp.tsx b/src/Icon5gSharp.tsx index c4f8f6c12..f6010be6e 100644 --- a/src/Icon5gSharp.tsx +++ b/src/Icon5gSharp.tsx @@ -8,4 +8,4 @@ const Icon5gSharp: React.FC = ({ ...props }) => ( ) -export { Icon5gSharp as default } +export default Icon5gSharp diff --git a/src/Icon5gSharpFilled.tsx b/src/Icon5gSharpFilled.tsx index afab1be59..2f8e6c2ba 100644 --- a/src/Icon5gSharpFilled.tsx +++ b/src/Icon5gSharpFilled.tsx @@ -8,4 +8,4 @@ const Icon5gSharpFilled: React.FC = ({ ...props }) => ( ) -export { Icon5gSharpFilled as default } +export default Icon5gSharpFilled diff --git a/src/Icon5kOutlined.tsx b/src/Icon5kOutlined.tsx index 8128c2b60..6d6db75e1 100644 --- a/src/Icon5kOutlined.tsx +++ b/src/Icon5kOutlined.tsx @@ -8,4 +8,4 @@ const Icon5kOutlined: React.FC = ({ ...props }) => ( ) -export { Icon5kOutlined as default } +export default Icon5kOutlined diff --git a/src/Icon5kOutlinedFilled.tsx b/src/Icon5kOutlinedFilled.tsx index 9af5fa692..63ece8990 100644 --- a/src/Icon5kOutlinedFilled.tsx +++ b/src/Icon5kOutlinedFilled.tsx @@ -8,4 +8,4 @@ const Icon5kOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { Icon5kOutlinedFilled as default } +export default Icon5kOutlinedFilled diff --git a/src/Icon5kPlusOutlined.tsx b/src/Icon5kPlusOutlined.tsx index 6f7acf3fe..d380251ed 100644 --- a/src/Icon5kPlusOutlined.tsx +++ b/src/Icon5kPlusOutlined.tsx @@ -8,4 +8,4 @@ const Icon5kPlusOutlined: React.FC = ({ ...props }) => ( ) -export { Icon5kPlusOutlined as default } +export default Icon5kPlusOutlined diff --git a/src/Icon5kPlusOutlinedFilled.tsx b/src/Icon5kPlusOutlinedFilled.tsx index ed2884532..fbeac999a 100644 --- a/src/Icon5kPlusOutlinedFilled.tsx +++ b/src/Icon5kPlusOutlinedFilled.tsx @@ -8,4 +8,4 @@ const Icon5kPlusOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { Icon5kPlusOutlinedFilled as default } +export default Icon5kPlusOutlinedFilled diff --git a/src/Icon5kPlusRounded.tsx b/src/Icon5kPlusRounded.tsx index f5782e104..668f72f09 100644 --- a/src/Icon5kPlusRounded.tsx +++ b/src/Icon5kPlusRounded.tsx @@ -8,4 +8,4 @@ const Icon5kPlusRounded: React.FC = ({ ...props }) => ( ) -export { Icon5kPlusRounded as default } +export default Icon5kPlusRounded diff --git a/src/Icon5kPlusRoundedFilled.tsx b/src/Icon5kPlusRoundedFilled.tsx index 8e5986e67..90b77cb54 100644 --- a/src/Icon5kPlusRoundedFilled.tsx +++ b/src/Icon5kPlusRoundedFilled.tsx @@ -8,4 +8,4 @@ const Icon5kPlusRoundedFilled: React.FC = ({ ...props }) => ( ) -export { Icon5kPlusRoundedFilled as default } +export default Icon5kPlusRoundedFilled diff --git a/src/Icon5kPlusSharp.tsx b/src/Icon5kPlusSharp.tsx index c3631aa7f..f87c15cd3 100644 --- a/src/Icon5kPlusSharp.tsx +++ b/src/Icon5kPlusSharp.tsx @@ -8,4 +8,4 @@ const Icon5kPlusSharp: React.FC = ({ ...props }) => ( ) -export { Icon5kPlusSharp as default } +export default Icon5kPlusSharp diff --git a/src/Icon5kPlusSharpFilled.tsx b/src/Icon5kPlusSharpFilled.tsx index 1907dda0d..cc12d7033 100644 --- a/src/Icon5kPlusSharpFilled.tsx +++ b/src/Icon5kPlusSharpFilled.tsx @@ -8,4 +8,4 @@ const Icon5kPlusSharpFilled: React.FC = ({ ...props }) => ( ) -export { Icon5kPlusSharpFilled as default } +export default Icon5kPlusSharpFilled diff --git a/src/Icon5kRounded.tsx b/src/Icon5kRounded.tsx index 66c85ac77..ba37c2963 100644 --- a/src/Icon5kRounded.tsx +++ b/src/Icon5kRounded.tsx @@ -8,4 +8,4 @@ const Icon5kRounded: React.FC = ({ ...props }) => ( ) -export { Icon5kRounded as default } +export default Icon5kRounded diff --git a/src/Icon5kRoundedFilled.tsx b/src/Icon5kRoundedFilled.tsx index a3964f36f..9937bd5b5 100644 --- a/src/Icon5kRoundedFilled.tsx +++ b/src/Icon5kRoundedFilled.tsx @@ -8,4 +8,4 @@ const Icon5kRoundedFilled: React.FC = ({ ...props }) => ( ) -export { Icon5kRoundedFilled as default } +export default Icon5kRoundedFilled diff --git a/src/Icon5kSharp.tsx b/src/Icon5kSharp.tsx index 93ab92704..8cb45b64a 100644 --- a/src/Icon5kSharp.tsx +++ b/src/Icon5kSharp.tsx @@ -8,4 +8,4 @@ const Icon5kSharp: React.FC = ({ ...props }) => ( ) -export { Icon5kSharp as default } +export default Icon5kSharp diff --git a/src/Icon5kSharpFilled.tsx b/src/Icon5kSharpFilled.tsx index dffadfdf9..a399965b3 100644 --- a/src/Icon5kSharpFilled.tsx +++ b/src/Icon5kSharpFilled.tsx @@ -8,4 +8,4 @@ const Icon5kSharpFilled: React.FC = ({ ...props }) => ( ) -export { Icon5kSharpFilled as default } +export default Icon5kSharpFilled diff --git a/src/Icon5mpOutlined.tsx b/src/Icon5mpOutlined.tsx index 78578a559..867c4ca15 100644 --- a/src/Icon5mpOutlined.tsx +++ b/src/Icon5mpOutlined.tsx @@ -8,4 +8,4 @@ const Icon5mpOutlined: React.FC = ({ ...props }) => ( ) -export { Icon5mpOutlined as default } +export default Icon5mpOutlined diff --git a/src/Icon5mpOutlinedFilled.tsx b/src/Icon5mpOutlinedFilled.tsx index 08b71442f..d4793dcf6 100644 --- a/src/Icon5mpOutlinedFilled.tsx +++ b/src/Icon5mpOutlinedFilled.tsx @@ -8,4 +8,4 @@ const Icon5mpOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { Icon5mpOutlinedFilled as default } +export default Icon5mpOutlinedFilled diff --git a/src/Icon5mpRounded.tsx b/src/Icon5mpRounded.tsx index c15dda6af..a68881d31 100644 --- a/src/Icon5mpRounded.tsx +++ b/src/Icon5mpRounded.tsx @@ -8,4 +8,4 @@ const Icon5mpRounded: React.FC = ({ ...props }) => ( ) -export { Icon5mpRounded as default } +export default Icon5mpRounded diff --git a/src/Icon5mpRoundedFilled.tsx b/src/Icon5mpRoundedFilled.tsx index 6ff8f5f05..60fcc81d3 100644 --- a/src/Icon5mpRoundedFilled.tsx +++ b/src/Icon5mpRoundedFilled.tsx @@ -8,4 +8,4 @@ const Icon5mpRoundedFilled: React.FC = ({ ...props }) => ( ) -export { Icon5mpRoundedFilled as default } +export default Icon5mpRoundedFilled diff --git a/src/Icon5mpSharp.tsx b/src/Icon5mpSharp.tsx index c41babf7e..c9f246e2a 100644 --- a/src/Icon5mpSharp.tsx +++ b/src/Icon5mpSharp.tsx @@ -8,4 +8,4 @@ const Icon5mpSharp: React.FC = ({ ...props }) => ( ) -export { Icon5mpSharp as default } +export default Icon5mpSharp diff --git a/src/Icon5mpSharpFilled.tsx b/src/Icon5mpSharpFilled.tsx index 9b6da3907..0ae07b222 100644 --- a/src/Icon5mpSharpFilled.tsx +++ b/src/Icon5mpSharpFilled.tsx @@ -8,4 +8,4 @@ const Icon5mpSharpFilled: React.FC = ({ ...props }) => ( ) -export { Icon5mpSharpFilled as default } +export default Icon5mpSharpFilled diff --git a/src/Icon60fpsOutlined.tsx b/src/Icon60fpsOutlined.tsx index 7cc8ebdf2..ac2237a8a 100644 --- a/src/Icon60fpsOutlined.tsx +++ b/src/Icon60fpsOutlined.tsx @@ -8,4 +8,4 @@ const Icon60fpsOutlined: React.FC = ({ ...props }) => ( ) -export { Icon60fpsOutlined as default } +export default Icon60fpsOutlined diff --git a/src/Icon60fpsOutlinedFilled.tsx b/src/Icon60fpsOutlinedFilled.tsx index 5f1f3f92b..32621c768 100644 --- a/src/Icon60fpsOutlinedFilled.tsx +++ b/src/Icon60fpsOutlinedFilled.tsx @@ -8,4 +8,4 @@ const Icon60fpsOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { Icon60fpsOutlinedFilled as default } +export default Icon60fpsOutlinedFilled diff --git a/src/Icon60fpsRounded.tsx b/src/Icon60fpsRounded.tsx index 42bb3b69f..7d7c925bb 100644 --- a/src/Icon60fpsRounded.tsx +++ b/src/Icon60fpsRounded.tsx @@ -8,4 +8,4 @@ const Icon60fpsRounded: React.FC = ({ ...props }) => ( ) -export { Icon60fpsRounded as default } +export default Icon60fpsRounded diff --git a/src/Icon60fpsRoundedFilled.tsx b/src/Icon60fpsRoundedFilled.tsx index 3256cfd0d..2aa9c6e75 100644 --- a/src/Icon60fpsRoundedFilled.tsx +++ b/src/Icon60fpsRoundedFilled.tsx @@ -8,4 +8,4 @@ const Icon60fpsRoundedFilled: React.FC = ({ ...props }) => ( ) -export { Icon60fpsRoundedFilled as default } +export default Icon60fpsRoundedFilled diff --git a/src/Icon60fpsSelectOutlined.tsx b/src/Icon60fpsSelectOutlined.tsx index a5538a7ad..fd7cbb351 100644 --- a/src/Icon60fpsSelectOutlined.tsx +++ b/src/Icon60fpsSelectOutlined.tsx @@ -8,4 +8,4 @@ const Icon60fpsSelectOutlined: React.FC = ({ ...props }) => ( ) -export { Icon60fpsSelectOutlined as default } +export default Icon60fpsSelectOutlined diff --git a/src/Icon60fpsSelectOutlinedFilled.tsx b/src/Icon60fpsSelectOutlinedFilled.tsx index 7e684494b..13cca0539 100644 --- a/src/Icon60fpsSelectOutlinedFilled.tsx +++ b/src/Icon60fpsSelectOutlinedFilled.tsx @@ -8,4 +8,4 @@ const Icon60fpsSelectOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { Icon60fpsSelectOutlinedFilled as default } +export default Icon60fpsSelectOutlinedFilled diff --git a/src/Icon60fpsSelectRounded.tsx b/src/Icon60fpsSelectRounded.tsx index 4670e18a1..baf67f961 100644 --- a/src/Icon60fpsSelectRounded.tsx +++ b/src/Icon60fpsSelectRounded.tsx @@ -8,4 +8,4 @@ const Icon60fpsSelectRounded: React.FC = ({ ...props }) => ( ) -export { Icon60fpsSelectRounded as default } +export default Icon60fpsSelectRounded diff --git a/src/Icon60fpsSelectRoundedFilled.tsx b/src/Icon60fpsSelectRoundedFilled.tsx index 111b6f788..5ae8fcad3 100644 --- a/src/Icon60fpsSelectRoundedFilled.tsx +++ b/src/Icon60fpsSelectRoundedFilled.tsx @@ -8,4 +8,4 @@ const Icon60fpsSelectRoundedFilled: React.FC = ({ ...props }) => ( ) -export { Icon60fpsSelectRoundedFilled as default } +export default Icon60fpsSelectRoundedFilled diff --git a/src/Icon60fpsSelectSharp.tsx b/src/Icon60fpsSelectSharp.tsx index 1f7765919..a9d2eed5c 100644 --- a/src/Icon60fpsSelectSharp.tsx +++ b/src/Icon60fpsSelectSharp.tsx @@ -8,4 +8,4 @@ const Icon60fpsSelectSharp: React.FC = ({ ...props }) => ( ) -export { Icon60fpsSelectSharp as default } +export default Icon60fpsSelectSharp diff --git a/src/Icon60fpsSelectSharpFilled.tsx b/src/Icon60fpsSelectSharpFilled.tsx index d3618ce9b..65e61cee8 100644 --- a/src/Icon60fpsSelectSharpFilled.tsx +++ b/src/Icon60fpsSelectSharpFilled.tsx @@ -8,4 +8,4 @@ const Icon60fpsSelectSharpFilled: React.FC = ({ ...props }) => ( ) -export { Icon60fpsSelectSharpFilled as default } +export default Icon60fpsSelectSharpFilled diff --git a/src/Icon60fpsSharp.tsx b/src/Icon60fpsSharp.tsx index 71307eda3..d30e62312 100644 --- a/src/Icon60fpsSharp.tsx +++ b/src/Icon60fpsSharp.tsx @@ -8,4 +8,4 @@ const Icon60fpsSharp: React.FC = ({ ...props }) => ( ) -export { Icon60fpsSharp as default } +export default Icon60fpsSharp diff --git a/src/Icon60fpsSharpFilled.tsx b/src/Icon60fpsSharpFilled.tsx index 16c928240..1a5a49d3e 100644 --- a/src/Icon60fpsSharpFilled.tsx +++ b/src/Icon60fpsSharpFilled.tsx @@ -8,4 +8,4 @@ const Icon60fpsSharpFilled: React.FC = ({ ...props }) => ( ) -export { Icon60fpsSharpFilled as default } +export default Icon60fpsSharpFilled diff --git a/src/Icon6FtApartOutlined.tsx b/src/Icon6FtApartOutlined.tsx index fc6bb1e7e..8a817e520 100644 --- a/src/Icon6FtApartOutlined.tsx +++ b/src/Icon6FtApartOutlined.tsx @@ -8,4 +8,4 @@ const Icon6FtApartOutlined: React.FC = ({ ...props }) => ( ) -export { Icon6FtApartOutlined as default } +export default Icon6FtApartOutlined diff --git a/src/Icon6FtApartOutlinedFilled.tsx b/src/Icon6FtApartOutlinedFilled.tsx index 634cf38ac..f91b22883 100644 --- a/src/Icon6FtApartOutlinedFilled.tsx +++ b/src/Icon6FtApartOutlinedFilled.tsx @@ -8,4 +8,4 @@ const Icon6FtApartOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { Icon6FtApartOutlinedFilled as default } +export default Icon6FtApartOutlinedFilled diff --git a/src/Icon6FtApartRounded.tsx b/src/Icon6FtApartRounded.tsx index b1db1dcb1..4776a08a7 100644 --- a/src/Icon6FtApartRounded.tsx +++ b/src/Icon6FtApartRounded.tsx @@ -8,4 +8,4 @@ const Icon6FtApartRounded: React.FC = ({ ...props }) => ( ) -export { Icon6FtApartRounded as default } +export default Icon6FtApartRounded diff --git a/src/Icon6FtApartRoundedFilled.tsx b/src/Icon6FtApartRoundedFilled.tsx index 17cf55123..cae3cc291 100644 --- a/src/Icon6FtApartRoundedFilled.tsx +++ b/src/Icon6FtApartRoundedFilled.tsx @@ -8,4 +8,4 @@ const Icon6FtApartRoundedFilled: React.FC = ({ ...props }) => ( ) -export { Icon6FtApartRoundedFilled as default } +export default Icon6FtApartRoundedFilled diff --git a/src/Icon6FtApartSharp.tsx b/src/Icon6FtApartSharp.tsx index 8e6561b76..0f4b6adfd 100644 --- a/src/Icon6FtApartSharp.tsx +++ b/src/Icon6FtApartSharp.tsx @@ -8,4 +8,4 @@ const Icon6FtApartSharp: React.FC = ({ ...props }) => ( ) -export { Icon6FtApartSharp as default } +export default Icon6FtApartSharp diff --git a/src/Icon6FtApartSharpFilled.tsx b/src/Icon6FtApartSharpFilled.tsx index 847e6b275..8a56947c9 100644 --- a/src/Icon6FtApartSharpFilled.tsx +++ b/src/Icon6FtApartSharpFilled.tsx @@ -8,4 +8,4 @@ const Icon6FtApartSharpFilled: React.FC = ({ ...props }) => ( ) -export { Icon6FtApartSharpFilled as default } +export default Icon6FtApartSharpFilled diff --git a/src/Icon6kOutlined.tsx b/src/Icon6kOutlined.tsx index b89635707..9799bdcc1 100644 --- a/src/Icon6kOutlined.tsx +++ b/src/Icon6kOutlined.tsx @@ -8,4 +8,4 @@ const Icon6kOutlined: React.FC = ({ ...props }) => ( ) -export { Icon6kOutlined as default } +export default Icon6kOutlined diff --git a/src/Icon6kOutlinedFilled.tsx b/src/Icon6kOutlinedFilled.tsx index 64c97cbd9..056bbd8fd 100644 --- a/src/Icon6kOutlinedFilled.tsx +++ b/src/Icon6kOutlinedFilled.tsx @@ -8,4 +8,4 @@ const Icon6kOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { Icon6kOutlinedFilled as default } +export default Icon6kOutlinedFilled diff --git a/src/Icon6kPlusOutlined.tsx b/src/Icon6kPlusOutlined.tsx index e10e69c51..7f25cc0c6 100644 --- a/src/Icon6kPlusOutlined.tsx +++ b/src/Icon6kPlusOutlined.tsx @@ -8,4 +8,4 @@ const Icon6kPlusOutlined: React.FC = ({ ...props }) => ( ) -export { Icon6kPlusOutlined as default } +export default Icon6kPlusOutlined diff --git a/src/Icon6kPlusOutlinedFilled.tsx b/src/Icon6kPlusOutlinedFilled.tsx index 18b7473ca..babe3b795 100644 --- a/src/Icon6kPlusOutlinedFilled.tsx +++ b/src/Icon6kPlusOutlinedFilled.tsx @@ -8,4 +8,4 @@ const Icon6kPlusOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { Icon6kPlusOutlinedFilled as default } +export default Icon6kPlusOutlinedFilled diff --git a/src/Icon6kPlusRounded.tsx b/src/Icon6kPlusRounded.tsx index 0185e8cf0..5dbb6c301 100644 --- a/src/Icon6kPlusRounded.tsx +++ b/src/Icon6kPlusRounded.tsx @@ -8,4 +8,4 @@ const Icon6kPlusRounded: React.FC = ({ ...props }) => ( ) -export { Icon6kPlusRounded as default } +export default Icon6kPlusRounded diff --git a/src/Icon6kPlusRoundedFilled.tsx b/src/Icon6kPlusRoundedFilled.tsx index a3b466977..6e2de0003 100644 --- a/src/Icon6kPlusRoundedFilled.tsx +++ b/src/Icon6kPlusRoundedFilled.tsx @@ -8,4 +8,4 @@ const Icon6kPlusRoundedFilled: React.FC = ({ ...props }) => ( ) -export { Icon6kPlusRoundedFilled as default } +export default Icon6kPlusRoundedFilled diff --git a/src/Icon6kPlusSharp.tsx b/src/Icon6kPlusSharp.tsx index f7814a2ee..ad0041cb5 100644 --- a/src/Icon6kPlusSharp.tsx +++ b/src/Icon6kPlusSharp.tsx @@ -8,4 +8,4 @@ const Icon6kPlusSharp: React.FC = ({ ...props }) => ( ) -export { Icon6kPlusSharp as default } +export default Icon6kPlusSharp diff --git a/src/Icon6kPlusSharpFilled.tsx b/src/Icon6kPlusSharpFilled.tsx index 95aebe810..636ac337c 100644 --- a/src/Icon6kPlusSharpFilled.tsx +++ b/src/Icon6kPlusSharpFilled.tsx @@ -8,4 +8,4 @@ const Icon6kPlusSharpFilled: React.FC = ({ ...props }) => ( ) -export { Icon6kPlusSharpFilled as default } +export default Icon6kPlusSharpFilled diff --git a/src/Icon6kRounded.tsx b/src/Icon6kRounded.tsx index fe16180d9..6bf5ef308 100644 --- a/src/Icon6kRounded.tsx +++ b/src/Icon6kRounded.tsx @@ -8,4 +8,4 @@ const Icon6kRounded: React.FC = ({ ...props }) => ( ) -export { Icon6kRounded as default } +export default Icon6kRounded diff --git a/src/Icon6kRoundedFilled.tsx b/src/Icon6kRoundedFilled.tsx index 4c7d2f167..c6227e031 100644 --- a/src/Icon6kRoundedFilled.tsx +++ b/src/Icon6kRoundedFilled.tsx @@ -8,4 +8,4 @@ const Icon6kRoundedFilled: React.FC = ({ ...props }) => ( ) -export { Icon6kRoundedFilled as default } +export default Icon6kRoundedFilled diff --git a/src/Icon6kSharp.tsx b/src/Icon6kSharp.tsx index 847fdcab8..d29088215 100644 --- a/src/Icon6kSharp.tsx +++ b/src/Icon6kSharp.tsx @@ -8,4 +8,4 @@ const Icon6kSharp: React.FC = ({ ...props }) => ( ) -export { Icon6kSharp as default } +export default Icon6kSharp diff --git a/src/Icon6kSharpFilled.tsx b/src/Icon6kSharpFilled.tsx index cd7d6eba5..5b6e519ee 100644 --- a/src/Icon6kSharpFilled.tsx +++ b/src/Icon6kSharpFilled.tsx @@ -8,4 +8,4 @@ const Icon6kSharpFilled: React.FC = ({ ...props }) => ( ) -export { Icon6kSharpFilled as default } +export default Icon6kSharpFilled diff --git a/src/Icon6mpOutlined.tsx b/src/Icon6mpOutlined.tsx index f49a7b661..06d2b88f4 100644 --- a/src/Icon6mpOutlined.tsx +++ b/src/Icon6mpOutlined.tsx @@ -8,4 +8,4 @@ const Icon6mpOutlined: React.FC = ({ ...props }) => ( ) -export { Icon6mpOutlined as default } +export default Icon6mpOutlined diff --git a/src/Icon6mpOutlinedFilled.tsx b/src/Icon6mpOutlinedFilled.tsx index ec5d9c598..96ea38c53 100644 --- a/src/Icon6mpOutlinedFilled.tsx +++ b/src/Icon6mpOutlinedFilled.tsx @@ -8,4 +8,4 @@ const Icon6mpOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { Icon6mpOutlinedFilled as default } +export default Icon6mpOutlinedFilled diff --git a/src/Icon6mpRounded.tsx b/src/Icon6mpRounded.tsx index 085894f64..5aa88d045 100644 --- a/src/Icon6mpRounded.tsx +++ b/src/Icon6mpRounded.tsx @@ -8,4 +8,4 @@ const Icon6mpRounded: React.FC = ({ ...props }) => ( ) -export { Icon6mpRounded as default } +export default Icon6mpRounded diff --git a/src/Icon6mpRoundedFilled.tsx b/src/Icon6mpRoundedFilled.tsx index 8b8614335..d2ea67f40 100644 --- a/src/Icon6mpRoundedFilled.tsx +++ b/src/Icon6mpRoundedFilled.tsx @@ -8,4 +8,4 @@ const Icon6mpRoundedFilled: React.FC = ({ ...props }) => ( ) -export { Icon6mpRoundedFilled as default } +export default Icon6mpRoundedFilled diff --git a/src/Icon6mpSharp.tsx b/src/Icon6mpSharp.tsx index 7f5463ab5..63baf0bf1 100644 --- a/src/Icon6mpSharp.tsx +++ b/src/Icon6mpSharp.tsx @@ -8,4 +8,4 @@ const Icon6mpSharp: React.FC = ({ ...props }) => ( ) -export { Icon6mpSharp as default } +export default Icon6mpSharp diff --git a/src/Icon6mpSharpFilled.tsx b/src/Icon6mpSharpFilled.tsx index 2ba9c134d..96651cbed 100644 --- a/src/Icon6mpSharpFilled.tsx +++ b/src/Icon6mpSharpFilled.tsx @@ -8,4 +8,4 @@ const Icon6mpSharpFilled: React.FC = ({ ...props }) => ( ) -export { Icon6mpSharpFilled as default } +export default Icon6mpSharpFilled diff --git a/src/Icon7kOutlined.tsx b/src/Icon7kOutlined.tsx index a05c2c64d..b297ab79a 100644 --- a/src/Icon7kOutlined.tsx +++ b/src/Icon7kOutlined.tsx @@ -8,4 +8,4 @@ const Icon7kOutlined: React.FC = ({ ...props }) => ( ) -export { Icon7kOutlined as default } +export default Icon7kOutlined diff --git a/src/Icon7kOutlinedFilled.tsx b/src/Icon7kOutlinedFilled.tsx index 26340f8b0..8651cb055 100644 --- a/src/Icon7kOutlinedFilled.tsx +++ b/src/Icon7kOutlinedFilled.tsx @@ -8,4 +8,4 @@ const Icon7kOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { Icon7kOutlinedFilled as default } +export default Icon7kOutlinedFilled diff --git a/src/Icon7kPlusOutlined.tsx b/src/Icon7kPlusOutlined.tsx index b3cfb368a..a405cb021 100644 --- a/src/Icon7kPlusOutlined.tsx +++ b/src/Icon7kPlusOutlined.tsx @@ -8,4 +8,4 @@ const Icon7kPlusOutlined: React.FC = ({ ...props }) => ( ) -export { Icon7kPlusOutlined as default } +export default Icon7kPlusOutlined diff --git a/src/Icon7kPlusOutlinedFilled.tsx b/src/Icon7kPlusOutlinedFilled.tsx index 4cfc08a2b..8516b6a51 100644 --- a/src/Icon7kPlusOutlinedFilled.tsx +++ b/src/Icon7kPlusOutlinedFilled.tsx @@ -8,4 +8,4 @@ const Icon7kPlusOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { Icon7kPlusOutlinedFilled as default } +export default Icon7kPlusOutlinedFilled diff --git a/src/Icon7kPlusRounded.tsx b/src/Icon7kPlusRounded.tsx index b027687d2..7a425ba43 100644 --- a/src/Icon7kPlusRounded.tsx +++ b/src/Icon7kPlusRounded.tsx @@ -8,4 +8,4 @@ const Icon7kPlusRounded: React.FC = ({ ...props }) => ( ) -export { Icon7kPlusRounded as default } +export default Icon7kPlusRounded diff --git a/src/Icon7kPlusRoundedFilled.tsx b/src/Icon7kPlusRoundedFilled.tsx index 2d8c35f8c..cfe549b9c 100644 --- a/src/Icon7kPlusRoundedFilled.tsx +++ b/src/Icon7kPlusRoundedFilled.tsx @@ -8,4 +8,4 @@ const Icon7kPlusRoundedFilled: React.FC = ({ ...props }) => ( ) -export { Icon7kPlusRoundedFilled as default } +export default Icon7kPlusRoundedFilled diff --git a/src/Icon7kPlusSharp.tsx b/src/Icon7kPlusSharp.tsx index 319b29bd7..a282c1025 100644 --- a/src/Icon7kPlusSharp.tsx +++ b/src/Icon7kPlusSharp.tsx @@ -8,4 +8,4 @@ const Icon7kPlusSharp: React.FC = ({ ...props }) => ( ) -export { Icon7kPlusSharp as default } +export default Icon7kPlusSharp diff --git a/src/Icon7kPlusSharpFilled.tsx b/src/Icon7kPlusSharpFilled.tsx index f5139de76..596468611 100644 --- a/src/Icon7kPlusSharpFilled.tsx +++ b/src/Icon7kPlusSharpFilled.tsx @@ -8,4 +8,4 @@ const Icon7kPlusSharpFilled: React.FC = ({ ...props }) => ( ) -export { Icon7kPlusSharpFilled as default } +export default Icon7kPlusSharpFilled diff --git a/src/Icon7kRounded.tsx b/src/Icon7kRounded.tsx index c805db6bb..2d4a845f1 100644 --- a/src/Icon7kRounded.tsx +++ b/src/Icon7kRounded.tsx @@ -8,4 +8,4 @@ const Icon7kRounded: React.FC = ({ ...props }) => ( ) -export { Icon7kRounded as default } +export default Icon7kRounded diff --git a/src/Icon7kRoundedFilled.tsx b/src/Icon7kRoundedFilled.tsx index b545b5a9f..e50086207 100644 --- a/src/Icon7kRoundedFilled.tsx +++ b/src/Icon7kRoundedFilled.tsx @@ -8,4 +8,4 @@ const Icon7kRoundedFilled: React.FC = ({ ...props }) => ( ) -export { Icon7kRoundedFilled as default } +export default Icon7kRoundedFilled diff --git a/src/Icon7kSharp.tsx b/src/Icon7kSharp.tsx index 9ca5a438f..136115a99 100644 --- a/src/Icon7kSharp.tsx +++ b/src/Icon7kSharp.tsx @@ -8,4 +8,4 @@ const Icon7kSharp: React.FC = ({ ...props }) => ( ) -export { Icon7kSharp as default } +export default Icon7kSharp diff --git a/src/Icon7kSharpFilled.tsx b/src/Icon7kSharpFilled.tsx index ce17e64bf..1cbfad3b6 100644 --- a/src/Icon7kSharpFilled.tsx +++ b/src/Icon7kSharpFilled.tsx @@ -8,4 +8,4 @@ const Icon7kSharpFilled: React.FC = ({ ...props }) => ( ) -export { Icon7kSharpFilled as default } +export default Icon7kSharpFilled diff --git a/src/Icon7mpOutlined.tsx b/src/Icon7mpOutlined.tsx index 8716943fa..21058fbf9 100644 --- a/src/Icon7mpOutlined.tsx +++ b/src/Icon7mpOutlined.tsx @@ -8,4 +8,4 @@ const Icon7mpOutlined: React.FC = ({ ...props }) => ( ) -export { Icon7mpOutlined as default } +export default Icon7mpOutlined diff --git a/src/Icon7mpOutlinedFilled.tsx b/src/Icon7mpOutlinedFilled.tsx index 0ea596156..f3e9b2c2c 100644 --- a/src/Icon7mpOutlinedFilled.tsx +++ b/src/Icon7mpOutlinedFilled.tsx @@ -8,4 +8,4 @@ const Icon7mpOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { Icon7mpOutlinedFilled as default } +export default Icon7mpOutlinedFilled diff --git a/src/Icon7mpRounded.tsx b/src/Icon7mpRounded.tsx index 09b97f93c..ac3b0d1d2 100644 --- a/src/Icon7mpRounded.tsx +++ b/src/Icon7mpRounded.tsx @@ -8,4 +8,4 @@ const Icon7mpRounded: React.FC = ({ ...props }) => ( ) -export { Icon7mpRounded as default } +export default Icon7mpRounded diff --git a/src/Icon7mpRoundedFilled.tsx b/src/Icon7mpRoundedFilled.tsx index 002de84b8..b95f6b389 100644 --- a/src/Icon7mpRoundedFilled.tsx +++ b/src/Icon7mpRoundedFilled.tsx @@ -8,4 +8,4 @@ const Icon7mpRoundedFilled: React.FC = ({ ...props }) => ( ) -export { Icon7mpRoundedFilled as default } +export default Icon7mpRoundedFilled diff --git a/src/Icon7mpSharp.tsx b/src/Icon7mpSharp.tsx index 156f3d830..2db7d0b3f 100644 --- a/src/Icon7mpSharp.tsx +++ b/src/Icon7mpSharp.tsx @@ -8,4 +8,4 @@ const Icon7mpSharp: React.FC = ({ ...props }) => ( ) -export { Icon7mpSharp as default } +export default Icon7mpSharp diff --git a/src/Icon7mpSharpFilled.tsx b/src/Icon7mpSharpFilled.tsx index 4b01711e0..203d24722 100644 --- a/src/Icon7mpSharpFilled.tsx +++ b/src/Icon7mpSharpFilled.tsx @@ -8,4 +8,4 @@ const Icon7mpSharpFilled: React.FC = ({ ...props }) => ( ) -export { Icon7mpSharpFilled as default } +export default Icon7mpSharpFilled diff --git a/src/Icon8kOutlined.tsx b/src/Icon8kOutlined.tsx index 4d89211db..b9899aad0 100644 --- a/src/Icon8kOutlined.tsx +++ b/src/Icon8kOutlined.tsx @@ -8,4 +8,4 @@ const Icon8kOutlined: React.FC = ({ ...props }) => ( ) -export { Icon8kOutlined as default } +export default Icon8kOutlined diff --git a/src/Icon8kOutlinedFilled.tsx b/src/Icon8kOutlinedFilled.tsx index 78ec8b0d2..980e826fd 100644 --- a/src/Icon8kOutlinedFilled.tsx +++ b/src/Icon8kOutlinedFilled.tsx @@ -8,4 +8,4 @@ const Icon8kOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { Icon8kOutlinedFilled as default } +export default Icon8kOutlinedFilled diff --git a/src/Icon8kPlusOutlined.tsx b/src/Icon8kPlusOutlined.tsx index 284789985..4170d004a 100644 --- a/src/Icon8kPlusOutlined.tsx +++ b/src/Icon8kPlusOutlined.tsx @@ -8,4 +8,4 @@ const Icon8kPlusOutlined: React.FC = ({ ...props }) => ( ) -export { Icon8kPlusOutlined as default } +export default Icon8kPlusOutlined diff --git a/src/Icon8kPlusOutlinedFilled.tsx b/src/Icon8kPlusOutlinedFilled.tsx index cf25c5b23..c7a0c9370 100644 --- a/src/Icon8kPlusOutlinedFilled.tsx +++ b/src/Icon8kPlusOutlinedFilled.tsx @@ -8,4 +8,4 @@ const Icon8kPlusOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { Icon8kPlusOutlinedFilled as default } +export default Icon8kPlusOutlinedFilled diff --git a/src/Icon8kPlusRounded.tsx b/src/Icon8kPlusRounded.tsx index 9f8ed5ab6..3255c7c16 100644 --- a/src/Icon8kPlusRounded.tsx +++ b/src/Icon8kPlusRounded.tsx @@ -8,4 +8,4 @@ const Icon8kPlusRounded: React.FC = ({ ...props }) => ( ) -export { Icon8kPlusRounded as default } +export default Icon8kPlusRounded diff --git a/src/Icon8kPlusRoundedFilled.tsx b/src/Icon8kPlusRoundedFilled.tsx index fd7cbda5c..e5ef9aeba 100644 --- a/src/Icon8kPlusRoundedFilled.tsx +++ b/src/Icon8kPlusRoundedFilled.tsx @@ -8,4 +8,4 @@ const Icon8kPlusRoundedFilled: React.FC = ({ ...props }) => ( ) -export { Icon8kPlusRoundedFilled as default } +export default Icon8kPlusRoundedFilled diff --git a/src/Icon8kPlusSharp.tsx b/src/Icon8kPlusSharp.tsx index f49fa68a9..4ed30d944 100644 --- a/src/Icon8kPlusSharp.tsx +++ b/src/Icon8kPlusSharp.tsx @@ -8,4 +8,4 @@ const Icon8kPlusSharp: React.FC = ({ ...props }) => ( ) -export { Icon8kPlusSharp as default } +export default Icon8kPlusSharp diff --git a/src/Icon8kPlusSharpFilled.tsx b/src/Icon8kPlusSharpFilled.tsx index c80e7b38c..ce8f893f2 100644 --- a/src/Icon8kPlusSharpFilled.tsx +++ b/src/Icon8kPlusSharpFilled.tsx @@ -8,4 +8,4 @@ const Icon8kPlusSharpFilled: React.FC = ({ ...props }) => ( ) -export { Icon8kPlusSharpFilled as default } +export default Icon8kPlusSharpFilled diff --git a/src/Icon8kRounded.tsx b/src/Icon8kRounded.tsx index 746efd7b8..448606cef 100644 --- a/src/Icon8kRounded.tsx +++ b/src/Icon8kRounded.tsx @@ -8,4 +8,4 @@ const Icon8kRounded: React.FC = ({ ...props }) => ( ) -export { Icon8kRounded as default } +export default Icon8kRounded diff --git a/src/Icon8kRoundedFilled.tsx b/src/Icon8kRoundedFilled.tsx index c8d6d621a..5090e300c 100644 --- a/src/Icon8kRoundedFilled.tsx +++ b/src/Icon8kRoundedFilled.tsx @@ -8,4 +8,4 @@ const Icon8kRoundedFilled: React.FC = ({ ...props }) => ( ) -export { Icon8kRoundedFilled as default } +export default Icon8kRoundedFilled diff --git a/src/Icon8kSharp.tsx b/src/Icon8kSharp.tsx index f694d8e0d..939f4fa63 100644 --- a/src/Icon8kSharp.tsx +++ b/src/Icon8kSharp.tsx @@ -8,4 +8,4 @@ const Icon8kSharp: React.FC = ({ ...props }) => ( ) -export { Icon8kSharp as default } +export default Icon8kSharp diff --git a/src/Icon8kSharpFilled.tsx b/src/Icon8kSharpFilled.tsx index f54c52dbe..3f6aad0bb 100644 --- a/src/Icon8kSharpFilled.tsx +++ b/src/Icon8kSharpFilled.tsx @@ -8,4 +8,4 @@ const Icon8kSharpFilled: React.FC = ({ ...props }) => ( ) -export { Icon8kSharpFilled as default } +export default Icon8kSharpFilled diff --git a/src/Icon8mpOutlined.tsx b/src/Icon8mpOutlined.tsx index 66649c802..0f9d4767c 100644 --- a/src/Icon8mpOutlined.tsx +++ b/src/Icon8mpOutlined.tsx @@ -8,4 +8,4 @@ const Icon8mpOutlined: React.FC = ({ ...props }) => ( ) -export { Icon8mpOutlined as default } +export default Icon8mpOutlined diff --git a/src/Icon8mpOutlinedFilled.tsx b/src/Icon8mpOutlinedFilled.tsx index b72e6c994..2a95837f6 100644 --- a/src/Icon8mpOutlinedFilled.tsx +++ b/src/Icon8mpOutlinedFilled.tsx @@ -8,4 +8,4 @@ const Icon8mpOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { Icon8mpOutlinedFilled as default } +export default Icon8mpOutlinedFilled diff --git a/src/Icon8mpRounded.tsx b/src/Icon8mpRounded.tsx index 4e3fe8ab3..81201a77f 100644 --- a/src/Icon8mpRounded.tsx +++ b/src/Icon8mpRounded.tsx @@ -8,4 +8,4 @@ const Icon8mpRounded: React.FC = ({ ...props }) => ( ) -export { Icon8mpRounded as default } +export default Icon8mpRounded diff --git a/src/Icon8mpRoundedFilled.tsx b/src/Icon8mpRoundedFilled.tsx index 77d7fced7..f236bcf98 100644 --- a/src/Icon8mpRoundedFilled.tsx +++ b/src/Icon8mpRoundedFilled.tsx @@ -8,4 +8,4 @@ const Icon8mpRoundedFilled: React.FC = ({ ...props }) => ( ) -export { Icon8mpRoundedFilled as default } +export default Icon8mpRoundedFilled diff --git a/src/Icon8mpSharp.tsx b/src/Icon8mpSharp.tsx index a77672b2b..91e0b49ca 100644 --- a/src/Icon8mpSharp.tsx +++ b/src/Icon8mpSharp.tsx @@ -8,4 +8,4 @@ const Icon8mpSharp: React.FC = ({ ...props }) => ( ) -export { Icon8mpSharp as default } +export default Icon8mpSharp diff --git a/src/Icon8mpSharpFilled.tsx b/src/Icon8mpSharpFilled.tsx index 57835606a..91ea38dbc 100644 --- a/src/Icon8mpSharpFilled.tsx +++ b/src/Icon8mpSharpFilled.tsx @@ -8,4 +8,4 @@ const Icon8mpSharpFilled: React.FC = ({ ...props }) => ( ) -export { Icon8mpSharpFilled as default } +export default Icon8mpSharpFilled diff --git a/src/Icon9kOutlined.tsx b/src/Icon9kOutlined.tsx index 1c84298b9..194ae87bc 100644 --- a/src/Icon9kOutlined.tsx +++ b/src/Icon9kOutlined.tsx @@ -8,4 +8,4 @@ const Icon9kOutlined: React.FC = ({ ...props }) => ( ) -export { Icon9kOutlined as default } +export default Icon9kOutlined diff --git a/src/Icon9kOutlinedFilled.tsx b/src/Icon9kOutlinedFilled.tsx index 2dcc47fe6..6b751f37e 100644 --- a/src/Icon9kOutlinedFilled.tsx +++ b/src/Icon9kOutlinedFilled.tsx @@ -8,4 +8,4 @@ const Icon9kOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { Icon9kOutlinedFilled as default } +export default Icon9kOutlinedFilled diff --git a/src/Icon9kPlusOutlined.tsx b/src/Icon9kPlusOutlined.tsx index d845b9edd..7c0ac5e17 100644 --- a/src/Icon9kPlusOutlined.tsx +++ b/src/Icon9kPlusOutlined.tsx @@ -8,4 +8,4 @@ const Icon9kPlusOutlined: React.FC = ({ ...props }) => ( ) -export { Icon9kPlusOutlined as default } +export default Icon9kPlusOutlined diff --git a/src/Icon9kPlusOutlinedFilled.tsx b/src/Icon9kPlusOutlinedFilled.tsx index 816766d49..dfdfd0021 100644 --- a/src/Icon9kPlusOutlinedFilled.tsx +++ b/src/Icon9kPlusOutlinedFilled.tsx @@ -8,4 +8,4 @@ const Icon9kPlusOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { Icon9kPlusOutlinedFilled as default } +export default Icon9kPlusOutlinedFilled diff --git a/src/Icon9kPlusRounded.tsx b/src/Icon9kPlusRounded.tsx index 73805c3ad..dba0db709 100644 --- a/src/Icon9kPlusRounded.tsx +++ b/src/Icon9kPlusRounded.tsx @@ -8,4 +8,4 @@ const Icon9kPlusRounded: React.FC = ({ ...props }) => ( ) -export { Icon9kPlusRounded as default } +export default Icon9kPlusRounded diff --git a/src/Icon9kPlusRoundedFilled.tsx b/src/Icon9kPlusRoundedFilled.tsx index e37f65230..80864fdb5 100644 --- a/src/Icon9kPlusRoundedFilled.tsx +++ b/src/Icon9kPlusRoundedFilled.tsx @@ -8,4 +8,4 @@ const Icon9kPlusRoundedFilled: React.FC = ({ ...props }) => ( ) -export { Icon9kPlusRoundedFilled as default } +export default Icon9kPlusRoundedFilled diff --git a/src/Icon9kPlusSharp.tsx b/src/Icon9kPlusSharp.tsx index 338df5ce1..4174ab3bb 100644 --- a/src/Icon9kPlusSharp.tsx +++ b/src/Icon9kPlusSharp.tsx @@ -8,4 +8,4 @@ const Icon9kPlusSharp: React.FC = ({ ...props }) => ( ) -export { Icon9kPlusSharp as default } +export default Icon9kPlusSharp diff --git a/src/Icon9kPlusSharpFilled.tsx b/src/Icon9kPlusSharpFilled.tsx index 5616a1dad..f6eaba2b1 100644 --- a/src/Icon9kPlusSharpFilled.tsx +++ b/src/Icon9kPlusSharpFilled.tsx @@ -8,4 +8,4 @@ const Icon9kPlusSharpFilled: React.FC = ({ ...props }) => ( ) -export { Icon9kPlusSharpFilled as default } +export default Icon9kPlusSharpFilled diff --git a/src/Icon9kRounded.tsx b/src/Icon9kRounded.tsx index 1b3f0184f..0f7d227d7 100644 --- a/src/Icon9kRounded.tsx +++ b/src/Icon9kRounded.tsx @@ -8,4 +8,4 @@ const Icon9kRounded: React.FC = ({ ...props }) => ( ) -export { Icon9kRounded as default } +export default Icon9kRounded diff --git a/src/Icon9kRoundedFilled.tsx b/src/Icon9kRoundedFilled.tsx index 55a067e73..3aa0f3e79 100644 --- a/src/Icon9kRoundedFilled.tsx +++ b/src/Icon9kRoundedFilled.tsx @@ -8,4 +8,4 @@ const Icon9kRoundedFilled: React.FC = ({ ...props }) => ( ) -export { Icon9kRoundedFilled as default } +export default Icon9kRoundedFilled diff --git a/src/Icon9kSharp.tsx b/src/Icon9kSharp.tsx index 2c1e7ba48..067e55043 100644 --- a/src/Icon9kSharp.tsx +++ b/src/Icon9kSharp.tsx @@ -8,4 +8,4 @@ const Icon9kSharp: React.FC = ({ ...props }) => ( ) -export { Icon9kSharp as default } +export default Icon9kSharp diff --git a/src/Icon9kSharpFilled.tsx b/src/Icon9kSharpFilled.tsx index 8fd01351f..58c654e41 100644 --- a/src/Icon9kSharpFilled.tsx +++ b/src/Icon9kSharpFilled.tsx @@ -8,4 +8,4 @@ const Icon9kSharpFilled: React.FC = ({ ...props }) => ( ) -export { Icon9kSharpFilled as default } +export default Icon9kSharpFilled diff --git a/src/Icon9mpOutlined.tsx b/src/Icon9mpOutlined.tsx index 3f95c5110..664c909d6 100644 --- a/src/Icon9mpOutlined.tsx +++ b/src/Icon9mpOutlined.tsx @@ -8,4 +8,4 @@ const Icon9mpOutlined: React.FC = ({ ...props }) => ( ) -export { Icon9mpOutlined as default } +export default Icon9mpOutlined diff --git a/src/Icon9mpOutlinedFilled.tsx b/src/Icon9mpOutlinedFilled.tsx index bf924491f..a03cbba63 100644 --- a/src/Icon9mpOutlinedFilled.tsx +++ b/src/Icon9mpOutlinedFilled.tsx @@ -8,4 +8,4 @@ const Icon9mpOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { Icon9mpOutlinedFilled as default } +export default Icon9mpOutlinedFilled diff --git a/src/Icon9mpRounded.tsx b/src/Icon9mpRounded.tsx index 1fdf84e21..ec98d6050 100644 --- a/src/Icon9mpRounded.tsx +++ b/src/Icon9mpRounded.tsx @@ -8,4 +8,4 @@ const Icon9mpRounded: React.FC = ({ ...props }) => ( ) -export { Icon9mpRounded as default } +export default Icon9mpRounded diff --git a/src/Icon9mpRoundedFilled.tsx b/src/Icon9mpRoundedFilled.tsx index 5a190b66e..5f39f535b 100644 --- a/src/Icon9mpRoundedFilled.tsx +++ b/src/Icon9mpRoundedFilled.tsx @@ -8,4 +8,4 @@ const Icon9mpRoundedFilled: React.FC = ({ ...props }) => ( ) -export { Icon9mpRoundedFilled as default } +export default Icon9mpRoundedFilled diff --git a/src/Icon9mpSharp.tsx b/src/Icon9mpSharp.tsx index 1abf4708e..ccbb934f8 100644 --- a/src/Icon9mpSharp.tsx +++ b/src/Icon9mpSharp.tsx @@ -8,4 +8,4 @@ const Icon9mpSharp: React.FC = ({ ...props }) => ( ) -export { Icon9mpSharp as default } +export default Icon9mpSharp diff --git a/src/Icon9mpSharpFilled.tsx b/src/Icon9mpSharpFilled.tsx index dc50044b3..5c2dde122 100644 --- a/src/Icon9mpSharpFilled.tsx +++ b/src/Icon9mpSharpFilled.tsx @@ -8,4 +8,4 @@ const Icon9mpSharpFilled: React.FC = ({ ...props }) => ( ) -export { Icon9mpSharpFilled as default } +export default Icon9mpSharpFilled diff --git a/src/IconAbcOutlined.tsx b/src/IconAbcOutlined.tsx index 462326a38..fe2f50bbe 100644 --- a/src/IconAbcOutlined.tsx +++ b/src/IconAbcOutlined.tsx @@ -8,4 +8,4 @@ const IconAbcOutlined: React.FC = ({ ...props }) => ( ) -export { IconAbcOutlined as default } +export default IconAbcOutlined diff --git a/src/IconAbcOutlinedFilled.tsx b/src/IconAbcOutlinedFilled.tsx index 54a1d479b..dc0917c44 100644 --- a/src/IconAbcOutlinedFilled.tsx +++ b/src/IconAbcOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconAbcOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconAbcOutlinedFilled as default } +export default IconAbcOutlinedFilled diff --git a/src/IconAbcRounded.tsx b/src/IconAbcRounded.tsx index b21252676..bf98a8944 100644 --- a/src/IconAbcRounded.tsx +++ b/src/IconAbcRounded.tsx @@ -8,4 +8,4 @@ const IconAbcRounded: React.FC = ({ ...props }) => ( ) -export { IconAbcRounded as default } +export default IconAbcRounded diff --git a/src/IconAbcRoundedFilled.tsx b/src/IconAbcRoundedFilled.tsx index fde23a586..b5fb92cc7 100644 --- a/src/IconAbcRoundedFilled.tsx +++ b/src/IconAbcRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconAbcRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconAbcRoundedFilled as default } +export default IconAbcRoundedFilled diff --git a/src/IconAbcSharp.tsx b/src/IconAbcSharp.tsx index 561d771f1..a8eca4547 100644 --- a/src/IconAbcSharp.tsx +++ b/src/IconAbcSharp.tsx @@ -8,4 +8,4 @@ const IconAbcSharp: React.FC = ({ ...props }) => ( ) -export { IconAbcSharp as default } +export default IconAbcSharp diff --git a/src/IconAbcSharpFilled.tsx b/src/IconAbcSharpFilled.tsx index 37d66e121..d69801b09 100644 --- a/src/IconAbcSharpFilled.tsx +++ b/src/IconAbcSharpFilled.tsx @@ -8,4 +8,4 @@ const IconAbcSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconAbcSharpFilled as default } +export default IconAbcSharpFilled diff --git a/src/IconAcUnitOutlined.tsx b/src/IconAcUnitOutlined.tsx index 60c65b83f..bf0c8eb79 100644 --- a/src/IconAcUnitOutlined.tsx +++ b/src/IconAcUnitOutlined.tsx @@ -8,4 +8,4 @@ const IconAcUnitOutlined: React.FC = ({ ...props }) => ( ) -export { IconAcUnitOutlined as default } +export default IconAcUnitOutlined diff --git a/src/IconAcUnitOutlinedFilled.tsx b/src/IconAcUnitOutlinedFilled.tsx index 32a8e93e8..788ec022d 100644 --- a/src/IconAcUnitOutlinedFilled.tsx +++ b/src/IconAcUnitOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconAcUnitOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconAcUnitOutlinedFilled as default } +export default IconAcUnitOutlinedFilled diff --git a/src/IconAcUnitRounded.tsx b/src/IconAcUnitRounded.tsx index 7e568b888..f627907b9 100644 --- a/src/IconAcUnitRounded.tsx +++ b/src/IconAcUnitRounded.tsx @@ -8,4 +8,4 @@ const IconAcUnitRounded: React.FC = ({ ...props }) => ( ) -export { IconAcUnitRounded as default } +export default IconAcUnitRounded diff --git a/src/IconAcUnitRoundedFilled.tsx b/src/IconAcUnitRoundedFilled.tsx index 7cae0c57d..eee8a8274 100644 --- a/src/IconAcUnitRoundedFilled.tsx +++ b/src/IconAcUnitRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconAcUnitRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconAcUnitRoundedFilled as default } +export default IconAcUnitRoundedFilled diff --git a/src/IconAcUnitSharp.tsx b/src/IconAcUnitSharp.tsx index eb656beb2..b7d84e377 100644 --- a/src/IconAcUnitSharp.tsx +++ b/src/IconAcUnitSharp.tsx @@ -8,4 +8,4 @@ const IconAcUnitSharp: React.FC = ({ ...props }) => ( ) -export { IconAcUnitSharp as default } +export default IconAcUnitSharp diff --git a/src/IconAcUnitSharpFilled.tsx b/src/IconAcUnitSharpFilled.tsx index f7d4e727a..69505ddde 100644 --- a/src/IconAcUnitSharpFilled.tsx +++ b/src/IconAcUnitSharpFilled.tsx @@ -8,4 +8,4 @@ const IconAcUnitSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconAcUnitSharpFilled as default } +export default IconAcUnitSharpFilled diff --git a/src/IconAccessibilityNewOutlined.tsx b/src/IconAccessibilityNewOutlined.tsx index 3b6ce9266..915f3a5f2 100644 --- a/src/IconAccessibilityNewOutlined.tsx +++ b/src/IconAccessibilityNewOutlined.tsx @@ -8,4 +8,4 @@ const IconAccessibilityNewOutlined: React.FC = ({ ...props }) => ( ) -export { IconAccessibilityNewOutlined as default } +export default IconAccessibilityNewOutlined diff --git a/src/IconAccessibilityNewOutlinedFilled.tsx b/src/IconAccessibilityNewOutlinedFilled.tsx index 154871db9..fded4429b 100644 --- a/src/IconAccessibilityNewOutlinedFilled.tsx +++ b/src/IconAccessibilityNewOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconAccessibilityNewOutlinedFilled: React.FC = ({ ) -export { IconAccessibilityNewOutlinedFilled as default } +export default IconAccessibilityNewOutlinedFilled diff --git a/src/IconAccessibilityNewRounded.tsx b/src/IconAccessibilityNewRounded.tsx index e13562ffa..2134ee4d7 100644 --- a/src/IconAccessibilityNewRounded.tsx +++ b/src/IconAccessibilityNewRounded.tsx @@ -8,4 +8,4 @@ const IconAccessibilityNewRounded: React.FC = ({ ...props }) => ( ) -export { IconAccessibilityNewRounded as default } +export default IconAccessibilityNewRounded diff --git a/src/IconAccessibilityNewRoundedFilled.tsx b/src/IconAccessibilityNewRoundedFilled.tsx index dd2f3bebd..8232d818b 100644 --- a/src/IconAccessibilityNewRoundedFilled.tsx +++ b/src/IconAccessibilityNewRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconAccessibilityNewRoundedFilled: React.FC = ({ ) -export { IconAccessibilityNewRoundedFilled as default } +export default IconAccessibilityNewRoundedFilled diff --git a/src/IconAccessibilityNewSharp.tsx b/src/IconAccessibilityNewSharp.tsx index 460925fa7..cd7f6b77b 100644 --- a/src/IconAccessibilityNewSharp.tsx +++ b/src/IconAccessibilityNewSharp.tsx @@ -8,4 +8,4 @@ const IconAccessibilityNewSharp: React.FC = ({ ...props }) => ( ) -export { IconAccessibilityNewSharp as default } +export default IconAccessibilityNewSharp diff --git a/src/IconAccessibilityNewSharpFilled.tsx b/src/IconAccessibilityNewSharpFilled.tsx index 96e0f2025..a185428c8 100644 --- a/src/IconAccessibilityNewSharpFilled.tsx +++ b/src/IconAccessibilityNewSharpFilled.tsx @@ -8,4 +8,4 @@ const IconAccessibilityNewSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconAccessibilityNewSharpFilled as default } +export default IconAccessibilityNewSharpFilled diff --git a/src/IconAccessibilityOutlined.tsx b/src/IconAccessibilityOutlined.tsx index 98056808b..d44479d7a 100644 --- a/src/IconAccessibilityOutlined.tsx +++ b/src/IconAccessibilityOutlined.tsx @@ -8,4 +8,4 @@ const IconAccessibilityOutlined: React.FC = ({ ...props }) => ( ) -export { IconAccessibilityOutlined as default } +export default IconAccessibilityOutlined diff --git a/src/IconAccessibilityOutlinedFilled.tsx b/src/IconAccessibilityOutlinedFilled.tsx index 276f7177d..6135d30dc 100644 --- a/src/IconAccessibilityOutlinedFilled.tsx +++ b/src/IconAccessibilityOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconAccessibilityOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconAccessibilityOutlinedFilled as default } +export default IconAccessibilityOutlinedFilled diff --git a/src/IconAccessibilityRounded.tsx b/src/IconAccessibilityRounded.tsx index d03a5c943..0142930f2 100644 --- a/src/IconAccessibilityRounded.tsx +++ b/src/IconAccessibilityRounded.tsx @@ -8,4 +8,4 @@ const IconAccessibilityRounded: React.FC = ({ ...props }) => ( ) -export { IconAccessibilityRounded as default } +export default IconAccessibilityRounded diff --git a/src/IconAccessibilityRoundedFilled.tsx b/src/IconAccessibilityRoundedFilled.tsx index 7b41155a7..7e34893c8 100644 --- a/src/IconAccessibilityRoundedFilled.tsx +++ b/src/IconAccessibilityRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconAccessibilityRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconAccessibilityRoundedFilled as default } +export default IconAccessibilityRoundedFilled diff --git a/src/IconAccessibilitySharp.tsx b/src/IconAccessibilitySharp.tsx index 729f4ed72..5be846ece 100644 --- a/src/IconAccessibilitySharp.tsx +++ b/src/IconAccessibilitySharp.tsx @@ -8,4 +8,4 @@ const IconAccessibilitySharp: React.FC = ({ ...props }) => ( ) -export { IconAccessibilitySharp as default } +export default IconAccessibilitySharp diff --git a/src/IconAccessibilitySharpFilled.tsx b/src/IconAccessibilitySharpFilled.tsx index 774ff481d..245d1c081 100644 --- a/src/IconAccessibilitySharpFilled.tsx +++ b/src/IconAccessibilitySharpFilled.tsx @@ -8,4 +8,4 @@ const IconAccessibilitySharpFilled: React.FC = ({ ...props }) => ( ) -export { IconAccessibilitySharpFilled as default } +export default IconAccessibilitySharpFilled diff --git a/src/IconAccessibleForwardOutlined.tsx b/src/IconAccessibleForwardOutlined.tsx index 095000be9..f3270ce79 100644 --- a/src/IconAccessibleForwardOutlined.tsx +++ b/src/IconAccessibleForwardOutlined.tsx @@ -8,4 +8,4 @@ const IconAccessibleForwardOutlined: React.FC = ({ ...props }) => ( ) -export { IconAccessibleForwardOutlined as default } +export default IconAccessibleForwardOutlined diff --git a/src/IconAccessibleForwardOutlinedFilled.tsx b/src/IconAccessibleForwardOutlinedFilled.tsx index 386e51d04..a39a32179 100644 --- a/src/IconAccessibleForwardOutlinedFilled.tsx +++ b/src/IconAccessibleForwardOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconAccessibleForwardOutlinedFilled: React.FC = ({ ) -export { IconAccessibleForwardOutlinedFilled as default } +export default IconAccessibleForwardOutlinedFilled diff --git a/src/IconAccessibleForwardRounded.tsx b/src/IconAccessibleForwardRounded.tsx index 99d3d149b..5a655fd59 100644 --- a/src/IconAccessibleForwardRounded.tsx +++ b/src/IconAccessibleForwardRounded.tsx @@ -8,4 +8,4 @@ const IconAccessibleForwardRounded: React.FC = ({ ...props }) => ( ) -export { IconAccessibleForwardRounded as default } +export default IconAccessibleForwardRounded diff --git a/src/IconAccessibleForwardRoundedFilled.tsx b/src/IconAccessibleForwardRoundedFilled.tsx index dece97671..6d3b7c3da 100644 --- a/src/IconAccessibleForwardRoundedFilled.tsx +++ b/src/IconAccessibleForwardRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconAccessibleForwardRoundedFilled: React.FC = ({ ) -export { IconAccessibleForwardRoundedFilled as default } +export default IconAccessibleForwardRoundedFilled diff --git a/src/IconAccessibleForwardSharp.tsx b/src/IconAccessibleForwardSharp.tsx index 7aa9dced0..ca1cdff81 100644 --- a/src/IconAccessibleForwardSharp.tsx +++ b/src/IconAccessibleForwardSharp.tsx @@ -8,4 +8,4 @@ const IconAccessibleForwardSharp: React.FC = ({ ...props }) => ( ) -export { IconAccessibleForwardSharp as default } +export default IconAccessibleForwardSharp diff --git a/src/IconAccessibleForwardSharpFilled.tsx b/src/IconAccessibleForwardSharpFilled.tsx index 668f18bd1..f2cb68768 100644 --- a/src/IconAccessibleForwardSharpFilled.tsx +++ b/src/IconAccessibleForwardSharpFilled.tsx @@ -10,4 +10,4 @@ const IconAccessibleForwardSharpFilled: React.FC = ({ ) -export { IconAccessibleForwardSharpFilled as default } +export default IconAccessibleForwardSharpFilled diff --git a/src/IconAccessibleOutlined.tsx b/src/IconAccessibleOutlined.tsx index a7a12aca5..7237bc61c 100644 --- a/src/IconAccessibleOutlined.tsx +++ b/src/IconAccessibleOutlined.tsx @@ -8,4 +8,4 @@ const IconAccessibleOutlined: React.FC = ({ ...props }) => ( ) -export { IconAccessibleOutlined as default } +export default IconAccessibleOutlined diff --git a/src/IconAccessibleOutlinedFilled.tsx b/src/IconAccessibleOutlinedFilled.tsx index f08ba0ed8..d84f7e18e 100644 --- a/src/IconAccessibleOutlinedFilled.tsx +++ b/src/IconAccessibleOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconAccessibleOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconAccessibleOutlinedFilled as default } +export default IconAccessibleOutlinedFilled diff --git a/src/IconAccessibleRounded.tsx b/src/IconAccessibleRounded.tsx index 2382722a1..4a8dfcdd3 100644 --- a/src/IconAccessibleRounded.tsx +++ b/src/IconAccessibleRounded.tsx @@ -8,4 +8,4 @@ const IconAccessibleRounded: React.FC = ({ ...props }) => ( ) -export { IconAccessibleRounded as default } +export default IconAccessibleRounded diff --git a/src/IconAccessibleRoundedFilled.tsx b/src/IconAccessibleRoundedFilled.tsx index 9925225d8..9d97e4748 100644 --- a/src/IconAccessibleRoundedFilled.tsx +++ b/src/IconAccessibleRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconAccessibleRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconAccessibleRoundedFilled as default } +export default IconAccessibleRoundedFilled diff --git a/src/IconAccessibleSharp.tsx b/src/IconAccessibleSharp.tsx index 6a260a26e..8810a373d 100644 --- a/src/IconAccessibleSharp.tsx +++ b/src/IconAccessibleSharp.tsx @@ -8,4 +8,4 @@ const IconAccessibleSharp: React.FC = ({ ...props }) => ( ) -export { IconAccessibleSharp as default } +export default IconAccessibleSharp diff --git a/src/IconAccessibleSharpFilled.tsx b/src/IconAccessibleSharpFilled.tsx index b9d07f0f6..e11b7d8b5 100644 --- a/src/IconAccessibleSharpFilled.tsx +++ b/src/IconAccessibleSharpFilled.tsx @@ -8,4 +8,4 @@ const IconAccessibleSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconAccessibleSharpFilled as default } +export default IconAccessibleSharpFilled diff --git a/src/IconAccountBalanceOutlined.tsx b/src/IconAccountBalanceOutlined.tsx index 4d4f1598a..d0552efab 100644 --- a/src/IconAccountBalanceOutlined.tsx +++ b/src/IconAccountBalanceOutlined.tsx @@ -8,4 +8,4 @@ const IconAccountBalanceOutlined: React.FC = ({ ...props }) => ( ) -export { IconAccountBalanceOutlined as default } +export default IconAccountBalanceOutlined diff --git a/src/IconAccountBalanceOutlinedFilled.tsx b/src/IconAccountBalanceOutlinedFilled.tsx index 53ca7aa28..1677f2a76 100644 --- a/src/IconAccountBalanceOutlinedFilled.tsx +++ b/src/IconAccountBalanceOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconAccountBalanceOutlinedFilled: React.FC = ({ ) -export { IconAccountBalanceOutlinedFilled as default } +export default IconAccountBalanceOutlinedFilled diff --git a/src/IconAccountBalanceRounded.tsx b/src/IconAccountBalanceRounded.tsx index 4245ab725..68381fbf5 100644 --- a/src/IconAccountBalanceRounded.tsx +++ b/src/IconAccountBalanceRounded.tsx @@ -8,4 +8,4 @@ const IconAccountBalanceRounded: React.FC = ({ ...props }) => ( ) -export { IconAccountBalanceRounded as default } +export default IconAccountBalanceRounded diff --git a/src/IconAccountBalanceRoundedFilled.tsx b/src/IconAccountBalanceRoundedFilled.tsx index 8129546ae..6c38a8829 100644 --- a/src/IconAccountBalanceRoundedFilled.tsx +++ b/src/IconAccountBalanceRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconAccountBalanceRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconAccountBalanceRoundedFilled as default } +export default IconAccountBalanceRoundedFilled diff --git a/src/IconAccountBalanceSharp.tsx b/src/IconAccountBalanceSharp.tsx index 89d02d446..d7d27fc10 100644 --- a/src/IconAccountBalanceSharp.tsx +++ b/src/IconAccountBalanceSharp.tsx @@ -8,4 +8,4 @@ const IconAccountBalanceSharp: React.FC = ({ ...props }) => ( ) -export { IconAccountBalanceSharp as default } +export default IconAccountBalanceSharp diff --git a/src/IconAccountBalanceSharpFilled.tsx b/src/IconAccountBalanceSharpFilled.tsx index 4f3acfa1a..852f962c8 100644 --- a/src/IconAccountBalanceSharpFilled.tsx +++ b/src/IconAccountBalanceSharpFilled.tsx @@ -8,4 +8,4 @@ const IconAccountBalanceSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconAccountBalanceSharpFilled as default } +export default IconAccountBalanceSharpFilled diff --git a/src/IconAccountBalanceWalletOutlined.tsx b/src/IconAccountBalanceWalletOutlined.tsx index 212f756c5..8a7b63de6 100644 --- a/src/IconAccountBalanceWalletOutlined.tsx +++ b/src/IconAccountBalanceWalletOutlined.tsx @@ -10,4 +10,4 @@ const IconAccountBalanceWalletOutlined: React.FC = ({ ) -export { IconAccountBalanceWalletOutlined as default } +export default IconAccountBalanceWalletOutlined diff --git a/src/IconAccountBalanceWalletOutlinedFilled.tsx b/src/IconAccountBalanceWalletOutlinedFilled.tsx index a261d2ced..a7be224c7 100644 --- a/src/IconAccountBalanceWalletOutlinedFilled.tsx +++ b/src/IconAccountBalanceWalletOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconAccountBalanceWalletOutlinedFilled: React.FC = ({ ) -export { IconAccountBalanceWalletOutlinedFilled as default } +export default IconAccountBalanceWalletOutlinedFilled diff --git a/src/IconAccountBalanceWalletRounded.tsx b/src/IconAccountBalanceWalletRounded.tsx index 9324f3fda..d60087c79 100644 --- a/src/IconAccountBalanceWalletRounded.tsx +++ b/src/IconAccountBalanceWalletRounded.tsx @@ -8,4 +8,4 @@ const IconAccountBalanceWalletRounded: React.FC = ({ ...props }) => ( ) -export { IconAccountBalanceWalletRounded as default } +export default IconAccountBalanceWalletRounded diff --git a/src/IconAccountBalanceWalletRoundedFilled.tsx b/src/IconAccountBalanceWalletRoundedFilled.tsx index bd5c25628..6294f802a 100644 --- a/src/IconAccountBalanceWalletRoundedFilled.tsx +++ b/src/IconAccountBalanceWalletRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconAccountBalanceWalletRoundedFilled: React.FC = ({ ) -export { IconAccountBalanceWalletRoundedFilled as default } +export default IconAccountBalanceWalletRoundedFilled diff --git a/src/IconAccountBalanceWalletSharp.tsx b/src/IconAccountBalanceWalletSharp.tsx index 319d9d7ca..6e5a8339f 100644 --- a/src/IconAccountBalanceWalletSharp.tsx +++ b/src/IconAccountBalanceWalletSharp.tsx @@ -8,4 +8,4 @@ const IconAccountBalanceWalletSharp: React.FC = ({ ...props }) => ( ) -export { IconAccountBalanceWalletSharp as default } +export default IconAccountBalanceWalletSharp diff --git a/src/IconAccountBalanceWalletSharpFilled.tsx b/src/IconAccountBalanceWalletSharpFilled.tsx index 40bc06731..6b72d81a1 100644 --- a/src/IconAccountBalanceWalletSharpFilled.tsx +++ b/src/IconAccountBalanceWalletSharpFilled.tsx @@ -10,4 +10,4 @@ const IconAccountBalanceWalletSharpFilled: React.FC = ({ ) -export { IconAccountBalanceWalletSharpFilled as default } +export default IconAccountBalanceWalletSharpFilled diff --git a/src/IconAccountBoxOutlined.tsx b/src/IconAccountBoxOutlined.tsx index b719ee9ed..5683c8ce6 100644 --- a/src/IconAccountBoxOutlined.tsx +++ b/src/IconAccountBoxOutlined.tsx @@ -8,4 +8,4 @@ const IconAccountBoxOutlined: React.FC = ({ ...props }) => ( ) -export { IconAccountBoxOutlined as default } +export default IconAccountBoxOutlined diff --git a/src/IconAccountBoxOutlinedFilled.tsx b/src/IconAccountBoxOutlinedFilled.tsx index 4c35e0900..9402e0b42 100644 --- a/src/IconAccountBoxOutlinedFilled.tsx +++ b/src/IconAccountBoxOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconAccountBoxOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconAccountBoxOutlinedFilled as default } +export default IconAccountBoxOutlinedFilled diff --git a/src/IconAccountBoxRounded.tsx b/src/IconAccountBoxRounded.tsx index e24619adf..93809513e 100644 --- a/src/IconAccountBoxRounded.tsx +++ b/src/IconAccountBoxRounded.tsx @@ -8,4 +8,4 @@ const IconAccountBoxRounded: React.FC = ({ ...props }) => ( ) -export { IconAccountBoxRounded as default } +export default IconAccountBoxRounded diff --git a/src/IconAccountBoxRoundedFilled.tsx b/src/IconAccountBoxRoundedFilled.tsx index 7f7028eab..b0c829e77 100644 --- a/src/IconAccountBoxRoundedFilled.tsx +++ b/src/IconAccountBoxRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconAccountBoxRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconAccountBoxRoundedFilled as default } +export default IconAccountBoxRoundedFilled diff --git a/src/IconAccountBoxSharp.tsx b/src/IconAccountBoxSharp.tsx index 46ac96e45..0f2bd02d2 100644 --- a/src/IconAccountBoxSharp.tsx +++ b/src/IconAccountBoxSharp.tsx @@ -8,4 +8,4 @@ const IconAccountBoxSharp: React.FC = ({ ...props }) => ( ) -export { IconAccountBoxSharp as default } +export default IconAccountBoxSharp diff --git a/src/IconAccountBoxSharpFilled.tsx b/src/IconAccountBoxSharpFilled.tsx index d4bec1bc5..1754131ec 100644 --- a/src/IconAccountBoxSharpFilled.tsx +++ b/src/IconAccountBoxSharpFilled.tsx @@ -8,4 +8,4 @@ const IconAccountBoxSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconAccountBoxSharpFilled as default } +export default IconAccountBoxSharpFilled diff --git a/src/IconAccountChildInvertOutlined.tsx b/src/IconAccountChildInvertOutlined.tsx index 59f481d0a..aa464b2d8 100644 --- a/src/IconAccountChildInvertOutlined.tsx +++ b/src/IconAccountChildInvertOutlined.tsx @@ -8,4 +8,4 @@ const IconAccountChildInvertOutlined: React.FC = ({ ...props }) => ( ) -export { IconAccountChildInvertOutlined as default } +export default IconAccountChildInvertOutlined diff --git a/src/IconAccountChildInvertOutlinedFilled.tsx b/src/IconAccountChildInvertOutlinedFilled.tsx index 07b1b0421..e67a84e91 100644 --- a/src/IconAccountChildInvertOutlinedFilled.tsx +++ b/src/IconAccountChildInvertOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconAccountChildInvertOutlinedFilled: React.FC = ({ ) -export { IconAccountChildInvertOutlinedFilled as default } +export default IconAccountChildInvertOutlinedFilled diff --git a/src/IconAccountChildInvertRounded.tsx b/src/IconAccountChildInvertRounded.tsx index 9209a508b..62ce9e289 100644 --- a/src/IconAccountChildInvertRounded.tsx +++ b/src/IconAccountChildInvertRounded.tsx @@ -8,4 +8,4 @@ const IconAccountChildInvertRounded: React.FC = ({ ...props }) => ( ) -export { IconAccountChildInvertRounded as default } +export default IconAccountChildInvertRounded diff --git a/src/IconAccountChildInvertRoundedFilled.tsx b/src/IconAccountChildInvertRoundedFilled.tsx index 447acb79d..a93b5007d 100644 --- a/src/IconAccountChildInvertRoundedFilled.tsx +++ b/src/IconAccountChildInvertRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconAccountChildInvertRoundedFilled: React.FC = ({ ) -export { IconAccountChildInvertRoundedFilled as default } +export default IconAccountChildInvertRoundedFilled diff --git a/src/IconAccountChildInvertSharp.tsx b/src/IconAccountChildInvertSharp.tsx index 588ed1186..713fea202 100644 --- a/src/IconAccountChildInvertSharp.tsx +++ b/src/IconAccountChildInvertSharp.tsx @@ -8,4 +8,4 @@ const IconAccountChildInvertSharp: React.FC = ({ ...props }) => ( ) -export { IconAccountChildInvertSharp as default } +export default IconAccountChildInvertSharp diff --git a/src/IconAccountChildInvertSharpFilled.tsx b/src/IconAccountChildInvertSharpFilled.tsx index 50e1842da..fbc621d65 100644 --- a/src/IconAccountChildInvertSharpFilled.tsx +++ b/src/IconAccountChildInvertSharpFilled.tsx @@ -10,4 +10,4 @@ const IconAccountChildInvertSharpFilled: React.FC = ({ ) -export { IconAccountChildInvertSharpFilled as default } +export default IconAccountChildInvertSharpFilled diff --git a/src/IconAccountChildOutlined.tsx b/src/IconAccountChildOutlined.tsx index dbaf459bc..2924fba5b 100644 --- a/src/IconAccountChildOutlined.tsx +++ b/src/IconAccountChildOutlined.tsx @@ -8,4 +8,4 @@ const IconAccountChildOutlined: React.FC = ({ ...props }) => ( ) -export { IconAccountChildOutlined as default } +export default IconAccountChildOutlined diff --git a/src/IconAccountChildOutlinedFilled.tsx b/src/IconAccountChildOutlinedFilled.tsx index 82acdacb9..4de87ec03 100644 --- a/src/IconAccountChildOutlinedFilled.tsx +++ b/src/IconAccountChildOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconAccountChildOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconAccountChildOutlinedFilled as default } +export default IconAccountChildOutlinedFilled diff --git a/src/IconAccountChildRounded.tsx b/src/IconAccountChildRounded.tsx index 5b980121c..5f8ed54b9 100644 --- a/src/IconAccountChildRounded.tsx +++ b/src/IconAccountChildRounded.tsx @@ -8,4 +8,4 @@ const IconAccountChildRounded: React.FC = ({ ...props }) => ( ) -export { IconAccountChildRounded as default } +export default IconAccountChildRounded diff --git a/src/IconAccountChildRoundedFilled.tsx b/src/IconAccountChildRoundedFilled.tsx index b50ccabf8..38f95cd06 100644 --- a/src/IconAccountChildRoundedFilled.tsx +++ b/src/IconAccountChildRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconAccountChildRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconAccountChildRoundedFilled as default } +export default IconAccountChildRoundedFilled diff --git a/src/IconAccountChildSharp.tsx b/src/IconAccountChildSharp.tsx index d193f1f6b..bf8888c02 100644 --- a/src/IconAccountChildSharp.tsx +++ b/src/IconAccountChildSharp.tsx @@ -8,4 +8,4 @@ const IconAccountChildSharp: React.FC = ({ ...props }) => ( ) -export { IconAccountChildSharp as default } +export default IconAccountChildSharp diff --git a/src/IconAccountChildSharpFilled.tsx b/src/IconAccountChildSharpFilled.tsx index f4fb82725..3b041c1a4 100644 --- a/src/IconAccountChildSharpFilled.tsx +++ b/src/IconAccountChildSharpFilled.tsx @@ -8,4 +8,4 @@ const IconAccountChildSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconAccountChildSharpFilled as default } +export default IconAccountChildSharpFilled diff --git a/src/IconAccountCircleOffOutlined.tsx b/src/IconAccountCircleOffOutlined.tsx index 8c471bc8e..44e1a60a1 100644 --- a/src/IconAccountCircleOffOutlined.tsx +++ b/src/IconAccountCircleOffOutlined.tsx @@ -8,4 +8,4 @@ const IconAccountCircleOffOutlined: React.FC = ({ ...props }) => ( ) -export { IconAccountCircleOffOutlined as default } +export default IconAccountCircleOffOutlined diff --git a/src/IconAccountCircleOffOutlinedFilled.tsx b/src/IconAccountCircleOffOutlinedFilled.tsx index ccc7a8fba..8e2ad596b 100644 --- a/src/IconAccountCircleOffOutlinedFilled.tsx +++ b/src/IconAccountCircleOffOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconAccountCircleOffOutlinedFilled: React.FC = ({ ) -export { IconAccountCircleOffOutlinedFilled as default } +export default IconAccountCircleOffOutlinedFilled diff --git a/src/IconAccountCircleOffRounded.tsx b/src/IconAccountCircleOffRounded.tsx index 7d1036cca..426fcf0d6 100644 --- a/src/IconAccountCircleOffRounded.tsx +++ b/src/IconAccountCircleOffRounded.tsx @@ -8,4 +8,4 @@ const IconAccountCircleOffRounded: React.FC = ({ ...props }) => ( ) -export { IconAccountCircleOffRounded as default } +export default IconAccountCircleOffRounded diff --git a/src/IconAccountCircleOffRoundedFilled.tsx b/src/IconAccountCircleOffRoundedFilled.tsx index a40e6ee02..d97f54cfc 100644 --- a/src/IconAccountCircleOffRoundedFilled.tsx +++ b/src/IconAccountCircleOffRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconAccountCircleOffRoundedFilled: React.FC = ({ ) -export { IconAccountCircleOffRoundedFilled as default } +export default IconAccountCircleOffRoundedFilled diff --git a/src/IconAccountCircleOffSharp.tsx b/src/IconAccountCircleOffSharp.tsx index f307fe5cb..72c460342 100644 --- a/src/IconAccountCircleOffSharp.tsx +++ b/src/IconAccountCircleOffSharp.tsx @@ -8,4 +8,4 @@ const IconAccountCircleOffSharp: React.FC = ({ ...props }) => ( ) -export { IconAccountCircleOffSharp as default } +export default IconAccountCircleOffSharp diff --git a/src/IconAccountCircleOffSharpFilled.tsx b/src/IconAccountCircleOffSharpFilled.tsx index 3061c3ef4..d5895e75c 100644 --- a/src/IconAccountCircleOffSharpFilled.tsx +++ b/src/IconAccountCircleOffSharpFilled.tsx @@ -8,4 +8,4 @@ const IconAccountCircleOffSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconAccountCircleOffSharpFilled as default } +export default IconAccountCircleOffSharpFilled diff --git a/src/IconAccountCircleOutlined.tsx b/src/IconAccountCircleOutlined.tsx index f9d9d30e2..e17e85783 100644 --- a/src/IconAccountCircleOutlined.tsx +++ b/src/IconAccountCircleOutlined.tsx @@ -8,4 +8,4 @@ const IconAccountCircleOutlined: React.FC = ({ ...props }) => ( ) -export { IconAccountCircleOutlined as default } +export default IconAccountCircleOutlined diff --git a/src/IconAccountCircleOutlinedFilled.tsx b/src/IconAccountCircleOutlinedFilled.tsx index e1a59e711..fa1c0af7c 100644 --- a/src/IconAccountCircleOutlinedFilled.tsx +++ b/src/IconAccountCircleOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconAccountCircleOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconAccountCircleOutlinedFilled as default } +export default IconAccountCircleOutlinedFilled diff --git a/src/IconAccountCircleRounded.tsx b/src/IconAccountCircleRounded.tsx index 368e26ca6..ae20b0a85 100644 --- a/src/IconAccountCircleRounded.tsx +++ b/src/IconAccountCircleRounded.tsx @@ -8,4 +8,4 @@ const IconAccountCircleRounded: React.FC = ({ ...props }) => ( ) -export { IconAccountCircleRounded as default } +export default IconAccountCircleRounded diff --git a/src/IconAccountCircleRoundedFilled.tsx b/src/IconAccountCircleRoundedFilled.tsx index d44ab71fb..53dce06d4 100644 --- a/src/IconAccountCircleRoundedFilled.tsx +++ b/src/IconAccountCircleRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconAccountCircleRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconAccountCircleRoundedFilled as default } +export default IconAccountCircleRoundedFilled diff --git a/src/IconAccountCircleSharp.tsx b/src/IconAccountCircleSharp.tsx index 71385a9b6..1b45bb57c 100644 --- a/src/IconAccountCircleSharp.tsx +++ b/src/IconAccountCircleSharp.tsx @@ -8,4 +8,4 @@ const IconAccountCircleSharp: React.FC = ({ ...props }) => ( ) -export { IconAccountCircleSharp as default } +export default IconAccountCircleSharp diff --git a/src/IconAccountCircleSharpFilled.tsx b/src/IconAccountCircleSharpFilled.tsx index f6d93a985..db2d25b06 100644 --- a/src/IconAccountCircleSharpFilled.tsx +++ b/src/IconAccountCircleSharpFilled.tsx @@ -8,4 +8,4 @@ const IconAccountCircleSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconAccountCircleSharpFilled as default } +export default IconAccountCircleSharpFilled diff --git a/src/IconAccountTreeOutlined.tsx b/src/IconAccountTreeOutlined.tsx index 814edd99d..5ba80aa17 100644 --- a/src/IconAccountTreeOutlined.tsx +++ b/src/IconAccountTreeOutlined.tsx @@ -8,4 +8,4 @@ const IconAccountTreeOutlined: React.FC = ({ ...props }) => ( ) -export { IconAccountTreeOutlined as default } +export default IconAccountTreeOutlined diff --git a/src/IconAccountTreeOutlinedFilled.tsx b/src/IconAccountTreeOutlinedFilled.tsx index 67f9355bc..9875b82b4 100644 --- a/src/IconAccountTreeOutlinedFilled.tsx +++ b/src/IconAccountTreeOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconAccountTreeOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconAccountTreeOutlinedFilled as default } +export default IconAccountTreeOutlinedFilled diff --git a/src/IconAccountTreeRounded.tsx b/src/IconAccountTreeRounded.tsx index 5fe1d4a6e..7c90238cb 100644 --- a/src/IconAccountTreeRounded.tsx +++ b/src/IconAccountTreeRounded.tsx @@ -8,4 +8,4 @@ const IconAccountTreeRounded: React.FC = ({ ...props }) => ( ) -export { IconAccountTreeRounded as default } +export default IconAccountTreeRounded diff --git a/src/IconAccountTreeRoundedFilled.tsx b/src/IconAccountTreeRoundedFilled.tsx index b29e93e55..3fd14d012 100644 --- a/src/IconAccountTreeRoundedFilled.tsx +++ b/src/IconAccountTreeRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconAccountTreeRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconAccountTreeRoundedFilled as default } +export default IconAccountTreeRoundedFilled diff --git a/src/IconAccountTreeSharp.tsx b/src/IconAccountTreeSharp.tsx index 68b3cb43a..ff5a04219 100644 --- a/src/IconAccountTreeSharp.tsx +++ b/src/IconAccountTreeSharp.tsx @@ -8,4 +8,4 @@ const IconAccountTreeSharp: React.FC = ({ ...props }) => ( ) -export { IconAccountTreeSharp as default } +export default IconAccountTreeSharp diff --git a/src/IconAccountTreeSharpFilled.tsx b/src/IconAccountTreeSharpFilled.tsx index 6ce96fd0d..0e043827e 100644 --- a/src/IconAccountTreeSharpFilled.tsx +++ b/src/IconAccountTreeSharpFilled.tsx @@ -8,4 +8,4 @@ const IconAccountTreeSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconAccountTreeSharpFilled as default } +export default IconAccountTreeSharpFilled diff --git a/src/IconActionKeyOutlined.tsx b/src/IconActionKeyOutlined.tsx index 324dc2f16..74816e3c2 100644 --- a/src/IconActionKeyOutlined.tsx +++ b/src/IconActionKeyOutlined.tsx @@ -8,4 +8,4 @@ const IconActionKeyOutlined: React.FC = ({ ...props }) => ( ) -export { IconActionKeyOutlined as default } +export default IconActionKeyOutlined diff --git a/src/IconActionKeyOutlinedFilled.tsx b/src/IconActionKeyOutlinedFilled.tsx index ebf018f2e..eefc07279 100644 --- a/src/IconActionKeyOutlinedFilled.tsx +++ b/src/IconActionKeyOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconActionKeyOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconActionKeyOutlinedFilled as default } +export default IconActionKeyOutlinedFilled diff --git a/src/IconActionKeyRounded.tsx b/src/IconActionKeyRounded.tsx index 544510be9..c52924e53 100644 --- a/src/IconActionKeyRounded.tsx +++ b/src/IconActionKeyRounded.tsx @@ -8,4 +8,4 @@ const IconActionKeyRounded: React.FC = ({ ...props }) => ( ) -export { IconActionKeyRounded as default } +export default IconActionKeyRounded diff --git a/src/IconActionKeyRoundedFilled.tsx b/src/IconActionKeyRoundedFilled.tsx index 9a885ed6b..4b6cfb660 100644 --- a/src/IconActionKeyRoundedFilled.tsx +++ b/src/IconActionKeyRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconActionKeyRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconActionKeyRoundedFilled as default } +export default IconActionKeyRoundedFilled diff --git a/src/IconActionKeySharp.tsx b/src/IconActionKeySharp.tsx index afd33a4dc..da7e6d9dd 100644 --- a/src/IconActionKeySharp.tsx +++ b/src/IconActionKeySharp.tsx @@ -8,4 +8,4 @@ const IconActionKeySharp: React.FC = ({ ...props }) => ( ) -export { IconActionKeySharp as default } +export default IconActionKeySharp diff --git a/src/IconActionKeySharpFilled.tsx b/src/IconActionKeySharpFilled.tsx index 081f8c556..1d700cab8 100644 --- a/src/IconActionKeySharpFilled.tsx +++ b/src/IconActionKeySharpFilled.tsx @@ -8,4 +8,4 @@ const IconActionKeySharpFilled: React.FC = ({ ...props }) => ( ) -export { IconActionKeySharpFilled as default } +export default IconActionKeySharpFilled diff --git a/src/IconActivityZoneOutlined.tsx b/src/IconActivityZoneOutlined.tsx index 60f1e7b9d..488a00694 100644 --- a/src/IconActivityZoneOutlined.tsx +++ b/src/IconActivityZoneOutlined.tsx @@ -8,4 +8,4 @@ const IconActivityZoneOutlined: React.FC = ({ ...props }) => ( ) -export { IconActivityZoneOutlined as default } +export default IconActivityZoneOutlined diff --git a/src/IconActivityZoneOutlinedFilled.tsx b/src/IconActivityZoneOutlinedFilled.tsx index 5a0fe3e36..bcd4fd299 100644 --- a/src/IconActivityZoneOutlinedFilled.tsx +++ b/src/IconActivityZoneOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconActivityZoneOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconActivityZoneOutlinedFilled as default } +export default IconActivityZoneOutlinedFilled diff --git a/src/IconActivityZoneRounded.tsx b/src/IconActivityZoneRounded.tsx index b66b00f9f..d0a4ed2eb 100644 --- a/src/IconActivityZoneRounded.tsx +++ b/src/IconActivityZoneRounded.tsx @@ -8,4 +8,4 @@ const IconActivityZoneRounded: React.FC = ({ ...props }) => ( ) -export { IconActivityZoneRounded as default } +export default IconActivityZoneRounded diff --git a/src/IconActivityZoneRoundedFilled.tsx b/src/IconActivityZoneRoundedFilled.tsx index 5dcdc85bf..59d7c7884 100644 --- a/src/IconActivityZoneRoundedFilled.tsx +++ b/src/IconActivityZoneRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconActivityZoneRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconActivityZoneRoundedFilled as default } +export default IconActivityZoneRoundedFilled diff --git a/src/IconActivityZoneSharp.tsx b/src/IconActivityZoneSharp.tsx index 6d8ce86b7..1382611aa 100644 --- a/src/IconActivityZoneSharp.tsx +++ b/src/IconActivityZoneSharp.tsx @@ -8,4 +8,4 @@ const IconActivityZoneSharp: React.FC = ({ ...props }) => ( ) -export { IconActivityZoneSharp as default } +export default IconActivityZoneSharp diff --git a/src/IconActivityZoneSharpFilled.tsx b/src/IconActivityZoneSharpFilled.tsx index a8293780c..2f7cd4bcc 100644 --- a/src/IconActivityZoneSharpFilled.tsx +++ b/src/IconActivityZoneSharpFilled.tsx @@ -8,4 +8,4 @@ const IconActivityZoneSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconActivityZoneSharpFilled as default } +export default IconActivityZoneSharpFilled diff --git a/src/IconAcuteOutlined.tsx b/src/IconAcuteOutlined.tsx index 3b0011d78..eb6d4a119 100644 --- a/src/IconAcuteOutlined.tsx +++ b/src/IconAcuteOutlined.tsx @@ -8,4 +8,4 @@ const IconAcuteOutlined: React.FC = ({ ...props }) => ( ) -export { IconAcuteOutlined as default } +export default IconAcuteOutlined diff --git a/src/IconAcuteOutlinedFilled.tsx b/src/IconAcuteOutlinedFilled.tsx index e4bd58fe1..58508b023 100644 --- a/src/IconAcuteOutlinedFilled.tsx +++ b/src/IconAcuteOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconAcuteOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconAcuteOutlinedFilled as default } +export default IconAcuteOutlinedFilled diff --git a/src/IconAcuteRounded.tsx b/src/IconAcuteRounded.tsx index cc50fe3da..c2d22afac 100644 --- a/src/IconAcuteRounded.tsx +++ b/src/IconAcuteRounded.tsx @@ -8,4 +8,4 @@ const IconAcuteRounded: React.FC = ({ ...props }) => ( ) -export { IconAcuteRounded as default } +export default IconAcuteRounded diff --git a/src/IconAcuteRoundedFilled.tsx b/src/IconAcuteRoundedFilled.tsx index 65648ed5d..5fef1c7ab 100644 --- a/src/IconAcuteRoundedFilled.tsx +++ b/src/IconAcuteRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconAcuteRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconAcuteRoundedFilled as default } +export default IconAcuteRoundedFilled diff --git a/src/IconAcuteSharp.tsx b/src/IconAcuteSharp.tsx index 44a569747..7ef73f1f6 100644 --- a/src/IconAcuteSharp.tsx +++ b/src/IconAcuteSharp.tsx @@ -8,4 +8,4 @@ const IconAcuteSharp: React.FC = ({ ...props }) => ( ) -export { IconAcuteSharp as default } +export default IconAcuteSharp diff --git a/src/IconAcuteSharpFilled.tsx b/src/IconAcuteSharpFilled.tsx index 3778f429d..a488dcd36 100644 --- a/src/IconAcuteSharpFilled.tsx +++ b/src/IconAcuteSharpFilled.tsx @@ -8,4 +8,4 @@ const IconAcuteSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconAcuteSharpFilled as default } +export default IconAcuteSharpFilled diff --git a/src/IconAdGroupOffOutlined.tsx b/src/IconAdGroupOffOutlined.tsx index 302878516..b830fc192 100644 --- a/src/IconAdGroupOffOutlined.tsx +++ b/src/IconAdGroupOffOutlined.tsx @@ -8,4 +8,4 @@ const IconAdGroupOffOutlined: React.FC = ({ ...props }) => ( ) -export { IconAdGroupOffOutlined as default } +export default IconAdGroupOffOutlined diff --git a/src/IconAdGroupOffOutlinedFilled.tsx b/src/IconAdGroupOffOutlinedFilled.tsx index 9ae34fb4d..9832f0b02 100644 --- a/src/IconAdGroupOffOutlinedFilled.tsx +++ b/src/IconAdGroupOffOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconAdGroupOffOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconAdGroupOffOutlinedFilled as default } +export default IconAdGroupOffOutlinedFilled diff --git a/src/IconAdGroupOffRounded.tsx b/src/IconAdGroupOffRounded.tsx index e7595e13b..fa24001be 100644 --- a/src/IconAdGroupOffRounded.tsx +++ b/src/IconAdGroupOffRounded.tsx @@ -8,4 +8,4 @@ const IconAdGroupOffRounded: React.FC = ({ ...props }) => ( ) -export { IconAdGroupOffRounded as default } +export default IconAdGroupOffRounded diff --git a/src/IconAdGroupOffRoundedFilled.tsx b/src/IconAdGroupOffRoundedFilled.tsx index 7bea27f97..092985ef6 100644 --- a/src/IconAdGroupOffRoundedFilled.tsx +++ b/src/IconAdGroupOffRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconAdGroupOffRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconAdGroupOffRoundedFilled as default } +export default IconAdGroupOffRoundedFilled diff --git a/src/IconAdGroupOffSharp.tsx b/src/IconAdGroupOffSharp.tsx index a1758afa9..d1be46acf 100644 --- a/src/IconAdGroupOffSharp.tsx +++ b/src/IconAdGroupOffSharp.tsx @@ -8,4 +8,4 @@ const IconAdGroupOffSharp: React.FC = ({ ...props }) => ( ) -export { IconAdGroupOffSharp as default } +export default IconAdGroupOffSharp diff --git a/src/IconAdGroupOffSharpFilled.tsx b/src/IconAdGroupOffSharpFilled.tsx index 53ea059af..f94b5c9de 100644 --- a/src/IconAdGroupOffSharpFilled.tsx +++ b/src/IconAdGroupOffSharpFilled.tsx @@ -8,4 +8,4 @@ const IconAdGroupOffSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconAdGroupOffSharpFilled as default } +export default IconAdGroupOffSharpFilled diff --git a/src/IconAdGroupOutlined.tsx b/src/IconAdGroupOutlined.tsx index 6e9f45025..6481d2a05 100644 --- a/src/IconAdGroupOutlined.tsx +++ b/src/IconAdGroupOutlined.tsx @@ -8,4 +8,4 @@ const IconAdGroupOutlined: React.FC = ({ ...props }) => ( ) -export { IconAdGroupOutlined as default } +export default IconAdGroupOutlined diff --git a/src/IconAdGroupOutlinedFilled.tsx b/src/IconAdGroupOutlinedFilled.tsx index 37b479916..1cd7863ad 100644 --- a/src/IconAdGroupOutlinedFilled.tsx +++ b/src/IconAdGroupOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconAdGroupOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconAdGroupOutlinedFilled as default } +export default IconAdGroupOutlinedFilled diff --git a/src/IconAdGroupRounded.tsx b/src/IconAdGroupRounded.tsx index 113ae7754..bbd734d7b 100644 --- a/src/IconAdGroupRounded.tsx +++ b/src/IconAdGroupRounded.tsx @@ -8,4 +8,4 @@ const IconAdGroupRounded: React.FC = ({ ...props }) => ( ) -export { IconAdGroupRounded as default } +export default IconAdGroupRounded diff --git a/src/IconAdGroupRoundedFilled.tsx b/src/IconAdGroupRoundedFilled.tsx index 9e7bb36e1..512194ed8 100644 --- a/src/IconAdGroupRoundedFilled.tsx +++ b/src/IconAdGroupRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconAdGroupRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconAdGroupRoundedFilled as default } +export default IconAdGroupRoundedFilled diff --git a/src/IconAdGroupSharp.tsx b/src/IconAdGroupSharp.tsx index 0ee1f24aa..3aded9a2a 100644 --- a/src/IconAdGroupSharp.tsx +++ b/src/IconAdGroupSharp.tsx @@ -8,4 +8,4 @@ const IconAdGroupSharp: React.FC = ({ ...props }) => ( ) -export { IconAdGroupSharp as default } +export default IconAdGroupSharp diff --git a/src/IconAdGroupSharpFilled.tsx b/src/IconAdGroupSharpFilled.tsx index 69a71c3fd..c1fb329e3 100644 --- a/src/IconAdGroupSharpFilled.tsx +++ b/src/IconAdGroupSharpFilled.tsx @@ -8,4 +8,4 @@ const IconAdGroupSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconAdGroupSharpFilled as default } +export default IconAdGroupSharpFilled diff --git a/src/IconAdOffOutlined.tsx b/src/IconAdOffOutlined.tsx index b50213625..042ea3ef8 100644 --- a/src/IconAdOffOutlined.tsx +++ b/src/IconAdOffOutlined.tsx @@ -8,4 +8,4 @@ const IconAdOffOutlined: React.FC = ({ ...props }) => ( ) -export { IconAdOffOutlined as default } +export default IconAdOffOutlined diff --git a/src/IconAdOffOutlinedFilled.tsx b/src/IconAdOffOutlinedFilled.tsx index 68b119a63..4a34acdb0 100644 --- a/src/IconAdOffOutlinedFilled.tsx +++ b/src/IconAdOffOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconAdOffOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconAdOffOutlinedFilled as default } +export default IconAdOffOutlinedFilled diff --git a/src/IconAdOffRounded.tsx b/src/IconAdOffRounded.tsx index fa0f54628..8808677e4 100644 --- a/src/IconAdOffRounded.tsx +++ b/src/IconAdOffRounded.tsx @@ -8,4 +8,4 @@ const IconAdOffRounded: React.FC = ({ ...props }) => ( ) -export { IconAdOffRounded as default } +export default IconAdOffRounded diff --git a/src/IconAdOffRoundedFilled.tsx b/src/IconAdOffRoundedFilled.tsx index 739796645..0ed102b2a 100644 --- a/src/IconAdOffRoundedFilled.tsx +++ b/src/IconAdOffRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconAdOffRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconAdOffRoundedFilled as default } +export default IconAdOffRoundedFilled diff --git a/src/IconAdOffSharp.tsx b/src/IconAdOffSharp.tsx index be8850307..921e3fd7d 100644 --- a/src/IconAdOffSharp.tsx +++ b/src/IconAdOffSharp.tsx @@ -8,4 +8,4 @@ const IconAdOffSharp: React.FC = ({ ...props }) => ( ) -export { IconAdOffSharp as default } +export default IconAdOffSharp diff --git a/src/IconAdOffSharpFilled.tsx b/src/IconAdOffSharpFilled.tsx index 329ef7c8b..5b64c3753 100644 --- a/src/IconAdOffSharpFilled.tsx +++ b/src/IconAdOffSharpFilled.tsx @@ -8,4 +8,4 @@ const IconAdOffSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconAdOffSharpFilled as default } +export default IconAdOffSharpFilled diff --git a/src/IconAdOutlined.tsx b/src/IconAdOutlined.tsx index 77fca209c..bd172573d 100644 --- a/src/IconAdOutlined.tsx +++ b/src/IconAdOutlined.tsx @@ -8,4 +8,4 @@ const IconAdOutlined: React.FC = ({ ...props }) => ( ) -export { IconAdOutlined as default } +export default IconAdOutlined diff --git a/src/IconAdOutlinedFilled.tsx b/src/IconAdOutlinedFilled.tsx index b6f084e7e..647259eed 100644 --- a/src/IconAdOutlinedFilled.tsx +++ b/src/IconAdOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconAdOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconAdOutlinedFilled as default } +export default IconAdOutlinedFilled diff --git a/src/IconAdRounded.tsx b/src/IconAdRounded.tsx index 68788cb26..a60eaa5df 100644 --- a/src/IconAdRounded.tsx +++ b/src/IconAdRounded.tsx @@ -8,4 +8,4 @@ const IconAdRounded: React.FC = ({ ...props }) => ( ) -export { IconAdRounded as default } +export default IconAdRounded diff --git a/src/IconAdRoundedFilled.tsx b/src/IconAdRoundedFilled.tsx index 5d5a3c1f3..c6e706105 100644 --- a/src/IconAdRoundedFilled.tsx +++ b/src/IconAdRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconAdRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconAdRoundedFilled as default } +export default IconAdRoundedFilled diff --git a/src/IconAdSharp.tsx b/src/IconAdSharp.tsx index 765dcd762..16ef1b734 100644 --- a/src/IconAdSharp.tsx +++ b/src/IconAdSharp.tsx @@ -8,4 +8,4 @@ const IconAdSharp: React.FC = ({ ...props }) => ( ) -export { IconAdSharp as default } +export default IconAdSharp diff --git a/src/IconAdSharpFilled.tsx b/src/IconAdSharpFilled.tsx index 47ce71225..108b7bcb2 100644 --- a/src/IconAdSharpFilled.tsx +++ b/src/IconAdSharpFilled.tsx @@ -8,4 +8,4 @@ const IconAdSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconAdSharpFilled as default } +export default IconAdSharpFilled diff --git a/src/IconAdUnitsOutlined.tsx b/src/IconAdUnitsOutlined.tsx index 46dbceae0..670aefe22 100644 --- a/src/IconAdUnitsOutlined.tsx +++ b/src/IconAdUnitsOutlined.tsx @@ -8,4 +8,4 @@ const IconAdUnitsOutlined: React.FC = ({ ...props }) => ( ) -export { IconAdUnitsOutlined as default } +export default IconAdUnitsOutlined diff --git a/src/IconAdUnitsOutlinedFilled.tsx b/src/IconAdUnitsOutlinedFilled.tsx index cf7b7411a..9e3401e9c 100644 --- a/src/IconAdUnitsOutlinedFilled.tsx +++ b/src/IconAdUnitsOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconAdUnitsOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconAdUnitsOutlinedFilled as default } +export default IconAdUnitsOutlinedFilled diff --git a/src/IconAdUnitsRounded.tsx b/src/IconAdUnitsRounded.tsx index b5112103b..39229d6d5 100644 --- a/src/IconAdUnitsRounded.tsx +++ b/src/IconAdUnitsRounded.tsx @@ -8,4 +8,4 @@ const IconAdUnitsRounded: React.FC = ({ ...props }) => ( ) -export { IconAdUnitsRounded as default } +export default IconAdUnitsRounded diff --git a/src/IconAdUnitsRoundedFilled.tsx b/src/IconAdUnitsRoundedFilled.tsx index df60369fc..a747509f0 100644 --- a/src/IconAdUnitsRoundedFilled.tsx +++ b/src/IconAdUnitsRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconAdUnitsRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconAdUnitsRoundedFilled as default } +export default IconAdUnitsRoundedFilled diff --git a/src/IconAdUnitsSharp.tsx b/src/IconAdUnitsSharp.tsx index 66a266297..ada0b2f21 100644 --- a/src/IconAdUnitsSharp.tsx +++ b/src/IconAdUnitsSharp.tsx @@ -8,4 +8,4 @@ const IconAdUnitsSharp: React.FC = ({ ...props }) => ( ) -export { IconAdUnitsSharp as default } +export default IconAdUnitsSharp diff --git a/src/IconAdUnitsSharpFilled.tsx b/src/IconAdUnitsSharpFilled.tsx index 4f3326863..1a0999a5f 100644 --- a/src/IconAdUnitsSharpFilled.tsx +++ b/src/IconAdUnitsSharpFilled.tsx @@ -8,4 +8,4 @@ const IconAdUnitsSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconAdUnitsSharpFilled as default } +export default IconAdUnitsSharpFilled diff --git a/src/IconAdaptiveAudioMicOffOutlined.tsx b/src/IconAdaptiveAudioMicOffOutlined.tsx index 8f56a89a1..ab4a88800 100644 --- a/src/IconAdaptiveAudioMicOffOutlined.tsx +++ b/src/IconAdaptiveAudioMicOffOutlined.tsx @@ -8,4 +8,4 @@ const IconAdaptiveAudioMicOffOutlined: React.FC = ({ ...props }) => ( ) -export { IconAdaptiveAudioMicOffOutlined as default } +export default IconAdaptiveAudioMicOffOutlined diff --git a/src/IconAdaptiveAudioMicOffOutlinedFilled.tsx b/src/IconAdaptiveAudioMicOffOutlinedFilled.tsx index 953bffef1..1ccbaa8ad 100644 --- a/src/IconAdaptiveAudioMicOffOutlinedFilled.tsx +++ b/src/IconAdaptiveAudioMicOffOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconAdaptiveAudioMicOffOutlinedFilled: React.FC = ({ ) -export { IconAdaptiveAudioMicOffOutlinedFilled as default } +export default IconAdaptiveAudioMicOffOutlinedFilled diff --git a/src/IconAdaptiveAudioMicOffRounded.tsx b/src/IconAdaptiveAudioMicOffRounded.tsx index ff7c36254..2d43cca60 100644 --- a/src/IconAdaptiveAudioMicOffRounded.tsx +++ b/src/IconAdaptiveAudioMicOffRounded.tsx @@ -8,4 +8,4 @@ const IconAdaptiveAudioMicOffRounded: React.FC = ({ ...props }) => ( ) -export { IconAdaptiveAudioMicOffRounded as default } +export default IconAdaptiveAudioMicOffRounded diff --git a/src/IconAdaptiveAudioMicOffRoundedFilled.tsx b/src/IconAdaptiveAudioMicOffRoundedFilled.tsx index 8724347c6..bd8f878a0 100644 --- a/src/IconAdaptiveAudioMicOffRoundedFilled.tsx +++ b/src/IconAdaptiveAudioMicOffRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconAdaptiveAudioMicOffRoundedFilled: React.FC = ({ ) -export { IconAdaptiveAudioMicOffRoundedFilled as default } +export default IconAdaptiveAudioMicOffRoundedFilled diff --git a/src/IconAdaptiveAudioMicOffSharp.tsx b/src/IconAdaptiveAudioMicOffSharp.tsx index 5a657d263..392384f17 100644 --- a/src/IconAdaptiveAudioMicOffSharp.tsx +++ b/src/IconAdaptiveAudioMicOffSharp.tsx @@ -8,4 +8,4 @@ const IconAdaptiveAudioMicOffSharp: React.FC = ({ ...props }) => ( ) -export { IconAdaptiveAudioMicOffSharp as default } +export default IconAdaptiveAudioMicOffSharp diff --git a/src/IconAdaptiveAudioMicOffSharpFilled.tsx b/src/IconAdaptiveAudioMicOffSharpFilled.tsx index 2cf070019..2f5a3277d 100644 --- a/src/IconAdaptiveAudioMicOffSharpFilled.tsx +++ b/src/IconAdaptiveAudioMicOffSharpFilled.tsx @@ -10,4 +10,4 @@ const IconAdaptiveAudioMicOffSharpFilled: React.FC = ({ ) -export { IconAdaptiveAudioMicOffSharpFilled as default } +export default IconAdaptiveAudioMicOffSharpFilled diff --git a/src/IconAdaptiveAudioMicOutlined.tsx b/src/IconAdaptiveAudioMicOutlined.tsx index b1f307e82..4e8b81d08 100644 --- a/src/IconAdaptiveAudioMicOutlined.tsx +++ b/src/IconAdaptiveAudioMicOutlined.tsx @@ -8,4 +8,4 @@ const IconAdaptiveAudioMicOutlined: React.FC = ({ ...props }) => ( ) -export { IconAdaptiveAudioMicOutlined as default } +export default IconAdaptiveAudioMicOutlined diff --git a/src/IconAdaptiveAudioMicOutlinedFilled.tsx b/src/IconAdaptiveAudioMicOutlinedFilled.tsx index c44b82f6f..3af60d710 100644 --- a/src/IconAdaptiveAudioMicOutlinedFilled.tsx +++ b/src/IconAdaptiveAudioMicOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconAdaptiveAudioMicOutlinedFilled: React.FC = ({ ) -export { IconAdaptiveAudioMicOutlinedFilled as default } +export default IconAdaptiveAudioMicOutlinedFilled diff --git a/src/IconAdaptiveAudioMicRounded.tsx b/src/IconAdaptiveAudioMicRounded.tsx index ab8d698d0..9637dbfbb 100644 --- a/src/IconAdaptiveAudioMicRounded.tsx +++ b/src/IconAdaptiveAudioMicRounded.tsx @@ -8,4 +8,4 @@ const IconAdaptiveAudioMicRounded: React.FC = ({ ...props }) => ( ) -export { IconAdaptiveAudioMicRounded as default } +export default IconAdaptiveAudioMicRounded diff --git a/src/IconAdaptiveAudioMicRoundedFilled.tsx b/src/IconAdaptiveAudioMicRoundedFilled.tsx index e91bdf4ed..70feeb5a9 100644 --- a/src/IconAdaptiveAudioMicRoundedFilled.tsx +++ b/src/IconAdaptiveAudioMicRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconAdaptiveAudioMicRoundedFilled: React.FC = ({ ) -export { IconAdaptiveAudioMicRoundedFilled as default } +export default IconAdaptiveAudioMicRoundedFilled diff --git a/src/IconAdaptiveAudioMicSharp.tsx b/src/IconAdaptiveAudioMicSharp.tsx index 3af982152..f46e09256 100644 --- a/src/IconAdaptiveAudioMicSharp.tsx +++ b/src/IconAdaptiveAudioMicSharp.tsx @@ -8,4 +8,4 @@ const IconAdaptiveAudioMicSharp: React.FC = ({ ...props }) => ( ) -export { IconAdaptiveAudioMicSharp as default } +export default IconAdaptiveAudioMicSharp diff --git a/src/IconAdaptiveAudioMicSharpFilled.tsx b/src/IconAdaptiveAudioMicSharpFilled.tsx index 4ecb4b46a..125cf17b7 100644 --- a/src/IconAdaptiveAudioMicSharpFilled.tsx +++ b/src/IconAdaptiveAudioMicSharpFilled.tsx @@ -8,4 +8,4 @@ const IconAdaptiveAudioMicSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconAdaptiveAudioMicSharpFilled as default } +export default IconAdaptiveAudioMicSharpFilled diff --git a/src/IconAdbOutlined.tsx b/src/IconAdbOutlined.tsx index 0a237a159..f536dba8e 100644 --- a/src/IconAdbOutlined.tsx +++ b/src/IconAdbOutlined.tsx @@ -8,4 +8,4 @@ const IconAdbOutlined: React.FC = ({ ...props }) => ( ) -export { IconAdbOutlined as default } +export default IconAdbOutlined diff --git a/src/IconAdbOutlinedFilled.tsx b/src/IconAdbOutlinedFilled.tsx index 405c391f7..e6de9c70c 100644 --- a/src/IconAdbOutlinedFilled.tsx +++ b/src/IconAdbOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconAdbOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconAdbOutlinedFilled as default } +export default IconAdbOutlinedFilled diff --git a/src/IconAdbRounded.tsx b/src/IconAdbRounded.tsx index 4b22e1279..315955c37 100644 --- a/src/IconAdbRounded.tsx +++ b/src/IconAdbRounded.tsx @@ -8,4 +8,4 @@ const IconAdbRounded: React.FC = ({ ...props }) => ( ) -export { IconAdbRounded as default } +export default IconAdbRounded diff --git a/src/IconAdbRoundedFilled.tsx b/src/IconAdbRoundedFilled.tsx index 46c750ac7..73afdcd81 100644 --- a/src/IconAdbRoundedFilled.tsx +++ b/src/IconAdbRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconAdbRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconAdbRoundedFilled as default } +export default IconAdbRoundedFilled diff --git a/src/IconAdbSharp.tsx b/src/IconAdbSharp.tsx index cfbd98ab0..4a9fb3a33 100644 --- a/src/IconAdbSharp.tsx +++ b/src/IconAdbSharp.tsx @@ -8,4 +8,4 @@ const IconAdbSharp: React.FC = ({ ...props }) => ( ) -export { IconAdbSharp as default } +export default IconAdbSharp diff --git a/src/IconAdbSharpFilled.tsx b/src/IconAdbSharpFilled.tsx index 040870202..713640d75 100644 --- a/src/IconAdbSharpFilled.tsx +++ b/src/IconAdbSharpFilled.tsx @@ -8,4 +8,4 @@ const IconAdbSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconAdbSharpFilled as default } +export default IconAdbSharpFilled diff --git a/src/IconAddAPhotoOutlined.tsx b/src/IconAddAPhotoOutlined.tsx index 4f7dd0042..991a81048 100644 --- a/src/IconAddAPhotoOutlined.tsx +++ b/src/IconAddAPhotoOutlined.tsx @@ -8,4 +8,4 @@ const IconAddAPhotoOutlined: React.FC = ({ ...props }) => ( ) -export { IconAddAPhotoOutlined as default } +export default IconAddAPhotoOutlined diff --git a/src/IconAddAPhotoOutlinedFilled.tsx b/src/IconAddAPhotoOutlinedFilled.tsx index 217e039f8..cbf4b9c6e 100644 --- a/src/IconAddAPhotoOutlinedFilled.tsx +++ b/src/IconAddAPhotoOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconAddAPhotoOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconAddAPhotoOutlinedFilled as default } +export default IconAddAPhotoOutlinedFilled diff --git a/src/IconAddAPhotoRounded.tsx b/src/IconAddAPhotoRounded.tsx index bf2c2dee4..8444045a6 100644 --- a/src/IconAddAPhotoRounded.tsx +++ b/src/IconAddAPhotoRounded.tsx @@ -8,4 +8,4 @@ const IconAddAPhotoRounded: React.FC = ({ ...props }) => ( ) -export { IconAddAPhotoRounded as default } +export default IconAddAPhotoRounded diff --git a/src/IconAddAPhotoRoundedFilled.tsx b/src/IconAddAPhotoRoundedFilled.tsx index 8f2717b0f..785020ac8 100644 --- a/src/IconAddAPhotoRoundedFilled.tsx +++ b/src/IconAddAPhotoRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconAddAPhotoRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconAddAPhotoRoundedFilled as default } +export default IconAddAPhotoRoundedFilled diff --git a/src/IconAddAPhotoSharp.tsx b/src/IconAddAPhotoSharp.tsx index a454e7b6a..1a0383df0 100644 --- a/src/IconAddAPhotoSharp.tsx +++ b/src/IconAddAPhotoSharp.tsx @@ -8,4 +8,4 @@ const IconAddAPhotoSharp: React.FC = ({ ...props }) => ( ) -export { IconAddAPhotoSharp as default } +export default IconAddAPhotoSharp diff --git a/src/IconAddAPhotoSharpFilled.tsx b/src/IconAddAPhotoSharpFilled.tsx index 0431bca94..1cf0173a0 100644 --- a/src/IconAddAPhotoSharpFilled.tsx +++ b/src/IconAddAPhotoSharpFilled.tsx @@ -8,4 +8,4 @@ const IconAddAPhotoSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconAddAPhotoSharpFilled as default } +export default IconAddAPhotoSharpFilled diff --git a/src/IconAddAdOutlined.tsx b/src/IconAddAdOutlined.tsx index 21047ee2c..6a8af1c72 100644 --- a/src/IconAddAdOutlined.tsx +++ b/src/IconAddAdOutlined.tsx @@ -8,4 +8,4 @@ const IconAddAdOutlined: React.FC = ({ ...props }) => ( ) -export { IconAddAdOutlined as default } +export default IconAddAdOutlined diff --git a/src/IconAddAdOutlinedFilled.tsx b/src/IconAddAdOutlinedFilled.tsx index 21af70468..ee90c0ef1 100644 --- a/src/IconAddAdOutlinedFilled.tsx +++ b/src/IconAddAdOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconAddAdOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconAddAdOutlinedFilled as default } +export default IconAddAdOutlinedFilled diff --git a/src/IconAddAdRounded.tsx b/src/IconAddAdRounded.tsx index 620373536..f85569239 100644 --- a/src/IconAddAdRounded.tsx +++ b/src/IconAddAdRounded.tsx @@ -8,4 +8,4 @@ const IconAddAdRounded: React.FC = ({ ...props }) => ( ) -export { IconAddAdRounded as default } +export default IconAddAdRounded diff --git a/src/IconAddAdRoundedFilled.tsx b/src/IconAddAdRoundedFilled.tsx index 80abfe3b5..d75991097 100644 --- a/src/IconAddAdRoundedFilled.tsx +++ b/src/IconAddAdRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconAddAdRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconAddAdRoundedFilled as default } +export default IconAddAdRoundedFilled diff --git a/src/IconAddAdSharp.tsx b/src/IconAddAdSharp.tsx index 7f46635e6..fd16da1b5 100644 --- a/src/IconAddAdSharp.tsx +++ b/src/IconAddAdSharp.tsx @@ -8,4 +8,4 @@ const IconAddAdSharp: React.FC = ({ ...props }) => ( ) -export { IconAddAdSharp as default } +export default IconAddAdSharp diff --git a/src/IconAddAdSharpFilled.tsx b/src/IconAddAdSharpFilled.tsx index a112214dd..d27354710 100644 --- a/src/IconAddAdSharpFilled.tsx +++ b/src/IconAddAdSharpFilled.tsx @@ -8,4 +8,4 @@ const IconAddAdSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconAddAdSharpFilled as default } +export default IconAddAdSharpFilled diff --git a/src/IconAddAlertOutlined.tsx b/src/IconAddAlertOutlined.tsx index e29cf8226..06e1fe605 100644 --- a/src/IconAddAlertOutlined.tsx +++ b/src/IconAddAlertOutlined.tsx @@ -8,4 +8,4 @@ const IconAddAlertOutlined: React.FC = ({ ...props }) => ( ) -export { IconAddAlertOutlined as default } +export default IconAddAlertOutlined diff --git a/src/IconAddAlertOutlinedFilled.tsx b/src/IconAddAlertOutlinedFilled.tsx index 19cc18371..71da3c529 100644 --- a/src/IconAddAlertOutlinedFilled.tsx +++ b/src/IconAddAlertOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconAddAlertOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconAddAlertOutlinedFilled as default } +export default IconAddAlertOutlinedFilled diff --git a/src/IconAddAlertRounded.tsx b/src/IconAddAlertRounded.tsx index 59bfd9323..954ba96e5 100644 --- a/src/IconAddAlertRounded.tsx +++ b/src/IconAddAlertRounded.tsx @@ -8,4 +8,4 @@ const IconAddAlertRounded: React.FC = ({ ...props }) => ( ) -export { IconAddAlertRounded as default } +export default IconAddAlertRounded diff --git a/src/IconAddAlertRoundedFilled.tsx b/src/IconAddAlertRoundedFilled.tsx index b359197c8..c44d7bfc3 100644 --- a/src/IconAddAlertRoundedFilled.tsx +++ b/src/IconAddAlertRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconAddAlertRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconAddAlertRoundedFilled as default } +export default IconAddAlertRoundedFilled diff --git a/src/IconAddAlertSharp.tsx b/src/IconAddAlertSharp.tsx index 9015cf352..2db4d34bb 100644 --- a/src/IconAddAlertSharp.tsx +++ b/src/IconAddAlertSharp.tsx @@ -8,4 +8,4 @@ const IconAddAlertSharp: React.FC = ({ ...props }) => ( ) -export { IconAddAlertSharp as default } +export default IconAddAlertSharp diff --git a/src/IconAddAlertSharpFilled.tsx b/src/IconAddAlertSharpFilled.tsx index 817cfb842..6d93598b1 100644 --- a/src/IconAddAlertSharpFilled.tsx +++ b/src/IconAddAlertSharpFilled.tsx @@ -8,4 +8,4 @@ const IconAddAlertSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconAddAlertSharpFilled as default } +export default IconAddAlertSharpFilled diff --git a/src/IconAddBoxOutlined.tsx b/src/IconAddBoxOutlined.tsx index 9f419d1d9..d28616a0e 100644 --- a/src/IconAddBoxOutlined.tsx +++ b/src/IconAddBoxOutlined.tsx @@ -8,4 +8,4 @@ const IconAddBoxOutlined: React.FC = ({ ...props }) => ( ) -export { IconAddBoxOutlined as default } +export default IconAddBoxOutlined diff --git a/src/IconAddBoxOutlinedFilled.tsx b/src/IconAddBoxOutlinedFilled.tsx index 5bae43232..11283fd37 100644 --- a/src/IconAddBoxOutlinedFilled.tsx +++ b/src/IconAddBoxOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconAddBoxOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconAddBoxOutlinedFilled as default } +export default IconAddBoxOutlinedFilled diff --git a/src/IconAddBoxRounded.tsx b/src/IconAddBoxRounded.tsx index f05cc76f3..2c5b21830 100644 --- a/src/IconAddBoxRounded.tsx +++ b/src/IconAddBoxRounded.tsx @@ -8,4 +8,4 @@ const IconAddBoxRounded: React.FC = ({ ...props }) => ( ) -export { IconAddBoxRounded as default } +export default IconAddBoxRounded diff --git a/src/IconAddBoxRoundedFilled.tsx b/src/IconAddBoxRoundedFilled.tsx index af1fc485c..ce4f9a3e6 100644 --- a/src/IconAddBoxRoundedFilled.tsx +++ b/src/IconAddBoxRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconAddBoxRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconAddBoxRoundedFilled as default } +export default IconAddBoxRoundedFilled diff --git a/src/IconAddBoxSharp.tsx b/src/IconAddBoxSharp.tsx index fb328da6d..7b4dde2f5 100644 --- a/src/IconAddBoxSharp.tsx +++ b/src/IconAddBoxSharp.tsx @@ -8,4 +8,4 @@ const IconAddBoxSharp: React.FC = ({ ...props }) => ( ) -export { IconAddBoxSharp as default } +export default IconAddBoxSharp diff --git a/src/IconAddBoxSharpFilled.tsx b/src/IconAddBoxSharpFilled.tsx index b64ef2cb6..b51ff6d6b 100644 --- a/src/IconAddBoxSharpFilled.tsx +++ b/src/IconAddBoxSharpFilled.tsx @@ -8,4 +8,4 @@ const IconAddBoxSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconAddBoxSharpFilled as default } +export default IconAddBoxSharpFilled diff --git a/src/IconAddBusinessOutlined.tsx b/src/IconAddBusinessOutlined.tsx index 1b05e6f30..bb35dba21 100644 --- a/src/IconAddBusinessOutlined.tsx +++ b/src/IconAddBusinessOutlined.tsx @@ -8,4 +8,4 @@ const IconAddBusinessOutlined: React.FC = ({ ...props }) => ( ) -export { IconAddBusinessOutlined as default } +export default IconAddBusinessOutlined diff --git a/src/IconAddBusinessOutlinedFilled.tsx b/src/IconAddBusinessOutlinedFilled.tsx index 2eb1142d5..08de4bbbd 100644 --- a/src/IconAddBusinessOutlinedFilled.tsx +++ b/src/IconAddBusinessOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconAddBusinessOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconAddBusinessOutlinedFilled as default } +export default IconAddBusinessOutlinedFilled diff --git a/src/IconAddBusinessRounded.tsx b/src/IconAddBusinessRounded.tsx index 88b741d00..8f7d094dd 100644 --- a/src/IconAddBusinessRounded.tsx +++ b/src/IconAddBusinessRounded.tsx @@ -8,4 +8,4 @@ const IconAddBusinessRounded: React.FC = ({ ...props }) => ( ) -export { IconAddBusinessRounded as default } +export default IconAddBusinessRounded diff --git a/src/IconAddBusinessRoundedFilled.tsx b/src/IconAddBusinessRoundedFilled.tsx index 10cc992a9..8cf88413d 100644 --- a/src/IconAddBusinessRoundedFilled.tsx +++ b/src/IconAddBusinessRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconAddBusinessRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconAddBusinessRoundedFilled as default } +export default IconAddBusinessRoundedFilled diff --git a/src/IconAddBusinessSharp.tsx b/src/IconAddBusinessSharp.tsx index 527695e2a..de3c56d46 100644 --- a/src/IconAddBusinessSharp.tsx +++ b/src/IconAddBusinessSharp.tsx @@ -8,4 +8,4 @@ const IconAddBusinessSharp: React.FC = ({ ...props }) => ( ) -export { IconAddBusinessSharp as default } +export default IconAddBusinessSharp diff --git a/src/IconAddBusinessSharpFilled.tsx b/src/IconAddBusinessSharpFilled.tsx index 0130e9053..efe2fed0b 100644 --- a/src/IconAddBusinessSharpFilled.tsx +++ b/src/IconAddBusinessSharpFilled.tsx @@ -8,4 +8,4 @@ const IconAddBusinessSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconAddBusinessSharpFilled as default } +export default IconAddBusinessSharpFilled diff --git a/src/IconAddCallOutlined.tsx b/src/IconAddCallOutlined.tsx index e22a88d03..7689b96fe 100644 --- a/src/IconAddCallOutlined.tsx +++ b/src/IconAddCallOutlined.tsx @@ -8,4 +8,4 @@ const IconAddCallOutlined: React.FC = ({ ...props }) => ( ) -export { IconAddCallOutlined as default } +export default IconAddCallOutlined diff --git a/src/IconAddCallOutlinedFilled.tsx b/src/IconAddCallOutlinedFilled.tsx index b4410cec6..d361172b7 100644 --- a/src/IconAddCallOutlinedFilled.tsx +++ b/src/IconAddCallOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconAddCallOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconAddCallOutlinedFilled as default } +export default IconAddCallOutlinedFilled diff --git a/src/IconAddCallRounded.tsx b/src/IconAddCallRounded.tsx index 94d863109..4b611413e 100644 --- a/src/IconAddCallRounded.tsx +++ b/src/IconAddCallRounded.tsx @@ -8,4 +8,4 @@ const IconAddCallRounded: React.FC = ({ ...props }) => ( ) -export { IconAddCallRounded as default } +export default IconAddCallRounded diff --git a/src/IconAddCallRoundedFilled.tsx b/src/IconAddCallRoundedFilled.tsx index 678c6bf5c..20f477549 100644 --- a/src/IconAddCallRoundedFilled.tsx +++ b/src/IconAddCallRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconAddCallRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconAddCallRoundedFilled as default } +export default IconAddCallRoundedFilled diff --git a/src/IconAddCallSharp.tsx b/src/IconAddCallSharp.tsx index f6f627591..9ac24b37e 100644 --- a/src/IconAddCallSharp.tsx +++ b/src/IconAddCallSharp.tsx @@ -8,4 +8,4 @@ const IconAddCallSharp: React.FC = ({ ...props }) => ( ) -export { IconAddCallSharp as default } +export default IconAddCallSharp diff --git a/src/IconAddCallSharpFilled.tsx b/src/IconAddCallSharpFilled.tsx index dc38cbaf0..ba148eb90 100644 --- a/src/IconAddCallSharpFilled.tsx +++ b/src/IconAddCallSharpFilled.tsx @@ -8,4 +8,4 @@ const IconAddCallSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconAddCallSharpFilled as default } +export default IconAddCallSharpFilled diff --git a/src/IconAddCardOutlined.tsx b/src/IconAddCardOutlined.tsx index 8f518fbf7..a93c2422c 100644 --- a/src/IconAddCardOutlined.tsx +++ b/src/IconAddCardOutlined.tsx @@ -8,4 +8,4 @@ const IconAddCardOutlined: React.FC = ({ ...props }) => ( ) -export { IconAddCardOutlined as default } +export default IconAddCardOutlined diff --git a/src/IconAddCardOutlinedFilled.tsx b/src/IconAddCardOutlinedFilled.tsx index 5dabda0c5..8d246ec1c 100644 --- a/src/IconAddCardOutlinedFilled.tsx +++ b/src/IconAddCardOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconAddCardOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconAddCardOutlinedFilled as default } +export default IconAddCardOutlinedFilled diff --git a/src/IconAddCardRounded.tsx b/src/IconAddCardRounded.tsx index 24ef71b5a..1cf986818 100644 --- a/src/IconAddCardRounded.tsx +++ b/src/IconAddCardRounded.tsx @@ -8,4 +8,4 @@ const IconAddCardRounded: React.FC = ({ ...props }) => ( ) -export { IconAddCardRounded as default } +export default IconAddCardRounded diff --git a/src/IconAddCardRoundedFilled.tsx b/src/IconAddCardRoundedFilled.tsx index 64eac3d1c..94c333b95 100644 --- a/src/IconAddCardRoundedFilled.tsx +++ b/src/IconAddCardRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconAddCardRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconAddCardRoundedFilled as default } +export default IconAddCardRoundedFilled diff --git a/src/IconAddCardSharp.tsx b/src/IconAddCardSharp.tsx index b28f13641..b4e667afe 100644 --- a/src/IconAddCardSharp.tsx +++ b/src/IconAddCardSharp.tsx @@ -8,4 +8,4 @@ const IconAddCardSharp: React.FC = ({ ...props }) => ( ) -export { IconAddCardSharp as default } +export default IconAddCardSharp diff --git a/src/IconAddCardSharpFilled.tsx b/src/IconAddCardSharpFilled.tsx index 4b7b982a9..78963f01f 100644 --- a/src/IconAddCardSharpFilled.tsx +++ b/src/IconAddCardSharpFilled.tsx @@ -8,4 +8,4 @@ const IconAddCardSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconAddCardSharpFilled as default } +export default IconAddCardSharpFilled diff --git a/src/IconAddChartOutlined.tsx b/src/IconAddChartOutlined.tsx index cb5b3a7e2..27a53daae 100644 --- a/src/IconAddChartOutlined.tsx +++ b/src/IconAddChartOutlined.tsx @@ -8,4 +8,4 @@ const IconAddChartOutlined: React.FC = ({ ...props }) => ( ) -export { IconAddChartOutlined as default } +export default IconAddChartOutlined diff --git a/src/IconAddChartOutlinedFilled.tsx b/src/IconAddChartOutlinedFilled.tsx index ca7667b9e..a203b9d82 100644 --- a/src/IconAddChartOutlinedFilled.tsx +++ b/src/IconAddChartOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconAddChartOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconAddChartOutlinedFilled as default } +export default IconAddChartOutlinedFilled diff --git a/src/IconAddChartRounded.tsx b/src/IconAddChartRounded.tsx index cb50e6e53..79220d94c 100644 --- a/src/IconAddChartRounded.tsx +++ b/src/IconAddChartRounded.tsx @@ -8,4 +8,4 @@ const IconAddChartRounded: React.FC = ({ ...props }) => ( ) -export { IconAddChartRounded as default } +export default IconAddChartRounded diff --git a/src/IconAddChartRoundedFilled.tsx b/src/IconAddChartRoundedFilled.tsx index a3ca558a9..aaa8231f7 100644 --- a/src/IconAddChartRoundedFilled.tsx +++ b/src/IconAddChartRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconAddChartRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconAddChartRoundedFilled as default } +export default IconAddChartRoundedFilled diff --git a/src/IconAddChartSharp.tsx b/src/IconAddChartSharp.tsx index 459fecac4..b3ebe77a5 100644 --- a/src/IconAddChartSharp.tsx +++ b/src/IconAddChartSharp.tsx @@ -8,4 +8,4 @@ const IconAddChartSharp: React.FC = ({ ...props }) => ( ) -export { IconAddChartSharp as default } +export default IconAddChartSharp diff --git a/src/IconAddChartSharpFilled.tsx b/src/IconAddChartSharpFilled.tsx index 680002ba2..5f7cbc7da 100644 --- a/src/IconAddChartSharpFilled.tsx +++ b/src/IconAddChartSharpFilled.tsx @@ -8,4 +8,4 @@ const IconAddChartSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconAddChartSharpFilled as default } +export default IconAddChartSharpFilled diff --git a/src/IconAddCircleOutlined.tsx b/src/IconAddCircleOutlined.tsx index bd78e73a5..f3881b349 100644 --- a/src/IconAddCircleOutlined.tsx +++ b/src/IconAddCircleOutlined.tsx @@ -8,4 +8,4 @@ const IconAddCircleOutlined: React.FC = ({ ...props }) => ( ) -export { IconAddCircleOutlined as default } +export default IconAddCircleOutlined diff --git a/src/IconAddCircleOutlinedFilled.tsx b/src/IconAddCircleOutlinedFilled.tsx index d6c67d202..086309f43 100644 --- a/src/IconAddCircleOutlinedFilled.tsx +++ b/src/IconAddCircleOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconAddCircleOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconAddCircleOutlinedFilled as default } +export default IconAddCircleOutlinedFilled diff --git a/src/IconAddCircleRounded.tsx b/src/IconAddCircleRounded.tsx index 6f8d58720..23ffdbe85 100644 --- a/src/IconAddCircleRounded.tsx +++ b/src/IconAddCircleRounded.tsx @@ -8,4 +8,4 @@ const IconAddCircleRounded: React.FC = ({ ...props }) => ( ) -export { IconAddCircleRounded as default } +export default IconAddCircleRounded diff --git a/src/IconAddCircleRoundedFilled.tsx b/src/IconAddCircleRoundedFilled.tsx index f3e642c66..adaac5386 100644 --- a/src/IconAddCircleRoundedFilled.tsx +++ b/src/IconAddCircleRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconAddCircleRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconAddCircleRoundedFilled as default } +export default IconAddCircleRoundedFilled diff --git a/src/IconAddCircleSharp.tsx b/src/IconAddCircleSharp.tsx index 56fc6c039..ccd8ae804 100644 --- a/src/IconAddCircleSharp.tsx +++ b/src/IconAddCircleSharp.tsx @@ -8,4 +8,4 @@ const IconAddCircleSharp: React.FC = ({ ...props }) => ( ) -export { IconAddCircleSharp as default } +export default IconAddCircleSharp diff --git a/src/IconAddCircleSharpFilled.tsx b/src/IconAddCircleSharpFilled.tsx index f4573d217..bc2983d5e 100644 --- a/src/IconAddCircleSharpFilled.tsx +++ b/src/IconAddCircleSharpFilled.tsx @@ -8,4 +8,4 @@ const IconAddCircleSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconAddCircleSharpFilled as default } +export default IconAddCircleSharpFilled diff --git a/src/IconAddColumnLeftOutlined.tsx b/src/IconAddColumnLeftOutlined.tsx index bbbbccb7d..4d9f357ce 100644 --- a/src/IconAddColumnLeftOutlined.tsx +++ b/src/IconAddColumnLeftOutlined.tsx @@ -8,4 +8,4 @@ const IconAddColumnLeftOutlined: React.FC = ({ ...props }) => ( ) -export { IconAddColumnLeftOutlined as default } +export default IconAddColumnLeftOutlined diff --git a/src/IconAddColumnLeftOutlinedFilled.tsx b/src/IconAddColumnLeftOutlinedFilled.tsx index b61c61f12..696b398f6 100644 --- a/src/IconAddColumnLeftOutlinedFilled.tsx +++ b/src/IconAddColumnLeftOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconAddColumnLeftOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconAddColumnLeftOutlinedFilled as default } +export default IconAddColumnLeftOutlinedFilled diff --git a/src/IconAddColumnLeftRounded.tsx b/src/IconAddColumnLeftRounded.tsx index 1861eebc6..68612cd17 100644 --- a/src/IconAddColumnLeftRounded.tsx +++ b/src/IconAddColumnLeftRounded.tsx @@ -8,4 +8,4 @@ const IconAddColumnLeftRounded: React.FC = ({ ...props }) => ( ) -export { IconAddColumnLeftRounded as default } +export default IconAddColumnLeftRounded diff --git a/src/IconAddColumnLeftRoundedFilled.tsx b/src/IconAddColumnLeftRoundedFilled.tsx index 0213b2408..222a01eb3 100644 --- a/src/IconAddColumnLeftRoundedFilled.tsx +++ b/src/IconAddColumnLeftRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconAddColumnLeftRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconAddColumnLeftRoundedFilled as default } +export default IconAddColumnLeftRoundedFilled diff --git a/src/IconAddColumnLeftSharp.tsx b/src/IconAddColumnLeftSharp.tsx index 0d56e9a28..da3a0de7c 100644 --- a/src/IconAddColumnLeftSharp.tsx +++ b/src/IconAddColumnLeftSharp.tsx @@ -8,4 +8,4 @@ const IconAddColumnLeftSharp: React.FC = ({ ...props }) => ( ) -export { IconAddColumnLeftSharp as default } +export default IconAddColumnLeftSharp diff --git a/src/IconAddColumnLeftSharpFilled.tsx b/src/IconAddColumnLeftSharpFilled.tsx index 5833c049d..754b729a6 100644 --- a/src/IconAddColumnLeftSharpFilled.tsx +++ b/src/IconAddColumnLeftSharpFilled.tsx @@ -8,4 +8,4 @@ const IconAddColumnLeftSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconAddColumnLeftSharpFilled as default } +export default IconAddColumnLeftSharpFilled diff --git a/src/IconAddColumnRightOutlined.tsx b/src/IconAddColumnRightOutlined.tsx index bec462e13..a55728f3a 100644 --- a/src/IconAddColumnRightOutlined.tsx +++ b/src/IconAddColumnRightOutlined.tsx @@ -8,4 +8,4 @@ const IconAddColumnRightOutlined: React.FC = ({ ...props }) => ( ) -export { IconAddColumnRightOutlined as default } +export default IconAddColumnRightOutlined diff --git a/src/IconAddColumnRightOutlinedFilled.tsx b/src/IconAddColumnRightOutlinedFilled.tsx index 31af990e6..d69f68490 100644 --- a/src/IconAddColumnRightOutlinedFilled.tsx +++ b/src/IconAddColumnRightOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconAddColumnRightOutlinedFilled: React.FC = ({ ) -export { IconAddColumnRightOutlinedFilled as default } +export default IconAddColumnRightOutlinedFilled diff --git a/src/IconAddColumnRightRounded.tsx b/src/IconAddColumnRightRounded.tsx index 1f9f1ed5c..3e164a57e 100644 --- a/src/IconAddColumnRightRounded.tsx +++ b/src/IconAddColumnRightRounded.tsx @@ -8,4 +8,4 @@ const IconAddColumnRightRounded: React.FC = ({ ...props }) => ( ) -export { IconAddColumnRightRounded as default } +export default IconAddColumnRightRounded diff --git a/src/IconAddColumnRightRoundedFilled.tsx b/src/IconAddColumnRightRoundedFilled.tsx index 5a97ce1ef..4355c85c9 100644 --- a/src/IconAddColumnRightRoundedFilled.tsx +++ b/src/IconAddColumnRightRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconAddColumnRightRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconAddColumnRightRoundedFilled as default } +export default IconAddColumnRightRoundedFilled diff --git a/src/IconAddColumnRightSharp.tsx b/src/IconAddColumnRightSharp.tsx index 20f2383ca..987f640a0 100644 --- a/src/IconAddColumnRightSharp.tsx +++ b/src/IconAddColumnRightSharp.tsx @@ -8,4 +8,4 @@ const IconAddColumnRightSharp: React.FC = ({ ...props }) => ( ) -export { IconAddColumnRightSharp as default } +export default IconAddColumnRightSharp diff --git a/src/IconAddColumnRightSharpFilled.tsx b/src/IconAddColumnRightSharpFilled.tsx index 1dafd1e51..9b7917cdb 100644 --- a/src/IconAddColumnRightSharpFilled.tsx +++ b/src/IconAddColumnRightSharpFilled.tsx @@ -8,4 +8,4 @@ const IconAddColumnRightSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconAddColumnRightSharpFilled as default } +export default IconAddColumnRightSharpFilled diff --git a/src/IconAddCommentOutlined.tsx b/src/IconAddCommentOutlined.tsx index eb850c354..e7413efcf 100644 --- a/src/IconAddCommentOutlined.tsx +++ b/src/IconAddCommentOutlined.tsx @@ -8,4 +8,4 @@ const IconAddCommentOutlined: React.FC = ({ ...props }) => ( ) -export { IconAddCommentOutlined as default } +export default IconAddCommentOutlined diff --git a/src/IconAddCommentOutlinedFilled.tsx b/src/IconAddCommentOutlinedFilled.tsx index fbe8e4b06..0f769980f 100644 --- a/src/IconAddCommentOutlinedFilled.tsx +++ b/src/IconAddCommentOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconAddCommentOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconAddCommentOutlinedFilled as default } +export default IconAddCommentOutlinedFilled diff --git a/src/IconAddCommentRounded.tsx b/src/IconAddCommentRounded.tsx index 7cb4d99fb..ea3d2983b 100644 --- a/src/IconAddCommentRounded.tsx +++ b/src/IconAddCommentRounded.tsx @@ -8,4 +8,4 @@ const IconAddCommentRounded: React.FC = ({ ...props }) => ( ) -export { IconAddCommentRounded as default } +export default IconAddCommentRounded diff --git a/src/IconAddCommentRoundedFilled.tsx b/src/IconAddCommentRoundedFilled.tsx index a451d5e99..b7d07a482 100644 --- a/src/IconAddCommentRoundedFilled.tsx +++ b/src/IconAddCommentRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconAddCommentRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconAddCommentRoundedFilled as default } +export default IconAddCommentRoundedFilled diff --git a/src/IconAddCommentSharp.tsx b/src/IconAddCommentSharp.tsx index 732b45b94..030c96298 100644 --- a/src/IconAddCommentSharp.tsx +++ b/src/IconAddCommentSharp.tsx @@ -8,4 +8,4 @@ const IconAddCommentSharp: React.FC = ({ ...props }) => ( ) -export { IconAddCommentSharp as default } +export default IconAddCommentSharp diff --git a/src/IconAddCommentSharpFilled.tsx b/src/IconAddCommentSharpFilled.tsx index d1d82a85a..5f3849c4e 100644 --- a/src/IconAddCommentSharpFilled.tsx +++ b/src/IconAddCommentSharpFilled.tsx @@ -8,4 +8,4 @@ const IconAddCommentSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconAddCommentSharpFilled as default } +export default IconAddCommentSharpFilled diff --git a/src/IconAddDiamondOutlined.tsx b/src/IconAddDiamondOutlined.tsx index 2c4d39bf4..1fd2e627e 100644 --- a/src/IconAddDiamondOutlined.tsx +++ b/src/IconAddDiamondOutlined.tsx @@ -8,4 +8,4 @@ const IconAddDiamondOutlined: React.FC = ({ ...props }) => ( ) -export { IconAddDiamondOutlined as default } +export default IconAddDiamondOutlined diff --git a/src/IconAddDiamondOutlinedFilled.tsx b/src/IconAddDiamondOutlinedFilled.tsx index df3535e6b..e1bf4a61a 100644 --- a/src/IconAddDiamondOutlinedFilled.tsx +++ b/src/IconAddDiamondOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconAddDiamondOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconAddDiamondOutlinedFilled as default } +export default IconAddDiamondOutlinedFilled diff --git a/src/IconAddDiamondRounded.tsx b/src/IconAddDiamondRounded.tsx index a82eaab00..b4af89876 100644 --- a/src/IconAddDiamondRounded.tsx +++ b/src/IconAddDiamondRounded.tsx @@ -8,4 +8,4 @@ const IconAddDiamondRounded: React.FC = ({ ...props }) => ( ) -export { IconAddDiamondRounded as default } +export default IconAddDiamondRounded diff --git a/src/IconAddDiamondRoundedFilled.tsx b/src/IconAddDiamondRoundedFilled.tsx index 137bc1100..4c375bd68 100644 --- a/src/IconAddDiamondRoundedFilled.tsx +++ b/src/IconAddDiamondRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconAddDiamondRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconAddDiamondRoundedFilled as default } +export default IconAddDiamondRoundedFilled diff --git a/src/IconAddDiamondSharp.tsx b/src/IconAddDiamondSharp.tsx index 4f1c65cb7..592e1c318 100644 --- a/src/IconAddDiamondSharp.tsx +++ b/src/IconAddDiamondSharp.tsx @@ -8,4 +8,4 @@ const IconAddDiamondSharp: React.FC = ({ ...props }) => ( ) -export { IconAddDiamondSharp as default } +export default IconAddDiamondSharp diff --git a/src/IconAddDiamondSharpFilled.tsx b/src/IconAddDiamondSharpFilled.tsx index 12395f9d6..9c614dc45 100644 --- a/src/IconAddDiamondSharpFilled.tsx +++ b/src/IconAddDiamondSharpFilled.tsx @@ -8,4 +8,4 @@ const IconAddDiamondSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconAddDiamondSharpFilled as default } +export default IconAddDiamondSharpFilled diff --git a/src/IconAddHomeOutlined.tsx b/src/IconAddHomeOutlined.tsx index eb67c112b..36812bcf9 100644 --- a/src/IconAddHomeOutlined.tsx +++ b/src/IconAddHomeOutlined.tsx @@ -8,4 +8,4 @@ const IconAddHomeOutlined: React.FC = ({ ...props }) => ( ) -export { IconAddHomeOutlined as default } +export default IconAddHomeOutlined diff --git a/src/IconAddHomeOutlinedFilled.tsx b/src/IconAddHomeOutlinedFilled.tsx index cea162308..77bf47be2 100644 --- a/src/IconAddHomeOutlinedFilled.tsx +++ b/src/IconAddHomeOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconAddHomeOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconAddHomeOutlinedFilled as default } +export default IconAddHomeOutlinedFilled diff --git a/src/IconAddHomeRounded.tsx b/src/IconAddHomeRounded.tsx index 0aa57b8d4..5d20de5c6 100644 --- a/src/IconAddHomeRounded.tsx +++ b/src/IconAddHomeRounded.tsx @@ -8,4 +8,4 @@ const IconAddHomeRounded: React.FC = ({ ...props }) => ( ) -export { IconAddHomeRounded as default } +export default IconAddHomeRounded diff --git a/src/IconAddHomeRoundedFilled.tsx b/src/IconAddHomeRoundedFilled.tsx index 34ef7c13c..36439e09c 100644 --- a/src/IconAddHomeRoundedFilled.tsx +++ b/src/IconAddHomeRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconAddHomeRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconAddHomeRoundedFilled as default } +export default IconAddHomeRoundedFilled diff --git a/src/IconAddHomeSharp.tsx b/src/IconAddHomeSharp.tsx index 9929d8c16..4e1052235 100644 --- a/src/IconAddHomeSharp.tsx +++ b/src/IconAddHomeSharp.tsx @@ -8,4 +8,4 @@ const IconAddHomeSharp: React.FC = ({ ...props }) => ( ) -export { IconAddHomeSharp as default } +export default IconAddHomeSharp diff --git a/src/IconAddHomeSharpFilled.tsx b/src/IconAddHomeSharpFilled.tsx index 66a80db66..69c83582b 100644 --- a/src/IconAddHomeSharpFilled.tsx +++ b/src/IconAddHomeSharpFilled.tsx @@ -8,4 +8,4 @@ const IconAddHomeSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconAddHomeSharpFilled as default } +export default IconAddHomeSharpFilled diff --git a/src/IconAddHomeWorkOutlined.tsx b/src/IconAddHomeWorkOutlined.tsx index 11920fbcf..f1a406f85 100644 --- a/src/IconAddHomeWorkOutlined.tsx +++ b/src/IconAddHomeWorkOutlined.tsx @@ -8,4 +8,4 @@ const IconAddHomeWorkOutlined: React.FC = ({ ...props }) => ( ) -export { IconAddHomeWorkOutlined as default } +export default IconAddHomeWorkOutlined diff --git a/src/IconAddHomeWorkOutlinedFilled.tsx b/src/IconAddHomeWorkOutlinedFilled.tsx index 21d619a02..fd9ea76b9 100644 --- a/src/IconAddHomeWorkOutlinedFilled.tsx +++ b/src/IconAddHomeWorkOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconAddHomeWorkOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconAddHomeWorkOutlinedFilled as default } +export default IconAddHomeWorkOutlinedFilled diff --git a/src/IconAddHomeWorkRounded.tsx b/src/IconAddHomeWorkRounded.tsx index fb88956cf..6cd033106 100644 --- a/src/IconAddHomeWorkRounded.tsx +++ b/src/IconAddHomeWorkRounded.tsx @@ -8,4 +8,4 @@ const IconAddHomeWorkRounded: React.FC = ({ ...props }) => ( ) -export { IconAddHomeWorkRounded as default } +export default IconAddHomeWorkRounded diff --git a/src/IconAddHomeWorkRoundedFilled.tsx b/src/IconAddHomeWorkRoundedFilled.tsx index b48e25c87..f2c67a14a 100644 --- a/src/IconAddHomeWorkRoundedFilled.tsx +++ b/src/IconAddHomeWorkRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconAddHomeWorkRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconAddHomeWorkRoundedFilled as default } +export default IconAddHomeWorkRoundedFilled diff --git a/src/IconAddHomeWorkSharp.tsx b/src/IconAddHomeWorkSharp.tsx index 3f5da3694..767329ca1 100644 --- a/src/IconAddHomeWorkSharp.tsx +++ b/src/IconAddHomeWorkSharp.tsx @@ -8,4 +8,4 @@ const IconAddHomeWorkSharp: React.FC = ({ ...props }) => ( ) -export { IconAddHomeWorkSharp as default } +export default IconAddHomeWorkSharp diff --git a/src/IconAddHomeWorkSharpFilled.tsx b/src/IconAddHomeWorkSharpFilled.tsx index 3fd57ee29..1be2a8a29 100644 --- a/src/IconAddHomeWorkSharpFilled.tsx +++ b/src/IconAddHomeWorkSharpFilled.tsx @@ -8,4 +8,4 @@ const IconAddHomeWorkSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconAddHomeWorkSharpFilled as default } +export default IconAddHomeWorkSharpFilled diff --git a/src/IconAddLinkOutlined.tsx b/src/IconAddLinkOutlined.tsx index d8c5a9675..1f49c9abd 100644 --- a/src/IconAddLinkOutlined.tsx +++ b/src/IconAddLinkOutlined.tsx @@ -8,4 +8,4 @@ const IconAddLinkOutlined: React.FC = ({ ...props }) => ( ) -export { IconAddLinkOutlined as default } +export default IconAddLinkOutlined diff --git a/src/IconAddLinkOutlinedFilled.tsx b/src/IconAddLinkOutlinedFilled.tsx index 89f53c65c..18fd37195 100644 --- a/src/IconAddLinkOutlinedFilled.tsx +++ b/src/IconAddLinkOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconAddLinkOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconAddLinkOutlinedFilled as default } +export default IconAddLinkOutlinedFilled diff --git a/src/IconAddLinkRounded.tsx b/src/IconAddLinkRounded.tsx index 0e6686da9..0469472cc 100644 --- a/src/IconAddLinkRounded.tsx +++ b/src/IconAddLinkRounded.tsx @@ -8,4 +8,4 @@ const IconAddLinkRounded: React.FC = ({ ...props }) => ( ) -export { IconAddLinkRounded as default } +export default IconAddLinkRounded diff --git a/src/IconAddLinkRoundedFilled.tsx b/src/IconAddLinkRoundedFilled.tsx index c8a9b65ed..fc01baf4b 100644 --- a/src/IconAddLinkRoundedFilled.tsx +++ b/src/IconAddLinkRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconAddLinkRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconAddLinkRoundedFilled as default } +export default IconAddLinkRoundedFilled diff --git a/src/IconAddLinkSharp.tsx b/src/IconAddLinkSharp.tsx index e01759397..232aec824 100644 --- a/src/IconAddLinkSharp.tsx +++ b/src/IconAddLinkSharp.tsx @@ -8,4 +8,4 @@ const IconAddLinkSharp: React.FC = ({ ...props }) => ( ) -export { IconAddLinkSharp as default } +export default IconAddLinkSharp diff --git a/src/IconAddLinkSharpFilled.tsx b/src/IconAddLinkSharpFilled.tsx index 0db8f64bd..95b5d0c62 100644 --- a/src/IconAddLinkSharpFilled.tsx +++ b/src/IconAddLinkSharpFilled.tsx @@ -8,4 +8,4 @@ const IconAddLinkSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconAddLinkSharpFilled as default } +export default IconAddLinkSharpFilled diff --git a/src/IconAddLocationAltOutlined.tsx b/src/IconAddLocationAltOutlined.tsx index eb8a98117..d0c8db58b 100644 --- a/src/IconAddLocationAltOutlined.tsx +++ b/src/IconAddLocationAltOutlined.tsx @@ -8,4 +8,4 @@ const IconAddLocationAltOutlined: React.FC = ({ ...props }) => ( ) -export { IconAddLocationAltOutlined as default } +export default IconAddLocationAltOutlined diff --git a/src/IconAddLocationAltOutlinedFilled.tsx b/src/IconAddLocationAltOutlinedFilled.tsx index 4f68d40d9..916efb8dc 100644 --- a/src/IconAddLocationAltOutlinedFilled.tsx +++ b/src/IconAddLocationAltOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconAddLocationAltOutlinedFilled: React.FC = ({ ) -export { IconAddLocationAltOutlinedFilled as default } +export default IconAddLocationAltOutlinedFilled diff --git a/src/IconAddLocationAltRounded.tsx b/src/IconAddLocationAltRounded.tsx index c670dbc73..183b535a4 100644 --- a/src/IconAddLocationAltRounded.tsx +++ b/src/IconAddLocationAltRounded.tsx @@ -8,4 +8,4 @@ const IconAddLocationAltRounded: React.FC = ({ ...props }) => ( ) -export { IconAddLocationAltRounded as default } +export default IconAddLocationAltRounded diff --git a/src/IconAddLocationAltRoundedFilled.tsx b/src/IconAddLocationAltRoundedFilled.tsx index 19ec023b4..2b721bfa0 100644 --- a/src/IconAddLocationAltRoundedFilled.tsx +++ b/src/IconAddLocationAltRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconAddLocationAltRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconAddLocationAltRoundedFilled as default } +export default IconAddLocationAltRoundedFilled diff --git a/src/IconAddLocationAltSharp.tsx b/src/IconAddLocationAltSharp.tsx index e6a91123c..3f0adf160 100644 --- a/src/IconAddLocationAltSharp.tsx +++ b/src/IconAddLocationAltSharp.tsx @@ -8,4 +8,4 @@ const IconAddLocationAltSharp: React.FC = ({ ...props }) => ( ) -export { IconAddLocationAltSharp as default } +export default IconAddLocationAltSharp diff --git a/src/IconAddLocationAltSharpFilled.tsx b/src/IconAddLocationAltSharpFilled.tsx index 681cbec80..3076e0a5b 100644 --- a/src/IconAddLocationAltSharpFilled.tsx +++ b/src/IconAddLocationAltSharpFilled.tsx @@ -8,4 +8,4 @@ const IconAddLocationAltSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconAddLocationAltSharpFilled as default } +export default IconAddLocationAltSharpFilled diff --git a/src/IconAddLocationOutlined.tsx b/src/IconAddLocationOutlined.tsx index 8c106abfd..72472ea61 100644 --- a/src/IconAddLocationOutlined.tsx +++ b/src/IconAddLocationOutlined.tsx @@ -8,4 +8,4 @@ const IconAddLocationOutlined: React.FC = ({ ...props }) => ( ) -export { IconAddLocationOutlined as default } +export default IconAddLocationOutlined diff --git a/src/IconAddLocationOutlinedFilled.tsx b/src/IconAddLocationOutlinedFilled.tsx index 30597b187..5d9db68c0 100644 --- a/src/IconAddLocationOutlinedFilled.tsx +++ b/src/IconAddLocationOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconAddLocationOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconAddLocationOutlinedFilled as default } +export default IconAddLocationOutlinedFilled diff --git a/src/IconAddLocationRounded.tsx b/src/IconAddLocationRounded.tsx index c67caebc3..63b680f21 100644 --- a/src/IconAddLocationRounded.tsx +++ b/src/IconAddLocationRounded.tsx @@ -8,4 +8,4 @@ const IconAddLocationRounded: React.FC = ({ ...props }) => ( ) -export { IconAddLocationRounded as default } +export default IconAddLocationRounded diff --git a/src/IconAddLocationRoundedFilled.tsx b/src/IconAddLocationRoundedFilled.tsx index a799247fc..92db9d687 100644 --- a/src/IconAddLocationRoundedFilled.tsx +++ b/src/IconAddLocationRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconAddLocationRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconAddLocationRoundedFilled as default } +export default IconAddLocationRoundedFilled diff --git a/src/IconAddLocationSharp.tsx b/src/IconAddLocationSharp.tsx index a4ded096b..3383cece0 100644 --- a/src/IconAddLocationSharp.tsx +++ b/src/IconAddLocationSharp.tsx @@ -8,4 +8,4 @@ const IconAddLocationSharp: React.FC = ({ ...props }) => ( ) -export { IconAddLocationSharp as default } +export default IconAddLocationSharp diff --git a/src/IconAddLocationSharpFilled.tsx b/src/IconAddLocationSharpFilled.tsx index d1ab4d828..e4cd05abd 100644 --- a/src/IconAddLocationSharpFilled.tsx +++ b/src/IconAddLocationSharpFilled.tsx @@ -8,4 +8,4 @@ const IconAddLocationSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconAddLocationSharpFilled as default } +export default IconAddLocationSharpFilled diff --git a/src/IconAddModeratorOutlined.tsx b/src/IconAddModeratorOutlined.tsx index 66ef5af44..05a3d8089 100644 --- a/src/IconAddModeratorOutlined.tsx +++ b/src/IconAddModeratorOutlined.tsx @@ -8,4 +8,4 @@ const IconAddModeratorOutlined: React.FC = ({ ...props }) => ( ) -export { IconAddModeratorOutlined as default } +export default IconAddModeratorOutlined diff --git a/src/IconAddModeratorOutlinedFilled.tsx b/src/IconAddModeratorOutlinedFilled.tsx index d1a2531fd..b889dab43 100644 --- a/src/IconAddModeratorOutlinedFilled.tsx +++ b/src/IconAddModeratorOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconAddModeratorOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconAddModeratorOutlinedFilled as default } +export default IconAddModeratorOutlinedFilled diff --git a/src/IconAddModeratorRounded.tsx b/src/IconAddModeratorRounded.tsx index c5ea31142..0bef7ccf3 100644 --- a/src/IconAddModeratorRounded.tsx +++ b/src/IconAddModeratorRounded.tsx @@ -8,4 +8,4 @@ const IconAddModeratorRounded: React.FC = ({ ...props }) => ( ) -export { IconAddModeratorRounded as default } +export default IconAddModeratorRounded diff --git a/src/IconAddModeratorRoundedFilled.tsx b/src/IconAddModeratorRoundedFilled.tsx index 5d98419eb..dd9b0bcfc 100644 --- a/src/IconAddModeratorRoundedFilled.tsx +++ b/src/IconAddModeratorRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconAddModeratorRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconAddModeratorRoundedFilled as default } +export default IconAddModeratorRoundedFilled diff --git a/src/IconAddModeratorSharp.tsx b/src/IconAddModeratorSharp.tsx index 2da726416..0455152e3 100644 --- a/src/IconAddModeratorSharp.tsx +++ b/src/IconAddModeratorSharp.tsx @@ -8,4 +8,4 @@ const IconAddModeratorSharp: React.FC = ({ ...props }) => ( ) -export { IconAddModeratorSharp as default } +export default IconAddModeratorSharp diff --git a/src/IconAddModeratorSharpFilled.tsx b/src/IconAddModeratorSharpFilled.tsx index 7eeb4d400..116c97e42 100644 --- a/src/IconAddModeratorSharpFilled.tsx +++ b/src/IconAddModeratorSharpFilled.tsx @@ -8,4 +8,4 @@ const IconAddModeratorSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconAddModeratorSharpFilled as default } +export default IconAddModeratorSharpFilled diff --git a/src/IconAddNotesOutlined.tsx b/src/IconAddNotesOutlined.tsx index 64b26e7de..16defa165 100644 --- a/src/IconAddNotesOutlined.tsx +++ b/src/IconAddNotesOutlined.tsx @@ -8,4 +8,4 @@ const IconAddNotesOutlined: React.FC = ({ ...props }) => ( ) -export { IconAddNotesOutlined as default } +export default IconAddNotesOutlined diff --git a/src/IconAddNotesOutlinedFilled.tsx b/src/IconAddNotesOutlinedFilled.tsx index 9070751b1..42cff9b9a 100644 --- a/src/IconAddNotesOutlinedFilled.tsx +++ b/src/IconAddNotesOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconAddNotesOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconAddNotesOutlinedFilled as default } +export default IconAddNotesOutlinedFilled diff --git a/src/IconAddNotesRounded.tsx b/src/IconAddNotesRounded.tsx index 59d3c4190..c14aa1a3d 100644 --- a/src/IconAddNotesRounded.tsx +++ b/src/IconAddNotesRounded.tsx @@ -8,4 +8,4 @@ const IconAddNotesRounded: React.FC = ({ ...props }) => ( ) -export { IconAddNotesRounded as default } +export default IconAddNotesRounded diff --git a/src/IconAddNotesRoundedFilled.tsx b/src/IconAddNotesRoundedFilled.tsx index 720d2c0d1..2d8e6d191 100644 --- a/src/IconAddNotesRoundedFilled.tsx +++ b/src/IconAddNotesRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconAddNotesRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconAddNotesRoundedFilled as default } +export default IconAddNotesRoundedFilled diff --git a/src/IconAddNotesSharp.tsx b/src/IconAddNotesSharp.tsx index 9a3009a4a..d4e0e3b19 100644 --- a/src/IconAddNotesSharp.tsx +++ b/src/IconAddNotesSharp.tsx @@ -8,4 +8,4 @@ const IconAddNotesSharp: React.FC = ({ ...props }) => ( ) -export { IconAddNotesSharp as default } +export default IconAddNotesSharp diff --git a/src/IconAddNotesSharpFilled.tsx b/src/IconAddNotesSharpFilled.tsx index 2b228efcd..fe2b89b59 100644 --- a/src/IconAddNotesSharpFilled.tsx +++ b/src/IconAddNotesSharpFilled.tsx @@ -8,4 +8,4 @@ const IconAddNotesSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconAddNotesSharpFilled as default } +export default IconAddNotesSharpFilled diff --git a/src/IconAddOutlined.tsx b/src/IconAddOutlined.tsx index 65cb78bd2..056506434 100644 --- a/src/IconAddOutlined.tsx +++ b/src/IconAddOutlined.tsx @@ -8,4 +8,4 @@ const IconAddOutlined: React.FC = ({ ...props }) => ( ) -export { IconAddOutlined as default } +export default IconAddOutlined diff --git a/src/IconAddOutlinedFilled.tsx b/src/IconAddOutlinedFilled.tsx index 7e329e276..7bb1cfb59 100644 --- a/src/IconAddOutlinedFilled.tsx +++ b/src/IconAddOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconAddOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconAddOutlinedFilled as default } +export default IconAddOutlinedFilled diff --git a/src/IconAddPhotoAlternateOutlined.tsx b/src/IconAddPhotoAlternateOutlined.tsx index 17f64342b..00a117dd8 100644 --- a/src/IconAddPhotoAlternateOutlined.tsx +++ b/src/IconAddPhotoAlternateOutlined.tsx @@ -8,4 +8,4 @@ const IconAddPhotoAlternateOutlined: React.FC = ({ ...props }) => ( ) -export { IconAddPhotoAlternateOutlined as default } +export default IconAddPhotoAlternateOutlined diff --git a/src/IconAddPhotoAlternateOutlinedFilled.tsx b/src/IconAddPhotoAlternateOutlinedFilled.tsx index fce4071f7..d0a78a0e6 100644 --- a/src/IconAddPhotoAlternateOutlinedFilled.tsx +++ b/src/IconAddPhotoAlternateOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconAddPhotoAlternateOutlinedFilled: React.FC = ({ ) -export { IconAddPhotoAlternateOutlinedFilled as default } +export default IconAddPhotoAlternateOutlinedFilled diff --git a/src/IconAddPhotoAlternateRounded.tsx b/src/IconAddPhotoAlternateRounded.tsx index 25a0f752f..cc580f90c 100644 --- a/src/IconAddPhotoAlternateRounded.tsx +++ b/src/IconAddPhotoAlternateRounded.tsx @@ -8,4 +8,4 @@ const IconAddPhotoAlternateRounded: React.FC = ({ ...props }) => ( ) -export { IconAddPhotoAlternateRounded as default } +export default IconAddPhotoAlternateRounded diff --git a/src/IconAddPhotoAlternateRoundedFilled.tsx b/src/IconAddPhotoAlternateRoundedFilled.tsx index 93799dccc..3e8f5985d 100644 --- a/src/IconAddPhotoAlternateRoundedFilled.tsx +++ b/src/IconAddPhotoAlternateRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconAddPhotoAlternateRoundedFilled: React.FC = ({ ) -export { IconAddPhotoAlternateRoundedFilled as default } +export default IconAddPhotoAlternateRoundedFilled diff --git a/src/IconAddPhotoAlternateSharp.tsx b/src/IconAddPhotoAlternateSharp.tsx index 539d56d5f..55c31cade 100644 --- a/src/IconAddPhotoAlternateSharp.tsx +++ b/src/IconAddPhotoAlternateSharp.tsx @@ -8,4 +8,4 @@ const IconAddPhotoAlternateSharp: React.FC = ({ ...props }) => ( ) -export { IconAddPhotoAlternateSharp as default } +export default IconAddPhotoAlternateSharp diff --git a/src/IconAddPhotoAlternateSharpFilled.tsx b/src/IconAddPhotoAlternateSharpFilled.tsx index d93b8fb11..1a18a2b8b 100644 --- a/src/IconAddPhotoAlternateSharpFilled.tsx +++ b/src/IconAddPhotoAlternateSharpFilled.tsx @@ -10,4 +10,4 @@ const IconAddPhotoAlternateSharpFilled: React.FC = ({ ) -export { IconAddPhotoAlternateSharpFilled as default } +export default IconAddPhotoAlternateSharpFilled diff --git a/src/IconAddReactionOutlined.tsx b/src/IconAddReactionOutlined.tsx index f481271ef..51f99e827 100644 --- a/src/IconAddReactionOutlined.tsx +++ b/src/IconAddReactionOutlined.tsx @@ -8,4 +8,4 @@ const IconAddReactionOutlined: React.FC = ({ ...props }) => ( ) -export { IconAddReactionOutlined as default } +export default IconAddReactionOutlined diff --git a/src/IconAddReactionOutlinedFilled.tsx b/src/IconAddReactionOutlinedFilled.tsx index 7ee020916..26a3c5d9a 100644 --- a/src/IconAddReactionOutlinedFilled.tsx +++ b/src/IconAddReactionOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconAddReactionOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconAddReactionOutlinedFilled as default } +export default IconAddReactionOutlinedFilled diff --git a/src/IconAddReactionRounded.tsx b/src/IconAddReactionRounded.tsx index cce28d3d3..27c68d41c 100644 --- a/src/IconAddReactionRounded.tsx +++ b/src/IconAddReactionRounded.tsx @@ -8,4 +8,4 @@ const IconAddReactionRounded: React.FC = ({ ...props }) => ( ) -export { IconAddReactionRounded as default } +export default IconAddReactionRounded diff --git a/src/IconAddReactionRoundedFilled.tsx b/src/IconAddReactionRoundedFilled.tsx index 4f9090851..caa9da3f3 100644 --- a/src/IconAddReactionRoundedFilled.tsx +++ b/src/IconAddReactionRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconAddReactionRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconAddReactionRoundedFilled as default } +export default IconAddReactionRoundedFilled diff --git a/src/IconAddReactionSharp.tsx b/src/IconAddReactionSharp.tsx index 462fa00d1..03c064b6f 100644 --- a/src/IconAddReactionSharp.tsx +++ b/src/IconAddReactionSharp.tsx @@ -8,4 +8,4 @@ const IconAddReactionSharp: React.FC = ({ ...props }) => ( ) -export { IconAddReactionSharp as default } +export default IconAddReactionSharp diff --git a/src/IconAddReactionSharpFilled.tsx b/src/IconAddReactionSharpFilled.tsx index 91bce9a24..d8a2a33b8 100644 --- a/src/IconAddReactionSharpFilled.tsx +++ b/src/IconAddReactionSharpFilled.tsx @@ -8,4 +8,4 @@ const IconAddReactionSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconAddReactionSharpFilled as default } +export default IconAddReactionSharpFilled diff --git a/src/IconAddRoadOutlined.tsx b/src/IconAddRoadOutlined.tsx index d7ef8e757..fcb703109 100644 --- a/src/IconAddRoadOutlined.tsx +++ b/src/IconAddRoadOutlined.tsx @@ -8,4 +8,4 @@ const IconAddRoadOutlined: React.FC = ({ ...props }) => ( ) -export { IconAddRoadOutlined as default } +export default IconAddRoadOutlined diff --git a/src/IconAddRoadOutlinedFilled.tsx b/src/IconAddRoadOutlinedFilled.tsx index dcc123d53..26e017115 100644 --- a/src/IconAddRoadOutlinedFilled.tsx +++ b/src/IconAddRoadOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconAddRoadOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconAddRoadOutlinedFilled as default } +export default IconAddRoadOutlinedFilled diff --git a/src/IconAddRoadRounded.tsx b/src/IconAddRoadRounded.tsx index 90adcfd7b..a26ef8e99 100644 --- a/src/IconAddRoadRounded.tsx +++ b/src/IconAddRoadRounded.tsx @@ -8,4 +8,4 @@ const IconAddRoadRounded: React.FC = ({ ...props }) => ( ) -export { IconAddRoadRounded as default } +export default IconAddRoadRounded diff --git a/src/IconAddRoadRoundedFilled.tsx b/src/IconAddRoadRoundedFilled.tsx index 15a861dcb..57f9bd77f 100644 --- a/src/IconAddRoadRoundedFilled.tsx +++ b/src/IconAddRoadRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconAddRoadRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconAddRoadRoundedFilled as default } +export default IconAddRoadRoundedFilled diff --git a/src/IconAddRoadSharp.tsx b/src/IconAddRoadSharp.tsx index 33010dc0b..cb9e4d3b1 100644 --- a/src/IconAddRoadSharp.tsx +++ b/src/IconAddRoadSharp.tsx @@ -8,4 +8,4 @@ const IconAddRoadSharp: React.FC = ({ ...props }) => ( ) -export { IconAddRoadSharp as default } +export default IconAddRoadSharp diff --git a/src/IconAddRoadSharpFilled.tsx b/src/IconAddRoadSharpFilled.tsx index c9e2cc649..497f10313 100644 --- a/src/IconAddRoadSharpFilled.tsx +++ b/src/IconAddRoadSharpFilled.tsx @@ -8,4 +8,4 @@ const IconAddRoadSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconAddRoadSharpFilled as default } +export default IconAddRoadSharpFilled diff --git a/src/IconAddRounded.tsx b/src/IconAddRounded.tsx index e56691d86..8a8f3d446 100644 --- a/src/IconAddRounded.tsx +++ b/src/IconAddRounded.tsx @@ -8,4 +8,4 @@ const IconAddRounded: React.FC = ({ ...props }) => ( ) -export { IconAddRounded as default } +export default IconAddRounded diff --git a/src/IconAddRoundedFilled.tsx b/src/IconAddRoundedFilled.tsx index 7c1127dcc..bb4dc1021 100644 --- a/src/IconAddRoundedFilled.tsx +++ b/src/IconAddRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconAddRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconAddRoundedFilled as default } +export default IconAddRoundedFilled diff --git a/src/IconAddRowAboveOutlined.tsx b/src/IconAddRowAboveOutlined.tsx index 8e1a87489..3cb8ea293 100644 --- a/src/IconAddRowAboveOutlined.tsx +++ b/src/IconAddRowAboveOutlined.tsx @@ -8,4 +8,4 @@ const IconAddRowAboveOutlined: React.FC = ({ ...props }) => ( ) -export { IconAddRowAboveOutlined as default } +export default IconAddRowAboveOutlined diff --git a/src/IconAddRowAboveOutlinedFilled.tsx b/src/IconAddRowAboveOutlinedFilled.tsx index 1a8e96685..675ac8fca 100644 --- a/src/IconAddRowAboveOutlinedFilled.tsx +++ b/src/IconAddRowAboveOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconAddRowAboveOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconAddRowAboveOutlinedFilled as default } +export default IconAddRowAboveOutlinedFilled diff --git a/src/IconAddRowAboveRounded.tsx b/src/IconAddRowAboveRounded.tsx index 3db3dd64e..4f8ad5d8d 100644 --- a/src/IconAddRowAboveRounded.tsx +++ b/src/IconAddRowAboveRounded.tsx @@ -8,4 +8,4 @@ const IconAddRowAboveRounded: React.FC = ({ ...props }) => ( ) -export { IconAddRowAboveRounded as default } +export default IconAddRowAboveRounded diff --git a/src/IconAddRowAboveRoundedFilled.tsx b/src/IconAddRowAboveRoundedFilled.tsx index dae7c186f..b455c134a 100644 --- a/src/IconAddRowAboveRoundedFilled.tsx +++ b/src/IconAddRowAboveRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconAddRowAboveRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconAddRowAboveRoundedFilled as default } +export default IconAddRowAboveRoundedFilled diff --git a/src/IconAddRowAboveSharp.tsx b/src/IconAddRowAboveSharp.tsx index a235943be..30d53f36a 100644 --- a/src/IconAddRowAboveSharp.tsx +++ b/src/IconAddRowAboveSharp.tsx @@ -8,4 +8,4 @@ const IconAddRowAboveSharp: React.FC = ({ ...props }) => ( ) -export { IconAddRowAboveSharp as default } +export default IconAddRowAboveSharp diff --git a/src/IconAddRowAboveSharpFilled.tsx b/src/IconAddRowAboveSharpFilled.tsx index 11c52dbd7..0203f5d77 100644 --- a/src/IconAddRowAboveSharpFilled.tsx +++ b/src/IconAddRowAboveSharpFilled.tsx @@ -8,4 +8,4 @@ const IconAddRowAboveSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconAddRowAboveSharpFilled as default } +export default IconAddRowAboveSharpFilled diff --git a/src/IconAddRowBelowOutlined.tsx b/src/IconAddRowBelowOutlined.tsx index 16c465ffa..03a796dd8 100644 --- a/src/IconAddRowBelowOutlined.tsx +++ b/src/IconAddRowBelowOutlined.tsx @@ -8,4 +8,4 @@ const IconAddRowBelowOutlined: React.FC = ({ ...props }) => ( ) -export { IconAddRowBelowOutlined as default } +export default IconAddRowBelowOutlined diff --git a/src/IconAddRowBelowOutlinedFilled.tsx b/src/IconAddRowBelowOutlinedFilled.tsx index 2fce2c80a..0538a97e6 100644 --- a/src/IconAddRowBelowOutlinedFilled.tsx +++ b/src/IconAddRowBelowOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconAddRowBelowOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconAddRowBelowOutlinedFilled as default } +export default IconAddRowBelowOutlinedFilled diff --git a/src/IconAddRowBelowRounded.tsx b/src/IconAddRowBelowRounded.tsx index 8155eaa6a..e4be689ee 100644 --- a/src/IconAddRowBelowRounded.tsx +++ b/src/IconAddRowBelowRounded.tsx @@ -8,4 +8,4 @@ const IconAddRowBelowRounded: React.FC = ({ ...props }) => ( ) -export { IconAddRowBelowRounded as default } +export default IconAddRowBelowRounded diff --git a/src/IconAddRowBelowRoundedFilled.tsx b/src/IconAddRowBelowRoundedFilled.tsx index df8e43f10..bd3673761 100644 --- a/src/IconAddRowBelowRoundedFilled.tsx +++ b/src/IconAddRowBelowRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconAddRowBelowRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconAddRowBelowRoundedFilled as default } +export default IconAddRowBelowRoundedFilled diff --git a/src/IconAddRowBelowSharp.tsx b/src/IconAddRowBelowSharp.tsx index 800ddb7b9..5eb08ba28 100644 --- a/src/IconAddRowBelowSharp.tsx +++ b/src/IconAddRowBelowSharp.tsx @@ -8,4 +8,4 @@ const IconAddRowBelowSharp: React.FC = ({ ...props }) => ( ) -export { IconAddRowBelowSharp as default } +export default IconAddRowBelowSharp diff --git a/src/IconAddRowBelowSharpFilled.tsx b/src/IconAddRowBelowSharpFilled.tsx index a7ec22fde..459ea8f40 100644 --- a/src/IconAddRowBelowSharpFilled.tsx +++ b/src/IconAddRowBelowSharpFilled.tsx @@ -8,4 +8,4 @@ const IconAddRowBelowSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconAddRowBelowSharpFilled as default } +export default IconAddRowBelowSharpFilled diff --git a/src/IconAddSharp.tsx b/src/IconAddSharp.tsx index 53fc9a57c..48576f77e 100644 --- a/src/IconAddSharp.tsx +++ b/src/IconAddSharp.tsx @@ -8,4 +8,4 @@ const IconAddSharp: React.FC = ({ ...props }) => ( ) -export { IconAddSharp as default } +export default IconAddSharp diff --git a/src/IconAddSharpFilled.tsx b/src/IconAddSharpFilled.tsx index 35f3611ad..806117d54 100644 --- a/src/IconAddSharpFilled.tsx +++ b/src/IconAddSharpFilled.tsx @@ -8,4 +8,4 @@ const IconAddSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconAddSharpFilled as default } +export default IconAddSharpFilled diff --git a/src/IconAddShoppingCartOutlined.tsx b/src/IconAddShoppingCartOutlined.tsx index f7139b151..36ff5ce9e 100644 --- a/src/IconAddShoppingCartOutlined.tsx +++ b/src/IconAddShoppingCartOutlined.tsx @@ -8,4 +8,4 @@ const IconAddShoppingCartOutlined: React.FC = ({ ...props }) => ( ) -export { IconAddShoppingCartOutlined as default } +export default IconAddShoppingCartOutlined diff --git a/src/IconAddShoppingCartOutlinedFilled.tsx b/src/IconAddShoppingCartOutlinedFilled.tsx index 39bd0189b..6f86d9ee8 100644 --- a/src/IconAddShoppingCartOutlinedFilled.tsx +++ b/src/IconAddShoppingCartOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconAddShoppingCartOutlinedFilled: React.FC = ({ ) -export { IconAddShoppingCartOutlinedFilled as default } +export default IconAddShoppingCartOutlinedFilled diff --git a/src/IconAddShoppingCartRounded.tsx b/src/IconAddShoppingCartRounded.tsx index 08976e53e..40dc4216d 100644 --- a/src/IconAddShoppingCartRounded.tsx +++ b/src/IconAddShoppingCartRounded.tsx @@ -8,4 +8,4 @@ const IconAddShoppingCartRounded: React.FC = ({ ...props }) => ( ) -export { IconAddShoppingCartRounded as default } +export default IconAddShoppingCartRounded diff --git a/src/IconAddShoppingCartRoundedFilled.tsx b/src/IconAddShoppingCartRoundedFilled.tsx index 57cf7f1e5..03fb3cb98 100644 --- a/src/IconAddShoppingCartRoundedFilled.tsx +++ b/src/IconAddShoppingCartRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconAddShoppingCartRoundedFilled: React.FC = ({ ) -export { IconAddShoppingCartRoundedFilled as default } +export default IconAddShoppingCartRoundedFilled diff --git a/src/IconAddShoppingCartSharp.tsx b/src/IconAddShoppingCartSharp.tsx index 5dca2d8f6..f73537285 100644 --- a/src/IconAddShoppingCartSharp.tsx +++ b/src/IconAddShoppingCartSharp.tsx @@ -8,4 +8,4 @@ const IconAddShoppingCartSharp: React.FC = ({ ...props }) => ( ) -export { IconAddShoppingCartSharp as default } +export default IconAddShoppingCartSharp diff --git a/src/IconAddShoppingCartSharpFilled.tsx b/src/IconAddShoppingCartSharpFilled.tsx index da8cd9b7c..6fdbddd7d 100644 --- a/src/IconAddShoppingCartSharpFilled.tsx +++ b/src/IconAddShoppingCartSharpFilled.tsx @@ -8,4 +8,4 @@ const IconAddShoppingCartSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconAddShoppingCartSharpFilled as default } +export default IconAddShoppingCartSharpFilled diff --git a/src/IconAddTaskOutlined.tsx b/src/IconAddTaskOutlined.tsx index 6b4381645..e6e632321 100644 --- a/src/IconAddTaskOutlined.tsx +++ b/src/IconAddTaskOutlined.tsx @@ -8,4 +8,4 @@ const IconAddTaskOutlined: React.FC = ({ ...props }) => ( ) -export { IconAddTaskOutlined as default } +export default IconAddTaskOutlined diff --git a/src/IconAddTaskOutlinedFilled.tsx b/src/IconAddTaskOutlinedFilled.tsx index 71c79af08..205a008ae 100644 --- a/src/IconAddTaskOutlinedFilled.tsx +++ b/src/IconAddTaskOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconAddTaskOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconAddTaskOutlinedFilled as default } +export default IconAddTaskOutlinedFilled diff --git a/src/IconAddTaskRounded.tsx b/src/IconAddTaskRounded.tsx index 01c7b6906..39683ff99 100644 --- a/src/IconAddTaskRounded.tsx +++ b/src/IconAddTaskRounded.tsx @@ -8,4 +8,4 @@ const IconAddTaskRounded: React.FC = ({ ...props }) => ( ) -export { IconAddTaskRounded as default } +export default IconAddTaskRounded diff --git a/src/IconAddTaskRoundedFilled.tsx b/src/IconAddTaskRoundedFilled.tsx index a923a6bea..2fdd8074f 100644 --- a/src/IconAddTaskRoundedFilled.tsx +++ b/src/IconAddTaskRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconAddTaskRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconAddTaskRoundedFilled as default } +export default IconAddTaskRoundedFilled diff --git a/src/IconAddTaskSharp.tsx b/src/IconAddTaskSharp.tsx index 2c42c36e8..fd4e883a6 100644 --- a/src/IconAddTaskSharp.tsx +++ b/src/IconAddTaskSharp.tsx @@ -8,4 +8,4 @@ const IconAddTaskSharp: React.FC = ({ ...props }) => ( ) -export { IconAddTaskSharp as default } +export default IconAddTaskSharp diff --git a/src/IconAddTaskSharpFilled.tsx b/src/IconAddTaskSharpFilled.tsx index 3060c1d16..947a85d5c 100644 --- a/src/IconAddTaskSharpFilled.tsx +++ b/src/IconAddTaskSharpFilled.tsx @@ -8,4 +8,4 @@ const IconAddTaskSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconAddTaskSharpFilled as default } +export default IconAddTaskSharpFilled diff --git a/src/IconAddToDriveOutlined.tsx b/src/IconAddToDriveOutlined.tsx index 6bc0e2324..a10d2dd41 100644 --- a/src/IconAddToDriveOutlined.tsx +++ b/src/IconAddToDriveOutlined.tsx @@ -8,4 +8,4 @@ const IconAddToDriveOutlined: React.FC = ({ ...props }) => ( ) -export { IconAddToDriveOutlined as default } +export default IconAddToDriveOutlined diff --git a/src/IconAddToDriveOutlinedFilled.tsx b/src/IconAddToDriveOutlinedFilled.tsx index 3e6897aea..4c754e97e 100644 --- a/src/IconAddToDriveOutlinedFilled.tsx +++ b/src/IconAddToDriveOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconAddToDriveOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconAddToDriveOutlinedFilled as default } +export default IconAddToDriveOutlinedFilled diff --git a/src/IconAddToDriveRounded.tsx b/src/IconAddToDriveRounded.tsx index a7ff36595..01c145b69 100644 --- a/src/IconAddToDriveRounded.tsx +++ b/src/IconAddToDriveRounded.tsx @@ -8,4 +8,4 @@ const IconAddToDriveRounded: React.FC = ({ ...props }) => ( ) -export { IconAddToDriveRounded as default } +export default IconAddToDriveRounded diff --git a/src/IconAddToDriveRoundedFilled.tsx b/src/IconAddToDriveRoundedFilled.tsx index efee288e9..4d40ca22f 100644 --- a/src/IconAddToDriveRoundedFilled.tsx +++ b/src/IconAddToDriveRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconAddToDriveRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconAddToDriveRoundedFilled as default } +export default IconAddToDriveRoundedFilled diff --git a/src/IconAddToDriveSharp.tsx b/src/IconAddToDriveSharp.tsx index 2d20defd5..05dde142e 100644 --- a/src/IconAddToDriveSharp.tsx +++ b/src/IconAddToDriveSharp.tsx @@ -8,4 +8,4 @@ const IconAddToDriveSharp: React.FC = ({ ...props }) => ( ) -export { IconAddToDriveSharp as default } +export default IconAddToDriveSharp diff --git a/src/IconAddToDriveSharpFilled.tsx b/src/IconAddToDriveSharpFilled.tsx index 44d813e17..07323ba3c 100644 --- a/src/IconAddToDriveSharpFilled.tsx +++ b/src/IconAddToDriveSharpFilled.tsx @@ -8,4 +8,4 @@ const IconAddToDriveSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconAddToDriveSharpFilled as default } +export default IconAddToDriveSharpFilled diff --git a/src/IconAddToHomeScreenOutlined.tsx b/src/IconAddToHomeScreenOutlined.tsx index 1c0f36f3c..5af7adff9 100644 --- a/src/IconAddToHomeScreenOutlined.tsx +++ b/src/IconAddToHomeScreenOutlined.tsx @@ -8,4 +8,4 @@ const IconAddToHomeScreenOutlined: React.FC = ({ ...props }) => ( ) -export { IconAddToHomeScreenOutlined as default } +export default IconAddToHomeScreenOutlined diff --git a/src/IconAddToHomeScreenOutlinedFilled.tsx b/src/IconAddToHomeScreenOutlinedFilled.tsx index 5db1b13e0..a30121387 100644 --- a/src/IconAddToHomeScreenOutlinedFilled.tsx +++ b/src/IconAddToHomeScreenOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconAddToHomeScreenOutlinedFilled: React.FC = ({ ) -export { IconAddToHomeScreenOutlinedFilled as default } +export default IconAddToHomeScreenOutlinedFilled diff --git a/src/IconAddToHomeScreenRounded.tsx b/src/IconAddToHomeScreenRounded.tsx index b289ad614..c2c58ea0b 100644 --- a/src/IconAddToHomeScreenRounded.tsx +++ b/src/IconAddToHomeScreenRounded.tsx @@ -8,4 +8,4 @@ const IconAddToHomeScreenRounded: React.FC = ({ ...props }) => ( ) -export { IconAddToHomeScreenRounded as default } +export default IconAddToHomeScreenRounded diff --git a/src/IconAddToHomeScreenRoundedFilled.tsx b/src/IconAddToHomeScreenRoundedFilled.tsx index 3a59d8d21..9ee0988e2 100644 --- a/src/IconAddToHomeScreenRoundedFilled.tsx +++ b/src/IconAddToHomeScreenRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconAddToHomeScreenRoundedFilled: React.FC = ({ ) -export { IconAddToHomeScreenRoundedFilled as default } +export default IconAddToHomeScreenRoundedFilled diff --git a/src/IconAddToHomeScreenSharp.tsx b/src/IconAddToHomeScreenSharp.tsx index c8c7f5166..0cf8701b1 100644 --- a/src/IconAddToHomeScreenSharp.tsx +++ b/src/IconAddToHomeScreenSharp.tsx @@ -8,4 +8,4 @@ const IconAddToHomeScreenSharp: React.FC = ({ ...props }) => ( ) -export { IconAddToHomeScreenSharp as default } +export default IconAddToHomeScreenSharp diff --git a/src/IconAddToHomeScreenSharpFilled.tsx b/src/IconAddToHomeScreenSharpFilled.tsx index 1113b8bb2..c83c3289e 100644 --- a/src/IconAddToHomeScreenSharpFilled.tsx +++ b/src/IconAddToHomeScreenSharpFilled.tsx @@ -8,4 +8,4 @@ const IconAddToHomeScreenSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconAddToHomeScreenSharpFilled as default } +export default IconAddToHomeScreenSharpFilled diff --git a/src/IconAddToPhotosOutlined.tsx b/src/IconAddToPhotosOutlined.tsx index f0f4c7b3b..43fecaac3 100644 --- a/src/IconAddToPhotosOutlined.tsx +++ b/src/IconAddToPhotosOutlined.tsx @@ -8,4 +8,4 @@ const IconAddToPhotosOutlined: React.FC = ({ ...props }) => ( ) -export { IconAddToPhotosOutlined as default } +export default IconAddToPhotosOutlined diff --git a/src/IconAddToPhotosOutlinedFilled.tsx b/src/IconAddToPhotosOutlinedFilled.tsx index be588e767..1ceb64871 100644 --- a/src/IconAddToPhotosOutlinedFilled.tsx +++ b/src/IconAddToPhotosOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconAddToPhotosOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconAddToPhotosOutlinedFilled as default } +export default IconAddToPhotosOutlinedFilled diff --git a/src/IconAddToPhotosRounded.tsx b/src/IconAddToPhotosRounded.tsx index 4bec142eb..922a2fcd1 100644 --- a/src/IconAddToPhotosRounded.tsx +++ b/src/IconAddToPhotosRounded.tsx @@ -8,4 +8,4 @@ const IconAddToPhotosRounded: React.FC = ({ ...props }) => ( ) -export { IconAddToPhotosRounded as default } +export default IconAddToPhotosRounded diff --git a/src/IconAddToPhotosRoundedFilled.tsx b/src/IconAddToPhotosRoundedFilled.tsx index ec1f6e20f..6a2efa82c 100644 --- a/src/IconAddToPhotosRoundedFilled.tsx +++ b/src/IconAddToPhotosRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconAddToPhotosRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconAddToPhotosRoundedFilled as default } +export default IconAddToPhotosRoundedFilled diff --git a/src/IconAddToPhotosSharp.tsx b/src/IconAddToPhotosSharp.tsx index b564fbbc3..4d807098f 100644 --- a/src/IconAddToPhotosSharp.tsx +++ b/src/IconAddToPhotosSharp.tsx @@ -8,4 +8,4 @@ const IconAddToPhotosSharp: React.FC = ({ ...props }) => ( ) -export { IconAddToPhotosSharp as default } +export default IconAddToPhotosSharp diff --git a/src/IconAddToPhotosSharpFilled.tsx b/src/IconAddToPhotosSharpFilled.tsx index 8d9b1d25a..bc758d572 100644 --- a/src/IconAddToPhotosSharpFilled.tsx +++ b/src/IconAddToPhotosSharpFilled.tsx @@ -8,4 +8,4 @@ const IconAddToPhotosSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconAddToPhotosSharpFilled as default } +export default IconAddToPhotosSharpFilled diff --git a/src/IconAddToQueueOutlined.tsx b/src/IconAddToQueueOutlined.tsx index 49b6105ca..a4c16cdfe 100644 --- a/src/IconAddToQueueOutlined.tsx +++ b/src/IconAddToQueueOutlined.tsx @@ -8,4 +8,4 @@ const IconAddToQueueOutlined: React.FC = ({ ...props }) => ( ) -export { IconAddToQueueOutlined as default } +export default IconAddToQueueOutlined diff --git a/src/IconAddToQueueOutlinedFilled.tsx b/src/IconAddToQueueOutlinedFilled.tsx index 6d65254f7..e08450a05 100644 --- a/src/IconAddToQueueOutlinedFilled.tsx +++ b/src/IconAddToQueueOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconAddToQueueOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconAddToQueueOutlinedFilled as default } +export default IconAddToQueueOutlinedFilled diff --git a/src/IconAddToQueueRounded.tsx b/src/IconAddToQueueRounded.tsx index c42f51503..d58bc5fe7 100644 --- a/src/IconAddToQueueRounded.tsx +++ b/src/IconAddToQueueRounded.tsx @@ -8,4 +8,4 @@ const IconAddToQueueRounded: React.FC = ({ ...props }) => ( ) -export { IconAddToQueueRounded as default } +export default IconAddToQueueRounded diff --git a/src/IconAddToQueueRoundedFilled.tsx b/src/IconAddToQueueRoundedFilled.tsx index ae26054cd..2cde91fca 100644 --- a/src/IconAddToQueueRoundedFilled.tsx +++ b/src/IconAddToQueueRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconAddToQueueRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconAddToQueueRoundedFilled as default } +export default IconAddToQueueRoundedFilled diff --git a/src/IconAddToQueueSharp.tsx b/src/IconAddToQueueSharp.tsx index ee846afd6..b578dc7a7 100644 --- a/src/IconAddToQueueSharp.tsx +++ b/src/IconAddToQueueSharp.tsx @@ -8,4 +8,4 @@ const IconAddToQueueSharp: React.FC = ({ ...props }) => ( ) -export { IconAddToQueueSharp as default } +export default IconAddToQueueSharp diff --git a/src/IconAddToQueueSharpFilled.tsx b/src/IconAddToQueueSharpFilled.tsx index e400ec942..e64799ca8 100644 --- a/src/IconAddToQueueSharpFilled.tsx +++ b/src/IconAddToQueueSharpFilled.tsx @@ -8,4 +8,4 @@ const IconAddToQueueSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconAddToQueueSharpFilled as default } +export default IconAddToQueueSharpFilled diff --git a/src/IconAddTriangleOutlined.tsx b/src/IconAddTriangleOutlined.tsx index 181d89722..6bb80bdfe 100644 --- a/src/IconAddTriangleOutlined.tsx +++ b/src/IconAddTriangleOutlined.tsx @@ -8,4 +8,4 @@ const IconAddTriangleOutlined: React.FC = ({ ...props }) => ( ) -export { IconAddTriangleOutlined as default } +export default IconAddTriangleOutlined diff --git a/src/IconAddTriangleOutlinedFilled.tsx b/src/IconAddTriangleOutlinedFilled.tsx index 949112b8a..77ef33afa 100644 --- a/src/IconAddTriangleOutlinedFilled.tsx +++ b/src/IconAddTriangleOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconAddTriangleOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconAddTriangleOutlinedFilled as default } +export default IconAddTriangleOutlinedFilled diff --git a/src/IconAddTriangleRounded.tsx b/src/IconAddTriangleRounded.tsx index bc5a88c73..398be347c 100644 --- a/src/IconAddTriangleRounded.tsx +++ b/src/IconAddTriangleRounded.tsx @@ -8,4 +8,4 @@ const IconAddTriangleRounded: React.FC = ({ ...props }) => ( ) -export { IconAddTriangleRounded as default } +export default IconAddTriangleRounded diff --git a/src/IconAddTriangleRoundedFilled.tsx b/src/IconAddTriangleRoundedFilled.tsx index 0925a2d2c..50fa7465a 100644 --- a/src/IconAddTriangleRoundedFilled.tsx +++ b/src/IconAddTriangleRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconAddTriangleRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconAddTriangleRoundedFilled as default } +export default IconAddTriangleRoundedFilled diff --git a/src/IconAddTriangleSharp.tsx b/src/IconAddTriangleSharp.tsx index c52996fb0..1fad49953 100644 --- a/src/IconAddTriangleSharp.tsx +++ b/src/IconAddTriangleSharp.tsx @@ -8,4 +8,4 @@ const IconAddTriangleSharp: React.FC = ({ ...props }) => ( ) -export { IconAddTriangleSharp as default } +export default IconAddTriangleSharp diff --git a/src/IconAddTriangleSharpFilled.tsx b/src/IconAddTriangleSharpFilled.tsx index d1e36ba03..785c878eb 100644 --- a/src/IconAddTriangleSharpFilled.tsx +++ b/src/IconAddTriangleSharpFilled.tsx @@ -8,4 +8,4 @@ const IconAddTriangleSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconAddTriangleSharpFilled as default } +export default IconAddTriangleSharpFilled diff --git a/src/IconAdfScannerOutlined.tsx b/src/IconAdfScannerOutlined.tsx index 420426340..f8e36d000 100644 --- a/src/IconAdfScannerOutlined.tsx +++ b/src/IconAdfScannerOutlined.tsx @@ -8,4 +8,4 @@ const IconAdfScannerOutlined: React.FC = ({ ...props }) => ( ) -export { IconAdfScannerOutlined as default } +export default IconAdfScannerOutlined diff --git a/src/IconAdfScannerOutlinedFilled.tsx b/src/IconAdfScannerOutlinedFilled.tsx index 56fed09fc..bdacb2fb3 100644 --- a/src/IconAdfScannerOutlinedFilled.tsx +++ b/src/IconAdfScannerOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconAdfScannerOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconAdfScannerOutlinedFilled as default } +export default IconAdfScannerOutlinedFilled diff --git a/src/IconAdfScannerRounded.tsx b/src/IconAdfScannerRounded.tsx index 6ed7f8afd..6b8d1cc4f 100644 --- a/src/IconAdfScannerRounded.tsx +++ b/src/IconAdfScannerRounded.tsx @@ -8,4 +8,4 @@ const IconAdfScannerRounded: React.FC = ({ ...props }) => ( ) -export { IconAdfScannerRounded as default } +export default IconAdfScannerRounded diff --git a/src/IconAdfScannerRoundedFilled.tsx b/src/IconAdfScannerRoundedFilled.tsx index 3984a64e2..651d3daa1 100644 --- a/src/IconAdfScannerRoundedFilled.tsx +++ b/src/IconAdfScannerRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconAdfScannerRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconAdfScannerRoundedFilled as default } +export default IconAdfScannerRoundedFilled diff --git a/src/IconAdfScannerSharp.tsx b/src/IconAdfScannerSharp.tsx index 064ceb01d..f8696eb4c 100644 --- a/src/IconAdfScannerSharp.tsx +++ b/src/IconAdfScannerSharp.tsx @@ -8,4 +8,4 @@ const IconAdfScannerSharp: React.FC = ({ ...props }) => ( ) -export { IconAdfScannerSharp as default } +export default IconAdfScannerSharp diff --git a/src/IconAdfScannerSharpFilled.tsx b/src/IconAdfScannerSharpFilled.tsx index 94a47a49d..57d1ac02d 100644 --- a/src/IconAdfScannerSharpFilled.tsx +++ b/src/IconAdfScannerSharpFilled.tsx @@ -8,4 +8,4 @@ const IconAdfScannerSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconAdfScannerSharpFilled as default } +export default IconAdfScannerSharpFilled diff --git a/src/IconAdjustOutlined.tsx b/src/IconAdjustOutlined.tsx index 143d6fe67..b421b19f0 100644 --- a/src/IconAdjustOutlined.tsx +++ b/src/IconAdjustOutlined.tsx @@ -8,4 +8,4 @@ const IconAdjustOutlined: React.FC = ({ ...props }) => ( ) -export { IconAdjustOutlined as default } +export default IconAdjustOutlined diff --git a/src/IconAdjustOutlinedFilled.tsx b/src/IconAdjustOutlinedFilled.tsx index 0e44caf12..95df0529b 100644 --- a/src/IconAdjustOutlinedFilled.tsx +++ b/src/IconAdjustOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconAdjustOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconAdjustOutlinedFilled as default } +export default IconAdjustOutlinedFilled diff --git a/src/IconAdjustRounded.tsx b/src/IconAdjustRounded.tsx index 79971f01a..0cd82ec9b 100644 --- a/src/IconAdjustRounded.tsx +++ b/src/IconAdjustRounded.tsx @@ -8,4 +8,4 @@ const IconAdjustRounded: React.FC = ({ ...props }) => ( ) -export { IconAdjustRounded as default } +export default IconAdjustRounded diff --git a/src/IconAdjustRoundedFilled.tsx b/src/IconAdjustRoundedFilled.tsx index 3ee021ec8..634914777 100644 --- a/src/IconAdjustRoundedFilled.tsx +++ b/src/IconAdjustRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconAdjustRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconAdjustRoundedFilled as default } +export default IconAdjustRoundedFilled diff --git a/src/IconAdjustSharp.tsx b/src/IconAdjustSharp.tsx index 02b1c719b..29c07102f 100644 --- a/src/IconAdjustSharp.tsx +++ b/src/IconAdjustSharp.tsx @@ -8,4 +8,4 @@ const IconAdjustSharp: React.FC = ({ ...props }) => ( ) -export { IconAdjustSharp as default } +export default IconAdjustSharp diff --git a/src/IconAdjustSharpFilled.tsx b/src/IconAdjustSharpFilled.tsx index 54e0d86af..6ae1eb73c 100644 --- a/src/IconAdjustSharpFilled.tsx +++ b/src/IconAdjustSharpFilled.tsx @@ -8,4 +8,4 @@ const IconAdjustSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconAdjustSharpFilled as default } +export default IconAdjustSharpFilled diff --git a/src/IconAdminMedsOutlined.tsx b/src/IconAdminMedsOutlined.tsx index 8d16234b7..696815754 100644 --- a/src/IconAdminMedsOutlined.tsx +++ b/src/IconAdminMedsOutlined.tsx @@ -8,4 +8,4 @@ const IconAdminMedsOutlined: React.FC = ({ ...props }) => ( ) -export { IconAdminMedsOutlined as default } +export default IconAdminMedsOutlined diff --git a/src/IconAdminMedsOutlinedFilled.tsx b/src/IconAdminMedsOutlinedFilled.tsx index a1264a02b..87c5f058c 100644 --- a/src/IconAdminMedsOutlinedFilled.tsx +++ b/src/IconAdminMedsOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconAdminMedsOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconAdminMedsOutlinedFilled as default } +export default IconAdminMedsOutlinedFilled diff --git a/src/IconAdminMedsRounded.tsx b/src/IconAdminMedsRounded.tsx index 02770e2d1..db87db0df 100644 --- a/src/IconAdminMedsRounded.tsx +++ b/src/IconAdminMedsRounded.tsx @@ -8,4 +8,4 @@ const IconAdminMedsRounded: React.FC = ({ ...props }) => ( ) -export { IconAdminMedsRounded as default } +export default IconAdminMedsRounded diff --git a/src/IconAdminMedsRoundedFilled.tsx b/src/IconAdminMedsRoundedFilled.tsx index 33c0cb69e..fda16d89a 100644 --- a/src/IconAdminMedsRoundedFilled.tsx +++ b/src/IconAdminMedsRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconAdminMedsRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconAdminMedsRoundedFilled as default } +export default IconAdminMedsRoundedFilled diff --git a/src/IconAdminMedsSharp.tsx b/src/IconAdminMedsSharp.tsx index 3a19edaa4..ff9284048 100644 --- a/src/IconAdminMedsSharp.tsx +++ b/src/IconAdminMedsSharp.tsx @@ -8,4 +8,4 @@ const IconAdminMedsSharp: React.FC = ({ ...props }) => ( ) -export { IconAdminMedsSharp as default } +export default IconAdminMedsSharp diff --git a/src/IconAdminMedsSharpFilled.tsx b/src/IconAdminMedsSharpFilled.tsx index a64c8c125..7f61765be 100644 --- a/src/IconAdminMedsSharpFilled.tsx +++ b/src/IconAdminMedsSharpFilled.tsx @@ -8,4 +8,4 @@ const IconAdminMedsSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconAdminMedsSharpFilled as default } +export default IconAdminMedsSharpFilled diff --git a/src/IconAdminPanelSettingsOutlined.tsx b/src/IconAdminPanelSettingsOutlined.tsx index f95f2c0ab..6092bf5b6 100644 --- a/src/IconAdminPanelSettingsOutlined.tsx +++ b/src/IconAdminPanelSettingsOutlined.tsx @@ -8,4 +8,4 @@ const IconAdminPanelSettingsOutlined: React.FC = ({ ...props }) => ( ) -export { IconAdminPanelSettingsOutlined as default } +export default IconAdminPanelSettingsOutlined diff --git a/src/IconAdminPanelSettingsOutlinedFilled.tsx b/src/IconAdminPanelSettingsOutlinedFilled.tsx index e8be3557d..d73f86b38 100644 --- a/src/IconAdminPanelSettingsOutlinedFilled.tsx +++ b/src/IconAdminPanelSettingsOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconAdminPanelSettingsOutlinedFilled: React.FC = ({ ) -export { IconAdminPanelSettingsOutlinedFilled as default } +export default IconAdminPanelSettingsOutlinedFilled diff --git a/src/IconAdminPanelSettingsRounded.tsx b/src/IconAdminPanelSettingsRounded.tsx index 3ecc2d89f..506d959e5 100644 --- a/src/IconAdminPanelSettingsRounded.tsx +++ b/src/IconAdminPanelSettingsRounded.tsx @@ -8,4 +8,4 @@ const IconAdminPanelSettingsRounded: React.FC = ({ ...props }) => ( ) -export { IconAdminPanelSettingsRounded as default } +export default IconAdminPanelSettingsRounded diff --git a/src/IconAdminPanelSettingsRoundedFilled.tsx b/src/IconAdminPanelSettingsRoundedFilled.tsx index a84e39d52..fd64609dc 100644 --- a/src/IconAdminPanelSettingsRoundedFilled.tsx +++ b/src/IconAdminPanelSettingsRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconAdminPanelSettingsRoundedFilled: React.FC = ({ ) -export { IconAdminPanelSettingsRoundedFilled as default } +export default IconAdminPanelSettingsRoundedFilled diff --git a/src/IconAdminPanelSettingsSharp.tsx b/src/IconAdminPanelSettingsSharp.tsx index 50b432218..321b7473f 100644 --- a/src/IconAdminPanelSettingsSharp.tsx +++ b/src/IconAdminPanelSettingsSharp.tsx @@ -8,4 +8,4 @@ const IconAdminPanelSettingsSharp: React.FC = ({ ...props }) => ( ) -export { IconAdminPanelSettingsSharp as default } +export default IconAdminPanelSettingsSharp diff --git a/src/IconAdminPanelSettingsSharpFilled.tsx b/src/IconAdminPanelSettingsSharpFilled.tsx index db4e7726f..1f77ce064 100644 --- a/src/IconAdminPanelSettingsSharpFilled.tsx +++ b/src/IconAdminPanelSettingsSharpFilled.tsx @@ -10,4 +10,4 @@ const IconAdminPanelSettingsSharpFilled: React.FC = ({ ) -export { IconAdminPanelSettingsSharpFilled as default } +export default IconAdminPanelSettingsSharpFilled diff --git a/src/IconAdsClickOutlined.tsx b/src/IconAdsClickOutlined.tsx index c083fbf4f..bf9997043 100644 --- a/src/IconAdsClickOutlined.tsx +++ b/src/IconAdsClickOutlined.tsx @@ -8,4 +8,4 @@ const IconAdsClickOutlined: React.FC = ({ ...props }) => ( ) -export { IconAdsClickOutlined as default } +export default IconAdsClickOutlined diff --git a/src/IconAdsClickOutlinedFilled.tsx b/src/IconAdsClickOutlinedFilled.tsx index de157f0ac..7fc006c10 100644 --- a/src/IconAdsClickOutlinedFilled.tsx +++ b/src/IconAdsClickOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconAdsClickOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconAdsClickOutlinedFilled as default } +export default IconAdsClickOutlinedFilled diff --git a/src/IconAdsClickRounded.tsx b/src/IconAdsClickRounded.tsx index a25cd6085..e5e6f862d 100644 --- a/src/IconAdsClickRounded.tsx +++ b/src/IconAdsClickRounded.tsx @@ -8,4 +8,4 @@ const IconAdsClickRounded: React.FC = ({ ...props }) => ( ) -export { IconAdsClickRounded as default } +export default IconAdsClickRounded diff --git a/src/IconAdsClickRoundedFilled.tsx b/src/IconAdsClickRoundedFilled.tsx index 48fec4c95..2b84f7ac9 100644 --- a/src/IconAdsClickRoundedFilled.tsx +++ b/src/IconAdsClickRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconAdsClickRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconAdsClickRoundedFilled as default } +export default IconAdsClickRoundedFilled diff --git a/src/IconAdsClickSharp.tsx b/src/IconAdsClickSharp.tsx index 6be6174b6..fe7718bff 100644 --- a/src/IconAdsClickSharp.tsx +++ b/src/IconAdsClickSharp.tsx @@ -8,4 +8,4 @@ const IconAdsClickSharp: React.FC = ({ ...props }) => ( ) -export { IconAdsClickSharp as default } +export default IconAdsClickSharp diff --git a/src/IconAdsClickSharpFilled.tsx b/src/IconAdsClickSharpFilled.tsx index d48da33c3..69970c7c5 100644 --- a/src/IconAdsClickSharpFilled.tsx +++ b/src/IconAdsClickSharpFilled.tsx @@ -8,4 +8,4 @@ const IconAdsClickSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconAdsClickSharpFilled as default } +export default IconAdsClickSharpFilled diff --git a/src/IconAgenderOutlined.tsx b/src/IconAgenderOutlined.tsx index 32c816366..8d8447825 100644 --- a/src/IconAgenderOutlined.tsx +++ b/src/IconAgenderOutlined.tsx @@ -8,4 +8,4 @@ const IconAgenderOutlined: React.FC = ({ ...props }) => ( ) -export { IconAgenderOutlined as default } +export default IconAgenderOutlined diff --git a/src/IconAgenderOutlinedFilled.tsx b/src/IconAgenderOutlinedFilled.tsx index 91468ac8e..2927cb01e 100644 --- a/src/IconAgenderOutlinedFilled.tsx +++ b/src/IconAgenderOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconAgenderOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconAgenderOutlinedFilled as default } +export default IconAgenderOutlinedFilled diff --git a/src/IconAgenderRounded.tsx b/src/IconAgenderRounded.tsx index 5bbd8524f..efb023abe 100644 --- a/src/IconAgenderRounded.tsx +++ b/src/IconAgenderRounded.tsx @@ -8,4 +8,4 @@ const IconAgenderRounded: React.FC = ({ ...props }) => ( ) -export { IconAgenderRounded as default } +export default IconAgenderRounded diff --git a/src/IconAgenderRoundedFilled.tsx b/src/IconAgenderRoundedFilled.tsx index c78de6126..92f46e2d2 100644 --- a/src/IconAgenderRoundedFilled.tsx +++ b/src/IconAgenderRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconAgenderRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconAgenderRoundedFilled as default } +export default IconAgenderRoundedFilled diff --git a/src/IconAgenderSharp.tsx b/src/IconAgenderSharp.tsx index 6b2d9bb6f..ce2367ed5 100644 --- a/src/IconAgenderSharp.tsx +++ b/src/IconAgenderSharp.tsx @@ -8,4 +8,4 @@ const IconAgenderSharp: React.FC = ({ ...props }) => ( ) -export { IconAgenderSharp as default } +export default IconAgenderSharp diff --git a/src/IconAgenderSharpFilled.tsx b/src/IconAgenderSharpFilled.tsx index f4ddbbe9d..24c5f486f 100644 --- a/src/IconAgenderSharpFilled.tsx +++ b/src/IconAgenderSharpFilled.tsx @@ -8,4 +8,4 @@ const IconAgenderSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconAgenderSharpFilled as default } +export default IconAgenderSharpFilled diff --git a/src/IconAgricultureOutlined.tsx b/src/IconAgricultureOutlined.tsx index eebab4675..9ff8d6496 100644 --- a/src/IconAgricultureOutlined.tsx +++ b/src/IconAgricultureOutlined.tsx @@ -8,4 +8,4 @@ const IconAgricultureOutlined: React.FC = ({ ...props }) => ( ) -export { IconAgricultureOutlined as default } +export default IconAgricultureOutlined diff --git a/src/IconAgricultureOutlinedFilled.tsx b/src/IconAgricultureOutlinedFilled.tsx index e464678c7..a9e1ba777 100644 --- a/src/IconAgricultureOutlinedFilled.tsx +++ b/src/IconAgricultureOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconAgricultureOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconAgricultureOutlinedFilled as default } +export default IconAgricultureOutlinedFilled diff --git a/src/IconAgricultureRounded.tsx b/src/IconAgricultureRounded.tsx index 1bc70d8dc..180a8c69d 100644 --- a/src/IconAgricultureRounded.tsx +++ b/src/IconAgricultureRounded.tsx @@ -8,4 +8,4 @@ const IconAgricultureRounded: React.FC = ({ ...props }) => ( ) -export { IconAgricultureRounded as default } +export default IconAgricultureRounded diff --git a/src/IconAgricultureRoundedFilled.tsx b/src/IconAgricultureRoundedFilled.tsx index 7207f475f..d3ef60293 100644 --- a/src/IconAgricultureRoundedFilled.tsx +++ b/src/IconAgricultureRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconAgricultureRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconAgricultureRoundedFilled as default } +export default IconAgricultureRoundedFilled diff --git a/src/IconAgricultureSharp.tsx b/src/IconAgricultureSharp.tsx index e8d70c120..782de5b66 100644 --- a/src/IconAgricultureSharp.tsx +++ b/src/IconAgricultureSharp.tsx @@ -8,4 +8,4 @@ const IconAgricultureSharp: React.FC = ({ ...props }) => ( ) -export { IconAgricultureSharp as default } +export default IconAgricultureSharp diff --git a/src/IconAgricultureSharpFilled.tsx b/src/IconAgricultureSharpFilled.tsx index e9c7c686a..5596bd30c 100644 --- a/src/IconAgricultureSharpFilled.tsx +++ b/src/IconAgricultureSharpFilled.tsx @@ -8,4 +8,4 @@ const IconAgricultureSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconAgricultureSharpFilled as default } +export default IconAgricultureSharpFilled diff --git a/src/IconAirFreshenerOutlined.tsx b/src/IconAirFreshenerOutlined.tsx index e49be144f..a361b5d10 100644 --- a/src/IconAirFreshenerOutlined.tsx +++ b/src/IconAirFreshenerOutlined.tsx @@ -8,4 +8,4 @@ const IconAirFreshenerOutlined: React.FC = ({ ...props }) => ( ) -export { IconAirFreshenerOutlined as default } +export default IconAirFreshenerOutlined diff --git a/src/IconAirFreshenerOutlinedFilled.tsx b/src/IconAirFreshenerOutlinedFilled.tsx index b48d8910a..ab50c73ef 100644 --- a/src/IconAirFreshenerOutlinedFilled.tsx +++ b/src/IconAirFreshenerOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconAirFreshenerOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconAirFreshenerOutlinedFilled as default } +export default IconAirFreshenerOutlinedFilled diff --git a/src/IconAirFreshenerRounded.tsx b/src/IconAirFreshenerRounded.tsx index 20aa46a49..8d310091a 100644 --- a/src/IconAirFreshenerRounded.tsx +++ b/src/IconAirFreshenerRounded.tsx @@ -8,4 +8,4 @@ const IconAirFreshenerRounded: React.FC = ({ ...props }) => ( ) -export { IconAirFreshenerRounded as default } +export default IconAirFreshenerRounded diff --git a/src/IconAirFreshenerRoundedFilled.tsx b/src/IconAirFreshenerRoundedFilled.tsx index 7ab0990c5..b2bb15fd1 100644 --- a/src/IconAirFreshenerRoundedFilled.tsx +++ b/src/IconAirFreshenerRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconAirFreshenerRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconAirFreshenerRoundedFilled as default } +export default IconAirFreshenerRoundedFilled diff --git a/src/IconAirFreshenerSharp.tsx b/src/IconAirFreshenerSharp.tsx index 80360ad1e..e1f4dcbb3 100644 --- a/src/IconAirFreshenerSharp.tsx +++ b/src/IconAirFreshenerSharp.tsx @@ -8,4 +8,4 @@ const IconAirFreshenerSharp: React.FC = ({ ...props }) => ( ) -export { IconAirFreshenerSharp as default } +export default IconAirFreshenerSharp diff --git a/src/IconAirFreshenerSharpFilled.tsx b/src/IconAirFreshenerSharpFilled.tsx index 1d13b32ec..8b5263f27 100644 --- a/src/IconAirFreshenerSharpFilled.tsx +++ b/src/IconAirFreshenerSharpFilled.tsx @@ -8,4 +8,4 @@ const IconAirFreshenerSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconAirFreshenerSharpFilled as default } +export default IconAirFreshenerSharpFilled diff --git a/src/IconAirOutlined.tsx b/src/IconAirOutlined.tsx index 49dd62d63..18fc37b68 100644 --- a/src/IconAirOutlined.tsx +++ b/src/IconAirOutlined.tsx @@ -8,4 +8,4 @@ const IconAirOutlined: React.FC = ({ ...props }) => ( ) -export { IconAirOutlined as default } +export default IconAirOutlined diff --git a/src/IconAirOutlinedFilled.tsx b/src/IconAirOutlinedFilled.tsx index 3f2dd9af2..11dcc25b0 100644 --- a/src/IconAirOutlinedFilled.tsx +++ b/src/IconAirOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconAirOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconAirOutlinedFilled as default } +export default IconAirOutlinedFilled diff --git a/src/IconAirPurifierGenOutlined.tsx b/src/IconAirPurifierGenOutlined.tsx index a15646e75..ca876a359 100644 --- a/src/IconAirPurifierGenOutlined.tsx +++ b/src/IconAirPurifierGenOutlined.tsx @@ -8,4 +8,4 @@ const IconAirPurifierGenOutlined: React.FC = ({ ...props }) => ( ) -export { IconAirPurifierGenOutlined as default } +export default IconAirPurifierGenOutlined diff --git a/src/IconAirPurifierGenOutlinedFilled.tsx b/src/IconAirPurifierGenOutlinedFilled.tsx index d302cc5c2..aa74e2f68 100644 --- a/src/IconAirPurifierGenOutlinedFilled.tsx +++ b/src/IconAirPurifierGenOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconAirPurifierGenOutlinedFilled: React.FC = ({ ) -export { IconAirPurifierGenOutlinedFilled as default } +export default IconAirPurifierGenOutlinedFilled diff --git a/src/IconAirPurifierGenRounded.tsx b/src/IconAirPurifierGenRounded.tsx index b1b2f7f72..df087ed70 100644 --- a/src/IconAirPurifierGenRounded.tsx +++ b/src/IconAirPurifierGenRounded.tsx @@ -8,4 +8,4 @@ const IconAirPurifierGenRounded: React.FC = ({ ...props }) => ( ) -export { IconAirPurifierGenRounded as default } +export default IconAirPurifierGenRounded diff --git a/src/IconAirPurifierGenRoundedFilled.tsx b/src/IconAirPurifierGenRoundedFilled.tsx index 08c42312a..7260abbd3 100644 --- a/src/IconAirPurifierGenRoundedFilled.tsx +++ b/src/IconAirPurifierGenRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconAirPurifierGenRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconAirPurifierGenRoundedFilled as default } +export default IconAirPurifierGenRoundedFilled diff --git a/src/IconAirPurifierGenSharp.tsx b/src/IconAirPurifierGenSharp.tsx index 523374a2c..fbcea91f4 100644 --- a/src/IconAirPurifierGenSharp.tsx +++ b/src/IconAirPurifierGenSharp.tsx @@ -8,4 +8,4 @@ const IconAirPurifierGenSharp: React.FC = ({ ...props }) => ( ) -export { IconAirPurifierGenSharp as default } +export default IconAirPurifierGenSharp diff --git a/src/IconAirPurifierGenSharpFilled.tsx b/src/IconAirPurifierGenSharpFilled.tsx index 32674fc73..e2703638d 100644 --- a/src/IconAirPurifierGenSharpFilled.tsx +++ b/src/IconAirPurifierGenSharpFilled.tsx @@ -8,4 +8,4 @@ const IconAirPurifierGenSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconAirPurifierGenSharpFilled as default } +export default IconAirPurifierGenSharpFilled diff --git a/src/IconAirPurifierOutlined.tsx b/src/IconAirPurifierOutlined.tsx index 5358db1fb..86c597c48 100644 --- a/src/IconAirPurifierOutlined.tsx +++ b/src/IconAirPurifierOutlined.tsx @@ -8,4 +8,4 @@ const IconAirPurifierOutlined: React.FC = ({ ...props }) => ( ) -export { IconAirPurifierOutlined as default } +export default IconAirPurifierOutlined diff --git a/src/IconAirPurifierOutlinedFilled.tsx b/src/IconAirPurifierOutlinedFilled.tsx index 1c7fd6404..a8c669d7d 100644 --- a/src/IconAirPurifierOutlinedFilled.tsx +++ b/src/IconAirPurifierOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconAirPurifierOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconAirPurifierOutlinedFilled as default } +export default IconAirPurifierOutlinedFilled diff --git a/src/IconAirPurifierRounded.tsx b/src/IconAirPurifierRounded.tsx index 747778e39..592c4ccb4 100644 --- a/src/IconAirPurifierRounded.tsx +++ b/src/IconAirPurifierRounded.tsx @@ -8,4 +8,4 @@ const IconAirPurifierRounded: React.FC = ({ ...props }) => ( ) -export { IconAirPurifierRounded as default } +export default IconAirPurifierRounded diff --git a/src/IconAirPurifierRoundedFilled.tsx b/src/IconAirPurifierRoundedFilled.tsx index 241ed0dfc..3f3edbbba 100644 --- a/src/IconAirPurifierRoundedFilled.tsx +++ b/src/IconAirPurifierRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconAirPurifierRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconAirPurifierRoundedFilled as default } +export default IconAirPurifierRoundedFilled diff --git a/src/IconAirPurifierSharp.tsx b/src/IconAirPurifierSharp.tsx index 243ac62cf..5d6d51b5c 100644 --- a/src/IconAirPurifierSharp.tsx +++ b/src/IconAirPurifierSharp.tsx @@ -8,4 +8,4 @@ const IconAirPurifierSharp: React.FC = ({ ...props }) => ( ) -export { IconAirPurifierSharp as default } +export default IconAirPurifierSharp diff --git a/src/IconAirPurifierSharpFilled.tsx b/src/IconAirPurifierSharpFilled.tsx index ba93fefb8..0b11348a5 100644 --- a/src/IconAirPurifierSharpFilled.tsx +++ b/src/IconAirPurifierSharpFilled.tsx @@ -8,4 +8,4 @@ const IconAirPurifierSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconAirPurifierSharpFilled as default } +export default IconAirPurifierSharpFilled diff --git a/src/IconAirRounded.tsx b/src/IconAirRounded.tsx index 92fca8f94..4d0280667 100644 --- a/src/IconAirRounded.tsx +++ b/src/IconAirRounded.tsx @@ -8,4 +8,4 @@ const IconAirRounded: React.FC = ({ ...props }) => ( ) -export { IconAirRounded as default } +export default IconAirRounded diff --git a/src/IconAirRoundedFilled.tsx b/src/IconAirRoundedFilled.tsx index 0db4f0358..67057b67c 100644 --- a/src/IconAirRoundedFilled.tsx +++ b/src/IconAirRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconAirRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconAirRoundedFilled as default } +export default IconAirRoundedFilled diff --git a/src/IconAirSharp.tsx b/src/IconAirSharp.tsx index 5b708afa0..8a52b109b 100644 --- a/src/IconAirSharp.tsx +++ b/src/IconAirSharp.tsx @@ -8,4 +8,4 @@ const IconAirSharp: React.FC = ({ ...props }) => ( ) -export { IconAirSharp as default } +export default IconAirSharp diff --git a/src/IconAirSharpFilled.tsx b/src/IconAirSharpFilled.tsx index c4f148503..61a211d24 100644 --- a/src/IconAirSharpFilled.tsx +++ b/src/IconAirSharpFilled.tsx @@ -8,4 +8,4 @@ const IconAirSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconAirSharpFilled as default } +export default IconAirSharpFilled diff --git a/src/IconAirlineSeatFlatAngledOutlined.tsx b/src/IconAirlineSeatFlatAngledOutlined.tsx index 9d4872f09..bded38b3d 100644 --- a/src/IconAirlineSeatFlatAngledOutlined.tsx +++ b/src/IconAirlineSeatFlatAngledOutlined.tsx @@ -10,4 +10,4 @@ const IconAirlineSeatFlatAngledOutlined: React.FC = ({ ) -export { IconAirlineSeatFlatAngledOutlined as default } +export default IconAirlineSeatFlatAngledOutlined diff --git a/src/IconAirlineSeatFlatAngledOutlinedFilled.tsx b/src/IconAirlineSeatFlatAngledOutlinedFilled.tsx index 7602c855d..5e4fbcf65 100644 --- a/src/IconAirlineSeatFlatAngledOutlinedFilled.tsx +++ b/src/IconAirlineSeatFlatAngledOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconAirlineSeatFlatAngledOutlinedFilled: React.FC = ({ ) -export { IconAirlineSeatFlatAngledOutlinedFilled as default } +export default IconAirlineSeatFlatAngledOutlinedFilled diff --git a/src/IconAirlineSeatFlatAngledRounded.tsx b/src/IconAirlineSeatFlatAngledRounded.tsx index 6fb27840e..74d291efb 100644 --- a/src/IconAirlineSeatFlatAngledRounded.tsx +++ b/src/IconAirlineSeatFlatAngledRounded.tsx @@ -10,4 +10,4 @@ const IconAirlineSeatFlatAngledRounded: React.FC = ({ ) -export { IconAirlineSeatFlatAngledRounded as default } +export default IconAirlineSeatFlatAngledRounded diff --git a/src/IconAirlineSeatFlatAngledRoundedFilled.tsx b/src/IconAirlineSeatFlatAngledRoundedFilled.tsx index 966704db1..260049a62 100644 --- a/src/IconAirlineSeatFlatAngledRoundedFilled.tsx +++ b/src/IconAirlineSeatFlatAngledRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconAirlineSeatFlatAngledRoundedFilled: React.FC = ({ ) -export { IconAirlineSeatFlatAngledRoundedFilled as default } +export default IconAirlineSeatFlatAngledRoundedFilled diff --git a/src/IconAirlineSeatFlatAngledSharp.tsx b/src/IconAirlineSeatFlatAngledSharp.tsx index cb4124fa8..47a3cd572 100644 --- a/src/IconAirlineSeatFlatAngledSharp.tsx +++ b/src/IconAirlineSeatFlatAngledSharp.tsx @@ -8,4 +8,4 @@ const IconAirlineSeatFlatAngledSharp: React.FC = ({ ...props }) => ( ) -export { IconAirlineSeatFlatAngledSharp as default } +export default IconAirlineSeatFlatAngledSharp diff --git a/src/IconAirlineSeatFlatAngledSharpFilled.tsx b/src/IconAirlineSeatFlatAngledSharpFilled.tsx index 513f7b536..5e7dfbb50 100644 --- a/src/IconAirlineSeatFlatAngledSharpFilled.tsx +++ b/src/IconAirlineSeatFlatAngledSharpFilled.tsx @@ -10,4 +10,4 @@ const IconAirlineSeatFlatAngledSharpFilled: React.FC = ({ ) -export { IconAirlineSeatFlatAngledSharpFilled as default } +export default IconAirlineSeatFlatAngledSharpFilled diff --git a/src/IconAirlineSeatFlatOutlined.tsx b/src/IconAirlineSeatFlatOutlined.tsx index c491ae122..ad37779e0 100644 --- a/src/IconAirlineSeatFlatOutlined.tsx +++ b/src/IconAirlineSeatFlatOutlined.tsx @@ -8,4 +8,4 @@ const IconAirlineSeatFlatOutlined: React.FC = ({ ...props }) => ( ) -export { IconAirlineSeatFlatOutlined as default } +export default IconAirlineSeatFlatOutlined diff --git a/src/IconAirlineSeatFlatOutlinedFilled.tsx b/src/IconAirlineSeatFlatOutlinedFilled.tsx index e950f3145..e09141f34 100644 --- a/src/IconAirlineSeatFlatOutlinedFilled.tsx +++ b/src/IconAirlineSeatFlatOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconAirlineSeatFlatOutlinedFilled: React.FC = ({ ) -export { IconAirlineSeatFlatOutlinedFilled as default } +export default IconAirlineSeatFlatOutlinedFilled diff --git a/src/IconAirlineSeatFlatRounded.tsx b/src/IconAirlineSeatFlatRounded.tsx index 188f70aac..e4d6bfa63 100644 --- a/src/IconAirlineSeatFlatRounded.tsx +++ b/src/IconAirlineSeatFlatRounded.tsx @@ -8,4 +8,4 @@ const IconAirlineSeatFlatRounded: React.FC = ({ ...props }) => ( ) -export { IconAirlineSeatFlatRounded as default } +export default IconAirlineSeatFlatRounded diff --git a/src/IconAirlineSeatFlatRoundedFilled.tsx b/src/IconAirlineSeatFlatRoundedFilled.tsx index 875fcfada..f8565000b 100644 --- a/src/IconAirlineSeatFlatRoundedFilled.tsx +++ b/src/IconAirlineSeatFlatRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconAirlineSeatFlatRoundedFilled: React.FC = ({ ) -export { IconAirlineSeatFlatRoundedFilled as default } +export default IconAirlineSeatFlatRoundedFilled diff --git a/src/IconAirlineSeatFlatSharp.tsx b/src/IconAirlineSeatFlatSharp.tsx index f281cdb48..4de4042b4 100644 --- a/src/IconAirlineSeatFlatSharp.tsx +++ b/src/IconAirlineSeatFlatSharp.tsx @@ -8,4 +8,4 @@ const IconAirlineSeatFlatSharp: React.FC = ({ ...props }) => ( ) -export { IconAirlineSeatFlatSharp as default } +export default IconAirlineSeatFlatSharp diff --git a/src/IconAirlineSeatFlatSharpFilled.tsx b/src/IconAirlineSeatFlatSharpFilled.tsx index c131d12f9..7c0142a53 100644 --- a/src/IconAirlineSeatFlatSharpFilled.tsx +++ b/src/IconAirlineSeatFlatSharpFilled.tsx @@ -8,4 +8,4 @@ const IconAirlineSeatFlatSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconAirlineSeatFlatSharpFilled as default } +export default IconAirlineSeatFlatSharpFilled diff --git a/src/IconAirlineSeatIndividualSuiteOutlined.tsx b/src/IconAirlineSeatIndividualSuiteOutlined.tsx index e9e0bf7e3..a42bd308e 100644 --- a/src/IconAirlineSeatIndividualSuiteOutlined.tsx +++ b/src/IconAirlineSeatIndividualSuiteOutlined.tsx @@ -10,4 +10,4 @@ const IconAirlineSeatIndividualSuiteOutlined: React.FC = ({ ) -export { IconAirlineSeatIndividualSuiteOutlined as default } +export default IconAirlineSeatIndividualSuiteOutlined diff --git a/src/IconAirlineSeatIndividualSuiteOutlinedFilled.tsx b/src/IconAirlineSeatIndividualSuiteOutlinedFilled.tsx index 5a65cbf94..2639850e3 100644 --- a/src/IconAirlineSeatIndividualSuiteOutlinedFilled.tsx +++ b/src/IconAirlineSeatIndividualSuiteOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconAirlineSeatIndividualSuiteOutlinedFilled: React.FC = ({ ) -export { IconAirlineSeatIndividualSuiteOutlinedFilled as default } +export default IconAirlineSeatIndividualSuiteOutlinedFilled diff --git a/src/IconAirlineSeatIndividualSuiteRounded.tsx b/src/IconAirlineSeatIndividualSuiteRounded.tsx index 2c578f944..2cb62da75 100644 --- a/src/IconAirlineSeatIndividualSuiteRounded.tsx +++ b/src/IconAirlineSeatIndividualSuiteRounded.tsx @@ -10,4 +10,4 @@ const IconAirlineSeatIndividualSuiteRounded: React.FC = ({ ) -export { IconAirlineSeatIndividualSuiteRounded as default } +export default IconAirlineSeatIndividualSuiteRounded diff --git a/src/IconAirlineSeatIndividualSuiteRoundedFilled.tsx b/src/IconAirlineSeatIndividualSuiteRoundedFilled.tsx index 467f79aa6..ac2f67d1a 100644 --- a/src/IconAirlineSeatIndividualSuiteRoundedFilled.tsx +++ b/src/IconAirlineSeatIndividualSuiteRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconAirlineSeatIndividualSuiteRoundedFilled: React.FC = ({ ) -export { IconAirlineSeatIndividualSuiteRoundedFilled as default } +export default IconAirlineSeatIndividualSuiteRoundedFilled diff --git a/src/IconAirlineSeatIndividualSuiteSharp.tsx b/src/IconAirlineSeatIndividualSuiteSharp.tsx index dbbaaa66c..c2c8a4612 100644 --- a/src/IconAirlineSeatIndividualSuiteSharp.tsx +++ b/src/IconAirlineSeatIndividualSuiteSharp.tsx @@ -10,4 +10,4 @@ const IconAirlineSeatIndividualSuiteSharp: React.FC = ({ ) -export { IconAirlineSeatIndividualSuiteSharp as default } +export default IconAirlineSeatIndividualSuiteSharp diff --git a/src/IconAirlineSeatIndividualSuiteSharpFilled.tsx b/src/IconAirlineSeatIndividualSuiteSharpFilled.tsx index 1b0eacfaa..4a1a5cd03 100644 --- a/src/IconAirlineSeatIndividualSuiteSharpFilled.tsx +++ b/src/IconAirlineSeatIndividualSuiteSharpFilled.tsx @@ -10,4 +10,4 @@ const IconAirlineSeatIndividualSuiteSharpFilled: React.FC = ({ ) -export { IconAirlineSeatIndividualSuiteSharpFilled as default } +export default IconAirlineSeatIndividualSuiteSharpFilled diff --git a/src/IconAirlineSeatLegroomExtraOutlined.tsx b/src/IconAirlineSeatLegroomExtraOutlined.tsx index b6a80bb04..a19b234aa 100644 --- a/src/IconAirlineSeatLegroomExtraOutlined.tsx +++ b/src/IconAirlineSeatLegroomExtraOutlined.tsx @@ -10,4 +10,4 @@ const IconAirlineSeatLegroomExtraOutlined: React.FC = ({ ) -export { IconAirlineSeatLegroomExtraOutlined as default } +export default IconAirlineSeatLegroomExtraOutlined diff --git a/src/IconAirlineSeatLegroomExtraOutlinedFilled.tsx b/src/IconAirlineSeatLegroomExtraOutlinedFilled.tsx index c32f222ec..20316926d 100644 --- a/src/IconAirlineSeatLegroomExtraOutlinedFilled.tsx +++ b/src/IconAirlineSeatLegroomExtraOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconAirlineSeatLegroomExtraOutlinedFilled: React.FC = ({ ) -export { IconAirlineSeatLegroomExtraOutlinedFilled as default } +export default IconAirlineSeatLegroomExtraOutlinedFilled diff --git a/src/IconAirlineSeatLegroomExtraRounded.tsx b/src/IconAirlineSeatLegroomExtraRounded.tsx index 844fd6a78..a02a61d95 100644 --- a/src/IconAirlineSeatLegroomExtraRounded.tsx +++ b/src/IconAirlineSeatLegroomExtraRounded.tsx @@ -10,4 +10,4 @@ const IconAirlineSeatLegroomExtraRounded: React.FC = ({ ) -export { IconAirlineSeatLegroomExtraRounded as default } +export default IconAirlineSeatLegroomExtraRounded diff --git a/src/IconAirlineSeatLegroomExtraRoundedFilled.tsx b/src/IconAirlineSeatLegroomExtraRoundedFilled.tsx index cd97df0f4..d4f85c455 100644 --- a/src/IconAirlineSeatLegroomExtraRoundedFilled.tsx +++ b/src/IconAirlineSeatLegroomExtraRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconAirlineSeatLegroomExtraRoundedFilled: React.FC = ({ ) -export { IconAirlineSeatLegroomExtraRoundedFilled as default } +export default IconAirlineSeatLegroomExtraRoundedFilled diff --git a/src/IconAirlineSeatLegroomExtraSharp.tsx b/src/IconAirlineSeatLegroomExtraSharp.tsx index f2a5faf46..374c12daa 100644 --- a/src/IconAirlineSeatLegroomExtraSharp.tsx +++ b/src/IconAirlineSeatLegroomExtraSharp.tsx @@ -10,4 +10,4 @@ const IconAirlineSeatLegroomExtraSharp: React.FC = ({ ) -export { IconAirlineSeatLegroomExtraSharp as default } +export default IconAirlineSeatLegroomExtraSharp diff --git a/src/IconAirlineSeatLegroomExtraSharpFilled.tsx b/src/IconAirlineSeatLegroomExtraSharpFilled.tsx index 06ec01310..888ce87fe 100644 --- a/src/IconAirlineSeatLegroomExtraSharpFilled.tsx +++ b/src/IconAirlineSeatLegroomExtraSharpFilled.tsx @@ -10,4 +10,4 @@ const IconAirlineSeatLegroomExtraSharpFilled: React.FC = ({ ) -export { IconAirlineSeatLegroomExtraSharpFilled as default } +export default IconAirlineSeatLegroomExtraSharpFilled diff --git a/src/IconAirlineSeatLegroomNormalOutlined.tsx b/src/IconAirlineSeatLegroomNormalOutlined.tsx index 3fb518899..94b412784 100644 --- a/src/IconAirlineSeatLegroomNormalOutlined.tsx +++ b/src/IconAirlineSeatLegroomNormalOutlined.tsx @@ -10,4 +10,4 @@ const IconAirlineSeatLegroomNormalOutlined: React.FC = ({ ) -export { IconAirlineSeatLegroomNormalOutlined as default } +export default IconAirlineSeatLegroomNormalOutlined diff --git a/src/IconAirlineSeatLegroomNormalOutlinedFilled.tsx b/src/IconAirlineSeatLegroomNormalOutlinedFilled.tsx index 206bcc08a..01b68d6bc 100644 --- a/src/IconAirlineSeatLegroomNormalOutlinedFilled.tsx +++ b/src/IconAirlineSeatLegroomNormalOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconAirlineSeatLegroomNormalOutlinedFilled: React.FC = ({ ) -export { IconAirlineSeatLegroomNormalOutlinedFilled as default } +export default IconAirlineSeatLegroomNormalOutlinedFilled diff --git a/src/IconAirlineSeatLegroomNormalRounded.tsx b/src/IconAirlineSeatLegroomNormalRounded.tsx index 48cc1a6a4..ac0075eaa 100644 --- a/src/IconAirlineSeatLegroomNormalRounded.tsx +++ b/src/IconAirlineSeatLegroomNormalRounded.tsx @@ -10,4 +10,4 @@ const IconAirlineSeatLegroomNormalRounded: React.FC = ({ ) -export { IconAirlineSeatLegroomNormalRounded as default } +export default IconAirlineSeatLegroomNormalRounded diff --git a/src/IconAirlineSeatLegroomNormalRoundedFilled.tsx b/src/IconAirlineSeatLegroomNormalRoundedFilled.tsx index 21d7b1650..1dab04e9e 100644 --- a/src/IconAirlineSeatLegroomNormalRoundedFilled.tsx +++ b/src/IconAirlineSeatLegroomNormalRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconAirlineSeatLegroomNormalRoundedFilled: React.FC = ({ ) -export { IconAirlineSeatLegroomNormalRoundedFilled as default } +export default IconAirlineSeatLegroomNormalRoundedFilled diff --git a/src/IconAirlineSeatLegroomNormalSharp.tsx b/src/IconAirlineSeatLegroomNormalSharp.tsx index abba79ade..4edf533aa 100644 --- a/src/IconAirlineSeatLegroomNormalSharp.tsx +++ b/src/IconAirlineSeatLegroomNormalSharp.tsx @@ -10,4 +10,4 @@ const IconAirlineSeatLegroomNormalSharp: React.FC = ({ ) -export { IconAirlineSeatLegroomNormalSharp as default } +export default IconAirlineSeatLegroomNormalSharp diff --git a/src/IconAirlineSeatLegroomNormalSharpFilled.tsx b/src/IconAirlineSeatLegroomNormalSharpFilled.tsx index f4fcfbbe6..9b09e61a3 100644 --- a/src/IconAirlineSeatLegroomNormalSharpFilled.tsx +++ b/src/IconAirlineSeatLegroomNormalSharpFilled.tsx @@ -10,4 +10,4 @@ const IconAirlineSeatLegroomNormalSharpFilled: React.FC = ({ ) -export { IconAirlineSeatLegroomNormalSharpFilled as default } +export default IconAirlineSeatLegroomNormalSharpFilled diff --git a/src/IconAirlineSeatLegroomReducedOutlined.tsx b/src/IconAirlineSeatLegroomReducedOutlined.tsx index b2204f738..86d0a1aae 100644 --- a/src/IconAirlineSeatLegroomReducedOutlined.tsx +++ b/src/IconAirlineSeatLegroomReducedOutlined.tsx @@ -10,4 +10,4 @@ const IconAirlineSeatLegroomReducedOutlined: React.FC = ({ ) -export { IconAirlineSeatLegroomReducedOutlined as default } +export default IconAirlineSeatLegroomReducedOutlined diff --git a/src/IconAirlineSeatLegroomReducedOutlinedFilled.tsx b/src/IconAirlineSeatLegroomReducedOutlinedFilled.tsx index 361a6dd9c..2cf031d96 100644 --- a/src/IconAirlineSeatLegroomReducedOutlinedFilled.tsx +++ b/src/IconAirlineSeatLegroomReducedOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconAirlineSeatLegroomReducedOutlinedFilled: React.FC = ({ ) -export { IconAirlineSeatLegroomReducedOutlinedFilled as default } +export default IconAirlineSeatLegroomReducedOutlinedFilled diff --git a/src/IconAirlineSeatLegroomReducedRounded.tsx b/src/IconAirlineSeatLegroomReducedRounded.tsx index fa359f940..f889d6c7e 100644 --- a/src/IconAirlineSeatLegroomReducedRounded.tsx +++ b/src/IconAirlineSeatLegroomReducedRounded.tsx @@ -10,4 +10,4 @@ const IconAirlineSeatLegroomReducedRounded: React.FC = ({ ) -export { IconAirlineSeatLegroomReducedRounded as default } +export default IconAirlineSeatLegroomReducedRounded diff --git a/src/IconAirlineSeatLegroomReducedRoundedFilled.tsx b/src/IconAirlineSeatLegroomReducedRoundedFilled.tsx index 5fa7bd99b..20da4bc83 100644 --- a/src/IconAirlineSeatLegroomReducedRoundedFilled.tsx +++ b/src/IconAirlineSeatLegroomReducedRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconAirlineSeatLegroomReducedRoundedFilled: React.FC = ({ ) -export { IconAirlineSeatLegroomReducedRoundedFilled as default } +export default IconAirlineSeatLegroomReducedRoundedFilled diff --git a/src/IconAirlineSeatLegroomReducedSharp.tsx b/src/IconAirlineSeatLegroomReducedSharp.tsx index 2014ab5f7..f57d7cabd 100644 --- a/src/IconAirlineSeatLegroomReducedSharp.tsx +++ b/src/IconAirlineSeatLegroomReducedSharp.tsx @@ -10,4 +10,4 @@ const IconAirlineSeatLegroomReducedSharp: React.FC = ({ ) -export { IconAirlineSeatLegroomReducedSharp as default } +export default IconAirlineSeatLegroomReducedSharp diff --git a/src/IconAirlineSeatLegroomReducedSharpFilled.tsx b/src/IconAirlineSeatLegroomReducedSharpFilled.tsx index 0650dace0..aab1ae56b 100644 --- a/src/IconAirlineSeatLegroomReducedSharpFilled.tsx +++ b/src/IconAirlineSeatLegroomReducedSharpFilled.tsx @@ -10,4 +10,4 @@ const IconAirlineSeatLegroomReducedSharpFilled: React.FC = ({ ) -export { IconAirlineSeatLegroomReducedSharpFilled as default } +export default IconAirlineSeatLegroomReducedSharpFilled diff --git a/src/IconAirlineSeatReclineExtraOutlined.tsx b/src/IconAirlineSeatReclineExtraOutlined.tsx index 7d347f8c6..58b118262 100644 --- a/src/IconAirlineSeatReclineExtraOutlined.tsx +++ b/src/IconAirlineSeatReclineExtraOutlined.tsx @@ -10,4 +10,4 @@ const IconAirlineSeatReclineExtraOutlined: React.FC = ({ ) -export { IconAirlineSeatReclineExtraOutlined as default } +export default IconAirlineSeatReclineExtraOutlined diff --git a/src/IconAirlineSeatReclineExtraOutlinedFilled.tsx b/src/IconAirlineSeatReclineExtraOutlinedFilled.tsx index 6851c7ff9..d2cbe857d 100644 --- a/src/IconAirlineSeatReclineExtraOutlinedFilled.tsx +++ b/src/IconAirlineSeatReclineExtraOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconAirlineSeatReclineExtraOutlinedFilled: React.FC = ({ ) -export { IconAirlineSeatReclineExtraOutlinedFilled as default } +export default IconAirlineSeatReclineExtraOutlinedFilled diff --git a/src/IconAirlineSeatReclineExtraRounded.tsx b/src/IconAirlineSeatReclineExtraRounded.tsx index cc7d3fb11..d039711c4 100644 --- a/src/IconAirlineSeatReclineExtraRounded.tsx +++ b/src/IconAirlineSeatReclineExtraRounded.tsx @@ -10,4 +10,4 @@ const IconAirlineSeatReclineExtraRounded: React.FC = ({ ) -export { IconAirlineSeatReclineExtraRounded as default } +export default IconAirlineSeatReclineExtraRounded diff --git a/src/IconAirlineSeatReclineExtraRoundedFilled.tsx b/src/IconAirlineSeatReclineExtraRoundedFilled.tsx index aa7f2d715..b1a6bdd8b 100644 --- a/src/IconAirlineSeatReclineExtraRoundedFilled.tsx +++ b/src/IconAirlineSeatReclineExtraRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconAirlineSeatReclineExtraRoundedFilled: React.FC = ({ ) -export { IconAirlineSeatReclineExtraRoundedFilled as default } +export default IconAirlineSeatReclineExtraRoundedFilled diff --git a/src/IconAirlineSeatReclineExtraSharp.tsx b/src/IconAirlineSeatReclineExtraSharp.tsx index 5358a967f..bdc15a6f5 100644 --- a/src/IconAirlineSeatReclineExtraSharp.tsx +++ b/src/IconAirlineSeatReclineExtraSharp.tsx @@ -10,4 +10,4 @@ const IconAirlineSeatReclineExtraSharp: React.FC = ({ ) -export { IconAirlineSeatReclineExtraSharp as default } +export default IconAirlineSeatReclineExtraSharp diff --git a/src/IconAirlineSeatReclineExtraSharpFilled.tsx b/src/IconAirlineSeatReclineExtraSharpFilled.tsx index d44207fc0..c4ec612a0 100644 --- a/src/IconAirlineSeatReclineExtraSharpFilled.tsx +++ b/src/IconAirlineSeatReclineExtraSharpFilled.tsx @@ -10,4 +10,4 @@ const IconAirlineSeatReclineExtraSharpFilled: React.FC = ({ ) -export { IconAirlineSeatReclineExtraSharpFilled as default } +export default IconAirlineSeatReclineExtraSharpFilled diff --git a/src/IconAirlineSeatReclineNormalOutlined.tsx b/src/IconAirlineSeatReclineNormalOutlined.tsx index 1a8493733..48a660253 100644 --- a/src/IconAirlineSeatReclineNormalOutlined.tsx +++ b/src/IconAirlineSeatReclineNormalOutlined.tsx @@ -10,4 +10,4 @@ const IconAirlineSeatReclineNormalOutlined: React.FC = ({ ) -export { IconAirlineSeatReclineNormalOutlined as default } +export default IconAirlineSeatReclineNormalOutlined diff --git a/src/IconAirlineSeatReclineNormalOutlinedFilled.tsx b/src/IconAirlineSeatReclineNormalOutlinedFilled.tsx index 39006316b..306a5ce51 100644 --- a/src/IconAirlineSeatReclineNormalOutlinedFilled.tsx +++ b/src/IconAirlineSeatReclineNormalOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconAirlineSeatReclineNormalOutlinedFilled: React.FC = ({ ) -export { IconAirlineSeatReclineNormalOutlinedFilled as default } +export default IconAirlineSeatReclineNormalOutlinedFilled diff --git a/src/IconAirlineSeatReclineNormalRounded.tsx b/src/IconAirlineSeatReclineNormalRounded.tsx index b2d48bf41..2f36ad3b1 100644 --- a/src/IconAirlineSeatReclineNormalRounded.tsx +++ b/src/IconAirlineSeatReclineNormalRounded.tsx @@ -10,4 +10,4 @@ const IconAirlineSeatReclineNormalRounded: React.FC = ({ ) -export { IconAirlineSeatReclineNormalRounded as default } +export default IconAirlineSeatReclineNormalRounded diff --git a/src/IconAirlineSeatReclineNormalRoundedFilled.tsx b/src/IconAirlineSeatReclineNormalRoundedFilled.tsx index 47f88353b..8f3203e8c 100644 --- a/src/IconAirlineSeatReclineNormalRoundedFilled.tsx +++ b/src/IconAirlineSeatReclineNormalRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconAirlineSeatReclineNormalRoundedFilled: React.FC = ({ ) -export { IconAirlineSeatReclineNormalRoundedFilled as default } +export default IconAirlineSeatReclineNormalRoundedFilled diff --git a/src/IconAirlineSeatReclineNormalSharp.tsx b/src/IconAirlineSeatReclineNormalSharp.tsx index 3c43a6d6d..5bc463dd0 100644 --- a/src/IconAirlineSeatReclineNormalSharp.tsx +++ b/src/IconAirlineSeatReclineNormalSharp.tsx @@ -10,4 +10,4 @@ const IconAirlineSeatReclineNormalSharp: React.FC = ({ ) -export { IconAirlineSeatReclineNormalSharp as default } +export default IconAirlineSeatReclineNormalSharp diff --git a/src/IconAirlineSeatReclineNormalSharpFilled.tsx b/src/IconAirlineSeatReclineNormalSharpFilled.tsx index bf0eadecf..3fc229d0b 100644 --- a/src/IconAirlineSeatReclineNormalSharpFilled.tsx +++ b/src/IconAirlineSeatReclineNormalSharpFilled.tsx @@ -10,4 +10,4 @@ const IconAirlineSeatReclineNormalSharpFilled: React.FC = ({ ) -export { IconAirlineSeatReclineNormalSharpFilled as default } +export default IconAirlineSeatReclineNormalSharpFilled diff --git a/src/IconAirlineStopsOutlined.tsx b/src/IconAirlineStopsOutlined.tsx index 7b7c70147..f07516de7 100644 --- a/src/IconAirlineStopsOutlined.tsx +++ b/src/IconAirlineStopsOutlined.tsx @@ -8,4 +8,4 @@ const IconAirlineStopsOutlined: React.FC = ({ ...props }) => ( ) -export { IconAirlineStopsOutlined as default } +export default IconAirlineStopsOutlined diff --git a/src/IconAirlineStopsOutlinedFilled.tsx b/src/IconAirlineStopsOutlinedFilled.tsx index 603a3a84a..ce0ffc2a3 100644 --- a/src/IconAirlineStopsOutlinedFilled.tsx +++ b/src/IconAirlineStopsOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconAirlineStopsOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconAirlineStopsOutlinedFilled as default } +export default IconAirlineStopsOutlinedFilled diff --git a/src/IconAirlineStopsRounded.tsx b/src/IconAirlineStopsRounded.tsx index 3f6435bd5..a9ad456f4 100644 --- a/src/IconAirlineStopsRounded.tsx +++ b/src/IconAirlineStopsRounded.tsx @@ -8,4 +8,4 @@ const IconAirlineStopsRounded: React.FC = ({ ...props }) => ( ) -export { IconAirlineStopsRounded as default } +export default IconAirlineStopsRounded diff --git a/src/IconAirlineStopsRoundedFilled.tsx b/src/IconAirlineStopsRoundedFilled.tsx index cdf4860e9..7d3284c3d 100644 --- a/src/IconAirlineStopsRoundedFilled.tsx +++ b/src/IconAirlineStopsRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconAirlineStopsRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconAirlineStopsRoundedFilled as default } +export default IconAirlineStopsRoundedFilled diff --git a/src/IconAirlineStopsSharp.tsx b/src/IconAirlineStopsSharp.tsx index c090dc656..88a5a4144 100644 --- a/src/IconAirlineStopsSharp.tsx +++ b/src/IconAirlineStopsSharp.tsx @@ -8,4 +8,4 @@ const IconAirlineStopsSharp: React.FC = ({ ...props }) => ( ) -export { IconAirlineStopsSharp as default } +export default IconAirlineStopsSharp diff --git a/src/IconAirlineStopsSharpFilled.tsx b/src/IconAirlineStopsSharpFilled.tsx index 17c3db4ae..b63f3bbea 100644 --- a/src/IconAirlineStopsSharpFilled.tsx +++ b/src/IconAirlineStopsSharpFilled.tsx @@ -8,4 +8,4 @@ const IconAirlineStopsSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconAirlineStopsSharpFilled as default } +export default IconAirlineStopsSharpFilled diff --git a/src/IconAirlinesOutlined.tsx b/src/IconAirlinesOutlined.tsx index 9f4c53d31..0e4f2e7a7 100644 --- a/src/IconAirlinesOutlined.tsx +++ b/src/IconAirlinesOutlined.tsx @@ -8,4 +8,4 @@ const IconAirlinesOutlined: React.FC = ({ ...props }) => ( ) -export { IconAirlinesOutlined as default } +export default IconAirlinesOutlined diff --git a/src/IconAirlinesOutlinedFilled.tsx b/src/IconAirlinesOutlinedFilled.tsx index 3c57ee5d4..171b32e0a 100644 --- a/src/IconAirlinesOutlinedFilled.tsx +++ b/src/IconAirlinesOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconAirlinesOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconAirlinesOutlinedFilled as default } +export default IconAirlinesOutlinedFilled diff --git a/src/IconAirlinesRounded.tsx b/src/IconAirlinesRounded.tsx index a062250a7..d06080236 100644 --- a/src/IconAirlinesRounded.tsx +++ b/src/IconAirlinesRounded.tsx @@ -8,4 +8,4 @@ const IconAirlinesRounded: React.FC = ({ ...props }) => ( ) -export { IconAirlinesRounded as default } +export default IconAirlinesRounded diff --git a/src/IconAirlinesRoundedFilled.tsx b/src/IconAirlinesRoundedFilled.tsx index 877a1c100..2053cea89 100644 --- a/src/IconAirlinesRoundedFilled.tsx +++ b/src/IconAirlinesRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconAirlinesRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconAirlinesRoundedFilled as default } +export default IconAirlinesRoundedFilled diff --git a/src/IconAirlinesSharp.tsx b/src/IconAirlinesSharp.tsx index 395b8df7f..153c68bb0 100644 --- a/src/IconAirlinesSharp.tsx +++ b/src/IconAirlinesSharp.tsx @@ -8,4 +8,4 @@ const IconAirlinesSharp: React.FC = ({ ...props }) => ( ) -export { IconAirlinesSharp as default } +export default IconAirlinesSharp diff --git a/src/IconAirlinesSharpFilled.tsx b/src/IconAirlinesSharpFilled.tsx index cfe93268b..c4bfce47c 100644 --- a/src/IconAirlinesSharpFilled.tsx +++ b/src/IconAirlinesSharpFilled.tsx @@ -8,4 +8,4 @@ const IconAirlinesSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconAirlinesSharpFilled as default } +export default IconAirlinesSharpFilled diff --git a/src/IconAirplaneTicketOutlined.tsx b/src/IconAirplaneTicketOutlined.tsx index a4b0f62bf..2ab23f6b1 100644 --- a/src/IconAirplaneTicketOutlined.tsx +++ b/src/IconAirplaneTicketOutlined.tsx @@ -8,4 +8,4 @@ const IconAirplaneTicketOutlined: React.FC = ({ ...props }) => ( ) -export { IconAirplaneTicketOutlined as default } +export default IconAirplaneTicketOutlined diff --git a/src/IconAirplaneTicketOutlinedFilled.tsx b/src/IconAirplaneTicketOutlinedFilled.tsx index 2985d97f5..a749d412b 100644 --- a/src/IconAirplaneTicketOutlinedFilled.tsx +++ b/src/IconAirplaneTicketOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconAirplaneTicketOutlinedFilled: React.FC = ({ ) -export { IconAirplaneTicketOutlinedFilled as default } +export default IconAirplaneTicketOutlinedFilled diff --git a/src/IconAirplaneTicketRounded.tsx b/src/IconAirplaneTicketRounded.tsx index af4734a7a..59c739b53 100644 --- a/src/IconAirplaneTicketRounded.tsx +++ b/src/IconAirplaneTicketRounded.tsx @@ -8,4 +8,4 @@ const IconAirplaneTicketRounded: React.FC = ({ ...props }) => ( ) -export { IconAirplaneTicketRounded as default } +export default IconAirplaneTicketRounded diff --git a/src/IconAirplaneTicketRoundedFilled.tsx b/src/IconAirplaneTicketRoundedFilled.tsx index 8ed51cfab..6170440bd 100644 --- a/src/IconAirplaneTicketRoundedFilled.tsx +++ b/src/IconAirplaneTicketRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconAirplaneTicketRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconAirplaneTicketRoundedFilled as default } +export default IconAirplaneTicketRoundedFilled diff --git a/src/IconAirplaneTicketSharp.tsx b/src/IconAirplaneTicketSharp.tsx index 571e92599..3f6eca4dc 100644 --- a/src/IconAirplaneTicketSharp.tsx +++ b/src/IconAirplaneTicketSharp.tsx @@ -8,4 +8,4 @@ const IconAirplaneTicketSharp: React.FC = ({ ...props }) => ( ) -export { IconAirplaneTicketSharp as default } +export default IconAirplaneTicketSharp diff --git a/src/IconAirplaneTicketSharpFilled.tsx b/src/IconAirplaneTicketSharpFilled.tsx index a1712d25d..5e6d2cf4b 100644 --- a/src/IconAirplaneTicketSharpFilled.tsx +++ b/src/IconAirplaneTicketSharpFilled.tsx @@ -8,4 +8,4 @@ const IconAirplaneTicketSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconAirplaneTicketSharpFilled as default } +export default IconAirplaneTicketSharpFilled diff --git a/src/IconAirplanemodeInactiveOutlined.tsx b/src/IconAirplanemodeInactiveOutlined.tsx index cdf150446..6336ca21f 100644 --- a/src/IconAirplanemodeInactiveOutlined.tsx +++ b/src/IconAirplanemodeInactiveOutlined.tsx @@ -10,4 +10,4 @@ const IconAirplanemodeInactiveOutlined: React.FC = ({ ) -export { IconAirplanemodeInactiveOutlined as default } +export default IconAirplanemodeInactiveOutlined diff --git a/src/IconAirplanemodeInactiveOutlinedFilled.tsx b/src/IconAirplanemodeInactiveOutlinedFilled.tsx index e234ddf65..8fb9daf6a 100644 --- a/src/IconAirplanemodeInactiveOutlinedFilled.tsx +++ b/src/IconAirplanemodeInactiveOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconAirplanemodeInactiveOutlinedFilled: React.FC = ({ ) -export { IconAirplanemodeInactiveOutlinedFilled as default } +export default IconAirplanemodeInactiveOutlinedFilled diff --git a/src/IconAirplanemodeInactiveRounded.tsx b/src/IconAirplanemodeInactiveRounded.tsx index 9218d77fc..6293bf07a 100644 --- a/src/IconAirplanemodeInactiveRounded.tsx +++ b/src/IconAirplanemodeInactiveRounded.tsx @@ -8,4 +8,4 @@ const IconAirplanemodeInactiveRounded: React.FC = ({ ...props }) => ( ) -export { IconAirplanemodeInactiveRounded as default } +export default IconAirplanemodeInactiveRounded diff --git a/src/IconAirplanemodeInactiveRoundedFilled.tsx b/src/IconAirplanemodeInactiveRoundedFilled.tsx index 36e2902aa..9c724b718 100644 --- a/src/IconAirplanemodeInactiveRoundedFilled.tsx +++ b/src/IconAirplanemodeInactiveRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconAirplanemodeInactiveRoundedFilled: React.FC = ({ ) -export { IconAirplanemodeInactiveRoundedFilled as default } +export default IconAirplanemodeInactiveRoundedFilled diff --git a/src/IconAirplanemodeInactiveSharp.tsx b/src/IconAirplanemodeInactiveSharp.tsx index c2b1abc80..14a32eb42 100644 --- a/src/IconAirplanemodeInactiveSharp.tsx +++ b/src/IconAirplanemodeInactiveSharp.tsx @@ -8,4 +8,4 @@ const IconAirplanemodeInactiveSharp: React.FC = ({ ...props }) => ( ) -export { IconAirplanemodeInactiveSharp as default } +export default IconAirplanemodeInactiveSharp diff --git a/src/IconAirplanemodeInactiveSharpFilled.tsx b/src/IconAirplanemodeInactiveSharpFilled.tsx index 645fca603..5770e9787 100644 --- a/src/IconAirplanemodeInactiveSharpFilled.tsx +++ b/src/IconAirplanemodeInactiveSharpFilled.tsx @@ -10,4 +10,4 @@ const IconAirplanemodeInactiveSharpFilled: React.FC = ({ ) -export { IconAirplanemodeInactiveSharpFilled as default } +export default IconAirplanemodeInactiveSharpFilled diff --git a/src/IconAirplayOutlined.tsx b/src/IconAirplayOutlined.tsx index c5b9d8cd1..b8a6ba49d 100644 --- a/src/IconAirplayOutlined.tsx +++ b/src/IconAirplayOutlined.tsx @@ -8,4 +8,4 @@ const IconAirplayOutlined: React.FC = ({ ...props }) => ( ) -export { IconAirplayOutlined as default } +export default IconAirplayOutlined diff --git a/src/IconAirplayOutlinedFilled.tsx b/src/IconAirplayOutlinedFilled.tsx index 300dcfeba..9f507011f 100644 --- a/src/IconAirplayOutlinedFilled.tsx +++ b/src/IconAirplayOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconAirplayOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconAirplayOutlinedFilled as default } +export default IconAirplayOutlinedFilled diff --git a/src/IconAirplayRounded.tsx b/src/IconAirplayRounded.tsx index f6c6be4dd..c8ba02bd4 100644 --- a/src/IconAirplayRounded.tsx +++ b/src/IconAirplayRounded.tsx @@ -8,4 +8,4 @@ const IconAirplayRounded: React.FC = ({ ...props }) => ( ) -export { IconAirplayRounded as default } +export default IconAirplayRounded diff --git a/src/IconAirplayRoundedFilled.tsx b/src/IconAirplayRoundedFilled.tsx index c139fc9ac..a064e5745 100644 --- a/src/IconAirplayRoundedFilled.tsx +++ b/src/IconAirplayRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconAirplayRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconAirplayRoundedFilled as default } +export default IconAirplayRoundedFilled diff --git a/src/IconAirplaySharp.tsx b/src/IconAirplaySharp.tsx index 75e3b3d25..b1fee1d1b 100644 --- a/src/IconAirplaySharp.tsx +++ b/src/IconAirplaySharp.tsx @@ -8,4 +8,4 @@ const IconAirplaySharp: React.FC = ({ ...props }) => ( ) -export { IconAirplaySharp as default } +export default IconAirplaySharp diff --git a/src/IconAirplaySharpFilled.tsx b/src/IconAirplaySharpFilled.tsx index 8a49e7343..610e3b2a1 100644 --- a/src/IconAirplaySharpFilled.tsx +++ b/src/IconAirplaySharpFilled.tsx @@ -8,4 +8,4 @@ const IconAirplaySharpFilled: React.FC = ({ ...props }) => ( ) -export { IconAirplaySharpFilled as default } +export default IconAirplaySharpFilled diff --git a/src/IconAirportShuttleOutlined.tsx b/src/IconAirportShuttleOutlined.tsx index 778c0307f..ecf828d48 100644 --- a/src/IconAirportShuttleOutlined.tsx +++ b/src/IconAirportShuttleOutlined.tsx @@ -8,4 +8,4 @@ const IconAirportShuttleOutlined: React.FC = ({ ...props }) => ( ) -export { IconAirportShuttleOutlined as default } +export default IconAirportShuttleOutlined diff --git a/src/IconAirportShuttleOutlinedFilled.tsx b/src/IconAirportShuttleOutlinedFilled.tsx index 28fc85286..7cd18856d 100644 --- a/src/IconAirportShuttleOutlinedFilled.tsx +++ b/src/IconAirportShuttleOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconAirportShuttleOutlinedFilled: React.FC = ({ ) -export { IconAirportShuttleOutlinedFilled as default } +export default IconAirportShuttleOutlinedFilled diff --git a/src/IconAirportShuttleRounded.tsx b/src/IconAirportShuttleRounded.tsx index 6ddbee7f1..c13f79761 100644 --- a/src/IconAirportShuttleRounded.tsx +++ b/src/IconAirportShuttleRounded.tsx @@ -8,4 +8,4 @@ const IconAirportShuttleRounded: React.FC = ({ ...props }) => ( ) -export { IconAirportShuttleRounded as default } +export default IconAirportShuttleRounded diff --git a/src/IconAirportShuttleRoundedFilled.tsx b/src/IconAirportShuttleRoundedFilled.tsx index 13121fc58..242c5cb9b 100644 --- a/src/IconAirportShuttleRoundedFilled.tsx +++ b/src/IconAirportShuttleRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconAirportShuttleRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconAirportShuttleRoundedFilled as default } +export default IconAirportShuttleRoundedFilled diff --git a/src/IconAirportShuttleSharp.tsx b/src/IconAirportShuttleSharp.tsx index 97ac0249c..1b073edfb 100644 --- a/src/IconAirportShuttleSharp.tsx +++ b/src/IconAirportShuttleSharp.tsx @@ -8,4 +8,4 @@ const IconAirportShuttleSharp: React.FC = ({ ...props }) => ( ) -export { IconAirportShuttleSharp as default } +export default IconAirportShuttleSharp diff --git a/src/IconAirportShuttleSharpFilled.tsx b/src/IconAirportShuttleSharpFilled.tsx index afdf60b61..45d16cc9e 100644 --- a/src/IconAirportShuttleSharpFilled.tsx +++ b/src/IconAirportShuttleSharpFilled.tsx @@ -8,4 +8,4 @@ const IconAirportShuttleSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconAirportShuttleSharpFilled as default } +export default IconAirportShuttleSharpFilled diff --git a/src/IconAirwareOutlined.tsx b/src/IconAirwareOutlined.tsx index c92d755e4..d66e13f24 100644 --- a/src/IconAirwareOutlined.tsx +++ b/src/IconAirwareOutlined.tsx @@ -8,4 +8,4 @@ const IconAirwareOutlined: React.FC = ({ ...props }) => ( ) -export { IconAirwareOutlined as default } +export default IconAirwareOutlined diff --git a/src/IconAirwareOutlinedFilled.tsx b/src/IconAirwareOutlinedFilled.tsx index 73c72a68d..6ec6ef87a 100644 --- a/src/IconAirwareOutlinedFilled.tsx +++ b/src/IconAirwareOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconAirwareOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconAirwareOutlinedFilled as default } +export default IconAirwareOutlinedFilled diff --git a/src/IconAirwareRounded.tsx b/src/IconAirwareRounded.tsx index fe7657c5e..212fd193b 100644 --- a/src/IconAirwareRounded.tsx +++ b/src/IconAirwareRounded.tsx @@ -8,4 +8,4 @@ const IconAirwareRounded: React.FC = ({ ...props }) => ( ) -export { IconAirwareRounded as default } +export default IconAirwareRounded diff --git a/src/IconAirwareRoundedFilled.tsx b/src/IconAirwareRoundedFilled.tsx index ed180c257..1ee9e4213 100644 --- a/src/IconAirwareRoundedFilled.tsx +++ b/src/IconAirwareRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconAirwareRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconAirwareRoundedFilled as default } +export default IconAirwareRoundedFilled diff --git a/src/IconAirwareSharp.tsx b/src/IconAirwareSharp.tsx index c7ae3f379..c8c67aa1d 100644 --- a/src/IconAirwareSharp.tsx +++ b/src/IconAirwareSharp.tsx @@ -8,4 +8,4 @@ const IconAirwareSharp: React.FC = ({ ...props }) => ( ) -export { IconAirwareSharp as default } +export default IconAirwareSharp diff --git a/src/IconAirwareSharpFilled.tsx b/src/IconAirwareSharpFilled.tsx index f5ef8d969..fdb43e0c3 100644 --- a/src/IconAirwareSharpFilled.tsx +++ b/src/IconAirwareSharpFilled.tsx @@ -8,4 +8,4 @@ const IconAirwareSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconAirwareSharpFilled as default } +export default IconAirwareSharpFilled diff --git a/src/IconAirwaveOutlined.tsx b/src/IconAirwaveOutlined.tsx index d624f0585..d2cffc98d 100644 --- a/src/IconAirwaveOutlined.tsx +++ b/src/IconAirwaveOutlined.tsx @@ -8,4 +8,4 @@ const IconAirwaveOutlined: React.FC = ({ ...props }) => ( ) -export { IconAirwaveOutlined as default } +export default IconAirwaveOutlined diff --git a/src/IconAirwaveOutlinedFilled.tsx b/src/IconAirwaveOutlinedFilled.tsx index 827ad6f74..8b0f062a9 100644 --- a/src/IconAirwaveOutlinedFilled.tsx +++ b/src/IconAirwaveOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconAirwaveOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconAirwaveOutlinedFilled as default } +export default IconAirwaveOutlinedFilled diff --git a/src/IconAirwaveRounded.tsx b/src/IconAirwaveRounded.tsx index e4243b1fb..4de1ca3e9 100644 --- a/src/IconAirwaveRounded.tsx +++ b/src/IconAirwaveRounded.tsx @@ -8,4 +8,4 @@ const IconAirwaveRounded: React.FC = ({ ...props }) => ( ) -export { IconAirwaveRounded as default } +export default IconAirwaveRounded diff --git a/src/IconAirwaveRoundedFilled.tsx b/src/IconAirwaveRoundedFilled.tsx index e3bf8e43d..050f2cfe1 100644 --- a/src/IconAirwaveRoundedFilled.tsx +++ b/src/IconAirwaveRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconAirwaveRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconAirwaveRoundedFilled as default } +export default IconAirwaveRoundedFilled diff --git a/src/IconAirwaveSharp.tsx b/src/IconAirwaveSharp.tsx index 6ab8176c2..6c8e2bfa3 100644 --- a/src/IconAirwaveSharp.tsx +++ b/src/IconAirwaveSharp.tsx @@ -8,4 +8,4 @@ const IconAirwaveSharp: React.FC = ({ ...props }) => ( ) -export { IconAirwaveSharp as default } +export default IconAirwaveSharp diff --git a/src/IconAirwaveSharpFilled.tsx b/src/IconAirwaveSharpFilled.tsx index 8459cd56d..cc5290d77 100644 --- a/src/IconAirwaveSharpFilled.tsx +++ b/src/IconAirwaveSharpFilled.tsx @@ -8,4 +8,4 @@ const IconAirwaveSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconAirwaveSharpFilled as default } +export default IconAirwaveSharpFilled diff --git a/src/IconAlarmAddOutlined.tsx b/src/IconAlarmAddOutlined.tsx index 53563bd13..c7b8b88cd 100644 --- a/src/IconAlarmAddOutlined.tsx +++ b/src/IconAlarmAddOutlined.tsx @@ -8,4 +8,4 @@ const IconAlarmAddOutlined: React.FC = ({ ...props }) => ( ) -export { IconAlarmAddOutlined as default } +export default IconAlarmAddOutlined diff --git a/src/IconAlarmAddOutlinedFilled.tsx b/src/IconAlarmAddOutlinedFilled.tsx index 7d6d68a29..9355bdffd 100644 --- a/src/IconAlarmAddOutlinedFilled.tsx +++ b/src/IconAlarmAddOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconAlarmAddOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconAlarmAddOutlinedFilled as default } +export default IconAlarmAddOutlinedFilled diff --git a/src/IconAlarmAddRounded.tsx b/src/IconAlarmAddRounded.tsx index 6ce912b8f..cfe05a5cd 100644 --- a/src/IconAlarmAddRounded.tsx +++ b/src/IconAlarmAddRounded.tsx @@ -8,4 +8,4 @@ const IconAlarmAddRounded: React.FC = ({ ...props }) => ( ) -export { IconAlarmAddRounded as default } +export default IconAlarmAddRounded diff --git a/src/IconAlarmAddRoundedFilled.tsx b/src/IconAlarmAddRoundedFilled.tsx index 4689bd8ff..a9bd85c94 100644 --- a/src/IconAlarmAddRoundedFilled.tsx +++ b/src/IconAlarmAddRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconAlarmAddRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconAlarmAddRoundedFilled as default } +export default IconAlarmAddRoundedFilled diff --git a/src/IconAlarmAddSharp.tsx b/src/IconAlarmAddSharp.tsx index 2bdc5fd1e..7049a745b 100644 --- a/src/IconAlarmAddSharp.tsx +++ b/src/IconAlarmAddSharp.tsx @@ -8,4 +8,4 @@ const IconAlarmAddSharp: React.FC = ({ ...props }) => ( ) -export { IconAlarmAddSharp as default } +export default IconAlarmAddSharp diff --git a/src/IconAlarmAddSharpFilled.tsx b/src/IconAlarmAddSharpFilled.tsx index 9a63f4746..604c3cfb7 100644 --- a/src/IconAlarmAddSharpFilled.tsx +++ b/src/IconAlarmAddSharpFilled.tsx @@ -8,4 +8,4 @@ const IconAlarmAddSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconAlarmAddSharpFilled as default } +export default IconAlarmAddSharpFilled diff --git a/src/IconAlarmOffOutlined.tsx b/src/IconAlarmOffOutlined.tsx index 22dc7c543..2a124f5ac 100644 --- a/src/IconAlarmOffOutlined.tsx +++ b/src/IconAlarmOffOutlined.tsx @@ -8,4 +8,4 @@ const IconAlarmOffOutlined: React.FC = ({ ...props }) => ( ) -export { IconAlarmOffOutlined as default } +export default IconAlarmOffOutlined diff --git a/src/IconAlarmOffOutlinedFilled.tsx b/src/IconAlarmOffOutlinedFilled.tsx index d91163ff4..c413c1c9e 100644 --- a/src/IconAlarmOffOutlinedFilled.tsx +++ b/src/IconAlarmOffOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconAlarmOffOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconAlarmOffOutlinedFilled as default } +export default IconAlarmOffOutlinedFilled diff --git a/src/IconAlarmOffRounded.tsx b/src/IconAlarmOffRounded.tsx index e2236d933..ee77e720e 100644 --- a/src/IconAlarmOffRounded.tsx +++ b/src/IconAlarmOffRounded.tsx @@ -8,4 +8,4 @@ const IconAlarmOffRounded: React.FC = ({ ...props }) => ( ) -export { IconAlarmOffRounded as default } +export default IconAlarmOffRounded diff --git a/src/IconAlarmOffRoundedFilled.tsx b/src/IconAlarmOffRoundedFilled.tsx index 2584dca56..6c7a703de 100644 --- a/src/IconAlarmOffRoundedFilled.tsx +++ b/src/IconAlarmOffRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconAlarmOffRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconAlarmOffRoundedFilled as default } +export default IconAlarmOffRoundedFilled diff --git a/src/IconAlarmOffSharp.tsx b/src/IconAlarmOffSharp.tsx index 59b1114ce..fc7ccaa4c 100644 --- a/src/IconAlarmOffSharp.tsx +++ b/src/IconAlarmOffSharp.tsx @@ -8,4 +8,4 @@ const IconAlarmOffSharp: React.FC = ({ ...props }) => ( ) -export { IconAlarmOffSharp as default } +export default IconAlarmOffSharp diff --git a/src/IconAlarmOffSharpFilled.tsx b/src/IconAlarmOffSharpFilled.tsx index ff4e08396..c2730c6cf 100644 --- a/src/IconAlarmOffSharpFilled.tsx +++ b/src/IconAlarmOffSharpFilled.tsx @@ -8,4 +8,4 @@ const IconAlarmOffSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconAlarmOffSharpFilled as default } +export default IconAlarmOffSharpFilled diff --git a/src/IconAlarmOnOutlined.tsx b/src/IconAlarmOnOutlined.tsx index 1655cd84a..84fbc35a7 100644 --- a/src/IconAlarmOnOutlined.tsx +++ b/src/IconAlarmOnOutlined.tsx @@ -8,4 +8,4 @@ const IconAlarmOnOutlined: React.FC = ({ ...props }) => ( ) -export { IconAlarmOnOutlined as default } +export default IconAlarmOnOutlined diff --git a/src/IconAlarmOnOutlinedFilled.tsx b/src/IconAlarmOnOutlinedFilled.tsx index 65f2112dc..1111966eb 100644 --- a/src/IconAlarmOnOutlinedFilled.tsx +++ b/src/IconAlarmOnOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconAlarmOnOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconAlarmOnOutlinedFilled as default } +export default IconAlarmOnOutlinedFilled diff --git a/src/IconAlarmOnRounded.tsx b/src/IconAlarmOnRounded.tsx index f2fb802f2..df9b6d1de 100644 --- a/src/IconAlarmOnRounded.tsx +++ b/src/IconAlarmOnRounded.tsx @@ -8,4 +8,4 @@ const IconAlarmOnRounded: React.FC = ({ ...props }) => ( ) -export { IconAlarmOnRounded as default } +export default IconAlarmOnRounded diff --git a/src/IconAlarmOnRoundedFilled.tsx b/src/IconAlarmOnRoundedFilled.tsx index c99e6b259..733f697d3 100644 --- a/src/IconAlarmOnRoundedFilled.tsx +++ b/src/IconAlarmOnRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconAlarmOnRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconAlarmOnRoundedFilled as default } +export default IconAlarmOnRoundedFilled diff --git a/src/IconAlarmOnSharp.tsx b/src/IconAlarmOnSharp.tsx index 4a821b78c..1f79b72a7 100644 --- a/src/IconAlarmOnSharp.tsx +++ b/src/IconAlarmOnSharp.tsx @@ -8,4 +8,4 @@ const IconAlarmOnSharp: React.FC = ({ ...props }) => ( ) -export { IconAlarmOnSharp as default } +export default IconAlarmOnSharp diff --git a/src/IconAlarmOnSharpFilled.tsx b/src/IconAlarmOnSharpFilled.tsx index 520aeed08..ce50190c2 100644 --- a/src/IconAlarmOnSharpFilled.tsx +++ b/src/IconAlarmOnSharpFilled.tsx @@ -8,4 +8,4 @@ const IconAlarmOnSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconAlarmOnSharpFilled as default } +export default IconAlarmOnSharpFilled diff --git a/src/IconAlarmOutlined.tsx b/src/IconAlarmOutlined.tsx index b6a6ddd0b..b639ade2e 100644 --- a/src/IconAlarmOutlined.tsx +++ b/src/IconAlarmOutlined.tsx @@ -8,4 +8,4 @@ const IconAlarmOutlined: React.FC = ({ ...props }) => ( ) -export { IconAlarmOutlined as default } +export default IconAlarmOutlined diff --git a/src/IconAlarmOutlinedFilled.tsx b/src/IconAlarmOutlinedFilled.tsx index 4e992e944..ca041dab6 100644 --- a/src/IconAlarmOutlinedFilled.tsx +++ b/src/IconAlarmOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconAlarmOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconAlarmOutlinedFilled as default } +export default IconAlarmOutlinedFilled diff --git a/src/IconAlarmRounded.tsx b/src/IconAlarmRounded.tsx index 0ccb5cb18..7f1af1594 100644 --- a/src/IconAlarmRounded.tsx +++ b/src/IconAlarmRounded.tsx @@ -8,4 +8,4 @@ const IconAlarmRounded: React.FC = ({ ...props }) => ( ) -export { IconAlarmRounded as default } +export default IconAlarmRounded diff --git a/src/IconAlarmRoundedFilled.tsx b/src/IconAlarmRoundedFilled.tsx index 8a6f07231..27348a51d 100644 --- a/src/IconAlarmRoundedFilled.tsx +++ b/src/IconAlarmRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconAlarmRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconAlarmRoundedFilled as default } +export default IconAlarmRoundedFilled diff --git a/src/IconAlarmSharp.tsx b/src/IconAlarmSharp.tsx index c3817984c..2dbd84610 100644 --- a/src/IconAlarmSharp.tsx +++ b/src/IconAlarmSharp.tsx @@ -8,4 +8,4 @@ const IconAlarmSharp: React.FC = ({ ...props }) => ( ) -export { IconAlarmSharp as default } +export default IconAlarmSharp diff --git a/src/IconAlarmSharpFilled.tsx b/src/IconAlarmSharpFilled.tsx index 92d6dd33e..78087e2a8 100644 --- a/src/IconAlarmSharpFilled.tsx +++ b/src/IconAlarmSharpFilled.tsx @@ -8,4 +8,4 @@ const IconAlarmSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconAlarmSharpFilled as default } +export default IconAlarmSharpFilled diff --git a/src/IconAlarmSmartWakeOutlined.tsx b/src/IconAlarmSmartWakeOutlined.tsx index 3becac427..39c2a68ea 100644 --- a/src/IconAlarmSmartWakeOutlined.tsx +++ b/src/IconAlarmSmartWakeOutlined.tsx @@ -8,4 +8,4 @@ const IconAlarmSmartWakeOutlined: React.FC = ({ ...props }) => ( ) -export { IconAlarmSmartWakeOutlined as default } +export default IconAlarmSmartWakeOutlined diff --git a/src/IconAlarmSmartWakeOutlinedFilled.tsx b/src/IconAlarmSmartWakeOutlinedFilled.tsx index 48652b387..b279a2091 100644 --- a/src/IconAlarmSmartWakeOutlinedFilled.tsx +++ b/src/IconAlarmSmartWakeOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconAlarmSmartWakeOutlinedFilled: React.FC = ({ ) -export { IconAlarmSmartWakeOutlinedFilled as default } +export default IconAlarmSmartWakeOutlinedFilled diff --git a/src/IconAlarmSmartWakeRounded.tsx b/src/IconAlarmSmartWakeRounded.tsx index 9db0e11d0..1be9bd035 100644 --- a/src/IconAlarmSmartWakeRounded.tsx +++ b/src/IconAlarmSmartWakeRounded.tsx @@ -8,4 +8,4 @@ const IconAlarmSmartWakeRounded: React.FC = ({ ...props }) => ( ) -export { IconAlarmSmartWakeRounded as default } +export default IconAlarmSmartWakeRounded diff --git a/src/IconAlarmSmartWakeRoundedFilled.tsx b/src/IconAlarmSmartWakeRoundedFilled.tsx index 5352c2bc4..626a3285c 100644 --- a/src/IconAlarmSmartWakeRoundedFilled.tsx +++ b/src/IconAlarmSmartWakeRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconAlarmSmartWakeRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconAlarmSmartWakeRoundedFilled as default } +export default IconAlarmSmartWakeRoundedFilled diff --git a/src/IconAlarmSmartWakeSharp.tsx b/src/IconAlarmSmartWakeSharp.tsx index 9d740bf15..d4ffb5f33 100644 --- a/src/IconAlarmSmartWakeSharp.tsx +++ b/src/IconAlarmSmartWakeSharp.tsx @@ -8,4 +8,4 @@ const IconAlarmSmartWakeSharp: React.FC = ({ ...props }) => ( ) -export { IconAlarmSmartWakeSharp as default } +export default IconAlarmSmartWakeSharp diff --git a/src/IconAlarmSmartWakeSharpFilled.tsx b/src/IconAlarmSmartWakeSharpFilled.tsx index 2fac5e4e0..8c3055c12 100644 --- a/src/IconAlarmSmartWakeSharpFilled.tsx +++ b/src/IconAlarmSmartWakeSharpFilled.tsx @@ -8,4 +8,4 @@ const IconAlarmSmartWakeSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconAlarmSmartWakeSharpFilled as default } +export default IconAlarmSmartWakeSharpFilled diff --git a/src/IconAlbumOutlined.tsx b/src/IconAlbumOutlined.tsx index 9a39faf77..3e9536499 100644 --- a/src/IconAlbumOutlined.tsx +++ b/src/IconAlbumOutlined.tsx @@ -8,4 +8,4 @@ const IconAlbumOutlined: React.FC = ({ ...props }) => ( ) -export { IconAlbumOutlined as default } +export default IconAlbumOutlined diff --git a/src/IconAlbumOutlinedFilled.tsx b/src/IconAlbumOutlinedFilled.tsx index 4743fd6ed..990862475 100644 --- a/src/IconAlbumOutlinedFilled.tsx +++ b/src/IconAlbumOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconAlbumOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconAlbumOutlinedFilled as default } +export default IconAlbumOutlinedFilled diff --git a/src/IconAlbumRounded.tsx b/src/IconAlbumRounded.tsx index 28983bc35..00c2439c4 100644 --- a/src/IconAlbumRounded.tsx +++ b/src/IconAlbumRounded.tsx @@ -8,4 +8,4 @@ const IconAlbumRounded: React.FC = ({ ...props }) => ( ) -export { IconAlbumRounded as default } +export default IconAlbumRounded diff --git a/src/IconAlbumRoundedFilled.tsx b/src/IconAlbumRoundedFilled.tsx index 14218efe9..79dce35f3 100644 --- a/src/IconAlbumRoundedFilled.tsx +++ b/src/IconAlbumRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconAlbumRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconAlbumRoundedFilled as default } +export default IconAlbumRoundedFilled diff --git a/src/IconAlbumSharp.tsx b/src/IconAlbumSharp.tsx index acdedfbb4..a2cfd82fe 100644 --- a/src/IconAlbumSharp.tsx +++ b/src/IconAlbumSharp.tsx @@ -8,4 +8,4 @@ const IconAlbumSharp: React.FC = ({ ...props }) => ( ) -export { IconAlbumSharp as default } +export default IconAlbumSharp diff --git a/src/IconAlbumSharpFilled.tsx b/src/IconAlbumSharpFilled.tsx index 2c9a83793..0577c7990 100644 --- a/src/IconAlbumSharpFilled.tsx +++ b/src/IconAlbumSharpFilled.tsx @@ -8,4 +8,4 @@ const IconAlbumSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconAlbumSharpFilled as default } +export default IconAlbumSharpFilled diff --git a/src/IconAlignCenterOutlined.tsx b/src/IconAlignCenterOutlined.tsx index 5776795fe..d48e2e228 100644 --- a/src/IconAlignCenterOutlined.tsx +++ b/src/IconAlignCenterOutlined.tsx @@ -8,4 +8,4 @@ const IconAlignCenterOutlined: React.FC = ({ ...props }) => ( ) -export { IconAlignCenterOutlined as default } +export default IconAlignCenterOutlined diff --git a/src/IconAlignCenterOutlinedFilled.tsx b/src/IconAlignCenterOutlinedFilled.tsx index f5d1eb320..3279285ca 100644 --- a/src/IconAlignCenterOutlinedFilled.tsx +++ b/src/IconAlignCenterOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconAlignCenterOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconAlignCenterOutlinedFilled as default } +export default IconAlignCenterOutlinedFilled diff --git a/src/IconAlignCenterRounded.tsx b/src/IconAlignCenterRounded.tsx index d2d10e9de..7a827093f 100644 --- a/src/IconAlignCenterRounded.tsx +++ b/src/IconAlignCenterRounded.tsx @@ -8,4 +8,4 @@ const IconAlignCenterRounded: React.FC = ({ ...props }) => ( ) -export { IconAlignCenterRounded as default } +export default IconAlignCenterRounded diff --git a/src/IconAlignCenterRoundedFilled.tsx b/src/IconAlignCenterRoundedFilled.tsx index 569b35875..79de9c271 100644 --- a/src/IconAlignCenterRoundedFilled.tsx +++ b/src/IconAlignCenterRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconAlignCenterRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconAlignCenterRoundedFilled as default } +export default IconAlignCenterRoundedFilled diff --git a/src/IconAlignCenterSharp.tsx b/src/IconAlignCenterSharp.tsx index 5bf8a4573..ffe7db313 100644 --- a/src/IconAlignCenterSharp.tsx +++ b/src/IconAlignCenterSharp.tsx @@ -8,4 +8,4 @@ const IconAlignCenterSharp: React.FC = ({ ...props }) => ( ) -export { IconAlignCenterSharp as default } +export default IconAlignCenterSharp diff --git a/src/IconAlignCenterSharpFilled.tsx b/src/IconAlignCenterSharpFilled.tsx index 5bbc47a4b..ada587613 100644 --- a/src/IconAlignCenterSharpFilled.tsx +++ b/src/IconAlignCenterSharpFilled.tsx @@ -8,4 +8,4 @@ const IconAlignCenterSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconAlignCenterSharpFilled as default } +export default IconAlignCenterSharpFilled diff --git a/src/IconAlignEndOutlined.tsx b/src/IconAlignEndOutlined.tsx index 512520ffe..f18abecaa 100644 --- a/src/IconAlignEndOutlined.tsx +++ b/src/IconAlignEndOutlined.tsx @@ -8,4 +8,4 @@ const IconAlignEndOutlined: React.FC = ({ ...props }) => ( ) -export { IconAlignEndOutlined as default } +export default IconAlignEndOutlined diff --git a/src/IconAlignEndOutlinedFilled.tsx b/src/IconAlignEndOutlinedFilled.tsx index 5d6490587..bd2c4fd02 100644 --- a/src/IconAlignEndOutlinedFilled.tsx +++ b/src/IconAlignEndOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconAlignEndOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconAlignEndOutlinedFilled as default } +export default IconAlignEndOutlinedFilled diff --git a/src/IconAlignEndRounded.tsx b/src/IconAlignEndRounded.tsx index 2c51c367f..5e118b373 100644 --- a/src/IconAlignEndRounded.tsx +++ b/src/IconAlignEndRounded.tsx @@ -8,4 +8,4 @@ const IconAlignEndRounded: React.FC = ({ ...props }) => ( ) -export { IconAlignEndRounded as default } +export default IconAlignEndRounded diff --git a/src/IconAlignEndRoundedFilled.tsx b/src/IconAlignEndRoundedFilled.tsx index 4940bb11a..1a2153cd5 100644 --- a/src/IconAlignEndRoundedFilled.tsx +++ b/src/IconAlignEndRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconAlignEndRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconAlignEndRoundedFilled as default } +export default IconAlignEndRoundedFilled diff --git a/src/IconAlignEndSharp.tsx b/src/IconAlignEndSharp.tsx index b793f82f8..5dbecda7a 100644 --- a/src/IconAlignEndSharp.tsx +++ b/src/IconAlignEndSharp.tsx @@ -8,4 +8,4 @@ const IconAlignEndSharp: React.FC = ({ ...props }) => ( ) -export { IconAlignEndSharp as default } +export default IconAlignEndSharp diff --git a/src/IconAlignEndSharpFilled.tsx b/src/IconAlignEndSharpFilled.tsx index 14de660cb..6300f5613 100644 --- a/src/IconAlignEndSharpFilled.tsx +++ b/src/IconAlignEndSharpFilled.tsx @@ -8,4 +8,4 @@ const IconAlignEndSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconAlignEndSharpFilled as default } +export default IconAlignEndSharpFilled diff --git a/src/IconAlignFlexCenterOutlined.tsx b/src/IconAlignFlexCenterOutlined.tsx index 655f7e256..4c4784c46 100644 --- a/src/IconAlignFlexCenterOutlined.tsx +++ b/src/IconAlignFlexCenterOutlined.tsx @@ -8,4 +8,4 @@ const IconAlignFlexCenterOutlined: React.FC = ({ ...props }) => ( ) -export { IconAlignFlexCenterOutlined as default } +export default IconAlignFlexCenterOutlined diff --git a/src/IconAlignFlexCenterOutlinedFilled.tsx b/src/IconAlignFlexCenterOutlinedFilled.tsx index fe0f0f703..e988fd486 100644 --- a/src/IconAlignFlexCenterOutlinedFilled.tsx +++ b/src/IconAlignFlexCenterOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconAlignFlexCenterOutlinedFilled: React.FC = ({ ) -export { IconAlignFlexCenterOutlinedFilled as default } +export default IconAlignFlexCenterOutlinedFilled diff --git a/src/IconAlignFlexCenterRounded.tsx b/src/IconAlignFlexCenterRounded.tsx index aa18b7ffe..970d0cd8c 100644 --- a/src/IconAlignFlexCenterRounded.tsx +++ b/src/IconAlignFlexCenterRounded.tsx @@ -8,4 +8,4 @@ const IconAlignFlexCenterRounded: React.FC = ({ ...props }) => ( ) -export { IconAlignFlexCenterRounded as default } +export default IconAlignFlexCenterRounded diff --git a/src/IconAlignFlexCenterRoundedFilled.tsx b/src/IconAlignFlexCenterRoundedFilled.tsx index 8e2743737..6c2adab34 100644 --- a/src/IconAlignFlexCenterRoundedFilled.tsx +++ b/src/IconAlignFlexCenterRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconAlignFlexCenterRoundedFilled: React.FC = ({ ) -export { IconAlignFlexCenterRoundedFilled as default } +export default IconAlignFlexCenterRoundedFilled diff --git a/src/IconAlignFlexCenterSharp.tsx b/src/IconAlignFlexCenterSharp.tsx index 8f020bf40..2899a9de3 100644 --- a/src/IconAlignFlexCenterSharp.tsx +++ b/src/IconAlignFlexCenterSharp.tsx @@ -8,4 +8,4 @@ const IconAlignFlexCenterSharp: React.FC = ({ ...props }) => ( ) -export { IconAlignFlexCenterSharp as default } +export default IconAlignFlexCenterSharp diff --git a/src/IconAlignFlexCenterSharpFilled.tsx b/src/IconAlignFlexCenterSharpFilled.tsx index e505f48a5..c69d59acd 100644 --- a/src/IconAlignFlexCenterSharpFilled.tsx +++ b/src/IconAlignFlexCenterSharpFilled.tsx @@ -8,4 +8,4 @@ const IconAlignFlexCenterSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconAlignFlexCenterSharpFilled as default } +export default IconAlignFlexCenterSharpFilled diff --git a/src/IconAlignFlexEndOutlined.tsx b/src/IconAlignFlexEndOutlined.tsx index 0eac3205c..3acbe9247 100644 --- a/src/IconAlignFlexEndOutlined.tsx +++ b/src/IconAlignFlexEndOutlined.tsx @@ -8,4 +8,4 @@ const IconAlignFlexEndOutlined: React.FC = ({ ...props }) => ( ) -export { IconAlignFlexEndOutlined as default } +export default IconAlignFlexEndOutlined diff --git a/src/IconAlignFlexEndOutlinedFilled.tsx b/src/IconAlignFlexEndOutlinedFilled.tsx index 3f122cf11..a8e268b4a 100644 --- a/src/IconAlignFlexEndOutlinedFilled.tsx +++ b/src/IconAlignFlexEndOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconAlignFlexEndOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconAlignFlexEndOutlinedFilled as default } +export default IconAlignFlexEndOutlinedFilled diff --git a/src/IconAlignFlexEndRounded.tsx b/src/IconAlignFlexEndRounded.tsx index 803a929b2..939a9289e 100644 --- a/src/IconAlignFlexEndRounded.tsx +++ b/src/IconAlignFlexEndRounded.tsx @@ -8,4 +8,4 @@ const IconAlignFlexEndRounded: React.FC = ({ ...props }) => ( ) -export { IconAlignFlexEndRounded as default } +export default IconAlignFlexEndRounded diff --git a/src/IconAlignFlexEndRoundedFilled.tsx b/src/IconAlignFlexEndRoundedFilled.tsx index 77083deed..439ead413 100644 --- a/src/IconAlignFlexEndRoundedFilled.tsx +++ b/src/IconAlignFlexEndRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconAlignFlexEndRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconAlignFlexEndRoundedFilled as default } +export default IconAlignFlexEndRoundedFilled diff --git a/src/IconAlignFlexEndSharp.tsx b/src/IconAlignFlexEndSharp.tsx index 3426a7675..2a31e6ea5 100644 --- a/src/IconAlignFlexEndSharp.tsx +++ b/src/IconAlignFlexEndSharp.tsx @@ -8,4 +8,4 @@ const IconAlignFlexEndSharp: React.FC = ({ ...props }) => ( ) -export { IconAlignFlexEndSharp as default } +export default IconAlignFlexEndSharp diff --git a/src/IconAlignFlexEndSharpFilled.tsx b/src/IconAlignFlexEndSharpFilled.tsx index 0c66a7161..df006cae3 100644 --- a/src/IconAlignFlexEndSharpFilled.tsx +++ b/src/IconAlignFlexEndSharpFilled.tsx @@ -8,4 +8,4 @@ const IconAlignFlexEndSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconAlignFlexEndSharpFilled as default } +export default IconAlignFlexEndSharpFilled diff --git a/src/IconAlignFlexStartOutlined.tsx b/src/IconAlignFlexStartOutlined.tsx index bbdb193c3..47cc7f70f 100644 --- a/src/IconAlignFlexStartOutlined.tsx +++ b/src/IconAlignFlexStartOutlined.tsx @@ -8,4 +8,4 @@ const IconAlignFlexStartOutlined: React.FC = ({ ...props }) => ( ) -export { IconAlignFlexStartOutlined as default } +export default IconAlignFlexStartOutlined diff --git a/src/IconAlignFlexStartOutlinedFilled.tsx b/src/IconAlignFlexStartOutlinedFilled.tsx index 0a3b08b14..84be36e60 100644 --- a/src/IconAlignFlexStartOutlinedFilled.tsx +++ b/src/IconAlignFlexStartOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconAlignFlexStartOutlinedFilled: React.FC = ({ ) -export { IconAlignFlexStartOutlinedFilled as default } +export default IconAlignFlexStartOutlinedFilled diff --git a/src/IconAlignFlexStartRounded.tsx b/src/IconAlignFlexStartRounded.tsx index e034e0f3a..69b001ebf 100644 --- a/src/IconAlignFlexStartRounded.tsx +++ b/src/IconAlignFlexStartRounded.tsx @@ -8,4 +8,4 @@ const IconAlignFlexStartRounded: React.FC = ({ ...props }) => ( ) -export { IconAlignFlexStartRounded as default } +export default IconAlignFlexStartRounded diff --git a/src/IconAlignFlexStartRoundedFilled.tsx b/src/IconAlignFlexStartRoundedFilled.tsx index 968968453..4b6759c53 100644 --- a/src/IconAlignFlexStartRoundedFilled.tsx +++ b/src/IconAlignFlexStartRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconAlignFlexStartRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconAlignFlexStartRoundedFilled as default } +export default IconAlignFlexStartRoundedFilled diff --git a/src/IconAlignFlexStartSharp.tsx b/src/IconAlignFlexStartSharp.tsx index 7206bc475..c0c665978 100644 --- a/src/IconAlignFlexStartSharp.tsx +++ b/src/IconAlignFlexStartSharp.tsx @@ -8,4 +8,4 @@ const IconAlignFlexStartSharp: React.FC = ({ ...props }) => ( ) -export { IconAlignFlexStartSharp as default } +export default IconAlignFlexStartSharp diff --git a/src/IconAlignFlexStartSharpFilled.tsx b/src/IconAlignFlexStartSharpFilled.tsx index 71255492d..336d331f7 100644 --- a/src/IconAlignFlexStartSharpFilled.tsx +++ b/src/IconAlignFlexStartSharpFilled.tsx @@ -8,4 +8,4 @@ const IconAlignFlexStartSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconAlignFlexStartSharpFilled as default } +export default IconAlignFlexStartSharpFilled diff --git a/src/IconAlignHorizontalCenterOutlined.tsx b/src/IconAlignHorizontalCenterOutlined.tsx index b0fbc236f..3c11b4d62 100644 --- a/src/IconAlignHorizontalCenterOutlined.tsx +++ b/src/IconAlignHorizontalCenterOutlined.tsx @@ -10,4 +10,4 @@ const IconAlignHorizontalCenterOutlined: React.FC = ({ ) -export { IconAlignHorizontalCenterOutlined as default } +export default IconAlignHorizontalCenterOutlined diff --git a/src/IconAlignHorizontalCenterOutlinedFilled.tsx b/src/IconAlignHorizontalCenterOutlinedFilled.tsx index 53f0f137d..a6b6eb49e 100644 --- a/src/IconAlignHorizontalCenterOutlinedFilled.tsx +++ b/src/IconAlignHorizontalCenterOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconAlignHorizontalCenterOutlinedFilled: React.FC = ({ ) -export { IconAlignHorizontalCenterOutlinedFilled as default } +export default IconAlignHorizontalCenterOutlinedFilled diff --git a/src/IconAlignHorizontalCenterRounded.tsx b/src/IconAlignHorizontalCenterRounded.tsx index 75ce4d92f..d04becc0b 100644 --- a/src/IconAlignHorizontalCenterRounded.tsx +++ b/src/IconAlignHorizontalCenterRounded.tsx @@ -10,4 +10,4 @@ const IconAlignHorizontalCenterRounded: React.FC = ({ ) -export { IconAlignHorizontalCenterRounded as default } +export default IconAlignHorizontalCenterRounded diff --git a/src/IconAlignHorizontalCenterRoundedFilled.tsx b/src/IconAlignHorizontalCenterRoundedFilled.tsx index 04a210350..952788452 100644 --- a/src/IconAlignHorizontalCenterRoundedFilled.tsx +++ b/src/IconAlignHorizontalCenterRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconAlignHorizontalCenterRoundedFilled: React.FC = ({ ) -export { IconAlignHorizontalCenterRoundedFilled as default } +export default IconAlignHorizontalCenterRoundedFilled diff --git a/src/IconAlignHorizontalCenterSharp.tsx b/src/IconAlignHorizontalCenterSharp.tsx index 070cdca40..4eeca06ab 100644 --- a/src/IconAlignHorizontalCenterSharp.tsx +++ b/src/IconAlignHorizontalCenterSharp.tsx @@ -8,4 +8,4 @@ const IconAlignHorizontalCenterSharp: React.FC = ({ ...props }) => ( ) -export { IconAlignHorizontalCenterSharp as default } +export default IconAlignHorizontalCenterSharp diff --git a/src/IconAlignHorizontalCenterSharpFilled.tsx b/src/IconAlignHorizontalCenterSharpFilled.tsx index 7c291cec8..429d29249 100644 --- a/src/IconAlignHorizontalCenterSharpFilled.tsx +++ b/src/IconAlignHorizontalCenterSharpFilled.tsx @@ -10,4 +10,4 @@ const IconAlignHorizontalCenterSharpFilled: React.FC = ({ ) -export { IconAlignHorizontalCenterSharpFilled as default } +export default IconAlignHorizontalCenterSharpFilled diff --git a/src/IconAlignHorizontalLeftOutlined.tsx b/src/IconAlignHorizontalLeftOutlined.tsx index 873977c6c..02537a4bf 100644 --- a/src/IconAlignHorizontalLeftOutlined.tsx +++ b/src/IconAlignHorizontalLeftOutlined.tsx @@ -8,4 +8,4 @@ const IconAlignHorizontalLeftOutlined: React.FC = ({ ...props }) => ( ) -export { IconAlignHorizontalLeftOutlined as default } +export default IconAlignHorizontalLeftOutlined diff --git a/src/IconAlignHorizontalLeftOutlinedFilled.tsx b/src/IconAlignHorizontalLeftOutlinedFilled.tsx index 3241aea01..2cdf2445c 100644 --- a/src/IconAlignHorizontalLeftOutlinedFilled.tsx +++ b/src/IconAlignHorizontalLeftOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconAlignHorizontalLeftOutlinedFilled: React.FC = ({ ) -export { IconAlignHorizontalLeftOutlinedFilled as default } +export default IconAlignHorizontalLeftOutlinedFilled diff --git a/src/IconAlignHorizontalLeftRounded.tsx b/src/IconAlignHorizontalLeftRounded.tsx index 8e47b9c32..4741def42 100644 --- a/src/IconAlignHorizontalLeftRounded.tsx +++ b/src/IconAlignHorizontalLeftRounded.tsx @@ -8,4 +8,4 @@ const IconAlignHorizontalLeftRounded: React.FC = ({ ...props }) => ( ) -export { IconAlignHorizontalLeftRounded as default } +export default IconAlignHorizontalLeftRounded diff --git a/src/IconAlignHorizontalLeftRoundedFilled.tsx b/src/IconAlignHorizontalLeftRoundedFilled.tsx index 7c8ddfaa2..1c3d1804e 100644 --- a/src/IconAlignHorizontalLeftRoundedFilled.tsx +++ b/src/IconAlignHorizontalLeftRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconAlignHorizontalLeftRoundedFilled: React.FC = ({ ) -export { IconAlignHorizontalLeftRoundedFilled as default } +export default IconAlignHorizontalLeftRoundedFilled diff --git a/src/IconAlignHorizontalLeftSharp.tsx b/src/IconAlignHorizontalLeftSharp.tsx index c4c1ec51b..e6f6920e6 100644 --- a/src/IconAlignHorizontalLeftSharp.tsx +++ b/src/IconAlignHorizontalLeftSharp.tsx @@ -8,4 +8,4 @@ const IconAlignHorizontalLeftSharp: React.FC = ({ ...props }) => ( ) -export { IconAlignHorizontalLeftSharp as default } +export default IconAlignHorizontalLeftSharp diff --git a/src/IconAlignHorizontalLeftSharpFilled.tsx b/src/IconAlignHorizontalLeftSharpFilled.tsx index 95985562a..9b3f5602b 100644 --- a/src/IconAlignHorizontalLeftSharpFilled.tsx +++ b/src/IconAlignHorizontalLeftSharpFilled.tsx @@ -10,4 +10,4 @@ const IconAlignHorizontalLeftSharpFilled: React.FC = ({ ) -export { IconAlignHorizontalLeftSharpFilled as default } +export default IconAlignHorizontalLeftSharpFilled diff --git a/src/IconAlignHorizontalRightOutlined.tsx b/src/IconAlignHorizontalRightOutlined.tsx index c609cdfca..15ddb5515 100644 --- a/src/IconAlignHorizontalRightOutlined.tsx +++ b/src/IconAlignHorizontalRightOutlined.tsx @@ -10,4 +10,4 @@ const IconAlignHorizontalRightOutlined: React.FC = ({ ) -export { IconAlignHorizontalRightOutlined as default } +export default IconAlignHorizontalRightOutlined diff --git a/src/IconAlignHorizontalRightOutlinedFilled.tsx b/src/IconAlignHorizontalRightOutlinedFilled.tsx index fb959e290..123b41ebf 100644 --- a/src/IconAlignHorizontalRightOutlinedFilled.tsx +++ b/src/IconAlignHorizontalRightOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconAlignHorizontalRightOutlinedFilled: React.FC = ({ ) -export { IconAlignHorizontalRightOutlinedFilled as default } +export default IconAlignHorizontalRightOutlinedFilled diff --git a/src/IconAlignHorizontalRightRounded.tsx b/src/IconAlignHorizontalRightRounded.tsx index 8889a619c..cc517c421 100644 --- a/src/IconAlignHorizontalRightRounded.tsx +++ b/src/IconAlignHorizontalRightRounded.tsx @@ -8,4 +8,4 @@ const IconAlignHorizontalRightRounded: React.FC = ({ ...props }) => ( ) -export { IconAlignHorizontalRightRounded as default } +export default IconAlignHorizontalRightRounded diff --git a/src/IconAlignHorizontalRightRoundedFilled.tsx b/src/IconAlignHorizontalRightRoundedFilled.tsx index 8ad6c4858..c477551e0 100644 --- a/src/IconAlignHorizontalRightRoundedFilled.tsx +++ b/src/IconAlignHorizontalRightRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconAlignHorizontalRightRoundedFilled: React.FC = ({ ) -export { IconAlignHorizontalRightRoundedFilled as default } +export default IconAlignHorizontalRightRoundedFilled diff --git a/src/IconAlignHorizontalRightSharp.tsx b/src/IconAlignHorizontalRightSharp.tsx index ccaa4d7cf..c87a1a4dc 100644 --- a/src/IconAlignHorizontalRightSharp.tsx +++ b/src/IconAlignHorizontalRightSharp.tsx @@ -8,4 +8,4 @@ const IconAlignHorizontalRightSharp: React.FC = ({ ...props }) => ( ) -export { IconAlignHorizontalRightSharp as default } +export default IconAlignHorizontalRightSharp diff --git a/src/IconAlignHorizontalRightSharpFilled.tsx b/src/IconAlignHorizontalRightSharpFilled.tsx index 67c59cb65..c591ecf7a 100644 --- a/src/IconAlignHorizontalRightSharpFilled.tsx +++ b/src/IconAlignHorizontalRightSharpFilled.tsx @@ -10,4 +10,4 @@ const IconAlignHorizontalRightSharpFilled: React.FC = ({ ) -export { IconAlignHorizontalRightSharpFilled as default } +export default IconAlignHorizontalRightSharpFilled diff --git a/src/IconAlignItemsStretchOutlined.tsx b/src/IconAlignItemsStretchOutlined.tsx index 30088103d..c637deedd 100644 --- a/src/IconAlignItemsStretchOutlined.tsx +++ b/src/IconAlignItemsStretchOutlined.tsx @@ -8,4 +8,4 @@ const IconAlignItemsStretchOutlined: React.FC = ({ ...props }) => ( ) -export { IconAlignItemsStretchOutlined as default } +export default IconAlignItemsStretchOutlined diff --git a/src/IconAlignItemsStretchOutlinedFilled.tsx b/src/IconAlignItemsStretchOutlinedFilled.tsx index 8305b5d66..293e245f7 100644 --- a/src/IconAlignItemsStretchOutlinedFilled.tsx +++ b/src/IconAlignItemsStretchOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconAlignItemsStretchOutlinedFilled: React.FC = ({ ) -export { IconAlignItemsStretchOutlinedFilled as default } +export default IconAlignItemsStretchOutlinedFilled diff --git a/src/IconAlignItemsStretchRounded.tsx b/src/IconAlignItemsStretchRounded.tsx index 5ccabd618..935f9b0a4 100644 --- a/src/IconAlignItemsStretchRounded.tsx +++ b/src/IconAlignItemsStretchRounded.tsx @@ -8,4 +8,4 @@ const IconAlignItemsStretchRounded: React.FC = ({ ...props }) => ( ) -export { IconAlignItemsStretchRounded as default } +export default IconAlignItemsStretchRounded diff --git a/src/IconAlignItemsStretchRoundedFilled.tsx b/src/IconAlignItemsStretchRoundedFilled.tsx index 1d51bb6bd..5d6a29a23 100644 --- a/src/IconAlignItemsStretchRoundedFilled.tsx +++ b/src/IconAlignItemsStretchRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconAlignItemsStretchRoundedFilled: React.FC = ({ ) -export { IconAlignItemsStretchRoundedFilled as default } +export default IconAlignItemsStretchRoundedFilled diff --git a/src/IconAlignItemsStretchSharp.tsx b/src/IconAlignItemsStretchSharp.tsx index d0f76f585..33c123665 100644 --- a/src/IconAlignItemsStretchSharp.tsx +++ b/src/IconAlignItemsStretchSharp.tsx @@ -8,4 +8,4 @@ const IconAlignItemsStretchSharp: React.FC = ({ ...props }) => ( ) -export { IconAlignItemsStretchSharp as default } +export default IconAlignItemsStretchSharp diff --git a/src/IconAlignItemsStretchSharpFilled.tsx b/src/IconAlignItemsStretchSharpFilled.tsx index 990677906..c3639db4f 100644 --- a/src/IconAlignItemsStretchSharpFilled.tsx +++ b/src/IconAlignItemsStretchSharpFilled.tsx @@ -10,4 +10,4 @@ const IconAlignItemsStretchSharpFilled: React.FC = ({ ) -export { IconAlignItemsStretchSharpFilled as default } +export default IconAlignItemsStretchSharpFilled diff --git a/src/IconAlignJustifyCenterOutlined.tsx b/src/IconAlignJustifyCenterOutlined.tsx index 370cc0528..8dd5efd8f 100644 --- a/src/IconAlignJustifyCenterOutlined.tsx +++ b/src/IconAlignJustifyCenterOutlined.tsx @@ -8,4 +8,4 @@ const IconAlignJustifyCenterOutlined: React.FC = ({ ...props }) => ( ) -export { IconAlignJustifyCenterOutlined as default } +export default IconAlignJustifyCenterOutlined diff --git a/src/IconAlignJustifyCenterOutlinedFilled.tsx b/src/IconAlignJustifyCenterOutlinedFilled.tsx index 7d4bcda67..bff1af2af 100644 --- a/src/IconAlignJustifyCenterOutlinedFilled.tsx +++ b/src/IconAlignJustifyCenterOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconAlignJustifyCenterOutlinedFilled: React.FC = ({ ) -export { IconAlignJustifyCenterOutlinedFilled as default } +export default IconAlignJustifyCenterOutlinedFilled diff --git a/src/IconAlignJustifyCenterRounded.tsx b/src/IconAlignJustifyCenterRounded.tsx index a8e68963b..26a444985 100644 --- a/src/IconAlignJustifyCenterRounded.tsx +++ b/src/IconAlignJustifyCenterRounded.tsx @@ -8,4 +8,4 @@ const IconAlignJustifyCenterRounded: React.FC = ({ ...props }) => ( ) -export { IconAlignJustifyCenterRounded as default } +export default IconAlignJustifyCenterRounded diff --git a/src/IconAlignJustifyCenterRoundedFilled.tsx b/src/IconAlignJustifyCenterRoundedFilled.tsx index 9a1702f06..4be893482 100644 --- a/src/IconAlignJustifyCenterRoundedFilled.tsx +++ b/src/IconAlignJustifyCenterRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconAlignJustifyCenterRoundedFilled: React.FC = ({ ) -export { IconAlignJustifyCenterRoundedFilled as default } +export default IconAlignJustifyCenterRoundedFilled diff --git a/src/IconAlignJustifyCenterSharp.tsx b/src/IconAlignJustifyCenterSharp.tsx index defd8dec2..42404a10c 100644 --- a/src/IconAlignJustifyCenterSharp.tsx +++ b/src/IconAlignJustifyCenterSharp.tsx @@ -8,4 +8,4 @@ const IconAlignJustifyCenterSharp: React.FC = ({ ...props }) => ( ) -export { IconAlignJustifyCenterSharp as default } +export default IconAlignJustifyCenterSharp diff --git a/src/IconAlignJustifyCenterSharpFilled.tsx b/src/IconAlignJustifyCenterSharpFilled.tsx index 3632450d1..235c3764a 100644 --- a/src/IconAlignJustifyCenterSharpFilled.tsx +++ b/src/IconAlignJustifyCenterSharpFilled.tsx @@ -10,4 +10,4 @@ const IconAlignJustifyCenterSharpFilled: React.FC = ({ ) -export { IconAlignJustifyCenterSharpFilled as default } +export default IconAlignJustifyCenterSharpFilled diff --git a/src/IconAlignJustifyFlexEndOutlined.tsx b/src/IconAlignJustifyFlexEndOutlined.tsx index 90e150c59..d9bf6cb7b 100644 --- a/src/IconAlignJustifyFlexEndOutlined.tsx +++ b/src/IconAlignJustifyFlexEndOutlined.tsx @@ -8,4 +8,4 @@ const IconAlignJustifyFlexEndOutlined: React.FC = ({ ...props }) => ( ) -export { IconAlignJustifyFlexEndOutlined as default } +export default IconAlignJustifyFlexEndOutlined diff --git a/src/IconAlignJustifyFlexEndOutlinedFilled.tsx b/src/IconAlignJustifyFlexEndOutlinedFilled.tsx index 3f9df7d15..9082ed67f 100644 --- a/src/IconAlignJustifyFlexEndOutlinedFilled.tsx +++ b/src/IconAlignJustifyFlexEndOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconAlignJustifyFlexEndOutlinedFilled: React.FC = ({ ) -export { IconAlignJustifyFlexEndOutlinedFilled as default } +export default IconAlignJustifyFlexEndOutlinedFilled diff --git a/src/IconAlignJustifyFlexEndRounded.tsx b/src/IconAlignJustifyFlexEndRounded.tsx index 6c6d4c6c6..ea780ae91 100644 --- a/src/IconAlignJustifyFlexEndRounded.tsx +++ b/src/IconAlignJustifyFlexEndRounded.tsx @@ -8,4 +8,4 @@ const IconAlignJustifyFlexEndRounded: React.FC = ({ ...props }) => ( ) -export { IconAlignJustifyFlexEndRounded as default } +export default IconAlignJustifyFlexEndRounded diff --git a/src/IconAlignJustifyFlexEndRoundedFilled.tsx b/src/IconAlignJustifyFlexEndRoundedFilled.tsx index 2715fe668..032a72b61 100644 --- a/src/IconAlignJustifyFlexEndRoundedFilled.tsx +++ b/src/IconAlignJustifyFlexEndRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconAlignJustifyFlexEndRoundedFilled: React.FC = ({ ) -export { IconAlignJustifyFlexEndRoundedFilled as default } +export default IconAlignJustifyFlexEndRoundedFilled diff --git a/src/IconAlignJustifyFlexEndSharp.tsx b/src/IconAlignJustifyFlexEndSharp.tsx index 6ed236b98..41d0ea39c 100644 --- a/src/IconAlignJustifyFlexEndSharp.tsx +++ b/src/IconAlignJustifyFlexEndSharp.tsx @@ -8,4 +8,4 @@ const IconAlignJustifyFlexEndSharp: React.FC = ({ ...props }) => ( ) -export { IconAlignJustifyFlexEndSharp as default } +export default IconAlignJustifyFlexEndSharp diff --git a/src/IconAlignJustifyFlexEndSharpFilled.tsx b/src/IconAlignJustifyFlexEndSharpFilled.tsx index 792d3067f..4b2f601d9 100644 --- a/src/IconAlignJustifyFlexEndSharpFilled.tsx +++ b/src/IconAlignJustifyFlexEndSharpFilled.tsx @@ -10,4 +10,4 @@ const IconAlignJustifyFlexEndSharpFilled: React.FC = ({ ) -export { IconAlignJustifyFlexEndSharpFilled as default } +export default IconAlignJustifyFlexEndSharpFilled diff --git a/src/IconAlignJustifyFlexStartOutlined.tsx b/src/IconAlignJustifyFlexStartOutlined.tsx index 9d0487644..beeba1fbf 100644 --- a/src/IconAlignJustifyFlexStartOutlined.tsx +++ b/src/IconAlignJustifyFlexStartOutlined.tsx @@ -10,4 +10,4 @@ const IconAlignJustifyFlexStartOutlined: React.FC = ({ ) -export { IconAlignJustifyFlexStartOutlined as default } +export default IconAlignJustifyFlexStartOutlined diff --git a/src/IconAlignJustifyFlexStartOutlinedFilled.tsx b/src/IconAlignJustifyFlexStartOutlinedFilled.tsx index 5dea38dc8..f2ffc7717 100644 --- a/src/IconAlignJustifyFlexStartOutlinedFilled.tsx +++ b/src/IconAlignJustifyFlexStartOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconAlignJustifyFlexStartOutlinedFilled: React.FC = ({ ) -export { IconAlignJustifyFlexStartOutlinedFilled as default } +export default IconAlignJustifyFlexStartOutlinedFilled diff --git a/src/IconAlignJustifyFlexStartRounded.tsx b/src/IconAlignJustifyFlexStartRounded.tsx index 07fb878c1..f16f3c2bf 100644 --- a/src/IconAlignJustifyFlexStartRounded.tsx +++ b/src/IconAlignJustifyFlexStartRounded.tsx @@ -10,4 +10,4 @@ const IconAlignJustifyFlexStartRounded: React.FC = ({ ) -export { IconAlignJustifyFlexStartRounded as default } +export default IconAlignJustifyFlexStartRounded diff --git a/src/IconAlignJustifyFlexStartRoundedFilled.tsx b/src/IconAlignJustifyFlexStartRoundedFilled.tsx index e2780cc28..95330deb4 100644 --- a/src/IconAlignJustifyFlexStartRoundedFilled.tsx +++ b/src/IconAlignJustifyFlexStartRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconAlignJustifyFlexStartRoundedFilled: React.FC = ({ ) -export { IconAlignJustifyFlexStartRoundedFilled as default } +export default IconAlignJustifyFlexStartRoundedFilled diff --git a/src/IconAlignJustifyFlexStartSharp.tsx b/src/IconAlignJustifyFlexStartSharp.tsx index 98a36a4e6..e79bd62e4 100644 --- a/src/IconAlignJustifyFlexStartSharp.tsx +++ b/src/IconAlignJustifyFlexStartSharp.tsx @@ -8,4 +8,4 @@ const IconAlignJustifyFlexStartSharp: React.FC = ({ ...props }) => ( ) -export { IconAlignJustifyFlexStartSharp as default } +export default IconAlignJustifyFlexStartSharp diff --git a/src/IconAlignJustifyFlexStartSharpFilled.tsx b/src/IconAlignJustifyFlexStartSharpFilled.tsx index a9d5d4c07..03e9b40f0 100644 --- a/src/IconAlignJustifyFlexStartSharpFilled.tsx +++ b/src/IconAlignJustifyFlexStartSharpFilled.tsx @@ -10,4 +10,4 @@ const IconAlignJustifyFlexStartSharpFilled: React.FC = ({ ) -export { IconAlignJustifyFlexStartSharpFilled as default } +export default IconAlignJustifyFlexStartSharpFilled diff --git a/src/IconAlignJustifySpaceAroundOutlined.tsx b/src/IconAlignJustifySpaceAroundOutlined.tsx index b5fdfaffa..ea3cc3a14 100644 --- a/src/IconAlignJustifySpaceAroundOutlined.tsx +++ b/src/IconAlignJustifySpaceAroundOutlined.tsx @@ -10,4 +10,4 @@ const IconAlignJustifySpaceAroundOutlined: React.FC = ({ ) -export { IconAlignJustifySpaceAroundOutlined as default } +export default IconAlignJustifySpaceAroundOutlined diff --git a/src/IconAlignJustifySpaceAroundOutlinedFilled.tsx b/src/IconAlignJustifySpaceAroundOutlinedFilled.tsx index 342bd03ef..17354d4f2 100644 --- a/src/IconAlignJustifySpaceAroundOutlinedFilled.tsx +++ b/src/IconAlignJustifySpaceAroundOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconAlignJustifySpaceAroundOutlinedFilled: React.FC = ({ ) -export { IconAlignJustifySpaceAroundOutlinedFilled as default } +export default IconAlignJustifySpaceAroundOutlinedFilled diff --git a/src/IconAlignJustifySpaceAroundRounded.tsx b/src/IconAlignJustifySpaceAroundRounded.tsx index 689995f24..5fe5759e7 100644 --- a/src/IconAlignJustifySpaceAroundRounded.tsx +++ b/src/IconAlignJustifySpaceAroundRounded.tsx @@ -10,4 +10,4 @@ const IconAlignJustifySpaceAroundRounded: React.FC = ({ ) -export { IconAlignJustifySpaceAroundRounded as default } +export default IconAlignJustifySpaceAroundRounded diff --git a/src/IconAlignJustifySpaceAroundRoundedFilled.tsx b/src/IconAlignJustifySpaceAroundRoundedFilled.tsx index 20ad72ddf..ad62bff48 100644 --- a/src/IconAlignJustifySpaceAroundRoundedFilled.tsx +++ b/src/IconAlignJustifySpaceAroundRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconAlignJustifySpaceAroundRoundedFilled: React.FC = ({ ) -export { IconAlignJustifySpaceAroundRoundedFilled as default } +export default IconAlignJustifySpaceAroundRoundedFilled diff --git a/src/IconAlignJustifySpaceAroundSharp.tsx b/src/IconAlignJustifySpaceAroundSharp.tsx index 413175284..4a72a0f2a 100644 --- a/src/IconAlignJustifySpaceAroundSharp.tsx +++ b/src/IconAlignJustifySpaceAroundSharp.tsx @@ -10,4 +10,4 @@ const IconAlignJustifySpaceAroundSharp: React.FC = ({ ) -export { IconAlignJustifySpaceAroundSharp as default } +export default IconAlignJustifySpaceAroundSharp diff --git a/src/IconAlignJustifySpaceAroundSharpFilled.tsx b/src/IconAlignJustifySpaceAroundSharpFilled.tsx index 8c3af8027..a9e2255a5 100644 --- a/src/IconAlignJustifySpaceAroundSharpFilled.tsx +++ b/src/IconAlignJustifySpaceAroundSharpFilled.tsx @@ -10,4 +10,4 @@ const IconAlignJustifySpaceAroundSharpFilled: React.FC = ({ ) -export { IconAlignJustifySpaceAroundSharpFilled as default } +export default IconAlignJustifySpaceAroundSharpFilled diff --git a/src/IconAlignJustifySpaceBetweenOutlined.tsx b/src/IconAlignJustifySpaceBetweenOutlined.tsx index 4ea7d89f0..7521eaaea 100644 --- a/src/IconAlignJustifySpaceBetweenOutlined.tsx +++ b/src/IconAlignJustifySpaceBetweenOutlined.tsx @@ -10,4 +10,4 @@ const IconAlignJustifySpaceBetweenOutlined: React.FC = ({ ) -export { IconAlignJustifySpaceBetweenOutlined as default } +export default IconAlignJustifySpaceBetweenOutlined diff --git a/src/IconAlignJustifySpaceBetweenOutlinedFilled.tsx b/src/IconAlignJustifySpaceBetweenOutlinedFilled.tsx index a13ef7d23..274ce84ae 100644 --- a/src/IconAlignJustifySpaceBetweenOutlinedFilled.tsx +++ b/src/IconAlignJustifySpaceBetweenOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconAlignJustifySpaceBetweenOutlinedFilled: React.FC = ({ ) -export { IconAlignJustifySpaceBetweenOutlinedFilled as default } +export default IconAlignJustifySpaceBetweenOutlinedFilled diff --git a/src/IconAlignJustifySpaceBetweenRounded.tsx b/src/IconAlignJustifySpaceBetweenRounded.tsx index 8d1a746eb..e575336e3 100644 --- a/src/IconAlignJustifySpaceBetweenRounded.tsx +++ b/src/IconAlignJustifySpaceBetweenRounded.tsx @@ -10,4 +10,4 @@ const IconAlignJustifySpaceBetweenRounded: React.FC = ({ ) -export { IconAlignJustifySpaceBetweenRounded as default } +export default IconAlignJustifySpaceBetweenRounded diff --git a/src/IconAlignJustifySpaceBetweenRoundedFilled.tsx b/src/IconAlignJustifySpaceBetweenRoundedFilled.tsx index c2674200d..92e6e2245 100644 --- a/src/IconAlignJustifySpaceBetweenRoundedFilled.tsx +++ b/src/IconAlignJustifySpaceBetweenRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconAlignJustifySpaceBetweenRoundedFilled: React.FC = ({ ) -export { IconAlignJustifySpaceBetweenRoundedFilled as default } +export default IconAlignJustifySpaceBetweenRoundedFilled diff --git a/src/IconAlignJustifySpaceBetweenSharp.tsx b/src/IconAlignJustifySpaceBetweenSharp.tsx index 8cf7b8409..488f45ea2 100644 --- a/src/IconAlignJustifySpaceBetweenSharp.tsx +++ b/src/IconAlignJustifySpaceBetweenSharp.tsx @@ -10,4 +10,4 @@ const IconAlignJustifySpaceBetweenSharp: React.FC = ({ ) -export { IconAlignJustifySpaceBetweenSharp as default } +export default IconAlignJustifySpaceBetweenSharp diff --git a/src/IconAlignJustifySpaceBetweenSharpFilled.tsx b/src/IconAlignJustifySpaceBetweenSharpFilled.tsx index b971e9e7c..815326ef8 100644 --- a/src/IconAlignJustifySpaceBetweenSharpFilled.tsx +++ b/src/IconAlignJustifySpaceBetweenSharpFilled.tsx @@ -10,4 +10,4 @@ const IconAlignJustifySpaceBetweenSharpFilled: React.FC = ({ ) -export { IconAlignJustifySpaceBetweenSharpFilled as default } +export default IconAlignJustifySpaceBetweenSharpFilled diff --git a/src/IconAlignJustifySpaceEvenOutlined.tsx b/src/IconAlignJustifySpaceEvenOutlined.tsx index 5a563e43b..c79300746 100644 --- a/src/IconAlignJustifySpaceEvenOutlined.tsx +++ b/src/IconAlignJustifySpaceEvenOutlined.tsx @@ -10,4 +10,4 @@ const IconAlignJustifySpaceEvenOutlined: React.FC = ({ ) -export { IconAlignJustifySpaceEvenOutlined as default } +export default IconAlignJustifySpaceEvenOutlined diff --git a/src/IconAlignJustifySpaceEvenOutlinedFilled.tsx b/src/IconAlignJustifySpaceEvenOutlinedFilled.tsx index abafee77e..a759ff420 100644 --- a/src/IconAlignJustifySpaceEvenOutlinedFilled.tsx +++ b/src/IconAlignJustifySpaceEvenOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconAlignJustifySpaceEvenOutlinedFilled: React.FC = ({ ) -export { IconAlignJustifySpaceEvenOutlinedFilled as default } +export default IconAlignJustifySpaceEvenOutlinedFilled diff --git a/src/IconAlignJustifySpaceEvenRounded.tsx b/src/IconAlignJustifySpaceEvenRounded.tsx index aa918578a..2ea2b49c0 100644 --- a/src/IconAlignJustifySpaceEvenRounded.tsx +++ b/src/IconAlignJustifySpaceEvenRounded.tsx @@ -10,4 +10,4 @@ const IconAlignJustifySpaceEvenRounded: React.FC = ({ ) -export { IconAlignJustifySpaceEvenRounded as default } +export default IconAlignJustifySpaceEvenRounded diff --git a/src/IconAlignJustifySpaceEvenRoundedFilled.tsx b/src/IconAlignJustifySpaceEvenRoundedFilled.tsx index d21b2717a..4316eba55 100644 --- a/src/IconAlignJustifySpaceEvenRoundedFilled.tsx +++ b/src/IconAlignJustifySpaceEvenRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconAlignJustifySpaceEvenRoundedFilled: React.FC = ({ ) -export { IconAlignJustifySpaceEvenRoundedFilled as default } +export default IconAlignJustifySpaceEvenRoundedFilled diff --git a/src/IconAlignJustifySpaceEvenSharp.tsx b/src/IconAlignJustifySpaceEvenSharp.tsx index 90c6fa7ac..4d516d602 100644 --- a/src/IconAlignJustifySpaceEvenSharp.tsx +++ b/src/IconAlignJustifySpaceEvenSharp.tsx @@ -8,4 +8,4 @@ const IconAlignJustifySpaceEvenSharp: React.FC = ({ ...props }) => ( ) -export { IconAlignJustifySpaceEvenSharp as default } +export default IconAlignJustifySpaceEvenSharp diff --git a/src/IconAlignJustifySpaceEvenSharpFilled.tsx b/src/IconAlignJustifySpaceEvenSharpFilled.tsx index 55985ea00..85d65a4ac 100644 --- a/src/IconAlignJustifySpaceEvenSharpFilled.tsx +++ b/src/IconAlignJustifySpaceEvenSharpFilled.tsx @@ -10,4 +10,4 @@ const IconAlignJustifySpaceEvenSharpFilled: React.FC = ({ ) -export { IconAlignJustifySpaceEvenSharpFilled as default } +export default IconAlignJustifySpaceEvenSharpFilled diff --git a/src/IconAlignJustifyStretchOutlined.tsx b/src/IconAlignJustifyStretchOutlined.tsx index fd89c23fb..4994fd403 100644 --- a/src/IconAlignJustifyStretchOutlined.tsx +++ b/src/IconAlignJustifyStretchOutlined.tsx @@ -8,4 +8,4 @@ const IconAlignJustifyStretchOutlined: React.FC = ({ ...props }) => ( ) -export { IconAlignJustifyStretchOutlined as default } +export default IconAlignJustifyStretchOutlined diff --git a/src/IconAlignJustifyStretchOutlinedFilled.tsx b/src/IconAlignJustifyStretchOutlinedFilled.tsx index 991f2b4e6..cd3d66d63 100644 --- a/src/IconAlignJustifyStretchOutlinedFilled.tsx +++ b/src/IconAlignJustifyStretchOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconAlignJustifyStretchOutlinedFilled: React.FC = ({ ) -export { IconAlignJustifyStretchOutlinedFilled as default } +export default IconAlignJustifyStretchOutlinedFilled diff --git a/src/IconAlignJustifyStretchRounded.tsx b/src/IconAlignJustifyStretchRounded.tsx index 8bd03ee1b..17a14973c 100644 --- a/src/IconAlignJustifyStretchRounded.tsx +++ b/src/IconAlignJustifyStretchRounded.tsx @@ -8,4 +8,4 @@ const IconAlignJustifyStretchRounded: React.FC = ({ ...props }) => ( ) -export { IconAlignJustifyStretchRounded as default } +export default IconAlignJustifyStretchRounded diff --git a/src/IconAlignJustifyStretchRoundedFilled.tsx b/src/IconAlignJustifyStretchRoundedFilled.tsx index ccb5fa9a1..106415fa9 100644 --- a/src/IconAlignJustifyStretchRoundedFilled.tsx +++ b/src/IconAlignJustifyStretchRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconAlignJustifyStretchRoundedFilled: React.FC = ({ ) -export { IconAlignJustifyStretchRoundedFilled as default } +export default IconAlignJustifyStretchRoundedFilled diff --git a/src/IconAlignJustifyStretchSharp.tsx b/src/IconAlignJustifyStretchSharp.tsx index a1a7b127e..5361e39b7 100644 --- a/src/IconAlignJustifyStretchSharp.tsx +++ b/src/IconAlignJustifyStretchSharp.tsx @@ -8,4 +8,4 @@ const IconAlignJustifyStretchSharp: React.FC = ({ ...props }) => ( ) -export { IconAlignJustifyStretchSharp as default } +export default IconAlignJustifyStretchSharp diff --git a/src/IconAlignJustifyStretchSharpFilled.tsx b/src/IconAlignJustifyStretchSharpFilled.tsx index 3f8415c36..ec060f4f5 100644 --- a/src/IconAlignJustifyStretchSharpFilled.tsx +++ b/src/IconAlignJustifyStretchSharpFilled.tsx @@ -10,4 +10,4 @@ const IconAlignJustifyStretchSharpFilled: React.FC = ({ ) -export { IconAlignJustifyStretchSharpFilled as default } +export default IconAlignJustifyStretchSharpFilled diff --git a/src/IconAlignSelfStretchOutlined.tsx b/src/IconAlignSelfStretchOutlined.tsx index 9a9f65c58..0ac330af9 100644 --- a/src/IconAlignSelfStretchOutlined.tsx +++ b/src/IconAlignSelfStretchOutlined.tsx @@ -8,4 +8,4 @@ const IconAlignSelfStretchOutlined: React.FC = ({ ...props }) => ( ) -export { IconAlignSelfStretchOutlined as default } +export default IconAlignSelfStretchOutlined diff --git a/src/IconAlignSelfStretchOutlinedFilled.tsx b/src/IconAlignSelfStretchOutlinedFilled.tsx index a0539fe5e..cd9efea96 100644 --- a/src/IconAlignSelfStretchOutlinedFilled.tsx +++ b/src/IconAlignSelfStretchOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconAlignSelfStretchOutlinedFilled: React.FC = ({ ) -export { IconAlignSelfStretchOutlinedFilled as default } +export default IconAlignSelfStretchOutlinedFilled diff --git a/src/IconAlignSelfStretchRounded.tsx b/src/IconAlignSelfStretchRounded.tsx index 1443f33b8..076292926 100644 --- a/src/IconAlignSelfStretchRounded.tsx +++ b/src/IconAlignSelfStretchRounded.tsx @@ -8,4 +8,4 @@ const IconAlignSelfStretchRounded: React.FC = ({ ...props }) => ( ) -export { IconAlignSelfStretchRounded as default } +export default IconAlignSelfStretchRounded diff --git a/src/IconAlignSelfStretchRoundedFilled.tsx b/src/IconAlignSelfStretchRoundedFilled.tsx index a349b3b30..8836026cb 100644 --- a/src/IconAlignSelfStretchRoundedFilled.tsx +++ b/src/IconAlignSelfStretchRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconAlignSelfStretchRoundedFilled: React.FC = ({ ) -export { IconAlignSelfStretchRoundedFilled as default } +export default IconAlignSelfStretchRoundedFilled diff --git a/src/IconAlignSelfStretchSharp.tsx b/src/IconAlignSelfStretchSharp.tsx index dd87996f4..55b7885c2 100644 --- a/src/IconAlignSelfStretchSharp.tsx +++ b/src/IconAlignSelfStretchSharp.tsx @@ -8,4 +8,4 @@ const IconAlignSelfStretchSharp: React.FC = ({ ...props }) => ( ) -export { IconAlignSelfStretchSharp as default } +export default IconAlignSelfStretchSharp diff --git a/src/IconAlignSelfStretchSharpFilled.tsx b/src/IconAlignSelfStretchSharpFilled.tsx index b8524dd68..783ddcb5c 100644 --- a/src/IconAlignSelfStretchSharpFilled.tsx +++ b/src/IconAlignSelfStretchSharpFilled.tsx @@ -8,4 +8,4 @@ const IconAlignSelfStretchSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconAlignSelfStretchSharpFilled as default } +export default IconAlignSelfStretchSharpFilled diff --git a/src/IconAlignSpaceAroundOutlined.tsx b/src/IconAlignSpaceAroundOutlined.tsx index 0a4f7d810..6f4a5a143 100644 --- a/src/IconAlignSpaceAroundOutlined.tsx +++ b/src/IconAlignSpaceAroundOutlined.tsx @@ -8,4 +8,4 @@ const IconAlignSpaceAroundOutlined: React.FC = ({ ...props }) => ( ) -export { IconAlignSpaceAroundOutlined as default } +export default IconAlignSpaceAroundOutlined diff --git a/src/IconAlignSpaceAroundOutlinedFilled.tsx b/src/IconAlignSpaceAroundOutlinedFilled.tsx index 90a174776..938664324 100644 --- a/src/IconAlignSpaceAroundOutlinedFilled.tsx +++ b/src/IconAlignSpaceAroundOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconAlignSpaceAroundOutlinedFilled: React.FC = ({ ) -export { IconAlignSpaceAroundOutlinedFilled as default } +export default IconAlignSpaceAroundOutlinedFilled diff --git a/src/IconAlignSpaceAroundRounded.tsx b/src/IconAlignSpaceAroundRounded.tsx index fb232d98e..8efbf8e77 100644 --- a/src/IconAlignSpaceAroundRounded.tsx +++ b/src/IconAlignSpaceAroundRounded.tsx @@ -8,4 +8,4 @@ const IconAlignSpaceAroundRounded: React.FC = ({ ...props }) => ( ) -export { IconAlignSpaceAroundRounded as default } +export default IconAlignSpaceAroundRounded diff --git a/src/IconAlignSpaceAroundRoundedFilled.tsx b/src/IconAlignSpaceAroundRoundedFilled.tsx index 880f6e648..8e7902bd5 100644 --- a/src/IconAlignSpaceAroundRoundedFilled.tsx +++ b/src/IconAlignSpaceAroundRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconAlignSpaceAroundRoundedFilled: React.FC = ({ ) -export { IconAlignSpaceAroundRoundedFilled as default } +export default IconAlignSpaceAroundRoundedFilled diff --git a/src/IconAlignSpaceAroundSharp.tsx b/src/IconAlignSpaceAroundSharp.tsx index fd36787f1..ac178fa9f 100644 --- a/src/IconAlignSpaceAroundSharp.tsx +++ b/src/IconAlignSpaceAroundSharp.tsx @@ -8,4 +8,4 @@ const IconAlignSpaceAroundSharp: React.FC = ({ ...props }) => ( ) -export { IconAlignSpaceAroundSharp as default } +export default IconAlignSpaceAroundSharp diff --git a/src/IconAlignSpaceAroundSharpFilled.tsx b/src/IconAlignSpaceAroundSharpFilled.tsx index 52b4764a3..8f8804604 100644 --- a/src/IconAlignSpaceAroundSharpFilled.tsx +++ b/src/IconAlignSpaceAroundSharpFilled.tsx @@ -8,4 +8,4 @@ const IconAlignSpaceAroundSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconAlignSpaceAroundSharpFilled as default } +export default IconAlignSpaceAroundSharpFilled diff --git a/src/IconAlignSpaceBetweenOutlined.tsx b/src/IconAlignSpaceBetweenOutlined.tsx index 626f91d23..bc6bbcaa8 100644 --- a/src/IconAlignSpaceBetweenOutlined.tsx +++ b/src/IconAlignSpaceBetweenOutlined.tsx @@ -8,4 +8,4 @@ const IconAlignSpaceBetweenOutlined: React.FC = ({ ...props }) => ( ) -export { IconAlignSpaceBetweenOutlined as default } +export default IconAlignSpaceBetweenOutlined diff --git a/src/IconAlignSpaceBetweenOutlinedFilled.tsx b/src/IconAlignSpaceBetweenOutlinedFilled.tsx index 87f0f6879..2f1b551eb 100644 --- a/src/IconAlignSpaceBetweenOutlinedFilled.tsx +++ b/src/IconAlignSpaceBetweenOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconAlignSpaceBetweenOutlinedFilled: React.FC = ({ ) -export { IconAlignSpaceBetweenOutlinedFilled as default } +export default IconAlignSpaceBetweenOutlinedFilled diff --git a/src/IconAlignSpaceBetweenRounded.tsx b/src/IconAlignSpaceBetweenRounded.tsx index 9e4352233..61c6a3542 100644 --- a/src/IconAlignSpaceBetweenRounded.tsx +++ b/src/IconAlignSpaceBetweenRounded.tsx @@ -8,4 +8,4 @@ const IconAlignSpaceBetweenRounded: React.FC = ({ ...props }) => ( ) -export { IconAlignSpaceBetweenRounded as default } +export default IconAlignSpaceBetweenRounded diff --git a/src/IconAlignSpaceBetweenRoundedFilled.tsx b/src/IconAlignSpaceBetweenRoundedFilled.tsx index e7a6051cf..fb8790d31 100644 --- a/src/IconAlignSpaceBetweenRoundedFilled.tsx +++ b/src/IconAlignSpaceBetweenRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconAlignSpaceBetweenRoundedFilled: React.FC = ({ ) -export { IconAlignSpaceBetweenRoundedFilled as default } +export default IconAlignSpaceBetweenRoundedFilled diff --git a/src/IconAlignSpaceBetweenSharp.tsx b/src/IconAlignSpaceBetweenSharp.tsx index 469162ade..09329ae45 100644 --- a/src/IconAlignSpaceBetweenSharp.tsx +++ b/src/IconAlignSpaceBetweenSharp.tsx @@ -8,4 +8,4 @@ const IconAlignSpaceBetweenSharp: React.FC = ({ ...props }) => ( ) -export { IconAlignSpaceBetweenSharp as default } +export default IconAlignSpaceBetweenSharp diff --git a/src/IconAlignSpaceBetweenSharpFilled.tsx b/src/IconAlignSpaceBetweenSharpFilled.tsx index 2cb2c6f10..e932c4e99 100644 --- a/src/IconAlignSpaceBetweenSharpFilled.tsx +++ b/src/IconAlignSpaceBetweenSharpFilled.tsx @@ -10,4 +10,4 @@ const IconAlignSpaceBetweenSharpFilled: React.FC = ({ ) -export { IconAlignSpaceBetweenSharpFilled as default } +export default IconAlignSpaceBetweenSharpFilled diff --git a/src/IconAlignSpaceEvenOutlined.tsx b/src/IconAlignSpaceEvenOutlined.tsx index 279a9fd42..c4ba254b0 100644 --- a/src/IconAlignSpaceEvenOutlined.tsx +++ b/src/IconAlignSpaceEvenOutlined.tsx @@ -8,4 +8,4 @@ const IconAlignSpaceEvenOutlined: React.FC = ({ ...props }) => ( ) -export { IconAlignSpaceEvenOutlined as default } +export default IconAlignSpaceEvenOutlined diff --git a/src/IconAlignSpaceEvenOutlinedFilled.tsx b/src/IconAlignSpaceEvenOutlinedFilled.tsx index 5d8ec932a..5ead9c9af 100644 --- a/src/IconAlignSpaceEvenOutlinedFilled.tsx +++ b/src/IconAlignSpaceEvenOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconAlignSpaceEvenOutlinedFilled: React.FC = ({ ) -export { IconAlignSpaceEvenOutlinedFilled as default } +export default IconAlignSpaceEvenOutlinedFilled diff --git a/src/IconAlignSpaceEvenRounded.tsx b/src/IconAlignSpaceEvenRounded.tsx index f1e464740..9d03212f4 100644 --- a/src/IconAlignSpaceEvenRounded.tsx +++ b/src/IconAlignSpaceEvenRounded.tsx @@ -8,4 +8,4 @@ const IconAlignSpaceEvenRounded: React.FC = ({ ...props }) => ( ) -export { IconAlignSpaceEvenRounded as default } +export default IconAlignSpaceEvenRounded diff --git a/src/IconAlignSpaceEvenRoundedFilled.tsx b/src/IconAlignSpaceEvenRoundedFilled.tsx index 3df3e9d12..402553f58 100644 --- a/src/IconAlignSpaceEvenRoundedFilled.tsx +++ b/src/IconAlignSpaceEvenRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconAlignSpaceEvenRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconAlignSpaceEvenRoundedFilled as default } +export default IconAlignSpaceEvenRoundedFilled diff --git a/src/IconAlignSpaceEvenSharp.tsx b/src/IconAlignSpaceEvenSharp.tsx index da8362d66..9eef9e4fe 100644 --- a/src/IconAlignSpaceEvenSharp.tsx +++ b/src/IconAlignSpaceEvenSharp.tsx @@ -8,4 +8,4 @@ const IconAlignSpaceEvenSharp: React.FC = ({ ...props }) => ( ) -export { IconAlignSpaceEvenSharp as default } +export default IconAlignSpaceEvenSharp diff --git a/src/IconAlignSpaceEvenSharpFilled.tsx b/src/IconAlignSpaceEvenSharpFilled.tsx index 8ec27d80b..6364fa952 100644 --- a/src/IconAlignSpaceEvenSharpFilled.tsx +++ b/src/IconAlignSpaceEvenSharpFilled.tsx @@ -8,4 +8,4 @@ const IconAlignSpaceEvenSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconAlignSpaceEvenSharpFilled as default } +export default IconAlignSpaceEvenSharpFilled diff --git a/src/IconAlignStartOutlined.tsx b/src/IconAlignStartOutlined.tsx index 039c70b86..458483792 100644 --- a/src/IconAlignStartOutlined.tsx +++ b/src/IconAlignStartOutlined.tsx @@ -8,4 +8,4 @@ const IconAlignStartOutlined: React.FC = ({ ...props }) => ( ) -export { IconAlignStartOutlined as default } +export default IconAlignStartOutlined diff --git a/src/IconAlignStartOutlinedFilled.tsx b/src/IconAlignStartOutlinedFilled.tsx index 42848d59e..71c528d51 100644 --- a/src/IconAlignStartOutlinedFilled.tsx +++ b/src/IconAlignStartOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconAlignStartOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconAlignStartOutlinedFilled as default } +export default IconAlignStartOutlinedFilled diff --git a/src/IconAlignStartRounded.tsx b/src/IconAlignStartRounded.tsx index 34c400e2d..2ca81f6e8 100644 --- a/src/IconAlignStartRounded.tsx +++ b/src/IconAlignStartRounded.tsx @@ -8,4 +8,4 @@ const IconAlignStartRounded: React.FC = ({ ...props }) => ( ) -export { IconAlignStartRounded as default } +export default IconAlignStartRounded diff --git a/src/IconAlignStartRoundedFilled.tsx b/src/IconAlignStartRoundedFilled.tsx index a91843880..a6148d803 100644 --- a/src/IconAlignStartRoundedFilled.tsx +++ b/src/IconAlignStartRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconAlignStartRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconAlignStartRoundedFilled as default } +export default IconAlignStartRoundedFilled diff --git a/src/IconAlignStartSharp.tsx b/src/IconAlignStartSharp.tsx index 99a5da624..1e572ed09 100644 --- a/src/IconAlignStartSharp.tsx +++ b/src/IconAlignStartSharp.tsx @@ -8,4 +8,4 @@ const IconAlignStartSharp: React.FC = ({ ...props }) => ( ) -export { IconAlignStartSharp as default } +export default IconAlignStartSharp diff --git a/src/IconAlignStartSharpFilled.tsx b/src/IconAlignStartSharpFilled.tsx index 01d4d0fcb..02a32ddca 100644 --- a/src/IconAlignStartSharpFilled.tsx +++ b/src/IconAlignStartSharpFilled.tsx @@ -8,4 +8,4 @@ const IconAlignStartSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconAlignStartSharpFilled as default } +export default IconAlignStartSharpFilled diff --git a/src/IconAlignStretchOutlined.tsx b/src/IconAlignStretchOutlined.tsx index 57886c8a4..bb1001879 100644 --- a/src/IconAlignStretchOutlined.tsx +++ b/src/IconAlignStretchOutlined.tsx @@ -8,4 +8,4 @@ const IconAlignStretchOutlined: React.FC = ({ ...props }) => ( ) -export { IconAlignStretchOutlined as default } +export default IconAlignStretchOutlined diff --git a/src/IconAlignStretchOutlinedFilled.tsx b/src/IconAlignStretchOutlinedFilled.tsx index d030715ab..68800f6a3 100644 --- a/src/IconAlignStretchOutlinedFilled.tsx +++ b/src/IconAlignStretchOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconAlignStretchOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconAlignStretchOutlinedFilled as default } +export default IconAlignStretchOutlinedFilled diff --git a/src/IconAlignStretchRounded.tsx b/src/IconAlignStretchRounded.tsx index 99c99d4db..7388567e7 100644 --- a/src/IconAlignStretchRounded.tsx +++ b/src/IconAlignStretchRounded.tsx @@ -8,4 +8,4 @@ const IconAlignStretchRounded: React.FC = ({ ...props }) => ( ) -export { IconAlignStretchRounded as default } +export default IconAlignStretchRounded diff --git a/src/IconAlignStretchRoundedFilled.tsx b/src/IconAlignStretchRoundedFilled.tsx index fa312b9cc..43b4e5af4 100644 --- a/src/IconAlignStretchRoundedFilled.tsx +++ b/src/IconAlignStretchRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconAlignStretchRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconAlignStretchRoundedFilled as default } +export default IconAlignStretchRoundedFilled diff --git a/src/IconAlignStretchSharp.tsx b/src/IconAlignStretchSharp.tsx index 46c5bb8a5..c2f0b2016 100644 --- a/src/IconAlignStretchSharp.tsx +++ b/src/IconAlignStretchSharp.tsx @@ -8,4 +8,4 @@ const IconAlignStretchSharp: React.FC = ({ ...props }) => ( ) -export { IconAlignStretchSharp as default } +export default IconAlignStretchSharp diff --git a/src/IconAlignStretchSharpFilled.tsx b/src/IconAlignStretchSharpFilled.tsx index 8d43158f3..49a223411 100644 --- a/src/IconAlignStretchSharpFilled.tsx +++ b/src/IconAlignStretchSharpFilled.tsx @@ -8,4 +8,4 @@ const IconAlignStretchSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconAlignStretchSharpFilled as default } +export default IconAlignStretchSharpFilled diff --git a/src/IconAlignVerticalBottomOutlined.tsx b/src/IconAlignVerticalBottomOutlined.tsx index 0ef0f0801..957459374 100644 --- a/src/IconAlignVerticalBottomOutlined.tsx +++ b/src/IconAlignVerticalBottomOutlined.tsx @@ -8,4 +8,4 @@ const IconAlignVerticalBottomOutlined: React.FC = ({ ...props }) => ( ) -export { IconAlignVerticalBottomOutlined as default } +export default IconAlignVerticalBottomOutlined diff --git a/src/IconAlignVerticalBottomOutlinedFilled.tsx b/src/IconAlignVerticalBottomOutlinedFilled.tsx index 693654cc0..2cf113550 100644 --- a/src/IconAlignVerticalBottomOutlinedFilled.tsx +++ b/src/IconAlignVerticalBottomOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconAlignVerticalBottomOutlinedFilled: React.FC = ({ ) -export { IconAlignVerticalBottomOutlinedFilled as default } +export default IconAlignVerticalBottomOutlinedFilled diff --git a/src/IconAlignVerticalBottomRounded.tsx b/src/IconAlignVerticalBottomRounded.tsx index 64575f544..7c5ac3cd2 100644 --- a/src/IconAlignVerticalBottomRounded.tsx +++ b/src/IconAlignVerticalBottomRounded.tsx @@ -8,4 +8,4 @@ const IconAlignVerticalBottomRounded: React.FC = ({ ...props }) => ( ) -export { IconAlignVerticalBottomRounded as default } +export default IconAlignVerticalBottomRounded diff --git a/src/IconAlignVerticalBottomRoundedFilled.tsx b/src/IconAlignVerticalBottomRoundedFilled.tsx index 4c031b230..828b18bd8 100644 --- a/src/IconAlignVerticalBottomRoundedFilled.tsx +++ b/src/IconAlignVerticalBottomRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconAlignVerticalBottomRoundedFilled: React.FC = ({ ) -export { IconAlignVerticalBottomRoundedFilled as default } +export default IconAlignVerticalBottomRoundedFilled diff --git a/src/IconAlignVerticalBottomSharp.tsx b/src/IconAlignVerticalBottomSharp.tsx index 8b31a3b34..925421ba7 100644 --- a/src/IconAlignVerticalBottomSharp.tsx +++ b/src/IconAlignVerticalBottomSharp.tsx @@ -8,4 +8,4 @@ const IconAlignVerticalBottomSharp: React.FC = ({ ...props }) => ( ) -export { IconAlignVerticalBottomSharp as default } +export default IconAlignVerticalBottomSharp diff --git a/src/IconAlignVerticalBottomSharpFilled.tsx b/src/IconAlignVerticalBottomSharpFilled.tsx index b15533f7b..ce6fcafe1 100644 --- a/src/IconAlignVerticalBottomSharpFilled.tsx +++ b/src/IconAlignVerticalBottomSharpFilled.tsx @@ -10,4 +10,4 @@ const IconAlignVerticalBottomSharpFilled: React.FC = ({ ) -export { IconAlignVerticalBottomSharpFilled as default } +export default IconAlignVerticalBottomSharpFilled diff --git a/src/IconAlignVerticalCenterOutlined.tsx b/src/IconAlignVerticalCenterOutlined.tsx index e90bc1fd7..b95187593 100644 --- a/src/IconAlignVerticalCenterOutlined.tsx +++ b/src/IconAlignVerticalCenterOutlined.tsx @@ -8,4 +8,4 @@ const IconAlignVerticalCenterOutlined: React.FC = ({ ...props }) => ( ) -export { IconAlignVerticalCenterOutlined as default } +export default IconAlignVerticalCenterOutlined diff --git a/src/IconAlignVerticalCenterOutlinedFilled.tsx b/src/IconAlignVerticalCenterOutlinedFilled.tsx index b2ac3fee6..e07712787 100644 --- a/src/IconAlignVerticalCenterOutlinedFilled.tsx +++ b/src/IconAlignVerticalCenterOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconAlignVerticalCenterOutlinedFilled: React.FC = ({ ) -export { IconAlignVerticalCenterOutlinedFilled as default } +export default IconAlignVerticalCenterOutlinedFilled diff --git a/src/IconAlignVerticalCenterRounded.tsx b/src/IconAlignVerticalCenterRounded.tsx index d611ecd31..24cfbad2e 100644 --- a/src/IconAlignVerticalCenterRounded.tsx +++ b/src/IconAlignVerticalCenterRounded.tsx @@ -8,4 +8,4 @@ const IconAlignVerticalCenterRounded: React.FC = ({ ...props }) => ( ) -export { IconAlignVerticalCenterRounded as default } +export default IconAlignVerticalCenterRounded diff --git a/src/IconAlignVerticalCenterRoundedFilled.tsx b/src/IconAlignVerticalCenterRoundedFilled.tsx index 5cc00c734..3449aa77f 100644 --- a/src/IconAlignVerticalCenterRoundedFilled.tsx +++ b/src/IconAlignVerticalCenterRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconAlignVerticalCenterRoundedFilled: React.FC = ({ ) -export { IconAlignVerticalCenterRoundedFilled as default } +export default IconAlignVerticalCenterRoundedFilled diff --git a/src/IconAlignVerticalCenterSharp.tsx b/src/IconAlignVerticalCenterSharp.tsx index 694cfaaf5..f00617d98 100644 --- a/src/IconAlignVerticalCenterSharp.tsx +++ b/src/IconAlignVerticalCenterSharp.tsx @@ -8,4 +8,4 @@ const IconAlignVerticalCenterSharp: React.FC = ({ ...props }) => ( ) -export { IconAlignVerticalCenterSharp as default } +export default IconAlignVerticalCenterSharp diff --git a/src/IconAlignVerticalCenterSharpFilled.tsx b/src/IconAlignVerticalCenterSharpFilled.tsx index aaf885a91..89d8dd570 100644 --- a/src/IconAlignVerticalCenterSharpFilled.tsx +++ b/src/IconAlignVerticalCenterSharpFilled.tsx @@ -10,4 +10,4 @@ const IconAlignVerticalCenterSharpFilled: React.FC = ({ ) -export { IconAlignVerticalCenterSharpFilled as default } +export default IconAlignVerticalCenterSharpFilled diff --git a/src/IconAlignVerticalTopOutlined.tsx b/src/IconAlignVerticalTopOutlined.tsx index a22737bcf..4a9987397 100644 --- a/src/IconAlignVerticalTopOutlined.tsx +++ b/src/IconAlignVerticalTopOutlined.tsx @@ -8,4 +8,4 @@ const IconAlignVerticalTopOutlined: React.FC = ({ ...props }) => ( ) -export { IconAlignVerticalTopOutlined as default } +export default IconAlignVerticalTopOutlined diff --git a/src/IconAlignVerticalTopOutlinedFilled.tsx b/src/IconAlignVerticalTopOutlinedFilled.tsx index 17c4f6a3e..a2d4779ca 100644 --- a/src/IconAlignVerticalTopOutlinedFilled.tsx +++ b/src/IconAlignVerticalTopOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconAlignVerticalTopOutlinedFilled: React.FC = ({ ) -export { IconAlignVerticalTopOutlinedFilled as default } +export default IconAlignVerticalTopOutlinedFilled diff --git a/src/IconAlignVerticalTopRounded.tsx b/src/IconAlignVerticalTopRounded.tsx index 20df854ef..11b1fd606 100644 --- a/src/IconAlignVerticalTopRounded.tsx +++ b/src/IconAlignVerticalTopRounded.tsx @@ -8,4 +8,4 @@ const IconAlignVerticalTopRounded: React.FC = ({ ...props }) => ( ) -export { IconAlignVerticalTopRounded as default } +export default IconAlignVerticalTopRounded diff --git a/src/IconAlignVerticalTopRoundedFilled.tsx b/src/IconAlignVerticalTopRoundedFilled.tsx index 21cf5ddb7..f745e3f3c 100644 --- a/src/IconAlignVerticalTopRoundedFilled.tsx +++ b/src/IconAlignVerticalTopRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconAlignVerticalTopRoundedFilled: React.FC = ({ ) -export { IconAlignVerticalTopRoundedFilled as default } +export default IconAlignVerticalTopRoundedFilled diff --git a/src/IconAlignVerticalTopSharp.tsx b/src/IconAlignVerticalTopSharp.tsx index c649fc0e6..692fb7939 100644 --- a/src/IconAlignVerticalTopSharp.tsx +++ b/src/IconAlignVerticalTopSharp.tsx @@ -8,4 +8,4 @@ const IconAlignVerticalTopSharp: React.FC = ({ ...props }) => ( ) -export { IconAlignVerticalTopSharp as default } +export default IconAlignVerticalTopSharp diff --git a/src/IconAlignVerticalTopSharpFilled.tsx b/src/IconAlignVerticalTopSharpFilled.tsx index 7c14e18bd..d23d3877f 100644 --- a/src/IconAlignVerticalTopSharpFilled.tsx +++ b/src/IconAlignVerticalTopSharpFilled.tsx @@ -8,4 +8,4 @@ const IconAlignVerticalTopSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconAlignVerticalTopSharpFilled as default } +export default IconAlignVerticalTopSharpFilled diff --git a/src/IconAllInboxOutlined.tsx b/src/IconAllInboxOutlined.tsx index 354421944..3a30ae2b8 100644 --- a/src/IconAllInboxOutlined.tsx +++ b/src/IconAllInboxOutlined.tsx @@ -8,4 +8,4 @@ const IconAllInboxOutlined: React.FC = ({ ...props }) => ( ) -export { IconAllInboxOutlined as default } +export default IconAllInboxOutlined diff --git a/src/IconAllInboxOutlinedFilled.tsx b/src/IconAllInboxOutlinedFilled.tsx index 9c8deb27b..8ae56bb96 100644 --- a/src/IconAllInboxOutlinedFilled.tsx +++ b/src/IconAllInboxOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconAllInboxOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconAllInboxOutlinedFilled as default } +export default IconAllInboxOutlinedFilled diff --git a/src/IconAllInboxRounded.tsx b/src/IconAllInboxRounded.tsx index 86e224071..b746bfb64 100644 --- a/src/IconAllInboxRounded.tsx +++ b/src/IconAllInboxRounded.tsx @@ -8,4 +8,4 @@ const IconAllInboxRounded: React.FC = ({ ...props }) => ( ) -export { IconAllInboxRounded as default } +export default IconAllInboxRounded diff --git a/src/IconAllInboxRoundedFilled.tsx b/src/IconAllInboxRoundedFilled.tsx index a9518d49b..63a801b11 100644 --- a/src/IconAllInboxRoundedFilled.tsx +++ b/src/IconAllInboxRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconAllInboxRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconAllInboxRoundedFilled as default } +export default IconAllInboxRoundedFilled diff --git a/src/IconAllInboxSharp.tsx b/src/IconAllInboxSharp.tsx index 9d83c04c3..ff8c812e2 100644 --- a/src/IconAllInboxSharp.tsx +++ b/src/IconAllInboxSharp.tsx @@ -8,4 +8,4 @@ const IconAllInboxSharp: React.FC = ({ ...props }) => ( ) -export { IconAllInboxSharp as default } +export default IconAllInboxSharp diff --git a/src/IconAllInboxSharpFilled.tsx b/src/IconAllInboxSharpFilled.tsx index 794ac0441..944748d5f 100644 --- a/src/IconAllInboxSharpFilled.tsx +++ b/src/IconAllInboxSharpFilled.tsx @@ -8,4 +8,4 @@ const IconAllInboxSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconAllInboxSharpFilled as default } +export default IconAllInboxSharpFilled diff --git a/src/IconAllInclusiveOutlined.tsx b/src/IconAllInclusiveOutlined.tsx index caa38b201..264496d12 100644 --- a/src/IconAllInclusiveOutlined.tsx +++ b/src/IconAllInclusiveOutlined.tsx @@ -8,4 +8,4 @@ const IconAllInclusiveOutlined: React.FC = ({ ...props }) => ( ) -export { IconAllInclusiveOutlined as default } +export default IconAllInclusiveOutlined diff --git a/src/IconAllInclusiveOutlinedFilled.tsx b/src/IconAllInclusiveOutlinedFilled.tsx index ce8c531dd..3cbc67a59 100644 --- a/src/IconAllInclusiveOutlinedFilled.tsx +++ b/src/IconAllInclusiveOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconAllInclusiveOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconAllInclusiveOutlinedFilled as default } +export default IconAllInclusiveOutlinedFilled diff --git a/src/IconAllInclusiveRounded.tsx b/src/IconAllInclusiveRounded.tsx index d273c58d6..04014c617 100644 --- a/src/IconAllInclusiveRounded.tsx +++ b/src/IconAllInclusiveRounded.tsx @@ -8,4 +8,4 @@ const IconAllInclusiveRounded: React.FC = ({ ...props }) => ( ) -export { IconAllInclusiveRounded as default } +export default IconAllInclusiveRounded diff --git a/src/IconAllInclusiveRoundedFilled.tsx b/src/IconAllInclusiveRoundedFilled.tsx index f2cfb3287..bbf07d2fa 100644 --- a/src/IconAllInclusiveRoundedFilled.tsx +++ b/src/IconAllInclusiveRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconAllInclusiveRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconAllInclusiveRoundedFilled as default } +export default IconAllInclusiveRoundedFilled diff --git a/src/IconAllInclusiveSharp.tsx b/src/IconAllInclusiveSharp.tsx index 1e1a93d5c..34cd91da1 100644 --- a/src/IconAllInclusiveSharp.tsx +++ b/src/IconAllInclusiveSharp.tsx @@ -8,4 +8,4 @@ const IconAllInclusiveSharp: React.FC = ({ ...props }) => ( ) -export { IconAllInclusiveSharp as default } +export default IconAllInclusiveSharp diff --git a/src/IconAllInclusiveSharpFilled.tsx b/src/IconAllInclusiveSharpFilled.tsx index fd824c78b..1c765de54 100644 --- a/src/IconAllInclusiveSharpFilled.tsx +++ b/src/IconAllInclusiveSharpFilled.tsx @@ -8,4 +8,4 @@ const IconAllInclusiveSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconAllInclusiveSharpFilled as default } +export default IconAllInclusiveSharpFilled diff --git a/src/IconAllMatchOutlined.tsx b/src/IconAllMatchOutlined.tsx index d197c71a5..be1c4d0b0 100644 --- a/src/IconAllMatchOutlined.tsx +++ b/src/IconAllMatchOutlined.tsx @@ -8,4 +8,4 @@ const IconAllMatchOutlined: React.FC = ({ ...props }) => ( ) -export { IconAllMatchOutlined as default } +export default IconAllMatchOutlined diff --git a/src/IconAllMatchOutlinedFilled.tsx b/src/IconAllMatchOutlinedFilled.tsx index bc628058e..5aa3512fb 100644 --- a/src/IconAllMatchOutlinedFilled.tsx +++ b/src/IconAllMatchOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconAllMatchOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconAllMatchOutlinedFilled as default } +export default IconAllMatchOutlinedFilled diff --git a/src/IconAllMatchRounded.tsx b/src/IconAllMatchRounded.tsx index f2357ea3c..a779d4aab 100644 --- a/src/IconAllMatchRounded.tsx +++ b/src/IconAllMatchRounded.tsx @@ -8,4 +8,4 @@ const IconAllMatchRounded: React.FC = ({ ...props }) => ( ) -export { IconAllMatchRounded as default } +export default IconAllMatchRounded diff --git a/src/IconAllMatchRoundedFilled.tsx b/src/IconAllMatchRoundedFilled.tsx index 4c9f4c5c5..79e67f9d9 100644 --- a/src/IconAllMatchRoundedFilled.tsx +++ b/src/IconAllMatchRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconAllMatchRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconAllMatchRoundedFilled as default } +export default IconAllMatchRoundedFilled diff --git a/src/IconAllMatchSharp.tsx b/src/IconAllMatchSharp.tsx index 2eea6ef3f..e002064d8 100644 --- a/src/IconAllMatchSharp.tsx +++ b/src/IconAllMatchSharp.tsx @@ -8,4 +8,4 @@ const IconAllMatchSharp: React.FC = ({ ...props }) => ( ) -export { IconAllMatchSharp as default } +export default IconAllMatchSharp diff --git a/src/IconAllMatchSharpFilled.tsx b/src/IconAllMatchSharpFilled.tsx index 41c0babb7..4790b01ae 100644 --- a/src/IconAllMatchSharpFilled.tsx +++ b/src/IconAllMatchSharpFilled.tsx @@ -8,4 +8,4 @@ const IconAllMatchSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconAllMatchSharpFilled as default } +export default IconAllMatchSharpFilled diff --git a/src/IconAllOutOutlined.tsx b/src/IconAllOutOutlined.tsx index 90d5c57e0..fa6f8d0d8 100644 --- a/src/IconAllOutOutlined.tsx +++ b/src/IconAllOutOutlined.tsx @@ -8,4 +8,4 @@ const IconAllOutOutlined: React.FC = ({ ...props }) => ( ) -export { IconAllOutOutlined as default } +export default IconAllOutOutlined diff --git a/src/IconAllOutOutlinedFilled.tsx b/src/IconAllOutOutlinedFilled.tsx index 6fe4592c8..ca4ae91ea 100644 --- a/src/IconAllOutOutlinedFilled.tsx +++ b/src/IconAllOutOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconAllOutOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconAllOutOutlinedFilled as default } +export default IconAllOutOutlinedFilled diff --git a/src/IconAllOutRounded.tsx b/src/IconAllOutRounded.tsx index 24050eb81..077a13c91 100644 --- a/src/IconAllOutRounded.tsx +++ b/src/IconAllOutRounded.tsx @@ -8,4 +8,4 @@ const IconAllOutRounded: React.FC = ({ ...props }) => ( ) -export { IconAllOutRounded as default } +export default IconAllOutRounded diff --git a/src/IconAllOutRoundedFilled.tsx b/src/IconAllOutRoundedFilled.tsx index d6c3c2deb..da8649ecf 100644 --- a/src/IconAllOutRoundedFilled.tsx +++ b/src/IconAllOutRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconAllOutRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconAllOutRoundedFilled as default } +export default IconAllOutRoundedFilled diff --git a/src/IconAllOutSharp.tsx b/src/IconAllOutSharp.tsx index 1e6ee28b9..d514eaa61 100644 --- a/src/IconAllOutSharp.tsx +++ b/src/IconAllOutSharp.tsx @@ -8,4 +8,4 @@ const IconAllOutSharp: React.FC = ({ ...props }) => ( ) -export { IconAllOutSharp as default } +export default IconAllOutSharp diff --git a/src/IconAllOutSharpFilled.tsx b/src/IconAllOutSharpFilled.tsx index 345a7fbe5..2d9599f2e 100644 --- a/src/IconAllOutSharpFilled.tsx +++ b/src/IconAllOutSharpFilled.tsx @@ -8,4 +8,4 @@ const IconAllOutSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconAllOutSharpFilled as default } +export default IconAllOutSharpFilled diff --git a/src/IconAllergiesOutlined.tsx b/src/IconAllergiesOutlined.tsx index 108af4dde..9d6f47fdc 100644 --- a/src/IconAllergiesOutlined.tsx +++ b/src/IconAllergiesOutlined.tsx @@ -8,4 +8,4 @@ const IconAllergiesOutlined: React.FC = ({ ...props }) => ( ) -export { IconAllergiesOutlined as default } +export default IconAllergiesOutlined diff --git a/src/IconAllergiesOutlinedFilled.tsx b/src/IconAllergiesOutlinedFilled.tsx index 52ee669a6..97f525b74 100644 --- a/src/IconAllergiesOutlinedFilled.tsx +++ b/src/IconAllergiesOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconAllergiesOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconAllergiesOutlinedFilled as default } +export default IconAllergiesOutlinedFilled diff --git a/src/IconAllergiesRounded.tsx b/src/IconAllergiesRounded.tsx index 736a9657f..3ddfbd2a5 100644 --- a/src/IconAllergiesRounded.tsx +++ b/src/IconAllergiesRounded.tsx @@ -8,4 +8,4 @@ const IconAllergiesRounded: React.FC = ({ ...props }) => ( ) -export { IconAllergiesRounded as default } +export default IconAllergiesRounded diff --git a/src/IconAllergiesRoundedFilled.tsx b/src/IconAllergiesRoundedFilled.tsx index 730907aef..f39adaafe 100644 --- a/src/IconAllergiesRoundedFilled.tsx +++ b/src/IconAllergiesRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconAllergiesRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconAllergiesRoundedFilled as default } +export default IconAllergiesRoundedFilled diff --git a/src/IconAllergiesSharp.tsx b/src/IconAllergiesSharp.tsx index 0de1a6246..23e783e25 100644 --- a/src/IconAllergiesSharp.tsx +++ b/src/IconAllergiesSharp.tsx @@ -8,4 +8,4 @@ const IconAllergiesSharp: React.FC = ({ ...props }) => ( ) -export { IconAllergiesSharp as default } +export default IconAllergiesSharp diff --git a/src/IconAllergiesSharpFilled.tsx b/src/IconAllergiesSharpFilled.tsx index a8543aad8..1e37ea50c 100644 --- a/src/IconAllergiesSharpFilled.tsx +++ b/src/IconAllergiesSharpFilled.tsx @@ -8,4 +8,4 @@ const IconAllergiesSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconAllergiesSharpFilled as default } +export default IconAllergiesSharpFilled diff --git a/src/IconAllergyOutlined.tsx b/src/IconAllergyOutlined.tsx index 5585cb35a..0c4ce5efa 100644 --- a/src/IconAllergyOutlined.tsx +++ b/src/IconAllergyOutlined.tsx @@ -8,4 +8,4 @@ const IconAllergyOutlined: React.FC = ({ ...props }) => ( ) -export { IconAllergyOutlined as default } +export default IconAllergyOutlined diff --git a/src/IconAllergyOutlinedFilled.tsx b/src/IconAllergyOutlinedFilled.tsx index 393d21ab8..4e649d0c3 100644 --- a/src/IconAllergyOutlinedFilled.tsx +++ b/src/IconAllergyOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconAllergyOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconAllergyOutlinedFilled as default } +export default IconAllergyOutlinedFilled diff --git a/src/IconAllergyRounded.tsx b/src/IconAllergyRounded.tsx index 54db4e81f..feb081d17 100644 --- a/src/IconAllergyRounded.tsx +++ b/src/IconAllergyRounded.tsx @@ -8,4 +8,4 @@ const IconAllergyRounded: React.FC = ({ ...props }) => ( ) -export { IconAllergyRounded as default } +export default IconAllergyRounded diff --git a/src/IconAllergyRoundedFilled.tsx b/src/IconAllergyRoundedFilled.tsx index 78a24f658..20eec1f8e 100644 --- a/src/IconAllergyRoundedFilled.tsx +++ b/src/IconAllergyRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconAllergyRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconAllergyRoundedFilled as default } +export default IconAllergyRoundedFilled diff --git a/src/IconAllergySharp.tsx b/src/IconAllergySharp.tsx index 89d314c4d..7af5b1d61 100644 --- a/src/IconAllergySharp.tsx +++ b/src/IconAllergySharp.tsx @@ -8,4 +8,4 @@ const IconAllergySharp: React.FC = ({ ...props }) => ( ) -export { IconAllergySharp as default } +export default IconAllergySharp diff --git a/src/IconAllergySharpFilled.tsx b/src/IconAllergySharpFilled.tsx index df5c85eac..9539e2c0d 100644 --- a/src/IconAllergySharpFilled.tsx +++ b/src/IconAllergySharpFilled.tsx @@ -8,4 +8,4 @@ const IconAllergySharpFilled: React.FC = ({ ...props }) => ( ) -export { IconAllergySharpFilled as default } +export default IconAllergySharpFilled diff --git a/src/IconAltRouteOutlined.tsx b/src/IconAltRouteOutlined.tsx index 009ed0632..07121c1ff 100644 --- a/src/IconAltRouteOutlined.tsx +++ b/src/IconAltRouteOutlined.tsx @@ -8,4 +8,4 @@ const IconAltRouteOutlined: React.FC = ({ ...props }) => ( ) -export { IconAltRouteOutlined as default } +export default IconAltRouteOutlined diff --git a/src/IconAltRouteOutlinedFilled.tsx b/src/IconAltRouteOutlinedFilled.tsx index 26a9a7907..794d00d2b 100644 --- a/src/IconAltRouteOutlinedFilled.tsx +++ b/src/IconAltRouteOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconAltRouteOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconAltRouteOutlinedFilled as default } +export default IconAltRouteOutlinedFilled diff --git a/src/IconAltRouteRounded.tsx b/src/IconAltRouteRounded.tsx index d54c50abe..5cc262f8d 100644 --- a/src/IconAltRouteRounded.tsx +++ b/src/IconAltRouteRounded.tsx @@ -8,4 +8,4 @@ const IconAltRouteRounded: React.FC = ({ ...props }) => ( ) -export { IconAltRouteRounded as default } +export default IconAltRouteRounded diff --git a/src/IconAltRouteRoundedFilled.tsx b/src/IconAltRouteRoundedFilled.tsx index 267c8d09d..4d87e43fb 100644 --- a/src/IconAltRouteRoundedFilled.tsx +++ b/src/IconAltRouteRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconAltRouteRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconAltRouteRoundedFilled as default } +export default IconAltRouteRoundedFilled diff --git a/src/IconAltRouteSharp.tsx b/src/IconAltRouteSharp.tsx index 091123227..7cf6c136f 100644 --- a/src/IconAltRouteSharp.tsx +++ b/src/IconAltRouteSharp.tsx @@ -8,4 +8,4 @@ const IconAltRouteSharp: React.FC = ({ ...props }) => ( ) -export { IconAltRouteSharp as default } +export default IconAltRouteSharp diff --git a/src/IconAltRouteSharpFilled.tsx b/src/IconAltRouteSharpFilled.tsx index 276110aaf..9cdd09c47 100644 --- a/src/IconAltRouteSharpFilled.tsx +++ b/src/IconAltRouteSharpFilled.tsx @@ -8,4 +8,4 @@ const IconAltRouteSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconAltRouteSharpFilled as default } +export default IconAltRouteSharpFilled diff --git a/src/IconAlternateEmailOutlined.tsx b/src/IconAlternateEmailOutlined.tsx index e31f0935f..8bff9db14 100644 --- a/src/IconAlternateEmailOutlined.tsx +++ b/src/IconAlternateEmailOutlined.tsx @@ -8,4 +8,4 @@ const IconAlternateEmailOutlined: React.FC = ({ ...props }) => ( ) -export { IconAlternateEmailOutlined as default } +export default IconAlternateEmailOutlined diff --git a/src/IconAlternateEmailOutlinedFilled.tsx b/src/IconAlternateEmailOutlinedFilled.tsx index dc0a899ed..0ead66747 100644 --- a/src/IconAlternateEmailOutlinedFilled.tsx +++ b/src/IconAlternateEmailOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconAlternateEmailOutlinedFilled: React.FC = ({ ) -export { IconAlternateEmailOutlinedFilled as default } +export default IconAlternateEmailOutlinedFilled diff --git a/src/IconAlternateEmailRounded.tsx b/src/IconAlternateEmailRounded.tsx index c92d80c12..2d1d67333 100644 --- a/src/IconAlternateEmailRounded.tsx +++ b/src/IconAlternateEmailRounded.tsx @@ -8,4 +8,4 @@ const IconAlternateEmailRounded: React.FC = ({ ...props }) => ( ) -export { IconAlternateEmailRounded as default } +export default IconAlternateEmailRounded diff --git a/src/IconAlternateEmailRoundedFilled.tsx b/src/IconAlternateEmailRoundedFilled.tsx index f9c464b98..77ef41038 100644 --- a/src/IconAlternateEmailRoundedFilled.tsx +++ b/src/IconAlternateEmailRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconAlternateEmailRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconAlternateEmailRoundedFilled as default } +export default IconAlternateEmailRoundedFilled diff --git a/src/IconAlternateEmailSharp.tsx b/src/IconAlternateEmailSharp.tsx index c2559286b..bd223a540 100644 --- a/src/IconAlternateEmailSharp.tsx +++ b/src/IconAlternateEmailSharp.tsx @@ -8,4 +8,4 @@ const IconAlternateEmailSharp: React.FC = ({ ...props }) => ( ) -export { IconAlternateEmailSharp as default } +export default IconAlternateEmailSharp diff --git a/src/IconAlternateEmailSharpFilled.tsx b/src/IconAlternateEmailSharpFilled.tsx index e0bfa59e1..82e706d49 100644 --- a/src/IconAlternateEmailSharpFilled.tsx +++ b/src/IconAlternateEmailSharpFilled.tsx @@ -8,4 +8,4 @@ const IconAlternateEmailSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconAlternateEmailSharpFilled as default } +export default IconAlternateEmailSharpFilled diff --git a/src/IconAltitudeOutlined.tsx b/src/IconAltitudeOutlined.tsx index fb3bb34e9..017c245ae 100644 --- a/src/IconAltitudeOutlined.tsx +++ b/src/IconAltitudeOutlined.tsx @@ -8,4 +8,4 @@ const IconAltitudeOutlined: React.FC = ({ ...props }) => ( ) -export { IconAltitudeOutlined as default } +export default IconAltitudeOutlined diff --git a/src/IconAltitudeOutlinedFilled.tsx b/src/IconAltitudeOutlinedFilled.tsx index 8fec9d002..0360c9aeb 100644 --- a/src/IconAltitudeOutlinedFilled.tsx +++ b/src/IconAltitudeOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconAltitudeOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconAltitudeOutlinedFilled as default } +export default IconAltitudeOutlinedFilled diff --git a/src/IconAltitudeRounded.tsx b/src/IconAltitudeRounded.tsx index 25286baea..5a51928bd 100644 --- a/src/IconAltitudeRounded.tsx +++ b/src/IconAltitudeRounded.tsx @@ -8,4 +8,4 @@ const IconAltitudeRounded: React.FC = ({ ...props }) => ( ) -export { IconAltitudeRounded as default } +export default IconAltitudeRounded diff --git a/src/IconAltitudeRoundedFilled.tsx b/src/IconAltitudeRoundedFilled.tsx index 7abd67984..8ee0de862 100644 --- a/src/IconAltitudeRoundedFilled.tsx +++ b/src/IconAltitudeRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconAltitudeRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconAltitudeRoundedFilled as default } +export default IconAltitudeRoundedFilled diff --git a/src/IconAltitudeSharp.tsx b/src/IconAltitudeSharp.tsx index 1dbe0b5da..8a96e02f4 100644 --- a/src/IconAltitudeSharp.tsx +++ b/src/IconAltitudeSharp.tsx @@ -8,4 +8,4 @@ const IconAltitudeSharp: React.FC = ({ ...props }) => ( ) -export { IconAltitudeSharp as default } +export default IconAltitudeSharp diff --git a/src/IconAltitudeSharpFilled.tsx b/src/IconAltitudeSharpFilled.tsx index 7090ac48c..8f721a68a 100644 --- a/src/IconAltitudeSharpFilled.tsx +++ b/src/IconAltitudeSharpFilled.tsx @@ -8,4 +8,4 @@ const IconAltitudeSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconAltitudeSharpFilled as default } +export default IconAltitudeSharpFilled diff --git a/src/IconAmbulanceOutlined.tsx b/src/IconAmbulanceOutlined.tsx index e3912e94a..155ae56e6 100644 --- a/src/IconAmbulanceOutlined.tsx +++ b/src/IconAmbulanceOutlined.tsx @@ -8,4 +8,4 @@ const IconAmbulanceOutlined: React.FC = ({ ...props }) => ( ) -export { IconAmbulanceOutlined as default } +export default IconAmbulanceOutlined diff --git a/src/IconAmbulanceOutlinedFilled.tsx b/src/IconAmbulanceOutlinedFilled.tsx index 8a5c82087..d31b4747a 100644 --- a/src/IconAmbulanceOutlinedFilled.tsx +++ b/src/IconAmbulanceOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconAmbulanceOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconAmbulanceOutlinedFilled as default } +export default IconAmbulanceOutlinedFilled diff --git a/src/IconAmbulanceRounded.tsx b/src/IconAmbulanceRounded.tsx index 3f18eb211..6232e4581 100644 --- a/src/IconAmbulanceRounded.tsx +++ b/src/IconAmbulanceRounded.tsx @@ -8,4 +8,4 @@ const IconAmbulanceRounded: React.FC = ({ ...props }) => ( ) -export { IconAmbulanceRounded as default } +export default IconAmbulanceRounded diff --git a/src/IconAmbulanceRoundedFilled.tsx b/src/IconAmbulanceRoundedFilled.tsx index aabf9587e..d8c3916bf 100644 --- a/src/IconAmbulanceRoundedFilled.tsx +++ b/src/IconAmbulanceRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconAmbulanceRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconAmbulanceRoundedFilled as default } +export default IconAmbulanceRoundedFilled diff --git a/src/IconAmbulanceSharp.tsx b/src/IconAmbulanceSharp.tsx index 6a6649386..35b0ee4a4 100644 --- a/src/IconAmbulanceSharp.tsx +++ b/src/IconAmbulanceSharp.tsx @@ -8,4 +8,4 @@ const IconAmbulanceSharp: React.FC = ({ ...props }) => ( ) -export { IconAmbulanceSharp as default } +export default IconAmbulanceSharp diff --git a/src/IconAmbulanceSharpFilled.tsx b/src/IconAmbulanceSharpFilled.tsx index 150f0bae9..e0e5d28e1 100644 --- a/src/IconAmbulanceSharpFilled.tsx +++ b/src/IconAmbulanceSharpFilled.tsx @@ -8,4 +8,4 @@ const IconAmbulanceSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconAmbulanceSharpFilled as default } +export default IconAmbulanceSharpFilled diff --git a/src/IconAmendOutlined.tsx b/src/IconAmendOutlined.tsx index 3de0be071..ecedfb29e 100644 --- a/src/IconAmendOutlined.tsx +++ b/src/IconAmendOutlined.tsx @@ -8,4 +8,4 @@ const IconAmendOutlined: React.FC = ({ ...props }) => ( ) -export { IconAmendOutlined as default } +export default IconAmendOutlined diff --git a/src/IconAmendOutlinedFilled.tsx b/src/IconAmendOutlinedFilled.tsx index bff6960b3..e9440f3ea 100644 --- a/src/IconAmendOutlinedFilled.tsx +++ b/src/IconAmendOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconAmendOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconAmendOutlinedFilled as default } +export default IconAmendOutlinedFilled diff --git a/src/IconAmendRounded.tsx b/src/IconAmendRounded.tsx index 36c83d763..84260223a 100644 --- a/src/IconAmendRounded.tsx +++ b/src/IconAmendRounded.tsx @@ -8,4 +8,4 @@ const IconAmendRounded: React.FC = ({ ...props }) => ( ) -export { IconAmendRounded as default } +export default IconAmendRounded diff --git a/src/IconAmendRoundedFilled.tsx b/src/IconAmendRoundedFilled.tsx index 6810b931e..525729e47 100644 --- a/src/IconAmendRoundedFilled.tsx +++ b/src/IconAmendRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconAmendRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconAmendRoundedFilled as default } +export default IconAmendRoundedFilled diff --git a/src/IconAmendSharp.tsx b/src/IconAmendSharp.tsx index 4309011ca..d674abb50 100644 --- a/src/IconAmendSharp.tsx +++ b/src/IconAmendSharp.tsx @@ -8,4 +8,4 @@ const IconAmendSharp: React.FC = ({ ...props }) => ( ) -export { IconAmendSharp as default } +export default IconAmendSharp diff --git a/src/IconAmendSharpFilled.tsx b/src/IconAmendSharpFilled.tsx index 6ea325c23..148214cc5 100644 --- a/src/IconAmendSharpFilled.tsx +++ b/src/IconAmendSharpFilled.tsx @@ -8,4 +8,4 @@ const IconAmendSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconAmendSharpFilled as default } +export default IconAmendSharpFilled diff --git a/src/IconAmpStoriesOutlined.tsx b/src/IconAmpStoriesOutlined.tsx index a19c5d93a..07a070539 100644 --- a/src/IconAmpStoriesOutlined.tsx +++ b/src/IconAmpStoriesOutlined.tsx @@ -8,4 +8,4 @@ const IconAmpStoriesOutlined: React.FC = ({ ...props }) => ( ) -export { IconAmpStoriesOutlined as default } +export default IconAmpStoriesOutlined diff --git a/src/IconAmpStoriesOutlinedFilled.tsx b/src/IconAmpStoriesOutlinedFilled.tsx index 29d45ba7f..36bd7880c 100644 --- a/src/IconAmpStoriesOutlinedFilled.tsx +++ b/src/IconAmpStoriesOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconAmpStoriesOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconAmpStoriesOutlinedFilled as default } +export default IconAmpStoriesOutlinedFilled diff --git a/src/IconAmpStoriesRounded.tsx b/src/IconAmpStoriesRounded.tsx index 284cd9981..7747ab248 100644 --- a/src/IconAmpStoriesRounded.tsx +++ b/src/IconAmpStoriesRounded.tsx @@ -8,4 +8,4 @@ const IconAmpStoriesRounded: React.FC = ({ ...props }) => ( ) -export { IconAmpStoriesRounded as default } +export default IconAmpStoriesRounded diff --git a/src/IconAmpStoriesRoundedFilled.tsx b/src/IconAmpStoriesRoundedFilled.tsx index bc1eaa21b..ff9da554d 100644 --- a/src/IconAmpStoriesRoundedFilled.tsx +++ b/src/IconAmpStoriesRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconAmpStoriesRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconAmpStoriesRoundedFilled as default } +export default IconAmpStoriesRoundedFilled diff --git a/src/IconAmpStoriesSharp.tsx b/src/IconAmpStoriesSharp.tsx index a43d2773b..87a4787e6 100644 --- a/src/IconAmpStoriesSharp.tsx +++ b/src/IconAmpStoriesSharp.tsx @@ -8,4 +8,4 @@ const IconAmpStoriesSharp: React.FC = ({ ...props }) => ( ) -export { IconAmpStoriesSharp as default } +export default IconAmpStoriesSharp diff --git a/src/IconAmpStoriesSharpFilled.tsx b/src/IconAmpStoriesSharpFilled.tsx index 6406c9265..8f82b0b21 100644 --- a/src/IconAmpStoriesSharpFilled.tsx +++ b/src/IconAmpStoriesSharpFilled.tsx @@ -8,4 +8,4 @@ const IconAmpStoriesSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconAmpStoriesSharpFilled as default } +export default IconAmpStoriesSharpFilled diff --git a/src/IconAnalyticsOutlined.tsx b/src/IconAnalyticsOutlined.tsx index eb4b2b9a7..156ef18c4 100644 --- a/src/IconAnalyticsOutlined.tsx +++ b/src/IconAnalyticsOutlined.tsx @@ -8,4 +8,4 @@ const IconAnalyticsOutlined: React.FC = ({ ...props }) => ( ) -export { IconAnalyticsOutlined as default } +export default IconAnalyticsOutlined diff --git a/src/IconAnalyticsOutlinedFilled.tsx b/src/IconAnalyticsOutlinedFilled.tsx index 8ebd682b3..310124182 100644 --- a/src/IconAnalyticsOutlinedFilled.tsx +++ b/src/IconAnalyticsOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconAnalyticsOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconAnalyticsOutlinedFilled as default } +export default IconAnalyticsOutlinedFilled diff --git a/src/IconAnalyticsRounded.tsx b/src/IconAnalyticsRounded.tsx index 41aaaac60..0f48be17e 100644 --- a/src/IconAnalyticsRounded.tsx +++ b/src/IconAnalyticsRounded.tsx @@ -8,4 +8,4 @@ const IconAnalyticsRounded: React.FC = ({ ...props }) => ( ) -export { IconAnalyticsRounded as default } +export default IconAnalyticsRounded diff --git a/src/IconAnalyticsRoundedFilled.tsx b/src/IconAnalyticsRoundedFilled.tsx index 109fdbe4b..cd5342c00 100644 --- a/src/IconAnalyticsRoundedFilled.tsx +++ b/src/IconAnalyticsRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconAnalyticsRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconAnalyticsRoundedFilled as default } +export default IconAnalyticsRoundedFilled diff --git a/src/IconAnalyticsSharp.tsx b/src/IconAnalyticsSharp.tsx index 62f3fb92a..669af030a 100644 --- a/src/IconAnalyticsSharp.tsx +++ b/src/IconAnalyticsSharp.tsx @@ -8,4 +8,4 @@ const IconAnalyticsSharp: React.FC = ({ ...props }) => ( ) -export { IconAnalyticsSharp as default } +export default IconAnalyticsSharp diff --git a/src/IconAnalyticsSharpFilled.tsx b/src/IconAnalyticsSharpFilled.tsx index 312b55481..edb29aa8f 100644 --- a/src/IconAnalyticsSharpFilled.tsx +++ b/src/IconAnalyticsSharpFilled.tsx @@ -8,4 +8,4 @@ const IconAnalyticsSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconAnalyticsSharpFilled as default } +export default IconAnalyticsSharpFilled diff --git a/src/IconAnchorOutlined.tsx b/src/IconAnchorOutlined.tsx index 946895049..1a9ccb646 100644 --- a/src/IconAnchorOutlined.tsx +++ b/src/IconAnchorOutlined.tsx @@ -8,4 +8,4 @@ const IconAnchorOutlined: React.FC = ({ ...props }) => ( ) -export { IconAnchorOutlined as default } +export default IconAnchorOutlined diff --git a/src/IconAnchorOutlinedFilled.tsx b/src/IconAnchorOutlinedFilled.tsx index d901e2a59..e44203045 100644 --- a/src/IconAnchorOutlinedFilled.tsx +++ b/src/IconAnchorOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconAnchorOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconAnchorOutlinedFilled as default } +export default IconAnchorOutlinedFilled diff --git a/src/IconAnchorRounded.tsx b/src/IconAnchorRounded.tsx index 65938942e..7be80d637 100644 --- a/src/IconAnchorRounded.tsx +++ b/src/IconAnchorRounded.tsx @@ -8,4 +8,4 @@ const IconAnchorRounded: React.FC = ({ ...props }) => ( ) -export { IconAnchorRounded as default } +export default IconAnchorRounded diff --git a/src/IconAnchorRoundedFilled.tsx b/src/IconAnchorRoundedFilled.tsx index 8d8312755..03e71bbe3 100644 --- a/src/IconAnchorRoundedFilled.tsx +++ b/src/IconAnchorRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconAnchorRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconAnchorRoundedFilled as default } +export default IconAnchorRoundedFilled diff --git a/src/IconAnchorSharp.tsx b/src/IconAnchorSharp.tsx index aa8c3e4d5..feaa41159 100644 --- a/src/IconAnchorSharp.tsx +++ b/src/IconAnchorSharp.tsx @@ -8,4 +8,4 @@ const IconAnchorSharp: React.FC = ({ ...props }) => ( ) -export { IconAnchorSharp as default } +export default IconAnchorSharp diff --git a/src/IconAnchorSharpFilled.tsx b/src/IconAnchorSharpFilled.tsx index 576bf2193..f32fb9a79 100644 --- a/src/IconAnchorSharpFilled.tsx +++ b/src/IconAnchorSharpFilled.tsx @@ -8,4 +8,4 @@ const IconAnchorSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconAnchorSharpFilled as default } +export default IconAnchorSharpFilled diff --git a/src/IconAndroidOutlined.tsx b/src/IconAndroidOutlined.tsx index 762db4b62..76d6fc228 100644 --- a/src/IconAndroidOutlined.tsx +++ b/src/IconAndroidOutlined.tsx @@ -8,4 +8,4 @@ const IconAndroidOutlined: React.FC = ({ ...props }) => ( ) -export { IconAndroidOutlined as default } +export default IconAndroidOutlined diff --git a/src/IconAndroidOutlinedFilled.tsx b/src/IconAndroidOutlinedFilled.tsx index 4cfe0148c..968941c08 100644 --- a/src/IconAndroidOutlinedFilled.tsx +++ b/src/IconAndroidOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconAndroidOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconAndroidOutlinedFilled as default } +export default IconAndroidOutlinedFilled diff --git a/src/IconAndroidRounded.tsx b/src/IconAndroidRounded.tsx index 0c9174456..4255dcf4b 100644 --- a/src/IconAndroidRounded.tsx +++ b/src/IconAndroidRounded.tsx @@ -8,4 +8,4 @@ const IconAndroidRounded: React.FC = ({ ...props }) => ( ) -export { IconAndroidRounded as default } +export default IconAndroidRounded diff --git a/src/IconAndroidRoundedFilled.tsx b/src/IconAndroidRoundedFilled.tsx index 106c490d2..8f1f075aa 100644 --- a/src/IconAndroidRoundedFilled.tsx +++ b/src/IconAndroidRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconAndroidRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconAndroidRoundedFilled as default } +export default IconAndroidRoundedFilled diff --git a/src/IconAndroidSharp.tsx b/src/IconAndroidSharp.tsx index a42cb64a0..87343e8da 100644 --- a/src/IconAndroidSharp.tsx +++ b/src/IconAndroidSharp.tsx @@ -8,4 +8,4 @@ const IconAndroidSharp: React.FC = ({ ...props }) => ( ) -export { IconAndroidSharp as default } +export default IconAndroidSharp diff --git a/src/IconAndroidSharpFilled.tsx b/src/IconAndroidSharpFilled.tsx index 1286ab9f6..e1a8c2b51 100644 --- a/src/IconAndroidSharpFilled.tsx +++ b/src/IconAndroidSharpFilled.tsx @@ -8,4 +8,4 @@ const IconAndroidSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconAndroidSharpFilled as default } +export default IconAndroidSharpFilled diff --git a/src/IconAnimatedImagesOutlined.tsx b/src/IconAnimatedImagesOutlined.tsx index 3acc0b68f..1371c505a 100644 --- a/src/IconAnimatedImagesOutlined.tsx +++ b/src/IconAnimatedImagesOutlined.tsx @@ -8,4 +8,4 @@ const IconAnimatedImagesOutlined: React.FC = ({ ...props }) => ( ) -export { IconAnimatedImagesOutlined as default } +export default IconAnimatedImagesOutlined diff --git a/src/IconAnimatedImagesOutlinedFilled.tsx b/src/IconAnimatedImagesOutlinedFilled.tsx index a31c91c89..39a778723 100644 --- a/src/IconAnimatedImagesOutlinedFilled.tsx +++ b/src/IconAnimatedImagesOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconAnimatedImagesOutlinedFilled: React.FC = ({ ) -export { IconAnimatedImagesOutlinedFilled as default } +export default IconAnimatedImagesOutlinedFilled diff --git a/src/IconAnimatedImagesRounded.tsx b/src/IconAnimatedImagesRounded.tsx index 2621810f6..fd5eaf994 100644 --- a/src/IconAnimatedImagesRounded.tsx +++ b/src/IconAnimatedImagesRounded.tsx @@ -8,4 +8,4 @@ const IconAnimatedImagesRounded: React.FC = ({ ...props }) => ( ) -export { IconAnimatedImagesRounded as default } +export default IconAnimatedImagesRounded diff --git a/src/IconAnimatedImagesRoundedFilled.tsx b/src/IconAnimatedImagesRoundedFilled.tsx index e198109a0..ff510e696 100644 --- a/src/IconAnimatedImagesRoundedFilled.tsx +++ b/src/IconAnimatedImagesRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconAnimatedImagesRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconAnimatedImagesRoundedFilled as default } +export default IconAnimatedImagesRoundedFilled diff --git a/src/IconAnimatedImagesSharp.tsx b/src/IconAnimatedImagesSharp.tsx index 24a52bd84..4972231d6 100644 --- a/src/IconAnimatedImagesSharp.tsx +++ b/src/IconAnimatedImagesSharp.tsx @@ -8,4 +8,4 @@ const IconAnimatedImagesSharp: React.FC = ({ ...props }) => ( ) -export { IconAnimatedImagesSharp as default } +export default IconAnimatedImagesSharp diff --git a/src/IconAnimatedImagesSharpFilled.tsx b/src/IconAnimatedImagesSharpFilled.tsx index 682c81f10..4743ab96d 100644 --- a/src/IconAnimatedImagesSharpFilled.tsx +++ b/src/IconAnimatedImagesSharpFilled.tsx @@ -8,4 +8,4 @@ const IconAnimatedImagesSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconAnimatedImagesSharpFilled as default } +export default IconAnimatedImagesSharpFilled diff --git a/src/IconAnimationOutlined.tsx b/src/IconAnimationOutlined.tsx index ed50951bf..92b628379 100644 --- a/src/IconAnimationOutlined.tsx +++ b/src/IconAnimationOutlined.tsx @@ -8,4 +8,4 @@ const IconAnimationOutlined: React.FC = ({ ...props }) => ( ) -export { IconAnimationOutlined as default } +export default IconAnimationOutlined diff --git a/src/IconAnimationOutlinedFilled.tsx b/src/IconAnimationOutlinedFilled.tsx index dfa00fe19..4d97fa091 100644 --- a/src/IconAnimationOutlinedFilled.tsx +++ b/src/IconAnimationOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconAnimationOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconAnimationOutlinedFilled as default } +export default IconAnimationOutlinedFilled diff --git a/src/IconAnimationRounded.tsx b/src/IconAnimationRounded.tsx index 85f38bb2f..868fa5a6c 100644 --- a/src/IconAnimationRounded.tsx +++ b/src/IconAnimationRounded.tsx @@ -8,4 +8,4 @@ const IconAnimationRounded: React.FC = ({ ...props }) => ( ) -export { IconAnimationRounded as default } +export default IconAnimationRounded diff --git a/src/IconAnimationRoundedFilled.tsx b/src/IconAnimationRoundedFilled.tsx index e03fa24e6..4bf72f41f 100644 --- a/src/IconAnimationRoundedFilled.tsx +++ b/src/IconAnimationRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconAnimationRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconAnimationRoundedFilled as default } +export default IconAnimationRoundedFilled diff --git a/src/IconAnimationSharp.tsx b/src/IconAnimationSharp.tsx index 0f28fbb1e..45defa3c2 100644 --- a/src/IconAnimationSharp.tsx +++ b/src/IconAnimationSharp.tsx @@ -8,4 +8,4 @@ const IconAnimationSharp: React.FC = ({ ...props }) => ( ) -export { IconAnimationSharp as default } +export default IconAnimationSharp diff --git a/src/IconAnimationSharpFilled.tsx b/src/IconAnimationSharpFilled.tsx index 337fd3cc8..fe0184e38 100644 --- a/src/IconAnimationSharpFilled.tsx +++ b/src/IconAnimationSharpFilled.tsx @@ -8,4 +8,4 @@ const IconAnimationSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconAnimationSharpFilled as default } +export default IconAnimationSharpFilled diff --git a/src/IconAodOutlined.tsx b/src/IconAodOutlined.tsx index ccd742aa4..907015dba 100644 --- a/src/IconAodOutlined.tsx +++ b/src/IconAodOutlined.tsx @@ -8,4 +8,4 @@ const IconAodOutlined: React.FC = ({ ...props }) => ( ) -export { IconAodOutlined as default } +export default IconAodOutlined diff --git a/src/IconAodOutlinedFilled.tsx b/src/IconAodOutlinedFilled.tsx index e57dc0cda..03a34fec0 100644 --- a/src/IconAodOutlinedFilled.tsx +++ b/src/IconAodOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconAodOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconAodOutlinedFilled as default } +export default IconAodOutlinedFilled diff --git a/src/IconAodRounded.tsx b/src/IconAodRounded.tsx index 2a2a9384e..cdd4c1ee9 100644 --- a/src/IconAodRounded.tsx +++ b/src/IconAodRounded.tsx @@ -8,4 +8,4 @@ const IconAodRounded: React.FC = ({ ...props }) => ( ) -export { IconAodRounded as default } +export default IconAodRounded diff --git a/src/IconAodRoundedFilled.tsx b/src/IconAodRoundedFilled.tsx index 6d4b65576..df8839f13 100644 --- a/src/IconAodRoundedFilled.tsx +++ b/src/IconAodRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconAodRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconAodRoundedFilled as default } +export default IconAodRoundedFilled diff --git a/src/IconAodSharp.tsx b/src/IconAodSharp.tsx index 36666483e..22ec35442 100644 --- a/src/IconAodSharp.tsx +++ b/src/IconAodSharp.tsx @@ -8,4 +8,4 @@ const IconAodSharp: React.FC = ({ ...props }) => ( ) -export { IconAodSharp as default } +export default IconAodSharp diff --git a/src/IconAodSharpFilled.tsx b/src/IconAodSharpFilled.tsx index c4a8764d0..a6bafcbf4 100644 --- a/src/IconAodSharpFilled.tsx +++ b/src/IconAodSharpFilled.tsx @@ -8,4 +8,4 @@ const IconAodSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconAodSharpFilled as default } +export default IconAodSharpFilled diff --git a/src/IconAodTabletOutlined.tsx b/src/IconAodTabletOutlined.tsx index 2ce972367..fad365482 100644 --- a/src/IconAodTabletOutlined.tsx +++ b/src/IconAodTabletOutlined.tsx @@ -8,4 +8,4 @@ const IconAodTabletOutlined: React.FC = ({ ...props }) => ( ) -export { IconAodTabletOutlined as default } +export default IconAodTabletOutlined diff --git a/src/IconAodTabletOutlinedFilled.tsx b/src/IconAodTabletOutlinedFilled.tsx index 9fcc94a68..432449e72 100644 --- a/src/IconAodTabletOutlinedFilled.tsx +++ b/src/IconAodTabletOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconAodTabletOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconAodTabletOutlinedFilled as default } +export default IconAodTabletOutlinedFilled diff --git a/src/IconAodTabletRounded.tsx b/src/IconAodTabletRounded.tsx index 4ee7b58e4..fa8fa86ae 100644 --- a/src/IconAodTabletRounded.tsx +++ b/src/IconAodTabletRounded.tsx @@ -8,4 +8,4 @@ const IconAodTabletRounded: React.FC = ({ ...props }) => ( ) -export { IconAodTabletRounded as default } +export default IconAodTabletRounded diff --git a/src/IconAodTabletRoundedFilled.tsx b/src/IconAodTabletRoundedFilled.tsx index eeb1d1c8a..9255819f4 100644 --- a/src/IconAodTabletRoundedFilled.tsx +++ b/src/IconAodTabletRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconAodTabletRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconAodTabletRoundedFilled as default } +export default IconAodTabletRoundedFilled diff --git a/src/IconAodTabletSharp.tsx b/src/IconAodTabletSharp.tsx index 0bfb1feda..90e8f528f 100644 --- a/src/IconAodTabletSharp.tsx +++ b/src/IconAodTabletSharp.tsx @@ -8,4 +8,4 @@ const IconAodTabletSharp: React.FC = ({ ...props }) => ( ) -export { IconAodTabletSharp as default } +export default IconAodTabletSharp diff --git a/src/IconAodTabletSharpFilled.tsx b/src/IconAodTabletSharpFilled.tsx index b989cd96f..d6af12a1b 100644 --- a/src/IconAodTabletSharpFilled.tsx +++ b/src/IconAodTabletSharpFilled.tsx @@ -8,4 +8,4 @@ const IconAodTabletSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconAodTabletSharpFilled as default } +export default IconAodTabletSharpFilled diff --git a/src/IconAodWatchOutlined.tsx b/src/IconAodWatchOutlined.tsx index c01bd9752..de4af3793 100644 --- a/src/IconAodWatchOutlined.tsx +++ b/src/IconAodWatchOutlined.tsx @@ -8,4 +8,4 @@ const IconAodWatchOutlined: React.FC = ({ ...props }) => ( ) -export { IconAodWatchOutlined as default } +export default IconAodWatchOutlined diff --git a/src/IconAodWatchOutlinedFilled.tsx b/src/IconAodWatchOutlinedFilled.tsx index c668e7903..51c0847bf 100644 --- a/src/IconAodWatchOutlinedFilled.tsx +++ b/src/IconAodWatchOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconAodWatchOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconAodWatchOutlinedFilled as default } +export default IconAodWatchOutlinedFilled diff --git a/src/IconAodWatchRounded.tsx b/src/IconAodWatchRounded.tsx index 9f3869513..fe27e6279 100644 --- a/src/IconAodWatchRounded.tsx +++ b/src/IconAodWatchRounded.tsx @@ -8,4 +8,4 @@ const IconAodWatchRounded: React.FC = ({ ...props }) => ( ) -export { IconAodWatchRounded as default } +export default IconAodWatchRounded diff --git a/src/IconAodWatchRoundedFilled.tsx b/src/IconAodWatchRoundedFilled.tsx index 990606fa3..9541c527a 100644 --- a/src/IconAodWatchRoundedFilled.tsx +++ b/src/IconAodWatchRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconAodWatchRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconAodWatchRoundedFilled as default } +export default IconAodWatchRoundedFilled diff --git a/src/IconAodWatchSharp.tsx b/src/IconAodWatchSharp.tsx index 31468647f..e7ab0a463 100644 --- a/src/IconAodWatchSharp.tsx +++ b/src/IconAodWatchSharp.tsx @@ -8,4 +8,4 @@ const IconAodWatchSharp: React.FC = ({ ...props }) => ( ) -export { IconAodWatchSharp as default } +export default IconAodWatchSharp diff --git a/src/IconAodWatchSharpFilled.tsx b/src/IconAodWatchSharpFilled.tsx index 8a60e9321..e04e960ce 100644 --- a/src/IconAodWatchSharpFilled.tsx +++ b/src/IconAodWatchSharpFilled.tsx @@ -8,4 +8,4 @@ const IconAodWatchSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconAodWatchSharpFilled as default } +export default IconAodWatchSharpFilled diff --git a/src/IconApartmentOutlined.tsx b/src/IconApartmentOutlined.tsx index ca9c9e4a2..1cf99ebe8 100644 --- a/src/IconApartmentOutlined.tsx +++ b/src/IconApartmentOutlined.tsx @@ -8,4 +8,4 @@ const IconApartmentOutlined: React.FC = ({ ...props }) => ( ) -export { IconApartmentOutlined as default } +export default IconApartmentOutlined diff --git a/src/IconApartmentOutlinedFilled.tsx b/src/IconApartmentOutlinedFilled.tsx index 1b206a1f0..15edbe2e3 100644 --- a/src/IconApartmentOutlinedFilled.tsx +++ b/src/IconApartmentOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconApartmentOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconApartmentOutlinedFilled as default } +export default IconApartmentOutlinedFilled diff --git a/src/IconApartmentRounded.tsx b/src/IconApartmentRounded.tsx index 612c6dccc..e9beeb848 100644 --- a/src/IconApartmentRounded.tsx +++ b/src/IconApartmentRounded.tsx @@ -8,4 +8,4 @@ const IconApartmentRounded: React.FC = ({ ...props }) => ( ) -export { IconApartmentRounded as default } +export default IconApartmentRounded diff --git a/src/IconApartmentRoundedFilled.tsx b/src/IconApartmentRoundedFilled.tsx index a42bcada1..b0575ecb2 100644 --- a/src/IconApartmentRoundedFilled.tsx +++ b/src/IconApartmentRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconApartmentRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconApartmentRoundedFilled as default } +export default IconApartmentRoundedFilled diff --git a/src/IconApartmentSharp.tsx b/src/IconApartmentSharp.tsx index ce8a51a85..c9f71d736 100644 --- a/src/IconApartmentSharp.tsx +++ b/src/IconApartmentSharp.tsx @@ -8,4 +8,4 @@ const IconApartmentSharp: React.FC = ({ ...props }) => ( ) -export { IconApartmentSharp as default } +export default IconApartmentSharp diff --git a/src/IconApartmentSharpFilled.tsx b/src/IconApartmentSharpFilled.tsx index 1721bf0cb..94d1ec776 100644 --- a/src/IconApartmentSharpFilled.tsx +++ b/src/IconApartmentSharpFilled.tsx @@ -8,4 +8,4 @@ const IconApartmentSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconApartmentSharpFilled as default } +export default IconApartmentSharpFilled diff --git a/src/IconApiOutlined.tsx b/src/IconApiOutlined.tsx index 7a2facd44..389876e86 100644 --- a/src/IconApiOutlined.tsx +++ b/src/IconApiOutlined.tsx @@ -8,4 +8,4 @@ const IconApiOutlined: React.FC = ({ ...props }) => ( ) -export { IconApiOutlined as default } +export default IconApiOutlined diff --git a/src/IconApiOutlinedFilled.tsx b/src/IconApiOutlinedFilled.tsx index b48b6f928..a10d848f2 100644 --- a/src/IconApiOutlinedFilled.tsx +++ b/src/IconApiOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconApiOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconApiOutlinedFilled as default } +export default IconApiOutlinedFilled diff --git a/src/IconApiRounded.tsx b/src/IconApiRounded.tsx index 8b3de604a..9500a410b 100644 --- a/src/IconApiRounded.tsx +++ b/src/IconApiRounded.tsx @@ -8,4 +8,4 @@ const IconApiRounded: React.FC = ({ ...props }) => ( ) -export { IconApiRounded as default } +export default IconApiRounded diff --git a/src/IconApiRoundedFilled.tsx b/src/IconApiRoundedFilled.tsx index 183d9d7ac..15fde79d3 100644 --- a/src/IconApiRoundedFilled.tsx +++ b/src/IconApiRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconApiRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconApiRoundedFilled as default } +export default IconApiRoundedFilled diff --git a/src/IconApiSharp.tsx b/src/IconApiSharp.tsx index 660d35018..fec57f8b0 100644 --- a/src/IconApiSharp.tsx +++ b/src/IconApiSharp.tsx @@ -8,4 +8,4 @@ const IconApiSharp: React.FC = ({ ...props }) => ( ) -export { IconApiSharp as default } +export default IconApiSharp diff --git a/src/IconApiSharpFilled.tsx b/src/IconApiSharpFilled.tsx index 327e2c252..234c05661 100644 --- a/src/IconApiSharpFilled.tsx +++ b/src/IconApiSharpFilled.tsx @@ -8,4 +8,4 @@ const IconApiSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconApiSharpFilled as default } +export default IconApiSharpFilled diff --git a/src/IconApkDocumentOutlined.tsx b/src/IconApkDocumentOutlined.tsx index 5ebc3f606..2c775d385 100644 --- a/src/IconApkDocumentOutlined.tsx +++ b/src/IconApkDocumentOutlined.tsx @@ -8,4 +8,4 @@ const IconApkDocumentOutlined: React.FC = ({ ...props }) => ( ) -export { IconApkDocumentOutlined as default } +export default IconApkDocumentOutlined diff --git a/src/IconApkDocumentOutlinedFilled.tsx b/src/IconApkDocumentOutlinedFilled.tsx index c11c1fbc6..f96199433 100644 --- a/src/IconApkDocumentOutlinedFilled.tsx +++ b/src/IconApkDocumentOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconApkDocumentOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconApkDocumentOutlinedFilled as default } +export default IconApkDocumentOutlinedFilled diff --git a/src/IconApkDocumentRounded.tsx b/src/IconApkDocumentRounded.tsx index 056f16910..0727b8eff 100644 --- a/src/IconApkDocumentRounded.tsx +++ b/src/IconApkDocumentRounded.tsx @@ -8,4 +8,4 @@ const IconApkDocumentRounded: React.FC = ({ ...props }) => ( ) -export { IconApkDocumentRounded as default } +export default IconApkDocumentRounded diff --git a/src/IconApkDocumentRoundedFilled.tsx b/src/IconApkDocumentRoundedFilled.tsx index 6d069d1ea..c7b3bdb20 100644 --- a/src/IconApkDocumentRoundedFilled.tsx +++ b/src/IconApkDocumentRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconApkDocumentRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconApkDocumentRoundedFilled as default } +export default IconApkDocumentRoundedFilled diff --git a/src/IconApkDocumentSharp.tsx b/src/IconApkDocumentSharp.tsx index abc864ac0..3592e741b 100644 --- a/src/IconApkDocumentSharp.tsx +++ b/src/IconApkDocumentSharp.tsx @@ -8,4 +8,4 @@ const IconApkDocumentSharp: React.FC = ({ ...props }) => ( ) -export { IconApkDocumentSharp as default } +export default IconApkDocumentSharp diff --git a/src/IconApkDocumentSharpFilled.tsx b/src/IconApkDocumentSharpFilled.tsx index 9fc7c37e2..676a290d0 100644 --- a/src/IconApkDocumentSharpFilled.tsx +++ b/src/IconApkDocumentSharpFilled.tsx @@ -8,4 +8,4 @@ const IconApkDocumentSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconApkDocumentSharpFilled as default } +export default IconApkDocumentSharpFilled diff --git a/src/IconApkInstallOutlined.tsx b/src/IconApkInstallOutlined.tsx index 8ac6952a8..250d2254f 100644 --- a/src/IconApkInstallOutlined.tsx +++ b/src/IconApkInstallOutlined.tsx @@ -8,4 +8,4 @@ const IconApkInstallOutlined: React.FC = ({ ...props }) => ( ) -export { IconApkInstallOutlined as default } +export default IconApkInstallOutlined diff --git a/src/IconApkInstallOutlinedFilled.tsx b/src/IconApkInstallOutlinedFilled.tsx index b60650fe4..bb66b48c5 100644 --- a/src/IconApkInstallOutlinedFilled.tsx +++ b/src/IconApkInstallOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconApkInstallOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconApkInstallOutlinedFilled as default } +export default IconApkInstallOutlinedFilled diff --git a/src/IconApkInstallRounded.tsx b/src/IconApkInstallRounded.tsx index 8e099e8ed..24ec8ed88 100644 --- a/src/IconApkInstallRounded.tsx +++ b/src/IconApkInstallRounded.tsx @@ -8,4 +8,4 @@ const IconApkInstallRounded: React.FC = ({ ...props }) => ( ) -export { IconApkInstallRounded as default } +export default IconApkInstallRounded diff --git a/src/IconApkInstallRoundedFilled.tsx b/src/IconApkInstallRoundedFilled.tsx index 793c6ed90..08d2eb8d0 100644 --- a/src/IconApkInstallRoundedFilled.tsx +++ b/src/IconApkInstallRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconApkInstallRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconApkInstallRoundedFilled as default } +export default IconApkInstallRoundedFilled diff --git a/src/IconApkInstallSharp.tsx b/src/IconApkInstallSharp.tsx index 38ccd7fa9..fdd1e1650 100644 --- a/src/IconApkInstallSharp.tsx +++ b/src/IconApkInstallSharp.tsx @@ -8,4 +8,4 @@ const IconApkInstallSharp: React.FC = ({ ...props }) => ( ) -export { IconApkInstallSharp as default } +export default IconApkInstallSharp diff --git a/src/IconApkInstallSharpFilled.tsx b/src/IconApkInstallSharpFilled.tsx index 0eb249100..f2e911e3f 100644 --- a/src/IconApkInstallSharpFilled.tsx +++ b/src/IconApkInstallSharpFilled.tsx @@ -8,4 +8,4 @@ const IconApkInstallSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconApkInstallSharpFilled as default } +export default IconApkInstallSharpFilled diff --git a/src/IconAppBadgingOutlined.tsx b/src/IconAppBadgingOutlined.tsx index 6953d1eaa..29b9990f6 100644 --- a/src/IconAppBadgingOutlined.tsx +++ b/src/IconAppBadgingOutlined.tsx @@ -8,4 +8,4 @@ const IconAppBadgingOutlined: React.FC = ({ ...props }) => ( ) -export { IconAppBadgingOutlined as default } +export default IconAppBadgingOutlined diff --git a/src/IconAppBadgingOutlinedFilled.tsx b/src/IconAppBadgingOutlinedFilled.tsx index c748eaef5..5d7559365 100644 --- a/src/IconAppBadgingOutlinedFilled.tsx +++ b/src/IconAppBadgingOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconAppBadgingOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconAppBadgingOutlinedFilled as default } +export default IconAppBadgingOutlinedFilled diff --git a/src/IconAppBadgingRounded.tsx b/src/IconAppBadgingRounded.tsx index a40f3e1e1..8b3f3f2ec 100644 --- a/src/IconAppBadgingRounded.tsx +++ b/src/IconAppBadgingRounded.tsx @@ -8,4 +8,4 @@ const IconAppBadgingRounded: React.FC = ({ ...props }) => ( ) -export { IconAppBadgingRounded as default } +export default IconAppBadgingRounded diff --git a/src/IconAppBadgingRoundedFilled.tsx b/src/IconAppBadgingRoundedFilled.tsx index 7c5b022d3..f43cd1c4c 100644 --- a/src/IconAppBadgingRoundedFilled.tsx +++ b/src/IconAppBadgingRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconAppBadgingRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconAppBadgingRoundedFilled as default } +export default IconAppBadgingRoundedFilled diff --git a/src/IconAppBadgingSharp.tsx b/src/IconAppBadgingSharp.tsx index 507fdc620..66cde285c 100644 --- a/src/IconAppBadgingSharp.tsx +++ b/src/IconAppBadgingSharp.tsx @@ -8,4 +8,4 @@ const IconAppBadgingSharp: React.FC = ({ ...props }) => ( ) -export { IconAppBadgingSharp as default } +export default IconAppBadgingSharp diff --git a/src/IconAppBadgingSharpFilled.tsx b/src/IconAppBadgingSharpFilled.tsx index 4be37c129..a1e39f3fc 100644 --- a/src/IconAppBadgingSharpFilled.tsx +++ b/src/IconAppBadgingSharpFilled.tsx @@ -8,4 +8,4 @@ const IconAppBadgingSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconAppBadgingSharpFilled as default } +export default IconAppBadgingSharpFilled diff --git a/src/IconAppBlockingOutlined.tsx b/src/IconAppBlockingOutlined.tsx index 8d10d0eb8..934cd04a2 100644 --- a/src/IconAppBlockingOutlined.tsx +++ b/src/IconAppBlockingOutlined.tsx @@ -8,4 +8,4 @@ const IconAppBlockingOutlined: React.FC = ({ ...props }) => ( ) -export { IconAppBlockingOutlined as default } +export default IconAppBlockingOutlined diff --git a/src/IconAppBlockingOutlinedFilled.tsx b/src/IconAppBlockingOutlinedFilled.tsx index 4b82e21e8..0cc7d3ce4 100644 --- a/src/IconAppBlockingOutlinedFilled.tsx +++ b/src/IconAppBlockingOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconAppBlockingOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconAppBlockingOutlinedFilled as default } +export default IconAppBlockingOutlinedFilled diff --git a/src/IconAppBlockingRounded.tsx b/src/IconAppBlockingRounded.tsx index 1080cf063..39a788eb4 100644 --- a/src/IconAppBlockingRounded.tsx +++ b/src/IconAppBlockingRounded.tsx @@ -8,4 +8,4 @@ const IconAppBlockingRounded: React.FC = ({ ...props }) => ( ) -export { IconAppBlockingRounded as default } +export default IconAppBlockingRounded diff --git a/src/IconAppBlockingRoundedFilled.tsx b/src/IconAppBlockingRoundedFilled.tsx index f571721d2..552afff63 100644 --- a/src/IconAppBlockingRoundedFilled.tsx +++ b/src/IconAppBlockingRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconAppBlockingRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconAppBlockingRoundedFilled as default } +export default IconAppBlockingRoundedFilled diff --git a/src/IconAppBlockingSharp.tsx b/src/IconAppBlockingSharp.tsx index 7fe7ff15f..993584c45 100644 --- a/src/IconAppBlockingSharp.tsx +++ b/src/IconAppBlockingSharp.tsx @@ -8,4 +8,4 @@ const IconAppBlockingSharp: React.FC = ({ ...props }) => ( ) -export { IconAppBlockingSharp as default } +export default IconAppBlockingSharp diff --git a/src/IconAppBlockingSharpFilled.tsx b/src/IconAppBlockingSharpFilled.tsx index a425a76ee..433a073c9 100644 --- a/src/IconAppBlockingSharpFilled.tsx +++ b/src/IconAppBlockingSharpFilled.tsx @@ -8,4 +8,4 @@ const IconAppBlockingSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconAppBlockingSharpFilled as default } +export default IconAppBlockingSharpFilled diff --git a/src/IconAppPromoOutlined.tsx b/src/IconAppPromoOutlined.tsx index f513696b6..8a0fd4ba0 100644 --- a/src/IconAppPromoOutlined.tsx +++ b/src/IconAppPromoOutlined.tsx @@ -8,4 +8,4 @@ const IconAppPromoOutlined: React.FC = ({ ...props }) => ( ) -export { IconAppPromoOutlined as default } +export default IconAppPromoOutlined diff --git a/src/IconAppPromoOutlinedFilled.tsx b/src/IconAppPromoOutlinedFilled.tsx index f625ba88f..ad12b372a 100644 --- a/src/IconAppPromoOutlinedFilled.tsx +++ b/src/IconAppPromoOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconAppPromoOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconAppPromoOutlinedFilled as default } +export default IconAppPromoOutlinedFilled diff --git a/src/IconAppPromoRounded.tsx b/src/IconAppPromoRounded.tsx index 7c06a3a0b..2fbcb5b61 100644 --- a/src/IconAppPromoRounded.tsx +++ b/src/IconAppPromoRounded.tsx @@ -8,4 +8,4 @@ const IconAppPromoRounded: React.FC = ({ ...props }) => ( ) -export { IconAppPromoRounded as default } +export default IconAppPromoRounded diff --git a/src/IconAppPromoRoundedFilled.tsx b/src/IconAppPromoRoundedFilled.tsx index 2295210a3..91dd6871a 100644 --- a/src/IconAppPromoRoundedFilled.tsx +++ b/src/IconAppPromoRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconAppPromoRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconAppPromoRoundedFilled as default } +export default IconAppPromoRoundedFilled diff --git a/src/IconAppPromoSharp.tsx b/src/IconAppPromoSharp.tsx index 55cde2597..111408655 100644 --- a/src/IconAppPromoSharp.tsx +++ b/src/IconAppPromoSharp.tsx @@ -8,4 +8,4 @@ const IconAppPromoSharp: React.FC = ({ ...props }) => ( ) -export { IconAppPromoSharp as default } +export default IconAppPromoSharp diff --git a/src/IconAppPromoSharpFilled.tsx b/src/IconAppPromoSharpFilled.tsx index 3f48a371c..924d21a2d 100644 --- a/src/IconAppPromoSharpFilled.tsx +++ b/src/IconAppPromoSharpFilled.tsx @@ -8,4 +8,4 @@ const IconAppPromoSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconAppPromoSharpFilled as default } +export default IconAppPromoSharpFilled diff --git a/src/IconAppRegistrationOutlined.tsx b/src/IconAppRegistrationOutlined.tsx index 19ab262e0..e779876d7 100644 --- a/src/IconAppRegistrationOutlined.tsx +++ b/src/IconAppRegistrationOutlined.tsx @@ -8,4 +8,4 @@ const IconAppRegistrationOutlined: React.FC = ({ ...props }) => ( ) -export { IconAppRegistrationOutlined as default } +export default IconAppRegistrationOutlined diff --git a/src/IconAppRegistrationOutlinedFilled.tsx b/src/IconAppRegistrationOutlinedFilled.tsx index 4b1c698ee..31b20c8c8 100644 --- a/src/IconAppRegistrationOutlinedFilled.tsx +++ b/src/IconAppRegistrationOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconAppRegistrationOutlinedFilled: React.FC = ({ ) -export { IconAppRegistrationOutlinedFilled as default } +export default IconAppRegistrationOutlinedFilled diff --git a/src/IconAppRegistrationRounded.tsx b/src/IconAppRegistrationRounded.tsx index a019fc1de..1581f54b3 100644 --- a/src/IconAppRegistrationRounded.tsx +++ b/src/IconAppRegistrationRounded.tsx @@ -8,4 +8,4 @@ const IconAppRegistrationRounded: React.FC = ({ ...props }) => ( ) -export { IconAppRegistrationRounded as default } +export default IconAppRegistrationRounded diff --git a/src/IconAppRegistrationRoundedFilled.tsx b/src/IconAppRegistrationRoundedFilled.tsx index a05c4828c..5a614c82a 100644 --- a/src/IconAppRegistrationRoundedFilled.tsx +++ b/src/IconAppRegistrationRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconAppRegistrationRoundedFilled: React.FC = ({ ) -export { IconAppRegistrationRoundedFilled as default } +export default IconAppRegistrationRoundedFilled diff --git a/src/IconAppRegistrationSharp.tsx b/src/IconAppRegistrationSharp.tsx index 6e6336f8f..77097b3da 100644 --- a/src/IconAppRegistrationSharp.tsx +++ b/src/IconAppRegistrationSharp.tsx @@ -8,4 +8,4 @@ const IconAppRegistrationSharp: React.FC = ({ ...props }) => ( ) -export { IconAppRegistrationSharp as default } +export default IconAppRegistrationSharp diff --git a/src/IconAppRegistrationSharpFilled.tsx b/src/IconAppRegistrationSharpFilled.tsx index 8c0546e59..13432777e 100644 --- a/src/IconAppRegistrationSharpFilled.tsx +++ b/src/IconAppRegistrationSharpFilled.tsx @@ -8,4 +8,4 @@ const IconAppRegistrationSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconAppRegistrationSharpFilled as default } +export default IconAppRegistrationSharpFilled diff --git a/src/IconAppShortcutOutlined.tsx b/src/IconAppShortcutOutlined.tsx index e42e6c1ee..a2c09efd1 100644 --- a/src/IconAppShortcutOutlined.tsx +++ b/src/IconAppShortcutOutlined.tsx @@ -8,4 +8,4 @@ const IconAppShortcutOutlined: React.FC = ({ ...props }) => ( ) -export { IconAppShortcutOutlined as default } +export default IconAppShortcutOutlined diff --git a/src/IconAppShortcutOutlinedFilled.tsx b/src/IconAppShortcutOutlinedFilled.tsx index fefbae505..5a2d405f0 100644 --- a/src/IconAppShortcutOutlinedFilled.tsx +++ b/src/IconAppShortcutOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconAppShortcutOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconAppShortcutOutlinedFilled as default } +export default IconAppShortcutOutlinedFilled diff --git a/src/IconAppShortcutRounded.tsx b/src/IconAppShortcutRounded.tsx index 4489b5a76..b43d410aa 100644 --- a/src/IconAppShortcutRounded.tsx +++ b/src/IconAppShortcutRounded.tsx @@ -8,4 +8,4 @@ const IconAppShortcutRounded: React.FC = ({ ...props }) => ( ) -export { IconAppShortcutRounded as default } +export default IconAppShortcutRounded diff --git a/src/IconAppShortcutRoundedFilled.tsx b/src/IconAppShortcutRoundedFilled.tsx index aaada6b34..6cce7d5da 100644 --- a/src/IconAppShortcutRoundedFilled.tsx +++ b/src/IconAppShortcutRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconAppShortcutRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconAppShortcutRoundedFilled as default } +export default IconAppShortcutRoundedFilled diff --git a/src/IconAppShortcutSharp.tsx b/src/IconAppShortcutSharp.tsx index 87c52a722..3b49d60b2 100644 --- a/src/IconAppShortcutSharp.tsx +++ b/src/IconAppShortcutSharp.tsx @@ -8,4 +8,4 @@ const IconAppShortcutSharp: React.FC = ({ ...props }) => ( ) -export { IconAppShortcutSharp as default } +export default IconAppShortcutSharp diff --git a/src/IconAppShortcutSharpFilled.tsx b/src/IconAppShortcutSharpFilled.tsx index 3f0ea52dd..fdc38daae 100644 --- a/src/IconAppShortcutSharpFilled.tsx +++ b/src/IconAppShortcutSharpFilled.tsx @@ -8,4 +8,4 @@ const IconAppShortcutSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconAppShortcutSharpFilled as default } +export default IconAppShortcutSharpFilled diff --git a/src/IconApparelOutlined.tsx b/src/IconApparelOutlined.tsx index 47d2ac9bb..fdf120121 100644 --- a/src/IconApparelOutlined.tsx +++ b/src/IconApparelOutlined.tsx @@ -8,4 +8,4 @@ const IconApparelOutlined: React.FC = ({ ...props }) => ( ) -export { IconApparelOutlined as default } +export default IconApparelOutlined diff --git a/src/IconApparelOutlinedFilled.tsx b/src/IconApparelOutlinedFilled.tsx index f14e2f904..8c8ceb2a8 100644 --- a/src/IconApparelOutlinedFilled.tsx +++ b/src/IconApparelOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconApparelOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconApparelOutlinedFilled as default } +export default IconApparelOutlinedFilled diff --git a/src/IconApparelRounded.tsx b/src/IconApparelRounded.tsx index 23f61e6ff..bcd45f73f 100644 --- a/src/IconApparelRounded.tsx +++ b/src/IconApparelRounded.tsx @@ -8,4 +8,4 @@ const IconApparelRounded: React.FC = ({ ...props }) => ( ) -export { IconApparelRounded as default } +export default IconApparelRounded diff --git a/src/IconApparelRoundedFilled.tsx b/src/IconApparelRoundedFilled.tsx index ae539b1d1..6ba074abb 100644 --- a/src/IconApparelRoundedFilled.tsx +++ b/src/IconApparelRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconApparelRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconApparelRoundedFilled as default } +export default IconApparelRoundedFilled diff --git a/src/IconApparelSharp.tsx b/src/IconApparelSharp.tsx index f8e558136..bf1d2b8aa 100644 --- a/src/IconApparelSharp.tsx +++ b/src/IconApparelSharp.tsx @@ -8,4 +8,4 @@ const IconApparelSharp: React.FC = ({ ...props }) => ( ) -export { IconApparelSharp as default } +export default IconApparelSharp diff --git a/src/IconApparelSharpFilled.tsx b/src/IconApparelSharpFilled.tsx index bd12087e8..19e97afb5 100644 --- a/src/IconApparelSharpFilled.tsx +++ b/src/IconApparelSharpFilled.tsx @@ -8,4 +8,4 @@ const IconApparelSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconApparelSharpFilled as default } +export default IconApparelSharpFilled diff --git a/src/IconApprovalDelegationOutlined.tsx b/src/IconApprovalDelegationOutlined.tsx index 4ea2297f3..3c07e1021 100644 --- a/src/IconApprovalDelegationOutlined.tsx +++ b/src/IconApprovalDelegationOutlined.tsx @@ -8,4 +8,4 @@ const IconApprovalDelegationOutlined: React.FC = ({ ...props }) => ( ) -export { IconApprovalDelegationOutlined as default } +export default IconApprovalDelegationOutlined diff --git a/src/IconApprovalDelegationOutlinedFilled.tsx b/src/IconApprovalDelegationOutlinedFilled.tsx index 309581622..b9d060523 100644 --- a/src/IconApprovalDelegationOutlinedFilled.tsx +++ b/src/IconApprovalDelegationOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconApprovalDelegationOutlinedFilled: React.FC = ({ ) -export { IconApprovalDelegationOutlinedFilled as default } +export default IconApprovalDelegationOutlinedFilled diff --git a/src/IconApprovalDelegationRounded.tsx b/src/IconApprovalDelegationRounded.tsx index f7e9a6421..a5e38768e 100644 --- a/src/IconApprovalDelegationRounded.tsx +++ b/src/IconApprovalDelegationRounded.tsx @@ -8,4 +8,4 @@ const IconApprovalDelegationRounded: React.FC = ({ ...props }) => ( ) -export { IconApprovalDelegationRounded as default } +export default IconApprovalDelegationRounded diff --git a/src/IconApprovalDelegationRoundedFilled.tsx b/src/IconApprovalDelegationRoundedFilled.tsx index 19cd090fa..a4ef284d8 100644 --- a/src/IconApprovalDelegationRoundedFilled.tsx +++ b/src/IconApprovalDelegationRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconApprovalDelegationRoundedFilled: React.FC = ({ ) -export { IconApprovalDelegationRoundedFilled as default } +export default IconApprovalDelegationRoundedFilled diff --git a/src/IconApprovalDelegationSharp.tsx b/src/IconApprovalDelegationSharp.tsx index 9d4ab87c7..efcb1ad0b 100644 --- a/src/IconApprovalDelegationSharp.tsx +++ b/src/IconApprovalDelegationSharp.tsx @@ -8,4 +8,4 @@ const IconApprovalDelegationSharp: React.FC = ({ ...props }) => ( ) -export { IconApprovalDelegationSharp as default } +export default IconApprovalDelegationSharp diff --git a/src/IconApprovalDelegationSharpFilled.tsx b/src/IconApprovalDelegationSharpFilled.tsx index 3f7bd0584..298741ed2 100644 --- a/src/IconApprovalDelegationSharpFilled.tsx +++ b/src/IconApprovalDelegationSharpFilled.tsx @@ -10,4 +10,4 @@ const IconApprovalDelegationSharpFilled: React.FC = ({ ) -export { IconApprovalDelegationSharpFilled as default } +export default IconApprovalDelegationSharpFilled diff --git a/src/IconApprovalOutlined.tsx b/src/IconApprovalOutlined.tsx index b87e770c0..49e652042 100644 --- a/src/IconApprovalOutlined.tsx +++ b/src/IconApprovalOutlined.tsx @@ -8,4 +8,4 @@ const IconApprovalOutlined: React.FC = ({ ...props }) => ( ) -export { IconApprovalOutlined as default } +export default IconApprovalOutlined diff --git a/src/IconApprovalOutlinedFilled.tsx b/src/IconApprovalOutlinedFilled.tsx index aa1d819ed..b1a25cf1b 100644 --- a/src/IconApprovalOutlinedFilled.tsx +++ b/src/IconApprovalOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconApprovalOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconApprovalOutlinedFilled as default } +export default IconApprovalOutlinedFilled diff --git a/src/IconApprovalRounded.tsx b/src/IconApprovalRounded.tsx index 11cda69ee..f35ae96cc 100644 --- a/src/IconApprovalRounded.tsx +++ b/src/IconApprovalRounded.tsx @@ -8,4 +8,4 @@ const IconApprovalRounded: React.FC = ({ ...props }) => ( ) -export { IconApprovalRounded as default } +export default IconApprovalRounded diff --git a/src/IconApprovalRoundedFilled.tsx b/src/IconApprovalRoundedFilled.tsx index 50261d2d0..bf0cb0f5a 100644 --- a/src/IconApprovalRoundedFilled.tsx +++ b/src/IconApprovalRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconApprovalRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconApprovalRoundedFilled as default } +export default IconApprovalRoundedFilled diff --git a/src/IconApprovalSharp.tsx b/src/IconApprovalSharp.tsx index eed8c6c0c..cb454c00e 100644 --- a/src/IconApprovalSharp.tsx +++ b/src/IconApprovalSharp.tsx @@ -8,4 +8,4 @@ const IconApprovalSharp: React.FC = ({ ...props }) => ( ) -export { IconApprovalSharp as default } +export default IconApprovalSharp diff --git a/src/IconApprovalSharpFilled.tsx b/src/IconApprovalSharpFilled.tsx index 1d8d65edc..421c50620 100644 --- a/src/IconApprovalSharpFilled.tsx +++ b/src/IconApprovalSharpFilled.tsx @@ -8,4 +8,4 @@ const IconApprovalSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconApprovalSharpFilled as default } +export default IconApprovalSharpFilled diff --git a/src/IconAppsOutageOutlined.tsx b/src/IconAppsOutageOutlined.tsx index e86b11257..00cd80372 100644 --- a/src/IconAppsOutageOutlined.tsx +++ b/src/IconAppsOutageOutlined.tsx @@ -8,4 +8,4 @@ const IconAppsOutageOutlined: React.FC = ({ ...props }) => ( ) -export { IconAppsOutageOutlined as default } +export default IconAppsOutageOutlined diff --git a/src/IconAppsOutageOutlinedFilled.tsx b/src/IconAppsOutageOutlinedFilled.tsx index 36466c25f..3de8db509 100644 --- a/src/IconAppsOutageOutlinedFilled.tsx +++ b/src/IconAppsOutageOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconAppsOutageOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconAppsOutageOutlinedFilled as default } +export default IconAppsOutageOutlinedFilled diff --git a/src/IconAppsOutageRounded.tsx b/src/IconAppsOutageRounded.tsx index 5ce567d7c..84318525f 100644 --- a/src/IconAppsOutageRounded.tsx +++ b/src/IconAppsOutageRounded.tsx @@ -8,4 +8,4 @@ const IconAppsOutageRounded: React.FC = ({ ...props }) => ( ) -export { IconAppsOutageRounded as default } +export default IconAppsOutageRounded diff --git a/src/IconAppsOutageRoundedFilled.tsx b/src/IconAppsOutageRoundedFilled.tsx index c8093c24e..3a604e882 100644 --- a/src/IconAppsOutageRoundedFilled.tsx +++ b/src/IconAppsOutageRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconAppsOutageRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconAppsOutageRoundedFilled as default } +export default IconAppsOutageRoundedFilled diff --git a/src/IconAppsOutageSharp.tsx b/src/IconAppsOutageSharp.tsx index b5aee3b68..a5fc56933 100644 --- a/src/IconAppsOutageSharp.tsx +++ b/src/IconAppsOutageSharp.tsx @@ -8,4 +8,4 @@ const IconAppsOutageSharp: React.FC = ({ ...props }) => ( ) -export { IconAppsOutageSharp as default } +export default IconAppsOutageSharp diff --git a/src/IconAppsOutageSharpFilled.tsx b/src/IconAppsOutageSharpFilled.tsx index c62398c8b..3517fb375 100644 --- a/src/IconAppsOutageSharpFilled.tsx +++ b/src/IconAppsOutageSharpFilled.tsx @@ -8,4 +8,4 @@ const IconAppsOutageSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconAppsOutageSharpFilled as default } +export default IconAppsOutageSharpFilled diff --git a/src/IconAppsOutlined.tsx b/src/IconAppsOutlined.tsx index 3fdb5f941..9e844601d 100644 --- a/src/IconAppsOutlined.tsx +++ b/src/IconAppsOutlined.tsx @@ -8,4 +8,4 @@ const IconAppsOutlined: React.FC = ({ ...props }) => ( ) -export { IconAppsOutlined as default } +export default IconAppsOutlined diff --git a/src/IconAppsOutlinedFilled.tsx b/src/IconAppsOutlinedFilled.tsx index 96f369396..4556821a7 100644 --- a/src/IconAppsOutlinedFilled.tsx +++ b/src/IconAppsOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconAppsOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconAppsOutlinedFilled as default } +export default IconAppsOutlinedFilled diff --git a/src/IconAppsRounded.tsx b/src/IconAppsRounded.tsx index aee56acc1..c34a16b10 100644 --- a/src/IconAppsRounded.tsx +++ b/src/IconAppsRounded.tsx @@ -8,4 +8,4 @@ const IconAppsRounded: React.FC = ({ ...props }) => ( ) -export { IconAppsRounded as default } +export default IconAppsRounded diff --git a/src/IconAppsRoundedFilled.tsx b/src/IconAppsRoundedFilled.tsx index 76a109cb5..293fe6580 100644 --- a/src/IconAppsRoundedFilled.tsx +++ b/src/IconAppsRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconAppsRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconAppsRoundedFilled as default } +export default IconAppsRoundedFilled diff --git a/src/IconAppsSharp.tsx b/src/IconAppsSharp.tsx index cb0219621..b259c224a 100644 --- a/src/IconAppsSharp.tsx +++ b/src/IconAppsSharp.tsx @@ -8,4 +8,4 @@ const IconAppsSharp: React.FC = ({ ...props }) => ( ) -export { IconAppsSharp as default } +export default IconAppsSharp diff --git a/src/IconAppsSharpFilled.tsx b/src/IconAppsSharpFilled.tsx index 2fb780305..d0128f828 100644 --- a/src/IconAppsSharpFilled.tsx +++ b/src/IconAppsSharpFilled.tsx @@ -8,4 +8,4 @@ const IconAppsSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconAppsSharpFilled as default } +export default IconAppsSharpFilled diff --git a/src/IconAqIndoorOutlined.tsx b/src/IconAqIndoorOutlined.tsx index 362eb36d1..6a7b9c6db 100644 --- a/src/IconAqIndoorOutlined.tsx +++ b/src/IconAqIndoorOutlined.tsx @@ -8,4 +8,4 @@ const IconAqIndoorOutlined: React.FC = ({ ...props }) => ( ) -export { IconAqIndoorOutlined as default } +export default IconAqIndoorOutlined diff --git a/src/IconAqIndoorOutlinedFilled.tsx b/src/IconAqIndoorOutlinedFilled.tsx index 86b80d649..496487119 100644 --- a/src/IconAqIndoorOutlinedFilled.tsx +++ b/src/IconAqIndoorOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconAqIndoorOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconAqIndoorOutlinedFilled as default } +export default IconAqIndoorOutlinedFilled diff --git a/src/IconAqIndoorRounded.tsx b/src/IconAqIndoorRounded.tsx index b55e66754..97feee527 100644 --- a/src/IconAqIndoorRounded.tsx +++ b/src/IconAqIndoorRounded.tsx @@ -8,4 +8,4 @@ const IconAqIndoorRounded: React.FC = ({ ...props }) => ( ) -export { IconAqIndoorRounded as default } +export default IconAqIndoorRounded diff --git a/src/IconAqIndoorRoundedFilled.tsx b/src/IconAqIndoorRoundedFilled.tsx index c61e5e13c..33f8e7f98 100644 --- a/src/IconAqIndoorRoundedFilled.tsx +++ b/src/IconAqIndoorRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconAqIndoorRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconAqIndoorRoundedFilled as default } +export default IconAqIndoorRoundedFilled diff --git a/src/IconAqIndoorSharp.tsx b/src/IconAqIndoorSharp.tsx index dfcf537a9..d79fe4ade 100644 --- a/src/IconAqIndoorSharp.tsx +++ b/src/IconAqIndoorSharp.tsx @@ -8,4 +8,4 @@ const IconAqIndoorSharp: React.FC = ({ ...props }) => ( ) -export { IconAqIndoorSharp as default } +export default IconAqIndoorSharp diff --git a/src/IconAqIndoorSharpFilled.tsx b/src/IconAqIndoorSharpFilled.tsx index 9003a9433..a392ac2cc 100644 --- a/src/IconAqIndoorSharpFilled.tsx +++ b/src/IconAqIndoorSharpFilled.tsx @@ -8,4 +8,4 @@ const IconAqIndoorSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconAqIndoorSharpFilled as default } +export default IconAqIndoorSharpFilled diff --git a/src/IconAqOutlined.tsx b/src/IconAqOutlined.tsx index f194b3eed..576f767e9 100644 --- a/src/IconAqOutlined.tsx +++ b/src/IconAqOutlined.tsx @@ -8,4 +8,4 @@ const IconAqOutlined: React.FC = ({ ...props }) => ( ) -export { IconAqOutlined as default } +export default IconAqOutlined diff --git a/src/IconAqOutlinedFilled.tsx b/src/IconAqOutlinedFilled.tsx index 11f3dc068..ce8fb2250 100644 --- a/src/IconAqOutlinedFilled.tsx +++ b/src/IconAqOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconAqOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconAqOutlinedFilled as default } +export default IconAqOutlinedFilled diff --git a/src/IconAqRounded.tsx b/src/IconAqRounded.tsx index 3a45f9527..60e9d3eb4 100644 --- a/src/IconAqRounded.tsx +++ b/src/IconAqRounded.tsx @@ -8,4 +8,4 @@ const IconAqRounded: React.FC = ({ ...props }) => ( ) -export { IconAqRounded as default } +export default IconAqRounded diff --git a/src/IconAqRoundedFilled.tsx b/src/IconAqRoundedFilled.tsx index 98f19dcde..a4e0d2046 100644 --- a/src/IconAqRoundedFilled.tsx +++ b/src/IconAqRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconAqRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconAqRoundedFilled as default } +export default IconAqRoundedFilled diff --git a/src/IconAqSharp.tsx b/src/IconAqSharp.tsx index c84ef93b1..d1de49930 100644 --- a/src/IconAqSharp.tsx +++ b/src/IconAqSharp.tsx @@ -8,4 +8,4 @@ const IconAqSharp: React.FC = ({ ...props }) => ( ) -export { IconAqSharp as default } +export default IconAqSharp diff --git a/src/IconAqSharpFilled.tsx b/src/IconAqSharpFilled.tsx index bcb670379..095e4bcbd 100644 --- a/src/IconAqSharpFilled.tsx +++ b/src/IconAqSharpFilled.tsx @@ -8,4 +8,4 @@ const IconAqSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconAqSharpFilled as default } +export default IconAqSharpFilled diff --git a/src/IconArOnYouOutlined.tsx b/src/IconArOnYouOutlined.tsx index 31547400a..7c53e3067 100644 --- a/src/IconArOnYouOutlined.tsx +++ b/src/IconArOnYouOutlined.tsx @@ -8,4 +8,4 @@ const IconArOnYouOutlined: React.FC = ({ ...props }) => ( ) -export { IconArOnYouOutlined as default } +export default IconArOnYouOutlined diff --git a/src/IconArOnYouOutlinedFilled.tsx b/src/IconArOnYouOutlinedFilled.tsx index eee15a72e..10636cad5 100644 --- a/src/IconArOnYouOutlinedFilled.tsx +++ b/src/IconArOnYouOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconArOnYouOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconArOnYouOutlinedFilled as default } +export default IconArOnYouOutlinedFilled diff --git a/src/IconArOnYouRounded.tsx b/src/IconArOnYouRounded.tsx index 72215b860..47f641619 100644 --- a/src/IconArOnYouRounded.tsx +++ b/src/IconArOnYouRounded.tsx @@ -8,4 +8,4 @@ const IconArOnYouRounded: React.FC = ({ ...props }) => ( ) -export { IconArOnYouRounded as default } +export default IconArOnYouRounded diff --git a/src/IconArOnYouRoundedFilled.tsx b/src/IconArOnYouRoundedFilled.tsx index c61899fbd..2e882322c 100644 --- a/src/IconArOnYouRoundedFilled.tsx +++ b/src/IconArOnYouRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconArOnYouRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconArOnYouRoundedFilled as default } +export default IconArOnYouRoundedFilled diff --git a/src/IconArOnYouSharp.tsx b/src/IconArOnYouSharp.tsx index acd126960..804b137c7 100644 --- a/src/IconArOnYouSharp.tsx +++ b/src/IconArOnYouSharp.tsx @@ -8,4 +8,4 @@ const IconArOnYouSharp: React.FC = ({ ...props }) => ( ) -export { IconArOnYouSharp as default } +export default IconArOnYouSharp diff --git a/src/IconArOnYouSharpFilled.tsx b/src/IconArOnYouSharpFilled.tsx index cadff23ad..f9ae5c1b8 100644 --- a/src/IconArOnYouSharpFilled.tsx +++ b/src/IconArOnYouSharpFilled.tsx @@ -8,4 +8,4 @@ const IconArOnYouSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconArOnYouSharpFilled as default } +export default IconArOnYouSharpFilled diff --git a/src/IconArStickersOutlined.tsx b/src/IconArStickersOutlined.tsx index 1cb47e19e..be82e062d 100644 --- a/src/IconArStickersOutlined.tsx +++ b/src/IconArStickersOutlined.tsx @@ -8,4 +8,4 @@ const IconArStickersOutlined: React.FC = ({ ...props }) => ( ) -export { IconArStickersOutlined as default } +export default IconArStickersOutlined diff --git a/src/IconArStickersOutlinedFilled.tsx b/src/IconArStickersOutlinedFilled.tsx index 818b804be..a0841dced 100644 --- a/src/IconArStickersOutlinedFilled.tsx +++ b/src/IconArStickersOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconArStickersOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconArStickersOutlinedFilled as default } +export default IconArStickersOutlinedFilled diff --git a/src/IconArStickersRounded.tsx b/src/IconArStickersRounded.tsx index 895036036..d670da0cf 100644 --- a/src/IconArStickersRounded.tsx +++ b/src/IconArStickersRounded.tsx @@ -8,4 +8,4 @@ const IconArStickersRounded: React.FC = ({ ...props }) => ( ) -export { IconArStickersRounded as default } +export default IconArStickersRounded diff --git a/src/IconArStickersRoundedFilled.tsx b/src/IconArStickersRoundedFilled.tsx index 90180c797..2fa10f0bd 100644 --- a/src/IconArStickersRoundedFilled.tsx +++ b/src/IconArStickersRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconArStickersRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconArStickersRoundedFilled as default } +export default IconArStickersRoundedFilled diff --git a/src/IconArStickersSharp.tsx b/src/IconArStickersSharp.tsx index 610e3f52d..e2c9b984e 100644 --- a/src/IconArStickersSharp.tsx +++ b/src/IconArStickersSharp.tsx @@ -8,4 +8,4 @@ const IconArStickersSharp: React.FC = ({ ...props }) => ( ) -export { IconArStickersSharp as default } +export default IconArStickersSharp diff --git a/src/IconArStickersSharpFilled.tsx b/src/IconArStickersSharpFilled.tsx index 6adeb4eb8..c483e42cb 100644 --- a/src/IconArStickersSharpFilled.tsx +++ b/src/IconArStickersSharpFilled.tsx @@ -8,4 +8,4 @@ const IconArStickersSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconArStickersSharpFilled as default } +export default IconArStickersSharpFilled diff --git a/src/IconArchitectureOutlined.tsx b/src/IconArchitectureOutlined.tsx index 93c835db5..e1c4d92f7 100644 --- a/src/IconArchitectureOutlined.tsx +++ b/src/IconArchitectureOutlined.tsx @@ -8,4 +8,4 @@ const IconArchitectureOutlined: React.FC = ({ ...props }) => ( ) -export { IconArchitectureOutlined as default } +export default IconArchitectureOutlined diff --git a/src/IconArchitectureOutlinedFilled.tsx b/src/IconArchitectureOutlinedFilled.tsx index 34394394b..dcb45e435 100644 --- a/src/IconArchitectureOutlinedFilled.tsx +++ b/src/IconArchitectureOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconArchitectureOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconArchitectureOutlinedFilled as default } +export default IconArchitectureOutlinedFilled diff --git a/src/IconArchitectureRounded.tsx b/src/IconArchitectureRounded.tsx index 66f7f3e20..11ef1a446 100644 --- a/src/IconArchitectureRounded.tsx +++ b/src/IconArchitectureRounded.tsx @@ -8,4 +8,4 @@ const IconArchitectureRounded: React.FC = ({ ...props }) => ( ) -export { IconArchitectureRounded as default } +export default IconArchitectureRounded diff --git a/src/IconArchitectureRoundedFilled.tsx b/src/IconArchitectureRoundedFilled.tsx index 38cce52b9..efd9ed82f 100644 --- a/src/IconArchitectureRoundedFilled.tsx +++ b/src/IconArchitectureRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconArchitectureRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconArchitectureRoundedFilled as default } +export default IconArchitectureRoundedFilled diff --git a/src/IconArchitectureSharp.tsx b/src/IconArchitectureSharp.tsx index 969c2be1b..bb42dc92c 100644 --- a/src/IconArchitectureSharp.tsx +++ b/src/IconArchitectureSharp.tsx @@ -8,4 +8,4 @@ const IconArchitectureSharp: React.FC = ({ ...props }) => ( ) -export { IconArchitectureSharp as default } +export default IconArchitectureSharp diff --git a/src/IconArchitectureSharpFilled.tsx b/src/IconArchitectureSharpFilled.tsx index a5c0ed7e2..ef78d6e58 100644 --- a/src/IconArchitectureSharpFilled.tsx +++ b/src/IconArchitectureSharpFilled.tsx @@ -8,4 +8,4 @@ const IconArchitectureSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconArchitectureSharpFilled as default } +export default IconArchitectureSharpFilled diff --git a/src/IconArchiveOutlined.tsx b/src/IconArchiveOutlined.tsx index ed457fb16..b9c68bf2b 100644 --- a/src/IconArchiveOutlined.tsx +++ b/src/IconArchiveOutlined.tsx @@ -8,4 +8,4 @@ const IconArchiveOutlined: React.FC = ({ ...props }) => ( ) -export { IconArchiveOutlined as default } +export default IconArchiveOutlined diff --git a/src/IconArchiveOutlinedFilled.tsx b/src/IconArchiveOutlinedFilled.tsx index 4f30eacea..3c05e4b8f 100644 --- a/src/IconArchiveOutlinedFilled.tsx +++ b/src/IconArchiveOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconArchiveOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconArchiveOutlinedFilled as default } +export default IconArchiveOutlinedFilled diff --git a/src/IconArchiveRounded.tsx b/src/IconArchiveRounded.tsx index e6dd3060d..f4f7ed6b4 100644 --- a/src/IconArchiveRounded.tsx +++ b/src/IconArchiveRounded.tsx @@ -8,4 +8,4 @@ const IconArchiveRounded: React.FC = ({ ...props }) => ( ) -export { IconArchiveRounded as default } +export default IconArchiveRounded diff --git a/src/IconArchiveRoundedFilled.tsx b/src/IconArchiveRoundedFilled.tsx index 8eeebe244..8f50c01f3 100644 --- a/src/IconArchiveRoundedFilled.tsx +++ b/src/IconArchiveRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconArchiveRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconArchiveRoundedFilled as default } +export default IconArchiveRoundedFilled diff --git a/src/IconArchiveSharp.tsx b/src/IconArchiveSharp.tsx index b7e832503..5bcbadd14 100644 --- a/src/IconArchiveSharp.tsx +++ b/src/IconArchiveSharp.tsx @@ -8,4 +8,4 @@ const IconArchiveSharp: React.FC = ({ ...props }) => ( ) -export { IconArchiveSharp as default } +export default IconArchiveSharp diff --git a/src/IconArchiveSharpFilled.tsx b/src/IconArchiveSharpFilled.tsx index e5d14226d..7efb51a8c 100644 --- a/src/IconArchiveSharpFilled.tsx +++ b/src/IconArchiveSharpFilled.tsx @@ -8,4 +8,4 @@ const IconArchiveSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconArchiveSharpFilled as default } +export default IconArchiveSharpFilled diff --git a/src/IconAreaChartOutlined.tsx b/src/IconAreaChartOutlined.tsx index 7ae5ce17b..ddc9297c1 100644 --- a/src/IconAreaChartOutlined.tsx +++ b/src/IconAreaChartOutlined.tsx @@ -8,4 +8,4 @@ const IconAreaChartOutlined: React.FC = ({ ...props }) => ( ) -export { IconAreaChartOutlined as default } +export default IconAreaChartOutlined diff --git a/src/IconAreaChartOutlinedFilled.tsx b/src/IconAreaChartOutlinedFilled.tsx index 8d7cd8b23..a8ce31c92 100644 --- a/src/IconAreaChartOutlinedFilled.tsx +++ b/src/IconAreaChartOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconAreaChartOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconAreaChartOutlinedFilled as default } +export default IconAreaChartOutlinedFilled diff --git a/src/IconAreaChartRounded.tsx b/src/IconAreaChartRounded.tsx index c458dcd58..62dbccb9d 100644 --- a/src/IconAreaChartRounded.tsx +++ b/src/IconAreaChartRounded.tsx @@ -8,4 +8,4 @@ const IconAreaChartRounded: React.FC = ({ ...props }) => ( ) -export { IconAreaChartRounded as default } +export default IconAreaChartRounded diff --git a/src/IconAreaChartRoundedFilled.tsx b/src/IconAreaChartRoundedFilled.tsx index ebcb6c89a..49bbb0e52 100644 --- a/src/IconAreaChartRoundedFilled.tsx +++ b/src/IconAreaChartRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconAreaChartRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconAreaChartRoundedFilled as default } +export default IconAreaChartRoundedFilled diff --git a/src/IconAreaChartSharp.tsx b/src/IconAreaChartSharp.tsx index 0cc646785..7105b9b2f 100644 --- a/src/IconAreaChartSharp.tsx +++ b/src/IconAreaChartSharp.tsx @@ -8,4 +8,4 @@ const IconAreaChartSharp: React.FC = ({ ...props }) => ( ) -export { IconAreaChartSharp as default } +export default IconAreaChartSharp diff --git a/src/IconAreaChartSharpFilled.tsx b/src/IconAreaChartSharpFilled.tsx index 2cf31f9d7..86573f460 100644 --- a/src/IconAreaChartSharpFilled.tsx +++ b/src/IconAreaChartSharpFilled.tsx @@ -8,4 +8,4 @@ const IconAreaChartSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconAreaChartSharpFilled as default } +export default IconAreaChartSharpFilled diff --git a/src/IconArmingCountdownOutlined.tsx b/src/IconArmingCountdownOutlined.tsx index defa9714c..0d3e9758d 100644 --- a/src/IconArmingCountdownOutlined.tsx +++ b/src/IconArmingCountdownOutlined.tsx @@ -8,4 +8,4 @@ const IconArmingCountdownOutlined: React.FC = ({ ...props }) => ( ) -export { IconArmingCountdownOutlined as default } +export default IconArmingCountdownOutlined diff --git a/src/IconArmingCountdownOutlinedFilled.tsx b/src/IconArmingCountdownOutlinedFilled.tsx index c3f84fcfc..1206c50d8 100644 --- a/src/IconArmingCountdownOutlinedFilled.tsx +++ b/src/IconArmingCountdownOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconArmingCountdownOutlinedFilled: React.FC = ({ ) -export { IconArmingCountdownOutlinedFilled as default } +export default IconArmingCountdownOutlinedFilled diff --git a/src/IconArmingCountdownRounded.tsx b/src/IconArmingCountdownRounded.tsx index ec0f5a892..374b99cba 100644 --- a/src/IconArmingCountdownRounded.tsx +++ b/src/IconArmingCountdownRounded.tsx @@ -8,4 +8,4 @@ const IconArmingCountdownRounded: React.FC = ({ ...props }) => ( ) -export { IconArmingCountdownRounded as default } +export default IconArmingCountdownRounded diff --git a/src/IconArmingCountdownRoundedFilled.tsx b/src/IconArmingCountdownRoundedFilled.tsx index a4007c85e..cae0fe7b1 100644 --- a/src/IconArmingCountdownRoundedFilled.tsx +++ b/src/IconArmingCountdownRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconArmingCountdownRoundedFilled: React.FC = ({ ) -export { IconArmingCountdownRoundedFilled as default } +export default IconArmingCountdownRoundedFilled diff --git a/src/IconArmingCountdownSharp.tsx b/src/IconArmingCountdownSharp.tsx index 12c3c9fa4..238aae133 100644 --- a/src/IconArmingCountdownSharp.tsx +++ b/src/IconArmingCountdownSharp.tsx @@ -8,4 +8,4 @@ const IconArmingCountdownSharp: React.FC = ({ ...props }) => ( ) -export { IconArmingCountdownSharp as default } +export default IconArmingCountdownSharp diff --git a/src/IconArmingCountdownSharpFilled.tsx b/src/IconArmingCountdownSharpFilled.tsx index 903086b79..76acde335 100644 --- a/src/IconArmingCountdownSharpFilled.tsx +++ b/src/IconArmingCountdownSharpFilled.tsx @@ -8,4 +8,4 @@ const IconArmingCountdownSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconArmingCountdownSharpFilled as default } +export default IconArmingCountdownSharpFilled diff --git a/src/IconArrowAndEdgeOutlined.tsx b/src/IconArrowAndEdgeOutlined.tsx index 8a29fa3e7..15a8cba77 100644 --- a/src/IconArrowAndEdgeOutlined.tsx +++ b/src/IconArrowAndEdgeOutlined.tsx @@ -8,4 +8,4 @@ const IconArrowAndEdgeOutlined: React.FC = ({ ...props }) => ( ) -export { IconArrowAndEdgeOutlined as default } +export default IconArrowAndEdgeOutlined diff --git a/src/IconArrowAndEdgeOutlinedFilled.tsx b/src/IconArrowAndEdgeOutlinedFilled.tsx index 3aa1376ca..5f2198d8b 100644 --- a/src/IconArrowAndEdgeOutlinedFilled.tsx +++ b/src/IconArrowAndEdgeOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconArrowAndEdgeOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconArrowAndEdgeOutlinedFilled as default } +export default IconArrowAndEdgeOutlinedFilled diff --git a/src/IconArrowAndEdgeRounded.tsx b/src/IconArrowAndEdgeRounded.tsx index f00b15813..430041ff4 100644 --- a/src/IconArrowAndEdgeRounded.tsx +++ b/src/IconArrowAndEdgeRounded.tsx @@ -8,4 +8,4 @@ const IconArrowAndEdgeRounded: React.FC = ({ ...props }) => ( ) -export { IconArrowAndEdgeRounded as default } +export default IconArrowAndEdgeRounded diff --git a/src/IconArrowAndEdgeRoundedFilled.tsx b/src/IconArrowAndEdgeRoundedFilled.tsx index d7c935249..4fe539682 100644 --- a/src/IconArrowAndEdgeRoundedFilled.tsx +++ b/src/IconArrowAndEdgeRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconArrowAndEdgeRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconArrowAndEdgeRoundedFilled as default } +export default IconArrowAndEdgeRoundedFilled diff --git a/src/IconArrowAndEdgeSharp.tsx b/src/IconArrowAndEdgeSharp.tsx index b0479372d..f277d141b 100644 --- a/src/IconArrowAndEdgeSharp.tsx +++ b/src/IconArrowAndEdgeSharp.tsx @@ -8,4 +8,4 @@ const IconArrowAndEdgeSharp: React.FC = ({ ...props }) => ( ) -export { IconArrowAndEdgeSharp as default } +export default IconArrowAndEdgeSharp diff --git a/src/IconArrowAndEdgeSharpFilled.tsx b/src/IconArrowAndEdgeSharpFilled.tsx index ee89bfe81..9d29e12f1 100644 --- a/src/IconArrowAndEdgeSharpFilled.tsx +++ b/src/IconArrowAndEdgeSharpFilled.tsx @@ -8,4 +8,4 @@ const IconArrowAndEdgeSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconArrowAndEdgeSharpFilled as default } +export default IconArrowAndEdgeSharpFilled diff --git a/src/IconArrowBack2Outlined.tsx b/src/IconArrowBack2Outlined.tsx index 169584811..3965df404 100644 --- a/src/IconArrowBack2Outlined.tsx +++ b/src/IconArrowBack2Outlined.tsx @@ -8,4 +8,4 @@ const IconArrowBack2Outlined: React.FC = ({ ...props }) => ( ) -export { IconArrowBack2Outlined as default } +export default IconArrowBack2Outlined diff --git a/src/IconArrowBack2OutlinedFilled.tsx b/src/IconArrowBack2OutlinedFilled.tsx index d6f8bf89e..e91f8ebc4 100644 --- a/src/IconArrowBack2OutlinedFilled.tsx +++ b/src/IconArrowBack2OutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconArrowBack2OutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconArrowBack2OutlinedFilled as default } +export default IconArrowBack2OutlinedFilled diff --git a/src/IconArrowBack2Rounded.tsx b/src/IconArrowBack2Rounded.tsx index b62cce771..43d8f2ea1 100644 --- a/src/IconArrowBack2Rounded.tsx +++ b/src/IconArrowBack2Rounded.tsx @@ -8,4 +8,4 @@ const IconArrowBack2Rounded: React.FC = ({ ...props }) => ( ) -export { IconArrowBack2Rounded as default } +export default IconArrowBack2Rounded diff --git a/src/IconArrowBack2RoundedFilled.tsx b/src/IconArrowBack2RoundedFilled.tsx index 34fc1f2ac..a654ab5b5 100644 --- a/src/IconArrowBack2RoundedFilled.tsx +++ b/src/IconArrowBack2RoundedFilled.tsx @@ -8,4 +8,4 @@ const IconArrowBack2RoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconArrowBack2RoundedFilled as default } +export default IconArrowBack2RoundedFilled diff --git a/src/IconArrowBack2Sharp.tsx b/src/IconArrowBack2Sharp.tsx index 08f3a277f..bb05cd1f9 100644 --- a/src/IconArrowBack2Sharp.tsx +++ b/src/IconArrowBack2Sharp.tsx @@ -8,4 +8,4 @@ const IconArrowBack2Sharp: React.FC = ({ ...props }) => ( ) -export { IconArrowBack2Sharp as default } +export default IconArrowBack2Sharp diff --git a/src/IconArrowBack2SharpFilled.tsx b/src/IconArrowBack2SharpFilled.tsx index 1a29afd90..423c11d0d 100644 --- a/src/IconArrowBack2SharpFilled.tsx +++ b/src/IconArrowBack2SharpFilled.tsx @@ -8,4 +8,4 @@ const IconArrowBack2SharpFilled: React.FC = ({ ...props }) => ( ) -export { IconArrowBack2SharpFilled as default } +export default IconArrowBack2SharpFilled diff --git a/src/IconArrowBackIosNewOutlined.tsx b/src/IconArrowBackIosNewOutlined.tsx index 577f21a81..816452adb 100644 --- a/src/IconArrowBackIosNewOutlined.tsx +++ b/src/IconArrowBackIosNewOutlined.tsx @@ -8,4 +8,4 @@ const IconArrowBackIosNewOutlined: React.FC = ({ ...props }) => ( ) -export { IconArrowBackIosNewOutlined as default } +export default IconArrowBackIosNewOutlined diff --git a/src/IconArrowBackIosNewOutlinedFilled.tsx b/src/IconArrowBackIosNewOutlinedFilled.tsx index f16120665..90c035518 100644 --- a/src/IconArrowBackIosNewOutlinedFilled.tsx +++ b/src/IconArrowBackIosNewOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconArrowBackIosNewOutlinedFilled: React.FC = ({ ) -export { IconArrowBackIosNewOutlinedFilled as default } +export default IconArrowBackIosNewOutlinedFilled diff --git a/src/IconArrowBackIosNewRounded.tsx b/src/IconArrowBackIosNewRounded.tsx index 8ae621ee4..9925f4708 100644 --- a/src/IconArrowBackIosNewRounded.tsx +++ b/src/IconArrowBackIosNewRounded.tsx @@ -8,4 +8,4 @@ const IconArrowBackIosNewRounded: React.FC = ({ ...props }) => ( ) -export { IconArrowBackIosNewRounded as default } +export default IconArrowBackIosNewRounded diff --git a/src/IconArrowBackIosNewRoundedFilled.tsx b/src/IconArrowBackIosNewRoundedFilled.tsx index 126113610..ebbc7ef3b 100644 --- a/src/IconArrowBackIosNewRoundedFilled.tsx +++ b/src/IconArrowBackIosNewRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconArrowBackIosNewRoundedFilled: React.FC = ({ ) -export { IconArrowBackIosNewRoundedFilled as default } +export default IconArrowBackIosNewRoundedFilled diff --git a/src/IconArrowBackIosNewSharp.tsx b/src/IconArrowBackIosNewSharp.tsx index 2d4ec64ba..6373f6191 100644 --- a/src/IconArrowBackIosNewSharp.tsx +++ b/src/IconArrowBackIosNewSharp.tsx @@ -8,4 +8,4 @@ const IconArrowBackIosNewSharp: React.FC = ({ ...props }) => ( ) -export { IconArrowBackIosNewSharp as default } +export default IconArrowBackIosNewSharp diff --git a/src/IconArrowBackIosNewSharpFilled.tsx b/src/IconArrowBackIosNewSharpFilled.tsx index 74dc647dc..1c489ad27 100644 --- a/src/IconArrowBackIosNewSharpFilled.tsx +++ b/src/IconArrowBackIosNewSharpFilled.tsx @@ -8,4 +8,4 @@ const IconArrowBackIosNewSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconArrowBackIosNewSharpFilled as default } +export default IconArrowBackIosNewSharpFilled diff --git a/src/IconArrowBackIosOutlined.tsx b/src/IconArrowBackIosOutlined.tsx index ad58609f1..8e3da5e5e 100644 --- a/src/IconArrowBackIosOutlined.tsx +++ b/src/IconArrowBackIosOutlined.tsx @@ -8,4 +8,4 @@ const IconArrowBackIosOutlined: React.FC = ({ ...props }) => ( ) -export { IconArrowBackIosOutlined as default } +export default IconArrowBackIosOutlined diff --git a/src/IconArrowBackIosOutlinedFilled.tsx b/src/IconArrowBackIosOutlinedFilled.tsx index 484195a1d..d87316a61 100644 --- a/src/IconArrowBackIosOutlinedFilled.tsx +++ b/src/IconArrowBackIosOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconArrowBackIosOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconArrowBackIosOutlinedFilled as default } +export default IconArrowBackIosOutlinedFilled diff --git a/src/IconArrowBackIosRounded.tsx b/src/IconArrowBackIosRounded.tsx index 04258a394..1813919c6 100644 --- a/src/IconArrowBackIosRounded.tsx +++ b/src/IconArrowBackIosRounded.tsx @@ -8,4 +8,4 @@ const IconArrowBackIosRounded: React.FC = ({ ...props }) => ( ) -export { IconArrowBackIosRounded as default } +export default IconArrowBackIosRounded diff --git a/src/IconArrowBackIosRoundedFilled.tsx b/src/IconArrowBackIosRoundedFilled.tsx index 25c6e0f5b..e826fa41c 100644 --- a/src/IconArrowBackIosRoundedFilled.tsx +++ b/src/IconArrowBackIosRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconArrowBackIosRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconArrowBackIosRoundedFilled as default } +export default IconArrowBackIosRoundedFilled diff --git a/src/IconArrowBackIosSharp.tsx b/src/IconArrowBackIosSharp.tsx index 9c10ee756..7bd2dc8a8 100644 --- a/src/IconArrowBackIosSharp.tsx +++ b/src/IconArrowBackIosSharp.tsx @@ -8,4 +8,4 @@ const IconArrowBackIosSharp: React.FC = ({ ...props }) => ( ) -export { IconArrowBackIosSharp as default } +export default IconArrowBackIosSharp diff --git a/src/IconArrowBackIosSharpFilled.tsx b/src/IconArrowBackIosSharpFilled.tsx index ee7169e54..c9a50e2c8 100644 --- a/src/IconArrowBackIosSharpFilled.tsx +++ b/src/IconArrowBackIosSharpFilled.tsx @@ -8,4 +8,4 @@ const IconArrowBackIosSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconArrowBackIosSharpFilled as default } +export default IconArrowBackIosSharpFilled diff --git a/src/IconArrowBackOutlined.tsx b/src/IconArrowBackOutlined.tsx index fe47d2772..3ca5731b7 100644 --- a/src/IconArrowBackOutlined.tsx +++ b/src/IconArrowBackOutlined.tsx @@ -8,4 +8,4 @@ const IconArrowBackOutlined: React.FC = ({ ...props }) => ( ) -export { IconArrowBackOutlined as default } +export default IconArrowBackOutlined diff --git a/src/IconArrowBackOutlinedFilled.tsx b/src/IconArrowBackOutlinedFilled.tsx index dda6b8bf5..2c6585e63 100644 --- a/src/IconArrowBackOutlinedFilled.tsx +++ b/src/IconArrowBackOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconArrowBackOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconArrowBackOutlinedFilled as default } +export default IconArrowBackOutlinedFilled diff --git a/src/IconArrowBackRounded.tsx b/src/IconArrowBackRounded.tsx index 081c9f751..a9100b754 100644 --- a/src/IconArrowBackRounded.tsx +++ b/src/IconArrowBackRounded.tsx @@ -8,4 +8,4 @@ const IconArrowBackRounded: React.FC = ({ ...props }) => ( ) -export { IconArrowBackRounded as default } +export default IconArrowBackRounded diff --git a/src/IconArrowBackRoundedFilled.tsx b/src/IconArrowBackRoundedFilled.tsx index b97dfdeb3..6d80e98e8 100644 --- a/src/IconArrowBackRoundedFilled.tsx +++ b/src/IconArrowBackRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconArrowBackRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconArrowBackRoundedFilled as default } +export default IconArrowBackRoundedFilled diff --git a/src/IconArrowBackSharp.tsx b/src/IconArrowBackSharp.tsx index cb428fa2b..da607f356 100644 --- a/src/IconArrowBackSharp.tsx +++ b/src/IconArrowBackSharp.tsx @@ -8,4 +8,4 @@ const IconArrowBackSharp: React.FC = ({ ...props }) => ( ) -export { IconArrowBackSharp as default } +export default IconArrowBackSharp diff --git a/src/IconArrowBackSharpFilled.tsx b/src/IconArrowBackSharpFilled.tsx index f7b9b564b..de22707c8 100644 --- a/src/IconArrowBackSharpFilled.tsx +++ b/src/IconArrowBackSharpFilled.tsx @@ -8,4 +8,4 @@ const IconArrowBackSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconArrowBackSharpFilled as default } +export default IconArrowBackSharpFilled diff --git a/src/IconArrowCircleDownOutlined.tsx b/src/IconArrowCircleDownOutlined.tsx index e962eb589..c42d796f5 100644 --- a/src/IconArrowCircleDownOutlined.tsx +++ b/src/IconArrowCircleDownOutlined.tsx @@ -8,4 +8,4 @@ const IconArrowCircleDownOutlined: React.FC = ({ ...props }) => ( ) -export { IconArrowCircleDownOutlined as default } +export default IconArrowCircleDownOutlined diff --git a/src/IconArrowCircleDownOutlinedFilled.tsx b/src/IconArrowCircleDownOutlinedFilled.tsx index 3bc5559aa..ab5e506c1 100644 --- a/src/IconArrowCircleDownOutlinedFilled.tsx +++ b/src/IconArrowCircleDownOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconArrowCircleDownOutlinedFilled: React.FC = ({ ) -export { IconArrowCircleDownOutlinedFilled as default } +export default IconArrowCircleDownOutlinedFilled diff --git a/src/IconArrowCircleDownRounded.tsx b/src/IconArrowCircleDownRounded.tsx index b4e381616..f3b74f79c 100644 --- a/src/IconArrowCircleDownRounded.tsx +++ b/src/IconArrowCircleDownRounded.tsx @@ -8,4 +8,4 @@ const IconArrowCircleDownRounded: React.FC = ({ ...props }) => ( ) -export { IconArrowCircleDownRounded as default } +export default IconArrowCircleDownRounded diff --git a/src/IconArrowCircleDownRoundedFilled.tsx b/src/IconArrowCircleDownRoundedFilled.tsx index 06d2082a1..f3f12fe41 100644 --- a/src/IconArrowCircleDownRoundedFilled.tsx +++ b/src/IconArrowCircleDownRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconArrowCircleDownRoundedFilled: React.FC = ({ ) -export { IconArrowCircleDownRoundedFilled as default } +export default IconArrowCircleDownRoundedFilled diff --git a/src/IconArrowCircleDownSharp.tsx b/src/IconArrowCircleDownSharp.tsx index 485183528..cbabd3082 100644 --- a/src/IconArrowCircleDownSharp.tsx +++ b/src/IconArrowCircleDownSharp.tsx @@ -8,4 +8,4 @@ const IconArrowCircleDownSharp: React.FC = ({ ...props }) => ( ) -export { IconArrowCircleDownSharp as default } +export default IconArrowCircleDownSharp diff --git a/src/IconArrowCircleDownSharpFilled.tsx b/src/IconArrowCircleDownSharpFilled.tsx index 6e81414f7..8f86c5513 100644 --- a/src/IconArrowCircleDownSharpFilled.tsx +++ b/src/IconArrowCircleDownSharpFilled.tsx @@ -8,4 +8,4 @@ const IconArrowCircleDownSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconArrowCircleDownSharpFilled as default } +export default IconArrowCircleDownSharpFilled diff --git a/src/IconArrowCircleLeftOutlined.tsx b/src/IconArrowCircleLeftOutlined.tsx index 02994882a..fdb48a7e9 100644 --- a/src/IconArrowCircleLeftOutlined.tsx +++ b/src/IconArrowCircleLeftOutlined.tsx @@ -8,4 +8,4 @@ const IconArrowCircleLeftOutlined: React.FC = ({ ...props }) => ( ) -export { IconArrowCircleLeftOutlined as default } +export default IconArrowCircleLeftOutlined diff --git a/src/IconArrowCircleLeftOutlinedFilled.tsx b/src/IconArrowCircleLeftOutlinedFilled.tsx index a6b08530e..91897070b 100644 --- a/src/IconArrowCircleLeftOutlinedFilled.tsx +++ b/src/IconArrowCircleLeftOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconArrowCircleLeftOutlinedFilled: React.FC = ({ ) -export { IconArrowCircleLeftOutlinedFilled as default } +export default IconArrowCircleLeftOutlinedFilled diff --git a/src/IconArrowCircleLeftRounded.tsx b/src/IconArrowCircleLeftRounded.tsx index 023b0497f..eb3fe1800 100644 --- a/src/IconArrowCircleLeftRounded.tsx +++ b/src/IconArrowCircleLeftRounded.tsx @@ -8,4 +8,4 @@ const IconArrowCircleLeftRounded: React.FC = ({ ...props }) => ( ) -export { IconArrowCircleLeftRounded as default } +export default IconArrowCircleLeftRounded diff --git a/src/IconArrowCircleLeftRoundedFilled.tsx b/src/IconArrowCircleLeftRoundedFilled.tsx index c0e7dbd25..c13472cba 100644 --- a/src/IconArrowCircleLeftRoundedFilled.tsx +++ b/src/IconArrowCircleLeftRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconArrowCircleLeftRoundedFilled: React.FC = ({ ) -export { IconArrowCircleLeftRoundedFilled as default } +export default IconArrowCircleLeftRoundedFilled diff --git a/src/IconArrowCircleLeftSharp.tsx b/src/IconArrowCircleLeftSharp.tsx index d49b57588..6fefdd6a8 100644 --- a/src/IconArrowCircleLeftSharp.tsx +++ b/src/IconArrowCircleLeftSharp.tsx @@ -8,4 +8,4 @@ const IconArrowCircleLeftSharp: React.FC = ({ ...props }) => ( ) -export { IconArrowCircleLeftSharp as default } +export default IconArrowCircleLeftSharp diff --git a/src/IconArrowCircleLeftSharpFilled.tsx b/src/IconArrowCircleLeftSharpFilled.tsx index b11dbba24..91bc41f9b 100644 --- a/src/IconArrowCircleLeftSharpFilled.tsx +++ b/src/IconArrowCircleLeftSharpFilled.tsx @@ -8,4 +8,4 @@ const IconArrowCircleLeftSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconArrowCircleLeftSharpFilled as default } +export default IconArrowCircleLeftSharpFilled diff --git a/src/IconArrowCircleRightOutlined.tsx b/src/IconArrowCircleRightOutlined.tsx index 5dd070a84..65a584ead 100644 --- a/src/IconArrowCircleRightOutlined.tsx +++ b/src/IconArrowCircleRightOutlined.tsx @@ -8,4 +8,4 @@ const IconArrowCircleRightOutlined: React.FC = ({ ...props }) => ( ) -export { IconArrowCircleRightOutlined as default } +export default IconArrowCircleRightOutlined diff --git a/src/IconArrowCircleRightOutlinedFilled.tsx b/src/IconArrowCircleRightOutlinedFilled.tsx index cb1187103..382edf2c7 100644 --- a/src/IconArrowCircleRightOutlinedFilled.tsx +++ b/src/IconArrowCircleRightOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconArrowCircleRightOutlinedFilled: React.FC = ({ ) -export { IconArrowCircleRightOutlinedFilled as default } +export default IconArrowCircleRightOutlinedFilled diff --git a/src/IconArrowCircleRightRounded.tsx b/src/IconArrowCircleRightRounded.tsx index 080040dca..d83983ccb 100644 --- a/src/IconArrowCircleRightRounded.tsx +++ b/src/IconArrowCircleRightRounded.tsx @@ -8,4 +8,4 @@ const IconArrowCircleRightRounded: React.FC = ({ ...props }) => ( ) -export { IconArrowCircleRightRounded as default } +export default IconArrowCircleRightRounded diff --git a/src/IconArrowCircleRightRoundedFilled.tsx b/src/IconArrowCircleRightRoundedFilled.tsx index db4b73c1c..869e704a8 100644 --- a/src/IconArrowCircleRightRoundedFilled.tsx +++ b/src/IconArrowCircleRightRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconArrowCircleRightRoundedFilled: React.FC = ({ ) -export { IconArrowCircleRightRoundedFilled as default } +export default IconArrowCircleRightRoundedFilled diff --git a/src/IconArrowCircleRightSharp.tsx b/src/IconArrowCircleRightSharp.tsx index 14ac8f335..d83e5902b 100644 --- a/src/IconArrowCircleRightSharp.tsx +++ b/src/IconArrowCircleRightSharp.tsx @@ -8,4 +8,4 @@ const IconArrowCircleRightSharp: React.FC = ({ ...props }) => ( ) -export { IconArrowCircleRightSharp as default } +export default IconArrowCircleRightSharp diff --git a/src/IconArrowCircleRightSharpFilled.tsx b/src/IconArrowCircleRightSharpFilled.tsx index 90cb6aec1..6e1da29c3 100644 --- a/src/IconArrowCircleRightSharpFilled.tsx +++ b/src/IconArrowCircleRightSharpFilled.tsx @@ -8,4 +8,4 @@ const IconArrowCircleRightSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconArrowCircleRightSharpFilled as default } +export default IconArrowCircleRightSharpFilled diff --git a/src/IconArrowCircleUpOutlined.tsx b/src/IconArrowCircleUpOutlined.tsx index 6d9c33eec..b3445ef1a 100644 --- a/src/IconArrowCircleUpOutlined.tsx +++ b/src/IconArrowCircleUpOutlined.tsx @@ -8,4 +8,4 @@ const IconArrowCircleUpOutlined: React.FC = ({ ...props }) => ( ) -export { IconArrowCircleUpOutlined as default } +export default IconArrowCircleUpOutlined diff --git a/src/IconArrowCircleUpOutlinedFilled.tsx b/src/IconArrowCircleUpOutlinedFilled.tsx index 4e5ed68bd..a3e8a882a 100644 --- a/src/IconArrowCircleUpOutlinedFilled.tsx +++ b/src/IconArrowCircleUpOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconArrowCircleUpOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconArrowCircleUpOutlinedFilled as default } +export default IconArrowCircleUpOutlinedFilled diff --git a/src/IconArrowCircleUpRounded.tsx b/src/IconArrowCircleUpRounded.tsx index 95afb4499..c23b0d875 100644 --- a/src/IconArrowCircleUpRounded.tsx +++ b/src/IconArrowCircleUpRounded.tsx @@ -8,4 +8,4 @@ const IconArrowCircleUpRounded: React.FC = ({ ...props }) => ( ) -export { IconArrowCircleUpRounded as default } +export default IconArrowCircleUpRounded diff --git a/src/IconArrowCircleUpRoundedFilled.tsx b/src/IconArrowCircleUpRoundedFilled.tsx index e171ca006..e914fce0f 100644 --- a/src/IconArrowCircleUpRoundedFilled.tsx +++ b/src/IconArrowCircleUpRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconArrowCircleUpRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconArrowCircleUpRoundedFilled as default } +export default IconArrowCircleUpRoundedFilled diff --git a/src/IconArrowCircleUpSharp.tsx b/src/IconArrowCircleUpSharp.tsx index 67bf96f94..501ef016f 100644 --- a/src/IconArrowCircleUpSharp.tsx +++ b/src/IconArrowCircleUpSharp.tsx @@ -8,4 +8,4 @@ const IconArrowCircleUpSharp: React.FC = ({ ...props }) => ( ) -export { IconArrowCircleUpSharp as default } +export default IconArrowCircleUpSharp diff --git a/src/IconArrowCircleUpSharpFilled.tsx b/src/IconArrowCircleUpSharpFilled.tsx index 0e35c8ba8..204ef4ba6 100644 --- a/src/IconArrowCircleUpSharpFilled.tsx +++ b/src/IconArrowCircleUpSharpFilled.tsx @@ -8,4 +8,4 @@ const IconArrowCircleUpSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconArrowCircleUpSharpFilled as default } +export default IconArrowCircleUpSharpFilled diff --git a/src/IconArrowCoolDownOutlined.tsx b/src/IconArrowCoolDownOutlined.tsx index 8751110c9..eb7c56879 100644 --- a/src/IconArrowCoolDownOutlined.tsx +++ b/src/IconArrowCoolDownOutlined.tsx @@ -8,4 +8,4 @@ const IconArrowCoolDownOutlined: React.FC = ({ ...props }) => ( ) -export { IconArrowCoolDownOutlined as default } +export default IconArrowCoolDownOutlined diff --git a/src/IconArrowCoolDownOutlinedFilled.tsx b/src/IconArrowCoolDownOutlinedFilled.tsx index a7ebe9581..c6207b54d 100644 --- a/src/IconArrowCoolDownOutlinedFilled.tsx +++ b/src/IconArrowCoolDownOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconArrowCoolDownOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconArrowCoolDownOutlinedFilled as default } +export default IconArrowCoolDownOutlinedFilled diff --git a/src/IconArrowCoolDownRounded.tsx b/src/IconArrowCoolDownRounded.tsx index 57fde7634..61d867461 100644 --- a/src/IconArrowCoolDownRounded.tsx +++ b/src/IconArrowCoolDownRounded.tsx @@ -8,4 +8,4 @@ const IconArrowCoolDownRounded: React.FC = ({ ...props }) => ( ) -export { IconArrowCoolDownRounded as default } +export default IconArrowCoolDownRounded diff --git a/src/IconArrowCoolDownRoundedFilled.tsx b/src/IconArrowCoolDownRoundedFilled.tsx index 7a76b6cc4..0815bf0c5 100644 --- a/src/IconArrowCoolDownRoundedFilled.tsx +++ b/src/IconArrowCoolDownRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconArrowCoolDownRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconArrowCoolDownRoundedFilled as default } +export default IconArrowCoolDownRoundedFilled diff --git a/src/IconArrowCoolDownSharp.tsx b/src/IconArrowCoolDownSharp.tsx index 54c114163..408146341 100644 --- a/src/IconArrowCoolDownSharp.tsx +++ b/src/IconArrowCoolDownSharp.tsx @@ -8,4 +8,4 @@ const IconArrowCoolDownSharp: React.FC = ({ ...props }) => ( ) -export { IconArrowCoolDownSharp as default } +export default IconArrowCoolDownSharp diff --git a/src/IconArrowCoolDownSharpFilled.tsx b/src/IconArrowCoolDownSharpFilled.tsx index 4a9e41689..70107c8e7 100644 --- a/src/IconArrowCoolDownSharpFilled.tsx +++ b/src/IconArrowCoolDownSharpFilled.tsx @@ -8,4 +8,4 @@ const IconArrowCoolDownSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconArrowCoolDownSharpFilled as default } +export default IconArrowCoolDownSharpFilled diff --git a/src/IconArrowDownwardAltOutlined.tsx b/src/IconArrowDownwardAltOutlined.tsx index 0233cbbf8..03966ab50 100644 --- a/src/IconArrowDownwardAltOutlined.tsx +++ b/src/IconArrowDownwardAltOutlined.tsx @@ -8,4 +8,4 @@ const IconArrowDownwardAltOutlined: React.FC = ({ ...props }) => ( ) -export { IconArrowDownwardAltOutlined as default } +export default IconArrowDownwardAltOutlined diff --git a/src/IconArrowDownwardAltOutlinedFilled.tsx b/src/IconArrowDownwardAltOutlinedFilled.tsx index 7f6f85e82..68c4e1bed 100644 --- a/src/IconArrowDownwardAltOutlinedFilled.tsx +++ b/src/IconArrowDownwardAltOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconArrowDownwardAltOutlinedFilled: React.FC = ({ ) -export { IconArrowDownwardAltOutlinedFilled as default } +export default IconArrowDownwardAltOutlinedFilled diff --git a/src/IconArrowDownwardAltRounded.tsx b/src/IconArrowDownwardAltRounded.tsx index e7d4969bb..4ab72f893 100644 --- a/src/IconArrowDownwardAltRounded.tsx +++ b/src/IconArrowDownwardAltRounded.tsx @@ -8,4 +8,4 @@ const IconArrowDownwardAltRounded: React.FC = ({ ...props }) => ( ) -export { IconArrowDownwardAltRounded as default } +export default IconArrowDownwardAltRounded diff --git a/src/IconArrowDownwardAltRoundedFilled.tsx b/src/IconArrowDownwardAltRoundedFilled.tsx index d0e452b55..f220c0c4b 100644 --- a/src/IconArrowDownwardAltRoundedFilled.tsx +++ b/src/IconArrowDownwardAltRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconArrowDownwardAltRoundedFilled: React.FC = ({ ) -export { IconArrowDownwardAltRoundedFilled as default } +export default IconArrowDownwardAltRoundedFilled diff --git a/src/IconArrowDownwardAltSharp.tsx b/src/IconArrowDownwardAltSharp.tsx index 3ff2d4646..0d2421bbb 100644 --- a/src/IconArrowDownwardAltSharp.tsx +++ b/src/IconArrowDownwardAltSharp.tsx @@ -8,4 +8,4 @@ const IconArrowDownwardAltSharp: React.FC = ({ ...props }) => ( ) -export { IconArrowDownwardAltSharp as default } +export default IconArrowDownwardAltSharp diff --git a/src/IconArrowDownwardAltSharpFilled.tsx b/src/IconArrowDownwardAltSharpFilled.tsx index 3dd6dc4a2..590aff3e9 100644 --- a/src/IconArrowDownwardAltSharpFilled.tsx +++ b/src/IconArrowDownwardAltSharpFilled.tsx @@ -8,4 +8,4 @@ const IconArrowDownwardAltSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconArrowDownwardAltSharpFilled as default } +export default IconArrowDownwardAltSharpFilled diff --git a/src/IconArrowDownwardOutlined.tsx b/src/IconArrowDownwardOutlined.tsx index 0fb933a00..e1758f7f1 100644 --- a/src/IconArrowDownwardOutlined.tsx +++ b/src/IconArrowDownwardOutlined.tsx @@ -8,4 +8,4 @@ const IconArrowDownwardOutlined: React.FC = ({ ...props }) => ( ) -export { IconArrowDownwardOutlined as default } +export default IconArrowDownwardOutlined diff --git a/src/IconArrowDownwardOutlinedFilled.tsx b/src/IconArrowDownwardOutlinedFilled.tsx index 38329d291..b5bf6a2ea 100644 --- a/src/IconArrowDownwardOutlinedFilled.tsx +++ b/src/IconArrowDownwardOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconArrowDownwardOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconArrowDownwardOutlinedFilled as default } +export default IconArrowDownwardOutlinedFilled diff --git a/src/IconArrowDownwardRounded.tsx b/src/IconArrowDownwardRounded.tsx index 1aa2a8217..48a70f8d2 100644 --- a/src/IconArrowDownwardRounded.tsx +++ b/src/IconArrowDownwardRounded.tsx @@ -8,4 +8,4 @@ const IconArrowDownwardRounded: React.FC = ({ ...props }) => ( ) -export { IconArrowDownwardRounded as default } +export default IconArrowDownwardRounded diff --git a/src/IconArrowDownwardRoundedFilled.tsx b/src/IconArrowDownwardRoundedFilled.tsx index d112f2ae7..092062cfb 100644 --- a/src/IconArrowDownwardRoundedFilled.tsx +++ b/src/IconArrowDownwardRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconArrowDownwardRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconArrowDownwardRoundedFilled as default } +export default IconArrowDownwardRoundedFilled diff --git a/src/IconArrowDownwardSharp.tsx b/src/IconArrowDownwardSharp.tsx index 510f7d585..470474741 100644 --- a/src/IconArrowDownwardSharp.tsx +++ b/src/IconArrowDownwardSharp.tsx @@ -8,4 +8,4 @@ const IconArrowDownwardSharp: React.FC = ({ ...props }) => ( ) -export { IconArrowDownwardSharp as default } +export default IconArrowDownwardSharp diff --git a/src/IconArrowDownwardSharpFilled.tsx b/src/IconArrowDownwardSharpFilled.tsx index a6c220f9f..2ea2ed856 100644 --- a/src/IconArrowDownwardSharpFilled.tsx +++ b/src/IconArrowDownwardSharpFilled.tsx @@ -8,4 +8,4 @@ const IconArrowDownwardSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconArrowDownwardSharpFilled as default } +export default IconArrowDownwardSharpFilled diff --git a/src/IconArrowDropDownCircleOutlined.tsx b/src/IconArrowDropDownCircleOutlined.tsx index d0d7c2850..f72fd17fa 100644 --- a/src/IconArrowDropDownCircleOutlined.tsx +++ b/src/IconArrowDropDownCircleOutlined.tsx @@ -8,4 +8,4 @@ const IconArrowDropDownCircleOutlined: React.FC = ({ ...props }) => ( ) -export { IconArrowDropDownCircleOutlined as default } +export default IconArrowDropDownCircleOutlined diff --git a/src/IconArrowDropDownCircleOutlinedFilled.tsx b/src/IconArrowDropDownCircleOutlinedFilled.tsx index a0c9f631f..4a8615fd2 100644 --- a/src/IconArrowDropDownCircleOutlinedFilled.tsx +++ b/src/IconArrowDropDownCircleOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconArrowDropDownCircleOutlinedFilled: React.FC = ({ ) -export { IconArrowDropDownCircleOutlinedFilled as default } +export default IconArrowDropDownCircleOutlinedFilled diff --git a/src/IconArrowDropDownCircleRounded.tsx b/src/IconArrowDropDownCircleRounded.tsx index 3021b9e42..2ea5566de 100644 --- a/src/IconArrowDropDownCircleRounded.tsx +++ b/src/IconArrowDropDownCircleRounded.tsx @@ -8,4 +8,4 @@ const IconArrowDropDownCircleRounded: React.FC = ({ ...props }) => ( ) -export { IconArrowDropDownCircleRounded as default } +export default IconArrowDropDownCircleRounded diff --git a/src/IconArrowDropDownCircleRoundedFilled.tsx b/src/IconArrowDropDownCircleRoundedFilled.tsx index aa4932a5a..40eca4b75 100644 --- a/src/IconArrowDropDownCircleRoundedFilled.tsx +++ b/src/IconArrowDropDownCircleRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconArrowDropDownCircleRoundedFilled: React.FC = ({ ) -export { IconArrowDropDownCircleRoundedFilled as default } +export default IconArrowDropDownCircleRoundedFilled diff --git a/src/IconArrowDropDownCircleSharp.tsx b/src/IconArrowDropDownCircleSharp.tsx index 5cfadf17b..a59f174bf 100644 --- a/src/IconArrowDropDownCircleSharp.tsx +++ b/src/IconArrowDropDownCircleSharp.tsx @@ -8,4 +8,4 @@ const IconArrowDropDownCircleSharp: React.FC = ({ ...props }) => ( ) -export { IconArrowDropDownCircleSharp as default } +export default IconArrowDropDownCircleSharp diff --git a/src/IconArrowDropDownCircleSharpFilled.tsx b/src/IconArrowDropDownCircleSharpFilled.tsx index 86085a7e2..e81420340 100644 --- a/src/IconArrowDropDownCircleSharpFilled.tsx +++ b/src/IconArrowDropDownCircleSharpFilled.tsx @@ -10,4 +10,4 @@ const IconArrowDropDownCircleSharpFilled: React.FC = ({ ) -export { IconArrowDropDownCircleSharpFilled as default } +export default IconArrowDropDownCircleSharpFilled diff --git a/src/IconArrowDropDownOutlined.tsx b/src/IconArrowDropDownOutlined.tsx index e335d8e6c..5035f4d47 100644 --- a/src/IconArrowDropDownOutlined.tsx +++ b/src/IconArrowDropDownOutlined.tsx @@ -8,4 +8,4 @@ const IconArrowDropDownOutlined: React.FC = ({ ...props }) => ( ) -export { IconArrowDropDownOutlined as default } +export default IconArrowDropDownOutlined diff --git a/src/IconArrowDropDownOutlinedFilled.tsx b/src/IconArrowDropDownOutlinedFilled.tsx index a6ebabe66..c460f966b 100644 --- a/src/IconArrowDropDownOutlinedFilled.tsx +++ b/src/IconArrowDropDownOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconArrowDropDownOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconArrowDropDownOutlinedFilled as default } +export default IconArrowDropDownOutlinedFilled diff --git a/src/IconArrowDropDownRounded.tsx b/src/IconArrowDropDownRounded.tsx index 9655a5cbb..f685c9c3d 100644 --- a/src/IconArrowDropDownRounded.tsx +++ b/src/IconArrowDropDownRounded.tsx @@ -8,4 +8,4 @@ const IconArrowDropDownRounded: React.FC = ({ ...props }) => ( ) -export { IconArrowDropDownRounded as default } +export default IconArrowDropDownRounded diff --git a/src/IconArrowDropDownRoundedFilled.tsx b/src/IconArrowDropDownRoundedFilled.tsx index 33662b56f..fd55aab5d 100644 --- a/src/IconArrowDropDownRoundedFilled.tsx +++ b/src/IconArrowDropDownRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconArrowDropDownRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconArrowDropDownRoundedFilled as default } +export default IconArrowDropDownRoundedFilled diff --git a/src/IconArrowDropDownSharp.tsx b/src/IconArrowDropDownSharp.tsx index 709c40467..5e0f64992 100644 --- a/src/IconArrowDropDownSharp.tsx +++ b/src/IconArrowDropDownSharp.tsx @@ -8,4 +8,4 @@ const IconArrowDropDownSharp: React.FC = ({ ...props }) => ( ) -export { IconArrowDropDownSharp as default } +export default IconArrowDropDownSharp diff --git a/src/IconArrowDropDownSharpFilled.tsx b/src/IconArrowDropDownSharpFilled.tsx index 295e5514f..e6ce3052e 100644 --- a/src/IconArrowDropDownSharpFilled.tsx +++ b/src/IconArrowDropDownSharpFilled.tsx @@ -8,4 +8,4 @@ const IconArrowDropDownSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconArrowDropDownSharpFilled as default } +export default IconArrowDropDownSharpFilled diff --git a/src/IconArrowDropUpOutlined.tsx b/src/IconArrowDropUpOutlined.tsx index ea62228c9..4abd83ac5 100644 --- a/src/IconArrowDropUpOutlined.tsx +++ b/src/IconArrowDropUpOutlined.tsx @@ -8,4 +8,4 @@ const IconArrowDropUpOutlined: React.FC = ({ ...props }) => ( ) -export { IconArrowDropUpOutlined as default } +export default IconArrowDropUpOutlined diff --git a/src/IconArrowDropUpOutlinedFilled.tsx b/src/IconArrowDropUpOutlinedFilled.tsx index 641de1aca..7dbab676a 100644 --- a/src/IconArrowDropUpOutlinedFilled.tsx +++ b/src/IconArrowDropUpOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconArrowDropUpOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconArrowDropUpOutlinedFilled as default } +export default IconArrowDropUpOutlinedFilled diff --git a/src/IconArrowDropUpRounded.tsx b/src/IconArrowDropUpRounded.tsx index 51278f802..4ddb30504 100644 --- a/src/IconArrowDropUpRounded.tsx +++ b/src/IconArrowDropUpRounded.tsx @@ -8,4 +8,4 @@ const IconArrowDropUpRounded: React.FC = ({ ...props }) => ( ) -export { IconArrowDropUpRounded as default } +export default IconArrowDropUpRounded diff --git a/src/IconArrowDropUpRoundedFilled.tsx b/src/IconArrowDropUpRoundedFilled.tsx index b76e66a28..d3365bad0 100644 --- a/src/IconArrowDropUpRoundedFilled.tsx +++ b/src/IconArrowDropUpRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconArrowDropUpRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconArrowDropUpRoundedFilled as default } +export default IconArrowDropUpRoundedFilled diff --git a/src/IconArrowDropUpSharp.tsx b/src/IconArrowDropUpSharp.tsx index 61aed405a..16328404b 100644 --- a/src/IconArrowDropUpSharp.tsx +++ b/src/IconArrowDropUpSharp.tsx @@ -8,4 +8,4 @@ const IconArrowDropUpSharp: React.FC = ({ ...props }) => ( ) -export { IconArrowDropUpSharp as default } +export default IconArrowDropUpSharp diff --git a/src/IconArrowDropUpSharpFilled.tsx b/src/IconArrowDropUpSharpFilled.tsx index 80b35ac67..d6f25f187 100644 --- a/src/IconArrowDropUpSharpFilled.tsx +++ b/src/IconArrowDropUpSharpFilled.tsx @@ -8,4 +8,4 @@ const IconArrowDropUpSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconArrowDropUpSharpFilled as default } +export default IconArrowDropUpSharpFilled diff --git a/src/IconArrowForwardIosOutlined.tsx b/src/IconArrowForwardIosOutlined.tsx index a2fe99830..09d5b7876 100644 --- a/src/IconArrowForwardIosOutlined.tsx +++ b/src/IconArrowForwardIosOutlined.tsx @@ -8,4 +8,4 @@ const IconArrowForwardIosOutlined: React.FC = ({ ...props }) => ( ) -export { IconArrowForwardIosOutlined as default } +export default IconArrowForwardIosOutlined diff --git a/src/IconArrowForwardIosOutlinedFilled.tsx b/src/IconArrowForwardIosOutlinedFilled.tsx index f19d2438a..44d8706b6 100644 --- a/src/IconArrowForwardIosOutlinedFilled.tsx +++ b/src/IconArrowForwardIosOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconArrowForwardIosOutlinedFilled: React.FC = ({ ) -export { IconArrowForwardIosOutlinedFilled as default } +export default IconArrowForwardIosOutlinedFilled diff --git a/src/IconArrowForwardIosRounded.tsx b/src/IconArrowForwardIosRounded.tsx index 44f148572..55ba53e92 100644 --- a/src/IconArrowForwardIosRounded.tsx +++ b/src/IconArrowForwardIosRounded.tsx @@ -8,4 +8,4 @@ const IconArrowForwardIosRounded: React.FC = ({ ...props }) => ( ) -export { IconArrowForwardIosRounded as default } +export default IconArrowForwardIosRounded diff --git a/src/IconArrowForwardIosRoundedFilled.tsx b/src/IconArrowForwardIosRoundedFilled.tsx index 2e561e4cc..5d027629c 100644 --- a/src/IconArrowForwardIosRoundedFilled.tsx +++ b/src/IconArrowForwardIosRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconArrowForwardIosRoundedFilled: React.FC = ({ ) -export { IconArrowForwardIosRoundedFilled as default } +export default IconArrowForwardIosRoundedFilled diff --git a/src/IconArrowForwardIosSharp.tsx b/src/IconArrowForwardIosSharp.tsx index c72c46877..bd9c028c1 100644 --- a/src/IconArrowForwardIosSharp.tsx +++ b/src/IconArrowForwardIosSharp.tsx @@ -8,4 +8,4 @@ const IconArrowForwardIosSharp: React.FC = ({ ...props }) => ( ) -export { IconArrowForwardIosSharp as default } +export default IconArrowForwardIosSharp diff --git a/src/IconArrowForwardIosSharpFilled.tsx b/src/IconArrowForwardIosSharpFilled.tsx index 197cfcf0f..45c18256f 100644 --- a/src/IconArrowForwardIosSharpFilled.tsx +++ b/src/IconArrowForwardIosSharpFilled.tsx @@ -8,4 +8,4 @@ const IconArrowForwardIosSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconArrowForwardIosSharpFilled as default } +export default IconArrowForwardIosSharpFilled diff --git a/src/IconArrowForwardOutlined.tsx b/src/IconArrowForwardOutlined.tsx index 0c97ad371..db5e2cdd2 100644 --- a/src/IconArrowForwardOutlined.tsx +++ b/src/IconArrowForwardOutlined.tsx @@ -8,4 +8,4 @@ const IconArrowForwardOutlined: React.FC = ({ ...props }) => ( ) -export { IconArrowForwardOutlined as default } +export default IconArrowForwardOutlined diff --git a/src/IconArrowForwardOutlinedFilled.tsx b/src/IconArrowForwardOutlinedFilled.tsx index c54b8d10b..3bab46fc5 100644 --- a/src/IconArrowForwardOutlinedFilled.tsx +++ b/src/IconArrowForwardOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconArrowForwardOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconArrowForwardOutlinedFilled as default } +export default IconArrowForwardOutlinedFilled diff --git a/src/IconArrowForwardRounded.tsx b/src/IconArrowForwardRounded.tsx index 6ea734997..127b8c186 100644 --- a/src/IconArrowForwardRounded.tsx +++ b/src/IconArrowForwardRounded.tsx @@ -8,4 +8,4 @@ const IconArrowForwardRounded: React.FC = ({ ...props }) => ( ) -export { IconArrowForwardRounded as default } +export default IconArrowForwardRounded diff --git a/src/IconArrowForwardRoundedFilled.tsx b/src/IconArrowForwardRoundedFilled.tsx index 8e3b9a309..819509851 100644 --- a/src/IconArrowForwardRoundedFilled.tsx +++ b/src/IconArrowForwardRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconArrowForwardRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconArrowForwardRoundedFilled as default } +export default IconArrowForwardRoundedFilled diff --git a/src/IconArrowForwardSharp.tsx b/src/IconArrowForwardSharp.tsx index 69d412bb9..5eafb05a9 100644 --- a/src/IconArrowForwardSharp.tsx +++ b/src/IconArrowForwardSharp.tsx @@ -8,4 +8,4 @@ const IconArrowForwardSharp: React.FC = ({ ...props }) => ( ) -export { IconArrowForwardSharp as default } +export default IconArrowForwardSharp diff --git a/src/IconArrowForwardSharpFilled.tsx b/src/IconArrowForwardSharpFilled.tsx index a49975826..136a51de2 100644 --- a/src/IconArrowForwardSharpFilled.tsx +++ b/src/IconArrowForwardSharpFilled.tsx @@ -8,4 +8,4 @@ const IconArrowForwardSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconArrowForwardSharpFilled as default } +export default IconArrowForwardSharpFilled diff --git a/src/IconArrowInsertOutlined.tsx b/src/IconArrowInsertOutlined.tsx index b8343c249..4627df4d8 100644 --- a/src/IconArrowInsertOutlined.tsx +++ b/src/IconArrowInsertOutlined.tsx @@ -8,4 +8,4 @@ const IconArrowInsertOutlined: React.FC = ({ ...props }) => ( ) -export { IconArrowInsertOutlined as default } +export default IconArrowInsertOutlined diff --git a/src/IconArrowInsertOutlinedFilled.tsx b/src/IconArrowInsertOutlinedFilled.tsx index 6aa8811ea..aa9b80905 100644 --- a/src/IconArrowInsertOutlinedFilled.tsx +++ b/src/IconArrowInsertOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconArrowInsertOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconArrowInsertOutlinedFilled as default } +export default IconArrowInsertOutlinedFilled diff --git a/src/IconArrowInsertRounded.tsx b/src/IconArrowInsertRounded.tsx index 2b435fa50..49bd2ef8a 100644 --- a/src/IconArrowInsertRounded.tsx +++ b/src/IconArrowInsertRounded.tsx @@ -8,4 +8,4 @@ const IconArrowInsertRounded: React.FC = ({ ...props }) => ( ) -export { IconArrowInsertRounded as default } +export default IconArrowInsertRounded diff --git a/src/IconArrowInsertRoundedFilled.tsx b/src/IconArrowInsertRoundedFilled.tsx index 6278e0cce..9fa12a56d 100644 --- a/src/IconArrowInsertRoundedFilled.tsx +++ b/src/IconArrowInsertRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconArrowInsertRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconArrowInsertRoundedFilled as default } +export default IconArrowInsertRoundedFilled diff --git a/src/IconArrowInsertSharp.tsx b/src/IconArrowInsertSharp.tsx index a74ed05a7..cf357da64 100644 --- a/src/IconArrowInsertSharp.tsx +++ b/src/IconArrowInsertSharp.tsx @@ -8,4 +8,4 @@ const IconArrowInsertSharp: React.FC = ({ ...props }) => ( ) -export { IconArrowInsertSharp as default } +export default IconArrowInsertSharp diff --git a/src/IconArrowInsertSharpFilled.tsx b/src/IconArrowInsertSharpFilled.tsx index 355ea73bc..d1ac93324 100644 --- a/src/IconArrowInsertSharpFilled.tsx +++ b/src/IconArrowInsertSharpFilled.tsx @@ -8,4 +8,4 @@ const IconArrowInsertSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconArrowInsertSharpFilled as default } +export default IconArrowInsertSharpFilled diff --git a/src/IconArrowLeftAltOutlined.tsx b/src/IconArrowLeftAltOutlined.tsx index 6ca46e0ba..d3cdfafab 100644 --- a/src/IconArrowLeftAltOutlined.tsx +++ b/src/IconArrowLeftAltOutlined.tsx @@ -8,4 +8,4 @@ const IconArrowLeftAltOutlined: React.FC = ({ ...props }) => ( ) -export { IconArrowLeftAltOutlined as default } +export default IconArrowLeftAltOutlined diff --git a/src/IconArrowLeftAltOutlinedFilled.tsx b/src/IconArrowLeftAltOutlinedFilled.tsx index 2bb3160d2..c2863f68e 100644 --- a/src/IconArrowLeftAltOutlinedFilled.tsx +++ b/src/IconArrowLeftAltOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconArrowLeftAltOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconArrowLeftAltOutlinedFilled as default } +export default IconArrowLeftAltOutlinedFilled diff --git a/src/IconArrowLeftAltRounded.tsx b/src/IconArrowLeftAltRounded.tsx index 8da83b7de..ad571797a 100644 --- a/src/IconArrowLeftAltRounded.tsx +++ b/src/IconArrowLeftAltRounded.tsx @@ -8,4 +8,4 @@ const IconArrowLeftAltRounded: React.FC = ({ ...props }) => ( ) -export { IconArrowLeftAltRounded as default } +export default IconArrowLeftAltRounded diff --git a/src/IconArrowLeftAltRoundedFilled.tsx b/src/IconArrowLeftAltRoundedFilled.tsx index 7c8c1fa1d..ed27bbc9f 100644 --- a/src/IconArrowLeftAltRoundedFilled.tsx +++ b/src/IconArrowLeftAltRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconArrowLeftAltRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconArrowLeftAltRoundedFilled as default } +export default IconArrowLeftAltRoundedFilled diff --git a/src/IconArrowLeftAltSharp.tsx b/src/IconArrowLeftAltSharp.tsx index ba9dc0d4a..dd9c64aec 100644 --- a/src/IconArrowLeftAltSharp.tsx +++ b/src/IconArrowLeftAltSharp.tsx @@ -8,4 +8,4 @@ const IconArrowLeftAltSharp: React.FC = ({ ...props }) => ( ) -export { IconArrowLeftAltSharp as default } +export default IconArrowLeftAltSharp diff --git a/src/IconArrowLeftAltSharpFilled.tsx b/src/IconArrowLeftAltSharpFilled.tsx index 7d118093d..305733130 100644 --- a/src/IconArrowLeftAltSharpFilled.tsx +++ b/src/IconArrowLeftAltSharpFilled.tsx @@ -8,4 +8,4 @@ const IconArrowLeftAltSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconArrowLeftAltSharpFilled as default } +export default IconArrowLeftAltSharpFilled diff --git a/src/IconArrowLeftOutlined.tsx b/src/IconArrowLeftOutlined.tsx index ad6c378d7..63af0d0ce 100644 --- a/src/IconArrowLeftOutlined.tsx +++ b/src/IconArrowLeftOutlined.tsx @@ -8,4 +8,4 @@ const IconArrowLeftOutlined: React.FC = ({ ...props }) => ( ) -export { IconArrowLeftOutlined as default } +export default IconArrowLeftOutlined diff --git a/src/IconArrowLeftOutlinedFilled.tsx b/src/IconArrowLeftOutlinedFilled.tsx index 68188207c..e8e43b221 100644 --- a/src/IconArrowLeftOutlinedFilled.tsx +++ b/src/IconArrowLeftOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconArrowLeftOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconArrowLeftOutlinedFilled as default } +export default IconArrowLeftOutlinedFilled diff --git a/src/IconArrowLeftRounded.tsx b/src/IconArrowLeftRounded.tsx index 591a0e44d..1e73fd5a0 100644 --- a/src/IconArrowLeftRounded.tsx +++ b/src/IconArrowLeftRounded.tsx @@ -8,4 +8,4 @@ const IconArrowLeftRounded: React.FC = ({ ...props }) => ( ) -export { IconArrowLeftRounded as default } +export default IconArrowLeftRounded diff --git a/src/IconArrowLeftRoundedFilled.tsx b/src/IconArrowLeftRoundedFilled.tsx index ba471c1b8..e65af9468 100644 --- a/src/IconArrowLeftRoundedFilled.tsx +++ b/src/IconArrowLeftRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconArrowLeftRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconArrowLeftRoundedFilled as default } +export default IconArrowLeftRoundedFilled diff --git a/src/IconArrowLeftSharp.tsx b/src/IconArrowLeftSharp.tsx index 5e34147a7..b0540b791 100644 --- a/src/IconArrowLeftSharp.tsx +++ b/src/IconArrowLeftSharp.tsx @@ -8,4 +8,4 @@ const IconArrowLeftSharp: React.FC = ({ ...props }) => ( ) -export { IconArrowLeftSharp as default } +export default IconArrowLeftSharp diff --git a/src/IconArrowLeftSharpFilled.tsx b/src/IconArrowLeftSharpFilled.tsx index a667b0346..8303b04f8 100644 --- a/src/IconArrowLeftSharpFilled.tsx +++ b/src/IconArrowLeftSharpFilled.tsx @@ -8,4 +8,4 @@ const IconArrowLeftSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconArrowLeftSharpFilled as default } +export default IconArrowLeftSharpFilled diff --git a/src/IconArrowOrEdgeOutlined.tsx b/src/IconArrowOrEdgeOutlined.tsx index 191b62357..ed8179327 100644 --- a/src/IconArrowOrEdgeOutlined.tsx +++ b/src/IconArrowOrEdgeOutlined.tsx @@ -8,4 +8,4 @@ const IconArrowOrEdgeOutlined: React.FC = ({ ...props }) => ( ) -export { IconArrowOrEdgeOutlined as default } +export default IconArrowOrEdgeOutlined diff --git a/src/IconArrowOrEdgeOutlinedFilled.tsx b/src/IconArrowOrEdgeOutlinedFilled.tsx index b85f5cdfd..a56fb8ab3 100644 --- a/src/IconArrowOrEdgeOutlinedFilled.tsx +++ b/src/IconArrowOrEdgeOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconArrowOrEdgeOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconArrowOrEdgeOutlinedFilled as default } +export default IconArrowOrEdgeOutlinedFilled diff --git a/src/IconArrowOrEdgeRounded.tsx b/src/IconArrowOrEdgeRounded.tsx index 02d751d56..44f921518 100644 --- a/src/IconArrowOrEdgeRounded.tsx +++ b/src/IconArrowOrEdgeRounded.tsx @@ -8,4 +8,4 @@ const IconArrowOrEdgeRounded: React.FC = ({ ...props }) => ( ) -export { IconArrowOrEdgeRounded as default } +export default IconArrowOrEdgeRounded diff --git a/src/IconArrowOrEdgeRoundedFilled.tsx b/src/IconArrowOrEdgeRoundedFilled.tsx index 7e24748fa..70778f247 100644 --- a/src/IconArrowOrEdgeRoundedFilled.tsx +++ b/src/IconArrowOrEdgeRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconArrowOrEdgeRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconArrowOrEdgeRoundedFilled as default } +export default IconArrowOrEdgeRoundedFilled diff --git a/src/IconArrowOrEdgeSharp.tsx b/src/IconArrowOrEdgeSharp.tsx index ed2d0a300..2de957c7b 100644 --- a/src/IconArrowOrEdgeSharp.tsx +++ b/src/IconArrowOrEdgeSharp.tsx @@ -8,4 +8,4 @@ const IconArrowOrEdgeSharp: React.FC = ({ ...props }) => ( ) -export { IconArrowOrEdgeSharp as default } +export default IconArrowOrEdgeSharp diff --git a/src/IconArrowOrEdgeSharpFilled.tsx b/src/IconArrowOrEdgeSharpFilled.tsx index ff290aab6..c5a02c69e 100644 --- a/src/IconArrowOrEdgeSharpFilled.tsx +++ b/src/IconArrowOrEdgeSharpFilled.tsx @@ -8,4 +8,4 @@ const IconArrowOrEdgeSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconArrowOrEdgeSharpFilled as default } +export default IconArrowOrEdgeSharpFilled diff --git a/src/IconArrowOutwardOutlined.tsx b/src/IconArrowOutwardOutlined.tsx index de83a4a2d..37dd8871d 100644 --- a/src/IconArrowOutwardOutlined.tsx +++ b/src/IconArrowOutwardOutlined.tsx @@ -8,4 +8,4 @@ const IconArrowOutwardOutlined: React.FC = ({ ...props }) => ( ) -export { IconArrowOutwardOutlined as default } +export default IconArrowOutwardOutlined diff --git a/src/IconArrowOutwardOutlinedFilled.tsx b/src/IconArrowOutwardOutlinedFilled.tsx index 6fefc48cb..f9de3afbe 100644 --- a/src/IconArrowOutwardOutlinedFilled.tsx +++ b/src/IconArrowOutwardOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconArrowOutwardOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconArrowOutwardOutlinedFilled as default } +export default IconArrowOutwardOutlinedFilled diff --git a/src/IconArrowOutwardRounded.tsx b/src/IconArrowOutwardRounded.tsx index bfc5a1fa2..6ef123029 100644 --- a/src/IconArrowOutwardRounded.tsx +++ b/src/IconArrowOutwardRounded.tsx @@ -8,4 +8,4 @@ const IconArrowOutwardRounded: React.FC = ({ ...props }) => ( ) -export { IconArrowOutwardRounded as default } +export default IconArrowOutwardRounded diff --git a/src/IconArrowOutwardRoundedFilled.tsx b/src/IconArrowOutwardRoundedFilled.tsx index 1720bc75f..5dfec0d4b 100644 --- a/src/IconArrowOutwardRoundedFilled.tsx +++ b/src/IconArrowOutwardRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconArrowOutwardRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconArrowOutwardRoundedFilled as default } +export default IconArrowOutwardRoundedFilled diff --git a/src/IconArrowOutwardSharp.tsx b/src/IconArrowOutwardSharp.tsx index 8b4f533b3..0d00a7683 100644 --- a/src/IconArrowOutwardSharp.tsx +++ b/src/IconArrowOutwardSharp.tsx @@ -8,4 +8,4 @@ const IconArrowOutwardSharp: React.FC = ({ ...props }) => ( ) -export { IconArrowOutwardSharp as default } +export default IconArrowOutwardSharp diff --git a/src/IconArrowOutwardSharpFilled.tsx b/src/IconArrowOutwardSharpFilled.tsx index 48c1956c6..f914effff 100644 --- a/src/IconArrowOutwardSharpFilled.tsx +++ b/src/IconArrowOutwardSharpFilled.tsx @@ -8,4 +8,4 @@ const IconArrowOutwardSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconArrowOutwardSharpFilled as default } +export default IconArrowOutwardSharpFilled diff --git a/src/IconArrowRangeOutlined.tsx b/src/IconArrowRangeOutlined.tsx index 8df274722..54bd72b5c 100644 --- a/src/IconArrowRangeOutlined.tsx +++ b/src/IconArrowRangeOutlined.tsx @@ -8,4 +8,4 @@ const IconArrowRangeOutlined: React.FC = ({ ...props }) => ( ) -export { IconArrowRangeOutlined as default } +export default IconArrowRangeOutlined diff --git a/src/IconArrowRangeOutlinedFilled.tsx b/src/IconArrowRangeOutlinedFilled.tsx index 658bab6c1..83b85061d 100644 --- a/src/IconArrowRangeOutlinedFilled.tsx +++ b/src/IconArrowRangeOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconArrowRangeOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconArrowRangeOutlinedFilled as default } +export default IconArrowRangeOutlinedFilled diff --git a/src/IconArrowRangeRounded.tsx b/src/IconArrowRangeRounded.tsx index c6425ce85..ad7b68d19 100644 --- a/src/IconArrowRangeRounded.tsx +++ b/src/IconArrowRangeRounded.tsx @@ -8,4 +8,4 @@ const IconArrowRangeRounded: React.FC = ({ ...props }) => ( ) -export { IconArrowRangeRounded as default } +export default IconArrowRangeRounded diff --git a/src/IconArrowRangeRoundedFilled.tsx b/src/IconArrowRangeRoundedFilled.tsx index 305cc99f1..6813cddbb 100644 --- a/src/IconArrowRangeRoundedFilled.tsx +++ b/src/IconArrowRangeRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconArrowRangeRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconArrowRangeRoundedFilled as default } +export default IconArrowRangeRoundedFilled diff --git a/src/IconArrowRangeSharp.tsx b/src/IconArrowRangeSharp.tsx index a7c3270b2..092cbee1c 100644 --- a/src/IconArrowRangeSharp.tsx +++ b/src/IconArrowRangeSharp.tsx @@ -8,4 +8,4 @@ const IconArrowRangeSharp: React.FC = ({ ...props }) => ( ) -export { IconArrowRangeSharp as default } +export default IconArrowRangeSharp diff --git a/src/IconArrowRangeSharpFilled.tsx b/src/IconArrowRangeSharpFilled.tsx index f1207700b..d97272093 100644 --- a/src/IconArrowRangeSharpFilled.tsx +++ b/src/IconArrowRangeSharpFilled.tsx @@ -8,4 +8,4 @@ const IconArrowRangeSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconArrowRangeSharpFilled as default } +export default IconArrowRangeSharpFilled diff --git a/src/IconArrowRightAltOutlined.tsx b/src/IconArrowRightAltOutlined.tsx index e478f5134..590d71536 100644 --- a/src/IconArrowRightAltOutlined.tsx +++ b/src/IconArrowRightAltOutlined.tsx @@ -8,4 +8,4 @@ const IconArrowRightAltOutlined: React.FC = ({ ...props }) => ( ) -export { IconArrowRightAltOutlined as default } +export default IconArrowRightAltOutlined diff --git a/src/IconArrowRightAltOutlinedFilled.tsx b/src/IconArrowRightAltOutlinedFilled.tsx index 849d70d4d..95bd5984c 100644 --- a/src/IconArrowRightAltOutlinedFilled.tsx +++ b/src/IconArrowRightAltOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconArrowRightAltOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconArrowRightAltOutlinedFilled as default } +export default IconArrowRightAltOutlinedFilled diff --git a/src/IconArrowRightAltRounded.tsx b/src/IconArrowRightAltRounded.tsx index 6f739fe4c..4d85a8d10 100644 --- a/src/IconArrowRightAltRounded.tsx +++ b/src/IconArrowRightAltRounded.tsx @@ -8,4 +8,4 @@ const IconArrowRightAltRounded: React.FC = ({ ...props }) => ( ) -export { IconArrowRightAltRounded as default } +export default IconArrowRightAltRounded diff --git a/src/IconArrowRightAltRoundedFilled.tsx b/src/IconArrowRightAltRoundedFilled.tsx index d5230ee4a..a3e6d6a52 100644 --- a/src/IconArrowRightAltRoundedFilled.tsx +++ b/src/IconArrowRightAltRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconArrowRightAltRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconArrowRightAltRoundedFilled as default } +export default IconArrowRightAltRoundedFilled diff --git a/src/IconArrowRightAltSharp.tsx b/src/IconArrowRightAltSharp.tsx index e3e5abdda..58fcc73a7 100644 --- a/src/IconArrowRightAltSharp.tsx +++ b/src/IconArrowRightAltSharp.tsx @@ -8,4 +8,4 @@ const IconArrowRightAltSharp: React.FC = ({ ...props }) => ( ) -export { IconArrowRightAltSharp as default } +export default IconArrowRightAltSharp diff --git a/src/IconArrowRightAltSharpFilled.tsx b/src/IconArrowRightAltSharpFilled.tsx index 908693264..4f14d3e6d 100644 --- a/src/IconArrowRightAltSharpFilled.tsx +++ b/src/IconArrowRightAltSharpFilled.tsx @@ -8,4 +8,4 @@ const IconArrowRightAltSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconArrowRightAltSharpFilled as default } +export default IconArrowRightAltSharpFilled diff --git a/src/IconArrowRightOutlined.tsx b/src/IconArrowRightOutlined.tsx index cea74c32f..415001fd1 100644 --- a/src/IconArrowRightOutlined.tsx +++ b/src/IconArrowRightOutlined.tsx @@ -8,4 +8,4 @@ const IconArrowRightOutlined: React.FC = ({ ...props }) => ( ) -export { IconArrowRightOutlined as default } +export default IconArrowRightOutlined diff --git a/src/IconArrowRightOutlinedFilled.tsx b/src/IconArrowRightOutlinedFilled.tsx index 7322fc785..1d32590bf 100644 --- a/src/IconArrowRightOutlinedFilled.tsx +++ b/src/IconArrowRightOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconArrowRightOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconArrowRightOutlinedFilled as default } +export default IconArrowRightOutlinedFilled diff --git a/src/IconArrowRightRounded.tsx b/src/IconArrowRightRounded.tsx index 819441d87..4d274349c 100644 --- a/src/IconArrowRightRounded.tsx +++ b/src/IconArrowRightRounded.tsx @@ -8,4 +8,4 @@ const IconArrowRightRounded: React.FC = ({ ...props }) => ( ) -export { IconArrowRightRounded as default } +export default IconArrowRightRounded diff --git a/src/IconArrowRightRoundedFilled.tsx b/src/IconArrowRightRoundedFilled.tsx index 8f3284393..1800d4e7b 100644 --- a/src/IconArrowRightRoundedFilled.tsx +++ b/src/IconArrowRightRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconArrowRightRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconArrowRightRoundedFilled as default } +export default IconArrowRightRoundedFilled diff --git a/src/IconArrowRightSharp.tsx b/src/IconArrowRightSharp.tsx index 516288b70..2ce791f56 100644 --- a/src/IconArrowRightSharp.tsx +++ b/src/IconArrowRightSharp.tsx @@ -8,4 +8,4 @@ const IconArrowRightSharp: React.FC = ({ ...props }) => ( ) -export { IconArrowRightSharp as default } +export default IconArrowRightSharp diff --git a/src/IconArrowRightSharpFilled.tsx b/src/IconArrowRightSharpFilled.tsx index d2f937e1b..04ff99c7b 100644 --- a/src/IconArrowRightSharpFilled.tsx +++ b/src/IconArrowRightSharpFilled.tsx @@ -8,4 +8,4 @@ const IconArrowRightSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconArrowRightSharpFilled as default } +export default IconArrowRightSharpFilled diff --git a/src/IconArrowSelectorToolOutlined.tsx b/src/IconArrowSelectorToolOutlined.tsx index fdd749b10..a3a516280 100644 --- a/src/IconArrowSelectorToolOutlined.tsx +++ b/src/IconArrowSelectorToolOutlined.tsx @@ -8,4 +8,4 @@ const IconArrowSelectorToolOutlined: React.FC = ({ ...props }) => ( ) -export { IconArrowSelectorToolOutlined as default } +export default IconArrowSelectorToolOutlined diff --git a/src/IconArrowSelectorToolOutlinedFilled.tsx b/src/IconArrowSelectorToolOutlinedFilled.tsx index 14455e025..7fac6d5a7 100644 --- a/src/IconArrowSelectorToolOutlinedFilled.tsx +++ b/src/IconArrowSelectorToolOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconArrowSelectorToolOutlinedFilled: React.FC = ({ ) -export { IconArrowSelectorToolOutlinedFilled as default } +export default IconArrowSelectorToolOutlinedFilled diff --git a/src/IconArrowSelectorToolRounded.tsx b/src/IconArrowSelectorToolRounded.tsx index b151c02cb..6ff86f19b 100644 --- a/src/IconArrowSelectorToolRounded.tsx +++ b/src/IconArrowSelectorToolRounded.tsx @@ -8,4 +8,4 @@ const IconArrowSelectorToolRounded: React.FC = ({ ...props }) => ( ) -export { IconArrowSelectorToolRounded as default } +export default IconArrowSelectorToolRounded diff --git a/src/IconArrowSelectorToolRoundedFilled.tsx b/src/IconArrowSelectorToolRoundedFilled.tsx index 8fb68b683..8b39394b7 100644 --- a/src/IconArrowSelectorToolRoundedFilled.tsx +++ b/src/IconArrowSelectorToolRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconArrowSelectorToolRoundedFilled: React.FC = ({ ) -export { IconArrowSelectorToolRoundedFilled as default } +export default IconArrowSelectorToolRoundedFilled diff --git a/src/IconArrowSelectorToolSharp.tsx b/src/IconArrowSelectorToolSharp.tsx index 1a1c6f284..59e7adfc9 100644 --- a/src/IconArrowSelectorToolSharp.tsx +++ b/src/IconArrowSelectorToolSharp.tsx @@ -8,4 +8,4 @@ const IconArrowSelectorToolSharp: React.FC = ({ ...props }) => ( ) -export { IconArrowSelectorToolSharp as default } +export default IconArrowSelectorToolSharp diff --git a/src/IconArrowSelectorToolSharpFilled.tsx b/src/IconArrowSelectorToolSharpFilled.tsx index 21a9b9bd5..5aa24f335 100644 --- a/src/IconArrowSelectorToolSharpFilled.tsx +++ b/src/IconArrowSelectorToolSharpFilled.tsx @@ -10,4 +10,4 @@ const IconArrowSelectorToolSharpFilled: React.FC = ({ ) -export { IconArrowSelectorToolSharpFilled as default } +export default IconArrowSelectorToolSharpFilled diff --git a/src/IconArrowSplitOutlined.tsx b/src/IconArrowSplitOutlined.tsx index 365c7d6a2..56b2f4746 100644 --- a/src/IconArrowSplitOutlined.tsx +++ b/src/IconArrowSplitOutlined.tsx @@ -8,4 +8,4 @@ const IconArrowSplitOutlined: React.FC = ({ ...props }) => ( ) -export { IconArrowSplitOutlined as default } +export default IconArrowSplitOutlined diff --git a/src/IconArrowSplitOutlinedFilled.tsx b/src/IconArrowSplitOutlinedFilled.tsx index b7216a5d0..e0cf746e1 100644 --- a/src/IconArrowSplitOutlinedFilled.tsx +++ b/src/IconArrowSplitOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconArrowSplitOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconArrowSplitOutlinedFilled as default } +export default IconArrowSplitOutlinedFilled diff --git a/src/IconArrowSplitRounded.tsx b/src/IconArrowSplitRounded.tsx index 413e26440..45e770175 100644 --- a/src/IconArrowSplitRounded.tsx +++ b/src/IconArrowSplitRounded.tsx @@ -8,4 +8,4 @@ const IconArrowSplitRounded: React.FC = ({ ...props }) => ( ) -export { IconArrowSplitRounded as default } +export default IconArrowSplitRounded diff --git a/src/IconArrowSplitRoundedFilled.tsx b/src/IconArrowSplitRoundedFilled.tsx index f3edc900b..7f65fbc72 100644 --- a/src/IconArrowSplitRoundedFilled.tsx +++ b/src/IconArrowSplitRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconArrowSplitRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconArrowSplitRoundedFilled as default } +export default IconArrowSplitRoundedFilled diff --git a/src/IconArrowSplitSharp.tsx b/src/IconArrowSplitSharp.tsx index 5715d10ee..1d780d6ad 100644 --- a/src/IconArrowSplitSharp.tsx +++ b/src/IconArrowSplitSharp.tsx @@ -8,4 +8,4 @@ const IconArrowSplitSharp: React.FC = ({ ...props }) => ( ) -export { IconArrowSplitSharp as default } +export default IconArrowSplitSharp diff --git a/src/IconArrowSplitSharpFilled.tsx b/src/IconArrowSplitSharpFilled.tsx index 7b1402a84..46ce1cf3e 100644 --- a/src/IconArrowSplitSharpFilled.tsx +++ b/src/IconArrowSplitSharpFilled.tsx @@ -8,4 +8,4 @@ const IconArrowSplitSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconArrowSplitSharpFilled as default } +export default IconArrowSplitSharpFilled diff --git a/src/IconArrowTopLeftOutlined.tsx b/src/IconArrowTopLeftOutlined.tsx index 0c72707df..a8a38426f 100644 --- a/src/IconArrowTopLeftOutlined.tsx +++ b/src/IconArrowTopLeftOutlined.tsx @@ -8,4 +8,4 @@ const IconArrowTopLeftOutlined: React.FC = ({ ...props }) => ( ) -export { IconArrowTopLeftOutlined as default } +export default IconArrowTopLeftOutlined diff --git a/src/IconArrowTopLeftOutlinedFilled.tsx b/src/IconArrowTopLeftOutlinedFilled.tsx index 8048bbe6f..b85010981 100644 --- a/src/IconArrowTopLeftOutlinedFilled.tsx +++ b/src/IconArrowTopLeftOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconArrowTopLeftOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconArrowTopLeftOutlinedFilled as default } +export default IconArrowTopLeftOutlinedFilled diff --git a/src/IconArrowTopLeftRounded.tsx b/src/IconArrowTopLeftRounded.tsx index 19ba6a180..89c5dea0b 100644 --- a/src/IconArrowTopLeftRounded.tsx +++ b/src/IconArrowTopLeftRounded.tsx @@ -8,4 +8,4 @@ const IconArrowTopLeftRounded: React.FC = ({ ...props }) => ( ) -export { IconArrowTopLeftRounded as default } +export default IconArrowTopLeftRounded diff --git a/src/IconArrowTopLeftRoundedFilled.tsx b/src/IconArrowTopLeftRoundedFilled.tsx index 8453da865..f3feb9938 100644 --- a/src/IconArrowTopLeftRoundedFilled.tsx +++ b/src/IconArrowTopLeftRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconArrowTopLeftRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconArrowTopLeftRoundedFilled as default } +export default IconArrowTopLeftRoundedFilled diff --git a/src/IconArrowTopLeftSharp.tsx b/src/IconArrowTopLeftSharp.tsx index a0d86d672..d7a42831c 100644 --- a/src/IconArrowTopLeftSharp.tsx +++ b/src/IconArrowTopLeftSharp.tsx @@ -8,4 +8,4 @@ const IconArrowTopLeftSharp: React.FC = ({ ...props }) => ( ) -export { IconArrowTopLeftSharp as default } +export default IconArrowTopLeftSharp diff --git a/src/IconArrowTopLeftSharpFilled.tsx b/src/IconArrowTopLeftSharpFilled.tsx index 0a32b077a..4583efae5 100644 --- a/src/IconArrowTopLeftSharpFilled.tsx +++ b/src/IconArrowTopLeftSharpFilled.tsx @@ -8,4 +8,4 @@ const IconArrowTopLeftSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconArrowTopLeftSharpFilled as default } +export default IconArrowTopLeftSharpFilled diff --git a/src/IconArrowTopRightOutlined.tsx b/src/IconArrowTopRightOutlined.tsx index 90e7b47aa..68b7e5c1d 100644 --- a/src/IconArrowTopRightOutlined.tsx +++ b/src/IconArrowTopRightOutlined.tsx @@ -8,4 +8,4 @@ const IconArrowTopRightOutlined: React.FC = ({ ...props }) => ( ) -export { IconArrowTopRightOutlined as default } +export default IconArrowTopRightOutlined diff --git a/src/IconArrowTopRightOutlinedFilled.tsx b/src/IconArrowTopRightOutlinedFilled.tsx index c860db3d6..dd6caebf2 100644 --- a/src/IconArrowTopRightOutlinedFilled.tsx +++ b/src/IconArrowTopRightOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconArrowTopRightOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconArrowTopRightOutlinedFilled as default } +export default IconArrowTopRightOutlinedFilled diff --git a/src/IconArrowTopRightRounded.tsx b/src/IconArrowTopRightRounded.tsx index 81f6d2678..9b457d122 100644 --- a/src/IconArrowTopRightRounded.tsx +++ b/src/IconArrowTopRightRounded.tsx @@ -8,4 +8,4 @@ const IconArrowTopRightRounded: React.FC = ({ ...props }) => ( ) -export { IconArrowTopRightRounded as default } +export default IconArrowTopRightRounded diff --git a/src/IconArrowTopRightRoundedFilled.tsx b/src/IconArrowTopRightRoundedFilled.tsx index 2ff797759..4ad26b818 100644 --- a/src/IconArrowTopRightRoundedFilled.tsx +++ b/src/IconArrowTopRightRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconArrowTopRightRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconArrowTopRightRoundedFilled as default } +export default IconArrowTopRightRoundedFilled diff --git a/src/IconArrowTopRightSharp.tsx b/src/IconArrowTopRightSharp.tsx index 7ac9b917f..231737b05 100644 --- a/src/IconArrowTopRightSharp.tsx +++ b/src/IconArrowTopRightSharp.tsx @@ -8,4 +8,4 @@ const IconArrowTopRightSharp: React.FC = ({ ...props }) => ( ) -export { IconArrowTopRightSharp as default } +export default IconArrowTopRightSharp diff --git a/src/IconArrowTopRightSharpFilled.tsx b/src/IconArrowTopRightSharpFilled.tsx index edbbf321c..4febfcf54 100644 --- a/src/IconArrowTopRightSharpFilled.tsx +++ b/src/IconArrowTopRightSharpFilled.tsx @@ -8,4 +8,4 @@ const IconArrowTopRightSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconArrowTopRightSharpFilled as default } +export default IconArrowTopRightSharpFilled diff --git a/src/IconArrowUploadProgressOutlined.tsx b/src/IconArrowUploadProgressOutlined.tsx index 98d6acbc0..86a2e303e 100644 --- a/src/IconArrowUploadProgressOutlined.tsx +++ b/src/IconArrowUploadProgressOutlined.tsx @@ -8,4 +8,4 @@ const IconArrowUploadProgressOutlined: React.FC = ({ ...props }) => ( ) -export { IconArrowUploadProgressOutlined as default } +export default IconArrowUploadProgressOutlined diff --git a/src/IconArrowUploadProgressOutlinedFilled.tsx b/src/IconArrowUploadProgressOutlinedFilled.tsx index a1495eb4b..adbabcca7 100644 --- a/src/IconArrowUploadProgressOutlinedFilled.tsx +++ b/src/IconArrowUploadProgressOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconArrowUploadProgressOutlinedFilled: React.FC = ({ ) -export { IconArrowUploadProgressOutlinedFilled as default } +export default IconArrowUploadProgressOutlinedFilled diff --git a/src/IconArrowUploadProgressRounded.tsx b/src/IconArrowUploadProgressRounded.tsx index 77609701a..741a1a887 100644 --- a/src/IconArrowUploadProgressRounded.tsx +++ b/src/IconArrowUploadProgressRounded.tsx @@ -8,4 +8,4 @@ const IconArrowUploadProgressRounded: React.FC = ({ ...props }) => ( ) -export { IconArrowUploadProgressRounded as default } +export default IconArrowUploadProgressRounded diff --git a/src/IconArrowUploadProgressRoundedFilled.tsx b/src/IconArrowUploadProgressRoundedFilled.tsx index 71aacc566..0d78cc46c 100644 --- a/src/IconArrowUploadProgressRoundedFilled.tsx +++ b/src/IconArrowUploadProgressRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconArrowUploadProgressRoundedFilled: React.FC = ({ ) -export { IconArrowUploadProgressRoundedFilled as default } +export default IconArrowUploadProgressRoundedFilled diff --git a/src/IconArrowUploadProgressSharp.tsx b/src/IconArrowUploadProgressSharp.tsx index d47ef4215..a22eba2f1 100644 --- a/src/IconArrowUploadProgressSharp.tsx +++ b/src/IconArrowUploadProgressSharp.tsx @@ -8,4 +8,4 @@ const IconArrowUploadProgressSharp: React.FC = ({ ...props }) => ( ) -export { IconArrowUploadProgressSharp as default } +export default IconArrowUploadProgressSharp diff --git a/src/IconArrowUploadProgressSharpFilled.tsx b/src/IconArrowUploadProgressSharpFilled.tsx index 194dd2e4e..4fd25cada 100644 --- a/src/IconArrowUploadProgressSharpFilled.tsx +++ b/src/IconArrowUploadProgressSharpFilled.tsx @@ -10,4 +10,4 @@ const IconArrowUploadProgressSharpFilled: React.FC = ({ ) -export { IconArrowUploadProgressSharpFilled as default } +export default IconArrowUploadProgressSharpFilled diff --git a/src/IconArrowUploadReadyOutlined.tsx b/src/IconArrowUploadReadyOutlined.tsx index b5adb4fff..37669dc5c 100644 --- a/src/IconArrowUploadReadyOutlined.tsx +++ b/src/IconArrowUploadReadyOutlined.tsx @@ -8,4 +8,4 @@ const IconArrowUploadReadyOutlined: React.FC = ({ ...props }) => ( ) -export { IconArrowUploadReadyOutlined as default } +export default IconArrowUploadReadyOutlined diff --git a/src/IconArrowUploadReadyOutlinedFilled.tsx b/src/IconArrowUploadReadyOutlinedFilled.tsx index fc9d08914..901148e3b 100644 --- a/src/IconArrowUploadReadyOutlinedFilled.tsx +++ b/src/IconArrowUploadReadyOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconArrowUploadReadyOutlinedFilled: React.FC = ({ ) -export { IconArrowUploadReadyOutlinedFilled as default } +export default IconArrowUploadReadyOutlinedFilled diff --git a/src/IconArrowUploadReadyRounded.tsx b/src/IconArrowUploadReadyRounded.tsx index 099a4ee9f..d8256c131 100644 --- a/src/IconArrowUploadReadyRounded.tsx +++ b/src/IconArrowUploadReadyRounded.tsx @@ -8,4 +8,4 @@ const IconArrowUploadReadyRounded: React.FC = ({ ...props }) => ( ) -export { IconArrowUploadReadyRounded as default } +export default IconArrowUploadReadyRounded diff --git a/src/IconArrowUploadReadyRoundedFilled.tsx b/src/IconArrowUploadReadyRoundedFilled.tsx index fcfc166b1..3839edcaa 100644 --- a/src/IconArrowUploadReadyRoundedFilled.tsx +++ b/src/IconArrowUploadReadyRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconArrowUploadReadyRoundedFilled: React.FC = ({ ) -export { IconArrowUploadReadyRoundedFilled as default } +export default IconArrowUploadReadyRoundedFilled diff --git a/src/IconArrowUploadReadySharp.tsx b/src/IconArrowUploadReadySharp.tsx index 07824177f..c531b2f3e 100644 --- a/src/IconArrowUploadReadySharp.tsx +++ b/src/IconArrowUploadReadySharp.tsx @@ -8,4 +8,4 @@ const IconArrowUploadReadySharp: React.FC = ({ ...props }) => ( ) -export { IconArrowUploadReadySharp as default } +export default IconArrowUploadReadySharp diff --git a/src/IconArrowUploadReadySharpFilled.tsx b/src/IconArrowUploadReadySharpFilled.tsx index e9fccdbcf..6f8adf2fd 100644 --- a/src/IconArrowUploadReadySharpFilled.tsx +++ b/src/IconArrowUploadReadySharpFilled.tsx @@ -8,4 +8,4 @@ const IconArrowUploadReadySharpFilled: React.FC = ({ ...props }) => ( ) -export { IconArrowUploadReadySharpFilled as default } +export default IconArrowUploadReadySharpFilled diff --git a/src/IconArrowUpwardAltOutlined.tsx b/src/IconArrowUpwardAltOutlined.tsx index ae397b22d..fba2e8061 100644 --- a/src/IconArrowUpwardAltOutlined.tsx +++ b/src/IconArrowUpwardAltOutlined.tsx @@ -8,4 +8,4 @@ const IconArrowUpwardAltOutlined: React.FC = ({ ...props }) => ( ) -export { IconArrowUpwardAltOutlined as default } +export default IconArrowUpwardAltOutlined diff --git a/src/IconArrowUpwardAltOutlinedFilled.tsx b/src/IconArrowUpwardAltOutlinedFilled.tsx index e3192a682..18c02d9be 100644 --- a/src/IconArrowUpwardAltOutlinedFilled.tsx +++ b/src/IconArrowUpwardAltOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconArrowUpwardAltOutlinedFilled: React.FC = ({ ) -export { IconArrowUpwardAltOutlinedFilled as default } +export default IconArrowUpwardAltOutlinedFilled diff --git a/src/IconArrowUpwardAltRounded.tsx b/src/IconArrowUpwardAltRounded.tsx index b1c501f38..36d0d1760 100644 --- a/src/IconArrowUpwardAltRounded.tsx +++ b/src/IconArrowUpwardAltRounded.tsx @@ -8,4 +8,4 @@ const IconArrowUpwardAltRounded: React.FC = ({ ...props }) => ( ) -export { IconArrowUpwardAltRounded as default } +export default IconArrowUpwardAltRounded diff --git a/src/IconArrowUpwardAltRoundedFilled.tsx b/src/IconArrowUpwardAltRoundedFilled.tsx index ea237d3e5..f80f380d3 100644 --- a/src/IconArrowUpwardAltRoundedFilled.tsx +++ b/src/IconArrowUpwardAltRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconArrowUpwardAltRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconArrowUpwardAltRoundedFilled as default } +export default IconArrowUpwardAltRoundedFilled diff --git a/src/IconArrowUpwardAltSharp.tsx b/src/IconArrowUpwardAltSharp.tsx index 285082954..1d243a6ba 100644 --- a/src/IconArrowUpwardAltSharp.tsx +++ b/src/IconArrowUpwardAltSharp.tsx @@ -8,4 +8,4 @@ const IconArrowUpwardAltSharp: React.FC = ({ ...props }) => ( ) -export { IconArrowUpwardAltSharp as default } +export default IconArrowUpwardAltSharp diff --git a/src/IconArrowUpwardAltSharpFilled.tsx b/src/IconArrowUpwardAltSharpFilled.tsx index c546b6cb8..9a4e1d520 100644 --- a/src/IconArrowUpwardAltSharpFilled.tsx +++ b/src/IconArrowUpwardAltSharpFilled.tsx @@ -8,4 +8,4 @@ const IconArrowUpwardAltSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconArrowUpwardAltSharpFilled as default } +export default IconArrowUpwardAltSharpFilled diff --git a/src/IconArrowUpwardOutlined.tsx b/src/IconArrowUpwardOutlined.tsx index 3fdeb94fb..fa532301c 100644 --- a/src/IconArrowUpwardOutlined.tsx +++ b/src/IconArrowUpwardOutlined.tsx @@ -8,4 +8,4 @@ const IconArrowUpwardOutlined: React.FC = ({ ...props }) => ( ) -export { IconArrowUpwardOutlined as default } +export default IconArrowUpwardOutlined diff --git a/src/IconArrowUpwardOutlinedFilled.tsx b/src/IconArrowUpwardOutlinedFilled.tsx index c319bec6a..132012353 100644 --- a/src/IconArrowUpwardOutlinedFilled.tsx +++ b/src/IconArrowUpwardOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconArrowUpwardOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconArrowUpwardOutlinedFilled as default } +export default IconArrowUpwardOutlinedFilled diff --git a/src/IconArrowUpwardRounded.tsx b/src/IconArrowUpwardRounded.tsx index 7230ffee1..a48e55367 100644 --- a/src/IconArrowUpwardRounded.tsx +++ b/src/IconArrowUpwardRounded.tsx @@ -8,4 +8,4 @@ const IconArrowUpwardRounded: React.FC = ({ ...props }) => ( ) -export { IconArrowUpwardRounded as default } +export default IconArrowUpwardRounded diff --git a/src/IconArrowUpwardRoundedFilled.tsx b/src/IconArrowUpwardRoundedFilled.tsx index 7b23a8920..30be9f897 100644 --- a/src/IconArrowUpwardRoundedFilled.tsx +++ b/src/IconArrowUpwardRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconArrowUpwardRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconArrowUpwardRoundedFilled as default } +export default IconArrowUpwardRoundedFilled diff --git a/src/IconArrowUpwardSharp.tsx b/src/IconArrowUpwardSharp.tsx index ce6f0370e..3b82ff514 100644 --- a/src/IconArrowUpwardSharp.tsx +++ b/src/IconArrowUpwardSharp.tsx @@ -8,4 +8,4 @@ const IconArrowUpwardSharp: React.FC = ({ ...props }) => ( ) -export { IconArrowUpwardSharp as default } +export default IconArrowUpwardSharp diff --git a/src/IconArrowUpwardSharpFilled.tsx b/src/IconArrowUpwardSharpFilled.tsx index 9136c1031..a90061b76 100644 --- a/src/IconArrowUpwardSharpFilled.tsx +++ b/src/IconArrowUpwardSharpFilled.tsx @@ -8,4 +8,4 @@ const IconArrowUpwardSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconArrowUpwardSharpFilled as default } +export default IconArrowUpwardSharpFilled diff --git a/src/IconArrowWarmUpOutlined.tsx b/src/IconArrowWarmUpOutlined.tsx index 6dd4381e7..e57f77b1f 100644 --- a/src/IconArrowWarmUpOutlined.tsx +++ b/src/IconArrowWarmUpOutlined.tsx @@ -8,4 +8,4 @@ const IconArrowWarmUpOutlined: React.FC = ({ ...props }) => ( ) -export { IconArrowWarmUpOutlined as default } +export default IconArrowWarmUpOutlined diff --git a/src/IconArrowWarmUpOutlinedFilled.tsx b/src/IconArrowWarmUpOutlinedFilled.tsx index c3783f7cc..7ef42c08e 100644 --- a/src/IconArrowWarmUpOutlinedFilled.tsx +++ b/src/IconArrowWarmUpOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconArrowWarmUpOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconArrowWarmUpOutlinedFilled as default } +export default IconArrowWarmUpOutlinedFilled diff --git a/src/IconArrowWarmUpRounded.tsx b/src/IconArrowWarmUpRounded.tsx index 5800bf8f7..fbe1946c1 100644 --- a/src/IconArrowWarmUpRounded.tsx +++ b/src/IconArrowWarmUpRounded.tsx @@ -8,4 +8,4 @@ const IconArrowWarmUpRounded: React.FC = ({ ...props }) => ( ) -export { IconArrowWarmUpRounded as default } +export default IconArrowWarmUpRounded diff --git a/src/IconArrowWarmUpRoundedFilled.tsx b/src/IconArrowWarmUpRoundedFilled.tsx index a2e37aa14..ff9575b91 100644 --- a/src/IconArrowWarmUpRoundedFilled.tsx +++ b/src/IconArrowWarmUpRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconArrowWarmUpRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconArrowWarmUpRoundedFilled as default } +export default IconArrowWarmUpRoundedFilled diff --git a/src/IconArrowWarmUpSharp.tsx b/src/IconArrowWarmUpSharp.tsx index 986132608..1dffb3482 100644 --- a/src/IconArrowWarmUpSharp.tsx +++ b/src/IconArrowWarmUpSharp.tsx @@ -8,4 +8,4 @@ const IconArrowWarmUpSharp: React.FC = ({ ...props }) => ( ) -export { IconArrowWarmUpSharp as default } +export default IconArrowWarmUpSharp diff --git a/src/IconArrowWarmUpSharpFilled.tsx b/src/IconArrowWarmUpSharpFilled.tsx index db406e159..e8d01c6fa 100644 --- a/src/IconArrowWarmUpSharpFilled.tsx +++ b/src/IconArrowWarmUpSharpFilled.tsx @@ -8,4 +8,4 @@ const IconArrowWarmUpSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconArrowWarmUpSharpFilled as default } +export default IconArrowWarmUpSharpFilled diff --git a/src/IconArrowsMoreDownOutlined.tsx b/src/IconArrowsMoreDownOutlined.tsx index 977903c89..0d3b88f21 100644 --- a/src/IconArrowsMoreDownOutlined.tsx +++ b/src/IconArrowsMoreDownOutlined.tsx @@ -8,4 +8,4 @@ const IconArrowsMoreDownOutlined: React.FC = ({ ...props }) => ( ) -export { IconArrowsMoreDownOutlined as default } +export default IconArrowsMoreDownOutlined diff --git a/src/IconArrowsMoreDownOutlinedFilled.tsx b/src/IconArrowsMoreDownOutlinedFilled.tsx index 30e80259e..0e12da3fb 100644 --- a/src/IconArrowsMoreDownOutlinedFilled.tsx +++ b/src/IconArrowsMoreDownOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconArrowsMoreDownOutlinedFilled: React.FC = ({ ) -export { IconArrowsMoreDownOutlinedFilled as default } +export default IconArrowsMoreDownOutlinedFilled diff --git a/src/IconArrowsMoreDownRounded.tsx b/src/IconArrowsMoreDownRounded.tsx index 40e6fc997..8a54efe99 100644 --- a/src/IconArrowsMoreDownRounded.tsx +++ b/src/IconArrowsMoreDownRounded.tsx @@ -8,4 +8,4 @@ const IconArrowsMoreDownRounded: React.FC = ({ ...props }) => ( ) -export { IconArrowsMoreDownRounded as default } +export default IconArrowsMoreDownRounded diff --git a/src/IconArrowsMoreDownRoundedFilled.tsx b/src/IconArrowsMoreDownRoundedFilled.tsx index 1f2475b4d..a44c1b975 100644 --- a/src/IconArrowsMoreDownRoundedFilled.tsx +++ b/src/IconArrowsMoreDownRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconArrowsMoreDownRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconArrowsMoreDownRoundedFilled as default } +export default IconArrowsMoreDownRoundedFilled diff --git a/src/IconArrowsMoreDownSharp.tsx b/src/IconArrowsMoreDownSharp.tsx index 713097c7c..cc24d44dd 100644 --- a/src/IconArrowsMoreDownSharp.tsx +++ b/src/IconArrowsMoreDownSharp.tsx @@ -8,4 +8,4 @@ const IconArrowsMoreDownSharp: React.FC = ({ ...props }) => ( ) -export { IconArrowsMoreDownSharp as default } +export default IconArrowsMoreDownSharp diff --git a/src/IconArrowsMoreDownSharpFilled.tsx b/src/IconArrowsMoreDownSharpFilled.tsx index de2b31d58..05ed88444 100644 --- a/src/IconArrowsMoreDownSharpFilled.tsx +++ b/src/IconArrowsMoreDownSharpFilled.tsx @@ -8,4 +8,4 @@ const IconArrowsMoreDownSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconArrowsMoreDownSharpFilled as default } +export default IconArrowsMoreDownSharpFilled diff --git a/src/IconArrowsMoreUpOutlined.tsx b/src/IconArrowsMoreUpOutlined.tsx index 0a5bd83cd..12aa53deb 100644 --- a/src/IconArrowsMoreUpOutlined.tsx +++ b/src/IconArrowsMoreUpOutlined.tsx @@ -8,4 +8,4 @@ const IconArrowsMoreUpOutlined: React.FC = ({ ...props }) => ( ) -export { IconArrowsMoreUpOutlined as default } +export default IconArrowsMoreUpOutlined diff --git a/src/IconArrowsMoreUpOutlinedFilled.tsx b/src/IconArrowsMoreUpOutlinedFilled.tsx index 024529d93..9750988e8 100644 --- a/src/IconArrowsMoreUpOutlinedFilled.tsx +++ b/src/IconArrowsMoreUpOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconArrowsMoreUpOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconArrowsMoreUpOutlinedFilled as default } +export default IconArrowsMoreUpOutlinedFilled diff --git a/src/IconArrowsMoreUpRounded.tsx b/src/IconArrowsMoreUpRounded.tsx index 71eef99b8..29be84395 100644 --- a/src/IconArrowsMoreUpRounded.tsx +++ b/src/IconArrowsMoreUpRounded.tsx @@ -8,4 +8,4 @@ const IconArrowsMoreUpRounded: React.FC = ({ ...props }) => ( ) -export { IconArrowsMoreUpRounded as default } +export default IconArrowsMoreUpRounded diff --git a/src/IconArrowsMoreUpRoundedFilled.tsx b/src/IconArrowsMoreUpRoundedFilled.tsx index 5ed8db676..31fde5037 100644 --- a/src/IconArrowsMoreUpRoundedFilled.tsx +++ b/src/IconArrowsMoreUpRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconArrowsMoreUpRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconArrowsMoreUpRoundedFilled as default } +export default IconArrowsMoreUpRoundedFilled diff --git a/src/IconArrowsMoreUpSharp.tsx b/src/IconArrowsMoreUpSharp.tsx index eaefd4351..86713c95b 100644 --- a/src/IconArrowsMoreUpSharp.tsx +++ b/src/IconArrowsMoreUpSharp.tsx @@ -8,4 +8,4 @@ const IconArrowsMoreUpSharp: React.FC = ({ ...props }) => ( ) -export { IconArrowsMoreUpSharp as default } +export default IconArrowsMoreUpSharp diff --git a/src/IconArrowsMoreUpSharpFilled.tsx b/src/IconArrowsMoreUpSharpFilled.tsx index 3a0680a20..3933e408f 100644 --- a/src/IconArrowsMoreUpSharpFilled.tsx +++ b/src/IconArrowsMoreUpSharpFilled.tsx @@ -8,4 +8,4 @@ const IconArrowsMoreUpSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconArrowsMoreUpSharpFilled as default } +export default IconArrowsMoreUpSharpFilled diff --git a/src/IconArrowsOutwardOutlined.tsx b/src/IconArrowsOutwardOutlined.tsx index 5e374454c..3657312be 100644 --- a/src/IconArrowsOutwardOutlined.tsx +++ b/src/IconArrowsOutwardOutlined.tsx @@ -8,4 +8,4 @@ const IconArrowsOutwardOutlined: React.FC = ({ ...props }) => ( ) -export { IconArrowsOutwardOutlined as default } +export default IconArrowsOutwardOutlined diff --git a/src/IconArrowsOutwardOutlinedFilled.tsx b/src/IconArrowsOutwardOutlinedFilled.tsx index ba549b217..9217df4c8 100644 --- a/src/IconArrowsOutwardOutlinedFilled.tsx +++ b/src/IconArrowsOutwardOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconArrowsOutwardOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconArrowsOutwardOutlinedFilled as default } +export default IconArrowsOutwardOutlinedFilled diff --git a/src/IconArrowsOutwardRounded.tsx b/src/IconArrowsOutwardRounded.tsx index bfc6f3ba7..a11900be7 100644 --- a/src/IconArrowsOutwardRounded.tsx +++ b/src/IconArrowsOutwardRounded.tsx @@ -8,4 +8,4 @@ const IconArrowsOutwardRounded: React.FC = ({ ...props }) => ( ) -export { IconArrowsOutwardRounded as default } +export default IconArrowsOutwardRounded diff --git a/src/IconArrowsOutwardRoundedFilled.tsx b/src/IconArrowsOutwardRoundedFilled.tsx index 33f227aae..7f139330d 100644 --- a/src/IconArrowsOutwardRoundedFilled.tsx +++ b/src/IconArrowsOutwardRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconArrowsOutwardRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconArrowsOutwardRoundedFilled as default } +export default IconArrowsOutwardRoundedFilled diff --git a/src/IconArrowsOutwardSharp.tsx b/src/IconArrowsOutwardSharp.tsx index 10a86f37f..32e57273c 100644 --- a/src/IconArrowsOutwardSharp.tsx +++ b/src/IconArrowsOutwardSharp.tsx @@ -8,4 +8,4 @@ const IconArrowsOutwardSharp: React.FC = ({ ...props }) => ( ) -export { IconArrowsOutwardSharp as default } +export default IconArrowsOutwardSharp diff --git a/src/IconArrowsOutwardSharpFilled.tsx b/src/IconArrowsOutwardSharpFilled.tsx index 85cf30aa2..ee1e52394 100644 --- a/src/IconArrowsOutwardSharpFilled.tsx +++ b/src/IconArrowsOutwardSharpFilled.tsx @@ -8,4 +8,4 @@ const IconArrowsOutwardSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconArrowsOutwardSharpFilled as default } +export default IconArrowsOutwardSharpFilled diff --git a/src/IconArtTrackOutlined.tsx b/src/IconArtTrackOutlined.tsx index 42b7caab1..195fc36d9 100644 --- a/src/IconArtTrackOutlined.tsx +++ b/src/IconArtTrackOutlined.tsx @@ -8,4 +8,4 @@ const IconArtTrackOutlined: React.FC = ({ ...props }) => ( ) -export { IconArtTrackOutlined as default } +export default IconArtTrackOutlined diff --git a/src/IconArtTrackOutlinedFilled.tsx b/src/IconArtTrackOutlinedFilled.tsx index d38199210..0ef8076c0 100644 --- a/src/IconArtTrackOutlinedFilled.tsx +++ b/src/IconArtTrackOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconArtTrackOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconArtTrackOutlinedFilled as default } +export default IconArtTrackOutlinedFilled diff --git a/src/IconArtTrackRounded.tsx b/src/IconArtTrackRounded.tsx index 0647e1ccf..6689a8171 100644 --- a/src/IconArtTrackRounded.tsx +++ b/src/IconArtTrackRounded.tsx @@ -8,4 +8,4 @@ const IconArtTrackRounded: React.FC = ({ ...props }) => ( ) -export { IconArtTrackRounded as default } +export default IconArtTrackRounded diff --git a/src/IconArtTrackRoundedFilled.tsx b/src/IconArtTrackRoundedFilled.tsx index 56ef1e873..595f2fbcb 100644 --- a/src/IconArtTrackRoundedFilled.tsx +++ b/src/IconArtTrackRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconArtTrackRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconArtTrackRoundedFilled as default } +export default IconArtTrackRoundedFilled diff --git a/src/IconArtTrackSharp.tsx b/src/IconArtTrackSharp.tsx index f1e937fe2..bb5545a02 100644 --- a/src/IconArtTrackSharp.tsx +++ b/src/IconArtTrackSharp.tsx @@ -8,4 +8,4 @@ const IconArtTrackSharp: React.FC = ({ ...props }) => ( ) -export { IconArtTrackSharp as default } +export default IconArtTrackSharp diff --git a/src/IconArtTrackSharpFilled.tsx b/src/IconArtTrackSharpFilled.tsx index dd60cbb48..fbe9a8f6d 100644 --- a/src/IconArtTrackSharpFilled.tsx +++ b/src/IconArtTrackSharpFilled.tsx @@ -8,4 +8,4 @@ const IconArtTrackSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconArtTrackSharpFilled as default } +export default IconArtTrackSharpFilled diff --git a/src/IconArticleOutlined.tsx b/src/IconArticleOutlined.tsx index 07c5bf299..3baf1dc21 100644 --- a/src/IconArticleOutlined.tsx +++ b/src/IconArticleOutlined.tsx @@ -8,4 +8,4 @@ const IconArticleOutlined: React.FC = ({ ...props }) => ( ) -export { IconArticleOutlined as default } +export default IconArticleOutlined diff --git a/src/IconArticleOutlinedFilled.tsx b/src/IconArticleOutlinedFilled.tsx index 291890464..d1c9e1221 100644 --- a/src/IconArticleOutlinedFilled.tsx +++ b/src/IconArticleOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconArticleOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconArticleOutlinedFilled as default } +export default IconArticleOutlinedFilled diff --git a/src/IconArticleRounded.tsx b/src/IconArticleRounded.tsx index d38cfd851..1d2c6a4d0 100644 --- a/src/IconArticleRounded.tsx +++ b/src/IconArticleRounded.tsx @@ -8,4 +8,4 @@ const IconArticleRounded: React.FC = ({ ...props }) => ( ) -export { IconArticleRounded as default } +export default IconArticleRounded diff --git a/src/IconArticleRoundedFilled.tsx b/src/IconArticleRoundedFilled.tsx index 1df21856b..f64a4b0ac 100644 --- a/src/IconArticleRoundedFilled.tsx +++ b/src/IconArticleRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconArticleRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconArticleRoundedFilled as default } +export default IconArticleRoundedFilled diff --git a/src/IconArticleSharp.tsx b/src/IconArticleSharp.tsx index c664d62f7..396219a78 100644 --- a/src/IconArticleSharp.tsx +++ b/src/IconArticleSharp.tsx @@ -8,4 +8,4 @@ const IconArticleSharp: React.FC = ({ ...props }) => ( ) -export { IconArticleSharp as default } +export default IconArticleSharp diff --git a/src/IconArticleSharpFilled.tsx b/src/IconArticleSharpFilled.tsx index 8b026d8bd..24f0af127 100644 --- a/src/IconArticleSharpFilled.tsx +++ b/src/IconArticleSharpFilled.tsx @@ -8,4 +8,4 @@ const IconArticleSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconArticleSharpFilled as default } +export default IconArticleSharpFilled diff --git a/src/IconArticleShortcutOutlined.tsx b/src/IconArticleShortcutOutlined.tsx index c1b8f562e..b4f085a8a 100644 --- a/src/IconArticleShortcutOutlined.tsx +++ b/src/IconArticleShortcutOutlined.tsx @@ -8,4 +8,4 @@ const IconArticleShortcutOutlined: React.FC = ({ ...props }) => ( ) -export { IconArticleShortcutOutlined as default } +export default IconArticleShortcutOutlined diff --git a/src/IconArticleShortcutOutlinedFilled.tsx b/src/IconArticleShortcutOutlinedFilled.tsx index f81d57261..afc5ae0b8 100644 --- a/src/IconArticleShortcutOutlinedFilled.tsx +++ b/src/IconArticleShortcutOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconArticleShortcutOutlinedFilled: React.FC = ({ ) -export { IconArticleShortcutOutlinedFilled as default } +export default IconArticleShortcutOutlinedFilled diff --git a/src/IconArticleShortcutRounded.tsx b/src/IconArticleShortcutRounded.tsx index 65e2b2175..33b6d90d7 100644 --- a/src/IconArticleShortcutRounded.tsx +++ b/src/IconArticleShortcutRounded.tsx @@ -8,4 +8,4 @@ const IconArticleShortcutRounded: React.FC = ({ ...props }) => ( ) -export { IconArticleShortcutRounded as default } +export default IconArticleShortcutRounded diff --git a/src/IconArticleShortcutRoundedFilled.tsx b/src/IconArticleShortcutRoundedFilled.tsx index b04f362e3..9d1fa541a 100644 --- a/src/IconArticleShortcutRoundedFilled.tsx +++ b/src/IconArticleShortcutRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconArticleShortcutRoundedFilled: React.FC = ({ ) -export { IconArticleShortcutRoundedFilled as default } +export default IconArticleShortcutRoundedFilled diff --git a/src/IconArticleShortcutSharp.tsx b/src/IconArticleShortcutSharp.tsx index cbe393077..6510d6c21 100644 --- a/src/IconArticleShortcutSharp.tsx +++ b/src/IconArticleShortcutSharp.tsx @@ -8,4 +8,4 @@ const IconArticleShortcutSharp: React.FC = ({ ...props }) => ( ) -export { IconArticleShortcutSharp as default } +export default IconArticleShortcutSharp diff --git a/src/IconArticleShortcutSharpFilled.tsx b/src/IconArticleShortcutSharpFilled.tsx index faeb897e5..0b03db1cc 100644 --- a/src/IconArticleShortcutSharpFilled.tsx +++ b/src/IconArticleShortcutSharpFilled.tsx @@ -8,4 +8,4 @@ const IconArticleShortcutSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconArticleShortcutSharpFilled as default } +export default IconArticleShortcutSharpFilled diff --git a/src/IconArtistOutlined.tsx b/src/IconArtistOutlined.tsx index ab898b7f8..02f849843 100644 --- a/src/IconArtistOutlined.tsx +++ b/src/IconArtistOutlined.tsx @@ -8,4 +8,4 @@ const IconArtistOutlined: React.FC = ({ ...props }) => ( ) -export { IconArtistOutlined as default } +export default IconArtistOutlined diff --git a/src/IconArtistOutlinedFilled.tsx b/src/IconArtistOutlinedFilled.tsx index 4d4264b31..bbfc7eb26 100644 --- a/src/IconArtistOutlinedFilled.tsx +++ b/src/IconArtistOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconArtistOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconArtistOutlinedFilled as default } +export default IconArtistOutlinedFilled diff --git a/src/IconArtistRounded.tsx b/src/IconArtistRounded.tsx index 1f56ab8bd..49047c715 100644 --- a/src/IconArtistRounded.tsx +++ b/src/IconArtistRounded.tsx @@ -8,4 +8,4 @@ const IconArtistRounded: React.FC = ({ ...props }) => ( ) -export { IconArtistRounded as default } +export default IconArtistRounded diff --git a/src/IconArtistRoundedFilled.tsx b/src/IconArtistRoundedFilled.tsx index 255501a19..106a20675 100644 --- a/src/IconArtistRoundedFilled.tsx +++ b/src/IconArtistRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconArtistRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconArtistRoundedFilled as default } +export default IconArtistRoundedFilled diff --git a/src/IconArtistSharp.tsx b/src/IconArtistSharp.tsx index 878c6c362..fab2d304a 100644 --- a/src/IconArtistSharp.tsx +++ b/src/IconArtistSharp.tsx @@ -8,4 +8,4 @@ const IconArtistSharp: React.FC = ({ ...props }) => ( ) -export { IconArtistSharp as default } +export default IconArtistSharp diff --git a/src/IconArtistSharpFilled.tsx b/src/IconArtistSharpFilled.tsx index 4e4ed3adb..5cf5c7cc9 100644 --- a/src/IconArtistSharpFilled.tsx +++ b/src/IconArtistSharpFilled.tsx @@ -8,4 +8,4 @@ const IconArtistSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconArtistSharpFilled as default } +export default IconArtistSharpFilled diff --git a/src/IconAspectRatioOutlined.tsx b/src/IconAspectRatioOutlined.tsx index 3c877404a..cb9e8a4da 100644 --- a/src/IconAspectRatioOutlined.tsx +++ b/src/IconAspectRatioOutlined.tsx @@ -8,4 +8,4 @@ const IconAspectRatioOutlined: React.FC = ({ ...props }) => ( ) -export { IconAspectRatioOutlined as default } +export default IconAspectRatioOutlined diff --git a/src/IconAspectRatioOutlinedFilled.tsx b/src/IconAspectRatioOutlinedFilled.tsx index 7beece997..929989ff3 100644 --- a/src/IconAspectRatioOutlinedFilled.tsx +++ b/src/IconAspectRatioOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconAspectRatioOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconAspectRatioOutlinedFilled as default } +export default IconAspectRatioOutlinedFilled diff --git a/src/IconAspectRatioRounded.tsx b/src/IconAspectRatioRounded.tsx index 97f0b5846..0f64201f0 100644 --- a/src/IconAspectRatioRounded.tsx +++ b/src/IconAspectRatioRounded.tsx @@ -8,4 +8,4 @@ const IconAspectRatioRounded: React.FC = ({ ...props }) => ( ) -export { IconAspectRatioRounded as default } +export default IconAspectRatioRounded diff --git a/src/IconAspectRatioRoundedFilled.tsx b/src/IconAspectRatioRoundedFilled.tsx index ad76b5553..595de6c86 100644 --- a/src/IconAspectRatioRoundedFilled.tsx +++ b/src/IconAspectRatioRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconAspectRatioRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconAspectRatioRoundedFilled as default } +export default IconAspectRatioRoundedFilled diff --git a/src/IconAspectRatioSharp.tsx b/src/IconAspectRatioSharp.tsx index 1a9a3e734..6a2d7b7fa 100644 --- a/src/IconAspectRatioSharp.tsx +++ b/src/IconAspectRatioSharp.tsx @@ -8,4 +8,4 @@ const IconAspectRatioSharp: React.FC = ({ ...props }) => ( ) -export { IconAspectRatioSharp as default } +export default IconAspectRatioSharp diff --git a/src/IconAspectRatioSharpFilled.tsx b/src/IconAspectRatioSharpFilled.tsx index 8ebc666ed..bb34b3ed5 100644 --- a/src/IconAspectRatioSharpFilled.tsx +++ b/src/IconAspectRatioSharpFilled.tsx @@ -8,4 +8,4 @@ const IconAspectRatioSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconAspectRatioSharpFilled as default } +export default IconAspectRatioSharpFilled diff --git a/src/IconAssignmentAddOutlined.tsx b/src/IconAssignmentAddOutlined.tsx index 7d52ac7e4..1e620da49 100644 --- a/src/IconAssignmentAddOutlined.tsx +++ b/src/IconAssignmentAddOutlined.tsx @@ -8,4 +8,4 @@ const IconAssignmentAddOutlined: React.FC = ({ ...props }) => ( ) -export { IconAssignmentAddOutlined as default } +export default IconAssignmentAddOutlined diff --git a/src/IconAssignmentAddOutlinedFilled.tsx b/src/IconAssignmentAddOutlinedFilled.tsx index c44fc5614..86fcfc314 100644 --- a/src/IconAssignmentAddOutlinedFilled.tsx +++ b/src/IconAssignmentAddOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconAssignmentAddOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconAssignmentAddOutlinedFilled as default } +export default IconAssignmentAddOutlinedFilled diff --git a/src/IconAssignmentAddRounded.tsx b/src/IconAssignmentAddRounded.tsx index 60fd3a6a8..8aee42a27 100644 --- a/src/IconAssignmentAddRounded.tsx +++ b/src/IconAssignmentAddRounded.tsx @@ -8,4 +8,4 @@ const IconAssignmentAddRounded: React.FC = ({ ...props }) => ( ) -export { IconAssignmentAddRounded as default } +export default IconAssignmentAddRounded diff --git a/src/IconAssignmentAddRoundedFilled.tsx b/src/IconAssignmentAddRoundedFilled.tsx index 8102b4ebb..dfe41fdfb 100644 --- a/src/IconAssignmentAddRoundedFilled.tsx +++ b/src/IconAssignmentAddRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconAssignmentAddRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconAssignmentAddRoundedFilled as default } +export default IconAssignmentAddRoundedFilled diff --git a/src/IconAssignmentAddSharp.tsx b/src/IconAssignmentAddSharp.tsx index ce1b95244..1d6fcb3ef 100644 --- a/src/IconAssignmentAddSharp.tsx +++ b/src/IconAssignmentAddSharp.tsx @@ -8,4 +8,4 @@ const IconAssignmentAddSharp: React.FC = ({ ...props }) => ( ) -export { IconAssignmentAddSharp as default } +export default IconAssignmentAddSharp diff --git a/src/IconAssignmentAddSharpFilled.tsx b/src/IconAssignmentAddSharpFilled.tsx index 21629240f..86b3941ce 100644 --- a/src/IconAssignmentAddSharpFilled.tsx +++ b/src/IconAssignmentAddSharpFilled.tsx @@ -8,4 +8,4 @@ const IconAssignmentAddSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconAssignmentAddSharpFilled as default } +export default IconAssignmentAddSharpFilled diff --git a/src/IconAssignmentIndOutlined.tsx b/src/IconAssignmentIndOutlined.tsx index d0da87744..eb607e6c7 100644 --- a/src/IconAssignmentIndOutlined.tsx +++ b/src/IconAssignmentIndOutlined.tsx @@ -8,4 +8,4 @@ const IconAssignmentIndOutlined: React.FC = ({ ...props }) => ( ) -export { IconAssignmentIndOutlined as default } +export default IconAssignmentIndOutlined diff --git a/src/IconAssignmentIndOutlinedFilled.tsx b/src/IconAssignmentIndOutlinedFilled.tsx index 6233730ae..2b0f387e5 100644 --- a/src/IconAssignmentIndOutlinedFilled.tsx +++ b/src/IconAssignmentIndOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconAssignmentIndOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconAssignmentIndOutlinedFilled as default } +export default IconAssignmentIndOutlinedFilled diff --git a/src/IconAssignmentIndRounded.tsx b/src/IconAssignmentIndRounded.tsx index 3318957e1..66e6f097a 100644 --- a/src/IconAssignmentIndRounded.tsx +++ b/src/IconAssignmentIndRounded.tsx @@ -8,4 +8,4 @@ const IconAssignmentIndRounded: React.FC = ({ ...props }) => ( ) -export { IconAssignmentIndRounded as default } +export default IconAssignmentIndRounded diff --git a/src/IconAssignmentIndRoundedFilled.tsx b/src/IconAssignmentIndRoundedFilled.tsx index e95d5f199..d5e1ff800 100644 --- a/src/IconAssignmentIndRoundedFilled.tsx +++ b/src/IconAssignmentIndRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconAssignmentIndRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconAssignmentIndRoundedFilled as default } +export default IconAssignmentIndRoundedFilled diff --git a/src/IconAssignmentIndSharp.tsx b/src/IconAssignmentIndSharp.tsx index 73563ec6b..5941eb35f 100644 --- a/src/IconAssignmentIndSharp.tsx +++ b/src/IconAssignmentIndSharp.tsx @@ -8,4 +8,4 @@ const IconAssignmentIndSharp: React.FC = ({ ...props }) => ( ) -export { IconAssignmentIndSharp as default } +export default IconAssignmentIndSharp diff --git a/src/IconAssignmentIndSharpFilled.tsx b/src/IconAssignmentIndSharpFilled.tsx index 13a15d1e9..dace98c1a 100644 --- a/src/IconAssignmentIndSharpFilled.tsx +++ b/src/IconAssignmentIndSharpFilled.tsx @@ -8,4 +8,4 @@ const IconAssignmentIndSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconAssignmentIndSharpFilled as default } +export default IconAssignmentIndSharpFilled diff --git a/src/IconAssignmentLateOutlined.tsx b/src/IconAssignmentLateOutlined.tsx index 2cc07d4b0..1360b731a 100644 --- a/src/IconAssignmentLateOutlined.tsx +++ b/src/IconAssignmentLateOutlined.tsx @@ -8,4 +8,4 @@ const IconAssignmentLateOutlined: React.FC = ({ ...props }) => ( ) -export { IconAssignmentLateOutlined as default } +export default IconAssignmentLateOutlined diff --git a/src/IconAssignmentLateOutlinedFilled.tsx b/src/IconAssignmentLateOutlinedFilled.tsx index 0614c01e4..488e8c8e5 100644 --- a/src/IconAssignmentLateOutlinedFilled.tsx +++ b/src/IconAssignmentLateOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconAssignmentLateOutlinedFilled: React.FC = ({ ) -export { IconAssignmentLateOutlinedFilled as default } +export default IconAssignmentLateOutlinedFilled diff --git a/src/IconAssignmentLateRounded.tsx b/src/IconAssignmentLateRounded.tsx index 878a87396..1d6cc1e88 100644 --- a/src/IconAssignmentLateRounded.tsx +++ b/src/IconAssignmentLateRounded.tsx @@ -8,4 +8,4 @@ const IconAssignmentLateRounded: React.FC = ({ ...props }) => ( ) -export { IconAssignmentLateRounded as default } +export default IconAssignmentLateRounded diff --git a/src/IconAssignmentLateRoundedFilled.tsx b/src/IconAssignmentLateRoundedFilled.tsx index 2243e171f..35424a88c 100644 --- a/src/IconAssignmentLateRoundedFilled.tsx +++ b/src/IconAssignmentLateRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconAssignmentLateRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconAssignmentLateRoundedFilled as default } +export default IconAssignmentLateRoundedFilled diff --git a/src/IconAssignmentLateSharp.tsx b/src/IconAssignmentLateSharp.tsx index 51b930f85..b1669554b 100644 --- a/src/IconAssignmentLateSharp.tsx +++ b/src/IconAssignmentLateSharp.tsx @@ -8,4 +8,4 @@ const IconAssignmentLateSharp: React.FC = ({ ...props }) => ( ) -export { IconAssignmentLateSharp as default } +export default IconAssignmentLateSharp diff --git a/src/IconAssignmentLateSharpFilled.tsx b/src/IconAssignmentLateSharpFilled.tsx index c250f3b91..cc87be3c6 100644 --- a/src/IconAssignmentLateSharpFilled.tsx +++ b/src/IconAssignmentLateSharpFilled.tsx @@ -8,4 +8,4 @@ const IconAssignmentLateSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconAssignmentLateSharpFilled as default } +export default IconAssignmentLateSharpFilled diff --git a/src/IconAssignmentOutlined.tsx b/src/IconAssignmentOutlined.tsx index ff2b4c8e8..c199ea89c 100644 --- a/src/IconAssignmentOutlined.tsx +++ b/src/IconAssignmentOutlined.tsx @@ -8,4 +8,4 @@ const IconAssignmentOutlined: React.FC = ({ ...props }) => ( ) -export { IconAssignmentOutlined as default } +export default IconAssignmentOutlined diff --git a/src/IconAssignmentOutlinedFilled.tsx b/src/IconAssignmentOutlinedFilled.tsx index a0085c699..0272b3c74 100644 --- a/src/IconAssignmentOutlinedFilled.tsx +++ b/src/IconAssignmentOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconAssignmentOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconAssignmentOutlinedFilled as default } +export default IconAssignmentOutlinedFilled diff --git a/src/IconAssignmentReturnOutlined.tsx b/src/IconAssignmentReturnOutlined.tsx index d4e50b82f..f45dddaad 100644 --- a/src/IconAssignmentReturnOutlined.tsx +++ b/src/IconAssignmentReturnOutlined.tsx @@ -8,4 +8,4 @@ const IconAssignmentReturnOutlined: React.FC = ({ ...props }) => ( ) -export { IconAssignmentReturnOutlined as default } +export default IconAssignmentReturnOutlined diff --git a/src/IconAssignmentReturnOutlinedFilled.tsx b/src/IconAssignmentReturnOutlinedFilled.tsx index 0b39125b8..f4ca456f9 100644 --- a/src/IconAssignmentReturnOutlinedFilled.tsx +++ b/src/IconAssignmentReturnOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconAssignmentReturnOutlinedFilled: React.FC = ({ ) -export { IconAssignmentReturnOutlinedFilled as default } +export default IconAssignmentReturnOutlinedFilled diff --git a/src/IconAssignmentReturnRounded.tsx b/src/IconAssignmentReturnRounded.tsx index b2f5fbf53..cb9848bd8 100644 --- a/src/IconAssignmentReturnRounded.tsx +++ b/src/IconAssignmentReturnRounded.tsx @@ -8,4 +8,4 @@ const IconAssignmentReturnRounded: React.FC = ({ ...props }) => ( ) -export { IconAssignmentReturnRounded as default } +export default IconAssignmentReturnRounded diff --git a/src/IconAssignmentReturnRoundedFilled.tsx b/src/IconAssignmentReturnRoundedFilled.tsx index 32d580318..5d82f1586 100644 --- a/src/IconAssignmentReturnRoundedFilled.tsx +++ b/src/IconAssignmentReturnRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconAssignmentReturnRoundedFilled: React.FC = ({ ) -export { IconAssignmentReturnRoundedFilled as default } +export default IconAssignmentReturnRoundedFilled diff --git a/src/IconAssignmentReturnSharp.tsx b/src/IconAssignmentReturnSharp.tsx index ac9d66963..6180e87b4 100644 --- a/src/IconAssignmentReturnSharp.tsx +++ b/src/IconAssignmentReturnSharp.tsx @@ -8,4 +8,4 @@ const IconAssignmentReturnSharp: React.FC = ({ ...props }) => ( ) -export { IconAssignmentReturnSharp as default } +export default IconAssignmentReturnSharp diff --git a/src/IconAssignmentReturnSharpFilled.tsx b/src/IconAssignmentReturnSharpFilled.tsx index 6747a6ad7..7288a4d14 100644 --- a/src/IconAssignmentReturnSharpFilled.tsx +++ b/src/IconAssignmentReturnSharpFilled.tsx @@ -8,4 +8,4 @@ const IconAssignmentReturnSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconAssignmentReturnSharpFilled as default } +export default IconAssignmentReturnSharpFilled diff --git a/src/IconAssignmentReturnedOutlined.tsx b/src/IconAssignmentReturnedOutlined.tsx index d42be25b0..6a36db3a1 100644 --- a/src/IconAssignmentReturnedOutlined.tsx +++ b/src/IconAssignmentReturnedOutlined.tsx @@ -8,4 +8,4 @@ const IconAssignmentReturnedOutlined: React.FC = ({ ...props }) => ( ) -export { IconAssignmentReturnedOutlined as default } +export default IconAssignmentReturnedOutlined diff --git a/src/IconAssignmentReturnedOutlinedFilled.tsx b/src/IconAssignmentReturnedOutlinedFilled.tsx index e909b3110..2286b6e8c 100644 --- a/src/IconAssignmentReturnedOutlinedFilled.tsx +++ b/src/IconAssignmentReturnedOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconAssignmentReturnedOutlinedFilled: React.FC = ({ ) -export { IconAssignmentReturnedOutlinedFilled as default } +export default IconAssignmentReturnedOutlinedFilled diff --git a/src/IconAssignmentReturnedRounded.tsx b/src/IconAssignmentReturnedRounded.tsx index 3a4e27104..9f445d711 100644 --- a/src/IconAssignmentReturnedRounded.tsx +++ b/src/IconAssignmentReturnedRounded.tsx @@ -8,4 +8,4 @@ const IconAssignmentReturnedRounded: React.FC = ({ ...props }) => ( ) -export { IconAssignmentReturnedRounded as default } +export default IconAssignmentReturnedRounded diff --git a/src/IconAssignmentReturnedRoundedFilled.tsx b/src/IconAssignmentReturnedRoundedFilled.tsx index 7bf45b8ea..05bab3a88 100644 --- a/src/IconAssignmentReturnedRoundedFilled.tsx +++ b/src/IconAssignmentReturnedRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconAssignmentReturnedRoundedFilled: React.FC = ({ ) -export { IconAssignmentReturnedRoundedFilled as default } +export default IconAssignmentReturnedRoundedFilled diff --git a/src/IconAssignmentReturnedSharp.tsx b/src/IconAssignmentReturnedSharp.tsx index 48a1a84e6..426d4d89d 100644 --- a/src/IconAssignmentReturnedSharp.tsx +++ b/src/IconAssignmentReturnedSharp.tsx @@ -8,4 +8,4 @@ const IconAssignmentReturnedSharp: React.FC = ({ ...props }) => ( ) -export { IconAssignmentReturnedSharp as default } +export default IconAssignmentReturnedSharp diff --git a/src/IconAssignmentReturnedSharpFilled.tsx b/src/IconAssignmentReturnedSharpFilled.tsx index c03874f6a..0410488ef 100644 --- a/src/IconAssignmentReturnedSharpFilled.tsx +++ b/src/IconAssignmentReturnedSharpFilled.tsx @@ -10,4 +10,4 @@ const IconAssignmentReturnedSharpFilled: React.FC = ({ ) -export { IconAssignmentReturnedSharpFilled as default } +export default IconAssignmentReturnedSharpFilled diff --git a/src/IconAssignmentRounded.tsx b/src/IconAssignmentRounded.tsx index 33724e254..65a6e8729 100644 --- a/src/IconAssignmentRounded.tsx +++ b/src/IconAssignmentRounded.tsx @@ -8,4 +8,4 @@ const IconAssignmentRounded: React.FC = ({ ...props }) => ( ) -export { IconAssignmentRounded as default } +export default IconAssignmentRounded diff --git a/src/IconAssignmentRoundedFilled.tsx b/src/IconAssignmentRoundedFilled.tsx index f0108a58e..8ecd2a02c 100644 --- a/src/IconAssignmentRoundedFilled.tsx +++ b/src/IconAssignmentRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconAssignmentRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconAssignmentRoundedFilled as default } +export default IconAssignmentRoundedFilled diff --git a/src/IconAssignmentSharp.tsx b/src/IconAssignmentSharp.tsx index 68299da41..2a7bf41dc 100644 --- a/src/IconAssignmentSharp.tsx +++ b/src/IconAssignmentSharp.tsx @@ -8,4 +8,4 @@ const IconAssignmentSharp: React.FC = ({ ...props }) => ( ) -export { IconAssignmentSharp as default } +export default IconAssignmentSharp diff --git a/src/IconAssignmentSharpFilled.tsx b/src/IconAssignmentSharpFilled.tsx index 729345dab..e13179b82 100644 --- a/src/IconAssignmentSharpFilled.tsx +++ b/src/IconAssignmentSharpFilled.tsx @@ -8,4 +8,4 @@ const IconAssignmentSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconAssignmentSharpFilled as default } +export default IconAssignmentSharpFilled diff --git a/src/IconAssignmentTurnedInOutlined.tsx b/src/IconAssignmentTurnedInOutlined.tsx index 9668e0db9..83e478ab7 100644 --- a/src/IconAssignmentTurnedInOutlined.tsx +++ b/src/IconAssignmentTurnedInOutlined.tsx @@ -8,4 +8,4 @@ const IconAssignmentTurnedInOutlined: React.FC = ({ ...props }) => ( ) -export { IconAssignmentTurnedInOutlined as default } +export default IconAssignmentTurnedInOutlined diff --git a/src/IconAssignmentTurnedInOutlinedFilled.tsx b/src/IconAssignmentTurnedInOutlinedFilled.tsx index 5cb18454d..33d667396 100644 --- a/src/IconAssignmentTurnedInOutlinedFilled.tsx +++ b/src/IconAssignmentTurnedInOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconAssignmentTurnedInOutlinedFilled: React.FC = ({ ) -export { IconAssignmentTurnedInOutlinedFilled as default } +export default IconAssignmentTurnedInOutlinedFilled diff --git a/src/IconAssignmentTurnedInRounded.tsx b/src/IconAssignmentTurnedInRounded.tsx index dedc7ac7c..159b57146 100644 --- a/src/IconAssignmentTurnedInRounded.tsx +++ b/src/IconAssignmentTurnedInRounded.tsx @@ -8,4 +8,4 @@ const IconAssignmentTurnedInRounded: React.FC = ({ ...props }) => ( ) -export { IconAssignmentTurnedInRounded as default } +export default IconAssignmentTurnedInRounded diff --git a/src/IconAssignmentTurnedInRoundedFilled.tsx b/src/IconAssignmentTurnedInRoundedFilled.tsx index 78c307952..6d4bbd6f8 100644 --- a/src/IconAssignmentTurnedInRoundedFilled.tsx +++ b/src/IconAssignmentTurnedInRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconAssignmentTurnedInRoundedFilled: React.FC = ({ ) -export { IconAssignmentTurnedInRoundedFilled as default } +export default IconAssignmentTurnedInRoundedFilled diff --git a/src/IconAssignmentTurnedInSharp.tsx b/src/IconAssignmentTurnedInSharp.tsx index 041e6a31f..d9caef93a 100644 --- a/src/IconAssignmentTurnedInSharp.tsx +++ b/src/IconAssignmentTurnedInSharp.tsx @@ -8,4 +8,4 @@ const IconAssignmentTurnedInSharp: React.FC = ({ ...props }) => ( ) -export { IconAssignmentTurnedInSharp as default } +export default IconAssignmentTurnedInSharp diff --git a/src/IconAssignmentTurnedInSharpFilled.tsx b/src/IconAssignmentTurnedInSharpFilled.tsx index 1f07b3887..be9fb5282 100644 --- a/src/IconAssignmentTurnedInSharpFilled.tsx +++ b/src/IconAssignmentTurnedInSharpFilled.tsx @@ -10,4 +10,4 @@ const IconAssignmentTurnedInSharpFilled: React.FC = ({ ) -export { IconAssignmentTurnedInSharpFilled as default } +export default IconAssignmentTurnedInSharpFilled diff --git a/src/IconAssistWalkerOutlined.tsx b/src/IconAssistWalkerOutlined.tsx index adc58596b..934d88019 100644 --- a/src/IconAssistWalkerOutlined.tsx +++ b/src/IconAssistWalkerOutlined.tsx @@ -8,4 +8,4 @@ const IconAssistWalkerOutlined: React.FC = ({ ...props }) => ( ) -export { IconAssistWalkerOutlined as default } +export default IconAssistWalkerOutlined diff --git a/src/IconAssistWalkerOutlinedFilled.tsx b/src/IconAssistWalkerOutlinedFilled.tsx index d005654e4..7390430ab 100644 --- a/src/IconAssistWalkerOutlinedFilled.tsx +++ b/src/IconAssistWalkerOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconAssistWalkerOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconAssistWalkerOutlinedFilled as default } +export default IconAssistWalkerOutlinedFilled diff --git a/src/IconAssistWalkerRounded.tsx b/src/IconAssistWalkerRounded.tsx index 85532e6b2..c9c236f41 100644 --- a/src/IconAssistWalkerRounded.tsx +++ b/src/IconAssistWalkerRounded.tsx @@ -8,4 +8,4 @@ const IconAssistWalkerRounded: React.FC = ({ ...props }) => ( ) -export { IconAssistWalkerRounded as default } +export default IconAssistWalkerRounded diff --git a/src/IconAssistWalkerRoundedFilled.tsx b/src/IconAssistWalkerRoundedFilled.tsx index 685cef711..206c9be29 100644 --- a/src/IconAssistWalkerRoundedFilled.tsx +++ b/src/IconAssistWalkerRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconAssistWalkerRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconAssistWalkerRoundedFilled as default } +export default IconAssistWalkerRoundedFilled diff --git a/src/IconAssistWalkerSharp.tsx b/src/IconAssistWalkerSharp.tsx index 8799749b2..607461e46 100644 --- a/src/IconAssistWalkerSharp.tsx +++ b/src/IconAssistWalkerSharp.tsx @@ -8,4 +8,4 @@ const IconAssistWalkerSharp: React.FC = ({ ...props }) => ( ) -export { IconAssistWalkerSharp as default } +export default IconAssistWalkerSharp diff --git a/src/IconAssistWalkerSharpFilled.tsx b/src/IconAssistWalkerSharpFilled.tsx index 4f92a60fa..f792afcff 100644 --- a/src/IconAssistWalkerSharpFilled.tsx +++ b/src/IconAssistWalkerSharpFilled.tsx @@ -8,4 +8,4 @@ const IconAssistWalkerSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconAssistWalkerSharpFilled as default } +export default IconAssistWalkerSharpFilled diff --git a/src/IconAssistantDeviceOutlined.tsx b/src/IconAssistantDeviceOutlined.tsx index e0e881580..52e06315f 100644 --- a/src/IconAssistantDeviceOutlined.tsx +++ b/src/IconAssistantDeviceOutlined.tsx @@ -8,4 +8,4 @@ const IconAssistantDeviceOutlined: React.FC = ({ ...props }) => ( ) -export { IconAssistantDeviceOutlined as default } +export default IconAssistantDeviceOutlined diff --git a/src/IconAssistantDeviceOutlinedFilled.tsx b/src/IconAssistantDeviceOutlinedFilled.tsx index 59dd84aa3..6fd91ff29 100644 --- a/src/IconAssistantDeviceOutlinedFilled.tsx +++ b/src/IconAssistantDeviceOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconAssistantDeviceOutlinedFilled: React.FC = ({ ) -export { IconAssistantDeviceOutlinedFilled as default } +export default IconAssistantDeviceOutlinedFilled diff --git a/src/IconAssistantDeviceRounded.tsx b/src/IconAssistantDeviceRounded.tsx index ba7e73d6c..422c822aa 100644 --- a/src/IconAssistantDeviceRounded.tsx +++ b/src/IconAssistantDeviceRounded.tsx @@ -8,4 +8,4 @@ const IconAssistantDeviceRounded: React.FC = ({ ...props }) => ( ) -export { IconAssistantDeviceRounded as default } +export default IconAssistantDeviceRounded diff --git a/src/IconAssistantDeviceRoundedFilled.tsx b/src/IconAssistantDeviceRoundedFilled.tsx index d6a56cecd..69b0e9d64 100644 --- a/src/IconAssistantDeviceRoundedFilled.tsx +++ b/src/IconAssistantDeviceRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconAssistantDeviceRoundedFilled: React.FC = ({ ) -export { IconAssistantDeviceRoundedFilled as default } +export default IconAssistantDeviceRoundedFilled diff --git a/src/IconAssistantDeviceSharp.tsx b/src/IconAssistantDeviceSharp.tsx index f4f3734c2..5ae41192f 100644 --- a/src/IconAssistantDeviceSharp.tsx +++ b/src/IconAssistantDeviceSharp.tsx @@ -8,4 +8,4 @@ const IconAssistantDeviceSharp: React.FC = ({ ...props }) => ( ) -export { IconAssistantDeviceSharp as default } +export default IconAssistantDeviceSharp diff --git a/src/IconAssistantDeviceSharpFilled.tsx b/src/IconAssistantDeviceSharpFilled.tsx index edc38715e..8718a2ced 100644 --- a/src/IconAssistantDeviceSharpFilled.tsx +++ b/src/IconAssistantDeviceSharpFilled.tsx @@ -8,4 +8,4 @@ const IconAssistantDeviceSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconAssistantDeviceSharpFilled as default } +export default IconAssistantDeviceSharpFilled diff --git a/src/IconAssistantDirectionOutlined.tsx b/src/IconAssistantDirectionOutlined.tsx index 7bf4d5661..a1851bc9d 100644 --- a/src/IconAssistantDirectionOutlined.tsx +++ b/src/IconAssistantDirectionOutlined.tsx @@ -8,4 +8,4 @@ const IconAssistantDirectionOutlined: React.FC = ({ ...props }) => ( ) -export { IconAssistantDirectionOutlined as default } +export default IconAssistantDirectionOutlined diff --git a/src/IconAssistantDirectionOutlinedFilled.tsx b/src/IconAssistantDirectionOutlinedFilled.tsx index 0caed6e44..806b0350d 100644 --- a/src/IconAssistantDirectionOutlinedFilled.tsx +++ b/src/IconAssistantDirectionOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconAssistantDirectionOutlinedFilled: React.FC = ({ ) -export { IconAssistantDirectionOutlinedFilled as default } +export default IconAssistantDirectionOutlinedFilled diff --git a/src/IconAssistantDirectionRounded.tsx b/src/IconAssistantDirectionRounded.tsx index 8748db064..40fa6855a 100644 --- a/src/IconAssistantDirectionRounded.tsx +++ b/src/IconAssistantDirectionRounded.tsx @@ -8,4 +8,4 @@ const IconAssistantDirectionRounded: React.FC = ({ ...props }) => ( ) -export { IconAssistantDirectionRounded as default } +export default IconAssistantDirectionRounded diff --git a/src/IconAssistantDirectionRoundedFilled.tsx b/src/IconAssistantDirectionRoundedFilled.tsx index ab4b2c446..92f9b97ca 100644 --- a/src/IconAssistantDirectionRoundedFilled.tsx +++ b/src/IconAssistantDirectionRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconAssistantDirectionRoundedFilled: React.FC = ({ ) -export { IconAssistantDirectionRoundedFilled as default } +export default IconAssistantDirectionRoundedFilled diff --git a/src/IconAssistantDirectionSharp.tsx b/src/IconAssistantDirectionSharp.tsx index 1fafe935c..ccaf8dbf2 100644 --- a/src/IconAssistantDirectionSharp.tsx +++ b/src/IconAssistantDirectionSharp.tsx @@ -8,4 +8,4 @@ const IconAssistantDirectionSharp: React.FC = ({ ...props }) => ( ) -export { IconAssistantDirectionSharp as default } +export default IconAssistantDirectionSharp diff --git a/src/IconAssistantDirectionSharpFilled.tsx b/src/IconAssistantDirectionSharpFilled.tsx index 64903223b..8c9624fd8 100644 --- a/src/IconAssistantDirectionSharpFilled.tsx +++ b/src/IconAssistantDirectionSharpFilled.tsx @@ -10,4 +10,4 @@ const IconAssistantDirectionSharpFilled: React.FC = ({ ) -export { IconAssistantDirectionSharpFilled as default } +export default IconAssistantDirectionSharpFilled diff --git a/src/IconAssistantNavigationOutlined.tsx b/src/IconAssistantNavigationOutlined.tsx index c0e4ee232..4b03df54e 100644 --- a/src/IconAssistantNavigationOutlined.tsx +++ b/src/IconAssistantNavigationOutlined.tsx @@ -8,4 +8,4 @@ const IconAssistantNavigationOutlined: React.FC = ({ ...props }) => ( ) -export { IconAssistantNavigationOutlined as default } +export default IconAssistantNavigationOutlined diff --git a/src/IconAssistantNavigationOutlinedFilled.tsx b/src/IconAssistantNavigationOutlinedFilled.tsx index 11dd36264..426d275a9 100644 --- a/src/IconAssistantNavigationOutlinedFilled.tsx +++ b/src/IconAssistantNavigationOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconAssistantNavigationOutlinedFilled: React.FC = ({ ) -export { IconAssistantNavigationOutlinedFilled as default } +export default IconAssistantNavigationOutlinedFilled diff --git a/src/IconAssistantNavigationRounded.tsx b/src/IconAssistantNavigationRounded.tsx index 200d80f8d..7bd215007 100644 --- a/src/IconAssistantNavigationRounded.tsx +++ b/src/IconAssistantNavigationRounded.tsx @@ -8,4 +8,4 @@ const IconAssistantNavigationRounded: React.FC = ({ ...props }) => ( ) -export { IconAssistantNavigationRounded as default } +export default IconAssistantNavigationRounded diff --git a/src/IconAssistantNavigationRoundedFilled.tsx b/src/IconAssistantNavigationRoundedFilled.tsx index e11ada2c6..f1f9e028f 100644 --- a/src/IconAssistantNavigationRoundedFilled.tsx +++ b/src/IconAssistantNavigationRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconAssistantNavigationRoundedFilled: React.FC = ({ ) -export { IconAssistantNavigationRoundedFilled as default } +export default IconAssistantNavigationRoundedFilled diff --git a/src/IconAssistantNavigationSharp.tsx b/src/IconAssistantNavigationSharp.tsx index 23e636e64..21416ec96 100644 --- a/src/IconAssistantNavigationSharp.tsx +++ b/src/IconAssistantNavigationSharp.tsx @@ -8,4 +8,4 @@ const IconAssistantNavigationSharp: React.FC = ({ ...props }) => ( ) -export { IconAssistantNavigationSharp as default } +export default IconAssistantNavigationSharp diff --git a/src/IconAssistantNavigationSharpFilled.tsx b/src/IconAssistantNavigationSharpFilled.tsx index f8610ebcb..0825547a5 100644 --- a/src/IconAssistantNavigationSharpFilled.tsx +++ b/src/IconAssistantNavigationSharpFilled.tsx @@ -10,4 +10,4 @@ const IconAssistantNavigationSharpFilled: React.FC = ({ ) -export { IconAssistantNavigationSharpFilled as default } +export default IconAssistantNavigationSharpFilled diff --git a/src/IconAssistantOnHubOutlined.tsx b/src/IconAssistantOnHubOutlined.tsx index eb7a4db87..83991ad2f 100644 --- a/src/IconAssistantOnHubOutlined.tsx +++ b/src/IconAssistantOnHubOutlined.tsx @@ -8,4 +8,4 @@ const IconAssistantOnHubOutlined: React.FC = ({ ...props }) => ( ) -export { IconAssistantOnHubOutlined as default } +export default IconAssistantOnHubOutlined diff --git a/src/IconAssistantOnHubOutlinedFilled.tsx b/src/IconAssistantOnHubOutlinedFilled.tsx index b68f2b8ae..af2c7c2fd 100644 --- a/src/IconAssistantOnHubOutlinedFilled.tsx +++ b/src/IconAssistantOnHubOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconAssistantOnHubOutlinedFilled: React.FC = ({ ) -export { IconAssistantOnHubOutlinedFilled as default } +export default IconAssistantOnHubOutlinedFilled diff --git a/src/IconAssistantOnHubRounded.tsx b/src/IconAssistantOnHubRounded.tsx index 39590d2ce..db5dc22f2 100644 --- a/src/IconAssistantOnHubRounded.tsx +++ b/src/IconAssistantOnHubRounded.tsx @@ -8,4 +8,4 @@ const IconAssistantOnHubRounded: React.FC = ({ ...props }) => ( ) -export { IconAssistantOnHubRounded as default } +export default IconAssistantOnHubRounded diff --git a/src/IconAssistantOnHubRoundedFilled.tsx b/src/IconAssistantOnHubRoundedFilled.tsx index 03f7e38bc..8c104ea58 100644 --- a/src/IconAssistantOnHubRoundedFilled.tsx +++ b/src/IconAssistantOnHubRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconAssistantOnHubRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconAssistantOnHubRoundedFilled as default } +export default IconAssistantOnHubRoundedFilled diff --git a/src/IconAssistantOnHubSharp.tsx b/src/IconAssistantOnHubSharp.tsx index b2930e295..05e392dfe 100644 --- a/src/IconAssistantOnHubSharp.tsx +++ b/src/IconAssistantOnHubSharp.tsx @@ -8,4 +8,4 @@ const IconAssistantOnHubSharp: React.FC = ({ ...props }) => ( ) -export { IconAssistantOnHubSharp as default } +export default IconAssistantOnHubSharp diff --git a/src/IconAssistantOnHubSharpFilled.tsx b/src/IconAssistantOnHubSharpFilled.tsx index 557c95c92..725e5ac19 100644 --- a/src/IconAssistantOnHubSharpFilled.tsx +++ b/src/IconAssistantOnHubSharpFilled.tsx @@ -8,4 +8,4 @@ const IconAssistantOnHubSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconAssistantOnHubSharpFilled as default } +export default IconAssistantOnHubSharpFilled diff --git a/src/IconAssuredWorkloadOutlined.tsx b/src/IconAssuredWorkloadOutlined.tsx index 676ea8a18..7984c716d 100644 --- a/src/IconAssuredWorkloadOutlined.tsx +++ b/src/IconAssuredWorkloadOutlined.tsx @@ -8,4 +8,4 @@ const IconAssuredWorkloadOutlined: React.FC = ({ ...props }) => ( ) -export { IconAssuredWorkloadOutlined as default } +export default IconAssuredWorkloadOutlined diff --git a/src/IconAssuredWorkloadOutlinedFilled.tsx b/src/IconAssuredWorkloadOutlinedFilled.tsx index 8e5632fad..2ef782fbf 100644 --- a/src/IconAssuredWorkloadOutlinedFilled.tsx +++ b/src/IconAssuredWorkloadOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconAssuredWorkloadOutlinedFilled: React.FC = ({ ) -export { IconAssuredWorkloadOutlinedFilled as default } +export default IconAssuredWorkloadOutlinedFilled diff --git a/src/IconAssuredWorkloadRounded.tsx b/src/IconAssuredWorkloadRounded.tsx index a27f3937e..60bd584c5 100644 --- a/src/IconAssuredWorkloadRounded.tsx +++ b/src/IconAssuredWorkloadRounded.tsx @@ -8,4 +8,4 @@ const IconAssuredWorkloadRounded: React.FC = ({ ...props }) => ( ) -export { IconAssuredWorkloadRounded as default } +export default IconAssuredWorkloadRounded diff --git a/src/IconAssuredWorkloadRoundedFilled.tsx b/src/IconAssuredWorkloadRoundedFilled.tsx index 06be8bdbb..9590ca59a 100644 --- a/src/IconAssuredWorkloadRoundedFilled.tsx +++ b/src/IconAssuredWorkloadRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconAssuredWorkloadRoundedFilled: React.FC = ({ ) -export { IconAssuredWorkloadRoundedFilled as default } +export default IconAssuredWorkloadRoundedFilled diff --git a/src/IconAssuredWorkloadSharp.tsx b/src/IconAssuredWorkloadSharp.tsx index 52880a6fc..bf7ad47c8 100644 --- a/src/IconAssuredWorkloadSharp.tsx +++ b/src/IconAssuredWorkloadSharp.tsx @@ -8,4 +8,4 @@ const IconAssuredWorkloadSharp: React.FC = ({ ...props }) => ( ) -export { IconAssuredWorkloadSharp as default } +export default IconAssuredWorkloadSharp diff --git a/src/IconAssuredWorkloadSharpFilled.tsx b/src/IconAssuredWorkloadSharpFilled.tsx index 3d0b6d414..119c73118 100644 --- a/src/IconAssuredWorkloadSharpFilled.tsx +++ b/src/IconAssuredWorkloadSharpFilled.tsx @@ -8,4 +8,4 @@ const IconAssuredWorkloadSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconAssuredWorkloadSharpFilled as default } +export default IconAssuredWorkloadSharpFilled diff --git a/src/IconAsteriskOutlined.tsx b/src/IconAsteriskOutlined.tsx index 4c5ab633e..edc7c713d 100644 --- a/src/IconAsteriskOutlined.tsx +++ b/src/IconAsteriskOutlined.tsx @@ -8,4 +8,4 @@ const IconAsteriskOutlined: React.FC = ({ ...props }) => ( ) -export { IconAsteriskOutlined as default } +export default IconAsteriskOutlined diff --git a/src/IconAsteriskOutlinedFilled.tsx b/src/IconAsteriskOutlinedFilled.tsx index 6768d4ecc..f59b344fa 100644 --- a/src/IconAsteriskOutlinedFilled.tsx +++ b/src/IconAsteriskOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconAsteriskOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconAsteriskOutlinedFilled as default } +export default IconAsteriskOutlinedFilled diff --git a/src/IconAsteriskRounded.tsx b/src/IconAsteriskRounded.tsx index e8541ef7a..abfeda433 100644 --- a/src/IconAsteriskRounded.tsx +++ b/src/IconAsteriskRounded.tsx @@ -8,4 +8,4 @@ const IconAsteriskRounded: React.FC = ({ ...props }) => ( ) -export { IconAsteriskRounded as default } +export default IconAsteriskRounded diff --git a/src/IconAsteriskRoundedFilled.tsx b/src/IconAsteriskRoundedFilled.tsx index 919af36c3..53e8abc30 100644 --- a/src/IconAsteriskRoundedFilled.tsx +++ b/src/IconAsteriskRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconAsteriskRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconAsteriskRoundedFilled as default } +export default IconAsteriskRoundedFilled diff --git a/src/IconAsteriskSharp.tsx b/src/IconAsteriskSharp.tsx index d560b7ae0..edc2a3ed9 100644 --- a/src/IconAsteriskSharp.tsx +++ b/src/IconAsteriskSharp.tsx @@ -8,4 +8,4 @@ const IconAsteriskSharp: React.FC = ({ ...props }) => ( ) -export { IconAsteriskSharp as default } +export default IconAsteriskSharp diff --git a/src/IconAsteriskSharpFilled.tsx b/src/IconAsteriskSharpFilled.tsx index ce2eb8f1c..fa77988fc 100644 --- a/src/IconAsteriskSharpFilled.tsx +++ b/src/IconAsteriskSharpFilled.tsx @@ -8,4 +8,4 @@ const IconAsteriskSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconAsteriskSharpFilled as default } +export default IconAsteriskSharpFilled diff --git a/src/IconAtmOutlined.tsx b/src/IconAtmOutlined.tsx index 1dfb19c1d..1ae912aac 100644 --- a/src/IconAtmOutlined.tsx +++ b/src/IconAtmOutlined.tsx @@ -8,4 +8,4 @@ const IconAtmOutlined: React.FC = ({ ...props }) => ( ) -export { IconAtmOutlined as default } +export default IconAtmOutlined diff --git a/src/IconAtmOutlinedFilled.tsx b/src/IconAtmOutlinedFilled.tsx index 2ffd96fc5..c9130dcc2 100644 --- a/src/IconAtmOutlinedFilled.tsx +++ b/src/IconAtmOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconAtmOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconAtmOutlinedFilled as default } +export default IconAtmOutlinedFilled diff --git a/src/IconAtmRounded.tsx b/src/IconAtmRounded.tsx index a811e1f14..9445f9012 100644 --- a/src/IconAtmRounded.tsx +++ b/src/IconAtmRounded.tsx @@ -8,4 +8,4 @@ const IconAtmRounded: React.FC = ({ ...props }) => ( ) -export { IconAtmRounded as default } +export default IconAtmRounded diff --git a/src/IconAtmRoundedFilled.tsx b/src/IconAtmRoundedFilled.tsx index 5f6fdee9b..23d9b7669 100644 --- a/src/IconAtmRoundedFilled.tsx +++ b/src/IconAtmRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconAtmRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconAtmRoundedFilled as default } +export default IconAtmRoundedFilled diff --git a/src/IconAtmSharp.tsx b/src/IconAtmSharp.tsx index 8b2293828..d6b762e51 100644 --- a/src/IconAtmSharp.tsx +++ b/src/IconAtmSharp.tsx @@ -8,4 +8,4 @@ const IconAtmSharp: React.FC = ({ ...props }) => ( ) -export { IconAtmSharp as default } +export default IconAtmSharp diff --git a/src/IconAtmSharpFilled.tsx b/src/IconAtmSharpFilled.tsx index 42e99b2eb..5bb65e998 100644 --- a/src/IconAtmSharpFilled.tsx +++ b/src/IconAtmSharpFilled.tsx @@ -8,4 +8,4 @@ const IconAtmSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconAtmSharpFilled as default } +export default IconAtmSharpFilled diff --git a/src/IconAtrOutlined.tsx b/src/IconAtrOutlined.tsx index 3924ee42e..94e5afc42 100644 --- a/src/IconAtrOutlined.tsx +++ b/src/IconAtrOutlined.tsx @@ -8,4 +8,4 @@ const IconAtrOutlined: React.FC = ({ ...props }) => ( ) -export { IconAtrOutlined as default } +export default IconAtrOutlined diff --git a/src/IconAtrOutlinedFilled.tsx b/src/IconAtrOutlinedFilled.tsx index 63bfb5fe4..5f730f229 100644 --- a/src/IconAtrOutlinedFilled.tsx +++ b/src/IconAtrOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconAtrOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconAtrOutlinedFilled as default } +export default IconAtrOutlinedFilled diff --git a/src/IconAtrRounded.tsx b/src/IconAtrRounded.tsx index fbdd285e8..77d51a026 100644 --- a/src/IconAtrRounded.tsx +++ b/src/IconAtrRounded.tsx @@ -8,4 +8,4 @@ const IconAtrRounded: React.FC = ({ ...props }) => ( ) -export { IconAtrRounded as default } +export default IconAtrRounded diff --git a/src/IconAtrRoundedFilled.tsx b/src/IconAtrRoundedFilled.tsx index 1a28c3615..ea45cd508 100644 --- a/src/IconAtrRoundedFilled.tsx +++ b/src/IconAtrRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconAtrRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconAtrRoundedFilled as default } +export default IconAtrRoundedFilled diff --git a/src/IconAtrSharp.tsx b/src/IconAtrSharp.tsx index a588ee2f9..cf6f2ff26 100644 --- a/src/IconAtrSharp.tsx +++ b/src/IconAtrSharp.tsx @@ -8,4 +8,4 @@ const IconAtrSharp: React.FC = ({ ...props }) => ( ) -export { IconAtrSharp as default } +export default IconAtrSharp diff --git a/src/IconAtrSharpFilled.tsx b/src/IconAtrSharpFilled.tsx index 46fba9e92..a0575efde 100644 --- a/src/IconAtrSharpFilled.tsx +++ b/src/IconAtrSharpFilled.tsx @@ -8,4 +8,4 @@ const IconAtrSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconAtrSharpFilled as default } +export default IconAtrSharpFilled diff --git a/src/IconAttachEmailOutlined.tsx b/src/IconAttachEmailOutlined.tsx index 1f6fb83e3..e4864ff84 100644 --- a/src/IconAttachEmailOutlined.tsx +++ b/src/IconAttachEmailOutlined.tsx @@ -8,4 +8,4 @@ const IconAttachEmailOutlined: React.FC = ({ ...props }) => ( ) -export { IconAttachEmailOutlined as default } +export default IconAttachEmailOutlined diff --git a/src/IconAttachEmailOutlinedFilled.tsx b/src/IconAttachEmailOutlinedFilled.tsx index 44ca80e1e..94a9482c4 100644 --- a/src/IconAttachEmailOutlinedFilled.tsx +++ b/src/IconAttachEmailOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconAttachEmailOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconAttachEmailOutlinedFilled as default } +export default IconAttachEmailOutlinedFilled diff --git a/src/IconAttachEmailRounded.tsx b/src/IconAttachEmailRounded.tsx index 0db4b5c2a..e61bd1f24 100644 --- a/src/IconAttachEmailRounded.tsx +++ b/src/IconAttachEmailRounded.tsx @@ -8,4 +8,4 @@ const IconAttachEmailRounded: React.FC = ({ ...props }) => ( ) -export { IconAttachEmailRounded as default } +export default IconAttachEmailRounded diff --git a/src/IconAttachEmailRoundedFilled.tsx b/src/IconAttachEmailRoundedFilled.tsx index 0468409a9..2b7d0f191 100644 --- a/src/IconAttachEmailRoundedFilled.tsx +++ b/src/IconAttachEmailRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconAttachEmailRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconAttachEmailRoundedFilled as default } +export default IconAttachEmailRoundedFilled diff --git a/src/IconAttachEmailSharp.tsx b/src/IconAttachEmailSharp.tsx index 2de2554dc..58c415f89 100644 --- a/src/IconAttachEmailSharp.tsx +++ b/src/IconAttachEmailSharp.tsx @@ -8,4 +8,4 @@ const IconAttachEmailSharp: React.FC = ({ ...props }) => ( ) -export { IconAttachEmailSharp as default } +export default IconAttachEmailSharp diff --git a/src/IconAttachEmailSharpFilled.tsx b/src/IconAttachEmailSharpFilled.tsx index e80f40b9d..520157253 100644 --- a/src/IconAttachEmailSharpFilled.tsx +++ b/src/IconAttachEmailSharpFilled.tsx @@ -8,4 +8,4 @@ const IconAttachEmailSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconAttachEmailSharpFilled as default } +export default IconAttachEmailSharpFilled diff --git a/src/IconAttachFileAddOutlined.tsx b/src/IconAttachFileAddOutlined.tsx index 5a3e934d8..dde22ce4e 100644 --- a/src/IconAttachFileAddOutlined.tsx +++ b/src/IconAttachFileAddOutlined.tsx @@ -8,4 +8,4 @@ const IconAttachFileAddOutlined: React.FC = ({ ...props }) => ( ) -export { IconAttachFileAddOutlined as default } +export default IconAttachFileAddOutlined diff --git a/src/IconAttachFileAddOutlinedFilled.tsx b/src/IconAttachFileAddOutlinedFilled.tsx index 9cafbae6b..4af512fc5 100644 --- a/src/IconAttachFileAddOutlinedFilled.tsx +++ b/src/IconAttachFileAddOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconAttachFileAddOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconAttachFileAddOutlinedFilled as default } +export default IconAttachFileAddOutlinedFilled diff --git a/src/IconAttachFileAddRounded.tsx b/src/IconAttachFileAddRounded.tsx index 9863d52df..e9066d968 100644 --- a/src/IconAttachFileAddRounded.tsx +++ b/src/IconAttachFileAddRounded.tsx @@ -8,4 +8,4 @@ const IconAttachFileAddRounded: React.FC = ({ ...props }) => ( ) -export { IconAttachFileAddRounded as default } +export default IconAttachFileAddRounded diff --git a/src/IconAttachFileAddRoundedFilled.tsx b/src/IconAttachFileAddRoundedFilled.tsx index 8d4757196..5abc7ad5b 100644 --- a/src/IconAttachFileAddRoundedFilled.tsx +++ b/src/IconAttachFileAddRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconAttachFileAddRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconAttachFileAddRoundedFilled as default } +export default IconAttachFileAddRoundedFilled diff --git a/src/IconAttachFileAddSharp.tsx b/src/IconAttachFileAddSharp.tsx index b1e6856c4..ea12dc000 100644 --- a/src/IconAttachFileAddSharp.tsx +++ b/src/IconAttachFileAddSharp.tsx @@ -8,4 +8,4 @@ const IconAttachFileAddSharp: React.FC = ({ ...props }) => ( ) -export { IconAttachFileAddSharp as default } +export default IconAttachFileAddSharp diff --git a/src/IconAttachFileAddSharpFilled.tsx b/src/IconAttachFileAddSharpFilled.tsx index 1a8e5fd70..d40186098 100644 --- a/src/IconAttachFileAddSharpFilled.tsx +++ b/src/IconAttachFileAddSharpFilled.tsx @@ -8,4 +8,4 @@ const IconAttachFileAddSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconAttachFileAddSharpFilled as default } +export default IconAttachFileAddSharpFilled diff --git a/src/IconAttachFileOffOutlined.tsx b/src/IconAttachFileOffOutlined.tsx index f900663fe..ddf40251e 100644 --- a/src/IconAttachFileOffOutlined.tsx +++ b/src/IconAttachFileOffOutlined.tsx @@ -8,4 +8,4 @@ const IconAttachFileOffOutlined: React.FC = ({ ...props }) => ( ) -export { IconAttachFileOffOutlined as default } +export default IconAttachFileOffOutlined diff --git a/src/IconAttachFileOffOutlinedFilled.tsx b/src/IconAttachFileOffOutlinedFilled.tsx index b4da7cfd0..2fcdc9927 100644 --- a/src/IconAttachFileOffOutlinedFilled.tsx +++ b/src/IconAttachFileOffOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconAttachFileOffOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconAttachFileOffOutlinedFilled as default } +export default IconAttachFileOffOutlinedFilled diff --git a/src/IconAttachFileOffRounded.tsx b/src/IconAttachFileOffRounded.tsx index 2cd7544f7..972acb4aa 100644 --- a/src/IconAttachFileOffRounded.tsx +++ b/src/IconAttachFileOffRounded.tsx @@ -8,4 +8,4 @@ const IconAttachFileOffRounded: React.FC = ({ ...props }) => ( ) -export { IconAttachFileOffRounded as default } +export default IconAttachFileOffRounded diff --git a/src/IconAttachFileOffRoundedFilled.tsx b/src/IconAttachFileOffRoundedFilled.tsx index 36037aade..934647f58 100644 --- a/src/IconAttachFileOffRoundedFilled.tsx +++ b/src/IconAttachFileOffRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconAttachFileOffRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconAttachFileOffRoundedFilled as default } +export default IconAttachFileOffRoundedFilled diff --git a/src/IconAttachFileOffSharp.tsx b/src/IconAttachFileOffSharp.tsx index 3d92e647a..b446f8545 100644 --- a/src/IconAttachFileOffSharp.tsx +++ b/src/IconAttachFileOffSharp.tsx @@ -8,4 +8,4 @@ const IconAttachFileOffSharp: React.FC = ({ ...props }) => ( ) -export { IconAttachFileOffSharp as default } +export default IconAttachFileOffSharp diff --git a/src/IconAttachFileOffSharpFilled.tsx b/src/IconAttachFileOffSharpFilled.tsx index ae5dafc61..855865bc4 100644 --- a/src/IconAttachFileOffSharpFilled.tsx +++ b/src/IconAttachFileOffSharpFilled.tsx @@ -8,4 +8,4 @@ const IconAttachFileOffSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconAttachFileOffSharpFilled as default } +export default IconAttachFileOffSharpFilled diff --git a/src/IconAttachFileOutlined.tsx b/src/IconAttachFileOutlined.tsx index f36cdcccf..8d04c60de 100644 --- a/src/IconAttachFileOutlined.tsx +++ b/src/IconAttachFileOutlined.tsx @@ -8,4 +8,4 @@ const IconAttachFileOutlined: React.FC = ({ ...props }) => ( ) -export { IconAttachFileOutlined as default } +export default IconAttachFileOutlined diff --git a/src/IconAttachFileOutlinedFilled.tsx b/src/IconAttachFileOutlinedFilled.tsx index 59612c135..027ae5e5d 100644 --- a/src/IconAttachFileOutlinedFilled.tsx +++ b/src/IconAttachFileOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconAttachFileOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconAttachFileOutlinedFilled as default } +export default IconAttachFileOutlinedFilled diff --git a/src/IconAttachFileRounded.tsx b/src/IconAttachFileRounded.tsx index df15f1fb4..452b5edb8 100644 --- a/src/IconAttachFileRounded.tsx +++ b/src/IconAttachFileRounded.tsx @@ -8,4 +8,4 @@ const IconAttachFileRounded: React.FC = ({ ...props }) => ( ) -export { IconAttachFileRounded as default } +export default IconAttachFileRounded diff --git a/src/IconAttachFileRoundedFilled.tsx b/src/IconAttachFileRoundedFilled.tsx index 6a43767be..28c99261b 100644 --- a/src/IconAttachFileRoundedFilled.tsx +++ b/src/IconAttachFileRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconAttachFileRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconAttachFileRoundedFilled as default } +export default IconAttachFileRoundedFilled diff --git a/src/IconAttachFileSharp.tsx b/src/IconAttachFileSharp.tsx index 05784bc39..7ab926617 100644 --- a/src/IconAttachFileSharp.tsx +++ b/src/IconAttachFileSharp.tsx @@ -8,4 +8,4 @@ const IconAttachFileSharp: React.FC = ({ ...props }) => ( ) -export { IconAttachFileSharp as default } +export default IconAttachFileSharp diff --git a/src/IconAttachFileSharpFilled.tsx b/src/IconAttachFileSharpFilled.tsx index 8a06f738c..908c79b9c 100644 --- a/src/IconAttachFileSharpFilled.tsx +++ b/src/IconAttachFileSharpFilled.tsx @@ -8,4 +8,4 @@ const IconAttachFileSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconAttachFileSharpFilled as default } +export default IconAttachFileSharpFilled diff --git a/src/IconAttachMoneyOutlined.tsx b/src/IconAttachMoneyOutlined.tsx index c74a1e661..0af51ac8b 100644 --- a/src/IconAttachMoneyOutlined.tsx +++ b/src/IconAttachMoneyOutlined.tsx @@ -8,4 +8,4 @@ const IconAttachMoneyOutlined: React.FC = ({ ...props }) => ( ) -export { IconAttachMoneyOutlined as default } +export default IconAttachMoneyOutlined diff --git a/src/IconAttachMoneyOutlinedFilled.tsx b/src/IconAttachMoneyOutlinedFilled.tsx index e32c1962c..b6725737e 100644 --- a/src/IconAttachMoneyOutlinedFilled.tsx +++ b/src/IconAttachMoneyOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconAttachMoneyOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconAttachMoneyOutlinedFilled as default } +export default IconAttachMoneyOutlinedFilled diff --git a/src/IconAttachMoneyRounded.tsx b/src/IconAttachMoneyRounded.tsx index 67a06fd53..0c69d2f89 100644 --- a/src/IconAttachMoneyRounded.tsx +++ b/src/IconAttachMoneyRounded.tsx @@ -8,4 +8,4 @@ const IconAttachMoneyRounded: React.FC = ({ ...props }) => ( ) -export { IconAttachMoneyRounded as default } +export default IconAttachMoneyRounded diff --git a/src/IconAttachMoneyRoundedFilled.tsx b/src/IconAttachMoneyRoundedFilled.tsx index d5ac9e90e..cb00dd4a7 100644 --- a/src/IconAttachMoneyRoundedFilled.tsx +++ b/src/IconAttachMoneyRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconAttachMoneyRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconAttachMoneyRoundedFilled as default } +export default IconAttachMoneyRoundedFilled diff --git a/src/IconAttachMoneySharp.tsx b/src/IconAttachMoneySharp.tsx index 226dd7460..8da04f989 100644 --- a/src/IconAttachMoneySharp.tsx +++ b/src/IconAttachMoneySharp.tsx @@ -8,4 +8,4 @@ const IconAttachMoneySharp: React.FC = ({ ...props }) => ( ) -export { IconAttachMoneySharp as default } +export default IconAttachMoneySharp diff --git a/src/IconAttachMoneySharpFilled.tsx b/src/IconAttachMoneySharpFilled.tsx index d64b40805..fb8b730a1 100644 --- a/src/IconAttachMoneySharpFilled.tsx +++ b/src/IconAttachMoneySharpFilled.tsx @@ -8,4 +8,4 @@ const IconAttachMoneySharpFilled: React.FC = ({ ...props }) => ( ) -export { IconAttachMoneySharpFilled as default } +export default IconAttachMoneySharpFilled diff --git a/src/IconAttachmentOutlined.tsx b/src/IconAttachmentOutlined.tsx index 346a6cf69..55669c421 100644 --- a/src/IconAttachmentOutlined.tsx +++ b/src/IconAttachmentOutlined.tsx @@ -8,4 +8,4 @@ const IconAttachmentOutlined: React.FC = ({ ...props }) => ( ) -export { IconAttachmentOutlined as default } +export default IconAttachmentOutlined diff --git a/src/IconAttachmentOutlinedFilled.tsx b/src/IconAttachmentOutlinedFilled.tsx index bb7c37fb1..95ecb38ab 100644 --- a/src/IconAttachmentOutlinedFilled.tsx +++ b/src/IconAttachmentOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconAttachmentOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconAttachmentOutlinedFilled as default } +export default IconAttachmentOutlinedFilled diff --git a/src/IconAttachmentRounded.tsx b/src/IconAttachmentRounded.tsx index d6264a6c4..b2f6e4515 100644 --- a/src/IconAttachmentRounded.tsx +++ b/src/IconAttachmentRounded.tsx @@ -8,4 +8,4 @@ const IconAttachmentRounded: React.FC = ({ ...props }) => ( ) -export { IconAttachmentRounded as default } +export default IconAttachmentRounded diff --git a/src/IconAttachmentRoundedFilled.tsx b/src/IconAttachmentRoundedFilled.tsx index ca3fbf44a..836a17315 100644 --- a/src/IconAttachmentRoundedFilled.tsx +++ b/src/IconAttachmentRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconAttachmentRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconAttachmentRoundedFilled as default } +export default IconAttachmentRoundedFilled diff --git a/src/IconAttachmentSharp.tsx b/src/IconAttachmentSharp.tsx index e87fd87c2..269d80834 100644 --- a/src/IconAttachmentSharp.tsx +++ b/src/IconAttachmentSharp.tsx @@ -8,4 +8,4 @@ const IconAttachmentSharp: React.FC = ({ ...props }) => ( ) -export { IconAttachmentSharp as default } +export default IconAttachmentSharp diff --git a/src/IconAttachmentSharpFilled.tsx b/src/IconAttachmentSharpFilled.tsx index edf31bfb7..02ced86a7 100644 --- a/src/IconAttachmentSharpFilled.tsx +++ b/src/IconAttachmentSharpFilled.tsx @@ -8,4 +8,4 @@ const IconAttachmentSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconAttachmentSharpFilled as default } +export default IconAttachmentSharpFilled diff --git a/src/IconAttractionsOutlined.tsx b/src/IconAttractionsOutlined.tsx index f0830f5fe..aa982f973 100644 --- a/src/IconAttractionsOutlined.tsx +++ b/src/IconAttractionsOutlined.tsx @@ -8,4 +8,4 @@ const IconAttractionsOutlined: React.FC = ({ ...props }) => ( ) -export { IconAttractionsOutlined as default } +export default IconAttractionsOutlined diff --git a/src/IconAttractionsOutlinedFilled.tsx b/src/IconAttractionsOutlinedFilled.tsx index d162ffec8..184fff531 100644 --- a/src/IconAttractionsOutlinedFilled.tsx +++ b/src/IconAttractionsOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconAttractionsOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconAttractionsOutlinedFilled as default } +export default IconAttractionsOutlinedFilled diff --git a/src/IconAttractionsRounded.tsx b/src/IconAttractionsRounded.tsx index 2ae6a0aa0..7426e214a 100644 --- a/src/IconAttractionsRounded.tsx +++ b/src/IconAttractionsRounded.tsx @@ -8,4 +8,4 @@ const IconAttractionsRounded: React.FC = ({ ...props }) => ( ) -export { IconAttractionsRounded as default } +export default IconAttractionsRounded diff --git a/src/IconAttractionsRoundedFilled.tsx b/src/IconAttractionsRoundedFilled.tsx index 22e551ac0..de1058ec4 100644 --- a/src/IconAttractionsRoundedFilled.tsx +++ b/src/IconAttractionsRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconAttractionsRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconAttractionsRoundedFilled as default } +export default IconAttractionsRoundedFilled diff --git a/src/IconAttractionsSharp.tsx b/src/IconAttractionsSharp.tsx index f1cb6627d..5ada439de 100644 --- a/src/IconAttractionsSharp.tsx +++ b/src/IconAttractionsSharp.tsx @@ -8,4 +8,4 @@ const IconAttractionsSharp: React.FC = ({ ...props }) => ( ) -export { IconAttractionsSharp as default } +export default IconAttractionsSharp diff --git a/src/IconAttractionsSharpFilled.tsx b/src/IconAttractionsSharpFilled.tsx index 145debe5d..c0c7fc340 100644 --- a/src/IconAttractionsSharpFilled.tsx +++ b/src/IconAttractionsSharpFilled.tsx @@ -8,4 +8,4 @@ const IconAttractionsSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconAttractionsSharpFilled as default } +export default IconAttractionsSharpFilled diff --git a/src/IconAttributionOutlined.tsx b/src/IconAttributionOutlined.tsx index af333a704..99debf7f4 100644 --- a/src/IconAttributionOutlined.tsx +++ b/src/IconAttributionOutlined.tsx @@ -8,4 +8,4 @@ const IconAttributionOutlined: React.FC = ({ ...props }) => ( ) -export { IconAttributionOutlined as default } +export default IconAttributionOutlined diff --git a/src/IconAttributionOutlinedFilled.tsx b/src/IconAttributionOutlinedFilled.tsx index 11ee3aac1..b2a18ac17 100644 --- a/src/IconAttributionOutlinedFilled.tsx +++ b/src/IconAttributionOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconAttributionOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconAttributionOutlinedFilled as default } +export default IconAttributionOutlinedFilled diff --git a/src/IconAttributionRounded.tsx b/src/IconAttributionRounded.tsx index fe10669ef..7f40e9f43 100644 --- a/src/IconAttributionRounded.tsx +++ b/src/IconAttributionRounded.tsx @@ -8,4 +8,4 @@ const IconAttributionRounded: React.FC = ({ ...props }) => ( ) -export { IconAttributionRounded as default } +export default IconAttributionRounded diff --git a/src/IconAttributionRoundedFilled.tsx b/src/IconAttributionRoundedFilled.tsx index 9bb871224..f797109c9 100644 --- a/src/IconAttributionRoundedFilled.tsx +++ b/src/IconAttributionRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconAttributionRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconAttributionRoundedFilled as default } +export default IconAttributionRoundedFilled diff --git a/src/IconAttributionSharp.tsx b/src/IconAttributionSharp.tsx index e22e14bfc..61f15a151 100644 --- a/src/IconAttributionSharp.tsx +++ b/src/IconAttributionSharp.tsx @@ -8,4 +8,4 @@ const IconAttributionSharp: React.FC = ({ ...props }) => ( ) -export { IconAttributionSharp as default } +export default IconAttributionSharp diff --git a/src/IconAttributionSharpFilled.tsx b/src/IconAttributionSharpFilled.tsx index 52105d541..fdf22b535 100644 --- a/src/IconAttributionSharpFilled.tsx +++ b/src/IconAttributionSharpFilled.tsx @@ -8,4 +8,4 @@ const IconAttributionSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconAttributionSharpFilled as default } +export default IconAttributionSharpFilled diff --git a/src/IconAudioDescriptionOutlined.tsx b/src/IconAudioDescriptionOutlined.tsx index 3121db936..d962a281a 100644 --- a/src/IconAudioDescriptionOutlined.tsx +++ b/src/IconAudioDescriptionOutlined.tsx @@ -8,4 +8,4 @@ const IconAudioDescriptionOutlined: React.FC = ({ ...props }) => ( ) -export { IconAudioDescriptionOutlined as default } +export default IconAudioDescriptionOutlined diff --git a/src/IconAudioDescriptionOutlinedFilled.tsx b/src/IconAudioDescriptionOutlinedFilled.tsx index 0c6fb2217..ced3e72a8 100644 --- a/src/IconAudioDescriptionOutlinedFilled.tsx +++ b/src/IconAudioDescriptionOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconAudioDescriptionOutlinedFilled: React.FC = ({ ) -export { IconAudioDescriptionOutlinedFilled as default } +export default IconAudioDescriptionOutlinedFilled diff --git a/src/IconAudioDescriptionRounded.tsx b/src/IconAudioDescriptionRounded.tsx index aefb9eb7d..3b0a13e07 100644 --- a/src/IconAudioDescriptionRounded.tsx +++ b/src/IconAudioDescriptionRounded.tsx @@ -8,4 +8,4 @@ const IconAudioDescriptionRounded: React.FC = ({ ...props }) => ( ) -export { IconAudioDescriptionRounded as default } +export default IconAudioDescriptionRounded diff --git a/src/IconAudioDescriptionRoundedFilled.tsx b/src/IconAudioDescriptionRoundedFilled.tsx index e376ff801..7ec7ef47b 100644 --- a/src/IconAudioDescriptionRoundedFilled.tsx +++ b/src/IconAudioDescriptionRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconAudioDescriptionRoundedFilled: React.FC = ({ ) -export { IconAudioDescriptionRoundedFilled as default } +export default IconAudioDescriptionRoundedFilled diff --git a/src/IconAudioDescriptionSharp.tsx b/src/IconAudioDescriptionSharp.tsx index b96fcf846..953c9c9f2 100644 --- a/src/IconAudioDescriptionSharp.tsx +++ b/src/IconAudioDescriptionSharp.tsx @@ -8,4 +8,4 @@ const IconAudioDescriptionSharp: React.FC = ({ ...props }) => ( ) -export { IconAudioDescriptionSharp as default } +export default IconAudioDescriptionSharp diff --git a/src/IconAudioDescriptionSharpFilled.tsx b/src/IconAudioDescriptionSharpFilled.tsx index 113fdc4bf..80f9b5fba 100644 --- a/src/IconAudioDescriptionSharpFilled.tsx +++ b/src/IconAudioDescriptionSharpFilled.tsx @@ -8,4 +8,4 @@ const IconAudioDescriptionSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconAudioDescriptionSharpFilled as default } +export default IconAudioDescriptionSharpFilled diff --git a/src/IconAudioFileOutlined.tsx b/src/IconAudioFileOutlined.tsx index fced98b1f..32fe5de9e 100644 --- a/src/IconAudioFileOutlined.tsx +++ b/src/IconAudioFileOutlined.tsx @@ -8,4 +8,4 @@ const IconAudioFileOutlined: React.FC = ({ ...props }) => ( ) -export { IconAudioFileOutlined as default } +export default IconAudioFileOutlined diff --git a/src/IconAudioFileOutlinedFilled.tsx b/src/IconAudioFileOutlinedFilled.tsx index e4fb31250..370397585 100644 --- a/src/IconAudioFileOutlinedFilled.tsx +++ b/src/IconAudioFileOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconAudioFileOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconAudioFileOutlinedFilled as default } +export default IconAudioFileOutlinedFilled diff --git a/src/IconAudioFileRounded.tsx b/src/IconAudioFileRounded.tsx index 5a8a83659..0c08da844 100644 --- a/src/IconAudioFileRounded.tsx +++ b/src/IconAudioFileRounded.tsx @@ -8,4 +8,4 @@ const IconAudioFileRounded: React.FC = ({ ...props }) => ( ) -export { IconAudioFileRounded as default } +export default IconAudioFileRounded diff --git a/src/IconAudioFileRoundedFilled.tsx b/src/IconAudioFileRoundedFilled.tsx index 592919d6c..f70f43856 100644 --- a/src/IconAudioFileRoundedFilled.tsx +++ b/src/IconAudioFileRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconAudioFileRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconAudioFileRoundedFilled as default } +export default IconAudioFileRoundedFilled diff --git a/src/IconAudioFileSharp.tsx b/src/IconAudioFileSharp.tsx index bfe402b9e..c94fe9ce3 100644 --- a/src/IconAudioFileSharp.tsx +++ b/src/IconAudioFileSharp.tsx @@ -8,4 +8,4 @@ const IconAudioFileSharp: React.FC = ({ ...props }) => ( ) -export { IconAudioFileSharp as default } +export default IconAudioFileSharp diff --git a/src/IconAudioFileSharpFilled.tsx b/src/IconAudioFileSharpFilled.tsx index 8854e3da2..db367545d 100644 --- a/src/IconAudioFileSharpFilled.tsx +++ b/src/IconAudioFileSharpFilled.tsx @@ -8,4 +8,4 @@ const IconAudioFileSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconAudioFileSharpFilled as default } +export default IconAudioFileSharpFilled diff --git a/src/IconAudioVideoReceiverOutlined.tsx b/src/IconAudioVideoReceiverOutlined.tsx index 4c66f7e4b..cf4e50c02 100644 --- a/src/IconAudioVideoReceiverOutlined.tsx +++ b/src/IconAudioVideoReceiverOutlined.tsx @@ -8,4 +8,4 @@ const IconAudioVideoReceiverOutlined: React.FC = ({ ...props }) => ( ) -export { IconAudioVideoReceiverOutlined as default } +export default IconAudioVideoReceiverOutlined diff --git a/src/IconAudioVideoReceiverOutlinedFilled.tsx b/src/IconAudioVideoReceiverOutlinedFilled.tsx index a729220d6..f7d88d5b1 100644 --- a/src/IconAudioVideoReceiverOutlinedFilled.tsx +++ b/src/IconAudioVideoReceiverOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconAudioVideoReceiverOutlinedFilled: React.FC = ({ ) -export { IconAudioVideoReceiverOutlinedFilled as default } +export default IconAudioVideoReceiverOutlinedFilled diff --git a/src/IconAudioVideoReceiverRounded.tsx b/src/IconAudioVideoReceiverRounded.tsx index c5c365dcf..13429f262 100644 --- a/src/IconAudioVideoReceiverRounded.tsx +++ b/src/IconAudioVideoReceiverRounded.tsx @@ -8,4 +8,4 @@ const IconAudioVideoReceiverRounded: React.FC = ({ ...props }) => ( ) -export { IconAudioVideoReceiverRounded as default } +export default IconAudioVideoReceiverRounded diff --git a/src/IconAudioVideoReceiverRoundedFilled.tsx b/src/IconAudioVideoReceiverRoundedFilled.tsx index 9235b4dc6..a5eb35021 100644 --- a/src/IconAudioVideoReceiverRoundedFilled.tsx +++ b/src/IconAudioVideoReceiverRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconAudioVideoReceiverRoundedFilled: React.FC = ({ ) -export { IconAudioVideoReceiverRoundedFilled as default } +export default IconAudioVideoReceiverRoundedFilled diff --git a/src/IconAudioVideoReceiverSharp.tsx b/src/IconAudioVideoReceiverSharp.tsx index d4c2603b1..7de0b00a0 100644 --- a/src/IconAudioVideoReceiverSharp.tsx +++ b/src/IconAudioVideoReceiverSharp.tsx @@ -8,4 +8,4 @@ const IconAudioVideoReceiverSharp: React.FC = ({ ...props }) => ( ) -export { IconAudioVideoReceiverSharp as default } +export default IconAudioVideoReceiverSharp diff --git a/src/IconAudioVideoReceiverSharpFilled.tsx b/src/IconAudioVideoReceiverSharpFilled.tsx index 0e869eb4f..cdd5236b4 100644 --- a/src/IconAudioVideoReceiverSharpFilled.tsx +++ b/src/IconAudioVideoReceiverSharpFilled.tsx @@ -10,4 +10,4 @@ const IconAudioVideoReceiverSharpFilled: React.FC = ({ ) -export { IconAudioVideoReceiverSharpFilled as default } +export default IconAudioVideoReceiverSharpFilled diff --git a/src/IconAutoAwesomeMosaicOutlined.tsx b/src/IconAutoAwesomeMosaicOutlined.tsx index 4c3d2f1e2..dcc6f9068 100644 --- a/src/IconAutoAwesomeMosaicOutlined.tsx +++ b/src/IconAutoAwesomeMosaicOutlined.tsx @@ -8,4 +8,4 @@ const IconAutoAwesomeMosaicOutlined: React.FC = ({ ...props }) => ( ) -export { IconAutoAwesomeMosaicOutlined as default } +export default IconAutoAwesomeMosaicOutlined diff --git a/src/IconAutoAwesomeMosaicOutlinedFilled.tsx b/src/IconAutoAwesomeMosaicOutlinedFilled.tsx index f2b21e07e..4e2006528 100644 --- a/src/IconAutoAwesomeMosaicOutlinedFilled.tsx +++ b/src/IconAutoAwesomeMosaicOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconAutoAwesomeMosaicOutlinedFilled: React.FC = ({ ) -export { IconAutoAwesomeMosaicOutlinedFilled as default } +export default IconAutoAwesomeMosaicOutlinedFilled diff --git a/src/IconAutoAwesomeMosaicRounded.tsx b/src/IconAutoAwesomeMosaicRounded.tsx index c3b94db60..bd73fe25d 100644 --- a/src/IconAutoAwesomeMosaicRounded.tsx +++ b/src/IconAutoAwesomeMosaicRounded.tsx @@ -8,4 +8,4 @@ const IconAutoAwesomeMosaicRounded: React.FC = ({ ...props }) => ( ) -export { IconAutoAwesomeMosaicRounded as default } +export default IconAutoAwesomeMosaicRounded diff --git a/src/IconAutoAwesomeMosaicRoundedFilled.tsx b/src/IconAutoAwesomeMosaicRoundedFilled.tsx index 867cda131..321694213 100644 --- a/src/IconAutoAwesomeMosaicRoundedFilled.tsx +++ b/src/IconAutoAwesomeMosaicRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconAutoAwesomeMosaicRoundedFilled: React.FC = ({ ) -export { IconAutoAwesomeMosaicRoundedFilled as default } +export default IconAutoAwesomeMosaicRoundedFilled diff --git a/src/IconAutoAwesomeMosaicSharp.tsx b/src/IconAutoAwesomeMosaicSharp.tsx index 7a2e64fda..24dddaf8e 100644 --- a/src/IconAutoAwesomeMosaicSharp.tsx +++ b/src/IconAutoAwesomeMosaicSharp.tsx @@ -8,4 +8,4 @@ const IconAutoAwesomeMosaicSharp: React.FC = ({ ...props }) => ( ) -export { IconAutoAwesomeMosaicSharp as default } +export default IconAutoAwesomeMosaicSharp diff --git a/src/IconAutoAwesomeMosaicSharpFilled.tsx b/src/IconAutoAwesomeMosaicSharpFilled.tsx index 4a4bfc475..0b9a76be8 100644 --- a/src/IconAutoAwesomeMosaicSharpFilled.tsx +++ b/src/IconAutoAwesomeMosaicSharpFilled.tsx @@ -10,4 +10,4 @@ const IconAutoAwesomeMosaicSharpFilled: React.FC = ({ ) -export { IconAutoAwesomeMosaicSharpFilled as default } +export default IconAutoAwesomeMosaicSharpFilled diff --git a/src/IconAutoAwesomeMotionOutlined.tsx b/src/IconAutoAwesomeMotionOutlined.tsx index 0503a4af2..8d0b2e17f 100644 --- a/src/IconAutoAwesomeMotionOutlined.tsx +++ b/src/IconAutoAwesomeMotionOutlined.tsx @@ -8,4 +8,4 @@ const IconAutoAwesomeMotionOutlined: React.FC = ({ ...props }) => ( ) -export { IconAutoAwesomeMotionOutlined as default } +export default IconAutoAwesomeMotionOutlined diff --git a/src/IconAutoAwesomeMotionOutlinedFilled.tsx b/src/IconAutoAwesomeMotionOutlinedFilled.tsx index a74424b85..68f87bde9 100644 --- a/src/IconAutoAwesomeMotionOutlinedFilled.tsx +++ b/src/IconAutoAwesomeMotionOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconAutoAwesomeMotionOutlinedFilled: React.FC = ({ ) -export { IconAutoAwesomeMotionOutlinedFilled as default } +export default IconAutoAwesomeMotionOutlinedFilled diff --git a/src/IconAutoAwesomeMotionRounded.tsx b/src/IconAutoAwesomeMotionRounded.tsx index f4e015bd8..49aac3661 100644 --- a/src/IconAutoAwesomeMotionRounded.tsx +++ b/src/IconAutoAwesomeMotionRounded.tsx @@ -8,4 +8,4 @@ const IconAutoAwesomeMotionRounded: React.FC = ({ ...props }) => ( ) -export { IconAutoAwesomeMotionRounded as default } +export default IconAutoAwesomeMotionRounded diff --git a/src/IconAutoAwesomeMotionRoundedFilled.tsx b/src/IconAutoAwesomeMotionRoundedFilled.tsx index 86972787b..0c008a02b 100644 --- a/src/IconAutoAwesomeMotionRoundedFilled.tsx +++ b/src/IconAutoAwesomeMotionRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconAutoAwesomeMotionRoundedFilled: React.FC = ({ ) -export { IconAutoAwesomeMotionRoundedFilled as default } +export default IconAutoAwesomeMotionRoundedFilled diff --git a/src/IconAutoAwesomeMotionSharp.tsx b/src/IconAutoAwesomeMotionSharp.tsx index 9c09fd957..e79e858c3 100644 --- a/src/IconAutoAwesomeMotionSharp.tsx +++ b/src/IconAutoAwesomeMotionSharp.tsx @@ -8,4 +8,4 @@ const IconAutoAwesomeMotionSharp: React.FC = ({ ...props }) => ( ) -export { IconAutoAwesomeMotionSharp as default } +export default IconAutoAwesomeMotionSharp diff --git a/src/IconAutoAwesomeMotionSharpFilled.tsx b/src/IconAutoAwesomeMotionSharpFilled.tsx index c88c3c8e7..6d6ca0b11 100644 --- a/src/IconAutoAwesomeMotionSharpFilled.tsx +++ b/src/IconAutoAwesomeMotionSharpFilled.tsx @@ -10,4 +10,4 @@ const IconAutoAwesomeMotionSharpFilled: React.FC = ({ ) -export { IconAutoAwesomeMotionSharpFilled as default } +export default IconAutoAwesomeMotionSharpFilled diff --git a/src/IconAutoDeleteOutlined.tsx b/src/IconAutoDeleteOutlined.tsx index 16e5fdd32..65b267ded 100644 --- a/src/IconAutoDeleteOutlined.tsx +++ b/src/IconAutoDeleteOutlined.tsx @@ -8,4 +8,4 @@ const IconAutoDeleteOutlined: React.FC = ({ ...props }) => ( ) -export { IconAutoDeleteOutlined as default } +export default IconAutoDeleteOutlined diff --git a/src/IconAutoDeleteOutlinedFilled.tsx b/src/IconAutoDeleteOutlinedFilled.tsx index 847fcf544..9ebb0b62c 100644 --- a/src/IconAutoDeleteOutlinedFilled.tsx +++ b/src/IconAutoDeleteOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconAutoDeleteOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconAutoDeleteOutlinedFilled as default } +export default IconAutoDeleteOutlinedFilled diff --git a/src/IconAutoDeleteRounded.tsx b/src/IconAutoDeleteRounded.tsx index 2807e0f82..7081ec9dc 100644 --- a/src/IconAutoDeleteRounded.tsx +++ b/src/IconAutoDeleteRounded.tsx @@ -8,4 +8,4 @@ const IconAutoDeleteRounded: React.FC = ({ ...props }) => ( ) -export { IconAutoDeleteRounded as default } +export default IconAutoDeleteRounded diff --git a/src/IconAutoDeleteRoundedFilled.tsx b/src/IconAutoDeleteRoundedFilled.tsx index b4fe83c2b..c62b3c8d9 100644 --- a/src/IconAutoDeleteRoundedFilled.tsx +++ b/src/IconAutoDeleteRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconAutoDeleteRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconAutoDeleteRoundedFilled as default } +export default IconAutoDeleteRoundedFilled diff --git a/src/IconAutoDeleteSharp.tsx b/src/IconAutoDeleteSharp.tsx index 00e15ef2d..eb9b3c29b 100644 --- a/src/IconAutoDeleteSharp.tsx +++ b/src/IconAutoDeleteSharp.tsx @@ -8,4 +8,4 @@ const IconAutoDeleteSharp: React.FC = ({ ...props }) => ( ) -export { IconAutoDeleteSharp as default } +export default IconAutoDeleteSharp diff --git a/src/IconAutoDeleteSharpFilled.tsx b/src/IconAutoDeleteSharpFilled.tsx index de7ca4b7d..7ed370a4e 100644 --- a/src/IconAutoDeleteSharpFilled.tsx +++ b/src/IconAutoDeleteSharpFilled.tsx @@ -8,4 +8,4 @@ const IconAutoDeleteSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconAutoDeleteSharpFilled as default } +export default IconAutoDeleteSharpFilled diff --git a/src/IconAutoReadPauseOutlined.tsx b/src/IconAutoReadPauseOutlined.tsx index cd55c7159..911c2ec97 100644 --- a/src/IconAutoReadPauseOutlined.tsx +++ b/src/IconAutoReadPauseOutlined.tsx @@ -8,4 +8,4 @@ const IconAutoReadPauseOutlined: React.FC = ({ ...props }) => ( ) -export { IconAutoReadPauseOutlined as default } +export default IconAutoReadPauseOutlined diff --git a/src/IconAutoReadPauseOutlinedFilled.tsx b/src/IconAutoReadPauseOutlinedFilled.tsx index 20c4a6d07..0f2b1dc61 100644 --- a/src/IconAutoReadPauseOutlinedFilled.tsx +++ b/src/IconAutoReadPauseOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconAutoReadPauseOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconAutoReadPauseOutlinedFilled as default } +export default IconAutoReadPauseOutlinedFilled diff --git a/src/IconAutoReadPauseRounded.tsx b/src/IconAutoReadPauseRounded.tsx index 238cc576a..2b9d08017 100644 --- a/src/IconAutoReadPauseRounded.tsx +++ b/src/IconAutoReadPauseRounded.tsx @@ -8,4 +8,4 @@ const IconAutoReadPauseRounded: React.FC = ({ ...props }) => ( ) -export { IconAutoReadPauseRounded as default } +export default IconAutoReadPauseRounded diff --git a/src/IconAutoReadPauseRoundedFilled.tsx b/src/IconAutoReadPauseRoundedFilled.tsx index e44b24f79..c12526b72 100644 --- a/src/IconAutoReadPauseRoundedFilled.tsx +++ b/src/IconAutoReadPauseRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconAutoReadPauseRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconAutoReadPauseRoundedFilled as default } +export default IconAutoReadPauseRoundedFilled diff --git a/src/IconAutoReadPauseSharp.tsx b/src/IconAutoReadPauseSharp.tsx index b6608c560..ad1906cb2 100644 --- a/src/IconAutoReadPauseSharp.tsx +++ b/src/IconAutoReadPauseSharp.tsx @@ -8,4 +8,4 @@ const IconAutoReadPauseSharp: React.FC = ({ ...props }) => ( ) -export { IconAutoReadPauseSharp as default } +export default IconAutoReadPauseSharp diff --git a/src/IconAutoReadPauseSharpFilled.tsx b/src/IconAutoReadPauseSharpFilled.tsx index 9d4e4c34c..4f515a5c1 100644 --- a/src/IconAutoReadPauseSharpFilled.tsx +++ b/src/IconAutoReadPauseSharpFilled.tsx @@ -8,4 +8,4 @@ const IconAutoReadPauseSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconAutoReadPauseSharpFilled as default } +export default IconAutoReadPauseSharpFilled diff --git a/src/IconAutoReadPlayOutlined.tsx b/src/IconAutoReadPlayOutlined.tsx index c9b77778f..5758d9ecc 100644 --- a/src/IconAutoReadPlayOutlined.tsx +++ b/src/IconAutoReadPlayOutlined.tsx @@ -8,4 +8,4 @@ const IconAutoReadPlayOutlined: React.FC = ({ ...props }) => ( ) -export { IconAutoReadPlayOutlined as default } +export default IconAutoReadPlayOutlined diff --git a/src/IconAutoReadPlayOutlinedFilled.tsx b/src/IconAutoReadPlayOutlinedFilled.tsx index a465aad4f..a1f6369a8 100644 --- a/src/IconAutoReadPlayOutlinedFilled.tsx +++ b/src/IconAutoReadPlayOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconAutoReadPlayOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconAutoReadPlayOutlinedFilled as default } +export default IconAutoReadPlayOutlinedFilled diff --git a/src/IconAutoReadPlayRounded.tsx b/src/IconAutoReadPlayRounded.tsx index c59d339ac..807b8246b 100644 --- a/src/IconAutoReadPlayRounded.tsx +++ b/src/IconAutoReadPlayRounded.tsx @@ -8,4 +8,4 @@ const IconAutoReadPlayRounded: React.FC = ({ ...props }) => ( ) -export { IconAutoReadPlayRounded as default } +export default IconAutoReadPlayRounded diff --git a/src/IconAutoReadPlayRoundedFilled.tsx b/src/IconAutoReadPlayRoundedFilled.tsx index 11f77b5bf..3cc454be2 100644 --- a/src/IconAutoReadPlayRoundedFilled.tsx +++ b/src/IconAutoReadPlayRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconAutoReadPlayRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconAutoReadPlayRoundedFilled as default } +export default IconAutoReadPlayRoundedFilled diff --git a/src/IconAutoReadPlaySharp.tsx b/src/IconAutoReadPlaySharp.tsx index 0b2f54045..9f3571113 100644 --- a/src/IconAutoReadPlaySharp.tsx +++ b/src/IconAutoReadPlaySharp.tsx @@ -8,4 +8,4 @@ const IconAutoReadPlaySharp: React.FC = ({ ...props }) => ( ) -export { IconAutoReadPlaySharp as default } +export default IconAutoReadPlaySharp diff --git a/src/IconAutoReadPlaySharpFilled.tsx b/src/IconAutoReadPlaySharpFilled.tsx index adb05a172..6cc5ea56c 100644 --- a/src/IconAutoReadPlaySharpFilled.tsx +++ b/src/IconAutoReadPlaySharpFilled.tsx @@ -8,4 +8,4 @@ const IconAutoReadPlaySharpFilled: React.FC = ({ ...props }) => ( ) -export { IconAutoReadPlaySharpFilled as default } +export default IconAutoReadPlaySharpFilled diff --git a/src/IconAutoStoriesOutlined.tsx b/src/IconAutoStoriesOutlined.tsx index a015fe5b4..231840fbb 100644 --- a/src/IconAutoStoriesOutlined.tsx +++ b/src/IconAutoStoriesOutlined.tsx @@ -8,4 +8,4 @@ const IconAutoStoriesOutlined: React.FC = ({ ...props }) => ( ) -export { IconAutoStoriesOutlined as default } +export default IconAutoStoriesOutlined diff --git a/src/IconAutoStoriesOutlinedFilled.tsx b/src/IconAutoStoriesOutlinedFilled.tsx index ac1af5221..3fd01df8b 100644 --- a/src/IconAutoStoriesOutlinedFilled.tsx +++ b/src/IconAutoStoriesOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconAutoStoriesOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconAutoStoriesOutlinedFilled as default } +export default IconAutoStoriesOutlinedFilled diff --git a/src/IconAutoStoriesRounded.tsx b/src/IconAutoStoriesRounded.tsx index ea9173b35..7f6b0d062 100644 --- a/src/IconAutoStoriesRounded.tsx +++ b/src/IconAutoStoriesRounded.tsx @@ -8,4 +8,4 @@ const IconAutoStoriesRounded: React.FC = ({ ...props }) => ( ) -export { IconAutoStoriesRounded as default } +export default IconAutoStoriesRounded diff --git a/src/IconAutoStoriesRoundedFilled.tsx b/src/IconAutoStoriesRoundedFilled.tsx index 2dbd14b8a..7ee0eef9a 100644 --- a/src/IconAutoStoriesRoundedFilled.tsx +++ b/src/IconAutoStoriesRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconAutoStoriesRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconAutoStoriesRoundedFilled as default } +export default IconAutoStoriesRoundedFilled diff --git a/src/IconAutoStoriesSharp.tsx b/src/IconAutoStoriesSharp.tsx index 5dec6468c..0eef51bb0 100644 --- a/src/IconAutoStoriesSharp.tsx +++ b/src/IconAutoStoriesSharp.tsx @@ -8,4 +8,4 @@ const IconAutoStoriesSharp: React.FC = ({ ...props }) => ( ) -export { IconAutoStoriesSharp as default } +export default IconAutoStoriesSharp diff --git a/src/IconAutoStoriesSharpFilled.tsx b/src/IconAutoStoriesSharpFilled.tsx index dbcb820e7..e5742dfbd 100644 --- a/src/IconAutoStoriesSharpFilled.tsx +++ b/src/IconAutoStoriesSharpFilled.tsx @@ -8,4 +8,4 @@ const IconAutoStoriesSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconAutoStoriesSharpFilled as default } +export default IconAutoStoriesSharpFilled diff --git a/src/IconAutoTowingOutlined.tsx b/src/IconAutoTowingOutlined.tsx index 99256892b..3d0f60150 100644 --- a/src/IconAutoTowingOutlined.tsx +++ b/src/IconAutoTowingOutlined.tsx @@ -8,4 +8,4 @@ const IconAutoTowingOutlined: React.FC = ({ ...props }) => ( ) -export { IconAutoTowingOutlined as default } +export default IconAutoTowingOutlined diff --git a/src/IconAutoTowingOutlinedFilled.tsx b/src/IconAutoTowingOutlinedFilled.tsx index 91df27743..c158786bf 100644 --- a/src/IconAutoTowingOutlinedFilled.tsx +++ b/src/IconAutoTowingOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconAutoTowingOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconAutoTowingOutlinedFilled as default } +export default IconAutoTowingOutlinedFilled diff --git a/src/IconAutoTowingRounded.tsx b/src/IconAutoTowingRounded.tsx index 1c6107426..a883fdaaa 100644 --- a/src/IconAutoTowingRounded.tsx +++ b/src/IconAutoTowingRounded.tsx @@ -8,4 +8,4 @@ const IconAutoTowingRounded: React.FC = ({ ...props }) => ( ) -export { IconAutoTowingRounded as default } +export default IconAutoTowingRounded diff --git a/src/IconAutoTowingRoundedFilled.tsx b/src/IconAutoTowingRoundedFilled.tsx index 8ed04515e..b45af85ff 100644 --- a/src/IconAutoTowingRoundedFilled.tsx +++ b/src/IconAutoTowingRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconAutoTowingRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconAutoTowingRoundedFilled as default } +export default IconAutoTowingRoundedFilled diff --git a/src/IconAutoTowingSharp.tsx b/src/IconAutoTowingSharp.tsx index 1d7b5a6a3..bb605746d 100644 --- a/src/IconAutoTowingSharp.tsx +++ b/src/IconAutoTowingSharp.tsx @@ -8,4 +8,4 @@ const IconAutoTowingSharp: React.FC = ({ ...props }) => ( ) -export { IconAutoTowingSharp as default } +export default IconAutoTowingSharp diff --git a/src/IconAutoTowingSharpFilled.tsx b/src/IconAutoTowingSharpFilled.tsx index 9b8365fd0..adf134f83 100644 --- a/src/IconAutoTowingSharpFilled.tsx +++ b/src/IconAutoTowingSharpFilled.tsx @@ -8,4 +8,4 @@ const IconAutoTowingSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconAutoTowingSharpFilled as default } +export default IconAutoTowingSharpFilled diff --git a/src/IconAutoTransmissionOutlined.tsx b/src/IconAutoTransmissionOutlined.tsx index da0c7d9f5..7bdef79a6 100644 --- a/src/IconAutoTransmissionOutlined.tsx +++ b/src/IconAutoTransmissionOutlined.tsx @@ -8,4 +8,4 @@ const IconAutoTransmissionOutlined: React.FC = ({ ...props }) => ( ) -export { IconAutoTransmissionOutlined as default } +export default IconAutoTransmissionOutlined diff --git a/src/IconAutoTransmissionOutlinedFilled.tsx b/src/IconAutoTransmissionOutlinedFilled.tsx index 6e5f5767b..f8245f47a 100644 --- a/src/IconAutoTransmissionOutlinedFilled.tsx +++ b/src/IconAutoTransmissionOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconAutoTransmissionOutlinedFilled: React.FC = ({ ) -export { IconAutoTransmissionOutlinedFilled as default } +export default IconAutoTransmissionOutlinedFilled diff --git a/src/IconAutoTransmissionRounded.tsx b/src/IconAutoTransmissionRounded.tsx index 227416a2e..148f5d2fa 100644 --- a/src/IconAutoTransmissionRounded.tsx +++ b/src/IconAutoTransmissionRounded.tsx @@ -8,4 +8,4 @@ const IconAutoTransmissionRounded: React.FC = ({ ...props }) => ( ) -export { IconAutoTransmissionRounded as default } +export default IconAutoTransmissionRounded diff --git a/src/IconAutoTransmissionRoundedFilled.tsx b/src/IconAutoTransmissionRoundedFilled.tsx index 4c7e11327..418c9916d 100644 --- a/src/IconAutoTransmissionRoundedFilled.tsx +++ b/src/IconAutoTransmissionRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconAutoTransmissionRoundedFilled: React.FC = ({ ) -export { IconAutoTransmissionRoundedFilled as default } +export default IconAutoTransmissionRoundedFilled diff --git a/src/IconAutoTransmissionSharp.tsx b/src/IconAutoTransmissionSharp.tsx index 615c4d6d4..d7ee1ec48 100644 --- a/src/IconAutoTransmissionSharp.tsx +++ b/src/IconAutoTransmissionSharp.tsx @@ -8,4 +8,4 @@ const IconAutoTransmissionSharp: React.FC = ({ ...props }) => ( ) -export { IconAutoTransmissionSharp as default } +export default IconAutoTransmissionSharp diff --git a/src/IconAutoTransmissionSharpFilled.tsx b/src/IconAutoTransmissionSharpFilled.tsx index 916899c10..bcf6bdf46 100644 --- a/src/IconAutoTransmissionSharpFilled.tsx +++ b/src/IconAutoTransmissionSharpFilled.tsx @@ -8,4 +8,4 @@ const IconAutoTransmissionSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconAutoTransmissionSharpFilled as default } +export default IconAutoTransmissionSharpFilled diff --git a/src/IconAutofpsSelectOutlined.tsx b/src/IconAutofpsSelectOutlined.tsx index 7b57eca32..d6418b7a2 100644 --- a/src/IconAutofpsSelectOutlined.tsx +++ b/src/IconAutofpsSelectOutlined.tsx @@ -8,4 +8,4 @@ const IconAutofpsSelectOutlined: React.FC = ({ ...props }) => ( ) -export { IconAutofpsSelectOutlined as default } +export default IconAutofpsSelectOutlined diff --git a/src/IconAutofpsSelectOutlinedFilled.tsx b/src/IconAutofpsSelectOutlinedFilled.tsx index 6d117e80c..205c5d69e 100644 --- a/src/IconAutofpsSelectOutlinedFilled.tsx +++ b/src/IconAutofpsSelectOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconAutofpsSelectOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconAutofpsSelectOutlinedFilled as default } +export default IconAutofpsSelectOutlinedFilled diff --git a/src/IconAutofpsSelectRounded.tsx b/src/IconAutofpsSelectRounded.tsx index 6d75c77da..f421ac7d8 100644 --- a/src/IconAutofpsSelectRounded.tsx +++ b/src/IconAutofpsSelectRounded.tsx @@ -8,4 +8,4 @@ const IconAutofpsSelectRounded: React.FC = ({ ...props }) => ( ) -export { IconAutofpsSelectRounded as default } +export default IconAutofpsSelectRounded diff --git a/src/IconAutofpsSelectRoundedFilled.tsx b/src/IconAutofpsSelectRoundedFilled.tsx index a1ca51375..24dcf83f8 100644 --- a/src/IconAutofpsSelectRoundedFilled.tsx +++ b/src/IconAutofpsSelectRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconAutofpsSelectRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconAutofpsSelectRoundedFilled as default } +export default IconAutofpsSelectRoundedFilled diff --git a/src/IconAutofpsSelectSharp.tsx b/src/IconAutofpsSelectSharp.tsx index a3baf2eb7..8e0e92d4c 100644 --- a/src/IconAutofpsSelectSharp.tsx +++ b/src/IconAutofpsSelectSharp.tsx @@ -8,4 +8,4 @@ const IconAutofpsSelectSharp: React.FC = ({ ...props }) => ( ) -export { IconAutofpsSelectSharp as default } +export default IconAutofpsSelectSharp diff --git a/src/IconAutofpsSelectSharpFilled.tsx b/src/IconAutofpsSelectSharpFilled.tsx index 431f889d3..726bb09fd 100644 --- a/src/IconAutofpsSelectSharpFilled.tsx +++ b/src/IconAutofpsSelectSharpFilled.tsx @@ -8,4 +8,4 @@ const IconAutofpsSelectSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconAutofpsSelectSharpFilled as default } +export default IconAutofpsSelectSharpFilled diff --git a/src/IconAutomationOutlined.tsx b/src/IconAutomationOutlined.tsx index abdfe0eca..1bfb54359 100644 --- a/src/IconAutomationOutlined.tsx +++ b/src/IconAutomationOutlined.tsx @@ -8,4 +8,4 @@ const IconAutomationOutlined: React.FC = ({ ...props }) => ( ) -export { IconAutomationOutlined as default } +export default IconAutomationOutlined diff --git a/src/IconAutomationOutlinedFilled.tsx b/src/IconAutomationOutlinedFilled.tsx index c9017b141..83b6a14fc 100644 --- a/src/IconAutomationOutlinedFilled.tsx +++ b/src/IconAutomationOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconAutomationOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconAutomationOutlinedFilled as default } +export default IconAutomationOutlinedFilled diff --git a/src/IconAutomationRounded.tsx b/src/IconAutomationRounded.tsx index 7ec7a8d73..e1fd01880 100644 --- a/src/IconAutomationRounded.tsx +++ b/src/IconAutomationRounded.tsx @@ -8,4 +8,4 @@ const IconAutomationRounded: React.FC = ({ ...props }) => ( ) -export { IconAutomationRounded as default } +export default IconAutomationRounded diff --git a/src/IconAutomationRoundedFilled.tsx b/src/IconAutomationRoundedFilled.tsx index a1550dc3c..483f69077 100644 --- a/src/IconAutomationRoundedFilled.tsx +++ b/src/IconAutomationRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconAutomationRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconAutomationRoundedFilled as default } +export default IconAutomationRoundedFilled diff --git a/src/IconAutomationSharp.tsx b/src/IconAutomationSharp.tsx index 3367e810e..c3efcb9b6 100644 --- a/src/IconAutomationSharp.tsx +++ b/src/IconAutomationSharp.tsx @@ -8,4 +8,4 @@ const IconAutomationSharp: React.FC = ({ ...props }) => ( ) -export { IconAutomationSharp as default } +export default IconAutomationSharp diff --git a/src/IconAutomationSharpFilled.tsx b/src/IconAutomationSharpFilled.tsx index 240f16128..145e313e6 100644 --- a/src/IconAutomationSharpFilled.tsx +++ b/src/IconAutomationSharpFilled.tsx @@ -8,4 +8,4 @@ const IconAutomationSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconAutomationSharpFilled as default } +export default IconAutomationSharpFilled diff --git a/src/IconAutopauseOutlined.tsx b/src/IconAutopauseOutlined.tsx index a009c3b8b..8d0362a70 100644 --- a/src/IconAutopauseOutlined.tsx +++ b/src/IconAutopauseOutlined.tsx @@ -8,4 +8,4 @@ const IconAutopauseOutlined: React.FC = ({ ...props }) => ( ) -export { IconAutopauseOutlined as default } +export default IconAutopauseOutlined diff --git a/src/IconAutopauseOutlinedFilled.tsx b/src/IconAutopauseOutlinedFilled.tsx index 0ab77f94d..e17ba7dca 100644 --- a/src/IconAutopauseOutlinedFilled.tsx +++ b/src/IconAutopauseOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconAutopauseOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconAutopauseOutlinedFilled as default } +export default IconAutopauseOutlinedFilled diff --git a/src/IconAutopauseRounded.tsx b/src/IconAutopauseRounded.tsx index 349798f94..40ae24cc8 100644 --- a/src/IconAutopauseRounded.tsx +++ b/src/IconAutopauseRounded.tsx @@ -8,4 +8,4 @@ const IconAutopauseRounded: React.FC = ({ ...props }) => ( ) -export { IconAutopauseRounded as default } +export default IconAutopauseRounded diff --git a/src/IconAutopauseRoundedFilled.tsx b/src/IconAutopauseRoundedFilled.tsx index ac96b4841..e31cf94df 100644 --- a/src/IconAutopauseRoundedFilled.tsx +++ b/src/IconAutopauseRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconAutopauseRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconAutopauseRoundedFilled as default } +export default IconAutopauseRoundedFilled diff --git a/src/IconAutopauseSharp.tsx b/src/IconAutopauseSharp.tsx index 1217706ec..7f11356df 100644 --- a/src/IconAutopauseSharp.tsx +++ b/src/IconAutopauseSharp.tsx @@ -8,4 +8,4 @@ const IconAutopauseSharp: React.FC = ({ ...props }) => ( ) -export { IconAutopauseSharp as default } +export default IconAutopauseSharp diff --git a/src/IconAutopauseSharpFilled.tsx b/src/IconAutopauseSharpFilled.tsx index 2855e78a9..bc0e9f6de 100644 --- a/src/IconAutopauseSharpFilled.tsx +++ b/src/IconAutopauseSharpFilled.tsx @@ -8,4 +8,4 @@ const IconAutopauseSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconAutopauseSharpFilled as default } +export default IconAutopauseSharpFilled diff --git a/src/IconAutoplayOutlined.tsx b/src/IconAutoplayOutlined.tsx index 8edee7674..8537457a7 100644 --- a/src/IconAutoplayOutlined.tsx +++ b/src/IconAutoplayOutlined.tsx @@ -8,4 +8,4 @@ const IconAutoplayOutlined: React.FC = ({ ...props }) => ( ) -export { IconAutoplayOutlined as default } +export default IconAutoplayOutlined diff --git a/src/IconAutoplayOutlinedFilled.tsx b/src/IconAutoplayOutlinedFilled.tsx index fc5f1bf41..9b92732be 100644 --- a/src/IconAutoplayOutlinedFilled.tsx +++ b/src/IconAutoplayOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconAutoplayOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconAutoplayOutlinedFilled as default } +export default IconAutoplayOutlinedFilled diff --git a/src/IconAutoplayRounded.tsx b/src/IconAutoplayRounded.tsx index 9f1ad3a76..ad5f8239d 100644 --- a/src/IconAutoplayRounded.tsx +++ b/src/IconAutoplayRounded.tsx @@ -8,4 +8,4 @@ const IconAutoplayRounded: React.FC = ({ ...props }) => ( ) -export { IconAutoplayRounded as default } +export default IconAutoplayRounded diff --git a/src/IconAutoplayRoundedFilled.tsx b/src/IconAutoplayRoundedFilled.tsx index c278ffda8..4bdbeb1fa 100644 --- a/src/IconAutoplayRoundedFilled.tsx +++ b/src/IconAutoplayRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconAutoplayRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconAutoplayRoundedFilled as default } +export default IconAutoplayRoundedFilled diff --git a/src/IconAutoplaySharp.tsx b/src/IconAutoplaySharp.tsx index c4a24cee2..d96134a49 100644 --- a/src/IconAutoplaySharp.tsx +++ b/src/IconAutoplaySharp.tsx @@ -8,4 +8,4 @@ const IconAutoplaySharp: React.FC = ({ ...props }) => ( ) -export { IconAutoplaySharp as default } +export default IconAutoplaySharp diff --git a/src/IconAutoplaySharpFilled.tsx b/src/IconAutoplaySharpFilled.tsx index 3014afcf2..7ef5e9a86 100644 --- a/src/IconAutoplaySharpFilled.tsx +++ b/src/IconAutoplaySharpFilled.tsx @@ -8,4 +8,4 @@ const IconAutoplaySharpFilled: React.FC = ({ ...props }) => ( ) -export { IconAutoplaySharpFilled as default } +export default IconAutoplaySharpFilled diff --git a/src/IconAutorenewOutlined.tsx b/src/IconAutorenewOutlined.tsx index 3aae58d87..9e5507074 100644 --- a/src/IconAutorenewOutlined.tsx +++ b/src/IconAutorenewOutlined.tsx @@ -8,4 +8,4 @@ const IconAutorenewOutlined: React.FC = ({ ...props }) => ( ) -export { IconAutorenewOutlined as default } +export default IconAutorenewOutlined diff --git a/src/IconAutorenewOutlinedFilled.tsx b/src/IconAutorenewOutlinedFilled.tsx index 21b256833..72da2c22a 100644 --- a/src/IconAutorenewOutlinedFilled.tsx +++ b/src/IconAutorenewOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconAutorenewOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconAutorenewOutlinedFilled as default } +export default IconAutorenewOutlinedFilled diff --git a/src/IconAutorenewRounded.tsx b/src/IconAutorenewRounded.tsx index a2fc4949c..f9d1a3ac6 100644 --- a/src/IconAutorenewRounded.tsx +++ b/src/IconAutorenewRounded.tsx @@ -8,4 +8,4 @@ const IconAutorenewRounded: React.FC = ({ ...props }) => ( ) -export { IconAutorenewRounded as default } +export default IconAutorenewRounded diff --git a/src/IconAutorenewRoundedFilled.tsx b/src/IconAutorenewRoundedFilled.tsx index a3ff95d84..8e133ffc1 100644 --- a/src/IconAutorenewRoundedFilled.tsx +++ b/src/IconAutorenewRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconAutorenewRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconAutorenewRoundedFilled as default } +export default IconAutorenewRoundedFilled diff --git a/src/IconAutorenewSharp.tsx b/src/IconAutorenewSharp.tsx index 8e8e4b309..ed0535064 100644 --- a/src/IconAutorenewSharp.tsx +++ b/src/IconAutorenewSharp.tsx @@ -8,4 +8,4 @@ const IconAutorenewSharp: React.FC = ({ ...props }) => ( ) -export { IconAutorenewSharp as default } +export default IconAutorenewSharp diff --git a/src/IconAutorenewSharpFilled.tsx b/src/IconAutorenewSharpFilled.tsx index f9521d249..08f3d4fd2 100644 --- a/src/IconAutorenewSharpFilled.tsx +++ b/src/IconAutorenewSharpFilled.tsx @@ -8,4 +8,4 @@ const IconAutorenewSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconAutorenewSharpFilled as default } +export default IconAutorenewSharpFilled diff --git a/src/IconAutostopOutlined.tsx b/src/IconAutostopOutlined.tsx index 9bd1e0d32..0638d0b0b 100644 --- a/src/IconAutostopOutlined.tsx +++ b/src/IconAutostopOutlined.tsx @@ -8,4 +8,4 @@ const IconAutostopOutlined: React.FC = ({ ...props }) => ( ) -export { IconAutostopOutlined as default } +export default IconAutostopOutlined diff --git a/src/IconAutostopOutlinedFilled.tsx b/src/IconAutostopOutlinedFilled.tsx index 376df06cd..ca9fe7208 100644 --- a/src/IconAutostopOutlinedFilled.tsx +++ b/src/IconAutostopOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconAutostopOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconAutostopOutlinedFilled as default } +export default IconAutostopOutlinedFilled diff --git a/src/IconAutostopRounded.tsx b/src/IconAutostopRounded.tsx index d7ab561a9..391dc3b78 100644 --- a/src/IconAutostopRounded.tsx +++ b/src/IconAutostopRounded.tsx @@ -8,4 +8,4 @@ const IconAutostopRounded: React.FC = ({ ...props }) => ( ) -export { IconAutostopRounded as default } +export default IconAutostopRounded diff --git a/src/IconAutostopRoundedFilled.tsx b/src/IconAutostopRoundedFilled.tsx index 3cb5b5ef2..0d07ac8e0 100644 --- a/src/IconAutostopRoundedFilled.tsx +++ b/src/IconAutostopRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconAutostopRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconAutostopRoundedFilled as default } +export default IconAutostopRoundedFilled diff --git a/src/IconAutostopSharp.tsx b/src/IconAutostopSharp.tsx index 52bb37072..ee7ddc9f9 100644 --- a/src/IconAutostopSharp.tsx +++ b/src/IconAutostopSharp.tsx @@ -8,4 +8,4 @@ const IconAutostopSharp: React.FC = ({ ...props }) => ( ) -export { IconAutostopSharp as default } +export default IconAutostopSharp diff --git a/src/IconAutostopSharpFilled.tsx b/src/IconAutostopSharpFilled.tsx index 3441991fe..da34510aa 100644 --- a/src/IconAutostopSharpFilled.tsx +++ b/src/IconAutostopSharpFilled.tsx @@ -8,4 +8,4 @@ const IconAutostopSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconAutostopSharpFilled as default } +export default IconAutostopSharpFilled diff --git a/src/IconAv1Outlined.tsx b/src/IconAv1Outlined.tsx index 675305850..423bd25f1 100644 --- a/src/IconAv1Outlined.tsx +++ b/src/IconAv1Outlined.tsx @@ -8,4 +8,4 @@ const IconAv1Outlined: React.FC = ({ ...props }) => ( ) -export { IconAv1Outlined as default } +export default IconAv1Outlined diff --git a/src/IconAv1OutlinedFilled.tsx b/src/IconAv1OutlinedFilled.tsx index f13d5736f..b77744962 100644 --- a/src/IconAv1OutlinedFilled.tsx +++ b/src/IconAv1OutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconAv1OutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconAv1OutlinedFilled as default } +export default IconAv1OutlinedFilled diff --git a/src/IconAv1Rounded.tsx b/src/IconAv1Rounded.tsx index c98c42797..ffc7a5359 100644 --- a/src/IconAv1Rounded.tsx +++ b/src/IconAv1Rounded.tsx @@ -8,4 +8,4 @@ const IconAv1Rounded: React.FC = ({ ...props }) => ( ) -export { IconAv1Rounded as default } +export default IconAv1Rounded diff --git a/src/IconAv1RoundedFilled.tsx b/src/IconAv1RoundedFilled.tsx index 2562ab02d..3660b97de 100644 --- a/src/IconAv1RoundedFilled.tsx +++ b/src/IconAv1RoundedFilled.tsx @@ -8,4 +8,4 @@ const IconAv1RoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconAv1RoundedFilled as default } +export default IconAv1RoundedFilled diff --git a/src/IconAv1Sharp.tsx b/src/IconAv1Sharp.tsx index 63a3b18ff..41aa85cc5 100644 --- a/src/IconAv1Sharp.tsx +++ b/src/IconAv1Sharp.tsx @@ -8,4 +8,4 @@ const IconAv1Sharp: React.FC = ({ ...props }) => ( ) -export { IconAv1Sharp as default } +export default IconAv1Sharp diff --git a/src/IconAv1SharpFilled.tsx b/src/IconAv1SharpFilled.tsx index 1f8d4aaad..92b035083 100644 --- a/src/IconAv1SharpFilled.tsx +++ b/src/IconAv1SharpFilled.tsx @@ -8,4 +8,4 @@ const IconAv1SharpFilled: React.FC = ({ ...props }) => ( ) -export { IconAv1SharpFilled as default } +export default IconAv1SharpFilled diff --git a/src/IconAvTimerOutlined.tsx b/src/IconAvTimerOutlined.tsx index 51075f1f3..fa82dd699 100644 --- a/src/IconAvTimerOutlined.tsx +++ b/src/IconAvTimerOutlined.tsx @@ -8,4 +8,4 @@ const IconAvTimerOutlined: React.FC = ({ ...props }) => ( ) -export { IconAvTimerOutlined as default } +export default IconAvTimerOutlined diff --git a/src/IconAvTimerOutlinedFilled.tsx b/src/IconAvTimerOutlinedFilled.tsx index f991aea6e..1b7fdc9ae 100644 --- a/src/IconAvTimerOutlinedFilled.tsx +++ b/src/IconAvTimerOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconAvTimerOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconAvTimerOutlinedFilled as default } +export default IconAvTimerOutlinedFilled diff --git a/src/IconAvTimerRounded.tsx b/src/IconAvTimerRounded.tsx index 1525c5a95..140cfaa49 100644 --- a/src/IconAvTimerRounded.tsx +++ b/src/IconAvTimerRounded.tsx @@ -8,4 +8,4 @@ const IconAvTimerRounded: React.FC = ({ ...props }) => ( ) -export { IconAvTimerRounded as default } +export default IconAvTimerRounded diff --git a/src/IconAvTimerRoundedFilled.tsx b/src/IconAvTimerRoundedFilled.tsx index aeb90a239..60fa693ae 100644 --- a/src/IconAvTimerRoundedFilled.tsx +++ b/src/IconAvTimerRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconAvTimerRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconAvTimerRoundedFilled as default } +export default IconAvTimerRoundedFilled diff --git a/src/IconAvTimerSharp.tsx b/src/IconAvTimerSharp.tsx index 257213933..bae9265ae 100644 --- a/src/IconAvTimerSharp.tsx +++ b/src/IconAvTimerSharp.tsx @@ -8,4 +8,4 @@ const IconAvTimerSharp: React.FC = ({ ...props }) => ( ) -export { IconAvTimerSharp as default } +export default IconAvTimerSharp diff --git a/src/IconAvTimerSharpFilled.tsx b/src/IconAvTimerSharpFilled.tsx index 93716081d..b2c526e7f 100644 --- a/src/IconAvTimerSharpFilled.tsx +++ b/src/IconAvTimerSharpFilled.tsx @@ -8,4 +8,4 @@ const IconAvTimerSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconAvTimerSharpFilled as default } +export default IconAvTimerSharpFilled diff --git a/src/IconAvcOutlined.tsx b/src/IconAvcOutlined.tsx index 942227179..668669285 100644 --- a/src/IconAvcOutlined.tsx +++ b/src/IconAvcOutlined.tsx @@ -8,4 +8,4 @@ const IconAvcOutlined: React.FC = ({ ...props }) => ( ) -export { IconAvcOutlined as default } +export default IconAvcOutlined diff --git a/src/IconAvcOutlinedFilled.tsx b/src/IconAvcOutlinedFilled.tsx index eb384ce86..d52ac1b17 100644 --- a/src/IconAvcOutlinedFilled.tsx +++ b/src/IconAvcOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconAvcOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconAvcOutlinedFilled as default } +export default IconAvcOutlinedFilled diff --git a/src/IconAvcRounded.tsx b/src/IconAvcRounded.tsx index 41ddb4296..154a439b4 100644 --- a/src/IconAvcRounded.tsx +++ b/src/IconAvcRounded.tsx @@ -8,4 +8,4 @@ const IconAvcRounded: React.FC = ({ ...props }) => ( ) -export { IconAvcRounded as default } +export default IconAvcRounded diff --git a/src/IconAvcRoundedFilled.tsx b/src/IconAvcRoundedFilled.tsx index 2be639d78..3f5fa1842 100644 --- a/src/IconAvcRoundedFilled.tsx +++ b/src/IconAvcRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconAvcRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconAvcRoundedFilled as default } +export default IconAvcRoundedFilled diff --git a/src/IconAvcSharp.tsx b/src/IconAvcSharp.tsx index 93f2c632d..37bf138dd 100644 --- a/src/IconAvcSharp.tsx +++ b/src/IconAvcSharp.tsx @@ -8,4 +8,4 @@ const IconAvcSharp: React.FC = ({ ...props }) => ( ) -export { IconAvcSharp as default } +export default IconAvcSharp diff --git a/src/IconAvcSharpFilled.tsx b/src/IconAvcSharpFilled.tsx index 50fc52f84..b0bfe8e9a 100644 --- a/src/IconAvcSharpFilled.tsx +++ b/src/IconAvcSharpFilled.tsx @@ -8,4 +8,4 @@ const IconAvcSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconAvcSharpFilled as default } +export default IconAvcSharpFilled diff --git a/src/IconAvgPaceOutlined.tsx b/src/IconAvgPaceOutlined.tsx index def90312a..f902c37e3 100644 --- a/src/IconAvgPaceOutlined.tsx +++ b/src/IconAvgPaceOutlined.tsx @@ -8,4 +8,4 @@ const IconAvgPaceOutlined: React.FC = ({ ...props }) => ( ) -export { IconAvgPaceOutlined as default } +export default IconAvgPaceOutlined diff --git a/src/IconAvgPaceOutlinedFilled.tsx b/src/IconAvgPaceOutlinedFilled.tsx index bd98cc713..6b927d2d4 100644 --- a/src/IconAvgPaceOutlinedFilled.tsx +++ b/src/IconAvgPaceOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconAvgPaceOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconAvgPaceOutlinedFilled as default } +export default IconAvgPaceOutlinedFilled diff --git a/src/IconAvgPaceRounded.tsx b/src/IconAvgPaceRounded.tsx index 946140f80..8c4107e7e 100644 --- a/src/IconAvgPaceRounded.tsx +++ b/src/IconAvgPaceRounded.tsx @@ -8,4 +8,4 @@ const IconAvgPaceRounded: React.FC = ({ ...props }) => ( ) -export { IconAvgPaceRounded as default } +export default IconAvgPaceRounded diff --git a/src/IconAvgPaceRoundedFilled.tsx b/src/IconAvgPaceRoundedFilled.tsx index dc9e21b72..3edc0081e 100644 --- a/src/IconAvgPaceRoundedFilled.tsx +++ b/src/IconAvgPaceRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconAvgPaceRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconAvgPaceRoundedFilled as default } +export default IconAvgPaceRoundedFilled diff --git a/src/IconAvgPaceSharp.tsx b/src/IconAvgPaceSharp.tsx index 8a9d4d6eb..ad5c1bd45 100644 --- a/src/IconAvgPaceSharp.tsx +++ b/src/IconAvgPaceSharp.tsx @@ -8,4 +8,4 @@ const IconAvgPaceSharp: React.FC = ({ ...props }) => ( ) -export { IconAvgPaceSharp as default } +export default IconAvgPaceSharp diff --git a/src/IconAvgPaceSharpFilled.tsx b/src/IconAvgPaceSharpFilled.tsx index 4d004e8c9..5dfe15400 100644 --- a/src/IconAvgPaceSharpFilled.tsx +++ b/src/IconAvgPaceSharpFilled.tsx @@ -8,4 +8,4 @@ const IconAvgPaceSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconAvgPaceSharpFilled as default } +export default IconAvgPaceSharpFilled diff --git a/src/IconAvgTimeOutlined.tsx b/src/IconAvgTimeOutlined.tsx index db7081e65..3dd5bcd6f 100644 --- a/src/IconAvgTimeOutlined.tsx +++ b/src/IconAvgTimeOutlined.tsx @@ -8,4 +8,4 @@ const IconAvgTimeOutlined: React.FC = ({ ...props }) => ( ) -export { IconAvgTimeOutlined as default } +export default IconAvgTimeOutlined diff --git a/src/IconAvgTimeOutlinedFilled.tsx b/src/IconAvgTimeOutlinedFilled.tsx index 3c9588cbb..b86bb45e0 100644 --- a/src/IconAvgTimeOutlinedFilled.tsx +++ b/src/IconAvgTimeOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconAvgTimeOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconAvgTimeOutlinedFilled as default } +export default IconAvgTimeOutlinedFilled diff --git a/src/IconAvgTimeRounded.tsx b/src/IconAvgTimeRounded.tsx index 1dd660ea5..0bdb0a4a3 100644 --- a/src/IconAvgTimeRounded.tsx +++ b/src/IconAvgTimeRounded.tsx @@ -8,4 +8,4 @@ const IconAvgTimeRounded: React.FC = ({ ...props }) => ( ) -export { IconAvgTimeRounded as default } +export default IconAvgTimeRounded diff --git a/src/IconAvgTimeRoundedFilled.tsx b/src/IconAvgTimeRoundedFilled.tsx index fb05cb659..88e742e1a 100644 --- a/src/IconAvgTimeRoundedFilled.tsx +++ b/src/IconAvgTimeRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconAvgTimeRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconAvgTimeRoundedFilled as default } +export default IconAvgTimeRoundedFilled diff --git a/src/IconAvgTimeSharp.tsx b/src/IconAvgTimeSharp.tsx index cdab65f6d..b2275e3b4 100644 --- a/src/IconAvgTimeSharp.tsx +++ b/src/IconAvgTimeSharp.tsx @@ -8,4 +8,4 @@ const IconAvgTimeSharp: React.FC = ({ ...props }) => ( ) -export { IconAvgTimeSharp as default } +export default IconAvgTimeSharp diff --git a/src/IconAvgTimeSharpFilled.tsx b/src/IconAvgTimeSharpFilled.tsx index befa473e6..84c2c86ec 100644 --- a/src/IconAvgTimeSharpFilled.tsx +++ b/src/IconAvgTimeSharpFilled.tsx @@ -8,4 +8,4 @@ const IconAvgTimeSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconAvgTimeSharpFilled as default } +export default IconAvgTimeSharpFilled diff --git a/src/IconAwardStarOutlined.tsx b/src/IconAwardStarOutlined.tsx index 4532f4de3..56f5537a8 100644 --- a/src/IconAwardStarOutlined.tsx +++ b/src/IconAwardStarOutlined.tsx @@ -8,4 +8,4 @@ const IconAwardStarOutlined: React.FC = ({ ...props }) => ( ) -export { IconAwardStarOutlined as default } +export default IconAwardStarOutlined diff --git a/src/IconAwardStarOutlinedFilled.tsx b/src/IconAwardStarOutlinedFilled.tsx index 9a0a4ccf7..282dd07d1 100644 --- a/src/IconAwardStarOutlinedFilled.tsx +++ b/src/IconAwardStarOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconAwardStarOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconAwardStarOutlinedFilled as default } +export default IconAwardStarOutlinedFilled diff --git a/src/IconAwardStarRounded.tsx b/src/IconAwardStarRounded.tsx index 9d0959786..a0493965b 100644 --- a/src/IconAwardStarRounded.tsx +++ b/src/IconAwardStarRounded.tsx @@ -8,4 +8,4 @@ const IconAwardStarRounded: React.FC = ({ ...props }) => ( ) -export { IconAwardStarRounded as default } +export default IconAwardStarRounded diff --git a/src/IconAwardStarRoundedFilled.tsx b/src/IconAwardStarRoundedFilled.tsx index 954476bc1..9bf98a010 100644 --- a/src/IconAwardStarRoundedFilled.tsx +++ b/src/IconAwardStarRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconAwardStarRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconAwardStarRoundedFilled as default } +export default IconAwardStarRoundedFilled diff --git a/src/IconAwardStarSharp.tsx b/src/IconAwardStarSharp.tsx index 773c31724..740a504f2 100644 --- a/src/IconAwardStarSharp.tsx +++ b/src/IconAwardStarSharp.tsx @@ -8,4 +8,4 @@ const IconAwardStarSharp: React.FC = ({ ...props }) => ( ) -export { IconAwardStarSharp as default } +export default IconAwardStarSharp diff --git a/src/IconAwardStarSharpFilled.tsx b/src/IconAwardStarSharpFilled.tsx index 3b3b780aa..983dd1090 100644 --- a/src/IconAwardStarSharpFilled.tsx +++ b/src/IconAwardStarSharpFilled.tsx @@ -8,4 +8,4 @@ const IconAwardStarSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconAwardStarSharpFilled as default } +export default IconAwardStarSharpFilled diff --git a/src/IconAzmOutlined.tsx b/src/IconAzmOutlined.tsx index 9210b0a90..705d6776b 100644 --- a/src/IconAzmOutlined.tsx +++ b/src/IconAzmOutlined.tsx @@ -8,4 +8,4 @@ const IconAzmOutlined: React.FC = ({ ...props }) => ( ) -export { IconAzmOutlined as default } +export default IconAzmOutlined diff --git a/src/IconAzmOutlinedFilled.tsx b/src/IconAzmOutlinedFilled.tsx index 812c63863..4cdc6fe31 100644 --- a/src/IconAzmOutlinedFilled.tsx +++ b/src/IconAzmOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconAzmOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconAzmOutlinedFilled as default } +export default IconAzmOutlinedFilled diff --git a/src/IconAzmRounded.tsx b/src/IconAzmRounded.tsx index 02f452094..d8a267080 100644 --- a/src/IconAzmRounded.tsx +++ b/src/IconAzmRounded.tsx @@ -8,4 +8,4 @@ const IconAzmRounded: React.FC = ({ ...props }) => ( ) -export { IconAzmRounded as default } +export default IconAzmRounded diff --git a/src/IconAzmRoundedFilled.tsx b/src/IconAzmRoundedFilled.tsx index 097efde99..94fe04c74 100644 --- a/src/IconAzmRoundedFilled.tsx +++ b/src/IconAzmRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconAzmRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconAzmRoundedFilled as default } +export default IconAzmRoundedFilled diff --git a/src/IconAzmSharp.tsx b/src/IconAzmSharp.tsx index ece5b5ce9..5b37a77b2 100644 --- a/src/IconAzmSharp.tsx +++ b/src/IconAzmSharp.tsx @@ -8,4 +8,4 @@ const IconAzmSharp: React.FC = ({ ...props }) => ( ) -export { IconAzmSharp as default } +export default IconAzmSharp diff --git a/src/IconAzmSharpFilled.tsx b/src/IconAzmSharpFilled.tsx index eac8b1930..7f8f8fda5 100644 --- a/src/IconAzmSharpFilled.tsx +++ b/src/IconAzmSharpFilled.tsx @@ -8,4 +8,4 @@ const IconAzmSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconAzmSharpFilled as default } +export default IconAzmSharpFilled diff --git a/src/IconBabyChangingStationOutlined.tsx b/src/IconBabyChangingStationOutlined.tsx index abe0de109..57e5df65b 100644 --- a/src/IconBabyChangingStationOutlined.tsx +++ b/src/IconBabyChangingStationOutlined.tsx @@ -8,4 +8,4 @@ const IconBabyChangingStationOutlined: React.FC = ({ ...props }) => ( ) -export { IconBabyChangingStationOutlined as default } +export default IconBabyChangingStationOutlined diff --git a/src/IconBabyChangingStationOutlinedFilled.tsx b/src/IconBabyChangingStationOutlinedFilled.tsx index 574b0ba42..86976e806 100644 --- a/src/IconBabyChangingStationOutlinedFilled.tsx +++ b/src/IconBabyChangingStationOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconBabyChangingStationOutlinedFilled: React.FC = ({ ) -export { IconBabyChangingStationOutlinedFilled as default } +export default IconBabyChangingStationOutlinedFilled diff --git a/src/IconBabyChangingStationRounded.tsx b/src/IconBabyChangingStationRounded.tsx index 5fd423563..9a2cd7510 100644 --- a/src/IconBabyChangingStationRounded.tsx +++ b/src/IconBabyChangingStationRounded.tsx @@ -8,4 +8,4 @@ const IconBabyChangingStationRounded: React.FC = ({ ...props }) => ( ) -export { IconBabyChangingStationRounded as default } +export default IconBabyChangingStationRounded diff --git a/src/IconBabyChangingStationRoundedFilled.tsx b/src/IconBabyChangingStationRoundedFilled.tsx index f0f66893e..61ea9e41b 100644 --- a/src/IconBabyChangingStationRoundedFilled.tsx +++ b/src/IconBabyChangingStationRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconBabyChangingStationRoundedFilled: React.FC = ({ ) -export { IconBabyChangingStationRoundedFilled as default } +export default IconBabyChangingStationRoundedFilled diff --git a/src/IconBabyChangingStationSharp.tsx b/src/IconBabyChangingStationSharp.tsx index 4aadefd7d..084e55353 100644 --- a/src/IconBabyChangingStationSharp.tsx +++ b/src/IconBabyChangingStationSharp.tsx @@ -8,4 +8,4 @@ const IconBabyChangingStationSharp: React.FC = ({ ...props }) => ( ) -export { IconBabyChangingStationSharp as default } +export default IconBabyChangingStationSharp diff --git a/src/IconBabyChangingStationSharpFilled.tsx b/src/IconBabyChangingStationSharpFilled.tsx index 9ee63b010..1bc92917e 100644 --- a/src/IconBabyChangingStationSharpFilled.tsx +++ b/src/IconBabyChangingStationSharpFilled.tsx @@ -10,4 +10,4 @@ const IconBabyChangingStationSharpFilled: React.FC = ({ ) -export { IconBabyChangingStationSharpFilled as default } +export default IconBabyChangingStationSharpFilled diff --git a/src/IconBackHandOutlined.tsx b/src/IconBackHandOutlined.tsx index 66fe23bf7..9af5b6e8b 100644 --- a/src/IconBackHandOutlined.tsx +++ b/src/IconBackHandOutlined.tsx @@ -8,4 +8,4 @@ const IconBackHandOutlined: React.FC = ({ ...props }) => ( ) -export { IconBackHandOutlined as default } +export default IconBackHandOutlined diff --git a/src/IconBackHandOutlinedFilled.tsx b/src/IconBackHandOutlinedFilled.tsx index 0dc09d69c..47c89c7fd 100644 --- a/src/IconBackHandOutlinedFilled.tsx +++ b/src/IconBackHandOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconBackHandOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconBackHandOutlinedFilled as default } +export default IconBackHandOutlinedFilled diff --git a/src/IconBackHandRounded.tsx b/src/IconBackHandRounded.tsx index adbbd5235..252c2c2fb 100644 --- a/src/IconBackHandRounded.tsx +++ b/src/IconBackHandRounded.tsx @@ -8,4 +8,4 @@ const IconBackHandRounded: React.FC = ({ ...props }) => ( ) -export { IconBackHandRounded as default } +export default IconBackHandRounded diff --git a/src/IconBackHandRoundedFilled.tsx b/src/IconBackHandRoundedFilled.tsx index 6123fc097..351d44a3f 100644 --- a/src/IconBackHandRoundedFilled.tsx +++ b/src/IconBackHandRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconBackHandRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconBackHandRoundedFilled as default } +export default IconBackHandRoundedFilled diff --git a/src/IconBackHandSharp.tsx b/src/IconBackHandSharp.tsx index d948f2c6d..cec9d89ef 100644 --- a/src/IconBackHandSharp.tsx +++ b/src/IconBackHandSharp.tsx @@ -8,4 +8,4 @@ const IconBackHandSharp: React.FC = ({ ...props }) => ( ) -export { IconBackHandSharp as default } +export default IconBackHandSharp diff --git a/src/IconBackHandSharpFilled.tsx b/src/IconBackHandSharpFilled.tsx index 12b372066..161ae043f 100644 --- a/src/IconBackHandSharpFilled.tsx +++ b/src/IconBackHandSharpFilled.tsx @@ -8,4 +8,4 @@ const IconBackHandSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconBackHandSharpFilled as default } +export default IconBackHandSharpFilled diff --git a/src/IconBackToTabOutlined.tsx b/src/IconBackToTabOutlined.tsx index 0956d498d..6d0b45b44 100644 --- a/src/IconBackToTabOutlined.tsx +++ b/src/IconBackToTabOutlined.tsx @@ -8,4 +8,4 @@ const IconBackToTabOutlined: React.FC = ({ ...props }) => ( ) -export { IconBackToTabOutlined as default } +export default IconBackToTabOutlined diff --git a/src/IconBackToTabOutlinedFilled.tsx b/src/IconBackToTabOutlinedFilled.tsx index 6f850666c..d4e2af0f6 100644 --- a/src/IconBackToTabOutlinedFilled.tsx +++ b/src/IconBackToTabOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconBackToTabOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconBackToTabOutlinedFilled as default } +export default IconBackToTabOutlinedFilled diff --git a/src/IconBackToTabRounded.tsx b/src/IconBackToTabRounded.tsx index 90623706a..4c5e9c0fc 100644 --- a/src/IconBackToTabRounded.tsx +++ b/src/IconBackToTabRounded.tsx @@ -8,4 +8,4 @@ const IconBackToTabRounded: React.FC = ({ ...props }) => ( ) -export { IconBackToTabRounded as default } +export default IconBackToTabRounded diff --git a/src/IconBackToTabRoundedFilled.tsx b/src/IconBackToTabRoundedFilled.tsx index 559f1045c..3b2c6e11b 100644 --- a/src/IconBackToTabRoundedFilled.tsx +++ b/src/IconBackToTabRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconBackToTabRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconBackToTabRoundedFilled as default } +export default IconBackToTabRoundedFilled diff --git a/src/IconBackToTabSharp.tsx b/src/IconBackToTabSharp.tsx index 3b361a0c3..7ea453f74 100644 --- a/src/IconBackToTabSharp.tsx +++ b/src/IconBackToTabSharp.tsx @@ -8,4 +8,4 @@ const IconBackToTabSharp: React.FC = ({ ...props }) => ( ) -export { IconBackToTabSharp as default } +export default IconBackToTabSharp diff --git a/src/IconBackToTabSharpFilled.tsx b/src/IconBackToTabSharpFilled.tsx index 758be5909..22e8d12a1 100644 --- a/src/IconBackToTabSharpFilled.tsx +++ b/src/IconBackToTabSharpFilled.tsx @@ -8,4 +8,4 @@ const IconBackToTabSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconBackToTabSharpFilled as default } +export default IconBackToTabSharpFilled diff --git a/src/IconBackgroundDotLargeOutlined.tsx b/src/IconBackgroundDotLargeOutlined.tsx index 1f71b3c2c..8f1bb75f6 100644 --- a/src/IconBackgroundDotLargeOutlined.tsx +++ b/src/IconBackgroundDotLargeOutlined.tsx @@ -8,4 +8,4 @@ const IconBackgroundDotLargeOutlined: React.FC = ({ ...props }) => ( ) -export { IconBackgroundDotLargeOutlined as default } +export default IconBackgroundDotLargeOutlined diff --git a/src/IconBackgroundDotLargeOutlinedFilled.tsx b/src/IconBackgroundDotLargeOutlinedFilled.tsx index f50e12d68..b00758274 100644 --- a/src/IconBackgroundDotLargeOutlinedFilled.tsx +++ b/src/IconBackgroundDotLargeOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconBackgroundDotLargeOutlinedFilled: React.FC = ({ ) -export { IconBackgroundDotLargeOutlinedFilled as default } +export default IconBackgroundDotLargeOutlinedFilled diff --git a/src/IconBackgroundDotLargeRounded.tsx b/src/IconBackgroundDotLargeRounded.tsx index 9d2c5ab49..0aa76b0c4 100644 --- a/src/IconBackgroundDotLargeRounded.tsx +++ b/src/IconBackgroundDotLargeRounded.tsx @@ -8,4 +8,4 @@ const IconBackgroundDotLargeRounded: React.FC = ({ ...props }) => ( ) -export { IconBackgroundDotLargeRounded as default } +export default IconBackgroundDotLargeRounded diff --git a/src/IconBackgroundDotLargeRoundedFilled.tsx b/src/IconBackgroundDotLargeRoundedFilled.tsx index 64ad47bfe..8ebfdd92b 100644 --- a/src/IconBackgroundDotLargeRoundedFilled.tsx +++ b/src/IconBackgroundDotLargeRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconBackgroundDotLargeRoundedFilled: React.FC = ({ ) -export { IconBackgroundDotLargeRoundedFilled as default } +export default IconBackgroundDotLargeRoundedFilled diff --git a/src/IconBackgroundDotLargeSharp.tsx b/src/IconBackgroundDotLargeSharp.tsx index 358fcced2..2bd4fee2c 100644 --- a/src/IconBackgroundDotLargeSharp.tsx +++ b/src/IconBackgroundDotLargeSharp.tsx @@ -8,4 +8,4 @@ const IconBackgroundDotLargeSharp: React.FC = ({ ...props }) => ( ) -export { IconBackgroundDotLargeSharp as default } +export default IconBackgroundDotLargeSharp diff --git a/src/IconBackgroundDotLargeSharpFilled.tsx b/src/IconBackgroundDotLargeSharpFilled.tsx index 4a2bab0ec..1a232f835 100644 --- a/src/IconBackgroundDotLargeSharpFilled.tsx +++ b/src/IconBackgroundDotLargeSharpFilled.tsx @@ -10,4 +10,4 @@ const IconBackgroundDotLargeSharpFilled: React.FC = ({ ) -export { IconBackgroundDotLargeSharpFilled as default } +export default IconBackgroundDotLargeSharpFilled diff --git a/src/IconBackgroundDotSmallOutlined.tsx b/src/IconBackgroundDotSmallOutlined.tsx index e9128bd29..c9ef0d60a 100644 --- a/src/IconBackgroundDotSmallOutlined.tsx +++ b/src/IconBackgroundDotSmallOutlined.tsx @@ -8,4 +8,4 @@ const IconBackgroundDotSmallOutlined: React.FC = ({ ...props }) => ( ) -export { IconBackgroundDotSmallOutlined as default } +export default IconBackgroundDotSmallOutlined diff --git a/src/IconBackgroundDotSmallOutlinedFilled.tsx b/src/IconBackgroundDotSmallOutlinedFilled.tsx index 9b4395866..b55ed8aca 100644 --- a/src/IconBackgroundDotSmallOutlinedFilled.tsx +++ b/src/IconBackgroundDotSmallOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconBackgroundDotSmallOutlinedFilled: React.FC = ({ ) -export { IconBackgroundDotSmallOutlinedFilled as default } +export default IconBackgroundDotSmallOutlinedFilled diff --git a/src/IconBackgroundDotSmallRounded.tsx b/src/IconBackgroundDotSmallRounded.tsx index 93ccdb101..c12b56839 100644 --- a/src/IconBackgroundDotSmallRounded.tsx +++ b/src/IconBackgroundDotSmallRounded.tsx @@ -8,4 +8,4 @@ const IconBackgroundDotSmallRounded: React.FC = ({ ...props }) => ( ) -export { IconBackgroundDotSmallRounded as default } +export default IconBackgroundDotSmallRounded diff --git a/src/IconBackgroundDotSmallRoundedFilled.tsx b/src/IconBackgroundDotSmallRoundedFilled.tsx index 8b9168073..c69129f41 100644 --- a/src/IconBackgroundDotSmallRoundedFilled.tsx +++ b/src/IconBackgroundDotSmallRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconBackgroundDotSmallRoundedFilled: React.FC = ({ ) -export { IconBackgroundDotSmallRoundedFilled as default } +export default IconBackgroundDotSmallRoundedFilled diff --git a/src/IconBackgroundDotSmallSharp.tsx b/src/IconBackgroundDotSmallSharp.tsx index ffc379eeb..352af2329 100644 --- a/src/IconBackgroundDotSmallSharp.tsx +++ b/src/IconBackgroundDotSmallSharp.tsx @@ -8,4 +8,4 @@ const IconBackgroundDotSmallSharp: React.FC = ({ ...props }) => ( ) -export { IconBackgroundDotSmallSharp as default } +export default IconBackgroundDotSmallSharp diff --git a/src/IconBackgroundDotSmallSharpFilled.tsx b/src/IconBackgroundDotSmallSharpFilled.tsx index c680f4f42..38a85a9d7 100644 --- a/src/IconBackgroundDotSmallSharpFilled.tsx +++ b/src/IconBackgroundDotSmallSharpFilled.tsx @@ -10,4 +10,4 @@ const IconBackgroundDotSmallSharpFilled: React.FC = ({ ) -export { IconBackgroundDotSmallSharpFilled as default } +export default IconBackgroundDotSmallSharpFilled diff --git a/src/IconBackgroundGridSmallOutlined.tsx b/src/IconBackgroundGridSmallOutlined.tsx index 8542696c2..c9fd8af34 100644 --- a/src/IconBackgroundGridSmallOutlined.tsx +++ b/src/IconBackgroundGridSmallOutlined.tsx @@ -8,4 +8,4 @@ const IconBackgroundGridSmallOutlined: React.FC = ({ ...props }) => ( ) -export { IconBackgroundGridSmallOutlined as default } +export default IconBackgroundGridSmallOutlined diff --git a/src/IconBackgroundGridSmallOutlinedFilled.tsx b/src/IconBackgroundGridSmallOutlinedFilled.tsx index cd4f26087..38148f796 100644 --- a/src/IconBackgroundGridSmallOutlinedFilled.tsx +++ b/src/IconBackgroundGridSmallOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconBackgroundGridSmallOutlinedFilled: React.FC = ({ ) -export { IconBackgroundGridSmallOutlinedFilled as default } +export default IconBackgroundGridSmallOutlinedFilled diff --git a/src/IconBackgroundGridSmallRounded.tsx b/src/IconBackgroundGridSmallRounded.tsx index 459a6967a..b758d5013 100644 --- a/src/IconBackgroundGridSmallRounded.tsx +++ b/src/IconBackgroundGridSmallRounded.tsx @@ -8,4 +8,4 @@ const IconBackgroundGridSmallRounded: React.FC = ({ ...props }) => ( ) -export { IconBackgroundGridSmallRounded as default } +export default IconBackgroundGridSmallRounded diff --git a/src/IconBackgroundGridSmallRoundedFilled.tsx b/src/IconBackgroundGridSmallRoundedFilled.tsx index 316ed0fce..84f34bd18 100644 --- a/src/IconBackgroundGridSmallRoundedFilled.tsx +++ b/src/IconBackgroundGridSmallRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconBackgroundGridSmallRoundedFilled: React.FC = ({ ) -export { IconBackgroundGridSmallRoundedFilled as default } +export default IconBackgroundGridSmallRoundedFilled diff --git a/src/IconBackgroundGridSmallSharp.tsx b/src/IconBackgroundGridSmallSharp.tsx index 9bd4337b8..01f7fb8ae 100644 --- a/src/IconBackgroundGridSmallSharp.tsx +++ b/src/IconBackgroundGridSmallSharp.tsx @@ -8,4 +8,4 @@ const IconBackgroundGridSmallSharp: React.FC = ({ ...props }) => ( ) -export { IconBackgroundGridSmallSharp as default } +export default IconBackgroundGridSmallSharp diff --git a/src/IconBackgroundGridSmallSharpFilled.tsx b/src/IconBackgroundGridSmallSharpFilled.tsx index 49e7ca4d9..6d8ebc6b4 100644 --- a/src/IconBackgroundGridSmallSharpFilled.tsx +++ b/src/IconBackgroundGridSmallSharpFilled.tsx @@ -10,4 +10,4 @@ const IconBackgroundGridSmallSharpFilled: React.FC = ({ ) -export { IconBackgroundGridSmallSharpFilled as default } +export default IconBackgroundGridSmallSharpFilled diff --git a/src/IconBackgroundReplaceOutlined.tsx b/src/IconBackgroundReplaceOutlined.tsx index d57519127..317c3020f 100644 --- a/src/IconBackgroundReplaceOutlined.tsx +++ b/src/IconBackgroundReplaceOutlined.tsx @@ -8,4 +8,4 @@ const IconBackgroundReplaceOutlined: React.FC = ({ ...props }) => ( ) -export { IconBackgroundReplaceOutlined as default } +export default IconBackgroundReplaceOutlined diff --git a/src/IconBackgroundReplaceOutlinedFilled.tsx b/src/IconBackgroundReplaceOutlinedFilled.tsx index 0e89015b7..0df730530 100644 --- a/src/IconBackgroundReplaceOutlinedFilled.tsx +++ b/src/IconBackgroundReplaceOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconBackgroundReplaceOutlinedFilled: React.FC = ({ ) -export { IconBackgroundReplaceOutlinedFilled as default } +export default IconBackgroundReplaceOutlinedFilled diff --git a/src/IconBackgroundReplaceRounded.tsx b/src/IconBackgroundReplaceRounded.tsx index fff0ad404..17c6c62f1 100644 --- a/src/IconBackgroundReplaceRounded.tsx +++ b/src/IconBackgroundReplaceRounded.tsx @@ -8,4 +8,4 @@ const IconBackgroundReplaceRounded: React.FC = ({ ...props }) => ( ) -export { IconBackgroundReplaceRounded as default } +export default IconBackgroundReplaceRounded diff --git a/src/IconBackgroundReplaceRoundedFilled.tsx b/src/IconBackgroundReplaceRoundedFilled.tsx index 20ef10317..163251d43 100644 --- a/src/IconBackgroundReplaceRoundedFilled.tsx +++ b/src/IconBackgroundReplaceRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconBackgroundReplaceRoundedFilled: React.FC = ({ ) -export { IconBackgroundReplaceRoundedFilled as default } +export default IconBackgroundReplaceRoundedFilled diff --git a/src/IconBackgroundReplaceSharp.tsx b/src/IconBackgroundReplaceSharp.tsx index 4616ecd67..1722210ae 100644 --- a/src/IconBackgroundReplaceSharp.tsx +++ b/src/IconBackgroundReplaceSharp.tsx @@ -8,4 +8,4 @@ const IconBackgroundReplaceSharp: React.FC = ({ ...props }) => ( ) -export { IconBackgroundReplaceSharp as default } +export default IconBackgroundReplaceSharp diff --git a/src/IconBackgroundReplaceSharpFilled.tsx b/src/IconBackgroundReplaceSharpFilled.tsx index daa9b3d3e..36b48b8b1 100644 --- a/src/IconBackgroundReplaceSharpFilled.tsx +++ b/src/IconBackgroundReplaceSharpFilled.tsx @@ -10,4 +10,4 @@ const IconBackgroundReplaceSharpFilled: React.FC = ({ ) -export { IconBackgroundReplaceSharpFilled as default } +export default IconBackgroundReplaceSharpFilled diff --git a/src/IconBacklightHighOffOutlined.tsx b/src/IconBacklightHighOffOutlined.tsx index 0ee2c3ef4..0e93112b4 100644 --- a/src/IconBacklightHighOffOutlined.tsx +++ b/src/IconBacklightHighOffOutlined.tsx @@ -8,4 +8,4 @@ const IconBacklightHighOffOutlined: React.FC = ({ ...props }) => ( ) -export { IconBacklightHighOffOutlined as default } +export default IconBacklightHighOffOutlined diff --git a/src/IconBacklightHighOffOutlinedFilled.tsx b/src/IconBacklightHighOffOutlinedFilled.tsx index 4c9014bfa..4d6bdc595 100644 --- a/src/IconBacklightHighOffOutlinedFilled.tsx +++ b/src/IconBacklightHighOffOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconBacklightHighOffOutlinedFilled: React.FC = ({ ) -export { IconBacklightHighOffOutlinedFilled as default } +export default IconBacklightHighOffOutlinedFilled diff --git a/src/IconBacklightHighOffRounded.tsx b/src/IconBacklightHighOffRounded.tsx index 4a7e9fac5..d49b5aa3b 100644 --- a/src/IconBacklightHighOffRounded.tsx +++ b/src/IconBacklightHighOffRounded.tsx @@ -8,4 +8,4 @@ const IconBacklightHighOffRounded: React.FC = ({ ...props }) => ( ) -export { IconBacklightHighOffRounded as default } +export default IconBacklightHighOffRounded diff --git a/src/IconBacklightHighOffRoundedFilled.tsx b/src/IconBacklightHighOffRoundedFilled.tsx index d19202a9e..a0d2a9c74 100644 --- a/src/IconBacklightHighOffRoundedFilled.tsx +++ b/src/IconBacklightHighOffRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconBacklightHighOffRoundedFilled: React.FC = ({ ) -export { IconBacklightHighOffRoundedFilled as default } +export default IconBacklightHighOffRoundedFilled diff --git a/src/IconBacklightHighOffSharp.tsx b/src/IconBacklightHighOffSharp.tsx index 65a084887..e139adfba 100644 --- a/src/IconBacklightHighOffSharp.tsx +++ b/src/IconBacklightHighOffSharp.tsx @@ -8,4 +8,4 @@ const IconBacklightHighOffSharp: React.FC = ({ ...props }) => ( ) -export { IconBacklightHighOffSharp as default } +export default IconBacklightHighOffSharp diff --git a/src/IconBacklightHighOffSharpFilled.tsx b/src/IconBacklightHighOffSharpFilled.tsx index f02bb19f9..cc7130892 100644 --- a/src/IconBacklightHighOffSharpFilled.tsx +++ b/src/IconBacklightHighOffSharpFilled.tsx @@ -8,4 +8,4 @@ const IconBacklightHighOffSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconBacklightHighOffSharpFilled as default } +export default IconBacklightHighOffSharpFilled diff --git a/src/IconBacklightHighOutlined.tsx b/src/IconBacklightHighOutlined.tsx index 1449b1228..3bba3fa80 100644 --- a/src/IconBacklightHighOutlined.tsx +++ b/src/IconBacklightHighOutlined.tsx @@ -8,4 +8,4 @@ const IconBacklightHighOutlined: React.FC = ({ ...props }) => ( ) -export { IconBacklightHighOutlined as default } +export default IconBacklightHighOutlined diff --git a/src/IconBacklightHighOutlinedFilled.tsx b/src/IconBacklightHighOutlinedFilled.tsx index e43faedac..12c8b7e93 100644 --- a/src/IconBacklightHighOutlinedFilled.tsx +++ b/src/IconBacklightHighOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconBacklightHighOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconBacklightHighOutlinedFilled as default } +export default IconBacklightHighOutlinedFilled diff --git a/src/IconBacklightHighRounded.tsx b/src/IconBacklightHighRounded.tsx index f4ac75331..0611b8ec3 100644 --- a/src/IconBacklightHighRounded.tsx +++ b/src/IconBacklightHighRounded.tsx @@ -8,4 +8,4 @@ const IconBacklightHighRounded: React.FC = ({ ...props }) => ( ) -export { IconBacklightHighRounded as default } +export default IconBacklightHighRounded diff --git a/src/IconBacklightHighRoundedFilled.tsx b/src/IconBacklightHighRoundedFilled.tsx index abeebd8ee..f9b2073d4 100644 --- a/src/IconBacklightHighRoundedFilled.tsx +++ b/src/IconBacklightHighRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconBacklightHighRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconBacklightHighRoundedFilled as default } +export default IconBacklightHighRoundedFilled diff --git a/src/IconBacklightHighSharp.tsx b/src/IconBacklightHighSharp.tsx index 67fcf73ef..435831845 100644 --- a/src/IconBacklightHighSharp.tsx +++ b/src/IconBacklightHighSharp.tsx @@ -8,4 +8,4 @@ const IconBacklightHighSharp: React.FC = ({ ...props }) => ( ) -export { IconBacklightHighSharp as default } +export default IconBacklightHighSharp diff --git a/src/IconBacklightHighSharpFilled.tsx b/src/IconBacklightHighSharpFilled.tsx index 03f792f96..40d9ad6e8 100644 --- a/src/IconBacklightHighSharpFilled.tsx +++ b/src/IconBacklightHighSharpFilled.tsx @@ -8,4 +8,4 @@ const IconBacklightHighSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconBacklightHighSharpFilled as default } +export default IconBacklightHighSharpFilled diff --git a/src/IconBacklightLowOutlined.tsx b/src/IconBacklightLowOutlined.tsx index 0f40f66cd..2c59a4174 100644 --- a/src/IconBacklightLowOutlined.tsx +++ b/src/IconBacklightLowOutlined.tsx @@ -8,4 +8,4 @@ const IconBacklightLowOutlined: React.FC = ({ ...props }) => ( ) -export { IconBacklightLowOutlined as default } +export default IconBacklightLowOutlined diff --git a/src/IconBacklightLowOutlinedFilled.tsx b/src/IconBacklightLowOutlinedFilled.tsx index 4f5f9c2c3..a442cdf47 100644 --- a/src/IconBacklightLowOutlinedFilled.tsx +++ b/src/IconBacklightLowOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconBacklightLowOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconBacklightLowOutlinedFilled as default } +export default IconBacklightLowOutlinedFilled diff --git a/src/IconBacklightLowRounded.tsx b/src/IconBacklightLowRounded.tsx index 8c0a986a3..797077779 100644 --- a/src/IconBacklightLowRounded.tsx +++ b/src/IconBacklightLowRounded.tsx @@ -8,4 +8,4 @@ const IconBacklightLowRounded: React.FC = ({ ...props }) => ( ) -export { IconBacklightLowRounded as default } +export default IconBacklightLowRounded diff --git a/src/IconBacklightLowRoundedFilled.tsx b/src/IconBacklightLowRoundedFilled.tsx index db9e55ede..ac8da356e 100644 --- a/src/IconBacklightLowRoundedFilled.tsx +++ b/src/IconBacklightLowRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconBacklightLowRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconBacklightLowRoundedFilled as default } +export default IconBacklightLowRoundedFilled diff --git a/src/IconBacklightLowSharp.tsx b/src/IconBacklightLowSharp.tsx index c404286a6..fb33a3024 100644 --- a/src/IconBacklightLowSharp.tsx +++ b/src/IconBacklightLowSharp.tsx @@ -8,4 +8,4 @@ const IconBacklightLowSharp: React.FC = ({ ...props }) => ( ) -export { IconBacklightLowSharp as default } +export default IconBacklightLowSharp diff --git a/src/IconBacklightLowSharpFilled.tsx b/src/IconBacklightLowSharpFilled.tsx index 5738004e7..e34bd9967 100644 --- a/src/IconBacklightLowSharpFilled.tsx +++ b/src/IconBacklightLowSharpFilled.tsx @@ -8,4 +8,4 @@ const IconBacklightLowSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconBacklightLowSharpFilled as default } +export default IconBacklightLowSharpFilled diff --git a/src/IconBackpackOutlined.tsx b/src/IconBackpackOutlined.tsx index 77197f806..bdeeb7fa7 100644 --- a/src/IconBackpackOutlined.tsx +++ b/src/IconBackpackOutlined.tsx @@ -8,4 +8,4 @@ const IconBackpackOutlined: React.FC = ({ ...props }) => ( ) -export { IconBackpackOutlined as default } +export default IconBackpackOutlined diff --git a/src/IconBackpackOutlinedFilled.tsx b/src/IconBackpackOutlinedFilled.tsx index 3daa56cbb..8374ab707 100644 --- a/src/IconBackpackOutlinedFilled.tsx +++ b/src/IconBackpackOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconBackpackOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconBackpackOutlinedFilled as default } +export default IconBackpackOutlinedFilled diff --git a/src/IconBackpackRounded.tsx b/src/IconBackpackRounded.tsx index b73f6544b..b4e314709 100644 --- a/src/IconBackpackRounded.tsx +++ b/src/IconBackpackRounded.tsx @@ -8,4 +8,4 @@ const IconBackpackRounded: React.FC = ({ ...props }) => ( ) -export { IconBackpackRounded as default } +export default IconBackpackRounded diff --git a/src/IconBackpackRoundedFilled.tsx b/src/IconBackpackRoundedFilled.tsx index 20c216729..c33f4d71a 100644 --- a/src/IconBackpackRoundedFilled.tsx +++ b/src/IconBackpackRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconBackpackRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconBackpackRoundedFilled as default } +export default IconBackpackRoundedFilled diff --git a/src/IconBackpackSharp.tsx b/src/IconBackpackSharp.tsx index 0b04c1fa8..f45856428 100644 --- a/src/IconBackpackSharp.tsx +++ b/src/IconBackpackSharp.tsx @@ -8,4 +8,4 @@ const IconBackpackSharp: React.FC = ({ ...props }) => ( ) -export { IconBackpackSharp as default } +export default IconBackpackSharp diff --git a/src/IconBackpackSharpFilled.tsx b/src/IconBackpackSharpFilled.tsx index 2a324b619..e74ac2030 100644 --- a/src/IconBackpackSharpFilled.tsx +++ b/src/IconBackpackSharpFilled.tsx @@ -8,4 +8,4 @@ const IconBackpackSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconBackpackSharpFilled as default } +export default IconBackpackSharpFilled diff --git a/src/IconBackspaceOutlined.tsx b/src/IconBackspaceOutlined.tsx index 60194c24d..d0aa68fe2 100644 --- a/src/IconBackspaceOutlined.tsx +++ b/src/IconBackspaceOutlined.tsx @@ -8,4 +8,4 @@ const IconBackspaceOutlined: React.FC = ({ ...props }) => ( ) -export { IconBackspaceOutlined as default } +export default IconBackspaceOutlined diff --git a/src/IconBackspaceOutlinedFilled.tsx b/src/IconBackspaceOutlinedFilled.tsx index 6e04cca70..84985b64a 100644 --- a/src/IconBackspaceOutlinedFilled.tsx +++ b/src/IconBackspaceOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconBackspaceOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconBackspaceOutlinedFilled as default } +export default IconBackspaceOutlinedFilled diff --git a/src/IconBackspaceRounded.tsx b/src/IconBackspaceRounded.tsx index 59dddc778..0e1f576aa 100644 --- a/src/IconBackspaceRounded.tsx +++ b/src/IconBackspaceRounded.tsx @@ -8,4 +8,4 @@ const IconBackspaceRounded: React.FC = ({ ...props }) => ( ) -export { IconBackspaceRounded as default } +export default IconBackspaceRounded diff --git a/src/IconBackspaceRoundedFilled.tsx b/src/IconBackspaceRoundedFilled.tsx index 60626c5ad..abcd83c59 100644 --- a/src/IconBackspaceRoundedFilled.tsx +++ b/src/IconBackspaceRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconBackspaceRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconBackspaceRoundedFilled as default } +export default IconBackspaceRoundedFilled diff --git a/src/IconBackspaceSharp.tsx b/src/IconBackspaceSharp.tsx index f498c1425..5a9b8af9d 100644 --- a/src/IconBackspaceSharp.tsx +++ b/src/IconBackspaceSharp.tsx @@ -8,4 +8,4 @@ const IconBackspaceSharp: React.FC = ({ ...props }) => ( ) -export { IconBackspaceSharp as default } +export default IconBackspaceSharp diff --git a/src/IconBackspaceSharpFilled.tsx b/src/IconBackspaceSharpFilled.tsx index 2a90597ea..3d76c961c 100644 --- a/src/IconBackspaceSharpFilled.tsx +++ b/src/IconBackspaceSharpFilled.tsx @@ -8,4 +8,4 @@ const IconBackspaceSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconBackspaceSharpFilled as default } +export default IconBackspaceSharpFilled diff --git a/src/IconBackupOutlined.tsx b/src/IconBackupOutlined.tsx index 3f5187dee..983a32e09 100644 --- a/src/IconBackupOutlined.tsx +++ b/src/IconBackupOutlined.tsx @@ -8,4 +8,4 @@ const IconBackupOutlined: React.FC = ({ ...props }) => ( ) -export { IconBackupOutlined as default } +export default IconBackupOutlined diff --git a/src/IconBackupOutlinedFilled.tsx b/src/IconBackupOutlinedFilled.tsx index 9146f4c90..22280a569 100644 --- a/src/IconBackupOutlinedFilled.tsx +++ b/src/IconBackupOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconBackupOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconBackupOutlinedFilled as default } +export default IconBackupOutlinedFilled diff --git a/src/IconBackupRounded.tsx b/src/IconBackupRounded.tsx index a7cc3461e..ae5b12dd1 100644 --- a/src/IconBackupRounded.tsx +++ b/src/IconBackupRounded.tsx @@ -8,4 +8,4 @@ const IconBackupRounded: React.FC = ({ ...props }) => ( ) -export { IconBackupRounded as default } +export default IconBackupRounded diff --git a/src/IconBackupRoundedFilled.tsx b/src/IconBackupRoundedFilled.tsx index 4ff85e612..1b28bf156 100644 --- a/src/IconBackupRoundedFilled.tsx +++ b/src/IconBackupRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconBackupRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconBackupRoundedFilled as default } +export default IconBackupRoundedFilled diff --git a/src/IconBackupSharp.tsx b/src/IconBackupSharp.tsx index c49549950..5940346aa 100644 --- a/src/IconBackupSharp.tsx +++ b/src/IconBackupSharp.tsx @@ -8,4 +8,4 @@ const IconBackupSharp: React.FC = ({ ...props }) => ( ) -export { IconBackupSharp as default } +export default IconBackupSharp diff --git a/src/IconBackupSharpFilled.tsx b/src/IconBackupSharpFilled.tsx index d11c9d791..5fb8f4d9b 100644 --- a/src/IconBackupSharpFilled.tsx +++ b/src/IconBackupSharpFilled.tsx @@ -8,4 +8,4 @@ const IconBackupSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconBackupSharpFilled as default } +export default IconBackupSharpFilled diff --git a/src/IconBackupTableOutlined.tsx b/src/IconBackupTableOutlined.tsx index 2e35b9173..f3cde6862 100644 --- a/src/IconBackupTableOutlined.tsx +++ b/src/IconBackupTableOutlined.tsx @@ -8,4 +8,4 @@ const IconBackupTableOutlined: React.FC = ({ ...props }) => ( ) -export { IconBackupTableOutlined as default } +export default IconBackupTableOutlined diff --git a/src/IconBackupTableOutlinedFilled.tsx b/src/IconBackupTableOutlinedFilled.tsx index d541c88ed..e8cb929af 100644 --- a/src/IconBackupTableOutlinedFilled.tsx +++ b/src/IconBackupTableOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconBackupTableOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconBackupTableOutlinedFilled as default } +export default IconBackupTableOutlinedFilled diff --git a/src/IconBackupTableRounded.tsx b/src/IconBackupTableRounded.tsx index 377c22ce2..a1b88198c 100644 --- a/src/IconBackupTableRounded.tsx +++ b/src/IconBackupTableRounded.tsx @@ -8,4 +8,4 @@ const IconBackupTableRounded: React.FC = ({ ...props }) => ( ) -export { IconBackupTableRounded as default } +export default IconBackupTableRounded diff --git a/src/IconBackupTableRoundedFilled.tsx b/src/IconBackupTableRoundedFilled.tsx index d4933c339..42552224c 100644 --- a/src/IconBackupTableRoundedFilled.tsx +++ b/src/IconBackupTableRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconBackupTableRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconBackupTableRoundedFilled as default } +export default IconBackupTableRoundedFilled diff --git a/src/IconBackupTableSharp.tsx b/src/IconBackupTableSharp.tsx index ca11a2aba..d1866f2dd 100644 --- a/src/IconBackupTableSharp.tsx +++ b/src/IconBackupTableSharp.tsx @@ -8,4 +8,4 @@ const IconBackupTableSharp: React.FC = ({ ...props }) => ( ) -export { IconBackupTableSharp as default } +export default IconBackupTableSharp diff --git a/src/IconBackupTableSharpFilled.tsx b/src/IconBackupTableSharpFilled.tsx index da7880c30..7ca6d087d 100644 --- a/src/IconBackupTableSharpFilled.tsx +++ b/src/IconBackupTableSharpFilled.tsx @@ -8,4 +8,4 @@ const IconBackupTableSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconBackupTableSharpFilled as default } +export default IconBackupTableSharpFilled diff --git a/src/IconBadgeCriticalBatteryOutlined.tsx b/src/IconBadgeCriticalBatteryOutlined.tsx index cc861883a..ddfc54d33 100644 --- a/src/IconBadgeCriticalBatteryOutlined.tsx +++ b/src/IconBadgeCriticalBatteryOutlined.tsx @@ -10,4 +10,4 @@ const IconBadgeCriticalBatteryOutlined: React.FC = ({ ) -export { IconBadgeCriticalBatteryOutlined as default } +export default IconBadgeCriticalBatteryOutlined diff --git a/src/IconBadgeCriticalBatteryOutlinedFilled.tsx b/src/IconBadgeCriticalBatteryOutlinedFilled.tsx index 528faa96c..7bbcfeca3 100644 --- a/src/IconBadgeCriticalBatteryOutlinedFilled.tsx +++ b/src/IconBadgeCriticalBatteryOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconBadgeCriticalBatteryOutlinedFilled: React.FC = ({ ) -export { IconBadgeCriticalBatteryOutlinedFilled as default } +export default IconBadgeCriticalBatteryOutlinedFilled diff --git a/src/IconBadgeCriticalBatteryRounded.tsx b/src/IconBadgeCriticalBatteryRounded.tsx index 7e357d699..172c1b630 100644 --- a/src/IconBadgeCriticalBatteryRounded.tsx +++ b/src/IconBadgeCriticalBatteryRounded.tsx @@ -8,4 +8,4 @@ const IconBadgeCriticalBatteryRounded: React.FC = ({ ...props }) => ( ) -export { IconBadgeCriticalBatteryRounded as default } +export default IconBadgeCriticalBatteryRounded diff --git a/src/IconBadgeCriticalBatteryRoundedFilled.tsx b/src/IconBadgeCriticalBatteryRoundedFilled.tsx index 27b8726ea..84ba774c6 100644 --- a/src/IconBadgeCriticalBatteryRoundedFilled.tsx +++ b/src/IconBadgeCriticalBatteryRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconBadgeCriticalBatteryRoundedFilled: React.FC = ({ ) -export { IconBadgeCriticalBatteryRoundedFilled as default } +export default IconBadgeCriticalBatteryRoundedFilled diff --git a/src/IconBadgeCriticalBatterySharp.tsx b/src/IconBadgeCriticalBatterySharp.tsx index ffc09fae6..eb68695ed 100644 --- a/src/IconBadgeCriticalBatterySharp.tsx +++ b/src/IconBadgeCriticalBatterySharp.tsx @@ -8,4 +8,4 @@ const IconBadgeCriticalBatterySharp: React.FC = ({ ...props }) => ( ) -export { IconBadgeCriticalBatterySharp as default } +export default IconBadgeCriticalBatterySharp diff --git a/src/IconBadgeCriticalBatterySharpFilled.tsx b/src/IconBadgeCriticalBatterySharpFilled.tsx index 948099d73..60592a09d 100644 --- a/src/IconBadgeCriticalBatterySharpFilled.tsx +++ b/src/IconBadgeCriticalBatterySharpFilled.tsx @@ -10,4 +10,4 @@ const IconBadgeCriticalBatterySharpFilled: React.FC = ({ ) -export { IconBadgeCriticalBatterySharpFilled as default } +export default IconBadgeCriticalBatterySharpFilled diff --git a/src/IconBadgeOutlined.tsx b/src/IconBadgeOutlined.tsx index c1ac13686..3f644319c 100644 --- a/src/IconBadgeOutlined.tsx +++ b/src/IconBadgeOutlined.tsx @@ -8,4 +8,4 @@ const IconBadgeOutlined: React.FC = ({ ...props }) => ( ) -export { IconBadgeOutlined as default } +export default IconBadgeOutlined diff --git a/src/IconBadgeOutlinedFilled.tsx b/src/IconBadgeOutlinedFilled.tsx index 80fd7f45f..70d5fca19 100644 --- a/src/IconBadgeOutlinedFilled.tsx +++ b/src/IconBadgeOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconBadgeOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconBadgeOutlinedFilled as default } +export default IconBadgeOutlinedFilled diff --git a/src/IconBadgeRounded.tsx b/src/IconBadgeRounded.tsx index 0bf2abb66..6b0488a2a 100644 --- a/src/IconBadgeRounded.tsx +++ b/src/IconBadgeRounded.tsx @@ -8,4 +8,4 @@ const IconBadgeRounded: React.FC = ({ ...props }) => ( ) -export { IconBadgeRounded as default } +export default IconBadgeRounded diff --git a/src/IconBadgeRoundedFilled.tsx b/src/IconBadgeRoundedFilled.tsx index 32fbae9e0..54083d446 100644 --- a/src/IconBadgeRoundedFilled.tsx +++ b/src/IconBadgeRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconBadgeRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconBadgeRoundedFilled as default } +export default IconBadgeRoundedFilled diff --git a/src/IconBadgeSharp.tsx b/src/IconBadgeSharp.tsx index c23a50407..b02a783b8 100644 --- a/src/IconBadgeSharp.tsx +++ b/src/IconBadgeSharp.tsx @@ -8,4 +8,4 @@ const IconBadgeSharp: React.FC = ({ ...props }) => ( ) -export { IconBadgeSharp as default } +export default IconBadgeSharp diff --git a/src/IconBadgeSharpFilled.tsx b/src/IconBadgeSharpFilled.tsx index 9b2e834a8..46efa9b3c 100644 --- a/src/IconBadgeSharpFilled.tsx +++ b/src/IconBadgeSharpFilled.tsx @@ -8,4 +8,4 @@ const IconBadgeSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconBadgeSharpFilled as default } +export default IconBadgeSharpFilled diff --git a/src/IconBakeryDiningOutlined.tsx b/src/IconBakeryDiningOutlined.tsx index 64dbc878b..efc93002f 100644 --- a/src/IconBakeryDiningOutlined.tsx +++ b/src/IconBakeryDiningOutlined.tsx @@ -8,4 +8,4 @@ const IconBakeryDiningOutlined: React.FC = ({ ...props }) => ( ) -export { IconBakeryDiningOutlined as default } +export default IconBakeryDiningOutlined diff --git a/src/IconBakeryDiningOutlinedFilled.tsx b/src/IconBakeryDiningOutlinedFilled.tsx index 671f772c3..accc2ca86 100644 --- a/src/IconBakeryDiningOutlinedFilled.tsx +++ b/src/IconBakeryDiningOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconBakeryDiningOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconBakeryDiningOutlinedFilled as default } +export default IconBakeryDiningOutlinedFilled diff --git a/src/IconBakeryDiningRounded.tsx b/src/IconBakeryDiningRounded.tsx index 5d7269c3b..d1fd27bb8 100644 --- a/src/IconBakeryDiningRounded.tsx +++ b/src/IconBakeryDiningRounded.tsx @@ -8,4 +8,4 @@ const IconBakeryDiningRounded: React.FC = ({ ...props }) => ( ) -export { IconBakeryDiningRounded as default } +export default IconBakeryDiningRounded diff --git a/src/IconBakeryDiningRoundedFilled.tsx b/src/IconBakeryDiningRoundedFilled.tsx index ca2eecae4..7ff139e06 100644 --- a/src/IconBakeryDiningRoundedFilled.tsx +++ b/src/IconBakeryDiningRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconBakeryDiningRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconBakeryDiningRoundedFilled as default } +export default IconBakeryDiningRoundedFilled diff --git a/src/IconBakeryDiningSharp.tsx b/src/IconBakeryDiningSharp.tsx index 17a0ef2c9..6636ee7c7 100644 --- a/src/IconBakeryDiningSharp.tsx +++ b/src/IconBakeryDiningSharp.tsx @@ -8,4 +8,4 @@ const IconBakeryDiningSharp: React.FC = ({ ...props }) => ( ) -export { IconBakeryDiningSharp as default } +export default IconBakeryDiningSharp diff --git a/src/IconBakeryDiningSharpFilled.tsx b/src/IconBakeryDiningSharpFilled.tsx index 4c4d83926..33fbabe51 100644 --- a/src/IconBakeryDiningSharpFilled.tsx +++ b/src/IconBakeryDiningSharpFilled.tsx @@ -8,4 +8,4 @@ const IconBakeryDiningSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconBakeryDiningSharpFilled as default } +export default IconBakeryDiningSharpFilled diff --git a/src/IconBalanceOutlined.tsx b/src/IconBalanceOutlined.tsx index 69a520a03..aa647fc7b 100644 --- a/src/IconBalanceOutlined.tsx +++ b/src/IconBalanceOutlined.tsx @@ -8,4 +8,4 @@ const IconBalanceOutlined: React.FC = ({ ...props }) => ( ) -export { IconBalanceOutlined as default } +export default IconBalanceOutlined diff --git a/src/IconBalanceOutlinedFilled.tsx b/src/IconBalanceOutlinedFilled.tsx index 76e93f7e4..c5a3e55df 100644 --- a/src/IconBalanceOutlinedFilled.tsx +++ b/src/IconBalanceOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconBalanceOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconBalanceOutlinedFilled as default } +export default IconBalanceOutlinedFilled diff --git a/src/IconBalanceRounded.tsx b/src/IconBalanceRounded.tsx index 79713c363..8a5d38ff7 100644 --- a/src/IconBalanceRounded.tsx +++ b/src/IconBalanceRounded.tsx @@ -8,4 +8,4 @@ const IconBalanceRounded: React.FC = ({ ...props }) => ( ) -export { IconBalanceRounded as default } +export default IconBalanceRounded diff --git a/src/IconBalanceRoundedFilled.tsx b/src/IconBalanceRoundedFilled.tsx index d88ad25f1..8f8eab0ce 100644 --- a/src/IconBalanceRoundedFilled.tsx +++ b/src/IconBalanceRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconBalanceRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconBalanceRoundedFilled as default } +export default IconBalanceRoundedFilled diff --git a/src/IconBalanceSharp.tsx b/src/IconBalanceSharp.tsx index 8c65dd591..a8961441b 100644 --- a/src/IconBalanceSharp.tsx +++ b/src/IconBalanceSharp.tsx @@ -8,4 +8,4 @@ const IconBalanceSharp: React.FC = ({ ...props }) => ( ) -export { IconBalanceSharp as default } +export default IconBalanceSharp diff --git a/src/IconBalanceSharpFilled.tsx b/src/IconBalanceSharpFilled.tsx index 1e52a96b7..d592fc161 100644 --- a/src/IconBalanceSharpFilled.tsx +++ b/src/IconBalanceSharpFilled.tsx @@ -8,4 +8,4 @@ const IconBalanceSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconBalanceSharpFilled as default } +export default IconBalanceSharpFilled diff --git a/src/IconBalconyOutlined.tsx b/src/IconBalconyOutlined.tsx index 85e299f2a..7cabe5c6f 100644 --- a/src/IconBalconyOutlined.tsx +++ b/src/IconBalconyOutlined.tsx @@ -8,4 +8,4 @@ const IconBalconyOutlined: React.FC = ({ ...props }) => ( ) -export { IconBalconyOutlined as default } +export default IconBalconyOutlined diff --git a/src/IconBalconyOutlinedFilled.tsx b/src/IconBalconyOutlinedFilled.tsx index 2ba2e4e89..85889e880 100644 --- a/src/IconBalconyOutlinedFilled.tsx +++ b/src/IconBalconyOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconBalconyOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconBalconyOutlinedFilled as default } +export default IconBalconyOutlinedFilled diff --git a/src/IconBalconyRounded.tsx b/src/IconBalconyRounded.tsx index 06944cc45..e031fab63 100644 --- a/src/IconBalconyRounded.tsx +++ b/src/IconBalconyRounded.tsx @@ -8,4 +8,4 @@ const IconBalconyRounded: React.FC = ({ ...props }) => ( ) -export { IconBalconyRounded as default } +export default IconBalconyRounded diff --git a/src/IconBalconyRoundedFilled.tsx b/src/IconBalconyRoundedFilled.tsx index 1deb7d71b..4bc68d725 100644 --- a/src/IconBalconyRoundedFilled.tsx +++ b/src/IconBalconyRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconBalconyRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconBalconyRoundedFilled as default } +export default IconBalconyRoundedFilled diff --git a/src/IconBalconySharp.tsx b/src/IconBalconySharp.tsx index 53ef09256..913a97da0 100644 --- a/src/IconBalconySharp.tsx +++ b/src/IconBalconySharp.tsx @@ -8,4 +8,4 @@ const IconBalconySharp: React.FC = ({ ...props }) => ( ) -export { IconBalconySharp as default } +export default IconBalconySharp diff --git a/src/IconBalconySharpFilled.tsx b/src/IconBalconySharpFilled.tsx index 33a4626a8..1aed04208 100644 --- a/src/IconBalconySharpFilled.tsx +++ b/src/IconBalconySharpFilled.tsx @@ -8,4 +8,4 @@ const IconBalconySharpFilled: React.FC = ({ ...props }) => ( ) -export { IconBalconySharpFilled as default } +export default IconBalconySharpFilled diff --git a/src/IconBallotOutlined.tsx b/src/IconBallotOutlined.tsx index e0a939bee..c36838dad 100644 --- a/src/IconBallotOutlined.tsx +++ b/src/IconBallotOutlined.tsx @@ -8,4 +8,4 @@ const IconBallotOutlined: React.FC = ({ ...props }) => ( ) -export { IconBallotOutlined as default } +export default IconBallotOutlined diff --git a/src/IconBallotOutlinedFilled.tsx b/src/IconBallotOutlinedFilled.tsx index 732331d98..ff30d3e3c 100644 --- a/src/IconBallotOutlinedFilled.tsx +++ b/src/IconBallotOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconBallotOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconBallotOutlinedFilled as default } +export default IconBallotOutlinedFilled diff --git a/src/IconBallotRounded.tsx b/src/IconBallotRounded.tsx index 906a12ed6..216aa027d 100644 --- a/src/IconBallotRounded.tsx +++ b/src/IconBallotRounded.tsx @@ -8,4 +8,4 @@ const IconBallotRounded: React.FC = ({ ...props }) => ( ) -export { IconBallotRounded as default } +export default IconBallotRounded diff --git a/src/IconBallotRoundedFilled.tsx b/src/IconBallotRoundedFilled.tsx index 218d98060..92da730e6 100644 --- a/src/IconBallotRoundedFilled.tsx +++ b/src/IconBallotRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconBallotRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconBallotRoundedFilled as default } +export default IconBallotRoundedFilled diff --git a/src/IconBallotSharp.tsx b/src/IconBallotSharp.tsx index 73e09e241..9674bad72 100644 --- a/src/IconBallotSharp.tsx +++ b/src/IconBallotSharp.tsx @@ -8,4 +8,4 @@ const IconBallotSharp: React.FC = ({ ...props }) => ( ) -export { IconBallotSharp as default } +export default IconBallotSharp diff --git a/src/IconBallotSharpFilled.tsx b/src/IconBallotSharpFilled.tsx index 0130eede8..e27fb840c 100644 --- a/src/IconBallotSharpFilled.tsx +++ b/src/IconBallotSharpFilled.tsx @@ -8,4 +8,4 @@ const IconBallotSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconBallotSharpFilled as default } +export default IconBallotSharpFilled diff --git a/src/IconBarChart4BarsOutlined.tsx b/src/IconBarChart4BarsOutlined.tsx index 72896fa9c..06db2494f 100644 --- a/src/IconBarChart4BarsOutlined.tsx +++ b/src/IconBarChart4BarsOutlined.tsx @@ -8,4 +8,4 @@ const IconBarChart4BarsOutlined: React.FC = ({ ...props }) => ( ) -export { IconBarChart4BarsOutlined as default } +export default IconBarChart4BarsOutlined diff --git a/src/IconBarChart4BarsOutlinedFilled.tsx b/src/IconBarChart4BarsOutlinedFilled.tsx index 4673eabb4..1ce2718bd 100644 --- a/src/IconBarChart4BarsOutlinedFilled.tsx +++ b/src/IconBarChart4BarsOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconBarChart4BarsOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconBarChart4BarsOutlinedFilled as default } +export default IconBarChart4BarsOutlinedFilled diff --git a/src/IconBarChart4BarsRounded.tsx b/src/IconBarChart4BarsRounded.tsx index f23755bf5..a7ad63792 100644 --- a/src/IconBarChart4BarsRounded.tsx +++ b/src/IconBarChart4BarsRounded.tsx @@ -8,4 +8,4 @@ const IconBarChart4BarsRounded: React.FC = ({ ...props }) => ( ) -export { IconBarChart4BarsRounded as default } +export default IconBarChart4BarsRounded diff --git a/src/IconBarChart4BarsRoundedFilled.tsx b/src/IconBarChart4BarsRoundedFilled.tsx index d673c1ed4..2b10bfebc 100644 --- a/src/IconBarChart4BarsRoundedFilled.tsx +++ b/src/IconBarChart4BarsRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconBarChart4BarsRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconBarChart4BarsRoundedFilled as default } +export default IconBarChart4BarsRoundedFilled diff --git a/src/IconBarChart4BarsSharp.tsx b/src/IconBarChart4BarsSharp.tsx index e9484e376..5aaeae4b1 100644 --- a/src/IconBarChart4BarsSharp.tsx +++ b/src/IconBarChart4BarsSharp.tsx @@ -8,4 +8,4 @@ const IconBarChart4BarsSharp: React.FC = ({ ...props }) => ( ) -export { IconBarChart4BarsSharp as default } +export default IconBarChart4BarsSharp diff --git a/src/IconBarChart4BarsSharpFilled.tsx b/src/IconBarChart4BarsSharpFilled.tsx index fe2052f43..2cff6ca45 100644 --- a/src/IconBarChart4BarsSharpFilled.tsx +++ b/src/IconBarChart4BarsSharpFilled.tsx @@ -8,4 +8,4 @@ const IconBarChart4BarsSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconBarChart4BarsSharpFilled as default } +export default IconBarChart4BarsSharpFilled diff --git a/src/IconBarChartOffOutlined.tsx b/src/IconBarChartOffOutlined.tsx index 3d8badbd2..26ed1a9cb 100644 --- a/src/IconBarChartOffOutlined.tsx +++ b/src/IconBarChartOffOutlined.tsx @@ -8,4 +8,4 @@ const IconBarChartOffOutlined: React.FC = ({ ...props }) => ( ) -export { IconBarChartOffOutlined as default } +export default IconBarChartOffOutlined diff --git a/src/IconBarChartOffOutlinedFilled.tsx b/src/IconBarChartOffOutlinedFilled.tsx index 6d4fdef02..adad3e1e2 100644 --- a/src/IconBarChartOffOutlinedFilled.tsx +++ b/src/IconBarChartOffOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconBarChartOffOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconBarChartOffOutlinedFilled as default } +export default IconBarChartOffOutlinedFilled diff --git a/src/IconBarChartOffRounded.tsx b/src/IconBarChartOffRounded.tsx index 19faab57f..362a330d5 100644 --- a/src/IconBarChartOffRounded.tsx +++ b/src/IconBarChartOffRounded.tsx @@ -8,4 +8,4 @@ const IconBarChartOffRounded: React.FC = ({ ...props }) => ( ) -export { IconBarChartOffRounded as default } +export default IconBarChartOffRounded diff --git a/src/IconBarChartOffRoundedFilled.tsx b/src/IconBarChartOffRoundedFilled.tsx index 2a221ce59..eab00b9f6 100644 --- a/src/IconBarChartOffRoundedFilled.tsx +++ b/src/IconBarChartOffRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconBarChartOffRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconBarChartOffRoundedFilled as default } +export default IconBarChartOffRoundedFilled diff --git a/src/IconBarChartOffSharp.tsx b/src/IconBarChartOffSharp.tsx index 2160fce24..1b7887fb5 100644 --- a/src/IconBarChartOffSharp.tsx +++ b/src/IconBarChartOffSharp.tsx @@ -8,4 +8,4 @@ const IconBarChartOffSharp: React.FC = ({ ...props }) => ( ) -export { IconBarChartOffSharp as default } +export default IconBarChartOffSharp diff --git a/src/IconBarChartOffSharpFilled.tsx b/src/IconBarChartOffSharpFilled.tsx index c2601fc34..717d9bb7d 100644 --- a/src/IconBarChartOffSharpFilled.tsx +++ b/src/IconBarChartOffSharpFilled.tsx @@ -8,4 +8,4 @@ const IconBarChartOffSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconBarChartOffSharpFilled as default } +export default IconBarChartOffSharpFilled diff --git a/src/IconBarChartOutlined.tsx b/src/IconBarChartOutlined.tsx index fd2a6cb0b..98058a88e 100644 --- a/src/IconBarChartOutlined.tsx +++ b/src/IconBarChartOutlined.tsx @@ -8,4 +8,4 @@ const IconBarChartOutlined: React.FC = ({ ...props }) => ( ) -export { IconBarChartOutlined as default } +export default IconBarChartOutlined diff --git a/src/IconBarChartOutlinedFilled.tsx b/src/IconBarChartOutlinedFilled.tsx index 95ea7c1f8..46b89e96f 100644 --- a/src/IconBarChartOutlinedFilled.tsx +++ b/src/IconBarChartOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconBarChartOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconBarChartOutlinedFilled as default } +export default IconBarChartOutlinedFilled diff --git a/src/IconBarChartRounded.tsx b/src/IconBarChartRounded.tsx index 7a336dc6d..dae53a0d7 100644 --- a/src/IconBarChartRounded.tsx +++ b/src/IconBarChartRounded.tsx @@ -8,4 +8,4 @@ const IconBarChartRounded: React.FC = ({ ...props }) => ( ) -export { IconBarChartRounded as default } +export default IconBarChartRounded diff --git a/src/IconBarChartRoundedFilled.tsx b/src/IconBarChartRoundedFilled.tsx index 1233d77f0..b812b0a8f 100644 --- a/src/IconBarChartRoundedFilled.tsx +++ b/src/IconBarChartRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconBarChartRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconBarChartRoundedFilled as default } +export default IconBarChartRoundedFilled diff --git a/src/IconBarChartSharp.tsx b/src/IconBarChartSharp.tsx index 9a7ec3781..72bf3b10d 100644 --- a/src/IconBarChartSharp.tsx +++ b/src/IconBarChartSharp.tsx @@ -8,4 +8,4 @@ const IconBarChartSharp: React.FC = ({ ...props }) => ( ) -export { IconBarChartSharp as default } +export default IconBarChartSharp diff --git a/src/IconBarChartSharpFilled.tsx b/src/IconBarChartSharpFilled.tsx index 994b4f6ae..621781022 100644 --- a/src/IconBarChartSharpFilled.tsx +++ b/src/IconBarChartSharpFilled.tsx @@ -8,4 +8,4 @@ const IconBarChartSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconBarChartSharpFilled as default } +export default IconBarChartSharpFilled diff --git a/src/IconBarcodeOutlined.tsx b/src/IconBarcodeOutlined.tsx index a3589701a..87d81f47f 100644 --- a/src/IconBarcodeOutlined.tsx +++ b/src/IconBarcodeOutlined.tsx @@ -8,4 +8,4 @@ const IconBarcodeOutlined: React.FC = ({ ...props }) => ( ) -export { IconBarcodeOutlined as default } +export default IconBarcodeOutlined diff --git a/src/IconBarcodeOutlinedFilled.tsx b/src/IconBarcodeOutlinedFilled.tsx index e0c39953e..0de0405e5 100644 --- a/src/IconBarcodeOutlinedFilled.tsx +++ b/src/IconBarcodeOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconBarcodeOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconBarcodeOutlinedFilled as default } +export default IconBarcodeOutlinedFilled diff --git a/src/IconBarcodeReaderOutlined.tsx b/src/IconBarcodeReaderOutlined.tsx index d0ec90d62..6119f05c4 100644 --- a/src/IconBarcodeReaderOutlined.tsx +++ b/src/IconBarcodeReaderOutlined.tsx @@ -8,4 +8,4 @@ const IconBarcodeReaderOutlined: React.FC = ({ ...props }) => ( ) -export { IconBarcodeReaderOutlined as default } +export default IconBarcodeReaderOutlined diff --git a/src/IconBarcodeReaderOutlinedFilled.tsx b/src/IconBarcodeReaderOutlinedFilled.tsx index 0f5f9107c..c2fea3937 100644 --- a/src/IconBarcodeReaderOutlinedFilled.tsx +++ b/src/IconBarcodeReaderOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconBarcodeReaderOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconBarcodeReaderOutlinedFilled as default } +export default IconBarcodeReaderOutlinedFilled diff --git a/src/IconBarcodeReaderRounded.tsx b/src/IconBarcodeReaderRounded.tsx index b8b465900..3f100b230 100644 --- a/src/IconBarcodeReaderRounded.tsx +++ b/src/IconBarcodeReaderRounded.tsx @@ -8,4 +8,4 @@ const IconBarcodeReaderRounded: React.FC = ({ ...props }) => ( ) -export { IconBarcodeReaderRounded as default } +export default IconBarcodeReaderRounded diff --git a/src/IconBarcodeReaderRoundedFilled.tsx b/src/IconBarcodeReaderRoundedFilled.tsx index 47ec1acd0..7104ceedd 100644 --- a/src/IconBarcodeReaderRoundedFilled.tsx +++ b/src/IconBarcodeReaderRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconBarcodeReaderRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconBarcodeReaderRoundedFilled as default } +export default IconBarcodeReaderRoundedFilled diff --git a/src/IconBarcodeReaderSharp.tsx b/src/IconBarcodeReaderSharp.tsx index b14d86f4e..1c9561193 100644 --- a/src/IconBarcodeReaderSharp.tsx +++ b/src/IconBarcodeReaderSharp.tsx @@ -8,4 +8,4 @@ const IconBarcodeReaderSharp: React.FC = ({ ...props }) => ( ) -export { IconBarcodeReaderSharp as default } +export default IconBarcodeReaderSharp diff --git a/src/IconBarcodeReaderSharpFilled.tsx b/src/IconBarcodeReaderSharpFilled.tsx index 1fdb90bb5..c8bae895c 100644 --- a/src/IconBarcodeReaderSharpFilled.tsx +++ b/src/IconBarcodeReaderSharpFilled.tsx @@ -8,4 +8,4 @@ const IconBarcodeReaderSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconBarcodeReaderSharpFilled as default } +export default IconBarcodeReaderSharpFilled diff --git a/src/IconBarcodeRounded.tsx b/src/IconBarcodeRounded.tsx index 476952220..70e3c05b9 100644 --- a/src/IconBarcodeRounded.tsx +++ b/src/IconBarcodeRounded.tsx @@ -8,4 +8,4 @@ const IconBarcodeRounded: React.FC = ({ ...props }) => ( ) -export { IconBarcodeRounded as default } +export default IconBarcodeRounded diff --git a/src/IconBarcodeRoundedFilled.tsx b/src/IconBarcodeRoundedFilled.tsx index 5781c272e..512418276 100644 --- a/src/IconBarcodeRoundedFilled.tsx +++ b/src/IconBarcodeRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconBarcodeRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconBarcodeRoundedFilled as default } +export default IconBarcodeRoundedFilled diff --git a/src/IconBarcodeScannerOutlined.tsx b/src/IconBarcodeScannerOutlined.tsx index 7aa84bf5b..420908a40 100644 --- a/src/IconBarcodeScannerOutlined.tsx +++ b/src/IconBarcodeScannerOutlined.tsx @@ -8,4 +8,4 @@ const IconBarcodeScannerOutlined: React.FC = ({ ...props }) => ( ) -export { IconBarcodeScannerOutlined as default } +export default IconBarcodeScannerOutlined diff --git a/src/IconBarcodeScannerOutlinedFilled.tsx b/src/IconBarcodeScannerOutlinedFilled.tsx index de78ebb0e..4b98cfe79 100644 --- a/src/IconBarcodeScannerOutlinedFilled.tsx +++ b/src/IconBarcodeScannerOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconBarcodeScannerOutlinedFilled: React.FC = ({ ) -export { IconBarcodeScannerOutlinedFilled as default } +export default IconBarcodeScannerOutlinedFilled diff --git a/src/IconBarcodeScannerRounded.tsx b/src/IconBarcodeScannerRounded.tsx index dacdef993..da37ad33f 100644 --- a/src/IconBarcodeScannerRounded.tsx +++ b/src/IconBarcodeScannerRounded.tsx @@ -8,4 +8,4 @@ const IconBarcodeScannerRounded: React.FC = ({ ...props }) => ( ) -export { IconBarcodeScannerRounded as default } +export default IconBarcodeScannerRounded diff --git a/src/IconBarcodeScannerRoundedFilled.tsx b/src/IconBarcodeScannerRoundedFilled.tsx index c450175bb..f45ebde74 100644 --- a/src/IconBarcodeScannerRoundedFilled.tsx +++ b/src/IconBarcodeScannerRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconBarcodeScannerRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconBarcodeScannerRoundedFilled as default } +export default IconBarcodeScannerRoundedFilled diff --git a/src/IconBarcodeScannerSharp.tsx b/src/IconBarcodeScannerSharp.tsx index 00d29b965..622c9e31e 100644 --- a/src/IconBarcodeScannerSharp.tsx +++ b/src/IconBarcodeScannerSharp.tsx @@ -8,4 +8,4 @@ const IconBarcodeScannerSharp: React.FC = ({ ...props }) => ( ) -export { IconBarcodeScannerSharp as default } +export default IconBarcodeScannerSharp diff --git a/src/IconBarcodeScannerSharpFilled.tsx b/src/IconBarcodeScannerSharpFilled.tsx index 707544b14..ad3ecca31 100644 --- a/src/IconBarcodeScannerSharpFilled.tsx +++ b/src/IconBarcodeScannerSharpFilled.tsx @@ -8,4 +8,4 @@ const IconBarcodeScannerSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconBarcodeScannerSharpFilled as default } +export default IconBarcodeScannerSharpFilled diff --git a/src/IconBarcodeSharp.tsx b/src/IconBarcodeSharp.tsx index 890ce9850..99ed9ed92 100644 --- a/src/IconBarcodeSharp.tsx +++ b/src/IconBarcodeSharp.tsx @@ -8,4 +8,4 @@ const IconBarcodeSharp: React.FC = ({ ...props }) => ( ) -export { IconBarcodeSharp as default } +export default IconBarcodeSharp diff --git a/src/IconBarcodeSharpFilled.tsx b/src/IconBarcodeSharpFilled.tsx index 8c5cf3950..bc168af12 100644 --- a/src/IconBarcodeSharpFilled.tsx +++ b/src/IconBarcodeSharpFilled.tsx @@ -8,4 +8,4 @@ const IconBarcodeSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconBarcodeSharpFilled as default } +export default IconBarcodeSharpFilled diff --git a/src/IconBarefootOutlined.tsx b/src/IconBarefootOutlined.tsx index b56b7ba4d..764960aed 100644 --- a/src/IconBarefootOutlined.tsx +++ b/src/IconBarefootOutlined.tsx @@ -8,4 +8,4 @@ const IconBarefootOutlined: React.FC = ({ ...props }) => ( ) -export { IconBarefootOutlined as default } +export default IconBarefootOutlined diff --git a/src/IconBarefootOutlinedFilled.tsx b/src/IconBarefootOutlinedFilled.tsx index 9a786889b..a59dc59d1 100644 --- a/src/IconBarefootOutlinedFilled.tsx +++ b/src/IconBarefootOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconBarefootOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconBarefootOutlinedFilled as default } +export default IconBarefootOutlinedFilled diff --git a/src/IconBarefootRounded.tsx b/src/IconBarefootRounded.tsx index 72249aaa3..23ce2cdc1 100644 --- a/src/IconBarefootRounded.tsx +++ b/src/IconBarefootRounded.tsx @@ -8,4 +8,4 @@ const IconBarefootRounded: React.FC = ({ ...props }) => ( ) -export { IconBarefootRounded as default } +export default IconBarefootRounded diff --git a/src/IconBarefootRoundedFilled.tsx b/src/IconBarefootRoundedFilled.tsx index e5066038b..a84fdb618 100644 --- a/src/IconBarefootRoundedFilled.tsx +++ b/src/IconBarefootRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconBarefootRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconBarefootRoundedFilled as default } +export default IconBarefootRoundedFilled diff --git a/src/IconBarefootSharp.tsx b/src/IconBarefootSharp.tsx index 45758cb13..146d7b542 100644 --- a/src/IconBarefootSharp.tsx +++ b/src/IconBarefootSharp.tsx @@ -8,4 +8,4 @@ const IconBarefootSharp: React.FC = ({ ...props }) => ( ) -export { IconBarefootSharp as default } +export default IconBarefootSharp diff --git a/src/IconBarefootSharpFilled.tsx b/src/IconBarefootSharpFilled.tsx index 571280603..f7b58fdbd 100644 --- a/src/IconBarefootSharpFilled.tsx +++ b/src/IconBarefootSharpFilled.tsx @@ -8,4 +8,4 @@ const IconBarefootSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconBarefootSharpFilled as default } +export default IconBarefootSharpFilled diff --git a/src/IconBatchPredictionOutlined.tsx b/src/IconBatchPredictionOutlined.tsx index 415bb67aa..57e1f8fa4 100644 --- a/src/IconBatchPredictionOutlined.tsx +++ b/src/IconBatchPredictionOutlined.tsx @@ -8,4 +8,4 @@ const IconBatchPredictionOutlined: React.FC = ({ ...props }) => ( ) -export { IconBatchPredictionOutlined as default } +export default IconBatchPredictionOutlined diff --git a/src/IconBatchPredictionOutlinedFilled.tsx b/src/IconBatchPredictionOutlinedFilled.tsx index 5a6bd385d..79c1e410b 100644 --- a/src/IconBatchPredictionOutlinedFilled.tsx +++ b/src/IconBatchPredictionOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconBatchPredictionOutlinedFilled: React.FC = ({ ) -export { IconBatchPredictionOutlinedFilled as default } +export default IconBatchPredictionOutlinedFilled diff --git a/src/IconBatchPredictionRounded.tsx b/src/IconBatchPredictionRounded.tsx index 2a959c4e5..22ab07239 100644 --- a/src/IconBatchPredictionRounded.tsx +++ b/src/IconBatchPredictionRounded.tsx @@ -8,4 +8,4 @@ const IconBatchPredictionRounded: React.FC = ({ ...props }) => ( ) -export { IconBatchPredictionRounded as default } +export default IconBatchPredictionRounded diff --git a/src/IconBatchPredictionRoundedFilled.tsx b/src/IconBatchPredictionRoundedFilled.tsx index ee69dda5d..6e81f8002 100644 --- a/src/IconBatchPredictionRoundedFilled.tsx +++ b/src/IconBatchPredictionRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconBatchPredictionRoundedFilled: React.FC = ({ ) -export { IconBatchPredictionRoundedFilled as default } +export default IconBatchPredictionRoundedFilled diff --git a/src/IconBatchPredictionSharp.tsx b/src/IconBatchPredictionSharp.tsx index db0ef2c01..8c4046daa 100644 --- a/src/IconBatchPredictionSharp.tsx +++ b/src/IconBatchPredictionSharp.tsx @@ -8,4 +8,4 @@ const IconBatchPredictionSharp: React.FC = ({ ...props }) => ( ) -export { IconBatchPredictionSharp as default } +export default IconBatchPredictionSharp diff --git a/src/IconBatchPredictionSharpFilled.tsx b/src/IconBatchPredictionSharpFilled.tsx index fbef53f39..a0cd17f85 100644 --- a/src/IconBatchPredictionSharpFilled.tsx +++ b/src/IconBatchPredictionSharpFilled.tsx @@ -8,4 +8,4 @@ const IconBatchPredictionSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconBatchPredictionSharpFilled as default } +export default IconBatchPredictionSharpFilled diff --git a/src/IconBathOutdoorOutlined.tsx b/src/IconBathOutdoorOutlined.tsx index ade24e68b..663956b7a 100644 --- a/src/IconBathOutdoorOutlined.tsx +++ b/src/IconBathOutdoorOutlined.tsx @@ -8,4 +8,4 @@ const IconBathOutdoorOutlined: React.FC = ({ ...props }) => ( ) -export { IconBathOutdoorOutlined as default } +export default IconBathOutdoorOutlined diff --git a/src/IconBathOutdoorOutlinedFilled.tsx b/src/IconBathOutdoorOutlinedFilled.tsx index 00fe46251..ca176fe19 100644 --- a/src/IconBathOutdoorOutlinedFilled.tsx +++ b/src/IconBathOutdoorOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconBathOutdoorOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconBathOutdoorOutlinedFilled as default } +export default IconBathOutdoorOutlinedFilled diff --git a/src/IconBathOutdoorRounded.tsx b/src/IconBathOutdoorRounded.tsx index 5011de0ee..10dd1c75b 100644 --- a/src/IconBathOutdoorRounded.tsx +++ b/src/IconBathOutdoorRounded.tsx @@ -8,4 +8,4 @@ const IconBathOutdoorRounded: React.FC = ({ ...props }) => ( ) -export { IconBathOutdoorRounded as default } +export default IconBathOutdoorRounded diff --git a/src/IconBathOutdoorRoundedFilled.tsx b/src/IconBathOutdoorRoundedFilled.tsx index 6d6ab437d..9aa017ac2 100644 --- a/src/IconBathOutdoorRoundedFilled.tsx +++ b/src/IconBathOutdoorRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconBathOutdoorRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconBathOutdoorRoundedFilled as default } +export default IconBathOutdoorRoundedFilled diff --git a/src/IconBathOutdoorSharp.tsx b/src/IconBathOutdoorSharp.tsx index 560440a80..4904192c5 100644 --- a/src/IconBathOutdoorSharp.tsx +++ b/src/IconBathOutdoorSharp.tsx @@ -8,4 +8,4 @@ const IconBathOutdoorSharp: React.FC = ({ ...props }) => ( ) -export { IconBathOutdoorSharp as default } +export default IconBathOutdoorSharp diff --git a/src/IconBathOutdoorSharpFilled.tsx b/src/IconBathOutdoorSharpFilled.tsx index 2a43f6221..2380eb46e 100644 --- a/src/IconBathOutdoorSharpFilled.tsx +++ b/src/IconBathOutdoorSharpFilled.tsx @@ -8,4 +8,4 @@ const IconBathOutdoorSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconBathOutdoorSharpFilled as default } +export default IconBathOutdoorSharpFilled diff --git a/src/IconBathPrivateOutlined.tsx b/src/IconBathPrivateOutlined.tsx index d1a0dcc5a..712153a64 100644 --- a/src/IconBathPrivateOutlined.tsx +++ b/src/IconBathPrivateOutlined.tsx @@ -8,4 +8,4 @@ const IconBathPrivateOutlined: React.FC = ({ ...props }) => ( ) -export { IconBathPrivateOutlined as default } +export default IconBathPrivateOutlined diff --git a/src/IconBathPrivateOutlinedFilled.tsx b/src/IconBathPrivateOutlinedFilled.tsx index 54832ef47..492a509a8 100644 --- a/src/IconBathPrivateOutlinedFilled.tsx +++ b/src/IconBathPrivateOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconBathPrivateOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconBathPrivateOutlinedFilled as default } +export default IconBathPrivateOutlinedFilled diff --git a/src/IconBathPrivateRounded.tsx b/src/IconBathPrivateRounded.tsx index 2896be06f..39fb04086 100644 --- a/src/IconBathPrivateRounded.tsx +++ b/src/IconBathPrivateRounded.tsx @@ -8,4 +8,4 @@ const IconBathPrivateRounded: React.FC = ({ ...props }) => ( ) -export { IconBathPrivateRounded as default } +export default IconBathPrivateRounded diff --git a/src/IconBathPrivateRoundedFilled.tsx b/src/IconBathPrivateRoundedFilled.tsx index 9b2c5f74e..b92936ed9 100644 --- a/src/IconBathPrivateRoundedFilled.tsx +++ b/src/IconBathPrivateRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconBathPrivateRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconBathPrivateRoundedFilled as default } +export default IconBathPrivateRoundedFilled diff --git a/src/IconBathPrivateSharp.tsx b/src/IconBathPrivateSharp.tsx index 583e46b5f..2bd3ffacf 100644 --- a/src/IconBathPrivateSharp.tsx +++ b/src/IconBathPrivateSharp.tsx @@ -8,4 +8,4 @@ const IconBathPrivateSharp: React.FC = ({ ...props }) => ( ) -export { IconBathPrivateSharp as default } +export default IconBathPrivateSharp diff --git a/src/IconBathPrivateSharpFilled.tsx b/src/IconBathPrivateSharpFilled.tsx index 6922e6514..9f1e05ed2 100644 --- a/src/IconBathPrivateSharpFilled.tsx +++ b/src/IconBathPrivateSharpFilled.tsx @@ -8,4 +8,4 @@ const IconBathPrivateSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconBathPrivateSharpFilled as default } +export default IconBathPrivateSharpFilled diff --git a/src/IconBathPublicLargeOutlined.tsx b/src/IconBathPublicLargeOutlined.tsx index 372d4378b..118ef8bcd 100644 --- a/src/IconBathPublicLargeOutlined.tsx +++ b/src/IconBathPublicLargeOutlined.tsx @@ -8,4 +8,4 @@ const IconBathPublicLargeOutlined: React.FC = ({ ...props }) => ( ) -export { IconBathPublicLargeOutlined as default } +export default IconBathPublicLargeOutlined diff --git a/src/IconBathPublicLargeOutlinedFilled.tsx b/src/IconBathPublicLargeOutlinedFilled.tsx index a27ff876f..42a093a2e 100644 --- a/src/IconBathPublicLargeOutlinedFilled.tsx +++ b/src/IconBathPublicLargeOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconBathPublicLargeOutlinedFilled: React.FC = ({ ) -export { IconBathPublicLargeOutlinedFilled as default } +export default IconBathPublicLargeOutlinedFilled diff --git a/src/IconBathPublicLargeRounded.tsx b/src/IconBathPublicLargeRounded.tsx index b208b76e7..fef3fe3f3 100644 --- a/src/IconBathPublicLargeRounded.tsx +++ b/src/IconBathPublicLargeRounded.tsx @@ -8,4 +8,4 @@ const IconBathPublicLargeRounded: React.FC = ({ ...props }) => ( ) -export { IconBathPublicLargeRounded as default } +export default IconBathPublicLargeRounded diff --git a/src/IconBathPublicLargeRoundedFilled.tsx b/src/IconBathPublicLargeRoundedFilled.tsx index 1b89db8bc..d06ddf701 100644 --- a/src/IconBathPublicLargeRoundedFilled.tsx +++ b/src/IconBathPublicLargeRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconBathPublicLargeRoundedFilled: React.FC = ({ ) -export { IconBathPublicLargeRoundedFilled as default } +export default IconBathPublicLargeRoundedFilled diff --git a/src/IconBathPublicLargeSharp.tsx b/src/IconBathPublicLargeSharp.tsx index ccbec79c5..2df7d8959 100644 --- a/src/IconBathPublicLargeSharp.tsx +++ b/src/IconBathPublicLargeSharp.tsx @@ -8,4 +8,4 @@ const IconBathPublicLargeSharp: React.FC = ({ ...props }) => ( ) -export { IconBathPublicLargeSharp as default } +export default IconBathPublicLargeSharp diff --git a/src/IconBathPublicLargeSharpFilled.tsx b/src/IconBathPublicLargeSharpFilled.tsx index 922f64844..142bc2e5d 100644 --- a/src/IconBathPublicLargeSharpFilled.tsx +++ b/src/IconBathPublicLargeSharpFilled.tsx @@ -8,4 +8,4 @@ const IconBathPublicLargeSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconBathPublicLargeSharpFilled as default } +export default IconBathPublicLargeSharpFilled diff --git a/src/IconBathroomOutlined.tsx b/src/IconBathroomOutlined.tsx index 32da44da4..12c29235c 100644 --- a/src/IconBathroomOutlined.tsx +++ b/src/IconBathroomOutlined.tsx @@ -8,4 +8,4 @@ const IconBathroomOutlined: React.FC = ({ ...props }) => ( ) -export { IconBathroomOutlined as default } +export default IconBathroomOutlined diff --git a/src/IconBathroomOutlinedFilled.tsx b/src/IconBathroomOutlinedFilled.tsx index ed8e6f585..f7102c030 100644 --- a/src/IconBathroomOutlinedFilled.tsx +++ b/src/IconBathroomOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconBathroomOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconBathroomOutlinedFilled as default } +export default IconBathroomOutlinedFilled diff --git a/src/IconBathroomRounded.tsx b/src/IconBathroomRounded.tsx index 1ad3ba42f..d185e7572 100644 --- a/src/IconBathroomRounded.tsx +++ b/src/IconBathroomRounded.tsx @@ -8,4 +8,4 @@ const IconBathroomRounded: React.FC = ({ ...props }) => ( ) -export { IconBathroomRounded as default } +export default IconBathroomRounded diff --git a/src/IconBathroomRoundedFilled.tsx b/src/IconBathroomRoundedFilled.tsx index 444bb8652..28b5c2995 100644 --- a/src/IconBathroomRoundedFilled.tsx +++ b/src/IconBathroomRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconBathroomRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconBathroomRoundedFilled as default } +export default IconBathroomRoundedFilled diff --git a/src/IconBathroomSharp.tsx b/src/IconBathroomSharp.tsx index 86583347e..35d9bbd2f 100644 --- a/src/IconBathroomSharp.tsx +++ b/src/IconBathroomSharp.tsx @@ -8,4 +8,4 @@ const IconBathroomSharp: React.FC = ({ ...props }) => ( ) -export { IconBathroomSharp as default } +export default IconBathroomSharp diff --git a/src/IconBathroomSharpFilled.tsx b/src/IconBathroomSharpFilled.tsx index 28b289bb0..c57b1dd60 100644 --- a/src/IconBathroomSharpFilled.tsx +++ b/src/IconBathroomSharpFilled.tsx @@ -8,4 +8,4 @@ const IconBathroomSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconBathroomSharpFilled as default } +export default IconBathroomSharpFilled diff --git a/src/IconBathtubOutlined.tsx b/src/IconBathtubOutlined.tsx index a89e870e3..35de7d727 100644 --- a/src/IconBathtubOutlined.tsx +++ b/src/IconBathtubOutlined.tsx @@ -8,4 +8,4 @@ const IconBathtubOutlined: React.FC = ({ ...props }) => ( ) -export { IconBathtubOutlined as default } +export default IconBathtubOutlined diff --git a/src/IconBathtubOutlinedFilled.tsx b/src/IconBathtubOutlinedFilled.tsx index d7d69a27c..617e8a891 100644 --- a/src/IconBathtubOutlinedFilled.tsx +++ b/src/IconBathtubOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconBathtubOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconBathtubOutlinedFilled as default } +export default IconBathtubOutlinedFilled diff --git a/src/IconBathtubRounded.tsx b/src/IconBathtubRounded.tsx index 28880dbb4..97cb80d24 100644 --- a/src/IconBathtubRounded.tsx +++ b/src/IconBathtubRounded.tsx @@ -8,4 +8,4 @@ const IconBathtubRounded: React.FC = ({ ...props }) => ( ) -export { IconBathtubRounded as default } +export default IconBathtubRounded diff --git a/src/IconBathtubRoundedFilled.tsx b/src/IconBathtubRoundedFilled.tsx index 19ea8fda8..5a5548bb7 100644 --- a/src/IconBathtubRoundedFilled.tsx +++ b/src/IconBathtubRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconBathtubRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconBathtubRoundedFilled as default } +export default IconBathtubRoundedFilled diff --git a/src/IconBathtubSharp.tsx b/src/IconBathtubSharp.tsx index 0e2d8f124..5013d31ca 100644 --- a/src/IconBathtubSharp.tsx +++ b/src/IconBathtubSharp.tsx @@ -8,4 +8,4 @@ const IconBathtubSharp: React.FC = ({ ...props }) => ( ) -export { IconBathtubSharp as default } +export default IconBathtubSharp diff --git a/src/IconBathtubSharpFilled.tsx b/src/IconBathtubSharpFilled.tsx index e322ad89f..3c3899b79 100644 --- a/src/IconBathtubSharpFilled.tsx +++ b/src/IconBathtubSharpFilled.tsx @@ -8,4 +8,4 @@ const IconBathtubSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconBathtubSharpFilled as default } +export default IconBathtubSharpFilled diff --git a/src/IconBattery0BarOutlined.tsx b/src/IconBattery0BarOutlined.tsx index 25b8151ee..cec70dfb8 100644 --- a/src/IconBattery0BarOutlined.tsx +++ b/src/IconBattery0BarOutlined.tsx @@ -8,4 +8,4 @@ const IconBattery0BarOutlined: React.FC = ({ ...props }) => ( ) -export { IconBattery0BarOutlined as default } +export default IconBattery0BarOutlined diff --git a/src/IconBattery0BarOutlinedFilled.tsx b/src/IconBattery0BarOutlinedFilled.tsx index d0dddfa77..79512b49e 100644 --- a/src/IconBattery0BarOutlinedFilled.tsx +++ b/src/IconBattery0BarOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconBattery0BarOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconBattery0BarOutlinedFilled as default } +export default IconBattery0BarOutlinedFilled diff --git a/src/IconBattery0BarRounded.tsx b/src/IconBattery0BarRounded.tsx index cd5afd311..f1fcbfa41 100644 --- a/src/IconBattery0BarRounded.tsx +++ b/src/IconBattery0BarRounded.tsx @@ -8,4 +8,4 @@ const IconBattery0BarRounded: React.FC = ({ ...props }) => ( ) -export { IconBattery0BarRounded as default } +export default IconBattery0BarRounded diff --git a/src/IconBattery0BarRoundedFilled.tsx b/src/IconBattery0BarRoundedFilled.tsx index 17db5b9c3..193abe4f1 100644 --- a/src/IconBattery0BarRoundedFilled.tsx +++ b/src/IconBattery0BarRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconBattery0BarRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconBattery0BarRoundedFilled as default } +export default IconBattery0BarRoundedFilled diff --git a/src/IconBattery0BarSharp.tsx b/src/IconBattery0BarSharp.tsx index 0d9427cdf..9f6fc7d24 100644 --- a/src/IconBattery0BarSharp.tsx +++ b/src/IconBattery0BarSharp.tsx @@ -8,4 +8,4 @@ const IconBattery0BarSharp: React.FC = ({ ...props }) => ( ) -export { IconBattery0BarSharp as default } +export default IconBattery0BarSharp diff --git a/src/IconBattery0BarSharpFilled.tsx b/src/IconBattery0BarSharpFilled.tsx index 6d9449956..35621df39 100644 --- a/src/IconBattery0BarSharpFilled.tsx +++ b/src/IconBattery0BarSharpFilled.tsx @@ -8,4 +8,4 @@ const IconBattery0BarSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconBattery0BarSharpFilled as default } +export default IconBattery0BarSharpFilled diff --git a/src/IconBattery1BarOutlined.tsx b/src/IconBattery1BarOutlined.tsx index 857c6966e..6cbc81434 100644 --- a/src/IconBattery1BarOutlined.tsx +++ b/src/IconBattery1BarOutlined.tsx @@ -8,4 +8,4 @@ const IconBattery1BarOutlined: React.FC = ({ ...props }) => ( ) -export { IconBattery1BarOutlined as default } +export default IconBattery1BarOutlined diff --git a/src/IconBattery1BarOutlinedFilled.tsx b/src/IconBattery1BarOutlinedFilled.tsx index 481a806f4..3cf40cd3a 100644 --- a/src/IconBattery1BarOutlinedFilled.tsx +++ b/src/IconBattery1BarOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconBattery1BarOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconBattery1BarOutlinedFilled as default } +export default IconBattery1BarOutlinedFilled diff --git a/src/IconBattery1BarRounded.tsx b/src/IconBattery1BarRounded.tsx index 071fa67ef..f9d5be966 100644 --- a/src/IconBattery1BarRounded.tsx +++ b/src/IconBattery1BarRounded.tsx @@ -8,4 +8,4 @@ const IconBattery1BarRounded: React.FC = ({ ...props }) => ( ) -export { IconBattery1BarRounded as default } +export default IconBattery1BarRounded diff --git a/src/IconBattery1BarRoundedFilled.tsx b/src/IconBattery1BarRoundedFilled.tsx index ffaa39320..120167bd3 100644 --- a/src/IconBattery1BarRoundedFilled.tsx +++ b/src/IconBattery1BarRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconBattery1BarRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconBattery1BarRoundedFilled as default } +export default IconBattery1BarRoundedFilled diff --git a/src/IconBattery1BarSharp.tsx b/src/IconBattery1BarSharp.tsx index 37167553d..6c63d90f0 100644 --- a/src/IconBattery1BarSharp.tsx +++ b/src/IconBattery1BarSharp.tsx @@ -8,4 +8,4 @@ const IconBattery1BarSharp: React.FC = ({ ...props }) => ( ) -export { IconBattery1BarSharp as default } +export default IconBattery1BarSharp diff --git a/src/IconBattery1BarSharpFilled.tsx b/src/IconBattery1BarSharpFilled.tsx index d2319a3d5..3642d96b5 100644 --- a/src/IconBattery1BarSharpFilled.tsx +++ b/src/IconBattery1BarSharpFilled.tsx @@ -8,4 +8,4 @@ const IconBattery1BarSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconBattery1BarSharpFilled as default } +export default IconBattery1BarSharpFilled diff --git a/src/IconBattery2BarOutlined.tsx b/src/IconBattery2BarOutlined.tsx index 376e4cd56..000f6fe95 100644 --- a/src/IconBattery2BarOutlined.tsx +++ b/src/IconBattery2BarOutlined.tsx @@ -8,4 +8,4 @@ const IconBattery2BarOutlined: React.FC = ({ ...props }) => ( ) -export { IconBattery2BarOutlined as default } +export default IconBattery2BarOutlined diff --git a/src/IconBattery2BarOutlinedFilled.tsx b/src/IconBattery2BarOutlinedFilled.tsx index 4efbefbea..6412d3069 100644 --- a/src/IconBattery2BarOutlinedFilled.tsx +++ b/src/IconBattery2BarOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconBattery2BarOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconBattery2BarOutlinedFilled as default } +export default IconBattery2BarOutlinedFilled diff --git a/src/IconBattery2BarRounded.tsx b/src/IconBattery2BarRounded.tsx index a9d71cbc9..f534e03a6 100644 --- a/src/IconBattery2BarRounded.tsx +++ b/src/IconBattery2BarRounded.tsx @@ -8,4 +8,4 @@ const IconBattery2BarRounded: React.FC = ({ ...props }) => ( ) -export { IconBattery2BarRounded as default } +export default IconBattery2BarRounded diff --git a/src/IconBattery2BarRoundedFilled.tsx b/src/IconBattery2BarRoundedFilled.tsx index 64f0d40a2..82783f965 100644 --- a/src/IconBattery2BarRoundedFilled.tsx +++ b/src/IconBattery2BarRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconBattery2BarRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconBattery2BarRoundedFilled as default } +export default IconBattery2BarRoundedFilled diff --git a/src/IconBattery2BarSharp.tsx b/src/IconBattery2BarSharp.tsx index e9a0bd71d..2aaa2c654 100644 --- a/src/IconBattery2BarSharp.tsx +++ b/src/IconBattery2BarSharp.tsx @@ -8,4 +8,4 @@ const IconBattery2BarSharp: React.FC = ({ ...props }) => ( ) -export { IconBattery2BarSharp as default } +export default IconBattery2BarSharp diff --git a/src/IconBattery2BarSharpFilled.tsx b/src/IconBattery2BarSharpFilled.tsx index 1e3b63e28..5048820a4 100644 --- a/src/IconBattery2BarSharpFilled.tsx +++ b/src/IconBattery2BarSharpFilled.tsx @@ -8,4 +8,4 @@ const IconBattery2BarSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconBattery2BarSharpFilled as default } +export default IconBattery2BarSharpFilled diff --git a/src/IconBattery3BarOutlined.tsx b/src/IconBattery3BarOutlined.tsx index b588fdbc3..d006daeec 100644 --- a/src/IconBattery3BarOutlined.tsx +++ b/src/IconBattery3BarOutlined.tsx @@ -8,4 +8,4 @@ const IconBattery3BarOutlined: React.FC = ({ ...props }) => ( ) -export { IconBattery3BarOutlined as default } +export default IconBattery3BarOutlined diff --git a/src/IconBattery3BarOutlinedFilled.tsx b/src/IconBattery3BarOutlinedFilled.tsx index 5acd2a829..78b3cdcd6 100644 --- a/src/IconBattery3BarOutlinedFilled.tsx +++ b/src/IconBattery3BarOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconBattery3BarOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconBattery3BarOutlinedFilled as default } +export default IconBattery3BarOutlinedFilled diff --git a/src/IconBattery3BarRounded.tsx b/src/IconBattery3BarRounded.tsx index aaea22080..6c8793e98 100644 --- a/src/IconBattery3BarRounded.tsx +++ b/src/IconBattery3BarRounded.tsx @@ -8,4 +8,4 @@ const IconBattery3BarRounded: React.FC = ({ ...props }) => ( ) -export { IconBattery3BarRounded as default } +export default IconBattery3BarRounded diff --git a/src/IconBattery3BarRoundedFilled.tsx b/src/IconBattery3BarRoundedFilled.tsx index c968849fd..9b9478e4b 100644 --- a/src/IconBattery3BarRoundedFilled.tsx +++ b/src/IconBattery3BarRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconBattery3BarRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconBattery3BarRoundedFilled as default } +export default IconBattery3BarRoundedFilled diff --git a/src/IconBattery3BarSharp.tsx b/src/IconBattery3BarSharp.tsx index 83f069a7d..70a032012 100644 --- a/src/IconBattery3BarSharp.tsx +++ b/src/IconBattery3BarSharp.tsx @@ -8,4 +8,4 @@ const IconBattery3BarSharp: React.FC = ({ ...props }) => ( ) -export { IconBattery3BarSharp as default } +export default IconBattery3BarSharp diff --git a/src/IconBattery3BarSharpFilled.tsx b/src/IconBattery3BarSharpFilled.tsx index 296472b8d..992749f21 100644 --- a/src/IconBattery3BarSharpFilled.tsx +++ b/src/IconBattery3BarSharpFilled.tsx @@ -8,4 +8,4 @@ const IconBattery3BarSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconBattery3BarSharpFilled as default } +export default IconBattery3BarSharpFilled diff --git a/src/IconBattery4BarOutlined.tsx b/src/IconBattery4BarOutlined.tsx index 577f2b801..6976124c7 100644 --- a/src/IconBattery4BarOutlined.tsx +++ b/src/IconBattery4BarOutlined.tsx @@ -8,4 +8,4 @@ const IconBattery4BarOutlined: React.FC = ({ ...props }) => ( ) -export { IconBattery4BarOutlined as default } +export default IconBattery4BarOutlined diff --git a/src/IconBattery4BarOutlinedFilled.tsx b/src/IconBattery4BarOutlinedFilled.tsx index 92c84220a..2432f2ee2 100644 --- a/src/IconBattery4BarOutlinedFilled.tsx +++ b/src/IconBattery4BarOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconBattery4BarOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconBattery4BarOutlinedFilled as default } +export default IconBattery4BarOutlinedFilled diff --git a/src/IconBattery4BarRounded.tsx b/src/IconBattery4BarRounded.tsx index 02b51bb2c..48e1e7a84 100644 --- a/src/IconBattery4BarRounded.tsx +++ b/src/IconBattery4BarRounded.tsx @@ -8,4 +8,4 @@ const IconBattery4BarRounded: React.FC = ({ ...props }) => ( ) -export { IconBattery4BarRounded as default } +export default IconBattery4BarRounded diff --git a/src/IconBattery4BarRoundedFilled.tsx b/src/IconBattery4BarRoundedFilled.tsx index 521a8c2e2..03fca9635 100644 --- a/src/IconBattery4BarRoundedFilled.tsx +++ b/src/IconBattery4BarRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconBattery4BarRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconBattery4BarRoundedFilled as default } +export default IconBattery4BarRoundedFilled diff --git a/src/IconBattery4BarSharp.tsx b/src/IconBattery4BarSharp.tsx index ef1f10fcf..16413e2e1 100644 --- a/src/IconBattery4BarSharp.tsx +++ b/src/IconBattery4BarSharp.tsx @@ -8,4 +8,4 @@ const IconBattery4BarSharp: React.FC = ({ ...props }) => ( ) -export { IconBattery4BarSharp as default } +export default IconBattery4BarSharp diff --git a/src/IconBattery4BarSharpFilled.tsx b/src/IconBattery4BarSharpFilled.tsx index 531187687..2d9876e13 100644 --- a/src/IconBattery4BarSharpFilled.tsx +++ b/src/IconBattery4BarSharpFilled.tsx @@ -8,4 +8,4 @@ const IconBattery4BarSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconBattery4BarSharpFilled as default } +export default IconBattery4BarSharpFilled diff --git a/src/IconBattery5BarOutlined.tsx b/src/IconBattery5BarOutlined.tsx index 9d7169be5..cb18f5cd3 100644 --- a/src/IconBattery5BarOutlined.tsx +++ b/src/IconBattery5BarOutlined.tsx @@ -8,4 +8,4 @@ const IconBattery5BarOutlined: React.FC = ({ ...props }) => ( ) -export { IconBattery5BarOutlined as default } +export default IconBattery5BarOutlined diff --git a/src/IconBattery5BarOutlinedFilled.tsx b/src/IconBattery5BarOutlinedFilled.tsx index 78be869c8..c69dfb88b 100644 --- a/src/IconBattery5BarOutlinedFilled.tsx +++ b/src/IconBattery5BarOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconBattery5BarOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconBattery5BarOutlinedFilled as default } +export default IconBattery5BarOutlinedFilled diff --git a/src/IconBattery5BarRounded.tsx b/src/IconBattery5BarRounded.tsx index bcf579fbf..a9f6fcb01 100644 --- a/src/IconBattery5BarRounded.tsx +++ b/src/IconBattery5BarRounded.tsx @@ -8,4 +8,4 @@ const IconBattery5BarRounded: React.FC = ({ ...props }) => ( ) -export { IconBattery5BarRounded as default } +export default IconBattery5BarRounded diff --git a/src/IconBattery5BarRoundedFilled.tsx b/src/IconBattery5BarRoundedFilled.tsx index 8edea9bf7..bd0ed2b45 100644 --- a/src/IconBattery5BarRoundedFilled.tsx +++ b/src/IconBattery5BarRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconBattery5BarRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconBattery5BarRoundedFilled as default } +export default IconBattery5BarRoundedFilled diff --git a/src/IconBattery5BarSharp.tsx b/src/IconBattery5BarSharp.tsx index 3a6314c46..c51430b10 100644 --- a/src/IconBattery5BarSharp.tsx +++ b/src/IconBattery5BarSharp.tsx @@ -8,4 +8,4 @@ const IconBattery5BarSharp: React.FC = ({ ...props }) => ( ) -export { IconBattery5BarSharp as default } +export default IconBattery5BarSharp diff --git a/src/IconBattery5BarSharpFilled.tsx b/src/IconBattery5BarSharpFilled.tsx index 872654acd..173b890f0 100644 --- a/src/IconBattery5BarSharpFilled.tsx +++ b/src/IconBattery5BarSharpFilled.tsx @@ -8,4 +8,4 @@ const IconBattery5BarSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconBattery5BarSharpFilled as default } +export default IconBattery5BarSharpFilled diff --git a/src/IconBattery6BarOutlined.tsx b/src/IconBattery6BarOutlined.tsx index 291a180b9..129e3e4ae 100644 --- a/src/IconBattery6BarOutlined.tsx +++ b/src/IconBattery6BarOutlined.tsx @@ -8,4 +8,4 @@ const IconBattery6BarOutlined: React.FC = ({ ...props }) => ( ) -export { IconBattery6BarOutlined as default } +export default IconBattery6BarOutlined diff --git a/src/IconBattery6BarOutlinedFilled.tsx b/src/IconBattery6BarOutlinedFilled.tsx index 4b26237f3..5e17d2716 100644 --- a/src/IconBattery6BarOutlinedFilled.tsx +++ b/src/IconBattery6BarOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconBattery6BarOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconBattery6BarOutlinedFilled as default } +export default IconBattery6BarOutlinedFilled diff --git a/src/IconBattery6BarRounded.tsx b/src/IconBattery6BarRounded.tsx index cde2ce48d..3892da2e6 100644 --- a/src/IconBattery6BarRounded.tsx +++ b/src/IconBattery6BarRounded.tsx @@ -8,4 +8,4 @@ const IconBattery6BarRounded: React.FC = ({ ...props }) => ( ) -export { IconBattery6BarRounded as default } +export default IconBattery6BarRounded diff --git a/src/IconBattery6BarRoundedFilled.tsx b/src/IconBattery6BarRoundedFilled.tsx index abe44bb8f..b6f5ebbf3 100644 --- a/src/IconBattery6BarRoundedFilled.tsx +++ b/src/IconBattery6BarRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconBattery6BarRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconBattery6BarRoundedFilled as default } +export default IconBattery6BarRoundedFilled diff --git a/src/IconBattery6BarSharp.tsx b/src/IconBattery6BarSharp.tsx index 68bfe00c6..338d4953d 100644 --- a/src/IconBattery6BarSharp.tsx +++ b/src/IconBattery6BarSharp.tsx @@ -8,4 +8,4 @@ const IconBattery6BarSharp: React.FC = ({ ...props }) => ( ) -export { IconBattery6BarSharp as default } +export default IconBattery6BarSharp diff --git a/src/IconBattery6BarSharpFilled.tsx b/src/IconBattery6BarSharpFilled.tsx index d164390b5..b8f0cbe70 100644 --- a/src/IconBattery6BarSharpFilled.tsx +++ b/src/IconBattery6BarSharpFilled.tsx @@ -8,4 +8,4 @@ const IconBattery6BarSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconBattery6BarSharpFilled as default } +export default IconBattery6BarSharpFilled diff --git a/src/IconBatteryAlertOutlined.tsx b/src/IconBatteryAlertOutlined.tsx index 546932712..634178a84 100644 --- a/src/IconBatteryAlertOutlined.tsx +++ b/src/IconBatteryAlertOutlined.tsx @@ -8,4 +8,4 @@ const IconBatteryAlertOutlined: React.FC = ({ ...props }) => ( ) -export { IconBatteryAlertOutlined as default } +export default IconBatteryAlertOutlined diff --git a/src/IconBatteryAlertOutlinedFilled.tsx b/src/IconBatteryAlertOutlinedFilled.tsx index 6f1213d23..7254ef5f8 100644 --- a/src/IconBatteryAlertOutlinedFilled.tsx +++ b/src/IconBatteryAlertOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconBatteryAlertOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconBatteryAlertOutlinedFilled as default } +export default IconBatteryAlertOutlinedFilled diff --git a/src/IconBatteryAlertRounded.tsx b/src/IconBatteryAlertRounded.tsx index d40bf8b50..ad0641213 100644 --- a/src/IconBatteryAlertRounded.tsx +++ b/src/IconBatteryAlertRounded.tsx @@ -8,4 +8,4 @@ const IconBatteryAlertRounded: React.FC = ({ ...props }) => ( ) -export { IconBatteryAlertRounded as default } +export default IconBatteryAlertRounded diff --git a/src/IconBatteryAlertRoundedFilled.tsx b/src/IconBatteryAlertRoundedFilled.tsx index 7e302a077..ad4ba510d 100644 --- a/src/IconBatteryAlertRoundedFilled.tsx +++ b/src/IconBatteryAlertRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconBatteryAlertRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconBatteryAlertRoundedFilled as default } +export default IconBatteryAlertRoundedFilled diff --git a/src/IconBatteryAlertSharp.tsx b/src/IconBatteryAlertSharp.tsx index 7acf93220..a61f20fad 100644 --- a/src/IconBatteryAlertSharp.tsx +++ b/src/IconBatteryAlertSharp.tsx @@ -8,4 +8,4 @@ const IconBatteryAlertSharp: React.FC = ({ ...props }) => ( ) -export { IconBatteryAlertSharp as default } +export default IconBatteryAlertSharp diff --git a/src/IconBatteryAlertSharpFilled.tsx b/src/IconBatteryAlertSharpFilled.tsx index 2e4328e02..eb06a8ce0 100644 --- a/src/IconBatteryAlertSharpFilled.tsx +++ b/src/IconBatteryAlertSharpFilled.tsx @@ -8,4 +8,4 @@ const IconBatteryAlertSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconBatteryAlertSharpFilled as default } +export default IconBatteryAlertSharpFilled diff --git a/src/IconBatteryChangeOutlined.tsx b/src/IconBatteryChangeOutlined.tsx index 6e3b68b25..9628113c8 100644 --- a/src/IconBatteryChangeOutlined.tsx +++ b/src/IconBatteryChangeOutlined.tsx @@ -8,4 +8,4 @@ const IconBatteryChangeOutlined: React.FC = ({ ...props }) => ( ) -export { IconBatteryChangeOutlined as default } +export default IconBatteryChangeOutlined diff --git a/src/IconBatteryChangeOutlinedFilled.tsx b/src/IconBatteryChangeOutlinedFilled.tsx index 3b51171ce..9b15c596d 100644 --- a/src/IconBatteryChangeOutlinedFilled.tsx +++ b/src/IconBatteryChangeOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconBatteryChangeOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconBatteryChangeOutlinedFilled as default } +export default IconBatteryChangeOutlinedFilled diff --git a/src/IconBatteryChangeRounded.tsx b/src/IconBatteryChangeRounded.tsx index ac598593a..33ebc97bf 100644 --- a/src/IconBatteryChangeRounded.tsx +++ b/src/IconBatteryChangeRounded.tsx @@ -8,4 +8,4 @@ const IconBatteryChangeRounded: React.FC = ({ ...props }) => ( ) -export { IconBatteryChangeRounded as default } +export default IconBatteryChangeRounded diff --git a/src/IconBatteryChangeRoundedFilled.tsx b/src/IconBatteryChangeRoundedFilled.tsx index c31eb997d..6214a09a2 100644 --- a/src/IconBatteryChangeRoundedFilled.tsx +++ b/src/IconBatteryChangeRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconBatteryChangeRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconBatteryChangeRoundedFilled as default } +export default IconBatteryChangeRoundedFilled diff --git a/src/IconBatteryChangeSharp.tsx b/src/IconBatteryChangeSharp.tsx index b1c1daca9..1ef6796c9 100644 --- a/src/IconBatteryChangeSharp.tsx +++ b/src/IconBatteryChangeSharp.tsx @@ -8,4 +8,4 @@ const IconBatteryChangeSharp: React.FC = ({ ...props }) => ( ) -export { IconBatteryChangeSharp as default } +export default IconBatteryChangeSharp diff --git a/src/IconBatteryChangeSharpFilled.tsx b/src/IconBatteryChangeSharpFilled.tsx index ddb878c07..137eef287 100644 --- a/src/IconBatteryChangeSharpFilled.tsx +++ b/src/IconBatteryChangeSharpFilled.tsx @@ -8,4 +8,4 @@ const IconBatteryChangeSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconBatteryChangeSharpFilled as default } +export default IconBatteryChangeSharpFilled diff --git a/src/IconBatteryCharging20Outlined.tsx b/src/IconBatteryCharging20Outlined.tsx index 1240d9cc7..2a5e77a48 100644 --- a/src/IconBatteryCharging20Outlined.tsx +++ b/src/IconBatteryCharging20Outlined.tsx @@ -8,4 +8,4 @@ const IconBatteryCharging20Outlined: React.FC = ({ ...props }) => ( ) -export { IconBatteryCharging20Outlined as default } +export default IconBatteryCharging20Outlined diff --git a/src/IconBatteryCharging20OutlinedFilled.tsx b/src/IconBatteryCharging20OutlinedFilled.tsx index ce7ed2a8a..b98e3e2b9 100644 --- a/src/IconBatteryCharging20OutlinedFilled.tsx +++ b/src/IconBatteryCharging20OutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconBatteryCharging20OutlinedFilled: React.FC = ({ ) -export { IconBatteryCharging20OutlinedFilled as default } +export default IconBatteryCharging20OutlinedFilled diff --git a/src/IconBatteryCharging20Rounded.tsx b/src/IconBatteryCharging20Rounded.tsx index 4fb4560e4..cca187630 100644 --- a/src/IconBatteryCharging20Rounded.tsx +++ b/src/IconBatteryCharging20Rounded.tsx @@ -8,4 +8,4 @@ const IconBatteryCharging20Rounded: React.FC = ({ ...props }) => ( ) -export { IconBatteryCharging20Rounded as default } +export default IconBatteryCharging20Rounded diff --git a/src/IconBatteryCharging20RoundedFilled.tsx b/src/IconBatteryCharging20RoundedFilled.tsx index aa0091d23..ef83387d5 100644 --- a/src/IconBatteryCharging20RoundedFilled.tsx +++ b/src/IconBatteryCharging20RoundedFilled.tsx @@ -10,4 +10,4 @@ const IconBatteryCharging20RoundedFilled: React.FC = ({ ) -export { IconBatteryCharging20RoundedFilled as default } +export default IconBatteryCharging20RoundedFilled diff --git a/src/IconBatteryCharging20Sharp.tsx b/src/IconBatteryCharging20Sharp.tsx index a8daec11b..f3d386dd7 100644 --- a/src/IconBatteryCharging20Sharp.tsx +++ b/src/IconBatteryCharging20Sharp.tsx @@ -8,4 +8,4 @@ const IconBatteryCharging20Sharp: React.FC = ({ ...props }) => ( ) -export { IconBatteryCharging20Sharp as default } +export default IconBatteryCharging20Sharp diff --git a/src/IconBatteryCharging20SharpFilled.tsx b/src/IconBatteryCharging20SharpFilled.tsx index 2132a6b1c..e3d32c838 100644 --- a/src/IconBatteryCharging20SharpFilled.tsx +++ b/src/IconBatteryCharging20SharpFilled.tsx @@ -10,4 +10,4 @@ const IconBatteryCharging20SharpFilled: React.FC = ({ ) -export { IconBatteryCharging20SharpFilled as default } +export default IconBatteryCharging20SharpFilled diff --git a/src/IconBatteryCharging30Outlined.tsx b/src/IconBatteryCharging30Outlined.tsx index 52bb336bb..c8dc8758b 100644 --- a/src/IconBatteryCharging30Outlined.tsx +++ b/src/IconBatteryCharging30Outlined.tsx @@ -8,4 +8,4 @@ const IconBatteryCharging30Outlined: React.FC = ({ ...props }) => ( ) -export { IconBatteryCharging30Outlined as default } +export default IconBatteryCharging30Outlined diff --git a/src/IconBatteryCharging30OutlinedFilled.tsx b/src/IconBatteryCharging30OutlinedFilled.tsx index bb4e684e3..1ea6b87cf 100644 --- a/src/IconBatteryCharging30OutlinedFilled.tsx +++ b/src/IconBatteryCharging30OutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconBatteryCharging30OutlinedFilled: React.FC = ({ ) -export { IconBatteryCharging30OutlinedFilled as default } +export default IconBatteryCharging30OutlinedFilled diff --git a/src/IconBatteryCharging30Rounded.tsx b/src/IconBatteryCharging30Rounded.tsx index cc0466e3c..70bd212a0 100644 --- a/src/IconBatteryCharging30Rounded.tsx +++ b/src/IconBatteryCharging30Rounded.tsx @@ -8,4 +8,4 @@ const IconBatteryCharging30Rounded: React.FC = ({ ...props }) => ( ) -export { IconBatteryCharging30Rounded as default } +export default IconBatteryCharging30Rounded diff --git a/src/IconBatteryCharging30RoundedFilled.tsx b/src/IconBatteryCharging30RoundedFilled.tsx index d217f077b..a259e1cf9 100644 --- a/src/IconBatteryCharging30RoundedFilled.tsx +++ b/src/IconBatteryCharging30RoundedFilled.tsx @@ -10,4 +10,4 @@ const IconBatteryCharging30RoundedFilled: React.FC = ({ ) -export { IconBatteryCharging30RoundedFilled as default } +export default IconBatteryCharging30RoundedFilled diff --git a/src/IconBatteryCharging30Sharp.tsx b/src/IconBatteryCharging30Sharp.tsx index c3f3b53c3..be6f61d51 100644 --- a/src/IconBatteryCharging30Sharp.tsx +++ b/src/IconBatteryCharging30Sharp.tsx @@ -8,4 +8,4 @@ const IconBatteryCharging30Sharp: React.FC = ({ ...props }) => ( ) -export { IconBatteryCharging30Sharp as default } +export default IconBatteryCharging30Sharp diff --git a/src/IconBatteryCharging30SharpFilled.tsx b/src/IconBatteryCharging30SharpFilled.tsx index 63ffd84d7..5e3fad91e 100644 --- a/src/IconBatteryCharging30SharpFilled.tsx +++ b/src/IconBatteryCharging30SharpFilled.tsx @@ -10,4 +10,4 @@ const IconBatteryCharging30SharpFilled: React.FC = ({ ) -export { IconBatteryCharging30SharpFilled as default } +export default IconBatteryCharging30SharpFilled diff --git a/src/IconBatteryCharging50Outlined.tsx b/src/IconBatteryCharging50Outlined.tsx index 3fdf44878..11032bf0b 100644 --- a/src/IconBatteryCharging50Outlined.tsx +++ b/src/IconBatteryCharging50Outlined.tsx @@ -8,4 +8,4 @@ const IconBatteryCharging50Outlined: React.FC = ({ ...props }) => ( ) -export { IconBatteryCharging50Outlined as default } +export default IconBatteryCharging50Outlined diff --git a/src/IconBatteryCharging50OutlinedFilled.tsx b/src/IconBatteryCharging50OutlinedFilled.tsx index b50cd4085..6c3fed11c 100644 --- a/src/IconBatteryCharging50OutlinedFilled.tsx +++ b/src/IconBatteryCharging50OutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconBatteryCharging50OutlinedFilled: React.FC = ({ ) -export { IconBatteryCharging50OutlinedFilled as default } +export default IconBatteryCharging50OutlinedFilled diff --git a/src/IconBatteryCharging50Rounded.tsx b/src/IconBatteryCharging50Rounded.tsx index 68e9a5153..286203b3d 100644 --- a/src/IconBatteryCharging50Rounded.tsx +++ b/src/IconBatteryCharging50Rounded.tsx @@ -8,4 +8,4 @@ const IconBatteryCharging50Rounded: React.FC = ({ ...props }) => ( ) -export { IconBatteryCharging50Rounded as default } +export default IconBatteryCharging50Rounded diff --git a/src/IconBatteryCharging50RoundedFilled.tsx b/src/IconBatteryCharging50RoundedFilled.tsx index 1e7630fef..028d0c213 100644 --- a/src/IconBatteryCharging50RoundedFilled.tsx +++ b/src/IconBatteryCharging50RoundedFilled.tsx @@ -10,4 +10,4 @@ const IconBatteryCharging50RoundedFilled: React.FC = ({ ) -export { IconBatteryCharging50RoundedFilled as default } +export default IconBatteryCharging50RoundedFilled diff --git a/src/IconBatteryCharging50Sharp.tsx b/src/IconBatteryCharging50Sharp.tsx index b484fe57a..9ce4d8228 100644 --- a/src/IconBatteryCharging50Sharp.tsx +++ b/src/IconBatteryCharging50Sharp.tsx @@ -8,4 +8,4 @@ const IconBatteryCharging50Sharp: React.FC = ({ ...props }) => ( ) -export { IconBatteryCharging50Sharp as default } +export default IconBatteryCharging50Sharp diff --git a/src/IconBatteryCharging50SharpFilled.tsx b/src/IconBatteryCharging50SharpFilled.tsx index ab8aed95f..048cea2ea 100644 --- a/src/IconBatteryCharging50SharpFilled.tsx +++ b/src/IconBatteryCharging50SharpFilled.tsx @@ -10,4 +10,4 @@ const IconBatteryCharging50SharpFilled: React.FC = ({ ) -export { IconBatteryCharging50SharpFilled as default } +export default IconBatteryCharging50SharpFilled diff --git a/src/IconBatteryCharging60Outlined.tsx b/src/IconBatteryCharging60Outlined.tsx index b0d95bc2f..cc37b1421 100644 --- a/src/IconBatteryCharging60Outlined.tsx +++ b/src/IconBatteryCharging60Outlined.tsx @@ -8,4 +8,4 @@ const IconBatteryCharging60Outlined: React.FC = ({ ...props }) => ( ) -export { IconBatteryCharging60Outlined as default } +export default IconBatteryCharging60Outlined diff --git a/src/IconBatteryCharging60OutlinedFilled.tsx b/src/IconBatteryCharging60OutlinedFilled.tsx index a7fced0a0..e765e35b5 100644 --- a/src/IconBatteryCharging60OutlinedFilled.tsx +++ b/src/IconBatteryCharging60OutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconBatteryCharging60OutlinedFilled: React.FC = ({ ) -export { IconBatteryCharging60OutlinedFilled as default } +export default IconBatteryCharging60OutlinedFilled diff --git a/src/IconBatteryCharging60Rounded.tsx b/src/IconBatteryCharging60Rounded.tsx index 39aef499f..1829ff284 100644 --- a/src/IconBatteryCharging60Rounded.tsx +++ b/src/IconBatteryCharging60Rounded.tsx @@ -8,4 +8,4 @@ const IconBatteryCharging60Rounded: React.FC = ({ ...props }) => ( ) -export { IconBatteryCharging60Rounded as default } +export default IconBatteryCharging60Rounded diff --git a/src/IconBatteryCharging60RoundedFilled.tsx b/src/IconBatteryCharging60RoundedFilled.tsx index 4c97b54f1..2b763d186 100644 --- a/src/IconBatteryCharging60RoundedFilled.tsx +++ b/src/IconBatteryCharging60RoundedFilled.tsx @@ -10,4 +10,4 @@ const IconBatteryCharging60RoundedFilled: React.FC = ({ ) -export { IconBatteryCharging60RoundedFilled as default } +export default IconBatteryCharging60RoundedFilled diff --git a/src/IconBatteryCharging60Sharp.tsx b/src/IconBatteryCharging60Sharp.tsx index 179520075..030445256 100644 --- a/src/IconBatteryCharging60Sharp.tsx +++ b/src/IconBatteryCharging60Sharp.tsx @@ -8,4 +8,4 @@ const IconBatteryCharging60Sharp: React.FC = ({ ...props }) => ( ) -export { IconBatteryCharging60Sharp as default } +export default IconBatteryCharging60Sharp diff --git a/src/IconBatteryCharging60SharpFilled.tsx b/src/IconBatteryCharging60SharpFilled.tsx index 8bafafd50..952f76375 100644 --- a/src/IconBatteryCharging60SharpFilled.tsx +++ b/src/IconBatteryCharging60SharpFilled.tsx @@ -10,4 +10,4 @@ const IconBatteryCharging60SharpFilled: React.FC = ({ ) -export { IconBatteryCharging60SharpFilled as default } +export default IconBatteryCharging60SharpFilled diff --git a/src/IconBatteryCharging80Outlined.tsx b/src/IconBatteryCharging80Outlined.tsx index 02b9b2a47..f49d660fa 100644 --- a/src/IconBatteryCharging80Outlined.tsx +++ b/src/IconBatteryCharging80Outlined.tsx @@ -8,4 +8,4 @@ const IconBatteryCharging80Outlined: React.FC = ({ ...props }) => ( ) -export { IconBatteryCharging80Outlined as default } +export default IconBatteryCharging80Outlined diff --git a/src/IconBatteryCharging80OutlinedFilled.tsx b/src/IconBatteryCharging80OutlinedFilled.tsx index 2060ab934..5fee77fd1 100644 --- a/src/IconBatteryCharging80OutlinedFilled.tsx +++ b/src/IconBatteryCharging80OutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconBatteryCharging80OutlinedFilled: React.FC = ({ ) -export { IconBatteryCharging80OutlinedFilled as default } +export default IconBatteryCharging80OutlinedFilled diff --git a/src/IconBatteryCharging80Rounded.tsx b/src/IconBatteryCharging80Rounded.tsx index 3f023405c..686e0a7c8 100644 --- a/src/IconBatteryCharging80Rounded.tsx +++ b/src/IconBatteryCharging80Rounded.tsx @@ -8,4 +8,4 @@ const IconBatteryCharging80Rounded: React.FC = ({ ...props }) => ( ) -export { IconBatteryCharging80Rounded as default } +export default IconBatteryCharging80Rounded diff --git a/src/IconBatteryCharging80RoundedFilled.tsx b/src/IconBatteryCharging80RoundedFilled.tsx index 21f278e7d..9376c7397 100644 --- a/src/IconBatteryCharging80RoundedFilled.tsx +++ b/src/IconBatteryCharging80RoundedFilled.tsx @@ -10,4 +10,4 @@ const IconBatteryCharging80RoundedFilled: React.FC = ({ ) -export { IconBatteryCharging80RoundedFilled as default } +export default IconBatteryCharging80RoundedFilled diff --git a/src/IconBatteryCharging80Sharp.tsx b/src/IconBatteryCharging80Sharp.tsx index 198b6f17b..8cbba3fcb 100644 --- a/src/IconBatteryCharging80Sharp.tsx +++ b/src/IconBatteryCharging80Sharp.tsx @@ -8,4 +8,4 @@ const IconBatteryCharging80Sharp: React.FC = ({ ...props }) => ( ) -export { IconBatteryCharging80Sharp as default } +export default IconBatteryCharging80Sharp diff --git a/src/IconBatteryCharging80SharpFilled.tsx b/src/IconBatteryCharging80SharpFilled.tsx index 13e3be5ca..0674a440e 100644 --- a/src/IconBatteryCharging80SharpFilled.tsx +++ b/src/IconBatteryCharging80SharpFilled.tsx @@ -10,4 +10,4 @@ const IconBatteryCharging80SharpFilled: React.FC = ({ ) -export { IconBatteryCharging80SharpFilled as default } +export default IconBatteryCharging80SharpFilled diff --git a/src/IconBatteryCharging90Outlined.tsx b/src/IconBatteryCharging90Outlined.tsx index f5b24c677..fa407be85 100644 --- a/src/IconBatteryCharging90Outlined.tsx +++ b/src/IconBatteryCharging90Outlined.tsx @@ -8,4 +8,4 @@ const IconBatteryCharging90Outlined: React.FC = ({ ...props }) => ( ) -export { IconBatteryCharging90Outlined as default } +export default IconBatteryCharging90Outlined diff --git a/src/IconBatteryCharging90OutlinedFilled.tsx b/src/IconBatteryCharging90OutlinedFilled.tsx index 0c99af4c4..3958c462f 100644 --- a/src/IconBatteryCharging90OutlinedFilled.tsx +++ b/src/IconBatteryCharging90OutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconBatteryCharging90OutlinedFilled: React.FC = ({ ) -export { IconBatteryCharging90OutlinedFilled as default } +export default IconBatteryCharging90OutlinedFilled diff --git a/src/IconBatteryCharging90Rounded.tsx b/src/IconBatteryCharging90Rounded.tsx index 82d83bed9..9b942acd7 100644 --- a/src/IconBatteryCharging90Rounded.tsx +++ b/src/IconBatteryCharging90Rounded.tsx @@ -8,4 +8,4 @@ const IconBatteryCharging90Rounded: React.FC = ({ ...props }) => ( ) -export { IconBatteryCharging90Rounded as default } +export default IconBatteryCharging90Rounded diff --git a/src/IconBatteryCharging90RoundedFilled.tsx b/src/IconBatteryCharging90RoundedFilled.tsx index a05d67aba..be66de801 100644 --- a/src/IconBatteryCharging90RoundedFilled.tsx +++ b/src/IconBatteryCharging90RoundedFilled.tsx @@ -10,4 +10,4 @@ const IconBatteryCharging90RoundedFilled: React.FC = ({ ) -export { IconBatteryCharging90RoundedFilled as default } +export default IconBatteryCharging90RoundedFilled diff --git a/src/IconBatteryCharging90Sharp.tsx b/src/IconBatteryCharging90Sharp.tsx index 3434f9b2f..8e7e80fd8 100644 --- a/src/IconBatteryCharging90Sharp.tsx +++ b/src/IconBatteryCharging90Sharp.tsx @@ -8,4 +8,4 @@ const IconBatteryCharging90Sharp: React.FC = ({ ...props }) => ( ) -export { IconBatteryCharging90Sharp as default } +export default IconBatteryCharging90Sharp diff --git a/src/IconBatteryCharging90SharpFilled.tsx b/src/IconBatteryCharging90SharpFilled.tsx index dce3872f4..7d6354d31 100644 --- a/src/IconBatteryCharging90SharpFilled.tsx +++ b/src/IconBatteryCharging90SharpFilled.tsx @@ -10,4 +10,4 @@ const IconBatteryCharging90SharpFilled: React.FC = ({ ) -export { IconBatteryCharging90SharpFilled as default } +export default IconBatteryCharging90SharpFilled diff --git a/src/IconBatteryChargingFullOutlined.tsx b/src/IconBatteryChargingFullOutlined.tsx index 46a2f562c..83b5e99c3 100644 --- a/src/IconBatteryChargingFullOutlined.tsx +++ b/src/IconBatteryChargingFullOutlined.tsx @@ -8,4 +8,4 @@ const IconBatteryChargingFullOutlined: React.FC = ({ ...props }) => ( ) -export { IconBatteryChargingFullOutlined as default } +export default IconBatteryChargingFullOutlined diff --git a/src/IconBatteryChargingFullOutlinedFilled.tsx b/src/IconBatteryChargingFullOutlinedFilled.tsx index bf2f0808b..d91065335 100644 --- a/src/IconBatteryChargingFullOutlinedFilled.tsx +++ b/src/IconBatteryChargingFullOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconBatteryChargingFullOutlinedFilled: React.FC = ({ ) -export { IconBatteryChargingFullOutlinedFilled as default } +export default IconBatteryChargingFullOutlinedFilled diff --git a/src/IconBatteryChargingFullRounded.tsx b/src/IconBatteryChargingFullRounded.tsx index b5f7bb388..84fc8d68f 100644 --- a/src/IconBatteryChargingFullRounded.tsx +++ b/src/IconBatteryChargingFullRounded.tsx @@ -8,4 +8,4 @@ const IconBatteryChargingFullRounded: React.FC = ({ ...props }) => ( ) -export { IconBatteryChargingFullRounded as default } +export default IconBatteryChargingFullRounded diff --git a/src/IconBatteryChargingFullRoundedFilled.tsx b/src/IconBatteryChargingFullRoundedFilled.tsx index d2859969a..25931b1d5 100644 --- a/src/IconBatteryChargingFullRoundedFilled.tsx +++ b/src/IconBatteryChargingFullRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconBatteryChargingFullRoundedFilled: React.FC = ({ ) -export { IconBatteryChargingFullRoundedFilled as default } +export default IconBatteryChargingFullRoundedFilled diff --git a/src/IconBatteryChargingFullSharp.tsx b/src/IconBatteryChargingFullSharp.tsx index d4220d55e..9bdc27e21 100644 --- a/src/IconBatteryChargingFullSharp.tsx +++ b/src/IconBatteryChargingFullSharp.tsx @@ -8,4 +8,4 @@ const IconBatteryChargingFullSharp: React.FC = ({ ...props }) => ( ) -export { IconBatteryChargingFullSharp as default } +export default IconBatteryChargingFullSharp diff --git a/src/IconBatteryChargingFullSharpFilled.tsx b/src/IconBatteryChargingFullSharpFilled.tsx index 3140d8490..03d2061a6 100644 --- a/src/IconBatteryChargingFullSharpFilled.tsx +++ b/src/IconBatteryChargingFullSharpFilled.tsx @@ -10,4 +10,4 @@ const IconBatteryChargingFullSharpFilled: React.FC = ({ ) -export { IconBatteryChargingFullSharpFilled as default } +export default IconBatteryChargingFullSharpFilled diff --git a/src/IconBatteryErrorOutlined.tsx b/src/IconBatteryErrorOutlined.tsx index cd1f26737..d4630d949 100644 --- a/src/IconBatteryErrorOutlined.tsx +++ b/src/IconBatteryErrorOutlined.tsx @@ -8,4 +8,4 @@ const IconBatteryErrorOutlined: React.FC = ({ ...props }) => ( ) -export { IconBatteryErrorOutlined as default } +export default IconBatteryErrorOutlined diff --git a/src/IconBatteryErrorOutlinedFilled.tsx b/src/IconBatteryErrorOutlinedFilled.tsx index 2e1c058f9..89d57f246 100644 --- a/src/IconBatteryErrorOutlinedFilled.tsx +++ b/src/IconBatteryErrorOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconBatteryErrorOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconBatteryErrorOutlinedFilled as default } +export default IconBatteryErrorOutlinedFilled diff --git a/src/IconBatteryErrorRounded.tsx b/src/IconBatteryErrorRounded.tsx index ea9c68b40..e59fe20f6 100644 --- a/src/IconBatteryErrorRounded.tsx +++ b/src/IconBatteryErrorRounded.tsx @@ -8,4 +8,4 @@ const IconBatteryErrorRounded: React.FC = ({ ...props }) => ( ) -export { IconBatteryErrorRounded as default } +export default IconBatteryErrorRounded diff --git a/src/IconBatteryErrorRoundedFilled.tsx b/src/IconBatteryErrorRoundedFilled.tsx index 169ff1bdd..3cb39ec9c 100644 --- a/src/IconBatteryErrorRoundedFilled.tsx +++ b/src/IconBatteryErrorRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconBatteryErrorRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconBatteryErrorRoundedFilled as default } +export default IconBatteryErrorRoundedFilled diff --git a/src/IconBatteryErrorSharp.tsx b/src/IconBatteryErrorSharp.tsx index b38a172e4..9a1fc0c87 100644 --- a/src/IconBatteryErrorSharp.tsx +++ b/src/IconBatteryErrorSharp.tsx @@ -8,4 +8,4 @@ const IconBatteryErrorSharp: React.FC = ({ ...props }) => ( ) -export { IconBatteryErrorSharp as default } +export default IconBatteryErrorSharp diff --git a/src/IconBatteryErrorSharpFilled.tsx b/src/IconBatteryErrorSharpFilled.tsx index a665730d4..aa1288a54 100644 --- a/src/IconBatteryErrorSharpFilled.tsx +++ b/src/IconBatteryErrorSharpFilled.tsx @@ -8,4 +8,4 @@ const IconBatteryErrorSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconBatteryErrorSharpFilled as default } +export default IconBatteryErrorSharpFilled diff --git a/src/IconBatteryFullAltOutlined.tsx b/src/IconBatteryFullAltOutlined.tsx index 2158f9834..02ee2aa89 100644 --- a/src/IconBatteryFullAltOutlined.tsx +++ b/src/IconBatteryFullAltOutlined.tsx @@ -8,4 +8,4 @@ const IconBatteryFullAltOutlined: React.FC = ({ ...props }) => ( ) -export { IconBatteryFullAltOutlined as default } +export default IconBatteryFullAltOutlined diff --git a/src/IconBatteryFullAltOutlinedFilled.tsx b/src/IconBatteryFullAltOutlinedFilled.tsx index dc59237d3..3959142d1 100644 --- a/src/IconBatteryFullAltOutlinedFilled.tsx +++ b/src/IconBatteryFullAltOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconBatteryFullAltOutlinedFilled: React.FC = ({ ) -export { IconBatteryFullAltOutlinedFilled as default } +export default IconBatteryFullAltOutlinedFilled diff --git a/src/IconBatteryFullAltRounded.tsx b/src/IconBatteryFullAltRounded.tsx index 04afcc5de..fa88f6ee6 100644 --- a/src/IconBatteryFullAltRounded.tsx +++ b/src/IconBatteryFullAltRounded.tsx @@ -8,4 +8,4 @@ const IconBatteryFullAltRounded: React.FC = ({ ...props }) => ( ) -export { IconBatteryFullAltRounded as default } +export default IconBatteryFullAltRounded diff --git a/src/IconBatteryFullAltRoundedFilled.tsx b/src/IconBatteryFullAltRoundedFilled.tsx index 6316c8746..26cce6291 100644 --- a/src/IconBatteryFullAltRoundedFilled.tsx +++ b/src/IconBatteryFullAltRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconBatteryFullAltRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconBatteryFullAltRoundedFilled as default } +export default IconBatteryFullAltRoundedFilled diff --git a/src/IconBatteryFullAltSharp.tsx b/src/IconBatteryFullAltSharp.tsx index 56268d666..b5d19d53c 100644 --- a/src/IconBatteryFullAltSharp.tsx +++ b/src/IconBatteryFullAltSharp.tsx @@ -8,4 +8,4 @@ const IconBatteryFullAltSharp: React.FC = ({ ...props }) => ( ) -export { IconBatteryFullAltSharp as default } +export default IconBatteryFullAltSharp diff --git a/src/IconBatteryFullAltSharpFilled.tsx b/src/IconBatteryFullAltSharpFilled.tsx index 95b4bbfd2..cf2c218f3 100644 --- a/src/IconBatteryFullAltSharpFilled.tsx +++ b/src/IconBatteryFullAltSharpFilled.tsx @@ -8,4 +8,4 @@ const IconBatteryFullAltSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconBatteryFullAltSharpFilled as default } +export default IconBatteryFullAltSharpFilled diff --git a/src/IconBatteryFullOutlined.tsx b/src/IconBatteryFullOutlined.tsx index ef4f5fa3b..40eeaf99a 100644 --- a/src/IconBatteryFullOutlined.tsx +++ b/src/IconBatteryFullOutlined.tsx @@ -8,4 +8,4 @@ const IconBatteryFullOutlined: React.FC = ({ ...props }) => ( ) -export { IconBatteryFullOutlined as default } +export default IconBatteryFullOutlined diff --git a/src/IconBatteryFullOutlinedFilled.tsx b/src/IconBatteryFullOutlinedFilled.tsx index 7734ee6b6..860090b9f 100644 --- a/src/IconBatteryFullOutlinedFilled.tsx +++ b/src/IconBatteryFullOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconBatteryFullOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconBatteryFullOutlinedFilled as default } +export default IconBatteryFullOutlinedFilled diff --git a/src/IconBatteryFullRounded.tsx b/src/IconBatteryFullRounded.tsx index 3518a78e2..6c5d2ec28 100644 --- a/src/IconBatteryFullRounded.tsx +++ b/src/IconBatteryFullRounded.tsx @@ -8,4 +8,4 @@ const IconBatteryFullRounded: React.FC = ({ ...props }) => ( ) -export { IconBatteryFullRounded as default } +export default IconBatteryFullRounded diff --git a/src/IconBatteryFullRoundedFilled.tsx b/src/IconBatteryFullRoundedFilled.tsx index 22f050c0f..236daa74b 100644 --- a/src/IconBatteryFullRoundedFilled.tsx +++ b/src/IconBatteryFullRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconBatteryFullRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconBatteryFullRoundedFilled as default } +export default IconBatteryFullRoundedFilled diff --git a/src/IconBatteryFullSharp.tsx b/src/IconBatteryFullSharp.tsx index 02199a4c5..dda9611cb 100644 --- a/src/IconBatteryFullSharp.tsx +++ b/src/IconBatteryFullSharp.tsx @@ -8,4 +8,4 @@ const IconBatteryFullSharp: React.FC = ({ ...props }) => ( ) -export { IconBatteryFullSharp as default } +export default IconBatteryFullSharp diff --git a/src/IconBatteryFullSharpFilled.tsx b/src/IconBatteryFullSharpFilled.tsx index 6ca88036c..bee0c31fd 100644 --- a/src/IconBatteryFullSharpFilled.tsx +++ b/src/IconBatteryFullSharpFilled.tsx @@ -8,4 +8,4 @@ const IconBatteryFullSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconBatteryFullSharpFilled as default } +export default IconBatteryFullSharpFilled diff --git a/src/IconBatteryHoriz000Outlined.tsx b/src/IconBatteryHoriz000Outlined.tsx index ccbdf3150..6e8058d0f 100644 --- a/src/IconBatteryHoriz000Outlined.tsx +++ b/src/IconBatteryHoriz000Outlined.tsx @@ -8,4 +8,4 @@ const IconBatteryHoriz000Outlined: React.FC = ({ ...props }) => ( ) -export { IconBatteryHoriz000Outlined as default } +export default IconBatteryHoriz000Outlined diff --git a/src/IconBatteryHoriz000OutlinedFilled.tsx b/src/IconBatteryHoriz000OutlinedFilled.tsx index 3e92c887a..412083aab 100644 --- a/src/IconBatteryHoriz000OutlinedFilled.tsx +++ b/src/IconBatteryHoriz000OutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconBatteryHoriz000OutlinedFilled: React.FC = ({ ) -export { IconBatteryHoriz000OutlinedFilled as default } +export default IconBatteryHoriz000OutlinedFilled diff --git a/src/IconBatteryHoriz000Rounded.tsx b/src/IconBatteryHoriz000Rounded.tsx index 85c915bd1..a7966060c 100644 --- a/src/IconBatteryHoriz000Rounded.tsx +++ b/src/IconBatteryHoriz000Rounded.tsx @@ -8,4 +8,4 @@ const IconBatteryHoriz000Rounded: React.FC = ({ ...props }) => ( ) -export { IconBatteryHoriz000Rounded as default } +export default IconBatteryHoriz000Rounded diff --git a/src/IconBatteryHoriz000RoundedFilled.tsx b/src/IconBatteryHoriz000RoundedFilled.tsx index 57365b9aa..b57754119 100644 --- a/src/IconBatteryHoriz000RoundedFilled.tsx +++ b/src/IconBatteryHoriz000RoundedFilled.tsx @@ -10,4 +10,4 @@ const IconBatteryHoriz000RoundedFilled: React.FC = ({ ) -export { IconBatteryHoriz000RoundedFilled as default } +export default IconBatteryHoriz000RoundedFilled diff --git a/src/IconBatteryHoriz000Sharp.tsx b/src/IconBatteryHoriz000Sharp.tsx index 44a260a53..239bb0157 100644 --- a/src/IconBatteryHoriz000Sharp.tsx +++ b/src/IconBatteryHoriz000Sharp.tsx @@ -8,4 +8,4 @@ const IconBatteryHoriz000Sharp: React.FC = ({ ...props }) => ( ) -export { IconBatteryHoriz000Sharp as default } +export default IconBatteryHoriz000Sharp diff --git a/src/IconBatteryHoriz000SharpFilled.tsx b/src/IconBatteryHoriz000SharpFilled.tsx index 3c0e4b6e0..6d53048e0 100644 --- a/src/IconBatteryHoriz000SharpFilled.tsx +++ b/src/IconBatteryHoriz000SharpFilled.tsx @@ -8,4 +8,4 @@ const IconBatteryHoriz000SharpFilled: React.FC = ({ ...props }) => ( ) -export { IconBatteryHoriz000SharpFilled as default } +export default IconBatteryHoriz000SharpFilled diff --git a/src/IconBatteryHoriz050Outlined.tsx b/src/IconBatteryHoriz050Outlined.tsx index 6f4529d4e..bedd90ef1 100644 --- a/src/IconBatteryHoriz050Outlined.tsx +++ b/src/IconBatteryHoriz050Outlined.tsx @@ -8,4 +8,4 @@ const IconBatteryHoriz050Outlined: React.FC = ({ ...props }) => ( ) -export { IconBatteryHoriz050Outlined as default } +export default IconBatteryHoriz050Outlined diff --git a/src/IconBatteryHoriz050OutlinedFilled.tsx b/src/IconBatteryHoriz050OutlinedFilled.tsx index 7c3685bcb..c86f8b4dd 100644 --- a/src/IconBatteryHoriz050OutlinedFilled.tsx +++ b/src/IconBatteryHoriz050OutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconBatteryHoriz050OutlinedFilled: React.FC = ({ ) -export { IconBatteryHoriz050OutlinedFilled as default } +export default IconBatteryHoriz050OutlinedFilled diff --git a/src/IconBatteryHoriz050Rounded.tsx b/src/IconBatteryHoriz050Rounded.tsx index 043b548e3..9becbdcf5 100644 --- a/src/IconBatteryHoriz050Rounded.tsx +++ b/src/IconBatteryHoriz050Rounded.tsx @@ -8,4 +8,4 @@ const IconBatteryHoriz050Rounded: React.FC = ({ ...props }) => ( ) -export { IconBatteryHoriz050Rounded as default } +export default IconBatteryHoriz050Rounded diff --git a/src/IconBatteryHoriz050RoundedFilled.tsx b/src/IconBatteryHoriz050RoundedFilled.tsx index a62a56191..5c443677e 100644 --- a/src/IconBatteryHoriz050RoundedFilled.tsx +++ b/src/IconBatteryHoriz050RoundedFilled.tsx @@ -10,4 +10,4 @@ const IconBatteryHoriz050RoundedFilled: React.FC = ({ ) -export { IconBatteryHoriz050RoundedFilled as default } +export default IconBatteryHoriz050RoundedFilled diff --git a/src/IconBatteryHoriz050SharpFilled.tsx b/src/IconBatteryHoriz050SharpFilled.tsx index cfb17ec00..6bafe3b62 100644 --- a/src/IconBatteryHoriz050SharpFilled.tsx +++ b/src/IconBatteryHoriz050SharpFilled.tsx @@ -8,4 +8,4 @@ const IconBatteryHoriz050SharpFilled: React.FC = ({ ...props }) => ( ) -export { IconBatteryHoriz050SharpFilled as default } +export default IconBatteryHoriz050SharpFilled diff --git a/src/IconBatteryHoriz075Outlined.tsx b/src/IconBatteryHoriz075Outlined.tsx index 71067c0ea..449f76ef4 100644 --- a/src/IconBatteryHoriz075Outlined.tsx +++ b/src/IconBatteryHoriz075Outlined.tsx @@ -8,4 +8,4 @@ const IconBatteryHoriz075Outlined: React.FC = ({ ...props }) => ( ) -export { IconBatteryHoriz075Outlined as default } +export default IconBatteryHoriz075Outlined diff --git a/src/IconBatteryHoriz075OutlinedFilled.tsx b/src/IconBatteryHoriz075OutlinedFilled.tsx index 95b9e6ae9..e61e8505a 100644 --- a/src/IconBatteryHoriz075OutlinedFilled.tsx +++ b/src/IconBatteryHoriz075OutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconBatteryHoriz075OutlinedFilled: React.FC = ({ ) -export { IconBatteryHoriz075OutlinedFilled as default } +export default IconBatteryHoriz075OutlinedFilled diff --git a/src/IconBatteryHoriz075Rounded.tsx b/src/IconBatteryHoriz075Rounded.tsx index 6030798b4..79dfb02ba 100644 --- a/src/IconBatteryHoriz075Rounded.tsx +++ b/src/IconBatteryHoriz075Rounded.tsx @@ -8,4 +8,4 @@ const IconBatteryHoriz075Rounded: React.FC = ({ ...props }) => ( ) -export { IconBatteryHoriz075Rounded as default } +export default IconBatteryHoriz075Rounded diff --git a/src/IconBatteryHoriz075RoundedFilled.tsx b/src/IconBatteryHoriz075RoundedFilled.tsx index 8a5b28343..c500f51a7 100644 --- a/src/IconBatteryHoriz075RoundedFilled.tsx +++ b/src/IconBatteryHoriz075RoundedFilled.tsx @@ -10,4 +10,4 @@ const IconBatteryHoriz075RoundedFilled: React.FC = ({ ) -export { IconBatteryHoriz075RoundedFilled as default } +export default IconBatteryHoriz075RoundedFilled diff --git a/src/IconBatteryHoriz075Sharp.tsx b/src/IconBatteryHoriz075Sharp.tsx index 648d4c208..aa6f6d041 100644 --- a/src/IconBatteryHoriz075Sharp.tsx +++ b/src/IconBatteryHoriz075Sharp.tsx @@ -8,4 +8,4 @@ const IconBatteryHoriz075Sharp: React.FC = ({ ...props }) => ( ) -export { IconBatteryHoriz075Sharp as default } +export default IconBatteryHoriz075Sharp diff --git a/src/IconBatteryHoriz075SharpFilled.tsx b/src/IconBatteryHoriz075SharpFilled.tsx index bb3ed3fc7..6c630faac 100644 --- a/src/IconBatteryHoriz075SharpFilled.tsx +++ b/src/IconBatteryHoriz075SharpFilled.tsx @@ -8,4 +8,4 @@ const IconBatteryHoriz075SharpFilled: React.FC = ({ ...props }) => ( ) -export { IconBatteryHoriz075SharpFilled as default } +export default IconBatteryHoriz075SharpFilled diff --git a/src/IconBatteryLowOutlined.tsx b/src/IconBatteryLowOutlined.tsx index 36d97614e..cf53b78d6 100644 --- a/src/IconBatteryLowOutlined.tsx +++ b/src/IconBatteryLowOutlined.tsx @@ -8,4 +8,4 @@ const IconBatteryLowOutlined: React.FC = ({ ...props }) => ( ) -export { IconBatteryLowOutlined as default } +export default IconBatteryLowOutlined diff --git a/src/IconBatteryLowOutlinedFilled.tsx b/src/IconBatteryLowOutlinedFilled.tsx index 91c72029b..940b7c504 100644 --- a/src/IconBatteryLowOutlinedFilled.tsx +++ b/src/IconBatteryLowOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconBatteryLowOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconBatteryLowOutlinedFilled as default } +export default IconBatteryLowOutlinedFilled diff --git a/src/IconBatteryLowRounded.tsx b/src/IconBatteryLowRounded.tsx index 80e1a055e..9f04f4e33 100644 --- a/src/IconBatteryLowRounded.tsx +++ b/src/IconBatteryLowRounded.tsx @@ -8,4 +8,4 @@ const IconBatteryLowRounded: React.FC = ({ ...props }) => ( ) -export { IconBatteryLowRounded as default } +export default IconBatteryLowRounded diff --git a/src/IconBatteryLowRoundedFilled.tsx b/src/IconBatteryLowRoundedFilled.tsx index 518662116..073e95972 100644 --- a/src/IconBatteryLowRoundedFilled.tsx +++ b/src/IconBatteryLowRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconBatteryLowRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconBatteryLowRoundedFilled as default } +export default IconBatteryLowRoundedFilled diff --git a/src/IconBatteryLowSharp.tsx b/src/IconBatteryLowSharp.tsx index 43768cb77..06f707347 100644 --- a/src/IconBatteryLowSharp.tsx +++ b/src/IconBatteryLowSharp.tsx @@ -8,4 +8,4 @@ const IconBatteryLowSharp: React.FC = ({ ...props }) => ( ) -export { IconBatteryLowSharp as default } +export default IconBatteryLowSharp diff --git a/src/IconBatteryLowSharpFilled.tsx b/src/IconBatteryLowSharpFilled.tsx index 00d11c422..1ba329c84 100644 --- a/src/IconBatteryLowSharpFilled.tsx +++ b/src/IconBatteryLowSharpFilled.tsx @@ -8,4 +8,4 @@ const IconBatteryLowSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconBatteryLowSharpFilled as default } +export default IconBatteryLowSharpFilled diff --git a/src/IconBatteryPlusOutlined.tsx b/src/IconBatteryPlusOutlined.tsx index 416e4cebf..bdaa4c20f 100644 --- a/src/IconBatteryPlusOutlined.tsx +++ b/src/IconBatteryPlusOutlined.tsx @@ -8,4 +8,4 @@ const IconBatteryPlusOutlined: React.FC = ({ ...props }) => ( ) -export { IconBatteryPlusOutlined as default } +export default IconBatteryPlusOutlined diff --git a/src/IconBatteryPlusOutlinedFilled.tsx b/src/IconBatteryPlusOutlinedFilled.tsx index 652ebbd96..5e99a1b03 100644 --- a/src/IconBatteryPlusOutlinedFilled.tsx +++ b/src/IconBatteryPlusOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconBatteryPlusOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconBatteryPlusOutlinedFilled as default } +export default IconBatteryPlusOutlinedFilled diff --git a/src/IconBatteryPlusRounded.tsx b/src/IconBatteryPlusRounded.tsx index 0b6d9230e..0b29ee270 100644 --- a/src/IconBatteryPlusRounded.tsx +++ b/src/IconBatteryPlusRounded.tsx @@ -8,4 +8,4 @@ const IconBatteryPlusRounded: React.FC = ({ ...props }) => ( ) -export { IconBatteryPlusRounded as default } +export default IconBatteryPlusRounded diff --git a/src/IconBatteryPlusRoundedFilled.tsx b/src/IconBatteryPlusRoundedFilled.tsx index 1bb298fb8..201a0bf5a 100644 --- a/src/IconBatteryPlusRoundedFilled.tsx +++ b/src/IconBatteryPlusRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconBatteryPlusRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconBatteryPlusRoundedFilled as default } +export default IconBatteryPlusRoundedFilled diff --git a/src/IconBatteryPlusSharp.tsx b/src/IconBatteryPlusSharp.tsx index 4dfa2362b..ee90110d5 100644 --- a/src/IconBatteryPlusSharp.tsx +++ b/src/IconBatteryPlusSharp.tsx @@ -8,4 +8,4 @@ const IconBatteryPlusSharp: React.FC = ({ ...props }) => ( ) -export { IconBatteryPlusSharp as default } +export default IconBatteryPlusSharp diff --git a/src/IconBatteryPlusSharpFilled.tsx b/src/IconBatteryPlusSharpFilled.tsx index 6a3a1ab60..7da40b6ab 100644 --- a/src/IconBatteryPlusSharpFilled.tsx +++ b/src/IconBatteryPlusSharpFilled.tsx @@ -8,4 +8,4 @@ const IconBatteryPlusSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconBatteryPlusSharpFilled as default } +export default IconBatteryPlusSharpFilled diff --git a/src/IconBatteryProfileOutlined.tsx b/src/IconBatteryProfileOutlined.tsx index e79fc755f..b1f0fc800 100644 --- a/src/IconBatteryProfileOutlined.tsx +++ b/src/IconBatteryProfileOutlined.tsx @@ -8,4 +8,4 @@ const IconBatteryProfileOutlined: React.FC = ({ ...props }) => ( ) -export { IconBatteryProfileOutlined as default } +export default IconBatteryProfileOutlined diff --git a/src/IconBatteryProfileOutlinedFilled.tsx b/src/IconBatteryProfileOutlinedFilled.tsx index 03769b89a..79c1ae2ed 100644 --- a/src/IconBatteryProfileOutlinedFilled.tsx +++ b/src/IconBatteryProfileOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconBatteryProfileOutlinedFilled: React.FC = ({ ) -export { IconBatteryProfileOutlinedFilled as default } +export default IconBatteryProfileOutlinedFilled diff --git a/src/IconBatteryProfileRounded.tsx b/src/IconBatteryProfileRounded.tsx index d0f30f8a5..9a734d862 100644 --- a/src/IconBatteryProfileRounded.tsx +++ b/src/IconBatteryProfileRounded.tsx @@ -8,4 +8,4 @@ const IconBatteryProfileRounded: React.FC = ({ ...props }) => ( ) -export { IconBatteryProfileRounded as default } +export default IconBatteryProfileRounded diff --git a/src/IconBatteryProfileRoundedFilled.tsx b/src/IconBatteryProfileRoundedFilled.tsx index 068e3a9d8..03a9b0961 100644 --- a/src/IconBatteryProfileRoundedFilled.tsx +++ b/src/IconBatteryProfileRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconBatteryProfileRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconBatteryProfileRoundedFilled as default } +export default IconBatteryProfileRoundedFilled diff --git a/src/IconBatteryProfileSharp.tsx b/src/IconBatteryProfileSharp.tsx index 6e518ddc6..ccdf4d357 100644 --- a/src/IconBatteryProfileSharp.tsx +++ b/src/IconBatteryProfileSharp.tsx @@ -8,4 +8,4 @@ const IconBatteryProfileSharp: React.FC = ({ ...props }) => ( ) -export { IconBatteryProfileSharp as default } +export default IconBatteryProfileSharp diff --git a/src/IconBatteryProfileSharpFilled.tsx b/src/IconBatteryProfileSharpFilled.tsx index 0cd6b0b1a..068c79a9d 100644 --- a/src/IconBatteryProfileSharpFilled.tsx +++ b/src/IconBatteryProfileSharpFilled.tsx @@ -8,4 +8,4 @@ const IconBatteryProfileSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconBatteryProfileSharpFilled as default } +export default IconBatteryProfileSharpFilled diff --git a/src/IconBatterySaverOutlined.tsx b/src/IconBatterySaverOutlined.tsx index d011e8bee..c7077eacf 100644 --- a/src/IconBatterySaverOutlined.tsx +++ b/src/IconBatterySaverOutlined.tsx @@ -8,4 +8,4 @@ const IconBatterySaverOutlined: React.FC = ({ ...props }) => ( ) -export { IconBatterySaverOutlined as default } +export default IconBatterySaverOutlined diff --git a/src/IconBatterySaverOutlinedFilled.tsx b/src/IconBatterySaverOutlinedFilled.tsx index 9c578304d..88181e2a1 100644 --- a/src/IconBatterySaverOutlinedFilled.tsx +++ b/src/IconBatterySaverOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconBatterySaverOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconBatterySaverOutlinedFilled as default } +export default IconBatterySaverOutlinedFilled diff --git a/src/IconBatterySaverRounded.tsx b/src/IconBatterySaverRounded.tsx index 5ea813e4c..60071a758 100644 --- a/src/IconBatterySaverRounded.tsx +++ b/src/IconBatterySaverRounded.tsx @@ -8,4 +8,4 @@ const IconBatterySaverRounded: React.FC = ({ ...props }) => ( ) -export { IconBatterySaverRounded as default } +export default IconBatterySaverRounded diff --git a/src/IconBatterySaverRoundedFilled.tsx b/src/IconBatterySaverRoundedFilled.tsx index 0f2e9d892..1ee24e398 100644 --- a/src/IconBatterySaverRoundedFilled.tsx +++ b/src/IconBatterySaverRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconBatterySaverRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconBatterySaverRoundedFilled as default } +export default IconBatterySaverRoundedFilled diff --git a/src/IconBatterySaverSharp.tsx b/src/IconBatterySaverSharp.tsx index 42d3a1db3..2b706fde6 100644 --- a/src/IconBatterySaverSharp.tsx +++ b/src/IconBatterySaverSharp.tsx @@ -8,4 +8,4 @@ const IconBatterySaverSharp: React.FC = ({ ...props }) => ( ) -export { IconBatterySaverSharp as default } +export default IconBatterySaverSharp diff --git a/src/IconBatterySaverSharpFilled.tsx b/src/IconBatterySaverSharpFilled.tsx index 3c6e0422d..c6724edf0 100644 --- a/src/IconBatterySaverSharpFilled.tsx +++ b/src/IconBatterySaverSharpFilled.tsx @@ -8,4 +8,4 @@ const IconBatterySaverSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconBatterySaverSharpFilled as default } +export default IconBatterySaverSharpFilled diff --git a/src/IconBatteryShareOutlined.tsx b/src/IconBatteryShareOutlined.tsx index 4efa88cee..0f2a6866b 100644 --- a/src/IconBatteryShareOutlined.tsx +++ b/src/IconBatteryShareOutlined.tsx @@ -8,4 +8,4 @@ const IconBatteryShareOutlined: React.FC = ({ ...props }) => ( ) -export { IconBatteryShareOutlined as default } +export default IconBatteryShareOutlined diff --git a/src/IconBatteryShareOutlinedFilled.tsx b/src/IconBatteryShareOutlinedFilled.tsx index f8917732c..86a71b98c 100644 --- a/src/IconBatteryShareOutlinedFilled.tsx +++ b/src/IconBatteryShareOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconBatteryShareOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconBatteryShareOutlinedFilled as default } +export default IconBatteryShareOutlinedFilled diff --git a/src/IconBatteryShareRounded.tsx b/src/IconBatteryShareRounded.tsx index 98967568d..355edb1aa 100644 --- a/src/IconBatteryShareRounded.tsx +++ b/src/IconBatteryShareRounded.tsx @@ -8,4 +8,4 @@ const IconBatteryShareRounded: React.FC = ({ ...props }) => ( ) -export { IconBatteryShareRounded as default } +export default IconBatteryShareRounded diff --git a/src/IconBatteryShareRoundedFilled.tsx b/src/IconBatteryShareRoundedFilled.tsx index 70a4875b8..f05262795 100644 --- a/src/IconBatteryShareRoundedFilled.tsx +++ b/src/IconBatteryShareRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconBatteryShareRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconBatteryShareRoundedFilled as default } +export default IconBatteryShareRoundedFilled diff --git a/src/IconBatteryShareSharp.tsx b/src/IconBatteryShareSharp.tsx index 943019643..8b0577da1 100644 --- a/src/IconBatteryShareSharp.tsx +++ b/src/IconBatteryShareSharp.tsx @@ -8,4 +8,4 @@ const IconBatteryShareSharp: React.FC = ({ ...props }) => ( ) -export { IconBatteryShareSharp as default } +export default IconBatteryShareSharp diff --git a/src/IconBatteryShareSharpFilled.tsx b/src/IconBatteryShareSharpFilled.tsx index 4c0b99cff..df7b71044 100644 --- a/src/IconBatteryShareSharpFilled.tsx +++ b/src/IconBatteryShareSharpFilled.tsx @@ -8,4 +8,4 @@ const IconBatteryShareSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconBatteryShareSharpFilled as default } +export default IconBatteryShareSharpFilled diff --git a/src/IconBatteryStatusGoodOutlined.tsx b/src/IconBatteryStatusGoodOutlined.tsx index 3eedfd1cc..bd92c17c9 100644 --- a/src/IconBatteryStatusGoodOutlined.tsx +++ b/src/IconBatteryStatusGoodOutlined.tsx @@ -8,4 +8,4 @@ const IconBatteryStatusGoodOutlined: React.FC = ({ ...props }) => ( ) -export { IconBatteryStatusGoodOutlined as default } +export default IconBatteryStatusGoodOutlined diff --git a/src/IconBatteryStatusGoodOutlinedFilled.tsx b/src/IconBatteryStatusGoodOutlinedFilled.tsx index 8e2be532b..12bf5da94 100644 --- a/src/IconBatteryStatusGoodOutlinedFilled.tsx +++ b/src/IconBatteryStatusGoodOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconBatteryStatusGoodOutlinedFilled: React.FC = ({ ) -export { IconBatteryStatusGoodOutlinedFilled as default } +export default IconBatteryStatusGoodOutlinedFilled diff --git a/src/IconBatteryStatusGoodRounded.tsx b/src/IconBatteryStatusGoodRounded.tsx index 1be742d84..774d070c5 100644 --- a/src/IconBatteryStatusGoodRounded.tsx +++ b/src/IconBatteryStatusGoodRounded.tsx @@ -8,4 +8,4 @@ const IconBatteryStatusGoodRounded: React.FC = ({ ...props }) => ( ) -export { IconBatteryStatusGoodRounded as default } +export default IconBatteryStatusGoodRounded diff --git a/src/IconBatteryStatusGoodRoundedFilled.tsx b/src/IconBatteryStatusGoodRoundedFilled.tsx index 50ea24bc1..100e1cd18 100644 --- a/src/IconBatteryStatusGoodRoundedFilled.tsx +++ b/src/IconBatteryStatusGoodRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconBatteryStatusGoodRoundedFilled: React.FC = ({ ) -export { IconBatteryStatusGoodRoundedFilled as default } +export default IconBatteryStatusGoodRoundedFilled diff --git a/src/IconBatteryStatusGoodSharp.tsx b/src/IconBatteryStatusGoodSharp.tsx index 5a415432b..c3edd66db 100644 --- a/src/IconBatteryStatusGoodSharp.tsx +++ b/src/IconBatteryStatusGoodSharp.tsx @@ -8,4 +8,4 @@ const IconBatteryStatusGoodSharp: React.FC = ({ ...props }) => ( ) -export { IconBatteryStatusGoodSharp as default } +export default IconBatteryStatusGoodSharp diff --git a/src/IconBatteryStatusGoodSharpFilled.tsx b/src/IconBatteryStatusGoodSharpFilled.tsx index 383829b8a..d6bcc38da 100644 --- a/src/IconBatteryStatusGoodSharpFilled.tsx +++ b/src/IconBatteryStatusGoodSharpFilled.tsx @@ -10,4 +10,4 @@ const IconBatteryStatusGoodSharpFilled: React.FC = ({ ) -export { IconBatteryStatusGoodSharpFilled as default } +export default IconBatteryStatusGoodSharpFilled diff --git a/src/IconBatteryUnknownOutlined.tsx b/src/IconBatteryUnknownOutlined.tsx index e7a82e3c1..68efc202f 100644 --- a/src/IconBatteryUnknownOutlined.tsx +++ b/src/IconBatteryUnknownOutlined.tsx @@ -8,4 +8,4 @@ const IconBatteryUnknownOutlined: React.FC = ({ ...props }) => ( ) -export { IconBatteryUnknownOutlined as default } +export default IconBatteryUnknownOutlined diff --git a/src/IconBatteryUnknownOutlinedFilled.tsx b/src/IconBatteryUnknownOutlinedFilled.tsx index 7cbcd4239..85c54967f 100644 --- a/src/IconBatteryUnknownOutlinedFilled.tsx +++ b/src/IconBatteryUnknownOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconBatteryUnknownOutlinedFilled: React.FC = ({ ) -export { IconBatteryUnknownOutlinedFilled as default } +export default IconBatteryUnknownOutlinedFilled diff --git a/src/IconBatteryUnknownRounded.tsx b/src/IconBatteryUnknownRounded.tsx index eedcdad05..d6da44861 100644 --- a/src/IconBatteryUnknownRounded.tsx +++ b/src/IconBatteryUnknownRounded.tsx @@ -8,4 +8,4 @@ const IconBatteryUnknownRounded: React.FC = ({ ...props }) => ( ) -export { IconBatteryUnknownRounded as default } +export default IconBatteryUnknownRounded diff --git a/src/IconBatteryUnknownRoundedFilled.tsx b/src/IconBatteryUnknownRoundedFilled.tsx index 6fa29cb2b..d0793fc1d 100644 --- a/src/IconBatteryUnknownRoundedFilled.tsx +++ b/src/IconBatteryUnknownRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconBatteryUnknownRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconBatteryUnknownRoundedFilled as default } +export default IconBatteryUnknownRoundedFilled diff --git a/src/IconBatteryUnknownSharp.tsx b/src/IconBatteryUnknownSharp.tsx index 6e5946720..5c2e65330 100644 --- a/src/IconBatteryUnknownSharp.tsx +++ b/src/IconBatteryUnknownSharp.tsx @@ -8,4 +8,4 @@ const IconBatteryUnknownSharp: React.FC = ({ ...props }) => ( ) -export { IconBatteryUnknownSharp as default } +export default IconBatteryUnknownSharp diff --git a/src/IconBatteryUnknownSharpFilled.tsx b/src/IconBatteryUnknownSharpFilled.tsx index a8285c367..e0f1b675e 100644 --- a/src/IconBatteryUnknownSharpFilled.tsx +++ b/src/IconBatteryUnknownSharpFilled.tsx @@ -8,4 +8,4 @@ const IconBatteryUnknownSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconBatteryUnknownSharpFilled as default } +export default IconBatteryUnknownSharpFilled diff --git a/src/IconBatteryVeryLowOutlined.tsx b/src/IconBatteryVeryLowOutlined.tsx index 5d25c5e33..dacb303a0 100644 --- a/src/IconBatteryVeryLowOutlined.tsx +++ b/src/IconBatteryVeryLowOutlined.tsx @@ -8,4 +8,4 @@ const IconBatteryVeryLowOutlined: React.FC = ({ ...props }) => ( ) -export { IconBatteryVeryLowOutlined as default } +export default IconBatteryVeryLowOutlined diff --git a/src/IconBatteryVeryLowOutlinedFilled.tsx b/src/IconBatteryVeryLowOutlinedFilled.tsx index 2c8fcab0f..19a21fd5e 100644 --- a/src/IconBatteryVeryLowOutlinedFilled.tsx +++ b/src/IconBatteryVeryLowOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconBatteryVeryLowOutlinedFilled: React.FC = ({ ) -export { IconBatteryVeryLowOutlinedFilled as default } +export default IconBatteryVeryLowOutlinedFilled diff --git a/src/IconBatteryVeryLowRounded.tsx b/src/IconBatteryVeryLowRounded.tsx index 8066672f1..256c854ed 100644 --- a/src/IconBatteryVeryLowRounded.tsx +++ b/src/IconBatteryVeryLowRounded.tsx @@ -8,4 +8,4 @@ const IconBatteryVeryLowRounded: React.FC = ({ ...props }) => ( ) -export { IconBatteryVeryLowRounded as default } +export default IconBatteryVeryLowRounded diff --git a/src/IconBatteryVeryLowRoundedFilled.tsx b/src/IconBatteryVeryLowRoundedFilled.tsx index b61d03813..b64672523 100644 --- a/src/IconBatteryVeryLowRoundedFilled.tsx +++ b/src/IconBatteryVeryLowRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconBatteryVeryLowRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconBatteryVeryLowRoundedFilled as default } +export default IconBatteryVeryLowRoundedFilled diff --git a/src/IconBatteryVeryLowSharp.tsx b/src/IconBatteryVeryLowSharp.tsx index cb77c2209..eb5408473 100644 --- a/src/IconBatteryVeryLowSharp.tsx +++ b/src/IconBatteryVeryLowSharp.tsx @@ -8,4 +8,4 @@ const IconBatteryVeryLowSharp: React.FC = ({ ...props }) => ( ) -export { IconBatteryVeryLowSharp as default } +export default IconBatteryVeryLowSharp diff --git a/src/IconBatteryVeryLowSharpFilled.tsx b/src/IconBatteryVeryLowSharpFilled.tsx index eb859548b..3148d58cd 100644 --- a/src/IconBatteryVeryLowSharpFilled.tsx +++ b/src/IconBatteryVeryLowSharpFilled.tsx @@ -8,4 +8,4 @@ const IconBatteryVeryLowSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconBatteryVeryLowSharpFilled as default } +export default IconBatteryVeryLowSharpFilled diff --git a/src/IconBeachAccessOutlined.tsx b/src/IconBeachAccessOutlined.tsx index edb3333c5..106a5d98f 100644 --- a/src/IconBeachAccessOutlined.tsx +++ b/src/IconBeachAccessOutlined.tsx @@ -8,4 +8,4 @@ const IconBeachAccessOutlined: React.FC = ({ ...props }) => ( ) -export { IconBeachAccessOutlined as default } +export default IconBeachAccessOutlined diff --git a/src/IconBeachAccessOutlinedFilled.tsx b/src/IconBeachAccessOutlinedFilled.tsx index 1f2a47627..8a0881656 100644 --- a/src/IconBeachAccessOutlinedFilled.tsx +++ b/src/IconBeachAccessOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconBeachAccessOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconBeachAccessOutlinedFilled as default } +export default IconBeachAccessOutlinedFilled diff --git a/src/IconBeachAccessRounded.tsx b/src/IconBeachAccessRounded.tsx index 098b2580f..961195a48 100644 --- a/src/IconBeachAccessRounded.tsx +++ b/src/IconBeachAccessRounded.tsx @@ -8,4 +8,4 @@ const IconBeachAccessRounded: React.FC = ({ ...props }) => ( ) -export { IconBeachAccessRounded as default } +export default IconBeachAccessRounded diff --git a/src/IconBeachAccessRoundedFilled.tsx b/src/IconBeachAccessRoundedFilled.tsx index a2f8d733b..a7eedaacc 100644 --- a/src/IconBeachAccessRoundedFilled.tsx +++ b/src/IconBeachAccessRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconBeachAccessRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconBeachAccessRoundedFilled as default } +export default IconBeachAccessRoundedFilled diff --git a/src/IconBeachAccessSharp.tsx b/src/IconBeachAccessSharp.tsx index f42f83f6c..b33dcf415 100644 --- a/src/IconBeachAccessSharp.tsx +++ b/src/IconBeachAccessSharp.tsx @@ -8,4 +8,4 @@ const IconBeachAccessSharp: React.FC = ({ ...props }) => ( ) -export { IconBeachAccessSharp as default } +export default IconBeachAccessSharp diff --git a/src/IconBeachAccessSharpFilled.tsx b/src/IconBeachAccessSharpFilled.tsx index a322c3ca8..13f7d3d22 100644 --- a/src/IconBeachAccessSharpFilled.tsx +++ b/src/IconBeachAccessSharpFilled.tsx @@ -8,4 +8,4 @@ const IconBeachAccessSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconBeachAccessSharpFilled as default } +export default IconBeachAccessSharpFilled diff --git a/src/IconBedOutlined.tsx b/src/IconBedOutlined.tsx index f359d9c44..a6070968c 100644 --- a/src/IconBedOutlined.tsx +++ b/src/IconBedOutlined.tsx @@ -8,4 +8,4 @@ const IconBedOutlined: React.FC = ({ ...props }) => ( ) -export { IconBedOutlined as default } +export default IconBedOutlined diff --git a/src/IconBedOutlinedFilled.tsx b/src/IconBedOutlinedFilled.tsx index 72eea6983..0cd5c0589 100644 --- a/src/IconBedOutlinedFilled.tsx +++ b/src/IconBedOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconBedOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconBedOutlinedFilled as default } +export default IconBedOutlinedFilled diff --git a/src/IconBedRounded.tsx b/src/IconBedRounded.tsx index 1613eacde..0c40bd067 100644 --- a/src/IconBedRounded.tsx +++ b/src/IconBedRounded.tsx @@ -8,4 +8,4 @@ const IconBedRounded: React.FC = ({ ...props }) => ( ) -export { IconBedRounded as default } +export default IconBedRounded diff --git a/src/IconBedRoundedFilled.tsx b/src/IconBedRoundedFilled.tsx index 8c6fa0a83..fb4526793 100644 --- a/src/IconBedRoundedFilled.tsx +++ b/src/IconBedRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconBedRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconBedRoundedFilled as default } +export default IconBedRoundedFilled diff --git a/src/IconBedSharp.tsx b/src/IconBedSharp.tsx index 20456985f..b05f9d1e9 100644 --- a/src/IconBedSharp.tsx +++ b/src/IconBedSharp.tsx @@ -8,4 +8,4 @@ const IconBedSharp: React.FC = ({ ...props }) => ( ) -export { IconBedSharp as default } +export default IconBedSharp diff --git a/src/IconBedSharpFilled.tsx b/src/IconBedSharpFilled.tsx index e6f284c4c..d5c29edad 100644 --- a/src/IconBedSharpFilled.tsx +++ b/src/IconBedSharpFilled.tsx @@ -8,4 +8,4 @@ const IconBedSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconBedSharpFilled as default } +export default IconBedSharpFilled diff --git a/src/IconBedroomBabyOutlined.tsx b/src/IconBedroomBabyOutlined.tsx index 5ce155aa6..46a954eda 100644 --- a/src/IconBedroomBabyOutlined.tsx +++ b/src/IconBedroomBabyOutlined.tsx @@ -8,4 +8,4 @@ const IconBedroomBabyOutlined: React.FC = ({ ...props }) => ( ) -export { IconBedroomBabyOutlined as default } +export default IconBedroomBabyOutlined diff --git a/src/IconBedroomBabyOutlinedFilled.tsx b/src/IconBedroomBabyOutlinedFilled.tsx index 0d07fc85f..36135a4f2 100644 --- a/src/IconBedroomBabyOutlinedFilled.tsx +++ b/src/IconBedroomBabyOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconBedroomBabyOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconBedroomBabyOutlinedFilled as default } +export default IconBedroomBabyOutlinedFilled diff --git a/src/IconBedroomBabyRounded.tsx b/src/IconBedroomBabyRounded.tsx index 4fc9f023c..410aa1963 100644 --- a/src/IconBedroomBabyRounded.tsx +++ b/src/IconBedroomBabyRounded.tsx @@ -8,4 +8,4 @@ const IconBedroomBabyRounded: React.FC = ({ ...props }) => ( ) -export { IconBedroomBabyRounded as default } +export default IconBedroomBabyRounded diff --git a/src/IconBedroomBabyRoundedFilled.tsx b/src/IconBedroomBabyRoundedFilled.tsx index 4fbbcc544..478256a85 100644 --- a/src/IconBedroomBabyRoundedFilled.tsx +++ b/src/IconBedroomBabyRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconBedroomBabyRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconBedroomBabyRoundedFilled as default } +export default IconBedroomBabyRoundedFilled diff --git a/src/IconBedroomBabySharp.tsx b/src/IconBedroomBabySharp.tsx index 7ee9bd719..d090d579f 100644 --- a/src/IconBedroomBabySharp.tsx +++ b/src/IconBedroomBabySharp.tsx @@ -8,4 +8,4 @@ const IconBedroomBabySharp: React.FC = ({ ...props }) => ( ) -export { IconBedroomBabySharp as default } +export default IconBedroomBabySharp diff --git a/src/IconBedroomBabySharpFilled.tsx b/src/IconBedroomBabySharpFilled.tsx index 6f5971953..ae040a7e9 100644 --- a/src/IconBedroomBabySharpFilled.tsx +++ b/src/IconBedroomBabySharpFilled.tsx @@ -8,4 +8,4 @@ const IconBedroomBabySharpFilled: React.FC = ({ ...props }) => ( ) -export { IconBedroomBabySharpFilled as default } +export default IconBedroomBabySharpFilled diff --git a/src/IconBedroomChildOutlined.tsx b/src/IconBedroomChildOutlined.tsx index cf1298bea..3ea06d2ae 100644 --- a/src/IconBedroomChildOutlined.tsx +++ b/src/IconBedroomChildOutlined.tsx @@ -8,4 +8,4 @@ const IconBedroomChildOutlined: React.FC = ({ ...props }) => ( ) -export { IconBedroomChildOutlined as default } +export default IconBedroomChildOutlined diff --git a/src/IconBedroomChildOutlinedFilled.tsx b/src/IconBedroomChildOutlinedFilled.tsx index 2f85377fb..7d8eaf72d 100644 --- a/src/IconBedroomChildOutlinedFilled.tsx +++ b/src/IconBedroomChildOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconBedroomChildOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconBedroomChildOutlinedFilled as default } +export default IconBedroomChildOutlinedFilled diff --git a/src/IconBedroomChildRounded.tsx b/src/IconBedroomChildRounded.tsx index 8dfae873a..3fa6709b0 100644 --- a/src/IconBedroomChildRounded.tsx +++ b/src/IconBedroomChildRounded.tsx @@ -8,4 +8,4 @@ const IconBedroomChildRounded: React.FC = ({ ...props }) => ( ) -export { IconBedroomChildRounded as default } +export default IconBedroomChildRounded diff --git a/src/IconBedroomChildRoundedFilled.tsx b/src/IconBedroomChildRoundedFilled.tsx index efbdc89a6..b40fccdf6 100644 --- a/src/IconBedroomChildRoundedFilled.tsx +++ b/src/IconBedroomChildRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconBedroomChildRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconBedroomChildRoundedFilled as default } +export default IconBedroomChildRoundedFilled diff --git a/src/IconBedroomChildSharp.tsx b/src/IconBedroomChildSharp.tsx index 1353bb717..1ef010548 100644 --- a/src/IconBedroomChildSharp.tsx +++ b/src/IconBedroomChildSharp.tsx @@ -8,4 +8,4 @@ const IconBedroomChildSharp: React.FC = ({ ...props }) => ( ) -export { IconBedroomChildSharp as default } +export default IconBedroomChildSharp diff --git a/src/IconBedroomChildSharpFilled.tsx b/src/IconBedroomChildSharpFilled.tsx index 60000e15e..9f6d289d2 100644 --- a/src/IconBedroomChildSharpFilled.tsx +++ b/src/IconBedroomChildSharpFilled.tsx @@ -8,4 +8,4 @@ const IconBedroomChildSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconBedroomChildSharpFilled as default } +export default IconBedroomChildSharpFilled diff --git a/src/IconBedroomParentOutlined.tsx b/src/IconBedroomParentOutlined.tsx index 73f01e3a6..4d8d5d3dd 100644 --- a/src/IconBedroomParentOutlined.tsx +++ b/src/IconBedroomParentOutlined.tsx @@ -8,4 +8,4 @@ const IconBedroomParentOutlined: React.FC = ({ ...props }) => ( ) -export { IconBedroomParentOutlined as default } +export default IconBedroomParentOutlined diff --git a/src/IconBedroomParentOutlinedFilled.tsx b/src/IconBedroomParentOutlinedFilled.tsx index 6e26f8591..5fed8e8ee 100644 --- a/src/IconBedroomParentOutlinedFilled.tsx +++ b/src/IconBedroomParentOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconBedroomParentOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconBedroomParentOutlinedFilled as default } +export default IconBedroomParentOutlinedFilled diff --git a/src/IconBedroomParentRounded.tsx b/src/IconBedroomParentRounded.tsx index 10a90872d..ebb151aea 100644 --- a/src/IconBedroomParentRounded.tsx +++ b/src/IconBedroomParentRounded.tsx @@ -8,4 +8,4 @@ const IconBedroomParentRounded: React.FC = ({ ...props }) => ( ) -export { IconBedroomParentRounded as default } +export default IconBedroomParentRounded diff --git a/src/IconBedroomParentRoundedFilled.tsx b/src/IconBedroomParentRoundedFilled.tsx index 89caf8947..855df7520 100644 --- a/src/IconBedroomParentRoundedFilled.tsx +++ b/src/IconBedroomParentRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconBedroomParentRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconBedroomParentRoundedFilled as default } +export default IconBedroomParentRoundedFilled diff --git a/src/IconBedroomParentSharp.tsx b/src/IconBedroomParentSharp.tsx index a5c614ba9..649df0e77 100644 --- a/src/IconBedroomParentSharp.tsx +++ b/src/IconBedroomParentSharp.tsx @@ -8,4 +8,4 @@ const IconBedroomParentSharp: React.FC = ({ ...props }) => ( ) -export { IconBedroomParentSharp as default } +export default IconBedroomParentSharp diff --git a/src/IconBedroomParentSharpFilled.tsx b/src/IconBedroomParentSharpFilled.tsx index 40ae173dc..6a22ba9bf 100644 --- a/src/IconBedroomParentSharpFilled.tsx +++ b/src/IconBedroomParentSharpFilled.tsx @@ -8,4 +8,4 @@ const IconBedroomParentSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconBedroomParentSharpFilled as default } +export default IconBedroomParentSharpFilled diff --git a/src/IconBedtimeOffOutlined.tsx b/src/IconBedtimeOffOutlined.tsx index bd99f13a4..33eaaaaea 100644 --- a/src/IconBedtimeOffOutlined.tsx +++ b/src/IconBedtimeOffOutlined.tsx @@ -8,4 +8,4 @@ const IconBedtimeOffOutlined: React.FC = ({ ...props }) => ( ) -export { IconBedtimeOffOutlined as default } +export default IconBedtimeOffOutlined diff --git a/src/IconBedtimeOffOutlinedFilled.tsx b/src/IconBedtimeOffOutlinedFilled.tsx index 38ed54767..85c358695 100644 --- a/src/IconBedtimeOffOutlinedFilled.tsx +++ b/src/IconBedtimeOffOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconBedtimeOffOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconBedtimeOffOutlinedFilled as default } +export default IconBedtimeOffOutlinedFilled diff --git a/src/IconBedtimeOffRounded.tsx b/src/IconBedtimeOffRounded.tsx index cf1d312d3..87d996110 100644 --- a/src/IconBedtimeOffRounded.tsx +++ b/src/IconBedtimeOffRounded.tsx @@ -8,4 +8,4 @@ const IconBedtimeOffRounded: React.FC = ({ ...props }) => ( ) -export { IconBedtimeOffRounded as default } +export default IconBedtimeOffRounded diff --git a/src/IconBedtimeOffRoundedFilled.tsx b/src/IconBedtimeOffRoundedFilled.tsx index 0ce0e38ae..3cd24f457 100644 --- a/src/IconBedtimeOffRoundedFilled.tsx +++ b/src/IconBedtimeOffRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconBedtimeOffRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconBedtimeOffRoundedFilled as default } +export default IconBedtimeOffRoundedFilled diff --git a/src/IconBedtimeOffSharp.tsx b/src/IconBedtimeOffSharp.tsx index ccfcd84f8..2279b6151 100644 --- a/src/IconBedtimeOffSharp.tsx +++ b/src/IconBedtimeOffSharp.tsx @@ -8,4 +8,4 @@ const IconBedtimeOffSharp: React.FC = ({ ...props }) => ( ) -export { IconBedtimeOffSharp as default } +export default IconBedtimeOffSharp diff --git a/src/IconBedtimeOffSharpFilled.tsx b/src/IconBedtimeOffSharpFilled.tsx index d024a1383..f29e15d57 100644 --- a/src/IconBedtimeOffSharpFilled.tsx +++ b/src/IconBedtimeOffSharpFilled.tsx @@ -8,4 +8,4 @@ const IconBedtimeOffSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconBedtimeOffSharpFilled as default } +export default IconBedtimeOffSharpFilled diff --git a/src/IconBedtimeOutlined.tsx b/src/IconBedtimeOutlined.tsx index 06745c212..83ce36b3c 100644 --- a/src/IconBedtimeOutlined.tsx +++ b/src/IconBedtimeOutlined.tsx @@ -8,4 +8,4 @@ const IconBedtimeOutlined: React.FC = ({ ...props }) => ( ) -export { IconBedtimeOutlined as default } +export default IconBedtimeOutlined diff --git a/src/IconBedtimeOutlinedFilled.tsx b/src/IconBedtimeOutlinedFilled.tsx index ca11cf16c..cc37cda69 100644 --- a/src/IconBedtimeOutlinedFilled.tsx +++ b/src/IconBedtimeOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconBedtimeOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconBedtimeOutlinedFilled as default } +export default IconBedtimeOutlinedFilled diff --git a/src/IconBedtimeRounded.tsx b/src/IconBedtimeRounded.tsx index 1af9a704b..a6b678911 100644 --- a/src/IconBedtimeRounded.tsx +++ b/src/IconBedtimeRounded.tsx @@ -8,4 +8,4 @@ const IconBedtimeRounded: React.FC = ({ ...props }) => ( ) -export { IconBedtimeRounded as default } +export default IconBedtimeRounded diff --git a/src/IconBedtimeRoundedFilled.tsx b/src/IconBedtimeRoundedFilled.tsx index 1d1eccf21..19824d2fb 100644 --- a/src/IconBedtimeRoundedFilled.tsx +++ b/src/IconBedtimeRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconBedtimeRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconBedtimeRoundedFilled as default } +export default IconBedtimeRoundedFilled diff --git a/src/IconBedtimeSharp.tsx b/src/IconBedtimeSharp.tsx index 2e016d2ae..517ee4932 100644 --- a/src/IconBedtimeSharp.tsx +++ b/src/IconBedtimeSharp.tsx @@ -8,4 +8,4 @@ const IconBedtimeSharp: React.FC = ({ ...props }) => ( ) -export { IconBedtimeSharp as default } +export default IconBedtimeSharp diff --git a/src/IconBedtimeSharpFilled.tsx b/src/IconBedtimeSharpFilled.tsx index 5fac1a472..c2c1ecfca 100644 --- a/src/IconBedtimeSharpFilled.tsx +++ b/src/IconBedtimeSharpFilled.tsx @@ -8,4 +8,4 @@ const IconBedtimeSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconBedtimeSharpFilled as default } +export default IconBedtimeSharpFilled diff --git a/src/IconBeenhereOutlined.tsx b/src/IconBeenhereOutlined.tsx index cd9c3936c..c675e1f14 100644 --- a/src/IconBeenhereOutlined.tsx +++ b/src/IconBeenhereOutlined.tsx @@ -8,4 +8,4 @@ const IconBeenhereOutlined: React.FC = ({ ...props }) => ( ) -export { IconBeenhereOutlined as default } +export default IconBeenhereOutlined diff --git a/src/IconBeenhereOutlinedFilled.tsx b/src/IconBeenhereOutlinedFilled.tsx index f4e10525a..bb5091b47 100644 --- a/src/IconBeenhereOutlinedFilled.tsx +++ b/src/IconBeenhereOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconBeenhereOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconBeenhereOutlinedFilled as default } +export default IconBeenhereOutlinedFilled diff --git a/src/IconBeenhereRounded.tsx b/src/IconBeenhereRounded.tsx index 80f468996..7428bf9a4 100644 --- a/src/IconBeenhereRounded.tsx +++ b/src/IconBeenhereRounded.tsx @@ -8,4 +8,4 @@ const IconBeenhereRounded: React.FC = ({ ...props }) => ( ) -export { IconBeenhereRounded as default } +export default IconBeenhereRounded diff --git a/src/IconBeenhereRoundedFilled.tsx b/src/IconBeenhereRoundedFilled.tsx index 9f5f0aae4..60a4990f0 100644 --- a/src/IconBeenhereRoundedFilled.tsx +++ b/src/IconBeenhereRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconBeenhereRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconBeenhereRoundedFilled as default } +export default IconBeenhereRoundedFilled diff --git a/src/IconBeenhereSharp.tsx b/src/IconBeenhereSharp.tsx index d8685d85e..5707e5bf3 100644 --- a/src/IconBeenhereSharp.tsx +++ b/src/IconBeenhereSharp.tsx @@ -8,4 +8,4 @@ const IconBeenhereSharp: React.FC = ({ ...props }) => ( ) -export { IconBeenhereSharp as default } +export default IconBeenhereSharp diff --git a/src/IconBeenhereSharpFilled.tsx b/src/IconBeenhereSharpFilled.tsx index 480874126..c0018814c 100644 --- a/src/IconBeenhereSharpFilled.tsx +++ b/src/IconBeenhereSharpFilled.tsx @@ -8,4 +8,4 @@ const IconBeenhereSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconBeenhereSharpFilled as default } +export default IconBeenhereSharpFilled diff --git a/src/IconBentoOutlined.tsx b/src/IconBentoOutlined.tsx index 7946f58b7..d80bc3389 100644 --- a/src/IconBentoOutlined.tsx +++ b/src/IconBentoOutlined.tsx @@ -8,4 +8,4 @@ const IconBentoOutlined: React.FC = ({ ...props }) => ( ) -export { IconBentoOutlined as default } +export default IconBentoOutlined diff --git a/src/IconBentoOutlinedFilled.tsx b/src/IconBentoOutlinedFilled.tsx index abdd95fa5..036a915fd 100644 --- a/src/IconBentoOutlinedFilled.tsx +++ b/src/IconBentoOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconBentoOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconBentoOutlinedFilled as default } +export default IconBentoOutlinedFilled diff --git a/src/IconBentoRounded.tsx b/src/IconBentoRounded.tsx index 6df30d670..9e20b92eb 100644 --- a/src/IconBentoRounded.tsx +++ b/src/IconBentoRounded.tsx @@ -8,4 +8,4 @@ const IconBentoRounded: React.FC = ({ ...props }) => ( ) -export { IconBentoRounded as default } +export default IconBentoRounded diff --git a/src/IconBentoRoundedFilled.tsx b/src/IconBentoRoundedFilled.tsx index 678a0d178..24eec2885 100644 --- a/src/IconBentoRoundedFilled.tsx +++ b/src/IconBentoRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconBentoRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconBentoRoundedFilled as default } +export default IconBentoRoundedFilled diff --git a/src/IconBentoSharp.tsx b/src/IconBentoSharp.tsx index 088b0e8dd..6e71b33fb 100644 --- a/src/IconBentoSharp.tsx +++ b/src/IconBentoSharp.tsx @@ -8,4 +8,4 @@ const IconBentoSharp: React.FC = ({ ...props }) => ( ) -export { IconBentoSharp as default } +export default IconBentoSharp diff --git a/src/IconBentoSharpFilled.tsx b/src/IconBentoSharpFilled.tsx index d3eab49d0..e82e52c78 100644 --- a/src/IconBentoSharpFilled.tsx +++ b/src/IconBentoSharpFilled.tsx @@ -8,4 +8,4 @@ const IconBentoSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconBentoSharpFilled as default } +export default IconBentoSharpFilled diff --git a/src/IconBiaOutlined.tsx b/src/IconBiaOutlined.tsx index 3ef45cfe3..7f144ff72 100644 --- a/src/IconBiaOutlined.tsx +++ b/src/IconBiaOutlined.tsx @@ -8,4 +8,4 @@ const IconBiaOutlined: React.FC = ({ ...props }) => ( ) -export { IconBiaOutlined as default } +export default IconBiaOutlined diff --git a/src/IconBiaOutlinedFilled.tsx b/src/IconBiaOutlinedFilled.tsx index 256e52961..1f3af353a 100644 --- a/src/IconBiaOutlinedFilled.tsx +++ b/src/IconBiaOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconBiaOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconBiaOutlinedFilled as default } +export default IconBiaOutlinedFilled diff --git a/src/IconBiaRounded.tsx b/src/IconBiaRounded.tsx index 0ee375b35..f8203f030 100644 --- a/src/IconBiaRounded.tsx +++ b/src/IconBiaRounded.tsx @@ -8,4 +8,4 @@ const IconBiaRounded: React.FC = ({ ...props }) => ( ) -export { IconBiaRounded as default } +export default IconBiaRounded diff --git a/src/IconBiaRoundedFilled.tsx b/src/IconBiaRoundedFilled.tsx index 1c88afad2..bfd3f2c3f 100644 --- a/src/IconBiaRoundedFilled.tsx +++ b/src/IconBiaRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconBiaRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconBiaRoundedFilled as default } +export default IconBiaRoundedFilled diff --git a/src/IconBiaSharp.tsx b/src/IconBiaSharp.tsx index c4984f768..a9669c84c 100644 --- a/src/IconBiaSharp.tsx +++ b/src/IconBiaSharp.tsx @@ -8,4 +8,4 @@ const IconBiaSharp: React.FC = ({ ...props }) => ( ) -export { IconBiaSharp as default } +export default IconBiaSharp diff --git a/src/IconBiaSharpFilled.tsx b/src/IconBiaSharpFilled.tsx index 1f360d904..0ed991034 100644 --- a/src/IconBiaSharpFilled.tsx +++ b/src/IconBiaSharpFilled.tsx @@ -8,4 +8,4 @@ const IconBiaSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconBiaSharpFilled as default } +export default IconBiaSharpFilled diff --git a/src/IconBidLandscapeDisabledOutlined.tsx b/src/IconBidLandscapeDisabledOutlined.tsx index ae4137aec..ba94768fa 100644 --- a/src/IconBidLandscapeDisabledOutlined.tsx +++ b/src/IconBidLandscapeDisabledOutlined.tsx @@ -10,4 +10,4 @@ const IconBidLandscapeDisabledOutlined: React.FC = ({ ) -export { IconBidLandscapeDisabledOutlined as default } +export default IconBidLandscapeDisabledOutlined diff --git a/src/IconBidLandscapeDisabledOutlinedFilled.tsx b/src/IconBidLandscapeDisabledOutlinedFilled.tsx index 4f142759b..90e6dbc1d 100644 --- a/src/IconBidLandscapeDisabledOutlinedFilled.tsx +++ b/src/IconBidLandscapeDisabledOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconBidLandscapeDisabledOutlinedFilled: React.FC = ({ ) -export { IconBidLandscapeDisabledOutlinedFilled as default } +export default IconBidLandscapeDisabledOutlinedFilled diff --git a/src/IconBidLandscapeDisabledRounded.tsx b/src/IconBidLandscapeDisabledRounded.tsx index beda76465..d3e6d6126 100644 --- a/src/IconBidLandscapeDisabledRounded.tsx +++ b/src/IconBidLandscapeDisabledRounded.tsx @@ -8,4 +8,4 @@ const IconBidLandscapeDisabledRounded: React.FC = ({ ...props }) => ( ) -export { IconBidLandscapeDisabledRounded as default } +export default IconBidLandscapeDisabledRounded diff --git a/src/IconBidLandscapeDisabledRoundedFilled.tsx b/src/IconBidLandscapeDisabledRoundedFilled.tsx index c7ce10629..223f00247 100644 --- a/src/IconBidLandscapeDisabledRoundedFilled.tsx +++ b/src/IconBidLandscapeDisabledRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconBidLandscapeDisabledRoundedFilled: React.FC = ({ ) -export { IconBidLandscapeDisabledRoundedFilled as default } +export default IconBidLandscapeDisabledRoundedFilled diff --git a/src/IconBidLandscapeDisabledSharp.tsx b/src/IconBidLandscapeDisabledSharp.tsx index 48794ede2..c1274e47d 100644 --- a/src/IconBidLandscapeDisabledSharp.tsx +++ b/src/IconBidLandscapeDisabledSharp.tsx @@ -8,4 +8,4 @@ const IconBidLandscapeDisabledSharp: React.FC = ({ ...props }) => ( ) -export { IconBidLandscapeDisabledSharp as default } +export default IconBidLandscapeDisabledSharp diff --git a/src/IconBidLandscapeDisabledSharpFilled.tsx b/src/IconBidLandscapeDisabledSharpFilled.tsx index 06ff41fc9..ea8eb1419 100644 --- a/src/IconBidLandscapeDisabledSharpFilled.tsx +++ b/src/IconBidLandscapeDisabledSharpFilled.tsx @@ -10,4 +10,4 @@ const IconBidLandscapeDisabledSharpFilled: React.FC = ({ ) -export { IconBidLandscapeDisabledSharpFilled as default } +export default IconBidLandscapeDisabledSharpFilled diff --git a/src/IconBidLandscapeOutlined.tsx b/src/IconBidLandscapeOutlined.tsx index ffb10f775..d8399ceef 100644 --- a/src/IconBidLandscapeOutlined.tsx +++ b/src/IconBidLandscapeOutlined.tsx @@ -8,4 +8,4 @@ const IconBidLandscapeOutlined: React.FC = ({ ...props }) => ( ) -export { IconBidLandscapeOutlined as default } +export default IconBidLandscapeOutlined diff --git a/src/IconBidLandscapeOutlinedFilled.tsx b/src/IconBidLandscapeOutlinedFilled.tsx index 950ec6c06..8209135a7 100644 --- a/src/IconBidLandscapeOutlinedFilled.tsx +++ b/src/IconBidLandscapeOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconBidLandscapeOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconBidLandscapeOutlinedFilled as default } +export default IconBidLandscapeOutlinedFilled diff --git a/src/IconBidLandscapeRounded.tsx b/src/IconBidLandscapeRounded.tsx index 1f8a84391..ef8851f44 100644 --- a/src/IconBidLandscapeRounded.tsx +++ b/src/IconBidLandscapeRounded.tsx @@ -8,4 +8,4 @@ const IconBidLandscapeRounded: React.FC = ({ ...props }) => ( ) -export { IconBidLandscapeRounded as default } +export default IconBidLandscapeRounded diff --git a/src/IconBidLandscapeRoundedFilled.tsx b/src/IconBidLandscapeRoundedFilled.tsx index 1180f70d3..8122320d5 100644 --- a/src/IconBidLandscapeRoundedFilled.tsx +++ b/src/IconBidLandscapeRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconBidLandscapeRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconBidLandscapeRoundedFilled as default } +export default IconBidLandscapeRoundedFilled diff --git a/src/IconBidLandscapeSharp.tsx b/src/IconBidLandscapeSharp.tsx index 89c60c6e4..16fa21612 100644 --- a/src/IconBidLandscapeSharp.tsx +++ b/src/IconBidLandscapeSharp.tsx @@ -8,4 +8,4 @@ const IconBidLandscapeSharp: React.FC = ({ ...props }) => ( ) -export { IconBidLandscapeSharp as default } +export default IconBidLandscapeSharp diff --git a/src/IconBidLandscapeSharpFilled.tsx b/src/IconBidLandscapeSharpFilled.tsx index 3da8919ed..268731ae5 100644 --- a/src/IconBidLandscapeSharpFilled.tsx +++ b/src/IconBidLandscapeSharpFilled.tsx @@ -8,4 +8,4 @@ const IconBidLandscapeSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconBidLandscapeSharpFilled as default } +export default IconBidLandscapeSharpFilled diff --git a/src/IconBigtopUpdatesOutlined.tsx b/src/IconBigtopUpdatesOutlined.tsx index 3c048ac0f..71619e54d 100644 --- a/src/IconBigtopUpdatesOutlined.tsx +++ b/src/IconBigtopUpdatesOutlined.tsx @@ -8,4 +8,4 @@ const IconBigtopUpdatesOutlined: React.FC = ({ ...props }) => ( ) -export { IconBigtopUpdatesOutlined as default } +export default IconBigtopUpdatesOutlined diff --git a/src/IconBigtopUpdatesOutlinedFilled.tsx b/src/IconBigtopUpdatesOutlinedFilled.tsx index 500e9bb0d..86a19d5fa 100644 --- a/src/IconBigtopUpdatesOutlinedFilled.tsx +++ b/src/IconBigtopUpdatesOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconBigtopUpdatesOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconBigtopUpdatesOutlinedFilled as default } +export default IconBigtopUpdatesOutlinedFilled diff --git a/src/IconBigtopUpdatesRounded.tsx b/src/IconBigtopUpdatesRounded.tsx index a64d9e01e..b6c06c439 100644 --- a/src/IconBigtopUpdatesRounded.tsx +++ b/src/IconBigtopUpdatesRounded.tsx @@ -8,4 +8,4 @@ const IconBigtopUpdatesRounded: React.FC = ({ ...props }) => ( ) -export { IconBigtopUpdatesRounded as default } +export default IconBigtopUpdatesRounded diff --git a/src/IconBigtopUpdatesRoundedFilled.tsx b/src/IconBigtopUpdatesRoundedFilled.tsx index 7d168834a..bbd57d2b1 100644 --- a/src/IconBigtopUpdatesRoundedFilled.tsx +++ b/src/IconBigtopUpdatesRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconBigtopUpdatesRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconBigtopUpdatesRoundedFilled as default } +export default IconBigtopUpdatesRoundedFilled diff --git a/src/IconBigtopUpdatesSharp.tsx b/src/IconBigtopUpdatesSharp.tsx index 66083192b..2809bc686 100644 --- a/src/IconBigtopUpdatesSharp.tsx +++ b/src/IconBigtopUpdatesSharp.tsx @@ -8,4 +8,4 @@ const IconBigtopUpdatesSharp: React.FC = ({ ...props }) => ( ) -export { IconBigtopUpdatesSharp as default } +export default IconBigtopUpdatesSharp diff --git a/src/IconBigtopUpdatesSharpFilled.tsx b/src/IconBigtopUpdatesSharpFilled.tsx index 138c20cdf..32987c61a 100644 --- a/src/IconBigtopUpdatesSharpFilled.tsx +++ b/src/IconBigtopUpdatesSharpFilled.tsx @@ -8,4 +8,4 @@ const IconBigtopUpdatesSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconBigtopUpdatesSharpFilled as default } +export default IconBigtopUpdatesSharpFilled diff --git a/src/IconBikeDockOutlined.tsx b/src/IconBikeDockOutlined.tsx index a3d6766a4..2c4b62d8e 100644 --- a/src/IconBikeDockOutlined.tsx +++ b/src/IconBikeDockOutlined.tsx @@ -8,4 +8,4 @@ const IconBikeDockOutlined: React.FC = ({ ...props }) => ( ) -export { IconBikeDockOutlined as default } +export default IconBikeDockOutlined diff --git a/src/IconBikeDockOutlinedFilled.tsx b/src/IconBikeDockOutlinedFilled.tsx index b435f105e..46400fd82 100644 --- a/src/IconBikeDockOutlinedFilled.tsx +++ b/src/IconBikeDockOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconBikeDockOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconBikeDockOutlinedFilled as default } +export default IconBikeDockOutlinedFilled diff --git a/src/IconBikeDockRounded.tsx b/src/IconBikeDockRounded.tsx index 8a093f7d3..580389123 100644 --- a/src/IconBikeDockRounded.tsx +++ b/src/IconBikeDockRounded.tsx @@ -8,4 +8,4 @@ const IconBikeDockRounded: React.FC = ({ ...props }) => ( ) -export { IconBikeDockRounded as default } +export default IconBikeDockRounded diff --git a/src/IconBikeDockRoundedFilled.tsx b/src/IconBikeDockRoundedFilled.tsx index 92e339f32..fe4237184 100644 --- a/src/IconBikeDockRoundedFilled.tsx +++ b/src/IconBikeDockRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconBikeDockRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconBikeDockRoundedFilled as default } +export default IconBikeDockRoundedFilled diff --git a/src/IconBikeDockSharp.tsx b/src/IconBikeDockSharp.tsx index a5444dc5e..295b2c58f 100644 --- a/src/IconBikeDockSharp.tsx +++ b/src/IconBikeDockSharp.tsx @@ -8,4 +8,4 @@ const IconBikeDockSharp: React.FC = ({ ...props }) => ( ) -export { IconBikeDockSharp as default } +export default IconBikeDockSharp diff --git a/src/IconBikeDockSharpFilled.tsx b/src/IconBikeDockSharpFilled.tsx index aa89cc902..f10ebf279 100644 --- a/src/IconBikeDockSharpFilled.tsx +++ b/src/IconBikeDockSharpFilled.tsx @@ -8,4 +8,4 @@ const IconBikeDockSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconBikeDockSharpFilled as default } +export default IconBikeDockSharpFilled diff --git a/src/IconBikeLaneOutlined.tsx b/src/IconBikeLaneOutlined.tsx index 1fe08a458..6b62bda50 100644 --- a/src/IconBikeLaneOutlined.tsx +++ b/src/IconBikeLaneOutlined.tsx @@ -8,4 +8,4 @@ const IconBikeLaneOutlined: React.FC = ({ ...props }) => ( ) -export { IconBikeLaneOutlined as default } +export default IconBikeLaneOutlined diff --git a/src/IconBikeLaneOutlinedFilled.tsx b/src/IconBikeLaneOutlinedFilled.tsx index 0cee25792..2b118e15d 100644 --- a/src/IconBikeLaneOutlinedFilled.tsx +++ b/src/IconBikeLaneOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconBikeLaneOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconBikeLaneOutlinedFilled as default } +export default IconBikeLaneOutlinedFilled diff --git a/src/IconBikeLaneRounded.tsx b/src/IconBikeLaneRounded.tsx index dd5142400..a7a0c4e64 100644 --- a/src/IconBikeLaneRounded.tsx +++ b/src/IconBikeLaneRounded.tsx @@ -8,4 +8,4 @@ const IconBikeLaneRounded: React.FC = ({ ...props }) => ( ) -export { IconBikeLaneRounded as default } +export default IconBikeLaneRounded diff --git a/src/IconBikeLaneRoundedFilled.tsx b/src/IconBikeLaneRoundedFilled.tsx index 6d2b409cf..ff6351bec 100644 --- a/src/IconBikeLaneRoundedFilled.tsx +++ b/src/IconBikeLaneRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconBikeLaneRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconBikeLaneRoundedFilled as default } +export default IconBikeLaneRoundedFilled diff --git a/src/IconBikeLaneSharp.tsx b/src/IconBikeLaneSharp.tsx index 244bc602d..14b553270 100644 --- a/src/IconBikeLaneSharp.tsx +++ b/src/IconBikeLaneSharp.tsx @@ -8,4 +8,4 @@ const IconBikeLaneSharp: React.FC = ({ ...props }) => ( ) -export { IconBikeLaneSharp as default } +export default IconBikeLaneSharp diff --git a/src/IconBikeLaneSharpFilled.tsx b/src/IconBikeLaneSharpFilled.tsx index 9ffd87b49..c7abc13b2 100644 --- a/src/IconBikeLaneSharpFilled.tsx +++ b/src/IconBikeLaneSharpFilled.tsx @@ -8,4 +8,4 @@ const IconBikeLaneSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconBikeLaneSharpFilled as default } +export default IconBikeLaneSharpFilled diff --git a/src/IconBikeScooterOutlined.tsx b/src/IconBikeScooterOutlined.tsx index ae02c2377..0b3e95da6 100644 --- a/src/IconBikeScooterOutlined.tsx +++ b/src/IconBikeScooterOutlined.tsx @@ -8,4 +8,4 @@ const IconBikeScooterOutlined: React.FC = ({ ...props }) => ( ) -export { IconBikeScooterOutlined as default } +export default IconBikeScooterOutlined diff --git a/src/IconBikeScooterOutlinedFilled.tsx b/src/IconBikeScooterOutlinedFilled.tsx index f7d7241a2..0bfaa6704 100644 --- a/src/IconBikeScooterOutlinedFilled.tsx +++ b/src/IconBikeScooterOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconBikeScooterOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconBikeScooterOutlinedFilled as default } +export default IconBikeScooterOutlinedFilled diff --git a/src/IconBikeScooterRounded.tsx b/src/IconBikeScooterRounded.tsx index 93f39be18..40755fc4a 100644 --- a/src/IconBikeScooterRounded.tsx +++ b/src/IconBikeScooterRounded.tsx @@ -8,4 +8,4 @@ const IconBikeScooterRounded: React.FC = ({ ...props }) => ( ) -export { IconBikeScooterRounded as default } +export default IconBikeScooterRounded diff --git a/src/IconBikeScooterRoundedFilled.tsx b/src/IconBikeScooterRoundedFilled.tsx index 7cf3ea32e..c31ac36c2 100644 --- a/src/IconBikeScooterRoundedFilled.tsx +++ b/src/IconBikeScooterRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconBikeScooterRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconBikeScooterRoundedFilled as default } +export default IconBikeScooterRoundedFilled diff --git a/src/IconBikeScooterSharp.tsx b/src/IconBikeScooterSharp.tsx index 3641fbce8..df850c2fc 100644 --- a/src/IconBikeScooterSharp.tsx +++ b/src/IconBikeScooterSharp.tsx @@ -8,4 +8,4 @@ const IconBikeScooterSharp: React.FC = ({ ...props }) => ( ) -export { IconBikeScooterSharp as default } +export default IconBikeScooterSharp diff --git a/src/IconBikeScooterSharpFilled.tsx b/src/IconBikeScooterSharpFilled.tsx index 4cf252126..a73fd5fd9 100644 --- a/src/IconBikeScooterSharpFilled.tsx +++ b/src/IconBikeScooterSharpFilled.tsx @@ -8,4 +8,4 @@ const IconBikeScooterSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconBikeScooterSharpFilled as default } +export default IconBikeScooterSharpFilled diff --git a/src/IconBiotechOutlined.tsx b/src/IconBiotechOutlined.tsx index bd4b9c243..cbcc419e5 100644 --- a/src/IconBiotechOutlined.tsx +++ b/src/IconBiotechOutlined.tsx @@ -8,4 +8,4 @@ const IconBiotechOutlined: React.FC = ({ ...props }) => ( ) -export { IconBiotechOutlined as default } +export default IconBiotechOutlined diff --git a/src/IconBiotechOutlinedFilled.tsx b/src/IconBiotechOutlinedFilled.tsx index b6276114f..c70509e60 100644 --- a/src/IconBiotechOutlinedFilled.tsx +++ b/src/IconBiotechOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconBiotechOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconBiotechOutlinedFilled as default } +export default IconBiotechOutlinedFilled diff --git a/src/IconBiotechRounded.tsx b/src/IconBiotechRounded.tsx index 37d0887ef..ec22e8c33 100644 --- a/src/IconBiotechRounded.tsx +++ b/src/IconBiotechRounded.tsx @@ -8,4 +8,4 @@ const IconBiotechRounded: React.FC = ({ ...props }) => ( ) -export { IconBiotechRounded as default } +export default IconBiotechRounded diff --git a/src/IconBiotechRoundedFilled.tsx b/src/IconBiotechRoundedFilled.tsx index b32938875..e843b5bc0 100644 --- a/src/IconBiotechRoundedFilled.tsx +++ b/src/IconBiotechRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconBiotechRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconBiotechRoundedFilled as default } +export default IconBiotechRoundedFilled diff --git a/src/IconBiotechSharp.tsx b/src/IconBiotechSharp.tsx index 757d15165..c747a975b 100644 --- a/src/IconBiotechSharp.tsx +++ b/src/IconBiotechSharp.tsx @@ -8,4 +8,4 @@ const IconBiotechSharp: React.FC = ({ ...props }) => ( ) -export { IconBiotechSharp as default } +export default IconBiotechSharp diff --git a/src/IconBiotechSharpFilled.tsx b/src/IconBiotechSharpFilled.tsx index c7c42fc77..c161180ad 100644 --- a/src/IconBiotechSharpFilled.tsx +++ b/src/IconBiotechSharpFilled.tsx @@ -8,4 +8,4 @@ const IconBiotechSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconBiotechSharpFilled as default } +export default IconBiotechSharpFilled diff --git a/src/IconBlanketOutlined.tsx b/src/IconBlanketOutlined.tsx index 75117c41f..7bfc063c6 100644 --- a/src/IconBlanketOutlined.tsx +++ b/src/IconBlanketOutlined.tsx @@ -8,4 +8,4 @@ const IconBlanketOutlined: React.FC = ({ ...props }) => ( ) -export { IconBlanketOutlined as default } +export default IconBlanketOutlined diff --git a/src/IconBlanketOutlinedFilled.tsx b/src/IconBlanketOutlinedFilled.tsx index 1c441d4be..14481eb12 100644 --- a/src/IconBlanketOutlinedFilled.tsx +++ b/src/IconBlanketOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconBlanketOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconBlanketOutlinedFilled as default } +export default IconBlanketOutlinedFilled diff --git a/src/IconBlanketRounded.tsx b/src/IconBlanketRounded.tsx index db7679adb..62f33a4a0 100644 --- a/src/IconBlanketRounded.tsx +++ b/src/IconBlanketRounded.tsx @@ -8,4 +8,4 @@ const IconBlanketRounded: React.FC = ({ ...props }) => ( ) -export { IconBlanketRounded as default } +export default IconBlanketRounded diff --git a/src/IconBlanketRoundedFilled.tsx b/src/IconBlanketRoundedFilled.tsx index 1a6d09284..02aea0eb8 100644 --- a/src/IconBlanketRoundedFilled.tsx +++ b/src/IconBlanketRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconBlanketRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconBlanketRoundedFilled as default } +export default IconBlanketRoundedFilled diff --git a/src/IconBlanketSharp.tsx b/src/IconBlanketSharp.tsx index 40863b2c4..47e595e0c 100644 --- a/src/IconBlanketSharp.tsx +++ b/src/IconBlanketSharp.tsx @@ -8,4 +8,4 @@ const IconBlanketSharp: React.FC = ({ ...props }) => ( ) -export { IconBlanketSharp as default } +export default IconBlanketSharp diff --git a/src/IconBlanketSharpFilled.tsx b/src/IconBlanketSharpFilled.tsx index 9353009c6..089f82ca8 100644 --- a/src/IconBlanketSharpFilled.tsx +++ b/src/IconBlanketSharpFilled.tsx @@ -8,4 +8,4 @@ const IconBlanketSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconBlanketSharpFilled as default } +export default IconBlanketSharpFilled diff --git a/src/IconBlenderOutlined.tsx b/src/IconBlenderOutlined.tsx index 9dfef0a34..e75979cdc 100644 --- a/src/IconBlenderOutlined.tsx +++ b/src/IconBlenderOutlined.tsx @@ -8,4 +8,4 @@ const IconBlenderOutlined: React.FC = ({ ...props }) => ( ) -export { IconBlenderOutlined as default } +export default IconBlenderOutlined diff --git a/src/IconBlenderOutlinedFilled.tsx b/src/IconBlenderOutlinedFilled.tsx index c4d04f71a..867a1f912 100644 --- a/src/IconBlenderOutlinedFilled.tsx +++ b/src/IconBlenderOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconBlenderOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconBlenderOutlinedFilled as default } +export default IconBlenderOutlinedFilled diff --git a/src/IconBlenderRounded.tsx b/src/IconBlenderRounded.tsx index 03254ad78..c249fe5cd 100644 --- a/src/IconBlenderRounded.tsx +++ b/src/IconBlenderRounded.tsx @@ -8,4 +8,4 @@ const IconBlenderRounded: React.FC = ({ ...props }) => ( ) -export { IconBlenderRounded as default } +export default IconBlenderRounded diff --git a/src/IconBlenderRoundedFilled.tsx b/src/IconBlenderRoundedFilled.tsx index 85b2e2e9b..965133b0d 100644 --- a/src/IconBlenderRoundedFilled.tsx +++ b/src/IconBlenderRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconBlenderRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconBlenderRoundedFilled as default } +export default IconBlenderRoundedFilled diff --git a/src/IconBlenderSharp.tsx b/src/IconBlenderSharp.tsx index d3826c1f6..3122e2af8 100644 --- a/src/IconBlenderSharp.tsx +++ b/src/IconBlenderSharp.tsx @@ -8,4 +8,4 @@ const IconBlenderSharp: React.FC = ({ ...props }) => ( ) -export { IconBlenderSharp as default } +export default IconBlenderSharp diff --git a/src/IconBlenderSharpFilled.tsx b/src/IconBlenderSharpFilled.tsx index cff6001e2..4235226a5 100644 --- a/src/IconBlenderSharpFilled.tsx +++ b/src/IconBlenderSharpFilled.tsx @@ -8,4 +8,4 @@ const IconBlenderSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconBlenderSharpFilled as default } +export default IconBlenderSharpFilled diff --git a/src/IconBlindOutlined.tsx b/src/IconBlindOutlined.tsx index e9b448488..af50fbaf5 100644 --- a/src/IconBlindOutlined.tsx +++ b/src/IconBlindOutlined.tsx @@ -8,4 +8,4 @@ const IconBlindOutlined: React.FC = ({ ...props }) => ( ) -export { IconBlindOutlined as default } +export default IconBlindOutlined diff --git a/src/IconBlindOutlinedFilled.tsx b/src/IconBlindOutlinedFilled.tsx index 7a187d500..70be78cf5 100644 --- a/src/IconBlindOutlinedFilled.tsx +++ b/src/IconBlindOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconBlindOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconBlindOutlinedFilled as default } +export default IconBlindOutlinedFilled diff --git a/src/IconBlindRounded.tsx b/src/IconBlindRounded.tsx index 955fa7573..eae1619cb 100644 --- a/src/IconBlindRounded.tsx +++ b/src/IconBlindRounded.tsx @@ -8,4 +8,4 @@ const IconBlindRounded: React.FC = ({ ...props }) => ( ) -export { IconBlindRounded as default } +export default IconBlindRounded diff --git a/src/IconBlindRoundedFilled.tsx b/src/IconBlindRoundedFilled.tsx index ac39e320f..d31433792 100644 --- a/src/IconBlindRoundedFilled.tsx +++ b/src/IconBlindRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconBlindRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconBlindRoundedFilled as default } +export default IconBlindRoundedFilled diff --git a/src/IconBlindSharp.tsx b/src/IconBlindSharp.tsx index 56f53edd2..f8ecf4e17 100644 --- a/src/IconBlindSharp.tsx +++ b/src/IconBlindSharp.tsx @@ -8,4 +8,4 @@ const IconBlindSharp: React.FC = ({ ...props }) => ( ) -export { IconBlindSharp as default } +export default IconBlindSharp diff --git a/src/IconBlindSharpFilled.tsx b/src/IconBlindSharpFilled.tsx index de67521e2..7b42add17 100644 --- a/src/IconBlindSharpFilled.tsx +++ b/src/IconBlindSharpFilled.tsx @@ -8,4 +8,4 @@ const IconBlindSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconBlindSharpFilled as default } +export default IconBlindSharpFilled diff --git a/src/IconBlindsClosedOutlined.tsx b/src/IconBlindsClosedOutlined.tsx index af2362656..69351877c 100644 --- a/src/IconBlindsClosedOutlined.tsx +++ b/src/IconBlindsClosedOutlined.tsx @@ -8,4 +8,4 @@ const IconBlindsClosedOutlined: React.FC = ({ ...props }) => ( ) -export { IconBlindsClosedOutlined as default } +export default IconBlindsClosedOutlined diff --git a/src/IconBlindsClosedOutlinedFilled.tsx b/src/IconBlindsClosedOutlinedFilled.tsx index 3345024d1..b3c93238e 100644 --- a/src/IconBlindsClosedOutlinedFilled.tsx +++ b/src/IconBlindsClosedOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconBlindsClosedOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconBlindsClosedOutlinedFilled as default } +export default IconBlindsClosedOutlinedFilled diff --git a/src/IconBlindsClosedRounded.tsx b/src/IconBlindsClosedRounded.tsx index fed54c883..6d162aee8 100644 --- a/src/IconBlindsClosedRounded.tsx +++ b/src/IconBlindsClosedRounded.tsx @@ -8,4 +8,4 @@ const IconBlindsClosedRounded: React.FC = ({ ...props }) => ( ) -export { IconBlindsClosedRounded as default } +export default IconBlindsClosedRounded diff --git a/src/IconBlindsClosedRoundedFilled.tsx b/src/IconBlindsClosedRoundedFilled.tsx index 79a1ba1a1..6e5a29cbf 100644 --- a/src/IconBlindsClosedRoundedFilled.tsx +++ b/src/IconBlindsClosedRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconBlindsClosedRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconBlindsClosedRoundedFilled as default } +export default IconBlindsClosedRoundedFilled diff --git a/src/IconBlindsClosedSharp.tsx b/src/IconBlindsClosedSharp.tsx index 8d77a6471..dbb94ae86 100644 --- a/src/IconBlindsClosedSharp.tsx +++ b/src/IconBlindsClosedSharp.tsx @@ -8,4 +8,4 @@ const IconBlindsClosedSharp: React.FC = ({ ...props }) => ( ) -export { IconBlindsClosedSharp as default } +export default IconBlindsClosedSharp diff --git a/src/IconBlindsClosedSharpFilled.tsx b/src/IconBlindsClosedSharpFilled.tsx index 4eefcca20..5a339c29a 100644 --- a/src/IconBlindsClosedSharpFilled.tsx +++ b/src/IconBlindsClosedSharpFilled.tsx @@ -8,4 +8,4 @@ const IconBlindsClosedSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconBlindsClosedSharpFilled as default } +export default IconBlindsClosedSharpFilled diff --git a/src/IconBlindsOutlined.tsx b/src/IconBlindsOutlined.tsx index ad5236f36..8ecbd32d2 100644 --- a/src/IconBlindsOutlined.tsx +++ b/src/IconBlindsOutlined.tsx @@ -8,4 +8,4 @@ const IconBlindsOutlined: React.FC = ({ ...props }) => ( ) -export { IconBlindsOutlined as default } +export default IconBlindsOutlined diff --git a/src/IconBlindsOutlinedFilled.tsx b/src/IconBlindsOutlinedFilled.tsx index 0cfde19dc..d84ab17af 100644 --- a/src/IconBlindsOutlinedFilled.tsx +++ b/src/IconBlindsOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconBlindsOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconBlindsOutlinedFilled as default } +export default IconBlindsOutlinedFilled diff --git a/src/IconBlindsRounded.tsx b/src/IconBlindsRounded.tsx index 937f50176..844817daa 100644 --- a/src/IconBlindsRounded.tsx +++ b/src/IconBlindsRounded.tsx @@ -8,4 +8,4 @@ const IconBlindsRounded: React.FC = ({ ...props }) => ( ) -export { IconBlindsRounded as default } +export default IconBlindsRounded diff --git a/src/IconBlindsRoundedFilled.tsx b/src/IconBlindsRoundedFilled.tsx index 6a416f081..742e5de1e 100644 --- a/src/IconBlindsRoundedFilled.tsx +++ b/src/IconBlindsRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconBlindsRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconBlindsRoundedFilled as default } +export default IconBlindsRoundedFilled diff --git a/src/IconBlindsSharp.tsx b/src/IconBlindsSharp.tsx index 79ac858d7..8a99c3537 100644 --- a/src/IconBlindsSharp.tsx +++ b/src/IconBlindsSharp.tsx @@ -8,4 +8,4 @@ const IconBlindsSharp: React.FC = ({ ...props }) => ( ) -export { IconBlindsSharp as default } +export default IconBlindsSharp diff --git a/src/IconBlindsSharpFilled.tsx b/src/IconBlindsSharpFilled.tsx index 081fd60b7..59da815c5 100644 --- a/src/IconBlindsSharpFilled.tsx +++ b/src/IconBlindsSharpFilled.tsx @@ -8,4 +8,4 @@ const IconBlindsSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconBlindsSharpFilled as default } +export default IconBlindsSharpFilled diff --git a/src/IconBlockOutlined.tsx b/src/IconBlockOutlined.tsx index 93f4946d5..dbf7cbb4b 100644 --- a/src/IconBlockOutlined.tsx +++ b/src/IconBlockOutlined.tsx @@ -8,4 +8,4 @@ const IconBlockOutlined: React.FC = ({ ...props }) => ( ) -export { IconBlockOutlined as default } +export default IconBlockOutlined diff --git a/src/IconBlockOutlinedFilled.tsx b/src/IconBlockOutlinedFilled.tsx index 2f6a26ab3..fc990ef81 100644 --- a/src/IconBlockOutlinedFilled.tsx +++ b/src/IconBlockOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconBlockOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconBlockOutlinedFilled as default } +export default IconBlockOutlinedFilled diff --git a/src/IconBlockRounded.tsx b/src/IconBlockRounded.tsx index 4a3bd7f84..c3283f811 100644 --- a/src/IconBlockRounded.tsx +++ b/src/IconBlockRounded.tsx @@ -8,4 +8,4 @@ const IconBlockRounded: React.FC = ({ ...props }) => ( ) -export { IconBlockRounded as default } +export default IconBlockRounded diff --git a/src/IconBlockRoundedFilled.tsx b/src/IconBlockRoundedFilled.tsx index 3d07f4d35..6a9cbcaa4 100644 --- a/src/IconBlockRoundedFilled.tsx +++ b/src/IconBlockRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconBlockRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconBlockRoundedFilled as default } +export default IconBlockRoundedFilled diff --git a/src/IconBlockSharp.tsx b/src/IconBlockSharp.tsx index 95a4ec4e4..6f83a39a4 100644 --- a/src/IconBlockSharp.tsx +++ b/src/IconBlockSharp.tsx @@ -8,4 +8,4 @@ const IconBlockSharp: React.FC = ({ ...props }) => ( ) -export { IconBlockSharp as default } +export default IconBlockSharp diff --git a/src/IconBlockSharpFilled.tsx b/src/IconBlockSharpFilled.tsx index 5aeda79d6..d9cb9160d 100644 --- a/src/IconBlockSharpFilled.tsx +++ b/src/IconBlockSharpFilled.tsx @@ -8,4 +8,4 @@ const IconBlockSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconBlockSharpFilled as default } +export default IconBlockSharpFilled diff --git a/src/IconBloodPressureOutlined.tsx b/src/IconBloodPressureOutlined.tsx index 937b71aa3..047b78c95 100644 --- a/src/IconBloodPressureOutlined.tsx +++ b/src/IconBloodPressureOutlined.tsx @@ -8,4 +8,4 @@ const IconBloodPressureOutlined: React.FC = ({ ...props }) => ( ) -export { IconBloodPressureOutlined as default } +export default IconBloodPressureOutlined diff --git a/src/IconBloodPressureOutlinedFilled.tsx b/src/IconBloodPressureOutlinedFilled.tsx index 4af29de40..f9d9cc4d2 100644 --- a/src/IconBloodPressureOutlinedFilled.tsx +++ b/src/IconBloodPressureOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconBloodPressureOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconBloodPressureOutlinedFilled as default } +export default IconBloodPressureOutlinedFilled diff --git a/src/IconBloodPressureRounded.tsx b/src/IconBloodPressureRounded.tsx index f406bc640..2d47bbf9e 100644 --- a/src/IconBloodPressureRounded.tsx +++ b/src/IconBloodPressureRounded.tsx @@ -8,4 +8,4 @@ const IconBloodPressureRounded: React.FC = ({ ...props }) => ( ) -export { IconBloodPressureRounded as default } +export default IconBloodPressureRounded diff --git a/src/IconBloodPressureRoundedFilled.tsx b/src/IconBloodPressureRoundedFilled.tsx index 01c8cce7b..e6f7aff4e 100644 --- a/src/IconBloodPressureRoundedFilled.tsx +++ b/src/IconBloodPressureRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconBloodPressureRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconBloodPressureRoundedFilled as default } +export default IconBloodPressureRoundedFilled diff --git a/src/IconBloodPressureSharp.tsx b/src/IconBloodPressureSharp.tsx index 3839680d4..da371cfd0 100644 --- a/src/IconBloodPressureSharp.tsx +++ b/src/IconBloodPressureSharp.tsx @@ -8,4 +8,4 @@ const IconBloodPressureSharp: React.FC = ({ ...props }) => ( ) -export { IconBloodPressureSharp as default } +export default IconBloodPressureSharp diff --git a/src/IconBloodPressureSharpFilled.tsx b/src/IconBloodPressureSharpFilled.tsx index 7f9298700..811eb5827 100644 --- a/src/IconBloodPressureSharpFilled.tsx +++ b/src/IconBloodPressureSharpFilled.tsx @@ -8,4 +8,4 @@ const IconBloodPressureSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconBloodPressureSharpFilled as default } +export default IconBloodPressureSharpFilled diff --git a/src/IconBloodtypeOutlined.tsx b/src/IconBloodtypeOutlined.tsx index 62c69ea2c..1a00dc33c 100644 --- a/src/IconBloodtypeOutlined.tsx +++ b/src/IconBloodtypeOutlined.tsx @@ -8,4 +8,4 @@ const IconBloodtypeOutlined: React.FC = ({ ...props }) => ( ) -export { IconBloodtypeOutlined as default } +export default IconBloodtypeOutlined diff --git a/src/IconBloodtypeOutlinedFilled.tsx b/src/IconBloodtypeOutlinedFilled.tsx index 8352151e5..7cdd87565 100644 --- a/src/IconBloodtypeOutlinedFilled.tsx +++ b/src/IconBloodtypeOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconBloodtypeOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconBloodtypeOutlinedFilled as default } +export default IconBloodtypeOutlinedFilled diff --git a/src/IconBloodtypeRounded.tsx b/src/IconBloodtypeRounded.tsx index c13f9212e..fc9b8395a 100644 --- a/src/IconBloodtypeRounded.tsx +++ b/src/IconBloodtypeRounded.tsx @@ -8,4 +8,4 @@ const IconBloodtypeRounded: React.FC = ({ ...props }) => ( ) -export { IconBloodtypeRounded as default } +export default IconBloodtypeRounded diff --git a/src/IconBloodtypeRoundedFilled.tsx b/src/IconBloodtypeRoundedFilled.tsx index 2183121fd..545306d21 100644 --- a/src/IconBloodtypeRoundedFilled.tsx +++ b/src/IconBloodtypeRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconBloodtypeRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconBloodtypeRoundedFilled as default } +export default IconBloodtypeRoundedFilled diff --git a/src/IconBloodtypeSharp.tsx b/src/IconBloodtypeSharp.tsx index 66c7f0f01..0e2028c95 100644 --- a/src/IconBloodtypeSharp.tsx +++ b/src/IconBloodtypeSharp.tsx @@ -8,4 +8,4 @@ const IconBloodtypeSharp: React.FC = ({ ...props }) => ( ) -export { IconBloodtypeSharp as default } +export default IconBloodtypeSharp diff --git a/src/IconBloodtypeSharpFilled.tsx b/src/IconBloodtypeSharpFilled.tsx index de9a8b24a..16a7f8fef 100644 --- a/src/IconBloodtypeSharpFilled.tsx +++ b/src/IconBloodtypeSharpFilled.tsx @@ -8,4 +8,4 @@ const IconBloodtypeSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconBloodtypeSharpFilled as default } +export default IconBloodtypeSharpFilled diff --git a/src/IconBluetoothConnectedOutlined.tsx b/src/IconBluetoothConnectedOutlined.tsx index d9073ad4b..1bb0c701d 100644 --- a/src/IconBluetoothConnectedOutlined.tsx +++ b/src/IconBluetoothConnectedOutlined.tsx @@ -8,4 +8,4 @@ const IconBluetoothConnectedOutlined: React.FC = ({ ...props }) => ( ) -export { IconBluetoothConnectedOutlined as default } +export default IconBluetoothConnectedOutlined diff --git a/src/IconBluetoothConnectedOutlinedFilled.tsx b/src/IconBluetoothConnectedOutlinedFilled.tsx index 0e121a2c8..fc17e228f 100644 --- a/src/IconBluetoothConnectedOutlinedFilled.tsx +++ b/src/IconBluetoothConnectedOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconBluetoothConnectedOutlinedFilled: React.FC = ({ ) -export { IconBluetoothConnectedOutlinedFilled as default } +export default IconBluetoothConnectedOutlinedFilled diff --git a/src/IconBluetoothConnectedRounded.tsx b/src/IconBluetoothConnectedRounded.tsx index badc1ea33..7d405a24a 100644 --- a/src/IconBluetoothConnectedRounded.tsx +++ b/src/IconBluetoothConnectedRounded.tsx @@ -8,4 +8,4 @@ const IconBluetoothConnectedRounded: React.FC = ({ ...props }) => ( ) -export { IconBluetoothConnectedRounded as default } +export default IconBluetoothConnectedRounded diff --git a/src/IconBluetoothConnectedRoundedFilled.tsx b/src/IconBluetoothConnectedRoundedFilled.tsx index 14d4e6202..2df7308ce 100644 --- a/src/IconBluetoothConnectedRoundedFilled.tsx +++ b/src/IconBluetoothConnectedRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconBluetoothConnectedRoundedFilled: React.FC = ({ ) -export { IconBluetoothConnectedRoundedFilled as default } +export default IconBluetoothConnectedRoundedFilled diff --git a/src/IconBluetoothConnectedSharp.tsx b/src/IconBluetoothConnectedSharp.tsx index c09a3f2e8..f001666b1 100644 --- a/src/IconBluetoothConnectedSharp.tsx +++ b/src/IconBluetoothConnectedSharp.tsx @@ -8,4 +8,4 @@ const IconBluetoothConnectedSharp: React.FC = ({ ...props }) => ( ) -export { IconBluetoothConnectedSharp as default } +export default IconBluetoothConnectedSharp diff --git a/src/IconBluetoothConnectedSharpFilled.tsx b/src/IconBluetoothConnectedSharpFilled.tsx index b5ddf96de..86c10ba6d 100644 --- a/src/IconBluetoothConnectedSharpFilled.tsx +++ b/src/IconBluetoothConnectedSharpFilled.tsx @@ -10,4 +10,4 @@ const IconBluetoothConnectedSharpFilled: React.FC = ({ ) -export { IconBluetoothConnectedSharpFilled as default } +export default IconBluetoothConnectedSharpFilled diff --git a/src/IconBluetoothDisabledOutlined.tsx b/src/IconBluetoothDisabledOutlined.tsx index d307cb65d..3f98ce539 100644 --- a/src/IconBluetoothDisabledOutlined.tsx +++ b/src/IconBluetoothDisabledOutlined.tsx @@ -8,4 +8,4 @@ const IconBluetoothDisabledOutlined: React.FC = ({ ...props }) => ( ) -export { IconBluetoothDisabledOutlined as default } +export default IconBluetoothDisabledOutlined diff --git a/src/IconBluetoothDisabledOutlinedFilled.tsx b/src/IconBluetoothDisabledOutlinedFilled.tsx index 335e3fd3f..b78deb829 100644 --- a/src/IconBluetoothDisabledOutlinedFilled.tsx +++ b/src/IconBluetoothDisabledOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconBluetoothDisabledOutlinedFilled: React.FC = ({ ) -export { IconBluetoothDisabledOutlinedFilled as default } +export default IconBluetoothDisabledOutlinedFilled diff --git a/src/IconBluetoothDisabledRounded.tsx b/src/IconBluetoothDisabledRounded.tsx index 80eda71fd..0e9138670 100644 --- a/src/IconBluetoothDisabledRounded.tsx +++ b/src/IconBluetoothDisabledRounded.tsx @@ -8,4 +8,4 @@ const IconBluetoothDisabledRounded: React.FC = ({ ...props }) => ( ) -export { IconBluetoothDisabledRounded as default } +export default IconBluetoothDisabledRounded diff --git a/src/IconBluetoothDisabledRoundedFilled.tsx b/src/IconBluetoothDisabledRoundedFilled.tsx index 7a0b8f206..5cf168317 100644 --- a/src/IconBluetoothDisabledRoundedFilled.tsx +++ b/src/IconBluetoothDisabledRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconBluetoothDisabledRoundedFilled: React.FC = ({ ) -export { IconBluetoothDisabledRoundedFilled as default } +export default IconBluetoothDisabledRoundedFilled diff --git a/src/IconBluetoothDisabledSharp.tsx b/src/IconBluetoothDisabledSharp.tsx index 53aa780e4..1eac6a86e 100644 --- a/src/IconBluetoothDisabledSharp.tsx +++ b/src/IconBluetoothDisabledSharp.tsx @@ -8,4 +8,4 @@ const IconBluetoothDisabledSharp: React.FC = ({ ...props }) => ( ) -export { IconBluetoothDisabledSharp as default } +export default IconBluetoothDisabledSharp diff --git a/src/IconBluetoothDisabledSharpFilled.tsx b/src/IconBluetoothDisabledSharpFilled.tsx index 6e07867b9..11f2daf97 100644 --- a/src/IconBluetoothDisabledSharpFilled.tsx +++ b/src/IconBluetoothDisabledSharpFilled.tsx @@ -10,4 +10,4 @@ const IconBluetoothDisabledSharpFilled: React.FC = ({ ) -export { IconBluetoothDisabledSharpFilled as default } +export default IconBluetoothDisabledSharpFilled diff --git a/src/IconBluetoothDriveOutlined.tsx b/src/IconBluetoothDriveOutlined.tsx index afda3a08a..e5c8e3be8 100644 --- a/src/IconBluetoothDriveOutlined.tsx +++ b/src/IconBluetoothDriveOutlined.tsx @@ -8,4 +8,4 @@ const IconBluetoothDriveOutlined: React.FC = ({ ...props }) => ( ) -export { IconBluetoothDriveOutlined as default } +export default IconBluetoothDriveOutlined diff --git a/src/IconBluetoothDriveOutlinedFilled.tsx b/src/IconBluetoothDriveOutlinedFilled.tsx index 7b7af85b0..34dbb5a19 100644 --- a/src/IconBluetoothDriveOutlinedFilled.tsx +++ b/src/IconBluetoothDriveOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconBluetoothDriveOutlinedFilled: React.FC = ({ ) -export { IconBluetoothDriveOutlinedFilled as default } +export default IconBluetoothDriveOutlinedFilled diff --git a/src/IconBluetoothDriveRounded.tsx b/src/IconBluetoothDriveRounded.tsx index 5ecd46cb5..1e81cf218 100644 --- a/src/IconBluetoothDriveRounded.tsx +++ b/src/IconBluetoothDriveRounded.tsx @@ -8,4 +8,4 @@ const IconBluetoothDriveRounded: React.FC = ({ ...props }) => ( ) -export { IconBluetoothDriveRounded as default } +export default IconBluetoothDriveRounded diff --git a/src/IconBluetoothDriveRoundedFilled.tsx b/src/IconBluetoothDriveRoundedFilled.tsx index 3550ac320..c3b7788f8 100644 --- a/src/IconBluetoothDriveRoundedFilled.tsx +++ b/src/IconBluetoothDriveRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconBluetoothDriveRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconBluetoothDriveRoundedFilled as default } +export default IconBluetoothDriveRoundedFilled diff --git a/src/IconBluetoothDriveSharp.tsx b/src/IconBluetoothDriveSharp.tsx index 2d5b3a080..f933e1373 100644 --- a/src/IconBluetoothDriveSharp.tsx +++ b/src/IconBluetoothDriveSharp.tsx @@ -8,4 +8,4 @@ const IconBluetoothDriveSharp: React.FC = ({ ...props }) => ( ) -export { IconBluetoothDriveSharp as default } +export default IconBluetoothDriveSharp diff --git a/src/IconBluetoothDriveSharpFilled.tsx b/src/IconBluetoothDriveSharpFilled.tsx index 674734f9d..3761bd62c 100644 --- a/src/IconBluetoothDriveSharpFilled.tsx +++ b/src/IconBluetoothDriveSharpFilled.tsx @@ -8,4 +8,4 @@ const IconBluetoothDriveSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconBluetoothDriveSharpFilled as default } +export default IconBluetoothDriveSharpFilled diff --git a/src/IconBluetoothOutlined.tsx b/src/IconBluetoothOutlined.tsx index 450b93b42..2f2d1ef72 100644 --- a/src/IconBluetoothOutlined.tsx +++ b/src/IconBluetoothOutlined.tsx @@ -8,4 +8,4 @@ const IconBluetoothOutlined: React.FC = ({ ...props }) => ( ) -export { IconBluetoothOutlined as default } +export default IconBluetoothOutlined diff --git a/src/IconBluetoothOutlinedFilled.tsx b/src/IconBluetoothOutlinedFilled.tsx index c6b38197e..4f510df6c 100644 --- a/src/IconBluetoothOutlinedFilled.tsx +++ b/src/IconBluetoothOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconBluetoothOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconBluetoothOutlinedFilled as default } +export default IconBluetoothOutlinedFilled diff --git a/src/IconBluetoothRounded.tsx b/src/IconBluetoothRounded.tsx index b0732bf98..8a400927d 100644 --- a/src/IconBluetoothRounded.tsx +++ b/src/IconBluetoothRounded.tsx @@ -8,4 +8,4 @@ const IconBluetoothRounded: React.FC = ({ ...props }) => ( ) -export { IconBluetoothRounded as default } +export default IconBluetoothRounded diff --git a/src/IconBluetoothRoundedFilled.tsx b/src/IconBluetoothRoundedFilled.tsx index 2a81fe9bd..0077c732f 100644 --- a/src/IconBluetoothRoundedFilled.tsx +++ b/src/IconBluetoothRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconBluetoothRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconBluetoothRoundedFilled as default } +export default IconBluetoothRoundedFilled diff --git a/src/IconBluetoothSearchingOutlined.tsx b/src/IconBluetoothSearchingOutlined.tsx index d6630d3ea..fda01c8d1 100644 --- a/src/IconBluetoothSearchingOutlined.tsx +++ b/src/IconBluetoothSearchingOutlined.tsx @@ -8,4 +8,4 @@ const IconBluetoothSearchingOutlined: React.FC = ({ ...props }) => ( ) -export { IconBluetoothSearchingOutlined as default } +export default IconBluetoothSearchingOutlined diff --git a/src/IconBluetoothSearchingOutlinedFilled.tsx b/src/IconBluetoothSearchingOutlinedFilled.tsx index 97012de52..2d973c721 100644 --- a/src/IconBluetoothSearchingOutlinedFilled.tsx +++ b/src/IconBluetoothSearchingOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconBluetoothSearchingOutlinedFilled: React.FC = ({ ) -export { IconBluetoothSearchingOutlinedFilled as default } +export default IconBluetoothSearchingOutlinedFilled diff --git a/src/IconBluetoothSearchingRounded.tsx b/src/IconBluetoothSearchingRounded.tsx index d82f3dec9..b44739c01 100644 --- a/src/IconBluetoothSearchingRounded.tsx +++ b/src/IconBluetoothSearchingRounded.tsx @@ -8,4 +8,4 @@ const IconBluetoothSearchingRounded: React.FC = ({ ...props }) => ( ) -export { IconBluetoothSearchingRounded as default } +export default IconBluetoothSearchingRounded diff --git a/src/IconBluetoothSearchingRoundedFilled.tsx b/src/IconBluetoothSearchingRoundedFilled.tsx index d4e265bc9..965ed31ed 100644 --- a/src/IconBluetoothSearchingRoundedFilled.tsx +++ b/src/IconBluetoothSearchingRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconBluetoothSearchingRoundedFilled: React.FC = ({ ) -export { IconBluetoothSearchingRoundedFilled as default } +export default IconBluetoothSearchingRoundedFilled diff --git a/src/IconBluetoothSearchingSharp.tsx b/src/IconBluetoothSearchingSharp.tsx index c81063855..7db742ba8 100644 --- a/src/IconBluetoothSearchingSharp.tsx +++ b/src/IconBluetoothSearchingSharp.tsx @@ -8,4 +8,4 @@ const IconBluetoothSearchingSharp: React.FC = ({ ...props }) => ( ) -export { IconBluetoothSearchingSharp as default } +export default IconBluetoothSearchingSharp diff --git a/src/IconBluetoothSearchingSharpFilled.tsx b/src/IconBluetoothSearchingSharpFilled.tsx index 9b6807865..c1a685654 100644 --- a/src/IconBluetoothSearchingSharpFilled.tsx +++ b/src/IconBluetoothSearchingSharpFilled.tsx @@ -10,4 +10,4 @@ const IconBluetoothSearchingSharpFilled: React.FC = ({ ) -export { IconBluetoothSearchingSharpFilled as default } +export default IconBluetoothSearchingSharpFilled diff --git a/src/IconBluetoothSharp.tsx b/src/IconBluetoothSharp.tsx index 374c525a1..692ff2d0f 100644 --- a/src/IconBluetoothSharp.tsx +++ b/src/IconBluetoothSharp.tsx @@ -8,4 +8,4 @@ const IconBluetoothSharp: React.FC = ({ ...props }) => ( ) -export { IconBluetoothSharp as default } +export default IconBluetoothSharp diff --git a/src/IconBluetoothSharpFilled.tsx b/src/IconBluetoothSharpFilled.tsx index ac54a86d1..27c5a39cc 100644 --- a/src/IconBluetoothSharpFilled.tsx +++ b/src/IconBluetoothSharpFilled.tsx @@ -8,4 +8,4 @@ const IconBluetoothSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconBluetoothSharpFilled as default } +export default IconBluetoothSharpFilled diff --git a/src/IconBlurCircularOutlined.tsx b/src/IconBlurCircularOutlined.tsx index 276e19abd..56580b558 100644 --- a/src/IconBlurCircularOutlined.tsx +++ b/src/IconBlurCircularOutlined.tsx @@ -8,4 +8,4 @@ const IconBlurCircularOutlined: React.FC = ({ ...props }) => ( ) -export { IconBlurCircularOutlined as default } +export default IconBlurCircularOutlined diff --git a/src/IconBlurCircularOutlinedFilled.tsx b/src/IconBlurCircularOutlinedFilled.tsx index 4de446a9c..7aaf5e5ad 100644 --- a/src/IconBlurCircularOutlinedFilled.tsx +++ b/src/IconBlurCircularOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconBlurCircularOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconBlurCircularOutlinedFilled as default } +export default IconBlurCircularOutlinedFilled diff --git a/src/IconBlurCircularRounded.tsx b/src/IconBlurCircularRounded.tsx index 01b0dc3fe..f59db8b15 100644 --- a/src/IconBlurCircularRounded.tsx +++ b/src/IconBlurCircularRounded.tsx @@ -8,4 +8,4 @@ const IconBlurCircularRounded: React.FC = ({ ...props }) => ( ) -export { IconBlurCircularRounded as default } +export default IconBlurCircularRounded diff --git a/src/IconBlurCircularRoundedFilled.tsx b/src/IconBlurCircularRoundedFilled.tsx index c4fd50c69..66180f255 100644 --- a/src/IconBlurCircularRoundedFilled.tsx +++ b/src/IconBlurCircularRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconBlurCircularRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconBlurCircularRoundedFilled as default } +export default IconBlurCircularRoundedFilled diff --git a/src/IconBlurCircularSharp.tsx b/src/IconBlurCircularSharp.tsx index 7d194963a..97c3a1332 100644 --- a/src/IconBlurCircularSharp.tsx +++ b/src/IconBlurCircularSharp.tsx @@ -8,4 +8,4 @@ const IconBlurCircularSharp: React.FC = ({ ...props }) => ( ) -export { IconBlurCircularSharp as default } +export default IconBlurCircularSharp diff --git a/src/IconBlurCircularSharpFilled.tsx b/src/IconBlurCircularSharpFilled.tsx index 7f49bccbc..590909ab4 100644 --- a/src/IconBlurCircularSharpFilled.tsx +++ b/src/IconBlurCircularSharpFilled.tsx @@ -8,4 +8,4 @@ const IconBlurCircularSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconBlurCircularSharpFilled as default } +export default IconBlurCircularSharpFilled diff --git a/src/IconBlurLinearOutlined.tsx b/src/IconBlurLinearOutlined.tsx index 29c25f311..7abb4348b 100644 --- a/src/IconBlurLinearOutlined.tsx +++ b/src/IconBlurLinearOutlined.tsx @@ -8,4 +8,4 @@ const IconBlurLinearOutlined: React.FC = ({ ...props }) => ( ) -export { IconBlurLinearOutlined as default } +export default IconBlurLinearOutlined diff --git a/src/IconBlurLinearOutlinedFilled.tsx b/src/IconBlurLinearOutlinedFilled.tsx index 680ad9870..6fbb620b7 100644 --- a/src/IconBlurLinearOutlinedFilled.tsx +++ b/src/IconBlurLinearOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconBlurLinearOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconBlurLinearOutlinedFilled as default } +export default IconBlurLinearOutlinedFilled diff --git a/src/IconBlurLinearRounded.tsx b/src/IconBlurLinearRounded.tsx index 8742f97b3..7438e6721 100644 --- a/src/IconBlurLinearRounded.tsx +++ b/src/IconBlurLinearRounded.tsx @@ -8,4 +8,4 @@ const IconBlurLinearRounded: React.FC = ({ ...props }) => ( ) -export { IconBlurLinearRounded as default } +export default IconBlurLinearRounded diff --git a/src/IconBlurLinearRoundedFilled.tsx b/src/IconBlurLinearRoundedFilled.tsx index a7245a9f4..4068aaad7 100644 --- a/src/IconBlurLinearRoundedFilled.tsx +++ b/src/IconBlurLinearRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconBlurLinearRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconBlurLinearRoundedFilled as default } +export default IconBlurLinearRoundedFilled diff --git a/src/IconBlurLinearSharp.tsx b/src/IconBlurLinearSharp.tsx index 8b52da604..f6361f1a3 100644 --- a/src/IconBlurLinearSharp.tsx +++ b/src/IconBlurLinearSharp.tsx @@ -8,4 +8,4 @@ const IconBlurLinearSharp: React.FC = ({ ...props }) => ( ) -export { IconBlurLinearSharp as default } +export default IconBlurLinearSharp diff --git a/src/IconBlurLinearSharpFilled.tsx b/src/IconBlurLinearSharpFilled.tsx index 5a3ff768d..b67515e90 100644 --- a/src/IconBlurLinearSharpFilled.tsx +++ b/src/IconBlurLinearSharpFilled.tsx @@ -8,4 +8,4 @@ const IconBlurLinearSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconBlurLinearSharpFilled as default } +export default IconBlurLinearSharpFilled diff --git a/src/IconBlurMediumOutlined.tsx b/src/IconBlurMediumOutlined.tsx index 5b99361bb..44b47f95e 100644 --- a/src/IconBlurMediumOutlined.tsx +++ b/src/IconBlurMediumOutlined.tsx @@ -8,4 +8,4 @@ const IconBlurMediumOutlined: React.FC = ({ ...props }) => ( ) -export { IconBlurMediumOutlined as default } +export default IconBlurMediumOutlined diff --git a/src/IconBlurMediumOutlinedFilled.tsx b/src/IconBlurMediumOutlinedFilled.tsx index b1f850923..83805e7a1 100644 --- a/src/IconBlurMediumOutlinedFilled.tsx +++ b/src/IconBlurMediumOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconBlurMediumOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconBlurMediumOutlinedFilled as default } +export default IconBlurMediumOutlinedFilled diff --git a/src/IconBlurMediumRounded.tsx b/src/IconBlurMediumRounded.tsx index 3066806ef..d39ab6b40 100644 --- a/src/IconBlurMediumRounded.tsx +++ b/src/IconBlurMediumRounded.tsx @@ -8,4 +8,4 @@ const IconBlurMediumRounded: React.FC = ({ ...props }) => ( ) -export { IconBlurMediumRounded as default } +export default IconBlurMediumRounded diff --git a/src/IconBlurMediumRoundedFilled.tsx b/src/IconBlurMediumRoundedFilled.tsx index 0349ece6d..5a64a4c9a 100644 --- a/src/IconBlurMediumRoundedFilled.tsx +++ b/src/IconBlurMediumRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconBlurMediumRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconBlurMediumRoundedFilled as default } +export default IconBlurMediumRoundedFilled diff --git a/src/IconBlurMediumSharp.tsx b/src/IconBlurMediumSharp.tsx index 7e165be77..c86c1d2bc 100644 --- a/src/IconBlurMediumSharp.tsx +++ b/src/IconBlurMediumSharp.tsx @@ -8,4 +8,4 @@ const IconBlurMediumSharp: React.FC = ({ ...props }) => ( ) -export { IconBlurMediumSharp as default } +export default IconBlurMediumSharp diff --git a/src/IconBlurMediumSharpFilled.tsx b/src/IconBlurMediumSharpFilled.tsx index c2491e366..dc8ec2fac 100644 --- a/src/IconBlurMediumSharpFilled.tsx +++ b/src/IconBlurMediumSharpFilled.tsx @@ -8,4 +8,4 @@ const IconBlurMediumSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconBlurMediumSharpFilled as default } +export default IconBlurMediumSharpFilled diff --git a/src/IconBlurOffOutlined.tsx b/src/IconBlurOffOutlined.tsx index 3b10c2e74..4b0c80bda 100644 --- a/src/IconBlurOffOutlined.tsx +++ b/src/IconBlurOffOutlined.tsx @@ -8,4 +8,4 @@ const IconBlurOffOutlined: React.FC = ({ ...props }) => ( ) -export { IconBlurOffOutlined as default } +export default IconBlurOffOutlined diff --git a/src/IconBlurOffOutlinedFilled.tsx b/src/IconBlurOffOutlinedFilled.tsx index 4b380efa4..49c2414c3 100644 --- a/src/IconBlurOffOutlinedFilled.tsx +++ b/src/IconBlurOffOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconBlurOffOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconBlurOffOutlinedFilled as default } +export default IconBlurOffOutlinedFilled diff --git a/src/IconBlurOffRounded.tsx b/src/IconBlurOffRounded.tsx index d385b03d8..fc235dfce 100644 --- a/src/IconBlurOffRounded.tsx +++ b/src/IconBlurOffRounded.tsx @@ -8,4 +8,4 @@ const IconBlurOffRounded: React.FC = ({ ...props }) => ( ) -export { IconBlurOffRounded as default } +export default IconBlurOffRounded diff --git a/src/IconBlurOffRoundedFilled.tsx b/src/IconBlurOffRoundedFilled.tsx index 03f9a715e..4c993753b 100644 --- a/src/IconBlurOffRoundedFilled.tsx +++ b/src/IconBlurOffRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconBlurOffRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconBlurOffRoundedFilled as default } +export default IconBlurOffRoundedFilled diff --git a/src/IconBlurOffSharp.tsx b/src/IconBlurOffSharp.tsx index 32e21b3db..09a5beee0 100644 --- a/src/IconBlurOffSharp.tsx +++ b/src/IconBlurOffSharp.tsx @@ -8,4 +8,4 @@ const IconBlurOffSharp: React.FC = ({ ...props }) => ( ) -export { IconBlurOffSharp as default } +export default IconBlurOffSharp diff --git a/src/IconBlurOffSharpFilled.tsx b/src/IconBlurOffSharpFilled.tsx index 7e34a8bc1..dd125f2d0 100644 --- a/src/IconBlurOffSharpFilled.tsx +++ b/src/IconBlurOffSharpFilled.tsx @@ -8,4 +8,4 @@ const IconBlurOffSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconBlurOffSharpFilled as default } +export default IconBlurOffSharpFilled diff --git a/src/IconBlurOnOutlined.tsx b/src/IconBlurOnOutlined.tsx index 842c68699..3092516b8 100644 --- a/src/IconBlurOnOutlined.tsx +++ b/src/IconBlurOnOutlined.tsx @@ -8,4 +8,4 @@ const IconBlurOnOutlined: React.FC = ({ ...props }) => ( ) -export { IconBlurOnOutlined as default } +export default IconBlurOnOutlined diff --git a/src/IconBlurOnOutlinedFilled.tsx b/src/IconBlurOnOutlinedFilled.tsx index 4b6314003..acf09bdfa 100644 --- a/src/IconBlurOnOutlinedFilled.tsx +++ b/src/IconBlurOnOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconBlurOnOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconBlurOnOutlinedFilled as default } +export default IconBlurOnOutlinedFilled diff --git a/src/IconBlurOnRounded.tsx b/src/IconBlurOnRounded.tsx index 39344f22c..6f9156a38 100644 --- a/src/IconBlurOnRounded.tsx +++ b/src/IconBlurOnRounded.tsx @@ -8,4 +8,4 @@ const IconBlurOnRounded: React.FC = ({ ...props }) => ( ) -export { IconBlurOnRounded as default } +export default IconBlurOnRounded diff --git a/src/IconBlurOnRoundedFilled.tsx b/src/IconBlurOnRoundedFilled.tsx index d7217ddd0..54b36abb0 100644 --- a/src/IconBlurOnRoundedFilled.tsx +++ b/src/IconBlurOnRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconBlurOnRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconBlurOnRoundedFilled as default } +export default IconBlurOnRoundedFilled diff --git a/src/IconBlurOnSharp.tsx b/src/IconBlurOnSharp.tsx index 3b7ce76ce..675cb3bd3 100644 --- a/src/IconBlurOnSharp.tsx +++ b/src/IconBlurOnSharp.tsx @@ -8,4 +8,4 @@ const IconBlurOnSharp: React.FC = ({ ...props }) => ( ) -export { IconBlurOnSharp as default } +export default IconBlurOnSharp diff --git a/src/IconBlurOnSharpFilled.tsx b/src/IconBlurOnSharpFilled.tsx index 2f7a76ae1..5fd3c95ef 100644 --- a/src/IconBlurOnSharpFilled.tsx +++ b/src/IconBlurOnSharpFilled.tsx @@ -8,4 +8,4 @@ const IconBlurOnSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconBlurOnSharpFilled as default } +export default IconBlurOnSharpFilled diff --git a/src/IconBlurShortOutlined.tsx b/src/IconBlurShortOutlined.tsx index cb0f18835..2b7c67a9c 100644 --- a/src/IconBlurShortOutlined.tsx +++ b/src/IconBlurShortOutlined.tsx @@ -8,4 +8,4 @@ const IconBlurShortOutlined: React.FC = ({ ...props }) => ( ) -export { IconBlurShortOutlined as default } +export default IconBlurShortOutlined diff --git a/src/IconBlurShortOutlinedFilled.tsx b/src/IconBlurShortOutlinedFilled.tsx index fb48ec87e..dcaa8b304 100644 --- a/src/IconBlurShortOutlinedFilled.tsx +++ b/src/IconBlurShortOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconBlurShortOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconBlurShortOutlinedFilled as default } +export default IconBlurShortOutlinedFilled diff --git a/src/IconBlurShortRounded.tsx b/src/IconBlurShortRounded.tsx index 49a486ed5..17c7063d0 100644 --- a/src/IconBlurShortRounded.tsx +++ b/src/IconBlurShortRounded.tsx @@ -8,4 +8,4 @@ const IconBlurShortRounded: React.FC = ({ ...props }) => ( ) -export { IconBlurShortRounded as default } +export default IconBlurShortRounded diff --git a/src/IconBlurShortRoundedFilled.tsx b/src/IconBlurShortRoundedFilled.tsx index 98976a09e..e6d769bbd 100644 --- a/src/IconBlurShortRoundedFilled.tsx +++ b/src/IconBlurShortRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconBlurShortRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconBlurShortRoundedFilled as default } +export default IconBlurShortRoundedFilled diff --git a/src/IconBlurShortSharp.tsx b/src/IconBlurShortSharp.tsx index ec297d95c..ce779d71c 100644 --- a/src/IconBlurShortSharp.tsx +++ b/src/IconBlurShortSharp.tsx @@ -8,4 +8,4 @@ const IconBlurShortSharp: React.FC = ({ ...props }) => ( ) -export { IconBlurShortSharp as default } +export default IconBlurShortSharp diff --git a/src/IconBlurShortSharpFilled.tsx b/src/IconBlurShortSharpFilled.tsx index e0248dfb9..b1ac04ca9 100644 --- a/src/IconBlurShortSharpFilled.tsx +++ b/src/IconBlurShortSharpFilled.tsx @@ -8,4 +8,4 @@ const IconBlurShortSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconBlurShortSharpFilled as default } +export default IconBlurShortSharpFilled diff --git a/src/IconBodyFatOutlined.tsx b/src/IconBodyFatOutlined.tsx index 99f4fc8be..6262daf84 100644 --- a/src/IconBodyFatOutlined.tsx +++ b/src/IconBodyFatOutlined.tsx @@ -8,4 +8,4 @@ const IconBodyFatOutlined: React.FC = ({ ...props }) => ( ) -export { IconBodyFatOutlined as default } +export default IconBodyFatOutlined diff --git a/src/IconBodyFatOutlinedFilled.tsx b/src/IconBodyFatOutlinedFilled.tsx index 200bf5042..db11da568 100644 --- a/src/IconBodyFatOutlinedFilled.tsx +++ b/src/IconBodyFatOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconBodyFatOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconBodyFatOutlinedFilled as default } +export default IconBodyFatOutlinedFilled diff --git a/src/IconBodyFatRounded.tsx b/src/IconBodyFatRounded.tsx index 9bf08dd4e..99f6dd61c 100644 --- a/src/IconBodyFatRounded.tsx +++ b/src/IconBodyFatRounded.tsx @@ -8,4 +8,4 @@ const IconBodyFatRounded: React.FC = ({ ...props }) => ( ) -export { IconBodyFatRounded as default } +export default IconBodyFatRounded diff --git a/src/IconBodyFatRoundedFilled.tsx b/src/IconBodyFatRoundedFilled.tsx index bd96adba1..e5b909cf1 100644 --- a/src/IconBodyFatRoundedFilled.tsx +++ b/src/IconBodyFatRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconBodyFatRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconBodyFatRoundedFilled as default } +export default IconBodyFatRoundedFilled diff --git a/src/IconBodyFatSharp.tsx b/src/IconBodyFatSharp.tsx index 60dbb6121..329d52e7b 100644 --- a/src/IconBodyFatSharp.tsx +++ b/src/IconBodyFatSharp.tsx @@ -8,4 +8,4 @@ const IconBodyFatSharp: React.FC = ({ ...props }) => ( ) -export { IconBodyFatSharp as default } +export default IconBodyFatSharp diff --git a/src/IconBodyFatSharpFilled.tsx b/src/IconBodyFatSharpFilled.tsx index 75a4cd5db..f92bc4d5f 100644 --- a/src/IconBodyFatSharpFilled.tsx +++ b/src/IconBodyFatSharpFilled.tsx @@ -8,4 +8,4 @@ const IconBodyFatSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconBodyFatSharpFilled as default } +export default IconBodyFatSharpFilled diff --git a/src/IconBodySystemOutlined.tsx b/src/IconBodySystemOutlined.tsx index 2a9a41dfe..9cd6b3c36 100644 --- a/src/IconBodySystemOutlined.tsx +++ b/src/IconBodySystemOutlined.tsx @@ -8,4 +8,4 @@ const IconBodySystemOutlined: React.FC = ({ ...props }) => ( ) -export { IconBodySystemOutlined as default } +export default IconBodySystemOutlined diff --git a/src/IconBodySystemOutlinedFilled.tsx b/src/IconBodySystemOutlinedFilled.tsx index 3381adcc9..a62322ce9 100644 --- a/src/IconBodySystemOutlinedFilled.tsx +++ b/src/IconBodySystemOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconBodySystemOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconBodySystemOutlinedFilled as default } +export default IconBodySystemOutlinedFilled diff --git a/src/IconBodySystemRounded.tsx b/src/IconBodySystemRounded.tsx index b3a62d218..9e85e49af 100644 --- a/src/IconBodySystemRounded.tsx +++ b/src/IconBodySystemRounded.tsx @@ -8,4 +8,4 @@ const IconBodySystemRounded: React.FC = ({ ...props }) => ( ) -export { IconBodySystemRounded as default } +export default IconBodySystemRounded diff --git a/src/IconBodySystemRoundedFilled.tsx b/src/IconBodySystemRoundedFilled.tsx index 3ea11057e..c4d57a4ec 100644 --- a/src/IconBodySystemRoundedFilled.tsx +++ b/src/IconBodySystemRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconBodySystemRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconBodySystemRoundedFilled as default } +export default IconBodySystemRoundedFilled diff --git a/src/IconBodySystemSharp.tsx b/src/IconBodySystemSharp.tsx index 707ac1ad8..6b609af06 100644 --- a/src/IconBodySystemSharp.tsx +++ b/src/IconBodySystemSharp.tsx @@ -8,4 +8,4 @@ const IconBodySystemSharp: React.FC = ({ ...props }) => ( ) -export { IconBodySystemSharp as default } +export default IconBodySystemSharp diff --git a/src/IconBodySystemSharpFilled.tsx b/src/IconBodySystemSharpFilled.tsx index a9ab4a2d8..528664d76 100644 --- a/src/IconBodySystemSharpFilled.tsx +++ b/src/IconBodySystemSharpFilled.tsx @@ -8,4 +8,4 @@ const IconBodySystemSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconBodySystemSharpFilled as default } +export default IconBodySystemSharpFilled diff --git a/src/IconBoltOutlined.tsx b/src/IconBoltOutlined.tsx index 9403cb916..7327e1923 100644 --- a/src/IconBoltOutlined.tsx +++ b/src/IconBoltOutlined.tsx @@ -8,4 +8,4 @@ const IconBoltOutlined: React.FC = ({ ...props }) => ( ) -export { IconBoltOutlined as default } +export default IconBoltOutlined diff --git a/src/IconBoltOutlinedFilled.tsx b/src/IconBoltOutlinedFilled.tsx index a8ec9aecb..358a3bb3c 100644 --- a/src/IconBoltOutlinedFilled.tsx +++ b/src/IconBoltOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconBoltOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconBoltOutlinedFilled as default } +export default IconBoltOutlinedFilled diff --git a/src/IconBoltRounded.tsx b/src/IconBoltRounded.tsx index 2dfb580f6..c7a6a93e2 100644 --- a/src/IconBoltRounded.tsx +++ b/src/IconBoltRounded.tsx @@ -8,4 +8,4 @@ const IconBoltRounded: React.FC = ({ ...props }) => ( ) -export { IconBoltRounded as default } +export default IconBoltRounded diff --git a/src/IconBoltRoundedFilled.tsx b/src/IconBoltRoundedFilled.tsx index 6a7dd7098..0fee83b43 100644 --- a/src/IconBoltRoundedFilled.tsx +++ b/src/IconBoltRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconBoltRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconBoltRoundedFilled as default } +export default IconBoltRoundedFilled diff --git a/src/IconBoltSharp.tsx b/src/IconBoltSharp.tsx index f03d77b8f..36a5aff45 100644 --- a/src/IconBoltSharp.tsx +++ b/src/IconBoltSharp.tsx @@ -8,4 +8,4 @@ const IconBoltSharp: React.FC = ({ ...props }) => ( ) -export { IconBoltSharp as default } +export default IconBoltSharp diff --git a/src/IconBoltSharpFilled.tsx b/src/IconBoltSharpFilled.tsx index ed3b42660..5be4b9d3a 100644 --- a/src/IconBoltSharpFilled.tsx +++ b/src/IconBoltSharpFilled.tsx @@ -8,4 +8,4 @@ const IconBoltSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconBoltSharpFilled as default } +export default IconBoltSharpFilled diff --git a/src/IconBombOutlined.tsx b/src/IconBombOutlined.tsx index 33c691c20..dc1ac45b0 100644 --- a/src/IconBombOutlined.tsx +++ b/src/IconBombOutlined.tsx @@ -8,4 +8,4 @@ const IconBombOutlined: React.FC = ({ ...props }) => ( ) -export { IconBombOutlined as default } +export default IconBombOutlined diff --git a/src/IconBombOutlinedFilled.tsx b/src/IconBombOutlinedFilled.tsx index 09a6b3a94..60d5034f3 100644 --- a/src/IconBombOutlinedFilled.tsx +++ b/src/IconBombOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconBombOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconBombOutlinedFilled as default } +export default IconBombOutlinedFilled diff --git a/src/IconBombRounded.tsx b/src/IconBombRounded.tsx index acf34a42e..a24592d07 100644 --- a/src/IconBombRounded.tsx +++ b/src/IconBombRounded.tsx @@ -8,4 +8,4 @@ const IconBombRounded: React.FC = ({ ...props }) => ( ) -export { IconBombRounded as default } +export default IconBombRounded diff --git a/src/IconBombRoundedFilled.tsx b/src/IconBombRoundedFilled.tsx index 33acaa4e2..2316141e3 100644 --- a/src/IconBombRoundedFilled.tsx +++ b/src/IconBombRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconBombRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconBombRoundedFilled as default } +export default IconBombRoundedFilled diff --git a/src/IconBombSharp.tsx b/src/IconBombSharp.tsx index 86f066048..43d2c9cac 100644 --- a/src/IconBombSharp.tsx +++ b/src/IconBombSharp.tsx @@ -8,4 +8,4 @@ const IconBombSharp: React.FC = ({ ...props }) => ( ) -export { IconBombSharp as default } +export default IconBombSharp diff --git a/src/IconBombSharpFilled.tsx b/src/IconBombSharpFilled.tsx index c37f6f58b..f51999365 100644 --- a/src/IconBombSharpFilled.tsx +++ b/src/IconBombSharpFilled.tsx @@ -8,4 +8,4 @@ const IconBombSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconBombSharpFilled as default } +export default IconBombSharpFilled diff --git a/src/IconBook2Outlined.tsx b/src/IconBook2Outlined.tsx index ec76f4974..7085854ef 100644 --- a/src/IconBook2Outlined.tsx +++ b/src/IconBook2Outlined.tsx @@ -8,4 +8,4 @@ const IconBook2Outlined: React.FC = ({ ...props }) => ( ) -export { IconBook2Outlined as default } +export default IconBook2Outlined diff --git a/src/IconBook2OutlinedFilled.tsx b/src/IconBook2OutlinedFilled.tsx index 499f91b0f..04600b989 100644 --- a/src/IconBook2OutlinedFilled.tsx +++ b/src/IconBook2OutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconBook2OutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconBook2OutlinedFilled as default } +export default IconBook2OutlinedFilled diff --git a/src/IconBook2Rounded.tsx b/src/IconBook2Rounded.tsx index 3654a1434..ec584cae4 100644 --- a/src/IconBook2Rounded.tsx +++ b/src/IconBook2Rounded.tsx @@ -8,4 +8,4 @@ const IconBook2Rounded: React.FC = ({ ...props }) => ( ) -export { IconBook2Rounded as default } +export default IconBook2Rounded diff --git a/src/IconBook2RoundedFilled.tsx b/src/IconBook2RoundedFilled.tsx index 6af93c762..51fa346c6 100644 --- a/src/IconBook2RoundedFilled.tsx +++ b/src/IconBook2RoundedFilled.tsx @@ -8,4 +8,4 @@ const IconBook2RoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconBook2RoundedFilled as default } +export default IconBook2RoundedFilled diff --git a/src/IconBook2Sharp.tsx b/src/IconBook2Sharp.tsx index 61d7a8696..55857d82a 100644 --- a/src/IconBook2Sharp.tsx +++ b/src/IconBook2Sharp.tsx @@ -8,4 +8,4 @@ const IconBook2Sharp: React.FC = ({ ...props }) => ( ) -export { IconBook2Sharp as default } +export default IconBook2Sharp diff --git a/src/IconBook2SharpFilled.tsx b/src/IconBook2SharpFilled.tsx index 58ffba217..1c47b2c46 100644 --- a/src/IconBook2SharpFilled.tsx +++ b/src/IconBook2SharpFilled.tsx @@ -8,4 +8,4 @@ const IconBook2SharpFilled: React.FC = ({ ...props }) => ( ) -export { IconBook2SharpFilled as default } +export default IconBook2SharpFilled diff --git a/src/IconBook3Outlined.tsx b/src/IconBook3Outlined.tsx index 26ac09746..cd60149ca 100644 --- a/src/IconBook3Outlined.tsx +++ b/src/IconBook3Outlined.tsx @@ -8,4 +8,4 @@ const IconBook3Outlined: React.FC = ({ ...props }) => ( ) -export { IconBook3Outlined as default } +export default IconBook3Outlined diff --git a/src/IconBook3OutlinedFilled.tsx b/src/IconBook3OutlinedFilled.tsx index e66cc08a2..d4a05ef55 100644 --- a/src/IconBook3OutlinedFilled.tsx +++ b/src/IconBook3OutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconBook3OutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconBook3OutlinedFilled as default } +export default IconBook3OutlinedFilled diff --git a/src/IconBook3Rounded.tsx b/src/IconBook3Rounded.tsx index 6e0f348b4..db2d7e5ae 100644 --- a/src/IconBook3Rounded.tsx +++ b/src/IconBook3Rounded.tsx @@ -8,4 +8,4 @@ const IconBook3Rounded: React.FC = ({ ...props }) => ( ) -export { IconBook3Rounded as default } +export default IconBook3Rounded diff --git a/src/IconBook3RoundedFilled.tsx b/src/IconBook3RoundedFilled.tsx index 85ee006c6..8e666e50a 100644 --- a/src/IconBook3RoundedFilled.tsx +++ b/src/IconBook3RoundedFilled.tsx @@ -8,4 +8,4 @@ const IconBook3RoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconBook3RoundedFilled as default } +export default IconBook3RoundedFilled diff --git a/src/IconBook3Sharp.tsx b/src/IconBook3Sharp.tsx index 04a9f8082..5a77f992f 100644 --- a/src/IconBook3Sharp.tsx +++ b/src/IconBook3Sharp.tsx @@ -8,4 +8,4 @@ const IconBook3Sharp: React.FC = ({ ...props }) => ( ) -export { IconBook3Sharp as default } +export default IconBook3Sharp diff --git a/src/IconBook3SharpFilled.tsx b/src/IconBook3SharpFilled.tsx index fd2657dba..7da4dafd6 100644 --- a/src/IconBook3SharpFilled.tsx +++ b/src/IconBook3SharpFilled.tsx @@ -8,4 +8,4 @@ const IconBook3SharpFilled: React.FC = ({ ...props }) => ( ) -export { IconBook3SharpFilled as default } +export default IconBook3SharpFilled diff --git a/src/IconBook4Outlined.tsx b/src/IconBook4Outlined.tsx index 044e17438..2b84a1b5e 100644 --- a/src/IconBook4Outlined.tsx +++ b/src/IconBook4Outlined.tsx @@ -8,4 +8,4 @@ const IconBook4Outlined: React.FC = ({ ...props }) => ( ) -export { IconBook4Outlined as default } +export default IconBook4Outlined diff --git a/src/IconBook4OutlinedFilled.tsx b/src/IconBook4OutlinedFilled.tsx index d10f5663b..8f9a3346e 100644 --- a/src/IconBook4OutlinedFilled.tsx +++ b/src/IconBook4OutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconBook4OutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconBook4OutlinedFilled as default } +export default IconBook4OutlinedFilled diff --git a/src/IconBook4Rounded.tsx b/src/IconBook4Rounded.tsx index d772d6b38..8bd01033e 100644 --- a/src/IconBook4Rounded.tsx +++ b/src/IconBook4Rounded.tsx @@ -8,4 +8,4 @@ const IconBook4Rounded: React.FC = ({ ...props }) => ( ) -export { IconBook4Rounded as default } +export default IconBook4Rounded diff --git a/src/IconBook4RoundedFilled.tsx b/src/IconBook4RoundedFilled.tsx index 0e7de6a46..7e4d4852c 100644 --- a/src/IconBook4RoundedFilled.tsx +++ b/src/IconBook4RoundedFilled.tsx @@ -8,4 +8,4 @@ const IconBook4RoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconBook4RoundedFilled as default } +export default IconBook4RoundedFilled diff --git a/src/IconBook4Sharp.tsx b/src/IconBook4Sharp.tsx index 2cab94805..c6c442e7e 100644 --- a/src/IconBook4Sharp.tsx +++ b/src/IconBook4Sharp.tsx @@ -8,4 +8,4 @@ const IconBook4Sharp: React.FC = ({ ...props }) => ( ) -export { IconBook4Sharp as default } +export default IconBook4Sharp diff --git a/src/IconBook4SharpFilled.tsx b/src/IconBook4SharpFilled.tsx index 7078e60d9..45b0581ad 100644 --- a/src/IconBook4SharpFilled.tsx +++ b/src/IconBook4SharpFilled.tsx @@ -8,4 +8,4 @@ const IconBook4SharpFilled: React.FC = ({ ...props }) => ( ) -export { IconBook4SharpFilled as default } +export default IconBook4SharpFilled diff --git a/src/IconBook5Outlined.tsx b/src/IconBook5Outlined.tsx index 8f5ece3b0..a4d623a54 100644 --- a/src/IconBook5Outlined.tsx +++ b/src/IconBook5Outlined.tsx @@ -8,4 +8,4 @@ const IconBook5Outlined: React.FC = ({ ...props }) => ( ) -export { IconBook5Outlined as default } +export default IconBook5Outlined diff --git a/src/IconBook5OutlinedFilled.tsx b/src/IconBook5OutlinedFilled.tsx index 518f8de28..a0422a80a 100644 --- a/src/IconBook5OutlinedFilled.tsx +++ b/src/IconBook5OutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconBook5OutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconBook5OutlinedFilled as default } +export default IconBook5OutlinedFilled diff --git a/src/IconBook5Rounded.tsx b/src/IconBook5Rounded.tsx index ca03af33d..808b70b82 100644 --- a/src/IconBook5Rounded.tsx +++ b/src/IconBook5Rounded.tsx @@ -8,4 +8,4 @@ const IconBook5Rounded: React.FC = ({ ...props }) => ( ) -export { IconBook5Rounded as default } +export default IconBook5Rounded diff --git a/src/IconBook5RoundedFilled.tsx b/src/IconBook5RoundedFilled.tsx index 9b539c37d..effbce5f4 100644 --- a/src/IconBook5RoundedFilled.tsx +++ b/src/IconBook5RoundedFilled.tsx @@ -8,4 +8,4 @@ const IconBook5RoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconBook5RoundedFilled as default } +export default IconBook5RoundedFilled diff --git a/src/IconBook5Sharp.tsx b/src/IconBook5Sharp.tsx index dce0bf02d..4ad9fe020 100644 --- a/src/IconBook5Sharp.tsx +++ b/src/IconBook5Sharp.tsx @@ -8,4 +8,4 @@ const IconBook5Sharp: React.FC = ({ ...props }) => ( ) -export { IconBook5Sharp as default } +export default IconBook5Sharp diff --git a/src/IconBook5SharpFilled.tsx b/src/IconBook5SharpFilled.tsx index 53f042e4a..81c3c8ad3 100644 --- a/src/IconBook5SharpFilled.tsx +++ b/src/IconBook5SharpFilled.tsx @@ -8,4 +8,4 @@ const IconBook5SharpFilled: React.FC = ({ ...props }) => ( ) -export { IconBook5SharpFilled as default } +export default IconBook5SharpFilled diff --git a/src/IconBookOnlineOutlined.tsx b/src/IconBookOnlineOutlined.tsx index d48d93361..b5fbd5325 100644 --- a/src/IconBookOnlineOutlined.tsx +++ b/src/IconBookOnlineOutlined.tsx @@ -8,4 +8,4 @@ const IconBookOnlineOutlined: React.FC = ({ ...props }) => ( ) -export { IconBookOnlineOutlined as default } +export default IconBookOnlineOutlined diff --git a/src/IconBookOnlineOutlinedFilled.tsx b/src/IconBookOnlineOutlinedFilled.tsx index c7b7f4296..0d45b42d8 100644 --- a/src/IconBookOnlineOutlinedFilled.tsx +++ b/src/IconBookOnlineOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconBookOnlineOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconBookOnlineOutlinedFilled as default } +export default IconBookOnlineOutlinedFilled diff --git a/src/IconBookOnlineRounded.tsx b/src/IconBookOnlineRounded.tsx index 3db3d9468..a1b84abf9 100644 --- a/src/IconBookOnlineRounded.tsx +++ b/src/IconBookOnlineRounded.tsx @@ -8,4 +8,4 @@ const IconBookOnlineRounded: React.FC = ({ ...props }) => ( ) -export { IconBookOnlineRounded as default } +export default IconBookOnlineRounded diff --git a/src/IconBookOnlineRoundedFilled.tsx b/src/IconBookOnlineRoundedFilled.tsx index 49a7e82c9..23be34b3b 100644 --- a/src/IconBookOnlineRoundedFilled.tsx +++ b/src/IconBookOnlineRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconBookOnlineRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconBookOnlineRoundedFilled as default } +export default IconBookOnlineRoundedFilled diff --git a/src/IconBookOnlineSharp.tsx b/src/IconBookOnlineSharp.tsx index 27174b8df..898446bea 100644 --- a/src/IconBookOnlineSharp.tsx +++ b/src/IconBookOnlineSharp.tsx @@ -8,4 +8,4 @@ const IconBookOnlineSharp: React.FC = ({ ...props }) => ( ) -export { IconBookOnlineSharp as default } +export default IconBookOnlineSharp diff --git a/src/IconBookOnlineSharpFilled.tsx b/src/IconBookOnlineSharpFilled.tsx index 57f7b7515..eb90cc1d0 100644 --- a/src/IconBookOnlineSharpFilled.tsx +++ b/src/IconBookOnlineSharpFilled.tsx @@ -8,4 +8,4 @@ const IconBookOnlineSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconBookOnlineSharpFilled as default } +export default IconBookOnlineSharpFilled diff --git a/src/IconBookOutlined.tsx b/src/IconBookOutlined.tsx index 1e7c26fd3..500f89433 100644 --- a/src/IconBookOutlined.tsx +++ b/src/IconBookOutlined.tsx @@ -8,4 +8,4 @@ const IconBookOutlined: React.FC = ({ ...props }) => ( ) -export { IconBookOutlined as default } +export default IconBookOutlined diff --git a/src/IconBookOutlinedFilled.tsx b/src/IconBookOutlinedFilled.tsx index 9354e441b..55127d496 100644 --- a/src/IconBookOutlinedFilled.tsx +++ b/src/IconBookOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconBookOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconBookOutlinedFilled as default } +export default IconBookOutlinedFilled diff --git a/src/IconBookRounded.tsx b/src/IconBookRounded.tsx index a9a41b875..2f1cc98b3 100644 --- a/src/IconBookRounded.tsx +++ b/src/IconBookRounded.tsx @@ -8,4 +8,4 @@ const IconBookRounded: React.FC = ({ ...props }) => ( ) -export { IconBookRounded as default } +export default IconBookRounded diff --git a/src/IconBookRoundedFilled.tsx b/src/IconBookRoundedFilled.tsx index b8286788a..88386800c 100644 --- a/src/IconBookRoundedFilled.tsx +++ b/src/IconBookRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconBookRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconBookRoundedFilled as default } +export default IconBookRoundedFilled diff --git a/src/IconBookSharp.tsx b/src/IconBookSharp.tsx index 4875c4765..14daf2e86 100644 --- a/src/IconBookSharp.tsx +++ b/src/IconBookSharp.tsx @@ -8,4 +8,4 @@ const IconBookSharp: React.FC = ({ ...props }) => ( ) -export { IconBookSharp as default } +export default IconBookSharp diff --git a/src/IconBookSharpFilled.tsx b/src/IconBookSharpFilled.tsx index 8a59fe473..7546a9f03 100644 --- a/src/IconBookSharpFilled.tsx +++ b/src/IconBookSharpFilled.tsx @@ -8,4 +8,4 @@ const IconBookSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconBookSharpFilled as default } +export default IconBookSharpFilled diff --git a/src/IconBookmarkAddOutlined.tsx b/src/IconBookmarkAddOutlined.tsx index f832440a2..eb1e7dcd4 100644 --- a/src/IconBookmarkAddOutlined.tsx +++ b/src/IconBookmarkAddOutlined.tsx @@ -8,4 +8,4 @@ const IconBookmarkAddOutlined: React.FC = ({ ...props }) => ( ) -export { IconBookmarkAddOutlined as default } +export default IconBookmarkAddOutlined diff --git a/src/IconBookmarkAddOutlinedFilled.tsx b/src/IconBookmarkAddOutlinedFilled.tsx index bbe53e669..9183c220a 100644 --- a/src/IconBookmarkAddOutlinedFilled.tsx +++ b/src/IconBookmarkAddOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconBookmarkAddOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconBookmarkAddOutlinedFilled as default } +export default IconBookmarkAddOutlinedFilled diff --git a/src/IconBookmarkAddRounded.tsx b/src/IconBookmarkAddRounded.tsx index a91621c97..55affd926 100644 --- a/src/IconBookmarkAddRounded.tsx +++ b/src/IconBookmarkAddRounded.tsx @@ -8,4 +8,4 @@ const IconBookmarkAddRounded: React.FC = ({ ...props }) => ( ) -export { IconBookmarkAddRounded as default } +export default IconBookmarkAddRounded diff --git a/src/IconBookmarkAddRoundedFilled.tsx b/src/IconBookmarkAddRoundedFilled.tsx index 701214c4e..7cb387bf2 100644 --- a/src/IconBookmarkAddRoundedFilled.tsx +++ b/src/IconBookmarkAddRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconBookmarkAddRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconBookmarkAddRoundedFilled as default } +export default IconBookmarkAddRoundedFilled diff --git a/src/IconBookmarkAddSharp.tsx b/src/IconBookmarkAddSharp.tsx index 2ac82c12b..e4ab405fc 100644 --- a/src/IconBookmarkAddSharp.tsx +++ b/src/IconBookmarkAddSharp.tsx @@ -8,4 +8,4 @@ const IconBookmarkAddSharp: React.FC = ({ ...props }) => ( ) -export { IconBookmarkAddSharp as default } +export default IconBookmarkAddSharp diff --git a/src/IconBookmarkAddSharpFilled.tsx b/src/IconBookmarkAddSharpFilled.tsx index ceba1db4b..c23afab01 100644 --- a/src/IconBookmarkAddSharpFilled.tsx +++ b/src/IconBookmarkAddSharpFilled.tsx @@ -8,4 +8,4 @@ const IconBookmarkAddSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconBookmarkAddSharpFilled as default } +export default IconBookmarkAddSharpFilled diff --git a/src/IconBookmarkAddedOutlined.tsx b/src/IconBookmarkAddedOutlined.tsx index ac4cdf457..46abd90d3 100644 --- a/src/IconBookmarkAddedOutlined.tsx +++ b/src/IconBookmarkAddedOutlined.tsx @@ -8,4 +8,4 @@ const IconBookmarkAddedOutlined: React.FC = ({ ...props }) => ( ) -export { IconBookmarkAddedOutlined as default } +export default IconBookmarkAddedOutlined diff --git a/src/IconBookmarkAddedOutlinedFilled.tsx b/src/IconBookmarkAddedOutlinedFilled.tsx index 75c322e43..230354312 100644 --- a/src/IconBookmarkAddedOutlinedFilled.tsx +++ b/src/IconBookmarkAddedOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconBookmarkAddedOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconBookmarkAddedOutlinedFilled as default } +export default IconBookmarkAddedOutlinedFilled diff --git a/src/IconBookmarkAddedRounded.tsx b/src/IconBookmarkAddedRounded.tsx index 6ed7b2a26..4db3d5cc6 100644 --- a/src/IconBookmarkAddedRounded.tsx +++ b/src/IconBookmarkAddedRounded.tsx @@ -8,4 +8,4 @@ const IconBookmarkAddedRounded: React.FC = ({ ...props }) => ( ) -export { IconBookmarkAddedRounded as default } +export default IconBookmarkAddedRounded diff --git a/src/IconBookmarkAddedRoundedFilled.tsx b/src/IconBookmarkAddedRoundedFilled.tsx index d7d367200..c6947d6b6 100644 --- a/src/IconBookmarkAddedRoundedFilled.tsx +++ b/src/IconBookmarkAddedRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconBookmarkAddedRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconBookmarkAddedRoundedFilled as default } +export default IconBookmarkAddedRoundedFilled diff --git a/src/IconBookmarkAddedSharp.tsx b/src/IconBookmarkAddedSharp.tsx index 1259ca377..f2d8bae0d 100644 --- a/src/IconBookmarkAddedSharp.tsx +++ b/src/IconBookmarkAddedSharp.tsx @@ -8,4 +8,4 @@ const IconBookmarkAddedSharp: React.FC = ({ ...props }) => ( ) -export { IconBookmarkAddedSharp as default } +export default IconBookmarkAddedSharp diff --git a/src/IconBookmarkAddedSharpFilled.tsx b/src/IconBookmarkAddedSharpFilled.tsx index a508b714b..d0b380bfc 100644 --- a/src/IconBookmarkAddedSharpFilled.tsx +++ b/src/IconBookmarkAddedSharpFilled.tsx @@ -8,4 +8,4 @@ const IconBookmarkAddedSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconBookmarkAddedSharpFilled as default } +export default IconBookmarkAddedSharpFilled diff --git a/src/IconBookmarkBagOutlined.tsx b/src/IconBookmarkBagOutlined.tsx index f84fd3594..e3ca88c3d 100644 --- a/src/IconBookmarkBagOutlined.tsx +++ b/src/IconBookmarkBagOutlined.tsx @@ -8,4 +8,4 @@ const IconBookmarkBagOutlined: React.FC = ({ ...props }) => ( ) -export { IconBookmarkBagOutlined as default } +export default IconBookmarkBagOutlined diff --git a/src/IconBookmarkBagOutlinedFilled.tsx b/src/IconBookmarkBagOutlinedFilled.tsx index cbe96820f..c474f0818 100644 --- a/src/IconBookmarkBagOutlinedFilled.tsx +++ b/src/IconBookmarkBagOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconBookmarkBagOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconBookmarkBagOutlinedFilled as default } +export default IconBookmarkBagOutlinedFilled diff --git a/src/IconBookmarkBagRounded.tsx b/src/IconBookmarkBagRounded.tsx index 3bb918fb7..4989fc087 100644 --- a/src/IconBookmarkBagRounded.tsx +++ b/src/IconBookmarkBagRounded.tsx @@ -8,4 +8,4 @@ const IconBookmarkBagRounded: React.FC = ({ ...props }) => ( ) -export { IconBookmarkBagRounded as default } +export default IconBookmarkBagRounded diff --git a/src/IconBookmarkBagRoundedFilled.tsx b/src/IconBookmarkBagRoundedFilled.tsx index 2a8ff224e..143945463 100644 --- a/src/IconBookmarkBagRoundedFilled.tsx +++ b/src/IconBookmarkBagRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconBookmarkBagRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconBookmarkBagRoundedFilled as default } +export default IconBookmarkBagRoundedFilled diff --git a/src/IconBookmarkBagSharp.tsx b/src/IconBookmarkBagSharp.tsx index 9dadfb3e9..3d8eb1f07 100644 --- a/src/IconBookmarkBagSharp.tsx +++ b/src/IconBookmarkBagSharp.tsx @@ -8,4 +8,4 @@ const IconBookmarkBagSharp: React.FC = ({ ...props }) => ( ) -export { IconBookmarkBagSharp as default } +export default IconBookmarkBagSharp diff --git a/src/IconBookmarkBagSharpFilled.tsx b/src/IconBookmarkBagSharpFilled.tsx index e2f91292c..27f98a7f1 100644 --- a/src/IconBookmarkBagSharpFilled.tsx +++ b/src/IconBookmarkBagSharpFilled.tsx @@ -8,4 +8,4 @@ const IconBookmarkBagSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconBookmarkBagSharpFilled as default } +export default IconBookmarkBagSharpFilled diff --git a/src/IconBookmarkCheckOutlined.tsx b/src/IconBookmarkCheckOutlined.tsx index b66c43011..c7e975087 100644 --- a/src/IconBookmarkCheckOutlined.tsx +++ b/src/IconBookmarkCheckOutlined.tsx @@ -8,4 +8,4 @@ const IconBookmarkCheckOutlined: React.FC = ({ ...props }) => ( ) -export { IconBookmarkCheckOutlined as default } +export default IconBookmarkCheckOutlined diff --git a/src/IconBookmarkCheckOutlinedFilled.tsx b/src/IconBookmarkCheckOutlinedFilled.tsx index 3ec5b69a4..3beabf05e 100644 --- a/src/IconBookmarkCheckOutlinedFilled.tsx +++ b/src/IconBookmarkCheckOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconBookmarkCheckOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconBookmarkCheckOutlinedFilled as default } +export default IconBookmarkCheckOutlinedFilled diff --git a/src/IconBookmarkCheckRounded.tsx b/src/IconBookmarkCheckRounded.tsx index 06256a4dc..c923d2131 100644 --- a/src/IconBookmarkCheckRounded.tsx +++ b/src/IconBookmarkCheckRounded.tsx @@ -8,4 +8,4 @@ const IconBookmarkCheckRounded: React.FC = ({ ...props }) => ( ) -export { IconBookmarkCheckRounded as default } +export default IconBookmarkCheckRounded diff --git a/src/IconBookmarkCheckRoundedFilled.tsx b/src/IconBookmarkCheckRoundedFilled.tsx index 2bd93a384..a3d7a5e12 100644 --- a/src/IconBookmarkCheckRoundedFilled.tsx +++ b/src/IconBookmarkCheckRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconBookmarkCheckRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconBookmarkCheckRoundedFilled as default } +export default IconBookmarkCheckRoundedFilled diff --git a/src/IconBookmarkCheckSharp.tsx b/src/IconBookmarkCheckSharp.tsx index 15ce58e14..f8231d8cb 100644 --- a/src/IconBookmarkCheckSharp.tsx +++ b/src/IconBookmarkCheckSharp.tsx @@ -8,4 +8,4 @@ const IconBookmarkCheckSharp: React.FC = ({ ...props }) => ( ) -export { IconBookmarkCheckSharp as default } +export default IconBookmarkCheckSharp diff --git a/src/IconBookmarkCheckSharpFilled.tsx b/src/IconBookmarkCheckSharpFilled.tsx index cdd77ebf6..65a3e6038 100644 --- a/src/IconBookmarkCheckSharpFilled.tsx +++ b/src/IconBookmarkCheckSharpFilled.tsx @@ -8,4 +8,4 @@ const IconBookmarkCheckSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconBookmarkCheckSharpFilled as default } +export default IconBookmarkCheckSharpFilled diff --git a/src/IconBookmarkFlagOutlined.tsx b/src/IconBookmarkFlagOutlined.tsx index 0f5a01a42..ad371035c 100644 --- a/src/IconBookmarkFlagOutlined.tsx +++ b/src/IconBookmarkFlagOutlined.tsx @@ -8,4 +8,4 @@ const IconBookmarkFlagOutlined: React.FC = ({ ...props }) => ( ) -export { IconBookmarkFlagOutlined as default } +export default IconBookmarkFlagOutlined diff --git a/src/IconBookmarkFlagOutlinedFilled.tsx b/src/IconBookmarkFlagOutlinedFilled.tsx index 63a4e7f9f..33c79adc3 100644 --- a/src/IconBookmarkFlagOutlinedFilled.tsx +++ b/src/IconBookmarkFlagOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconBookmarkFlagOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconBookmarkFlagOutlinedFilled as default } +export default IconBookmarkFlagOutlinedFilled diff --git a/src/IconBookmarkFlagRounded.tsx b/src/IconBookmarkFlagRounded.tsx index aaeea35f4..53607a79e 100644 --- a/src/IconBookmarkFlagRounded.tsx +++ b/src/IconBookmarkFlagRounded.tsx @@ -8,4 +8,4 @@ const IconBookmarkFlagRounded: React.FC = ({ ...props }) => ( ) -export { IconBookmarkFlagRounded as default } +export default IconBookmarkFlagRounded diff --git a/src/IconBookmarkFlagRoundedFilled.tsx b/src/IconBookmarkFlagRoundedFilled.tsx index a1baa54a7..d76daee4d 100644 --- a/src/IconBookmarkFlagRoundedFilled.tsx +++ b/src/IconBookmarkFlagRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconBookmarkFlagRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconBookmarkFlagRoundedFilled as default } +export default IconBookmarkFlagRoundedFilled diff --git a/src/IconBookmarkFlagSharp.tsx b/src/IconBookmarkFlagSharp.tsx index 0052569cb..9d1237a0f 100644 --- a/src/IconBookmarkFlagSharp.tsx +++ b/src/IconBookmarkFlagSharp.tsx @@ -8,4 +8,4 @@ const IconBookmarkFlagSharp: React.FC = ({ ...props }) => ( ) -export { IconBookmarkFlagSharp as default } +export default IconBookmarkFlagSharp diff --git a/src/IconBookmarkFlagSharpFilled.tsx b/src/IconBookmarkFlagSharpFilled.tsx index f05d22328..e3eb76231 100644 --- a/src/IconBookmarkFlagSharpFilled.tsx +++ b/src/IconBookmarkFlagSharpFilled.tsx @@ -8,4 +8,4 @@ const IconBookmarkFlagSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconBookmarkFlagSharpFilled as default } +export default IconBookmarkFlagSharpFilled diff --git a/src/IconBookmarkHeartOutlined.tsx b/src/IconBookmarkHeartOutlined.tsx index 7cf5d26c8..faf4b4935 100644 --- a/src/IconBookmarkHeartOutlined.tsx +++ b/src/IconBookmarkHeartOutlined.tsx @@ -8,4 +8,4 @@ const IconBookmarkHeartOutlined: React.FC = ({ ...props }) => ( ) -export { IconBookmarkHeartOutlined as default } +export default IconBookmarkHeartOutlined diff --git a/src/IconBookmarkHeartOutlinedFilled.tsx b/src/IconBookmarkHeartOutlinedFilled.tsx index 7a42dba5a..cfde2f556 100644 --- a/src/IconBookmarkHeartOutlinedFilled.tsx +++ b/src/IconBookmarkHeartOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconBookmarkHeartOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconBookmarkHeartOutlinedFilled as default } +export default IconBookmarkHeartOutlinedFilled diff --git a/src/IconBookmarkHeartRounded.tsx b/src/IconBookmarkHeartRounded.tsx index 845d95501..b058c3b58 100644 --- a/src/IconBookmarkHeartRounded.tsx +++ b/src/IconBookmarkHeartRounded.tsx @@ -8,4 +8,4 @@ const IconBookmarkHeartRounded: React.FC = ({ ...props }) => ( ) -export { IconBookmarkHeartRounded as default } +export default IconBookmarkHeartRounded diff --git a/src/IconBookmarkHeartRoundedFilled.tsx b/src/IconBookmarkHeartRoundedFilled.tsx index 0d1455c31..61a5aa52b 100644 --- a/src/IconBookmarkHeartRoundedFilled.tsx +++ b/src/IconBookmarkHeartRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconBookmarkHeartRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconBookmarkHeartRoundedFilled as default } +export default IconBookmarkHeartRoundedFilled diff --git a/src/IconBookmarkHeartSharp.tsx b/src/IconBookmarkHeartSharp.tsx index c773cac96..96484c1ec 100644 --- a/src/IconBookmarkHeartSharp.tsx +++ b/src/IconBookmarkHeartSharp.tsx @@ -8,4 +8,4 @@ const IconBookmarkHeartSharp: React.FC = ({ ...props }) => ( ) -export { IconBookmarkHeartSharp as default } +export default IconBookmarkHeartSharp diff --git a/src/IconBookmarkHeartSharpFilled.tsx b/src/IconBookmarkHeartSharpFilled.tsx index b0930b0d3..70c5bcefc 100644 --- a/src/IconBookmarkHeartSharpFilled.tsx +++ b/src/IconBookmarkHeartSharpFilled.tsx @@ -8,4 +8,4 @@ const IconBookmarkHeartSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconBookmarkHeartSharpFilled as default } +export default IconBookmarkHeartSharpFilled diff --git a/src/IconBookmarkManagerOutlined.tsx b/src/IconBookmarkManagerOutlined.tsx index 2a7424e9c..d0e7f95e6 100644 --- a/src/IconBookmarkManagerOutlined.tsx +++ b/src/IconBookmarkManagerOutlined.tsx @@ -8,4 +8,4 @@ const IconBookmarkManagerOutlined: React.FC = ({ ...props }) => ( ) -export { IconBookmarkManagerOutlined as default } +export default IconBookmarkManagerOutlined diff --git a/src/IconBookmarkManagerOutlinedFilled.tsx b/src/IconBookmarkManagerOutlinedFilled.tsx index 26798038b..23b4589c2 100644 --- a/src/IconBookmarkManagerOutlinedFilled.tsx +++ b/src/IconBookmarkManagerOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconBookmarkManagerOutlinedFilled: React.FC = ({ ) -export { IconBookmarkManagerOutlinedFilled as default } +export default IconBookmarkManagerOutlinedFilled diff --git a/src/IconBookmarkManagerRounded.tsx b/src/IconBookmarkManagerRounded.tsx index 51281abb4..8d494dc7b 100644 --- a/src/IconBookmarkManagerRounded.tsx +++ b/src/IconBookmarkManagerRounded.tsx @@ -8,4 +8,4 @@ const IconBookmarkManagerRounded: React.FC = ({ ...props }) => ( ) -export { IconBookmarkManagerRounded as default } +export default IconBookmarkManagerRounded diff --git a/src/IconBookmarkManagerRoundedFilled.tsx b/src/IconBookmarkManagerRoundedFilled.tsx index 0e66f251b..1ae75bed5 100644 --- a/src/IconBookmarkManagerRoundedFilled.tsx +++ b/src/IconBookmarkManagerRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconBookmarkManagerRoundedFilled: React.FC = ({ ) -export { IconBookmarkManagerRoundedFilled as default } +export default IconBookmarkManagerRoundedFilled diff --git a/src/IconBookmarkManagerSharp.tsx b/src/IconBookmarkManagerSharp.tsx index 2c7b35676..23d4ad35c 100644 --- a/src/IconBookmarkManagerSharp.tsx +++ b/src/IconBookmarkManagerSharp.tsx @@ -8,4 +8,4 @@ const IconBookmarkManagerSharp: React.FC = ({ ...props }) => ( ) -export { IconBookmarkManagerSharp as default } +export default IconBookmarkManagerSharp diff --git a/src/IconBookmarkManagerSharpFilled.tsx b/src/IconBookmarkManagerSharpFilled.tsx index 1c52b6dd1..33adad48c 100644 --- a/src/IconBookmarkManagerSharpFilled.tsx +++ b/src/IconBookmarkManagerSharpFilled.tsx @@ -8,4 +8,4 @@ const IconBookmarkManagerSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconBookmarkManagerSharpFilled as default } +export default IconBookmarkManagerSharpFilled diff --git a/src/IconBookmarkOutlined.tsx b/src/IconBookmarkOutlined.tsx index 6e1e5a43f..dff75cec2 100644 --- a/src/IconBookmarkOutlined.tsx +++ b/src/IconBookmarkOutlined.tsx @@ -8,4 +8,4 @@ const IconBookmarkOutlined: React.FC = ({ ...props }) => ( ) -export { IconBookmarkOutlined as default } +export default IconBookmarkOutlined diff --git a/src/IconBookmarkOutlinedFilled.tsx b/src/IconBookmarkOutlinedFilled.tsx index 019f0b1b1..08b9240f9 100644 --- a/src/IconBookmarkOutlinedFilled.tsx +++ b/src/IconBookmarkOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconBookmarkOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconBookmarkOutlinedFilled as default } +export default IconBookmarkOutlinedFilled diff --git a/src/IconBookmarkRemoveOutlined.tsx b/src/IconBookmarkRemoveOutlined.tsx index 07691d8cc..7ee636f8e 100644 --- a/src/IconBookmarkRemoveOutlined.tsx +++ b/src/IconBookmarkRemoveOutlined.tsx @@ -8,4 +8,4 @@ const IconBookmarkRemoveOutlined: React.FC = ({ ...props }) => ( ) -export { IconBookmarkRemoveOutlined as default } +export default IconBookmarkRemoveOutlined diff --git a/src/IconBookmarkRemoveOutlinedFilled.tsx b/src/IconBookmarkRemoveOutlinedFilled.tsx index 1bd50a1f8..77af7b0bb 100644 --- a/src/IconBookmarkRemoveOutlinedFilled.tsx +++ b/src/IconBookmarkRemoveOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconBookmarkRemoveOutlinedFilled: React.FC = ({ ) -export { IconBookmarkRemoveOutlinedFilled as default } +export default IconBookmarkRemoveOutlinedFilled diff --git a/src/IconBookmarkRemoveRounded.tsx b/src/IconBookmarkRemoveRounded.tsx index 67acfc981..e4b2499ed 100644 --- a/src/IconBookmarkRemoveRounded.tsx +++ b/src/IconBookmarkRemoveRounded.tsx @@ -8,4 +8,4 @@ const IconBookmarkRemoveRounded: React.FC = ({ ...props }) => ( ) -export { IconBookmarkRemoveRounded as default } +export default IconBookmarkRemoveRounded diff --git a/src/IconBookmarkRemoveRoundedFilled.tsx b/src/IconBookmarkRemoveRoundedFilled.tsx index 452c73044..8988259cc 100644 --- a/src/IconBookmarkRemoveRoundedFilled.tsx +++ b/src/IconBookmarkRemoveRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconBookmarkRemoveRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconBookmarkRemoveRoundedFilled as default } +export default IconBookmarkRemoveRoundedFilled diff --git a/src/IconBookmarkRemoveSharp.tsx b/src/IconBookmarkRemoveSharp.tsx index bda2f8649..cbc6748b0 100644 --- a/src/IconBookmarkRemoveSharp.tsx +++ b/src/IconBookmarkRemoveSharp.tsx @@ -8,4 +8,4 @@ const IconBookmarkRemoveSharp: React.FC = ({ ...props }) => ( ) -export { IconBookmarkRemoveSharp as default } +export default IconBookmarkRemoveSharp diff --git a/src/IconBookmarkRemoveSharpFilled.tsx b/src/IconBookmarkRemoveSharpFilled.tsx index 4d7ac8fa5..6aac8632c 100644 --- a/src/IconBookmarkRemoveSharpFilled.tsx +++ b/src/IconBookmarkRemoveSharpFilled.tsx @@ -8,4 +8,4 @@ const IconBookmarkRemoveSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconBookmarkRemoveSharpFilled as default } +export default IconBookmarkRemoveSharpFilled diff --git a/src/IconBookmarkRounded.tsx b/src/IconBookmarkRounded.tsx index d50d86b04..1a889a7f1 100644 --- a/src/IconBookmarkRounded.tsx +++ b/src/IconBookmarkRounded.tsx @@ -8,4 +8,4 @@ const IconBookmarkRounded: React.FC = ({ ...props }) => ( ) -export { IconBookmarkRounded as default } +export default IconBookmarkRounded diff --git a/src/IconBookmarkRoundedFilled.tsx b/src/IconBookmarkRoundedFilled.tsx index b2bfbdae1..2736ca1fd 100644 --- a/src/IconBookmarkRoundedFilled.tsx +++ b/src/IconBookmarkRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconBookmarkRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconBookmarkRoundedFilled as default } +export default IconBookmarkRoundedFilled diff --git a/src/IconBookmarkSharp.tsx b/src/IconBookmarkSharp.tsx index c72eeff3e..51825d0c1 100644 --- a/src/IconBookmarkSharp.tsx +++ b/src/IconBookmarkSharp.tsx @@ -8,4 +8,4 @@ const IconBookmarkSharp: React.FC = ({ ...props }) => ( ) -export { IconBookmarkSharp as default } +export default IconBookmarkSharp diff --git a/src/IconBookmarkSharpFilled.tsx b/src/IconBookmarkSharpFilled.tsx index 1c3921be2..eaeb49166 100644 --- a/src/IconBookmarkSharpFilled.tsx +++ b/src/IconBookmarkSharpFilled.tsx @@ -8,4 +8,4 @@ const IconBookmarkSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconBookmarkSharpFilled as default } +export default IconBookmarkSharpFilled diff --git a/src/IconBookmarkStarOutlined.tsx b/src/IconBookmarkStarOutlined.tsx index 1f65d9fec..c4c7a84ac 100644 --- a/src/IconBookmarkStarOutlined.tsx +++ b/src/IconBookmarkStarOutlined.tsx @@ -8,4 +8,4 @@ const IconBookmarkStarOutlined: React.FC = ({ ...props }) => ( ) -export { IconBookmarkStarOutlined as default } +export default IconBookmarkStarOutlined diff --git a/src/IconBookmarkStarOutlinedFilled.tsx b/src/IconBookmarkStarOutlinedFilled.tsx index aa3f8ad4d..2cae87d6b 100644 --- a/src/IconBookmarkStarOutlinedFilled.tsx +++ b/src/IconBookmarkStarOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconBookmarkStarOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconBookmarkStarOutlinedFilled as default } +export default IconBookmarkStarOutlinedFilled diff --git a/src/IconBookmarkStarRounded.tsx b/src/IconBookmarkStarRounded.tsx index 91cac6fa1..15fc3a5a3 100644 --- a/src/IconBookmarkStarRounded.tsx +++ b/src/IconBookmarkStarRounded.tsx @@ -8,4 +8,4 @@ const IconBookmarkStarRounded: React.FC = ({ ...props }) => ( ) -export { IconBookmarkStarRounded as default } +export default IconBookmarkStarRounded diff --git a/src/IconBookmarkStarRoundedFilled.tsx b/src/IconBookmarkStarRoundedFilled.tsx index 5f441a5e5..e8fb7c1f8 100644 --- a/src/IconBookmarkStarRoundedFilled.tsx +++ b/src/IconBookmarkStarRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconBookmarkStarRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconBookmarkStarRoundedFilled as default } +export default IconBookmarkStarRoundedFilled diff --git a/src/IconBookmarkStarSharp.tsx b/src/IconBookmarkStarSharp.tsx index 02ba154e7..309b95e1b 100644 --- a/src/IconBookmarkStarSharp.tsx +++ b/src/IconBookmarkStarSharp.tsx @@ -8,4 +8,4 @@ const IconBookmarkStarSharp: React.FC = ({ ...props }) => ( ) -export { IconBookmarkStarSharp as default } +export default IconBookmarkStarSharp diff --git a/src/IconBookmarkStarSharpFilled.tsx b/src/IconBookmarkStarSharpFilled.tsx index 1bd73e243..19e87ce99 100644 --- a/src/IconBookmarkStarSharpFilled.tsx +++ b/src/IconBookmarkStarSharpFilled.tsx @@ -8,4 +8,4 @@ const IconBookmarkStarSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconBookmarkStarSharpFilled as default } +export default IconBookmarkStarSharpFilled diff --git a/src/IconBookmarksOutlined.tsx b/src/IconBookmarksOutlined.tsx index 145a7c042..5d2ef6830 100644 --- a/src/IconBookmarksOutlined.tsx +++ b/src/IconBookmarksOutlined.tsx @@ -8,4 +8,4 @@ const IconBookmarksOutlined: React.FC = ({ ...props }) => ( ) -export { IconBookmarksOutlined as default } +export default IconBookmarksOutlined diff --git a/src/IconBookmarksOutlinedFilled.tsx b/src/IconBookmarksOutlinedFilled.tsx index 029c4ec3e..766b5bbcc 100644 --- a/src/IconBookmarksOutlinedFilled.tsx +++ b/src/IconBookmarksOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconBookmarksOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconBookmarksOutlinedFilled as default } +export default IconBookmarksOutlinedFilled diff --git a/src/IconBookmarksRounded.tsx b/src/IconBookmarksRounded.tsx index a635652a1..2c5b7116a 100644 --- a/src/IconBookmarksRounded.tsx +++ b/src/IconBookmarksRounded.tsx @@ -8,4 +8,4 @@ const IconBookmarksRounded: React.FC = ({ ...props }) => ( ) -export { IconBookmarksRounded as default } +export default IconBookmarksRounded diff --git a/src/IconBookmarksRoundedFilled.tsx b/src/IconBookmarksRoundedFilled.tsx index 4956e8b61..1c3ad9fd7 100644 --- a/src/IconBookmarksRoundedFilled.tsx +++ b/src/IconBookmarksRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconBookmarksRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconBookmarksRoundedFilled as default } +export default IconBookmarksRoundedFilled diff --git a/src/IconBookmarksSharp.tsx b/src/IconBookmarksSharp.tsx index d48b81ced..a7f2138e6 100644 --- a/src/IconBookmarksSharp.tsx +++ b/src/IconBookmarksSharp.tsx @@ -8,4 +8,4 @@ const IconBookmarksSharp: React.FC = ({ ...props }) => ( ) -export { IconBookmarksSharp as default } +export default IconBookmarksSharp diff --git a/src/IconBookmarksSharpFilled.tsx b/src/IconBookmarksSharpFilled.tsx index 0016268b6..230d4be34 100644 --- a/src/IconBookmarksSharpFilled.tsx +++ b/src/IconBookmarksSharpFilled.tsx @@ -8,4 +8,4 @@ const IconBookmarksSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconBookmarksSharpFilled as default } +export default IconBookmarksSharpFilled diff --git a/src/IconBorderAllOutlined.tsx b/src/IconBorderAllOutlined.tsx index 21264d563..d156be5dd 100644 --- a/src/IconBorderAllOutlined.tsx +++ b/src/IconBorderAllOutlined.tsx @@ -8,4 +8,4 @@ const IconBorderAllOutlined: React.FC = ({ ...props }) => ( ) -export { IconBorderAllOutlined as default } +export default IconBorderAllOutlined diff --git a/src/IconBorderAllOutlinedFilled.tsx b/src/IconBorderAllOutlinedFilled.tsx index 17c856d75..c18143261 100644 --- a/src/IconBorderAllOutlinedFilled.tsx +++ b/src/IconBorderAllOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconBorderAllOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconBorderAllOutlinedFilled as default } +export default IconBorderAllOutlinedFilled diff --git a/src/IconBorderAllRounded.tsx b/src/IconBorderAllRounded.tsx index b011b950b..39dccb122 100644 --- a/src/IconBorderAllRounded.tsx +++ b/src/IconBorderAllRounded.tsx @@ -8,4 +8,4 @@ const IconBorderAllRounded: React.FC = ({ ...props }) => ( ) -export { IconBorderAllRounded as default } +export default IconBorderAllRounded diff --git a/src/IconBorderAllRoundedFilled.tsx b/src/IconBorderAllRoundedFilled.tsx index 208cd2d69..d5596cb65 100644 --- a/src/IconBorderAllRoundedFilled.tsx +++ b/src/IconBorderAllRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconBorderAllRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconBorderAllRoundedFilled as default } +export default IconBorderAllRoundedFilled diff --git a/src/IconBorderAllSharp.tsx b/src/IconBorderAllSharp.tsx index b78591082..0a700ddc1 100644 --- a/src/IconBorderAllSharp.tsx +++ b/src/IconBorderAllSharp.tsx @@ -8,4 +8,4 @@ const IconBorderAllSharp: React.FC = ({ ...props }) => ( ) -export { IconBorderAllSharp as default } +export default IconBorderAllSharp diff --git a/src/IconBorderAllSharpFilled.tsx b/src/IconBorderAllSharpFilled.tsx index 911a8e534..285a1bbc6 100644 --- a/src/IconBorderAllSharpFilled.tsx +++ b/src/IconBorderAllSharpFilled.tsx @@ -8,4 +8,4 @@ const IconBorderAllSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconBorderAllSharpFilled as default } +export default IconBorderAllSharpFilled diff --git a/src/IconBorderBottomOutlined.tsx b/src/IconBorderBottomOutlined.tsx index 5425a67f1..54a2f2a91 100644 --- a/src/IconBorderBottomOutlined.tsx +++ b/src/IconBorderBottomOutlined.tsx @@ -8,4 +8,4 @@ const IconBorderBottomOutlined: React.FC = ({ ...props }) => ( ) -export { IconBorderBottomOutlined as default } +export default IconBorderBottomOutlined diff --git a/src/IconBorderBottomOutlinedFilled.tsx b/src/IconBorderBottomOutlinedFilled.tsx index 698c8ad57..086bcbeb4 100644 --- a/src/IconBorderBottomOutlinedFilled.tsx +++ b/src/IconBorderBottomOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconBorderBottomOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconBorderBottomOutlinedFilled as default } +export default IconBorderBottomOutlinedFilled diff --git a/src/IconBorderBottomRounded.tsx b/src/IconBorderBottomRounded.tsx index 48ea62a7b..e92462b95 100644 --- a/src/IconBorderBottomRounded.tsx +++ b/src/IconBorderBottomRounded.tsx @@ -8,4 +8,4 @@ const IconBorderBottomRounded: React.FC = ({ ...props }) => ( ) -export { IconBorderBottomRounded as default } +export default IconBorderBottomRounded diff --git a/src/IconBorderBottomRoundedFilled.tsx b/src/IconBorderBottomRoundedFilled.tsx index acecb657d..97627dada 100644 --- a/src/IconBorderBottomRoundedFilled.tsx +++ b/src/IconBorderBottomRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconBorderBottomRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconBorderBottomRoundedFilled as default } +export default IconBorderBottomRoundedFilled diff --git a/src/IconBorderBottomSharp.tsx b/src/IconBorderBottomSharp.tsx index 9dd1ed664..3e7705ebd 100644 --- a/src/IconBorderBottomSharp.tsx +++ b/src/IconBorderBottomSharp.tsx @@ -8,4 +8,4 @@ const IconBorderBottomSharp: React.FC = ({ ...props }) => ( ) -export { IconBorderBottomSharp as default } +export default IconBorderBottomSharp diff --git a/src/IconBorderBottomSharpFilled.tsx b/src/IconBorderBottomSharpFilled.tsx index 34b756501..db846d97f 100644 --- a/src/IconBorderBottomSharpFilled.tsx +++ b/src/IconBorderBottomSharpFilled.tsx @@ -8,4 +8,4 @@ const IconBorderBottomSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconBorderBottomSharpFilled as default } +export default IconBorderBottomSharpFilled diff --git a/src/IconBorderClearOutlined.tsx b/src/IconBorderClearOutlined.tsx index 264ec42e4..93c59014c 100644 --- a/src/IconBorderClearOutlined.tsx +++ b/src/IconBorderClearOutlined.tsx @@ -8,4 +8,4 @@ const IconBorderClearOutlined: React.FC = ({ ...props }) => ( ) -export { IconBorderClearOutlined as default } +export default IconBorderClearOutlined diff --git a/src/IconBorderClearOutlinedFilled.tsx b/src/IconBorderClearOutlinedFilled.tsx index 051b81219..b6c4b1655 100644 --- a/src/IconBorderClearOutlinedFilled.tsx +++ b/src/IconBorderClearOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconBorderClearOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconBorderClearOutlinedFilled as default } +export default IconBorderClearOutlinedFilled diff --git a/src/IconBorderClearRounded.tsx b/src/IconBorderClearRounded.tsx index e9a11d631..ea09a8fb9 100644 --- a/src/IconBorderClearRounded.tsx +++ b/src/IconBorderClearRounded.tsx @@ -8,4 +8,4 @@ const IconBorderClearRounded: React.FC = ({ ...props }) => ( ) -export { IconBorderClearRounded as default } +export default IconBorderClearRounded diff --git a/src/IconBorderClearRoundedFilled.tsx b/src/IconBorderClearRoundedFilled.tsx index 42a410fef..4c61da8bf 100644 --- a/src/IconBorderClearRoundedFilled.tsx +++ b/src/IconBorderClearRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconBorderClearRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconBorderClearRoundedFilled as default } +export default IconBorderClearRoundedFilled diff --git a/src/IconBorderClearSharp.tsx b/src/IconBorderClearSharp.tsx index a022870d3..c9c277b6c 100644 --- a/src/IconBorderClearSharp.tsx +++ b/src/IconBorderClearSharp.tsx @@ -8,4 +8,4 @@ const IconBorderClearSharp: React.FC = ({ ...props }) => ( ) -export { IconBorderClearSharp as default } +export default IconBorderClearSharp diff --git a/src/IconBorderClearSharpFilled.tsx b/src/IconBorderClearSharpFilled.tsx index 68c1c5e7f..c32b908dc 100644 --- a/src/IconBorderClearSharpFilled.tsx +++ b/src/IconBorderClearSharpFilled.tsx @@ -8,4 +8,4 @@ const IconBorderClearSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconBorderClearSharpFilled as default } +export default IconBorderClearSharpFilled diff --git a/src/IconBorderColorOutlined.tsx b/src/IconBorderColorOutlined.tsx index aff24f7a9..525aa1b1d 100644 --- a/src/IconBorderColorOutlined.tsx +++ b/src/IconBorderColorOutlined.tsx @@ -8,4 +8,4 @@ const IconBorderColorOutlined: React.FC = ({ ...props }) => ( ) -export { IconBorderColorOutlined as default } +export default IconBorderColorOutlined diff --git a/src/IconBorderColorOutlinedFilled.tsx b/src/IconBorderColorOutlinedFilled.tsx index 429dd21de..f7fe892b9 100644 --- a/src/IconBorderColorOutlinedFilled.tsx +++ b/src/IconBorderColorOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconBorderColorOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconBorderColorOutlinedFilled as default } +export default IconBorderColorOutlinedFilled diff --git a/src/IconBorderColorRounded.tsx b/src/IconBorderColorRounded.tsx index 24c79f0b0..1038edca5 100644 --- a/src/IconBorderColorRounded.tsx +++ b/src/IconBorderColorRounded.tsx @@ -8,4 +8,4 @@ const IconBorderColorRounded: React.FC = ({ ...props }) => ( ) -export { IconBorderColorRounded as default } +export default IconBorderColorRounded diff --git a/src/IconBorderColorRoundedFilled.tsx b/src/IconBorderColorRoundedFilled.tsx index 15c01ffd5..378fb8aca 100644 --- a/src/IconBorderColorRoundedFilled.tsx +++ b/src/IconBorderColorRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconBorderColorRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconBorderColorRoundedFilled as default } +export default IconBorderColorRoundedFilled diff --git a/src/IconBorderColorSharp.tsx b/src/IconBorderColorSharp.tsx index 09d1b9e8d..cd0efcdf3 100644 --- a/src/IconBorderColorSharp.tsx +++ b/src/IconBorderColorSharp.tsx @@ -8,4 +8,4 @@ const IconBorderColorSharp: React.FC = ({ ...props }) => ( ) -export { IconBorderColorSharp as default } +export default IconBorderColorSharp diff --git a/src/IconBorderColorSharpFilled.tsx b/src/IconBorderColorSharpFilled.tsx index a1fb88a10..00861c509 100644 --- a/src/IconBorderColorSharpFilled.tsx +++ b/src/IconBorderColorSharpFilled.tsx @@ -8,4 +8,4 @@ const IconBorderColorSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconBorderColorSharpFilled as default } +export default IconBorderColorSharpFilled diff --git a/src/IconBorderHorizontalOutlined.tsx b/src/IconBorderHorizontalOutlined.tsx index 04fde582d..867b60226 100644 --- a/src/IconBorderHorizontalOutlined.tsx +++ b/src/IconBorderHorizontalOutlined.tsx @@ -8,4 +8,4 @@ const IconBorderHorizontalOutlined: React.FC = ({ ...props }) => ( ) -export { IconBorderHorizontalOutlined as default } +export default IconBorderHorizontalOutlined diff --git a/src/IconBorderHorizontalOutlinedFilled.tsx b/src/IconBorderHorizontalOutlinedFilled.tsx index f7b38535f..4d0db32e0 100644 --- a/src/IconBorderHorizontalOutlinedFilled.tsx +++ b/src/IconBorderHorizontalOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconBorderHorizontalOutlinedFilled: React.FC = ({ ) -export { IconBorderHorizontalOutlinedFilled as default } +export default IconBorderHorizontalOutlinedFilled diff --git a/src/IconBorderHorizontalRounded.tsx b/src/IconBorderHorizontalRounded.tsx index 3494c9978..1536fd733 100644 --- a/src/IconBorderHorizontalRounded.tsx +++ b/src/IconBorderHorizontalRounded.tsx @@ -8,4 +8,4 @@ const IconBorderHorizontalRounded: React.FC = ({ ...props }) => ( ) -export { IconBorderHorizontalRounded as default } +export default IconBorderHorizontalRounded diff --git a/src/IconBorderHorizontalRoundedFilled.tsx b/src/IconBorderHorizontalRoundedFilled.tsx index ecc0feac3..7b50e026f 100644 --- a/src/IconBorderHorizontalRoundedFilled.tsx +++ b/src/IconBorderHorizontalRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconBorderHorizontalRoundedFilled: React.FC = ({ ) -export { IconBorderHorizontalRoundedFilled as default } +export default IconBorderHorizontalRoundedFilled diff --git a/src/IconBorderHorizontalSharp.tsx b/src/IconBorderHorizontalSharp.tsx index 6bcdd6d04..f55937809 100644 --- a/src/IconBorderHorizontalSharp.tsx +++ b/src/IconBorderHorizontalSharp.tsx @@ -8,4 +8,4 @@ const IconBorderHorizontalSharp: React.FC = ({ ...props }) => ( ) -export { IconBorderHorizontalSharp as default } +export default IconBorderHorizontalSharp diff --git a/src/IconBorderHorizontalSharpFilled.tsx b/src/IconBorderHorizontalSharpFilled.tsx index 0bd83f501..d6fec726e 100644 --- a/src/IconBorderHorizontalSharpFilled.tsx +++ b/src/IconBorderHorizontalSharpFilled.tsx @@ -8,4 +8,4 @@ const IconBorderHorizontalSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconBorderHorizontalSharpFilled as default } +export default IconBorderHorizontalSharpFilled diff --git a/src/IconBorderInnerOutlined.tsx b/src/IconBorderInnerOutlined.tsx index baba8c7bd..405a46349 100644 --- a/src/IconBorderInnerOutlined.tsx +++ b/src/IconBorderInnerOutlined.tsx @@ -8,4 +8,4 @@ const IconBorderInnerOutlined: React.FC = ({ ...props }) => ( ) -export { IconBorderInnerOutlined as default } +export default IconBorderInnerOutlined diff --git a/src/IconBorderInnerOutlinedFilled.tsx b/src/IconBorderInnerOutlinedFilled.tsx index ef594210b..dc6307d3f 100644 --- a/src/IconBorderInnerOutlinedFilled.tsx +++ b/src/IconBorderInnerOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconBorderInnerOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconBorderInnerOutlinedFilled as default } +export default IconBorderInnerOutlinedFilled diff --git a/src/IconBorderInnerRounded.tsx b/src/IconBorderInnerRounded.tsx index a98ef4ee2..9962ae0a9 100644 --- a/src/IconBorderInnerRounded.tsx +++ b/src/IconBorderInnerRounded.tsx @@ -8,4 +8,4 @@ const IconBorderInnerRounded: React.FC = ({ ...props }) => ( ) -export { IconBorderInnerRounded as default } +export default IconBorderInnerRounded diff --git a/src/IconBorderInnerRoundedFilled.tsx b/src/IconBorderInnerRoundedFilled.tsx index 6b333859b..f5b2bc915 100644 --- a/src/IconBorderInnerRoundedFilled.tsx +++ b/src/IconBorderInnerRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconBorderInnerRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconBorderInnerRoundedFilled as default } +export default IconBorderInnerRoundedFilled diff --git a/src/IconBorderInnerSharp.tsx b/src/IconBorderInnerSharp.tsx index fec804d50..6fec92978 100644 --- a/src/IconBorderInnerSharp.tsx +++ b/src/IconBorderInnerSharp.tsx @@ -8,4 +8,4 @@ const IconBorderInnerSharp: React.FC = ({ ...props }) => ( ) -export { IconBorderInnerSharp as default } +export default IconBorderInnerSharp diff --git a/src/IconBorderInnerSharpFilled.tsx b/src/IconBorderInnerSharpFilled.tsx index bdb351f8e..e3ec602da 100644 --- a/src/IconBorderInnerSharpFilled.tsx +++ b/src/IconBorderInnerSharpFilled.tsx @@ -8,4 +8,4 @@ const IconBorderInnerSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconBorderInnerSharpFilled as default } +export default IconBorderInnerSharpFilled diff --git a/src/IconBorderLeftOutlined.tsx b/src/IconBorderLeftOutlined.tsx index 6d58b8d3e..b78537604 100644 --- a/src/IconBorderLeftOutlined.tsx +++ b/src/IconBorderLeftOutlined.tsx @@ -8,4 +8,4 @@ const IconBorderLeftOutlined: React.FC = ({ ...props }) => ( ) -export { IconBorderLeftOutlined as default } +export default IconBorderLeftOutlined diff --git a/src/IconBorderLeftOutlinedFilled.tsx b/src/IconBorderLeftOutlinedFilled.tsx index 1c66d4a6e..7a3573aa2 100644 --- a/src/IconBorderLeftOutlinedFilled.tsx +++ b/src/IconBorderLeftOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconBorderLeftOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconBorderLeftOutlinedFilled as default } +export default IconBorderLeftOutlinedFilled diff --git a/src/IconBorderLeftRounded.tsx b/src/IconBorderLeftRounded.tsx index aaf1aff78..94c35167e 100644 --- a/src/IconBorderLeftRounded.tsx +++ b/src/IconBorderLeftRounded.tsx @@ -8,4 +8,4 @@ const IconBorderLeftRounded: React.FC = ({ ...props }) => ( ) -export { IconBorderLeftRounded as default } +export default IconBorderLeftRounded diff --git a/src/IconBorderLeftRoundedFilled.tsx b/src/IconBorderLeftRoundedFilled.tsx index d0a5fc31c..c8ec88c49 100644 --- a/src/IconBorderLeftRoundedFilled.tsx +++ b/src/IconBorderLeftRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconBorderLeftRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconBorderLeftRoundedFilled as default } +export default IconBorderLeftRoundedFilled diff --git a/src/IconBorderLeftSharp.tsx b/src/IconBorderLeftSharp.tsx index 06e7df099..a8acc068b 100644 --- a/src/IconBorderLeftSharp.tsx +++ b/src/IconBorderLeftSharp.tsx @@ -8,4 +8,4 @@ const IconBorderLeftSharp: React.FC = ({ ...props }) => ( ) -export { IconBorderLeftSharp as default } +export default IconBorderLeftSharp diff --git a/src/IconBorderLeftSharpFilled.tsx b/src/IconBorderLeftSharpFilled.tsx index 41c044df3..181594c23 100644 --- a/src/IconBorderLeftSharpFilled.tsx +++ b/src/IconBorderLeftSharpFilled.tsx @@ -8,4 +8,4 @@ const IconBorderLeftSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconBorderLeftSharpFilled as default } +export default IconBorderLeftSharpFilled diff --git a/src/IconBorderOuterOutlined.tsx b/src/IconBorderOuterOutlined.tsx index 9d8d80043..6f8f36056 100644 --- a/src/IconBorderOuterOutlined.tsx +++ b/src/IconBorderOuterOutlined.tsx @@ -8,4 +8,4 @@ const IconBorderOuterOutlined: React.FC = ({ ...props }) => ( ) -export { IconBorderOuterOutlined as default } +export default IconBorderOuterOutlined diff --git a/src/IconBorderOuterOutlinedFilled.tsx b/src/IconBorderOuterOutlinedFilled.tsx index 0032f54ee..73223037c 100644 --- a/src/IconBorderOuterOutlinedFilled.tsx +++ b/src/IconBorderOuterOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconBorderOuterOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconBorderOuterOutlinedFilled as default } +export default IconBorderOuterOutlinedFilled diff --git a/src/IconBorderOuterRounded.tsx b/src/IconBorderOuterRounded.tsx index 68f645ed9..8d63018f0 100644 --- a/src/IconBorderOuterRounded.tsx +++ b/src/IconBorderOuterRounded.tsx @@ -8,4 +8,4 @@ const IconBorderOuterRounded: React.FC = ({ ...props }) => ( ) -export { IconBorderOuterRounded as default } +export default IconBorderOuterRounded diff --git a/src/IconBorderOuterRoundedFilled.tsx b/src/IconBorderOuterRoundedFilled.tsx index 693dc8166..222b9cd53 100644 --- a/src/IconBorderOuterRoundedFilled.tsx +++ b/src/IconBorderOuterRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconBorderOuterRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconBorderOuterRoundedFilled as default } +export default IconBorderOuterRoundedFilled diff --git a/src/IconBorderOuterSharp.tsx b/src/IconBorderOuterSharp.tsx index db39e6470..f8df4105f 100644 --- a/src/IconBorderOuterSharp.tsx +++ b/src/IconBorderOuterSharp.tsx @@ -8,4 +8,4 @@ const IconBorderOuterSharp: React.FC = ({ ...props }) => ( ) -export { IconBorderOuterSharp as default } +export default IconBorderOuterSharp diff --git a/src/IconBorderOuterSharpFilled.tsx b/src/IconBorderOuterSharpFilled.tsx index c417a15cf..eb0e3aa7b 100644 --- a/src/IconBorderOuterSharpFilled.tsx +++ b/src/IconBorderOuterSharpFilled.tsx @@ -8,4 +8,4 @@ const IconBorderOuterSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconBorderOuterSharpFilled as default } +export default IconBorderOuterSharpFilled diff --git a/src/IconBorderRightOutlined.tsx b/src/IconBorderRightOutlined.tsx index 74b32703b..f6be45e9c 100644 --- a/src/IconBorderRightOutlined.tsx +++ b/src/IconBorderRightOutlined.tsx @@ -8,4 +8,4 @@ const IconBorderRightOutlined: React.FC = ({ ...props }) => ( ) -export { IconBorderRightOutlined as default } +export default IconBorderRightOutlined diff --git a/src/IconBorderRightOutlinedFilled.tsx b/src/IconBorderRightOutlinedFilled.tsx index 61a21b1d8..1e0744366 100644 --- a/src/IconBorderRightOutlinedFilled.tsx +++ b/src/IconBorderRightOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconBorderRightOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconBorderRightOutlinedFilled as default } +export default IconBorderRightOutlinedFilled diff --git a/src/IconBorderRightRounded.tsx b/src/IconBorderRightRounded.tsx index bd72b8866..42675282a 100644 --- a/src/IconBorderRightRounded.tsx +++ b/src/IconBorderRightRounded.tsx @@ -8,4 +8,4 @@ const IconBorderRightRounded: React.FC = ({ ...props }) => ( ) -export { IconBorderRightRounded as default } +export default IconBorderRightRounded diff --git a/src/IconBorderRightRoundedFilled.tsx b/src/IconBorderRightRoundedFilled.tsx index 7024a218c..3ae69f17e 100644 --- a/src/IconBorderRightRoundedFilled.tsx +++ b/src/IconBorderRightRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconBorderRightRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconBorderRightRoundedFilled as default } +export default IconBorderRightRoundedFilled diff --git a/src/IconBorderRightSharp.tsx b/src/IconBorderRightSharp.tsx index 24a35ab0b..1bf580985 100644 --- a/src/IconBorderRightSharp.tsx +++ b/src/IconBorderRightSharp.tsx @@ -8,4 +8,4 @@ const IconBorderRightSharp: React.FC = ({ ...props }) => ( ) -export { IconBorderRightSharp as default } +export default IconBorderRightSharp diff --git a/src/IconBorderRightSharpFilled.tsx b/src/IconBorderRightSharpFilled.tsx index f9e3b6bbd..f24e05a93 100644 --- a/src/IconBorderRightSharpFilled.tsx +++ b/src/IconBorderRightSharpFilled.tsx @@ -8,4 +8,4 @@ const IconBorderRightSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconBorderRightSharpFilled as default } +export default IconBorderRightSharpFilled diff --git a/src/IconBorderStyleOutlined.tsx b/src/IconBorderStyleOutlined.tsx index 079f389f6..27ea63070 100644 --- a/src/IconBorderStyleOutlined.tsx +++ b/src/IconBorderStyleOutlined.tsx @@ -8,4 +8,4 @@ const IconBorderStyleOutlined: React.FC = ({ ...props }) => ( ) -export { IconBorderStyleOutlined as default } +export default IconBorderStyleOutlined diff --git a/src/IconBorderStyleOutlinedFilled.tsx b/src/IconBorderStyleOutlinedFilled.tsx index 1777455c6..60ba45615 100644 --- a/src/IconBorderStyleOutlinedFilled.tsx +++ b/src/IconBorderStyleOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconBorderStyleOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconBorderStyleOutlinedFilled as default } +export default IconBorderStyleOutlinedFilled diff --git a/src/IconBorderStyleRounded.tsx b/src/IconBorderStyleRounded.tsx index 5eebdad31..d45f8ca75 100644 --- a/src/IconBorderStyleRounded.tsx +++ b/src/IconBorderStyleRounded.tsx @@ -8,4 +8,4 @@ const IconBorderStyleRounded: React.FC = ({ ...props }) => ( ) -export { IconBorderStyleRounded as default } +export default IconBorderStyleRounded diff --git a/src/IconBorderStyleRoundedFilled.tsx b/src/IconBorderStyleRoundedFilled.tsx index ffc330f47..fa120e025 100644 --- a/src/IconBorderStyleRoundedFilled.tsx +++ b/src/IconBorderStyleRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconBorderStyleRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconBorderStyleRoundedFilled as default } +export default IconBorderStyleRoundedFilled diff --git a/src/IconBorderStyleSharp.tsx b/src/IconBorderStyleSharp.tsx index 97020e28e..c60bfd6a0 100644 --- a/src/IconBorderStyleSharp.tsx +++ b/src/IconBorderStyleSharp.tsx @@ -8,4 +8,4 @@ const IconBorderStyleSharp: React.FC = ({ ...props }) => ( ) -export { IconBorderStyleSharp as default } +export default IconBorderStyleSharp diff --git a/src/IconBorderStyleSharpFilled.tsx b/src/IconBorderStyleSharpFilled.tsx index 7abedf8e5..f94b29e76 100644 --- a/src/IconBorderStyleSharpFilled.tsx +++ b/src/IconBorderStyleSharpFilled.tsx @@ -8,4 +8,4 @@ const IconBorderStyleSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconBorderStyleSharpFilled as default } +export default IconBorderStyleSharpFilled diff --git a/src/IconBorderTopOutlined.tsx b/src/IconBorderTopOutlined.tsx index e896c2209..5bdfbf50a 100644 --- a/src/IconBorderTopOutlined.tsx +++ b/src/IconBorderTopOutlined.tsx @@ -8,4 +8,4 @@ const IconBorderTopOutlined: React.FC = ({ ...props }) => ( ) -export { IconBorderTopOutlined as default } +export default IconBorderTopOutlined diff --git a/src/IconBorderTopOutlinedFilled.tsx b/src/IconBorderTopOutlinedFilled.tsx index 0a21a7f6c..01492d7bb 100644 --- a/src/IconBorderTopOutlinedFilled.tsx +++ b/src/IconBorderTopOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconBorderTopOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconBorderTopOutlinedFilled as default } +export default IconBorderTopOutlinedFilled diff --git a/src/IconBorderTopRounded.tsx b/src/IconBorderTopRounded.tsx index a4d63989a..f09e54f5b 100644 --- a/src/IconBorderTopRounded.tsx +++ b/src/IconBorderTopRounded.tsx @@ -8,4 +8,4 @@ const IconBorderTopRounded: React.FC = ({ ...props }) => ( ) -export { IconBorderTopRounded as default } +export default IconBorderTopRounded diff --git a/src/IconBorderTopRoundedFilled.tsx b/src/IconBorderTopRoundedFilled.tsx index 19e0763ad..a27ddf67c 100644 --- a/src/IconBorderTopRoundedFilled.tsx +++ b/src/IconBorderTopRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconBorderTopRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconBorderTopRoundedFilled as default } +export default IconBorderTopRoundedFilled diff --git a/src/IconBorderTopSharp.tsx b/src/IconBorderTopSharp.tsx index 1d28db877..7b53d61b8 100644 --- a/src/IconBorderTopSharp.tsx +++ b/src/IconBorderTopSharp.tsx @@ -8,4 +8,4 @@ const IconBorderTopSharp: React.FC = ({ ...props }) => ( ) -export { IconBorderTopSharp as default } +export default IconBorderTopSharp diff --git a/src/IconBorderTopSharpFilled.tsx b/src/IconBorderTopSharpFilled.tsx index 729eec62c..6d02a84f2 100644 --- a/src/IconBorderTopSharpFilled.tsx +++ b/src/IconBorderTopSharpFilled.tsx @@ -8,4 +8,4 @@ const IconBorderTopSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconBorderTopSharpFilled as default } +export default IconBorderTopSharpFilled diff --git a/src/IconBorderVerticalOutlined.tsx b/src/IconBorderVerticalOutlined.tsx index f1fd68391..298a1b80f 100644 --- a/src/IconBorderVerticalOutlined.tsx +++ b/src/IconBorderVerticalOutlined.tsx @@ -8,4 +8,4 @@ const IconBorderVerticalOutlined: React.FC = ({ ...props }) => ( ) -export { IconBorderVerticalOutlined as default } +export default IconBorderVerticalOutlined diff --git a/src/IconBorderVerticalOutlinedFilled.tsx b/src/IconBorderVerticalOutlinedFilled.tsx index c59b2f5f4..8766918b3 100644 --- a/src/IconBorderVerticalOutlinedFilled.tsx +++ b/src/IconBorderVerticalOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconBorderVerticalOutlinedFilled: React.FC = ({ ) -export { IconBorderVerticalOutlinedFilled as default } +export default IconBorderVerticalOutlinedFilled diff --git a/src/IconBorderVerticalRounded.tsx b/src/IconBorderVerticalRounded.tsx index 694aee87d..a11127778 100644 --- a/src/IconBorderVerticalRounded.tsx +++ b/src/IconBorderVerticalRounded.tsx @@ -8,4 +8,4 @@ const IconBorderVerticalRounded: React.FC = ({ ...props }) => ( ) -export { IconBorderVerticalRounded as default } +export default IconBorderVerticalRounded diff --git a/src/IconBorderVerticalRoundedFilled.tsx b/src/IconBorderVerticalRoundedFilled.tsx index 53e77ed06..4a79f08a4 100644 --- a/src/IconBorderVerticalRoundedFilled.tsx +++ b/src/IconBorderVerticalRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconBorderVerticalRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconBorderVerticalRoundedFilled as default } +export default IconBorderVerticalRoundedFilled diff --git a/src/IconBorderVerticalSharp.tsx b/src/IconBorderVerticalSharp.tsx index 0acc5f689..d803b6781 100644 --- a/src/IconBorderVerticalSharp.tsx +++ b/src/IconBorderVerticalSharp.tsx @@ -8,4 +8,4 @@ const IconBorderVerticalSharp: React.FC = ({ ...props }) => ( ) -export { IconBorderVerticalSharp as default } +export default IconBorderVerticalSharp diff --git a/src/IconBorderVerticalSharpFilled.tsx b/src/IconBorderVerticalSharpFilled.tsx index 4f4a2499a..ad1d57822 100644 --- a/src/IconBorderVerticalSharpFilled.tsx +++ b/src/IconBorderVerticalSharpFilled.tsx @@ -8,4 +8,4 @@ const IconBorderVerticalSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconBorderVerticalSharpFilled as default } +export default IconBorderVerticalSharpFilled diff --git a/src/IconBorgOutlined.tsx b/src/IconBorgOutlined.tsx index 847e8b621..aec360b12 100644 --- a/src/IconBorgOutlined.tsx +++ b/src/IconBorgOutlined.tsx @@ -8,4 +8,4 @@ const IconBorgOutlined: React.FC = ({ ...props }) => ( ) -export { IconBorgOutlined as default } +export default IconBorgOutlined diff --git a/src/IconBorgOutlinedFilled.tsx b/src/IconBorgOutlinedFilled.tsx index 62f17baba..29f9f93db 100644 --- a/src/IconBorgOutlinedFilled.tsx +++ b/src/IconBorgOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconBorgOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconBorgOutlinedFilled as default } +export default IconBorgOutlinedFilled diff --git a/src/IconBorgRounded.tsx b/src/IconBorgRounded.tsx index 34a8bc106..666bca1ea 100644 --- a/src/IconBorgRounded.tsx +++ b/src/IconBorgRounded.tsx @@ -8,4 +8,4 @@ const IconBorgRounded: React.FC = ({ ...props }) => ( ) -export { IconBorgRounded as default } +export default IconBorgRounded diff --git a/src/IconBorgRoundedFilled.tsx b/src/IconBorgRoundedFilled.tsx index 3d14ed885..ad108d60f 100644 --- a/src/IconBorgRoundedFilled.tsx +++ b/src/IconBorgRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconBorgRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconBorgRoundedFilled as default } +export default IconBorgRoundedFilled diff --git a/src/IconBorgSharp.tsx b/src/IconBorgSharp.tsx index ce064bee7..8569da7ca 100644 --- a/src/IconBorgSharp.tsx +++ b/src/IconBorgSharp.tsx @@ -8,4 +8,4 @@ const IconBorgSharp: React.FC = ({ ...props }) => ( ) -export { IconBorgSharp as default } +export default IconBorgSharp diff --git a/src/IconBorgSharpFilled.tsx b/src/IconBorgSharpFilled.tsx index f836b05d5..49f44e775 100644 --- a/src/IconBorgSharpFilled.tsx +++ b/src/IconBorgSharpFilled.tsx @@ -8,4 +8,4 @@ const IconBorgSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconBorgSharpFilled as default } +export default IconBorgSharpFilled diff --git a/src/IconBottomAppBarOutlined.tsx b/src/IconBottomAppBarOutlined.tsx index 3af232b03..8d5945dea 100644 --- a/src/IconBottomAppBarOutlined.tsx +++ b/src/IconBottomAppBarOutlined.tsx @@ -8,4 +8,4 @@ const IconBottomAppBarOutlined: React.FC = ({ ...props }) => ( ) -export { IconBottomAppBarOutlined as default } +export default IconBottomAppBarOutlined diff --git a/src/IconBottomAppBarOutlinedFilled.tsx b/src/IconBottomAppBarOutlinedFilled.tsx index 31b29421e..c08ea73f4 100644 --- a/src/IconBottomAppBarOutlinedFilled.tsx +++ b/src/IconBottomAppBarOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconBottomAppBarOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconBottomAppBarOutlinedFilled as default } +export default IconBottomAppBarOutlinedFilled diff --git a/src/IconBottomAppBarRounded.tsx b/src/IconBottomAppBarRounded.tsx index e0319840d..62512da7c 100644 --- a/src/IconBottomAppBarRounded.tsx +++ b/src/IconBottomAppBarRounded.tsx @@ -8,4 +8,4 @@ const IconBottomAppBarRounded: React.FC = ({ ...props }) => ( ) -export { IconBottomAppBarRounded as default } +export default IconBottomAppBarRounded diff --git a/src/IconBottomAppBarRoundedFilled.tsx b/src/IconBottomAppBarRoundedFilled.tsx index 9540bc561..768fa69e8 100644 --- a/src/IconBottomAppBarRoundedFilled.tsx +++ b/src/IconBottomAppBarRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconBottomAppBarRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconBottomAppBarRoundedFilled as default } +export default IconBottomAppBarRoundedFilled diff --git a/src/IconBottomAppBarSharp.tsx b/src/IconBottomAppBarSharp.tsx index 7465c490f..9dfb79187 100644 --- a/src/IconBottomAppBarSharp.tsx +++ b/src/IconBottomAppBarSharp.tsx @@ -8,4 +8,4 @@ const IconBottomAppBarSharp: React.FC = ({ ...props }) => ( ) -export { IconBottomAppBarSharp as default } +export default IconBottomAppBarSharp diff --git a/src/IconBottomAppBarSharpFilled.tsx b/src/IconBottomAppBarSharpFilled.tsx index 86207b936..6482c5691 100644 --- a/src/IconBottomAppBarSharpFilled.tsx +++ b/src/IconBottomAppBarSharpFilled.tsx @@ -8,4 +8,4 @@ const IconBottomAppBarSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconBottomAppBarSharpFilled as default } +export default IconBottomAppBarSharpFilled diff --git a/src/IconBottomDrawerOutlined.tsx b/src/IconBottomDrawerOutlined.tsx index 56361c8aa..cacdcdf92 100644 --- a/src/IconBottomDrawerOutlined.tsx +++ b/src/IconBottomDrawerOutlined.tsx @@ -8,4 +8,4 @@ const IconBottomDrawerOutlined: React.FC = ({ ...props }) => ( ) -export { IconBottomDrawerOutlined as default } +export default IconBottomDrawerOutlined diff --git a/src/IconBottomDrawerOutlinedFilled.tsx b/src/IconBottomDrawerOutlinedFilled.tsx index f889db5d2..d45bb9847 100644 --- a/src/IconBottomDrawerOutlinedFilled.tsx +++ b/src/IconBottomDrawerOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconBottomDrawerOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconBottomDrawerOutlinedFilled as default } +export default IconBottomDrawerOutlinedFilled diff --git a/src/IconBottomDrawerRounded.tsx b/src/IconBottomDrawerRounded.tsx index 98e46ccb4..19917dddb 100644 --- a/src/IconBottomDrawerRounded.tsx +++ b/src/IconBottomDrawerRounded.tsx @@ -8,4 +8,4 @@ const IconBottomDrawerRounded: React.FC = ({ ...props }) => ( ) -export { IconBottomDrawerRounded as default } +export default IconBottomDrawerRounded diff --git a/src/IconBottomDrawerRoundedFilled.tsx b/src/IconBottomDrawerRoundedFilled.tsx index 44255a9a4..8095799a2 100644 --- a/src/IconBottomDrawerRoundedFilled.tsx +++ b/src/IconBottomDrawerRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconBottomDrawerRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconBottomDrawerRoundedFilled as default } +export default IconBottomDrawerRoundedFilled diff --git a/src/IconBottomDrawerSharp.tsx b/src/IconBottomDrawerSharp.tsx index 62354c08f..8b741ad48 100644 --- a/src/IconBottomDrawerSharp.tsx +++ b/src/IconBottomDrawerSharp.tsx @@ -8,4 +8,4 @@ const IconBottomDrawerSharp: React.FC = ({ ...props }) => ( ) -export { IconBottomDrawerSharp as default } +export default IconBottomDrawerSharp diff --git a/src/IconBottomDrawerSharpFilled.tsx b/src/IconBottomDrawerSharpFilled.tsx index 7ed1eb1e1..689b300ce 100644 --- a/src/IconBottomDrawerSharpFilled.tsx +++ b/src/IconBottomDrawerSharpFilled.tsx @@ -8,4 +8,4 @@ const IconBottomDrawerSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconBottomDrawerSharpFilled as default } +export default IconBottomDrawerSharpFilled diff --git a/src/IconBottomNavigationOutlined.tsx b/src/IconBottomNavigationOutlined.tsx index 8d7691ffa..955795c19 100644 --- a/src/IconBottomNavigationOutlined.tsx +++ b/src/IconBottomNavigationOutlined.tsx @@ -8,4 +8,4 @@ const IconBottomNavigationOutlined: React.FC = ({ ...props }) => ( ) -export { IconBottomNavigationOutlined as default } +export default IconBottomNavigationOutlined diff --git a/src/IconBottomNavigationOutlinedFilled.tsx b/src/IconBottomNavigationOutlinedFilled.tsx index 52e7cadb8..2595805df 100644 --- a/src/IconBottomNavigationOutlinedFilled.tsx +++ b/src/IconBottomNavigationOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconBottomNavigationOutlinedFilled: React.FC = ({ ) -export { IconBottomNavigationOutlinedFilled as default } +export default IconBottomNavigationOutlinedFilled diff --git a/src/IconBottomNavigationRounded.tsx b/src/IconBottomNavigationRounded.tsx index 1919d07c1..d6d830ee3 100644 --- a/src/IconBottomNavigationRounded.tsx +++ b/src/IconBottomNavigationRounded.tsx @@ -8,4 +8,4 @@ const IconBottomNavigationRounded: React.FC = ({ ...props }) => ( ) -export { IconBottomNavigationRounded as default } +export default IconBottomNavigationRounded diff --git a/src/IconBottomNavigationRoundedFilled.tsx b/src/IconBottomNavigationRoundedFilled.tsx index f10d8e009..faf95862d 100644 --- a/src/IconBottomNavigationRoundedFilled.tsx +++ b/src/IconBottomNavigationRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconBottomNavigationRoundedFilled: React.FC = ({ ) -export { IconBottomNavigationRoundedFilled as default } +export default IconBottomNavigationRoundedFilled diff --git a/src/IconBottomNavigationSharp.tsx b/src/IconBottomNavigationSharp.tsx index cbe22db75..4e3c11efa 100644 --- a/src/IconBottomNavigationSharp.tsx +++ b/src/IconBottomNavigationSharp.tsx @@ -8,4 +8,4 @@ const IconBottomNavigationSharp: React.FC = ({ ...props }) => ( ) -export { IconBottomNavigationSharp as default } +export default IconBottomNavigationSharp diff --git a/src/IconBottomNavigationSharpFilled.tsx b/src/IconBottomNavigationSharpFilled.tsx index 9d46446d2..fe7d7d448 100644 --- a/src/IconBottomNavigationSharpFilled.tsx +++ b/src/IconBottomNavigationSharpFilled.tsx @@ -8,4 +8,4 @@ const IconBottomNavigationSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconBottomNavigationSharpFilled as default } +export default IconBottomNavigationSharpFilled diff --git a/src/IconBottomPanelCloseOutlined.tsx b/src/IconBottomPanelCloseOutlined.tsx index 2a70b5909..0e90cb91a 100644 --- a/src/IconBottomPanelCloseOutlined.tsx +++ b/src/IconBottomPanelCloseOutlined.tsx @@ -8,4 +8,4 @@ const IconBottomPanelCloseOutlined: React.FC = ({ ...props }) => ( ) -export { IconBottomPanelCloseOutlined as default } +export default IconBottomPanelCloseOutlined diff --git a/src/IconBottomPanelCloseOutlinedFilled.tsx b/src/IconBottomPanelCloseOutlinedFilled.tsx index c28cb281e..44c6b7fbf 100644 --- a/src/IconBottomPanelCloseOutlinedFilled.tsx +++ b/src/IconBottomPanelCloseOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconBottomPanelCloseOutlinedFilled: React.FC = ({ ) -export { IconBottomPanelCloseOutlinedFilled as default } +export default IconBottomPanelCloseOutlinedFilled diff --git a/src/IconBottomPanelCloseRounded.tsx b/src/IconBottomPanelCloseRounded.tsx index 1bbad9e57..d913d7065 100644 --- a/src/IconBottomPanelCloseRounded.tsx +++ b/src/IconBottomPanelCloseRounded.tsx @@ -8,4 +8,4 @@ const IconBottomPanelCloseRounded: React.FC = ({ ...props }) => ( ) -export { IconBottomPanelCloseRounded as default } +export default IconBottomPanelCloseRounded diff --git a/src/IconBottomPanelCloseRoundedFilled.tsx b/src/IconBottomPanelCloseRoundedFilled.tsx index 0acaa0946..1beda519d 100644 --- a/src/IconBottomPanelCloseRoundedFilled.tsx +++ b/src/IconBottomPanelCloseRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconBottomPanelCloseRoundedFilled: React.FC = ({ ) -export { IconBottomPanelCloseRoundedFilled as default } +export default IconBottomPanelCloseRoundedFilled diff --git a/src/IconBottomPanelCloseSharp.tsx b/src/IconBottomPanelCloseSharp.tsx index 2488bc429..585c3fab0 100644 --- a/src/IconBottomPanelCloseSharp.tsx +++ b/src/IconBottomPanelCloseSharp.tsx @@ -8,4 +8,4 @@ const IconBottomPanelCloseSharp: React.FC = ({ ...props }) => ( ) -export { IconBottomPanelCloseSharp as default } +export default IconBottomPanelCloseSharp diff --git a/src/IconBottomPanelCloseSharpFilled.tsx b/src/IconBottomPanelCloseSharpFilled.tsx index 80363c0c5..85c1575ef 100644 --- a/src/IconBottomPanelCloseSharpFilled.tsx +++ b/src/IconBottomPanelCloseSharpFilled.tsx @@ -8,4 +8,4 @@ const IconBottomPanelCloseSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconBottomPanelCloseSharpFilled as default } +export default IconBottomPanelCloseSharpFilled diff --git a/src/IconBottomPanelOpenOutlined.tsx b/src/IconBottomPanelOpenOutlined.tsx index 7be919277..00dbaf2f8 100644 --- a/src/IconBottomPanelOpenOutlined.tsx +++ b/src/IconBottomPanelOpenOutlined.tsx @@ -8,4 +8,4 @@ const IconBottomPanelOpenOutlined: React.FC = ({ ...props }) => ( ) -export { IconBottomPanelOpenOutlined as default } +export default IconBottomPanelOpenOutlined diff --git a/src/IconBottomPanelOpenOutlinedFilled.tsx b/src/IconBottomPanelOpenOutlinedFilled.tsx index af009d02a..95fa82725 100644 --- a/src/IconBottomPanelOpenOutlinedFilled.tsx +++ b/src/IconBottomPanelOpenOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconBottomPanelOpenOutlinedFilled: React.FC = ({ ) -export { IconBottomPanelOpenOutlinedFilled as default } +export default IconBottomPanelOpenOutlinedFilled diff --git a/src/IconBottomPanelOpenRounded.tsx b/src/IconBottomPanelOpenRounded.tsx index c65912f51..ba4821d55 100644 --- a/src/IconBottomPanelOpenRounded.tsx +++ b/src/IconBottomPanelOpenRounded.tsx @@ -8,4 +8,4 @@ const IconBottomPanelOpenRounded: React.FC = ({ ...props }) => ( ) -export { IconBottomPanelOpenRounded as default } +export default IconBottomPanelOpenRounded diff --git a/src/IconBottomPanelOpenRoundedFilled.tsx b/src/IconBottomPanelOpenRoundedFilled.tsx index 89711e171..e58c30a6e 100644 --- a/src/IconBottomPanelOpenRoundedFilled.tsx +++ b/src/IconBottomPanelOpenRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconBottomPanelOpenRoundedFilled: React.FC = ({ ) -export { IconBottomPanelOpenRoundedFilled as default } +export default IconBottomPanelOpenRoundedFilled diff --git a/src/IconBottomPanelOpenSharp.tsx b/src/IconBottomPanelOpenSharp.tsx index 18a987bb8..9e3280c1f 100644 --- a/src/IconBottomPanelOpenSharp.tsx +++ b/src/IconBottomPanelOpenSharp.tsx @@ -8,4 +8,4 @@ const IconBottomPanelOpenSharp: React.FC = ({ ...props }) => ( ) -export { IconBottomPanelOpenSharp as default } +export default IconBottomPanelOpenSharp diff --git a/src/IconBottomPanelOpenSharpFilled.tsx b/src/IconBottomPanelOpenSharpFilled.tsx index edf75e9a2..d00a41986 100644 --- a/src/IconBottomPanelOpenSharpFilled.tsx +++ b/src/IconBottomPanelOpenSharpFilled.tsx @@ -8,4 +8,4 @@ const IconBottomPanelOpenSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconBottomPanelOpenSharpFilled as default } +export default IconBottomPanelOpenSharpFilled diff --git a/src/IconBottomRightClickOutlined.tsx b/src/IconBottomRightClickOutlined.tsx index 60dd147ef..76102731f 100644 --- a/src/IconBottomRightClickOutlined.tsx +++ b/src/IconBottomRightClickOutlined.tsx @@ -8,4 +8,4 @@ const IconBottomRightClickOutlined: React.FC = ({ ...props }) => ( ) -export { IconBottomRightClickOutlined as default } +export default IconBottomRightClickOutlined diff --git a/src/IconBottomRightClickOutlinedFilled.tsx b/src/IconBottomRightClickOutlinedFilled.tsx index b200d8420..662d7cfe1 100644 --- a/src/IconBottomRightClickOutlinedFilled.tsx +++ b/src/IconBottomRightClickOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconBottomRightClickOutlinedFilled: React.FC = ({ ) -export { IconBottomRightClickOutlinedFilled as default } +export default IconBottomRightClickOutlinedFilled diff --git a/src/IconBottomRightClickRounded.tsx b/src/IconBottomRightClickRounded.tsx index 1aebe65e2..2a44ac32e 100644 --- a/src/IconBottomRightClickRounded.tsx +++ b/src/IconBottomRightClickRounded.tsx @@ -8,4 +8,4 @@ const IconBottomRightClickRounded: React.FC = ({ ...props }) => ( ) -export { IconBottomRightClickRounded as default } +export default IconBottomRightClickRounded diff --git a/src/IconBottomRightClickRoundedFilled.tsx b/src/IconBottomRightClickRoundedFilled.tsx index 114f509e9..9209404d1 100644 --- a/src/IconBottomRightClickRoundedFilled.tsx +++ b/src/IconBottomRightClickRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconBottomRightClickRoundedFilled: React.FC = ({ ) -export { IconBottomRightClickRoundedFilled as default } +export default IconBottomRightClickRoundedFilled diff --git a/src/IconBottomRightClickSharp.tsx b/src/IconBottomRightClickSharp.tsx index 1de85f306..f494e31ba 100644 --- a/src/IconBottomRightClickSharp.tsx +++ b/src/IconBottomRightClickSharp.tsx @@ -8,4 +8,4 @@ const IconBottomRightClickSharp: React.FC = ({ ...props }) => ( ) -export { IconBottomRightClickSharp as default } +export default IconBottomRightClickSharp diff --git a/src/IconBottomRightClickSharpFilled.tsx b/src/IconBottomRightClickSharpFilled.tsx index d97c224a4..c1628d9fc 100644 --- a/src/IconBottomRightClickSharpFilled.tsx +++ b/src/IconBottomRightClickSharpFilled.tsx @@ -8,4 +8,4 @@ const IconBottomRightClickSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconBottomRightClickSharpFilled as default } +export default IconBottomRightClickSharpFilled diff --git a/src/IconBottomSheetsOutlined.tsx b/src/IconBottomSheetsOutlined.tsx index e6cdd705d..218172982 100644 --- a/src/IconBottomSheetsOutlined.tsx +++ b/src/IconBottomSheetsOutlined.tsx @@ -8,4 +8,4 @@ const IconBottomSheetsOutlined: React.FC = ({ ...props }) => ( ) -export { IconBottomSheetsOutlined as default } +export default IconBottomSheetsOutlined diff --git a/src/IconBottomSheetsOutlinedFilled.tsx b/src/IconBottomSheetsOutlinedFilled.tsx index 071531ba5..97e88c854 100644 --- a/src/IconBottomSheetsOutlinedFilled.tsx +++ b/src/IconBottomSheetsOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconBottomSheetsOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconBottomSheetsOutlinedFilled as default } +export default IconBottomSheetsOutlinedFilled diff --git a/src/IconBottomSheetsRounded.tsx b/src/IconBottomSheetsRounded.tsx index ef60f80d0..067c15c07 100644 --- a/src/IconBottomSheetsRounded.tsx +++ b/src/IconBottomSheetsRounded.tsx @@ -8,4 +8,4 @@ const IconBottomSheetsRounded: React.FC = ({ ...props }) => ( ) -export { IconBottomSheetsRounded as default } +export default IconBottomSheetsRounded diff --git a/src/IconBottomSheetsRoundedFilled.tsx b/src/IconBottomSheetsRoundedFilled.tsx index a90de7009..90789c7fc 100644 --- a/src/IconBottomSheetsRoundedFilled.tsx +++ b/src/IconBottomSheetsRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconBottomSheetsRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconBottomSheetsRoundedFilled as default } +export default IconBottomSheetsRoundedFilled diff --git a/src/IconBottomSheetsSharp.tsx b/src/IconBottomSheetsSharp.tsx index 9db76e1d6..ddd2b2bce 100644 --- a/src/IconBottomSheetsSharp.tsx +++ b/src/IconBottomSheetsSharp.tsx @@ -8,4 +8,4 @@ const IconBottomSheetsSharp: React.FC = ({ ...props }) => ( ) -export { IconBottomSheetsSharp as default } +export default IconBottomSheetsSharp diff --git a/src/IconBottomSheetsSharpFilled.tsx b/src/IconBottomSheetsSharpFilled.tsx index 3abf87343..1bd62f6f9 100644 --- a/src/IconBottomSheetsSharpFilled.tsx +++ b/src/IconBottomSheetsSharpFilled.tsx @@ -8,4 +8,4 @@ const IconBottomSheetsSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconBottomSheetsSharpFilled as default } +export default IconBottomSheetsSharpFilled diff --git a/src/IconBoxAddOutlined.tsx b/src/IconBoxAddOutlined.tsx index 20af548cd..5dac116a6 100644 --- a/src/IconBoxAddOutlined.tsx +++ b/src/IconBoxAddOutlined.tsx @@ -8,4 +8,4 @@ const IconBoxAddOutlined: React.FC = ({ ...props }) => ( ) -export { IconBoxAddOutlined as default } +export default IconBoxAddOutlined diff --git a/src/IconBoxAddOutlinedFilled.tsx b/src/IconBoxAddOutlinedFilled.tsx index 83e9eb63a..dc8da7f7a 100644 --- a/src/IconBoxAddOutlinedFilled.tsx +++ b/src/IconBoxAddOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconBoxAddOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconBoxAddOutlinedFilled as default } +export default IconBoxAddOutlinedFilled diff --git a/src/IconBoxAddRounded.tsx b/src/IconBoxAddRounded.tsx index b4c1b7264..976deb37f 100644 --- a/src/IconBoxAddRounded.tsx +++ b/src/IconBoxAddRounded.tsx @@ -8,4 +8,4 @@ const IconBoxAddRounded: React.FC = ({ ...props }) => ( ) -export { IconBoxAddRounded as default } +export default IconBoxAddRounded diff --git a/src/IconBoxAddRoundedFilled.tsx b/src/IconBoxAddRoundedFilled.tsx index 24ae1283f..a20acb74c 100644 --- a/src/IconBoxAddRoundedFilled.tsx +++ b/src/IconBoxAddRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconBoxAddRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconBoxAddRoundedFilled as default } +export default IconBoxAddRoundedFilled diff --git a/src/IconBoxAddSharp.tsx b/src/IconBoxAddSharp.tsx index d2281c13a..cf6852e64 100644 --- a/src/IconBoxAddSharp.tsx +++ b/src/IconBoxAddSharp.tsx @@ -8,4 +8,4 @@ const IconBoxAddSharp: React.FC = ({ ...props }) => ( ) -export { IconBoxAddSharp as default } +export default IconBoxAddSharp diff --git a/src/IconBoxAddSharpFilled.tsx b/src/IconBoxAddSharpFilled.tsx index 8fd5fb7e1..878c72d37 100644 --- a/src/IconBoxAddSharpFilled.tsx +++ b/src/IconBoxAddSharpFilled.tsx @@ -8,4 +8,4 @@ const IconBoxAddSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconBoxAddSharpFilled as default } +export default IconBoxAddSharpFilled diff --git a/src/IconBoxEditOutlined.tsx b/src/IconBoxEditOutlined.tsx index 5ef8bc9bb..7dec68baf 100644 --- a/src/IconBoxEditOutlined.tsx +++ b/src/IconBoxEditOutlined.tsx @@ -8,4 +8,4 @@ const IconBoxEditOutlined: React.FC = ({ ...props }) => ( ) -export { IconBoxEditOutlined as default } +export default IconBoxEditOutlined diff --git a/src/IconBoxEditOutlinedFilled.tsx b/src/IconBoxEditOutlinedFilled.tsx index faeccd82d..5624c5e89 100644 --- a/src/IconBoxEditOutlinedFilled.tsx +++ b/src/IconBoxEditOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconBoxEditOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconBoxEditOutlinedFilled as default } +export default IconBoxEditOutlinedFilled diff --git a/src/IconBoxEditRounded.tsx b/src/IconBoxEditRounded.tsx index 431a06156..4321ed245 100644 --- a/src/IconBoxEditRounded.tsx +++ b/src/IconBoxEditRounded.tsx @@ -8,4 +8,4 @@ const IconBoxEditRounded: React.FC = ({ ...props }) => ( ) -export { IconBoxEditRounded as default } +export default IconBoxEditRounded diff --git a/src/IconBoxEditRoundedFilled.tsx b/src/IconBoxEditRoundedFilled.tsx index 727e6087f..2483e6a4b 100644 --- a/src/IconBoxEditRoundedFilled.tsx +++ b/src/IconBoxEditRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconBoxEditRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconBoxEditRoundedFilled as default } +export default IconBoxEditRoundedFilled diff --git a/src/IconBoxEditSharp.tsx b/src/IconBoxEditSharp.tsx index 9560e89d5..469891f26 100644 --- a/src/IconBoxEditSharp.tsx +++ b/src/IconBoxEditSharp.tsx @@ -8,4 +8,4 @@ const IconBoxEditSharp: React.FC = ({ ...props }) => ( ) -export { IconBoxEditSharp as default } +export default IconBoxEditSharp diff --git a/src/IconBoxEditSharpFilled.tsx b/src/IconBoxEditSharpFilled.tsx index 657d9ec58..6745d3dda 100644 --- a/src/IconBoxEditSharpFilled.tsx +++ b/src/IconBoxEditSharpFilled.tsx @@ -8,4 +8,4 @@ const IconBoxEditSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconBoxEditSharpFilled as default } +export default IconBoxEditSharpFilled diff --git a/src/IconBoxOutlined.tsx b/src/IconBoxOutlined.tsx index 03ca0c0a7..a731a413e 100644 --- a/src/IconBoxOutlined.tsx +++ b/src/IconBoxOutlined.tsx @@ -8,4 +8,4 @@ const IconBoxOutlined: React.FC = ({ ...props }) => ( ) -export { IconBoxOutlined as default } +export default IconBoxOutlined diff --git a/src/IconBoxOutlinedFilled.tsx b/src/IconBoxOutlinedFilled.tsx index 3340915ea..7e767215a 100644 --- a/src/IconBoxOutlinedFilled.tsx +++ b/src/IconBoxOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconBoxOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconBoxOutlinedFilled as default } +export default IconBoxOutlinedFilled diff --git a/src/IconBoxRounded.tsx b/src/IconBoxRounded.tsx index 519a7aaf2..96a0ba571 100644 --- a/src/IconBoxRounded.tsx +++ b/src/IconBoxRounded.tsx @@ -8,4 +8,4 @@ const IconBoxRounded: React.FC = ({ ...props }) => ( ) -export { IconBoxRounded as default } +export default IconBoxRounded diff --git a/src/IconBoxRoundedFilled.tsx b/src/IconBoxRoundedFilled.tsx index 51562a290..f835c5b30 100644 --- a/src/IconBoxRoundedFilled.tsx +++ b/src/IconBoxRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconBoxRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconBoxRoundedFilled as default } +export default IconBoxRoundedFilled diff --git a/src/IconBoxSharp.tsx b/src/IconBoxSharp.tsx index e3846507b..abf93be9b 100644 --- a/src/IconBoxSharp.tsx +++ b/src/IconBoxSharp.tsx @@ -8,4 +8,4 @@ const IconBoxSharp: React.FC = ({ ...props }) => ( ) -export { IconBoxSharp as default } +export default IconBoxSharp diff --git a/src/IconBoxSharpFilled.tsx b/src/IconBoxSharpFilled.tsx index 78e5ae414..2452bcaf1 100644 --- a/src/IconBoxSharpFilled.tsx +++ b/src/IconBoxSharpFilled.tsx @@ -8,4 +8,4 @@ const IconBoxSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconBoxSharpFilled as default } +export default IconBoxSharpFilled diff --git a/src/IconBoyOutlined.tsx b/src/IconBoyOutlined.tsx index f022533bf..a001410f3 100644 --- a/src/IconBoyOutlined.tsx +++ b/src/IconBoyOutlined.tsx @@ -8,4 +8,4 @@ const IconBoyOutlined: React.FC = ({ ...props }) => ( ) -export { IconBoyOutlined as default } +export default IconBoyOutlined diff --git a/src/IconBoyOutlinedFilled.tsx b/src/IconBoyOutlinedFilled.tsx index 9aa04c944..f2b7fb172 100644 --- a/src/IconBoyOutlinedFilled.tsx +++ b/src/IconBoyOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconBoyOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconBoyOutlinedFilled as default } +export default IconBoyOutlinedFilled diff --git a/src/IconBoyRounded.tsx b/src/IconBoyRounded.tsx index 792863675..6e2def00c 100644 --- a/src/IconBoyRounded.tsx +++ b/src/IconBoyRounded.tsx @@ -8,4 +8,4 @@ const IconBoyRounded: React.FC = ({ ...props }) => ( ) -export { IconBoyRounded as default } +export default IconBoyRounded diff --git a/src/IconBoyRoundedFilled.tsx b/src/IconBoyRoundedFilled.tsx index 70585e6d3..bd1392414 100644 --- a/src/IconBoyRoundedFilled.tsx +++ b/src/IconBoyRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconBoyRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconBoyRoundedFilled as default } +export default IconBoyRoundedFilled diff --git a/src/IconBoySharp.tsx b/src/IconBoySharp.tsx index 342f7db3f..6fa3e5907 100644 --- a/src/IconBoySharp.tsx +++ b/src/IconBoySharp.tsx @@ -8,4 +8,4 @@ const IconBoySharp: React.FC = ({ ...props }) => ( ) -export { IconBoySharp as default } +export default IconBoySharp diff --git a/src/IconBoySharpFilled.tsx b/src/IconBoySharpFilled.tsx index 34e1a9ba3..b733bc482 100644 --- a/src/IconBoySharpFilled.tsx +++ b/src/IconBoySharpFilled.tsx @@ -8,4 +8,4 @@ const IconBoySharpFilled: React.FC = ({ ...props }) => ( ) -export { IconBoySharpFilled as default } +export default IconBoySharpFilled diff --git a/src/IconBrandAwarenessOutlined.tsx b/src/IconBrandAwarenessOutlined.tsx index 6165fe2d9..748b9e42d 100644 --- a/src/IconBrandAwarenessOutlined.tsx +++ b/src/IconBrandAwarenessOutlined.tsx @@ -8,4 +8,4 @@ const IconBrandAwarenessOutlined: React.FC = ({ ...props }) => ( ) -export { IconBrandAwarenessOutlined as default } +export default IconBrandAwarenessOutlined diff --git a/src/IconBrandAwarenessOutlinedFilled.tsx b/src/IconBrandAwarenessOutlinedFilled.tsx index ef7853e12..70793d25d 100644 --- a/src/IconBrandAwarenessOutlinedFilled.tsx +++ b/src/IconBrandAwarenessOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconBrandAwarenessOutlinedFilled: React.FC = ({ ) -export { IconBrandAwarenessOutlinedFilled as default } +export default IconBrandAwarenessOutlinedFilled diff --git a/src/IconBrandAwarenessRounded.tsx b/src/IconBrandAwarenessRounded.tsx index 75bd82ea7..2f1c249f4 100644 --- a/src/IconBrandAwarenessRounded.tsx +++ b/src/IconBrandAwarenessRounded.tsx @@ -8,4 +8,4 @@ const IconBrandAwarenessRounded: React.FC = ({ ...props }) => ( ) -export { IconBrandAwarenessRounded as default } +export default IconBrandAwarenessRounded diff --git a/src/IconBrandAwarenessRoundedFilled.tsx b/src/IconBrandAwarenessRoundedFilled.tsx index d42b4a314..980e3958e 100644 --- a/src/IconBrandAwarenessRoundedFilled.tsx +++ b/src/IconBrandAwarenessRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconBrandAwarenessRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconBrandAwarenessRoundedFilled as default } +export default IconBrandAwarenessRoundedFilled diff --git a/src/IconBrandAwarenessSharp.tsx b/src/IconBrandAwarenessSharp.tsx index 1c850a4af..83e9d5e05 100644 --- a/src/IconBrandAwarenessSharp.tsx +++ b/src/IconBrandAwarenessSharp.tsx @@ -8,4 +8,4 @@ const IconBrandAwarenessSharp: React.FC = ({ ...props }) => ( ) -export { IconBrandAwarenessSharp as default } +export default IconBrandAwarenessSharp diff --git a/src/IconBrandAwarenessSharpFilled.tsx b/src/IconBrandAwarenessSharpFilled.tsx index ef59cbca8..c6a31f9b3 100644 --- a/src/IconBrandAwarenessSharpFilled.tsx +++ b/src/IconBrandAwarenessSharpFilled.tsx @@ -8,4 +8,4 @@ const IconBrandAwarenessSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconBrandAwarenessSharpFilled as default } +export default IconBrandAwarenessSharpFilled diff --git a/src/IconBrandFamilyOutlined.tsx b/src/IconBrandFamilyOutlined.tsx index 8b671d498..ba0e18898 100644 --- a/src/IconBrandFamilyOutlined.tsx +++ b/src/IconBrandFamilyOutlined.tsx @@ -8,4 +8,4 @@ const IconBrandFamilyOutlined: React.FC = ({ ...props }) => ( ) -export { IconBrandFamilyOutlined as default } +export default IconBrandFamilyOutlined diff --git a/src/IconBrandFamilyOutlinedFilled.tsx b/src/IconBrandFamilyOutlinedFilled.tsx index 01a09af60..163fd8935 100644 --- a/src/IconBrandFamilyOutlinedFilled.tsx +++ b/src/IconBrandFamilyOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconBrandFamilyOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconBrandFamilyOutlinedFilled as default } +export default IconBrandFamilyOutlinedFilled diff --git a/src/IconBrandFamilyRounded.tsx b/src/IconBrandFamilyRounded.tsx index 6404e0183..597d6a00e 100644 --- a/src/IconBrandFamilyRounded.tsx +++ b/src/IconBrandFamilyRounded.tsx @@ -8,4 +8,4 @@ const IconBrandFamilyRounded: React.FC = ({ ...props }) => ( ) -export { IconBrandFamilyRounded as default } +export default IconBrandFamilyRounded diff --git a/src/IconBrandFamilyRoundedFilled.tsx b/src/IconBrandFamilyRoundedFilled.tsx index 1540835e2..76692adec 100644 --- a/src/IconBrandFamilyRoundedFilled.tsx +++ b/src/IconBrandFamilyRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconBrandFamilyRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconBrandFamilyRoundedFilled as default } +export default IconBrandFamilyRoundedFilled diff --git a/src/IconBrandFamilySharp.tsx b/src/IconBrandFamilySharp.tsx index 81eb92bdc..409bb18fc 100644 --- a/src/IconBrandFamilySharp.tsx +++ b/src/IconBrandFamilySharp.tsx @@ -8,4 +8,4 @@ const IconBrandFamilySharp: React.FC = ({ ...props }) => ( ) -export { IconBrandFamilySharp as default } +export default IconBrandFamilySharp diff --git a/src/IconBrandFamilySharpFilled.tsx b/src/IconBrandFamilySharpFilled.tsx index a283bca88..24443fa86 100644 --- a/src/IconBrandFamilySharpFilled.tsx +++ b/src/IconBrandFamilySharpFilled.tsx @@ -8,4 +8,4 @@ const IconBrandFamilySharpFilled: React.FC = ({ ...props }) => ( ) -export { IconBrandFamilySharpFilled as default } +export default IconBrandFamilySharpFilled diff --git a/src/IconBrandingWatermarkOutlined.tsx b/src/IconBrandingWatermarkOutlined.tsx index 138bc014a..47f2c889b 100644 --- a/src/IconBrandingWatermarkOutlined.tsx +++ b/src/IconBrandingWatermarkOutlined.tsx @@ -8,4 +8,4 @@ const IconBrandingWatermarkOutlined: React.FC = ({ ...props }) => ( ) -export { IconBrandingWatermarkOutlined as default } +export default IconBrandingWatermarkOutlined diff --git a/src/IconBrandingWatermarkOutlinedFilled.tsx b/src/IconBrandingWatermarkOutlinedFilled.tsx index 2caab6e79..e6b633fe2 100644 --- a/src/IconBrandingWatermarkOutlinedFilled.tsx +++ b/src/IconBrandingWatermarkOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconBrandingWatermarkOutlinedFilled: React.FC = ({ ) -export { IconBrandingWatermarkOutlinedFilled as default } +export default IconBrandingWatermarkOutlinedFilled diff --git a/src/IconBrandingWatermarkRounded.tsx b/src/IconBrandingWatermarkRounded.tsx index 455e8bc15..d718e2f5a 100644 --- a/src/IconBrandingWatermarkRounded.tsx +++ b/src/IconBrandingWatermarkRounded.tsx @@ -8,4 +8,4 @@ const IconBrandingWatermarkRounded: React.FC = ({ ...props }) => ( ) -export { IconBrandingWatermarkRounded as default } +export default IconBrandingWatermarkRounded diff --git a/src/IconBrandingWatermarkRoundedFilled.tsx b/src/IconBrandingWatermarkRoundedFilled.tsx index 3a39d6a14..5daebe1c9 100644 --- a/src/IconBrandingWatermarkRoundedFilled.tsx +++ b/src/IconBrandingWatermarkRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconBrandingWatermarkRoundedFilled: React.FC = ({ ) -export { IconBrandingWatermarkRoundedFilled as default } +export default IconBrandingWatermarkRoundedFilled diff --git a/src/IconBrandingWatermarkSharp.tsx b/src/IconBrandingWatermarkSharp.tsx index afa3f16d0..156b067fe 100644 --- a/src/IconBrandingWatermarkSharp.tsx +++ b/src/IconBrandingWatermarkSharp.tsx @@ -8,4 +8,4 @@ const IconBrandingWatermarkSharp: React.FC = ({ ...props }) => ( ) -export { IconBrandingWatermarkSharp as default } +export default IconBrandingWatermarkSharp diff --git a/src/IconBrandingWatermarkSharpFilled.tsx b/src/IconBrandingWatermarkSharpFilled.tsx index 6cfb2316f..6b06d7b8e 100644 --- a/src/IconBrandingWatermarkSharpFilled.tsx +++ b/src/IconBrandingWatermarkSharpFilled.tsx @@ -10,4 +10,4 @@ const IconBrandingWatermarkSharpFilled: React.FC = ({ ) -export { IconBrandingWatermarkSharpFilled as default } +export default IconBrandingWatermarkSharpFilled diff --git a/src/IconBreakfastDiningOutlined.tsx b/src/IconBreakfastDiningOutlined.tsx index b6ef1be39..a029d5585 100644 --- a/src/IconBreakfastDiningOutlined.tsx +++ b/src/IconBreakfastDiningOutlined.tsx @@ -8,4 +8,4 @@ const IconBreakfastDiningOutlined: React.FC = ({ ...props }) => ( ) -export { IconBreakfastDiningOutlined as default } +export default IconBreakfastDiningOutlined diff --git a/src/IconBreakfastDiningOutlinedFilled.tsx b/src/IconBreakfastDiningOutlinedFilled.tsx index b55e474d7..d5161528f 100644 --- a/src/IconBreakfastDiningOutlinedFilled.tsx +++ b/src/IconBreakfastDiningOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconBreakfastDiningOutlinedFilled: React.FC = ({ ) -export { IconBreakfastDiningOutlinedFilled as default } +export default IconBreakfastDiningOutlinedFilled diff --git a/src/IconBreakfastDiningRounded.tsx b/src/IconBreakfastDiningRounded.tsx index 78f07e707..e934a446b 100644 --- a/src/IconBreakfastDiningRounded.tsx +++ b/src/IconBreakfastDiningRounded.tsx @@ -8,4 +8,4 @@ const IconBreakfastDiningRounded: React.FC = ({ ...props }) => ( ) -export { IconBreakfastDiningRounded as default } +export default IconBreakfastDiningRounded diff --git a/src/IconBreakfastDiningRoundedFilled.tsx b/src/IconBreakfastDiningRoundedFilled.tsx index d6106de7a..3ebc959ba 100644 --- a/src/IconBreakfastDiningRoundedFilled.tsx +++ b/src/IconBreakfastDiningRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconBreakfastDiningRoundedFilled: React.FC = ({ ) -export { IconBreakfastDiningRoundedFilled as default } +export default IconBreakfastDiningRoundedFilled diff --git a/src/IconBreakfastDiningSharp.tsx b/src/IconBreakfastDiningSharp.tsx index 432ad24e5..78073a1d2 100644 --- a/src/IconBreakfastDiningSharp.tsx +++ b/src/IconBreakfastDiningSharp.tsx @@ -8,4 +8,4 @@ const IconBreakfastDiningSharp: React.FC = ({ ...props }) => ( ) -export { IconBreakfastDiningSharp as default } +export default IconBreakfastDiningSharp diff --git a/src/IconBreakfastDiningSharpFilled.tsx b/src/IconBreakfastDiningSharpFilled.tsx index f4fa1695f..d4a594cc6 100644 --- a/src/IconBreakfastDiningSharpFilled.tsx +++ b/src/IconBreakfastDiningSharpFilled.tsx @@ -8,4 +8,4 @@ const IconBreakfastDiningSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconBreakfastDiningSharpFilled as default } +export default IconBreakfastDiningSharpFilled diff --git a/src/IconBreakingNewsAlt1Outlined.tsx b/src/IconBreakingNewsAlt1Outlined.tsx index 8b0a7e1a0..7bf7c014f 100644 --- a/src/IconBreakingNewsAlt1Outlined.tsx +++ b/src/IconBreakingNewsAlt1Outlined.tsx @@ -8,4 +8,4 @@ const IconBreakingNewsAlt1Outlined: React.FC = ({ ...props }) => ( ) -export { IconBreakingNewsAlt1Outlined as default } +export default IconBreakingNewsAlt1Outlined diff --git a/src/IconBreakingNewsAlt1OutlinedFilled.tsx b/src/IconBreakingNewsAlt1OutlinedFilled.tsx index ff1132e76..aa48bd6b0 100644 --- a/src/IconBreakingNewsAlt1OutlinedFilled.tsx +++ b/src/IconBreakingNewsAlt1OutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconBreakingNewsAlt1OutlinedFilled: React.FC = ({ ) -export { IconBreakingNewsAlt1OutlinedFilled as default } +export default IconBreakingNewsAlt1OutlinedFilled diff --git a/src/IconBreakingNewsAlt1Rounded.tsx b/src/IconBreakingNewsAlt1Rounded.tsx index 896a975a7..42d2f3a5a 100644 --- a/src/IconBreakingNewsAlt1Rounded.tsx +++ b/src/IconBreakingNewsAlt1Rounded.tsx @@ -8,4 +8,4 @@ const IconBreakingNewsAlt1Rounded: React.FC = ({ ...props }) => ( ) -export { IconBreakingNewsAlt1Rounded as default } +export default IconBreakingNewsAlt1Rounded diff --git a/src/IconBreakingNewsAlt1RoundedFilled.tsx b/src/IconBreakingNewsAlt1RoundedFilled.tsx index ea5cee7c1..0d5829c71 100644 --- a/src/IconBreakingNewsAlt1RoundedFilled.tsx +++ b/src/IconBreakingNewsAlt1RoundedFilled.tsx @@ -10,4 +10,4 @@ const IconBreakingNewsAlt1RoundedFilled: React.FC = ({ ) -export { IconBreakingNewsAlt1RoundedFilled as default } +export default IconBreakingNewsAlt1RoundedFilled diff --git a/src/IconBreakingNewsAlt1Sharp.tsx b/src/IconBreakingNewsAlt1Sharp.tsx index c7010615d..ecdcf053b 100644 --- a/src/IconBreakingNewsAlt1Sharp.tsx +++ b/src/IconBreakingNewsAlt1Sharp.tsx @@ -8,4 +8,4 @@ const IconBreakingNewsAlt1Sharp: React.FC = ({ ...props }) => ( ) -export { IconBreakingNewsAlt1Sharp as default } +export default IconBreakingNewsAlt1Sharp diff --git a/src/IconBreakingNewsAlt1SharpFilled.tsx b/src/IconBreakingNewsAlt1SharpFilled.tsx index 654f4f82c..e1cea2c08 100644 --- a/src/IconBreakingNewsAlt1SharpFilled.tsx +++ b/src/IconBreakingNewsAlt1SharpFilled.tsx @@ -8,4 +8,4 @@ const IconBreakingNewsAlt1SharpFilled: React.FC = ({ ...props }) => ( ) -export { IconBreakingNewsAlt1SharpFilled as default } +export default IconBreakingNewsAlt1SharpFilled diff --git a/src/IconBreakingNewsOutlined.tsx b/src/IconBreakingNewsOutlined.tsx index c4c4810ed..92a165e35 100644 --- a/src/IconBreakingNewsOutlined.tsx +++ b/src/IconBreakingNewsOutlined.tsx @@ -8,4 +8,4 @@ const IconBreakingNewsOutlined: React.FC = ({ ...props }) => ( ) -export { IconBreakingNewsOutlined as default } +export default IconBreakingNewsOutlined diff --git a/src/IconBreakingNewsOutlinedFilled.tsx b/src/IconBreakingNewsOutlinedFilled.tsx index 18702369f..51d9c3237 100644 --- a/src/IconBreakingNewsOutlinedFilled.tsx +++ b/src/IconBreakingNewsOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconBreakingNewsOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconBreakingNewsOutlinedFilled as default } +export default IconBreakingNewsOutlinedFilled diff --git a/src/IconBreakingNewsRounded.tsx b/src/IconBreakingNewsRounded.tsx index 8be554060..9a486fc41 100644 --- a/src/IconBreakingNewsRounded.tsx +++ b/src/IconBreakingNewsRounded.tsx @@ -8,4 +8,4 @@ const IconBreakingNewsRounded: React.FC = ({ ...props }) => ( ) -export { IconBreakingNewsRounded as default } +export default IconBreakingNewsRounded diff --git a/src/IconBreakingNewsRoundedFilled.tsx b/src/IconBreakingNewsRoundedFilled.tsx index b70d403c4..dc1c39b47 100644 --- a/src/IconBreakingNewsRoundedFilled.tsx +++ b/src/IconBreakingNewsRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconBreakingNewsRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconBreakingNewsRoundedFilled as default } +export default IconBreakingNewsRoundedFilled diff --git a/src/IconBreakingNewsSharp.tsx b/src/IconBreakingNewsSharp.tsx index dc1ee8454..772a00e8a 100644 --- a/src/IconBreakingNewsSharp.tsx +++ b/src/IconBreakingNewsSharp.tsx @@ -8,4 +8,4 @@ const IconBreakingNewsSharp: React.FC = ({ ...props }) => ( ) -export { IconBreakingNewsSharp as default } +export default IconBreakingNewsSharp diff --git a/src/IconBreakingNewsSharpFilled.tsx b/src/IconBreakingNewsSharpFilled.tsx index eb2fa6aef..c67d0a4f5 100644 --- a/src/IconBreakingNewsSharpFilled.tsx +++ b/src/IconBreakingNewsSharpFilled.tsx @@ -8,4 +8,4 @@ const IconBreakingNewsSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconBreakingNewsSharpFilled as default } +export default IconBreakingNewsSharpFilled diff --git a/src/IconBreastfeedingOutlined.tsx b/src/IconBreastfeedingOutlined.tsx index cc072fe6c..aa6b63fa2 100644 --- a/src/IconBreastfeedingOutlined.tsx +++ b/src/IconBreastfeedingOutlined.tsx @@ -8,4 +8,4 @@ const IconBreastfeedingOutlined: React.FC = ({ ...props }) => ( ) -export { IconBreastfeedingOutlined as default } +export default IconBreastfeedingOutlined diff --git a/src/IconBreastfeedingOutlinedFilled.tsx b/src/IconBreastfeedingOutlinedFilled.tsx index 36a500a95..cae5a9a02 100644 --- a/src/IconBreastfeedingOutlinedFilled.tsx +++ b/src/IconBreastfeedingOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconBreastfeedingOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconBreastfeedingOutlinedFilled as default } +export default IconBreastfeedingOutlinedFilled diff --git a/src/IconBreastfeedingRounded.tsx b/src/IconBreastfeedingRounded.tsx index ae516f96b..128c1122f 100644 --- a/src/IconBreastfeedingRounded.tsx +++ b/src/IconBreastfeedingRounded.tsx @@ -8,4 +8,4 @@ const IconBreastfeedingRounded: React.FC = ({ ...props }) => ( ) -export { IconBreastfeedingRounded as default } +export default IconBreastfeedingRounded diff --git a/src/IconBreastfeedingRoundedFilled.tsx b/src/IconBreastfeedingRoundedFilled.tsx index c771614b5..da536e63c 100644 --- a/src/IconBreastfeedingRoundedFilled.tsx +++ b/src/IconBreastfeedingRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconBreastfeedingRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconBreastfeedingRoundedFilled as default } +export default IconBreastfeedingRoundedFilled diff --git a/src/IconBreastfeedingSharp.tsx b/src/IconBreastfeedingSharp.tsx index 43c15e6fb..65338542e 100644 --- a/src/IconBreastfeedingSharp.tsx +++ b/src/IconBreastfeedingSharp.tsx @@ -8,4 +8,4 @@ const IconBreastfeedingSharp: React.FC = ({ ...props }) => ( ) -export { IconBreastfeedingSharp as default } +export default IconBreastfeedingSharp diff --git a/src/IconBreastfeedingSharpFilled.tsx b/src/IconBreastfeedingSharpFilled.tsx index fc2f9e1ae..bf4a20774 100644 --- a/src/IconBreastfeedingSharpFilled.tsx +++ b/src/IconBreastfeedingSharpFilled.tsx @@ -8,4 +8,4 @@ const IconBreastfeedingSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconBreastfeedingSharpFilled as default } +export default IconBreastfeedingSharpFilled diff --git a/src/IconBrightness1Outlined.tsx b/src/IconBrightness1Outlined.tsx index 0a348099f..883f3fdb8 100644 --- a/src/IconBrightness1Outlined.tsx +++ b/src/IconBrightness1Outlined.tsx @@ -8,4 +8,4 @@ const IconBrightness1Outlined: React.FC = ({ ...props }) => ( ) -export { IconBrightness1Outlined as default } +export default IconBrightness1Outlined diff --git a/src/IconBrightness1OutlinedFilled.tsx b/src/IconBrightness1OutlinedFilled.tsx index dd5d8ee58..5cabe8327 100644 --- a/src/IconBrightness1OutlinedFilled.tsx +++ b/src/IconBrightness1OutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconBrightness1OutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconBrightness1OutlinedFilled as default } +export default IconBrightness1OutlinedFilled diff --git a/src/IconBrightness1Rounded.tsx b/src/IconBrightness1Rounded.tsx index a8d3ffd05..a1503fc65 100644 --- a/src/IconBrightness1Rounded.tsx +++ b/src/IconBrightness1Rounded.tsx @@ -8,4 +8,4 @@ const IconBrightness1Rounded: React.FC = ({ ...props }) => ( ) -export { IconBrightness1Rounded as default } +export default IconBrightness1Rounded diff --git a/src/IconBrightness1RoundedFilled.tsx b/src/IconBrightness1RoundedFilled.tsx index 29a0d2750..03451e864 100644 --- a/src/IconBrightness1RoundedFilled.tsx +++ b/src/IconBrightness1RoundedFilled.tsx @@ -8,4 +8,4 @@ const IconBrightness1RoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconBrightness1RoundedFilled as default } +export default IconBrightness1RoundedFilled diff --git a/src/IconBrightness1Sharp.tsx b/src/IconBrightness1Sharp.tsx index 2a9c52b34..bbd88e6a1 100644 --- a/src/IconBrightness1Sharp.tsx +++ b/src/IconBrightness1Sharp.tsx @@ -8,4 +8,4 @@ const IconBrightness1Sharp: React.FC = ({ ...props }) => ( ) -export { IconBrightness1Sharp as default } +export default IconBrightness1Sharp diff --git a/src/IconBrightness1SharpFilled.tsx b/src/IconBrightness1SharpFilled.tsx index ce7c6b719..f35eb4059 100644 --- a/src/IconBrightness1SharpFilled.tsx +++ b/src/IconBrightness1SharpFilled.tsx @@ -8,4 +8,4 @@ const IconBrightness1SharpFilled: React.FC = ({ ...props }) => ( ) -export { IconBrightness1SharpFilled as default } +export default IconBrightness1SharpFilled diff --git a/src/IconBrightness2Outlined.tsx b/src/IconBrightness2Outlined.tsx index 08c1ac986..2cf97ff23 100644 --- a/src/IconBrightness2Outlined.tsx +++ b/src/IconBrightness2Outlined.tsx @@ -8,4 +8,4 @@ const IconBrightness2Outlined: React.FC = ({ ...props }) => ( ) -export { IconBrightness2Outlined as default } +export default IconBrightness2Outlined diff --git a/src/IconBrightness2OutlinedFilled.tsx b/src/IconBrightness2OutlinedFilled.tsx index 5390587d9..bf5d9d1e4 100644 --- a/src/IconBrightness2OutlinedFilled.tsx +++ b/src/IconBrightness2OutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconBrightness2OutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconBrightness2OutlinedFilled as default } +export default IconBrightness2OutlinedFilled diff --git a/src/IconBrightness2Rounded.tsx b/src/IconBrightness2Rounded.tsx index fb71a9e35..7e906d195 100644 --- a/src/IconBrightness2Rounded.tsx +++ b/src/IconBrightness2Rounded.tsx @@ -8,4 +8,4 @@ const IconBrightness2Rounded: React.FC = ({ ...props }) => ( ) -export { IconBrightness2Rounded as default } +export default IconBrightness2Rounded diff --git a/src/IconBrightness2RoundedFilled.tsx b/src/IconBrightness2RoundedFilled.tsx index 051b20fef..bf68b0191 100644 --- a/src/IconBrightness2RoundedFilled.tsx +++ b/src/IconBrightness2RoundedFilled.tsx @@ -8,4 +8,4 @@ const IconBrightness2RoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconBrightness2RoundedFilled as default } +export default IconBrightness2RoundedFilled diff --git a/src/IconBrightness2Sharp.tsx b/src/IconBrightness2Sharp.tsx index 45bc32853..a8d5a8fb3 100644 --- a/src/IconBrightness2Sharp.tsx +++ b/src/IconBrightness2Sharp.tsx @@ -8,4 +8,4 @@ const IconBrightness2Sharp: React.FC = ({ ...props }) => ( ) -export { IconBrightness2Sharp as default } +export default IconBrightness2Sharp diff --git a/src/IconBrightness2SharpFilled.tsx b/src/IconBrightness2SharpFilled.tsx index 5a9cd2287..17a5f259b 100644 --- a/src/IconBrightness2SharpFilled.tsx +++ b/src/IconBrightness2SharpFilled.tsx @@ -8,4 +8,4 @@ const IconBrightness2SharpFilled: React.FC = ({ ...props }) => ( ) -export { IconBrightness2SharpFilled as default } +export default IconBrightness2SharpFilled diff --git a/src/IconBrightness3Outlined.tsx b/src/IconBrightness3Outlined.tsx index 51660e98c..b73ec3961 100644 --- a/src/IconBrightness3Outlined.tsx +++ b/src/IconBrightness3Outlined.tsx @@ -8,4 +8,4 @@ const IconBrightness3Outlined: React.FC = ({ ...props }) => ( ) -export { IconBrightness3Outlined as default } +export default IconBrightness3Outlined diff --git a/src/IconBrightness3OutlinedFilled.tsx b/src/IconBrightness3OutlinedFilled.tsx index c03656aeb..9a04c1b95 100644 --- a/src/IconBrightness3OutlinedFilled.tsx +++ b/src/IconBrightness3OutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconBrightness3OutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconBrightness3OutlinedFilled as default } +export default IconBrightness3OutlinedFilled diff --git a/src/IconBrightness3Rounded.tsx b/src/IconBrightness3Rounded.tsx index e9ccf6427..7fc0a8076 100644 --- a/src/IconBrightness3Rounded.tsx +++ b/src/IconBrightness3Rounded.tsx @@ -8,4 +8,4 @@ const IconBrightness3Rounded: React.FC = ({ ...props }) => ( ) -export { IconBrightness3Rounded as default } +export default IconBrightness3Rounded diff --git a/src/IconBrightness3RoundedFilled.tsx b/src/IconBrightness3RoundedFilled.tsx index b5e135856..9f83afe09 100644 --- a/src/IconBrightness3RoundedFilled.tsx +++ b/src/IconBrightness3RoundedFilled.tsx @@ -8,4 +8,4 @@ const IconBrightness3RoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconBrightness3RoundedFilled as default } +export default IconBrightness3RoundedFilled diff --git a/src/IconBrightness3Sharp.tsx b/src/IconBrightness3Sharp.tsx index 833842b16..c05a47983 100644 --- a/src/IconBrightness3Sharp.tsx +++ b/src/IconBrightness3Sharp.tsx @@ -8,4 +8,4 @@ const IconBrightness3Sharp: React.FC = ({ ...props }) => ( ) -export { IconBrightness3Sharp as default } +export default IconBrightness3Sharp diff --git a/src/IconBrightness3SharpFilled.tsx b/src/IconBrightness3SharpFilled.tsx index b48ea2079..f44d4fa89 100644 --- a/src/IconBrightness3SharpFilled.tsx +++ b/src/IconBrightness3SharpFilled.tsx @@ -8,4 +8,4 @@ const IconBrightness3SharpFilled: React.FC = ({ ...props }) => ( ) -export { IconBrightness3SharpFilled as default } +export default IconBrightness3SharpFilled diff --git a/src/IconBrightness4Outlined.tsx b/src/IconBrightness4Outlined.tsx index 63840f384..8cbb561f3 100644 --- a/src/IconBrightness4Outlined.tsx +++ b/src/IconBrightness4Outlined.tsx @@ -8,4 +8,4 @@ const IconBrightness4Outlined: React.FC = ({ ...props }) => ( ) -export { IconBrightness4Outlined as default } +export default IconBrightness4Outlined diff --git a/src/IconBrightness4OutlinedFilled.tsx b/src/IconBrightness4OutlinedFilled.tsx index a8bcfb1b5..bd0bf5ffc 100644 --- a/src/IconBrightness4OutlinedFilled.tsx +++ b/src/IconBrightness4OutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconBrightness4OutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconBrightness4OutlinedFilled as default } +export default IconBrightness4OutlinedFilled diff --git a/src/IconBrightness4Rounded.tsx b/src/IconBrightness4Rounded.tsx index 371fa68fb..45a23fc9b 100644 --- a/src/IconBrightness4Rounded.tsx +++ b/src/IconBrightness4Rounded.tsx @@ -8,4 +8,4 @@ const IconBrightness4Rounded: React.FC = ({ ...props }) => ( ) -export { IconBrightness4Rounded as default } +export default IconBrightness4Rounded diff --git a/src/IconBrightness4RoundedFilled.tsx b/src/IconBrightness4RoundedFilled.tsx index 1b4eaf4a9..497a57c80 100644 --- a/src/IconBrightness4RoundedFilled.tsx +++ b/src/IconBrightness4RoundedFilled.tsx @@ -8,4 +8,4 @@ const IconBrightness4RoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconBrightness4RoundedFilled as default } +export default IconBrightness4RoundedFilled diff --git a/src/IconBrightness4Sharp.tsx b/src/IconBrightness4Sharp.tsx index 2a694435b..a4d9ec4de 100644 --- a/src/IconBrightness4Sharp.tsx +++ b/src/IconBrightness4Sharp.tsx @@ -8,4 +8,4 @@ const IconBrightness4Sharp: React.FC = ({ ...props }) => ( ) -export { IconBrightness4Sharp as default } +export default IconBrightness4Sharp diff --git a/src/IconBrightness4SharpFilled.tsx b/src/IconBrightness4SharpFilled.tsx index 2580921c4..f7c62c882 100644 --- a/src/IconBrightness4SharpFilled.tsx +++ b/src/IconBrightness4SharpFilled.tsx @@ -8,4 +8,4 @@ const IconBrightness4SharpFilled: React.FC = ({ ...props }) => ( ) -export { IconBrightness4SharpFilled as default } +export default IconBrightness4SharpFilled diff --git a/src/IconBrightness5Outlined.tsx b/src/IconBrightness5Outlined.tsx index 5ade02738..5f64fa1bd 100644 --- a/src/IconBrightness5Outlined.tsx +++ b/src/IconBrightness5Outlined.tsx @@ -8,4 +8,4 @@ const IconBrightness5Outlined: React.FC = ({ ...props }) => ( ) -export { IconBrightness5Outlined as default } +export default IconBrightness5Outlined diff --git a/src/IconBrightness5OutlinedFilled.tsx b/src/IconBrightness5OutlinedFilled.tsx index 7afcea7ab..cefd2e366 100644 --- a/src/IconBrightness5OutlinedFilled.tsx +++ b/src/IconBrightness5OutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconBrightness5OutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconBrightness5OutlinedFilled as default } +export default IconBrightness5OutlinedFilled diff --git a/src/IconBrightness5Rounded.tsx b/src/IconBrightness5Rounded.tsx index 4973191b8..c8553c244 100644 --- a/src/IconBrightness5Rounded.tsx +++ b/src/IconBrightness5Rounded.tsx @@ -8,4 +8,4 @@ const IconBrightness5Rounded: React.FC = ({ ...props }) => ( ) -export { IconBrightness5Rounded as default } +export default IconBrightness5Rounded diff --git a/src/IconBrightness5RoundedFilled.tsx b/src/IconBrightness5RoundedFilled.tsx index 6c0a2ee25..3e6596d24 100644 --- a/src/IconBrightness5RoundedFilled.tsx +++ b/src/IconBrightness5RoundedFilled.tsx @@ -8,4 +8,4 @@ const IconBrightness5RoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconBrightness5RoundedFilled as default } +export default IconBrightness5RoundedFilled diff --git a/src/IconBrightness5Sharp.tsx b/src/IconBrightness5Sharp.tsx index 12841d647..a53d58686 100644 --- a/src/IconBrightness5Sharp.tsx +++ b/src/IconBrightness5Sharp.tsx @@ -8,4 +8,4 @@ const IconBrightness5Sharp: React.FC = ({ ...props }) => ( ) -export { IconBrightness5Sharp as default } +export default IconBrightness5Sharp diff --git a/src/IconBrightness5SharpFilled.tsx b/src/IconBrightness5SharpFilled.tsx index 9ae0aefdf..e0aec8af1 100644 --- a/src/IconBrightness5SharpFilled.tsx +++ b/src/IconBrightness5SharpFilled.tsx @@ -8,4 +8,4 @@ const IconBrightness5SharpFilled: React.FC = ({ ...props }) => ( ) -export { IconBrightness5SharpFilled as default } +export default IconBrightness5SharpFilled diff --git a/src/IconBrightness6Outlined.tsx b/src/IconBrightness6Outlined.tsx index 635679359..6dfba4138 100644 --- a/src/IconBrightness6Outlined.tsx +++ b/src/IconBrightness6Outlined.tsx @@ -8,4 +8,4 @@ const IconBrightness6Outlined: React.FC = ({ ...props }) => ( ) -export { IconBrightness6Outlined as default } +export default IconBrightness6Outlined diff --git a/src/IconBrightness6OutlinedFilled.tsx b/src/IconBrightness6OutlinedFilled.tsx index 189362f31..b2c3e46d7 100644 --- a/src/IconBrightness6OutlinedFilled.tsx +++ b/src/IconBrightness6OutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconBrightness6OutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconBrightness6OutlinedFilled as default } +export default IconBrightness6OutlinedFilled diff --git a/src/IconBrightness6Rounded.tsx b/src/IconBrightness6Rounded.tsx index 50609a9eb..7bc3284f6 100644 --- a/src/IconBrightness6Rounded.tsx +++ b/src/IconBrightness6Rounded.tsx @@ -8,4 +8,4 @@ const IconBrightness6Rounded: React.FC = ({ ...props }) => ( ) -export { IconBrightness6Rounded as default } +export default IconBrightness6Rounded diff --git a/src/IconBrightness6RoundedFilled.tsx b/src/IconBrightness6RoundedFilled.tsx index 434eaf164..b52074df5 100644 --- a/src/IconBrightness6RoundedFilled.tsx +++ b/src/IconBrightness6RoundedFilled.tsx @@ -8,4 +8,4 @@ const IconBrightness6RoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconBrightness6RoundedFilled as default } +export default IconBrightness6RoundedFilled diff --git a/src/IconBrightness6Sharp.tsx b/src/IconBrightness6Sharp.tsx index cd9a7dc43..f54e9a404 100644 --- a/src/IconBrightness6Sharp.tsx +++ b/src/IconBrightness6Sharp.tsx @@ -8,4 +8,4 @@ const IconBrightness6Sharp: React.FC = ({ ...props }) => ( ) -export { IconBrightness6Sharp as default } +export default IconBrightness6Sharp diff --git a/src/IconBrightness6SharpFilled.tsx b/src/IconBrightness6SharpFilled.tsx index d86e87d6e..0ef7b09d7 100644 --- a/src/IconBrightness6SharpFilled.tsx +++ b/src/IconBrightness6SharpFilled.tsx @@ -8,4 +8,4 @@ const IconBrightness6SharpFilled: React.FC = ({ ...props }) => ( ) -export { IconBrightness6SharpFilled as default } +export default IconBrightness6SharpFilled diff --git a/src/IconBrightness7Outlined.tsx b/src/IconBrightness7Outlined.tsx index 418735650..37d8049a7 100644 --- a/src/IconBrightness7Outlined.tsx +++ b/src/IconBrightness7Outlined.tsx @@ -8,4 +8,4 @@ const IconBrightness7Outlined: React.FC = ({ ...props }) => ( ) -export { IconBrightness7Outlined as default } +export default IconBrightness7Outlined diff --git a/src/IconBrightness7OutlinedFilled.tsx b/src/IconBrightness7OutlinedFilled.tsx index e80cf633f..f7cff13ee 100644 --- a/src/IconBrightness7OutlinedFilled.tsx +++ b/src/IconBrightness7OutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconBrightness7OutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconBrightness7OutlinedFilled as default } +export default IconBrightness7OutlinedFilled diff --git a/src/IconBrightness7Rounded.tsx b/src/IconBrightness7Rounded.tsx index 3680b09b3..c115034d2 100644 --- a/src/IconBrightness7Rounded.tsx +++ b/src/IconBrightness7Rounded.tsx @@ -8,4 +8,4 @@ const IconBrightness7Rounded: React.FC = ({ ...props }) => ( ) -export { IconBrightness7Rounded as default } +export default IconBrightness7Rounded diff --git a/src/IconBrightness7RoundedFilled.tsx b/src/IconBrightness7RoundedFilled.tsx index 010fc3dc3..17efff18d 100644 --- a/src/IconBrightness7RoundedFilled.tsx +++ b/src/IconBrightness7RoundedFilled.tsx @@ -8,4 +8,4 @@ const IconBrightness7RoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconBrightness7RoundedFilled as default } +export default IconBrightness7RoundedFilled diff --git a/src/IconBrightness7Sharp.tsx b/src/IconBrightness7Sharp.tsx index 911aac422..38ec5252b 100644 --- a/src/IconBrightness7Sharp.tsx +++ b/src/IconBrightness7Sharp.tsx @@ -8,4 +8,4 @@ const IconBrightness7Sharp: React.FC = ({ ...props }) => ( ) -export { IconBrightness7Sharp as default } +export default IconBrightness7Sharp diff --git a/src/IconBrightness7SharpFilled.tsx b/src/IconBrightness7SharpFilled.tsx index db085a554..a5c764a18 100644 --- a/src/IconBrightness7SharpFilled.tsx +++ b/src/IconBrightness7SharpFilled.tsx @@ -8,4 +8,4 @@ const IconBrightness7SharpFilled: React.FC = ({ ...props }) => ( ) -export { IconBrightness7SharpFilled as default } +export default IconBrightness7SharpFilled diff --git a/src/IconBrightnessAlertOutlined.tsx b/src/IconBrightnessAlertOutlined.tsx index a458baef7..2489420ab 100644 --- a/src/IconBrightnessAlertOutlined.tsx +++ b/src/IconBrightnessAlertOutlined.tsx @@ -8,4 +8,4 @@ const IconBrightnessAlertOutlined: React.FC = ({ ...props }) => ( ) -export { IconBrightnessAlertOutlined as default } +export default IconBrightnessAlertOutlined diff --git a/src/IconBrightnessAlertOutlinedFilled.tsx b/src/IconBrightnessAlertOutlinedFilled.tsx index 45a5f9d60..d923f6e9c 100644 --- a/src/IconBrightnessAlertOutlinedFilled.tsx +++ b/src/IconBrightnessAlertOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconBrightnessAlertOutlinedFilled: React.FC = ({ ) -export { IconBrightnessAlertOutlinedFilled as default } +export default IconBrightnessAlertOutlinedFilled diff --git a/src/IconBrightnessAlertRounded.tsx b/src/IconBrightnessAlertRounded.tsx index 9dde97d03..56cb0c0e3 100644 --- a/src/IconBrightnessAlertRounded.tsx +++ b/src/IconBrightnessAlertRounded.tsx @@ -8,4 +8,4 @@ const IconBrightnessAlertRounded: React.FC = ({ ...props }) => ( ) -export { IconBrightnessAlertRounded as default } +export default IconBrightnessAlertRounded diff --git a/src/IconBrightnessAlertRoundedFilled.tsx b/src/IconBrightnessAlertRoundedFilled.tsx index fb923ecf6..26e0a63c6 100644 --- a/src/IconBrightnessAlertRoundedFilled.tsx +++ b/src/IconBrightnessAlertRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconBrightnessAlertRoundedFilled: React.FC = ({ ) -export { IconBrightnessAlertRoundedFilled as default } +export default IconBrightnessAlertRoundedFilled diff --git a/src/IconBrightnessAlertSharp.tsx b/src/IconBrightnessAlertSharp.tsx index eeacaf29f..8dbc6ff68 100644 --- a/src/IconBrightnessAlertSharp.tsx +++ b/src/IconBrightnessAlertSharp.tsx @@ -8,4 +8,4 @@ const IconBrightnessAlertSharp: React.FC = ({ ...props }) => ( ) -export { IconBrightnessAlertSharp as default } +export default IconBrightnessAlertSharp diff --git a/src/IconBrightnessAlertSharpFilled.tsx b/src/IconBrightnessAlertSharpFilled.tsx index 677d2691a..a5f667b60 100644 --- a/src/IconBrightnessAlertSharpFilled.tsx +++ b/src/IconBrightnessAlertSharpFilled.tsx @@ -8,4 +8,4 @@ const IconBrightnessAlertSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconBrightnessAlertSharpFilled as default } +export default IconBrightnessAlertSharpFilled diff --git a/src/IconBrightnessAutoOutlined.tsx b/src/IconBrightnessAutoOutlined.tsx index b62178f47..2e0b7b011 100644 --- a/src/IconBrightnessAutoOutlined.tsx +++ b/src/IconBrightnessAutoOutlined.tsx @@ -8,4 +8,4 @@ const IconBrightnessAutoOutlined: React.FC = ({ ...props }) => ( ) -export { IconBrightnessAutoOutlined as default } +export default IconBrightnessAutoOutlined diff --git a/src/IconBrightnessAutoOutlinedFilled.tsx b/src/IconBrightnessAutoOutlinedFilled.tsx index aa578d6c5..c6c4ff44f 100644 --- a/src/IconBrightnessAutoOutlinedFilled.tsx +++ b/src/IconBrightnessAutoOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconBrightnessAutoOutlinedFilled: React.FC = ({ ) -export { IconBrightnessAutoOutlinedFilled as default } +export default IconBrightnessAutoOutlinedFilled diff --git a/src/IconBrightnessAutoRounded.tsx b/src/IconBrightnessAutoRounded.tsx index e6820c12d..09112d643 100644 --- a/src/IconBrightnessAutoRounded.tsx +++ b/src/IconBrightnessAutoRounded.tsx @@ -8,4 +8,4 @@ const IconBrightnessAutoRounded: React.FC = ({ ...props }) => ( ) -export { IconBrightnessAutoRounded as default } +export default IconBrightnessAutoRounded diff --git a/src/IconBrightnessAutoRoundedFilled.tsx b/src/IconBrightnessAutoRoundedFilled.tsx index 8b754e20d..69182ef67 100644 --- a/src/IconBrightnessAutoRoundedFilled.tsx +++ b/src/IconBrightnessAutoRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconBrightnessAutoRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconBrightnessAutoRoundedFilled as default } +export default IconBrightnessAutoRoundedFilled diff --git a/src/IconBrightnessAutoSharp.tsx b/src/IconBrightnessAutoSharp.tsx index 59529ed5c..def49dca2 100644 --- a/src/IconBrightnessAutoSharp.tsx +++ b/src/IconBrightnessAutoSharp.tsx @@ -8,4 +8,4 @@ const IconBrightnessAutoSharp: React.FC = ({ ...props }) => ( ) -export { IconBrightnessAutoSharp as default } +export default IconBrightnessAutoSharp diff --git a/src/IconBrightnessAutoSharpFilled.tsx b/src/IconBrightnessAutoSharpFilled.tsx index 703688266..0f363d8a7 100644 --- a/src/IconBrightnessAutoSharpFilled.tsx +++ b/src/IconBrightnessAutoSharpFilled.tsx @@ -8,4 +8,4 @@ const IconBrightnessAutoSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconBrightnessAutoSharpFilled as default } +export default IconBrightnessAutoSharpFilled diff --git a/src/IconBrightnessEmptyOutlined.tsx b/src/IconBrightnessEmptyOutlined.tsx index c03ed0b85..f18404baf 100644 --- a/src/IconBrightnessEmptyOutlined.tsx +++ b/src/IconBrightnessEmptyOutlined.tsx @@ -8,4 +8,4 @@ const IconBrightnessEmptyOutlined: React.FC = ({ ...props }) => ( ) -export { IconBrightnessEmptyOutlined as default } +export default IconBrightnessEmptyOutlined diff --git a/src/IconBrightnessEmptyOutlinedFilled.tsx b/src/IconBrightnessEmptyOutlinedFilled.tsx index 0f57f721e..57410ca96 100644 --- a/src/IconBrightnessEmptyOutlinedFilled.tsx +++ b/src/IconBrightnessEmptyOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconBrightnessEmptyOutlinedFilled: React.FC = ({ ) -export { IconBrightnessEmptyOutlinedFilled as default } +export default IconBrightnessEmptyOutlinedFilled diff --git a/src/IconBrightnessEmptyRounded.tsx b/src/IconBrightnessEmptyRounded.tsx index 777783b8d..1cced7fb6 100644 --- a/src/IconBrightnessEmptyRounded.tsx +++ b/src/IconBrightnessEmptyRounded.tsx @@ -8,4 +8,4 @@ const IconBrightnessEmptyRounded: React.FC = ({ ...props }) => ( ) -export { IconBrightnessEmptyRounded as default } +export default IconBrightnessEmptyRounded diff --git a/src/IconBrightnessEmptyRoundedFilled.tsx b/src/IconBrightnessEmptyRoundedFilled.tsx index 3bdfa70a7..5e018f368 100644 --- a/src/IconBrightnessEmptyRoundedFilled.tsx +++ b/src/IconBrightnessEmptyRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconBrightnessEmptyRoundedFilled: React.FC = ({ ) -export { IconBrightnessEmptyRoundedFilled as default } +export default IconBrightnessEmptyRoundedFilled diff --git a/src/IconBrightnessEmptySharp.tsx b/src/IconBrightnessEmptySharp.tsx index 45e18c64f..2b103ebbf 100644 --- a/src/IconBrightnessEmptySharp.tsx +++ b/src/IconBrightnessEmptySharp.tsx @@ -8,4 +8,4 @@ const IconBrightnessEmptySharp: React.FC = ({ ...props }) => ( ) -export { IconBrightnessEmptySharp as default } +export default IconBrightnessEmptySharp diff --git a/src/IconBrightnessEmptySharpFilled.tsx b/src/IconBrightnessEmptySharpFilled.tsx index 8513927b5..1a4c47007 100644 --- a/src/IconBrightnessEmptySharpFilled.tsx +++ b/src/IconBrightnessEmptySharpFilled.tsx @@ -8,4 +8,4 @@ const IconBrightnessEmptySharpFilled: React.FC = ({ ...props }) => ( ) -export { IconBrightnessEmptySharpFilled as default } +export default IconBrightnessEmptySharpFilled diff --git a/src/IconBrightnessHighOutlined.tsx b/src/IconBrightnessHighOutlined.tsx index 58d8f5f47..c36d40a9a 100644 --- a/src/IconBrightnessHighOutlined.tsx +++ b/src/IconBrightnessHighOutlined.tsx @@ -8,4 +8,4 @@ const IconBrightnessHighOutlined: React.FC = ({ ...props }) => ( ) -export { IconBrightnessHighOutlined as default } +export default IconBrightnessHighOutlined diff --git a/src/IconBrightnessHighOutlinedFilled.tsx b/src/IconBrightnessHighOutlinedFilled.tsx index 6d2265be8..0873f6750 100644 --- a/src/IconBrightnessHighOutlinedFilled.tsx +++ b/src/IconBrightnessHighOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconBrightnessHighOutlinedFilled: React.FC = ({ ) -export { IconBrightnessHighOutlinedFilled as default } +export default IconBrightnessHighOutlinedFilled diff --git a/src/IconBrightnessHighRounded.tsx b/src/IconBrightnessHighRounded.tsx index deba3a0ce..baef16d20 100644 --- a/src/IconBrightnessHighRounded.tsx +++ b/src/IconBrightnessHighRounded.tsx @@ -8,4 +8,4 @@ const IconBrightnessHighRounded: React.FC = ({ ...props }) => ( ) -export { IconBrightnessHighRounded as default } +export default IconBrightnessHighRounded diff --git a/src/IconBrightnessHighRoundedFilled.tsx b/src/IconBrightnessHighRoundedFilled.tsx index 4e3960c20..246842708 100644 --- a/src/IconBrightnessHighRoundedFilled.tsx +++ b/src/IconBrightnessHighRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconBrightnessHighRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconBrightnessHighRoundedFilled as default } +export default IconBrightnessHighRoundedFilled diff --git a/src/IconBrightnessHighSharp.tsx b/src/IconBrightnessHighSharp.tsx index c23513d0b..ace4ca18c 100644 --- a/src/IconBrightnessHighSharp.tsx +++ b/src/IconBrightnessHighSharp.tsx @@ -8,4 +8,4 @@ const IconBrightnessHighSharp: React.FC = ({ ...props }) => ( ) -export { IconBrightnessHighSharp as default } +export default IconBrightnessHighSharp diff --git a/src/IconBrightnessHighSharpFilled.tsx b/src/IconBrightnessHighSharpFilled.tsx index 8ff39742a..0b9aaed52 100644 --- a/src/IconBrightnessHighSharpFilled.tsx +++ b/src/IconBrightnessHighSharpFilled.tsx @@ -8,4 +8,4 @@ const IconBrightnessHighSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconBrightnessHighSharpFilled as default } +export default IconBrightnessHighSharpFilled diff --git a/src/IconBrightnessLowOutlined.tsx b/src/IconBrightnessLowOutlined.tsx index 15b592363..d2b78cb77 100644 --- a/src/IconBrightnessLowOutlined.tsx +++ b/src/IconBrightnessLowOutlined.tsx @@ -8,4 +8,4 @@ const IconBrightnessLowOutlined: React.FC = ({ ...props }) => ( ) -export { IconBrightnessLowOutlined as default } +export default IconBrightnessLowOutlined diff --git a/src/IconBrightnessLowOutlinedFilled.tsx b/src/IconBrightnessLowOutlinedFilled.tsx index 1becfe278..54c4901d8 100644 --- a/src/IconBrightnessLowOutlinedFilled.tsx +++ b/src/IconBrightnessLowOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconBrightnessLowOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconBrightnessLowOutlinedFilled as default } +export default IconBrightnessLowOutlinedFilled diff --git a/src/IconBrightnessLowRounded.tsx b/src/IconBrightnessLowRounded.tsx index 0d5c42c90..540fd51d2 100644 --- a/src/IconBrightnessLowRounded.tsx +++ b/src/IconBrightnessLowRounded.tsx @@ -8,4 +8,4 @@ const IconBrightnessLowRounded: React.FC = ({ ...props }) => ( ) -export { IconBrightnessLowRounded as default } +export default IconBrightnessLowRounded diff --git a/src/IconBrightnessLowRoundedFilled.tsx b/src/IconBrightnessLowRoundedFilled.tsx index 977f5a98b..186bf845f 100644 --- a/src/IconBrightnessLowRoundedFilled.tsx +++ b/src/IconBrightnessLowRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconBrightnessLowRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconBrightnessLowRoundedFilled as default } +export default IconBrightnessLowRoundedFilled diff --git a/src/IconBrightnessLowSharp.tsx b/src/IconBrightnessLowSharp.tsx index eedca6162..127c94400 100644 --- a/src/IconBrightnessLowSharp.tsx +++ b/src/IconBrightnessLowSharp.tsx @@ -8,4 +8,4 @@ const IconBrightnessLowSharp: React.FC = ({ ...props }) => ( ) -export { IconBrightnessLowSharp as default } +export default IconBrightnessLowSharp diff --git a/src/IconBrightnessLowSharpFilled.tsx b/src/IconBrightnessLowSharpFilled.tsx index d363d373e..ec8cb47a0 100644 --- a/src/IconBrightnessLowSharpFilled.tsx +++ b/src/IconBrightnessLowSharpFilled.tsx @@ -8,4 +8,4 @@ const IconBrightnessLowSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconBrightnessLowSharpFilled as default } +export default IconBrightnessLowSharpFilled diff --git a/src/IconBrightnessMediumOutlined.tsx b/src/IconBrightnessMediumOutlined.tsx index 59d5fbba5..c4466ea7f 100644 --- a/src/IconBrightnessMediumOutlined.tsx +++ b/src/IconBrightnessMediumOutlined.tsx @@ -8,4 +8,4 @@ const IconBrightnessMediumOutlined: React.FC = ({ ...props }) => ( ) -export { IconBrightnessMediumOutlined as default } +export default IconBrightnessMediumOutlined diff --git a/src/IconBrightnessMediumOutlinedFilled.tsx b/src/IconBrightnessMediumOutlinedFilled.tsx index 507f68886..3ba04c244 100644 --- a/src/IconBrightnessMediumOutlinedFilled.tsx +++ b/src/IconBrightnessMediumOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconBrightnessMediumOutlinedFilled: React.FC = ({ ) -export { IconBrightnessMediumOutlinedFilled as default } +export default IconBrightnessMediumOutlinedFilled diff --git a/src/IconBrightnessMediumRounded.tsx b/src/IconBrightnessMediumRounded.tsx index 3a992ff74..40fa72c6c 100644 --- a/src/IconBrightnessMediumRounded.tsx +++ b/src/IconBrightnessMediumRounded.tsx @@ -8,4 +8,4 @@ const IconBrightnessMediumRounded: React.FC = ({ ...props }) => ( ) -export { IconBrightnessMediumRounded as default } +export default IconBrightnessMediumRounded diff --git a/src/IconBrightnessMediumRoundedFilled.tsx b/src/IconBrightnessMediumRoundedFilled.tsx index ebb0b1982..bb12072f7 100644 --- a/src/IconBrightnessMediumRoundedFilled.tsx +++ b/src/IconBrightnessMediumRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconBrightnessMediumRoundedFilled: React.FC = ({ ) -export { IconBrightnessMediumRoundedFilled as default } +export default IconBrightnessMediumRoundedFilled diff --git a/src/IconBrightnessMediumSharp.tsx b/src/IconBrightnessMediumSharp.tsx index 7dc8f4ef8..2de6698dc 100644 --- a/src/IconBrightnessMediumSharp.tsx +++ b/src/IconBrightnessMediumSharp.tsx @@ -8,4 +8,4 @@ const IconBrightnessMediumSharp: React.FC = ({ ...props }) => ( ) -export { IconBrightnessMediumSharp as default } +export default IconBrightnessMediumSharp diff --git a/src/IconBrightnessMediumSharpFilled.tsx b/src/IconBrightnessMediumSharpFilled.tsx index 3594b1ac3..4c0cbd8c3 100644 --- a/src/IconBrightnessMediumSharpFilled.tsx +++ b/src/IconBrightnessMediumSharpFilled.tsx @@ -8,4 +8,4 @@ const IconBrightnessMediumSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconBrightnessMediumSharpFilled as default } +export default IconBrightnessMediumSharpFilled diff --git a/src/IconBringYourOwnIpOutlined.tsx b/src/IconBringYourOwnIpOutlined.tsx index 7a3631b31..6711e2723 100644 --- a/src/IconBringYourOwnIpOutlined.tsx +++ b/src/IconBringYourOwnIpOutlined.tsx @@ -8,4 +8,4 @@ const IconBringYourOwnIpOutlined: React.FC = ({ ...props }) => ( ) -export { IconBringYourOwnIpOutlined as default } +export default IconBringYourOwnIpOutlined diff --git a/src/IconBringYourOwnIpOutlinedFilled.tsx b/src/IconBringYourOwnIpOutlinedFilled.tsx index 9b16a992c..b3600c60a 100644 --- a/src/IconBringYourOwnIpOutlinedFilled.tsx +++ b/src/IconBringYourOwnIpOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconBringYourOwnIpOutlinedFilled: React.FC = ({ ) -export { IconBringYourOwnIpOutlinedFilled as default } +export default IconBringYourOwnIpOutlinedFilled diff --git a/src/IconBringYourOwnIpRounded.tsx b/src/IconBringYourOwnIpRounded.tsx index a0d078249..0d3cdd636 100644 --- a/src/IconBringYourOwnIpRounded.tsx +++ b/src/IconBringYourOwnIpRounded.tsx @@ -8,4 +8,4 @@ const IconBringYourOwnIpRounded: React.FC = ({ ...props }) => ( ) -export { IconBringYourOwnIpRounded as default } +export default IconBringYourOwnIpRounded diff --git a/src/IconBringYourOwnIpRoundedFilled.tsx b/src/IconBringYourOwnIpRoundedFilled.tsx index 0f28da730..47f22d1d2 100644 --- a/src/IconBringYourOwnIpRoundedFilled.tsx +++ b/src/IconBringYourOwnIpRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconBringYourOwnIpRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconBringYourOwnIpRoundedFilled as default } +export default IconBringYourOwnIpRoundedFilled diff --git a/src/IconBringYourOwnIpSharp.tsx b/src/IconBringYourOwnIpSharp.tsx index 20ffd2557..69f4cd899 100644 --- a/src/IconBringYourOwnIpSharp.tsx +++ b/src/IconBringYourOwnIpSharp.tsx @@ -8,4 +8,4 @@ const IconBringYourOwnIpSharp: React.FC = ({ ...props }) => ( ) -export { IconBringYourOwnIpSharp as default } +export default IconBringYourOwnIpSharp diff --git a/src/IconBringYourOwnIpSharpFilled.tsx b/src/IconBringYourOwnIpSharpFilled.tsx index 130fb3c19..9c42e1059 100644 --- a/src/IconBringYourOwnIpSharpFilled.tsx +++ b/src/IconBringYourOwnIpSharpFilled.tsx @@ -8,4 +8,4 @@ const IconBringYourOwnIpSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconBringYourOwnIpSharpFilled as default } +export default IconBringYourOwnIpSharpFilled diff --git a/src/IconBroadcastOnHomeOutlined.tsx b/src/IconBroadcastOnHomeOutlined.tsx index db6b8f02b..2fc490d43 100644 --- a/src/IconBroadcastOnHomeOutlined.tsx +++ b/src/IconBroadcastOnHomeOutlined.tsx @@ -8,4 +8,4 @@ const IconBroadcastOnHomeOutlined: React.FC = ({ ...props }) => ( ) -export { IconBroadcastOnHomeOutlined as default } +export default IconBroadcastOnHomeOutlined diff --git a/src/IconBroadcastOnHomeOutlinedFilled.tsx b/src/IconBroadcastOnHomeOutlinedFilled.tsx index e1c731a56..cb1a69733 100644 --- a/src/IconBroadcastOnHomeOutlinedFilled.tsx +++ b/src/IconBroadcastOnHomeOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconBroadcastOnHomeOutlinedFilled: React.FC = ({ ) -export { IconBroadcastOnHomeOutlinedFilled as default } +export default IconBroadcastOnHomeOutlinedFilled diff --git a/src/IconBroadcastOnHomeRounded.tsx b/src/IconBroadcastOnHomeRounded.tsx index 6688ff59f..aa0f11822 100644 --- a/src/IconBroadcastOnHomeRounded.tsx +++ b/src/IconBroadcastOnHomeRounded.tsx @@ -8,4 +8,4 @@ const IconBroadcastOnHomeRounded: React.FC = ({ ...props }) => ( ) -export { IconBroadcastOnHomeRounded as default } +export default IconBroadcastOnHomeRounded diff --git a/src/IconBroadcastOnHomeRoundedFilled.tsx b/src/IconBroadcastOnHomeRoundedFilled.tsx index 3a01200e9..de5e53bcb 100644 --- a/src/IconBroadcastOnHomeRoundedFilled.tsx +++ b/src/IconBroadcastOnHomeRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconBroadcastOnHomeRoundedFilled: React.FC = ({ ) -export { IconBroadcastOnHomeRoundedFilled as default } +export default IconBroadcastOnHomeRoundedFilled diff --git a/src/IconBroadcastOnHomeSharp.tsx b/src/IconBroadcastOnHomeSharp.tsx index 40cf6075b..7798fa61d 100644 --- a/src/IconBroadcastOnHomeSharp.tsx +++ b/src/IconBroadcastOnHomeSharp.tsx @@ -8,4 +8,4 @@ const IconBroadcastOnHomeSharp: React.FC = ({ ...props }) => ( ) -export { IconBroadcastOnHomeSharp as default } +export default IconBroadcastOnHomeSharp diff --git a/src/IconBroadcastOnHomeSharpFilled.tsx b/src/IconBroadcastOnHomeSharpFilled.tsx index 4d6689598..6fed39ac2 100644 --- a/src/IconBroadcastOnHomeSharpFilled.tsx +++ b/src/IconBroadcastOnHomeSharpFilled.tsx @@ -8,4 +8,4 @@ const IconBroadcastOnHomeSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconBroadcastOnHomeSharpFilled as default } +export default IconBroadcastOnHomeSharpFilled diff --git a/src/IconBroadcastOnPersonalOutlined.tsx b/src/IconBroadcastOnPersonalOutlined.tsx index 69d571da8..dec2b533a 100644 --- a/src/IconBroadcastOnPersonalOutlined.tsx +++ b/src/IconBroadcastOnPersonalOutlined.tsx @@ -8,4 +8,4 @@ const IconBroadcastOnPersonalOutlined: React.FC = ({ ...props }) => ( ) -export { IconBroadcastOnPersonalOutlined as default } +export default IconBroadcastOnPersonalOutlined diff --git a/src/IconBroadcastOnPersonalOutlinedFilled.tsx b/src/IconBroadcastOnPersonalOutlinedFilled.tsx index 727577b5a..3fafea519 100644 --- a/src/IconBroadcastOnPersonalOutlinedFilled.tsx +++ b/src/IconBroadcastOnPersonalOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconBroadcastOnPersonalOutlinedFilled: React.FC = ({ ) -export { IconBroadcastOnPersonalOutlinedFilled as default } +export default IconBroadcastOnPersonalOutlinedFilled diff --git a/src/IconBroadcastOnPersonalRounded.tsx b/src/IconBroadcastOnPersonalRounded.tsx index 3f16b5aea..0c8a885fa 100644 --- a/src/IconBroadcastOnPersonalRounded.tsx +++ b/src/IconBroadcastOnPersonalRounded.tsx @@ -8,4 +8,4 @@ const IconBroadcastOnPersonalRounded: React.FC = ({ ...props }) => ( ) -export { IconBroadcastOnPersonalRounded as default } +export default IconBroadcastOnPersonalRounded diff --git a/src/IconBroadcastOnPersonalRoundedFilled.tsx b/src/IconBroadcastOnPersonalRoundedFilled.tsx index 12da46f8c..980f1b87a 100644 --- a/src/IconBroadcastOnPersonalRoundedFilled.tsx +++ b/src/IconBroadcastOnPersonalRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconBroadcastOnPersonalRoundedFilled: React.FC = ({ ) -export { IconBroadcastOnPersonalRoundedFilled as default } +export default IconBroadcastOnPersonalRoundedFilled diff --git a/src/IconBroadcastOnPersonalSharp.tsx b/src/IconBroadcastOnPersonalSharp.tsx index 0735aeed7..86d8ebf1f 100644 --- a/src/IconBroadcastOnPersonalSharp.tsx +++ b/src/IconBroadcastOnPersonalSharp.tsx @@ -8,4 +8,4 @@ const IconBroadcastOnPersonalSharp: React.FC = ({ ...props }) => ( ) -export { IconBroadcastOnPersonalSharp as default } +export default IconBroadcastOnPersonalSharp diff --git a/src/IconBroadcastOnPersonalSharpFilled.tsx b/src/IconBroadcastOnPersonalSharpFilled.tsx index 4633c45f1..d5c1b4a3e 100644 --- a/src/IconBroadcastOnPersonalSharpFilled.tsx +++ b/src/IconBroadcastOnPersonalSharpFilled.tsx @@ -10,4 +10,4 @@ const IconBroadcastOnPersonalSharpFilled: React.FC = ({ ) -export { IconBroadcastOnPersonalSharpFilled as default } +export default IconBroadcastOnPersonalSharpFilled diff --git a/src/IconBrokenImageOutlined.tsx b/src/IconBrokenImageOutlined.tsx index 27095aab3..eff029750 100644 --- a/src/IconBrokenImageOutlined.tsx +++ b/src/IconBrokenImageOutlined.tsx @@ -8,4 +8,4 @@ const IconBrokenImageOutlined: React.FC = ({ ...props }) => ( ) -export { IconBrokenImageOutlined as default } +export default IconBrokenImageOutlined diff --git a/src/IconBrokenImageOutlinedFilled.tsx b/src/IconBrokenImageOutlinedFilled.tsx index c6b83c8c5..eff44ff8f 100644 --- a/src/IconBrokenImageOutlinedFilled.tsx +++ b/src/IconBrokenImageOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconBrokenImageOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconBrokenImageOutlinedFilled as default } +export default IconBrokenImageOutlinedFilled diff --git a/src/IconBrokenImageRounded.tsx b/src/IconBrokenImageRounded.tsx index d5788b2b7..fef5a521f 100644 --- a/src/IconBrokenImageRounded.tsx +++ b/src/IconBrokenImageRounded.tsx @@ -8,4 +8,4 @@ const IconBrokenImageRounded: React.FC = ({ ...props }) => ( ) -export { IconBrokenImageRounded as default } +export default IconBrokenImageRounded diff --git a/src/IconBrokenImageRoundedFilled.tsx b/src/IconBrokenImageRoundedFilled.tsx index 8ebf29c84..74bb58948 100644 --- a/src/IconBrokenImageRoundedFilled.tsx +++ b/src/IconBrokenImageRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconBrokenImageRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconBrokenImageRoundedFilled as default } +export default IconBrokenImageRoundedFilled diff --git a/src/IconBrokenImageSharp.tsx b/src/IconBrokenImageSharp.tsx index fa9fa096b..c058b4795 100644 --- a/src/IconBrokenImageSharp.tsx +++ b/src/IconBrokenImageSharp.tsx @@ -8,4 +8,4 @@ const IconBrokenImageSharp: React.FC = ({ ...props }) => ( ) -export { IconBrokenImageSharp as default } +export default IconBrokenImageSharp diff --git a/src/IconBrokenImageSharpFilled.tsx b/src/IconBrokenImageSharpFilled.tsx index fd8680184..3632a4a47 100644 --- a/src/IconBrokenImageSharpFilled.tsx +++ b/src/IconBrokenImageSharpFilled.tsx @@ -8,4 +8,4 @@ const IconBrokenImageSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconBrokenImageSharpFilled as default } +export default IconBrokenImageSharpFilled diff --git a/src/IconBrowseActivityOutlined.tsx b/src/IconBrowseActivityOutlined.tsx index 7821ba145..ee4575622 100644 --- a/src/IconBrowseActivityOutlined.tsx +++ b/src/IconBrowseActivityOutlined.tsx @@ -8,4 +8,4 @@ const IconBrowseActivityOutlined: React.FC = ({ ...props }) => ( ) -export { IconBrowseActivityOutlined as default } +export default IconBrowseActivityOutlined diff --git a/src/IconBrowseActivityOutlinedFilled.tsx b/src/IconBrowseActivityOutlinedFilled.tsx index d5daaac55..e36727d47 100644 --- a/src/IconBrowseActivityOutlinedFilled.tsx +++ b/src/IconBrowseActivityOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconBrowseActivityOutlinedFilled: React.FC = ({ ) -export { IconBrowseActivityOutlinedFilled as default } +export default IconBrowseActivityOutlinedFilled diff --git a/src/IconBrowseActivityRounded.tsx b/src/IconBrowseActivityRounded.tsx index d59b00f2b..3cfa4385d 100644 --- a/src/IconBrowseActivityRounded.tsx +++ b/src/IconBrowseActivityRounded.tsx @@ -8,4 +8,4 @@ const IconBrowseActivityRounded: React.FC = ({ ...props }) => ( ) -export { IconBrowseActivityRounded as default } +export default IconBrowseActivityRounded diff --git a/src/IconBrowseActivityRoundedFilled.tsx b/src/IconBrowseActivityRoundedFilled.tsx index 5113c9bc3..3d480e3ca 100644 --- a/src/IconBrowseActivityRoundedFilled.tsx +++ b/src/IconBrowseActivityRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconBrowseActivityRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconBrowseActivityRoundedFilled as default } +export default IconBrowseActivityRoundedFilled diff --git a/src/IconBrowseActivitySharp.tsx b/src/IconBrowseActivitySharp.tsx index 5115193de..5a2648240 100644 --- a/src/IconBrowseActivitySharp.tsx +++ b/src/IconBrowseActivitySharp.tsx @@ -8,4 +8,4 @@ const IconBrowseActivitySharp: React.FC = ({ ...props }) => ( ) -export { IconBrowseActivitySharp as default } +export default IconBrowseActivitySharp diff --git a/src/IconBrowseActivitySharpFilled.tsx b/src/IconBrowseActivitySharpFilled.tsx index 3d999e122..32085f6e7 100644 --- a/src/IconBrowseActivitySharpFilled.tsx +++ b/src/IconBrowseActivitySharpFilled.tsx @@ -8,4 +8,4 @@ const IconBrowseActivitySharpFilled: React.FC = ({ ...props }) => ( ) -export { IconBrowseActivitySharpFilled as default } +export default IconBrowseActivitySharpFilled diff --git a/src/IconBrowseGalleryOutlined.tsx b/src/IconBrowseGalleryOutlined.tsx index 5eb66d073..a1febee25 100644 --- a/src/IconBrowseGalleryOutlined.tsx +++ b/src/IconBrowseGalleryOutlined.tsx @@ -8,4 +8,4 @@ const IconBrowseGalleryOutlined: React.FC = ({ ...props }) => ( ) -export { IconBrowseGalleryOutlined as default } +export default IconBrowseGalleryOutlined diff --git a/src/IconBrowseGalleryOutlinedFilled.tsx b/src/IconBrowseGalleryOutlinedFilled.tsx index 56ded4a01..cdfbacaef 100644 --- a/src/IconBrowseGalleryOutlinedFilled.tsx +++ b/src/IconBrowseGalleryOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconBrowseGalleryOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconBrowseGalleryOutlinedFilled as default } +export default IconBrowseGalleryOutlinedFilled diff --git a/src/IconBrowseGalleryRounded.tsx b/src/IconBrowseGalleryRounded.tsx index feebb799f..ede6bfa8c 100644 --- a/src/IconBrowseGalleryRounded.tsx +++ b/src/IconBrowseGalleryRounded.tsx @@ -8,4 +8,4 @@ const IconBrowseGalleryRounded: React.FC = ({ ...props }) => ( ) -export { IconBrowseGalleryRounded as default } +export default IconBrowseGalleryRounded diff --git a/src/IconBrowseGalleryRoundedFilled.tsx b/src/IconBrowseGalleryRoundedFilled.tsx index 365d78840..d388efb05 100644 --- a/src/IconBrowseGalleryRoundedFilled.tsx +++ b/src/IconBrowseGalleryRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconBrowseGalleryRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconBrowseGalleryRoundedFilled as default } +export default IconBrowseGalleryRoundedFilled diff --git a/src/IconBrowseGallerySharp.tsx b/src/IconBrowseGallerySharp.tsx index 1a577783a..125d3ff51 100644 --- a/src/IconBrowseGallerySharp.tsx +++ b/src/IconBrowseGallerySharp.tsx @@ -8,4 +8,4 @@ const IconBrowseGallerySharp: React.FC = ({ ...props }) => ( ) -export { IconBrowseGallerySharp as default } +export default IconBrowseGallerySharp diff --git a/src/IconBrowseGallerySharpFilled.tsx b/src/IconBrowseGallerySharpFilled.tsx index 7c450f384..a17da48e5 100644 --- a/src/IconBrowseGallerySharpFilled.tsx +++ b/src/IconBrowseGallerySharpFilled.tsx @@ -8,4 +8,4 @@ const IconBrowseGallerySharpFilled: React.FC = ({ ...props }) => ( ) -export { IconBrowseGallerySharpFilled as default } +export default IconBrowseGallerySharpFilled diff --git a/src/IconBrowseOutlined.tsx b/src/IconBrowseOutlined.tsx index 1bae98937..3d189e22c 100644 --- a/src/IconBrowseOutlined.tsx +++ b/src/IconBrowseOutlined.tsx @@ -8,4 +8,4 @@ const IconBrowseOutlined: React.FC = ({ ...props }) => ( ) -export { IconBrowseOutlined as default } +export default IconBrowseOutlined diff --git a/src/IconBrowseOutlinedFilled.tsx b/src/IconBrowseOutlinedFilled.tsx index aaf34b17c..f9c3b7566 100644 --- a/src/IconBrowseOutlinedFilled.tsx +++ b/src/IconBrowseOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconBrowseOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconBrowseOutlinedFilled as default } +export default IconBrowseOutlinedFilled diff --git a/src/IconBrowseRounded.tsx b/src/IconBrowseRounded.tsx index eb1de8aef..da0a46f88 100644 --- a/src/IconBrowseRounded.tsx +++ b/src/IconBrowseRounded.tsx @@ -8,4 +8,4 @@ const IconBrowseRounded: React.FC = ({ ...props }) => ( ) -export { IconBrowseRounded as default } +export default IconBrowseRounded diff --git a/src/IconBrowseRoundedFilled.tsx b/src/IconBrowseRoundedFilled.tsx index 47a343b92..ed9200931 100644 --- a/src/IconBrowseRoundedFilled.tsx +++ b/src/IconBrowseRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconBrowseRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconBrowseRoundedFilled as default } +export default IconBrowseRoundedFilled diff --git a/src/IconBrowseSharp.tsx b/src/IconBrowseSharp.tsx index e14a90ae9..4a6773e46 100644 --- a/src/IconBrowseSharp.tsx +++ b/src/IconBrowseSharp.tsx @@ -8,4 +8,4 @@ const IconBrowseSharp: React.FC = ({ ...props }) => ( ) -export { IconBrowseSharp as default } +export default IconBrowseSharp diff --git a/src/IconBrowseSharpFilled.tsx b/src/IconBrowseSharpFilled.tsx index bef963777..96a4d49ed 100644 --- a/src/IconBrowseSharpFilled.tsx +++ b/src/IconBrowseSharpFilled.tsx @@ -8,4 +8,4 @@ const IconBrowseSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconBrowseSharpFilled as default } +export default IconBrowseSharpFilled diff --git a/src/IconBrowserUpdatedOutlined.tsx b/src/IconBrowserUpdatedOutlined.tsx index 00bbe0400..796cc8cf3 100644 --- a/src/IconBrowserUpdatedOutlined.tsx +++ b/src/IconBrowserUpdatedOutlined.tsx @@ -8,4 +8,4 @@ const IconBrowserUpdatedOutlined: React.FC = ({ ...props }) => ( ) -export { IconBrowserUpdatedOutlined as default } +export default IconBrowserUpdatedOutlined diff --git a/src/IconBrowserUpdatedOutlinedFilled.tsx b/src/IconBrowserUpdatedOutlinedFilled.tsx index 475de666d..75cb271fe 100644 --- a/src/IconBrowserUpdatedOutlinedFilled.tsx +++ b/src/IconBrowserUpdatedOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconBrowserUpdatedOutlinedFilled: React.FC = ({ ) -export { IconBrowserUpdatedOutlinedFilled as default } +export default IconBrowserUpdatedOutlinedFilled diff --git a/src/IconBrowserUpdatedRounded.tsx b/src/IconBrowserUpdatedRounded.tsx index ef8a497c6..59f9caacc 100644 --- a/src/IconBrowserUpdatedRounded.tsx +++ b/src/IconBrowserUpdatedRounded.tsx @@ -8,4 +8,4 @@ const IconBrowserUpdatedRounded: React.FC = ({ ...props }) => ( ) -export { IconBrowserUpdatedRounded as default } +export default IconBrowserUpdatedRounded diff --git a/src/IconBrowserUpdatedRoundedFilled.tsx b/src/IconBrowserUpdatedRoundedFilled.tsx index e958d4b1a..87943d648 100644 --- a/src/IconBrowserUpdatedRoundedFilled.tsx +++ b/src/IconBrowserUpdatedRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconBrowserUpdatedRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconBrowserUpdatedRoundedFilled as default } +export default IconBrowserUpdatedRoundedFilled diff --git a/src/IconBrowserUpdatedSharp.tsx b/src/IconBrowserUpdatedSharp.tsx index eb6d8ef1d..faf954ede 100644 --- a/src/IconBrowserUpdatedSharp.tsx +++ b/src/IconBrowserUpdatedSharp.tsx @@ -8,4 +8,4 @@ const IconBrowserUpdatedSharp: React.FC = ({ ...props }) => ( ) -export { IconBrowserUpdatedSharp as default } +export default IconBrowserUpdatedSharp diff --git a/src/IconBrowserUpdatedSharpFilled.tsx b/src/IconBrowserUpdatedSharpFilled.tsx index 209a111f1..a87a548fc 100644 --- a/src/IconBrowserUpdatedSharpFilled.tsx +++ b/src/IconBrowserUpdatedSharpFilled.tsx @@ -8,4 +8,4 @@ const IconBrowserUpdatedSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconBrowserUpdatedSharpFilled as default } +export default IconBrowserUpdatedSharpFilled diff --git a/src/IconBrunchDiningOutlined.tsx b/src/IconBrunchDiningOutlined.tsx index 6c3216194..31433e4d3 100644 --- a/src/IconBrunchDiningOutlined.tsx +++ b/src/IconBrunchDiningOutlined.tsx @@ -8,4 +8,4 @@ const IconBrunchDiningOutlined: React.FC = ({ ...props }) => ( ) -export { IconBrunchDiningOutlined as default } +export default IconBrunchDiningOutlined diff --git a/src/IconBrunchDiningOutlinedFilled.tsx b/src/IconBrunchDiningOutlinedFilled.tsx index 149b734d8..5e33a7cdc 100644 --- a/src/IconBrunchDiningOutlinedFilled.tsx +++ b/src/IconBrunchDiningOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconBrunchDiningOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconBrunchDiningOutlinedFilled as default } +export default IconBrunchDiningOutlinedFilled diff --git a/src/IconBrunchDiningRounded.tsx b/src/IconBrunchDiningRounded.tsx index 675828ddb..850adc5e0 100644 --- a/src/IconBrunchDiningRounded.tsx +++ b/src/IconBrunchDiningRounded.tsx @@ -8,4 +8,4 @@ const IconBrunchDiningRounded: React.FC = ({ ...props }) => ( ) -export { IconBrunchDiningRounded as default } +export default IconBrunchDiningRounded diff --git a/src/IconBrunchDiningRoundedFilled.tsx b/src/IconBrunchDiningRoundedFilled.tsx index 4c7b033b6..968e67483 100644 --- a/src/IconBrunchDiningRoundedFilled.tsx +++ b/src/IconBrunchDiningRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconBrunchDiningRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconBrunchDiningRoundedFilled as default } +export default IconBrunchDiningRoundedFilled diff --git a/src/IconBrunchDiningSharp.tsx b/src/IconBrunchDiningSharp.tsx index 66f5e6a25..976820d8d 100644 --- a/src/IconBrunchDiningSharp.tsx +++ b/src/IconBrunchDiningSharp.tsx @@ -8,4 +8,4 @@ const IconBrunchDiningSharp: React.FC = ({ ...props }) => ( ) -export { IconBrunchDiningSharp as default } +export default IconBrunchDiningSharp diff --git a/src/IconBrunchDiningSharpFilled.tsx b/src/IconBrunchDiningSharpFilled.tsx index 2ed523f8e..793eca531 100644 --- a/src/IconBrunchDiningSharpFilled.tsx +++ b/src/IconBrunchDiningSharpFilled.tsx @@ -8,4 +8,4 @@ const IconBrunchDiningSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconBrunchDiningSharpFilled as default } +export default IconBrunchDiningSharpFilled diff --git a/src/IconBrushOutlined.tsx b/src/IconBrushOutlined.tsx index 3e8a0f3bf..b2c2dff5e 100644 --- a/src/IconBrushOutlined.tsx +++ b/src/IconBrushOutlined.tsx @@ -8,4 +8,4 @@ const IconBrushOutlined: React.FC = ({ ...props }) => ( ) -export { IconBrushOutlined as default } +export default IconBrushOutlined diff --git a/src/IconBrushOutlinedFilled.tsx b/src/IconBrushOutlinedFilled.tsx index 27a7470da..1565f9cdb 100644 --- a/src/IconBrushOutlinedFilled.tsx +++ b/src/IconBrushOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconBrushOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconBrushOutlinedFilled as default } +export default IconBrushOutlinedFilled diff --git a/src/IconBrushRounded.tsx b/src/IconBrushRounded.tsx index 26c577958..d703a3cbd 100644 --- a/src/IconBrushRounded.tsx +++ b/src/IconBrushRounded.tsx @@ -8,4 +8,4 @@ const IconBrushRounded: React.FC = ({ ...props }) => ( ) -export { IconBrushRounded as default } +export default IconBrushRounded diff --git a/src/IconBrushRoundedFilled.tsx b/src/IconBrushRoundedFilled.tsx index 7ec1fea50..febc725cf 100644 --- a/src/IconBrushRoundedFilled.tsx +++ b/src/IconBrushRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconBrushRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconBrushRoundedFilled as default } +export default IconBrushRoundedFilled diff --git a/src/IconBrushSharp.tsx b/src/IconBrushSharp.tsx index 8f87c5f84..dfb79af55 100644 --- a/src/IconBrushSharp.tsx +++ b/src/IconBrushSharp.tsx @@ -8,4 +8,4 @@ const IconBrushSharp: React.FC = ({ ...props }) => ( ) -export { IconBrushSharp as default } +export default IconBrushSharp diff --git a/src/IconBrushSharpFilled.tsx b/src/IconBrushSharpFilled.tsx index 28e5beb8b..4721db04a 100644 --- a/src/IconBrushSharpFilled.tsx +++ b/src/IconBrushSharpFilled.tsx @@ -8,4 +8,4 @@ const IconBrushSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconBrushSharpFilled as default } +export default IconBrushSharpFilled diff --git a/src/IconBubbleChartOutlined.tsx b/src/IconBubbleChartOutlined.tsx index 15dd7ce06..2f928612f 100644 --- a/src/IconBubbleChartOutlined.tsx +++ b/src/IconBubbleChartOutlined.tsx @@ -8,4 +8,4 @@ const IconBubbleChartOutlined: React.FC = ({ ...props }) => ( ) -export { IconBubbleChartOutlined as default } +export default IconBubbleChartOutlined diff --git a/src/IconBubbleChartOutlinedFilled.tsx b/src/IconBubbleChartOutlinedFilled.tsx index 6bdd07b8b..8cc9ecafc 100644 --- a/src/IconBubbleChartOutlinedFilled.tsx +++ b/src/IconBubbleChartOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconBubbleChartOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconBubbleChartOutlinedFilled as default } +export default IconBubbleChartOutlinedFilled diff --git a/src/IconBubbleChartRounded.tsx b/src/IconBubbleChartRounded.tsx index 4f3ce9e1a..8cec6a3f8 100644 --- a/src/IconBubbleChartRounded.tsx +++ b/src/IconBubbleChartRounded.tsx @@ -8,4 +8,4 @@ const IconBubbleChartRounded: React.FC = ({ ...props }) => ( ) -export { IconBubbleChartRounded as default } +export default IconBubbleChartRounded diff --git a/src/IconBubbleChartRoundedFilled.tsx b/src/IconBubbleChartRoundedFilled.tsx index b68b57947..20d2a81a3 100644 --- a/src/IconBubbleChartRoundedFilled.tsx +++ b/src/IconBubbleChartRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconBubbleChartRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconBubbleChartRoundedFilled as default } +export default IconBubbleChartRoundedFilled diff --git a/src/IconBubbleChartSharp.tsx b/src/IconBubbleChartSharp.tsx index 8e732694f..fc2b84207 100644 --- a/src/IconBubbleChartSharp.tsx +++ b/src/IconBubbleChartSharp.tsx @@ -8,4 +8,4 @@ const IconBubbleChartSharp: React.FC = ({ ...props }) => ( ) -export { IconBubbleChartSharp as default } +export default IconBubbleChartSharp diff --git a/src/IconBubbleChartSharpFilled.tsx b/src/IconBubbleChartSharpFilled.tsx index 4de8099e2..8ee9573b6 100644 --- a/src/IconBubbleChartSharpFilled.tsx +++ b/src/IconBubbleChartSharpFilled.tsx @@ -8,4 +8,4 @@ const IconBubbleChartSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconBubbleChartSharpFilled as default } +export default IconBubbleChartSharpFilled diff --git a/src/IconBubbleOutlined.tsx b/src/IconBubbleOutlined.tsx index 90739b7e2..ca1cd7568 100644 --- a/src/IconBubbleOutlined.tsx +++ b/src/IconBubbleOutlined.tsx @@ -8,4 +8,4 @@ const IconBubbleOutlined: React.FC = ({ ...props }) => ( ) -export { IconBubbleOutlined as default } +export default IconBubbleOutlined diff --git a/src/IconBubbleOutlinedFilled.tsx b/src/IconBubbleOutlinedFilled.tsx index 2c93a93b4..0eae543ec 100644 --- a/src/IconBubbleOutlinedFilled.tsx +++ b/src/IconBubbleOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconBubbleOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconBubbleOutlinedFilled as default } +export default IconBubbleOutlinedFilled diff --git a/src/IconBubbleRounded.tsx b/src/IconBubbleRounded.tsx index 03728ce07..80ce1ab18 100644 --- a/src/IconBubbleRounded.tsx +++ b/src/IconBubbleRounded.tsx @@ -8,4 +8,4 @@ const IconBubbleRounded: React.FC = ({ ...props }) => ( ) -export { IconBubbleRounded as default } +export default IconBubbleRounded diff --git a/src/IconBubbleRoundedFilled.tsx b/src/IconBubbleRoundedFilled.tsx index e3f31a5ba..f5d7c3f1f 100644 --- a/src/IconBubbleRoundedFilled.tsx +++ b/src/IconBubbleRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconBubbleRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconBubbleRoundedFilled as default } +export default IconBubbleRoundedFilled diff --git a/src/IconBubbleSharp.tsx b/src/IconBubbleSharp.tsx index 357d4c714..cf6aa489a 100644 --- a/src/IconBubbleSharp.tsx +++ b/src/IconBubbleSharp.tsx @@ -8,4 +8,4 @@ const IconBubbleSharp: React.FC = ({ ...props }) => ( ) -export { IconBubbleSharp as default } +export default IconBubbleSharp diff --git a/src/IconBubbleSharpFilled.tsx b/src/IconBubbleSharpFilled.tsx index a29ce560f..3c71b0bc7 100644 --- a/src/IconBubbleSharpFilled.tsx +++ b/src/IconBubbleSharpFilled.tsx @@ -8,4 +8,4 @@ const IconBubbleSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconBubbleSharpFilled as default } +export default IconBubbleSharpFilled diff --git a/src/IconBubblesOutlined.tsx b/src/IconBubblesOutlined.tsx index f4c0ed221..d95346e6b 100644 --- a/src/IconBubblesOutlined.tsx +++ b/src/IconBubblesOutlined.tsx @@ -8,4 +8,4 @@ const IconBubblesOutlined: React.FC = ({ ...props }) => ( ) -export { IconBubblesOutlined as default } +export default IconBubblesOutlined diff --git a/src/IconBubblesOutlinedFilled.tsx b/src/IconBubblesOutlinedFilled.tsx index 604e396bd..e6d97ad49 100644 --- a/src/IconBubblesOutlinedFilled.tsx +++ b/src/IconBubblesOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconBubblesOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconBubblesOutlinedFilled as default } +export default IconBubblesOutlinedFilled diff --git a/src/IconBubblesRounded.tsx b/src/IconBubblesRounded.tsx index f9efb072f..b1a82b3b7 100644 --- a/src/IconBubblesRounded.tsx +++ b/src/IconBubblesRounded.tsx @@ -8,4 +8,4 @@ const IconBubblesRounded: React.FC = ({ ...props }) => ( ) -export { IconBubblesRounded as default } +export default IconBubblesRounded diff --git a/src/IconBubblesRoundedFilled.tsx b/src/IconBubblesRoundedFilled.tsx index 87836779d..1b21648e2 100644 --- a/src/IconBubblesRoundedFilled.tsx +++ b/src/IconBubblesRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconBubblesRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconBubblesRoundedFilled as default } +export default IconBubblesRoundedFilled diff --git a/src/IconBubblesSharp.tsx b/src/IconBubblesSharp.tsx index 56eccfc90..0ad0e3cc6 100644 --- a/src/IconBubblesSharp.tsx +++ b/src/IconBubblesSharp.tsx @@ -8,4 +8,4 @@ const IconBubblesSharp: React.FC = ({ ...props }) => ( ) -export { IconBubblesSharp as default } +export default IconBubblesSharp diff --git a/src/IconBubblesSharpFilled.tsx b/src/IconBubblesSharpFilled.tsx index 7e0b2276c..99c2018bf 100644 --- a/src/IconBubblesSharpFilled.tsx +++ b/src/IconBubblesSharpFilled.tsx @@ -8,4 +8,4 @@ const IconBubblesSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconBubblesSharpFilled as default } +export default IconBubblesSharpFilled diff --git a/src/IconBugReportOutlined.tsx b/src/IconBugReportOutlined.tsx index fe21e64e4..3c0645160 100644 --- a/src/IconBugReportOutlined.tsx +++ b/src/IconBugReportOutlined.tsx @@ -8,4 +8,4 @@ const IconBugReportOutlined: React.FC = ({ ...props }) => ( ) -export { IconBugReportOutlined as default } +export default IconBugReportOutlined diff --git a/src/IconBugReportOutlinedFilled.tsx b/src/IconBugReportOutlinedFilled.tsx index 09dc8078d..c7d7f4f0f 100644 --- a/src/IconBugReportOutlinedFilled.tsx +++ b/src/IconBugReportOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconBugReportOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconBugReportOutlinedFilled as default } +export default IconBugReportOutlinedFilled diff --git a/src/IconBugReportRounded.tsx b/src/IconBugReportRounded.tsx index 3deecd287..3fdd47ed8 100644 --- a/src/IconBugReportRounded.tsx +++ b/src/IconBugReportRounded.tsx @@ -8,4 +8,4 @@ const IconBugReportRounded: React.FC = ({ ...props }) => ( ) -export { IconBugReportRounded as default } +export default IconBugReportRounded diff --git a/src/IconBugReportRoundedFilled.tsx b/src/IconBugReportRoundedFilled.tsx index e94d5c328..f67e0e88e 100644 --- a/src/IconBugReportRoundedFilled.tsx +++ b/src/IconBugReportRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconBugReportRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconBugReportRoundedFilled as default } +export default IconBugReportRoundedFilled diff --git a/src/IconBugReportSharp.tsx b/src/IconBugReportSharp.tsx index d4f641591..2ba17f93f 100644 --- a/src/IconBugReportSharp.tsx +++ b/src/IconBugReportSharp.tsx @@ -8,4 +8,4 @@ const IconBugReportSharp: React.FC = ({ ...props }) => ( ) -export { IconBugReportSharp as default } +export default IconBugReportSharp diff --git a/src/IconBugReportSharpFilled.tsx b/src/IconBugReportSharpFilled.tsx index 6ed1f5d27..d2a7439a7 100644 --- a/src/IconBugReportSharpFilled.tsx +++ b/src/IconBugReportSharpFilled.tsx @@ -8,4 +8,4 @@ const IconBugReportSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconBugReportSharpFilled as default } +export default IconBugReportSharpFilled diff --git a/src/IconBuildCircleOutlined.tsx b/src/IconBuildCircleOutlined.tsx index c656e0229..a9ee6431d 100644 --- a/src/IconBuildCircleOutlined.tsx +++ b/src/IconBuildCircleOutlined.tsx @@ -8,4 +8,4 @@ const IconBuildCircleOutlined: React.FC = ({ ...props }) => ( ) -export { IconBuildCircleOutlined as default } +export default IconBuildCircleOutlined diff --git a/src/IconBuildCircleOutlinedFilled.tsx b/src/IconBuildCircleOutlinedFilled.tsx index 7afaed9cc..d48957087 100644 --- a/src/IconBuildCircleOutlinedFilled.tsx +++ b/src/IconBuildCircleOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconBuildCircleOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconBuildCircleOutlinedFilled as default } +export default IconBuildCircleOutlinedFilled diff --git a/src/IconBuildCircleRounded.tsx b/src/IconBuildCircleRounded.tsx index 15e259d5c..20e269789 100644 --- a/src/IconBuildCircleRounded.tsx +++ b/src/IconBuildCircleRounded.tsx @@ -8,4 +8,4 @@ const IconBuildCircleRounded: React.FC = ({ ...props }) => ( ) -export { IconBuildCircleRounded as default } +export default IconBuildCircleRounded diff --git a/src/IconBuildCircleRoundedFilled.tsx b/src/IconBuildCircleRoundedFilled.tsx index 0736a1ca2..2eef5e099 100644 --- a/src/IconBuildCircleRoundedFilled.tsx +++ b/src/IconBuildCircleRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconBuildCircleRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconBuildCircleRoundedFilled as default } +export default IconBuildCircleRoundedFilled diff --git a/src/IconBuildCircleSharp.tsx b/src/IconBuildCircleSharp.tsx index e022c7c72..624daff71 100644 --- a/src/IconBuildCircleSharp.tsx +++ b/src/IconBuildCircleSharp.tsx @@ -8,4 +8,4 @@ const IconBuildCircleSharp: React.FC = ({ ...props }) => ( ) -export { IconBuildCircleSharp as default } +export default IconBuildCircleSharp diff --git a/src/IconBuildCircleSharpFilled.tsx b/src/IconBuildCircleSharpFilled.tsx index be1e7f8be..66caef77d 100644 --- a/src/IconBuildCircleSharpFilled.tsx +++ b/src/IconBuildCircleSharpFilled.tsx @@ -8,4 +8,4 @@ const IconBuildCircleSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconBuildCircleSharpFilled as default } +export default IconBuildCircleSharpFilled diff --git a/src/IconBuildOutlined.tsx b/src/IconBuildOutlined.tsx index 5b4ce1103..d272f1767 100644 --- a/src/IconBuildOutlined.tsx +++ b/src/IconBuildOutlined.tsx @@ -8,4 +8,4 @@ const IconBuildOutlined: React.FC = ({ ...props }) => ( ) -export { IconBuildOutlined as default } +export default IconBuildOutlined diff --git a/src/IconBuildOutlinedFilled.tsx b/src/IconBuildOutlinedFilled.tsx index 16e8eb119..023feb94d 100644 --- a/src/IconBuildOutlinedFilled.tsx +++ b/src/IconBuildOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconBuildOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconBuildOutlinedFilled as default } +export default IconBuildOutlinedFilled diff --git a/src/IconBuildRounded.tsx b/src/IconBuildRounded.tsx index 3e5ff0d6f..8791792ff 100644 --- a/src/IconBuildRounded.tsx +++ b/src/IconBuildRounded.tsx @@ -8,4 +8,4 @@ const IconBuildRounded: React.FC = ({ ...props }) => ( ) -export { IconBuildRounded as default } +export default IconBuildRounded diff --git a/src/IconBuildRoundedFilled.tsx b/src/IconBuildRoundedFilled.tsx index c6f09769e..2d7ae0232 100644 --- a/src/IconBuildRoundedFilled.tsx +++ b/src/IconBuildRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconBuildRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconBuildRoundedFilled as default } +export default IconBuildRoundedFilled diff --git a/src/IconBuildSharp.tsx b/src/IconBuildSharp.tsx index f912c532f..eb86d752f 100644 --- a/src/IconBuildSharp.tsx +++ b/src/IconBuildSharp.tsx @@ -8,4 +8,4 @@ const IconBuildSharp: React.FC = ({ ...props }) => ( ) -export { IconBuildSharp as default } +export default IconBuildSharp diff --git a/src/IconBuildSharpFilled.tsx b/src/IconBuildSharpFilled.tsx index 078ae0127..421b1a642 100644 --- a/src/IconBuildSharpFilled.tsx +++ b/src/IconBuildSharpFilled.tsx @@ -8,4 +8,4 @@ const IconBuildSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconBuildSharpFilled as default } +export default IconBuildSharpFilled diff --git a/src/IconBungalowOutlined.tsx b/src/IconBungalowOutlined.tsx index 92321c83e..0198f3a35 100644 --- a/src/IconBungalowOutlined.tsx +++ b/src/IconBungalowOutlined.tsx @@ -8,4 +8,4 @@ const IconBungalowOutlined: React.FC = ({ ...props }) => ( ) -export { IconBungalowOutlined as default } +export default IconBungalowOutlined diff --git a/src/IconBungalowOutlinedFilled.tsx b/src/IconBungalowOutlinedFilled.tsx index 38b6aec16..ec6ce2f72 100644 --- a/src/IconBungalowOutlinedFilled.tsx +++ b/src/IconBungalowOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconBungalowOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconBungalowOutlinedFilled as default } +export default IconBungalowOutlinedFilled diff --git a/src/IconBungalowRounded.tsx b/src/IconBungalowRounded.tsx index 23b924e6a..c1c0fc4b2 100644 --- a/src/IconBungalowRounded.tsx +++ b/src/IconBungalowRounded.tsx @@ -8,4 +8,4 @@ const IconBungalowRounded: React.FC = ({ ...props }) => ( ) -export { IconBungalowRounded as default } +export default IconBungalowRounded diff --git a/src/IconBungalowRoundedFilled.tsx b/src/IconBungalowRoundedFilled.tsx index b93c328c2..752e33c47 100644 --- a/src/IconBungalowRoundedFilled.tsx +++ b/src/IconBungalowRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconBungalowRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconBungalowRoundedFilled as default } +export default IconBungalowRoundedFilled diff --git a/src/IconBungalowSharp.tsx b/src/IconBungalowSharp.tsx index 1dacfb243..7279c594a 100644 --- a/src/IconBungalowSharp.tsx +++ b/src/IconBungalowSharp.tsx @@ -8,4 +8,4 @@ const IconBungalowSharp: React.FC = ({ ...props }) => ( ) -export { IconBungalowSharp as default } +export default IconBungalowSharp diff --git a/src/IconBungalowSharpFilled.tsx b/src/IconBungalowSharpFilled.tsx index c2ef73e1d..f263fcdaf 100644 --- a/src/IconBungalowSharpFilled.tsx +++ b/src/IconBungalowSharpFilled.tsx @@ -8,4 +8,4 @@ const IconBungalowSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconBungalowSharpFilled as default } +export default IconBungalowSharpFilled diff --git a/src/IconBurstModeOutlined.tsx b/src/IconBurstModeOutlined.tsx index 231777f6d..ba9540eb1 100644 --- a/src/IconBurstModeOutlined.tsx +++ b/src/IconBurstModeOutlined.tsx @@ -8,4 +8,4 @@ const IconBurstModeOutlined: React.FC = ({ ...props }) => ( ) -export { IconBurstModeOutlined as default } +export default IconBurstModeOutlined diff --git a/src/IconBurstModeOutlinedFilled.tsx b/src/IconBurstModeOutlinedFilled.tsx index cb1e0ce6b..b15cf8ae9 100644 --- a/src/IconBurstModeOutlinedFilled.tsx +++ b/src/IconBurstModeOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconBurstModeOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconBurstModeOutlinedFilled as default } +export default IconBurstModeOutlinedFilled diff --git a/src/IconBurstModeRounded.tsx b/src/IconBurstModeRounded.tsx index 0b577d861..51fbf421c 100644 --- a/src/IconBurstModeRounded.tsx +++ b/src/IconBurstModeRounded.tsx @@ -8,4 +8,4 @@ const IconBurstModeRounded: React.FC = ({ ...props }) => ( ) -export { IconBurstModeRounded as default } +export default IconBurstModeRounded diff --git a/src/IconBurstModeRoundedFilled.tsx b/src/IconBurstModeRoundedFilled.tsx index ebe962c51..de8e4dba7 100644 --- a/src/IconBurstModeRoundedFilled.tsx +++ b/src/IconBurstModeRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconBurstModeRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconBurstModeRoundedFilled as default } +export default IconBurstModeRoundedFilled diff --git a/src/IconBurstModeSharp.tsx b/src/IconBurstModeSharp.tsx index 6cd0135f1..935e7d9d6 100644 --- a/src/IconBurstModeSharp.tsx +++ b/src/IconBurstModeSharp.tsx @@ -8,4 +8,4 @@ const IconBurstModeSharp: React.FC = ({ ...props }) => ( ) -export { IconBurstModeSharp as default } +export default IconBurstModeSharp diff --git a/src/IconBurstModeSharpFilled.tsx b/src/IconBurstModeSharpFilled.tsx index 319dfb8af..f58d22d1b 100644 --- a/src/IconBurstModeSharpFilled.tsx +++ b/src/IconBurstModeSharpFilled.tsx @@ -8,4 +8,4 @@ const IconBurstModeSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconBurstModeSharpFilled as default } +export default IconBurstModeSharpFilled diff --git a/src/IconBusAlertOutlined.tsx b/src/IconBusAlertOutlined.tsx index d8d606e68..c1fcf464f 100644 --- a/src/IconBusAlertOutlined.tsx +++ b/src/IconBusAlertOutlined.tsx @@ -8,4 +8,4 @@ const IconBusAlertOutlined: React.FC = ({ ...props }) => ( ) -export { IconBusAlertOutlined as default } +export default IconBusAlertOutlined diff --git a/src/IconBusAlertOutlinedFilled.tsx b/src/IconBusAlertOutlinedFilled.tsx index d04f77170..e9b068e03 100644 --- a/src/IconBusAlertOutlinedFilled.tsx +++ b/src/IconBusAlertOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconBusAlertOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconBusAlertOutlinedFilled as default } +export default IconBusAlertOutlinedFilled diff --git a/src/IconBusAlertRounded.tsx b/src/IconBusAlertRounded.tsx index 7e1276910..73d1a9353 100644 --- a/src/IconBusAlertRounded.tsx +++ b/src/IconBusAlertRounded.tsx @@ -8,4 +8,4 @@ const IconBusAlertRounded: React.FC = ({ ...props }) => ( ) -export { IconBusAlertRounded as default } +export default IconBusAlertRounded diff --git a/src/IconBusAlertRoundedFilled.tsx b/src/IconBusAlertRoundedFilled.tsx index 2487f077f..3c4e0f05e 100644 --- a/src/IconBusAlertRoundedFilled.tsx +++ b/src/IconBusAlertRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconBusAlertRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconBusAlertRoundedFilled as default } +export default IconBusAlertRoundedFilled diff --git a/src/IconBusAlertSharp.tsx b/src/IconBusAlertSharp.tsx index 87be1fb90..e380cbaa7 100644 --- a/src/IconBusAlertSharp.tsx +++ b/src/IconBusAlertSharp.tsx @@ -8,4 +8,4 @@ const IconBusAlertSharp: React.FC = ({ ...props }) => ( ) -export { IconBusAlertSharp as default } +export default IconBusAlertSharp diff --git a/src/IconBusAlertSharpFilled.tsx b/src/IconBusAlertSharpFilled.tsx index 084216ffe..ed55a198e 100644 --- a/src/IconBusAlertSharpFilled.tsx +++ b/src/IconBusAlertSharpFilled.tsx @@ -8,4 +8,4 @@ const IconBusAlertSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconBusAlertSharpFilled as default } +export default IconBusAlertSharpFilled diff --git a/src/IconBusinessCenterOutlined.tsx b/src/IconBusinessCenterOutlined.tsx index 907d5ecd4..632b16ad8 100644 --- a/src/IconBusinessCenterOutlined.tsx +++ b/src/IconBusinessCenterOutlined.tsx @@ -8,4 +8,4 @@ const IconBusinessCenterOutlined: React.FC = ({ ...props }) => ( ) -export { IconBusinessCenterOutlined as default } +export default IconBusinessCenterOutlined diff --git a/src/IconBusinessCenterOutlinedFilled.tsx b/src/IconBusinessCenterOutlinedFilled.tsx index 323aa8d62..19a6a7dbe 100644 --- a/src/IconBusinessCenterOutlinedFilled.tsx +++ b/src/IconBusinessCenterOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconBusinessCenterOutlinedFilled: React.FC = ({ ) -export { IconBusinessCenterOutlinedFilled as default } +export default IconBusinessCenterOutlinedFilled diff --git a/src/IconBusinessCenterRounded.tsx b/src/IconBusinessCenterRounded.tsx index 68c063908..ff3742bd2 100644 --- a/src/IconBusinessCenterRounded.tsx +++ b/src/IconBusinessCenterRounded.tsx @@ -8,4 +8,4 @@ const IconBusinessCenterRounded: React.FC = ({ ...props }) => ( ) -export { IconBusinessCenterRounded as default } +export default IconBusinessCenterRounded diff --git a/src/IconBusinessCenterRoundedFilled.tsx b/src/IconBusinessCenterRoundedFilled.tsx index 6deb696a7..65f9f652e 100644 --- a/src/IconBusinessCenterRoundedFilled.tsx +++ b/src/IconBusinessCenterRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconBusinessCenterRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconBusinessCenterRoundedFilled as default } +export default IconBusinessCenterRoundedFilled diff --git a/src/IconBusinessCenterSharp.tsx b/src/IconBusinessCenterSharp.tsx index 6c78d4b11..399336daa 100644 --- a/src/IconBusinessCenterSharp.tsx +++ b/src/IconBusinessCenterSharp.tsx @@ -8,4 +8,4 @@ const IconBusinessCenterSharp: React.FC = ({ ...props }) => ( ) -export { IconBusinessCenterSharp as default } +export default IconBusinessCenterSharp diff --git a/src/IconBusinessCenterSharpFilled.tsx b/src/IconBusinessCenterSharpFilled.tsx index cceee7cc0..bfdea4e96 100644 --- a/src/IconBusinessCenterSharpFilled.tsx +++ b/src/IconBusinessCenterSharpFilled.tsx @@ -8,4 +8,4 @@ const IconBusinessCenterSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconBusinessCenterSharpFilled as default } +export default IconBusinessCenterSharpFilled diff --git a/src/IconBusinessChipOutlined.tsx b/src/IconBusinessChipOutlined.tsx index ab8e527d7..29bb4d5ad 100644 --- a/src/IconBusinessChipOutlined.tsx +++ b/src/IconBusinessChipOutlined.tsx @@ -8,4 +8,4 @@ const IconBusinessChipOutlined: React.FC = ({ ...props }) => ( ) -export { IconBusinessChipOutlined as default } +export default IconBusinessChipOutlined diff --git a/src/IconBusinessChipOutlinedFilled.tsx b/src/IconBusinessChipOutlinedFilled.tsx index 2b0f97224..2c2de3b7c 100644 --- a/src/IconBusinessChipOutlinedFilled.tsx +++ b/src/IconBusinessChipOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconBusinessChipOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconBusinessChipOutlinedFilled as default } +export default IconBusinessChipOutlinedFilled diff --git a/src/IconBusinessChipRounded.tsx b/src/IconBusinessChipRounded.tsx index 6631557ff..004e33bf9 100644 --- a/src/IconBusinessChipRounded.tsx +++ b/src/IconBusinessChipRounded.tsx @@ -8,4 +8,4 @@ const IconBusinessChipRounded: React.FC = ({ ...props }) => ( ) -export { IconBusinessChipRounded as default } +export default IconBusinessChipRounded diff --git a/src/IconBusinessChipRoundedFilled.tsx b/src/IconBusinessChipRoundedFilled.tsx index 45f13e53c..693aa6a99 100644 --- a/src/IconBusinessChipRoundedFilled.tsx +++ b/src/IconBusinessChipRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconBusinessChipRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconBusinessChipRoundedFilled as default } +export default IconBusinessChipRoundedFilled diff --git a/src/IconBusinessChipSharp.tsx b/src/IconBusinessChipSharp.tsx index 6979142d7..25c7e09d0 100644 --- a/src/IconBusinessChipSharp.tsx +++ b/src/IconBusinessChipSharp.tsx @@ -8,4 +8,4 @@ const IconBusinessChipSharp: React.FC = ({ ...props }) => ( ) -export { IconBusinessChipSharp as default } +export default IconBusinessChipSharp diff --git a/src/IconBusinessChipSharpFilled.tsx b/src/IconBusinessChipSharpFilled.tsx index 11d25f24c..21e8af455 100644 --- a/src/IconBusinessChipSharpFilled.tsx +++ b/src/IconBusinessChipSharpFilled.tsx @@ -8,4 +8,4 @@ const IconBusinessChipSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconBusinessChipSharpFilled as default } +export default IconBusinessChipSharpFilled diff --git a/src/IconBusinessMessagesOutlined.tsx b/src/IconBusinessMessagesOutlined.tsx index e5fb28ddd..e4aeb42cc 100644 --- a/src/IconBusinessMessagesOutlined.tsx +++ b/src/IconBusinessMessagesOutlined.tsx @@ -8,4 +8,4 @@ const IconBusinessMessagesOutlined: React.FC = ({ ...props }) => ( ) -export { IconBusinessMessagesOutlined as default } +export default IconBusinessMessagesOutlined diff --git a/src/IconBusinessMessagesOutlinedFilled.tsx b/src/IconBusinessMessagesOutlinedFilled.tsx index 7da3f3f83..341f111ec 100644 --- a/src/IconBusinessMessagesOutlinedFilled.tsx +++ b/src/IconBusinessMessagesOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconBusinessMessagesOutlinedFilled: React.FC = ({ ) -export { IconBusinessMessagesOutlinedFilled as default } +export default IconBusinessMessagesOutlinedFilled diff --git a/src/IconBusinessMessagesRounded.tsx b/src/IconBusinessMessagesRounded.tsx index 3da1901dc..048c3e734 100644 --- a/src/IconBusinessMessagesRounded.tsx +++ b/src/IconBusinessMessagesRounded.tsx @@ -8,4 +8,4 @@ const IconBusinessMessagesRounded: React.FC = ({ ...props }) => ( ) -export { IconBusinessMessagesRounded as default } +export default IconBusinessMessagesRounded diff --git a/src/IconBusinessMessagesRoundedFilled.tsx b/src/IconBusinessMessagesRoundedFilled.tsx index 50c6fcc62..2526cd0ff 100644 --- a/src/IconBusinessMessagesRoundedFilled.tsx +++ b/src/IconBusinessMessagesRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconBusinessMessagesRoundedFilled: React.FC = ({ ) -export { IconBusinessMessagesRoundedFilled as default } +export default IconBusinessMessagesRoundedFilled diff --git a/src/IconBusinessMessagesSharp.tsx b/src/IconBusinessMessagesSharp.tsx index 29b5c8153..0dd0c6ff0 100644 --- a/src/IconBusinessMessagesSharp.tsx +++ b/src/IconBusinessMessagesSharp.tsx @@ -8,4 +8,4 @@ const IconBusinessMessagesSharp: React.FC = ({ ...props }) => ( ) -export { IconBusinessMessagesSharp as default } +export default IconBusinessMessagesSharp diff --git a/src/IconBusinessMessagesSharpFilled.tsx b/src/IconBusinessMessagesSharpFilled.tsx index d8a46ae17..3a8cc3f8d 100644 --- a/src/IconBusinessMessagesSharpFilled.tsx +++ b/src/IconBusinessMessagesSharpFilled.tsx @@ -8,4 +8,4 @@ const IconBusinessMessagesSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconBusinessMessagesSharpFilled as default } +export default IconBusinessMessagesSharpFilled diff --git a/src/IconButtonsAltOutlined.tsx b/src/IconButtonsAltOutlined.tsx index e3d1e0d18..82a40e279 100644 --- a/src/IconButtonsAltOutlined.tsx +++ b/src/IconButtonsAltOutlined.tsx @@ -8,4 +8,4 @@ const IconButtonsAltOutlined: React.FC = ({ ...props }) => ( ) -export { IconButtonsAltOutlined as default } +export default IconButtonsAltOutlined diff --git a/src/IconButtonsAltOutlinedFilled.tsx b/src/IconButtonsAltOutlinedFilled.tsx index d8970b4de..4f87833a3 100644 --- a/src/IconButtonsAltOutlinedFilled.tsx +++ b/src/IconButtonsAltOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconButtonsAltOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconButtonsAltOutlinedFilled as default } +export default IconButtonsAltOutlinedFilled diff --git a/src/IconButtonsAltRounded.tsx b/src/IconButtonsAltRounded.tsx index 3db833b3f..2b1d9999f 100644 --- a/src/IconButtonsAltRounded.tsx +++ b/src/IconButtonsAltRounded.tsx @@ -8,4 +8,4 @@ const IconButtonsAltRounded: React.FC = ({ ...props }) => ( ) -export { IconButtonsAltRounded as default } +export default IconButtonsAltRounded diff --git a/src/IconButtonsAltRoundedFilled.tsx b/src/IconButtonsAltRoundedFilled.tsx index 77a97f2a7..72c8303c0 100644 --- a/src/IconButtonsAltRoundedFilled.tsx +++ b/src/IconButtonsAltRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconButtonsAltRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconButtonsAltRoundedFilled as default } +export default IconButtonsAltRoundedFilled diff --git a/src/IconButtonsAltSharp.tsx b/src/IconButtonsAltSharp.tsx index a7138ab8f..cdfd890ff 100644 --- a/src/IconButtonsAltSharp.tsx +++ b/src/IconButtonsAltSharp.tsx @@ -8,4 +8,4 @@ const IconButtonsAltSharp: React.FC = ({ ...props }) => ( ) -export { IconButtonsAltSharp as default } +export default IconButtonsAltSharp diff --git a/src/IconButtonsAltSharpFilled.tsx b/src/IconButtonsAltSharpFilled.tsx index f16382272..933a30430 100644 --- a/src/IconButtonsAltSharpFilled.tsx +++ b/src/IconButtonsAltSharpFilled.tsx @@ -8,4 +8,4 @@ const IconButtonsAltSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconButtonsAltSharpFilled as default } +export default IconButtonsAltSharpFilled diff --git a/src/IconCabinOutlined.tsx b/src/IconCabinOutlined.tsx index 611f3ccee..c71217875 100644 --- a/src/IconCabinOutlined.tsx +++ b/src/IconCabinOutlined.tsx @@ -8,4 +8,4 @@ const IconCabinOutlined: React.FC = ({ ...props }) => ( ) -export { IconCabinOutlined as default } +export default IconCabinOutlined diff --git a/src/IconCabinOutlinedFilled.tsx b/src/IconCabinOutlinedFilled.tsx index 0b0bc3012..e4d7f8697 100644 --- a/src/IconCabinOutlinedFilled.tsx +++ b/src/IconCabinOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconCabinOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconCabinOutlinedFilled as default } +export default IconCabinOutlinedFilled diff --git a/src/IconCabinRounded.tsx b/src/IconCabinRounded.tsx index 297009ea5..b0455e217 100644 --- a/src/IconCabinRounded.tsx +++ b/src/IconCabinRounded.tsx @@ -8,4 +8,4 @@ const IconCabinRounded: React.FC = ({ ...props }) => ( ) -export { IconCabinRounded as default } +export default IconCabinRounded diff --git a/src/IconCabinRoundedFilled.tsx b/src/IconCabinRoundedFilled.tsx index a6498679a..478bab962 100644 --- a/src/IconCabinRoundedFilled.tsx +++ b/src/IconCabinRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconCabinRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconCabinRoundedFilled as default } +export default IconCabinRoundedFilled diff --git a/src/IconCabinSharp.tsx b/src/IconCabinSharp.tsx index 30870f58b..d3fee3b3e 100644 --- a/src/IconCabinSharp.tsx +++ b/src/IconCabinSharp.tsx @@ -8,4 +8,4 @@ const IconCabinSharp: React.FC = ({ ...props }) => ( ) -export { IconCabinSharp as default } +export default IconCabinSharp diff --git a/src/IconCabinSharpFilled.tsx b/src/IconCabinSharpFilled.tsx index 11e038634..512e4f443 100644 --- a/src/IconCabinSharpFilled.tsx +++ b/src/IconCabinSharpFilled.tsx @@ -8,4 +8,4 @@ const IconCabinSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconCabinSharpFilled as default } +export default IconCabinSharpFilled diff --git a/src/IconCableCarOutlined.tsx b/src/IconCableCarOutlined.tsx index 7824d8d13..f3bde6b97 100644 --- a/src/IconCableCarOutlined.tsx +++ b/src/IconCableCarOutlined.tsx @@ -8,4 +8,4 @@ const IconCableCarOutlined: React.FC = ({ ...props }) => ( ) -export { IconCableCarOutlined as default } +export default IconCableCarOutlined diff --git a/src/IconCableCarOutlinedFilled.tsx b/src/IconCableCarOutlinedFilled.tsx index bc34bcc9d..8f512c5a4 100644 --- a/src/IconCableCarOutlinedFilled.tsx +++ b/src/IconCableCarOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconCableCarOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconCableCarOutlinedFilled as default } +export default IconCableCarOutlinedFilled diff --git a/src/IconCableCarRounded.tsx b/src/IconCableCarRounded.tsx index a984e9a47..9ac80e4f1 100644 --- a/src/IconCableCarRounded.tsx +++ b/src/IconCableCarRounded.tsx @@ -8,4 +8,4 @@ const IconCableCarRounded: React.FC = ({ ...props }) => ( ) -export { IconCableCarRounded as default } +export default IconCableCarRounded diff --git a/src/IconCableCarRoundedFilled.tsx b/src/IconCableCarRoundedFilled.tsx index a674ea765..06508c56d 100644 --- a/src/IconCableCarRoundedFilled.tsx +++ b/src/IconCableCarRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconCableCarRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconCableCarRoundedFilled as default } +export default IconCableCarRoundedFilled diff --git a/src/IconCableCarSharp.tsx b/src/IconCableCarSharp.tsx index 05626ec07..88dd730d0 100644 --- a/src/IconCableCarSharp.tsx +++ b/src/IconCableCarSharp.tsx @@ -8,4 +8,4 @@ const IconCableCarSharp: React.FC = ({ ...props }) => ( ) -export { IconCableCarSharp as default } +export default IconCableCarSharp diff --git a/src/IconCableCarSharpFilled.tsx b/src/IconCableCarSharpFilled.tsx index 986df058a..1f9f79129 100644 --- a/src/IconCableCarSharpFilled.tsx +++ b/src/IconCableCarSharpFilled.tsx @@ -8,4 +8,4 @@ const IconCableCarSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconCableCarSharpFilled as default } +export default IconCableCarSharpFilled diff --git a/src/IconCableOutlined.tsx b/src/IconCableOutlined.tsx index a1e52ced3..e298bd5ef 100644 --- a/src/IconCableOutlined.tsx +++ b/src/IconCableOutlined.tsx @@ -8,4 +8,4 @@ const IconCableOutlined: React.FC = ({ ...props }) => ( ) -export { IconCableOutlined as default } +export default IconCableOutlined diff --git a/src/IconCableOutlinedFilled.tsx b/src/IconCableOutlinedFilled.tsx index 6af80f551..89ccbdac5 100644 --- a/src/IconCableOutlinedFilled.tsx +++ b/src/IconCableOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconCableOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconCableOutlinedFilled as default } +export default IconCableOutlinedFilled diff --git a/src/IconCableRounded.tsx b/src/IconCableRounded.tsx index 3345e621a..1c7e28cda 100644 --- a/src/IconCableRounded.tsx +++ b/src/IconCableRounded.tsx @@ -8,4 +8,4 @@ const IconCableRounded: React.FC = ({ ...props }) => ( ) -export { IconCableRounded as default } +export default IconCableRounded diff --git a/src/IconCableRoundedFilled.tsx b/src/IconCableRoundedFilled.tsx index 1a42e5052..8b36c4e43 100644 --- a/src/IconCableRoundedFilled.tsx +++ b/src/IconCableRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconCableRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconCableRoundedFilled as default } +export default IconCableRoundedFilled diff --git a/src/IconCableSharp.tsx b/src/IconCableSharp.tsx index ed599a7bc..bba60dad7 100644 --- a/src/IconCableSharp.tsx +++ b/src/IconCableSharp.tsx @@ -8,4 +8,4 @@ const IconCableSharp: React.FC = ({ ...props }) => ( ) -export { IconCableSharp as default } +export default IconCableSharp diff --git a/src/IconCableSharpFilled.tsx b/src/IconCableSharpFilled.tsx index 832107a84..a44774f06 100644 --- a/src/IconCableSharpFilled.tsx +++ b/src/IconCableSharpFilled.tsx @@ -8,4 +8,4 @@ const IconCableSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconCableSharpFilled as default } +export default IconCableSharpFilled diff --git a/src/IconCachedOutlined.tsx b/src/IconCachedOutlined.tsx index 67d4bcdb0..12a5a06fc 100644 --- a/src/IconCachedOutlined.tsx +++ b/src/IconCachedOutlined.tsx @@ -8,4 +8,4 @@ const IconCachedOutlined: React.FC = ({ ...props }) => ( ) -export { IconCachedOutlined as default } +export default IconCachedOutlined diff --git a/src/IconCachedOutlinedFilled.tsx b/src/IconCachedOutlinedFilled.tsx index fca9f3178..07e8db921 100644 --- a/src/IconCachedOutlinedFilled.tsx +++ b/src/IconCachedOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconCachedOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconCachedOutlinedFilled as default } +export default IconCachedOutlinedFilled diff --git a/src/IconCachedRounded.tsx b/src/IconCachedRounded.tsx index 9e53165bd..3745e1367 100644 --- a/src/IconCachedRounded.tsx +++ b/src/IconCachedRounded.tsx @@ -8,4 +8,4 @@ const IconCachedRounded: React.FC = ({ ...props }) => ( ) -export { IconCachedRounded as default } +export default IconCachedRounded diff --git a/src/IconCachedRoundedFilled.tsx b/src/IconCachedRoundedFilled.tsx index fb5180a39..da75cbcf1 100644 --- a/src/IconCachedRoundedFilled.tsx +++ b/src/IconCachedRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconCachedRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconCachedRoundedFilled as default } +export default IconCachedRoundedFilled diff --git a/src/IconCachedSharp.tsx b/src/IconCachedSharp.tsx index 26f326b72..04104e910 100644 --- a/src/IconCachedSharp.tsx +++ b/src/IconCachedSharp.tsx @@ -8,4 +8,4 @@ const IconCachedSharp: React.FC = ({ ...props }) => ( ) -export { IconCachedSharp as default } +export default IconCachedSharp diff --git a/src/IconCachedSharpFilled.tsx b/src/IconCachedSharpFilled.tsx index e44a5ce62..e615ac291 100644 --- a/src/IconCachedSharpFilled.tsx +++ b/src/IconCachedSharpFilled.tsx @@ -8,4 +8,4 @@ const IconCachedSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconCachedSharpFilled as default } +export default IconCachedSharpFilled diff --git a/src/IconCadenceOutlined.tsx b/src/IconCadenceOutlined.tsx index 1494a9803..a75ba2335 100644 --- a/src/IconCadenceOutlined.tsx +++ b/src/IconCadenceOutlined.tsx @@ -8,4 +8,4 @@ const IconCadenceOutlined: React.FC = ({ ...props }) => ( ) -export { IconCadenceOutlined as default } +export default IconCadenceOutlined diff --git a/src/IconCadenceOutlinedFilled.tsx b/src/IconCadenceOutlinedFilled.tsx index 02fe61229..040925503 100644 --- a/src/IconCadenceOutlinedFilled.tsx +++ b/src/IconCadenceOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconCadenceOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconCadenceOutlinedFilled as default } +export default IconCadenceOutlinedFilled diff --git a/src/IconCadenceRounded.tsx b/src/IconCadenceRounded.tsx index ad69f2ef6..78ae027e1 100644 --- a/src/IconCadenceRounded.tsx +++ b/src/IconCadenceRounded.tsx @@ -8,4 +8,4 @@ const IconCadenceRounded: React.FC = ({ ...props }) => ( ) -export { IconCadenceRounded as default } +export default IconCadenceRounded diff --git a/src/IconCadenceRoundedFilled.tsx b/src/IconCadenceRoundedFilled.tsx index 5b6e4869a..8b78e90da 100644 --- a/src/IconCadenceRoundedFilled.tsx +++ b/src/IconCadenceRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconCadenceRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconCadenceRoundedFilled as default } +export default IconCadenceRoundedFilled diff --git a/src/IconCadenceSharp.tsx b/src/IconCadenceSharp.tsx index 13d987355..1f4a45879 100644 --- a/src/IconCadenceSharp.tsx +++ b/src/IconCadenceSharp.tsx @@ -8,4 +8,4 @@ const IconCadenceSharp: React.FC = ({ ...props }) => ( ) -export { IconCadenceSharp as default } +export default IconCadenceSharp diff --git a/src/IconCadenceSharpFilled.tsx b/src/IconCadenceSharpFilled.tsx index 5705f1c72..39b0fcc71 100644 --- a/src/IconCadenceSharpFilled.tsx +++ b/src/IconCadenceSharpFilled.tsx @@ -8,4 +8,4 @@ const IconCadenceSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconCadenceSharpFilled as default } +export default IconCadenceSharpFilled diff --git a/src/IconCakeAddOutlined.tsx b/src/IconCakeAddOutlined.tsx index e64c7ec99..6d4703614 100644 --- a/src/IconCakeAddOutlined.tsx +++ b/src/IconCakeAddOutlined.tsx @@ -8,4 +8,4 @@ const IconCakeAddOutlined: React.FC = ({ ...props }) => ( ) -export { IconCakeAddOutlined as default } +export default IconCakeAddOutlined diff --git a/src/IconCakeAddOutlinedFilled.tsx b/src/IconCakeAddOutlinedFilled.tsx index 8a61b9760..ac17635cc 100644 --- a/src/IconCakeAddOutlinedFilled.tsx +++ b/src/IconCakeAddOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconCakeAddOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconCakeAddOutlinedFilled as default } +export default IconCakeAddOutlinedFilled diff --git a/src/IconCakeAddRounded.tsx b/src/IconCakeAddRounded.tsx index f92218d20..72f241347 100644 --- a/src/IconCakeAddRounded.tsx +++ b/src/IconCakeAddRounded.tsx @@ -8,4 +8,4 @@ const IconCakeAddRounded: React.FC = ({ ...props }) => ( ) -export { IconCakeAddRounded as default } +export default IconCakeAddRounded diff --git a/src/IconCakeAddRoundedFilled.tsx b/src/IconCakeAddRoundedFilled.tsx index 3ea775d27..d5f386277 100644 --- a/src/IconCakeAddRoundedFilled.tsx +++ b/src/IconCakeAddRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconCakeAddRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconCakeAddRoundedFilled as default } +export default IconCakeAddRoundedFilled diff --git a/src/IconCakeAddSharp.tsx b/src/IconCakeAddSharp.tsx index 33207f477..f01c67d41 100644 --- a/src/IconCakeAddSharp.tsx +++ b/src/IconCakeAddSharp.tsx @@ -8,4 +8,4 @@ const IconCakeAddSharp: React.FC = ({ ...props }) => ( ) -export { IconCakeAddSharp as default } +export default IconCakeAddSharp diff --git a/src/IconCakeAddSharpFilled.tsx b/src/IconCakeAddSharpFilled.tsx index b964a012a..a64dd74fd 100644 --- a/src/IconCakeAddSharpFilled.tsx +++ b/src/IconCakeAddSharpFilled.tsx @@ -8,4 +8,4 @@ const IconCakeAddSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconCakeAddSharpFilled as default } +export default IconCakeAddSharpFilled diff --git a/src/IconCakeOutlined.tsx b/src/IconCakeOutlined.tsx index 5067211bc..b8e10a725 100644 --- a/src/IconCakeOutlined.tsx +++ b/src/IconCakeOutlined.tsx @@ -8,4 +8,4 @@ const IconCakeOutlined: React.FC = ({ ...props }) => ( ) -export { IconCakeOutlined as default } +export default IconCakeOutlined diff --git a/src/IconCakeOutlinedFilled.tsx b/src/IconCakeOutlinedFilled.tsx index b231ece2b..191d17c8d 100644 --- a/src/IconCakeOutlinedFilled.tsx +++ b/src/IconCakeOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconCakeOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconCakeOutlinedFilled as default } +export default IconCakeOutlinedFilled diff --git a/src/IconCakeRounded.tsx b/src/IconCakeRounded.tsx index 786de4981..41cc28da9 100644 --- a/src/IconCakeRounded.tsx +++ b/src/IconCakeRounded.tsx @@ -8,4 +8,4 @@ const IconCakeRounded: React.FC = ({ ...props }) => ( ) -export { IconCakeRounded as default } +export default IconCakeRounded diff --git a/src/IconCakeRoundedFilled.tsx b/src/IconCakeRoundedFilled.tsx index 010419671..de141eeac 100644 --- a/src/IconCakeRoundedFilled.tsx +++ b/src/IconCakeRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconCakeRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconCakeRoundedFilled as default } +export default IconCakeRoundedFilled diff --git a/src/IconCakeSharp.tsx b/src/IconCakeSharp.tsx index 0488df100..69ef0c209 100644 --- a/src/IconCakeSharp.tsx +++ b/src/IconCakeSharp.tsx @@ -8,4 +8,4 @@ const IconCakeSharp: React.FC = ({ ...props }) => ( ) -export { IconCakeSharp as default } +export default IconCakeSharp diff --git a/src/IconCakeSharpFilled.tsx b/src/IconCakeSharpFilled.tsx index 2c357c7f6..d3d534848 100644 --- a/src/IconCakeSharpFilled.tsx +++ b/src/IconCakeSharpFilled.tsx @@ -8,4 +8,4 @@ const IconCakeSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconCakeSharpFilled as default } +export default IconCakeSharpFilled diff --git a/src/IconCalculateOutlined.tsx b/src/IconCalculateOutlined.tsx index 78cbd1d9c..e445e3f97 100644 --- a/src/IconCalculateOutlined.tsx +++ b/src/IconCalculateOutlined.tsx @@ -8,4 +8,4 @@ const IconCalculateOutlined: React.FC = ({ ...props }) => ( ) -export { IconCalculateOutlined as default } +export default IconCalculateOutlined diff --git a/src/IconCalculateOutlinedFilled.tsx b/src/IconCalculateOutlinedFilled.tsx index 496bbd45b..a5593e4ae 100644 --- a/src/IconCalculateOutlinedFilled.tsx +++ b/src/IconCalculateOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconCalculateOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconCalculateOutlinedFilled as default } +export default IconCalculateOutlinedFilled diff --git a/src/IconCalculateRounded.tsx b/src/IconCalculateRounded.tsx index dadf95aab..a8c8c247c 100644 --- a/src/IconCalculateRounded.tsx +++ b/src/IconCalculateRounded.tsx @@ -8,4 +8,4 @@ const IconCalculateRounded: React.FC = ({ ...props }) => ( ) -export { IconCalculateRounded as default } +export default IconCalculateRounded diff --git a/src/IconCalculateRoundedFilled.tsx b/src/IconCalculateRoundedFilled.tsx index 17e31d9e3..87a538639 100644 --- a/src/IconCalculateRoundedFilled.tsx +++ b/src/IconCalculateRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconCalculateRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconCalculateRoundedFilled as default } +export default IconCalculateRoundedFilled diff --git a/src/IconCalculateSharp.tsx b/src/IconCalculateSharp.tsx index bfe0f9172..b28afa690 100644 --- a/src/IconCalculateSharp.tsx +++ b/src/IconCalculateSharp.tsx @@ -8,4 +8,4 @@ const IconCalculateSharp: React.FC = ({ ...props }) => ( ) -export { IconCalculateSharp as default } +export default IconCalculateSharp diff --git a/src/IconCalculateSharpFilled.tsx b/src/IconCalculateSharpFilled.tsx index 19a311729..6bd5621fe 100644 --- a/src/IconCalculateSharpFilled.tsx +++ b/src/IconCalculateSharpFilled.tsx @@ -8,4 +8,4 @@ const IconCalculateSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconCalculateSharpFilled as default } +export default IconCalculateSharpFilled diff --git a/src/IconCalendarAddOnOutlined.tsx b/src/IconCalendarAddOnOutlined.tsx index 2cfb988d4..29b22bb9b 100644 --- a/src/IconCalendarAddOnOutlined.tsx +++ b/src/IconCalendarAddOnOutlined.tsx @@ -8,4 +8,4 @@ const IconCalendarAddOnOutlined: React.FC = ({ ...props }) => ( ) -export { IconCalendarAddOnOutlined as default } +export default IconCalendarAddOnOutlined diff --git a/src/IconCalendarAddOnOutlinedFilled.tsx b/src/IconCalendarAddOnOutlinedFilled.tsx index 869b0515e..364350b4c 100644 --- a/src/IconCalendarAddOnOutlinedFilled.tsx +++ b/src/IconCalendarAddOnOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconCalendarAddOnOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconCalendarAddOnOutlinedFilled as default } +export default IconCalendarAddOnOutlinedFilled diff --git a/src/IconCalendarAddOnRounded.tsx b/src/IconCalendarAddOnRounded.tsx index 3c22c78e0..989e28a24 100644 --- a/src/IconCalendarAddOnRounded.tsx +++ b/src/IconCalendarAddOnRounded.tsx @@ -8,4 +8,4 @@ const IconCalendarAddOnRounded: React.FC = ({ ...props }) => ( ) -export { IconCalendarAddOnRounded as default } +export default IconCalendarAddOnRounded diff --git a/src/IconCalendarAddOnRoundedFilled.tsx b/src/IconCalendarAddOnRoundedFilled.tsx index 1e90e98ed..534fdf75a 100644 --- a/src/IconCalendarAddOnRoundedFilled.tsx +++ b/src/IconCalendarAddOnRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconCalendarAddOnRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconCalendarAddOnRoundedFilled as default } +export default IconCalendarAddOnRoundedFilled diff --git a/src/IconCalendarAddOnSharp.tsx b/src/IconCalendarAddOnSharp.tsx index 6032cb62f..4ac0a2a7f 100644 --- a/src/IconCalendarAddOnSharp.tsx +++ b/src/IconCalendarAddOnSharp.tsx @@ -8,4 +8,4 @@ const IconCalendarAddOnSharp: React.FC = ({ ...props }) => ( ) -export { IconCalendarAddOnSharp as default } +export default IconCalendarAddOnSharp diff --git a/src/IconCalendarAddOnSharpFilled.tsx b/src/IconCalendarAddOnSharpFilled.tsx index 2ed937dd1..c8cc2b5fd 100644 --- a/src/IconCalendarAddOnSharpFilled.tsx +++ b/src/IconCalendarAddOnSharpFilled.tsx @@ -8,4 +8,4 @@ const IconCalendarAddOnSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconCalendarAddOnSharpFilled as default } +export default IconCalendarAddOnSharpFilled diff --git a/src/IconCalendarAppsScriptOutlined.tsx b/src/IconCalendarAppsScriptOutlined.tsx index 540cd40db..0871414d0 100644 --- a/src/IconCalendarAppsScriptOutlined.tsx +++ b/src/IconCalendarAppsScriptOutlined.tsx @@ -8,4 +8,4 @@ const IconCalendarAppsScriptOutlined: React.FC = ({ ...props }) => ( ) -export { IconCalendarAppsScriptOutlined as default } +export default IconCalendarAppsScriptOutlined diff --git a/src/IconCalendarAppsScriptOutlinedFilled.tsx b/src/IconCalendarAppsScriptOutlinedFilled.tsx index a6e4d0f09..39fa6b97b 100644 --- a/src/IconCalendarAppsScriptOutlinedFilled.tsx +++ b/src/IconCalendarAppsScriptOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconCalendarAppsScriptOutlinedFilled: React.FC = ({ ) -export { IconCalendarAppsScriptOutlinedFilled as default } +export default IconCalendarAppsScriptOutlinedFilled diff --git a/src/IconCalendarAppsScriptRounded.tsx b/src/IconCalendarAppsScriptRounded.tsx index 389ce6160..8515105f3 100644 --- a/src/IconCalendarAppsScriptRounded.tsx +++ b/src/IconCalendarAppsScriptRounded.tsx @@ -8,4 +8,4 @@ const IconCalendarAppsScriptRounded: React.FC = ({ ...props }) => ( ) -export { IconCalendarAppsScriptRounded as default } +export default IconCalendarAppsScriptRounded diff --git a/src/IconCalendarAppsScriptRoundedFilled.tsx b/src/IconCalendarAppsScriptRoundedFilled.tsx index ff4a06fb9..fbe0b6de5 100644 --- a/src/IconCalendarAppsScriptRoundedFilled.tsx +++ b/src/IconCalendarAppsScriptRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconCalendarAppsScriptRoundedFilled: React.FC = ({ ) -export { IconCalendarAppsScriptRoundedFilled as default } +export default IconCalendarAppsScriptRoundedFilled diff --git a/src/IconCalendarAppsScriptSharp.tsx b/src/IconCalendarAppsScriptSharp.tsx index 9b7c60108..4e22f29d0 100644 --- a/src/IconCalendarAppsScriptSharp.tsx +++ b/src/IconCalendarAppsScriptSharp.tsx @@ -8,4 +8,4 @@ const IconCalendarAppsScriptSharp: React.FC = ({ ...props }) => ( ) -export { IconCalendarAppsScriptSharp as default } +export default IconCalendarAppsScriptSharp diff --git a/src/IconCalendarAppsScriptSharpFilled.tsx b/src/IconCalendarAppsScriptSharpFilled.tsx index 5e3f5700e..f58f24547 100644 --- a/src/IconCalendarAppsScriptSharpFilled.tsx +++ b/src/IconCalendarAppsScriptSharpFilled.tsx @@ -10,4 +10,4 @@ const IconCalendarAppsScriptSharpFilled: React.FC = ({ ) -export { IconCalendarAppsScriptSharpFilled as default } +export default IconCalendarAppsScriptSharpFilled diff --git a/src/IconCalendarClockOutlined.tsx b/src/IconCalendarClockOutlined.tsx index b336b5ea7..53f43689f 100644 --- a/src/IconCalendarClockOutlined.tsx +++ b/src/IconCalendarClockOutlined.tsx @@ -8,4 +8,4 @@ const IconCalendarClockOutlined: React.FC = ({ ...props }) => ( ) -export { IconCalendarClockOutlined as default } +export default IconCalendarClockOutlined diff --git a/src/IconCalendarClockOutlinedFilled.tsx b/src/IconCalendarClockOutlinedFilled.tsx index 87303fa3e..1dc4be444 100644 --- a/src/IconCalendarClockOutlinedFilled.tsx +++ b/src/IconCalendarClockOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconCalendarClockOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconCalendarClockOutlinedFilled as default } +export default IconCalendarClockOutlinedFilled diff --git a/src/IconCalendarClockRounded.tsx b/src/IconCalendarClockRounded.tsx index f3eb163e1..c861b8f22 100644 --- a/src/IconCalendarClockRounded.tsx +++ b/src/IconCalendarClockRounded.tsx @@ -8,4 +8,4 @@ const IconCalendarClockRounded: React.FC = ({ ...props }) => ( ) -export { IconCalendarClockRounded as default } +export default IconCalendarClockRounded diff --git a/src/IconCalendarClockRoundedFilled.tsx b/src/IconCalendarClockRoundedFilled.tsx index de7dc9c6b..12f5a0fed 100644 --- a/src/IconCalendarClockRoundedFilled.tsx +++ b/src/IconCalendarClockRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconCalendarClockRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconCalendarClockRoundedFilled as default } +export default IconCalendarClockRoundedFilled diff --git a/src/IconCalendarClockSharp.tsx b/src/IconCalendarClockSharp.tsx index 26dca91dd..4d3582df5 100644 --- a/src/IconCalendarClockSharp.tsx +++ b/src/IconCalendarClockSharp.tsx @@ -8,4 +8,4 @@ const IconCalendarClockSharp: React.FC = ({ ...props }) => ( ) -export { IconCalendarClockSharp as default } +export default IconCalendarClockSharp diff --git a/src/IconCalendarClockSharpFilled.tsx b/src/IconCalendarClockSharpFilled.tsx index dee404d71..99ee51741 100644 --- a/src/IconCalendarClockSharpFilled.tsx +++ b/src/IconCalendarClockSharpFilled.tsx @@ -8,4 +8,4 @@ const IconCalendarClockSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconCalendarClockSharpFilled as default } +export default IconCalendarClockSharpFilled diff --git a/src/IconCalendarMonthOutlined.tsx b/src/IconCalendarMonthOutlined.tsx index 485b7e43c..d052f0fc6 100644 --- a/src/IconCalendarMonthOutlined.tsx +++ b/src/IconCalendarMonthOutlined.tsx @@ -8,4 +8,4 @@ const IconCalendarMonthOutlined: React.FC = ({ ...props }) => ( ) -export { IconCalendarMonthOutlined as default } +export default IconCalendarMonthOutlined diff --git a/src/IconCalendarMonthOutlinedFilled.tsx b/src/IconCalendarMonthOutlinedFilled.tsx index a8f3a607f..cb1ad9fff 100644 --- a/src/IconCalendarMonthOutlinedFilled.tsx +++ b/src/IconCalendarMonthOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconCalendarMonthOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconCalendarMonthOutlinedFilled as default } +export default IconCalendarMonthOutlinedFilled diff --git a/src/IconCalendarMonthRounded.tsx b/src/IconCalendarMonthRounded.tsx index 2e25488b4..b7a13ee50 100644 --- a/src/IconCalendarMonthRounded.tsx +++ b/src/IconCalendarMonthRounded.tsx @@ -8,4 +8,4 @@ const IconCalendarMonthRounded: React.FC = ({ ...props }) => ( ) -export { IconCalendarMonthRounded as default } +export default IconCalendarMonthRounded diff --git a/src/IconCalendarMonthRoundedFilled.tsx b/src/IconCalendarMonthRoundedFilled.tsx index df9272e02..3945650a7 100644 --- a/src/IconCalendarMonthRoundedFilled.tsx +++ b/src/IconCalendarMonthRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconCalendarMonthRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconCalendarMonthRoundedFilled as default } +export default IconCalendarMonthRoundedFilled diff --git a/src/IconCalendarMonthSharp.tsx b/src/IconCalendarMonthSharp.tsx index 771068758..c5ede9353 100644 --- a/src/IconCalendarMonthSharp.tsx +++ b/src/IconCalendarMonthSharp.tsx @@ -8,4 +8,4 @@ const IconCalendarMonthSharp: React.FC = ({ ...props }) => ( ) -export { IconCalendarMonthSharp as default } +export default IconCalendarMonthSharp diff --git a/src/IconCalendarMonthSharpFilled.tsx b/src/IconCalendarMonthSharpFilled.tsx index b78c9c903..153c76890 100644 --- a/src/IconCalendarMonthSharpFilled.tsx +++ b/src/IconCalendarMonthSharpFilled.tsx @@ -8,4 +8,4 @@ const IconCalendarMonthSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconCalendarMonthSharpFilled as default } +export default IconCalendarMonthSharpFilled diff --git a/src/IconCalendarTodayOutlined.tsx b/src/IconCalendarTodayOutlined.tsx index ef7eadc2d..740a00c30 100644 --- a/src/IconCalendarTodayOutlined.tsx +++ b/src/IconCalendarTodayOutlined.tsx @@ -8,4 +8,4 @@ const IconCalendarTodayOutlined: React.FC = ({ ...props }) => ( ) -export { IconCalendarTodayOutlined as default } +export default IconCalendarTodayOutlined diff --git a/src/IconCalendarTodayOutlinedFilled.tsx b/src/IconCalendarTodayOutlinedFilled.tsx index 3882e8c2f..05bcc168a 100644 --- a/src/IconCalendarTodayOutlinedFilled.tsx +++ b/src/IconCalendarTodayOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconCalendarTodayOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconCalendarTodayOutlinedFilled as default } +export default IconCalendarTodayOutlinedFilled diff --git a/src/IconCalendarTodayRounded.tsx b/src/IconCalendarTodayRounded.tsx index b3f4876d0..f356060be 100644 --- a/src/IconCalendarTodayRounded.tsx +++ b/src/IconCalendarTodayRounded.tsx @@ -8,4 +8,4 @@ const IconCalendarTodayRounded: React.FC = ({ ...props }) => ( ) -export { IconCalendarTodayRounded as default } +export default IconCalendarTodayRounded diff --git a/src/IconCalendarTodayRoundedFilled.tsx b/src/IconCalendarTodayRoundedFilled.tsx index 6185d61cc..c704bdc34 100644 --- a/src/IconCalendarTodayRoundedFilled.tsx +++ b/src/IconCalendarTodayRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconCalendarTodayRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconCalendarTodayRoundedFilled as default } +export default IconCalendarTodayRoundedFilled diff --git a/src/IconCalendarTodaySharp.tsx b/src/IconCalendarTodaySharp.tsx index 2482de6c6..608a1a5c2 100644 --- a/src/IconCalendarTodaySharp.tsx +++ b/src/IconCalendarTodaySharp.tsx @@ -8,4 +8,4 @@ const IconCalendarTodaySharp: React.FC = ({ ...props }) => ( ) -export { IconCalendarTodaySharp as default } +export default IconCalendarTodaySharp diff --git a/src/IconCalendarTodaySharpFilled.tsx b/src/IconCalendarTodaySharpFilled.tsx index ab9c004f6..eda63b9d5 100644 --- a/src/IconCalendarTodaySharpFilled.tsx +++ b/src/IconCalendarTodaySharpFilled.tsx @@ -8,4 +8,4 @@ const IconCalendarTodaySharpFilled: React.FC = ({ ...props }) => ( ) -export { IconCalendarTodaySharpFilled as default } +export default IconCalendarTodaySharpFilled diff --git a/src/IconCalendarViewDayOutlined.tsx b/src/IconCalendarViewDayOutlined.tsx index 5d2a149ee..6cd7b7a0e 100644 --- a/src/IconCalendarViewDayOutlined.tsx +++ b/src/IconCalendarViewDayOutlined.tsx @@ -8,4 +8,4 @@ const IconCalendarViewDayOutlined: React.FC = ({ ...props }) => ( ) -export { IconCalendarViewDayOutlined as default } +export default IconCalendarViewDayOutlined diff --git a/src/IconCalendarViewDayOutlinedFilled.tsx b/src/IconCalendarViewDayOutlinedFilled.tsx index 3579cf270..0f0532aeb 100644 --- a/src/IconCalendarViewDayOutlinedFilled.tsx +++ b/src/IconCalendarViewDayOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconCalendarViewDayOutlinedFilled: React.FC = ({ ) -export { IconCalendarViewDayOutlinedFilled as default } +export default IconCalendarViewDayOutlinedFilled diff --git a/src/IconCalendarViewDayRounded.tsx b/src/IconCalendarViewDayRounded.tsx index 47369f0af..7bc728650 100644 --- a/src/IconCalendarViewDayRounded.tsx +++ b/src/IconCalendarViewDayRounded.tsx @@ -8,4 +8,4 @@ const IconCalendarViewDayRounded: React.FC = ({ ...props }) => ( ) -export { IconCalendarViewDayRounded as default } +export default IconCalendarViewDayRounded diff --git a/src/IconCalendarViewDayRoundedFilled.tsx b/src/IconCalendarViewDayRoundedFilled.tsx index 42e3bdfa6..738eda2b4 100644 --- a/src/IconCalendarViewDayRoundedFilled.tsx +++ b/src/IconCalendarViewDayRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconCalendarViewDayRoundedFilled: React.FC = ({ ) -export { IconCalendarViewDayRoundedFilled as default } +export default IconCalendarViewDayRoundedFilled diff --git a/src/IconCalendarViewDaySharp.tsx b/src/IconCalendarViewDaySharp.tsx index 6ddef3909..ad5b6a788 100644 --- a/src/IconCalendarViewDaySharp.tsx +++ b/src/IconCalendarViewDaySharp.tsx @@ -8,4 +8,4 @@ const IconCalendarViewDaySharp: React.FC = ({ ...props }) => ( ) -export { IconCalendarViewDaySharp as default } +export default IconCalendarViewDaySharp diff --git a/src/IconCalendarViewDaySharpFilled.tsx b/src/IconCalendarViewDaySharpFilled.tsx index acd2ba32a..2629e0926 100644 --- a/src/IconCalendarViewDaySharpFilled.tsx +++ b/src/IconCalendarViewDaySharpFilled.tsx @@ -8,4 +8,4 @@ const IconCalendarViewDaySharpFilled: React.FC = ({ ...props }) => ( ) -export { IconCalendarViewDaySharpFilled as default } +export default IconCalendarViewDaySharpFilled diff --git a/src/IconCalendarViewMonthOutlined.tsx b/src/IconCalendarViewMonthOutlined.tsx index 9001b862b..2a6756023 100644 --- a/src/IconCalendarViewMonthOutlined.tsx +++ b/src/IconCalendarViewMonthOutlined.tsx @@ -8,4 +8,4 @@ const IconCalendarViewMonthOutlined: React.FC = ({ ...props }) => ( ) -export { IconCalendarViewMonthOutlined as default } +export default IconCalendarViewMonthOutlined diff --git a/src/IconCalendarViewMonthOutlinedFilled.tsx b/src/IconCalendarViewMonthOutlinedFilled.tsx index c1876d302..15dabba00 100644 --- a/src/IconCalendarViewMonthOutlinedFilled.tsx +++ b/src/IconCalendarViewMonthOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconCalendarViewMonthOutlinedFilled: React.FC = ({ ) -export { IconCalendarViewMonthOutlinedFilled as default } +export default IconCalendarViewMonthOutlinedFilled diff --git a/src/IconCalendarViewMonthRounded.tsx b/src/IconCalendarViewMonthRounded.tsx index ffc392c13..f35433c1d 100644 --- a/src/IconCalendarViewMonthRounded.tsx +++ b/src/IconCalendarViewMonthRounded.tsx @@ -8,4 +8,4 @@ const IconCalendarViewMonthRounded: React.FC = ({ ...props }) => ( ) -export { IconCalendarViewMonthRounded as default } +export default IconCalendarViewMonthRounded diff --git a/src/IconCalendarViewMonthRoundedFilled.tsx b/src/IconCalendarViewMonthRoundedFilled.tsx index 1cdc113a5..0adf37e61 100644 --- a/src/IconCalendarViewMonthRoundedFilled.tsx +++ b/src/IconCalendarViewMonthRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconCalendarViewMonthRoundedFilled: React.FC = ({ ) -export { IconCalendarViewMonthRoundedFilled as default } +export default IconCalendarViewMonthRoundedFilled diff --git a/src/IconCalendarViewMonthSharp.tsx b/src/IconCalendarViewMonthSharp.tsx index 94f16bfdc..93bfd613c 100644 --- a/src/IconCalendarViewMonthSharp.tsx +++ b/src/IconCalendarViewMonthSharp.tsx @@ -8,4 +8,4 @@ const IconCalendarViewMonthSharp: React.FC = ({ ...props }) => ( ) -export { IconCalendarViewMonthSharp as default } +export default IconCalendarViewMonthSharp diff --git a/src/IconCalendarViewMonthSharpFilled.tsx b/src/IconCalendarViewMonthSharpFilled.tsx index de44a03c4..4af93e76f 100644 --- a/src/IconCalendarViewMonthSharpFilled.tsx +++ b/src/IconCalendarViewMonthSharpFilled.tsx @@ -10,4 +10,4 @@ const IconCalendarViewMonthSharpFilled: React.FC = ({ ) -export { IconCalendarViewMonthSharpFilled as default } +export default IconCalendarViewMonthSharpFilled diff --git a/src/IconCalendarViewWeekOutlined.tsx b/src/IconCalendarViewWeekOutlined.tsx index 9f157c278..02f7733a1 100644 --- a/src/IconCalendarViewWeekOutlined.tsx +++ b/src/IconCalendarViewWeekOutlined.tsx @@ -8,4 +8,4 @@ const IconCalendarViewWeekOutlined: React.FC = ({ ...props }) => ( ) -export { IconCalendarViewWeekOutlined as default } +export default IconCalendarViewWeekOutlined diff --git a/src/IconCalendarViewWeekOutlinedFilled.tsx b/src/IconCalendarViewWeekOutlinedFilled.tsx index 61c9720a0..445376759 100644 --- a/src/IconCalendarViewWeekOutlinedFilled.tsx +++ b/src/IconCalendarViewWeekOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconCalendarViewWeekOutlinedFilled: React.FC = ({ ) -export { IconCalendarViewWeekOutlinedFilled as default } +export default IconCalendarViewWeekOutlinedFilled diff --git a/src/IconCalendarViewWeekRounded.tsx b/src/IconCalendarViewWeekRounded.tsx index ea32de6e7..b32a130ed 100644 --- a/src/IconCalendarViewWeekRounded.tsx +++ b/src/IconCalendarViewWeekRounded.tsx @@ -8,4 +8,4 @@ const IconCalendarViewWeekRounded: React.FC = ({ ...props }) => ( ) -export { IconCalendarViewWeekRounded as default } +export default IconCalendarViewWeekRounded diff --git a/src/IconCalendarViewWeekRoundedFilled.tsx b/src/IconCalendarViewWeekRoundedFilled.tsx index 7f80b2b74..ed4452379 100644 --- a/src/IconCalendarViewWeekRoundedFilled.tsx +++ b/src/IconCalendarViewWeekRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconCalendarViewWeekRoundedFilled: React.FC = ({ ) -export { IconCalendarViewWeekRoundedFilled as default } +export default IconCalendarViewWeekRoundedFilled diff --git a/src/IconCalendarViewWeekSharp.tsx b/src/IconCalendarViewWeekSharp.tsx index e6a87a850..1566abb34 100644 --- a/src/IconCalendarViewWeekSharp.tsx +++ b/src/IconCalendarViewWeekSharp.tsx @@ -8,4 +8,4 @@ const IconCalendarViewWeekSharp: React.FC = ({ ...props }) => ( ) -export { IconCalendarViewWeekSharp as default } +export default IconCalendarViewWeekSharp diff --git a/src/IconCalendarViewWeekSharpFilled.tsx b/src/IconCalendarViewWeekSharpFilled.tsx index 23d67ed20..43aa40b9e 100644 --- a/src/IconCalendarViewWeekSharpFilled.tsx +++ b/src/IconCalendarViewWeekSharpFilled.tsx @@ -8,4 +8,4 @@ const IconCalendarViewWeekSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconCalendarViewWeekSharpFilled as default } +export default IconCalendarViewWeekSharpFilled diff --git a/src/IconCallEndOutlined.tsx b/src/IconCallEndOutlined.tsx index 13b6600d3..46f8fc128 100644 --- a/src/IconCallEndOutlined.tsx +++ b/src/IconCallEndOutlined.tsx @@ -8,4 +8,4 @@ const IconCallEndOutlined: React.FC = ({ ...props }) => ( ) -export { IconCallEndOutlined as default } +export default IconCallEndOutlined diff --git a/src/IconCallEndOutlinedFilled.tsx b/src/IconCallEndOutlinedFilled.tsx index 0d86fc37e..ecdf1e36a 100644 --- a/src/IconCallEndOutlinedFilled.tsx +++ b/src/IconCallEndOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconCallEndOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconCallEndOutlinedFilled as default } +export default IconCallEndOutlinedFilled diff --git a/src/IconCallEndRounded.tsx b/src/IconCallEndRounded.tsx index d561c84c8..fe716ea09 100644 --- a/src/IconCallEndRounded.tsx +++ b/src/IconCallEndRounded.tsx @@ -8,4 +8,4 @@ const IconCallEndRounded: React.FC = ({ ...props }) => ( ) -export { IconCallEndRounded as default } +export default IconCallEndRounded diff --git a/src/IconCallEndRoundedFilled.tsx b/src/IconCallEndRoundedFilled.tsx index cc4413a54..a7a6f5f94 100644 --- a/src/IconCallEndRoundedFilled.tsx +++ b/src/IconCallEndRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconCallEndRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconCallEndRoundedFilled as default } +export default IconCallEndRoundedFilled diff --git a/src/IconCallEndSharp.tsx b/src/IconCallEndSharp.tsx index 051c692d5..152ed47cd 100644 --- a/src/IconCallEndSharp.tsx +++ b/src/IconCallEndSharp.tsx @@ -8,4 +8,4 @@ const IconCallEndSharp: React.FC = ({ ...props }) => ( ) -export { IconCallEndSharp as default } +export default IconCallEndSharp diff --git a/src/IconCallEndSharpFilled.tsx b/src/IconCallEndSharpFilled.tsx index 0eca8a274..2ab0c1e04 100644 --- a/src/IconCallEndSharpFilled.tsx +++ b/src/IconCallEndSharpFilled.tsx @@ -8,4 +8,4 @@ const IconCallEndSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconCallEndSharpFilled as default } +export default IconCallEndSharpFilled diff --git a/src/IconCallLogOutlined.tsx b/src/IconCallLogOutlined.tsx index 7c90413ab..a4b02c01a 100644 --- a/src/IconCallLogOutlined.tsx +++ b/src/IconCallLogOutlined.tsx @@ -8,4 +8,4 @@ const IconCallLogOutlined: React.FC = ({ ...props }) => ( ) -export { IconCallLogOutlined as default } +export default IconCallLogOutlined diff --git a/src/IconCallLogOutlinedFilled.tsx b/src/IconCallLogOutlinedFilled.tsx index 01b330a8f..eec822faa 100644 --- a/src/IconCallLogOutlinedFilled.tsx +++ b/src/IconCallLogOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconCallLogOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconCallLogOutlinedFilled as default } +export default IconCallLogOutlinedFilled diff --git a/src/IconCallLogRounded.tsx b/src/IconCallLogRounded.tsx index 8a022beaa..c64bb0eeb 100644 --- a/src/IconCallLogRounded.tsx +++ b/src/IconCallLogRounded.tsx @@ -8,4 +8,4 @@ const IconCallLogRounded: React.FC = ({ ...props }) => ( ) -export { IconCallLogRounded as default } +export default IconCallLogRounded diff --git a/src/IconCallLogRoundedFilled.tsx b/src/IconCallLogRoundedFilled.tsx index 0afb205b5..545e0fda0 100644 --- a/src/IconCallLogRoundedFilled.tsx +++ b/src/IconCallLogRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconCallLogRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconCallLogRoundedFilled as default } +export default IconCallLogRoundedFilled diff --git a/src/IconCallLogSharp.tsx b/src/IconCallLogSharp.tsx index b52e695f6..3f9c85548 100644 --- a/src/IconCallLogSharp.tsx +++ b/src/IconCallLogSharp.tsx @@ -8,4 +8,4 @@ const IconCallLogSharp: React.FC = ({ ...props }) => ( ) -export { IconCallLogSharp as default } +export default IconCallLogSharp diff --git a/src/IconCallLogSharpFilled.tsx b/src/IconCallLogSharpFilled.tsx index 2ad576488..c4398deca 100644 --- a/src/IconCallLogSharpFilled.tsx +++ b/src/IconCallLogSharpFilled.tsx @@ -8,4 +8,4 @@ const IconCallLogSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconCallLogSharpFilled as default } +export default IconCallLogSharpFilled diff --git a/src/IconCallMadeOutlined.tsx b/src/IconCallMadeOutlined.tsx index 154a9493f..610f60f2b 100644 --- a/src/IconCallMadeOutlined.tsx +++ b/src/IconCallMadeOutlined.tsx @@ -8,4 +8,4 @@ const IconCallMadeOutlined: React.FC = ({ ...props }) => ( ) -export { IconCallMadeOutlined as default } +export default IconCallMadeOutlined diff --git a/src/IconCallMadeOutlinedFilled.tsx b/src/IconCallMadeOutlinedFilled.tsx index abf191aa0..b3ce8f0c2 100644 --- a/src/IconCallMadeOutlinedFilled.tsx +++ b/src/IconCallMadeOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconCallMadeOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconCallMadeOutlinedFilled as default } +export default IconCallMadeOutlinedFilled diff --git a/src/IconCallMadeRounded.tsx b/src/IconCallMadeRounded.tsx index 3d6593bc0..ebd6c6108 100644 --- a/src/IconCallMadeRounded.tsx +++ b/src/IconCallMadeRounded.tsx @@ -8,4 +8,4 @@ const IconCallMadeRounded: React.FC = ({ ...props }) => ( ) -export { IconCallMadeRounded as default } +export default IconCallMadeRounded diff --git a/src/IconCallMadeRoundedFilled.tsx b/src/IconCallMadeRoundedFilled.tsx index 3bfd79eba..4bcee024e 100644 --- a/src/IconCallMadeRoundedFilled.tsx +++ b/src/IconCallMadeRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconCallMadeRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconCallMadeRoundedFilled as default } +export default IconCallMadeRoundedFilled diff --git a/src/IconCallMadeSharp.tsx b/src/IconCallMadeSharp.tsx index 3d88429f0..31b04e425 100644 --- a/src/IconCallMadeSharp.tsx +++ b/src/IconCallMadeSharp.tsx @@ -8,4 +8,4 @@ const IconCallMadeSharp: React.FC = ({ ...props }) => ( ) -export { IconCallMadeSharp as default } +export default IconCallMadeSharp diff --git a/src/IconCallMadeSharpFilled.tsx b/src/IconCallMadeSharpFilled.tsx index b42085cee..7c7ad3585 100644 --- a/src/IconCallMadeSharpFilled.tsx +++ b/src/IconCallMadeSharpFilled.tsx @@ -8,4 +8,4 @@ const IconCallMadeSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconCallMadeSharpFilled as default } +export default IconCallMadeSharpFilled diff --git a/src/IconCallMergeOutlined.tsx b/src/IconCallMergeOutlined.tsx index b38a027e2..c16c7898a 100644 --- a/src/IconCallMergeOutlined.tsx +++ b/src/IconCallMergeOutlined.tsx @@ -8,4 +8,4 @@ const IconCallMergeOutlined: React.FC = ({ ...props }) => ( ) -export { IconCallMergeOutlined as default } +export default IconCallMergeOutlined diff --git a/src/IconCallMergeOutlinedFilled.tsx b/src/IconCallMergeOutlinedFilled.tsx index 7be5eff20..ffae03bd4 100644 --- a/src/IconCallMergeOutlinedFilled.tsx +++ b/src/IconCallMergeOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconCallMergeOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconCallMergeOutlinedFilled as default } +export default IconCallMergeOutlinedFilled diff --git a/src/IconCallMergeRounded.tsx b/src/IconCallMergeRounded.tsx index f6560af72..d4e4488f7 100644 --- a/src/IconCallMergeRounded.tsx +++ b/src/IconCallMergeRounded.tsx @@ -8,4 +8,4 @@ const IconCallMergeRounded: React.FC = ({ ...props }) => ( ) -export { IconCallMergeRounded as default } +export default IconCallMergeRounded diff --git a/src/IconCallMergeRoundedFilled.tsx b/src/IconCallMergeRoundedFilled.tsx index 232e1ae0d..aa2e99d09 100644 --- a/src/IconCallMergeRoundedFilled.tsx +++ b/src/IconCallMergeRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconCallMergeRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconCallMergeRoundedFilled as default } +export default IconCallMergeRoundedFilled diff --git a/src/IconCallMergeSharp.tsx b/src/IconCallMergeSharp.tsx index c9c5b3332..c71e065e3 100644 --- a/src/IconCallMergeSharp.tsx +++ b/src/IconCallMergeSharp.tsx @@ -8,4 +8,4 @@ const IconCallMergeSharp: React.FC = ({ ...props }) => ( ) -export { IconCallMergeSharp as default } +export default IconCallMergeSharp diff --git a/src/IconCallMergeSharpFilled.tsx b/src/IconCallMergeSharpFilled.tsx index c4f56e0b3..b41edde55 100644 --- a/src/IconCallMergeSharpFilled.tsx +++ b/src/IconCallMergeSharpFilled.tsx @@ -8,4 +8,4 @@ const IconCallMergeSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconCallMergeSharpFilled as default } +export default IconCallMergeSharpFilled diff --git a/src/IconCallMissedOutgoingOutlined.tsx b/src/IconCallMissedOutgoingOutlined.tsx index 82158240a..797840505 100644 --- a/src/IconCallMissedOutgoingOutlined.tsx +++ b/src/IconCallMissedOutgoingOutlined.tsx @@ -8,4 +8,4 @@ const IconCallMissedOutgoingOutlined: React.FC = ({ ...props }) => ( ) -export { IconCallMissedOutgoingOutlined as default } +export default IconCallMissedOutgoingOutlined diff --git a/src/IconCallMissedOutgoingOutlinedFilled.tsx b/src/IconCallMissedOutgoingOutlinedFilled.tsx index c3327700d..4ab23bed7 100644 --- a/src/IconCallMissedOutgoingOutlinedFilled.tsx +++ b/src/IconCallMissedOutgoingOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconCallMissedOutgoingOutlinedFilled: React.FC = ({ ) -export { IconCallMissedOutgoingOutlinedFilled as default } +export default IconCallMissedOutgoingOutlinedFilled diff --git a/src/IconCallMissedOutgoingRounded.tsx b/src/IconCallMissedOutgoingRounded.tsx index 738b785d5..72d7e5900 100644 --- a/src/IconCallMissedOutgoingRounded.tsx +++ b/src/IconCallMissedOutgoingRounded.tsx @@ -8,4 +8,4 @@ const IconCallMissedOutgoingRounded: React.FC = ({ ...props }) => ( ) -export { IconCallMissedOutgoingRounded as default } +export default IconCallMissedOutgoingRounded diff --git a/src/IconCallMissedOutgoingRoundedFilled.tsx b/src/IconCallMissedOutgoingRoundedFilled.tsx index 0cf1a1f4a..0fca3972d 100644 --- a/src/IconCallMissedOutgoingRoundedFilled.tsx +++ b/src/IconCallMissedOutgoingRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconCallMissedOutgoingRoundedFilled: React.FC = ({ ) -export { IconCallMissedOutgoingRoundedFilled as default } +export default IconCallMissedOutgoingRoundedFilled diff --git a/src/IconCallMissedOutgoingSharp.tsx b/src/IconCallMissedOutgoingSharp.tsx index f6676de4a..d72086419 100644 --- a/src/IconCallMissedOutgoingSharp.tsx +++ b/src/IconCallMissedOutgoingSharp.tsx @@ -8,4 +8,4 @@ const IconCallMissedOutgoingSharp: React.FC = ({ ...props }) => ( ) -export { IconCallMissedOutgoingSharp as default } +export default IconCallMissedOutgoingSharp diff --git a/src/IconCallMissedOutgoingSharpFilled.tsx b/src/IconCallMissedOutgoingSharpFilled.tsx index ca88a4cea..4fecf0fdc 100644 --- a/src/IconCallMissedOutgoingSharpFilled.tsx +++ b/src/IconCallMissedOutgoingSharpFilled.tsx @@ -10,4 +10,4 @@ const IconCallMissedOutgoingSharpFilled: React.FC = ({ ) -export { IconCallMissedOutgoingSharpFilled as default } +export default IconCallMissedOutgoingSharpFilled diff --git a/src/IconCallMissedOutlined.tsx b/src/IconCallMissedOutlined.tsx index 1144caa6f..b0bd80b17 100644 --- a/src/IconCallMissedOutlined.tsx +++ b/src/IconCallMissedOutlined.tsx @@ -8,4 +8,4 @@ const IconCallMissedOutlined: React.FC = ({ ...props }) => ( ) -export { IconCallMissedOutlined as default } +export default IconCallMissedOutlined diff --git a/src/IconCallMissedOutlinedFilled.tsx b/src/IconCallMissedOutlinedFilled.tsx index 435ee587e..4dcbf7659 100644 --- a/src/IconCallMissedOutlinedFilled.tsx +++ b/src/IconCallMissedOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconCallMissedOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconCallMissedOutlinedFilled as default } +export default IconCallMissedOutlinedFilled diff --git a/src/IconCallMissedRounded.tsx b/src/IconCallMissedRounded.tsx index ea60d172b..dcaf2249f 100644 --- a/src/IconCallMissedRounded.tsx +++ b/src/IconCallMissedRounded.tsx @@ -8,4 +8,4 @@ const IconCallMissedRounded: React.FC = ({ ...props }) => ( ) -export { IconCallMissedRounded as default } +export default IconCallMissedRounded diff --git a/src/IconCallMissedRoundedFilled.tsx b/src/IconCallMissedRoundedFilled.tsx index 4e3a38579..adfc7e797 100644 --- a/src/IconCallMissedRoundedFilled.tsx +++ b/src/IconCallMissedRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconCallMissedRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconCallMissedRoundedFilled as default } +export default IconCallMissedRoundedFilled diff --git a/src/IconCallMissedSharp.tsx b/src/IconCallMissedSharp.tsx index ef7250e46..bbbccc12f 100644 --- a/src/IconCallMissedSharp.tsx +++ b/src/IconCallMissedSharp.tsx @@ -8,4 +8,4 @@ const IconCallMissedSharp: React.FC = ({ ...props }) => ( ) -export { IconCallMissedSharp as default } +export default IconCallMissedSharp diff --git a/src/IconCallMissedSharpFilled.tsx b/src/IconCallMissedSharpFilled.tsx index f4ef84741..a14f0ac21 100644 --- a/src/IconCallMissedSharpFilled.tsx +++ b/src/IconCallMissedSharpFilled.tsx @@ -8,4 +8,4 @@ const IconCallMissedSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconCallMissedSharpFilled as default } +export default IconCallMissedSharpFilled diff --git a/src/IconCallOutlined.tsx b/src/IconCallOutlined.tsx index 1d5a94a30..10708d1ed 100644 --- a/src/IconCallOutlined.tsx +++ b/src/IconCallOutlined.tsx @@ -8,4 +8,4 @@ const IconCallOutlined: React.FC = ({ ...props }) => ( ) -export { IconCallOutlined as default } +export default IconCallOutlined diff --git a/src/IconCallOutlinedFilled.tsx b/src/IconCallOutlinedFilled.tsx index cf355b5bc..d0f8c1151 100644 --- a/src/IconCallOutlinedFilled.tsx +++ b/src/IconCallOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconCallOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconCallOutlinedFilled as default } +export default IconCallOutlinedFilled diff --git a/src/IconCallQualityOutlined.tsx b/src/IconCallQualityOutlined.tsx index 1b0dc917d..f395444b6 100644 --- a/src/IconCallQualityOutlined.tsx +++ b/src/IconCallQualityOutlined.tsx @@ -8,4 +8,4 @@ const IconCallQualityOutlined: React.FC = ({ ...props }) => ( ) -export { IconCallQualityOutlined as default } +export default IconCallQualityOutlined diff --git a/src/IconCallQualityOutlinedFilled.tsx b/src/IconCallQualityOutlinedFilled.tsx index 9577d3ab1..d9b9e9c71 100644 --- a/src/IconCallQualityOutlinedFilled.tsx +++ b/src/IconCallQualityOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconCallQualityOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconCallQualityOutlinedFilled as default } +export default IconCallQualityOutlinedFilled diff --git a/src/IconCallQualityRounded.tsx b/src/IconCallQualityRounded.tsx index f8162d484..5f678978d 100644 --- a/src/IconCallQualityRounded.tsx +++ b/src/IconCallQualityRounded.tsx @@ -8,4 +8,4 @@ const IconCallQualityRounded: React.FC = ({ ...props }) => ( ) -export { IconCallQualityRounded as default } +export default IconCallQualityRounded diff --git a/src/IconCallQualityRoundedFilled.tsx b/src/IconCallQualityRoundedFilled.tsx index 30c2fcd0c..329744535 100644 --- a/src/IconCallQualityRoundedFilled.tsx +++ b/src/IconCallQualityRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconCallQualityRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconCallQualityRoundedFilled as default } +export default IconCallQualityRoundedFilled diff --git a/src/IconCallQualitySharp.tsx b/src/IconCallQualitySharp.tsx index 92ca1ecae..9c9132fe1 100644 --- a/src/IconCallQualitySharp.tsx +++ b/src/IconCallQualitySharp.tsx @@ -8,4 +8,4 @@ const IconCallQualitySharp: React.FC = ({ ...props }) => ( ) -export { IconCallQualitySharp as default } +export default IconCallQualitySharp diff --git a/src/IconCallQualitySharpFilled.tsx b/src/IconCallQualitySharpFilled.tsx index ab177082b..8abe53f18 100644 --- a/src/IconCallQualitySharpFilled.tsx +++ b/src/IconCallQualitySharpFilled.tsx @@ -8,4 +8,4 @@ const IconCallQualitySharpFilled: React.FC = ({ ...props }) => ( ) -export { IconCallQualitySharpFilled as default } +export default IconCallQualitySharpFilled diff --git a/src/IconCallReceivedOutlined.tsx b/src/IconCallReceivedOutlined.tsx index ab43016a2..f5579f6f1 100644 --- a/src/IconCallReceivedOutlined.tsx +++ b/src/IconCallReceivedOutlined.tsx @@ -8,4 +8,4 @@ const IconCallReceivedOutlined: React.FC = ({ ...props }) => ( ) -export { IconCallReceivedOutlined as default } +export default IconCallReceivedOutlined diff --git a/src/IconCallReceivedOutlinedFilled.tsx b/src/IconCallReceivedOutlinedFilled.tsx index 39ae80e6d..f26f3b457 100644 --- a/src/IconCallReceivedOutlinedFilled.tsx +++ b/src/IconCallReceivedOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconCallReceivedOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconCallReceivedOutlinedFilled as default } +export default IconCallReceivedOutlinedFilled diff --git a/src/IconCallReceivedRounded.tsx b/src/IconCallReceivedRounded.tsx index dffd91f80..b46892a58 100644 --- a/src/IconCallReceivedRounded.tsx +++ b/src/IconCallReceivedRounded.tsx @@ -8,4 +8,4 @@ const IconCallReceivedRounded: React.FC = ({ ...props }) => ( ) -export { IconCallReceivedRounded as default } +export default IconCallReceivedRounded diff --git a/src/IconCallReceivedRoundedFilled.tsx b/src/IconCallReceivedRoundedFilled.tsx index fc7ca4f46..ca02bf3e0 100644 --- a/src/IconCallReceivedRoundedFilled.tsx +++ b/src/IconCallReceivedRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconCallReceivedRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconCallReceivedRoundedFilled as default } +export default IconCallReceivedRoundedFilled diff --git a/src/IconCallReceivedSharp.tsx b/src/IconCallReceivedSharp.tsx index d9cbd83af..23a534f07 100644 --- a/src/IconCallReceivedSharp.tsx +++ b/src/IconCallReceivedSharp.tsx @@ -8,4 +8,4 @@ const IconCallReceivedSharp: React.FC = ({ ...props }) => ( ) -export { IconCallReceivedSharp as default } +export default IconCallReceivedSharp diff --git a/src/IconCallReceivedSharpFilled.tsx b/src/IconCallReceivedSharpFilled.tsx index a3f07cf92..e7d2c132c 100644 --- a/src/IconCallReceivedSharpFilled.tsx +++ b/src/IconCallReceivedSharpFilled.tsx @@ -8,4 +8,4 @@ const IconCallReceivedSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconCallReceivedSharpFilled as default } +export default IconCallReceivedSharpFilled diff --git a/src/IconCallRounded.tsx b/src/IconCallRounded.tsx index 911622752..a1923c65d 100644 --- a/src/IconCallRounded.tsx +++ b/src/IconCallRounded.tsx @@ -8,4 +8,4 @@ const IconCallRounded: React.FC = ({ ...props }) => ( ) -export { IconCallRounded as default } +export default IconCallRounded diff --git a/src/IconCallRoundedFilled.tsx b/src/IconCallRoundedFilled.tsx index 58e4a9e28..4fb041c1b 100644 --- a/src/IconCallRoundedFilled.tsx +++ b/src/IconCallRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconCallRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconCallRoundedFilled as default } +export default IconCallRoundedFilled diff --git a/src/IconCallSharp.tsx b/src/IconCallSharp.tsx index 1a6b2872f..610c1c168 100644 --- a/src/IconCallSharp.tsx +++ b/src/IconCallSharp.tsx @@ -8,4 +8,4 @@ const IconCallSharp: React.FC = ({ ...props }) => ( ) -export { IconCallSharp as default } +export default IconCallSharp diff --git a/src/IconCallSharpFilled.tsx b/src/IconCallSharpFilled.tsx index 3285d941a..a38f5f46f 100644 --- a/src/IconCallSharpFilled.tsx +++ b/src/IconCallSharpFilled.tsx @@ -8,4 +8,4 @@ const IconCallSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconCallSharpFilled as default } +export default IconCallSharpFilled diff --git a/src/IconCallSplitOutlined.tsx b/src/IconCallSplitOutlined.tsx index 449d5a9ba..046da8948 100644 --- a/src/IconCallSplitOutlined.tsx +++ b/src/IconCallSplitOutlined.tsx @@ -8,4 +8,4 @@ const IconCallSplitOutlined: React.FC = ({ ...props }) => ( ) -export { IconCallSplitOutlined as default } +export default IconCallSplitOutlined diff --git a/src/IconCallSplitOutlinedFilled.tsx b/src/IconCallSplitOutlinedFilled.tsx index d578dcaa8..56d151edd 100644 --- a/src/IconCallSplitOutlinedFilled.tsx +++ b/src/IconCallSplitOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconCallSplitOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconCallSplitOutlinedFilled as default } +export default IconCallSplitOutlinedFilled diff --git a/src/IconCallSplitRounded.tsx b/src/IconCallSplitRounded.tsx index 1e56df462..f50a94a19 100644 --- a/src/IconCallSplitRounded.tsx +++ b/src/IconCallSplitRounded.tsx @@ -8,4 +8,4 @@ const IconCallSplitRounded: React.FC = ({ ...props }) => ( ) -export { IconCallSplitRounded as default } +export default IconCallSplitRounded diff --git a/src/IconCallSplitRoundedFilled.tsx b/src/IconCallSplitRoundedFilled.tsx index eb8fcdc48..30b28999f 100644 --- a/src/IconCallSplitRoundedFilled.tsx +++ b/src/IconCallSplitRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconCallSplitRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconCallSplitRoundedFilled as default } +export default IconCallSplitRoundedFilled diff --git a/src/IconCallSplitSharp.tsx b/src/IconCallSplitSharp.tsx index f4d246113..f430502d8 100644 --- a/src/IconCallSplitSharp.tsx +++ b/src/IconCallSplitSharp.tsx @@ -8,4 +8,4 @@ const IconCallSplitSharp: React.FC = ({ ...props }) => ( ) -export { IconCallSplitSharp as default } +export default IconCallSplitSharp diff --git a/src/IconCallSplitSharpFilled.tsx b/src/IconCallSplitSharpFilled.tsx index 8afde3941..51efbbdd6 100644 --- a/src/IconCallSplitSharpFilled.tsx +++ b/src/IconCallSplitSharpFilled.tsx @@ -8,4 +8,4 @@ const IconCallSplitSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconCallSplitSharpFilled as default } +export default IconCallSplitSharpFilled diff --git a/src/IconCallToActionOutlined.tsx b/src/IconCallToActionOutlined.tsx index 1c3e87e31..7a8d57ff8 100644 --- a/src/IconCallToActionOutlined.tsx +++ b/src/IconCallToActionOutlined.tsx @@ -8,4 +8,4 @@ const IconCallToActionOutlined: React.FC = ({ ...props }) => ( ) -export { IconCallToActionOutlined as default } +export default IconCallToActionOutlined diff --git a/src/IconCallToActionOutlinedFilled.tsx b/src/IconCallToActionOutlinedFilled.tsx index 258d8ab8a..e15774a4a 100644 --- a/src/IconCallToActionOutlinedFilled.tsx +++ b/src/IconCallToActionOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconCallToActionOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconCallToActionOutlinedFilled as default } +export default IconCallToActionOutlinedFilled diff --git a/src/IconCallToActionRounded.tsx b/src/IconCallToActionRounded.tsx index 9344cc639..c6e7348e8 100644 --- a/src/IconCallToActionRounded.tsx +++ b/src/IconCallToActionRounded.tsx @@ -8,4 +8,4 @@ const IconCallToActionRounded: React.FC = ({ ...props }) => ( ) -export { IconCallToActionRounded as default } +export default IconCallToActionRounded diff --git a/src/IconCallToActionRoundedFilled.tsx b/src/IconCallToActionRoundedFilled.tsx index 3b7ca6a74..2e829d54d 100644 --- a/src/IconCallToActionRoundedFilled.tsx +++ b/src/IconCallToActionRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconCallToActionRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconCallToActionRoundedFilled as default } +export default IconCallToActionRoundedFilled diff --git a/src/IconCallToActionSharp.tsx b/src/IconCallToActionSharp.tsx index 7fc52b9e8..dbdd7ae06 100644 --- a/src/IconCallToActionSharp.tsx +++ b/src/IconCallToActionSharp.tsx @@ -8,4 +8,4 @@ const IconCallToActionSharp: React.FC = ({ ...props }) => ( ) -export { IconCallToActionSharp as default } +export default IconCallToActionSharp diff --git a/src/IconCallToActionSharpFilled.tsx b/src/IconCallToActionSharpFilled.tsx index 4004eaad3..8a6723d4e 100644 --- a/src/IconCallToActionSharpFilled.tsx +++ b/src/IconCallToActionSharpFilled.tsx @@ -8,4 +8,4 @@ const IconCallToActionSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconCallToActionSharpFilled as default } +export default IconCallToActionSharpFilled diff --git a/src/IconCameraFrontOutlined.tsx b/src/IconCameraFrontOutlined.tsx index 933f337d4..ddaab24c0 100644 --- a/src/IconCameraFrontOutlined.tsx +++ b/src/IconCameraFrontOutlined.tsx @@ -8,4 +8,4 @@ const IconCameraFrontOutlined: React.FC = ({ ...props }) => ( ) -export { IconCameraFrontOutlined as default } +export default IconCameraFrontOutlined diff --git a/src/IconCameraFrontOutlinedFilled.tsx b/src/IconCameraFrontOutlinedFilled.tsx index e1e2601ac..d49f1edb7 100644 --- a/src/IconCameraFrontOutlinedFilled.tsx +++ b/src/IconCameraFrontOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconCameraFrontOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconCameraFrontOutlinedFilled as default } +export default IconCameraFrontOutlinedFilled diff --git a/src/IconCameraFrontRounded.tsx b/src/IconCameraFrontRounded.tsx index 6def8be93..8545caffa 100644 --- a/src/IconCameraFrontRounded.tsx +++ b/src/IconCameraFrontRounded.tsx @@ -8,4 +8,4 @@ const IconCameraFrontRounded: React.FC = ({ ...props }) => ( ) -export { IconCameraFrontRounded as default } +export default IconCameraFrontRounded diff --git a/src/IconCameraFrontRoundedFilled.tsx b/src/IconCameraFrontRoundedFilled.tsx index f1334fec9..a34de1230 100644 --- a/src/IconCameraFrontRoundedFilled.tsx +++ b/src/IconCameraFrontRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconCameraFrontRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconCameraFrontRoundedFilled as default } +export default IconCameraFrontRoundedFilled diff --git a/src/IconCameraFrontSharp.tsx b/src/IconCameraFrontSharp.tsx index 2762ab435..d257c5409 100644 --- a/src/IconCameraFrontSharp.tsx +++ b/src/IconCameraFrontSharp.tsx @@ -8,4 +8,4 @@ const IconCameraFrontSharp: React.FC = ({ ...props }) => ( ) -export { IconCameraFrontSharp as default } +export default IconCameraFrontSharp diff --git a/src/IconCameraFrontSharpFilled.tsx b/src/IconCameraFrontSharpFilled.tsx index 8d8e46296..05cdd68c0 100644 --- a/src/IconCameraFrontSharpFilled.tsx +++ b/src/IconCameraFrontSharpFilled.tsx @@ -8,4 +8,4 @@ const IconCameraFrontSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconCameraFrontSharpFilled as default } +export default IconCameraFrontSharpFilled diff --git a/src/IconCameraIndoorOutlined.tsx b/src/IconCameraIndoorOutlined.tsx index 7202b2ecc..a3404584c 100644 --- a/src/IconCameraIndoorOutlined.tsx +++ b/src/IconCameraIndoorOutlined.tsx @@ -8,4 +8,4 @@ const IconCameraIndoorOutlined: React.FC = ({ ...props }) => ( ) -export { IconCameraIndoorOutlined as default } +export default IconCameraIndoorOutlined diff --git a/src/IconCameraIndoorOutlinedFilled.tsx b/src/IconCameraIndoorOutlinedFilled.tsx index 16dea0a46..8798b5933 100644 --- a/src/IconCameraIndoorOutlinedFilled.tsx +++ b/src/IconCameraIndoorOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconCameraIndoorOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconCameraIndoorOutlinedFilled as default } +export default IconCameraIndoorOutlinedFilled diff --git a/src/IconCameraIndoorRounded.tsx b/src/IconCameraIndoorRounded.tsx index 424d5a731..5a6beb6be 100644 --- a/src/IconCameraIndoorRounded.tsx +++ b/src/IconCameraIndoorRounded.tsx @@ -8,4 +8,4 @@ const IconCameraIndoorRounded: React.FC = ({ ...props }) => ( ) -export { IconCameraIndoorRounded as default } +export default IconCameraIndoorRounded diff --git a/src/IconCameraIndoorRoundedFilled.tsx b/src/IconCameraIndoorRoundedFilled.tsx index af007011e..1cb472603 100644 --- a/src/IconCameraIndoorRoundedFilled.tsx +++ b/src/IconCameraIndoorRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconCameraIndoorRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconCameraIndoorRoundedFilled as default } +export default IconCameraIndoorRoundedFilled diff --git a/src/IconCameraIndoorSharp.tsx b/src/IconCameraIndoorSharp.tsx index 7b14cb51d..43ec896a2 100644 --- a/src/IconCameraIndoorSharp.tsx +++ b/src/IconCameraIndoorSharp.tsx @@ -8,4 +8,4 @@ const IconCameraIndoorSharp: React.FC = ({ ...props }) => ( ) -export { IconCameraIndoorSharp as default } +export default IconCameraIndoorSharp diff --git a/src/IconCameraIndoorSharpFilled.tsx b/src/IconCameraIndoorSharpFilled.tsx index 1d7373cd2..ea07146ec 100644 --- a/src/IconCameraIndoorSharpFilled.tsx +++ b/src/IconCameraIndoorSharpFilled.tsx @@ -8,4 +8,4 @@ const IconCameraIndoorSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconCameraIndoorSharpFilled as default } +export default IconCameraIndoorSharpFilled diff --git a/src/IconCameraOutdoorOutlined.tsx b/src/IconCameraOutdoorOutlined.tsx index e9581e1b3..78e5fbb7b 100644 --- a/src/IconCameraOutdoorOutlined.tsx +++ b/src/IconCameraOutdoorOutlined.tsx @@ -8,4 +8,4 @@ const IconCameraOutdoorOutlined: React.FC = ({ ...props }) => ( ) -export { IconCameraOutdoorOutlined as default } +export default IconCameraOutdoorOutlined diff --git a/src/IconCameraOutdoorOutlinedFilled.tsx b/src/IconCameraOutdoorOutlinedFilled.tsx index 1c3f61cf8..fa6eb3414 100644 --- a/src/IconCameraOutdoorOutlinedFilled.tsx +++ b/src/IconCameraOutdoorOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconCameraOutdoorOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconCameraOutdoorOutlinedFilled as default } +export default IconCameraOutdoorOutlinedFilled diff --git a/src/IconCameraOutdoorRounded.tsx b/src/IconCameraOutdoorRounded.tsx index 98bc885e9..89b10fa4f 100644 --- a/src/IconCameraOutdoorRounded.tsx +++ b/src/IconCameraOutdoorRounded.tsx @@ -8,4 +8,4 @@ const IconCameraOutdoorRounded: React.FC = ({ ...props }) => ( ) -export { IconCameraOutdoorRounded as default } +export default IconCameraOutdoorRounded diff --git a/src/IconCameraOutdoorRoundedFilled.tsx b/src/IconCameraOutdoorRoundedFilled.tsx index ecfc33614..c88614398 100644 --- a/src/IconCameraOutdoorRoundedFilled.tsx +++ b/src/IconCameraOutdoorRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconCameraOutdoorRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconCameraOutdoorRoundedFilled as default } +export default IconCameraOutdoorRoundedFilled diff --git a/src/IconCameraOutdoorSharp.tsx b/src/IconCameraOutdoorSharp.tsx index d861e8ca0..c16806750 100644 --- a/src/IconCameraOutdoorSharp.tsx +++ b/src/IconCameraOutdoorSharp.tsx @@ -8,4 +8,4 @@ const IconCameraOutdoorSharp: React.FC = ({ ...props }) => ( ) -export { IconCameraOutdoorSharp as default } +export default IconCameraOutdoorSharp diff --git a/src/IconCameraOutdoorSharpFilled.tsx b/src/IconCameraOutdoorSharpFilled.tsx index 4946aff0e..4d16c347f 100644 --- a/src/IconCameraOutdoorSharpFilled.tsx +++ b/src/IconCameraOutdoorSharpFilled.tsx @@ -8,4 +8,4 @@ const IconCameraOutdoorSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconCameraOutdoorSharpFilled as default } +export default IconCameraOutdoorSharpFilled diff --git a/src/IconCameraOutlined.tsx b/src/IconCameraOutlined.tsx index 189d2d767..82b8c93a2 100644 --- a/src/IconCameraOutlined.tsx +++ b/src/IconCameraOutlined.tsx @@ -8,4 +8,4 @@ const IconCameraOutlined: React.FC = ({ ...props }) => ( ) -export { IconCameraOutlined as default } +export default IconCameraOutlined diff --git a/src/IconCameraOutlinedFilled.tsx b/src/IconCameraOutlinedFilled.tsx index 6c1b93d8a..08ab2b908 100644 --- a/src/IconCameraOutlinedFilled.tsx +++ b/src/IconCameraOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconCameraOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconCameraOutlinedFilled as default } +export default IconCameraOutlinedFilled diff --git a/src/IconCameraRearOutlined.tsx b/src/IconCameraRearOutlined.tsx index cb4918481..73f7772e7 100644 --- a/src/IconCameraRearOutlined.tsx +++ b/src/IconCameraRearOutlined.tsx @@ -8,4 +8,4 @@ const IconCameraRearOutlined: React.FC = ({ ...props }) => ( ) -export { IconCameraRearOutlined as default } +export default IconCameraRearOutlined diff --git a/src/IconCameraRearOutlinedFilled.tsx b/src/IconCameraRearOutlinedFilled.tsx index 7c7cb487f..bcb762fd4 100644 --- a/src/IconCameraRearOutlinedFilled.tsx +++ b/src/IconCameraRearOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconCameraRearOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconCameraRearOutlinedFilled as default } +export default IconCameraRearOutlinedFilled diff --git a/src/IconCameraRearRounded.tsx b/src/IconCameraRearRounded.tsx index a28e7bb9d..b4e14f4d3 100644 --- a/src/IconCameraRearRounded.tsx +++ b/src/IconCameraRearRounded.tsx @@ -8,4 +8,4 @@ const IconCameraRearRounded: React.FC = ({ ...props }) => ( ) -export { IconCameraRearRounded as default } +export default IconCameraRearRounded diff --git a/src/IconCameraRearRoundedFilled.tsx b/src/IconCameraRearRoundedFilled.tsx index a6e906996..94d76a032 100644 --- a/src/IconCameraRearRoundedFilled.tsx +++ b/src/IconCameraRearRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconCameraRearRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconCameraRearRoundedFilled as default } +export default IconCameraRearRoundedFilled diff --git a/src/IconCameraRearSharp.tsx b/src/IconCameraRearSharp.tsx index b503ea014..5677334ed 100644 --- a/src/IconCameraRearSharp.tsx +++ b/src/IconCameraRearSharp.tsx @@ -8,4 +8,4 @@ const IconCameraRearSharp: React.FC = ({ ...props }) => ( ) -export { IconCameraRearSharp as default } +export default IconCameraRearSharp diff --git a/src/IconCameraRearSharpFilled.tsx b/src/IconCameraRearSharpFilled.tsx index d483ba4bd..5d72cf829 100644 --- a/src/IconCameraRearSharpFilled.tsx +++ b/src/IconCameraRearSharpFilled.tsx @@ -8,4 +8,4 @@ const IconCameraRearSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconCameraRearSharpFilled as default } +export default IconCameraRearSharpFilled diff --git a/src/IconCameraRollOutlined.tsx b/src/IconCameraRollOutlined.tsx index 50fda6b8c..00daf8dbb 100644 --- a/src/IconCameraRollOutlined.tsx +++ b/src/IconCameraRollOutlined.tsx @@ -8,4 +8,4 @@ const IconCameraRollOutlined: React.FC = ({ ...props }) => ( ) -export { IconCameraRollOutlined as default } +export default IconCameraRollOutlined diff --git a/src/IconCameraRollOutlinedFilled.tsx b/src/IconCameraRollOutlinedFilled.tsx index dc25fc9b1..93253ac72 100644 --- a/src/IconCameraRollOutlinedFilled.tsx +++ b/src/IconCameraRollOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconCameraRollOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconCameraRollOutlinedFilled as default } +export default IconCameraRollOutlinedFilled diff --git a/src/IconCameraRollRounded.tsx b/src/IconCameraRollRounded.tsx index 619d12821..3537b9994 100644 --- a/src/IconCameraRollRounded.tsx +++ b/src/IconCameraRollRounded.tsx @@ -8,4 +8,4 @@ const IconCameraRollRounded: React.FC = ({ ...props }) => ( ) -export { IconCameraRollRounded as default } +export default IconCameraRollRounded diff --git a/src/IconCameraRollRoundedFilled.tsx b/src/IconCameraRollRoundedFilled.tsx index e926f39ce..3d6953ebd 100644 --- a/src/IconCameraRollRoundedFilled.tsx +++ b/src/IconCameraRollRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconCameraRollRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconCameraRollRoundedFilled as default } +export default IconCameraRollRoundedFilled diff --git a/src/IconCameraRollSharp.tsx b/src/IconCameraRollSharp.tsx index 6975ce9d2..423050ef9 100644 --- a/src/IconCameraRollSharp.tsx +++ b/src/IconCameraRollSharp.tsx @@ -8,4 +8,4 @@ const IconCameraRollSharp: React.FC = ({ ...props }) => ( ) -export { IconCameraRollSharp as default } +export default IconCameraRollSharp diff --git a/src/IconCameraRollSharpFilled.tsx b/src/IconCameraRollSharpFilled.tsx index 18503065b..bcea05054 100644 --- a/src/IconCameraRollSharpFilled.tsx +++ b/src/IconCameraRollSharpFilled.tsx @@ -8,4 +8,4 @@ const IconCameraRollSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconCameraRollSharpFilled as default } +export default IconCameraRollSharpFilled diff --git a/src/IconCameraRounded.tsx b/src/IconCameraRounded.tsx index 82b18589c..0bec076b1 100644 --- a/src/IconCameraRounded.tsx +++ b/src/IconCameraRounded.tsx @@ -8,4 +8,4 @@ const IconCameraRounded: React.FC = ({ ...props }) => ( ) -export { IconCameraRounded as default } +export default IconCameraRounded diff --git a/src/IconCameraRoundedFilled.tsx b/src/IconCameraRoundedFilled.tsx index e60a3c047..1920ce469 100644 --- a/src/IconCameraRoundedFilled.tsx +++ b/src/IconCameraRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconCameraRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconCameraRoundedFilled as default } +export default IconCameraRoundedFilled diff --git a/src/IconCameraSharp.tsx b/src/IconCameraSharp.tsx index ba0ebd791..ab7e1dd48 100644 --- a/src/IconCameraSharp.tsx +++ b/src/IconCameraSharp.tsx @@ -8,4 +8,4 @@ const IconCameraSharp: React.FC = ({ ...props }) => ( ) -export { IconCameraSharp as default } +export default IconCameraSharp diff --git a/src/IconCameraSharpFilled.tsx b/src/IconCameraSharpFilled.tsx index f888c1614..3779dce3f 100644 --- a/src/IconCameraSharpFilled.tsx +++ b/src/IconCameraSharpFilled.tsx @@ -8,4 +8,4 @@ const IconCameraSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconCameraSharpFilled as default } +export default IconCameraSharpFilled diff --git a/src/IconCameraVideoOutlined.tsx b/src/IconCameraVideoOutlined.tsx index 6133443e8..ca8e69be6 100644 --- a/src/IconCameraVideoOutlined.tsx +++ b/src/IconCameraVideoOutlined.tsx @@ -8,4 +8,4 @@ const IconCameraVideoOutlined: React.FC = ({ ...props }) => ( ) -export { IconCameraVideoOutlined as default } +export default IconCameraVideoOutlined diff --git a/src/IconCameraVideoOutlinedFilled.tsx b/src/IconCameraVideoOutlinedFilled.tsx index 328ac6467..dfa423eb6 100644 --- a/src/IconCameraVideoOutlinedFilled.tsx +++ b/src/IconCameraVideoOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconCameraVideoOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconCameraVideoOutlinedFilled as default } +export default IconCameraVideoOutlinedFilled diff --git a/src/IconCameraVideoRounded.tsx b/src/IconCameraVideoRounded.tsx index a5c0aa491..518cea492 100644 --- a/src/IconCameraVideoRounded.tsx +++ b/src/IconCameraVideoRounded.tsx @@ -8,4 +8,4 @@ const IconCameraVideoRounded: React.FC = ({ ...props }) => ( ) -export { IconCameraVideoRounded as default } +export default IconCameraVideoRounded diff --git a/src/IconCameraVideoRoundedFilled.tsx b/src/IconCameraVideoRoundedFilled.tsx index 9beaeaaf1..8b92e9864 100644 --- a/src/IconCameraVideoRoundedFilled.tsx +++ b/src/IconCameraVideoRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconCameraVideoRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconCameraVideoRoundedFilled as default } +export default IconCameraVideoRoundedFilled diff --git a/src/IconCameraVideoSharp.tsx b/src/IconCameraVideoSharp.tsx index 4fa73c954..7d2a4488f 100644 --- a/src/IconCameraVideoSharp.tsx +++ b/src/IconCameraVideoSharp.tsx @@ -8,4 +8,4 @@ const IconCameraVideoSharp: React.FC = ({ ...props }) => ( ) -export { IconCameraVideoSharp as default } +export default IconCameraVideoSharp diff --git a/src/IconCameraVideoSharpFilled.tsx b/src/IconCameraVideoSharpFilled.tsx index 3da867551..58492b391 100644 --- a/src/IconCameraVideoSharpFilled.tsx +++ b/src/IconCameraVideoSharpFilled.tsx @@ -8,4 +8,4 @@ const IconCameraVideoSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconCameraVideoSharpFilled as default } +export default IconCameraVideoSharpFilled diff --git a/src/IconCameraswitchOutlined.tsx b/src/IconCameraswitchOutlined.tsx index b163c57fa..f5268f80b 100644 --- a/src/IconCameraswitchOutlined.tsx +++ b/src/IconCameraswitchOutlined.tsx @@ -8,4 +8,4 @@ const IconCameraswitchOutlined: React.FC = ({ ...props }) => ( ) -export { IconCameraswitchOutlined as default } +export default IconCameraswitchOutlined diff --git a/src/IconCameraswitchOutlinedFilled.tsx b/src/IconCameraswitchOutlinedFilled.tsx index cb40d3905..4194ec704 100644 --- a/src/IconCameraswitchOutlinedFilled.tsx +++ b/src/IconCameraswitchOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconCameraswitchOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconCameraswitchOutlinedFilled as default } +export default IconCameraswitchOutlinedFilled diff --git a/src/IconCameraswitchRounded.tsx b/src/IconCameraswitchRounded.tsx index 559985461..0be11dd9f 100644 --- a/src/IconCameraswitchRounded.tsx +++ b/src/IconCameraswitchRounded.tsx @@ -8,4 +8,4 @@ const IconCameraswitchRounded: React.FC = ({ ...props }) => ( ) -export { IconCameraswitchRounded as default } +export default IconCameraswitchRounded diff --git a/src/IconCameraswitchRoundedFilled.tsx b/src/IconCameraswitchRoundedFilled.tsx index 1344c6fce..ca8f3a435 100644 --- a/src/IconCameraswitchRoundedFilled.tsx +++ b/src/IconCameraswitchRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconCameraswitchRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconCameraswitchRoundedFilled as default } +export default IconCameraswitchRoundedFilled diff --git a/src/IconCameraswitchSharp.tsx b/src/IconCameraswitchSharp.tsx index 4240b3c73..54da1b9ad 100644 --- a/src/IconCameraswitchSharp.tsx +++ b/src/IconCameraswitchSharp.tsx @@ -8,4 +8,4 @@ const IconCameraswitchSharp: React.FC = ({ ...props }) => ( ) -export { IconCameraswitchSharp as default } +export default IconCameraswitchSharp diff --git a/src/IconCameraswitchSharpFilled.tsx b/src/IconCameraswitchSharpFilled.tsx index 6f1fa8e70..794563170 100644 --- a/src/IconCameraswitchSharpFilled.tsx +++ b/src/IconCameraswitchSharpFilled.tsx @@ -8,4 +8,4 @@ const IconCameraswitchSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconCameraswitchSharpFilled as default } +export default IconCameraswitchSharpFilled diff --git a/src/IconCampaignOutlined.tsx b/src/IconCampaignOutlined.tsx index edd1037d1..9eb5c9484 100644 --- a/src/IconCampaignOutlined.tsx +++ b/src/IconCampaignOutlined.tsx @@ -8,4 +8,4 @@ const IconCampaignOutlined: React.FC = ({ ...props }) => ( ) -export { IconCampaignOutlined as default } +export default IconCampaignOutlined diff --git a/src/IconCampaignOutlinedFilled.tsx b/src/IconCampaignOutlinedFilled.tsx index d66d1d369..91f02d5d2 100644 --- a/src/IconCampaignOutlinedFilled.tsx +++ b/src/IconCampaignOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconCampaignOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconCampaignOutlinedFilled as default } +export default IconCampaignOutlinedFilled diff --git a/src/IconCampaignRounded.tsx b/src/IconCampaignRounded.tsx index f8a90917a..9f8ef8c30 100644 --- a/src/IconCampaignRounded.tsx +++ b/src/IconCampaignRounded.tsx @@ -8,4 +8,4 @@ const IconCampaignRounded: React.FC = ({ ...props }) => ( ) -export { IconCampaignRounded as default } +export default IconCampaignRounded diff --git a/src/IconCampaignRoundedFilled.tsx b/src/IconCampaignRoundedFilled.tsx index 393acd36f..3ca349951 100644 --- a/src/IconCampaignRoundedFilled.tsx +++ b/src/IconCampaignRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconCampaignRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconCampaignRoundedFilled as default } +export default IconCampaignRoundedFilled diff --git a/src/IconCampaignSharp.tsx b/src/IconCampaignSharp.tsx index d70ef1bbd..a9eb4a82f 100644 --- a/src/IconCampaignSharp.tsx +++ b/src/IconCampaignSharp.tsx @@ -8,4 +8,4 @@ const IconCampaignSharp: React.FC = ({ ...props }) => ( ) -export { IconCampaignSharp as default } +export default IconCampaignSharp diff --git a/src/IconCampaignSharpFilled.tsx b/src/IconCampaignSharpFilled.tsx index 0555917e6..8189d6047 100644 --- a/src/IconCampaignSharpFilled.tsx +++ b/src/IconCampaignSharpFilled.tsx @@ -8,4 +8,4 @@ const IconCampaignSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconCampaignSharpFilled as default } +export default IconCampaignSharpFilled diff --git a/src/IconCampingOutlined.tsx b/src/IconCampingOutlined.tsx index 1ce5f2480..14d92ceb2 100644 --- a/src/IconCampingOutlined.tsx +++ b/src/IconCampingOutlined.tsx @@ -8,4 +8,4 @@ const IconCampingOutlined: React.FC = ({ ...props }) => ( ) -export { IconCampingOutlined as default } +export default IconCampingOutlined diff --git a/src/IconCampingOutlinedFilled.tsx b/src/IconCampingOutlinedFilled.tsx index 8cbe1253b..a8c1acb11 100644 --- a/src/IconCampingOutlinedFilled.tsx +++ b/src/IconCampingOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconCampingOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconCampingOutlinedFilled as default } +export default IconCampingOutlinedFilled diff --git a/src/IconCampingRounded.tsx b/src/IconCampingRounded.tsx index a832a9920..6921398b3 100644 --- a/src/IconCampingRounded.tsx +++ b/src/IconCampingRounded.tsx @@ -8,4 +8,4 @@ const IconCampingRounded: React.FC = ({ ...props }) => ( ) -export { IconCampingRounded as default } +export default IconCampingRounded diff --git a/src/IconCampingRoundedFilled.tsx b/src/IconCampingRoundedFilled.tsx index 57c0836e7..047e64789 100644 --- a/src/IconCampingRoundedFilled.tsx +++ b/src/IconCampingRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconCampingRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconCampingRoundedFilled as default } +export default IconCampingRoundedFilled diff --git a/src/IconCampingSharp.tsx b/src/IconCampingSharp.tsx index 432897c61..49c554ce9 100644 --- a/src/IconCampingSharp.tsx +++ b/src/IconCampingSharp.tsx @@ -8,4 +8,4 @@ const IconCampingSharp: React.FC = ({ ...props }) => ( ) -export { IconCampingSharp as default } +export default IconCampingSharp diff --git a/src/IconCampingSharpFilled.tsx b/src/IconCampingSharpFilled.tsx index 461cac609..052b9b9ea 100644 --- a/src/IconCampingSharpFilled.tsx +++ b/src/IconCampingSharpFilled.tsx @@ -8,4 +8,4 @@ const IconCampingSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconCampingSharpFilled as default } +export default IconCampingSharpFilled diff --git a/src/IconCancelOutlined.tsx b/src/IconCancelOutlined.tsx index cfd055ad0..52b642990 100644 --- a/src/IconCancelOutlined.tsx +++ b/src/IconCancelOutlined.tsx @@ -8,4 +8,4 @@ const IconCancelOutlined: React.FC = ({ ...props }) => ( ) -export { IconCancelOutlined as default } +export default IconCancelOutlined diff --git a/src/IconCancelOutlinedFilled.tsx b/src/IconCancelOutlinedFilled.tsx index 554ba7010..58c35c4e8 100644 --- a/src/IconCancelOutlinedFilled.tsx +++ b/src/IconCancelOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconCancelOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconCancelOutlinedFilled as default } +export default IconCancelOutlinedFilled diff --git a/src/IconCancelPresentationOutlined.tsx b/src/IconCancelPresentationOutlined.tsx index 285c74ca7..5ab664df4 100644 --- a/src/IconCancelPresentationOutlined.tsx +++ b/src/IconCancelPresentationOutlined.tsx @@ -8,4 +8,4 @@ const IconCancelPresentationOutlined: React.FC = ({ ...props }) => ( ) -export { IconCancelPresentationOutlined as default } +export default IconCancelPresentationOutlined diff --git a/src/IconCancelPresentationOutlinedFilled.tsx b/src/IconCancelPresentationOutlinedFilled.tsx index 23d64eb19..6defcc6f2 100644 --- a/src/IconCancelPresentationOutlinedFilled.tsx +++ b/src/IconCancelPresentationOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconCancelPresentationOutlinedFilled: React.FC = ({ ) -export { IconCancelPresentationOutlinedFilled as default } +export default IconCancelPresentationOutlinedFilled diff --git a/src/IconCancelPresentationRounded.tsx b/src/IconCancelPresentationRounded.tsx index abb15bdf0..75259a03b 100644 --- a/src/IconCancelPresentationRounded.tsx +++ b/src/IconCancelPresentationRounded.tsx @@ -8,4 +8,4 @@ const IconCancelPresentationRounded: React.FC = ({ ...props }) => ( ) -export { IconCancelPresentationRounded as default } +export default IconCancelPresentationRounded diff --git a/src/IconCancelPresentationRoundedFilled.tsx b/src/IconCancelPresentationRoundedFilled.tsx index 5f03332de..6b0a4ca8b 100644 --- a/src/IconCancelPresentationRoundedFilled.tsx +++ b/src/IconCancelPresentationRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconCancelPresentationRoundedFilled: React.FC = ({ ) -export { IconCancelPresentationRoundedFilled as default } +export default IconCancelPresentationRoundedFilled diff --git a/src/IconCancelPresentationSharp.tsx b/src/IconCancelPresentationSharp.tsx index 87aac1286..181045d42 100644 --- a/src/IconCancelPresentationSharp.tsx +++ b/src/IconCancelPresentationSharp.tsx @@ -8,4 +8,4 @@ const IconCancelPresentationSharp: React.FC = ({ ...props }) => ( ) -export { IconCancelPresentationSharp as default } +export default IconCancelPresentationSharp diff --git a/src/IconCancelPresentationSharpFilled.tsx b/src/IconCancelPresentationSharpFilled.tsx index 33c5c62aa..c2fe1d490 100644 --- a/src/IconCancelPresentationSharpFilled.tsx +++ b/src/IconCancelPresentationSharpFilled.tsx @@ -10,4 +10,4 @@ const IconCancelPresentationSharpFilled: React.FC = ({ ) -export { IconCancelPresentationSharpFilled as default } +export default IconCancelPresentationSharpFilled diff --git a/src/IconCancelRounded.tsx b/src/IconCancelRounded.tsx index 93b86fb9d..7df5da1ff 100644 --- a/src/IconCancelRounded.tsx +++ b/src/IconCancelRounded.tsx @@ -8,4 +8,4 @@ const IconCancelRounded: React.FC = ({ ...props }) => ( ) -export { IconCancelRounded as default } +export default IconCancelRounded diff --git a/src/IconCancelRoundedFilled.tsx b/src/IconCancelRoundedFilled.tsx index 993f12929..ee18aba98 100644 --- a/src/IconCancelRoundedFilled.tsx +++ b/src/IconCancelRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconCancelRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconCancelRoundedFilled as default } +export default IconCancelRoundedFilled diff --git a/src/IconCancelScheduleSendOutlined.tsx b/src/IconCancelScheduleSendOutlined.tsx index 2bc70917d..c2de5e667 100644 --- a/src/IconCancelScheduleSendOutlined.tsx +++ b/src/IconCancelScheduleSendOutlined.tsx @@ -8,4 +8,4 @@ const IconCancelScheduleSendOutlined: React.FC = ({ ...props }) => ( ) -export { IconCancelScheduleSendOutlined as default } +export default IconCancelScheduleSendOutlined diff --git a/src/IconCancelScheduleSendOutlinedFilled.tsx b/src/IconCancelScheduleSendOutlinedFilled.tsx index ed6a6474f..dfc9c348a 100644 --- a/src/IconCancelScheduleSendOutlinedFilled.tsx +++ b/src/IconCancelScheduleSendOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconCancelScheduleSendOutlinedFilled: React.FC = ({ ) -export { IconCancelScheduleSendOutlinedFilled as default } +export default IconCancelScheduleSendOutlinedFilled diff --git a/src/IconCancelScheduleSendRounded.tsx b/src/IconCancelScheduleSendRounded.tsx index a1644ca6f..2e32a9730 100644 --- a/src/IconCancelScheduleSendRounded.tsx +++ b/src/IconCancelScheduleSendRounded.tsx @@ -8,4 +8,4 @@ const IconCancelScheduleSendRounded: React.FC = ({ ...props }) => ( ) -export { IconCancelScheduleSendRounded as default } +export default IconCancelScheduleSendRounded diff --git a/src/IconCancelScheduleSendRoundedFilled.tsx b/src/IconCancelScheduleSendRoundedFilled.tsx index 05d32bcfc..664f4db07 100644 --- a/src/IconCancelScheduleSendRoundedFilled.tsx +++ b/src/IconCancelScheduleSendRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconCancelScheduleSendRoundedFilled: React.FC = ({ ) -export { IconCancelScheduleSendRoundedFilled as default } +export default IconCancelScheduleSendRoundedFilled diff --git a/src/IconCancelScheduleSendSharp.tsx b/src/IconCancelScheduleSendSharp.tsx index 037d5f0e8..2f677d4b9 100644 --- a/src/IconCancelScheduleSendSharp.tsx +++ b/src/IconCancelScheduleSendSharp.tsx @@ -8,4 +8,4 @@ const IconCancelScheduleSendSharp: React.FC = ({ ...props }) => ( ) -export { IconCancelScheduleSendSharp as default } +export default IconCancelScheduleSendSharp diff --git a/src/IconCancelScheduleSendSharpFilled.tsx b/src/IconCancelScheduleSendSharpFilled.tsx index d69320f1e..466ed40d6 100644 --- a/src/IconCancelScheduleSendSharpFilled.tsx +++ b/src/IconCancelScheduleSendSharpFilled.tsx @@ -10,4 +10,4 @@ const IconCancelScheduleSendSharpFilled: React.FC = ({ ) -export { IconCancelScheduleSendSharpFilled as default } +export default IconCancelScheduleSendSharpFilled diff --git a/src/IconCancelSharp.tsx b/src/IconCancelSharp.tsx index 9bb920d29..37f0bf25c 100644 --- a/src/IconCancelSharp.tsx +++ b/src/IconCancelSharp.tsx @@ -8,4 +8,4 @@ const IconCancelSharp: React.FC = ({ ...props }) => ( ) -export { IconCancelSharp as default } +export default IconCancelSharp diff --git a/src/IconCancelSharpFilled.tsx b/src/IconCancelSharpFilled.tsx index 364bdfe48..0a733b561 100644 --- a/src/IconCancelSharpFilled.tsx +++ b/src/IconCancelSharpFilled.tsx @@ -8,4 +8,4 @@ const IconCancelSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconCancelSharpFilled as default } +export default IconCancelSharpFilled diff --git a/src/IconCandleOutlined.tsx b/src/IconCandleOutlined.tsx index b35b42c99..c04b3969b 100644 --- a/src/IconCandleOutlined.tsx +++ b/src/IconCandleOutlined.tsx @@ -8,4 +8,4 @@ const IconCandleOutlined: React.FC = ({ ...props }) => ( ) -export { IconCandleOutlined as default } +export default IconCandleOutlined diff --git a/src/IconCandleOutlinedFilled.tsx b/src/IconCandleOutlinedFilled.tsx index 5b98928ea..2999e42a1 100644 --- a/src/IconCandleOutlinedFilled.tsx +++ b/src/IconCandleOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconCandleOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconCandleOutlinedFilled as default } +export default IconCandleOutlinedFilled diff --git a/src/IconCandleRounded.tsx b/src/IconCandleRounded.tsx index 70b79ffc5..7332d5efc 100644 --- a/src/IconCandleRounded.tsx +++ b/src/IconCandleRounded.tsx @@ -8,4 +8,4 @@ const IconCandleRounded: React.FC = ({ ...props }) => ( ) -export { IconCandleRounded as default } +export default IconCandleRounded diff --git a/src/IconCandleRoundedFilled.tsx b/src/IconCandleRoundedFilled.tsx index cac68117a..4702804ac 100644 --- a/src/IconCandleRoundedFilled.tsx +++ b/src/IconCandleRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconCandleRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconCandleRoundedFilled as default } +export default IconCandleRoundedFilled diff --git a/src/IconCandleSharp.tsx b/src/IconCandleSharp.tsx index 7a3b8bc13..9f9a6917a 100644 --- a/src/IconCandleSharp.tsx +++ b/src/IconCandleSharp.tsx @@ -8,4 +8,4 @@ const IconCandleSharp: React.FC = ({ ...props }) => ( ) -export { IconCandleSharp as default } +export default IconCandleSharp diff --git a/src/IconCandleSharpFilled.tsx b/src/IconCandleSharpFilled.tsx index 29cc5bd21..553b5e390 100644 --- a/src/IconCandleSharpFilled.tsx +++ b/src/IconCandleSharpFilled.tsx @@ -8,4 +8,4 @@ const IconCandleSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconCandleSharpFilled as default } +export default IconCandleSharpFilled diff --git a/src/IconCandlestickChartOutlined.tsx b/src/IconCandlestickChartOutlined.tsx index 457a39f47..41230c9ea 100644 --- a/src/IconCandlestickChartOutlined.tsx +++ b/src/IconCandlestickChartOutlined.tsx @@ -8,4 +8,4 @@ const IconCandlestickChartOutlined: React.FC = ({ ...props }) => ( ) -export { IconCandlestickChartOutlined as default } +export default IconCandlestickChartOutlined diff --git a/src/IconCandlestickChartOutlinedFilled.tsx b/src/IconCandlestickChartOutlinedFilled.tsx index 3a16b5d92..1eea3f6ab 100644 --- a/src/IconCandlestickChartOutlinedFilled.tsx +++ b/src/IconCandlestickChartOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconCandlestickChartOutlinedFilled: React.FC = ({ ) -export { IconCandlestickChartOutlinedFilled as default } +export default IconCandlestickChartOutlinedFilled diff --git a/src/IconCandlestickChartRounded.tsx b/src/IconCandlestickChartRounded.tsx index b7cb829d3..97f031c1f 100644 --- a/src/IconCandlestickChartRounded.tsx +++ b/src/IconCandlestickChartRounded.tsx @@ -8,4 +8,4 @@ const IconCandlestickChartRounded: React.FC = ({ ...props }) => ( ) -export { IconCandlestickChartRounded as default } +export default IconCandlestickChartRounded diff --git a/src/IconCandlestickChartRoundedFilled.tsx b/src/IconCandlestickChartRoundedFilled.tsx index f78c3d0b5..4fd97f7a5 100644 --- a/src/IconCandlestickChartRoundedFilled.tsx +++ b/src/IconCandlestickChartRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconCandlestickChartRoundedFilled: React.FC = ({ ) -export { IconCandlestickChartRoundedFilled as default } +export default IconCandlestickChartRoundedFilled diff --git a/src/IconCandlestickChartSharp.tsx b/src/IconCandlestickChartSharp.tsx index 7c6f23ffb..87df37277 100644 --- a/src/IconCandlestickChartSharp.tsx +++ b/src/IconCandlestickChartSharp.tsx @@ -8,4 +8,4 @@ const IconCandlestickChartSharp: React.FC = ({ ...props }) => ( ) -export { IconCandlestickChartSharp as default } +export default IconCandlestickChartSharp diff --git a/src/IconCandlestickChartSharpFilled.tsx b/src/IconCandlestickChartSharpFilled.tsx index 5f370e456..da84b7318 100644 --- a/src/IconCandlestickChartSharpFilled.tsx +++ b/src/IconCandlestickChartSharpFilled.tsx @@ -8,4 +8,4 @@ const IconCandlestickChartSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconCandlestickChartSharpFilled as default } +export default IconCandlestickChartSharpFilled diff --git a/src/IconCaptivePortalOutlined.tsx b/src/IconCaptivePortalOutlined.tsx index 2ee6e68e2..71541c98c 100644 --- a/src/IconCaptivePortalOutlined.tsx +++ b/src/IconCaptivePortalOutlined.tsx @@ -8,4 +8,4 @@ const IconCaptivePortalOutlined: React.FC = ({ ...props }) => ( ) -export { IconCaptivePortalOutlined as default } +export default IconCaptivePortalOutlined diff --git a/src/IconCaptivePortalOutlinedFilled.tsx b/src/IconCaptivePortalOutlinedFilled.tsx index 89ca7fa78..b828c2cca 100644 --- a/src/IconCaptivePortalOutlinedFilled.tsx +++ b/src/IconCaptivePortalOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconCaptivePortalOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconCaptivePortalOutlinedFilled as default } +export default IconCaptivePortalOutlinedFilled diff --git a/src/IconCaptivePortalRounded.tsx b/src/IconCaptivePortalRounded.tsx index 4c277c2be..a88356241 100644 --- a/src/IconCaptivePortalRounded.tsx +++ b/src/IconCaptivePortalRounded.tsx @@ -8,4 +8,4 @@ const IconCaptivePortalRounded: React.FC = ({ ...props }) => ( ) -export { IconCaptivePortalRounded as default } +export default IconCaptivePortalRounded diff --git a/src/IconCaptivePortalRoundedFilled.tsx b/src/IconCaptivePortalRoundedFilled.tsx index c0637d643..1ca2d75bd 100644 --- a/src/IconCaptivePortalRoundedFilled.tsx +++ b/src/IconCaptivePortalRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconCaptivePortalRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconCaptivePortalRoundedFilled as default } +export default IconCaptivePortalRoundedFilled diff --git a/src/IconCaptivePortalSharp.tsx b/src/IconCaptivePortalSharp.tsx index 6dc8c51c7..70df80aa6 100644 --- a/src/IconCaptivePortalSharp.tsx +++ b/src/IconCaptivePortalSharp.tsx @@ -8,4 +8,4 @@ const IconCaptivePortalSharp: React.FC = ({ ...props }) => ( ) -export { IconCaptivePortalSharp as default } +export default IconCaptivePortalSharp diff --git a/src/IconCaptivePortalSharpFilled.tsx b/src/IconCaptivePortalSharpFilled.tsx index 3c57522ab..ebe9aecd8 100644 --- a/src/IconCaptivePortalSharpFilled.tsx +++ b/src/IconCaptivePortalSharpFilled.tsx @@ -8,4 +8,4 @@ const IconCaptivePortalSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconCaptivePortalSharpFilled as default } +export default IconCaptivePortalSharpFilled diff --git a/src/IconCaptureOutlined.tsx b/src/IconCaptureOutlined.tsx index 8e6c91c0c..e613a79fe 100644 --- a/src/IconCaptureOutlined.tsx +++ b/src/IconCaptureOutlined.tsx @@ -8,4 +8,4 @@ const IconCaptureOutlined: React.FC = ({ ...props }) => ( ) -export { IconCaptureOutlined as default } +export default IconCaptureOutlined diff --git a/src/IconCaptureOutlinedFilled.tsx b/src/IconCaptureOutlinedFilled.tsx index 25ee6b252..494d8f8c8 100644 --- a/src/IconCaptureOutlinedFilled.tsx +++ b/src/IconCaptureOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconCaptureOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconCaptureOutlinedFilled as default } +export default IconCaptureOutlinedFilled diff --git a/src/IconCaptureRounded.tsx b/src/IconCaptureRounded.tsx index 9d760b678..f50c07bb3 100644 --- a/src/IconCaptureRounded.tsx +++ b/src/IconCaptureRounded.tsx @@ -8,4 +8,4 @@ const IconCaptureRounded: React.FC = ({ ...props }) => ( ) -export { IconCaptureRounded as default } +export default IconCaptureRounded diff --git a/src/IconCaptureRoundedFilled.tsx b/src/IconCaptureRoundedFilled.tsx index 742f19172..cf8f86e0d 100644 --- a/src/IconCaptureRoundedFilled.tsx +++ b/src/IconCaptureRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconCaptureRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconCaptureRoundedFilled as default } +export default IconCaptureRoundedFilled diff --git a/src/IconCaptureSharp.tsx b/src/IconCaptureSharp.tsx index f92133d8e..1d85a591e 100644 --- a/src/IconCaptureSharp.tsx +++ b/src/IconCaptureSharp.tsx @@ -8,4 +8,4 @@ const IconCaptureSharp: React.FC = ({ ...props }) => ( ) -export { IconCaptureSharp as default } +export default IconCaptureSharp diff --git a/src/IconCaptureSharpFilled.tsx b/src/IconCaptureSharpFilled.tsx index 2e9c5503b..5219c5395 100644 --- a/src/IconCaptureSharpFilled.tsx +++ b/src/IconCaptureSharpFilled.tsx @@ -8,4 +8,4 @@ const IconCaptureSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconCaptureSharpFilled as default } +export default IconCaptureSharpFilled diff --git a/src/IconCarCrashOutlined.tsx b/src/IconCarCrashOutlined.tsx index 5925dc6c9..d908e45c4 100644 --- a/src/IconCarCrashOutlined.tsx +++ b/src/IconCarCrashOutlined.tsx @@ -8,4 +8,4 @@ const IconCarCrashOutlined: React.FC = ({ ...props }) => ( ) -export { IconCarCrashOutlined as default } +export default IconCarCrashOutlined diff --git a/src/IconCarCrashOutlinedFilled.tsx b/src/IconCarCrashOutlinedFilled.tsx index 68440bc8f..6fe77395b 100644 --- a/src/IconCarCrashOutlinedFilled.tsx +++ b/src/IconCarCrashOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconCarCrashOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconCarCrashOutlinedFilled as default } +export default IconCarCrashOutlinedFilled diff --git a/src/IconCarCrashRounded.tsx b/src/IconCarCrashRounded.tsx index 400ab6c74..4de20deee 100644 --- a/src/IconCarCrashRounded.tsx +++ b/src/IconCarCrashRounded.tsx @@ -8,4 +8,4 @@ const IconCarCrashRounded: React.FC = ({ ...props }) => ( ) -export { IconCarCrashRounded as default } +export default IconCarCrashRounded diff --git a/src/IconCarCrashRoundedFilled.tsx b/src/IconCarCrashRoundedFilled.tsx index d131355d3..1ff5735aa 100644 --- a/src/IconCarCrashRoundedFilled.tsx +++ b/src/IconCarCrashRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconCarCrashRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconCarCrashRoundedFilled as default } +export default IconCarCrashRoundedFilled diff --git a/src/IconCarCrashSharp.tsx b/src/IconCarCrashSharp.tsx index 442ab9218..5604eaa19 100644 --- a/src/IconCarCrashSharp.tsx +++ b/src/IconCarCrashSharp.tsx @@ -8,4 +8,4 @@ const IconCarCrashSharp: React.FC = ({ ...props }) => ( ) -export { IconCarCrashSharp as default } +export default IconCarCrashSharp diff --git a/src/IconCarCrashSharpFilled.tsx b/src/IconCarCrashSharpFilled.tsx index 82d0897e7..4c64eef28 100644 --- a/src/IconCarCrashSharpFilled.tsx +++ b/src/IconCarCrashSharpFilled.tsx @@ -8,4 +8,4 @@ const IconCarCrashSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconCarCrashSharpFilled as default } +export default IconCarCrashSharpFilled diff --git a/src/IconCarRentalOutlined.tsx b/src/IconCarRentalOutlined.tsx index 800e64900..6d40f9563 100644 --- a/src/IconCarRentalOutlined.tsx +++ b/src/IconCarRentalOutlined.tsx @@ -8,4 +8,4 @@ const IconCarRentalOutlined: React.FC = ({ ...props }) => ( ) -export { IconCarRentalOutlined as default } +export default IconCarRentalOutlined diff --git a/src/IconCarRentalOutlinedFilled.tsx b/src/IconCarRentalOutlinedFilled.tsx index b639f4fb0..44a912049 100644 --- a/src/IconCarRentalOutlinedFilled.tsx +++ b/src/IconCarRentalOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconCarRentalOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconCarRentalOutlinedFilled as default } +export default IconCarRentalOutlinedFilled diff --git a/src/IconCarRentalRounded.tsx b/src/IconCarRentalRounded.tsx index 0995d5ffa..1220c80d4 100644 --- a/src/IconCarRentalRounded.tsx +++ b/src/IconCarRentalRounded.tsx @@ -8,4 +8,4 @@ const IconCarRentalRounded: React.FC = ({ ...props }) => ( ) -export { IconCarRentalRounded as default } +export default IconCarRentalRounded diff --git a/src/IconCarRentalRoundedFilled.tsx b/src/IconCarRentalRoundedFilled.tsx index 3089c287f..6d0b358a7 100644 --- a/src/IconCarRentalRoundedFilled.tsx +++ b/src/IconCarRentalRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconCarRentalRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconCarRentalRoundedFilled as default } +export default IconCarRentalRoundedFilled diff --git a/src/IconCarRentalSharp.tsx b/src/IconCarRentalSharp.tsx index f282a9e61..a2536e8c8 100644 --- a/src/IconCarRentalSharp.tsx +++ b/src/IconCarRentalSharp.tsx @@ -8,4 +8,4 @@ const IconCarRentalSharp: React.FC = ({ ...props }) => ( ) -export { IconCarRentalSharp as default } +export default IconCarRentalSharp diff --git a/src/IconCarRentalSharpFilled.tsx b/src/IconCarRentalSharpFilled.tsx index af581a751..b3f9021ad 100644 --- a/src/IconCarRentalSharpFilled.tsx +++ b/src/IconCarRentalSharpFilled.tsx @@ -8,4 +8,4 @@ const IconCarRentalSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconCarRentalSharpFilled as default } +export default IconCarRentalSharpFilled diff --git a/src/IconCarRepairOutlined.tsx b/src/IconCarRepairOutlined.tsx index 47b25c085..f0d15d1d2 100644 --- a/src/IconCarRepairOutlined.tsx +++ b/src/IconCarRepairOutlined.tsx @@ -8,4 +8,4 @@ const IconCarRepairOutlined: React.FC = ({ ...props }) => ( ) -export { IconCarRepairOutlined as default } +export default IconCarRepairOutlined diff --git a/src/IconCarRepairOutlinedFilled.tsx b/src/IconCarRepairOutlinedFilled.tsx index dc1bd6f9c..c25008dba 100644 --- a/src/IconCarRepairOutlinedFilled.tsx +++ b/src/IconCarRepairOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconCarRepairOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconCarRepairOutlinedFilled as default } +export default IconCarRepairOutlinedFilled diff --git a/src/IconCarRepairRounded.tsx b/src/IconCarRepairRounded.tsx index 38836678e..c12e19a50 100644 --- a/src/IconCarRepairRounded.tsx +++ b/src/IconCarRepairRounded.tsx @@ -8,4 +8,4 @@ const IconCarRepairRounded: React.FC = ({ ...props }) => ( ) -export { IconCarRepairRounded as default } +export default IconCarRepairRounded diff --git a/src/IconCarRepairRoundedFilled.tsx b/src/IconCarRepairRoundedFilled.tsx index 9d06e1362..82e88d918 100644 --- a/src/IconCarRepairRoundedFilled.tsx +++ b/src/IconCarRepairRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconCarRepairRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconCarRepairRoundedFilled as default } +export default IconCarRepairRoundedFilled diff --git a/src/IconCarRepairSharp.tsx b/src/IconCarRepairSharp.tsx index 1a0d22fc8..ebb2ebb85 100644 --- a/src/IconCarRepairSharp.tsx +++ b/src/IconCarRepairSharp.tsx @@ -8,4 +8,4 @@ const IconCarRepairSharp: React.FC = ({ ...props }) => ( ) -export { IconCarRepairSharp as default } +export default IconCarRepairSharp diff --git a/src/IconCarRepairSharpFilled.tsx b/src/IconCarRepairSharpFilled.tsx index 53e7c0fba..1dc8bd386 100644 --- a/src/IconCarRepairSharpFilled.tsx +++ b/src/IconCarRepairSharpFilled.tsx @@ -8,4 +8,4 @@ const IconCarRepairSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconCarRepairSharpFilled as default } +export default IconCarRepairSharpFilled diff --git a/src/IconCarTagOutlined.tsx b/src/IconCarTagOutlined.tsx index 2445944a9..e1c295d0b 100644 --- a/src/IconCarTagOutlined.tsx +++ b/src/IconCarTagOutlined.tsx @@ -8,4 +8,4 @@ const IconCarTagOutlined: React.FC = ({ ...props }) => ( ) -export { IconCarTagOutlined as default } +export default IconCarTagOutlined diff --git a/src/IconCarTagOutlinedFilled.tsx b/src/IconCarTagOutlinedFilled.tsx index 447feee5c..b3280a288 100644 --- a/src/IconCarTagOutlinedFilled.tsx +++ b/src/IconCarTagOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconCarTagOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconCarTagOutlinedFilled as default } +export default IconCarTagOutlinedFilled diff --git a/src/IconCarTagRounded.tsx b/src/IconCarTagRounded.tsx index 6af18aa9c..5d2ac7599 100644 --- a/src/IconCarTagRounded.tsx +++ b/src/IconCarTagRounded.tsx @@ -8,4 +8,4 @@ const IconCarTagRounded: React.FC = ({ ...props }) => ( ) -export { IconCarTagRounded as default } +export default IconCarTagRounded diff --git a/src/IconCarTagRoundedFilled.tsx b/src/IconCarTagRoundedFilled.tsx index 2bf4bf61f..6f00ff6bf 100644 --- a/src/IconCarTagRoundedFilled.tsx +++ b/src/IconCarTagRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconCarTagRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconCarTagRoundedFilled as default } +export default IconCarTagRoundedFilled diff --git a/src/IconCarTagSharp.tsx b/src/IconCarTagSharp.tsx index d7f56386d..64064355d 100644 --- a/src/IconCarTagSharp.tsx +++ b/src/IconCarTagSharp.tsx @@ -8,4 +8,4 @@ const IconCarTagSharp: React.FC = ({ ...props }) => ( ) -export { IconCarTagSharp as default } +export default IconCarTagSharp diff --git a/src/IconCarTagSharpFilled.tsx b/src/IconCarTagSharpFilled.tsx index 4d2f099b4..01b13d8a3 100644 --- a/src/IconCarTagSharpFilled.tsx +++ b/src/IconCarTagSharpFilled.tsx @@ -8,4 +8,4 @@ const IconCarTagSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconCarTagSharpFilled as default } +export default IconCarTagSharpFilled diff --git a/src/IconCardMembershipOutlined.tsx b/src/IconCardMembershipOutlined.tsx index 73fe116d9..03816459a 100644 --- a/src/IconCardMembershipOutlined.tsx +++ b/src/IconCardMembershipOutlined.tsx @@ -8,4 +8,4 @@ const IconCardMembershipOutlined: React.FC = ({ ...props }) => ( ) -export { IconCardMembershipOutlined as default } +export default IconCardMembershipOutlined diff --git a/src/IconCardMembershipOutlinedFilled.tsx b/src/IconCardMembershipOutlinedFilled.tsx index acb870dcb..1a4b488d9 100644 --- a/src/IconCardMembershipOutlinedFilled.tsx +++ b/src/IconCardMembershipOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconCardMembershipOutlinedFilled: React.FC = ({ ) -export { IconCardMembershipOutlinedFilled as default } +export default IconCardMembershipOutlinedFilled diff --git a/src/IconCardMembershipRounded.tsx b/src/IconCardMembershipRounded.tsx index 0641ff74f..d8d874a96 100644 --- a/src/IconCardMembershipRounded.tsx +++ b/src/IconCardMembershipRounded.tsx @@ -8,4 +8,4 @@ const IconCardMembershipRounded: React.FC = ({ ...props }) => ( ) -export { IconCardMembershipRounded as default } +export default IconCardMembershipRounded diff --git a/src/IconCardMembershipRoundedFilled.tsx b/src/IconCardMembershipRoundedFilled.tsx index 3089a6219..127c60ebf 100644 --- a/src/IconCardMembershipRoundedFilled.tsx +++ b/src/IconCardMembershipRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconCardMembershipRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconCardMembershipRoundedFilled as default } +export default IconCardMembershipRoundedFilled diff --git a/src/IconCardMembershipSharp.tsx b/src/IconCardMembershipSharp.tsx index 4c754508e..1ec1fe2c4 100644 --- a/src/IconCardMembershipSharp.tsx +++ b/src/IconCardMembershipSharp.tsx @@ -8,4 +8,4 @@ const IconCardMembershipSharp: React.FC = ({ ...props }) => ( ) -export { IconCardMembershipSharp as default } +export default IconCardMembershipSharp diff --git a/src/IconCardMembershipSharpFilled.tsx b/src/IconCardMembershipSharpFilled.tsx index 26ca3ed46..fff47d223 100644 --- a/src/IconCardMembershipSharpFilled.tsx +++ b/src/IconCardMembershipSharpFilled.tsx @@ -8,4 +8,4 @@ const IconCardMembershipSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconCardMembershipSharpFilled as default } +export default IconCardMembershipSharpFilled diff --git a/src/IconCardTravelOutlined.tsx b/src/IconCardTravelOutlined.tsx index c4ab0a623..43720bf22 100644 --- a/src/IconCardTravelOutlined.tsx +++ b/src/IconCardTravelOutlined.tsx @@ -8,4 +8,4 @@ const IconCardTravelOutlined: React.FC = ({ ...props }) => ( ) -export { IconCardTravelOutlined as default } +export default IconCardTravelOutlined diff --git a/src/IconCardTravelOutlinedFilled.tsx b/src/IconCardTravelOutlinedFilled.tsx index a9b5cd2d1..a72897fc0 100644 --- a/src/IconCardTravelOutlinedFilled.tsx +++ b/src/IconCardTravelOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconCardTravelOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconCardTravelOutlinedFilled as default } +export default IconCardTravelOutlinedFilled diff --git a/src/IconCardTravelRounded.tsx b/src/IconCardTravelRounded.tsx index 39f577044..70fea008d 100644 --- a/src/IconCardTravelRounded.tsx +++ b/src/IconCardTravelRounded.tsx @@ -8,4 +8,4 @@ const IconCardTravelRounded: React.FC = ({ ...props }) => ( ) -export { IconCardTravelRounded as default } +export default IconCardTravelRounded diff --git a/src/IconCardTravelRoundedFilled.tsx b/src/IconCardTravelRoundedFilled.tsx index 6f027c8a1..534c1a0be 100644 --- a/src/IconCardTravelRoundedFilled.tsx +++ b/src/IconCardTravelRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconCardTravelRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconCardTravelRoundedFilled as default } +export default IconCardTravelRoundedFilled diff --git a/src/IconCardTravelSharp.tsx b/src/IconCardTravelSharp.tsx index 2698dc81b..65d86df4c 100644 --- a/src/IconCardTravelSharp.tsx +++ b/src/IconCardTravelSharp.tsx @@ -8,4 +8,4 @@ const IconCardTravelSharp: React.FC = ({ ...props }) => ( ) -export { IconCardTravelSharp as default } +export default IconCardTravelSharp diff --git a/src/IconCardTravelSharpFilled.tsx b/src/IconCardTravelSharpFilled.tsx index 8cbb6d913..38a485d27 100644 --- a/src/IconCardTravelSharpFilled.tsx +++ b/src/IconCardTravelSharpFilled.tsx @@ -8,4 +8,4 @@ const IconCardTravelSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconCardTravelSharpFilled as default } +export default IconCardTravelSharpFilled diff --git a/src/IconCardioLoadOutlined.tsx b/src/IconCardioLoadOutlined.tsx index 229922298..c80a0ffa2 100644 --- a/src/IconCardioLoadOutlined.tsx +++ b/src/IconCardioLoadOutlined.tsx @@ -8,4 +8,4 @@ const IconCardioLoadOutlined: React.FC = ({ ...props }) => ( ) -export { IconCardioLoadOutlined as default } +export default IconCardioLoadOutlined diff --git a/src/IconCardioLoadOutlinedFilled.tsx b/src/IconCardioLoadOutlinedFilled.tsx index cacb053d8..b97b0d3c4 100644 --- a/src/IconCardioLoadOutlinedFilled.tsx +++ b/src/IconCardioLoadOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconCardioLoadOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconCardioLoadOutlinedFilled as default } +export default IconCardioLoadOutlinedFilled diff --git a/src/IconCardioLoadRounded.tsx b/src/IconCardioLoadRounded.tsx index daff6b306..0b63c861f 100644 --- a/src/IconCardioLoadRounded.tsx +++ b/src/IconCardioLoadRounded.tsx @@ -8,4 +8,4 @@ const IconCardioLoadRounded: React.FC = ({ ...props }) => ( ) -export { IconCardioLoadRounded as default } +export default IconCardioLoadRounded diff --git a/src/IconCardioLoadRoundedFilled.tsx b/src/IconCardioLoadRoundedFilled.tsx index 88457f34c..32e42bda8 100644 --- a/src/IconCardioLoadRoundedFilled.tsx +++ b/src/IconCardioLoadRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconCardioLoadRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconCardioLoadRoundedFilled as default } +export default IconCardioLoadRoundedFilled diff --git a/src/IconCardioLoadSharp.tsx b/src/IconCardioLoadSharp.tsx index 39e4228f8..a8326f9d6 100644 --- a/src/IconCardioLoadSharp.tsx +++ b/src/IconCardioLoadSharp.tsx @@ -8,4 +8,4 @@ const IconCardioLoadSharp: React.FC = ({ ...props }) => ( ) -export { IconCardioLoadSharp as default } +export default IconCardioLoadSharp diff --git a/src/IconCardioLoadSharpFilled.tsx b/src/IconCardioLoadSharpFilled.tsx index bd4ef4e28..1894c478e 100644 --- a/src/IconCardioLoadSharpFilled.tsx +++ b/src/IconCardioLoadSharpFilled.tsx @@ -8,4 +8,4 @@ const IconCardioLoadSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconCardioLoadSharpFilled as default } +export default IconCardioLoadSharpFilled diff --git a/src/IconCardiologyOutlined.tsx b/src/IconCardiologyOutlined.tsx index 988b4727a..745a56fef 100644 --- a/src/IconCardiologyOutlined.tsx +++ b/src/IconCardiologyOutlined.tsx @@ -8,4 +8,4 @@ const IconCardiologyOutlined: React.FC = ({ ...props }) => ( ) -export { IconCardiologyOutlined as default } +export default IconCardiologyOutlined diff --git a/src/IconCardiologyOutlinedFilled.tsx b/src/IconCardiologyOutlinedFilled.tsx index fa0942bb9..67d317444 100644 --- a/src/IconCardiologyOutlinedFilled.tsx +++ b/src/IconCardiologyOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconCardiologyOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconCardiologyOutlinedFilled as default } +export default IconCardiologyOutlinedFilled diff --git a/src/IconCardiologyRounded.tsx b/src/IconCardiologyRounded.tsx index d1ae8f733..0d76383cc 100644 --- a/src/IconCardiologyRounded.tsx +++ b/src/IconCardiologyRounded.tsx @@ -8,4 +8,4 @@ const IconCardiologyRounded: React.FC = ({ ...props }) => ( ) -export { IconCardiologyRounded as default } +export default IconCardiologyRounded diff --git a/src/IconCardiologyRoundedFilled.tsx b/src/IconCardiologyRoundedFilled.tsx index 7dd599d81..03688d283 100644 --- a/src/IconCardiologyRoundedFilled.tsx +++ b/src/IconCardiologyRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconCardiologyRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconCardiologyRoundedFilled as default } +export default IconCardiologyRoundedFilled diff --git a/src/IconCardiologySharp.tsx b/src/IconCardiologySharp.tsx index bceb85847..c66e4b39c 100644 --- a/src/IconCardiologySharp.tsx +++ b/src/IconCardiologySharp.tsx @@ -8,4 +8,4 @@ const IconCardiologySharp: React.FC = ({ ...props }) => ( ) -export { IconCardiologySharp as default } +export default IconCardiologySharp diff --git a/src/IconCardiologySharpFilled.tsx b/src/IconCardiologySharpFilled.tsx index efb2b4762..fe9a8ba7e 100644 --- a/src/IconCardiologySharpFilled.tsx +++ b/src/IconCardiologySharpFilled.tsx @@ -8,4 +8,4 @@ const IconCardiologySharpFilled: React.FC = ({ ...props }) => ( ) -export { IconCardiologySharpFilled as default } +export default IconCardiologySharpFilled diff --git a/src/IconCardsOutlined.tsx b/src/IconCardsOutlined.tsx index 344490bd5..655491d43 100644 --- a/src/IconCardsOutlined.tsx +++ b/src/IconCardsOutlined.tsx @@ -8,4 +8,4 @@ const IconCardsOutlined: React.FC = ({ ...props }) => ( ) -export { IconCardsOutlined as default } +export default IconCardsOutlined diff --git a/src/IconCardsOutlinedFilled.tsx b/src/IconCardsOutlinedFilled.tsx index 37f9f3c41..b8642b28d 100644 --- a/src/IconCardsOutlinedFilled.tsx +++ b/src/IconCardsOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconCardsOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconCardsOutlinedFilled as default } +export default IconCardsOutlinedFilled diff --git a/src/IconCardsRounded.tsx b/src/IconCardsRounded.tsx index 85b680926..9a718bb62 100644 --- a/src/IconCardsRounded.tsx +++ b/src/IconCardsRounded.tsx @@ -8,4 +8,4 @@ const IconCardsRounded: React.FC = ({ ...props }) => ( ) -export { IconCardsRounded as default } +export default IconCardsRounded diff --git a/src/IconCardsRoundedFilled.tsx b/src/IconCardsRoundedFilled.tsx index 9e47d5ad7..3c0fb0e3b 100644 --- a/src/IconCardsRoundedFilled.tsx +++ b/src/IconCardsRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconCardsRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconCardsRoundedFilled as default } +export default IconCardsRoundedFilled diff --git a/src/IconCardsSharp.tsx b/src/IconCardsSharp.tsx index 256216717..98541bc31 100644 --- a/src/IconCardsSharp.tsx +++ b/src/IconCardsSharp.tsx @@ -8,4 +8,4 @@ const IconCardsSharp: React.FC = ({ ...props }) => ( ) -export { IconCardsSharp as default } +export default IconCardsSharp diff --git a/src/IconCardsSharpFilled.tsx b/src/IconCardsSharpFilled.tsx index 29db56863..6f352d5ae 100644 --- a/src/IconCardsSharpFilled.tsx +++ b/src/IconCardsSharpFilled.tsx @@ -8,4 +8,4 @@ const IconCardsSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconCardsSharpFilled as default } +export default IconCardsSharpFilled diff --git a/src/IconCarpenterOutlined.tsx b/src/IconCarpenterOutlined.tsx index b5140879e..fcfd3cefb 100644 --- a/src/IconCarpenterOutlined.tsx +++ b/src/IconCarpenterOutlined.tsx @@ -8,4 +8,4 @@ const IconCarpenterOutlined: React.FC = ({ ...props }) => ( ) -export { IconCarpenterOutlined as default } +export default IconCarpenterOutlined diff --git a/src/IconCarpenterOutlinedFilled.tsx b/src/IconCarpenterOutlinedFilled.tsx index 87d6b3714..63498194d 100644 --- a/src/IconCarpenterOutlinedFilled.tsx +++ b/src/IconCarpenterOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconCarpenterOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconCarpenterOutlinedFilled as default } +export default IconCarpenterOutlinedFilled diff --git a/src/IconCarpenterRounded.tsx b/src/IconCarpenterRounded.tsx index ee915bd19..f0b11f5ea 100644 --- a/src/IconCarpenterRounded.tsx +++ b/src/IconCarpenterRounded.tsx @@ -8,4 +8,4 @@ const IconCarpenterRounded: React.FC = ({ ...props }) => ( ) -export { IconCarpenterRounded as default } +export default IconCarpenterRounded diff --git a/src/IconCarpenterRoundedFilled.tsx b/src/IconCarpenterRoundedFilled.tsx index e063f6c7a..c5149b0ab 100644 --- a/src/IconCarpenterRoundedFilled.tsx +++ b/src/IconCarpenterRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconCarpenterRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconCarpenterRoundedFilled as default } +export default IconCarpenterRoundedFilled diff --git a/src/IconCarpenterSharp.tsx b/src/IconCarpenterSharp.tsx index 825e6a8be..f43fe4070 100644 --- a/src/IconCarpenterSharp.tsx +++ b/src/IconCarpenterSharp.tsx @@ -8,4 +8,4 @@ const IconCarpenterSharp: React.FC = ({ ...props }) => ( ) -export { IconCarpenterSharp as default } +export default IconCarpenterSharp diff --git a/src/IconCarpenterSharpFilled.tsx b/src/IconCarpenterSharpFilled.tsx index c450979e1..7c87c99bb 100644 --- a/src/IconCarpenterSharpFilled.tsx +++ b/src/IconCarpenterSharpFilled.tsx @@ -8,4 +8,4 @@ const IconCarpenterSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconCarpenterSharpFilled as default } +export default IconCarpenterSharpFilled diff --git a/src/IconCarryOnBagCheckedOutlined.tsx b/src/IconCarryOnBagCheckedOutlined.tsx index f54a3bca9..97ac7f0fd 100644 --- a/src/IconCarryOnBagCheckedOutlined.tsx +++ b/src/IconCarryOnBagCheckedOutlined.tsx @@ -8,4 +8,4 @@ const IconCarryOnBagCheckedOutlined: React.FC = ({ ...props }) => ( ) -export { IconCarryOnBagCheckedOutlined as default } +export default IconCarryOnBagCheckedOutlined diff --git a/src/IconCarryOnBagCheckedOutlinedFilled.tsx b/src/IconCarryOnBagCheckedOutlinedFilled.tsx index 4a65b269d..4c0a10d5a 100644 --- a/src/IconCarryOnBagCheckedOutlinedFilled.tsx +++ b/src/IconCarryOnBagCheckedOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconCarryOnBagCheckedOutlinedFilled: React.FC = ({ ) -export { IconCarryOnBagCheckedOutlinedFilled as default } +export default IconCarryOnBagCheckedOutlinedFilled diff --git a/src/IconCarryOnBagCheckedRounded.tsx b/src/IconCarryOnBagCheckedRounded.tsx index a56adf08b..acf60e70b 100644 --- a/src/IconCarryOnBagCheckedRounded.tsx +++ b/src/IconCarryOnBagCheckedRounded.tsx @@ -8,4 +8,4 @@ const IconCarryOnBagCheckedRounded: React.FC = ({ ...props }) => ( ) -export { IconCarryOnBagCheckedRounded as default } +export default IconCarryOnBagCheckedRounded diff --git a/src/IconCarryOnBagCheckedRoundedFilled.tsx b/src/IconCarryOnBagCheckedRoundedFilled.tsx index 6b2dd6a13..a30535158 100644 --- a/src/IconCarryOnBagCheckedRoundedFilled.tsx +++ b/src/IconCarryOnBagCheckedRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconCarryOnBagCheckedRoundedFilled: React.FC = ({ ) -export { IconCarryOnBagCheckedRoundedFilled as default } +export default IconCarryOnBagCheckedRoundedFilled diff --git a/src/IconCarryOnBagCheckedSharp.tsx b/src/IconCarryOnBagCheckedSharp.tsx index 73912008d..54accc3fb 100644 --- a/src/IconCarryOnBagCheckedSharp.tsx +++ b/src/IconCarryOnBagCheckedSharp.tsx @@ -8,4 +8,4 @@ const IconCarryOnBagCheckedSharp: React.FC = ({ ...props }) => ( ) -export { IconCarryOnBagCheckedSharp as default } +export default IconCarryOnBagCheckedSharp diff --git a/src/IconCarryOnBagCheckedSharpFilled.tsx b/src/IconCarryOnBagCheckedSharpFilled.tsx index 2fd9fd546..762847763 100644 --- a/src/IconCarryOnBagCheckedSharpFilled.tsx +++ b/src/IconCarryOnBagCheckedSharpFilled.tsx @@ -10,4 +10,4 @@ const IconCarryOnBagCheckedSharpFilled: React.FC = ({ ) -export { IconCarryOnBagCheckedSharpFilled as default } +export default IconCarryOnBagCheckedSharpFilled diff --git a/src/IconCarryOnBagInactiveOutlined.tsx b/src/IconCarryOnBagInactiveOutlined.tsx index ecdc1bb04..5291b4984 100644 --- a/src/IconCarryOnBagInactiveOutlined.tsx +++ b/src/IconCarryOnBagInactiveOutlined.tsx @@ -8,4 +8,4 @@ const IconCarryOnBagInactiveOutlined: React.FC = ({ ...props }) => ( ) -export { IconCarryOnBagInactiveOutlined as default } +export default IconCarryOnBagInactiveOutlined diff --git a/src/IconCarryOnBagInactiveOutlinedFilled.tsx b/src/IconCarryOnBagInactiveOutlinedFilled.tsx index b2545056b..afeab24c7 100644 --- a/src/IconCarryOnBagInactiveOutlinedFilled.tsx +++ b/src/IconCarryOnBagInactiveOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconCarryOnBagInactiveOutlinedFilled: React.FC = ({ ) -export { IconCarryOnBagInactiveOutlinedFilled as default } +export default IconCarryOnBagInactiveOutlinedFilled diff --git a/src/IconCarryOnBagInactiveRounded.tsx b/src/IconCarryOnBagInactiveRounded.tsx index 0539431e1..0a15225a1 100644 --- a/src/IconCarryOnBagInactiveRounded.tsx +++ b/src/IconCarryOnBagInactiveRounded.tsx @@ -8,4 +8,4 @@ const IconCarryOnBagInactiveRounded: React.FC = ({ ...props }) => ( ) -export { IconCarryOnBagInactiveRounded as default } +export default IconCarryOnBagInactiveRounded diff --git a/src/IconCarryOnBagInactiveRoundedFilled.tsx b/src/IconCarryOnBagInactiveRoundedFilled.tsx index cb120eacc..f6baa9ad3 100644 --- a/src/IconCarryOnBagInactiveRoundedFilled.tsx +++ b/src/IconCarryOnBagInactiveRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconCarryOnBagInactiveRoundedFilled: React.FC = ({ ) -export { IconCarryOnBagInactiveRoundedFilled as default } +export default IconCarryOnBagInactiveRoundedFilled diff --git a/src/IconCarryOnBagInactiveSharp.tsx b/src/IconCarryOnBagInactiveSharp.tsx index 0288dacaa..cfccf1992 100644 --- a/src/IconCarryOnBagInactiveSharp.tsx +++ b/src/IconCarryOnBagInactiveSharp.tsx @@ -8,4 +8,4 @@ const IconCarryOnBagInactiveSharp: React.FC = ({ ...props }) => ( ) -export { IconCarryOnBagInactiveSharp as default } +export default IconCarryOnBagInactiveSharp diff --git a/src/IconCarryOnBagInactiveSharpFilled.tsx b/src/IconCarryOnBagInactiveSharpFilled.tsx index c4d9460ec..23e8e5318 100644 --- a/src/IconCarryOnBagInactiveSharpFilled.tsx +++ b/src/IconCarryOnBagInactiveSharpFilled.tsx @@ -10,4 +10,4 @@ const IconCarryOnBagInactiveSharpFilled: React.FC = ({ ) -export { IconCarryOnBagInactiveSharpFilled as default } +export default IconCarryOnBagInactiveSharpFilled diff --git a/src/IconCarryOnBagOutlined.tsx b/src/IconCarryOnBagOutlined.tsx index 7db9b0e05..0b2dba799 100644 --- a/src/IconCarryOnBagOutlined.tsx +++ b/src/IconCarryOnBagOutlined.tsx @@ -8,4 +8,4 @@ const IconCarryOnBagOutlined: React.FC = ({ ...props }) => ( ) -export { IconCarryOnBagOutlined as default } +export default IconCarryOnBagOutlined diff --git a/src/IconCarryOnBagOutlinedFilled.tsx b/src/IconCarryOnBagOutlinedFilled.tsx index 9f747bab1..47bc9edfd 100644 --- a/src/IconCarryOnBagOutlinedFilled.tsx +++ b/src/IconCarryOnBagOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconCarryOnBagOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconCarryOnBagOutlinedFilled as default } +export default IconCarryOnBagOutlinedFilled diff --git a/src/IconCarryOnBagQuestionOutlined.tsx b/src/IconCarryOnBagQuestionOutlined.tsx index e92e4620d..d28dae3fc 100644 --- a/src/IconCarryOnBagQuestionOutlined.tsx +++ b/src/IconCarryOnBagQuestionOutlined.tsx @@ -8,4 +8,4 @@ const IconCarryOnBagQuestionOutlined: React.FC = ({ ...props }) => ( ) -export { IconCarryOnBagQuestionOutlined as default } +export default IconCarryOnBagQuestionOutlined diff --git a/src/IconCarryOnBagQuestionOutlinedFilled.tsx b/src/IconCarryOnBagQuestionOutlinedFilled.tsx index 428fe4714..04985f8fc 100644 --- a/src/IconCarryOnBagQuestionOutlinedFilled.tsx +++ b/src/IconCarryOnBagQuestionOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconCarryOnBagQuestionOutlinedFilled: React.FC = ({ ) -export { IconCarryOnBagQuestionOutlinedFilled as default } +export default IconCarryOnBagQuestionOutlinedFilled diff --git a/src/IconCarryOnBagQuestionRounded.tsx b/src/IconCarryOnBagQuestionRounded.tsx index 2ef82bc7e..3ae5eff95 100644 --- a/src/IconCarryOnBagQuestionRounded.tsx +++ b/src/IconCarryOnBagQuestionRounded.tsx @@ -8,4 +8,4 @@ const IconCarryOnBagQuestionRounded: React.FC = ({ ...props }) => ( ) -export { IconCarryOnBagQuestionRounded as default } +export default IconCarryOnBagQuestionRounded diff --git a/src/IconCarryOnBagQuestionRoundedFilled.tsx b/src/IconCarryOnBagQuestionRoundedFilled.tsx index de2df6bd1..086d26f78 100644 --- a/src/IconCarryOnBagQuestionRoundedFilled.tsx +++ b/src/IconCarryOnBagQuestionRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconCarryOnBagQuestionRoundedFilled: React.FC = ({ ) -export { IconCarryOnBagQuestionRoundedFilled as default } +export default IconCarryOnBagQuestionRoundedFilled diff --git a/src/IconCarryOnBagQuestionSharp.tsx b/src/IconCarryOnBagQuestionSharp.tsx index e72e6812b..c965c8271 100644 --- a/src/IconCarryOnBagQuestionSharp.tsx +++ b/src/IconCarryOnBagQuestionSharp.tsx @@ -8,4 +8,4 @@ const IconCarryOnBagQuestionSharp: React.FC = ({ ...props }) => ( ) -export { IconCarryOnBagQuestionSharp as default } +export default IconCarryOnBagQuestionSharp diff --git a/src/IconCarryOnBagQuestionSharpFilled.tsx b/src/IconCarryOnBagQuestionSharpFilled.tsx index 533b3201e..51081739e 100644 --- a/src/IconCarryOnBagQuestionSharpFilled.tsx +++ b/src/IconCarryOnBagQuestionSharpFilled.tsx @@ -10,4 +10,4 @@ const IconCarryOnBagQuestionSharpFilled: React.FC = ({ ) -export { IconCarryOnBagQuestionSharpFilled as default } +export default IconCarryOnBagQuestionSharpFilled diff --git a/src/IconCarryOnBagRounded.tsx b/src/IconCarryOnBagRounded.tsx index ee3d488ed..b9f70ec41 100644 --- a/src/IconCarryOnBagRounded.tsx +++ b/src/IconCarryOnBagRounded.tsx @@ -8,4 +8,4 @@ const IconCarryOnBagRounded: React.FC = ({ ...props }) => ( ) -export { IconCarryOnBagRounded as default } +export default IconCarryOnBagRounded diff --git a/src/IconCarryOnBagRoundedFilled.tsx b/src/IconCarryOnBagRoundedFilled.tsx index f70865b35..6b9ab0ac3 100644 --- a/src/IconCarryOnBagRoundedFilled.tsx +++ b/src/IconCarryOnBagRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconCarryOnBagRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconCarryOnBagRoundedFilled as default } +export default IconCarryOnBagRoundedFilled diff --git a/src/IconCarryOnBagSharp.tsx b/src/IconCarryOnBagSharp.tsx index 24b05b915..1ed4cee7e 100644 --- a/src/IconCarryOnBagSharp.tsx +++ b/src/IconCarryOnBagSharp.tsx @@ -8,4 +8,4 @@ const IconCarryOnBagSharp: React.FC = ({ ...props }) => ( ) -export { IconCarryOnBagSharp as default } +export default IconCarryOnBagSharp diff --git a/src/IconCarryOnBagSharpFilled.tsx b/src/IconCarryOnBagSharpFilled.tsx index ea6c43e23..571a7c3f8 100644 --- a/src/IconCarryOnBagSharpFilled.tsx +++ b/src/IconCarryOnBagSharpFilled.tsx @@ -8,4 +8,4 @@ const IconCarryOnBagSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconCarryOnBagSharpFilled as default } +export default IconCarryOnBagSharpFilled diff --git a/src/IconCasesOutlined.tsx b/src/IconCasesOutlined.tsx index 52964c5f3..db9081545 100644 --- a/src/IconCasesOutlined.tsx +++ b/src/IconCasesOutlined.tsx @@ -8,4 +8,4 @@ const IconCasesOutlined: React.FC = ({ ...props }) => ( ) -export { IconCasesOutlined as default } +export default IconCasesOutlined diff --git a/src/IconCasesOutlinedFilled.tsx b/src/IconCasesOutlinedFilled.tsx index b3e6bab6b..1de9ade81 100644 --- a/src/IconCasesOutlinedFilled.tsx +++ b/src/IconCasesOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconCasesOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconCasesOutlinedFilled as default } +export default IconCasesOutlinedFilled diff --git a/src/IconCasesRounded.tsx b/src/IconCasesRounded.tsx index d78d6e622..0527e9dae 100644 --- a/src/IconCasesRounded.tsx +++ b/src/IconCasesRounded.tsx @@ -8,4 +8,4 @@ const IconCasesRounded: React.FC = ({ ...props }) => ( ) -export { IconCasesRounded as default } +export default IconCasesRounded diff --git a/src/IconCasesRoundedFilled.tsx b/src/IconCasesRoundedFilled.tsx index d408f511d..a36d852d8 100644 --- a/src/IconCasesRoundedFilled.tsx +++ b/src/IconCasesRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconCasesRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconCasesRoundedFilled as default } +export default IconCasesRoundedFilled diff --git a/src/IconCasesSharp.tsx b/src/IconCasesSharp.tsx index 22c3747d3..c7c62ffc7 100644 --- a/src/IconCasesSharp.tsx +++ b/src/IconCasesSharp.tsx @@ -8,4 +8,4 @@ const IconCasesSharp: React.FC = ({ ...props }) => ( ) -export { IconCasesSharp as default } +export default IconCasesSharp diff --git a/src/IconCasesSharpFilled.tsx b/src/IconCasesSharpFilled.tsx index 26c3cf104..69484ee8b 100644 --- a/src/IconCasesSharpFilled.tsx +++ b/src/IconCasesSharpFilled.tsx @@ -8,4 +8,4 @@ const IconCasesSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconCasesSharpFilled as default } +export default IconCasesSharpFilled diff --git a/src/IconCasinoOutlined.tsx b/src/IconCasinoOutlined.tsx index a29c8abeb..cf0744e99 100644 --- a/src/IconCasinoOutlined.tsx +++ b/src/IconCasinoOutlined.tsx @@ -8,4 +8,4 @@ const IconCasinoOutlined: React.FC = ({ ...props }) => ( ) -export { IconCasinoOutlined as default } +export default IconCasinoOutlined diff --git a/src/IconCasinoOutlinedFilled.tsx b/src/IconCasinoOutlinedFilled.tsx index 42f40894b..4d92eae71 100644 --- a/src/IconCasinoOutlinedFilled.tsx +++ b/src/IconCasinoOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconCasinoOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconCasinoOutlinedFilled as default } +export default IconCasinoOutlinedFilled diff --git a/src/IconCasinoRounded.tsx b/src/IconCasinoRounded.tsx index db5b3ff88..2c85331e3 100644 --- a/src/IconCasinoRounded.tsx +++ b/src/IconCasinoRounded.tsx @@ -8,4 +8,4 @@ const IconCasinoRounded: React.FC = ({ ...props }) => ( ) -export { IconCasinoRounded as default } +export default IconCasinoRounded diff --git a/src/IconCasinoRoundedFilled.tsx b/src/IconCasinoRoundedFilled.tsx index 2164a42d1..024010094 100644 --- a/src/IconCasinoRoundedFilled.tsx +++ b/src/IconCasinoRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconCasinoRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconCasinoRoundedFilled as default } +export default IconCasinoRoundedFilled diff --git a/src/IconCasinoSharp.tsx b/src/IconCasinoSharp.tsx index 8e3ec142e..8022cdc17 100644 --- a/src/IconCasinoSharp.tsx +++ b/src/IconCasinoSharp.tsx @@ -8,4 +8,4 @@ const IconCasinoSharp: React.FC = ({ ...props }) => ( ) -export { IconCasinoSharp as default } +export default IconCasinoSharp diff --git a/src/IconCasinoSharpFilled.tsx b/src/IconCasinoSharpFilled.tsx index bf3b94d11..9b9f747a5 100644 --- a/src/IconCasinoSharpFilled.tsx +++ b/src/IconCasinoSharpFilled.tsx @@ -8,4 +8,4 @@ const IconCasinoSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconCasinoSharpFilled as default } +export default IconCasinoSharpFilled diff --git a/src/IconCastConnectedOutlined.tsx b/src/IconCastConnectedOutlined.tsx index 4e2893d7c..84e89a368 100644 --- a/src/IconCastConnectedOutlined.tsx +++ b/src/IconCastConnectedOutlined.tsx @@ -8,4 +8,4 @@ const IconCastConnectedOutlined: React.FC = ({ ...props }) => ( ) -export { IconCastConnectedOutlined as default } +export default IconCastConnectedOutlined diff --git a/src/IconCastConnectedOutlinedFilled.tsx b/src/IconCastConnectedOutlinedFilled.tsx index c3cda1acb..68c296bd9 100644 --- a/src/IconCastConnectedOutlinedFilled.tsx +++ b/src/IconCastConnectedOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconCastConnectedOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconCastConnectedOutlinedFilled as default } +export default IconCastConnectedOutlinedFilled diff --git a/src/IconCastConnectedRounded.tsx b/src/IconCastConnectedRounded.tsx index b68a021a0..4b0d6accc 100644 --- a/src/IconCastConnectedRounded.tsx +++ b/src/IconCastConnectedRounded.tsx @@ -8,4 +8,4 @@ const IconCastConnectedRounded: React.FC = ({ ...props }) => ( ) -export { IconCastConnectedRounded as default } +export default IconCastConnectedRounded diff --git a/src/IconCastConnectedRoundedFilled.tsx b/src/IconCastConnectedRoundedFilled.tsx index 3a59a3d7e..24e9e0dee 100644 --- a/src/IconCastConnectedRoundedFilled.tsx +++ b/src/IconCastConnectedRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconCastConnectedRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconCastConnectedRoundedFilled as default } +export default IconCastConnectedRoundedFilled diff --git a/src/IconCastConnectedSharp.tsx b/src/IconCastConnectedSharp.tsx index 56800c92d..277e7d769 100644 --- a/src/IconCastConnectedSharp.tsx +++ b/src/IconCastConnectedSharp.tsx @@ -8,4 +8,4 @@ const IconCastConnectedSharp: React.FC = ({ ...props }) => ( ) -export { IconCastConnectedSharp as default } +export default IconCastConnectedSharp diff --git a/src/IconCastConnectedSharpFilled.tsx b/src/IconCastConnectedSharpFilled.tsx index 383d31f7f..0dc6add94 100644 --- a/src/IconCastConnectedSharpFilled.tsx +++ b/src/IconCastConnectedSharpFilled.tsx @@ -8,4 +8,4 @@ const IconCastConnectedSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconCastConnectedSharpFilled as default } +export default IconCastConnectedSharpFilled diff --git a/src/IconCastForEducationOutlined.tsx b/src/IconCastForEducationOutlined.tsx index 67f2aa7b5..8a42ea3b5 100644 --- a/src/IconCastForEducationOutlined.tsx +++ b/src/IconCastForEducationOutlined.tsx @@ -8,4 +8,4 @@ const IconCastForEducationOutlined: React.FC = ({ ...props }) => ( ) -export { IconCastForEducationOutlined as default } +export default IconCastForEducationOutlined diff --git a/src/IconCastForEducationOutlinedFilled.tsx b/src/IconCastForEducationOutlinedFilled.tsx index 8da58e3bb..195401e40 100644 --- a/src/IconCastForEducationOutlinedFilled.tsx +++ b/src/IconCastForEducationOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconCastForEducationOutlinedFilled: React.FC = ({ ) -export { IconCastForEducationOutlinedFilled as default } +export default IconCastForEducationOutlinedFilled diff --git a/src/IconCastForEducationRounded.tsx b/src/IconCastForEducationRounded.tsx index ecd4b6a29..743ce7747 100644 --- a/src/IconCastForEducationRounded.tsx +++ b/src/IconCastForEducationRounded.tsx @@ -8,4 +8,4 @@ const IconCastForEducationRounded: React.FC = ({ ...props }) => ( ) -export { IconCastForEducationRounded as default } +export default IconCastForEducationRounded diff --git a/src/IconCastForEducationRoundedFilled.tsx b/src/IconCastForEducationRoundedFilled.tsx index 35114c45d..ee215c9e8 100644 --- a/src/IconCastForEducationRoundedFilled.tsx +++ b/src/IconCastForEducationRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconCastForEducationRoundedFilled: React.FC = ({ ) -export { IconCastForEducationRoundedFilled as default } +export default IconCastForEducationRoundedFilled diff --git a/src/IconCastForEducationSharp.tsx b/src/IconCastForEducationSharp.tsx index 7a88e46e1..d1b294bff 100644 --- a/src/IconCastForEducationSharp.tsx +++ b/src/IconCastForEducationSharp.tsx @@ -8,4 +8,4 @@ const IconCastForEducationSharp: React.FC = ({ ...props }) => ( ) -export { IconCastForEducationSharp as default } +export default IconCastForEducationSharp diff --git a/src/IconCastForEducationSharpFilled.tsx b/src/IconCastForEducationSharpFilled.tsx index 58125b5ad..be065ced7 100644 --- a/src/IconCastForEducationSharpFilled.tsx +++ b/src/IconCastForEducationSharpFilled.tsx @@ -8,4 +8,4 @@ const IconCastForEducationSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconCastForEducationSharpFilled as default } +export default IconCastForEducationSharpFilled diff --git a/src/IconCastOutlined.tsx b/src/IconCastOutlined.tsx index 2e9a22adb..ed7a289a6 100644 --- a/src/IconCastOutlined.tsx +++ b/src/IconCastOutlined.tsx @@ -8,4 +8,4 @@ const IconCastOutlined: React.FC = ({ ...props }) => ( ) -export { IconCastOutlined as default } +export default IconCastOutlined diff --git a/src/IconCastOutlinedFilled.tsx b/src/IconCastOutlinedFilled.tsx index 202a20a75..ce9812000 100644 --- a/src/IconCastOutlinedFilled.tsx +++ b/src/IconCastOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconCastOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconCastOutlinedFilled as default } +export default IconCastOutlinedFilled diff --git a/src/IconCastPauseOutlined.tsx b/src/IconCastPauseOutlined.tsx index 02ec04a18..f249b146f 100644 --- a/src/IconCastPauseOutlined.tsx +++ b/src/IconCastPauseOutlined.tsx @@ -8,4 +8,4 @@ const IconCastPauseOutlined: React.FC = ({ ...props }) => ( ) -export { IconCastPauseOutlined as default } +export default IconCastPauseOutlined diff --git a/src/IconCastPauseOutlinedFilled.tsx b/src/IconCastPauseOutlinedFilled.tsx index 2f660ff55..708c83d42 100644 --- a/src/IconCastPauseOutlinedFilled.tsx +++ b/src/IconCastPauseOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconCastPauseOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconCastPauseOutlinedFilled as default } +export default IconCastPauseOutlinedFilled diff --git a/src/IconCastPauseRounded.tsx b/src/IconCastPauseRounded.tsx index 35547993d..53442c96a 100644 --- a/src/IconCastPauseRounded.tsx +++ b/src/IconCastPauseRounded.tsx @@ -8,4 +8,4 @@ const IconCastPauseRounded: React.FC = ({ ...props }) => ( ) -export { IconCastPauseRounded as default } +export default IconCastPauseRounded diff --git a/src/IconCastPauseRoundedFilled.tsx b/src/IconCastPauseRoundedFilled.tsx index 485759513..05e11622e 100644 --- a/src/IconCastPauseRoundedFilled.tsx +++ b/src/IconCastPauseRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconCastPauseRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconCastPauseRoundedFilled as default } +export default IconCastPauseRoundedFilled diff --git a/src/IconCastPauseSharp.tsx b/src/IconCastPauseSharp.tsx index f2f3c14b8..83ab8f660 100644 --- a/src/IconCastPauseSharp.tsx +++ b/src/IconCastPauseSharp.tsx @@ -8,4 +8,4 @@ const IconCastPauseSharp: React.FC = ({ ...props }) => ( ) -export { IconCastPauseSharp as default } +export default IconCastPauseSharp diff --git a/src/IconCastPauseSharpFilled.tsx b/src/IconCastPauseSharpFilled.tsx index 8f55d4e49..56b1a42ae 100644 --- a/src/IconCastPauseSharpFilled.tsx +++ b/src/IconCastPauseSharpFilled.tsx @@ -8,4 +8,4 @@ const IconCastPauseSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconCastPauseSharpFilled as default } +export default IconCastPauseSharpFilled diff --git a/src/IconCastRounded.tsx b/src/IconCastRounded.tsx index 1c4eb1509..c348cd218 100644 --- a/src/IconCastRounded.tsx +++ b/src/IconCastRounded.tsx @@ -8,4 +8,4 @@ const IconCastRounded: React.FC = ({ ...props }) => ( ) -export { IconCastRounded as default } +export default IconCastRounded diff --git a/src/IconCastRoundedFilled.tsx b/src/IconCastRoundedFilled.tsx index c245cc6f5..43e1e82b7 100644 --- a/src/IconCastRoundedFilled.tsx +++ b/src/IconCastRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconCastRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconCastRoundedFilled as default } +export default IconCastRoundedFilled diff --git a/src/IconCastSharp.tsx b/src/IconCastSharp.tsx index 81d848e44..ac8c2a0b5 100644 --- a/src/IconCastSharp.tsx +++ b/src/IconCastSharp.tsx @@ -8,4 +8,4 @@ const IconCastSharp: React.FC = ({ ...props }) => ( ) -export { IconCastSharp as default } +export default IconCastSharp diff --git a/src/IconCastSharpFilled.tsx b/src/IconCastSharpFilled.tsx index 08473020e..ed3e3c7af 100644 --- a/src/IconCastSharpFilled.tsx +++ b/src/IconCastSharpFilled.tsx @@ -8,4 +8,4 @@ const IconCastSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconCastSharpFilled as default } +export default IconCastSharpFilled diff --git a/src/IconCastWarningOutlined.tsx b/src/IconCastWarningOutlined.tsx index 2a7e80227..6331755b7 100644 --- a/src/IconCastWarningOutlined.tsx +++ b/src/IconCastWarningOutlined.tsx @@ -8,4 +8,4 @@ const IconCastWarningOutlined: React.FC = ({ ...props }) => ( ) -export { IconCastWarningOutlined as default } +export default IconCastWarningOutlined diff --git a/src/IconCastWarningOutlinedFilled.tsx b/src/IconCastWarningOutlinedFilled.tsx index 773a84aa5..9d3b78394 100644 --- a/src/IconCastWarningOutlinedFilled.tsx +++ b/src/IconCastWarningOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconCastWarningOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconCastWarningOutlinedFilled as default } +export default IconCastWarningOutlinedFilled diff --git a/src/IconCastWarningRounded.tsx b/src/IconCastWarningRounded.tsx index 14dc1d67f..51d341a6d 100644 --- a/src/IconCastWarningRounded.tsx +++ b/src/IconCastWarningRounded.tsx @@ -8,4 +8,4 @@ const IconCastWarningRounded: React.FC = ({ ...props }) => ( ) -export { IconCastWarningRounded as default } +export default IconCastWarningRounded diff --git a/src/IconCastWarningRoundedFilled.tsx b/src/IconCastWarningRoundedFilled.tsx index 646e9279a..4a1b7a3a4 100644 --- a/src/IconCastWarningRoundedFilled.tsx +++ b/src/IconCastWarningRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconCastWarningRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconCastWarningRoundedFilled as default } +export default IconCastWarningRoundedFilled diff --git a/src/IconCastWarningSharp.tsx b/src/IconCastWarningSharp.tsx index 3cc1cee9d..b731d7206 100644 --- a/src/IconCastWarningSharp.tsx +++ b/src/IconCastWarningSharp.tsx @@ -8,4 +8,4 @@ const IconCastWarningSharp: React.FC = ({ ...props }) => ( ) -export { IconCastWarningSharp as default } +export default IconCastWarningSharp diff --git a/src/IconCastWarningSharpFilled.tsx b/src/IconCastWarningSharpFilled.tsx index 23416a091..141169c8c 100644 --- a/src/IconCastWarningSharpFilled.tsx +++ b/src/IconCastWarningSharpFilled.tsx @@ -8,4 +8,4 @@ const IconCastWarningSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconCastWarningSharpFilled as default } +export default IconCastWarningSharpFilled diff --git a/src/IconCastleOutlined.tsx b/src/IconCastleOutlined.tsx index 2ddfe352f..ecdfee36d 100644 --- a/src/IconCastleOutlined.tsx +++ b/src/IconCastleOutlined.tsx @@ -8,4 +8,4 @@ const IconCastleOutlined: React.FC = ({ ...props }) => ( ) -export { IconCastleOutlined as default } +export default IconCastleOutlined diff --git a/src/IconCastleOutlinedFilled.tsx b/src/IconCastleOutlinedFilled.tsx index 32443c054..7512ae4d7 100644 --- a/src/IconCastleOutlinedFilled.tsx +++ b/src/IconCastleOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconCastleOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconCastleOutlinedFilled as default } +export default IconCastleOutlinedFilled diff --git a/src/IconCastleRounded.tsx b/src/IconCastleRounded.tsx index 1bb462f45..6d2f43306 100644 --- a/src/IconCastleRounded.tsx +++ b/src/IconCastleRounded.tsx @@ -8,4 +8,4 @@ const IconCastleRounded: React.FC = ({ ...props }) => ( ) -export { IconCastleRounded as default } +export default IconCastleRounded diff --git a/src/IconCastleRoundedFilled.tsx b/src/IconCastleRoundedFilled.tsx index 7f7754263..40e826195 100644 --- a/src/IconCastleRoundedFilled.tsx +++ b/src/IconCastleRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconCastleRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconCastleRoundedFilled as default } +export default IconCastleRoundedFilled diff --git a/src/IconCastleSharp.tsx b/src/IconCastleSharp.tsx index ae0ac201c..ec7f5351f 100644 --- a/src/IconCastleSharp.tsx +++ b/src/IconCastleSharp.tsx @@ -8,4 +8,4 @@ const IconCastleSharp: React.FC = ({ ...props }) => ( ) -export { IconCastleSharp as default } +export default IconCastleSharp diff --git a/src/IconCastleSharpFilled.tsx b/src/IconCastleSharpFilled.tsx index 012148918..d3ea7c125 100644 --- a/src/IconCastleSharpFilled.tsx +++ b/src/IconCastleSharpFilled.tsx @@ -8,4 +8,4 @@ const IconCastleSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconCastleSharpFilled as default } +export default IconCastleSharpFilled diff --git a/src/IconCategoryOutlined.tsx b/src/IconCategoryOutlined.tsx index 0805b5e53..889018ef5 100644 --- a/src/IconCategoryOutlined.tsx +++ b/src/IconCategoryOutlined.tsx @@ -8,4 +8,4 @@ const IconCategoryOutlined: React.FC = ({ ...props }) => ( ) -export { IconCategoryOutlined as default } +export default IconCategoryOutlined diff --git a/src/IconCategoryOutlinedFilled.tsx b/src/IconCategoryOutlinedFilled.tsx index a484c46ae..9cb11f17d 100644 --- a/src/IconCategoryOutlinedFilled.tsx +++ b/src/IconCategoryOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconCategoryOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconCategoryOutlinedFilled as default } +export default IconCategoryOutlinedFilled diff --git a/src/IconCategoryRounded.tsx b/src/IconCategoryRounded.tsx index f213dc030..ddfc9ea41 100644 --- a/src/IconCategoryRounded.tsx +++ b/src/IconCategoryRounded.tsx @@ -8,4 +8,4 @@ const IconCategoryRounded: React.FC = ({ ...props }) => ( ) -export { IconCategoryRounded as default } +export default IconCategoryRounded diff --git a/src/IconCategoryRoundedFilled.tsx b/src/IconCategoryRoundedFilled.tsx index 6e0ff10ff..e52db5abb 100644 --- a/src/IconCategoryRoundedFilled.tsx +++ b/src/IconCategoryRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconCategoryRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconCategoryRoundedFilled as default } +export default IconCategoryRoundedFilled diff --git a/src/IconCategorySearchOutlined.tsx b/src/IconCategorySearchOutlined.tsx index 20b4e9335..3c78928f4 100644 --- a/src/IconCategorySearchOutlined.tsx +++ b/src/IconCategorySearchOutlined.tsx @@ -8,4 +8,4 @@ const IconCategorySearchOutlined: React.FC = ({ ...props }) => ( ) -export { IconCategorySearchOutlined as default } +export default IconCategorySearchOutlined diff --git a/src/IconCategorySearchOutlinedFilled.tsx b/src/IconCategorySearchOutlinedFilled.tsx index cce15b1b8..16a9c7345 100644 --- a/src/IconCategorySearchOutlinedFilled.tsx +++ b/src/IconCategorySearchOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconCategorySearchOutlinedFilled: React.FC = ({ ) -export { IconCategorySearchOutlinedFilled as default } +export default IconCategorySearchOutlinedFilled diff --git a/src/IconCategorySearchRounded.tsx b/src/IconCategorySearchRounded.tsx index 40cc5e385..69cdeed2b 100644 --- a/src/IconCategorySearchRounded.tsx +++ b/src/IconCategorySearchRounded.tsx @@ -8,4 +8,4 @@ const IconCategorySearchRounded: React.FC = ({ ...props }) => ( ) -export { IconCategorySearchRounded as default } +export default IconCategorySearchRounded diff --git a/src/IconCategorySearchRoundedFilled.tsx b/src/IconCategorySearchRoundedFilled.tsx index 8159ad432..1fac5cc83 100644 --- a/src/IconCategorySearchRoundedFilled.tsx +++ b/src/IconCategorySearchRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconCategorySearchRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconCategorySearchRoundedFilled as default } +export default IconCategorySearchRoundedFilled diff --git a/src/IconCategorySearchSharp.tsx b/src/IconCategorySearchSharp.tsx index 478204e18..faa88b097 100644 --- a/src/IconCategorySearchSharp.tsx +++ b/src/IconCategorySearchSharp.tsx @@ -8,4 +8,4 @@ const IconCategorySearchSharp: React.FC = ({ ...props }) => ( ) -export { IconCategorySearchSharp as default } +export default IconCategorySearchSharp diff --git a/src/IconCategorySearchSharpFilled.tsx b/src/IconCategorySearchSharpFilled.tsx index a00ca5f3e..27a60751c 100644 --- a/src/IconCategorySearchSharpFilled.tsx +++ b/src/IconCategorySearchSharpFilled.tsx @@ -8,4 +8,4 @@ const IconCategorySearchSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconCategorySearchSharpFilled as default } +export default IconCategorySearchSharpFilled diff --git a/src/IconCategorySharp.tsx b/src/IconCategorySharp.tsx index 33fa28566..9923275df 100644 --- a/src/IconCategorySharp.tsx +++ b/src/IconCategorySharp.tsx @@ -8,4 +8,4 @@ const IconCategorySharp: React.FC = ({ ...props }) => ( ) -export { IconCategorySharp as default } +export default IconCategorySharp diff --git a/src/IconCategorySharpFilled.tsx b/src/IconCategorySharpFilled.tsx index 5bc68423b..b2a3f9d25 100644 --- a/src/IconCategorySharpFilled.tsx +++ b/src/IconCategorySharpFilled.tsx @@ -8,4 +8,4 @@ const IconCategorySharpFilled: React.FC = ({ ...props }) => ( ) -export { IconCategorySharpFilled as default } +export default IconCategorySharpFilled diff --git a/src/IconCelebrationOutlined.tsx b/src/IconCelebrationOutlined.tsx index 94f5c9ad8..10bc6afe3 100644 --- a/src/IconCelebrationOutlined.tsx +++ b/src/IconCelebrationOutlined.tsx @@ -8,4 +8,4 @@ const IconCelebrationOutlined: React.FC = ({ ...props }) => ( ) -export { IconCelebrationOutlined as default } +export default IconCelebrationOutlined diff --git a/src/IconCelebrationOutlinedFilled.tsx b/src/IconCelebrationOutlinedFilled.tsx index ac74d448d..c60bb7cd2 100644 --- a/src/IconCelebrationOutlinedFilled.tsx +++ b/src/IconCelebrationOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconCelebrationOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconCelebrationOutlinedFilled as default } +export default IconCelebrationOutlinedFilled diff --git a/src/IconCelebrationRounded.tsx b/src/IconCelebrationRounded.tsx index a3fa149a0..d1159e3b9 100644 --- a/src/IconCelebrationRounded.tsx +++ b/src/IconCelebrationRounded.tsx @@ -8,4 +8,4 @@ const IconCelebrationRounded: React.FC = ({ ...props }) => ( ) -export { IconCelebrationRounded as default } +export default IconCelebrationRounded diff --git a/src/IconCelebrationRoundedFilled.tsx b/src/IconCelebrationRoundedFilled.tsx index 20875b082..0a51a4586 100644 --- a/src/IconCelebrationRoundedFilled.tsx +++ b/src/IconCelebrationRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconCelebrationRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconCelebrationRoundedFilled as default } +export default IconCelebrationRoundedFilled diff --git a/src/IconCelebrationSharp.tsx b/src/IconCelebrationSharp.tsx index cefff7d09..cc99d29e1 100644 --- a/src/IconCelebrationSharp.tsx +++ b/src/IconCelebrationSharp.tsx @@ -8,4 +8,4 @@ const IconCelebrationSharp: React.FC = ({ ...props }) => ( ) -export { IconCelebrationSharp as default } +export default IconCelebrationSharp diff --git a/src/IconCelebrationSharpFilled.tsx b/src/IconCelebrationSharpFilled.tsx index d5a4af158..4b12aad5c 100644 --- a/src/IconCelebrationSharpFilled.tsx +++ b/src/IconCelebrationSharpFilled.tsx @@ -8,4 +8,4 @@ const IconCelebrationSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconCelebrationSharpFilled as default } +export default IconCelebrationSharpFilled diff --git a/src/IconCellMergeOutlined.tsx b/src/IconCellMergeOutlined.tsx index e3b6c6e4f..8082baca7 100644 --- a/src/IconCellMergeOutlined.tsx +++ b/src/IconCellMergeOutlined.tsx @@ -8,4 +8,4 @@ const IconCellMergeOutlined: React.FC = ({ ...props }) => ( ) -export { IconCellMergeOutlined as default } +export default IconCellMergeOutlined diff --git a/src/IconCellMergeOutlinedFilled.tsx b/src/IconCellMergeOutlinedFilled.tsx index 20a3f8be3..6c2875cc6 100644 --- a/src/IconCellMergeOutlinedFilled.tsx +++ b/src/IconCellMergeOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconCellMergeOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconCellMergeOutlinedFilled as default } +export default IconCellMergeOutlinedFilled diff --git a/src/IconCellMergeRounded.tsx b/src/IconCellMergeRounded.tsx index c342460dc..4f9747e38 100644 --- a/src/IconCellMergeRounded.tsx +++ b/src/IconCellMergeRounded.tsx @@ -8,4 +8,4 @@ const IconCellMergeRounded: React.FC = ({ ...props }) => ( ) -export { IconCellMergeRounded as default } +export default IconCellMergeRounded diff --git a/src/IconCellMergeRoundedFilled.tsx b/src/IconCellMergeRoundedFilled.tsx index 04e80a4b3..14a3e299b 100644 --- a/src/IconCellMergeRoundedFilled.tsx +++ b/src/IconCellMergeRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconCellMergeRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconCellMergeRoundedFilled as default } +export default IconCellMergeRoundedFilled diff --git a/src/IconCellMergeSharp.tsx b/src/IconCellMergeSharp.tsx index 55a61d824..a9c97b907 100644 --- a/src/IconCellMergeSharp.tsx +++ b/src/IconCellMergeSharp.tsx @@ -8,4 +8,4 @@ const IconCellMergeSharp: React.FC = ({ ...props }) => ( ) -export { IconCellMergeSharp as default } +export default IconCellMergeSharp diff --git a/src/IconCellMergeSharpFilled.tsx b/src/IconCellMergeSharpFilled.tsx index 7d6b53d2e..d437af0d3 100644 --- a/src/IconCellMergeSharpFilled.tsx +++ b/src/IconCellMergeSharpFilled.tsx @@ -8,4 +8,4 @@ const IconCellMergeSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconCellMergeSharpFilled as default } +export default IconCellMergeSharpFilled diff --git a/src/IconCellTowerOutlined.tsx b/src/IconCellTowerOutlined.tsx index d886f419b..da1d56ffa 100644 --- a/src/IconCellTowerOutlined.tsx +++ b/src/IconCellTowerOutlined.tsx @@ -8,4 +8,4 @@ const IconCellTowerOutlined: React.FC = ({ ...props }) => ( ) -export { IconCellTowerOutlined as default } +export default IconCellTowerOutlined diff --git a/src/IconCellTowerOutlinedFilled.tsx b/src/IconCellTowerOutlinedFilled.tsx index 67d784fa8..6c078554d 100644 --- a/src/IconCellTowerOutlinedFilled.tsx +++ b/src/IconCellTowerOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconCellTowerOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconCellTowerOutlinedFilled as default } +export default IconCellTowerOutlinedFilled diff --git a/src/IconCellTowerRounded.tsx b/src/IconCellTowerRounded.tsx index d2a842945..c4d6afd83 100644 --- a/src/IconCellTowerRounded.tsx +++ b/src/IconCellTowerRounded.tsx @@ -8,4 +8,4 @@ const IconCellTowerRounded: React.FC = ({ ...props }) => ( ) -export { IconCellTowerRounded as default } +export default IconCellTowerRounded diff --git a/src/IconCellTowerRoundedFilled.tsx b/src/IconCellTowerRoundedFilled.tsx index f0fb3d544..deed17a38 100644 --- a/src/IconCellTowerRoundedFilled.tsx +++ b/src/IconCellTowerRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconCellTowerRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconCellTowerRoundedFilled as default } +export default IconCellTowerRoundedFilled diff --git a/src/IconCellTowerSharp.tsx b/src/IconCellTowerSharp.tsx index 50a40fd98..9991cae7c 100644 --- a/src/IconCellTowerSharp.tsx +++ b/src/IconCellTowerSharp.tsx @@ -8,4 +8,4 @@ const IconCellTowerSharp: React.FC = ({ ...props }) => ( ) -export { IconCellTowerSharp as default } +export default IconCellTowerSharp diff --git a/src/IconCellTowerSharpFilled.tsx b/src/IconCellTowerSharpFilled.tsx index 99eab8326..050b5c643 100644 --- a/src/IconCellTowerSharpFilled.tsx +++ b/src/IconCellTowerSharpFilled.tsx @@ -8,4 +8,4 @@ const IconCellTowerSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconCellTowerSharpFilled as default } +export default IconCellTowerSharpFilled diff --git a/src/IconCellWifiOutlined.tsx b/src/IconCellWifiOutlined.tsx index 010f68982..5e5266c88 100644 --- a/src/IconCellWifiOutlined.tsx +++ b/src/IconCellWifiOutlined.tsx @@ -8,4 +8,4 @@ const IconCellWifiOutlined: React.FC = ({ ...props }) => ( ) -export { IconCellWifiOutlined as default } +export default IconCellWifiOutlined diff --git a/src/IconCellWifiOutlinedFilled.tsx b/src/IconCellWifiOutlinedFilled.tsx index 3210c5d70..3209ff503 100644 --- a/src/IconCellWifiOutlinedFilled.tsx +++ b/src/IconCellWifiOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconCellWifiOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconCellWifiOutlinedFilled as default } +export default IconCellWifiOutlinedFilled diff --git a/src/IconCellWifiRounded.tsx b/src/IconCellWifiRounded.tsx index b7332bc54..58556c118 100644 --- a/src/IconCellWifiRounded.tsx +++ b/src/IconCellWifiRounded.tsx @@ -8,4 +8,4 @@ const IconCellWifiRounded: React.FC = ({ ...props }) => ( ) -export { IconCellWifiRounded as default } +export default IconCellWifiRounded diff --git a/src/IconCellWifiRoundedFilled.tsx b/src/IconCellWifiRoundedFilled.tsx index b4f4b8935..d43d9955f 100644 --- a/src/IconCellWifiRoundedFilled.tsx +++ b/src/IconCellWifiRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconCellWifiRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconCellWifiRoundedFilled as default } +export default IconCellWifiRoundedFilled diff --git a/src/IconCellWifiSharp.tsx b/src/IconCellWifiSharp.tsx index fd5ed503e..b27b1c1de 100644 --- a/src/IconCellWifiSharp.tsx +++ b/src/IconCellWifiSharp.tsx @@ -8,4 +8,4 @@ const IconCellWifiSharp: React.FC = ({ ...props }) => ( ) -export { IconCellWifiSharp as default } +export default IconCellWifiSharp diff --git a/src/IconCellWifiSharpFilled.tsx b/src/IconCellWifiSharpFilled.tsx index fdf7f7bd4..4b9182b0c 100644 --- a/src/IconCellWifiSharpFilled.tsx +++ b/src/IconCellWifiSharpFilled.tsx @@ -8,4 +8,4 @@ const IconCellWifiSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconCellWifiSharpFilled as default } +export default IconCellWifiSharpFilled diff --git a/src/IconCenterFocusStrongOutlined.tsx b/src/IconCenterFocusStrongOutlined.tsx index e66c21469..f6dbb3b19 100644 --- a/src/IconCenterFocusStrongOutlined.tsx +++ b/src/IconCenterFocusStrongOutlined.tsx @@ -8,4 +8,4 @@ const IconCenterFocusStrongOutlined: React.FC = ({ ...props }) => ( ) -export { IconCenterFocusStrongOutlined as default } +export default IconCenterFocusStrongOutlined diff --git a/src/IconCenterFocusStrongOutlinedFilled.tsx b/src/IconCenterFocusStrongOutlinedFilled.tsx index 910276f54..bc7af7f91 100644 --- a/src/IconCenterFocusStrongOutlinedFilled.tsx +++ b/src/IconCenterFocusStrongOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconCenterFocusStrongOutlinedFilled: React.FC = ({ ) -export { IconCenterFocusStrongOutlinedFilled as default } +export default IconCenterFocusStrongOutlinedFilled diff --git a/src/IconCenterFocusStrongRounded.tsx b/src/IconCenterFocusStrongRounded.tsx index ad381b0b7..8185f452e 100644 --- a/src/IconCenterFocusStrongRounded.tsx +++ b/src/IconCenterFocusStrongRounded.tsx @@ -8,4 +8,4 @@ const IconCenterFocusStrongRounded: React.FC = ({ ...props }) => ( ) -export { IconCenterFocusStrongRounded as default } +export default IconCenterFocusStrongRounded diff --git a/src/IconCenterFocusStrongRoundedFilled.tsx b/src/IconCenterFocusStrongRoundedFilled.tsx index f84e5282f..bb53aaa4e 100644 --- a/src/IconCenterFocusStrongRoundedFilled.tsx +++ b/src/IconCenterFocusStrongRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconCenterFocusStrongRoundedFilled: React.FC = ({ ) -export { IconCenterFocusStrongRoundedFilled as default } +export default IconCenterFocusStrongRoundedFilled diff --git a/src/IconCenterFocusStrongSharp.tsx b/src/IconCenterFocusStrongSharp.tsx index 42e85a4a1..f8b6074c7 100644 --- a/src/IconCenterFocusStrongSharp.tsx +++ b/src/IconCenterFocusStrongSharp.tsx @@ -8,4 +8,4 @@ const IconCenterFocusStrongSharp: React.FC = ({ ...props }) => ( ) -export { IconCenterFocusStrongSharp as default } +export default IconCenterFocusStrongSharp diff --git a/src/IconCenterFocusStrongSharpFilled.tsx b/src/IconCenterFocusStrongSharpFilled.tsx index fbaeb0b96..acbc8feb2 100644 --- a/src/IconCenterFocusStrongSharpFilled.tsx +++ b/src/IconCenterFocusStrongSharpFilled.tsx @@ -10,4 +10,4 @@ const IconCenterFocusStrongSharpFilled: React.FC = ({ ) -export { IconCenterFocusStrongSharpFilled as default } +export default IconCenterFocusStrongSharpFilled diff --git a/src/IconCenterFocusWeakOutlined.tsx b/src/IconCenterFocusWeakOutlined.tsx index ab8665b13..be024907c 100644 --- a/src/IconCenterFocusWeakOutlined.tsx +++ b/src/IconCenterFocusWeakOutlined.tsx @@ -8,4 +8,4 @@ const IconCenterFocusWeakOutlined: React.FC = ({ ...props }) => ( ) -export { IconCenterFocusWeakOutlined as default } +export default IconCenterFocusWeakOutlined diff --git a/src/IconCenterFocusWeakOutlinedFilled.tsx b/src/IconCenterFocusWeakOutlinedFilled.tsx index 977b728fb..20deaa6b7 100644 --- a/src/IconCenterFocusWeakOutlinedFilled.tsx +++ b/src/IconCenterFocusWeakOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconCenterFocusWeakOutlinedFilled: React.FC = ({ ) -export { IconCenterFocusWeakOutlinedFilled as default } +export default IconCenterFocusWeakOutlinedFilled diff --git a/src/IconCenterFocusWeakRounded.tsx b/src/IconCenterFocusWeakRounded.tsx index a90f7a7a7..6c6b0d43d 100644 --- a/src/IconCenterFocusWeakRounded.tsx +++ b/src/IconCenterFocusWeakRounded.tsx @@ -8,4 +8,4 @@ const IconCenterFocusWeakRounded: React.FC = ({ ...props }) => ( ) -export { IconCenterFocusWeakRounded as default } +export default IconCenterFocusWeakRounded diff --git a/src/IconCenterFocusWeakRoundedFilled.tsx b/src/IconCenterFocusWeakRoundedFilled.tsx index 4f7b8599d..2467bf05d 100644 --- a/src/IconCenterFocusWeakRoundedFilled.tsx +++ b/src/IconCenterFocusWeakRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconCenterFocusWeakRoundedFilled: React.FC = ({ ) -export { IconCenterFocusWeakRoundedFilled as default } +export default IconCenterFocusWeakRoundedFilled diff --git a/src/IconCenterFocusWeakSharp.tsx b/src/IconCenterFocusWeakSharp.tsx index c7788829c..f3c3bc847 100644 --- a/src/IconCenterFocusWeakSharp.tsx +++ b/src/IconCenterFocusWeakSharp.tsx @@ -8,4 +8,4 @@ const IconCenterFocusWeakSharp: React.FC = ({ ...props }) => ( ) -export { IconCenterFocusWeakSharp as default } +export default IconCenterFocusWeakSharp diff --git a/src/IconCenterFocusWeakSharpFilled.tsx b/src/IconCenterFocusWeakSharpFilled.tsx index 8b6be72ae..8a8c735f2 100644 --- a/src/IconCenterFocusWeakSharpFilled.tsx +++ b/src/IconCenterFocusWeakSharpFilled.tsx @@ -8,4 +8,4 @@ const IconCenterFocusWeakSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconCenterFocusWeakSharpFilled as default } +export default IconCenterFocusWeakSharpFilled diff --git a/src/IconChairAltOutlined.tsx b/src/IconChairAltOutlined.tsx index 94114f06f..b851feec5 100644 --- a/src/IconChairAltOutlined.tsx +++ b/src/IconChairAltOutlined.tsx @@ -8,4 +8,4 @@ const IconChairAltOutlined: React.FC = ({ ...props }) => ( ) -export { IconChairAltOutlined as default } +export default IconChairAltOutlined diff --git a/src/IconChairAltOutlinedFilled.tsx b/src/IconChairAltOutlinedFilled.tsx index f1e86ec1a..0d3de4b96 100644 --- a/src/IconChairAltOutlinedFilled.tsx +++ b/src/IconChairAltOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconChairAltOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconChairAltOutlinedFilled as default } +export default IconChairAltOutlinedFilled diff --git a/src/IconChairAltRounded.tsx b/src/IconChairAltRounded.tsx index 0c19e16e4..dec210865 100644 --- a/src/IconChairAltRounded.tsx +++ b/src/IconChairAltRounded.tsx @@ -8,4 +8,4 @@ const IconChairAltRounded: React.FC = ({ ...props }) => ( ) -export { IconChairAltRounded as default } +export default IconChairAltRounded diff --git a/src/IconChairAltRoundedFilled.tsx b/src/IconChairAltRoundedFilled.tsx index fcc5db2be..9aaa81f83 100644 --- a/src/IconChairAltRoundedFilled.tsx +++ b/src/IconChairAltRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconChairAltRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconChairAltRoundedFilled as default } +export default IconChairAltRoundedFilled diff --git a/src/IconChairAltSharp.tsx b/src/IconChairAltSharp.tsx index 4bfab1a4f..6962bd047 100644 --- a/src/IconChairAltSharp.tsx +++ b/src/IconChairAltSharp.tsx @@ -8,4 +8,4 @@ const IconChairAltSharp: React.FC = ({ ...props }) => ( ) -export { IconChairAltSharp as default } +export default IconChairAltSharp diff --git a/src/IconChairAltSharpFilled.tsx b/src/IconChairAltSharpFilled.tsx index e5a9b1864..9723bf8b8 100644 --- a/src/IconChairAltSharpFilled.tsx +++ b/src/IconChairAltSharpFilled.tsx @@ -8,4 +8,4 @@ const IconChairAltSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconChairAltSharpFilled as default } +export default IconChairAltSharpFilled diff --git a/src/IconChairOutlined.tsx b/src/IconChairOutlined.tsx index 081ea9754..425019034 100644 --- a/src/IconChairOutlined.tsx +++ b/src/IconChairOutlined.tsx @@ -8,4 +8,4 @@ const IconChairOutlined: React.FC = ({ ...props }) => ( ) -export { IconChairOutlined as default } +export default IconChairOutlined diff --git a/src/IconChairOutlinedFilled.tsx b/src/IconChairOutlinedFilled.tsx index 188a87707..7f674ac4f 100644 --- a/src/IconChairOutlinedFilled.tsx +++ b/src/IconChairOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconChairOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconChairOutlinedFilled as default } +export default IconChairOutlinedFilled diff --git a/src/IconChairRounded.tsx b/src/IconChairRounded.tsx index fa309a5f9..1e3124813 100644 --- a/src/IconChairRounded.tsx +++ b/src/IconChairRounded.tsx @@ -8,4 +8,4 @@ const IconChairRounded: React.FC = ({ ...props }) => ( ) -export { IconChairRounded as default } +export default IconChairRounded diff --git a/src/IconChairRoundedFilled.tsx b/src/IconChairRoundedFilled.tsx index 105a2d197..12f4dfa2a 100644 --- a/src/IconChairRoundedFilled.tsx +++ b/src/IconChairRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconChairRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconChairRoundedFilled as default } +export default IconChairRoundedFilled diff --git a/src/IconChairSharp.tsx b/src/IconChairSharp.tsx index e551ab4a4..f1ad32f9e 100644 --- a/src/IconChairSharp.tsx +++ b/src/IconChairSharp.tsx @@ -8,4 +8,4 @@ const IconChairSharp: React.FC = ({ ...props }) => ( ) -export { IconChairSharp as default } +export default IconChairSharp diff --git a/src/IconChairSharpFilled.tsx b/src/IconChairSharpFilled.tsx index 34bcaa75e..75bf669f4 100644 --- a/src/IconChairSharpFilled.tsx +++ b/src/IconChairSharpFilled.tsx @@ -8,4 +8,4 @@ const IconChairSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconChairSharpFilled as default } +export default IconChairSharpFilled diff --git a/src/IconChaletOutlined.tsx b/src/IconChaletOutlined.tsx index 197690f24..69b5cbe1b 100644 --- a/src/IconChaletOutlined.tsx +++ b/src/IconChaletOutlined.tsx @@ -8,4 +8,4 @@ const IconChaletOutlined: React.FC = ({ ...props }) => ( ) -export { IconChaletOutlined as default } +export default IconChaletOutlined diff --git a/src/IconChaletOutlinedFilled.tsx b/src/IconChaletOutlinedFilled.tsx index 4723dba16..bde4eb7b9 100644 --- a/src/IconChaletOutlinedFilled.tsx +++ b/src/IconChaletOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconChaletOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconChaletOutlinedFilled as default } +export default IconChaletOutlinedFilled diff --git a/src/IconChaletRounded.tsx b/src/IconChaletRounded.tsx index d99b93778..83d371dd3 100644 --- a/src/IconChaletRounded.tsx +++ b/src/IconChaletRounded.tsx @@ -8,4 +8,4 @@ const IconChaletRounded: React.FC = ({ ...props }) => ( ) -export { IconChaletRounded as default } +export default IconChaletRounded diff --git a/src/IconChaletRoundedFilled.tsx b/src/IconChaletRoundedFilled.tsx index ff839c186..8f4cace9d 100644 --- a/src/IconChaletRoundedFilled.tsx +++ b/src/IconChaletRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconChaletRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconChaletRoundedFilled as default } +export default IconChaletRoundedFilled diff --git a/src/IconChaletSharp.tsx b/src/IconChaletSharp.tsx index 3d34d8880..13b231a53 100644 --- a/src/IconChaletSharp.tsx +++ b/src/IconChaletSharp.tsx @@ -8,4 +8,4 @@ const IconChaletSharp: React.FC = ({ ...props }) => ( ) -export { IconChaletSharp as default } +export default IconChaletSharp diff --git a/src/IconChaletSharpFilled.tsx b/src/IconChaletSharpFilled.tsx index ca41abe07..e76168ecc 100644 --- a/src/IconChaletSharpFilled.tsx +++ b/src/IconChaletSharpFilled.tsx @@ -8,4 +8,4 @@ const IconChaletSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconChaletSharpFilled as default } +export default IconChaletSharpFilled diff --git a/src/IconChangeCircleOutlined.tsx b/src/IconChangeCircleOutlined.tsx index 9cfef4e92..7923f1ea9 100644 --- a/src/IconChangeCircleOutlined.tsx +++ b/src/IconChangeCircleOutlined.tsx @@ -8,4 +8,4 @@ const IconChangeCircleOutlined: React.FC = ({ ...props }) => ( ) -export { IconChangeCircleOutlined as default } +export default IconChangeCircleOutlined diff --git a/src/IconChangeCircleOutlinedFilled.tsx b/src/IconChangeCircleOutlinedFilled.tsx index af89042a3..cb9c42e58 100644 --- a/src/IconChangeCircleOutlinedFilled.tsx +++ b/src/IconChangeCircleOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconChangeCircleOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconChangeCircleOutlinedFilled as default } +export default IconChangeCircleOutlinedFilled diff --git a/src/IconChangeCircleRounded.tsx b/src/IconChangeCircleRounded.tsx index 345867a70..a58a9ccf9 100644 --- a/src/IconChangeCircleRounded.tsx +++ b/src/IconChangeCircleRounded.tsx @@ -8,4 +8,4 @@ const IconChangeCircleRounded: React.FC = ({ ...props }) => ( ) -export { IconChangeCircleRounded as default } +export default IconChangeCircleRounded diff --git a/src/IconChangeCircleRoundedFilled.tsx b/src/IconChangeCircleRoundedFilled.tsx index 71034d1a2..92a13feb5 100644 --- a/src/IconChangeCircleRoundedFilled.tsx +++ b/src/IconChangeCircleRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconChangeCircleRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconChangeCircleRoundedFilled as default } +export default IconChangeCircleRoundedFilled diff --git a/src/IconChangeCircleSharp.tsx b/src/IconChangeCircleSharp.tsx index cf0201d31..e33b0d04f 100644 --- a/src/IconChangeCircleSharp.tsx +++ b/src/IconChangeCircleSharp.tsx @@ -8,4 +8,4 @@ const IconChangeCircleSharp: React.FC = ({ ...props }) => ( ) -export { IconChangeCircleSharp as default } +export default IconChangeCircleSharp diff --git a/src/IconChangeCircleSharpFilled.tsx b/src/IconChangeCircleSharpFilled.tsx index 644a73d3d..84d3e2b96 100644 --- a/src/IconChangeCircleSharpFilled.tsx +++ b/src/IconChangeCircleSharpFilled.tsx @@ -8,4 +8,4 @@ const IconChangeCircleSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconChangeCircleSharpFilled as default } +export default IconChangeCircleSharpFilled diff --git a/src/IconChangeHistoryOutlined.tsx b/src/IconChangeHistoryOutlined.tsx index 7b6debcc8..e4140749a 100644 --- a/src/IconChangeHistoryOutlined.tsx +++ b/src/IconChangeHistoryOutlined.tsx @@ -8,4 +8,4 @@ const IconChangeHistoryOutlined: React.FC = ({ ...props }) => ( ) -export { IconChangeHistoryOutlined as default } +export default IconChangeHistoryOutlined diff --git a/src/IconChangeHistoryOutlinedFilled.tsx b/src/IconChangeHistoryOutlinedFilled.tsx index 072176f19..a2e15b85e 100644 --- a/src/IconChangeHistoryOutlinedFilled.tsx +++ b/src/IconChangeHistoryOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconChangeHistoryOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconChangeHistoryOutlinedFilled as default } +export default IconChangeHistoryOutlinedFilled diff --git a/src/IconChangeHistoryRounded.tsx b/src/IconChangeHistoryRounded.tsx index 76b750789..729cd8986 100644 --- a/src/IconChangeHistoryRounded.tsx +++ b/src/IconChangeHistoryRounded.tsx @@ -8,4 +8,4 @@ const IconChangeHistoryRounded: React.FC = ({ ...props }) => ( ) -export { IconChangeHistoryRounded as default } +export default IconChangeHistoryRounded diff --git a/src/IconChangeHistoryRoundedFilled.tsx b/src/IconChangeHistoryRoundedFilled.tsx index 805da6b0a..c81b24452 100644 --- a/src/IconChangeHistoryRoundedFilled.tsx +++ b/src/IconChangeHistoryRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconChangeHistoryRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconChangeHistoryRoundedFilled as default } +export default IconChangeHistoryRoundedFilled diff --git a/src/IconChangeHistorySharp.tsx b/src/IconChangeHistorySharp.tsx index 421cb93c5..abd3196dc 100644 --- a/src/IconChangeHistorySharp.tsx +++ b/src/IconChangeHistorySharp.tsx @@ -8,4 +8,4 @@ const IconChangeHistorySharp: React.FC = ({ ...props }) => ( ) -export { IconChangeHistorySharp as default } +export default IconChangeHistorySharp diff --git a/src/IconChangeHistorySharpFilled.tsx b/src/IconChangeHistorySharpFilled.tsx index fddb459c5..c55e06637 100644 --- a/src/IconChangeHistorySharpFilled.tsx +++ b/src/IconChangeHistorySharpFilled.tsx @@ -8,4 +8,4 @@ const IconChangeHistorySharpFilled: React.FC = ({ ...props }) => ( ) -export { IconChangeHistorySharpFilled as default } +export default IconChangeHistorySharpFilled diff --git a/src/IconChargerOutlined.tsx b/src/IconChargerOutlined.tsx index b816383dd..245c395f0 100644 --- a/src/IconChargerOutlined.tsx +++ b/src/IconChargerOutlined.tsx @@ -8,4 +8,4 @@ const IconChargerOutlined: React.FC = ({ ...props }) => ( ) -export { IconChargerOutlined as default } +export default IconChargerOutlined diff --git a/src/IconChargerOutlinedFilled.tsx b/src/IconChargerOutlinedFilled.tsx index 73094f892..7276f52c5 100644 --- a/src/IconChargerOutlinedFilled.tsx +++ b/src/IconChargerOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconChargerOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconChargerOutlinedFilled as default } +export default IconChargerOutlinedFilled diff --git a/src/IconChargerRounded.tsx b/src/IconChargerRounded.tsx index f3a7e3dea..d745eb293 100644 --- a/src/IconChargerRounded.tsx +++ b/src/IconChargerRounded.tsx @@ -8,4 +8,4 @@ const IconChargerRounded: React.FC = ({ ...props }) => ( ) -export { IconChargerRounded as default } +export default IconChargerRounded diff --git a/src/IconChargerRoundedFilled.tsx b/src/IconChargerRoundedFilled.tsx index 18e3b7e56..9a0fd2b9d 100644 --- a/src/IconChargerRoundedFilled.tsx +++ b/src/IconChargerRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconChargerRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconChargerRoundedFilled as default } +export default IconChargerRoundedFilled diff --git a/src/IconChargerSharp.tsx b/src/IconChargerSharp.tsx index 3c3aae93c..d96328ed5 100644 --- a/src/IconChargerSharp.tsx +++ b/src/IconChargerSharp.tsx @@ -8,4 +8,4 @@ const IconChargerSharp: React.FC = ({ ...props }) => ( ) -export { IconChargerSharp as default } +export default IconChargerSharp diff --git a/src/IconChargerSharpFilled.tsx b/src/IconChargerSharpFilled.tsx index b07c45dcf..657581821 100644 --- a/src/IconChargerSharpFilled.tsx +++ b/src/IconChargerSharpFilled.tsx @@ -8,4 +8,4 @@ const IconChargerSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconChargerSharpFilled as default } +export default IconChargerSharpFilled diff --git a/src/IconChargingStationOutlined.tsx b/src/IconChargingStationOutlined.tsx index 2b9b977d4..627853c89 100644 --- a/src/IconChargingStationOutlined.tsx +++ b/src/IconChargingStationOutlined.tsx @@ -8,4 +8,4 @@ const IconChargingStationOutlined: React.FC = ({ ...props }) => ( ) -export { IconChargingStationOutlined as default } +export default IconChargingStationOutlined diff --git a/src/IconChargingStationOutlinedFilled.tsx b/src/IconChargingStationOutlinedFilled.tsx index 0ee33151e..0a2ebebb8 100644 --- a/src/IconChargingStationOutlinedFilled.tsx +++ b/src/IconChargingStationOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconChargingStationOutlinedFilled: React.FC = ({ ) -export { IconChargingStationOutlinedFilled as default } +export default IconChargingStationOutlinedFilled diff --git a/src/IconChargingStationRounded.tsx b/src/IconChargingStationRounded.tsx index 4d70147e1..723fd6f1a 100644 --- a/src/IconChargingStationRounded.tsx +++ b/src/IconChargingStationRounded.tsx @@ -8,4 +8,4 @@ const IconChargingStationRounded: React.FC = ({ ...props }) => ( ) -export { IconChargingStationRounded as default } +export default IconChargingStationRounded diff --git a/src/IconChargingStationRoundedFilled.tsx b/src/IconChargingStationRoundedFilled.tsx index 99d2cadc1..873544c3e 100644 --- a/src/IconChargingStationRoundedFilled.tsx +++ b/src/IconChargingStationRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconChargingStationRoundedFilled: React.FC = ({ ) -export { IconChargingStationRoundedFilled as default } +export default IconChargingStationRoundedFilled diff --git a/src/IconChargingStationSharp.tsx b/src/IconChargingStationSharp.tsx index 6dbfb8f76..e1a89bc7c 100644 --- a/src/IconChargingStationSharp.tsx +++ b/src/IconChargingStationSharp.tsx @@ -8,4 +8,4 @@ const IconChargingStationSharp: React.FC = ({ ...props }) => ( ) -export { IconChargingStationSharp as default } +export default IconChargingStationSharp diff --git a/src/IconChargingStationSharpFilled.tsx b/src/IconChargingStationSharpFilled.tsx index dbadba67c..85a933126 100644 --- a/src/IconChargingStationSharpFilled.tsx +++ b/src/IconChargingStationSharpFilled.tsx @@ -8,4 +8,4 @@ const IconChargingStationSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconChargingStationSharpFilled as default } +export default IconChargingStationSharpFilled diff --git a/src/IconChartDataOutlined.tsx b/src/IconChartDataOutlined.tsx index 7b5913afb..bc8d1dc92 100644 --- a/src/IconChartDataOutlined.tsx +++ b/src/IconChartDataOutlined.tsx @@ -8,4 +8,4 @@ const IconChartDataOutlined: React.FC = ({ ...props }) => ( ) -export { IconChartDataOutlined as default } +export default IconChartDataOutlined diff --git a/src/IconChartDataOutlinedFilled.tsx b/src/IconChartDataOutlinedFilled.tsx index ddc277af1..4c4824d53 100644 --- a/src/IconChartDataOutlinedFilled.tsx +++ b/src/IconChartDataOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconChartDataOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconChartDataOutlinedFilled as default } +export default IconChartDataOutlinedFilled diff --git a/src/IconChartDataRounded.tsx b/src/IconChartDataRounded.tsx index 540e383e2..7754600c1 100644 --- a/src/IconChartDataRounded.tsx +++ b/src/IconChartDataRounded.tsx @@ -8,4 +8,4 @@ const IconChartDataRounded: React.FC = ({ ...props }) => ( ) -export { IconChartDataRounded as default } +export default IconChartDataRounded diff --git a/src/IconChartDataRoundedFilled.tsx b/src/IconChartDataRoundedFilled.tsx index 7f5c21f2b..0ee35b0c0 100644 --- a/src/IconChartDataRoundedFilled.tsx +++ b/src/IconChartDataRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconChartDataRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconChartDataRoundedFilled as default } +export default IconChartDataRoundedFilled diff --git a/src/IconChartDataSharp.tsx b/src/IconChartDataSharp.tsx index f7c3a0945..520e41b89 100644 --- a/src/IconChartDataSharp.tsx +++ b/src/IconChartDataSharp.tsx @@ -8,4 +8,4 @@ const IconChartDataSharp: React.FC = ({ ...props }) => ( ) -export { IconChartDataSharp as default } +export default IconChartDataSharp diff --git a/src/IconChartDataSharpFilled.tsx b/src/IconChartDataSharpFilled.tsx index 87b7ad40c..8eb9c5c95 100644 --- a/src/IconChartDataSharpFilled.tsx +++ b/src/IconChartDataSharpFilled.tsx @@ -8,4 +8,4 @@ const IconChartDataSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconChartDataSharpFilled as default } +export default IconChartDataSharpFilled diff --git a/src/IconChatAddOnOutlined.tsx b/src/IconChatAddOnOutlined.tsx index 2abdb0e92..fdc66d557 100644 --- a/src/IconChatAddOnOutlined.tsx +++ b/src/IconChatAddOnOutlined.tsx @@ -8,4 +8,4 @@ const IconChatAddOnOutlined: React.FC = ({ ...props }) => ( ) -export { IconChatAddOnOutlined as default } +export default IconChatAddOnOutlined diff --git a/src/IconChatAddOnOutlinedFilled.tsx b/src/IconChatAddOnOutlinedFilled.tsx index 6910e4b6c..c62f3f2b3 100644 --- a/src/IconChatAddOnOutlinedFilled.tsx +++ b/src/IconChatAddOnOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconChatAddOnOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconChatAddOnOutlinedFilled as default } +export default IconChatAddOnOutlinedFilled diff --git a/src/IconChatAddOnRounded.tsx b/src/IconChatAddOnRounded.tsx index 1f0d08b77..4d50c884c 100644 --- a/src/IconChatAddOnRounded.tsx +++ b/src/IconChatAddOnRounded.tsx @@ -8,4 +8,4 @@ const IconChatAddOnRounded: React.FC = ({ ...props }) => ( ) -export { IconChatAddOnRounded as default } +export default IconChatAddOnRounded diff --git a/src/IconChatAddOnRoundedFilled.tsx b/src/IconChatAddOnRoundedFilled.tsx index 7b706b74f..ad3d7a9b4 100644 --- a/src/IconChatAddOnRoundedFilled.tsx +++ b/src/IconChatAddOnRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconChatAddOnRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconChatAddOnRoundedFilled as default } +export default IconChatAddOnRoundedFilled diff --git a/src/IconChatAddOnSharp.tsx b/src/IconChatAddOnSharp.tsx index 28278cd92..c8848d29a 100644 --- a/src/IconChatAddOnSharp.tsx +++ b/src/IconChatAddOnSharp.tsx @@ -8,4 +8,4 @@ const IconChatAddOnSharp: React.FC = ({ ...props }) => ( ) -export { IconChatAddOnSharp as default } +export default IconChatAddOnSharp diff --git a/src/IconChatAddOnSharpFilled.tsx b/src/IconChatAddOnSharpFilled.tsx index 7a5f26a4f..e728cd101 100644 --- a/src/IconChatAddOnSharpFilled.tsx +++ b/src/IconChatAddOnSharpFilled.tsx @@ -8,4 +8,4 @@ const IconChatAddOnSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconChatAddOnSharpFilled as default } +export default IconChatAddOnSharpFilled diff --git a/src/IconChatAppsScriptOutlined.tsx b/src/IconChatAppsScriptOutlined.tsx index 5895f4f16..406240dd7 100644 --- a/src/IconChatAppsScriptOutlined.tsx +++ b/src/IconChatAppsScriptOutlined.tsx @@ -8,4 +8,4 @@ const IconChatAppsScriptOutlined: React.FC = ({ ...props }) => ( ) -export { IconChatAppsScriptOutlined as default } +export default IconChatAppsScriptOutlined diff --git a/src/IconChatAppsScriptOutlinedFilled.tsx b/src/IconChatAppsScriptOutlinedFilled.tsx index da65cfa63..e2b47bd87 100644 --- a/src/IconChatAppsScriptOutlinedFilled.tsx +++ b/src/IconChatAppsScriptOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconChatAppsScriptOutlinedFilled: React.FC = ({ ) -export { IconChatAppsScriptOutlinedFilled as default } +export default IconChatAppsScriptOutlinedFilled diff --git a/src/IconChatAppsScriptRounded.tsx b/src/IconChatAppsScriptRounded.tsx index d20bc32ef..2236cdfce 100644 --- a/src/IconChatAppsScriptRounded.tsx +++ b/src/IconChatAppsScriptRounded.tsx @@ -8,4 +8,4 @@ const IconChatAppsScriptRounded: React.FC = ({ ...props }) => ( ) -export { IconChatAppsScriptRounded as default } +export default IconChatAppsScriptRounded diff --git a/src/IconChatAppsScriptRoundedFilled.tsx b/src/IconChatAppsScriptRoundedFilled.tsx index 4d39f634e..046c8150f 100644 --- a/src/IconChatAppsScriptRoundedFilled.tsx +++ b/src/IconChatAppsScriptRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconChatAppsScriptRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconChatAppsScriptRoundedFilled as default } +export default IconChatAppsScriptRoundedFilled diff --git a/src/IconChatAppsScriptSharp.tsx b/src/IconChatAppsScriptSharp.tsx index 5b0cf3f8a..01a4a6fcc 100644 --- a/src/IconChatAppsScriptSharp.tsx +++ b/src/IconChatAppsScriptSharp.tsx @@ -8,4 +8,4 @@ const IconChatAppsScriptSharp: React.FC = ({ ...props }) => ( ) -export { IconChatAppsScriptSharp as default } +export default IconChatAppsScriptSharp diff --git a/src/IconChatAppsScriptSharpFilled.tsx b/src/IconChatAppsScriptSharpFilled.tsx index defe0e00e..62e8f2a2c 100644 --- a/src/IconChatAppsScriptSharpFilled.tsx +++ b/src/IconChatAppsScriptSharpFilled.tsx @@ -8,4 +8,4 @@ const IconChatAppsScriptSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconChatAppsScriptSharpFilled as default } +export default IconChatAppsScriptSharpFilled diff --git a/src/IconChatBubbleOutlined.tsx b/src/IconChatBubbleOutlined.tsx index 9e2adc92a..a15fb5444 100644 --- a/src/IconChatBubbleOutlined.tsx +++ b/src/IconChatBubbleOutlined.tsx @@ -8,4 +8,4 @@ const IconChatBubbleOutlined: React.FC = ({ ...props }) => ( ) -export { IconChatBubbleOutlined as default } +export default IconChatBubbleOutlined diff --git a/src/IconChatBubbleOutlinedFilled.tsx b/src/IconChatBubbleOutlinedFilled.tsx index 88882cd68..023a92b94 100644 --- a/src/IconChatBubbleOutlinedFilled.tsx +++ b/src/IconChatBubbleOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconChatBubbleOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconChatBubbleOutlinedFilled as default } +export default IconChatBubbleOutlinedFilled diff --git a/src/IconChatBubbleRounded.tsx b/src/IconChatBubbleRounded.tsx index 21aff4ed2..92b88e822 100644 --- a/src/IconChatBubbleRounded.tsx +++ b/src/IconChatBubbleRounded.tsx @@ -8,4 +8,4 @@ const IconChatBubbleRounded: React.FC = ({ ...props }) => ( ) -export { IconChatBubbleRounded as default } +export default IconChatBubbleRounded diff --git a/src/IconChatBubbleRoundedFilled.tsx b/src/IconChatBubbleRoundedFilled.tsx index e47dffbc4..961426ea6 100644 --- a/src/IconChatBubbleRoundedFilled.tsx +++ b/src/IconChatBubbleRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconChatBubbleRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconChatBubbleRoundedFilled as default } +export default IconChatBubbleRoundedFilled diff --git a/src/IconChatBubbleSharp.tsx b/src/IconChatBubbleSharp.tsx index 3f94317d5..bd478fb5e 100644 --- a/src/IconChatBubbleSharp.tsx +++ b/src/IconChatBubbleSharp.tsx @@ -8,4 +8,4 @@ const IconChatBubbleSharp: React.FC = ({ ...props }) => ( ) -export { IconChatBubbleSharp as default } +export default IconChatBubbleSharp diff --git a/src/IconChatBubbleSharpFilled.tsx b/src/IconChatBubbleSharpFilled.tsx index 5c9cc0ce2..d5bdfe96c 100644 --- a/src/IconChatBubbleSharpFilled.tsx +++ b/src/IconChatBubbleSharpFilled.tsx @@ -8,4 +8,4 @@ const IconChatBubbleSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconChatBubbleSharpFilled as default } +export default IconChatBubbleSharpFilled diff --git a/src/IconChatErrorOutlined.tsx b/src/IconChatErrorOutlined.tsx index c6bb7167a..b223206d8 100644 --- a/src/IconChatErrorOutlined.tsx +++ b/src/IconChatErrorOutlined.tsx @@ -8,4 +8,4 @@ const IconChatErrorOutlined: React.FC = ({ ...props }) => ( ) -export { IconChatErrorOutlined as default } +export default IconChatErrorOutlined diff --git a/src/IconChatErrorOutlinedFilled.tsx b/src/IconChatErrorOutlinedFilled.tsx index a971e4573..73eb7368c 100644 --- a/src/IconChatErrorOutlinedFilled.tsx +++ b/src/IconChatErrorOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconChatErrorOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconChatErrorOutlinedFilled as default } +export default IconChatErrorOutlinedFilled diff --git a/src/IconChatErrorRounded.tsx b/src/IconChatErrorRounded.tsx index f63c858b7..82349aad7 100644 --- a/src/IconChatErrorRounded.tsx +++ b/src/IconChatErrorRounded.tsx @@ -8,4 +8,4 @@ const IconChatErrorRounded: React.FC = ({ ...props }) => ( ) -export { IconChatErrorRounded as default } +export default IconChatErrorRounded diff --git a/src/IconChatErrorRoundedFilled.tsx b/src/IconChatErrorRoundedFilled.tsx index b6226bb40..2d84d5b7b 100644 --- a/src/IconChatErrorRoundedFilled.tsx +++ b/src/IconChatErrorRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconChatErrorRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconChatErrorRoundedFilled as default } +export default IconChatErrorRoundedFilled diff --git a/src/IconChatErrorSharp.tsx b/src/IconChatErrorSharp.tsx index 738959a1e..e9bc9292a 100644 --- a/src/IconChatErrorSharp.tsx +++ b/src/IconChatErrorSharp.tsx @@ -8,4 +8,4 @@ const IconChatErrorSharp: React.FC = ({ ...props }) => ( ) -export { IconChatErrorSharp as default } +export default IconChatErrorSharp diff --git a/src/IconChatErrorSharpFilled.tsx b/src/IconChatErrorSharpFilled.tsx index 27c5830dc..04a35ea78 100644 --- a/src/IconChatErrorSharpFilled.tsx +++ b/src/IconChatErrorSharpFilled.tsx @@ -8,4 +8,4 @@ const IconChatErrorSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconChatErrorSharpFilled as default } +export default IconChatErrorSharpFilled diff --git a/src/IconChatInfoOutlined.tsx b/src/IconChatInfoOutlined.tsx index 26abe1c03..66bcb8101 100644 --- a/src/IconChatInfoOutlined.tsx +++ b/src/IconChatInfoOutlined.tsx @@ -8,4 +8,4 @@ const IconChatInfoOutlined: React.FC = ({ ...props }) => ( ) -export { IconChatInfoOutlined as default } +export default IconChatInfoOutlined diff --git a/src/IconChatInfoOutlinedFilled.tsx b/src/IconChatInfoOutlinedFilled.tsx index 82a342599..0bbaf5c2d 100644 --- a/src/IconChatInfoOutlinedFilled.tsx +++ b/src/IconChatInfoOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconChatInfoOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconChatInfoOutlinedFilled as default } +export default IconChatInfoOutlinedFilled diff --git a/src/IconChatInfoRounded.tsx b/src/IconChatInfoRounded.tsx index a5c712d69..e8f94efa1 100644 --- a/src/IconChatInfoRounded.tsx +++ b/src/IconChatInfoRounded.tsx @@ -8,4 +8,4 @@ const IconChatInfoRounded: React.FC = ({ ...props }) => ( ) -export { IconChatInfoRounded as default } +export default IconChatInfoRounded diff --git a/src/IconChatInfoRoundedFilled.tsx b/src/IconChatInfoRoundedFilled.tsx index 2aa3773ee..d2b894095 100644 --- a/src/IconChatInfoRoundedFilled.tsx +++ b/src/IconChatInfoRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconChatInfoRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconChatInfoRoundedFilled as default } +export default IconChatInfoRoundedFilled diff --git a/src/IconChatInfoSharp.tsx b/src/IconChatInfoSharp.tsx index a047608f2..577eaebd6 100644 --- a/src/IconChatInfoSharp.tsx +++ b/src/IconChatInfoSharp.tsx @@ -8,4 +8,4 @@ const IconChatInfoSharp: React.FC = ({ ...props }) => ( ) -export { IconChatInfoSharp as default } +export default IconChatInfoSharp diff --git a/src/IconChatInfoSharpFilled.tsx b/src/IconChatInfoSharpFilled.tsx index 29f02cf53..3e378b979 100644 --- a/src/IconChatInfoSharpFilled.tsx +++ b/src/IconChatInfoSharpFilled.tsx @@ -8,4 +8,4 @@ const IconChatInfoSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconChatInfoSharpFilled as default } +export default IconChatInfoSharpFilled diff --git a/src/IconChatOutlined.tsx b/src/IconChatOutlined.tsx index 10b1d3293..12f98bbf2 100644 --- a/src/IconChatOutlined.tsx +++ b/src/IconChatOutlined.tsx @@ -8,4 +8,4 @@ const IconChatOutlined: React.FC = ({ ...props }) => ( ) -export { IconChatOutlined as default } +export default IconChatOutlined diff --git a/src/IconChatOutlinedFilled.tsx b/src/IconChatOutlinedFilled.tsx index 57c5bc4a7..87c556b05 100644 --- a/src/IconChatOutlinedFilled.tsx +++ b/src/IconChatOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconChatOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconChatOutlinedFilled as default } +export default IconChatOutlinedFilled diff --git a/src/IconChatPasteGoOutlined.tsx b/src/IconChatPasteGoOutlined.tsx index ea1675c5c..03636d3a4 100644 --- a/src/IconChatPasteGoOutlined.tsx +++ b/src/IconChatPasteGoOutlined.tsx @@ -8,4 +8,4 @@ const IconChatPasteGoOutlined: React.FC = ({ ...props }) => ( ) -export { IconChatPasteGoOutlined as default } +export default IconChatPasteGoOutlined diff --git a/src/IconChatPasteGoOutlinedFilled.tsx b/src/IconChatPasteGoOutlinedFilled.tsx index 6ed4c1ca6..40bf46e42 100644 --- a/src/IconChatPasteGoOutlinedFilled.tsx +++ b/src/IconChatPasteGoOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconChatPasteGoOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconChatPasteGoOutlinedFilled as default } +export default IconChatPasteGoOutlinedFilled diff --git a/src/IconChatPasteGoRounded.tsx b/src/IconChatPasteGoRounded.tsx index 087769f68..d268dff64 100644 --- a/src/IconChatPasteGoRounded.tsx +++ b/src/IconChatPasteGoRounded.tsx @@ -8,4 +8,4 @@ const IconChatPasteGoRounded: React.FC = ({ ...props }) => ( ) -export { IconChatPasteGoRounded as default } +export default IconChatPasteGoRounded diff --git a/src/IconChatPasteGoRoundedFilled.tsx b/src/IconChatPasteGoRoundedFilled.tsx index 81bf26643..a64509f2f 100644 --- a/src/IconChatPasteGoRoundedFilled.tsx +++ b/src/IconChatPasteGoRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconChatPasteGoRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconChatPasteGoRoundedFilled as default } +export default IconChatPasteGoRoundedFilled diff --git a/src/IconChatPasteGoSharp.tsx b/src/IconChatPasteGoSharp.tsx index 30cc52ef7..8415ec6bd 100644 --- a/src/IconChatPasteGoSharp.tsx +++ b/src/IconChatPasteGoSharp.tsx @@ -8,4 +8,4 @@ const IconChatPasteGoSharp: React.FC = ({ ...props }) => ( ) -export { IconChatPasteGoSharp as default } +export default IconChatPasteGoSharp diff --git a/src/IconChatPasteGoSharpFilled.tsx b/src/IconChatPasteGoSharpFilled.tsx index 280dcafb5..5b88864c1 100644 --- a/src/IconChatPasteGoSharpFilled.tsx +++ b/src/IconChatPasteGoSharpFilled.tsx @@ -8,4 +8,4 @@ const IconChatPasteGoSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconChatPasteGoSharpFilled as default } +export default IconChatPasteGoSharpFilled diff --git a/src/IconChatRounded.tsx b/src/IconChatRounded.tsx index b30bbfcad..a23453e21 100644 --- a/src/IconChatRounded.tsx +++ b/src/IconChatRounded.tsx @@ -8,4 +8,4 @@ const IconChatRounded: React.FC = ({ ...props }) => ( ) -export { IconChatRounded as default } +export default IconChatRounded diff --git a/src/IconChatRoundedFilled.tsx b/src/IconChatRoundedFilled.tsx index 68c889799..f46c7fc2d 100644 --- a/src/IconChatRoundedFilled.tsx +++ b/src/IconChatRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconChatRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconChatRoundedFilled as default } +export default IconChatRoundedFilled diff --git a/src/IconChatSharp.tsx b/src/IconChatSharp.tsx index c5a98ef3f..7c4437e68 100644 --- a/src/IconChatSharp.tsx +++ b/src/IconChatSharp.tsx @@ -8,4 +8,4 @@ const IconChatSharp: React.FC = ({ ...props }) => ( ) -export { IconChatSharp as default } +export default IconChatSharp diff --git a/src/IconChatSharpFilled.tsx b/src/IconChatSharpFilled.tsx index 1d586eba2..5426fdd6e 100644 --- a/src/IconChatSharpFilled.tsx +++ b/src/IconChatSharpFilled.tsx @@ -8,4 +8,4 @@ const IconChatSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconChatSharpFilled as default } +export default IconChatSharpFilled diff --git a/src/IconCheckBoxOutlineBlankOutlined.tsx b/src/IconCheckBoxOutlineBlankOutlined.tsx index 0c27bd902..8e27090d5 100644 --- a/src/IconCheckBoxOutlineBlankOutlined.tsx +++ b/src/IconCheckBoxOutlineBlankOutlined.tsx @@ -10,4 +10,4 @@ const IconCheckBoxOutlineBlankOutlined: React.FC = ({ ) -export { IconCheckBoxOutlineBlankOutlined as default } +export default IconCheckBoxOutlineBlankOutlined diff --git a/src/IconCheckBoxOutlineBlankOutlinedFilled.tsx b/src/IconCheckBoxOutlineBlankOutlinedFilled.tsx index 75cd24074..714e41526 100644 --- a/src/IconCheckBoxOutlineBlankOutlinedFilled.tsx +++ b/src/IconCheckBoxOutlineBlankOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconCheckBoxOutlineBlankOutlinedFilled: React.FC = ({ ) -export { IconCheckBoxOutlineBlankOutlinedFilled as default } +export default IconCheckBoxOutlineBlankOutlinedFilled diff --git a/src/IconCheckBoxOutlineBlankRounded.tsx b/src/IconCheckBoxOutlineBlankRounded.tsx index 5c2a9a833..1e44b3627 100644 --- a/src/IconCheckBoxOutlineBlankRounded.tsx +++ b/src/IconCheckBoxOutlineBlankRounded.tsx @@ -8,4 +8,4 @@ const IconCheckBoxOutlineBlankRounded: React.FC = ({ ...props }) => ( ) -export { IconCheckBoxOutlineBlankRounded as default } +export default IconCheckBoxOutlineBlankRounded diff --git a/src/IconCheckBoxOutlineBlankRoundedFilled.tsx b/src/IconCheckBoxOutlineBlankRoundedFilled.tsx index a6be3c282..67d5a4fbb 100644 --- a/src/IconCheckBoxOutlineBlankRoundedFilled.tsx +++ b/src/IconCheckBoxOutlineBlankRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconCheckBoxOutlineBlankRoundedFilled: React.FC = ({ ) -export { IconCheckBoxOutlineBlankRoundedFilled as default } +export default IconCheckBoxOutlineBlankRoundedFilled diff --git a/src/IconCheckBoxOutlineBlankSharp.tsx b/src/IconCheckBoxOutlineBlankSharp.tsx index bb74f460f..397a99239 100644 --- a/src/IconCheckBoxOutlineBlankSharp.tsx +++ b/src/IconCheckBoxOutlineBlankSharp.tsx @@ -8,4 +8,4 @@ const IconCheckBoxOutlineBlankSharp: React.FC = ({ ...props }) => ( ) -export { IconCheckBoxOutlineBlankSharp as default } +export default IconCheckBoxOutlineBlankSharp diff --git a/src/IconCheckBoxOutlineBlankSharpFilled.tsx b/src/IconCheckBoxOutlineBlankSharpFilled.tsx index 67adb856f..eab89c059 100644 --- a/src/IconCheckBoxOutlineBlankSharpFilled.tsx +++ b/src/IconCheckBoxOutlineBlankSharpFilled.tsx @@ -10,4 +10,4 @@ const IconCheckBoxOutlineBlankSharpFilled: React.FC = ({ ) -export { IconCheckBoxOutlineBlankSharpFilled as default } +export default IconCheckBoxOutlineBlankSharpFilled diff --git a/src/IconCheckBoxOutlined.tsx b/src/IconCheckBoxOutlined.tsx index 73481c5d7..7e9c80844 100644 --- a/src/IconCheckBoxOutlined.tsx +++ b/src/IconCheckBoxOutlined.tsx @@ -8,4 +8,4 @@ const IconCheckBoxOutlined: React.FC = ({ ...props }) => ( ) -export { IconCheckBoxOutlined as default } +export default IconCheckBoxOutlined diff --git a/src/IconCheckBoxOutlinedFilled.tsx b/src/IconCheckBoxOutlinedFilled.tsx index 80de889c6..a4f745e61 100644 --- a/src/IconCheckBoxOutlinedFilled.tsx +++ b/src/IconCheckBoxOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconCheckBoxOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconCheckBoxOutlinedFilled as default } +export default IconCheckBoxOutlinedFilled diff --git a/src/IconCheckBoxRounded.tsx b/src/IconCheckBoxRounded.tsx index f44f002a2..b7801de8b 100644 --- a/src/IconCheckBoxRounded.tsx +++ b/src/IconCheckBoxRounded.tsx @@ -8,4 +8,4 @@ const IconCheckBoxRounded: React.FC = ({ ...props }) => ( ) -export { IconCheckBoxRounded as default } +export default IconCheckBoxRounded diff --git a/src/IconCheckBoxRoundedFilled.tsx b/src/IconCheckBoxRoundedFilled.tsx index 016b000f3..b0b746823 100644 --- a/src/IconCheckBoxRoundedFilled.tsx +++ b/src/IconCheckBoxRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconCheckBoxRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconCheckBoxRoundedFilled as default } +export default IconCheckBoxRoundedFilled diff --git a/src/IconCheckBoxSharp.tsx b/src/IconCheckBoxSharp.tsx index 50fda8816..69c4f4ea4 100644 --- a/src/IconCheckBoxSharp.tsx +++ b/src/IconCheckBoxSharp.tsx @@ -8,4 +8,4 @@ const IconCheckBoxSharp: React.FC = ({ ...props }) => ( ) -export { IconCheckBoxSharp as default } +export default IconCheckBoxSharp diff --git a/src/IconCheckBoxSharpFilled.tsx b/src/IconCheckBoxSharpFilled.tsx index 4508c1fef..f6b83bd64 100644 --- a/src/IconCheckBoxSharpFilled.tsx +++ b/src/IconCheckBoxSharpFilled.tsx @@ -8,4 +8,4 @@ const IconCheckBoxSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconCheckBoxSharpFilled as default } +export default IconCheckBoxSharpFilled diff --git a/src/IconCheckCircleOutlined.tsx b/src/IconCheckCircleOutlined.tsx index 3bad76c13..aff1f7b5d 100644 --- a/src/IconCheckCircleOutlined.tsx +++ b/src/IconCheckCircleOutlined.tsx @@ -8,4 +8,4 @@ const IconCheckCircleOutlined: React.FC = ({ ...props }) => ( ) -export { IconCheckCircleOutlined as default } +export default IconCheckCircleOutlined diff --git a/src/IconCheckCircleOutlinedFilled.tsx b/src/IconCheckCircleOutlinedFilled.tsx index 8a3e9f626..8bdf8c58e 100644 --- a/src/IconCheckCircleOutlinedFilled.tsx +++ b/src/IconCheckCircleOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconCheckCircleOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconCheckCircleOutlinedFilled as default } +export default IconCheckCircleOutlinedFilled diff --git a/src/IconCheckCircleRounded.tsx b/src/IconCheckCircleRounded.tsx index 4bdef4d1b..9ece139d7 100644 --- a/src/IconCheckCircleRounded.tsx +++ b/src/IconCheckCircleRounded.tsx @@ -8,4 +8,4 @@ const IconCheckCircleRounded: React.FC = ({ ...props }) => ( ) -export { IconCheckCircleRounded as default } +export default IconCheckCircleRounded diff --git a/src/IconCheckCircleRoundedFilled.tsx b/src/IconCheckCircleRoundedFilled.tsx index efc34733b..64ff69128 100644 --- a/src/IconCheckCircleRoundedFilled.tsx +++ b/src/IconCheckCircleRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconCheckCircleRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconCheckCircleRoundedFilled as default } +export default IconCheckCircleRoundedFilled diff --git a/src/IconCheckCircleSharp.tsx b/src/IconCheckCircleSharp.tsx index acc48849a..d929fea1a 100644 --- a/src/IconCheckCircleSharp.tsx +++ b/src/IconCheckCircleSharp.tsx @@ -8,4 +8,4 @@ const IconCheckCircleSharp: React.FC = ({ ...props }) => ( ) -export { IconCheckCircleSharp as default } +export default IconCheckCircleSharp diff --git a/src/IconCheckCircleSharpFilled.tsx b/src/IconCheckCircleSharpFilled.tsx index cf39d6f4e..d0906f280 100644 --- a/src/IconCheckCircleSharpFilled.tsx +++ b/src/IconCheckCircleSharpFilled.tsx @@ -8,4 +8,4 @@ const IconCheckCircleSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconCheckCircleSharpFilled as default } +export default IconCheckCircleSharpFilled diff --git a/src/IconCheckInOutOutlined.tsx b/src/IconCheckInOutOutlined.tsx index d46cd52c9..2f0b21c91 100644 --- a/src/IconCheckInOutOutlined.tsx +++ b/src/IconCheckInOutOutlined.tsx @@ -8,4 +8,4 @@ const IconCheckInOutOutlined: React.FC = ({ ...props }) => ( ) -export { IconCheckInOutOutlined as default } +export default IconCheckInOutOutlined diff --git a/src/IconCheckInOutOutlinedFilled.tsx b/src/IconCheckInOutOutlinedFilled.tsx index 5ed6d4713..83a13c9ca 100644 --- a/src/IconCheckInOutOutlinedFilled.tsx +++ b/src/IconCheckInOutOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconCheckInOutOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconCheckInOutOutlinedFilled as default } +export default IconCheckInOutOutlinedFilled diff --git a/src/IconCheckInOutRounded.tsx b/src/IconCheckInOutRounded.tsx index 3cebd3abf..927babab9 100644 --- a/src/IconCheckInOutRounded.tsx +++ b/src/IconCheckInOutRounded.tsx @@ -8,4 +8,4 @@ const IconCheckInOutRounded: React.FC = ({ ...props }) => ( ) -export { IconCheckInOutRounded as default } +export default IconCheckInOutRounded diff --git a/src/IconCheckInOutRoundedFilled.tsx b/src/IconCheckInOutRoundedFilled.tsx index 06546b5d9..60de4cb36 100644 --- a/src/IconCheckInOutRoundedFilled.tsx +++ b/src/IconCheckInOutRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconCheckInOutRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconCheckInOutRoundedFilled as default } +export default IconCheckInOutRoundedFilled diff --git a/src/IconCheckInOutSharp.tsx b/src/IconCheckInOutSharp.tsx index 17ac661cd..6949e3ca9 100644 --- a/src/IconCheckInOutSharp.tsx +++ b/src/IconCheckInOutSharp.tsx @@ -8,4 +8,4 @@ const IconCheckInOutSharp: React.FC = ({ ...props }) => ( ) -export { IconCheckInOutSharp as default } +export default IconCheckInOutSharp diff --git a/src/IconCheckInOutSharpFilled.tsx b/src/IconCheckInOutSharpFilled.tsx index 0e78891f1..bb10522af 100644 --- a/src/IconCheckInOutSharpFilled.tsx +++ b/src/IconCheckInOutSharpFilled.tsx @@ -8,4 +8,4 @@ const IconCheckInOutSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconCheckInOutSharpFilled as default } +export default IconCheckInOutSharpFilled diff --git a/src/IconCheckIndeterminateSmallOutlined.tsx b/src/IconCheckIndeterminateSmallOutlined.tsx index 3942841b1..5056539df 100644 --- a/src/IconCheckIndeterminateSmallOutlined.tsx +++ b/src/IconCheckIndeterminateSmallOutlined.tsx @@ -10,4 +10,4 @@ const IconCheckIndeterminateSmallOutlined: React.FC = ({ ) -export { IconCheckIndeterminateSmallOutlined as default } +export default IconCheckIndeterminateSmallOutlined diff --git a/src/IconCheckIndeterminateSmallOutlinedFilled.tsx b/src/IconCheckIndeterminateSmallOutlinedFilled.tsx index 07f9efaf7..1c745eb6b 100644 --- a/src/IconCheckIndeterminateSmallOutlinedFilled.tsx +++ b/src/IconCheckIndeterminateSmallOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconCheckIndeterminateSmallOutlinedFilled: React.FC = ({ ) -export { IconCheckIndeterminateSmallOutlinedFilled as default } +export default IconCheckIndeterminateSmallOutlinedFilled diff --git a/src/IconCheckIndeterminateSmallRounded.tsx b/src/IconCheckIndeterminateSmallRounded.tsx index 7f9635b84..c12564f07 100644 --- a/src/IconCheckIndeterminateSmallRounded.tsx +++ b/src/IconCheckIndeterminateSmallRounded.tsx @@ -10,4 +10,4 @@ const IconCheckIndeterminateSmallRounded: React.FC = ({ ) -export { IconCheckIndeterminateSmallRounded as default } +export default IconCheckIndeterminateSmallRounded diff --git a/src/IconCheckIndeterminateSmallRoundedFilled.tsx b/src/IconCheckIndeterminateSmallRoundedFilled.tsx index 2ba05f6c6..2dbb70723 100644 --- a/src/IconCheckIndeterminateSmallRoundedFilled.tsx +++ b/src/IconCheckIndeterminateSmallRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconCheckIndeterminateSmallRoundedFilled: React.FC = ({ ) -export { IconCheckIndeterminateSmallRoundedFilled as default } +export default IconCheckIndeterminateSmallRoundedFilled diff --git a/src/IconCheckIndeterminateSmallSharp.tsx b/src/IconCheckIndeterminateSmallSharp.tsx index 9294255c3..daa8019cc 100644 --- a/src/IconCheckIndeterminateSmallSharp.tsx +++ b/src/IconCheckIndeterminateSmallSharp.tsx @@ -10,4 +10,4 @@ const IconCheckIndeterminateSmallSharp: React.FC = ({ ) -export { IconCheckIndeterminateSmallSharp as default } +export default IconCheckIndeterminateSmallSharp diff --git a/src/IconCheckIndeterminateSmallSharpFilled.tsx b/src/IconCheckIndeterminateSmallSharpFilled.tsx index 0c802ad07..b1323f1a2 100644 --- a/src/IconCheckIndeterminateSmallSharpFilled.tsx +++ b/src/IconCheckIndeterminateSmallSharpFilled.tsx @@ -10,4 +10,4 @@ const IconCheckIndeterminateSmallSharpFilled: React.FC = ({ ) -export { IconCheckIndeterminateSmallSharpFilled as default } +export default IconCheckIndeterminateSmallSharpFilled diff --git a/src/IconCheckOutlined.tsx b/src/IconCheckOutlined.tsx index fdece2368..0a092a5f8 100644 --- a/src/IconCheckOutlined.tsx +++ b/src/IconCheckOutlined.tsx @@ -8,4 +8,4 @@ const IconCheckOutlined: React.FC = ({ ...props }) => ( ) -export { IconCheckOutlined as default } +export default IconCheckOutlined diff --git a/src/IconCheckOutlinedFilled.tsx b/src/IconCheckOutlinedFilled.tsx index 4f4407c3e..fd0f7c33d 100644 --- a/src/IconCheckOutlinedFilled.tsx +++ b/src/IconCheckOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconCheckOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconCheckOutlinedFilled as default } +export default IconCheckOutlinedFilled diff --git a/src/IconCheckRounded.tsx b/src/IconCheckRounded.tsx index 02efb4d37..7b592c242 100644 --- a/src/IconCheckRounded.tsx +++ b/src/IconCheckRounded.tsx @@ -8,4 +8,4 @@ const IconCheckRounded: React.FC = ({ ...props }) => ( ) -export { IconCheckRounded as default } +export default IconCheckRounded diff --git a/src/IconCheckRoundedFilled.tsx b/src/IconCheckRoundedFilled.tsx index c1d2726cf..8b054b31a 100644 --- a/src/IconCheckRoundedFilled.tsx +++ b/src/IconCheckRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconCheckRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconCheckRoundedFilled as default } +export default IconCheckRoundedFilled diff --git a/src/IconCheckSharp.tsx b/src/IconCheckSharp.tsx index 9112ef8db..dbe58a4c0 100644 --- a/src/IconCheckSharp.tsx +++ b/src/IconCheckSharp.tsx @@ -8,4 +8,4 @@ const IconCheckSharp: React.FC = ({ ...props }) => ( ) -export { IconCheckSharp as default } +export default IconCheckSharp diff --git a/src/IconCheckSharpFilled.tsx b/src/IconCheckSharpFilled.tsx index 699ab35df..948c40b95 100644 --- a/src/IconCheckSharpFilled.tsx +++ b/src/IconCheckSharpFilled.tsx @@ -8,4 +8,4 @@ const IconCheckSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconCheckSharpFilled as default } +export default IconCheckSharpFilled diff --git a/src/IconCheckSmallOutlined.tsx b/src/IconCheckSmallOutlined.tsx index 526197789..c79a52eef 100644 --- a/src/IconCheckSmallOutlined.tsx +++ b/src/IconCheckSmallOutlined.tsx @@ -8,4 +8,4 @@ const IconCheckSmallOutlined: React.FC = ({ ...props }) => ( ) -export { IconCheckSmallOutlined as default } +export default IconCheckSmallOutlined diff --git a/src/IconCheckSmallOutlinedFilled.tsx b/src/IconCheckSmallOutlinedFilled.tsx index a856bc996..b9abcad94 100644 --- a/src/IconCheckSmallOutlinedFilled.tsx +++ b/src/IconCheckSmallOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconCheckSmallOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconCheckSmallOutlinedFilled as default } +export default IconCheckSmallOutlinedFilled diff --git a/src/IconCheckSmallRounded.tsx b/src/IconCheckSmallRounded.tsx index 053b57604..002412050 100644 --- a/src/IconCheckSmallRounded.tsx +++ b/src/IconCheckSmallRounded.tsx @@ -8,4 +8,4 @@ const IconCheckSmallRounded: React.FC = ({ ...props }) => ( ) -export { IconCheckSmallRounded as default } +export default IconCheckSmallRounded diff --git a/src/IconCheckSmallRoundedFilled.tsx b/src/IconCheckSmallRoundedFilled.tsx index 3a2a1594c..cd67cf07b 100644 --- a/src/IconCheckSmallRoundedFilled.tsx +++ b/src/IconCheckSmallRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconCheckSmallRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconCheckSmallRoundedFilled as default } +export default IconCheckSmallRoundedFilled diff --git a/src/IconCheckSmallSharp.tsx b/src/IconCheckSmallSharp.tsx index cf86903f3..a6783290b 100644 --- a/src/IconCheckSmallSharp.tsx +++ b/src/IconCheckSmallSharp.tsx @@ -8,4 +8,4 @@ const IconCheckSmallSharp: React.FC = ({ ...props }) => ( ) -export { IconCheckSmallSharp as default } +export default IconCheckSmallSharp diff --git a/src/IconCheckSmallSharpFilled.tsx b/src/IconCheckSmallSharpFilled.tsx index f7704f7dc..c3a5c503a 100644 --- a/src/IconCheckSmallSharpFilled.tsx +++ b/src/IconCheckSmallSharpFilled.tsx @@ -8,4 +8,4 @@ const IconCheckSmallSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconCheckSmallSharpFilled as default } +export default IconCheckSmallSharpFilled diff --git a/src/IconCheckbookOutlined.tsx b/src/IconCheckbookOutlined.tsx index 5ab4b5412..52873895a 100644 --- a/src/IconCheckbookOutlined.tsx +++ b/src/IconCheckbookOutlined.tsx @@ -8,4 +8,4 @@ const IconCheckbookOutlined: React.FC = ({ ...props }) => ( ) -export { IconCheckbookOutlined as default } +export default IconCheckbookOutlined diff --git a/src/IconCheckbookOutlinedFilled.tsx b/src/IconCheckbookOutlinedFilled.tsx index 42fc7d23b..2307b4286 100644 --- a/src/IconCheckbookOutlinedFilled.tsx +++ b/src/IconCheckbookOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconCheckbookOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconCheckbookOutlinedFilled as default } +export default IconCheckbookOutlinedFilled diff --git a/src/IconCheckbookRounded.tsx b/src/IconCheckbookRounded.tsx index ef2591652..e66cf7c8b 100644 --- a/src/IconCheckbookRounded.tsx +++ b/src/IconCheckbookRounded.tsx @@ -8,4 +8,4 @@ const IconCheckbookRounded: React.FC = ({ ...props }) => ( ) -export { IconCheckbookRounded as default } +export default IconCheckbookRounded diff --git a/src/IconCheckbookRoundedFilled.tsx b/src/IconCheckbookRoundedFilled.tsx index a8d2bdc7b..4e1157444 100644 --- a/src/IconCheckbookRoundedFilled.tsx +++ b/src/IconCheckbookRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconCheckbookRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconCheckbookRoundedFilled as default } +export default IconCheckbookRoundedFilled diff --git a/src/IconCheckbookSharp.tsx b/src/IconCheckbookSharp.tsx index a5500fc80..3f91efa10 100644 --- a/src/IconCheckbookSharp.tsx +++ b/src/IconCheckbookSharp.tsx @@ -8,4 +8,4 @@ const IconCheckbookSharp: React.FC = ({ ...props }) => ( ) -export { IconCheckbookSharp as default } +export default IconCheckbookSharp diff --git a/src/IconCheckbookSharpFilled.tsx b/src/IconCheckbookSharpFilled.tsx index a110ebb01..2efd0564c 100644 --- a/src/IconCheckbookSharpFilled.tsx +++ b/src/IconCheckbookSharpFilled.tsx @@ -8,4 +8,4 @@ const IconCheckbookSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconCheckbookSharpFilled as default } +export default IconCheckbookSharpFilled diff --git a/src/IconCheckedBagOutlined.tsx b/src/IconCheckedBagOutlined.tsx index 85b1a82c9..bf5347a7e 100644 --- a/src/IconCheckedBagOutlined.tsx +++ b/src/IconCheckedBagOutlined.tsx @@ -8,4 +8,4 @@ const IconCheckedBagOutlined: React.FC = ({ ...props }) => ( ) -export { IconCheckedBagOutlined as default } +export default IconCheckedBagOutlined diff --git a/src/IconCheckedBagOutlinedFilled.tsx b/src/IconCheckedBagOutlinedFilled.tsx index 215a48f2e..c36662921 100644 --- a/src/IconCheckedBagOutlinedFilled.tsx +++ b/src/IconCheckedBagOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconCheckedBagOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconCheckedBagOutlinedFilled as default } +export default IconCheckedBagOutlinedFilled diff --git a/src/IconCheckedBagQuestionOutlined.tsx b/src/IconCheckedBagQuestionOutlined.tsx index af0e1a766..49a67e71c 100644 --- a/src/IconCheckedBagQuestionOutlined.tsx +++ b/src/IconCheckedBagQuestionOutlined.tsx @@ -8,4 +8,4 @@ const IconCheckedBagQuestionOutlined: React.FC = ({ ...props }) => ( ) -export { IconCheckedBagQuestionOutlined as default } +export default IconCheckedBagQuestionOutlined diff --git a/src/IconCheckedBagQuestionOutlinedFilled.tsx b/src/IconCheckedBagQuestionOutlinedFilled.tsx index 5004c2395..2824c8fe9 100644 --- a/src/IconCheckedBagQuestionOutlinedFilled.tsx +++ b/src/IconCheckedBagQuestionOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconCheckedBagQuestionOutlinedFilled: React.FC = ({ ) -export { IconCheckedBagQuestionOutlinedFilled as default } +export default IconCheckedBagQuestionOutlinedFilled diff --git a/src/IconCheckedBagQuestionRounded.tsx b/src/IconCheckedBagQuestionRounded.tsx index a7537fe91..b0bb4ab08 100644 --- a/src/IconCheckedBagQuestionRounded.tsx +++ b/src/IconCheckedBagQuestionRounded.tsx @@ -8,4 +8,4 @@ const IconCheckedBagQuestionRounded: React.FC = ({ ...props }) => ( ) -export { IconCheckedBagQuestionRounded as default } +export default IconCheckedBagQuestionRounded diff --git a/src/IconCheckedBagQuestionRoundedFilled.tsx b/src/IconCheckedBagQuestionRoundedFilled.tsx index 258709e9d..033272527 100644 --- a/src/IconCheckedBagQuestionRoundedFilled.tsx +++ b/src/IconCheckedBagQuestionRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconCheckedBagQuestionRoundedFilled: React.FC = ({ ) -export { IconCheckedBagQuestionRoundedFilled as default } +export default IconCheckedBagQuestionRoundedFilled diff --git a/src/IconCheckedBagQuestionSharp.tsx b/src/IconCheckedBagQuestionSharp.tsx index 4cd644ff7..d2bf9dcec 100644 --- a/src/IconCheckedBagQuestionSharp.tsx +++ b/src/IconCheckedBagQuestionSharp.tsx @@ -8,4 +8,4 @@ const IconCheckedBagQuestionSharp: React.FC = ({ ...props }) => ( ) -export { IconCheckedBagQuestionSharp as default } +export default IconCheckedBagQuestionSharp diff --git a/src/IconCheckedBagQuestionSharpFilled.tsx b/src/IconCheckedBagQuestionSharpFilled.tsx index 1340d97b3..288d68862 100644 --- a/src/IconCheckedBagQuestionSharpFilled.tsx +++ b/src/IconCheckedBagQuestionSharpFilled.tsx @@ -10,4 +10,4 @@ const IconCheckedBagQuestionSharpFilled: React.FC = ({ ) -export { IconCheckedBagQuestionSharpFilled as default } +export default IconCheckedBagQuestionSharpFilled diff --git a/src/IconCheckedBagRounded.tsx b/src/IconCheckedBagRounded.tsx index 234dbaecf..5413cff25 100644 --- a/src/IconCheckedBagRounded.tsx +++ b/src/IconCheckedBagRounded.tsx @@ -8,4 +8,4 @@ const IconCheckedBagRounded: React.FC = ({ ...props }) => ( ) -export { IconCheckedBagRounded as default } +export default IconCheckedBagRounded diff --git a/src/IconCheckedBagRoundedFilled.tsx b/src/IconCheckedBagRoundedFilled.tsx index f7919a16c..cb70f2a70 100644 --- a/src/IconCheckedBagRoundedFilled.tsx +++ b/src/IconCheckedBagRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconCheckedBagRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconCheckedBagRoundedFilled as default } +export default IconCheckedBagRoundedFilled diff --git a/src/IconCheckedBagSharp.tsx b/src/IconCheckedBagSharp.tsx index 077f305c7..319752d72 100644 --- a/src/IconCheckedBagSharp.tsx +++ b/src/IconCheckedBagSharp.tsx @@ -8,4 +8,4 @@ const IconCheckedBagSharp: React.FC = ({ ...props }) => ( ) -export { IconCheckedBagSharp as default } +export default IconCheckedBagSharp diff --git a/src/IconCheckedBagSharpFilled.tsx b/src/IconCheckedBagSharpFilled.tsx index fb733874c..f376828fc 100644 --- a/src/IconCheckedBagSharpFilled.tsx +++ b/src/IconCheckedBagSharpFilled.tsx @@ -8,4 +8,4 @@ const IconCheckedBagSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconCheckedBagSharpFilled as default } +export default IconCheckedBagSharpFilled diff --git a/src/IconChecklistOutlined.tsx b/src/IconChecklistOutlined.tsx index cad52759a..f6d5413b8 100644 --- a/src/IconChecklistOutlined.tsx +++ b/src/IconChecklistOutlined.tsx @@ -8,4 +8,4 @@ const IconChecklistOutlined: React.FC = ({ ...props }) => ( ) -export { IconChecklistOutlined as default } +export default IconChecklistOutlined diff --git a/src/IconChecklistOutlinedFilled.tsx b/src/IconChecklistOutlinedFilled.tsx index e5cb30216..372065e11 100644 --- a/src/IconChecklistOutlinedFilled.tsx +++ b/src/IconChecklistOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconChecklistOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconChecklistOutlinedFilled as default } +export default IconChecklistOutlinedFilled diff --git a/src/IconChecklistRounded.tsx b/src/IconChecklistRounded.tsx index 255a4ba08..57fcd55f3 100644 --- a/src/IconChecklistRounded.tsx +++ b/src/IconChecklistRounded.tsx @@ -8,4 +8,4 @@ const IconChecklistRounded: React.FC = ({ ...props }) => ( ) -export { IconChecklistRounded as default } +export default IconChecklistRounded diff --git a/src/IconChecklistRoundedFilled.tsx b/src/IconChecklistRoundedFilled.tsx index a0e9aaefc..e65a453ab 100644 --- a/src/IconChecklistRoundedFilled.tsx +++ b/src/IconChecklistRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconChecklistRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconChecklistRoundedFilled as default } +export default IconChecklistRoundedFilled diff --git a/src/IconChecklistRtlOutlined.tsx b/src/IconChecklistRtlOutlined.tsx index cc8d7c2ae..5e7525653 100644 --- a/src/IconChecklistRtlOutlined.tsx +++ b/src/IconChecklistRtlOutlined.tsx @@ -8,4 +8,4 @@ const IconChecklistRtlOutlined: React.FC = ({ ...props }) => ( ) -export { IconChecklistRtlOutlined as default } +export default IconChecklistRtlOutlined diff --git a/src/IconChecklistRtlOutlinedFilled.tsx b/src/IconChecklistRtlOutlinedFilled.tsx index 85eefba01..c09596e77 100644 --- a/src/IconChecklistRtlOutlinedFilled.tsx +++ b/src/IconChecklistRtlOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconChecklistRtlOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconChecklistRtlOutlinedFilled as default } +export default IconChecklistRtlOutlinedFilled diff --git a/src/IconChecklistRtlRounded.tsx b/src/IconChecklistRtlRounded.tsx index 02b4f6cfd..44234505f 100644 --- a/src/IconChecklistRtlRounded.tsx +++ b/src/IconChecklistRtlRounded.tsx @@ -8,4 +8,4 @@ const IconChecklistRtlRounded: React.FC = ({ ...props }) => ( ) -export { IconChecklistRtlRounded as default } +export default IconChecklistRtlRounded diff --git a/src/IconChecklistRtlRoundedFilled.tsx b/src/IconChecklistRtlRoundedFilled.tsx index 2a72a655d..349d1f8b5 100644 --- a/src/IconChecklistRtlRoundedFilled.tsx +++ b/src/IconChecklistRtlRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconChecklistRtlRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconChecklistRtlRoundedFilled as default } +export default IconChecklistRtlRoundedFilled diff --git a/src/IconChecklistRtlSharp.tsx b/src/IconChecklistRtlSharp.tsx index 0e1dd9e99..73d704d8b 100644 --- a/src/IconChecklistRtlSharp.tsx +++ b/src/IconChecklistRtlSharp.tsx @@ -8,4 +8,4 @@ const IconChecklistRtlSharp: React.FC = ({ ...props }) => ( ) -export { IconChecklistRtlSharp as default } +export default IconChecklistRtlSharp diff --git a/src/IconChecklistRtlSharpFilled.tsx b/src/IconChecklistRtlSharpFilled.tsx index 7a25f385d..fe306d4e6 100644 --- a/src/IconChecklistRtlSharpFilled.tsx +++ b/src/IconChecklistRtlSharpFilled.tsx @@ -8,4 +8,4 @@ const IconChecklistRtlSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconChecklistRtlSharpFilled as default } +export default IconChecklistRtlSharpFilled diff --git a/src/IconChecklistSharp.tsx b/src/IconChecklistSharp.tsx index 881328135..8f3cebbbf 100644 --- a/src/IconChecklistSharp.tsx +++ b/src/IconChecklistSharp.tsx @@ -8,4 +8,4 @@ const IconChecklistSharp: React.FC = ({ ...props }) => ( ) -export { IconChecklistSharp as default } +export default IconChecklistSharp diff --git a/src/IconChecklistSharpFilled.tsx b/src/IconChecklistSharpFilled.tsx index 592a2dd1e..0e9b03118 100644 --- a/src/IconChecklistSharpFilled.tsx +++ b/src/IconChecklistSharpFilled.tsx @@ -8,4 +8,4 @@ const IconChecklistSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconChecklistSharpFilled as default } +export default IconChecklistSharpFilled diff --git a/src/IconCheckroomOutlined.tsx b/src/IconCheckroomOutlined.tsx index ce486506e..90252f977 100644 --- a/src/IconCheckroomOutlined.tsx +++ b/src/IconCheckroomOutlined.tsx @@ -8,4 +8,4 @@ const IconCheckroomOutlined: React.FC = ({ ...props }) => ( ) -export { IconCheckroomOutlined as default } +export default IconCheckroomOutlined diff --git a/src/IconCheckroomOutlinedFilled.tsx b/src/IconCheckroomOutlinedFilled.tsx index 024903001..7f82baff1 100644 --- a/src/IconCheckroomOutlinedFilled.tsx +++ b/src/IconCheckroomOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconCheckroomOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconCheckroomOutlinedFilled as default } +export default IconCheckroomOutlinedFilled diff --git a/src/IconCheckroomRounded.tsx b/src/IconCheckroomRounded.tsx index cb8279100..0e9fdbf86 100644 --- a/src/IconCheckroomRounded.tsx +++ b/src/IconCheckroomRounded.tsx @@ -8,4 +8,4 @@ const IconCheckroomRounded: React.FC = ({ ...props }) => ( ) -export { IconCheckroomRounded as default } +export default IconCheckroomRounded diff --git a/src/IconCheckroomRoundedFilled.tsx b/src/IconCheckroomRoundedFilled.tsx index 4e5001480..592837d68 100644 --- a/src/IconCheckroomRoundedFilled.tsx +++ b/src/IconCheckroomRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconCheckroomRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconCheckroomRoundedFilled as default } +export default IconCheckroomRoundedFilled diff --git a/src/IconCheckroomSharp.tsx b/src/IconCheckroomSharp.tsx index 56b1bfd75..78af3b310 100644 --- a/src/IconCheckroomSharp.tsx +++ b/src/IconCheckroomSharp.tsx @@ -8,4 +8,4 @@ const IconCheckroomSharp: React.FC = ({ ...props }) => ( ) -export { IconCheckroomSharp as default } +export default IconCheckroomSharp diff --git a/src/IconCheckroomSharpFilled.tsx b/src/IconCheckroomSharpFilled.tsx index 681c00a88..63833ecc1 100644 --- a/src/IconCheckroomSharpFilled.tsx +++ b/src/IconCheckroomSharpFilled.tsx @@ -8,4 +8,4 @@ const IconCheckroomSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconCheckroomSharpFilled as default } +export default IconCheckroomSharpFilled diff --git a/src/IconCheerOutlined.tsx b/src/IconCheerOutlined.tsx index 6d471dc9b..813bd9d2f 100644 --- a/src/IconCheerOutlined.tsx +++ b/src/IconCheerOutlined.tsx @@ -8,4 +8,4 @@ const IconCheerOutlined: React.FC = ({ ...props }) => ( ) -export { IconCheerOutlined as default } +export default IconCheerOutlined diff --git a/src/IconCheerOutlinedFilled.tsx b/src/IconCheerOutlinedFilled.tsx index 3317e9845..b3c982bf8 100644 --- a/src/IconCheerOutlinedFilled.tsx +++ b/src/IconCheerOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconCheerOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconCheerOutlinedFilled as default } +export default IconCheerOutlinedFilled diff --git a/src/IconCheerRounded.tsx b/src/IconCheerRounded.tsx index 8a58dc172..ee9fbc4b5 100644 --- a/src/IconCheerRounded.tsx +++ b/src/IconCheerRounded.tsx @@ -8,4 +8,4 @@ const IconCheerRounded: React.FC = ({ ...props }) => ( ) -export { IconCheerRounded as default } +export default IconCheerRounded diff --git a/src/IconCheerRoundedFilled.tsx b/src/IconCheerRoundedFilled.tsx index b57ef29eb..8f9c4615c 100644 --- a/src/IconCheerRoundedFilled.tsx +++ b/src/IconCheerRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconCheerRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconCheerRoundedFilled as default } +export default IconCheerRoundedFilled diff --git a/src/IconCheerSharp.tsx b/src/IconCheerSharp.tsx index 3104547ea..bc6db51b7 100644 --- a/src/IconCheerSharp.tsx +++ b/src/IconCheerSharp.tsx @@ -8,4 +8,4 @@ const IconCheerSharp: React.FC = ({ ...props }) => ( ) -export { IconCheerSharp as default } +export default IconCheerSharp diff --git a/src/IconCheerSharpFilled.tsx b/src/IconCheerSharpFilled.tsx index ffca63d3b..ba36ee430 100644 --- a/src/IconCheerSharpFilled.tsx +++ b/src/IconCheerSharpFilled.tsx @@ -8,4 +8,4 @@ const IconCheerSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconCheerSharpFilled as default } +export default IconCheerSharpFilled diff --git a/src/IconChessOutlined.tsx b/src/IconChessOutlined.tsx index 042d93968..cd4f44ffb 100644 --- a/src/IconChessOutlined.tsx +++ b/src/IconChessOutlined.tsx @@ -8,4 +8,4 @@ const IconChessOutlined: React.FC = ({ ...props }) => ( ) -export { IconChessOutlined as default } +export default IconChessOutlined diff --git a/src/IconChessOutlinedFilled.tsx b/src/IconChessOutlinedFilled.tsx index f48a6637d..2946af2f2 100644 --- a/src/IconChessOutlinedFilled.tsx +++ b/src/IconChessOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconChessOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconChessOutlinedFilled as default } +export default IconChessOutlinedFilled diff --git a/src/IconChessRounded.tsx b/src/IconChessRounded.tsx index 9f6c4b562..1ae868f3a 100644 --- a/src/IconChessRounded.tsx +++ b/src/IconChessRounded.tsx @@ -8,4 +8,4 @@ const IconChessRounded: React.FC = ({ ...props }) => ( ) -export { IconChessRounded as default } +export default IconChessRounded diff --git a/src/IconChessRoundedFilled.tsx b/src/IconChessRoundedFilled.tsx index 6a3a46507..2874379a2 100644 --- a/src/IconChessRoundedFilled.tsx +++ b/src/IconChessRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconChessRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconChessRoundedFilled as default } +export default IconChessRoundedFilled diff --git a/src/IconChessSharp.tsx b/src/IconChessSharp.tsx index 4b1cf60c4..7b3eb9370 100644 --- a/src/IconChessSharp.tsx +++ b/src/IconChessSharp.tsx @@ -8,4 +8,4 @@ const IconChessSharp: React.FC = ({ ...props }) => ( ) -export { IconChessSharp as default } +export default IconChessSharp diff --git a/src/IconChessSharpFilled.tsx b/src/IconChessSharpFilled.tsx index c6f20facb..7c77fe981 100644 --- a/src/IconChessSharpFilled.tsx +++ b/src/IconChessSharpFilled.tsx @@ -8,4 +8,4 @@ const IconChessSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconChessSharpFilled as default } +export default IconChessSharpFilled diff --git a/src/IconChevronBackwardOutlined.tsx b/src/IconChevronBackwardOutlined.tsx index c55759545..3129e12c0 100644 --- a/src/IconChevronBackwardOutlined.tsx +++ b/src/IconChevronBackwardOutlined.tsx @@ -8,4 +8,4 @@ const IconChevronBackwardOutlined: React.FC = ({ ...props }) => ( ) -export { IconChevronBackwardOutlined as default } +export default IconChevronBackwardOutlined diff --git a/src/IconChevronBackwardOutlinedFilled.tsx b/src/IconChevronBackwardOutlinedFilled.tsx index 5e073112f..455b86e96 100644 --- a/src/IconChevronBackwardOutlinedFilled.tsx +++ b/src/IconChevronBackwardOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconChevronBackwardOutlinedFilled: React.FC = ({ ) -export { IconChevronBackwardOutlinedFilled as default } +export default IconChevronBackwardOutlinedFilled diff --git a/src/IconChevronBackwardRounded.tsx b/src/IconChevronBackwardRounded.tsx index 53f398c9f..9021d044d 100644 --- a/src/IconChevronBackwardRounded.tsx +++ b/src/IconChevronBackwardRounded.tsx @@ -8,4 +8,4 @@ const IconChevronBackwardRounded: React.FC = ({ ...props }) => ( ) -export { IconChevronBackwardRounded as default } +export default IconChevronBackwardRounded diff --git a/src/IconChevronBackwardRoundedFilled.tsx b/src/IconChevronBackwardRoundedFilled.tsx index b16c8e35c..a6fe67445 100644 --- a/src/IconChevronBackwardRoundedFilled.tsx +++ b/src/IconChevronBackwardRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconChevronBackwardRoundedFilled: React.FC = ({ ) -export { IconChevronBackwardRoundedFilled as default } +export default IconChevronBackwardRoundedFilled diff --git a/src/IconChevronBackwardSharp.tsx b/src/IconChevronBackwardSharp.tsx index 248539516..9d381efc5 100644 --- a/src/IconChevronBackwardSharp.tsx +++ b/src/IconChevronBackwardSharp.tsx @@ -8,4 +8,4 @@ const IconChevronBackwardSharp: React.FC = ({ ...props }) => ( ) -export { IconChevronBackwardSharp as default } +export default IconChevronBackwardSharp diff --git a/src/IconChevronBackwardSharpFilled.tsx b/src/IconChevronBackwardSharpFilled.tsx index f33cc095c..5fb2b803f 100644 --- a/src/IconChevronBackwardSharpFilled.tsx +++ b/src/IconChevronBackwardSharpFilled.tsx @@ -8,4 +8,4 @@ const IconChevronBackwardSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconChevronBackwardSharpFilled as default } +export default IconChevronBackwardSharpFilled diff --git a/src/IconChevronForwardOutlined.tsx b/src/IconChevronForwardOutlined.tsx index 05dd232c0..7e9916791 100644 --- a/src/IconChevronForwardOutlined.tsx +++ b/src/IconChevronForwardOutlined.tsx @@ -8,4 +8,4 @@ const IconChevronForwardOutlined: React.FC = ({ ...props }) => ( ) -export { IconChevronForwardOutlined as default } +export default IconChevronForwardOutlined diff --git a/src/IconChevronForwardOutlinedFilled.tsx b/src/IconChevronForwardOutlinedFilled.tsx index a4a294831..43b232b37 100644 --- a/src/IconChevronForwardOutlinedFilled.tsx +++ b/src/IconChevronForwardOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconChevronForwardOutlinedFilled: React.FC = ({ ) -export { IconChevronForwardOutlinedFilled as default } +export default IconChevronForwardOutlinedFilled diff --git a/src/IconChevronForwardRounded.tsx b/src/IconChevronForwardRounded.tsx index d3140366a..39cceffcc 100644 --- a/src/IconChevronForwardRounded.tsx +++ b/src/IconChevronForwardRounded.tsx @@ -8,4 +8,4 @@ const IconChevronForwardRounded: React.FC = ({ ...props }) => ( ) -export { IconChevronForwardRounded as default } +export default IconChevronForwardRounded diff --git a/src/IconChevronForwardRoundedFilled.tsx b/src/IconChevronForwardRoundedFilled.tsx index 9dd3b7935..5d72256a3 100644 --- a/src/IconChevronForwardRoundedFilled.tsx +++ b/src/IconChevronForwardRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconChevronForwardRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconChevronForwardRoundedFilled as default } +export default IconChevronForwardRoundedFilled diff --git a/src/IconChevronForwardSharp.tsx b/src/IconChevronForwardSharp.tsx index 8dc4ce1cf..c09879fe0 100644 --- a/src/IconChevronForwardSharp.tsx +++ b/src/IconChevronForwardSharp.tsx @@ -8,4 +8,4 @@ const IconChevronForwardSharp: React.FC = ({ ...props }) => ( ) -export { IconChevronForwardSharp as default } +export default IconChevronForwardSharp diff --git a/src/IconChevronForwardSharpFilled.tsx b/src/IconChevronForwardSharpFilled.tsx index ab248952e..31152bda6 100644 --- a/src/IconChevronForwardSharpFilled.tsx +++ b/src/IconChevronForwardSharpFilled.tsx @@ -8,4 +8,4 @@ const IconChevronForwardSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconChevronForwardSharpFilled as default } +export default IconChevronForwardSharpFilled diff --git a/src/IconChevronLeftOutlined.tsx b/src/IconChevronLeftOutlined.tsx index 23813823f..8f8666228 100644 --- a/src/IconChevronLeftOutlined.tsx +++ b/src/IconChevronLeftOutlined.tsx @@ -8,4 +8,4 @@ const IconChevronLeftOutlined: React.FC = ({ ...props }) => ( ) -export { IconChevronLeftOutlined as default } +export default IconChevronLeftOutlined diff --git a/src/IconChevronLeftOutlinedFilled.tsx b/src/IconChevronLeftOutlinedFilled.tsx index 1537c5fbf..291e0ad05 100644 --- a/src/IconChevronLeftOutlinedFilled.tsx +++ b/src/IconChevronLeftOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconChevronLeftOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconChevronLeftOutlinedFilled as default } +export default IconChevronLeftOutlinedFilled diff --git a/src/IconChevronLeftRounded.tsx b/src/IconChevronLeftRounded.tsx index 288e5527a..d86036997 100644 --- a/src/IconChevronLeftRounded.tsx +++ b/src/IconChevronLeftRounded.tsx @@ -8,4 +8,4 @@ const IconChevronLeftRounded: React.FC = ({ ...props }) => ( ) -export { IconChevronLeftRounded as default } +export default IconChevronLeftRounded diff --git a/src/IconChevronLeftRoundedFilled.tsx b/src/IconChevronLeftRoundedFilled.tsx index 9b3afcb5d..dca70cafc 100644 --- a/src/IconChevronLeftRoundedFilled.tsx +++ b/src/IconChevronLeftRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconChevronLeftRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconChevronLeftRoundedFilled as default } +export default IconChevronLeftRoundedFilled diff --git a/src/IconChevronLeftSharp.tsx b/src/IconChevronLeftSharp.tsx index 5b855d4fa..9fb5aeb28 100644 --- a/src/IconChevronLeftSharp.tsx +++ b/src/IconChevronLeftSharp.tsx @@ -8,4 +8,4 @@ const IconChevronLeftSharp: React.FC = ({ ...props }) => ( ) -export { IconChevronLeftSharp as default } +export default IconChevronLeftSharp diff --git a/src/IconChevronLeftSharpFilled.tsx b/src/IconChevronLeftSharpFilled.tsx index 9699fdbbb..97cbf7684 100644 --- a/src/IconChevronLeftSharpFilled.tsx +++ b/src/IconChevronLeftSharpFilled.tsx @@ -8,4 +8,4 @@ const IconChevronLeftSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconChevronLeftSharpFilled as default } +export default IconChevronLeftSharpFilled diff --git a/src/IconChevronRightOutlined.tsx b/src/IconChevronRightOutlined.tsx index ebf29a54a..18b41ef4b 100644 --- a/src/IconChevronRightOutlined.tsx +++ b/src/IconChevronRightOutlined.tsx @@ -8,4 +8,4 @@ const IconChevronRightOutlined: React.FC = ({ ...props }) => ( ) -export { IconChevronRightOutlined as default } +export default IconChevronRightOutlined diff --git a/src/IconChevronRightOutlinedFilled.tsx b/src/IconChevronRightOutlinedFilled.tsx index 018b95766..7023adce1 100644 --- a/src/IconChevronRightOutlinedFilled.tsx +++ b/src/IconChevronRightOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconChevronRightOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconChevronRightOutlinedFilled as default } +export default IconChevronRightOutlinedFilled diff --git a/src/IconChevronRightRounded.tsx b/src/IconChevronRightRounded.tsx index b4553b323..a7d61e544 100644 --- a/src/IconChevronRightRounded.tsx +++ b/src/IconChevronRightRounded.tsx @@ -8,4 +8,4 @@ const IconChevronRightRounded: React.FC = ({ ...props }) => ( ) -export { IconChevronRightRounded as default } +export default IconChevronRightRounded diff --git a/src/IconChevronRightRoundedFilled.tsx b/src/IconChevronRightRoundedFilled.tsx index c16d9aa30..198b6c6ad 100644 --- a/src/IconChevronRightRoundedFilled.tsx +++ b/src/IconChevronRightRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconChevronRightRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconChevronRightRoundedFilled as default } +export default IconChevronRightRoundedFilled diff --git a/src/IconChevronRightSharp.tsx b/src/IconChevronRightSharp.tsx index 985b5d788..319368768 100644 --- a/src/IconChevronRightSharp.tsx +++ b/src/IconChevronRightSharp.tsx @@ -8,4 +8,4 @@ const IconChevronRightSharp: React.FC = ({ ...props }) => ( ) -export { IconChevronRightSharp as default } +export default IconChevronRightSharp diff --git a/src/IconChevronRightSharpFilled.tsx b/src/IconChevronRightSharpFilled.tsx index 30106f87c..11f28d574 100644 --- a/src/IconChevronRightSharpFilled.tsx +++ b/src/IconChevronRightSharpFilled.tsx @@ -8,4 +8,4 @@ const IconChevronRightSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconChevronRightSharpFilled as default } +export default IconChevronRightSharpFilled diff --git a/src/IconChildCareOutlined.tsx b/src/IconChildCareOutlined.tsx index e23e3eab8..4db140bfa 100644 --- a/src/IconChildCareOutlined.tsx +++ b/src/IconChildCareOutlined.tsx @@ -8,4 +8,4 @@ const IconChildCareOutlined: React.FC = ({ ...props }) => ( ) -export { IconChildCareOutlined as default } +export default IconChildCareOutlined diff --git a/src/IconChildCareOutlinedFilled.tsx b/src/IconChildCareOutlinedFilled.tsx index 54f63a1b1..b5ccea839 100644 --- a/src/IconChildCareOutlinedFilled.tsx +++ b/src/IconChildCareOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconChildCareOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconChildCareOutlinedFilled as default } +export default IconChildCareOutlinedFilled diff --git a/src/IconChildCareRounded.tsx b/src/IconChildCareRounded.tsx index 2e77ccee4..60e994f58 100644 --- a/src/IconChildCareRounded.tsx +++ b/src/IconChildCareRounded.tsx @@ -8,4 +8,4 @@ const IconChildCareRounded: React.FC = ({ ...props }) => ( ) -export { IconChildCareRounded as default } +export default IconChildCareRounded diff --git a/src/IconChildCareRoundedFilled.tsx b/src/IconChildCareRoundedFilled.tsx index b5974639f..4b11ab150 100644 --- a/src/IconChildCareRoundedFilled.tsx +++ b/src/IconChildCareRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconChildCareRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconChildCareRoundedFilled as default } +export default IconChildCareRoundedFilled diff --git a/src/IconChildCareSharp.tsx b/src/IconChildCareSharp.tsx index 05980b669..a9c752fc1 100644 --- a/src/IconChildCareSharp.tsx +++ b/src/IconChildCareSharp.tsx @@ -8,4 +8,4 @@ const IconChildCareSharp: React.FC = ({ ...props }) => ( ) -export { IconChildCareSharp as default } +export default IconChildCareSharp diff --git a/src/IconChildCareSharpFilled.tsx b/src/IconChildCareSharpFilled.tsx index e13b6647f..76e616b9d 100644 --- a/src/IconChildCareSharpFilled.tsx +++ b/src/IconChildCareSharpFilled.tsx @@ -8,4 +8,4 @@ const IconChildCareSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconChildCareSharpFilled as default } +export default IconChildCareSharpFilled diff --git a/src/IconChildFriendlyOutlined.tsx b/src/IconChildFriendlyOutlined.tsx index 6744a6650..049eaf3f2 100644 --- a/src/IconChildFriendlyOutlined.tsx +++ b/src/IconChildFriendlyOutlined.tsx @@ -8,4 +8,4 @@ const IconChildFriendlyOutlined: React.FC = ({ ...props }) => ( ) -export { IconChildFriendlyOutlined as default } +export default IconChildFriendlyOutlined diff --git a/src/IconChildFriendlyOutlinedFilled.tsx b/src/IconChildFriendlyOutlinedFilled.tsx index 8505845ea..60bb756e5 100644 --- a/src/IconChildFriendlyOutlinedFilled.tsx +++ b/src/IconChildFriendlyOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconChildFriendlyOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconChildFriendlyOutlinedFilled as default } +export default IconChildFriendlyOutlinedFilled diff --git a/src/IconChildFriendlyRounded.tsx b/src/IconChildFriendlyRounded.tsx index cb0d166f5..332190271 100644 --- a/src/IconChildFriendlyRounded.tsx +++ b/src/IconChildFriendlyRounded.tsx @@ -8,4 +8,4 @@ const IconChildFriendlyRounded: React.FC = ({ ...props }) => ( ) -export { IconChildFriendlyRounded as default } +export default IconChildFriendlyRounded diff --git a/src/IconChildFriendlyRoundedFilled.tsx b/src/IconChildFriendlyRoundedFilled.tsx index f74923b24..e34fee97f 100644 --- a/src/IconChildFriendlyRoundedFilled.tsx +++ b/src/IconChildFriendlyRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconChildFriendlyRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconChildFriendlyRoundedFilled as default } +export default IconChildFriendlyRoundedFilled diff --git a/src/IconChildFriendlySharp.tsx b/src/IconChildFriendlySharp.tsx index d7c1b65c0..8d81c2a6f 100644 --- a/src/IconChildFriendlySharp.tsx +++ b/src/IconChildFriendlySharp.tsx @@ -8,4 +8,4 @@ const IconChildFriendlySharp: React.FC = ({ ...props }) => ( ) -export { IconChildFriendlySharp as default } +export default IconChildFriendlySharp diff --git a/src/IconChildFriendlySharpFilled.tsx b/src/IconChildFriendlySharpFilled.tsx index a8deb6d31..502e4e57d 100644 --- a/src/IconChildFriendlySharpFilled.tsx +++ b/src/IconChildFriendlySharpFilled.tsx @@ -8,4 +8,4 @@ const IconChildFriendlySharpFilled: React.FC = ({ ...props }) => ( ) -export { IconChildFriendlySharpFilled as default } +export default IconChildFriendlySharpFilled diff --git a/src/IconChipExtractionOutlined.tsx b/src/IconChipExtractionOutlined.tsx index 17adc21bb..b36a58b06 100644 --- a/src/IconChipExtractionOutlined.tsx +++ b/src/IconChipExtractionOutlined.tsx @@ -8,4 +8,4 @@ const IconChipExtractionOutlined: React.FC = ({ ...props }) => ( ) -export { IconChipExtractionOutlined as default } +export default IconChipExtractionOutlined diff --git a/src/IconChipExtractionOutlinedFilled.tsx b/src/IconChipExtractionOutlinedFilled.tsx index 191b2010d..84be60a78 100644 --- a/src/IconChipExtractionOutlinedFilled.tsx +++ b/src/IconChipExtractionOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconChipExtractionOutlinedFilled: React.FC = ({ ) -export { IconChipExtractionOutlinedFilled as default } +export default IconChipExtractionOutlinedFilled diff --git a/src/IconChipExtractionRounded.tsx b/src/IconChipExtractionRounded.tsx index d8fcb38e9..3d0f39c6d 100644 --- a/src/IconChipExtractionRounded.tsx +++ b/src/IconChipExtractionRounded.tsx @@ -8,4 +8,4 @@ const IconChipExtractionRounded: React.FC = ({ ...props }) => ( ) -export { IconChipExtractionRounded as default } +export default IconChipExtractionRounded diff --git a/src/IconChipExtractionRoundedFilled.tsx b/src/IconChipExtractionRoundedFilled.tsx index fa9aa10bd..251c6567a 100644 --- a/src/IconChipExtractionRoundedFilled.tsx +++ b/src/IconChipExtractionRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconChipExtractionRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconChipExtractionRoundedFilled as default } +export default IconChipExtractionRoundedFilled diff --git a/src/IconChipExtractionSharp.tsx b/src/IconChipExtractionSharp.tsx index aaab7acb4..c954f5286 100644 --- a/src/IconChipExtractionSharp.tsx +++ b/src/IconChipExtractionSharp.tsx @@ -8,4 +8,4 @@ const IconChipExtractionSharp: React.FC = ({ ...props }) => ( ) -export { IconChipExtractionSharp as default } +export default IconChipExtractionSharp diff --git a/src/IconChipExtractionSharpFilled.tsx b/src/IconChipExtractionSharpFilled.tsx index 410e6fd91..ca2f3d1d2 100644 --- a/src/IconChipExtractionSharpFilled.tsx +++ b/src/IconChipExtractionSharpFilled.tsx @@ -8,4 +8,4 @@ const IconChipExtractionSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconChipExtractionSharpFilled as default } +export default IconChipExtractionSharpFilled diff --git a/src/IconChipsOutlined.tsx b/src/IconChipsOutlined.tsx index 14c3bbbf4..aeeefa432 100644 --- a/src/IconChipsOutlined.tsx +++ b/src/IconChipsOutlined.tsx @@ -8,4 +8,4 @@ const IconChipsOutlined: React.FC = ({ ...props }) => ( ) -export { IconChipsOutlined as default } +export default IconChipsOutlined diff --git a/src/IconChipsOutlinedFilled.tsx b/src/IconChipsOutlinedFilled.tsx index 793803bcd..88e086603 100644 --- a/src/IconChipsOutlinedFilled.tsx +++ b/src/IconChipsOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconChipsOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconChipsOutlinedFilled as default } +export default IconChipsOutlinedFilled diff --git a/src/IconChipsRounded.tsx b/src/IconChipsRounded.tsx index 3cc8b1f15..e47a3c24f 100644 --- a/src/IconChipsRounded.tsx +++ b/src/IconChipsRounded.tsx @@ -8,4 +8,4 @@ const IconChipsRounded: React.FC = ({ ...props }) => ( ) -export { IconChipsRounded as default } +export default IconChipsRounded diff --git a/src/IconChipsRoundedFilled.tsx b/src/IconChipsRoundedFilled.tsx index 67886abd6..c2f832d2f 100644 --- a/src/IconChipsRoundedFilled.tsx +++ b/src/IconChipsRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconChipsRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconChipsRoundedFilled as default } +export default IconChipsRoundedFilled diff --git a/src/IconChipsSharp.tsx b/src/IconChipsSharp.tsx index d17dcd46b..804f64bc3 100644 --- a/src/IconChipsSharp.tsx +++ b/src/IconChipsSharp.tsx @@ -8,4 +8,4 @@ const IconChipsSharp: React.FC = ({ ...props }) => ( ) -export { IconChipsSharp as default } +export default IconChipsSharp diff --git a/src/IconChipsSharpFilled.tsx b/src/IconChipsSharpFilled.tsx index fd6b9bd3d..67b728bc1 100644 --- a/src/IconChipsSharpFilled.tsx +++ b/src/IconChipsSharpFilled.tsx @@ -8,4 +8,4 @@ const IconChipsSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconChipsSharpFilled as default } +export default IconChipsSharpFilled diff --git a/src/IconChromeReaderModeOutlined.tsx b/src/IconChromeReaderModeOutlined.tsx index 79757a034..ab2536714 100644 --- a/src/IconChromeReaderModeOutlined.tsx +++ b/src/IconChromeReaderModeOutlined.tsx @@ -8,4 +8,4 @@ const IconChromeReaderModeOutlined: React.FC = ({ ...props }) => ( ) -export { IconChromeReaderModeOutlined as default } +export default IconChromeReaderModeOutlined diff --git a/src/IconChromeReaderModeOutlinedFilled.tsx b/src/IconChromeReaderModeOutlinedFilled.tsx index 0e00b80b5..80fcb4cbe 100644 --- a/src/IconChromeReaderModeOutlinedFilled.tsx +++ b/src/IconChromeReaderModeOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconChromeReaderModeOutlinedFilled: React.FC = ({ ) -export { IconChromeReaderModeOutlinedFilled as default } +export default IconChromeReaderModeOutlinedFilled diff --git a/src/IconChromeReaderModeRounded.tsx b/src/IconChromeReaderModeRounded.tsx index 8b9630073..d203bfe68 100644 --- a/src/IconChromeReaderModeRounded.tsx +++ b/src/IconChromeReaderModeRounded.tsx @@ -8,4 +8,4 @@ const IconChromeReaderModeRounded: React.FC = ({ ...props }) => ( ) -export { IconChromeReaderModeRounded as default } +export default IconChromeReaderModeRounded diff --git a/src/IconChromeReaderModeRoundedFilled.tsx b/src/IconChromeReaderModeRoundedFilled.tsx index 2e24c7d9e..b1aa1afd3 100644 --- a/src/IconChromeReaderModeRoundedFilled.tsx +++ b/src/IconChromeReaderModeRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconChromeReaderModeRoundedFilled: React.FC = ({ ) -export { IconChromeReaderModeRoundedFilled as default } +export default IconChromeReaderModeRoundedFilled diff --git a/src/IconChromeReaderModeSharp.tsx b/src/IconChromeReaderModeSharp.tsx index c78318dc4..b0df00834 100644 --- a/src/IconChromeReaderModeSharp.tsx +++ b/src/IconChromeReaderModeSharp.tsx @@ -8,4 +8,4 @@ const IconChromeReaderModeSharp: React.FC = ({ ...props }) => ( ) -export { IconChromeReaderModeSharp as default } +export default IconChromeReaderModeSharp diff --git a/src/IconChromeReaderModeSharpFilled.tsx b/src/IconChromeReaderModeSharpFilled.tsx index 5a3509376..45ccc9725 100644 --- a/src/IconChromeReaderModeSharpFilled.tsx +++ b/src/IconChromeReaderModeSharpFilled.tsx @@ -8,4 +8,4 @@ const IconChromeReaderModeSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconChromeReaderModeSharpFilled as default } +export default IconChromeReaderModeSharpFilled diff --git a/src/IconChromecast2Outlined.tsx b/src/IconChromecast2Outlined.tsx index 544947a68..3411e4c01 100644 --- a/src/IconChromecast2Outlined.tsx +++ b/src/IconChromecast2Outlined.tsx @@ -8,4 +8,4 @@ const IconChromecast2Outlined: React.FC = ({ ...props }) => ( ) -export { IconChromecast2Outlined as default } +export default IconChromecast2Outlined diff --git a/src/IconChromecast2OutlinedFilled.tsx b/src/IconChromecast2OutlinedFilled.tsx index f5ef1520c..f6e7336d5 100644 --- a/src/IconChromecast2OutlinedFilled.tsx +++ b/src/IconChromecast2OutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconChromecast2OutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconChromecast2OutlinedFilled as default } +export default IconChromecast2OutlinedFilled diff --git a/src/IconChromecast2Rounded.tsx b/src/IconChromecast2Rounded.tsx index ed7b0b44c..9516c76d6 100644 --- a/src/IconChromecast2Rounded.tsx +++ b/src/IconChromecast2Rounded.tsx @@ -8,4 +8,4 @@ const IconChromecast2Rounded: React.FC = ({ ...props }) => ( ) -export { IconChromecast2Rounded as default } +export default IconChromecast2Rounded diff --git a/src/IconChromecast2RoundedFilled.tsx b/src/IconChromecast2RoundedFilled.tsx index 3a1a87c12..50f9d694e 100644 --- a/src/IconChromecast2RoundedFilled.tsx +++ b/src/IconChromecast2RoundedFilled.tsx @@ -8,4 +8,4 @@ const IconChromecast2RoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconChromecast2RoundedFilled as default } +export default IconChromecast2RoundedFilled diff --git a/src/IconChromecast2Sharp.tsx b/src/IconChromecast2Sharp.tsx index 944d8ca84..5e66d4a70 100644 --- a/src/IconChromecast2Sharp.tsx +++ b/src/IconChromecast2Sharp.tsx @@ -8,4 +8,4 @@ const IconChromecast2Sharp: React.FC = ({ ...props }) => ( ) -export { IconChromecast2Sharp as default } +export default IconChromecast2Sharp diff --git a/src/IconChromecast2SharpFilled.tsx b/src/IconChromecast2SharpFilled.tsx index e2743a4e4..b44ad58c4 100644 --- a/src/IconChromecast2SharpFilled.tsx +++ b/src/IconChromecast2SharpFilled.tsx @@ -8,4 +8,4 @@ const IconChromecast2SharpFilled: React.FC = ({ ...props }) => ( ) -export { IconChromecast2SharpFilled as default } +export default IconChromecast2SharpFilled diff --git a/src/IconChromecastDeviceOutlined.tsx b/src/IconChromecastDeviceOutlined.tsx index a8cdaee4e..8a59f4bf4 100644 --- a/src/IconChromecastDeviceOutlined.tsx +++ b/src/IconChromecastDeviceOutlined.tsx @@ -8,4 +8,4 @@ const IconChromecastDeviceOutlined: React.FC = ({ ...props }) => ( ) -export { IconChromecastDeviceOutlined as default } +export default IconChromecastDeviceOutlined diff --git a/src/IconChromecastDeviceOutlinedFilled.tsx b/src/IconChromecastDeviceOutlinedFilled.tsx index 928962e06..01ff48694 100644 --- a/src/IconChromecastDeviceOutlinedFilled.tsx +++ b/src/IconChromecastDeviceOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconChromecastDeviceOutlinedFilled: React.FC = ({ ) -export { IconChromecastDeviceOutlinedFilled as default } +export default IconChromecastDeviceOutlinedFilled diff --git a/src/IconChromecastDeviceRounded.tsx b/src/IconChromecastDeviceRounded.tsx index e13710c1a..a19a5dd19 100644 --- a/src/IconChromecastDeviceRounded.tsx +++ b/src/IconChromecastDeviceRounded.tsx @@ -8,4 +8,4 @@ const IconChromecastDeviceRounded: React.FC = ({ ...props }) => ( ) -export { IconChromecastDeviceRounded as default } +export default IconChromecastDeviceRounded diff --git a/src/IconChromecastDeviceRoundedFilled.tsx b/src/IconChromecastDeviceRoundedFilled.tsx index 5a8017ee3..000b158e7 100644 --- a/src/IconChromecastDeviceRoundedFilled.tsx +++ b/src/IconChromecastDeviceRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconChromecastDeviceRoundedFilled: React.FC = ({ ) -export { IconChromecastDeviceRoundedFilled as default } +export default IconChromecastDeviceRoundedFilled diff --git a/src/IconChromecastDeviceSharp.tsx b/src/IconChromecastDeviceSharp.tsx index 48b6210aa..be9557994 100644 --- a/src/IconChromecastDeviceSharp.tsx +++ b/src/IconChromecastDeviceSharp.tsx @@ -8,4 +8,4 @@ const IconChromecastDeviceSharp: React.FC = ({ ...props }) => ( ) -export { IconChromecastDeviceSharp as default } +export default IconChromecastDeviceSharp diff --git a/src/IconChromecastDeviceSharpFilled.tsx b/src/IconChromecastDeviceSharpFilled.tsx index 79cae749b..e20c83713 100644 --- a/src/IconChromecastDeviceSharpFilled.tsx +++ b/src/IconChromecastDeviceSharpFilled.tsx @@ -8,4 +8,4 @@ const IconChromecastDeviceSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconChromecastDeviceSharpFilled as default } +export default IconChromecastDeviceSharpFilled diff --git a/src/IconChronicOutlined.tsx b/src/IconChronicOutlined.tsx index 5cffd5d4e..c52c7314a 100644 --- a/src/IconChronicOutlined.tsx +++ b/src/IconChronicOutlined.tsx @@ -8,4 +8,4 @@ const IconChronicOutlined: React.FC = ({ ...props }) => ( ) -export { IconChronicOutlined as default } +export default IconChronicOutlined diff --git a/src/IconChronicOutlinedFilled.tsx b/src/IconChronicOutlinedFilled.tsx index 0b6a03874..ace06ce02 100644 --- a/src/IconChronicOutlinedFilled.tsx +++ b/src/IconChronicOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconChronicOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconChronicOutlinedFilled as default } +export default IconChronicOutlinedFilled diff --git a/src/IconChronicRounded.tsx b/src/IconChronicRounded.tsx index ce8780612..04f6a3f29 100644 --- a/src/IconChronicRounded.tsx +++ b/src/IconChronicRounded.tsx @@ -8,4 +8,4 @@ const IconChronicRounded: React.FC = ({ ...props }) => ( ) -export { IconChronicRounded as default } +export default IconChronicRounded diff --git a/src/IconChronicRoundedFilled.tsx b/src/IconChronicRoundedFilled.tsx index 8a36e8966..65a4bea68 100644 --- a/src/IconChronicRoundedFilled.tsx +++ b/src/IconChronicRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconChronicRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconChronicRoundedFilled as default } +export default IconChronicRoundedFilled diff --git a/src/IconChronicSharp.tsx b/src/IconChronicSharp.tsx index 65a6c38a1..3c042fc28 100644 --- a/src/IconChronicSharp.tsx +++ b/src/IconChronicSharp.tsx @@ -8,4 +8,4 @@ const IconChronicSharp: React.FC = ({ ...props }) => ( ) -export { IconChronicSharp as default } +export default IconChronicSharp diff --git a/src/IconChronicSharpFilled.tsx b/src/IconChronicSharpFilled.tsx index 91dcc07d8..0c9d03beb 100644 --- a/src/IconChronicSharpFilled.tsx +++ b/src/IconChronicSharpFilled.tsx @@ -8,4 +8,4 @@ const IconChronicSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconChronicSharpFilled as default } +export default IconChronicSharpFilled diff --git a/src/IconChurchOutlined.tsx b/src/IconChurchOutlined.tsx index 305e5078b..c2e51fca0 100644 --- a/src/IconChurchOutlined.tsx +++ b/src/IconChurchOutlined.tsx @@ -8,4 +8,4 @@ const IconChurchOutlined: React.FC = ({ ...props }) => ( ) -export { IconChurchOutlined as default } +export default IconChurchOutlined diff --git a/src/IconChurchOutlinedFilled.tsx b/src/IconChurchOutlinedFilled.tsx index b87d795fe..2f1c30b65 100644 --- a/src/IconChurchOutlinedFilled.tsx +++ b/src/IconChurchOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconChurchOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconChurchOutlinedFilled as default } +export default IconChurchOutlinedFilled diff --git a/src/IconChurchRounded.tsx b/src/IconChurchRounded.tsx index e75bca407..8c2149005 100644 --- a/src/IconChurchRounded.tsx +++ b/src/IconChurchRounded.tsx @@ -8,4 +8,4 @@ const IconChurchRounded: React.FC = ({ ...props }) => ( ) -export { IconChurchRounded as default } +export default IconChurchRounded diff --git a/src/IconChurchRoundedFilled.tsx b/src/IconChurchRoundedFilled.tsx index be7d4a7c0..f35eb0491 100644 --- a/src/IconChurchRoundedFilled.tsx +++ b/src/IconChurchRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconChurchRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconChurchRoundedFilled as default } +export default IconChurchRoundedFilled diff --git a/src/IconChurchSharp.tsx b/src/IconChurchSharp.tsx index fc62383f9..68078515c 100644 --- a/src/IconChurchSharp.tsx +++ b/src/IconChurchSharp.tsx @@ -8,4 +8,4 @@ const IconChurchSharp: React.FC = ({ ...props }) => ( ) -export { IconChurchSharp as default } +export default IconChurchSharp diff --git a/src/IconChurchSharpFilled.tsx b/src/IconChurchSharpFilled.tsx index f2a642736..36a4d4857 100644 --- a/src/IconChurchSharpFilled.tsx +++ b/src/IconChurchSharpFilled.tsx @@ -8,4 +8,4 @@ const IconChurchSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconChurchSharpFilled as default } +export default IconChurchSharpFilled diff --git a/src/IconCinematicBlurOutlined.tsx b/src/IconCinematicBlurOutlined.tsx index a77e6c3e8..cc0e09da9 100644 --- a/src/IconCinematicBlurOutlined.tsx +++ b/src/IconCinematicBlurOutlined.tsx @@ -8,4 +8,4 @@ const IconCinematicBlurOutlined: React.FC = ({ ...props }) => ( ) -export { IconCinematicBlurOutlined as default } +export default IconCinematicBlurOutlined diff --git a/src/IconCinematicBlurOutlinedFilled.tsx b/src/IconCinematicBlurOutlinedFilled.tsx index 4adf4ac95..5e463e827 100644 --- a/src/IconCinematicBlurOutlinedFilled.tsx +++ b/src/IconCinematicBlurOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconCinematicBlurOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconCinematicBlurOutlinedFilled as default } +export default IconCinematicBlurOutlinedFilled diff --git a/src/IconCinematicBlurRounded.tsx b/src/IconCinematicBlurRounded.tsx index 00076323e..abab6b0c1 100644 --- a/src/IconCinematicBlurRounded.tsx +++ b/src/IconCinematicBlurRounded.tsx @@ -8,4 +8,4 @@ const IconCinematicBlurRounded: React.FC = ({ ...props }) => ( ) -export { IconCinematicBlurRounded as default } +export default IconCinematicBlurRounded diff --git a/src/IconCinematicBlurRoundedFilled.tsx b/src/IconCinematicBlurRoundedFilled.tsx index fc8079ee2..1edba7853 100644 --- a/src/IconCinematicBlurRoundedFilled.tsx +++ b/src/IconCinematicBlurRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconCinematicBlurRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconCinematicBlurRoundedFilled as default } +export default IconCinematicBlurRoundedFilled diff --git a/src/IconCinematicBlurSharp.tsx b/src/IconCinematicBlurSharp.tsx index 5350e3655..d05e8dbc5 100644 --- a/src/IconCinematicBlurSharp.tsx +++ b/src/IconCinematicBlurSharp.tsx @@ -8,4 +8,4 @@ const IconCinematicBlurSharp: React.FC = ({ ...props }) => ( ) -export { IconCinematicBlurSharp as default } +export default IconCinematicBlurSharp diff --git a/src/IconCinematicBlurSharpFilled.tsx b/src/IconCinematicBlurSharpFilled.tsx index ef572ef68..1a267c1f4 100644 --- a/src/IconCinematicBlurSharpFilled.tsx +++ b/src/IconCinematicBlurSharpFilled.tsx @@ -8,4 +8,4 @@ const IconCinematicBlurSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconCinematicBlurSharpFilled as default } +export default IconCinematicBlurSharpFilled diff --git a/src/IconCircleNotificationsOutlined.tsx b/src/IconCircleNotificationsOutlined.tsx index 412cf8712..1a64ebe67 100644 --- a/src/IconCircleNotificationsOutlined.tsx +++ b/src/IconCircleNotificationsOutlined.tsx @@ -8,4 +8,4 @@ const IconCircleNotificationsOutlined: React.FC = ({ ...props }) => ( ) -export { IconCircleNotificationsOutlined as default } +export default IconCircleNotificationsOutlined diff --git a/src/IconCircleNotificationsOutlinedFilled.tsx b/src/IconCircleNotificationsOutlinedFilled.tsx index 59e82dabb..55f0d654b 100644 --- a/src/IconCircleNotificationsOutlinedFilled.tsx +++ b/src/IconCircleNotificationsOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconCircleNotificationsOutlinedFilled: React.FC = ({ ) -export { IconCircleNotificationsOutlinedFilled as default } +export default IconCircleNotificationsOutlinedFilled diff --git a/src/IconCircleNotificationsRounded.tsx b/src/IconCircleNotificationsRounded.tsx index 617bde040..0a8c56acf 100644 --- a/src/IconCircleNotificationsRounded.tsx +++ b/src/IconCircleNotificationsRounded.tsx @@ -8,4 +8,4 @@ const IconCircleNotificationsRounded: React.FC = ({ ...props }) => ( ) -export { IconCircleNotificationsRounded as default } +export default IconCircleNotificationsRounded diff --git a/src/IconCircleNotificationsRoundedFilled.tsx b/src/IconCircleNotificationsRoundedFilled.tsx index 3bc866cd8..d3a745dad 100644 --- a/src/IconCircleNotificationsRoundedFilled.tsx +++ b/src/IconCircleNotificationsRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconCircleNotificationsRoundedFilled: React.FC = ({ ) -export { IconCircleNotificationsRoundedFilled as default } +export default IconCircleNotificationsRoundedFilled diff --git a/src/IconCircleNotificationsSharp.tsx b/src/IconCircleNotificationsSharp.tsx index a8d692f18..370fdd83a 100644 --- a/src/IconCircleNotificationsSharp.tsx +++ b/src/IconCircleNotificationsSharp.tsx @@ -8,4 +8,4 @@ const IconCircleNotificationsSharp: React.FC = ({ ...props }) => ( ) -export { IconCircleNotificationsSharp as default } +export default IconCircleNotificationsSharp diff --git a/src/IconCircleNotificationsSharpFilled.tsx b/src/IconCircleNotificationsSharpFilled.tsx index c569230aa..1b147997e 100644 --- a/src/IconCircleNotificationsSharpFilled.tsx +++ b/src/IconCircleNotificationsSharpFilled.tsx @@ -10,4 +10,4 @@ const IconCircleNotificationsSharpFilled: React.FC = ({ ) -export { IconCircleNotificationsSharpFilled as default } +export default IconCircleNotificationsSharpFilled diff --git a/src/IconCircleOutlined.tsx b/src/IconCircleOutlined.tsx index 5e56f381e..c0b5ff17f 100644 --- a/src/IconCircleOutlined.tsx +++ b/src/IconCircleOutlined.tsx @@ -8,4 +8,4 @@ const IconCircleOutlined: React.FC = ({ ...props }) => ( ) -export { IconCircleOutlined as default } +export default IconCircleOutlined diff --git a/src/IconCircleOutlinedFilled.tsx b/src/IconCircleOutlinedFilled.tsx index 73e7fcec1..7eeee2919 100644 --- a/src/IconCircleOutlinedFilled.tsx +++ b/src/IconCircleOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconCircleOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconCircleOutlinedFilled as default } +export default IconCircleOutlinedFilled diff --git a/src/IconCircleRounded.tsx b/src/IconCircleRounded.tsx index 564509f87..f62ced5b4 100644 --- a/src/IconCircleRounded.tsx +++ b/src/IconCircleRounded.tsx @@ -8,4 +8,4 @@ const IconCircleRounded: React.FC = ({ ...props }) => ( ) -export { IconCircleRounded as default } +export default IconCircleRounded diff --git a/src/IconCircleRoundedFilled.tsx b/src/IconCircleRoundedFilled.tsx index 04b30910c..453b5a54b 100644 --- a/src/IconCircleRoundedFilled.tsx +++ b/src/IconCircleRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconCircleRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconCircleRoundedFilled as default } +export default IconCircleRoundedFilled diff --git a/src/IconCircleSharp.tsx b/src/IconCircleSharp.tsx index c740d1ea6..8aea543fa 100644 --- a/src/IconCircleSharp.tsx +++ b/src/IconCircleSharp.tsx @@ -8,4 +8,4 @@ const IconCircleSharp: React.FC = ({ ...props }) => ( ) -export { IconCircleSharp as default } +export default IconCircleSharp diff --git a/src/IconCircleSharpFilled.tsx b/src/IconCircleSharpFilled.tsx index db3823de5..387cb36e0 100644 --- a/src/IconCircleSharpFilled.tsx +++ b/src/IconCircleSharpFilled.tsx @@ -8,4 +8,4 @@ const IconCircleSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconCircleSharpFilled as default } +export default IconCircleSharpFilled diff --git a/src/IconCirclesExtOutlined.tsx b/src/IconCirclesExtOutlined.tsx index 74b5cdf9d..d228a9a2c 100644 --- a/src/IconCirclesExtOutlined.tsx +++ b/src/IconCirclesExtOutlined.tsx @@ -8,4 +8,4 @@ const IconCirclesExtOutlined: React.FC = ({ ...props }) => ( ) -export { IconCirclesExtOutlined as default } +export default IconCirclesExtOutlined diff --git a/src/IconCirclesExtOutlinedFilled.tsx b/src/IconCirclesExtOutlinedFilled.tsx index 42b8c91dc..277174e27 100644 --- a/src/IconCirclesExtOutlinedFilled.tsx +++ b/src/IconCirclesExtOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconCirclesExtOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconCirclesExtOutlinedFilled as default } +export default IconCirclesExtOutlinedFilled diff --git a/src/IconCirclesExtRounded.tsx b/src/IconCirclesExtRounded.tsx index 8c6f639e0..b620988dc 100644 --- a/src/IconCirclesExtRounded.tsx +++ b/src/IconCirclesExtRounded.tsx @@ -8,4 +8,4 @@ const IconCirclesExtRounded: React.FC = ({ ...props }) => ( ) -export { IconCirclesExtRounded as default } +export default IconCirclesExtRounded diff --git a/src/IconCirclesExtRoundedFilled.tsx b/src/IconCirclesExtRoundedFilled.tsx index e0c5aff7d..dadf3b93c 100644 --- a/src/IconCirclesExtRoundedFilled.tsx +++ b/src/IconCirclesExtRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconCirclesExtRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconCirclesExtRoundedFilled as default } +export default IconCirclesExtRoundedFilled diff --git a/src/IconCirclesExtSharp.tsx b/src/IconCirclesExtSharp.tsx index caee63c6c..444e99697 100644 --- a/src/IconCirclesExtSharp.tsx +++ b/src/IconCirclesExtSharp.tsx @@ -8,4 +8,4 @@ const IconCirclesExtSharp: React.FC = ({ ...props }) => ( ) -export { IconCirclesExtSharp as default } +export default IconCirclesExtSharp diff --git a/src/IconCirclesExtSharpFilled.tsx b/src/IconCirclesExtSharpFilled.tsx index 33fbbe1bb..bc8563ac7 100644 --- a/src/IconCirclesExtSharpFilled.tsx +++ b/src/IconCirclesExtSharpFilled.tsx @@ -8,4 +8,4 @@ const IconCirclesExtSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconCirclesExtSharpFilled as default } +export default IconCirclesExtSharpFilled diff --git a/src/IconCirclesOutlined.tsx b/src/IconCirclesOutlined.tsx index b7f893244..5fc90b594 100644 --- a/src/IconCirclesOutlined.tsx +++ b/src/IconCirclesOutlined.tsx @@ -8,4 +8,4 @@ const IconCirclesOutlined: React.FC = ({ ...props }) => ( ) -export { IconCirclesOutlined as default } +export default IconCirclesOutlined diff --git a/src/IconCirclesOutlinedFilled.tsx b/src/IconCirclesOutlinedFilled.tsx index 3ebcaf171..7c9690be4 100644 --- a/src/IconCirclesOutlinedFilled.tsx +++ b/src/IconCirclesOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconCirclesOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconCirclesOutlinedFilled as default } +export default IconCirclesOutlinedFilled diff --git a/src/IconCirclesRounded.tsx b/src/IconCirclesRounded.tsx index 8bb0dbda2..37256a8c0 100644 --- a/src/IconCirclesRounded.tsx +++ b/src/IconCirclesRounded.tsx @@ -8,4 +8,4 @@ const IconCirclesRounded: React.FC = ({ ...props }) => ( ) -export { IconCirclesRounded as default } +export default IconCirclesRounded diff --git a/src/IconCirclesRoundedFilled.tsx b/src/IconCirclesRoundedFilled.tsx index 3c9453b51..b5753dc09 100644 --- a/src/IconCirclesRoundedFilled.tsx +++ b/src/IconCirclesRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconCirclesRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconCirclesRoundedFilled as default } +export default IconCirclesRoundedFilled diff --git a/src/IconCirclesSharp.tsx b/src/IconCirclesSharp.tsx index 826eafed0..f9cede3e9 100644 --- a/src/IconCirclesSharp.tsx +++ b/src/IconCirclesSharp.tsx @@ -8,4 +8,4 @@ const IconCirclesSharp: React.FC = ({ ...props }) => ( ) -export { IconCirclesSharp as default } +export default IconCirclesSharp diff --git a/src/IconCirclesSharpFilled.tsx b/src/IconCirclesSharpFilled.tsx index dc343f9ea..f1bbf3b94 100644 --- a/src/IconCirclesSharpFilled.tsx +++ b/src/IconCirclesSharpFilled.tsx @@ -8,4 +8,4 @@ const IconCirclesSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconCirclesSharpFilled as default } +export default IconCirclesSharpFilled diff --git a/src/IconClarifyOutlined.tsx b/src/IconClarifyOutlined.tsx index 2f668aaff..e7053d461 100644 --- a/src/IconClarifyOutlined.tsx +++ b/src/IconClarifyOutlined.tsx @@ -8,4 +8,4 @@ const IconClarifyOutlined: React.FC = ({ ...props }) => ( ) -export { IconClarifyOutlined as default } +export default IconClarifyOutlined diff --git a/src/IconClarifyOutlinedFilled.tsx b/src/IconClarifyOutlinedFilled.tsx index a35aed262..6bba264c5 100644 --- a/src/IconClarifyOutlinedFilled.tsx +++ b/src/IconClarifyOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconClarifyOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconClarifyOutlinedFilled as default } +export default IconClarifyOutlinedFilled diff --git a/src/IconClarifyRounded.tsx b/src/IconClarifyRounded.tsx index cb3d26d4d..419f936e5 100644 --- a/src/IconClarifyRounded.tsx +++ b/src/IconClarifyRounded.tsx @@ -8,4 +8,4 @@ const IconClarifyRounded: React.FC = ({ ...props }) => ( ) -export { IconClarifyRounded as default } +export default IconClarifyRounded diff --git a/src/IconClarifyRoundedFilled.tsx b/src/IconClarifyRoundedFilled.tsx index 729f6d855..da898ed1f 100644 --- a/src/IconClarifyRoundedFilled.tsx +++ b/src/IconClarifyRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconClarifyRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconClarifyRoundedFilled as default } +export default IconClarifyRoundedFilled diff --git a/src/IconClarifySharp.tsx b/src/IconClarifySharp.tsx index f166fec22..918ae38a3 100644 --- a/src/IconClarifySharp.tsx +++ b/src/IconClarifySharp.tsx @@ -8,4 +8,4 @@ const IconClarifySharp: React.FC = ({ ...props }) => ( ) -export { IconClarifySharp as default } +export default IconClarifySharp diff --git a/src/IconClarifySharpFilled.tsx b/src/IconClarifySharpFilled.tsx index 980934cf8..511e67d8f 100644 --- a/src/IconClarifySharpFilled.tsx +++ b/src/IconClarifySharpFilled.tsx @@ -8,4 +8,4 @@ const IconClarifySharpFilled: React.FC = ({ ...props }) => ( ) -export { IconClarifySharpFilled as default } +export default IconClarifySharpFilled diff --git a/src/IconCleanHandsOutlined.tsx b/src/IconCleanHandsOutlined.tsx index 500859792..3350000a7 100644 --- a/src/IconCleanHandsOutlined.tsx +++ b/src/IconCleanHandsOutlined.tsx @@ -8,4 +8,4 @@ const IconCleanHandsOutlined: React.FC = ({ ...props }) => ( ) -export { IconCleanHandsOutlined as default } +export default IconCleanHandsOutlined diff --git a/src/IconCleanHandsOutlinedFilled.tsx b/src/IconCleanHandsOutlinedFilled.tsx index 9b021530f..dfc96ada2 100644 --- a/src/IconCleanHandsOutlinedFilled.tsx +++ b/src/IconCleanHandsOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconCleanHandsOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconCleanHandsOutlinedFilled as default } +export default IconCleanHandsOutlinedFilled diff --git a/src/IconCleanHandsRounded.tsx b/src/IconCleanHandsRounded.tsx index d589caeb2..3b090e307 100644 --- a/src/IconCleanHandsRounded.tsx +++ b/src/IconCleanHandsRounded.tsx @@ -8,4 +8,4 @@ const IconCleanHandsRounded: React.FC = ({ ...props }) => ( ) -export { IconCleanHandsRounded as default } +export default IconCleanHandsRounded diff --git a/src/IconCleanHandsRoundedFilled.tsx b/src/IconCleanHandsRoundedFilled.tsx index d05621ae5..cec7239e3 100644 --- a/src/IconCleanHandsRoundedFilled.tsx +++ b/src/IconCleanHandsRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconCleanHandsRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconCleanHandsRoundedFilled as default } +export default IconCleanHandsRoundedFilled diff --git a/src/IconCleanHandsSharp.tsx b/src/IconCleanHandsSharp.tsx index 113ff776c..695d72df0 100644 --- a/src/IconCleanHandsSharp.tsx +++ b/src/IconCleanHandsSharp.tsx @@ -8,4 +8,4 @@ const IconCleanHandsSharp: React.FC = ({ ...props }) => ( ) -export { IconCleanHandsSharp as default } +export default IconCleanHandsSharp diff --git a/src/IconCleanHandsSharpFilled.tsx b/src/IconCleanHandsSharpFilled.tsx index 06c6b932f..861d47b9c 100644 --- a/src/IconCleanHandsSharpFilled.tsx +++ b/src/IconCleanHandsSharpFilled.tsx @@ -8,4 +8,4 @@ const IconCleanHandsSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconCleanHandsSharpFilled as default } +export default IconCleanHandsSharpFilled diff --git a/src/IconCleaningBucketOutlined.tsx b/src/IconCleaningBucketOutlined.tsx index 24cbf0cfb..4461bc9e2 100644 --- a/src/IconCleaningBucketOutlined.tsx +++ b/src/IconCleaningBucketOutlined.tsx @@ -8,4 +8,4 @@ const IconCleaningBucketOutlined: React.FC = ({ ...props }) => ( ) -export { IconCleaningBucketOutlined as default } +export default IconCleaningBucketOutlined diff --git a/src/IconCleaningBucketOutlinedFilled.tsx b/src/IconCleaningBucketOutlinedFilled.tsx index ac4504f1a..8e37720e9 100644 --- a/src/IconCleaningBucketOutlinedFilled.tsx +++ b/src/IconCleaningBucketOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconCleaningBucketOutlinedFilled: React.FC = ({ ) -export { IconCleaningBucketOutlinedFilled as default } +export default IconCleaningBucketOutlinedFilled diff --git a/src/IconCleaningBucketRounded.tsx b/src/IconCleaningBucketRounded.tsx index 0ae4a4dd0..a9e32bf3e 100644 --- a/src/IconCleaningBucketRounded.tsx +++ b/src/IconCleaningBucketRounded.tsx @@ -8,4 +8,4 @@ const IconCleaningBucketRounded: React.FC = ({ ...props }) => ( ) -export { IconCleaningBucketRounded as default } +export default IconCleaningBucketRounded diff --git a/src/IconCleaningBucketRoundedFilled.tsx b/src/IconCleaningBucketRoundedFilled.tsx index d86f252ac..fb6f56399 100644 --- a/src/IconCleaningBucketRoundedFilled.tsx +++ b/src/IconCleaningBucketRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconCleaningBucketRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconCleaningBucketRoundedFilled as default } +export default IconCleaningBucketRoundedFilled diff --git a/src/IconCleaningBucketSharp.tsx b/src/IconCleaningBucketSharp.tsx index d02e540c1..ae6b07b7f 100644 --- a/src/IconCleaningBucketSharp.tsx +++ b/src/IconCleaningBucketSharp.tsx @@ -8,4 +8,4 @@ const IconCleaningBucketSharp: React.FC = ({ ...props }) => ( ) -export { IconCleaningBucketSharp as default } +export default IconCleaningBucketSharp diff --git a/src/IconCleaningBucketSharpFilled.tsx b/src/IconCleaningBucketSharpFilled.tsx index 2d7ca8c15..8e68a8903 100644 --- a/src/IconCleaningBucketSharpFilled.tsx +++ b/src/IconCleaningBucketSharpFilled.tsx @@ -8,4 +8,4 @@ const IconCleaningBucketSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconCleaningBucketSharpFilled as default } +export default IconCleaningBucketSharpFilled diff --git a/src/IconCleaningOutlined.tsx b/src/IconCleaningOutlined.tsx index 78517ca51..cccdfd99b 100644 --- a/src/IconCleaningOutlined.tsx +++ b/src/IconCleaningOutlined.tsx @@ -8,4 +8,4 @@ const IconCleaningOutlined: React.FC = ({ ...props }) => ( ) -export { IconCleaningOutlined as default } +export default IconCleaningOutlined diff --git a/src/IconCleaningOutlinedFilled.tsx b/src/IconCleaningOutlinedFilled.tsx index 719ca201c..df237e5f2 100644 --- a/src/IconCleaningOutlinedFilled.tsx +++ b/src/IconCleaningOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconCleaningOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconCleaningOutlinedFilled as default } +export default IconCleaningOutlinedFilled diff --git a/src/IconCleaningRounded.tsx b/src/IconCleaningRounded.tsx index ac7d1432c..0d66f4672 100644 --- a/src/IconCleaningRounded.tsx +++ b/src/IconCleaningRounded.tsx @@ -8,4 +8,4 @@ const IconCleaningRounded: React.FC = ({ ...props }) => ( ) -export { IconCleaningRounded as default } +export default IconCleaningRounded diff --git a/src/IconCleaningRoundedFilled.tsx b/src/IconCleaningRoundedFilled.tsx index ff87ef6e0..df2760767 100644 --- a/src/IconCleaningRoundedFilled.tsx +++ b/src/IconCleaningRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconCleaningRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconCleaningRoundedFilled as default } +export default IconCleaningRoundedFilled diff --git a/src/IconCleaningServicesOutlined.tsx b/src/IconCleaningServicesOutlined.tsx index 33bb4e9a0..b435dea60 100644 --- a/src/IconCleaningServicesOutlined.tsx +++ b/src/IconCleaningServicesOutlined.tsx @@ -8,4 +8,4 @@ const IconCleaningServicesOutlined: React.FC = ({ ...props }) => ( ) -export { IconCleaningServicesOutlined as default } +export default IconCleaningServicesOutlined diff --git a/src/IconCleaningServicesOutlinedFilled.tsx b/src/IconCleaningServicesOutlinedFilled.tsx index e8d0f526e..100b93eb5 100644 --- a/src/IconCleaningServicesOutlinedFilled.tsx +++ b/src/IconCleaningServicesOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconCleaningServicesOutlinedFilled: React.FC = ({ ) -export { IconCleaningServicesOutlinedFilled as default } +export default IconCleaningServicesOutlinedFilled diff --git a/src/IconCleaningServicesRounded.tsx b/src/IconCleaningServicesRounded.tsx index 51ec4de0e..6ca8fdcd7 100644 --- a/src/IconCleaningServicesRounded.tsx +++ b/src/IconCleaningServicesRounded.tsx @@ -8,4 +8,4 @@ const IconCleaningServicesRounded: React.FC = ({ ...props }) => ( ) -export { IconCleaningServicesRounded as default } +export default IconCleaningServicesRounded diff --git a/src/IconCleaningServicesRoundedFilled.tsx b/src/IconCleaningServicesRoundedFilled.tsx index 3b63dcdee..db4b62c3b 100644 --- a/src/IconCleaningServicesRoundedFilled.tsx +++ b/src/IconCleaningServicesRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconCleaningServicesRoundedFilled: React.FC = ({ ) -export { IconCleaningServicesRoundedFilled as default } +export default IconCleaningServicesRoundedFilled diff --git a/src/IconCleaningServicesSharp.tsx b/src/IconCleaningServicesSharp.tsx index 153f323f1..c812d47b9 100644 --- a/src/IconCleaningServicesSharp.tsx +++ b/src/IconCleaningServicesSharp.tsx @@ -8,4 +8,4 @@ const IconCleaningServicesSharp: React.FC = ({ ...props }) => ( ) -export { IconCleaningServicesSharp as default } +export default IconCleaningServicesSharp diff --git a/src/IconCleaningServicesSharpFilled.tsx b/src/IconCleaningServicesSharpFilled.tsx index 8c3054a2e..79e780c3d 100644 --- a/src/IconCleaningServicesSharpFilled.tsx +++ b/src/IconCleaningServicesSharpFilled.tsx @@ -8,4 +8,4 @@ const IconCleaningServicesSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconCleaningServicesSharpFilled as default } +export default IconCleaningServicesSharpFilled diff --git a/src/IconCleaningSharp.tsx b/src/IconCleaningSharp.tsx index edaaecd2c..8a448cf26 100644 --- a/src/IconCleaningSharp.tsx +++ b/src/IconCleaningSharp.tsx @@ -8,4 +8,4 @@ const IconCleaningSharp: React.FC = ({ ...props }) => ( ) -export { IconCleaningSharp as default } +export default IconCleaningSharp diff --git a/src/IconCleaningSharpFilled.tsx b/src/IconCleaningSharpFilled.tsx index f51a738c5..02b73a9dd 100644 --- a/src/IconCleaningSharpFilled.tsx +++ b/src/IconCleaningSharpFilled.tsx @@ -8,4 +8,4 @@ const IconCleaningSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconCleaningSharpFilled as default } +export default IconCleaningSharpFilled diff --git a/src/IconClearAllOutlined.tsx b/src/IconClearAllOutlined.tsx index f6c56277c..f19d6a8d6 100644 --- a/src/IconClearAllOutlined.tsx +++ b/src/IconClearAllOutlined.tsx @@ -8,4 +8,4 @@ const IconClearAllOutlined: React.FC = ({ ...props }) => ( ) -export { IconClearAllOutlined as default } +export default IconClearAllOutlined diff --git a/src/IconClearAllOutlinedFilled.tsx b/src/IconClearAllOutlinedFilled.tsx index 2d02ecbe7..6d937f110 100644 --- a/src/IconClearAllOutlinedFilled.tsx +++ b/src/IconClearAllOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconClearAllOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconClearAllOutlinedFilled as default } +export default IconClearAllOutlinedFilled diff --git a/src/IconClearAllRounded.tsx b/src/IconClearAllRounded.tsx index a36947505..cea3c68e1 100644 --- a/src/IconClearAllRounded.tsx +++ b/src/IconClearAllRounded.tsx @@ -8,4 +8,4 @@ const IconClearAllRounded: React.FC = ({ ...props }) => ( ) -export { IconClearAllRounded as default } +export default IconClearAllRounded diff --git a/src/IconClearAllRoundedFilled.tsx b/src/IconClearAllRoundedFilled.tsx index fff3b0cf3..b3506efe0 100644 --- a/src/IconClearAllRoundedFilled.tsx +++ b/src/IconClearAllRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconClearAllRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconClearAllRoundedFilled as default } +export default IconClearAllRoundedFilled diff --git a/src/IconClearAllSharp.tsx b/src/IconClearAllSharp.tsx index 295be2152..90bc8076e 100644 --- a/src/IconClearAllSharp.tsx +++ b/src/IconClearAllSharp.tsx @@ -8,4 +8,4 @@ const IconClearAllSharp: React.FC = ({ ...props }) => ( ) -export { IconClearAllSharp as default } +export default IconClearAllSharp diff --git a/src/IconClearAllSharpFilled.tsx b/src/IconClearAllSharpFilled.tsx index b3f04b69e..480f63a53 100644 --- a/src/IconClearAllSharpFilled.tsx +++ b/src/IconClearAllSharpFilled.tsx @@ -8,4 +8,4 @@ const IconClearAllSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconClearAllSharpFilled as default } +export default IconClearAllSharpFilled diff --git a/src/IconClearDayOutlined.tsx b/src/IconClearDayOutlined.tsx index 93d548f53..1ccaad860 100644 --- a/src/IconClearDayOutlined.tsx +++ b/src/IconClearDayOutlined.tsx @@ -8,4 +8,4 @@ const IconClearDayOutlined: React.FC = ({ ...props }) => ( ) -export { IconClearDayOutlined as default } +export default IconClearDayOutlined diff --git a/src/IconClearDayOutlinedFilled.tsx b/src/IconClearDayOutlinedFilled.tsx index f723fae04..47a0dfe1b 100644 --- a/src/IconClearDayOutlinedFilled.tsx +++ b/src/IconClearDayOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconClearDayOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconClearDayOutlinedFilled as default } +export default IconClearDayOutlinedFilled diff --git a/src/IconClearDayRounded.tsx b/src/IconClearDayRounded.tsx index 74510037b..4edc49b65 100644 --- a/src/IconClearDayRounded.tsx +++ b/src/IconClearDayRounded.tsx @@ -8,4 +8,4 @@ const IconClearDayRounded: React.FC = ({ ...props }) => ( ) -export { IconClearDayRounded as default } +export default IconClearDayRounded diff --git a/src/IconClearDayRoundedFilled.tsx b/src/IconClearDayRoundedFilled.tsx index e56901b47..768fcaadb 100644 --- a/src/IconClearDayRoundedFilled.tsx +++ b/src/IconClearDayRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconClearDayRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconClearDayRoundedFilled as default } +export default IconClearDayRoundedFilled diff --git a/src/IconClearDaySharp.tsx b/src/IconClearDaySharp.tsx index ee25defe8..5a5507cfa 100644 --- a/src/IconClearDaySharp.tsx +++ b/src/IconClearDaySharp.tsx @@ -8,4 +8,4 @@ const IconClearDaySharp: React.FC = ({ ...props }) => ( ) -export { IconClearDaySharp as default } +export default IconClearDaySharp diff --git a/src/IconClearDaySharpFilled.tsx b/src/IconClearDaySharpFilled.tsx index ec8f6c9ba..b299dd74c 100644 --- a/src/IconClearDaySharpFilled.tsx +++ b/src/IconClearDaySharpFilled.tsx @@ -8,4 +8,4 @@ const IconClearDaySharpFilled: React.FC = ({ ...props }) => ( ) -export { IconClearDaySharpFilled as default } +export default IconClearDaySharpFilled diff --git a/src/IconClimateMiniSplitOutlined.tsx b/src/IconClimateMiniSplitOutlined.tsx index 5aa80870d..810d1784a 100644 --- a/src/IconClimateMiniSplitOutlined.tsx +++ b/src/IconClimateMiniSplitOutlined.tsx @@ -8,4 +8,4 @@ const IconClimateMiniSplitOutlined: React.FC = ({ ...props }) => ( ) -export { IconClimateMiniSplitOutlined as default } +export default IconClimateMiniSplitOutlined diff --git a/src/IconClimateMiniSplitOutlinedFilled.tsx b/src/IconClimateMiniSplitOutlinedFilled.tsx index 31130071c..e469677f7 100644 --- a/src/IconClimateMiniSplitOutlinedFilled.tsx +++ b/src/IconClimateMiniSplitOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconClimateMiniSplitOutlinedFilled: React.FC = ({ ) -export { IconClimateMiniSplitOutlinedFilled as default } +export default IconClimateMiniSplitOutlinedFilled diff --git a/src/IconClimateMiniSplitRounded.tsx b/src/IconClimateMiniSplitRounded.tsx index a529dcaec..6d7888e18 100644 --- a/src/IconClimateMiniSplitRounded.tsx +++ b/src/IconClimateMiniSplitRounded.tsx @@ -8,4 +8,4 @@ const IconClimateMiniSplitRounded: React.FC = ({ ...props }) => ( ) -export { IconClimateMiniSplitRounded as default } +export default IconClimateMiniSplitRounded diff --git a/src/IconClimateMiniSplitRoundedFilled.tsx b/src/IconClimateMiniSplitRoundedFilled.tsx index 1889efc97..88cf09146 100644 --- a/src/IconClimateMiniSplitRoundedFilled.tsx +++ b/src/IconClimateMiniSplitRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconClimateMiniSplitRoundedFilled: React.FC = ({ ) -export { IconClimateMiniSplitRoundedFilled as default } +export default IconClimateMiniSplitRoundedFilled diff --git a/src/IconClimateMiniSplitSharp.tsx b/src/IconClimateMiniSplitSharp.tsx index e455e8400..7fd140345 100644 --- a/src/IconClimateMiniSplitSharp.tsx +++ b/src/IconClimateMiniSplitSharp.tsx @@ -8,4 +8,4 @@ const IconClimateMiniSplitSharp: React.FC = ({ ...props }) => ( ) -export { IconClimateMiniSplitSharp as default } +export default IconClimateMiniSplitSharp diff --git a/src/IconClimateMiniSplitSharpFilled.tsx b/src/IconClimateMiniSplitSharpFilled.tsx index 1ea3f3d3f..d86f7ebfd 100644 --- a/src/IconClimateMiniSplitSharpFilled.tsx +++ b/src/IconClimateMiniSplitSharpFilled.tsx @@ -8,4 +8,4 @@ const IconClimateMiniSplitSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconClimateMiniSplitSharpFilled as default } +export default IconClimateMiniSplitSharpFilled diff --git a/src/IconClinicalNotesOutlined.tsx b/src/IconClinicalNotesOutlined.tsx index 105f051ad..69749fb95 100644 --- a/src/IconClinicalNotesOutlined.tsx +++ b/src/IconClinicalNotesOutlined.tsx @@ -8,4 +8,4 @@ const IconClinicalNotesOutlined: React.FC = ({ ...props }) => ( ) -export { IconClinicalNotesOutlined as default } +export default IconClinicalNotesOutlined diff --git a/src/IconClinicalNotesOutlinedFilled.tsx b/src/IconClinicalNotesOutlinedFilled.tsx index 43e23a283..c2a868744 100644 --- a/src/IconClinicalNotesOutlinedFilled.tsx +++ b/src/IconClinicalNotesOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconClinicalNotesOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconClinicalNotesOutlinedFilled as default } +export default IconClinicalNotesOutlinedFilled diff --git a/src/IconClinicalNotesRounded.tsx b/src/IconClinicalNotesRounded.tsx index 1095029b3..01340c6eb 100644 --- a/src/IconClinicalNotesRounded.tsx +++ b/src/IconClinicalNotesRounded.tsx @@ -8,4 +8,4 @@ const IconClinicalNotesRounded: React.FC = ({ ...props }) => ( ) -export { IconClinicalNotesRounded as default } +export default IconClinicalNotesRounded diff --git a/src/IconClinicalNotesRoundedFilled.tsx b/src/IconClinicalNotesRoundedFilled.tsx index 37494619f..02d29743e 100644 --- a/src/IconClinicalNotesRoundedFilled.tsx +++ b/src/IconClinicalNotesRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconClinicalNotesRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconClinicalNotesRoundedFilled as default } +export default IconClinicalNotesRoundedFilled diff --git a/src/IconClinicalNotesSharp.tsx b/src/IconClinicalNotesSharp.tsx index 25287b9e7..793f2e395 100644 --- a/src/IconClinicalNotesSharp.tsx +++ b/src/IconClinicalNotesSharp.tsx @@ -8,4 +8,4 @@ const IconClinicalNotesSharp: React.FC = ({ ...props }) => ( ) -export { IconClinicalNotesSharp as default } +export default IconClinicalNotesSharp diff --git a/src/IconClinicalNotesSharpFilled.tsx b/src/IconClinicalNotesSharpFilled.tsx index 18ce88fb8..a5058ec99 100644 --- a/src/IconClinicalNotesSharpFilled.tsx +++ b/src/IconClinicalNotesSharpFilled.tsx @@ -8,4 +8,4 @@ const IconClinicalNotesSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconClinicalNotesSharpFilled as default } +export default IconClinicalNotesSharpFilled diff --git a/src/IconClockLoader10Outlined.tsx b/src/IconClockLoader10Outlined.tsx index 11fd162e4..0abdf0772 100644 --- a/src/IconClockLoader10Outlined.tsx +++ b/src/IconClockLoader10Outlined.tsx @@ -8,4 +8,4 @@ const IconClockLoader10Outlined: React.FC = ({ ...props }) => ( ) -export { IconClockLoader10Outlined as default } +export default IconClockLoader10Outlined diff --git a/src/IconClockLoader10OutlinedFilled.tsx b/src/IconClockLoader10OutlinedFilled.tsx index 8b28adf3e..51f139c3c 100644 --- a/src/IconClockLoader10OutlinedFilled.tsx +++ b/src/IconClockLoader10OutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconClockLoader10OutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconClockLoader10OutlinedFilled as default } +export default IconClockLoader10OutlinedFilled diff --git a/src/IconClockLoader10Rounded.tsx b/src/IconClockLoader10Rounded.tsx index 165fd758d..8691a800e 100644 --- a/src/IconClockLoader10Rounded.tsx +++ b/src/IconClockLoader10Rounded.tsx @@ -8,4 +8,4 @@ const IconClockLoader10Rounded: React.FC = ({ ...props }) => ( ) -export { IconClockLoader10Rounded as default } +export default IconClockLoader10Rounded diff --git a/src/IconClockLoader10RoundedFilled.tsx b/src/IconClockLoader10RoundedFilled.tsx index 82002a630..eb82c9e00 100644 --- a/src/IconClockLoader10RoundedFilled.tsx +++ b/src/IconClockLoader10RoundedFilled.tsx @@ -8,4 +8,4 @@ const IconClockLoader10RoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconClockLoader10RoundedFilled as default } +export default IconClockLoader10RoundedFilled diff --git a/src/IconClockLoader10Sharp.tsx b/src/IconClockLoader10Sharp.tsx index aac14f148..b7648b0b8 100644 --- a/src/IconClockLoader10Sharp.tsx +++ b/src/IconClockLoader10Sharp.tsx @@ -8,4 +8,4 @@ const IconClockLoader10Sharp: React.FC = ({ ...props }) => ( ) -export { IconClockLoader10Sharp as default } +export default IconClockLoader10Sharp diff --git a/src/IconClockLoader10SharpFilled.tsx b/src/IconClockLoader10SharpFilled.tsx index 0b2048fc1..b28ad68e0 100644 --- a/src/IconClockLoader10SharpFilled.tsx +++ b/src/IconClockLoader10SharpFilled.tsx @@ -8,4 +8,4 @@ const IconClockLoader10SharpFilled: React.FC = ({ ...props }) => ( ) -export { IconClockLoader10SharpFilled as default } +export default IconClockLoader10SharpFilled diff --git a/src/IconClockLoader20Outlined.tsx b/src/IconClockLoader20Outlined.tsx index 594680a82..30310e5f3 100644 --- a/src/IconClockLoader20Outlined.tsx +++ b/src/IconClockLoader20Outlined.tsx @@ -8,4 +8,4 @@ const IconClockLoader20Outlined: React.FC = ({ ...props }) => ( ) -export { IconClockLoader20Outlined as default } +export default IconClockLoader20Outlined diff --git a/src/IconClockLoader20OutlinedFilled.tsx b/src/IconClockLoader20OutlinedFilled.tsx index 40334a9e5..b5be66fe5 100644 --- a/src/IconClockLoader20OutlinedFilled.tsx +++ b/src/IconClockLoader20OutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconClockLoader20OutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconClockLoader20OutlinedFilled as default } +export default IconClockLoader20OutlinedFilled diff --git a/src/IconClockLoader20Rounded.tsx b/src/IconClockLoader20Rounded.tsx index 1d5ba0fd7..940c82ae3 100644 --- a/src/IconClockLoader20Rounded.tsx +++ b/src/IconClockLoader20Rounded.tsx @@ -8,4 +8,4 @@ const IconClockLoader20Rounded: React.FC = ({ ...props }) => ( ) -export { IconClockLoader20Rounded as default } +export default IconClockLoader20Rounded diff --git a/src/IconClockLoader20RoundedFilled.tsx b/src/IconClockLoader20RoundedFilled.tsx index 4b91c2449..3fbd7a165 100644 --- a/src/IconClockLoader20RoundedFilled.tsx +++ b/src/IconClockLoader20RoundedFilled.tsx @@ -8,4 +8,4 @@ const IconClockLoader20RoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconClockLoader20RoundedFilled as default } +export default IconClockLoader20RoundedFilled diff --git a/src/IconClockLoader20Sharp.tsx b/src/IconClockLoader20Sharp.tsx index 0b57298be..28975b2cf 100644 --- a/src/IconClockLoader20Sharp.tsx +++ b/src/IconClockLoader20Sharp.tsx @@ -8,4 +8,4 @@ const IconClockLoader20Sharp: React.FC = ({ ...props }) => ( ) -export { IconClockLoader20Sharp as default } +export default IconClockLoader20Sharp diff --git a/src/IconClockLoader20SharpFilled.tsx b/src/IconClockLoader20SharpFilled.tsx index 9305e4397..4b0ec0241 100644 --- a/src/IconClockLoader20SharpFilled.tsx +++ b/src/IconClockLoader20SharpFilled.tsx @@ -8,4 +8,4 @@ const IconClockLoader20SharpFilled: React.FC = ({ ...props }) => ( ) -export { IconClockLoader20SharpFilled as default } +export default IconClockLoader20SharpFilled diff --git a/src/IconClockLoader40Outlined.tsx b/src/IconClockLoader40Outlined.tsx index d2e143c61..d7a23d0d3 100644 --- a/src/IconClockLoader40Outlined.tsx +++ b/src/IconClockLoader40Outlined.tsx @@ -8,4 +8,4 @@ const IconClockLoader40Outlined: React.FC = ({ ...props }) => ( ) -export { IconClockLoader40Outlined as default } +export default IconClockLoader40Outlined diff --git a/src/IconClockLoader40OutlinedFilled.tsx b/src/IconClockLoader40OutlinedFilled.tsx index 58959e11a..6bab1b73b 100644 --- a/src/IconClockLoader40OutlinedFilled.tsx +++ b/src/IconClockLoader40OutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconClockLoader40OutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconClockLoader40OutlinedFilled as default } +export default IconClockLoader40OutlinedFilled diff --git a/src/IconClockLoader40Rounded.tsx b/src/IconClockLoader40Rounded.tsx index e051e0ae0..ed881ce3f 100644 --- a/src/IconClockLoader40Rounded.tsx +++ b/src/IconClockLoader40Rounded.tsx @@ -8,4 +8,4 @@ const IconClockLoader40Rounded: React.FC = ({ ...props }) => ( ) -export { IconClockLoader40Rounded as default } +export default IconClockLoader40Rounded diff --git a/src/IconClockLoader40RoundedFilled.tsx b/src/IconClockLoader40RoundedFilled.tsx index 0491e59ce..3b244531b 100644 --- a/src/IconClockLoader40RoundedFilled.tsx +++ b/src/IconClockLoader40RoundedFilled.tsx @@ -8,4 +8,4 @@ const IconClockLoader40RoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconClockLoader40RoundedFilled as default } +export default IconClockLoader40RoundedFilled diff --git a/src/IconClockLoader40Sharp.tsx b/src/IconClockLoader40Sharp.tsx index 08c9907aa..841173e00 100644 --- a/src/IconClockLoader40Sharp.tsx +++ b/src/IconClockLoader40Sharp.tsx @@ -8,4 +8,4 @@ const IconClockLoader40Sharp: React.FC = ({ ...props }) => ( ) -export { IconClockLoader40Sharp as default } +export default IconClockLoader40Sharp diff --git a/src/IconClockLoader40SharpFilled.tsx b/src/IconClockLoader40SharpFilled.tsx index fc7b98987..1b5fc2223 100644 --- a/src/IconClockLoader40SharpFilled.tsx +++ b/src/IconClockLoader40SharpFilled.tsx @@ -8,4 +8,4 @@ const IconClockLoader40SharpFilled: React.FC = ({ ...props }) => ( ) -export { IconClockLoader40SharpFilled as default } +export default IconClockLoader40SharpFilled diff --git a/src/IconClockLoader60Outlined.tsx b/src/IconClockLoader60Outlined.tsx index 9b71afacd..58c0a8697 100644 --- a/src/IconClockLoader60Outlined.tsx +++ b/src/IconClockLoader60Outlined.tsx @@ -8,4 +8,4 @@ const IconClockLoader60Outlined: React.FC = ({ ...props }) => ( ) -export { IconClockLoader60Outlined as default } +export default IconClockLoader60Outlined diff --git a/src/IconClockLoader60OutlinedFilled.tsx b/src/IconClockLoader60OutlinedFilled.tsx index f9096b4f3..898d9efbe 100644 --- a/src/IconClockLoader60OutlinedFilled.tsx +++ b/src/IconClockLoader60OutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconClockLoader60OutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconClockLoader60OutlinedFilled as default } +export default IconClockLoader60OutlinedFilled diff --git a/src/IconClockLoader60Rounded.tsx b/src/IconClockLoader60Rounded.tsx index 289e3b3e9..469055a0a 100644 --- a/src/IconClockLoader60Rounded.tsx +++ b/src/IconClockLoader60Rounded.tsx @@ -8,4 +8,4 @@ const IconClockLoader60Rounded: React.FC = ({ ...props }) => ( ) -export { IconClockLoader60Rounded as default } +export default IconClockLoader60Rounded diff --git a/src/IconClockLoader60RoundedFilled.tsx b/src/IconClockLoader60RoundedFilled.tsx index cfe3491b2..7a2d25775 100644 --- a/src/IconClockLoader60RoundedFilled.tsx +++ b/src/IconClockLoader60RoundedFilled.tsx @@ -8,4 +8,4 @@ const IconClockLoader60RoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconClockLoader60RoundedFilled as default } +export default IconClockLoader60RoundedFilled diff --git a/src/IconClockLoader60Sharp.tsx b/src/IconClockLoader60Sharp.tsx index 7e7f37eb7..049a4b07b 100644 --- a/src/IconClockLoader60Sharp.tsx +++ b/src/IconClockLoader60Sharp.tsx @@ -8,4 +8,4 @@ const IconClockLoader60Sharp: React.FC = ({ ...props }) => ( ) -export { IconClockLoader60Sharp as default } +export default IconClockLoader60Sharp diff --git a/src/IconClockLoader60SharpFilled.tsx b/src/IconClockLoader60SharpFilled.tsx index 023071218..6399e460d 100644 --- a/src/IconClockLoader60SharpFilled.tsx +++ b/src/IconClockLoader60SharpFilled.tsx @@ -8,4 +8,4 @@ const IconClockLoader60SharpFilled: React.FC = ({ ...props }) => ( ) -export { IconClockLoader60SharpFilled as default } +export default IconClockLoader60SharpFilled diff --git a/src/IconClockLoader80Outlined.tsx b/src/IconClockLoader80Outlined.tsx index 615144724..987319ab4 100644 --- a/src/IconClockLoader80Outlined.tsx +++ b/src/IconClockLoader80Outlined.tsx @@ -8,4 +8,4 @@ const IconClockLoader80Outlined: React.FC = ({ ...props }) => ( ) -export { IconClockLoader80Outlined as default } +export default IconClockLoader80Outlined diff --git a/src/IconClockLoader80OutlinedFilled.tsx b/src/IconClockLoader80OutlinedFilled.tsx index 874ad7e73..bedecee14 100644 --- a/src/IconClockLoader80OutlinedFilled.tsx +++ b/src/IconClockLoader80OutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconClockLoader80OutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconClockLoader80OutlinedFilled as default } +export default IconClockLoader80OutlinedFilled diff --git a/src/IconClockLoader80Rounded.tsx b/src/IconClockLoader80Rounded.tsx index 522247baa..5c1071ef0 100644 --- a/src/IconClockLoader80Rounded.tsx +++ b/src/IconClockLoader80Rounded.tsx @@ -8,4 +8,4 @@ const IconClockLoader80Rounded: React.FC = ({ ...props }) => ( ) -export { IconClockLoader80Rounded as default } +export default IconClockLoader80Rounded diff --git a/src/IconClockLoader80RoundedFilled.tsx b/src/IconClockLoader80RoundedFilled.tsx index 6d02a9ace..c5bb957eb 100644 --- a/src/IconClockLoader80RoundedFilled.tsx +++ b/src/IconClockLoader80RoundedFilled.tsx @@ -8,4 +8,4 @@ const IconClockLoader80RoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconClockLoader80RoundedFilled as default } +export default IconClockLoader80RoundedFilled diff --git a/src/IconClockLoader80Sharp.tsx b/src/IconClockLoader80Sharp.tsx index 39762ff3f..3e3eb9605 100644 --- a/src/IconClockLoader80Sharp.tsx +++ b/src/IconClockLoader80Sharp.tsx @@ -8,4 +8,4 @@ const IconClockLoader80Sharp: React.FC = ({ ...props }) => ( ) -export { IconClockLoader80Sharp as default } +export default IconClockLoader80Sharp diff --git a/src/IconClockLoader80SharpFilled.tsx b/src/IconClockLoader80SharpFilled.tsx index dee36448b..323e8886c 100644 --- a/src/IconClockLoader80SharpFilled.tsx +++ b/src/IconClockLoader80SharpFilled.tsx @@ -8,4 +8,4 @@ const IconClockLoader80SharpFilled: React.FC = ({ ...props }) => ( ) -export { IconClockLoader80SharpFilled as default } +export default IconClockLoader80SharpFilled diff --git a/src/IconClockLoader90Outlined.tsx b/src/IconClockLoader90Outlined.tsx index c19800d03..d0b5e52c2 100644 --- a/src/IconClockLoader90Outlined.tsx +++ b/src/IconClockLoader90Outlined.tsx @@ -8,4 +8,4 @@ const IconClockLoader90Outlined: React.FC = ({ ...props }) => ( ) -export { IconClockLoader90Outlined as default } +export default IconClockLoader90Outlined diff --git a/src/IconClockLoader90OutlinedFilled.tsx b/src/IconClockLoader90OutlinedFilled.tsx index ecd097027..72a297d45 100644 --- a/src/IconClockLoader90OutlinedFilled.tsx +++ b/src/IconClockLoader90OutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconClockLoader90OutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconClockLoader90OutlinedFilled as default } +export default IconClockLoader90OutlinedFilled diff --git a/src/IconClockLoader90Rounded.tsx b/src/IconClockLoader90Rounded.tsx index 81fa737a6..92f41cf6c 100644 --- a/src/IconClockLoader90Rounded.tsx +++ b/src/IconClockLoader90Rounded.tsx @@ -8,4 +8,4 @@ const IconClockLoader90Rounded: React.FC = ({ ...props }) => ( ) -export { IconClockLoader90Rounded as default } +export default IconClockLoader90Rounded diff --git a/src/IconClockLoader90RoundedFilled.tsx b/src/IconClockLoader90RoundedFilled.tsx index c5c330f3e..182c56bda 100644 --- a/src/IconClockLoader90RoundedFilled.tsx +++ b/src/IconClockLoader90RoundedFilled.tsx @@ -8,4 +8,4 @@ const IconClockLoader90RoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconClockLoader90RoundedFilled as default } +export default IconClockLoader90RoundedFilled diff --git a/src/IconClockLoader90Sharp.tsx b/src/IconClockLoader90Sharp.tsx index ec383d6be..52700d0a7 100644 --- a/src/IconClockLoader90Sharp.tsx +++ b/src/IconClockLoader90Sharp.tsx @@ -8,4 +8,4 @@ const IconClockLoader90Sharp: React.FC = ({ ...props }) => ( ) -export { IconClockLoader90Sharp as default } +export default IconClockLoader90Sharp diff --git a/src/IconClockLoader90SharpFilled.tsx b/src/IconClockLoader90SharpFilled.tsx index 4ded3fe5c..16682facb 100644 --- a/src/IconClockLoader90SharpFilled.tsx +++ b/src/IconClockLoader90SharpFilled.tsx @@ -8,4 +8,4 @@ const IconClockLoader90SharpFilled: React.FC = ({ ...props }) => ( ) -export { IconClockLoader90SharpFilled as default } +export default IconClockLoader90SharpFilled diff --git a/src/IconCloseFullscreenOutlined.tsx b/src/IconCloseFullscreenOutlined.tsx index 59d1b38dd..3ca4b3ad0 100644 --- a/src/IconCloseFullscreenOutlined.tsx +++ b/src/IconCloseFullscreenOutlined.tsx @@ -8,4 +8,4 @@ const IconCloseFullscreenOutlined: React.FC = ({ ...props }) => ( ) -export { IconCloseFullscreenOutlined as default } +export default IconCloseFullscreenOutlined diff --git a/src/IconCloseFullscreenOutlinedFilled.tsx b/src/IconCloseFullscreenOutlinedFilled.tsx index ebb168886..0dd6b1fda 100644 --- a/src/IconCloseFullscreenOutlinedFilled.tsx +++ b/src/IconCloseFullscreenOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconCloseFullscreenOutlinedFilled: React.FC = ({ ) -export { IconCloseFullscreenOutlinedFilled as default } +export default IconCloseFullscreenOutlinedFilled diff --git a/src/IconCloseFullscreenRounded.tsx b/src/IconCloseFullscreenRounded.tsx index 73eb19763..43dc472ed 100644 --- a/src/IconCloseFullscreenRounded.tsx +++ b/src/IconCloseFullscreenRounded.tsx @@ -8,4 +8,4 @@ const IconCloseFullscreenRounded: React.FC = ({ ...props }) => ( ) -export { IconCloseFullscreenRounded as default } +export default IconCloseFullscreenRounded diff --git a/src/IconCloseFullscreenRoundedFilled.tsx b/src/IconCloseFullscreenRoundedFilled.tsx index e27a2ac3a..90085495e 100644 --- a/src/IconCloseFullscreenRoundedFilled.tsx +++ b/src/IconCloseFullscreenRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconCloseFullscreenRoundedFilled: React.FC = ({ ) -export { IconCloseFullscreenRoundedFilled as default } +export default IconCloseFullscreenRoundedFilled diff --git a/src/IconCloseFullscreenSharp.tsx b/src/IconCloseFullscreenSharp.tsx index 966877f2f..f292b4b39 100644 --- a/src/IconCloseFullscreenSharp.tsx +++ b/src/IconCloseFullscreenSharp.tsx @@ -8,4 +8,4 @@ const IconCloseFullscreenSharp: React.FC = ({ ...props }) => ( ) -export { IconCloseFullscreenSharp as default } +export default IconCloseFullscreenSharp diff --git a/src/IconCloseFullscreenSharpFilled.tsx b/src/IconCloseFullscreenSharpFilled.tsx index 0ee9c669e..e84ed09e0 100644 --- a/src/IconCloseFullscreenSharpFilled.tsx +++ b/src/IconCloseFullscreenSharpFilled.tsx @@ -8,4 +8,4 @@ const IconCloseFullscreenSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconCloseFullscreenSharpFilled as default } +export default IconCloseFullscreenSharpFilled diff --git a/src/IconCloseOutlined.tsx b/src/IconCloseOutlined.tsx index 1e218a5ec..51afce763 100644 --- a/src/IconCloseOutlined.tsx +++ b/src/IconCloseOutlined.tsx @@ -8,4 +8,4 @@ const IconCloseOutlined: React.FC = ({ ...props }) => ( ) -export { IconCloseOutlined as default } +export default IconCloseOutlined diff --git a/src/IconCloseOutlinedFilled.tsx b/src/IconCloseOutlinedFilled.tsx index 99f5c018e..3e6e75af6 100644 --- a/src/IconCloseOutlinedFilled.tsx +++ b/src/IconCloseOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconCloseOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconCloseOutlinedFilled as default } +export default IconCloseOutlinedFilled diff --git a/src/IconCloseRounded.tsx b/src/IconCloseRounded.tsx index e4d77fffa..ff8c61570 100644 --- a/src/IconCloseRounded.tsx +++ b/src/IconCloseRounded.tsx @@ -8,4 +8,4 @@ const IconCloseRounded: React.FC = ({ ...props }) => ( ) -export { IconCloseRounded as default } +export default IconCloseRounded diff --git a/src/IconCloseRoundedFilled.tsx b/src/IconCloseRoundedFilled.tsx index 5146209db..6f8823f22 100644 --- a/src/IconCloseRoundedFilled.tsx +++ b/src/IconCloseRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconCloseRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconCloseRoundedFilled as default } +export default IconCloseRoundedFilled diff --git a/src/IconCloseSharp.tsx b/src/IconCloseSharp.tsx index f17b26909..54e62ac38 100644 --- a/src/IconCloseSharp.tsx +++ b/src/IconCloseSharp.tsx @@ -8,4 +8,4 @@ const IconCloseSharp: React.FC = ({ ...props }) => ( ) -export { IconCloseSharp as default } +export default IconCloseSharp diff --git a/src/IconCloseSharpFilled.tsx b/src/IconCloseSharpFilled.tsx index 2dfe75879..45013e4eb 100644 --- a/src/IconCloseSharpFilled.tsx +++ b/src/IconCloseSharpFilled.tsx @@ -8,4 +8,4 @@ const IconCloseSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconCloseSharpFilled as default } +export default IconCloseSharpFilled diff --git a/src/IconCloseSmallOutlined.tsx b/src/IconCloseSmallOutlined.tsx index 21d17d800..fe4992a56 100644 --- a/src/IconCloseSmallOutlined.tsx +++ b/src/IconCloseSmallOutlined.tsx @@ -8,4 +8,4 @@ const IconCloseSmallOutlined: React.FC = ({ ...props }) => ( ) -export { IconCloseSmallOutlined as default } +export default IconCloseSmallOutlined diff --git a/src/IconCloseSmallOutlinedFilled.tsx b/src/IconCloseSmallOutlinedFilled.tsx index a569d6b86..645a6b68d 100644 --- a/src/IconCloseSmallOutlinedFilled.tsx +++ b/src/IconCloseSmallOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconCloseSmallOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconCloseSmallOutlinedFilled as default } +export default IconCloseSmallOutlinedFilled diff --git a/src/IconCloseSmallRounded.tsx b/src/IconCloseSmallRounded.tsx index 400d85121..afad3203d 100644 --- a/src/IconCloseSmallRounded.tsx +++ b/src/IconCloseSmallRounded.tsx @@ -8,4 +8,4 @@ const IconCloseSmallRounded: React.FC = ({ ...props }) => ( ) -export { IconCloseSmallRounded as default } +export default IconCloseSmallRounded diff --git a/src/IconCloseSmallRoundedFilled.tsx b/src/IconCloseSmallRoundedFilled.tsx index 694fae484..ee5cc94db 100644 --- a/src/IconCloseSmallRoundedFilled.tsx +++ b/src/IconCloseSmallRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconCloseSmallRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconCloseSmallRoundedFilled as default } +export default IconCloseSmallRoundedFilled diff --git a/src/IconCloseSmallSharp.tsx b/src/IconCloseSmallSharp.tsx index d50b6f642..a7d9fcfa9 100644 --- a/src/IconCloseSmallSharp.tsx +++ b/src/IconCloseSmallSharp.tsx @@ -8,4 +8,4 @@ const IconCloseSmallSharp: React.FC = ({ ...props }) => ( ) -export { IconCloseSmallSharp as default } +export default IconCloseSmallSharp diff --git a/src/IconCloseSmallSharpFilled.tsx b/src/IconCloseSmallSharpFilled.tsx index 4916a7b6f..6dad35739 100644 --- a/src/IconCloseSmallSharpFilled.tsx +++ b/src/IconCloseSmallSharpFilled.tsx @@ -8,4 +8,4 @@ const IconCloseSmallSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconCloseSmallSharpFilled as default } +export default IconCloseSmallSharpFilled diff --git a/src/IconClosedCaptionAddOutlined.tsx b/src/IconClosedCaptionAddOutlined.tsx index 1b7380f6f..5eab35ec9 100644 --- a/src/IconClosedCaptionAddOutlined.tsx +++ b/src/IconClosedCaptionAddOutlined.tsx @@ -8,4 +8,4 @@ const IconClosedCaptionAddOutlined: React.FC = ({ ...props }) => ( ) -export { IconClosedCaptionAddOutlined as default } +export default IconClosedCaptionAddOutlined diff --git a/src/IconClosedCaptionAddOutlinedFilled.tsx b/src/IconClosedCaptionAddOutlinedFilled.tsx index 58dd9bbb9..fc8774f50 100644 --- a/src/IconClosedCaptionAddOutlinedFilled.tsx +++ b/src/IconClosedCaptionAddOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconClosedCaptionAddOutlinedFilled: React.FC = ({ ) -export { IconClosedCaptionAddOutlinedFilled as default } +export default IconClosedCaptionAddOutlinedFilled diff --git a/src/IconClosedCaptionAddRounded.tsx b/src/IconClosedCaptionAddRounded.tsx index 0951dc748..a40d71436 100644 --- a/src/IconClosedCaptionAddRounded.tsx +++ b/src/IconClosedCaptionAddRounded.tsx @@ -8,4 +8,4 @@ const IconClosedCaptionAddRounded: React.FC = ({ ...props }) => ( ) -export { IconClosedCaptionAddRounded as default } +export default IconClosedCaptionAddRounded diff --git a/src/IconClosedCaptionAddRoundedFilled.tsx b/src/IconClosedCaptionAddRoundedFilled.tsx index e935f9c46..e7b494762 100644 --- a/src/IconClosedCaptionAddRoundedFilled.tsx +++ b/src/IconClosedCaptionAddRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconClosedCaptionAddRoundedFilled: React.FC = ({ ) -export { IconClosedCaptionAddRoundedFilled as default } +export default IconClosedCaptionAddRoundedFilled diff --git a/src/IconClosedCaptionAddSharp.tsx b/src/IconClosedCaptionAddSharp.tsx index 6fdd476ee..0adec3579 100644 --- a/src/IconClosedCaptionAddSharp.tsx +++ b/src/IconClosedCaptionAddSharp.tsx @@ -8,4 +8,4 @@ const IconClosedCaptionAddSharp: React.FC = ({ ...props }) => ( ) -export { IconClosedCaptionAddSharp as default } +export default IconClosedCaptionAddSharp diff --git a/src/IconClosedCaptionAddSharpFilled.tsx b/src/IconClosedCaptionAddSharpFilled.tsx index b5f33c01f..e695cc51a 100644 --- a/src/IconClosedCaptionAddSharpFilled.tsx +++ b/src/IconClosedCaptionAddSharpFilled.tsx @@ -8,4 +8,4 @@ const IconClosedCaptionAddSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconClosedCaptionAddSharpFilled as default } +export default IconClosedCaptionAddSharpFilled diff --git a/src/IconClosedCaptionDisabledOutlined.tsx b/src/IconClosedCaptionDisabledOutlined.tsx index 655103504..6b8e762a8 100644 --- a/src/IconClosedCaptionDisabledOutlined.tsx +++ b/src/IconClosedCaptionDisabledOutlined.tsx @@ -10,4 +10,4 @@ const IconClosedCaptionDisabledOutlined: React.FC = ({ ) -export { IconClosedCaptionDisabledOutlined as default } +export default IconClosedCaptionDisabledOutlined diff --git a/src/IconClosedCaptionDisabledOutlinedFilled.tsx b/src/IconClosedCaptionDisabledOutlinedFilled.tsx index cf653e8a5..d55d49058 100644 --- a/src/IconClosedCaptionDisabledOutlinedFilled.tsx +++ b/src/IconClosedCaptionDisabledOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconClosedCaptionDisabledOutlinedFilled: React.FC = ({ ) -export { IconClosedCaptionDisabledOutlinedFilled as default } +export default IconClosedCaptionDisabledOutlinedFilled diff --git a/src/IconClosedCaptionDisabledRounded.tsx b/src/IconClosedCaptionDisabledRounded.tsx index a8280c58b..2e75acd4d 100644 --- a/src/IconClosedCaptionDisabledRounded.tsx +++ b/src/IconClosedCaptionDisabledRounded.tsx @@ -10,4 +10,4 @@ const IconClosedCaptionDisabledRounded: React.FC = ({ ) -export { IconClosedCaptionDisabledRounded as default } +export default IconClosedCaptionDisabledRounded diff --git a/src/IconClosedCaptionDisabledRoundedFilled.tsx b/src/IconClosedCaptionDisabledRoundedFilled.tsx index f5ce11c01..6da359047 100644 --- a/src/IconClosedCaptionDisabledRoundedFilled.tsx +++ b/src/IconClosedCaptionDisabledRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconClosedCaptionDisabledRoundedFilled: React.FC = ({ ) -export { IconClosedCaptionDisabledRoundedFilled as default } +export default IconClosedCaptionDisabledRoundedFilled diff --git a/src/IconClosedCaptionDisabledSharp.tsx b/src/IconClosedCaptionDisabledSharp.tsx index 447993122..6e9736338 100644 --- a/src/IconClosedCaptionDisabledSharp.tsx +++ b/src/IconClosedCaptionDisabledSharp.tsx @@ -8,4 +8,4 @@ const IconClosedCaptionDisabledSharp: React.FC = ({ ...props }) => ( ) -export { IconClosedCaptionDisabledSharp as default } +export default IconClosedCaptionDisabledSharp diff --git a/src/IconClosedCaptionDisabledSharpFilled.tsx b/src/IconClosedCaptionDisabledSharpFilled.tsx index 053189c44..39974dc31 100644 --- a/src/IconClosedCaptionDisabledSharpFilled.tsx +++ b/src/IconClosedCaptionDisabledSharpFilled.tsx @@ -10,4 +10,4 @@ const IconClosedCaptionDisabledSharpFilled: React.FC = ({ ) -export { IconClosedCaptionDisabledSharpFilled as default } +export default IconClosedCaptionDisabledSharpFilled diff --git a/src/IconClosedCaptionOutlined.tsx b/src/IconClosedCaptionOutlined.tsx index 39ae4c818..51ccde891 100644 --- a/src/IconClosedCaptionOutlined.tsx +++ b/src/IconClosedCaptionOutlined.tsx @@ -8,4 +8,4 @@ const IconClosedCaptionOutlined: React.FC = ({ ...props }) => ( ) -export { IconClosedCaptionOutlined as default } +export default IconClosedCaptionOutlined diff --git a/src/IconClosedCaptionOutlinedFilled.tsx b/src/IconClosedCaptionOutlinedFilled.tsx index f4f8acff3..b028823bc 100644 --- a/src/IconClosedCaptionOutlinedFilled.tsx +++ b/src/IconClosedCaptionOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconClosedCaptionOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconClosedCaptionOutlinedFilled as default } +export default IconClosedCaptionOutlinedFilled diff --git a/src/IconClosedCaptionRounded.tsx b/src/IconClosedCaptionRounded.tsx index 944e1cdce..bd1f48f70 100644 --- a/src/IconClosedCaptionRounded.tsx +++ b/src/IconClosedCaptionRounded.tsx @@ -8,4 +8,4 @@ const IconClosedCaptionRounded: React.FC = ({ ...props }) => ( ) -export { IconClosedCaptionRounded as default } +export default IconClosedCaptionRounded diff --git a/src/IconClosedCaptionRoundedFilled.tsx b/src/IconClosedCaptionRoundedFilled.tsx index f7586ca78..9beb53913 100644 --- a/src/IconClosedCaptionRoundedFilled.tsx +++ b/src/IconClosedCaptionRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconClosedCaptionRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconClosedCaptionRoundedFilled as default } +export default IconClosedCaptionRoundedFilled diff --git a/src/IconClosedCaptionSharp.tsx b/src/IconClosedCaptionSharp.tsx index b1014b54b..9d53d5b61 100644 --- a/src/IconClosedCaptionSharp.tsx +++ b/src/IconClosedCaptionSharp.tsx @@ -8,4 +8,4 @@ const IconClosedCaptionSharp: React.FC = ({ ...props }) => ( ) -export { IconClosedCaptionSharp as default } +export default IconClosedCaptionSharp diff --git a/src/IconClosedCaptionSharpFilled.tsx b/src/IconClosedCaptionSharpFilled.tsx index 0b28e3a6a..abd3b0b49 100644 --- a/src/IconClosedCaptionSharpFilled.tsx +++ b/src/IconClosedCaptionSharpFilled.tsx @@ -8,4 +8,4 @@ const IconClosedCaptionSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconClosedCaptionSharpFilled as default } +export default IconClosedCaptionSharpFilled diff --git a/src/IconCloudCircleOutlined.tsx b/src/IconCloudCircleOutlined.tsx index c80c8ba8e..e83a5679a 100644 --- a/src/IconCloudCircleOutlined.tsx +++ b/src/IconCloudCircleOutlined.tsx @@ -8,4 +8,4 @@ const IconCloudCircleOutlined: React.FC = ({ ...props }) => ( ) -export { IconCloudCircleOutlined as default } +export default IconCloudCircleOutlined diff --git a/src/IconCloudCircleOutlinedFilled.tsx b/src/IconCloudCircleOutlinedFilled.tsx index 288ff7744..2c1aa5085 100644 --- a/src/IconCloudCircleOutlinedFilled.tsx +++ b/src/IconCloudCircleOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconCloudCircleOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconCloudCircleOutlinedFilled as default } +export default IconCloudCircleOutlinedFilled diff --git a/src/IconCloudCircleRounded.tsx b/src/IconCloudCircleRounded.tsx index 6d7c6a57d..bd5de97c5 100644 --- a/src/IconCloudCircleRounded.tsx +++ b/src/IconCloudCircleRounded.tsx @@ -8,4 +8,4 @@ const IconCloudCircleRounded: React.FC = ({ ...props }) => ( ) -export { IconCloudCircleRounded as default } +export default IconCloudCircleRounded diff --git a/src/IconCloudCircleRoundedFilled.tsx b/src/IconCloudCircleRoundedFilled.tsx index e09c7e1e8..36f79d42a 100644 --- a/src/IconCloudCircleRoundedFilled.tsx +++ b/src/IconCloudCircleRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconCloudCircleRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconCloudCircleRoundedFilled as default } +export default IconCloudCircleRoundedFilled diff --git a/src/IconCloudCircleSharp.tsx b/src/IconCloudCircleSharp.tsx index 7a5abdf08..2a2d2c1ad 100644 --- a/src/IconCloudCircleSharp.tsx +++ b/src/IconCloudCircleSharp.tsx @@ -8,4 +8,4 @@ const IconCloudCircleSharp: React.FC = ({ ...props }) => ( ) -export { IconCloudCircleSharp as default } +export default IconCloudCircleSharp diff --git a/src/IconCloudCircleSharpFilled.tsx b/src/IconCloudCircleSharpFilled.tsx index ff6b14ae3..327830c82 100644 --- a/src/IconCloudCircleSharpFilled.tsx +++ b/src/IconCloudCircleSharpFilled.tsx @@ -8,4 +8,4 @@ const IconCloudCircleSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconCloudCircleSharpFilled as default } +export default IconCloudCircleSharpFilled diff --git a/src/IconCloudDoneOutlined.tsx b/src/IconCloudDoneOutlined.tsx index d06cdcb54..c67680fe8 100644 --- a/src/IconCloudDoneOutlined.tsx +++ b/src/IconCloudDoneOutlined.tsx @@ -8,4 +8,4 @@ const IconCloudDoneOutlined: React.FC = ({ ...props }) => ( ) -export { IconCloudDoneOutlined as default } +export default IconCloudDoneOutlined diff --git a/src/IconCloudDoneOutlinedFilled.tsx b/src/IconCloudDoneOutlinedFilled.tsx index 85b840f23..3d3131574 100644 --- a/src/IconCloudDoneOutlinedFilled.tsx +++ b/src/IconCloudDoneOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconCloudDoneOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconCloudDoneOutlinedFilled as default } +export default IconCloudDoneOutlinedFilled diff --git a/src/IconCloudDoneRounded.tsx b/src/IconCloudDoneRounded.tsx index 26eab23f6..74e17eea0 100644 --- a/src/IconCloudDoneRounded.tsx +++ b/src/IconCloudDoneRounded.tsx @@ -8,4 +8,4 @@ const IconCloudDoneRounded: React.FC = ({ ...props }) => ( ) -export { IconCloudDoneRounded as default } +export default IconCloudDoneRounded diff --git a/src/IconCloudDoneRoundedFilled.tsx b/src/IconCloudDoneRoundedFilled.tsx index fc64917cd..346fb60df 100644 --- a/src/IconCloudDoneRoundedFilled.tsx +++ b/src/IconCloudDoneRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconCloudDoneRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconCloudDoneRoundedFilled as default } +export default IconCloudDoneRoundedFilled diff --git a/src/IconCloudDoneSharp.tsx b/src/IconCloudDoneSharp.tsx index 46a35721c..ca46befc5 100644 --- a/src/IconCloudDoneSharp.tsx +++ b/src/IconCloudDoneSharp.tsx @@ -8,4 +8,4 @@ const IconCloudDoneSharp: React.FC = ({ ...props }) => ( ) -export { IconCloudDoneSharp as default } +export default IconCloudDoneSharp diff --git a/src/IconCloudDoneSharpFilled.tsx b/src/IconCloudDoneSharpFilled.tsx index abe1a9d1d..876fcbc8f 100644 --- a/src/IconCloudDoneSharpFilled.tsx +++ b/src/IconCloudDoneSharpFilled.tsx @@ -8,4 +8,4 @@ const IconCloudDoneSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconCloudDoneSharpFilled as default } +export default IconCloudDoneSharpFilled diff --git a/src/IconCloudDownloadOutlined.tsx b/src/IconCloudDownloadOutlined.tsx index 0ad62a58b..8671a7242 100644 --- a/src/IconCloudDownloadOutlined.tsx +++ b/src/IconCloudDownloadOutlined.tsx @@ -8,4 +8,4 @@ const IconCloudDownloadOutlined: React.FC = ({ ...props }) => ( ) -export { IconCloudDownloadOutlined as default } +export default IconCloudDownloadOutlined diff --git a/src/IconCloudDownloadOutlinedFilled.tsx b/src/IconCloudDownloadOutlinedFilled.tsx index 987282a0b..4ca3bb7ff 100644 --- a/src/IconCloudDownloadOutlinedFilled.tsx +++ b/src/IconCloudDownloadOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconCloudDownloadOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconCloudDownloadOutlinedFilled as default } +export default IconCloudDownloadOutlinedFilled diff --git a/src/IconCloudDownloadRounded.tsx b/src/IconCloudDownloadRounded.tsx index 0b84c5e6a..872de3685 100644 --- a/src/IconCloudDownloadRounded.tsx +++ b/src/IconCloudDownloadRounded.tsx @@ -8,4 +8,4 @@ const IconCloudDownloadRounded: React.FC = ({ ...props }) => ( ) -export { IconCloudDownloadRounded as default } +export default IconCloudDownloadRounded diff --git a/src/IconCloudDownloadRoundedFilled.tsx b/src/IconCloudDownloadRoundedFilled.tsx index d25991d36..b2b0b34ec 100644 --- a/src/IconCloudDownloadRoundedFilled.tsx +++ b/src/IconCloudDownloadRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconCloudDownloadRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconCloudDownloadRoundedFilled as default } +export default IconCloudDownloadRoundedFilled diff --git a/src/IconCloudDownloadSharp.tsx b/src/IconCloudDownloadSharp.tsx index 3fd15a670..a1ded638b 100644 --- a/src/IconCloudDownloadSharp.tsx +++ b/src/IconCloudDownloadSharp.tsx @@ -8,4 +8,4 @@ const IconCloudDownloadSharp: React.FC = ({ ...props }) => ( ) -export { IconCloudDownloadSharp as default } +export default IconCloudDownloadSharp diff --git a/src/IconCloudDownloadSharpFilled.tsx b/src/IconCloudDownloadSharpFilled.tsx index 2f0a1eb5c..35bfe59a9 100644 --- a/src/IconCloudDownloadSharpFilled.tsx +++ b/src/IconCloudDownloadSharpFilled.tsx @@ -8,4 +8,4 @@ const IconCloudDownloadSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconCloudDownloadSharpFilled as default } +export default IconCloudDownloadSharpFilled diff --git a/src/IconCloudOffOutlined.tsx b/src/IconCloudOffOutlined.tsx index 60058f483..3455746b8 100644 --- a/src/IconCloudOffOutlined.tsx +++ b/src/IconCloudOffOutlined.tsx @@ -8,4 +8,4 @@ const IconCloudOffOutlined: React.FC = ({ ...props }) => ( ) -export { IconCloudOffOutlined as default } +export default IconCloudOffOutlined diff --git a/src/IconCloudOffOutlinedFilled.tsx b/src/IconCloudOffOutlinedFilled.tsx index 3bd7f86b3..712deb3b2 100644 --- a/src/IconCloudOffOutlinedFilled.tsx +++ b/src/IconCloudOffOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconCloudOffOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconCloudOffOutlinedFilled as default } +export default IconCloudOffOutlinedFilled diff --git a/src/IconCloudOffRounded.tsx b/src/IconCloudOffRounded.tsx index c99461c14..62d3c0225 100644 --- a/src/IconCloudOffRounded.tsx +++ b/src/IconCloudOffRounded.tsx @@ -8,4 +8,4 @@ const IconCloudOffRounded: React.FC = ({ ...props }) => ( ) -export { IconCloudOffRounded as default } +export default IconCloudOffRounded diff --git a/src/IconCloudOffRoundedFilled.tsx b/src/IconCloudOffRoundedFilled.tsx index b92950e03..06dc278d6 100644 --- a/src/IconCloudOffRoundedFilled.tsx +++ b/src/IconCloudOffRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconCloudOffRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconCloudOffRoundedFilled as default } +export default IconCloudOffRoundedFilled diff --git a/src/IconCloudOffSharp.tsx b/src/IconCloudOffSharp.tsx index a232e0291..50ea080aa 100644 --- a/src/IconCloudOffSharp.tsx +++ b/src/IconCloudOffSharp.tsx @@ -8,4 +8,4 @@ const IconCloudOffSharp: React.FC = ({ ...props }) => ( ) -export { IconCloudOffSharp as default } +export default IconCloudOffSharp diff --git a/src/IconCloudOffSharpFilled.tsx b/src/IconCloudOffSharpFilled.tsx index f4760eaac..786a1565e 100644 --- a/src/IconCloudOffSharpFilled.tsx +++ b/src/IconCloudOffSharpFilled.tsx @@ -8,4 +8,4 @@ const IconCloudOffSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconCloudOffSharpFilled as default } +export default IconCloudOffSharpFilled diff --git a/src/IconCloudOutlined.tsx b/src/IconCloudOutlined.tsx index e3f669ce3..f1bd1792c 100644 --- a/src/IconCloudOutlined.tsx +++ b/src/IconCloudOutlined.tsx @@ -8,4 +8,4 @@ const IconCloudOutlined: React.FC = ({ ...props }) => ( ) -export { IconCloudOutlined as default } +export default IconCloudOutlined diff --git a/src/IconCloudOutlinedFilled.tsx b/src/IconCloudOutlinedFilled.tsx index 4ded976e2..44c086678 100644 --- a/src/IconCloudOutlinedFilled.tsx +++ b/src/IconCloudOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconCloudOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconCloudOutlinedFilled as default } +export default IconCloudOutlinedFilled diff --git a/src/IconCloudRounded.tsx b/src/IconCloudRounded.tsx index 870d542bb..dae8ef85d 100644 --- a/src/IconCloudRounded.tsx +++ b/src/IconCloudRounded.tsx @@ -8,4 +8,4 @@ const IconCloudRounded: React.FC = ({ ...props }) => ( ) -export { IconCloudRounded as default } +export default IconCloudRounded diff --git a/src/IconCloudRoundedFilled.tsx b/src/IconCloudRoundedFilled.tsx index cb5f08f4f..f150aa6be 100644 --- a/src/IconCloudRoundedFilled.tsx +++ b/src/IconCloudRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconCloudRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconCloudRoundedFilled as default } +export default IconCloudRoundedFilled diff --git a/src/IconCloudSharp.tsx b/src/IconCloudSharp.tsx index cda644949..f4355ff41 100644 --- a/src/IconCloudSharp.tsx +++ b/src/IconCloudSharp.tsx @@ -8,4 +8,4 @@ const IconCloudSharp: React.FC = ({ ...props }) => ( ) -export { IconCloudSharp as default } +export default IconCloudSharp diff --git a/src/IconCloudSharpFilled.tsx b/src/IconCloudSharpFilled.tsx index 210fd11e2..e9d5cd2f0 100644 --- a/src/IconCloudSharpFilled.tsx +++ b/src/IconCloudSharpFilled.tsx @@ -8,4 +8,4 @@ const IconCloudSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconCloudSharpFilled as default } +export default IconCloudSharpFilled diff --git a/src/IconCloudSyncOutlined.tsx b/src/IconCloudSyncOutlined.tsx index 0902f4a58..45e59db1b 100644 --- a/src/IconCloudSyncOutlined.tsx +++ b/src/IconCloudSyncOutlined.tsx @@ -8,4 +8,4 @@ const IconCloudSyncOutlined: React.FC = ({ ...props }) => ( ) -export { IconCloudSyncOutlined as default } +export default IconCloudSyncOutlined diff --git a/src/IconCloudSyncOutlinedFilled.tsx b/src/IconCloudSyncOutlinedFilled.tsx index c00352e8e..1e585643d 100644 --- a/src/IconCloudSyncOutlinedFilled.tsx +++ b/src/IconCloudSyncOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconCloudSyncOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconCloudSyncOutlinedFilled as default } +export default IconCloudSyncOutlinedFilled diff --git a/src/IconCloudSyncRounded.tsx b/src/IconCloudSyncRounded.tsx index 09f98ccb8..0c8b99697 100644 --- a/src/IconCloudSyncRounded.tsx +++ b/src/IconCloudSyncRounded.tsx @@ -8,4 +8,4 @@ const IconCloudSyncRounded: React.FC = ({ ...props }) => ( ) -export { IconCloudSyncRounded as default } +export default IconCloudSyncRounded diff --git a/src/IconCloudSyncRoundedFilled.tsx b/src/IconCloudSyncRoundedFilled.tsx index fe4243830..5e30426c1 100644 --- a/src/IconCloudSyncRoundedFilled.tsx +++ b/src/IconCloudSyncRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconCloudSyncRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconCloudSyncRoundedFilled as default } +export default IconCloudSyncRoundedFilled diff --git a/src/IconCloudSyncSharp.tsx b/src/IconCloudSyncSharp.tsx index 0a4a8ae06..d2b998cf3 100644 --- a/src/IconCloudSyncSharp.tsx +++ b/src/IconCloudSyncSharp.tsx @@ -8,4 +8,4 @@ const IconCloudSyncSharp: React.FC = ({ ...props }) => ( ) -export { IconCloudSyncSharp as default } +export default IconCloudSyncSharp diff --git a/src/IconCloudSyncSharpFilled.tsx b/src/IconCloudSyncSharpFilled.tsx index c367394a3..d84af882b 100644 --- a/src/IconCloudSyncSharpFilled.tsx +++ b/src/IconCloudSyncSharpFilled.tsx @@ -8,4 +8,4 @@ const IconCloudSyncSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconCloudSyncSharpFilled as default } +export default IconCloudSyncSharpFilled diff --git a/src/IconCloudUploadOutlined.tsx b/src/IconCloudUploadOutlined.tsx index 27e48b4a5..75f469da8 100644 --- a/src/IconCloudUploadOutlined.tsx +++ b/src/IconCloudUploadOutlined.tsx @@ -8,4 +8,4 @@ const IconCloudUploadOutlined: React.FC = ({ ...props }) => ( ) -export { IconCloudUploadOutlined as default } +export default IconCloudUploadOutlined diff --git a/src/IconCloudUploadOutlinedFilled.tsx b/src/IconCloudUploadOutlinedFilled.tsx index 4e2713dba..46a7b7dad 100644 --- a/src/IconCloudUploadOutlinedFilled.tsx +++ b/src/IconCloudUploadOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconCloudUploadOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconCloudUploadOutlinedFilled as default } +export default IconCloudUploadOutlinedFilled diff --git a/src/IconCloudUploadRounded.tsx b/src/IconCloudUploadRounded.tsx index 3ae80e5bb..a0712de72 100644 --- a/src/IconCloudUploadRounded.tsx +++ b/src/IconCloudUploadRounded.tsx @@ -8,4 +8,4 @@ const IconCloudUploadRounded: React.FC = ({ ...props }) => ( ) -export { IconCloudUploadRounded as default } +export default IconCloudUploadRounded diff --git a/src/IconCloudUploadRoundedFilled.tsx b/src/IconCloudUploadRoundedFilled.tsx index 2e4644aef..46c83d18e 100644 --- a/src/IconCloudUploadRoundedFilled.tsx +++ b/src/IconCloudUploadRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconCloudUploadRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconCloudUploadRoundedFilled as default } +export default IconCloudUploadRoundedFilled diff --git a/src/IconCloudUploadSharp.tsx b/src/IconCloudUploadSharp.tsx index 9af6ef5f5..f79891865 100644 --- a/src/IconCloudUploadSharp.tsx +++ b/src/IconCloudUploadSharp.tsx @@ -8,4 +8,4 @@ const IconCloudUploadSharp: React.FC = ({ ...props }) => ( ) -export { IconCloudUploadSharp as default } +export default IconCloudUploadSharp diff --git a/src/IconCloudUploadSharpFilled.tsx b/src/IconCloudUploadSharpFilled.tsx index c309db0c5..908b7a71b 100644 --- a/src/IconCloudUploadSharpFilled.tsx +++ b/src/IconCloudUploadSharpFilled.tsx @@ -8,4 +8,4 @@ const IconCloudUploadSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconCloudUploadSharpFilled as default } +export default IconCloudUploadSharpFilled diff --git a/src/IconCloudySnowingOutlined.tsx b/src/IconCloudySnowingOutlined.tsx index a23411f94..84deda7ed 100644 --- a/src/IconCloudySnowingOutlined.tsx +++ b/src/IconCloudySnowingOutlined.tsx @@ -8,4 +8,4 @@ const IconCloudySnowingOutlined: React.FC = ({ ...props }) => ( ) -export { IconCloudySnowingOutlined as default } +export default IconCloudySnowingOutlined diff --git a/src/IconCloudySnowingOutlinedFilled.tsx b/src/IconCloudySnowingOutlinedFilled.tsx index e7ba32456..5c1d55753 100644 --- a/src/IconCloudySnowingOutlinedFilled.tsx +++ b/src/IconCloudySnowingOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconCloudySnowingOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconCloudySnowingOutlinedFilled as default } +export default IconCloudySnowingOutlinedFilled diff --git a/src/IconCloudySnowingRounded.tsx b/src/IconCloudySnowingRounded.tsx index 3f7e63f86..52e0852c0 100644 --- a/src/IconCloudySnowingRounded.tsx +++ b/src/IconCloudySnowingRounded.tsx @@ -8,4 +8,4 @@ const IconCloudySnowingRounded: React.FC = ({ ...props }) => ( ) -export { IconCloudySnowingRounded as default } +export default IconCloudySnowingRounded diff --git a/src/IconCloudySnowingRoundedFilled.tsx b/src/IconCloudySnowingRoundedFilled.tsx index b3f2b2653..528d991fa 100644 --- a/src/IconCloudySnowingRoundedFilled.tsx +++ b/src/IconCloudySnowingRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconCloudySnowingRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconCloudySnowingRoundedFilled as default } +export default IconCloudySnowingRoundedFilled diff --git a/src/IconCloudySnowingSharp.tsx b/src/IconCloudySnowingSharp.tsx index bd404a151..037020882 100644 --- a/src/IconCloudySnowingSharp.tsx +++ b/src/IconCloudySnowingSharp.tsx @@ -8,4 +8,4 @@ const IconCloudySnowingSharp: React.FC = ({ ...props }) => ( ) -export { IconCloudySnowingSharp as default } +export default IconCloudySnowingSharp diff --git a/src/IconCloudySnowingSharpFilled.tsx b/src/IconCloudySnowingSharpFilled.tsx index 3351bb1b7..3f01c01b3 100644 --- a/src/IconCloudySnowingSharpFilled.tsx +++ b/src/IconCloudySnowingSharpFilled.tsx @@ -8,4 +8,4 @@ const IconCloudySnowingSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconCloudySnowingSharpFilled as default } +export default IconCloudySnowingSharpFilled diff --git a/src/IconCo2Outlined.tsx b/src/IconCo2Outlined.tsx index cabd0af99..945178fd5 100644 --- a/src/IconCo2Outlined.tsx +++ b/src/IconCo2Outlined.tsx @@ -8,4 +8,4 @@ const IconCo2Outlined: React.FC = ({ ...props }) => ( ) -export { IconCo2Outlined as default } +export default IconCo2Outlined diff --git a/src/IconCo2OutlinedFilled.tsx b/src/IconCo2OutlinedFilled.tsx index 9d83a6f0a..baaad1f6a 100644 --- a/src/IconCo2OutlinedFilled.tsx +++ b/src/IconCo2OutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconCo2OutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconCo2OutlinedFilled as default } +export default IconCo2OutlinedFilled diff --git a/src/IconCo2Rounded.tsx b/src/IconCo2Rounded.tsx index 0d3890e09..592a1510c 100644 --- a/src/IconCo2Rounded.tsx +++ b/src/IconCo2Rounded.tsx @@ -8,4 +8,4 @@ const IconCo2Rounded: React.FC = ({ ...props }) => ( ) -export { IconCo2Rounded as default } +export default IconCo2Rounded diff --git a/src/IconCo2RoundedFilled.tsx b/src/IconCo2RoundedFilled.tsx index a32d37f0b..4c48c23ca 100644 --- a/src/IconCo2RoundedFilled.tsx +++ b/src/IconCo2RoundedFilled.tsx @@ -8,4 +8,4 @@ const IconCo2RoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconCo2RoundedFilled as default } +export default IconCo2RoundedFilled diff --git a/src/IconCo2Sharp.tsx b/src/IconCo2Sharp.tsx index 6c5b57eae..208ee8880 100644 --- a/src/IconCo2Sharp.tsx +++ b/src/IconCo2Sharp.tsx @@ -8,4 +8,4 @@ const IconCo2Sharp: React.FC = ({ ...props }) => ( ) -export { IconCo2Sharp as default } +export default IconCo2Sharp diff --git a/src/IconCo2SharpFilled.tsx b/src/IconCo2SharpFilled.tsx index 1270aa240..272ff097b 100644 --- a/src/IconCo2SharpFilled.tsx +++ b/src/IconCo2SharpFilled.tsx @@ -8,4 +8,4 @@ const IconCo2SharpFilled: React.FC = ({ ...props }) => ( ) -export { IconCo2SharpFilled as default } +export default IconCo2SharpFilled diff --git a/src/IconCoPresentOutlined.tsx b/src/IconCoPresentOutlined.tsx index 2d26eaf19..e4b8f77ed 100644 --- a/src/IconCoPresentOutlined.tsx +++ b/src/IconCoPresentOutlined.tsx @@ -8,4 +8,4 @@ const IconCoPresentOutlined: React.FC = ({ ...props }) => ( ) -export { IconCoPresentOutlined as default } +export default IconCoPresentOutlined diff --git a/src/IconCoPresentOutlinedFilled.tsx b/src/IconCoPresentOutlinedFilled.tsx index f5eb81098..61f189732 100644 --- a/src/IconCoPresentOutlinedFilled.tsx +++ b/src/IconCoPresentOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconCoPresentOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconCoPresentOutlinedFilled as default } +export default IconCoPresentOutlinedFilled diff --git a/src/IconCoPresentRounded.tsx b/src/IconCoPresentRounded.tsx index a1bfabeb5..42e45fc34 100644 --- a/src/IconCoPresentRounded.tsx +++ b/src/IconCoPresentRounded.tsx @@ -8,4 +8,4 @@ const IconCoPresentRounded: React.FC = ({ ...props }) => ( ) -export { IconCoPresentRounded as default } +export default IconCoPresentRounded diff --git a/src/IconCoPresentRoundedFilled.tsx b/src/IconCoPresentRoundedFilled.tsx index 28fe087c9..b9feb305c 100644 --- a/src/IconCoPresentRoundedFilled.tsx +++ b/src/IconCoPresentRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconCoPresentRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconCoPresentRoundedFilled as default } +export default IconCoPresentRoundedFilled diff --git a/src/IconCoPresentSharp.tsx b/src/IconCoPresentSharp.tsx index 851483387..667179056 100644 --- a/src/IconCoPresentSharp.tsx +++ b/src/IconCoPresentSharp.tsx @@ -8,4 +8,4 @@ const IconCoPresentSharp: React.FC = ({ ...props }) => ( ) -export { IconCoPresentSharp as default } +export default IconCoPresentSharp diff --git a/src/IconCoPresentSharpFilled.tsx b/src/IconCoPresentSharpFilled.tsx index d8828fe0f..840ce373d 100644 --- a/src/IconCoPresentSharpFilled.tsx +++ b/src/IconCoPresentSharpFilled.tsx @@ -8,4 +8,4 @@ const IconCoPresentSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconCoPresentSharpFilled as default } +export default IconCoPresentSharpFilled diff --git a/src/IconCodeBlocksOutlined.tsx b/src/IconCodeBlocksOutlined.tsx index ab792838d..665b3b9fa 100644 --- a/src/IconCodeBlocksOutlined.tsx +++ b/src/IconCodeBlocksOutlined.tsx @@ -8,4 +8,4 @@ const IconCodeBlocksOutlined: React.FC = ({ ...props }) => ( ) -export { IconCodeBlocksOutlined as default } +export default IconCodeBlocksOutlined diff --git a/src/IconCodeBlocksOutlinedFilled.tsx b/src/IconCodeBlocksOutlinedFilled.tsx index ae60749b5..b18a7c246 100644 --- a/src/IconCodeBlocksOutlinedFilled.tsx +++ b/src/IconCodeBlocksOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconCodeBlocksOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconCodeBlocksOutlinedFilled as default } +export default IconCodeBlocksOutlinedFilled diff --git a/src/IconCodeBlocksRounded.tsx b/src/IconCodeBlocksRounded.tsx index 43a3e4c35..193ad935e 100644 --- a/src/IconCodeBlocksRounded.tsx +++ b/src/IconCodeBlocksRounded.tsx @@ -8,4 +8,4 @@ const IconCodeBlocksRounded: React.FC = ({ ...props }) => ( ) -export { IconCodeBlocksRounded as default } +export default IconCodeBlocksRounded diff --git a/src/IconCodeBlocksRoundedFilled.tsx b/src/IconCodeBlocksRoundedFilled.tsx index e48170ae1..9129aa0d7 100644 --- a/src/IconCodeBlocksRoundedFilled.tsx +++ b/src/IconCodeBlocksRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconCodeBlocksRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconCodeBlocksRoundedFilled as default } +export default IconCodeBlocksRoundedFilled diff --git a/src/IconCodeBlocksSharp.tsx b/src/IconCodeBlocksSharp.tsx index 8379935a2..db2edc695 100644 --- a/src/IconCodeBlocksSharp.tsx +++ b/src/IconCodeBlocksSharp.tsx @@ -8,4 +8,4 @@ const IconCodeBlocksSharp: React.FC = ({ ...props }) => ( ) -export { IconCodeBlocksSharp as default } +export default IconCodeBlocksSharp diff --git a/src/IconCodeBlocksSharpFilled.tsx b/src/IconCodeBlocksSharpFilled.tsx index c94215b03..54c7aec7c 100644 --- a/src/IconCodeBlocksSharpFilled.tsx +++ b/src/IconCodeBlocksSharpFilled.tsx @@ -8,4 +8,4 @@ const IconCodeBlocksSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconCodeBlocksSharpFilled as default } +export default IconCodeBlocksSharpFilled diff --git a/src/IconCodeOffOutlined.tsx b/src/IconCodeOffOutlined.tsx index 642f7865f..a1462df9b 100644 --- a/src/IconCodeOffOutlined.tsx +++ b/src/IconCodeOffOutlined.tsx @@ -8,4 +8,4 @@ const IconCodeOffOutlined: React.FC = ({ ...props }) => ( ) -export { IconCodeOffOutlined as default } +export default IconCodeOffOutlined diff --git a/src/IconCodeOffOutlinedFilled.tsx b/src/IconCodeOffOutlinedFilled.tsx index 037092dda..abcf4e1dd 100644 --- a/src/IconCodeOffOutlinedFilled.tsx +++ b/src/IconCodeOffOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconCodeOffOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconCodeOffOutlinedFilled as default } +export default IconCodeOffOutlinedFilled diff --git a/src/IconCodeOffRounded.tsx b/src/IconCodeOffRounded.tsx index 457b3ccd8..395122f1a 100644 --- a/src/IconCodeOffRounded.tsx +++ b/src/IconCodeOffRounded.tsx @@ -8,4 +8,4 @@ const IconCodeOffRounded: React.FC = ({ ...props }) => ( ) -export { IconCodeOffRounded as default } +export default IconCodeOffRounded diff --git a/src/IconCodeOffRoundedFilled.tsx b/src/IconCodeOffRoundedFilled.tsx index 3e3bc984b..ad7f5386b 100644 --- a/src/IconCodeOffRoundedFilled.tsx +++ b/src/IconCodeOffRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconCodeOffRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconCodeOffRoundedFilled as default } +export default IconCodeOffRoundedFilled diff --git a/src/IconCodeOffSharp.tsx b/src/IconCodeOffSharp.tsx index 26dcb3a18..269058f24 100644 --- a/src/IconCodeOffSharp.tsx +++ b/src/IconCodeOffSharp.tsx @@ -8,4 +8,4 @@ const IconCodeOffSharp: React.FC = ({ ...props }) => ( ) -export { IconCodeOffSharp as default } +export default IconCodeOffSharp diff --git a/src/IconCodeOffSharpFilled.tsx b/src/IconCodeOffSharpFilled.tsx index 2eea314a9..9bbf770fc 100644 --- a/src/IconCodeOffSharpFilled.tsx +++ b/src/IconCodeOffSharpFilled.tsx @@ -8,4 +8,4 @@ const IconCodeOffSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconCodeOffSharpFilled as default } +export default IconCodeOffSharpFilled diff --git a/src/IconCodeOutlined.tsx b/src/IconCodeOutlined.tsx index b6867e373..94747e2ef 100644 --- a/src/IconCodeOutlined.tsx +++ b/src/IconCodeOutlined.tsx @@ -8,4 +8,4 @@ const IconCodeOutlined: React.FC = ({ ...props }) => ( ) -export { IconCodeOutlined as default } +export default IconCodeOutlined diff --git a/src/IconCodeOutlinedFilled.tsx b/src/IconCodeOutlinedFilled.tsx index 256cc24f6..9b995eeef 100644 --- a/src/IconCodeOutlinedFilled.tsx +++ b/src/IconCodeOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconCodeOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconCodeOutlinedFilled as default } +export default IconCodeOutlinedFilled diff --git a/src/IconCodeRounded.tsx b/src/IconCodeRounded.tsx index ca89081ea..3bcd68ffe 100644 --- a/src/IconCodeRounded.tsx +++ b/src/IconCodeRounded.tsx @@ -8,4 +8,4 @@ const IconCodeRounded: React.FC = ({ ...props }) => ( ) -export { IconCodeRounded as default } +export default IconCodeRounded diff --git a/src/IconCodeRoundedFilled.tsx b/src/IconCodeRoundedFilled.tsx index 3b95b07a8..d52bb9759 100644 --- a/src/IconCodeRoundedFilled.tsx +++ b/src/IconCodeRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconCodeRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconCodeRoundedFilled as default } +export default IconCodeRoundedFilled diff --git a/src/IconCodeSharp.tsx b/src/IconCodeSharp.tsx index b918735ff..834ad3066 100644 --- a/src/IconCodeSharp.tsx +++ b/src/IconCodeSharp.tsx @@ -8,4 +8,4 @@ const IconCodeSharp: React.FC = ({ ...props }) => ( ) -export { IconCodeSharp as default } +export default IconCodeSharp diff --git a/src/IconCodeSharpFilled.tsx b/src/IconCodeSharpFilled.tsx index c9efb31b3..f162a6eea 100644 --- a/src/IconCodeSharpFilled.tsx +++ b/src/IconCodeSharpFilled.tsx @@ -8,4 +8,4 @@ const IconCodeSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconCodeSharpFilled as default } +export default IconCodeSharpFilled diff --git a/src/IconCoffeeMakerOutlined.tsx b/src/IconCoffeeMakerOutlined.tsx index d55f96db0..20ae19c29 100644 --- a/src/IconCoffeeMakerOutlined.tsx +++ b/src/IconCoffeeMakerOutlined.tsx @@ -8,4 +8,4 @@ const IconCoffeeMakerOutlined: React.FC = ({ ...props }) => ( ) -export { IconCoffeeMakerOutlined as default } +export default IconCoffeeMakerOutlined diff --git a/src/IconCoffeeMakerOutlinedFilled.tsx b/src/IconCoffeeMakerOutlinedFilled.tsx index 43245e209..8351b46d2 100644 --- a/src/IconCoffeeMakerOutlinedFilled.tsx +++ b/src/IconCoffeeMakerOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconCoffeeMakerOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconCoffeeMakerOutlinedFilled as default } +export default IconCoffeeMakerOutlinedFilled diff --git a/src/IconCoffeeMakerRounded.tsx b/src/IconCoffeeMakerRounded.tsx index 638db72a8..b6a658e6f 100644 --- a/src/IconCoffeeMakerRounded.tsx +++ b/src/IconCoffeeMakerRounded.tsx @@ -8,4 +8,4 @@ const IconCoffeeMakerRounded: React.FC = ({ ...props }) => ( ) -export { IconCoffeeMakerRounded as default } +export default IconCoffeeMakerRounded diff --git a/src/IconCoffeeMakerRoundedFilled.tsx b/src/IconCoffeeMakerRoundedFilled.tsx index fd265b31c..443600da5 100644 --- a/src/IconCoffeeMakerRoundedFilled.tsx +++ b/src/IconCoffeeMakerRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconCoffeeMakerRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconCoffeeMakerRoundedFilled as default } +export default IconCoffeeMakerRoundedFilled diff --git a/src/IconCoffeeMakerSharp.tsx b/src/IconCoffeeMakerSharp.tsx index 840c5433c..0d006af53 100644 --- a/src/IconCoffeeMakerSharp.tsx +++ b/src/IconCoffeeMakerSharp.tsx @@ -8,4 +8,4 @@ const IconCoffeeMakerSharp: React.FC = ({ ...props }) => ( ) -export { IconCoffeeMakerSharp as default } +export default IconCoffeeMakerSharp diff --git a/src/IconCoffeeMakerSharpFilled.tsx b/src/IconCoffeeMakerSharpFilled.tsx index 5ea362b07..978ac44f3 100644 --- a/src/IconCoffeeMakerSharpFilled.tsx +++ b/src/IconCoffeeMakerSharpFilled.tsx @@ -8,4 +8,4 @@ const IconCoffeeMakerSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconCoffeeMakerSharpFilled as default } +export default IconCoffeeMakerSharpFilled diff --git a/src/IconCoffeeOutlined.tsx b/src/IconCoffeeOutlined.tsx index dacc06f6c..51dbb8343 100644 --- a/src/IconCoffeeOutlined.tsx +++ b/src/IconCoffeeOutlined.tsx @@ -8,4 +8,4 @@ const IconCoffeeOutlined: React.FC = ({ ...props }) => ( ) -export { IconCoffeeOutlined as default } +export default IconCoffeeOutlined diff --git a/src/IconCoffeeOutlinedFilled.tsx b/src/IconCoffeeOutlinedFilled.tsx index 9f2eb9ec8..c277dc37b 100644 --- a/src/IconCoffeeOutlinedFilled.tsx +++ b/src/IconCoffeeOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconCoffeeOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconCoffeeOutlinedFilled as default } +export default IconCoffeeOutlinedFilled diff --git a/src/IconCoffeeRounded.tsx b/src/IconCoffeeRounded.tsx index 7d3cad622..8f5b5351e 100644 --- a/src/IconCoffeeRounded.tsx +++ b/src/IconCoffeeRounded.tsx @@ -8,4 +8,4 @@ const IconCoffeeRounded: React.FC = ({ ...props }) => ( ) -export { IconCoffeeRounded as default } +export default IconCoffeeRounded diff --git a/src/IconCoffeeRoundedFilled.tsx b/src/IconCoffeeRoundedFilled.tsx index c32e646b3..23b4ec972 100644 --- a/src/IconCoffeeRoundedFilled.tsx +++ b/src/IconCoffeeRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconCoffeeRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconCoffeeRoundedFilled as default } +export default IconCoffeeRoundedFilled diff --git a/src/IconCoffeeSharp.tsx b/src/IconCoffeeSharp.tsx index b5fe5adeb..9f8575035 100644 --- a/src/IconCoffeeSharp.tsx +++ b/src/IconCoffeeSharp.tsx @@ -8,4 +8,4 @@ const IconCoffeeSharp: React.FC = ({ ...props }) => ( ) -export { IconCoffeeSharp as default } +export default IconCoffeeSharp diff --git a/src/IconCoffeeSharpFilled.tsx b/src/IconCoffeeSharpFilled.tsx index 789381b28..09281a5ce 100644 --- a/src/IconCoffeeSharpFilled.tsx +++ b/src/IconCoffeeSharpFilled.tsx @@ -8,4 +8,4 @@ const IconCoffeeSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconCoffeeSharpFilled as default } +export default IconCoffeeSharpFilled diff --git a/src/IconCognitionOutlined.tsx b/src/IconCognitionOutlined.tsx index 4bc50f6ca..5dc6efa2f 100644 --- a/src/IconCognitionOutlined.tsx +++ b/src/IconCognitionOutlined.tsx @@ -8,4 +8,4 @@ const IconCognitionOutlined: React.FC = ({ ...props }) => ( ) -export { IconCognitionOutlined as default } +export default IconCognitionOutlined diff --git a/src/IconCognitionOutlinedFilled.tsx b/src/IconCognitionOutlinedFilled.tsx index 4b941eb7d..1300e999f 100644 --- a/src/IconCognitionOutlinedFilled.tsx +++ b/src/IconCognitionOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconCognitionOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconCognitionOutlinedFilled as default } +export default IconCognitionOutlinedFilled diff --git a/src/IconCognitionRounded.tsx b/src/IconCognitionRounded.tsx index 2625758fa..d8561c440 100644 --- a/src/IconCognitionRounded.tsx +++ b/src/IconCognitionRounded.tsx @@ -8,4 +8,4 @@ const IconCognitionRounded: React.FC = ({ ...props }) => ( ) -export { IconCognitionRounded as default } +export default IconCognitionRounded diff --git a/src/IconCognitionRoundedFilled.tsx b/src/IconCognitionRoundedFilled.tsx index 9aa961c5b..f9811f4b0 100644 --- a/src/IconCognitionRoundedFilled.tsx +++ b/src/IconCognitionRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconCognitionRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconCognitionRoundedFilled as default } +export default IconCognitionRoundedFilled diff --git a/src/IconCognitionSharp.tsx b/src/IconCognitionSharp.tsx index 865874488..feba31988 100644 --- a/src/IconCognitionSharp.tsx +++ b/src/IconCognitionSharp.tsx @@ -8,4 +8,4 @@ const IconCognitionSharp: React.FC = ({ ...props }) => ( ) -export { IconCognitionSharp as default } +export default IconCognitionSharp diff --git a/src/IconCognitionSharpFilled.tsx b/src/IconCognitionSharpFilled.tsx index 929b789aa..960827328 100644 --- a/src/IconCognitionSharpFilled.tsx +++ b/src/IconCognitionSharpFilled.tsx @@ -8,4 +8,4 @@ const IconCognitionSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconCognitionSharpFilled as default } +export default IconCognitionSharpFilled diff --git a/src/IconCollapseAllOutlined.tsx b/src/IconCollapseAllOutlined.tsx index a742284ec..54ccb70b4 100644 --- a/src/IconCollapseAllOutlined.tsx +++ b/src/IconCollapseAllOutlined.tsx @@ -8,4 +8,4 @@ const IconCollapseAllOutlined: React.FC = ({ ...props }) => ( ) -export { IconCollapseAllOutlined as default } +export default IconCollapseAllOutlined diff --git a/src/IconCollapseAllOutlinedFilled.tsx b/src/IconCollapseAllOutlinedFilled.tsx index 08b9603b8..437153b06 100644 --- a/src/IconCollapseAllOutlinedFilled.tsx +++ b/src/IconCollapseAllOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconCollapseAllOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconCollapseAllOutlinedFilled as default } +export default IconCollapseAllOutlinedFilled diff --git a/src/IconCollapseAllRounded.tsx b/src/IconCollapseAllRounded.tsx index 6ad393d30..3c7aaa18d 100644 --- a/src/IconCollapseAllRounded.tsx +++ b/src/IconCollapseAllRounded.tsx @@ -8,4 +8,4 @@ const IconCollapseAllRounded: React.FC = ({ ...props }) => ( ) -export { IconCollapseAllRounded as default } +export default IconCollapseAllRounded diff --git a/src/IconCollapseAllRoundedFilled.tsx b/src/IconCollapseAllRoundedFilled.tsx index 6edc930f4..ceb3365ef 100644 --- a/src/IconCollapseAllRoundedFilled.tsx +++ b/src/IconCollapseAllRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconCollapseAllRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconCollapseAllRoundedFilled as default } +export default IconCollapseAllRoundedFilled diff --git a/src/IconCollapseAllSharp.tsx b/src/IconCollapseAllSharp.tsx index 701b7a4f4..5d4ba0c1e 100644 --- a/src/IconCollapseAllSharp.tsx +++ b/src/IconCollapseAllSharp.tsx @@ -8,4 +8,4 @@ const IconCollapseAllSharp: React.FC = ({ ...props }) => ( ) -export { IconCollapseAllSharp as default } +export default IconCollapseAllSharp diff --git a/src/IconCollapseAllSharpFilled.tsx b/src/IconCollapseAllSharpFilled.tsx index 486b32d28..7d43d8ffc 100644 --- a/src/IconCollapseAllSharpFilled.tsx +++ b/src/IconCollapseAllSharpFilled.tsx @@ -8,4 +8,4 @@ const IconCollapseAllSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconCollapseAllSharpFilled as default } +export default IconCollapseAllSharpFilled diff --git a/src/IconCollapseContentOutlined.tsx b/src/IconCollapseContentOutlined.tsx index 6e62d8689..fc9111fb5 100644 --- a/src/IconCollapseContentOutlined.tsx +++ b/src/IconCollapseContentOutlined.tsx @@ -8,4 +8,4 @@ const IconCollapseContentOutlined: React.FC = ({ ...props }) => ( ) -export { IconCollapseContentOutlined as default } +export default IconCollapseContentOutlined diff --git a/src/IconCollapseContentOutlinedFilled.tsx b/src/IconCollapseContentOutlinedFilled.tsx index fd9a16d28..d72cd4679 100644 --- a/src/IconCollapseContentOutlinedFilled.tsx +++ b/src/IconCollapseContentOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconCollapseContentOutlinedFilled: React.FC = ({ ) -export { IconCollapseContentOutlinedFilled as default } +export default IconCollapseContentOutlinedFilled diff --git a/src/IconCollapseContentRounded.tsx b/src/IconCollapseContentRounded.tsx index 748fecfe6..2f9d48dbd 100644 --- a/src/IconCollapseContentRounded.tsx +++ b/src/IconCollapseContentRounded.tsx @@ -8,4 +8,4 @@ const IconCollapseContentRounded: React.FC = ({ ...props }) => ( ) -export { IconCollapseContentRounded as default } +export default IconCollapseContentRounded diff --git a/src/IconCollapseContentRoundedFilled.tsx b/src/IconCollapseContentRoundedFilled.tsx index 783b7cbaf..dc3232363 100644 --- a/src/IconCollapseContentRoundedFilled.tsx +++ b/src/IconCollapseContentRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconCollapseContentRoundedFilled: React.FC = ({ ) -export { IconCollapseContentRoundedFilled as default } +export default IconCollapseContentRoundedFilled diff --git a/src/IconCollapseContentSharp.tsx b/src/IconCollapseContentSharp.tsx index aba51fb00..28c3a415e 100644 --- a/src/IconCollapseContentSharp.tsx +++ b/src/IconCollapseContentSharp.tsx @@ -8,4 +8,4 @@ const IconCollapseContentSharp: React.FC = ({ ...props }) => ( ) -export { IconCollapseContentSharp as default } +export default IconCollapseContentSharp diff --git a/src/IconCollapseContentSharpFilled.tsx b/src/IconCollapseContentSharpFilled.tsx index d7d1e2ae8..ec8c2a157 100644 --- a/src/IconCollapseContentSharpFilled.tsx +++ b/src/IconCollapseContentSharpFilled.tsx @@ -8,4 +8,4 @@ const IconCollapseContentSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconCollapseContentSharpFilled as default } +export default IconCollapseContentSharpFilled diff --git a/src/IconCollectionsBookmarkOutlined.tsx b/src/IconCollectionsBookmarkOutlined.tsx index d1eea2c84..d8ff23331 100644 --- a/src/IconCollectionsBookmarkOutlined.tsx +++ b/src/IconCollectionsBookmarkOutlined.tsx @@ -8,4 +8,4 @@ const IconCollectionsBookmarkOutlined: React.FC = ({ ...props }) => ( ) -export { IconCollectionsBookmarkOutlined as default } +export default IconCollectionsBookmarkOutlined diff --git a/src/IconCollectionsBookmarkOutlinedFilled.tsx b/src/IconCollectionsBookmarkOutlinedFilled.tsx index fb1f9e3fd..78a220e4b 100644 --- a/src/IconCollectionsBookmarkOutlinedFilled.tsx +++ b/src/IconCollectionsBookmarkOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconCollectionsBookmarkOutlinedFilled: React.FC = ({ ) -export { IconCollectionsBookmarkOutlinedFilled as default } +export default IconCollectionsBookmarkOutlinedFilled diff --git a/src/IconCollectionsBookmarkRounded.tsx b/src/IconCollectionsBookmarkRounded.tsx index 7dac1549d..06d9928fe 100644 --- a/src/IconCollectionsBookmarkRounded.tsx +++ b/src/IconCollectionsBookmarkRounded.tsx @@ -8,4 +8,4 @@ const IconCollectionsBookmarkRounded: React.FC = ({ ...props }) => ( ) -export { IconCollectionsBookmarkRounded as default } +export default IconCollectionsBookmarkRounded diff --git a/src/IconCollectionsBookmarkRoundedFilled.tsx b/src/IconCollectionsBookmarkRoundedFilled.tsx index ea00841af..57f342821 100644 --- a/src/IconCollectionsBookmarkRoundedFilled.tsx +++ b/src/IconCollectionsBookmarkRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconCollectionsBookmarkRoundedFilled: React.FC = ({ ) -export { IconCollectionsBookmarkRoundedFilled as default } +export default IconCollectionsBookmarkRoundedFilled diff --git a/src/IconCollectionsBookmarkSharp.tsx b/src/IconCollectionsBookmarkSharp.tsx index a0825d17c..d39934179 100644 --- a/src/IconCollectionsBookmarkSharp.tsx +++ b/src/IconCollectionsBookmarkSharp.tsx @@ -8,4 +8,4 @@ const IconCollectionsBookmarkSharp: React.FC = ({ ...props }) => ( ) -export { IconCollectionsBookmarkSharp as default } +export default IconCollectionsBookmarkSharp diff --git a/src/IconCollectionsBookmarkSharpFilled.tsx b/src/IconCollectionsBookmarkSharpFilled.tsx index 7a7a8e6b5..7c4065e74 100644 --- a/src/IconCollectionsBookmarkSharpFilled.tsx +++ b/src/IconCollectionsBookmarkSharpFilled.tsx @@ -10,4 +10,4 @@ const IconCollectionsBookmarkSharpFilled: React.FC = ({ ) -export { IconCollectionsBookmarkSharpFilled as default } +export default IconCollectionsBookmarkSharpFilled diff --git a/src/IconColorizeOutlined.tsx b/src/IconColorizeOutlined.tsx index d20aae15f..7ac324e49 100644 --- a/src/IconColorizeOutlined.tsx +++ b/src/IconColorizeOutlined.tsx @@ -8,4 +8,4 @@ const IconColorizeOutlined: React.FC = ({ ...props }) => ( ) -export { IconColorizeOutlined as default } +export default IconColorizeOutlined diff --git a/src/IconColorizeOutlinedFilled.tsx b/src/IconColorizeOutlinedFilled.tsx index 8e81abdd9..147d1e7d0 100644 --- a/src/IconColorizeOutlinedFilled.tsx +++ b/src/IconColorizeOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconColorizeOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconColorizeOutlinedFilled as default } +export default IconColorizeOutlinedFilled diff --git a/src/IconColorizeRounded.tsx b/src/IconColorizeRounded.tsx index 54f3184aa..813a9ceb1 100644 --- a/src/IconColorizeRounded.tsx +++ b/src/IconColorizeRounded.tsx @@ -8,4 +8,4 @@ const IconColorizeRounded: React.FC = ({ ...props }) => ( ) -export { IconColorizeRounded as default } +export default IconColorizeRounded diff --git a/src/IconColorizeRoundedFilled.tsx b/src/IconColorizeRoundedFilled.tsx index 17bd9063a..b5182908b 100644 --- a/src/IconColorizeRoundedFilled.tsx +++ b/src/IconColorizeRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconColorizeRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconColorizeRoundedFilled as default } +export default IconColorizeRoundedFilled diff --git a/src/IconColorizeSharp.tsx b/src/IconColorizeSharp.tsx index b3fc19507..628eba76e 100644 --- a/src/IconColorizeSharp.tsx +++ b/src/IconColorizeSharp.tsx @@ -8,4 +8,4 @@ const IconColorizeSharp: React.FC = ({ ...props }) => ( ) -export { IconColorizeSharp as default } +export default IconColorizeSharp diff --git a/src/IconColorizeSharpFilled.tsx b/src/IconColorizeSharpFilled.tsx index 243adca41..680fcbde5 100644 --- a/src/IconColorizeSharpFilled.tsx +++ b/src/IconColorizeSharpFilled.tsx @@ -8,4 +8,4 @@ const IconColorizeSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconColorizeSharpFilled as default } +export default IconColorizeSharpFilled diff --git a/src/IconColorsOutlined.tsx b/src/IconColorsOutlined.tsx index c289ea0ba..5417b0023 100644 --- a/src/IconColorsOutlined.tsx +++ b/src/IconColorsOutlined.tsx @@ -8,4 +8,4 @@ const IconColorsOutlined: React.FC = ({ ...props }) => ( ) -export { IconColorsOutlined as default } +export default IconColorsOutlined diff --git a/src/IconColorsOutlinedFilled.tsx b/src/IconColorsOutlinedFilled.tsx index 6a5fcc769..e6e3b74de 100644 --- a/src/IconColorsOutlinedFilled.tsx +++ b/src/IconColorsOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconColorsOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconColorsOutlinedFilled as default } +export default IconColorsOutlinedFilled diff --git a/src/IconColorsRounded.tsx b/src/IconColorsRounded.tsx index db5ce0444..c340c2659 100644 --- a/src/IconColorsRounded.tsx +++ b/src/IconColorsRounded.tsx @@ -8,4 +8,4 @@ const IconColorsRounded: React.FC = ({ ...props }) => ( ) -export { IconColorsRounded as default } +export default IconColorsRounded diff --git a/src/IconColorsRoundedFilled.tsx b/src/IconColorsRoundedFilled.tsx index d990e48ff..ce2b24f23 100644 --- a/src/IconColorsRoundedFilled.tsx +++ b/src/IconColorsRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconColorsRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconColorsRoundedFilled as default } +export default IconColorsRoundedFilled diff --git a/src/IconColorsSharp.tsx b/src/IconColorsSharp.tsx index 30e6d44f4..7a64903ad 100644 --- a/src/IconColorsSharp.tsx +++ b/src/IconColorsSharp.tsx @@ -8,4 +8,4 @@ const IconColorsSharp: React.FC = ({ ...props }) => ( ) -export { IconColorsSharp as default } +export default IconColorsSharp diff --git a/src/IconColorsSharpFilled.tsx b/src/IconColorsSharpFilled.tsx index 9146a0d65..163d700fd 100644 --- a/src/IconColorsSharpFilled.tsx +++ b/src/IconColorsSharpFilled.tsx @@ -8,4 +8,4 @@ const IconColorsSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconColorsSharpFilled as default } +export default IconColorsSharpFilled diff --git a/src/IconCombineColumnsOutlined.tsx b/src/IconCombineColumnsOutlined.tsx index 977c4e204..736861d99 100644 --- a/src/IconCombineColumnsOutlined.tsx +++ b/src/IconCombineColumnsOutlined.tsx @@ -8,4 +8,4 @@ const IconCombineColumnsOutlined: React.FC = ({ ...props }) => ( ) -export { IconCombineColumnsOutlined as default } +export default IconCombineColumnsOutlined diff --git a/src/IconCombineColumnsOutlinedFilled.tsx b/src/IconCombineColumnsOutlinedFilled.tsx index e0db6db68..d7ed6d6b4 100644 --- a/src/IconCombineColumnsOutlinedFilled.tsx +++ b/src/IconCombineColumnsOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconCombineColumnsOutlinedFilled: React.FC = ({ ) -export { IconCombineColumnsOutlinedFilled as default } +export default IconCombineColumnsOutlinedFilled diff --git a/src/IconCombineColumnsRounded.tsx b/src/IconCombineColumnsRounded.tsx index fae4bb60c..03bf8d8b6 100644 --- a/src/IconCombineColumnsRounded.tsx +++ b/src/IconCombineColumnsRounded.tsx @@ -8,4 +8,4 @@ const IconCombineColumnsRounded: React.FC = ({ ...props }) => ( ) -export { IconCombineColumnsRounded as default } +export default IconCombineColumnsRounded diff --git a/src/IconCombineColumnsRoundedFilled.tsx b/src/IconCombineColumnsRoundedFilled.tsx index ef9240aed..ebcc6a3ef 100644 --- a/src/IconCombineColumnsRoundedFilled.tsx +++ b/src/IconCombineColumnsRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconCombineColumnsRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconCombineColumnsRoundedFilled as default } +export default IconCombineColumnsRoundedFilled diff --git a/src/IconCombineColumnsSharp.tsx b/src/IconCombineColumnsSharp.tsx index 16a0c86e8..cad1e2551 100644 --- a/src/IconCombineColumnsSharp.tsx +++ b/src/IconCombineColumnsSharp.tsx @@ -8,4 +8,4 @@ const IconCombineColumnsSharp: React.FC = ({ ...props }) => ( ) -export { IconCombineColumnsSharp as default } +export default IconCombineColumnsSharp diff --git a/src/IconCombineColumnsSharpFilled.tsx b/src/IconCombineColumnsSharpFilled.tsx index d52da8ce5..11e715056 100644 --- a/src/IconCombineColumnsSharpFilled.tsx +++ b/src/IconCombineColumnsSharpFilled.tsx @@ -8,4 +8,4 @@ const IconCombineColumnsSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconCombineColumnsSharpFilled as default } +export default IconCombineColumnsSharpFilled diff --git a/src/IconComedyMaskOutlined.tsx b/src/IconComedyMaskOutlined.tsx index 631f0cbb6..7e8f860b6 100644 --- a/src/IconComedyMaskOutlined.tsx +++ b/src/IconComedyMaskOutlined.tsx @@ -8,4 +8,4 @@ const IconComedyMaskOutlined: React.FC = ({ ...props }) => ( ) -export { IconComedyMaskOutlined as default } +export default IconComedyMaskOutlined diff --git a/src/IconComedyMaskOutlinedFilled.tsx b/src/IconComedyMaskOutlinedFilled.tsx index 36f9e7675..7b4a2b7ab 100644 --- a/src/IconComedyMaskOutlinedFilled.tsx +++ b/src/IconComedyMaskOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconComedyMaskOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconComedyMaskOutlinedFilled as default } +export default IconComedyMaskOutlinedFilled diff --git a/src/IconComedyMaskRounded.tsx b/src/IconComedyMaskRounded.tsx index 62bb71528..a24980681 100644 --- a/src/IconComedyMaskRounded.tsx +++ b/src/IconComedyMaskRounded.tsx @@ -8,4 +8,4 @@ const IconComedyMaskRounded: React.FC = ({ ...props }) => ( ) -export { IconComedyMaskRounded as default } +export default IconComedyMaskRounded diff --git a/src/IconComedyMaskRoundedFilled.tsx b/src/IconComedyMaskRoundedFilled.tsx index 60fd18bf9..04d5b7e14 100644 --- a/src/IconComedyMaskRoundedFilled.tsx +++ b/src/IconComedyMaskRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconComedyMaskRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconComedyMaskRoundedFilled as default } +export default IconComedyMaskRoundedFilled diff --git a/src/IconComedyMaskSharp.tsx b/src/IconComedyMaskSharp.tsx index 4cb51aad8..a2465f38d 100644 --- a/src/IconComedyMaskSharp.tsx +++ b/src/IconComedyMaskSharp.tsx @@ -8,4 +8,4 @@ const IconComedyMaskSharp: React.FC = ({ ...props }) => ( ) -export { IconComedyMaskSharp as default } +export default IconComedyMaskSharp diff --git a/src/IconComedyMaskSharpFilled.tsx b/src/IconComedyMaskSharpFilled.tsx index c3314cf86..2625ec9ee 100644 --- a/src/IconComedyMaskSharpFilled.tsx +++ b/src/IconComedyMaskSharpFilled.tsx @@ -8,4 +8,4 @@ const IconComedyMaskSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconComedyMaskSharpFilled as default } +export default IconComedyMaskSharpFilled diff --git a/src/IconComicBubbleOutlined.tsx b/src/IconComicBubbleOutlined.tsx index 394b1ad23..6e7601e14 100644 --- a/src/IconComicBubbleOutlined.tsx +++ b/src/IconComicBubbleOutlined.tsx @@ -8,4 +8,4 @@ const IconComicBubbleOutlined: React.FC = ({ ...props }) => ( ) -export { IconComicBubbleOutlined as default } +export default IconComicBubbleOutlined diff --git a/src/IconComicBubbleOutlinedFilled.tsx b/src/IconComicBubbleOutlinedFilled.tsx index 36e3cb63f..e41cc8324 100644 --- a/src/IconComicBubbleOutlinedFilled.tsx +++ b/src/IconComicBubbleOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconComicBubbleOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconComicBubbleOutlinedFilled as default } +export default IconComicBubbleOutlinedFilled diff --git a/src/IconComicBubbleRounded.tsx b/src/IconComicBubbleRounded.tsx index faf2eed7f..6fe7a6ddb 100644 --- a/src/IconComicBubbleRounded.tsx +++ b/src/IconComicBubbleRounded.tsx @@ -8,4 +8,4 @@ const IconComicBubbleRounded: React.FC = ({ ...props }) => ( ) -export { IconComicBubbleRounded as default } +export default IconComicBubbleRounded diff --git a/src/IconComicBubbleRoundedFilled.tsx b/src/IconComicBubbleRoundedFilled.tsx index 997967881..2376d773e 100644 --- a/src/IconComicBubbleRoundedFilled.tsx +++ b/src/IconComicBubbleRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconComicBubbleRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconComicBubbleRoundedFilled as default } +export default IconComicBubbleRoundedFilled diff --git a/src/IconComicBubbleSharp.tsx b/src/IconComicBubbleSharp.tsx index 5e37439ab..c3cbd90d8 100644 --- a/src/IconComicBubbleSharp.tsx +++ b/src/IconComicBubbleSharp.tsx @@ -8,4 +8,4 @@ const IconComicBubbleSharp: React.FC = ({ ...props }) => ( ) -export { IconComicBubbleSharp as default } +export default IconComicBubbleSharp diff --git a/src/IconComicBubbleSharpFilled.tsx b/src/IconComicBubbleSharpFilled.tsx index b89e7b62d..8ec46cee5 100644 --- a/src/IconComicBubbleSharpFilled.tsx +++ b/src/IconComicBubbleSharpFilled.tsx @@ -8,4 +8,4 @@ const IconComicBubbleSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconComicBubbleSharpFilled as default } +export default IconComicBubbleSharpFilled diff --git a/src/IconCommentBankOutlined.tsx b/src/IconCommentBankOutlined.tsx index cf79e8227..350621f27 100644 --- a/src/IconCommentBankOutlined.tsx +++ b/src/IconCommentBankOutlined.tsx @@ -8,4 +8,4 @@ const IconCommentBankOutlined: React.FC = ({ ...props }) => ( ) -export { IconCommentBankOutlined as default } +export default IconCommentBankOutlined diff --git a/src/IconCommentBankOutlinedFilled.tsx b/src/IconCommentBankOutlinedFilled.tsx index a39b42d84..2b8944b7f 100644 --- a/src/IconCommentBankOutlinedFilled.tsx +++ b/src/IconCommentBankOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconCommentBankOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconCommentBankOutlinedFilled as default } +export default IconCommentBankOutlinedFilled diff --git a/src/IconCommentBankRounded.tsx b/src/IconCommentBankRounded.tsx index d1213c00c..db69f5a21 100644 --- a/src/IconCommentBankRounded.tsx +++ b/src/IconCommentBankRounded.tsx @@ -8,4 +8,4 @@ const IconCommentBankRounded: React.FC = ({ ...props }) => ( ) -export { IconCommentBankRounded as default } +export default IconCommentBankRounded diff --git a/src/IconCommentBankRoundedFilled.tsx b/src/IconCommentBankRoundedFilled.tsx index db6f66f2b..c309ad844 100644 --- a/src/IconCommentBankRoundedFilled.tsx +++ b/src/IconCommentBankRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconCommentBankRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconCommentBankRoundedFilled as default } +export default IconCommentBankRoundedFilled diff --git a/src/IconCommentBankSharp.tsx b/src/IconCommentBankSharp.tsx index 17cbea213..5ffd67a31 100644 --- a/src/IconCommentBankSharp.tsx +++ b/src/IconCommentBankSharp.tsx @@ -8,4 +8,4 @@ const IconCommentBankSharp: React.FC = ({ ...props }) => ( ) -export { IconCommentBankSharp as default } +export default IconCommentBankSharp diff --git a/src/IconCommentBankSharpFilled.tsx b/src/IconCommentBankSharpFilled.tsx index 2667c0210..5789941ef 100644 --- a/src/IconCommentBankSharpFilled.tsx +++ b/src/IconCommentBankSharpFilled.tsx @@ -8,4 +8,4 @@ const IconCommentBankSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconCommentBankSharpFilled as default } +export default IconCommentBankSharpFilled diff --git a/src/IconCommentOutlined.tsx b/src/IconCommentOutlined.tsx index 85684c8c3..659eb8056 100644 --- a/src/IconCommentOutlined.tsx +++ b/src/IconCommentOutlined.tsx @@ -8,4 +8,4 @@ const IconCommentOutlined: React.FC = ({ ...props }) => ( ) -export { IconCommentOutlined as default } +export default IconCommentOutlined diff --git a/src/IconCommentOutlinedFilled.tsx b/src/IconCommentOutlinedFilled.tsx index 645db1598..b79e87f68 100644 --- a/src/IconCommentOutlinedFilled.tsx +++ b/src/IconCommentOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconCommentOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconCommentOutlinedFilled as default } +export default IconCommentOutlinedFilled diff --git a/src/IconCommentRounded.tsx b/src/IconCommentRounded.tsx index 7e2467944..116cf0a93 100644 --- a/src/IconCommentRounded.tsx +++ b/src/IconCommentRounded.tsx @@ -8,4 +8,4 @@ const IconCommentRounded: React.FC = ({ ...props }) => ( ) -export { IconCommentRounded as default } +export default IconCommentRounded diff --git a/src/IconCommentRoundedFilled.tsx b/src/IconCommentRoundedFilled.tsx index 0fd1ad6c3..92a23bae1 100644 --- a/src/IconCommentRoundedFilled.tsx +++ b/src/IconCommentRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconCommentRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconCommentRoundedFilled as default } +export default IconCommentRoundedFilled diff --git a/src/IconCommentSharp.tsx b/src/IconCommentSharp.tsx index 125748422..1443f0455 100644 --- a/src/IconCommentSharp.tsx +++ b/src/IconCommentSharp.tsx @@ -8,4 +8,4 @@ const IconCommentSharp: React.FC = ({ ...props }) => ( ) -export { IconCommentSharp as default } +export default IconCommentSharp diff --git a/src/IconCommentSharpFilled.tsx b/src/IconCommentSharpFilled.tsx index 3e7b89b4d..812813963 100644 --- a/src/IconCommentSharpFilled.tsx +++ b/src/IconCommentSharpFilled.tsx @@ -8,4 +8,4 @@ const IconCommentSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconCommentSharpFilled as default } +export default IconCommentSharpFilled diff --git a/src/IconCommentsDisabledOutlined.tsx b/src/IconCommentsDisabledOutlined.tsx index 5d80df7b9..52718472c 100644 --- a/src/IconCommentsDisabledOutlined.tsx +++ b/src/IconCommentsDisabledOutlined.tsx @@ -8,4 +8,4 @@ const IconCommentsDisabledOutlined: React.FC = ({ ...props }) => ( ) -export { IconCommentsDisabledOutlined as default } +export default IconCommentsDisabledOutlined diff --git a/src/IconCommentsDisabledOutlinedFilled.tsx b/src/IconCommentsDisabledOutlinedFilled.tsx index 2c0d476ab..3c2c990d7 100644 --- a/src/IconCommentsDisabledOutlinedFilled.tsx +++ b/src/IconCommentsDisabledOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconCommentsDisabledOutlinedFilled: React.FC = ({ ) -export { IconCommentsDisabledOutlinedFilled as default } +export default IconCommentsDisabledOutlinedFilled diff --git a/src/IconCommentsDisabledRounded.tsx b/src/IconCommentsDisabledRounded.tsx index d8fca4d24..bbe48ae14 100644 --- a/src/IconCommentsDisabledRounded.tsx +++ b/src/IconCommentsDisabledRounded.tsx @@ -8,4 +8,4 @@ const IconCommentsDisabledRounded: React.FC = ({ ...props }) => ( ) -export { IconCommentsDisabledRounded as default } +export default IconCommentsDisabledRounded diff --git a/src/IconCommentsDisabledRoundedFilled.tsx b/src/IconCommentsDisabledRoundedFilled.tsx index e55c99281..13f2dbce4 100644 --- a/src/IconCommentsDisabledRoundedFilled.tsx +++ b/src/IconCommentsDisabledRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconCommentsDisabledRoundedFilled: React.FC = ({ ) -export { IconCommentsDisabledRoundedFilled as default } +export default IconCommentsDisabledRoundedFilled diff --git a/src/IconCommentsDisabledSharp.tsx b/src/IconCommentsDisabledSharp.tsx index 59dfca2ae..1c81647b9 100644 --- a/src/IconCommentsDisabledSharp.tsx +++ b/src/IconCommentsDisabledSharp.tsx @@ -8,4 +8,4 @@ const IconCommentsDisabledSharp: React.FC = ({ ...props }) => ( ) -export { IconCommentsDisabledSharp as default } +export default IconCommentsDisabledSharp diff --git a/src/IconCommentsDisabledSharpFilled.tsx b/src/IconCommentsDisabledSharpFilled.tsx index e86476293..e5c307083 100644 --- a/src/IconCommentsDisabledSharpFilled.tsx +++ b/src/IconCommentsDisabledSharpFilled.tsx @@ -8,4 +8,4 @@ const IconCommentsDisabledSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconCommentsDisabledSharpFilled as default } +export default IconCommentsDisabledSharpFilled diff --git a/src/IconCommitOutlined.tsx b/src/IconCommitOutlined.tsx index b693972e2..523869390 100644 --- a/src/IconCommitOutlined.tsx +++ b/src/IconCommitOutlined.tsx @@ -8,4 +8,4 @@ const IconCommitOutlined: React.FC = ({ ...props }) => ( ) -export { IconCommitOutlined as default } +export default IconCommitOutlined diff --git a/src/IconCommitOutlinedFilled.tsx b/src/IconCommitOutlinedFilled.tsx index 8780e3058..3f065c406 100644 --- a/src/IconCommitOutlinedFilled.tsx +++ b/src/IconCommitOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconCommitOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconCommitOutlinedFilled as default } +export default IconCommitOutlinedFilled diff --git a/src/IconCommitRounded.tsx b/src/IconCommitRounded.tsx index b40317c92..a3052cefc 100644 --- a/src/IconCommitRounded.tsx +++ b/src/IconCommitRounded.tsx @@ -8,4 +8,4 @@ const IconCommitRounded: React.FC = ({ ...props }) => ( ) -export { IconCommitRounded as default } +export default IconCommitRounded diff --git a/src/IconCommitRoundedFilled.tsx b/src/IconCommitRoundedFilled.tsx index a2c0f5dfe..a5924d908 100644 --- a/src/IconCommitRoundedFilled.tsx +++ b/src/IconCommitRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconCommitRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconCommitRoundedFilled as default } +export default IconCommitRoundedFilled diff --git a/src/IconCommitSharp.tsx b/src/IconCommitSharp.tsx index 448830b7c..0a80e5d9b 100644 --- a/src/IconCommitSharp.tsx +++ b/src/IconCommitSharp.tsx @@ -8,4 +8,4 @@ const IconCommitSharp: React.FC = ({ ...props }) => ( ) -export { IconCommitSharp as default } +export default IconCommitSharp diff --git a/src/IconCommitSharpFilled.tsx b/src/IconCommitSharpFilled.tsx index 922cdfd20..206f5efc7 100644 --- a/src/IconCommitSharpFilled.tsx +++ b/src/IconCommitSharpFilled.tsx @@ -8,4 +8,4 @@ const IconCommitSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconCommitSharpFilled as default } +export default IconCommitSharpFilled diff --git a/src/IconCommunicationOutlined.tsx b/src/IconCommunicationOutlined.tsx index ae36213bc..3c578425d 100644 --- a/src/IconCommunicationOutlined.tsx +++ b/src/IconCommunicationOutlined.tsx @@ -8,4 +8,4 @@ const IconCommunicationOutlined: React.FC = ({ ...props }) => ( ) -export { IconCommunicationOutlined as default } +export default IconCommunicationOutlined diff --git a/src/IconCommunicationOutlinedFilled.tsx b/src/IconCommunicationOutlinedFilled.tsx index e89dd4d1a..0645108ce 100644 --- a/src/IconCommunicationOutlinedFilled.tsx +++ b/src/IconCommunicationOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconCommunicationOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconCommunicationOutlinedFilled as default } +export default IconCommunicationOutlinedFilled diff --git a/src/IconCommunicationRounded.tsx b/src/IconCommunicationRounded.tsx index 1fb5d7ddc..85477b2e2 100644 --- a/src/IconCommunicationRounded.tsx +++ b/src/IconCommunicationRounded.tsx @@ -8,4 +8,4 @@ const IconCommunicationRounded: React.FC = ({ ...props }) => ( ) -export { IconCommunicationRounded as default } +export default IconCommunicationRounded diff --git a/src/IconCommunicationRoundedFilled.tsx b/src/IconCommunicationRoundedFilled.tsx index 3cecd2c5f..a63ee7730 100644 --- a/src/IconCommunicationRoundedFilled.tsx +++ b/src/IconCommunicationRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconCommunicationRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconCommunicationRoundedFilled as default } +export default IconCommunicationRoundedFilled diff --git a/src/IconCommunicationSharp.tsx b/src/IconCommunicationSharp.tsx index 67a300e42..8e03c2678 100644 --- a/src/IconCommunicationSharp.tsx +++ b/src/IconCommunicationSharp.tsx @@ -8,4 +8,4 @@ const IconCommunicationSharp: React.FC = ({ ...props }) => ( ) -export { IconCommunicationSharp as default } +export default IconCommunicationSharp diff --git a/src/IconCommunicationSharpFilled.tsx b/src/IconCommunicationSharpFilled.tsx index 07773cf90..043ed47ef 100644 --- a/src/IconCommunicationSharpFilled.tsx +++ b/src/IconCommunicationSharpFilled.tsx @@ -8,4 +8,4 @@ const IconCommunicationSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconCommunicationSharpFilled as default } +export default IconCommunicationSharpFilled diff --git a/src/IconCommunitiesOutlined.tsx b/src/IconCommunitiesOutlined.tsx index b22615402..7be87930d 100644 --- a/src/IconCommunitiesOutlined.tsx +++ b/src/IconCommunitiesOutlined.tsx @@ -8,4 +8,4 @@ const IconCommunitiesOutlined: React.FC = ({ ...props }) => ( ) -export { IconCommunitiesOutlined as default } +export default IconCommunitiesOutlined diff --git a/src/IconCommunitiesOutlinedFilled.tsx b/src/IconCommunitiesOutlinedFilled.tsx index 1cce85eb5..50f97bc3a 100644 --- a/src/IconCommunitiesOutlinedFilled.tsx +++ b/src/IconCommunitiesOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconCommunitiesOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconCommunitiesOutlinedFilled as default } +export default IconCommunitiesOutlinedFilled diff --git a/src/IconCommunitiesRounded.tsx b/src/IconCommunitiesRounded.tsx index 8c8887375..6c4c8a119 100644 --- a/src/IconCommunitiesRounded.tsx +++ b/src/IconCommunitiesRounded.tsx @@ -8,4 +8,4 @@ const IconCommunitiesRounded: React.FC = ({ ...props }) => ( ) -export { IconCommunitiesRounded as default } +export default IconCommunitiesRounded diff --git a/src/IconCommunitiesRoundedFilled.tsx b/src/IconCommunitiesRoundedFilled.tsx index 299232791..db0067719 100644 --- a/src/IconCommunitiesRoundedFilled.tsx +++ b/src/IconCommunitiesRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconCommunitiesRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconCommunitiesRoundedFilled as default } +export default IconCommunitiesRoundedFilled diff --git a/src/IconCommunitiesSharp.tsx b/src/IconCommunitiesSharp.tsx index 927fedcea..835486e45 100644 --- a/src/IconCommunitiesSharp.tsx +++ b/src/IconCommunitiesSharp.tsx @@ -8,4 +8,4 @@ const IconCommunitiesSharp: React.FC = ({ ...props }) => ( ) -export { IconCommunitiesSharp as default } +export default IconCommunitiesSharp diff --git a/src/IconCommunitiesSharpFilled.tsx b/src/IconCommunitiesSharpFilled.tsx index c3a996516..463a6d243 100644 --- a/src/IconCommunitiesSharpFilled.tsx +++ b/src/IconCommunitiesSharpFilled.tsx @@ -8,4 +8,4 @@ const IconCommunitiesSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconCommunitiesSharpFilled as default } +export default IconCommunitiesSharpFilled diff --git a/src/IconCommuteOutlined.tsx b/src/IconCommuteOutlined.tsx index 6da4085a4..2d14b380b 100644 --- a/src/IconCommuteOutlined.tsx +++ b/src/IconCommuteOutlined.tsx @@ -8,4 +8,4 @@ const IconCommuteOutlined: React.FC = ({ ...props }) => ( ) -export { IconCommuteOutlined as default } +export default IconCommuteOutlined diff --git a/src/IconCommuteOutlinedFilled.tsx b/src/IconCommuteOutlinedFilled.tsx index cea99717b..75d647f85 100644 --- a/src/IconCommuteOutlinedFilled.tsx +++ b/src/IconCommuteOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconCommuteOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconCommuteOutlinedFilled as default } +export default IconCommuteOutlinedFilled diff --git a/src/IconCommuteRounded.tsx b/src/IconCommuteRounded.tsx index 70d849b5a..d7b0783d6 100644 --- a/src/IconCommuteRounded.tsx +++ b/src/IconCommuteRounded.tsx @@ -8,4 +8,4 @@ const IconCommuteRounded: React.FC = ({ ...props }) => ( ) -export { IconCommuteRounded as default } +export default IconCommuteRounded diff --git a/src/IconCommuteRoundedFilled.tsx b/src/IconCommuteRoundedFilled.tsx index 006f563bb..57c64c616 100644 --- a/src/IconCommuteRoundedFilled.tsx +++ b/src/IconCommuteRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconCommuteRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconCommuteRoundedFilled as default } +export default IconCommuteRoundedFilled diff --git a/src/IconCommuteSharp.tsx b/src/IconCommuteSharp.tsx index 4afd44190..b7444c975 100644 --- a/src/IconCommuteSharp.tsx +++ b/src/IconCommuteSharp.tsx @@ -8,4 +8,4 @@ const IconCommuteSharp: React.FC = ({ ...props }) => ( ) -export { IconCommuteSharp as default } +export default IconCommuteSharp diff --git a/src/IconCommuteSharpFilled.tsx b/src/IconCommuteSharpFilled.tsx index 5f452a6b8..27c60ce3a 100644 --- a/src/IconCommuteSharpFilled.tsx +++ b/src/IconCommuteSharpFilled.tsx @@ -8,4 +8,4 @@ const IconCommuteSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconCommuteSharpFilled as default } +export default IconCommuteSharpFilled diff --git a/src/IconCompareArrowsOutlined.tsx b/src/IconCompareArrowsOutlined.tsx index 5350e201d..a148b9e2c 100644 --- a/src/IconCompareArrowsOutlined.tsx +++ b/src/IconCompareArrowsOutlined.tsx @@ -8,4 +8,4 @@ const IconCompareArrowsOutlined: React.FC = ({ ...props }) => ( ) -export { IconCompareArrowsOutlined as default } +export default IconCompareArrowsOutlined diff --git a/src/IconCompareArrowsOutlinedFilled.tsx b/src/IconCompareArrowsOutlinedFilled.tsx index c2ccaf7e2..6fed6fe67 100644 --- a/src/IconCompareArrowsOutlinedFilled.tsx +++ b/src/IconCompareArrowsOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconCompareArrowsOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconCompareArrowsOutlinedFilled as default } +export default IconCompareArrowsOutlinedFilled diff --git a/src/IconCompareArrowsRounded.tsx b/src/IconCompareArrowsRounded.tsx index 877c5154b..e0b39d4c7 100644 --- a/src/IconCompareArrowsRounded.tsx +++ b/src/IconCompareArrowsRounded.tsx @@ -8,4 +8,4 @@ const IconCompareArrowsRounded: React.FC = ({ ...props }) => ( ) -export { IconCompareArrowsRounded as default } +export default IconCompareArrowsRounded diff --git a/src/IconCompareArrowsRoundedFilled.tsx b/src/IconCompareArrowsRoundedFilled.tsx index aff7b979b..7eb4315a7 100644 --- a/src/IconCompareArrowsRoundedFilled.tsx +++ b/src/IconCompareArrowsRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconCompareArrowsRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconCompareArrowsRoundedFilled as default } +export default IconCompareArrowsRoundedFilled diff --git a/src/IconCompareArrowsSharp.tsx b/src/IconCompareArrowsSharp.tsx index 53af56ab0..c4b3fa3da 100644 --- a/src/IconCompareArrowsSharp.tsx +++ b/src/IconCompareArrowsSharp.tsx @@ -8,4 +8,4 @@ const IconCompareArrowsSharp: React.FC = ({ ...props }) => ( ) -export { IconCompareArrowsSharp as default } +export default IconCompareArrowsSharp diff --git a/src/IconCompareArrowsSharpFilled.tsx b/src/IconCompareArrowsSharpFilled.tsx index bfbc532e7..b24cc1496 100644 --- a/src/IconCompareArrowsSharpFilled.tsx +++ b/src/IconCompareArrowsSharpFilled.tsx @@ -8,4 +8,4 @@ const IconCompareArrowsSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconCompareArrowsSharpFilled as default } +export default IconCompareArrowsSharpFilled diff --git a/src/IconCompareOutlined.tsx b/src/IconCompareOutlined.tsx index 531f3d777..6a134c087 100644 --- a/src/IconCompareOutlined.tsx +++ b/src/IconCompareOutlined.tsx @@ -8,4 +8,4 @@ const IconCompareOutlined: React.FC = ({ ...props }) => ( ) -export { IconCompareOutlined as default } +export default IconCompareOutlined diff --git a/src/IconCompareOutlinedFilled.tsx b/src/IconCompareOutlinedFilled.tsx index ea4f10028..2e14ed94a 100644 --- a/src/IconCompareOutlinedFilled.tsx +++ b/src/IconCompareOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconCompareOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconCompareOutlinedFilled as default } +export default IconCompareOutlinedFilled diff --git a/src/IconCompareRounded.tsx b/src/IconCompareRounded.tsx index 2d325065e..2a1ce09f6 100644 --- a/src/IconCompareRounded.tsx +++ b/src/IconCompareRounded.tsx @@ -8,4 +8,4 @@ const IconCompareRounded: React.FC = ({ ...props }) => ( ) -export { IconCompareRounded as default } +export default IconCompareRounded diff --git a/src/IconCompareRoundedFilled.tsx b/src/IconCompareRoundedFilled.tsx index b1aa7cd24..4c5466073 100644 --- a/src/IconCompareRoundedFilled.tsx +++ b/src/IconCompareRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconCompareRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconCompareRoundedFilled as default } +export default IconCompareRoundedFilled diff --git a/src/IconCompareSharp.tsx b/src/IconCompareSharp.tsx index 0ca58910a..c79cf453c 100644 --- a/src/IconCompareSharp.tsx +++ b/src/IconCompareSharp.tsx @@ -8,4 +8,4 @@ const IconCompareSharp: React.FC = ({ ...props }) => ( ) -export { IconCompareSharp as default } +export default IconCompareSharp diff --git a/src/IconCompareSharpFilled.tsx b/src/IconCompareSharpFilled.tsx index 7caef001d..cfaca2bf1 100644 --- a/src/IconCompareSharpFilled.tsx +++ b/src/IconCompareSharpFilled.tsx @@ -8,4 +8,4 @@ const IconCompareSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconCompareSharpFilled as default } +export default IconCompareSharpFilled diff --git a/src/IconCompassCalibrationOutlined.tsx b/src/IconCompassCalibrationOutlined.tsx index 1fe0596fe..c2440beb1 100644 --- a/src/IconCompassCalibrationOutlined.tsx +++ b/src/IconCompassCalibrationOutlined.tsx @@ -8,4 +8,4 @@ const IconCompassCalibrationOutlined: React.FC = ({ ...props }) => ( ) -export { IconCompassCalibrationOutlined as default } +export default IconCompassCalibrationOutlined diff --git a/src/IconCompassCalibrationOutlinedFilled.tsx b/src/IconCompassCalibrationOutlinedFilled.tsx index 2d73da41a..95d5b16c6 100644 --- a/src/IconCompassCalibrationOutlinedFilled.tsx +++ b/src/IconCompassCalibrationOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconCompassCalibrationOutlinedFilled: React.FC = ({ ) -export { IconCompassCalibrationOutlinedFilled as default } +export default IconCompassCalibrationOutlinedFilled diff --git a/src/IconCompassCalibrationRounded.tsx b/src/IconCompassCalibrationRounded.tsx index b2a32964e..8c3e2f5c5 100644 --- a/src/IconCompassCalibrationRounded.tsx +++ b/src/IconCompassCalibrationRounded.tsx @@ -8,4 +8,4 @@ const IconCompassCalibrationRounded: React.FC = ({ ...props }) => ( ) -export { IconCompassCalibrationRounded as default } +export default IconCompassCalibrationRounded diff --git a/src/IconCompassCalibrationRoundedFilled.tsx b/src/IconCompassCalibrationRoundedFilled.tsx index 49e774cec..31cff6645 100644 --- a/src/IconCompassCalibrationRoundedFilled.tsx +++ b/src/IconCompassCalibrationRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconCompassCalibrationRoundedFilled: React.FC = ({ ) -export { IconCompassCalibrationRoundedFilled as default } +export default IconCompassCalibrationRoundedFilled diff --git a/src/IconCompassCalibrationSharp.tsx b/src/IconCompassCalibrationSharp.tsx index 00717ece0..920316b05 100644 --- a/src/IconCompassCalibrationSharp.tsx +++ b/src/IconCompassCalibrationSharp.tsx @@ -8,4 +8,4 @@ const IconCompassCalibrationSharp: React.FC = ({ ...props }) => ( ) -export { IconCompassCalibrationSharp as default } +export default IconCompassCalibrationSharp diff --git a/src/IconCompassCalibrationSharpFilled.tsx b/src/IconCompassCalibrationSharpFilled.tsx index 518bdd1ad..741391df7 100644 --- a/src/IconCompassCalibrationSharpFilled.tsx +++ b/src/IconCompassCalibrationSharpFilled.tsx @@ -10,4 +10,4 @@ const IconCompassCalibrationSharpFilled: React.FC = ({ ) -export { IconCompassCalibrationSharpFilled as default } +export default IconCompassCalibrationSharpFilled diff --git a/src/IconComponentExchangeOutlined.tsx b/src/IconComponentExchangeOutlined.tsx index 25de80eca..a0cab4daa 100644 --- a/src/IconComponentExchangeOutlined.tsx +++ b/src/IconComponentExchangeOutlined.tsx @@ -8,4 +8,4 @@ const IconComponentExchangeOutlined: React.FC = ({ ...props }) => ( ) -export { IconComponentExchangeOutlined as default } +export default IconComponentExchangeOutlined diff --git a/src/IconComponentExchangeOutlinedFilled.tsx b/src/IconComponentExchangeOutlinedFilled.tsx index 1071269b7..71fcb3f1d 100644 --- a/src/IconComponentExchangeOutlinedFilled.tsx +++ b/src/IconComponentExchangeOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconComponentExchangeOutlinedFilled: React.FC = ({ ) -export { IconComponentExchangeOutlinedFilled as default } +export default IconComponentExchangeOutlinedFilled diff --git a/src/IconComponentExchangeRounded.tsx b/src/IconComponentExchangeRounded.tsx index 5957125d4..3c1b135c6 100644 --- a/src/IconComponentExchangeRounded.tsx +++ b/src/IconComponentExchangeRounded.tsx @@ -8,4 +8,4 @@ const IconComponentExchangeRounded: React.FC = ({ ...props }) => ( ) -export { IconComponentExchangeRounded as default } +export default IconComponentExchangeRounded diff --git a/src/IconComponentExchangeRoundedFilled.tsx b/src/IconComponentExchangeRoundedFilled.tsx index e8c663103..2a3624484 100644 --- a/src/IconComponentExchangeRoundedFilled.tsx +++ b/src/IconComponentExchangeRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconComponentExchangeRoundedFilled: React.FC = ({ ) -export { IconComponentExchangeRoundedFilled as default } +export default IconComponentExchangeRoundedFilled diff --git a/src/IconComponentExchangeSharp.tsx b/src/IconComponentExchangeSharp.tsx index 1973f0a0f..eefe6f889 100644 --- a/src/IconComponentExchangeSharp.tsx +++ b/src/IconComponentExchangeSharp.tsx @@ -8,4 +8,4 @@ const IconComponentExchangeSharp: React.FC = ({ ...props }) => ( ) -export { IconComponentExchangeSharp as default } +export default IconComponentExchangeSharp diff --git a/src/IconComponentExchangeSharpFilled.tsx b/src/IconComponentExchangeSharpFilled.tsx index 06baaa45e..cbd8504ad 100644 --- a/src/IconComponentExchangeSharpFilled.tsx +++ b/src/IconComponentExchangeSharpFilled.tsx @@ -10,4 +10,4 @@ const IconComponentExchangeSharpFilled: React.FC = ({ ) -export { IconComponentExchangeSharpFilled as default } +export default IconComponentExchangeSharpFilled diff --git a/src/IconCompostOutlined.tsx b/src/IconCompostOutlined.tsx index 178168dd5..9bd90fe06 100644 --- a/src/IconCompostOutlined.tsx +++ b/src/IconCompostOutlined.tsx @@ -8,4 +8,4 @@ const IconCompostOutlined: React.FC = ({ ...props }) => ( ) -export { IconCompostOutlined as default } +export default IconCompostOutlined diff --git a/src/IconCompostOutlinedFilled.tsx b/src/IconCompostOutlinedFilled.tsx index 1da11063b..f4ab516de 100644 --- a/src/IconCompostOutlinedFilled.tsx +++ b/src/IconCompostOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconCompostOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconCompostOutlinedFilled as default } +export default IconCompostOutlinedFilled diff --git a/src/IconCompostRounded.tsx b/src/IconCompostRounded.tsx index 48a856566..9ee63ffa1 100644 --- a/src/IconCompostRounded.tsx +++ b/src/IconCompostRounded.tsx @@ -8,4 +8,4 @@ const IconCompostRounded: React.FC = ({ ...props }) => ( ) -export { IconCompostRounded as default } +export default IconCompostRounded diff --git a/src/IconCompostRoundedFilled.tsx b/src/IconCompostRoundedFilled.tsx index 18872f4d0..4b8778d09 100644 --- a/src/IconCompostRoundedFilled.tsx +++ b/src/IconCompostRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconCompostRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconCompostRoundedFilled as default } +export default IconCompostRoundedFilled diff --git a/src/IconCompostSharp.tsx b/src/IconCompostSharp.tsx index 247f7212e..973f634ac 100644 --- a/src/IconCompostSharp.tsx +++ b/src/IconCompostSharp.tsx @@ -8,4 +8,4 @@ const IconCompostSharp: React.FC = ({ ...props }) => ( ) -export { IconCompostSharp as default } +export default IconCompostSharp diff --git a/src/IconCompostSharpFilled.tsx b/src/IconCompostSharpFilled.tsx index 5882dd3cd..ab40ed3ec 100644 --- a/src/IconCompostSharpFilled.tsx +++ b/src/IconCompostSharpFilled.tsx @@ -8,4 +8,4 @@ const IconCompostSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconCompostSharpFilled as default } +export default IconCompostSharpFilled diff --git a/src/IconCompressOutlined.tsx b/src/IconCompressOutlined.tsx index 1ca0ecd06..ec6097afb 100644 --- a/src/IconCompressOutlined.tsx +++ b/src/IconCompressOutlined.tsx @@ -8,4 +8,4 @@ const IconCompressOutlined: React.FC = ({ ...props }) => ( ) -export { IconCompressOutlined as default } +export default IconCompressOutlined diff --git a/src/IconCompressOutlinedFilled.tsx b/src/IconCompressOutlinedFilled.tsx index 0c04c58fa..82601eae4 100644 --- a/src/IconCompressOutlinedFilled.tsx +++ b/src/IconCompressOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconCompressOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconCompressOutlinedFilled as default } +export default IconCompressOutlinedFilled diff --git a/src/IconCompressRounded.tsx b/src/IconCompressRounded.tsx index 4c5f4aff3..454ddc340 100644 --- a/src/IconCompressRounded.tsx +++ b/src/IconCompressRounded.tsx @@ -8,4 +8,4 @@ const IconCompressRounded: React.FC = ({ ...props }) => ( ) -export { IconCompressRounded as default } +export default IconCompressRounded diff --git a/src/IconCompressRoundedFilled.tsx b/src/IconCompressRoundedFilled.tsx index 70436c805..11da0e198 100644 --- a/src/IconCompressRoundedFilled.tsx +++ b/src/IconCompressRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconCompressRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconCompressRoundedFilled as default } +export default IconCompressRoundedFilled diff --git a/src/IconCompressSharp.tsx b/src/IconCompressSharp.tsx index a58af63a3..92749575f 100644 --- a/src/IconCompressSharp.tsx +++ b/src/IconCompressSharp.tsx @@ -8,4 +8,4 @@ const IconCompressSharp: React.FC = ({ ...props }) => ( ) -export { IconCompressSharp as default } +export default IconCompressSharp diff --git a/src/IconCompressSharpFilled.tsx b/src/IconCompressSharpFilled.tsx index 9d7381ba5..63499df36 100644 --- a/src/IconCompressSharpFilled.tsx +++ b/src/IconCompressSharpFilled.tsx @@ -8,4 +8,4 @@ const IconCompressSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconCompressSharpFilled as default } +export default IconCompressSharpFilled diff --git a/src/IconComputerOutlined.tsx b/src/IconComputerOutlined.tsx index 6c7bb51d1..66061cc71 100644 --- a/src/IconComputerOutlined.tsx +++ b/src/IconComputerOutlined.tsx @@ -8,4 +8,4 @@ const IconComputerOutlined: React.FC = ({ ...props }) => ( ) -export { IconComputerOutlined as default } +export default IconComputerOutlined diff --git a/src/IconComputerOutlinedFilled.tsx b/src/IconComputerOutlinedFilled.tsx index b5781b62e..633838e8d 100644 --- a/src/IconComputerOutlinedFilled.tsx +++ b/src/IconComputerOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconComputerOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconComputerOutlinedFilled as default } +export default IconComputerOutlinedFilled diff --git a/src/IconComputerRounded.tsx b/src/IconComputerRounded.tsx index a124c9a09..d3727c130 100644 --- a/src/IconComputerRounded.tsx +++ b/src/IconComputerRounded.tsx @@ -8,4 +8,4 @@ const IconComputerRounded: React.FC = ({ ...props }) => ( ) -export { IconComputerRounded as default } +export default IconComputerRounded diff --git a/src/IconComputerRoundedFilled.tsx b/src/IconComputerRoundedFilled.tsx index 80fb3c1f0..5c4d1a449 100644 --- a/src/IconComputerRoundedFilled.tsx +++ b/src/IconComputerRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconComputerRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconComputerRoundedFilled as default } +export default IconComputerRoundedFilled diff --git a/src/IconComputerSharp.tsx b/src/IconComputerSharp.tsx index 06d59218d..5e2ae9cd9 100644 --- a/src/IconComputerSharp.tsx +++ b/src/IconComputerSharp.tsx @@ -8,4 +8,4 @@ const IconComputerSharp: React.FC = ({ ...props }) => ( ) -export { IconComputerSharp as default } +export default IconComputerSharp diff --git a/src/IconComputerSharpFilled.tsx b/src/IconComputerSharpFilled.tsx index 11aa48dc3..18e6f2b32 100644 --- a/src/IconComputerSharpFilled.tsx +++ b/src/IconComputerSharpFilled.tsx @@ -8,4 +8,4 @@ const IconComputerSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconComputerSharpFilled as default } +export default IconComputerSharpFilled diff --git a/src/IconConciergeOutlined.tsx b/src/IconConciergeOutlined.tsx index dac94a1b1..d7370f31e 100644 --- a/src/IconConciergeOutlined.tsx +++ b/src/IconConciergeOutlined.tsx @@ -8,4 +8,4 @@ const IconConciergeOutlined: React.FC = ({ ...props }) => ( ) -export { IconConciergeOutlined as default } +export default IconConciergeOutlined diff --git a/src/IconConciergeOutlinedFilled.tsx b/src/IconConciergeOutlinedFilled.tsx index 492c2435d..ef3065f2b 100644 --- a/src/IconConciergeOutlinedFilled.tsx +++ b/src/IconConciergeOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconConciergeOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconConciergeOutlinedFilled as default } +export default IconConciergeOutlinedFilled diff --git a/src/IconConciergeRounded.tsx b/src/IconConciergeRounded.tsx index 9ebff5702..9778bb522 100644 --- a/src/IconConciergeRounded.tsx +++ b/src/IconConciergeRounded.tsx @@ -8,4 +8,4 @@ const IconConciergeRounded: React.FC = ({ ...props }) => ( ) -export { IconConciergeRounded as default } +export default IconConciergeRounded diff --git a/src/IconConciergeRoundedFilled.tsx b/src/IconConciergeRoundedFilled.tsx index 03561fd02..8a1000aa9 100644 --- a/src/IconConciergeRoundedFilled.tsx +++ b/src/IconConciergeRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconConciergeRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconConciergeRoundedFilled as default } +export default IconConciergeRoundedFilled diff --git a/src/IconConciergeSharp.tsx b/src/IconConciergeSharp.tsx index 57c5cf5f8..393df756c 100644 --- a/src/IconConciergeSharp.tsx +++ b/src/IconConciergeSharp.tsx @@ -8,4 +8,4 @@ const IconConciergeSharp: React.FC = ({ ...props }) => ( ) -export { IconConciergeSharp as default } +export default IconConciergeSharp diff --git a/src/IconConciergeSharpFilled.tsx b/src/IconConciergeSharpFilled.tsx index bdb9fd43d..6713e4be5 100644 --- a/src/IconConciergeSharpFilled.tsx +++ b/src/IconConciergeSharpFilled.tsx @@ -8,4 +8,4 @@ const IconConciergeSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconConciergeSharpFilled as default } +export default IconConciergeSharpFilled diff --git a/src/IconConditionsOutlined.tsx b/src/IconConditionsOutlined.tsx index e19d869a8..aea6ae087 100644 --- a/src/IconConditionsOutlined.tsx +++ b/src/IconConditionsOutlined.tsx @@ -8,4 +8,4 @@ const IconConditionsOutlined: React.FC = ({ ...props }) => ( ) -export { IconConditionsOutlined as default } +export default IconConditionsOutlined diff --git a/src/IconConditionsOutlinedFilled.tsx b/src/IconConditionsOutlinedFilled.tsx index 78190387c..fd6512b65 100644 --- a/src/IconConditionsOutlinedFilled.tsx +++ b/src/IconConditionsOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconConditionsOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconConditionsOutlinedFilled as default } +export default IconConditionsOutlinedFilled diff --git a/src/IconConditionsRounded.tsx b/src/IconConditionsRounded.tsx index b8974adb9..f65587f99 100644 --- a/src/IconConditionsRounded.tsx +++ b/src/IconConditionsRounded.tsx @@ -8,4 +8,4 @@ const IconConditionsRounded: React.FC = ({ ...props }) => ( ) -export { IconConditionsRounded as default } +export default IconConditionsRounded diff --git a/src/IconConditionsRoundedFilled.tsx b/src/IconConditionsRoundedFilled.tsx index f1e5a5e76..9f2c0601c 100644 --- a/src/IconConditionsRoundedFilled.tsx +++ b/src/IconConditionsRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconConditionsRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconConditionsRoundedFilled as default } +export default IconConditionsRoundedFilled diff --git a/src/IconConditionsSharp.tsx b/src/IconConditionsSharp.tsx index 4cd4773cd..d1427003e 100644 --- a/src/IconConditionsSharp.tsx +++ b/src/IconConditionsSharp.tsx @@ -8,4 +8,4 @@ const IconConditionsSharp: React.FC = ({ ...props }) => ( ) -export { IconConditionsSharp as default } +export default IconConditionsSharp diff --git a/src/IconConditionsSharpFilled.tsx b/src/IconConditionsSharpFilled.tsx index 0c2dfcde3..3ea4561aa 100644 --- a/src/IconConditionsSharpFilled.tsx +++ b/src/IconConditionsSharpFilled.tsx @@ -8,4 +8,4 @@ const IconConditionsSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconConditionsSharpFilled as default } +export default IconConditionsSharpFilled diff --git a/src/IconConfirmationNumberOutlined.tsx b/src/IconConfirmationNumberOutlined.tsx index 3cf62b19e..5b69e0678 100644 --- a/src/IconConfirmationNumberOutlined.tsx +++ b/src/IconConfirmationNumberOutlined.tsx @@ -8,4 +8,4 @@ const IconConfirmationNumberOutlined: React.FC = ({ ...props }) => ( ) -export { IconConfirmationNumberOutlined as default } +export default IconConfirmationNumberOutlined diff --git a/src/IconConfirmationNumberOutlinedFilled.tsx b/src/IconConfirmationNumberOutlinedFilled.tsx index f394b7643..c64beac8e 100644 --- a/src/IconConfirmationNumberOutlinedFilled.tsx +++ b/src/IconConfirmationNumberOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconConfirmationNumberOutlinedFilled: React.FC = ({ ) -export { IconConfirmationNumberOutlinedFilled as default } +export default IconConfirmationNumberOutlinedFilled diff --git a/src/IconConfirmationNumberRounded.tsx b/src/IconConfirmationNumberRounded.tsx index d33b9b573..686754511 100644 --- a/src/IconConfirmationNumberRounded.tsx +++ b/src/IconConfirmationNumberRounded.tsx @@ -8,4 +8,4 @@ const IconConfirmationNumberRounded: React.FC = ({ ...props }) => ( ) -export { IconConfirmationNumberRounded as default } +export default IconConfirmationNumberRounded diff --git a/src/IconConfirmationNumberRoundedFilled.tsx b/src/IconConfirmationNumberRoundedFilled.tsx index 95d7576e7..823c4bbd5 100644 --- a/src/IconConfirmationNumberRoundedFilled.tsx +++ b/src/IconConfirmationNumberRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconConfirmationNumberRoundedFilled: React.FC = ({ ) -export { IconConfirmationNumberRoundedFilled as default } +export default IconConfirmationNumberRoundedFilled diff --git a/src/IconConfirmationNumberSharp.tsx b/src/IconConfirmationNumberSharp.tsx index f673d275a..d5473cc68 100644 --- a/src/IconConfirmationNumberSharp.tsx +++ b/src/IconConfirmationNumberSharp.tsx @@ -8,4 +8,4 @@ const IconConfirmationNumberSharp: React.FC = ({ ...props }) => ( ) -export { IconConfirmationNumberSharp as default } +export default IconConfirmationNumberSharp diff --git a/src/IconConfirmationNumberSharpFilled.tsx b/src/IconConfirmationNumberSharpFilled.tsx index 7162b1d67..2667c7662 100644 --- a/src/IconConfirmationNumberSharpFilled.tsx +++ b/src/IconConfirmationNumberSharpFilled.tsx @@ -10,4 +10,4 @@ const IconConfirmationNumberSharpFilled: React.FC = ({ ) -export { IconConfirmationNumberSharpFilled as default } +export default IconConfirmationNumberSharpFilled diff --git a/src/IconCongenitalOutlined.tsx b/src/IconCongenitalOutlined.tsx index a95b6d4b8..b82163142 100644 --- a/src/IconCongenitalOutlined.tsx +++ b/src/IconCongenitalOutlined.tsx @@ -8,4 +8,4 @@ const IconCongenitalOutlined: React.FC = ({ ...props }) => ( ) -export { IconCongenitalOutlined as default } +export default IconCongenitalOutlined diff --git a/src/IconCongenitalOutlinedFilled.tsx b/src/IconCongenitalOutlinedFilled.tsx index cabad9f2a..470570888 100644 --- a/src/IconCongenitalOutlinedFilled.tsx +++ b/src/IconCongenitalOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconCongenitalOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconCongenitalOutlinedFilled as default } +export default IconCongenitalOutlinedFilled diff --git a/src/IconCongenitalRounded.tsx b/src/IconCongenitalRounded.tsx index d2e61490c..9ba5fc45a 100644 --- a/src/IconCongenitalRounded.tsx +++ b/src/IconCongenitalRounded.tsx @@ -8,4 +8,4 @@ const IconCongenitalRounded: React.FC = ({ ...props }) => ( ) -export { IconCongenitalRounded as default } +export default IconCongenitalRounded diff --git a/src/IconCongenitalRoundedFilled.tsx b/src/IconCongenitalRoundedFilled.tsx index 55eccb275..46e463e16 100644 --- a/src/IconCongenitalRoundedFilled.tsx +++ b/src/IconCongenitalRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconCongenitalRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconCongenitalRoundedFilled as default } +export default IconCongenitalRoundedFilled diff --git a/src/IconCongenitalSharp.tsx b/src/IconCongenitalSharp.tsx index 52149ed3c..65c2174dc 100644 --- a/src/IconCongenitalSharp.tsx +++ b/src/IconCongenitalSharp.tsx @@ -8,4 +8,4 @@ const IconCongenitalSharp: React.FC = ({ ...props }) => ( ) -export { IconCongenitalSharp as default } +export default IconCongenitalSharp diff --git a/src/IconCongenitalSharpFilled.tsx b/src/IconCongenitalSharpFilled.tsx index 457820658..c0f19a3c4 100644 --- a/src/IconCongenitalSharpFilled.tsx +++ b/src/IconCongenitalSharpFilled.tsx @@ -8,4 +8,4 @@ const IconCongenitalSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconCongenitalSharpFilled as default } +export default IconCongenitalSharpFilled diff --git a/src/IconConnectWithoutContactOutlined.tsx b/src/IconConnectWithoutContactOutlined.tsx index 66e34d89a..5bfd14dc2 100644 --- a/src/IconConnectWithoutContactOutlined.tsx +++ b/src/IconConnectWithoutContactOutlined.tsx @@ -10,4 +10,4 @@ const IconConnectWithoutContactOutlined: React.FC = ({ ) -export { IconConnectWithoutContactOutlined as default } +export default IconConnectWithoutContactOutlined diff --git a/src/IconConnectWithoutContactOutlinedFilled.tsx b/src/IconConnectWithoutContactOutlinedFilled.tsx index eccebc231..78431d3c0 100644 --- a/src/IconConnectWithoutContactOutlinedFilled.tsx +++ b/src/IconConnectWithoutContactOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconConnectWithoutContactOutlinedFilled: React.FC = ({ ) -export { IconConnectWithoutContactOutlinedFilled as default } +export default IconConnectWithoutContactOutlinedFilled diff --git a/src/IconConnectWithoutContactRounded.tsx b/src/IconConnectWithoutContactRounded.tsx index 30b51f6d1..a09b6c2e8 100644 --- a/src/IconConnectWithoutContactRounded.tsx +++ b/src/IconConnectWithoutContactRounded.tsx @@ -10,4 +10,4 @@ const IconConnectWithoutContactRounded: React.FC = ({ ) -export { IconConnectWithoutContactRounded as default } +export default IconConnectWithoutContactRounded diff --git a/src/IconConnectWithoutContactRoundedFilled.tsx b/src/IconConnectWithoutContactRoundedFilled.tsx index 4ba10bde1..7ed0fdfb0 100644 --- a/src/IconConnectWithoutContactRoundedFilled.tsx +++ b/src/IconConnectWithoutContactRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconConnectWithoutContactRoundedFilled: React.FC = ({ ) -export { IconConnectWithoutContactRoundedFilled as default } +export default IconConnectWithoutContactRoundedFilled diff --git a/src/IconConnectWithoutContactSharp.tsx b/src/IconConnectWithoutContactSharp.tsx index 6fbb10383..4e6fbd9b9 100644 --- a/src/IconConnectWithoutContactSharp.tsx +++ b/src/IconConnectWithoutContactSharp.tsx @@ -8,4 +8,4 @@ const IconConnectWithoutContactSharp: React.FC = ({ ...props }) => ( ) -export { IconConnectWithoutContactSharp as default } +export default IconConnectWithoutContactSharp diff --git a/src/IconConnectWithoutContactSharpFilled.tsx b/src/IconConnectWithoutContactSharpFilled.tsx index 9822ee462..14ac89f61 100644 --- a/src/IconConnectWithoutContactSharpFilled.tsx +++ b/src/IconConnectWithoutContactSharpFilled.tsx @@ -10,4 +10,4 @@ const IconConnectWithoutContactSharpFilled: React.FC = ({ ) -export { IconConnectWithoutContactSharpFilled as default } +export default IconConnectWithoutContactSharpFilled diff --git a/src/IconConnectedTvOutlined.tsx b/src/IconConnectedTvOutlined.tsx index 86cb0ac71..26028edc9 100644 --- a/src/IconConnectedTvOutlined.tsx +++ b/src/IconConnectedTvOutlined.tsx @@ -8,4 +8,4 @@ const IconConnectedTvOutlined: React.FC = ({ ...props }) => ( ) -export { IconConnectedTvOutlined as default } +export default IconConnectedTvOutlined diff --git a/src/IconConnectedTvOutlinedFilled.tsx b/src/IconConnectedTvOutlinedFilled.tsx index 2d5103853..9ddb3b52b 100644 --- a/src/IconConnectedTvOutlinedFilled.tsx +++ b/src/IconConnectedTvOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconConnectedTvOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconConnectedTvOutlinedFilled as default } +export default IconConnectedTvOutlinedFilled diff --git a/src/IconConnectedTvRounded.tsx b/src/IconConnectedTvRounded.tsx index 82dc2e9e9..8122e8163 100644 --- a/src/IconConnectedTvRounded.tsx +++ b/src/IconConnectedTvRounded.tsx @@ -8,4 +8,4 @@ const IconConnectedTvRounded: React.FC = ({ ...props }) => ( ) -export { IconConnectedTvRounded as default } +export default IconConnectedTvRounded diff --git a/src/IconConnectedTvRoundedFilled.tsx b/src/IconConnectedTvRoundedFilled.tsx index fd7e55319..0194dc61c 100644 --- a/src/IconConnectedTvRoundedFilled.tsx +++ b/src/IconConnectedTvRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconConnectedTvRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconConnectedTvRoundedFilled as default } +export default IconConnectedTvRoundedFilled diff --git a/src/IconConnectedTvSharp.tsx b/src/IconConnectedTvSharp.tsx index 0471ad472..0fbd46d8c 100644 --- a/src/IconConnectedTvSharp.tsx +++ b/src/IconConnectedTvSharp.tsx @@ -8,4 +8,4 @@ const IconConnectedTvSharp: React.FC = ({ ...props }) => ( ) -export { IconConnectedTvSharp as default } +export default IconConnectedTvSharp diff --git a/src/IconConnectedTvSharpFilled.tsx b/src/IconConnectedTvSharpFilled.tsx index b3bf14593..968d8d5c4 100644 --- a/src/IconConnectedTvSharpFilled.tsx +++ b/src/IconConnectedTvSharpFilled.tsx @@ -8,4 +8,4 @@ const IconConnectedTvSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconConnectedTvSharpFilled as default } +export default IconConnectedTvSharpFilled diff --git a/src/IconConnectingAirportsOutlined.tsx b/src/IconConnectingAirportsOutlined.tsx index f39053101..7f0d9028e 100644 --- a/src/IconConnectingAirportsOutlined.tsx +++ b/src/IconConnectingAirportsOutlined.tsx @@ -8,4 +8,4 @@ const IconConnectingAirportsOutlined: React.FC = ({ ...props }) => ( ) -export { IconConnectingAirportsOutlined as default } +export default IconConnectingAirportsOutlined diff --git a/src/IconConnectingAirportsOutlinedFilled.tsx b/src/IconConnectingAirportsOutlinedFilled.tsx index 9749e243a..3fe8e9629 100644 --- a/src/IconConnectingAirportsOutlinedFilled.tsx +++ b/src/IconConnectingAirportsOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconConnectingAirportsOutlinedFilled: React.FC = ({ ) -export { IconConnectingAirportsOutlinedFilled as default } +export default IconConnectingAirportsOutlinedFilled diff --git a/src/IconConnectingAirportsRounded.tsx b/src/IconConnectingAirportsRounded.tsx index 441ae14bd..98423bd37 100644 --- a/src/IconConnectingAirportsRounded.tsx +++ b/src/IconConnectingAirportsRounded.tsx @@ -8,4 +8,4 @@ const IconConnectingAirportsRounded: React.FC = ({ ...props }) => ( ) -export { IconConnectingAirportsRounded as default } +export default IconConnectingAirportsRounded diff --git a/src/IconConnectingAirportsRoundedFilled.tsx b/src/IconConnectingAirportsRoundedFilled.tsx index 4cc828467..d8d1503c0 100644 --- a/src/IconConnectingAirportsRoundedFilled.tsx +++ b/src/IconConnectingAirportsRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconConnectingAirportsRoundedFilled: React.FC = ({ ) -export { IconConnectingAirportsRoundedFilled as default } +export default IconConnectingAirportsRoundedFilled diff --git a/src/IconConnectingAirportsSharp.tsx b/src/IconConnectingAirportsSharp.tsx index 5a3cb250f..ad47711c8 100644 --- a/src/IconConnectingAirportsSharp.tsx +++ b/src/IconConnectingAirportsSharp.tsx @@ -8,4 +8,4 @@ const IconConnectingAirportsSharp: React.FC = ({ ...props }) => ( ) -export { IconConnectingAirportsSharp as default } +export default IconConnectingAirportsSharp diff --git a/src/IconConnectingAirportsSharpFilled.tsx b/src/IconConnectingAirportsSharpFilled.tsx index 8ab9dc404..23241be47 100644 --- a/src/IconConnectingAirportsSharpFilled.tsx +++ b/src/IconConnectingAirportsSharpFilled.tsx @@ -10,4 +10,4 @@ const IconConnectingAirportsSharpFilled: React.FC = ({ ) -export { IconConnectingAirportsSharpFilled as default } +export default IconConnectingAirportsSharpFilled diff --git a/src/IconConstructionOutlined.tsx b/src/IconConstructionOutlined.tsx index 4101fbb1c..2d548e7b8 100644 --- a/src/IconConstructionOutlined.tsx +++ b/src/IconConstructionOutlined.tsx @@ -8,4 +8,4 @@ const IconConstructionOutlined: React.FC = ({ ...props }) => ( ) -export { IconConstructionOutlined as default } +export default IconConstructionOutlined diff --git a/src/IconConstructionOutlinedFilled.tsx b/src/IconConstructionOutlinedFilled.tsx index 6df8159fa..d884b1762 100644 --- a/src/IconConstructionOutlinedFilled.tsx +++ b/src/IconConstructionOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconConstructionOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconConstructionOutlinedFilled as default } +export default IconConstructionOutlinedFilled diff --git a/src/IconConstructionRounded.tsx b/src/IconConstructionRounded.tsx index 615301e85..47b950879 100644 --- a/src/IconConstructionRounded.tsx +++ b/src/IconConstructionRounded.tsx @@ -8,4 +8,4 @@ const IconConstructionRounded: React.FC = ({ ...props }) => ( ) -export { IconConstructionRounded as default } +export default IconConstructionRounded diff --git a/src/IconConstructionRoundedFilled.tsx b/src/IconConstructionRoundedFilled.tsx index bbe17d709..f6dadcf4e 100644 --- a/src/IconConstructionRoundedFilled.tsx +++ b/src/IconConstructionRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconConstructionRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconConstructionRoundedFilled as default } +export default IconConstructionRoundedFilled diff --git a/src/IconConstructionSharp.tsx b/src/IconConstructionSharp.tsx index 0c0974fc1..90aea9858 100644 --- a/src/IconConstructionSharp.tsx +++ b/src/IconConstructionSharp.tsx @@ -8,4 +8,4 @@ const IconConstructionSharp: React.FC = ({ ...props }) => ( ) -export { IconConstructionSharp as default } +export default IconConstructionSharp diff --git a/src/IconConstructionSharpFilled.tsx b/src/IconConstructionSharpFilled.tsx index 22bc68737..f454aa2ca 100644 --- a/src/IconConstructionSharpFilled.tsx +++ b/src/IconConstructionSharpFilled.tsx @@ -8,4 +8,4 @@ const IconConstructionSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconConstructionSharpFilled as default } +export default IconConstructionSharpFilled diff --git a/src/IconContactEmergencyOutlined.tsx b/src/IconContactEmergencyOutlined.tsx index ab4d533df..d63b3eca0 100644 --- a/src/IconContactEmergencyOutlined.tsx +++ b/src/IconContactEmergencyOutlined.tsx @@ -8,4 +8,4 @@ const IconContactEmergencyOutlined: React.FC = ({ ...props }) => ( ) -export { IconContactEmergencyOutlined as default } +export default IconContactEmergencyOutlined diff --git a/src/IconContactEmergencyOutlinedFilled.tsx b/src/IconContactEmergencyOutlinedFilled.tsx index bd75e5007..6ce8b97e5 100644 --- a/src/IconContactEmergencyOutlinedFilled.tsx +++ b/src/IconContactEmergencyOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconContactEmergencyOutlinedFilled: React.FC = ({ ) -export { IconContactEmergencyOutlinedFilled as default } +export default IconContactEmergencyOutlinedFilled diff --git a/src/IconContactEmergencyRounded.tsx b/src/IconContactEmergencyRounded.tsx index 63d11a59c..0e990fd7a 100644 --- a/src/IconContactEmergencyRounded.tsx +++ b/src/IconContactEmergencyRounded.tsx @@ -8,4 +8,4 @@ const IconContactEmergencyRounded: React.FC = ({ ...props }) => ( ) -export { IconContactEmergencyRounded as default } +export default IconContactEmergencyRounded diff --git a/src/IconContactEmergencyRoundedFilled.tsx b/src/IconContactEmergencyRoundedFilled.tsx index 0ce4edc0b..a4a25f366 100644 --- a/src/IconContactEmergencyRoundedFilled.tsx +++ b/src/IconContactEmergencyRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconContactEmergencyRoundedFilled: React.FC = ({ ) -export { IconContactEmergencyRoundedFilled as default } +export default IconContactEmergencyRoundedFilled diff --git a/src/IconContactEmergencySharp.tsx b/src/IconContactEmergencySharp.tsx index 739b32654..43fd72d6d 100644 --- a/src/IconContactEmergencySharp.tsx +++ b/src/IconContactEmergencySharp.tsx @@ -8,4 +8,4 @@ const IconContactEmergencySharp: React.FC = ({ ...props }) => ( ) -export { IconContactEmergencySharp as default } +export default IconContactEmergencySharp diff --git a/src/IconContactEmergencySharpFilled.tsx b/src/IconContactEmergencySharpFilled.tsx index c320e5b26..00658e2da 100644 --- a/src/IconContactEmergencySharpFilled.tsx +++ b/src/IconContactEmergencySharpFilled.tsx @@ -8,4 +8,4 @@ const IconContactEmergencySharpFilled: React.FC = ({ ...props }) => ( ) -export { IconContactEmergencySharpFilled as default } +export default IconContactEmergencySharpFilled diff --git a/src/IconContactMailOutlined.tsx b/src/IconContactMailOutlined.tsx index 245fd8731..860e1184b 100644 --- a/src/IconContactMailOutlined.tsx +++ b/src/IconContactMailOutlined.tsx @@ -8,4 +8,4 @@ const IconContactMailOutlined: React.FC = ({ ...props }) => ( ) -export { IconContactMailOutlined as default } +export default IconContactMailOutlined diff --git a/src/IconContactMailOutlinedFilled.tsx b/src/IconContactMailOutlinedFilled.tsx index 22cfc3348..0725c20b7 100644 --- a/src/IconContactMailOutlinedFilled.tsx +++ b/src/IconContactMailOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconContactMailOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconContactMailOutlinedFilled as default } +export default IconContactMailOutlinedFilled diff --git a/src/IconContactMailRounded.tsx b/src/IconContactMailRounded.tsx index 30a5fc4af..244d464d6 100644 --- a/src/IconContactMailRounded.tsx +++ b/src/IconContactMailRounded.tsx @@ -8,4 +8,4 @@ const IconContactMailRounded: React.FC = ({ ...props }) => ( ) -export { IconContactMailRounded as default } +export default IconContactMailRounded diff --git a/src/IconContactMailRoundedFilled.tsx b/src/IconContactMailRoundedFilled.tsx index de9b6b2f1..f6f979ee6 100644 --- a/src/IconContactMailRoundedFilled.tsx +++ b/src/IconContactMailRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconContactMailRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconContactMailRoundedFilled as default } +export default IconContactMailRoundedFilled diff --git a/src/IconContactMailSharp.tsx b/src/IconContactMailSharp.tsx index 936f6d3b0..ac4a0cafa 100644 --- a/src/IconContactMailSharp.tsx +++ b/src/IconContactMailSharp.tsx @@ -8,4 +8,4 @@ const IconContactMailSharp: React.FC = ({ ...props }) => ( ) -export { IconContactMailSharp as default } +export default IconContactMailSharp diff --git a/src/IconContactMailSharpFilled.tsx b/src/IconContactMailSharpFilled.tsx index eb5f6aa0a..7fe53dcf0 100644 --- a/src/IconContactMailSharpFilled.tsx +++ b/src/IconContactMailSharpFilled.tsx @@ -8,4 +8,4 @@ const IconContactMailSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconContactMailSharpFilled as default } +export default IconContactMailSharpFilled diff --git a/src/IconContactPageOutlined.tsx b/src/IconContactPageOutlined.tsx index 5f6eda94b..d142089ac 100644 --- a/src/IconContactPageOutlined.tsx +++ b/src/IconContactPageOutlined.tsx @@ -8,4 +8,4 @@ const IconContactPageOutlined: React.FC = ({ ...props }) => ( ) -export { IconContactPageOutlined as default } +export default IconContactPageOutlined diff --git a/src/IconContactPageOutlinedFilled.tsx b/src/IconContactPageOutlinedFilled.tsx index c7c20f2b2..1bc99b79b 100644 --- a/src/IconContactPageOutlinedFilled.tsx +++ b/src/IconContactPageOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconContactPageOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconContactPageOutlinedFilled as default } +export default IconContactPageOutlinedFilled diff --git a/src/IconContactPageRounded.tsx b/src/IconContactPageRounded.tsx index faaeb1140..c7a87c033 100644 --- a/src/IconContactPageRounded.tsx +++ b/src/IconContactPageRounded.tsx @@ -8,4 +8,4 @@ const IconContactPageRounded: React.FC = ({ ...props }) => ( ) -export { IconContactPageRounded as default } +export default IconContactPageRounded diff --git a/src/IconContactPageRoundedFilled.tsx b/src/IconContactPageRoundedFilled.tsx index 539861bb7..820768d7b 100644 --- a/src/IconContactPageRoundedFilled.tsx +++ b/src/IconContactPageRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconContactPageRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconContactPageRoundedFilled as default } +export default IconContactPageRoundedFilled diff --git a/src/IconContactPageSharp.tsx b/src/IconContactPageSharp.tsx index 8bf1333f0..d9d284bfc 100644 --- a/src/IconContactPageSharp.tsx +++ b/src/IconContactPageSharp.tsx @@ -8,4 +8,4 @@ const IconContactPageSharp: React.FC = ({ ...props }) => ( ) -export { IconContactPageSharp as default } +export default IconContactPageSharp diff --git a/src/IconContactPageSharpFilled.tsx b/src/IconContactPageSharpFilled.tsx index 765220b12..be527235c 100644 --- a/src/IconContactPageSharpFilled.tsx +++ b/src/IconContactPageSharpFilled.tsx @@ -8,4 +8,4 @@ const IconContactPageSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconContactPageSharpFilled as default } +export default IconContactPageSharpFilled diff --git a/src/IconContactPhoneOutlined.tsx b/src/IconContactPhoneOutlined.tsx index 91f0a481b..fb472d201 100644 --- a/src/IconContactPhoneOutlined.tsx +++ b/src/IconContactPhoneOutlined.tsx @@ -8,4 +8,4 @@ const IconContactPhoneOutlined: React.FC = ({ ...props }) => ( ) -export { IconContactPhoneOutlined as default } +export default IconContactPhoneOutlined diff --git a/src/IconContactPhoneOutlinedFilled.tsx b/src/IconContactPhoneOutlinedFilled.tsx index f753abbdf..c6e810517 100644 --- a/src/IconContactPhoneOutlinedFilled.tsx +++ b/src/IconContactPhoneOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconContactPhoneOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconContactPhoneOutlinedFilled as default } +export default IconContactPhoneOutlinedFilled diff --git a/src/IconContactPhoneRounded.tsx b/src/IconContactPhoneRounded.tsx index cbb4f91f4..8c5f9c101 100644 --- a/src/IconContactPhoneRounded.tsx +++ b/src/IconContactPhoneRounded.tsx @@ -8,4 +8,4 @@ const IconContactPhoneRounded: React.FC = ({ ...props }) => ( ) -export { IconContactPhoneRounded as default } +export default IconContactPhoneRounded diff --git a/src/IconContactPhoneRoundedFilled.tsx b/src/IconContactPhoneRoundedFilled.tsx index 00b99d082..5f52da61e 100644 --- a/src/IconContactPhoneRoundedFilled.tsx +++ b/src/IconContactPhoneRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconContactPhoneRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconContactPhoneRoundedFilled as default } +export default IconContactPhoneRoundedFilled diff --git a/src/IconContactPhoneSharp.tsx b/src/IconContactPhoneSharp.tsx index 1f74f4fb4..ceb1e0c83 100644 --- a/src/IconContactPhoneSharp.tsx +++ b/src/IconContactPhoneSharp.tsx @@ -8,4 +8,4 @@ const IconContactPhoneSharp: React.FC = ({ ...props }) => ( ) -export { IconContactPhoneSharp as default } +export default IconContactPhoneSharp diff --git a/src/IconContactPhoneSharpFilled.tsx b/src/IconContactPhoneSharpFilled.tsx index 402e914b3..91abb2b6b 100644 --- a/src/IconContactPhoneSharpFilled.tsx +++ b/src/IconContactPhoneSharpFilled.tsx @@ -8,4 +8,4 @@ const IconContactPhoneSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconContactPhoneSharpFilled as default } +export default IconContactPhoneSharpFilled diff --git a/src/IconContactSupportOutlined.tsx b/src/IconContactSupportOutlined.tsx index 6e3c789d4..f4a05bb35 100644 --- a/src/IconContactSupportOutlined.tsx +++ b/src/IconContactSupportOutlined.tsx @@ -8,4 +8,4 @@ const IconContactSupportOutlined: React.FC = ({ ...props }) => ( ) -export { IconContactSupportOutlined as default } +export default IconContactSupportOutlined diff --git a/src/IconContactSupportOutlinedFilled.tsx b/src/IconContactSupportOutlinedFilled.tsx index 82671f9a9..c84370a08 100644 --- a/src/IconContactSupportOutlinedFilled.tsx +++ b/src/IconContactSupportOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconContactSupportOutlinedFilled: React.FC = ({ ) -export { IconContactSupportOutlinedFilled as default } +export default IconContactSupportOutlinedFilled diff --git a/src/IconContactSupportRounded.tsx b/src/IconContactSupportRounded.tsx index 7ceebd685..6dbda8a60 100644 --- a/src/IconContactSupportRounded.tsx +++ b/src/IconContactSupportRounded.tsx @@ -8,4 +8,4 @@ const IconContactSupportRounded: React.FC = ({ ...props }) => ( ) -export { IconContactSupportRounded as default } +export default IconContactSupportRounded diff --git a/src/IconContactSupportRoundedFilled.tsx b/src/IconContactSupportRoundedFilled.tsx index 3f3675cbe..0b6e12cdc 100644 --- a/src/IconContactSupportRoundedFilled.tsx +++ b/src/IconContactSupportRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconContactSupportRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconContactSupportRoundedFilled as default } +export default IconContactSupportRoundedFilled diff --git a/src/IconContactSupportSharp.tsx b/src/IconContactSupportSharp.tsx index 75da0260f..2ce282711 100644 --- a/src/IconContactSupportSharp.tsx +++ b/src/IconContactSupportSharp.tsx @@ -8,4 +8,4 @@ const IconContactSupportSharp: React.FC = ({ ...props }) => ( ) -export { IconContactSupportSharp as default } +export default IconContactSupportSharp diff --git a/src/IconContactSupportSharpFilled.tsx b/src/IconContactSupportSharpFilled.tsx index 647f88302..b9e225ef2 100644 --- a/src/IconContactSupportSharpFilled.tsx +++ b/src/IconContactSupportSharpFilled.tsx @@ -8,4 +8,4 @@ const IconContactSupportSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconContactSupportSharpFilled as default } +export default IconContactSupportSharpFilled diff --git a/src/IconContactlessOffOutlined.tsx b/src/IconContactlessOffOutlined.tsx index 68078a8ed..fc4ee5ac5 100644 --- a/src/IconContactlessOffOutlined.tsx +++ b/src/IconContactlessOffOutlined.tsx @@ -8,4 +8,4 @@ const IconContactlessOffOutlined: React.FC = ({ ...props }) => ( ) -export { IconContactlessOffOutlined as default } +export default IconContactlessOffOutlined diff --git a/src/IconContactlessOffOutlinedFilled.tsx b/src/IconContactlessOffOutlinedFilled.tsx index ff9d563b3..0b9e1eb58 100644 --- a/src/IconContactlessOffOutlinedFilled.tsx +++ b/src/IconContactlessOffOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconContactlessOffOutlinedFilled: React.FC = ({ ) -export { IconContactlessOffOutlinedFilled as default } +export default IconContactlessOffOutlinedFilled diff --git a/src/IconContactlessOffRounded.tsx b/src/IconContactlessOffRounded.tsx index 1b6ec57a7..308191e12 100644 --- a/src/IconContactlessOffRounded.tsx +++ b/src/IconContactlessOffRounded.tsx @@ -8,4 +8,4 @@ const IconContactlessOffRounded: React.FC = ({ ...props }) => ( ) -export { IconContactlessOffRounded as default } +export default IconContactlessOffRounded diff --git a/src/IconContactlessOffRoundedFilled.tsx b/src/IconContactlessOffRoundedFilled.tsx index 5e8784612..085bf6ab7 100644 --- a/src/IconContactlessOffRoundedFilled.tsx +++ b/src/IconContactlessOffRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconContactlessOffRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconContactlessOffRoundedFilled as default } +export default IconContactlessOffRoundedFilled diff --git a/src/IconContactlessOffSharp.tsx b/src/IconContactlessOffSharp.tsx index 37766488c..64fe9bc13 100644 --- a/src/IconContactlessOffSharp.tsx +++ b/src/IconContactlessOffSharp.tsx @@ -8,4 +8,4 @@ const IconContactlessOffSharp: React.FC = ({ ...props }) => ( ) -export { IconContactlessOffSharp as default } +export default IconContactlessOffSharp diff --git a/src/IconContactlessOffSharpFilled.tsx b/src/IconContactlessOffSharpFilled.tsx index 17d0ac7fd..9033c65ea 100644 --- a/src/IconContactlessOffSharpFilled.tsx +++ b/src/IconContactlessOffSharpFilled.tsx @@ -8,4 +8,4 @@ const IconContactlessOffSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconContactlessOffSharpFilled as default } +export default IconContactlessOffSharpFilled diff --git a/src/IconContactlessOutlined.tsx b/src/IconContactlessOutlined.tsx index a251bcadb..d972f37b6 100644 --- a/src/IconContactlessOutlined.tsx +++ b/src/IconContactlessOutlined.tsx @@ -8,4 +8,4 @@ const IconContactlessOutlined: React.FC = ({ ...props }) => ( ) -export { IconContactlessOutlined as default } +export default IconContactlessOutlined diff --git a/src/IconContactlessOutlinedFilled.tsx b/src/IconContactlessOutlinedFilled.tsx index 38da0ed9e..89d400206 100644 --- a/src/IconContactlessOutlinedFilled.tsx +++ b/src/IconContactlessOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconContactlessOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconContactlessOutlinedFilled as default } +export default IconContactlessOutlinedFilled diff --git a/src/IconContactlessRounded.tsx b/src/IconContactlessRounded.tsx index 9374045bd..7167791cd 100644 --- a/src/IconContactlessRounded.tsx +++ b/src/IconContactlessRounded.tsx @@ -8,4 +8,4 @@ const IconContactlessRounded: React.FC = ({ ...props }) => ( ) -export { IconContactlessRounded as default } +export default IconContactlessRounded diff --git a/src/IconContactlessRoundedFilled.tsx b/src/IconContactlessRoundedFilled.tsx index afaa0390c..faabc542b 100644 --- a/src/IconContactlessRoundedFilled.tsx +++ b/src/IconContactlessRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconContactlessRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconContactlessRoundedFilled as default } +export default IconContactlessRoundedFilled diff --git a/src/IconContactlessSharp.tsx b/src/IconContactlessSharp.tsx index 466054349..d22e435d4 100644 --- a/src/IconContactlessSharp.tsx +++ b/src/IconContactlessSharp.tsx @@ -8,4 +8,4 @@ const IconContactlessSharp: React.FC = ({ ...props }) => ( ) -export { IconContactlessSharp as default } +export default IconContactlessSharp diff --git a/src/IconContactlessSharpFilled.tsx b/src/IconContactlessSharpFilled.tsx index 682180f39..91fcafcc1 100644 --- a/src/IconContactlessSharpFilled.tsx +++ b/src/IconContactlessSharpFilled.tsx @@ -8,4 +8,4 @@ const IconContactlessSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconContactlessSharpFilled as default } +export default IconContactlessSharpFilled diff --git a/src/IconContactsOutlined.tsx b/src/IconContactsOutlined.tsx index a2e325ebf..36955d509 100644 --- a/src/IconContactsOutlined.tsx +++ b/src/IconContactsOutlined.tsx @@ -8,4 +8,4 @@ const IconContactsOutlined: React.FC = ({ ...props }) => ( ) -export { IconContactsOutlined as default } +export default IconContactsOutlined diff --git a/src/IconContactsOutlinedFilled.tsx b/src/IconContactsOutlinedFilled.tsx index 03241adf4..783584d50 100644 --- a/src/IconContactsOutlinedFilled.tsx +++ b/src/IconContactsOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconContactsOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconContactsOutlinedFilled as default } +export default IconContactsOutlinedFilled diff --git a/src/IconContactsProductOutlined.tsx b/src/IconContactsProductOutlined.tsx index cce88dbde..22e47250a 100644 --- a/src/IconContactsProductOutlined.tsx +++ b/src/IconContactsProductOutlined.tsx @@ -8,4 +8,4 @@ const IconContactsProductOutlined: React.FC = ({ ...props }) => ( ) -export { IconContactsProductOutlined as default } +export default IconContactsProductOutlined diff --git a/src/IconContactsProductOutlinedFilled.tsx b/src/IconContactsProductOutlinedFilled.tsx index f0c2fa130..8dfcc8688 100644 --- a/src/IconContactsProductOutlinedFilled.tsx +++ b/src/IconContactsProductOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconContactsProductOutlinedFilled: React.FC = ({ ) -export { IconContactsProductOutlinedFilled as default } +export default IconContactsProductOutlinedFilled diff --git a/src/IconContactsProductRounded.tsx b/src/IconContactsProductRounded.tsx index f1ef3619f..ebb31fb9e 100644 --- a/src/IconContactsProductRounded.tsx +++ b/src/IconContactsProductRounded.tsx @@ -8,4 +8,4 @@ const IconContactsProductRounded: React.FC = ({ ...props }) => ( ) -export { IconContactsProductRounded as default } +export default IconContactsProductRounded diff --git a/src/IconContactsProductRoundedFilled.tsx b/src/IconContactsProductRoundedFilled.tsx index f8bebf1d3..6083ed67d 100644 --- a/src/IconContactsProductRoundedFilled.tsx +++ b/src/IconContactsProductRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconContactsProductRoundedFilled: React.FC = ({ ) -export { IconContactsProductRoundedFilled as default } +export default IconContactsProductRoundedFilled diff --git a/src/IconContactsProductSharp.tsx b/src/IconContactsProductSharp.tsx index 39f9f1b03..a228e67e0 100644 --- a/src/IconContactsProductSharp.tsx +++ b/src/IconContactsProductSharp.tsx @@ -8,4 +8,4 @@ const IconContactsProductSharp: React.FC = ({ ...props }) => ( ) -export { IconContactsProductSharp as default } +export default IconContactsProductSharp diff --git a/src/IconContactsProductSharpFilled.tsx b/src/IconContactsProductSharpFilled.tsx index 08b94d2df..45aed7df3 100644 --- a/src/IconContactsProductSharpFilled.tsx +++ b/src/IconContactsProductSharpFilled.tsx @@ -8,4 +8,4 @@ const IconContactsProductSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconContactsProductSharpFilled as default } +export default IconContactsProductSharpFilled diff --git a/src/IconContactsRounded.tsx b/src/IconContactsRounded.tsx index 5fc199bad..2c907090b 100644 --- a/src/IconContactsRounded.tsx +++ b/src/IconContactsRounded.tsx @@ -8,4 +8,4 @@ const IconContactsRounded: React.FC = ({ ...props }) => ( ) -export { IconContactsRounded as default } +export default IconContactsRounded diff --git a/src/IconContactsRoundedFilled.tsx b/src/IconContactsRoundedFilled.tsx index fd671819a..d9f2adbae 100644 --- a/src/IconContactsRoundedFilled.tsx +++ b/src/IconContactsRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconContactsRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconContactsRoundedFilled as default } +export default IconContactsRoundedFilled diff --git a/src/IconContactsSharp.tsx b/src/IconContactsSharp.tsx index dc119cb4f..62ce14a0b 100644 --- a/src/IconContactsSharp.tsx +++ b/src/IconContactsSharp.tsx @@ -8,4 +8,4 @@ const IconContactsSharp: React.FC = ({ ...props }) => ( ) -export { IconContactsSharp as default } +export default IconContactsSharp diff --git a/src/IconContactsSharpFilled.tsx b/src/IconContactsSharpFilled.tsx index ce5ede4fb..e684dcbb1 100644 --- a/src/IconContactsSharpFilled.tsx +++ b/src/IconContactsSharpFilled.tsx @@ -8,4 +8,4 @@ const IconContactsSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconContactsSharpFilled as default } +export default IconContactsSharpFilled diff --git a/src/IconContentCopyOutlined.tsx b/src/IconContentCopyOutlined.tsx index e19eb3f0a..b6d0977c9 100644 --- a/src/IconContentCopyOutlined.tsx +++ b/src/IconContentCopyOutlined.tsx @@ -8,4 +8,4 @@ const IconContentCopyOutlined: React.FC = ({ ...props }) => ( ) -export { IconContentCopyOutlined as default } +export default IconContentCopyOutlined diff --git a/src/IconContentCopyOutlinedFilled.tsx b/src/IconContentCopyOutlinedFilled.tsx index d01083849..489a9964c 100644 --- a/src/IconContentCopyOutlinedFilled.tsx +++ b/src/IconContentCopyOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconContentCopyOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconContentCopyOutlinedFilled as default } +export default IconContentCopyOutlinedFilled diff --git a/src/IconContentCopyRounded.tsx b/src/IconContentCopyRounded.tsx index acd311fb3..43695ad96 100644 --- a/src/IconContentCopyRounded.tsx +++ b/src/IconContentCopyRounded.tsx @@ -8,4 +8,4 @@ const IconContentCopyRounded: React.FC = ({ ...props }) => ( ) -export { IconContentCopyRounded as default } +export default IconContentCopyRounded diff --git a/src/IconContentCopyRoundedFilled.tsx b/src/IconContentCopyRoundedFilled.tsx index 60f0a9c8a..53fef6b6c 100644 --- a/src/IconContentCopyRoundedFilled.tsx +++ b/src/IconContentCopyRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconContentCopyRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconContentCopyRoundedFilled as default } +export default IconContentCopyRoundedFilled diff --git a/src/IconContentCopySharp.tsx b/src/IconContentCopySharp.tsx index 62d8f5f58..b76054a4b 100644 --- a/src/IconContentCopySharp.tsx +++ b/src/IconContentCopySharp.tsx @@ -8,4 +8,4 @@ const IconContentCopySharp: React.FC = ({ ...props }) => ( ) -export { IconContentCopySharp as default } +export default IconContentCopySharp diff --git a/src/IconContentCopySharpFilled.tsx b/src/IconContentCopySharpFilled.tsx index 73b4e0606..daa4fa1df 100644 --- a/src/IconContentCopySharpFilled.tsx +++ b/src/IconContentCopySharpFilled.tsx @@ -8,4 +8,4 @@ const IconContentCopySharpFilled: React.FC = ({ ...props }) => ( ) -export { IconContentCopySharpFilled as default } +export default IconContentCopySharpFilled diff --git a/src/IconContentCutOutlined.tsx b/src/IconContentCutOutlined.tsx index ad08674ec..a4fb93dbf 100644 --- a/src/IconContentCutOutlined.tsx +++ b/src/IconContentCutOutlined.tsx @@ -8,4 +8,4 @@ const IconContentCutOutlined: React.FC = ({ ...props }) => ( ) -export { IconContentCutOutlined as default } +export default IconContentCutOutlined diff --git a/src/IconContentCutOutlinedFilled.tsx b/src/IconContentCutOutlinedFilled.tsx index 15bfc4d97..45523d978 100644 --- a/src/IconContentCutOutlinedFilled.tsx +++ b/src/IconContentCutOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconContentCutOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconContentCutOutlinedFilled as default } +export default IconContentCutOutlinedFilled diff --git a/src/IconContentCutRounded.tsx b/src/IconContentCutRounded.tsx index e66714dea..5cc5adec6 100644 --- a/src/IconContentCutRounded.tsx +++ b/src/IconContentCutRounded.tsx @@ -8,4 +8,4 @@ const IconContentCutRounded: React.FC = ({ ...props }) => ( ) -export { IconContentCutRounded as default } +export default IconContentCutRounded diff --git a/src/IconContentCutRoundedFilled.tsx b/src/IconContentCutRoundedFilled.tsx index 7bbc684f2..aecae7a68 100644 --- a/src/IconContentCutRoundedFilled.tsx +++ b/src/IconContentCutRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconContentCutRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconContentCutRoundedFilled as default } +export default IconContentCutRoundedFilled diff --git a/src/IconContentCutSharp.tsx b/src/IconContentCutSharp.tsx index 3f45a97b1..15c917344 100644 --- a/src/IconContentCutSharp.tsx +++ b/src/IconContentCutSharp.tsx @@ -8,4 +8,4 @@ const IconContentCutSharp: React.FC = ({ ...props }) => ( ) -export { IconContentCutSharp as default } +export default IconContentCutSharp diff --git a/src/IconContentCutSharpFilled.tsx b/src/IconContentCutSharpFilled.tsx index 9d714a408..f02117b97 100644 --- a/src/IconContentCutSharpFilled.tsx +++ b/src/IconContentCutSharpFilled.tsx @@ -8,4 +8,4 @@ const IconContentCutSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconContentCutSharpFilled as default } +export default IconContentCutSharpFilled diff --git a/src/IconContentPasteGoOutlined.tsx b/src/IconContentPasteGoOutlined.tsx index 83be0b467..43342c188 100644 --- a/src/IconContentPasteGoOutlined.tsx +++ b/src/IconContentPasteGoOutlined.tsx @@ -8,4 +8,4 @@ const IconContentPasteGoOutlined: React.FC = ({ ...props }) => ( ) -export { IconContentPasteGoOutlined as default } +export default IconContentPasteGoOutlined diff --git a/src/IconContentPasteGoOutlinedFilled.tsx b/src/IconContentPasteGoOutlinedFilled.tsx index 8b8b3daed..b1bada527 100644 --- a/src/IconContentPasteGoOutlinedFilled.tsx +++ b/src/IconContentPasteGoOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconContentPasteGoOutlinedFilled: React.FC = ({ ) -export { IconContentPasteGoOutlinedFilled as default } +export default IconContentPasteGoOutlinedFilled diff --git a/src/IconContentPasteGoRounded.tsx b/src/IconContentPasteGoRounded.tsx index 2fc51ead1..3e73c7fd2 100644 --- a/src/IconContentPasteGoRounded.tsx +++ b/src/IconContentPasteGoRounded.tsx @@ -8,4 +8,4 @@ const IconContentPasteGoRounded: React.FC = ({ ...props }) => ( ) -export { IconContentPasteGoRounded as default } +export default IconContentPasteGoRounded diff --git a/src/IconContentPasteGoRoundedFilled.tsx b/src/IconContentPasteGoRoundedFilled.tsx index c520864e1..3069fdaf0 100644 --- a/src/IconContentPasteGoRoundedFilled.tsx +++ b/src/IconContentPasteGoRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconContentPasteGoRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconContentPasteGoRoundedFilled as default } +export default IconContentPasteGoRoundedFilled diff --git a/src/IconContentPasteGoSharp.tsx b/src/IconContentPasteGoSharp.tsx index 800dcdf96..94ca9690a 100644 --- a/src/IconContentPasteGoSharp.tsx +++ b/src/IconContentPasteGoSharp.tsx @@ -8,4 +8,4 @@ const IconContentPasteGoSharp: React.FC = ({ ...props }) => ( ) -export { IconContentPasteGoSharp as default } +export default IconContentPasteGoSharp diff --git a/src/IconContentPasteGoSharpFilled.tsx b/src/IconContentPasteGoSharpFilled.tsx index 022af4892..294e29335 100644 --- a/src/IconContentPasteGoSharpFilled.tsx +++ b/src/IconContentPasteGoSharpFilled.tsx @@ -8,4 +8,4 @@ const IconContentPasteGoSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconContentPasteGoSharpFilled as default } +export default IconContentPasteGoSharpFilled diff --git a/src/IconContentPasteOffOutlined.tsx b/src/IconContentPasteOffOutlined.tsx index 17df80023..446a1e4b5 100644 --- a/src/IconContentPasteOffOutlined.tsx +++ b/src/IconContentPasteOffOutlined.tsx @@ -8,4 +8,4 @@ const IconContentPasteOffOutlined: React.FC = ({ ...props }) => ( ) -export { IconContentPasteOffOutlined as default } +export default IconContentPasteOffOutlined diff --git a/src/IconContentPasteOffOutlinedFilled.tsx b/src/IconContentPasteOffOutlinedFilled.tsx index 6fc43c526..bfbc3bac4 100644 --- a/src/IconContentPasteOffOutlinedFilled.tsx +++ b/src/IconContentPasteOffOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconContentPasteOffOutlinedFilled: React.FC = ({ ) -export { IconContentPasteOffOutlinedFilled as default } +export default IconContentPasteOffOutlinedFilled diff --git a/src/IconContentPasteOffRounded.tsx b/src/IconContentPasteOffRounded.tsx index 5cde50f37..272e59a9d 100644 --- a/src/IconContentPasteOffRounded.tsx +++ b/src/IconContentPasteOffRounded.tsx @@ -8,4 +8,4 @@ const IconContentPasteOffRounded: React.FC = ({ ...props }) => ( ) -export { IconContentPasteOffRounded as default } +export default IconContentPasteOffRounded diff --git a/src/IconContentPasteOffRoundedFilled.tsx b/src/IconContentPasteOffRoundedFilled.tsx index 56f3b14e9..36aae6ada 100644 --- a/src/IconContentPasteOffRoundedFilled.tsx +++ b/src/IconContentPasteOffRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconContentPasteOffRoundedFilled: React.FC = ({ ) -export { IconContentPasteOffRoundedFilled as default } +export default IconContentPasteOffRoundedFilled diff --git a/src/IconContentPasteOffSharp.tsx b/src/IconContentPasteOffSharp.tsx index 913f9a0fb..55b4526df 100644 --- a/src/IconContentPasteOffSharp.tsx +++ b/src/IconContentPasteOffSharp.tsx @@ -8,4 +8,4 @@ const IconContentPasteOffSharp: React.FC = ({ ...props }) => ( ) -export { IconContentPasteOffSharp as default } +export default IconContentPasteOffSharp diff --git a/src/IconContentPasteOffSharpFilled.tsx b/src/IconContentPasteOffSharpFilled.tsx index c49c6c614..159af7cf3 100644 --- a/src/IconContentPasteOffSharpFilled.tsx +++ b/src/IconContentPasteOffSharpFilled.tsx @@ -8,4 +8,4 @@ const IconContentPasteOffSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconContentPasteOffSharpFilled as default } +export default IconContentPasteOffSharpFilled diff --git a/src/IconContentPasteOutlined.tsx b/src/IconContentPasteOutlined.tsx index cd185bab2..5dedabebf 100644 --- a/src/IconContentPasteOutlined.tsx +++ b/src/IconContentPasteOutlined.tsx @@ -8,4 +8,4 @@ const IconContentPasteOutlined: React.FC = ({ ...props }) => ( ) -export { IconContentPasteOutlined as default } +export default IconContentPasteOutlined diff --git a/src/IconContentPasteOutlinedFilled.tsx b/src/IconContentPasteOutlinedFilled.tsx index ae4872f4a..309065238 100644 --- a/src/IconContentPasteOutlinedFilled.tsx +++ b/src/IconContentPasteOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconContentPasteOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconContentPasteOutlinedFilled as default } +export default IconContentPasteOutlinedFilled diff --git a/src/IconContentPasteRounded.tsx b/src/IconContentPasteRounded.tsx index 9c2376311..293fe1173 100644 --- a/src/IconContentPasteRounded.tsx +++ b/src/IconContentPasteRounded.tsx @@ -8,4 +8,4 @@ const IconContentPasteRounded: React.FC = ({ ...props }) => ( ) -export { IconContentPasteRounded as default } +export default IconContentPasteRounded diff --git a/src/IconContentPasteRoundedFilled.tsx b/src/IconContentPasteRoundedFilled.tsx index eb33e97c7..a30c2f7d8 100644 --- a/src/IconContentPasteRoundedFilled.tsx +++ b/src/IconContentPasteRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconContentPasteRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconContentPasteRoundedFilled as default } +export default IconContentPasteRoundedFilled diff --git a/src/IconContentPasteSearchOutlined.tsx b/src/IconContentPasteSearchOutlined.tsx index 1d8e19878..8a8d692c7 100644 --- a/src/IconContentPasteSearchOutlined.tsx +++ b/src/IconContentPasteSearchOutlined.tsx @@ -8,4 +8,4 @@ const IconContentPasteSearchOutlined: React.FC = ({ ...props }) => ( ) -export { IconContentPasteSearchOutlined as default } +export default IconContentPasteSearchOutlined diff --git a/src/IconContentPasteSearchOutlinedFilled.tsx b/src/IconContentPasteSearchOutlinedFilled.tsx index 143b440cd..2c1680756 100644 --- a/src/IconContentPasteSearchOutlinedFilled.tsx +++ b/src/IconContentPasteSearchOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconContentPasteSearchOutlinedFilled: React.FC = ({ ) -export { IconContentPasteSearchOutlinedFilled as default } +export default IconContentPasteSearchOutlinedFilled diff --git a/src/IconContentPasteSearchRounded.tsx b/src/IconContentPasteSearchRounded.tsx index b082c6f18..f6a87404b 100644 --- a/src/IconContentPasteSearchRounded.tsx +++ b/src/IconContentPasteSearchRounded.tsx @@ -8,4 +8,4 @@ const IconContentPasteSearchRounded: React.FC = ({ ...props }) => ( ) -export { IconContentPasteSearchRounded as default } +export default IconContentPasteSearchRounded diff --git a/src/IconContentPasteSearchRoundedFilled.tsx b/src/IconContentPasteSearchRoundedFilled.tsx index 64a0e9c83..e6a308f02 100644 --- a/src/IconContentPasteSearchRoundedFilled.tsx +++ b/src/IconContentPasteSearchRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconContentPasteSearchRoundedFilled: React.FC = ({ ) -export { IconContentPasteSearchRoundedFilled as default } +export default IconContentPasteSearchRoundedFilled diff --git a/src/IconContentPasteSearchSharp.tsx b/src/IconContentPasteSearchSharp.tsx index 71dc533d5..eca9e14bf 100644 --- a/src/IconContentPasteSearchSharp.tsx +++ b/src/IconContentPasteSearchSharp.tsx @@ -8,4 +8,4 @@ const IconContentPasteSearchSharp: React.FC = ({ ...props }) => ( ) -export { IconContentPasteSearchSharp as default } +export default IconContentPasteSearchSharp diff --git a/src/IconContentPasteSearchSharpFilled.tsx b/src/IconContentPasteSearchSharpFilled.tsx index a1c153f10..1c5189718 100644 --- a/src/IconContentPasteSearchSharpFilled.tsx +++ b/src/IconContentPasteSearchSharpFilled.tsx @@ -10,4 +10,4 @@ const IconContentPasteSearchSharpFilled: React.FC = ({ ) -export { IconContentPasteSearchSharpFilled as default } +export default IconContentPasteSearchSharpFilled diff --git a/src/IconContentPasteSharp.tsx b/src/IconContentPasteSharp.tsx index 51d133a72..6b538d767 100644 --- a/src/IconContentPasteSharp.tsx +++ b/src/IconContentPasteSharp.tsx @@ -8,4 +8,4 @@ const IconContentPasteSharp: React.FC = ({ ...props }) => ( ) -export { IconContentPasteSharp as default } +export default IconContentPasteSharp diff --git a/src/IconContentPasteSharpFilled.tsx b/src/IconContentPasteSharpFilled.tsx index e522db63b..a12cf9ced 100644 --- a/src/IconContentPasteSharpFilled.tsx +++ b/src/IconContentPasteSharpFilled.tsx @@ -8,4 +8,4 @@ const IconContentPasteSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconContentPasteSharpFilled as default } +export default IconContentPasteSharpFilled diff --git a/src/IconContextualTokenAddOutlined.tsx b/src/IconContextualTokenAddOutlined.tsx index 7329eb528..dcf85d954 100644 --- a/src/IconContextualTokenAddOutlined.tsx +++ b/src/IconContextualTokenAddOutlined.tsx @@ -8,4 +8,4 @@ const IconContextualTokenAddOutlined: React.FC = ({ ...props }) => ( ) -export { IconContextualTokenAddOutlined as default } +export default IconContextualTokenAddOutlined diff --git a/src/IconContextualTokenAddOutlinedFilled.tsx b/src/IconContextualTokenAddOutlinedFilled.tsx index 18c1a5040..69d8dd1db 100644 --- a/src/IconContextualTokenAddOutlinedFilled.tsx +++ b/src/IconContextualTokenAddOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconContextualTokenAddOutlinedFilled: React.FC = ({ ) -export { IconContextualTokenAddOutlinedFilled as default } +export default IconContextualTokenAddOutlinedFilled diff --git a/src/IconContextualTokenAddRounded.tsx b/src/IconContextualTokenAddRounded.tsx index b8d45f420..897438d36 100644 --- a/src/IconContextualTokenAddRounded.tsx +++ b/src/IconContextualTokenAddRounded.tsx @@ -8,4 +8,4 @@ const IconContextualTokenAddRounded: React.FC = ({ ...props }) => ( ) -export { IconContextualTokenAddRounded as default } +export default IconContextualTokenAddRounded diff --git a/src/IconContextualTokenAddRoundedFilled.tsx b/src/IconContextualTokenAddRoundedFilled.tsx index e64f0ef5a..796caf5dd 100644 --- a/src/IconContextualTokenAddRoundedFilled.tsx +++ b/src/IconContextualTokenAddRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconContextualTokenAddRoundedFilled: React.FC = ({ ) -export { IconContextualTokenAddRoundedFilled as default } +export default IconContextualTokenAddRoundedFilled diff --git a/src/IconContextualTokenAddSharp.tsx b/src/IconContextualTokenAddSharp.tsx index 7c558e202..8c228cba8 100644 --- a/src/IconContextualTokenAddSharp.tsx +++ b/src/IconContextualTokenAddSharp.tsx @@ -8,4 +8,4 @@ const IconContextualTokenAddSharp: React.FC = ({ ...props }) => ( ) -export { IconContextualTokenAddSharp as default } +export default IconContextualTokenAddSharp diff --git a/src/IconContextualTokenAddSharpFilled.tsx b/src/IconContextualTokenAddSharpFilled.tsx index e421702d4..034c6c350 100644 --- a/src/IconContextualTokenAddSharpFilled.tsx +++ b/src/IconContextualTokenAddSharpFilled.tsx @@ -10,4 +10,4 @@ const IconContextualTokenAddSharpFilled: React.FC = ({ ) -export { IconContextualTokenAddSharpFilled as default } +export default IconContextualTokenAddSharpFilled diff --git a/src/IconContextualTokenOutlined.tsx b/src/IconContextualTokenOutlined.tsx index 5159ce5d8..3a3a6948e 100644 --- a/src/IconContextualTokenOutlined.tsx +++ b/src/IconContextualTokenOutlined.tsx @@ -8,4 +8,4 @@ const IconContextualTokenOutlined: React.FC = ({ ...props }) => ( ) -export { IconContextualTokenOutlined as default } +export default IconContextualTokenOutlined diff --git a/src/IconContextualTokenOutlinedFilled.tsx b/src/IconContextualTokenOutlinedFilled.tsx index 350c89af2..b81cc3822 100644 --- a/src/IconContextualTokenOutlinedFilled.tsx +++ b/src/IconContextualTokenOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconContextualTokenOutlinedFilled: React.FC = ({ ) -export { IconContextualTokenOutlinedFilled as default } +export default IconContextualTokenOutlinedFilled diff --git a/src/IconContextualTokenRounded.tsx b/src/IconContextualTokenRounded.tsx index 4af780264..f77698d7e 100644 --- a/src/IconContextualTokenRounded.tsx +++ b/src/IconContextualTokenRounded.tsx @@ -8,4 +8,4 @@ const IconContextualTokenRounded: React.FC = ({ ...props }) => ( ) -export { IconContextualTokenRounded as default } +export default IconContextualTokenRounded diff --git a/src/IconContextualTokenRoundedFilled.tsx b/src/IconContextualTokenRoundedFilled.tsx index 1b9614594..ce1a1b072 100644 --- a/src/IconContextualTokenRoundedFilled.tsx +++ b/src/IconContextualTokenRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconContextualTokenRoundedFilled: React.FC = ({ ) -export { IconContextualTokenRoundedFilled as default } +export default IconContextualTokenRoundedFilled diff --git a/src/IconContextualTokenSharp.tsx b/src/IconContextualTokenSharp.tsx index a6312254e..1a4ed2818 100644 --- a/src/IconContextualTokenSharp.tsx +++ b/src/IconContextualTokenSharp.tsx @@ -8,4 +8,4 @@ const IconContextualTokenSharp: React.FC = ({ ...props }) => ( ) -export { IconContextualTokenSharp as default } +export default IconContextualTokenSharp diff --git a/src/IconContextualTokenSharpFilled.tsx b/src/IconContextualTokenSharpFilled.tsx index 33de89e9b..d118d5ad8 100644 --- a/src/IconContextualTokenSharpFilled.tsx +++ b/src/IconContextualTokenSharpFilled.tsx @@ -8,4 +8,4 @@ const IconContextualTokenSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconContextualTokenSharpFilled as default } +export default IconContextualTokenSharpFilled diff --git a/src/IconContractDeleteOutlined.tsx b/src/IconContractDeleteOutlined.tsx index 048a68155..dcb923326 100644 --- a/src/IconContractDeleteOutlined.tsx +++ b/src/IconContractDeleteOutlined.tsx @@ -8,4 +8,4 @@ const IconContractDeleteOutlined: React.FC = ({ ...props }) => ( ) -export { IconContractDeleteOutlined as default } +export default IconContractDeleteOutlined diff --git a/src/IconContractDeleteOutlinedFilled.tsx b/src/IconContractDeleteOutlinedFilled.tsx index 5410b581a..390b4dcc0 100644 --- a/src/IconContractDeleteOutlinedFilled.tsx +++ b/src/IconContractDeleteOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconContractDeleteOutlinedFilled: React.FC = ({ ) -export { IconContractDeleteOutlinedFilled as default } +export default IconContractDeleteOutlinedFilled diff --git a/src/IconContractDeleteRounded.tsx b/src/IconContractDeleteRounded.tsx index e03e10e93..093729a12 100644 --- a/src/IconContractDeleteRounded.tsx +++ b/src/IconContractDeleteRounded.tsx @@ -8,4 +8,4 @@ const IconContractDeleteRounded: React.FC = ({ ...props }) => ( ) -export { IconContractDeleteRounded as default } +export default IconContractDeleteRounded diff --git a/src/IconContractDeleteRoundedFilled.tsx b/src/IconContractDeleteRoundedFilled.tsx index c7ecf19ea..c307a752d 100644 --- a/src/IconContractDeleteRoundedFilled.tsx +++ b/src/IconContractDeleteRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconContractDeleteRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconContractDeleteRoundedFilled as default } +export default IconContractDeleteRoundedFilled diff --git a/src/IconContractDeleteSharp.tsx b/src/IconContractDeleteSharp.tsx index 9c61d0fed..5ab535558 100644 --- a/src/IconContractDeleteSharp.tsx +++ b/src/IconContractDeleteSharp.tsx @@ -8,4 +8,4 @@ const IconContractDeleteSharp: React.FC = ({ ...props }) => ( ) -export { IconContractDeleteSharp as default } +export default IconContractDeleteSharp diff --git a/src/IconContractDeleteSharpFilled.tsx b/src/IconContractDeleteSharpFilled.tsx index 290d3e242..82923211a 100644 --- a/src/IconContractDeleteSharpFilled.tsx +++ b/src/IconContractDeleteSharpFilled.tsx @@ -8,4 +8,4 @@ const IconContractDeleteSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconContractDeleteSharpFilled as default } +export default IconContractDeleteSharpFilled diff --git a/src/IconContractEditOutlined.tsx b/src/IconContractEditOutlined.tsx index 5c75010fc..250e8ff20 100644 --- a/src/IconContractEditOutlined.tsx +++ b/src/IconContractEditOutlined.tsx @@ -8,4 +8,4 @@ const IconContractEditOutlined: React.FC = ({ ...props }) => ( ) -export { IconContractEditOutlined as default } +export default IconContractEditOutlined diff --git a/src/IconContractEditOutlinedFilled.tsx b/src/IconContractEditOutlinedFilled.tsx index edeb80612..322c8ad6c 100644 --- a/src/IconContractEditOutlinedFilled.tsx +++ b/src/IconContractEditOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconContractEditOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconContractEditOutlinedFilled as default } +export default IconContractEditOutlinedFilled diff --git a/src/IconContractEditRounded.tsx b/src/IconContractEditRounded.tsx index d42da8808..b6dbe116d 100644 --- a/src/IconContractEditRounded.tsx +++ b/src/IconContractEditRounded.tsx @@ -8,4 +8,4 @@ const IconContractEditRounded: React.FC = ({ ...props }) => ( ) -export { IconContractEditRounded as default } +export default IconContractEditRounded diff --git a/src/IconContractEditRoundedFilled.tsx b/src/IconContractEditRoundedFilled.tsx index a6a04f180..8df524a7a 100644 --- a/src/IconContractEditRoundedFilled.tsx +++ b/src/IconContractEditRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconContractEditRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconContractEditRoundedFilled as default } +export default IconContractEditRoundedFilled diff --git a/src/IconContractEditSharp.tsx b/src/IconContractEditSharp.tsx index 29e5b829f..94706e9bc 100644 --- a/src/IconContractEditSharp.tsx +++ b/src/IconContractEditSharp.tsx @@ -8,4 +8,4 @@ const IconContractEditSharp: React.FC = ({ ...props }) => ( ) -export { IconContractEditSharp as default } +export default IconContractEditSharp diff --git a/src/IconContractEditSharpFilled.tsx b/src/IconContractEditSharpFilled.tsx index 5b31441c1..9f0575454 100644 --- a/src/IconContractEditSharpFilled.tsx +++ b/src/IconContractEditSharpFilled.tsx @@ -8,4 +8,4 @@ const IconContractEditSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconContractEditSharpFilled as default } +export default IconContractEditSharpFilled diff --git a/src/IconContractOutlined.tsx b/src/IconContractOutlined.tsx index e3573b30a..d235eef7a 100644 --- a/src/IconContractOutlined.tsx +++ b/src/IconContractOutlined.tsx @@ -8,4 +8,4 @@ const IconContractOutlined: React.FC = ({ ...props }) => ( ) -export { IconContractOutlined as default } +export default IconContractOutlined diff --git a/src/IconContractOutlinedFilled.tsx b/src/IconContractOutlinedFilled.tsx index f80cef785..793d23f8b 100644 --- a/src/IconContractOutlinedFilled.tsx +++ b/src/IconContractOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconContractOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconContractOutlinedFilled as default } +export default IconContractOutlinedFilled diff --git a/src/IconContractRounded.tsx b/src/IconContractRounded.tsx index a1e3e6f5c..63c91bbc4 100644 --- a/src/IconContractRounded.tsx +++ b/src/IconContractRounded.tsx @@ -8,4 +8,4 @@ const IconContractRounded: React.FC = ({ ...props }) => ( ) -export { IconContractRounded as default } +export default IconContractRounded diff --git a/src/IconContractRoundedFilled.tsx b/src/IconContractRoundedFilled.tsx index 7d20dc3de..e6fbb1bbc 100644 --- a/src/IconContractRoundedFilled.tsx +++ b/src/IconContractRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconContractRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconContractRoundedFilled as default } +export default IconContractRoundedFilled diff --git a/src/IconContractSharp.tsx b/src/IconContractSharp.tsx index a2c542380..eae483549 100644 --- a/src/IconContractSharp.tsx +++ b/src/IconContractSharp.tsx @@ -8,4 +8,4 @@ const IconContractSharp: React.FC = ({ ...props }) => ( ) -export { IconContractSharp as default } +export default IconContractSharp diff --git a/src/IconContractSharpFilled.tsx b/src/IconContractSharpFilled.tsx index 4dbd73038..771aa9ad6 100644 --- a/src/IconContractSharpFilled.tsx +++ b/src/IconContractSharpFilled.tsx @@ -8,4 +8,4 @@ const IconContractSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconContractSharpFilled as default } +export default IconContractSharpFilled diff --git a/src/IconContrastCircleOutlined.tsx b/src/IconContrastCircleOutlined.tsx index 99ddf260c..88abf20e7 100644 --- a/src/IconContrastCircleOutlined.tsx +++ b/src/IconContrastCircleOutlined.tsx @@ -8,4 +8,4 @@ const IconContrastCircleOutlined: React.FC = ({ ...props }) => ( ) -export { IconContrastCircleOutlined as default } +export default IconContrastCircleOutlined diff --git a/src/IconContrastCircleOutlinedFilled.tsx b/src/IconContrastCircleOutlinedFilled.tsx index 930c82720..d1ff8db0d 100644 --- a/src/IconContrastCircleOutlinedFilled.tsx +++ b/src/IconContrastCircleOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconContrastCircleOutlinedFilled: React.FC = ({ ) -export { IconContrastCircleOutlinedFilled as default } +export default IconContrastCircleOutlinedFilled diff --git a/src/IconContrastCircleRounded.tsx b/src/IconContrastCircleRounded.tsx index 7f231143d..1dbcd031d 100644 --- a/src/IconContrastCircleRounded.tsx +++ b/src/IconContrastCircleRounded.tsx @@ -8,4 +8,4 @@ const IconContrastCircleRounded: React.FC = ({ ...props }) => ( ) -export { IconContrastCircleRounded as default } +export default IconContrastCircleRounded diff --git a/src/IconContrastCircleRoundedFilled.tsx b/src/IconContrastCircleRoundedFilled.tsx index 9fb31c496..6a7b545ec 100644 --- a/src/IconContrastCircleRoundedFilled.tsx +++ b/src/IconContrastCircleRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconContrastCircleRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconContrastCircleRoundedFilled as default } +export default IconContrastCircleRoundedFilled diff --git a/src/IconContrastCircleSharp.tsx b/src/IconContrastCircleSharp.tsx index 93aac7e15..7a96b5ef4 100644 --- a/src/IconContrastCircleSharp.tsx +++ b/src/IconContrastCircleSharp.tsx @@ -8,4 +8,4 @@ const IconContrastCircleSharp: React.FC = ({ ...props }) => ( ) -export { IconContrastCircleSharp as default } +export default IconContrastCircleSharp diff --git a/src/IconContrastCircleSharpFilled.tsx b/src/IconContrastCircleSharpFilled.tsx index ef25f4c86..70e9dcf5f 100644 --- a/src/IconContrastCircleSharpFilled.tsx +++ b/src/IconContrastCircleSharpFilled.tsx @@ -8,4 +8,4 @@ const IconContrastCircleSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconContrastCircleSharpFilled as default } +export default IconContrastCircleSharpFilled diff --git a/src/IconContrastOutlined.tsx b/src/IconContrastOutlined.tsx index c1720c6f1..d368c67bc 100644 --- a/src/IconContrastOutlined.tsx +++ b/src/IconContrastOutlined.tsx @@ -8,4 +8,4 @@ const IconContrastOutlined: React.FC = ({ ...props }) => ( ) -export { IconContrastOutlined as default } +export default IconContrastOutlined diff --git a/src/IconContrastOutlinedFilled.tsx b/src/IconContrastOutlinedFilled.tsx index 737eaa2d9..6fcf6f5e1 100644 --- a/src/IconContrastOutlinedFilled.tsx +++ b/src/IconContrastOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconContrastOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconContrastOutlinedFilled as default } +export default IconContrastOutlinedFilled diff --git a/src/IconContrastRounded.tsx b/src/IconContrastRounded.tsx index b891078cc..7b15c845e 100644 --- a/src/IconContrastRounded.tsx +++ b/src/IconContrastRounded.tsx @@ -8,4 +8,4 @@ const IconContrastRounded: React.FC = ({ ...props }) => ( ) -export { IconContrastRounded as default } +export default IconContrastRounded diff --git a/src/IconContrastRoundedFilled.tsx b/src/IconContrastRoundedFilled.tsx index b1ef43d2e..a0f248265 100644 --- a/src/IconContrastRoundedFilled.tsx +++ b/src/IconContrastRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconContrastRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconContrastRoundedFilled as default } +export default IconContrastRoundedFilled diff --git a/src/IconContrastRtlOffOutlined.tsx b/src/IconContrastRtlOffOutlined.tsx index c4ac96d0c..a840fbe52 100644 --- a/src/IconContrastRtlOffOutlined.tsx +++ b/src/IconContrastRtlOffOutlined.tsx @@ -8,4 +8,4 @@ const IconContrastRtlOffOutlined: React.FC = ({ ...props }) => ( ) -export { IconContrastRtlOffOutlined as default } +export default IconContrastRtlOffOutlined diff --git a/src/IconContrastRtlOffOutlinedFilled.tsx b/src/IconContrastRtlOffOutlinedFilled.tsx index 498c3ef5e..7b5f88c2e 100644 --- a/src/IconContrastRtlOffOutlinedFilled.tsx +++ b/src/IconContrastRtlOffOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconContrastRtlOffOutlinedFilled: React.FC = ({ ) -export { IconContrastRtlOffOutlinedFilled as default } +export default IconContrastRtlOffOutlinedFilled diff --git a/src/IconContrastRtlOffRounded.tsx b/src/IconContrastRtlOffRounded.tsx index d23c5be30..a18f3e6ac 100644 --- a/src/IconContrastRtlOffRounded.tsx +++ b/src/IconContrastRtlOffRounded.tsx @@ -8,4 +8,4 @@ const IconContrastRtlOffRounded: React.FC = ({ ...props }) => ( ) -export { IconContrastRtlOffRounded as default } +export default IconContrastRtlOffRounded diff --git a/src/IconContrastRtlOffRoundedFilled.tsx b/src/IconContrastRtlOffRoundedFilled.tsx index efa2921a7..60db2dfcd 100644 --- a/src/IconContrastRtlOffRoundedFilled.tsx +++ b/src/IconContrastRtlOffRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconContrastRtlOffRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconContrastRtlOffRoundedFilled as default } +export default IconContrastRtlOffRoundedFilled diff --git a/src/IconContrastRtlOffSharp.tsx b/src/IconContrastRtlOffSharp.tsx index 914ae659a..a7fdb3200 100644 --- a/src/IconContrastRtlOffSharp.tsx +++ b/src/IconContrastRtlOffSharp.tsx @@ -8,4 +8,4 @@ const IconContrastRtlOffSharp: React.FC = ({ ...props }) => ( ) -export { IconContrastRtlOffSharp as default } +export default IconContrastRtlOffSharp diff --git a/src/IconContrastRtlOffSharpFilled.tsx b/src/IconContrastRtlOffSharpFilled.tsx index 0a8f21c1f..2c846391e 100644 --- a/src/IconContrastRtlOffSharpFilled.tsx +++ b/src/IconContrastRtlOffSharpFilled.tsx @@ -8,4 +8,4 @@ const IconContrastRtlOffSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconContrastRtlOffSharpFilled as default } +export default IconContrastRtlOffSharpFilled diff --git a/src/IconContrastSharp.tsx b/src/IconContrastSharp.tsx index b4d2240d5..6f5da3af4 100644 --- a/src/IconContrastSharp.tsx +++ b/src/IconContrastSharp.tsx @@ -8,4 +8,4 @@ const IconContrastSharp: React.FC = ({ ...props }) => ( ) -export { IconContrastSharp as default } +export default IconContrastSharp diff --git a/src/IconContrastSharpFilled.tsx b/src/IconContrastSharpFilled.tsx index 58a389b32..dc98f865e 100644 --- a/src/IconContrastSharpFilled.tsx +++ b/src/IconContrastSharpFilled.tsx @@ -8,4 +8,4 @@ const IconContrastSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconContrastSharpFilled as default } +export default IconContrastSharpFilled diff --git a/src/IconContrastSquareOutlined.tsx b/src/IconContrastSquareOutlined.tsx index 3f1846599..dbeadfa1b 100644 --- a/src/IconContrastSquareOutlined.tsx +++ b/src/IconContrastSquareOutlined.tsx @@ -8,4 +8,4 @@ const IconContrastSquareOutlined: React.FC = ({ ...props }) => ( ) -export { IconContrastSquareOutlined as default } +export default IconContrastSquareOutlined diff --git a/src/IconContrastSquareOutlinedFilled.tsx b/src/IconContrastSquareOutlinedFilled.tsx index 5bc699369..d88d2fb14 100644 --- a/src/IconContrastSquareOutlinedFilled.tsx +++ b/src/IconContrastSquareOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconContrastSquareOutlinedFilled: React.FC = ({ ) -export { IconContrastSquareOutlinedFilled as default } +export default IconContrastSquareOutlinedFilled diff --git a/src/IconContrastSquareRounded.tsx b/src/IconContrastSquareRounded.tsx index 600db5795..ea3ecaf3d 100644 --- a/src/IconContrastSquareRounded.tsx +++ b/src/IconContrastSquareRounded.tsx @@ -8,4 +8,4 @@ const IconContrastSquareRounded: React.FC = ({ ...props }) => ( ) -export { IconContrastSquareRounded as default } +export default IconContrastSquareRounded diff --git a/src/IconContrastSquareRoundedFilled.tsx b/src/IconContrastSquareRoundedFilled.tsx index 342db7dc1..c8a51c12a 100644 --- a/src/IconContrastSquareRoundedFilled.tsx +++ b/src/IconContrastSquareRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconContrastSquareRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconContrastSquareRoundedFilled as default } +export default IconContrastSquareRoundedFilled diff --git a/src/IconContrastSquareSharp.tsx b/src/IconContrastSquareSharp.tsx index 5c09c1fed..82bc6d249 100644 --- a/src/IconContrastSquareSharp.tsx +++ b/src/IconContrastSquareSharp.tsx @@ -8,4 +8,4 @@ const IconContrastSquareSharp: React.FC = ({ ...props }) => ( ) -export { IconContrastSquareSharp as default } +export default IconContrastSquareSharp diff --git a/src/IconContrastSquareSharpFilled.tsx b/src/IconContrastSquareSharpFilled.tsx index 3f3717edf..6c3ed5995 100644 --- a/src/IconContrastSquareSharpFilled.tsx +++ b/src/IconContrastSquareSharpFilled.tsx @@ -8,4 +8,4 @@ const IconContrastSquareSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconContrastSquareSharpFilled as default } +export default IconContrastSquareSharpFilled diff --git a/src/IconControlCameraOutlined.tsx b/src/IconControlCameraOutlined.tsx index 110dc647f..80cef7977 100644 --- a/src/IconControlCameraOutlined.tsx +++ b/src/IconControlCameraOutlined.tsx @@ -8,4 +8,4 @@ const IconControlCameraOutlined: React.FC = ({ ...props }) => ( ) -export { IconControlCameraOutlined as default } +export default IconControlCameraOutlined diff --git a/src/IconControlCameraOutlinedFilled.tsx b/src/IconControlCameraOutlinedFilled.tsx index cde93dd1d..7ecad8bdd 100644 --- a/src/IconControlCameraOutlinedFilled.tsx +++ b/src/IconControlCameraOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconControlCameraOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconControlCameraOutlinedFilled as default } +export default IconControlCameraOutlinedFilled diff --git a/src/IconControlCameraRounded.tsx b/src/IconControlCameraRounded.tsx index c8377f84e..02911c22f 100644 --- a/src/IconControlCameraRounded.tsx +++ b/src/IconControlCameraRounded.tsx @@ -8,4 +8,4 @@ const IconControlCameraRounded: React.FC = ({ ...props }) => ( ) -export { IconControlCameraRounded as default } +export default IconControlCameraRounded diff --git a/src/IconControlCameraRoundedFilled.tsx b/src/IconControlCameraRoundedFilled.tsx index 54d2b94f7..4e8d59b0c 100644 --- a/src/IconControlCameraRoundedFilled.tsx +++ b/src/IconControlCameraRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconControlCameraRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconControlCameraRoundedFilled as default } +export default IconControlCameraRoundedFilled diff --git a/src/IconControlCameraSharp.tsx b/src/IconControlCameraSharp.tsx index de2050d29..565f96ba7 100644 --- a/src/IconControlCameraSharp.tsx +++ b/src/IconControlCameraSharp.tsx @@ -8,4 +8,4 @@ const IconControlCameraSharp: React.FC = ({ ...props }) => ( ) -export { IconControlCameraSharp as default } +export default IconControlCameraSharp diff --git a/src/IconControlCameraSharpFilled.tsx b/src/IconControlCameraSharpFilled.tsx index 311c85385..1675326bd 100644 --- a/src/IconControlCameraSharpFilled.tsx +++ b/src/IconControlCameraSharpFilled.tsx @@ -8,4 +8,4 @@ const IconControlCameraSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconControlCameraSharpFilled as default } +export default IconControlCameraSharpFilled diff --git a/src/IconControlPointDuplicateOutlined.tsx b/src/IconControlPointDuplicateOutlined.tsx index 0de2c3e7c..e0e0742c4 100644 --- a/src/IconControlPointDuplicateOutlined.tsx +++ b/src/IconControlPointDuplicateOutlined.tsx @@ -10,4 +10,4 @@ const IconControlPointDuplicateOutlined: React.FC = ({ ) -export { IconControlPointDuplicateOutlined as default } +export default IconControlPointDuplicateOutlined diff --git a/src/IconControlPointDuplicateOutlinedFilled.tsx b/src/IconControlPointDuplicateOutlinedFilled.tsx index 86ba47342..3b4f9c311 100644 --- a/src/IconControlPointDuplicateOutlinedFilled.tsx +++ b/src/IconControlPointDuplicateOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconControlPointDuplicateOutlinedFilled: React.FC = ({ ) -export { IconControlPointDuplicateOutlinedFilled as default } +export default IconControlPointDuplicateOutlinedFilled diff --git a/src/IconControlPointDuplicateRounded.tsx b/src/IconControlPointDuplicateRounded.tsx index c09aed4bb..58c8250e1 100644 --- a/src/IconControlPointDuplicateRounded.tsx +++ b/src/IconControlPointDuplicateRounded.tsx @@ -10,4 +10,4 @@ const IconControlPointDuplicateRounded: React.FC = ({ ) -export { IconControlPointDuplicateRounded as default } +export default IconControlPointDuplicateRounded diff --git a/src/IconControlPointDuplicateRoundedFilled.tsx b/src/IconControlPointDuplicateRoundedFilled.tsx index 08d03a84e..a899baa6b 100644 --- a/src/IconControlPointDuplicateRoundedFilled.tsx +++ b/src/IconControlPointDuplicateRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconControlPointDuplicateRoundedFilled: React.FC = ({ ) -export { IconControlPointDuplicateRoundedFilled as default } +export default IconControlPointDuplicateRoundedFilled diff --git a/src/IconControlPointDuplicateSharp.tsx b/src/IconControlPointDuplicateSharp.tsx index d76ab51b1..5a9b91327 100644 --- a/src/IconControlPointDuplicateSharp.tsx +++ b/src/IconControlPointDuplicateSharp.tsx @@ -8,4 +8,4 @@ const IconControlPointDuplicateSharp: React.FC = ({ ...props }) => ( ) -export { IconControlPointDuplicateSharp as default } +export default IconControlPointDuplicateSharp diff --git a/src/IconControlPointDuplicateSharpFilled.tsx b/src/IconControlPointDuplicateSharpFilled.tsx index 4ff61aa0f..d6d29c98b 100644 --- a/src/IconControlPointDuplicateSharpFilled.tsx +++ b/src/IconControlPointDuplicateSharpFilled.tsx @@ -10,4 +10,4 @@ const IconControlPointDuplicateSharpFilled: React.FC = ({ ) -export { IconControlPointDuplicateSharpFilled as default } +export default IconControlPointDuplicateSharpFilled diff --git a/src/IconControllerGenOutlined.tsx b/src/IconControllerGenOutlined.tsx index 0feb87867..c82ba3018 100644 --- a/src/IconControllerGenOutlined.tsx +++ b/src/IconControllerGenOutlined.tsx @@ -8,4 +8,4 @@ const IconControllerGenOutlined: React.FC = ({ ...props }) => ( ) -export { IconControllerGenOutlined as default } +export default IconControllerGenOutlined diff --git a/src/IconControllerGenOutlinedFilled.tsx b/src/IconControllerGenOutlinedFilled.tsx index e8b27df9d..f7624c7d1 100644 --- a/src/IconControllerGenOutlinedFilled.tsx +++ b/src/IconControllerGenOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconControllerGenOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconControllerGenOutlinedFilled as default } +export default IconControllerGenOutlinedFilled diff --git a/src/IconControllerGenRounded.tsx b/src/IconControllerGenRounded.tsx index dbed6c002..d7e67f03f 100644 --- a/src/IconControllerGenRounded.tsx +++ b/src/IconControllerGenRounded.tsx @@ -8,4 +8,4 @@ const IconControllerGenRounded: React.FC = ({ ...props }) => ( ) -export { IconControllerGenRounded as default } +export default IconControllerGenRounded diff --git a/src/IconControllerGenRoundedFilled.tsx b/src/IconControllerGenRoundedFilled.tsx index 095a0da2b..8f1f47962 100644 --- a/src/IconControllerGenRoundedFilled.tsx +++ b/src/IconControllerGenRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconControllerGenRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconControllerGenRoundedFilled as default } +export default IconControllerGenRoundedFilled diff --git a/src/IconControllerGenSharp.tsx b/src/IconControllerGenSharp.tsx index a38f5c147..7e4eed597 100644 --- a/src/IconControllerGenSharp.tsx +++ b/src/IconControllerGenSharp.tsx @@ -8,4 +8,4 @@ const IconControllerGenSharp: React.FC = ({ ...props }) => ( ) -export { IconControllerGenSharp as default } +export default IconControllerGenSharp diff --git a/src/IconControllerGenSharpFilled.tsx b/src/IconControllerGenSharpFilled.tsx index 1ca9580bb..dc07683d6 100644 --- a/src/IconControllerGenSharpFilled.tsx +++ b/src/IconControllerGenSharpFilled.tsx @@ -8,4 +8,4 @@ const IconControllerGenSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconControllerGenSharpFilled as default } +export default IconControllerGenSharpFilled diff --git a/src/IconConversionPathOffOutlined.tsx b/src/IconConversionPathOffOutlined.tsx index f5e08f311..e3913b625 100644 --- a/src/IconConversionPathOffOutlined.tsx +++ b/src/IconConversionPathOffOutlined.tsx @@ -8,4 +8,4 @@ const IconConversionPathOffOutlined: React.FC = ({ ...props }) => ( ) -export { IconConversionPathOffOutlined as default } +export default IconConversionPathOffOutlined diff --git a/src/IconConversionPathOffOutlinedFilled.tsx b/src/IconConversionPathOffOutlinedFilled.tsx index f9ee1eb4d..65d218556 100644 --- a/src/IconConversionPathOffOutlinedFilled.tsx +++ b/src/IconConversionPathOffOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconConversionPathOffOutlinedFilled: React.FC = ({ ) -export { IconConversionPathOffOutlinedFilled as default } +export default IconConversionPathOffOutlinedFilled diff --git a/src/IconConversionPathOffRounded.tsx b/src/IconConversionPathOffRounded.tsx index 8fe7711be..3f2bae48f 100644 --- a/src/IconConversionPathOffRounded.tsx +++ b/src/IconConversionPathOffRounded.tsx @@ -8,4 +8,4 @@ const IconConversionPathOffRounded: React.FC = ({ ...props }) => ( ) -export { IconConversionPathOffRounded as default } +export default IconConversionPathOffRounded diff --git a/src/IconConversionPathOffRoundedFilled.tsx b/src/IconConversionPathOffRoundedFilled.tsx index 0c391b504..e29cf8cca 100644 --- a/src/IconConversionPathOffRoundedFilled.tsx +++ b/src/IconConversionPathOffRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconConversionPathOffRoundedFilled: React.FC = ({ ) -export { IconConversionPathOffRoundedFilled as default } +export default IconConversionPathOffRoundedFilled diff --git a/src/IconConversionPathOffSharp.tsx b/src/IconConversionPathOffSharp.tsx index e074d5b13..c131c8557 100644 --- a/src/IconConversionPathOffSharp.tsx +++ b/src/IconConversionPathOffSharp.tsx @@ -8,4 +8,4 @@ const IconConversionPathOffSharp: React.FC = ({ ...props }) => ( ) -export { IconConversionPathOffSharp as default } +export default IconConversionPathOffSharp diff --git a/src/IconConversionPathOffSharpFilled.tsx b/src/IconConversionPathOffSharpFilled.tsx index b1d34e443..bf1c59470 100644 --- a/src/IconConversionPathOffSharpFilled.tsx +++ b/src/IconConversionPathOffSharpFilled.tsx @@ -10,4 +10,4 @@ const IconConversionPathOffSharpFilled: React.FC = ({ ) -export { IconConversionPathOffSharpFilled as default } +export default IconConversionPathOffSharpFilled diff --git a/src/IconConversionPathOutlined.tsx b/src/IconConversionPathOutlined.tsx index 5c42c13c3..1eb82a4eb 100644 --- a/src/IconConversionPathOutlined.tsx +++ b/src/IconConversionPathOutlined.tsx @@ -8,4 +8,4 @@ const IconConversionPathOutlined: React.FC = ({ ...props }) => ( ) -export { IconConversionPathOutlined as default } +export default IconConversionPathOutlined diff --git a/src/IconConversionPathOutlinedFilled.tsx b/src/IconConversionPathOutlinedFilled.tsx index f1c0259a6..1fd2b76f4 100644 --- a/src/IconConversionPathOutlinedFilled.tsx +++ b/src/IconConversionPathOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconConversionPathOutlinedFilled: React.FC = ({ ) -export { IconConversionPathOutlinedFilled as default } +export default IconConversionPathOutlinedFilled diff --git a/src/IconConversionPathRounded.tsx b/src/IconConversionPathRounded.tsx index 6d588c37d..810f3e940 100644 --- a/src/IconConversionPathRounded.tsx +++ b/src/IconConversionPathRounded.tsx @@ -8,4 +8,4 @@ const IconConversionPathRounded: React.FC = ({ ...props }) => ( ) -export { IconConversionPathRounded as default } +export default IconConversionPathRounded diff --git a/src/IconConversionPathRoundedFilled.tsx b/src/IconConversionPathRoundedFilled.tsx index 6c61266db..f95069c2e 100644 --- a/src/IconConversionPathRoundedFilled.tsx +++ b/src/IconConversionPathRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconConversionPathRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconConversionPathRoundedFilled as default } +export default IconConversionPathRoundedFilled diff --git a/src/IconConversionPathSharp.tsx b/src/IconConversionPathSharp.tsx index cfd3b3a97..6faedfd1a 100644 --- a/src/IconConversionPathSharp.tsx +++ b/src/IconConversionPathSharp.tsx @@ -8,4 +8,4 @@ const IconConversionPathSharp: React.FC = ({ ...props }) => ( ) -export { IconConversionPathSharp as default } +export default IconConversionPathSharp diff --git a/src/IconConversionPathSharpFilled.tsx b/src/IconConversionPathSharpFilled.tsx index 3b170ee24..51b617fcb 100644 --- a/src/IconConversionPathSharpFilled.tsx +++ b/src/IconConversionPathSharpFilled.tsx @@ -8,4 +8,4 @@ const IconConversionPathSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconConversionPathSharpFilled as default } +export default IconConversionPathSharpFilled diff --git a/src/IconConvertToTextOutlined.tsx b/src/IconConvertToTextOutlined.tsx index 7a0d2c7ad..a099e1700 100644 --- a/src/IconConvertToTextOutlined.tsx +++ b/src/IconConvertToTextOutlined.tsx @@ -8,4 +8,4 @@ const IconConvertToTextOutlined: React.FC = ({ ...props }) => ( ) -export { IconConvertToTextOutlined as default } +export default IconConvertToTextOutlined diff --git a/src/IconConvertToTextOutlinedFilled.tsx b/src/IconConvertToTextOutlinedFilled.tsx index ba091401d..f38ded3ca 100644 --- a/src/IconConvertToTextOutlinedFilled.tsx +++ b/src/IconConvertToTextOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconConvertToTextOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconConvertToTextOutlinedFilled as default } +export default IconConvertToTextOutlinedFilled diff --git a/src/IconConvertToTextRounded.tsx b/src/IconConvertToTextRounded.tsx index 9095ae8ff..c2091ed33 100644 --- a/src/IconConvertToTextRounded.tsx +++ b/src/IconConvertToTextRounded.tsx @@ -8,4 +8,4 @@ const IconConvertToTextRounded: React.FC = ({ ...props }) => ( ) -export { IconConvertToTextRounded as default } +export default IconConvertToTextRounded diff --git a/src/IconConvertToTextRoundedFilled.tsx b/src/IconConvertToTextRoundedFilled.tsx index ba3e81756..1139f0681 100644 --- a/src/IconConvertToTextRoundedFilled.tsx +++ b/src/IconConvertToTextRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconConvertToTextRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconConvertToTextRoundedFilled as default } +export default IconConvertToTextRoundedFilled diff --git a/src/IconConvertToTextSharp.tsx b/src/IconConvertToTextSharp.tsx index bb6203406..78293e18a 100644 --- a/src/IconConvertToTextSharp.tsx +++ b/src/IconConvertToTextSharp.tsx @@ -8,4 +8,4 @@ const IconConvertToTextSharp: React.FC = ({ ...props }) => ( ) -export { IconConvertToTextSharp as default } +export default IconConvertToTextSharp diff --git a/src/IconConvertToTextSharpFilled.tsx b/src/IconConvertToTextSharpFilled.tsx index 578b516ad..fb000ae85 100644 --- a/src/IconConvertToTextSharpFilled.tsx +++ b/src/IconConvertToTextSharpFilled.tsx @@ -8,4 +8,4 @@ const IconConvertToTextSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconConvertToTextSharpFilled as default } +export default IconConvertToTextSharpFilled diff --git a/src/IconConveyorBeltOutlined.tsx b/src/IconConveyorBeltOutlined.tsx index bf8abf6e3..e833c0910 100644 --- a/src/IconConveyorBeltOutlined.tsx +++ b/src/IconConveyorBeltOutlined.tsx @@ -8,4 +8,4 @@ const IconConveyorBeltOutlined: React.FC = ({ ...props }) => ( ) -export { IconConveyorBeltOutlined as default } +export default IconConveyorBeltOutlined diff --git a/src/IconConveyorBeltOutlinedFilled.tsx b/src/IconConveyorBeltOutlinedFilled.tsx index f7f27b07a..89f8f4c8d 100644 --- a/src/IconConveyorBeltOutlinedFilled.tsx +++ b/src/IconConveyorBeltOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconConveyorBeltOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconConveyorBeltOutlinedFilled as default } +export default IconConveyorBeltOutlinedFilled diff --git a/src/IconConveyorBeltRounded.tsx b/src/IconConveyorBeltRounded.tsx index 324fb9715..cf34af1c9 100644 --- a/src/IconConveyorBeltRounded.tsx +++ b/src/IconConveyorBeltRounded.tsx @@ -8,4 +8,4 @@ const IconConveyorBeltRounded: React.FC = ({ ...props }) => ( ) -export { IconConveyorBeltRounded as default } +export default IconConveyorBeltRounded diff --git a/src/IconConveyorBeltRoundedFilled.tsx b/src/IconConveyorBeltRoundedFilled.tsx index cf2824b6f..3880a89fa 100644 --- a/src/IconConveyorBeltRoundedFilled.tsx +++ b/src/IconConveyorBeltRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconConveyorBeltRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconConveyorBeltRoundedFilled as default } +export default IconConveyorBeltRoundedFilled diff --git a/src/IconConveyorBeltSharp.tsx b/src/IconConveyorBeltSharp.tsx index 984c71817..492e7ca14 100644 --- a/src/IconConveyorBeltSharp.tsx +++ b/src/IconConveyorBeltSharp.tsx @@ -8,4 +8,4 @@ const IconConveyorBeltSharp: React.FC = ({ ...props }) => ( ) -export { IconConveyorBeltSharp as default } +export default IconConveyorBeltSharp diff --git a/src/IconConveyorBeltSharpFilled.tsx b/src/IconConveyorBeltSharpFilled.tsx index 0102c9734..b00ba5105 100644 --- a/src/IconConveyorBeltSharpFilled.tsx +++ b/src/IconConveyorBeltSharpFilled.tsx @@ -8,4 +8,4 @@ const IconConveyorBeltSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconConveyorBeltSharpFilled as default } +export default IconConveyorBeltSharpFilled diff --git a/src/IconCookieOffOutlined.tsx b/src/IconCookieOffOutlined.tsx index 58aa42a8f..ace74632d 100644 --- a/src/IconCookieOffOutlined.tsx +++ b/src/IconCookieOffOutlined.tsx @@ -8,4 +8,4 @@ const IconCookieOffOutlined: React.FC = ({ ...props }) => ( ) -export { IconCookieOffOutlined as default } +export default IconCookieOffOutlined diff --git a/src/IconCookieOffOutlinedFilled.tsx b/src/IconCookieOffOutlinedFilled.tsx index 323dad2d3..88128720e 100644 --- a/src/IconCookieOffOutlinedFilled.tsx +++ b/src/IconCookieOffOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconCookieOffOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconCookieOffOutlinedFilled as default } +export default IconCookieOffOutlinedFilled diff --git a/src/IconCookieOffRounded.tsx b/src/IconCookieOffRounded.tsx index ec75655ba..f38813b3a 100644 --- a/src/IconCookieOffRounded.tsx +++ b/src/IconCookieOffRounded.tsx @@ -8,4 +8,4 @@ const IconCookieOffRounded: React.FC = ({ ...props }) => ( ) -export { IconCookieOffRounded as default } +export default IconCookieOffRounded diff --git a/src/IconCookieOffRoundedFilled.tsx b/src/IconCookieOffRoundedFilled.tsx index 8c17daeef..271e52c9c 100644 --- a/src/IconCookieOffRoundedFilled.tsx +++ b/src/IconCookieOffRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconCookieOffRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconCookieOffRoundedFilled as default } +export default IconCookieOffRoundedFilled diff --git a/src/IconCookieOffSharp.tsx b/src/IconCookieOffSharp.tsx index 8b53ea6b0..11526965f 100644 --- a/src/IconCookieOffSharp.tsx +++ b/src/IconCookieOffSharp.tsx @@ -8,4 +8,4 @@ const IconCookieOffSharp: React.FC = ({ ...props }) => ( ) -export { IconCookieOffSharp as default } +export default IconCookieOffSharp diff --git a/src/IconCookieOffSharpFilled.tsx b/src/IconCookieOffSharpFilled.tsx index aafef8544..e76d65611 100644 --- a/src/IconCookieOffSharpFilled.tsx +++ b/src/IconCookieOffSharpFilled.tsx @@ -8,4 +8,4 @@ const IconCookieOffSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconCookieOffSharpFilled as default } +export default IconCookieOffSharpFilled diff --git a/src/IconCookieOutlined.tsx b/src/IconCookieOutlined.tsx index e0ea44a4a..e7abf7cde 100644 --- a/src/IconCookieOutlined.tsx +++ b/src/IconCookieOutlined.tsx @@ -8,4 +8,4 @@ const IconCookieOutlined: React.FC = ({ ...props }) => ( ) -export { IconCookieOutlined as default } +export default IconCookieOutlined diff --git a/src/IconCookieOutlinedFilled.tsx b/src/IconCookieOutlinedFilled.tsx index a2764cbdb..7fcfb4a0d 100644 --- a/src/IconCookieOutlinedFilled.tsx +++ b/src/IconCookieOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconCookieOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconCookieOutlinedFilled as default } +export default IconCookieOutlinedFilled diff --git a/src/IconCookieRounded.tsx b/src/IconCookieRounded.tsx index 740f04193..227d497a7 100644 --- a/src/IconCookieRounded.tsx +++ b/src/IconCookieRounded.tsx @@ -8,4 +8,4 @@ const IconCookieRounded: React.FC = ({ ...props }) => ( ) -export { IconCookieRounded as default } +export default IconCookieRounded diff --git a/src/IconCookieRoundedFilled.tsx b/src/IconCookieRoundedFilled.tsx index 39bf352d6..1990333af 100644 --- a/src/IconCookieRoundedFilled.tsx +++ b/src/IconCookieRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconCookieRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconCookieRoundedFilled as default } +export default IconCookieRoundedFilled diff --git a/src/IconCookieSharp.tsx b/src/IconCookieSharp.tsx index e46d6a962..591285378 100644 --- a/src/IconCookieSharp.tsx +++ b/src/IconCookieSharp.tsx @@ -8,4 +8,4 @@ const IconCookieSharp: React.FC = ({ ...props }) => ( ) -export { IconCookieSharp as default } +export default IconCookieSharp diff --git a/src/IconCookieSharpFilled.tsx b/src/IconCookieSharpFilled.tsx index 80161069d..54454c43f 100644 --- a/src/IconCookieSharpFilled.tsx +++ b/src/IconCookieSharpFilled.tsx @@ -8,4 +8,4 @@ const IconCookieSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconCookieSharpFilled as default } +export default IconCookieSharpFilled diff --git a/src/IconCookingOutlined.tsx b/src/IconCookingOutlined.tsx index c6a270996..9f9ca52ed 100644 --- a/src/IconCookingOutlined.tsx +++ b/src/IconCookingOutlined.tsx @@ -8,4 +8,4 @@ const IconCookingOutlined: React.FC = ({ ...props }) => ( ) -export { IconCookingOutlined as default } +export default IconCookingOutlined diff --git a/src/IconCookingOutlinedFilled.tsx b/src/IconCookingOutlinedFilled.tsx index 983273bd7..7f67c3396 100644 --- a/src/IconCookingOutlinedFilled.tsx +++ b/src/IconCookingOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconCookingOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconCookingOutlinedFilled as default } +export default IconCookingOutlinedFilled diff --git a/src/IconCookingRounded.tsx b/src/IconCookingRounded.tsx index bd483bbe8..6d64c8959 100644 --- a/src/IconCookingRounded.tsx +++ b/src/IconCookingRounded.tsx @@ -8,4 +8,4 @@ const IconCookingRounded: React.FC = ({ ...props }) => ( ) -export { IconCookingRounded as default } +export default IconCookingRounded diff --git a/src/IconCookingRoundedFilled.tsx b/src/IconCookingRoundedFilled.tsx index f55f564d2..20835d750 100644 --- a/src/IconCookingRoundedFilled.tsx +++ b/src/IconCookingRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconCookingRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconCookingRoundedFilled as default } +export default IconCookingRoundedFilled diff --git a/src/IconCookingSharp.tsx b/src/IconCookingSharp.tsx index 761f7c84e..9c4662ee9 100644 --- a/src/IconCookingSharp.tsx +++ b/src/IconCookingSharp.tsx @@ -8,4 +8,4 @@ const IconCookingSharp: React.FC = ({ ...props }) => ( ) -export { IconCookingSharp as default } +export default IconCookingSharp diff --git a/src/IconCookingSharpFilled.tsx b/src/IconCookingSharpFilled.tsx index 7d287cc98..bc6c36b80 100644 --- a/src/IconCookingSharpFilled.tsx +++ b/src/IconCookingSharpFilled.tsx @@ -8,4 +8,4 @@ const IconCookingSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconCookingSharpFilled as default } +export default IconCookingSharpFilled diff --git a/src/IconCoolToDryOutlined.tsx b/src/IconCoolToDryOutlined.tsx index 282ab8039..1d7f4c30a 100644 --- a/src/IconCoolToDryOutlined.tsx +++ b/src/IconCoolToDryOutlined.tsx @@ -8,4 +8,4 @@ const IconCoolToDryOutlined: React.FC = ({ ...props }) => ( ) -export { IconCoolToDryOutlined as default } +export default IconCoolToDryOutlined diff --git a/src/IconCoolToDryOutlinedFilled.tsx b/src/IconCoolToDryOutlinedFilled.tsx index 573f702e3..da896d45a 100644 --- a/src/IconCoolToDryOutlinedFilled.tsx +++ b/src/IconCoolToDryOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconCoolToDryOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconCoolToDryOutlinedFilled as default } +export default IconCoolToDryOutlinedFilled diff --git a/src/IconCoolToDryRounded.tsx b/src/IconCoolToDryRounded.tsx index 3ea9e69db..01597c695 100644 --- a/src/IconCoolToDryRounded.tsx +++ b/src/IconCoolToDryRounded.tsx @@ -8,4 +8,4 @@ const IconCoolToDryRounded: React.FC = ({ ...props }) => ( ) -export { IconCoolToDryRounded as default } +export default IconCoolToDryRounded diff --git a/src/IconCoolToDryRoundedFilled.tsx b/src/IconCoolToDryRoundedFilled.tsx index 97027e126..e93e1cecb 100644 --- a/src/IconCoolToDryRoundedFilled.tsx +++ b/src/IconCoolToDryRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconCoolToDryRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconCoolToDryRoundedFilled as default } +export default IconCoolToDryRoundedFilled diff --git a/src/IconCoolToDrySharp.tsx b/src/IconCoolToDrySharp.tsx index 1aa103a07..377987214 100644 --- a/src/IconCoolToDrySharp.tsx +++ b/src/IconCoolToDrySharp.tsx @@ -8,4 +8,4 @@ const IconCoolToDrySharp: React.FC = ({ ...props }) => ( ) -export { IconCoolToDrySharp as default } +export default IconCoolToDrySharp diff --git a/src/IconCoolToDrySharpFilled.tsx b/src/IconCoolToDrySharpFilled.tsx index 1b2f5bbd9..c5867e034 100644 --- a/src/IconCoolToDrySharpFilled.tsx +++ b/src/IconCoolToDrySharpFilled.tsx @@ -8,4 +8,4 @@ const IconCoolToDrySharpFilled: React.FC = ({ ...props }) => ( ) -export { IconCoolToDrySharpFilled as default } +export default IconCoolToDrySharpFilled diff --git a/src/IconCopyAllOutlined.tsx b/src/IconCopyAllOutlined.tsx index 29a622c00..b6ebcc65b 100644 --- a/src/IconCopyAllOutlined.tsx +++ b/src/IconCopyAllOutlined.tsx @@ -8,4 +8,4 @@ const IconCopyAllOutlined: React.FC = ({ ...props }) => ( ) -export { IconCopyAllOutlined as default } +export default IconCopyAllOutlined diff --git a/src/IconCopyAllOutlinedFilled.tsx b/src/IconCopyAllOutlinedFilled.tsx index 7e9d5104c..a017f6515 100644 --- a/src/IconCopyAllOutlinedFilled.tsx +++ b/src/IconCopyAllOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconCopyAllOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconCopyAllOutlinedFilled as default } +export default IconCopyAllOutlinedFilled diff --git a/src/IconCopyAllRounded.tsx b/src/IconCopyAllRounded.tsx index a2cbdc243..f74f78418 100644 --- a/src/IconCopyAllRounded.tsx +++ b/src/IconCopyAllRounded.tsx @@ -8,4 +8,4 @@ const IconCopyAllRounded: React.FC = ({ ...props }) => ( ) -export { IconCopyAllRounded as default } +export default IconCopyAllRounded diff --git a/src/IconCopyAllRoundedFilled.tsx b/src/IconCopyAllRoundedFilled.tsx index 62282ce0d..45c335c58 100644 --- a/src/IconCopyAllRoundedFilled.tsx +++ b/src/IconCopyAllRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconCopyAllRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconCopyAllRoundedFilled as default } +export default IconCopyAllRoundedFilled diff --git a/src/IconCopyAllSharp.tsx b/src/IconCopyAllSharp.tsx index edec32e92..47a4399d8 100644 --- a/src/IconCopyAllSharp.tsx +++ b/src/IconCopyAllSharp.tsx @@ -8,4 +8,4 @@ const IconCopyAllSharp: React.FC = ({ ...props }) => ( ) -export { IconCopyAllSharp as default } +export default IconCopyAllSharp diff --git a/src/IconCopyAllSharpFilled.tsx b/src/IconCopyAllSharpFilled.tsx index ee538ee4a..4ee680e7d 100644 --- a/src/IconCopyAllSharpFilled.tsx +++ b/src/IconCopyAllSharpFilled.tsx @@ -8,4 +8,4 @@ const IconCopyAllSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconCopyAllSharpFilled as default } +export default IconCopyAllSharpFilled diff --git a/src/IconCopyrightOutlined.tsx b/src/IconCopyrightOutlined.tsx index 25192c418..fc1a70008 100644 --- a/src/IconCopyrightOutlined.tsx +++ b/src/IconCopyrightOutlined.tsx @@ -8,4 +8,4 @@ const IconCopyrightOutlined: React.FC = ({ ...props }) => ( ) -export { IconCopyrightOutlined as default } +export default IconCopyrightOutlined diff --git a/src/IconCopyrightOutlinedFilled.tsx b/src/IconCopyrightOutlinedFilled.tsx index f4aadb65d..542b09983 100644 --- a/src/IconCopyrightOutlinedFilled.tsx +++ b/src/IconCopyrightOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconCopyrightOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconCopyrightOutlinedFilled as default } +export default IconCopyrightOutlinedFilled diff --git a/src/IconCopyrightRounded.tsx b/src/IconCopyrightRounded.tsx index ca3eaf464..385070d86 100644 --- a/src/IconCopyrightRounded.tsx +++ b/src/IconCopyrightRounded.tsx @@ -8,4 +8,4 @@ const IconCopyrightRounded: React.FC = ({ ...props }) => ( ) -export { IconCopyrightRounded as default } +export default IconCopyrightRounded diff --git a/src/IconCopyrightRoundedFilled.tsx b/src/IconCopyrightRoundedFilled.tsx index 336ec24a4..4ae67d22a 100644 --- a/src/IconCopyrightRoundedFilled.tsx +++ b/src/IconCopyrightRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconCopyrightRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconCopyrightRoundedFilled as default } +export default IconCopyrightRoundedFilled diff --git a/src/IconCopyrightSharp.tsx b/src/IconCopyrightSharp.tsx index 6ebf1893d..1bdc6e014 100644 --- a/src/IconCopyrightSharp.tsx +++ b/src/IconCopyrightSharp.tsx @@ -8,4 +8,4 @@ const IconCopyrightSharp: React.FC = ({ ...props }) => ( ) -export { IconCopyrightSharp as default } +export default IconCopyrightSharp diff --git a/src/IconCopyrightSharpFilled.tsx b/src/IconCopyrightSharpFilled.tsx index c12730084..1e13ed4e4 100644 --- a/src/IconCopyrightSharpFilled.tsx +++ b/src/IconCopyrightSharpFilled.tsx @@ -8,4 +8,4 @@ const IconCopyrightSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconCopyrightSharpFilled as default } +export default IconCopyrightSharpFilled diff --git a/src/IconCoronavirusOutlined.tsx b/src/IconCoronavirusOutlined.tsx index 0b37aa6c3..92c5e7415 100644 --- a/src/IconCoronavirusOutlined.tsx +++ b/src/IconCoronavirusOutlined.tsx @@ -8,4 +8,4 @@ const IconCoronavirusOutlined: React.FC = ({ ...props }) => ( ) -export { IconCoronavirusOutlined as default } +export default IconCoronavirusOutlined diff --git a/src/IconCoronavirusOutlinedFilled.tsx b/src/IconCoronavirusOutlinedFilled.tsx index 3cd87c630..97c4aa1b1 100644 --- a/src/IconCoronavirusOutlinedFilled.tsx +++ b/src/IconCoronavirusOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconCoronavirusOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconCoronavirusOutlinedFilled as default } +export default IconCoronavirusOutlinedFilled diff --git a/src/IconCoronavirusRounded.tsx b/src/IconCoronavirusRounded.tsx index bcca54f0d..8a2aaa03a 100644 --- a/src/IconCoronavirusRounded.tsx +++ b/src/IconCoronavirusRounded.tsx @@ -8,4 +8,4 @@ const IconCoronavirusRounded: React.FC = ({ ...props }) => ( ) -export { IconCoronavirusRounded as default } +export default IconCoronavirusRounded diff --git a/src/IconCoronavirusRoundedFilled.tsx b/src/IconCoronavirusRoundedFilled.tsx index 1114c741d..544e04c13 100644 --- a/src/IconCoronavirusRoundedFilled.tsx +++ b/src/IconCoronavirusRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconCoronavirusRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconCoronavirusRoundedFilled as default } +export default IconCoronavirusRoundedFilled diff --git a/src/IconCoronavirusSharp.tsx b/src/IconCoronavirusSharp.tsx index b34a27bed..e1eaf081f 100644 --- a/src/IconCoronavirusSharp.tsx +++ b/src/IconCoronavirusSharp.tsx @@ -8,4 +8,4 @@ const IconCoronavirusSharp: React.FC = ({ ...props }) => ( ) -export { IconCoronavirusSharp as default } +export default IconCoronavirusSharp diff --git a/src/IconCoronavirusSharpFilled.tsx b/src/IconCoronavirusSharpFilled.tsx index 79509c829..2aa58e4b4 100644 --- a/src/IconCoronavirusSharpFilled.tsx +++ b/src/IconCoronavirusSharpFilled.tsx @@ -8,4 +8,4 @@ const IconCoronavirusSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconCoronavirusSharpFilled as default } +export default IconCoronavirusSharpFilled diff --git a/src/IconCorporateFareOutlined.tsx b/src/IconCorporateFareOutlined.tsx index 955196364..fe5fc3e66 100644 --- a/src/IconCorporateFareOutlined.tsx +++ b/src/IconCorporateFareOutlined.tsx @@ -8,4 +8,4 @@ const IconCorporateFareOutlined: React.FC = ({ ...props }) => ( ) -export { IconCorporateFareOutlined as default } +export default IconCorporateFareOutlined diff --git a/src/IconCorporateFareOutlinedFilled.tsx b/src/IconCorporateFareOutlinedFilled.tsx index 9c0d5dbf2..b8e9137e0 100644 --- a/src/IconCorporateFareOutlinedFilled.tsx +++ b/src/IconCorporateFareOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconCorporateFareOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconCorporateFareOutlinedFilled as default } +export default IconCorporateFareOutlinedFilled diff --git a/src/IconCorporateFareRounded.tsx b/src/IconCorporateFareRounded.tsx index c44a45b4c..5e602a1d6 100644 --- a/src/IconCorporateFareRounded.tsx +++ b/src/IconCorporateFareRounded.tsx @@ -8,4 +8,4 @@ const IconCorporateFareRounded: React.FC = ({ ...props }) => ( ) -export { IconCorporateFareRounded as default } +export default IconCorporateFareRounded diff --git a/src/IconCorporateFareRoundedFilled.tsx b/src/IconCorporateFareRoundedFilled.tsx index fe12a1bfc..b9a03898d 100644 --- a/src/IconCorporateFareRoundedFilled.tsx +++ b/src/IconCorporateFareRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconCorporateFareRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconCorporateFareRoundedFilled as default } +export default IconCorporateFareRoundedFilled diff --git a/src/IconCorporateFareSharp.tsx b/src/IconCorporateFareSharp.tsx index 86c9bd48f..880273ffc 100644 --- a/src/IconCorporateFareSharp.tsx +++ b/src/IconCorporateFareSharp.tsx @@ -8,4 +8,4 @@ const IconCorporateFareSharp: React.FC = ({ ...props }) => ( ) -export { IconCorporateFareSharp as default } +export default IconCorporateFareSharp diff --git a/src/IconCorporateFareSharpFilled.tsx b/src/IconCorporateFareSharpFilled.tsx index 9c4d115b3..b54a2ba89 100644 --- a/src/IconCorporateFareSharpFilled.tsx +++ b/src/IconCorporateFareSharpFilled.tsx @@ -8,4 +8,4 @@ const IconCorporateFareSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconCorporateFareSharpFilled as default } +export default IconCorporateFareSharpFilled diff --git a/src/IconCottageOutlined.tsx b/src/IconCottageOutlined.tsx index 8b6036586..b36382279 100644 --- a/src/IconCottageOutlined.tsx +++ b/src/IconCottageOutlined.tsx @@ -8,4 +8,4 @@ const IconCottageOutlined: React.FC = ({ ...props }) => ( ) -export { IconCottageOutlined as default } +export default IconCottageOutlined diff --git a/src/IconCottageOutlinedFilled.tsx b/src/IconCottageOutlinedFilled.tsx index db064b9f0..4024db8ad 100644 --- a/src/IconCottageOutlinedFilled.tsx +++ b/src/IconCottageOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconCottageOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconCottageOutlinedFilled as default } +export default IconCottageOutlinedFilled diff --git a/src/IconCottageRounded.tsx b/src/IconCottageRounded.tsx index 842cae124..4516de123 100644 --- a/src/IconCottageRounded.tsx +++ b/src/IconCottageRounded.tsx @@ -8,4 +8,4 @@ const IconCottageRounded: React.FC = ({ ...props }) => ( ) -export { IconCottageRounded as default } +export default IconCottageRounded diff --git a/src/IconCottageRoundedFilled.tsx b/src/IconCottageRoundedFilled.tsx index c11083ba6..d1e4ea77d 100644 --- a/src/IconCottageRoundedFilled.tsx +++ b/src/IconCottageRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconCottageRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconCottageRoundedFilled as default } +export default IconCottageRoundedFilled diff --git a/src/IconCottageSharp.tsx b/src/IconCottageSharp.tsx index d819cf54e..2f1565a6f 100644 --- a/src/IconCottageSharp.tsx +++ b/src/IconCottageSharp.tsx @@ -8,4 +8,4 @@ const IconCottageSharp: React.FC = ({ ...props }) => ( ) -export { IconCottageSharp as default } +export default IconCottageSharp diff --git a/src/IconCottageSharpFilled.tsx b/src/IconCottageSharpFilled.tsx index 4d17bd909..f1df10653 100644 --- a/src/IconCottageSharpFilled.tsx +++ b/src/IconCottageSharpFilled.tsx @@ -8,4 +8,4 @@ const IconCottageSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconCottageSharpFilled as default } +export default IconCottageSharpFilled diff --git a/src/IconCounter0Outlined.tsx b/src/IconCounter0Outlined.tsx index 4334d3549..3e2f060e1 100644 --- a/src/IconCounter0Outlined.tsx +++ b/src/IconCounter0Outlined.tsx @@ -8,4 +8,4 @@ const IconCounter0Outlined: React.FC = ({ ...props }) => ( ) -export { IconCounter0Outlined as default } +export default IconCounter0Outlined diff --git a/src/IconCounter0OutlinedFilled.tsx b/src/IconCounter0OutlinedFilled.tsx index c79865723..6e171943b 100644 --- a/src/IconCounter0OutlinedFilled.tsx +++ b/src/IconCounter0OutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconCounter0OutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconCounter0OutlinedFilled as default } +export default IconCounter0OutlinedFilled diff --git a/src/IconCounter0Rounded.tsx b/src/IconCounter0Rounded.tsx index bd55ae6c6..3f368f127 100644 --- a/src/IconCounter0Rounded.tsx +++ b/src/IconCounter0Rounded.tsx @@ -8,4 +8,4 @@ const IconCounter0Rounded: React.FC = ({ ...props }) => ( ) -export { IconCounter0Rounded as default } +export default IconCounter0Rounded diff --git a/src/IconCounter0RoundedFilled.tsx b/src/IconCounter0RoundedFilled.tsx index caca83edb..8ec74a6ba 100644 --- a/src/IconCounter0RoundedFilled.tsx +++ b/src/IconCounter0RoundedFilled.tsx @@ -8,4 +8,4 @@ const IconCounter0RoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconCounter0RoundedFilled as default } +export default IconCounter0RoundedFilled diff --git a/src/IconCounter0Sharp.tsx b/src/IconCounter0Sharp.tsx index f7336c6d7..c27b0f2ac 100644 --- a/src/IconCounter0Sharp.tsx +++ b/src/IconCounter0Sharp.tsx @@ -8,4 +8,4 @@ const IconCounter0Sharp: React.FC = ({ ...props }) => ( ) -export { IconCounter0Sharp as default } +export default IconCounter0Sharp diff --git a/src/IconCounter0SharpFilled.tsx b/src/IconCounter0SharpFilled.tsx index bb3b2be71..87e860d17 100644 --- a/src/IconCounter0SharpFilled.tsx +++ b/src/IconCounter0SharpFilled.tsx @@ -8,4 +8,4 @@ const IconCounter0SharpFilled: React.FC = ({ ...props }) => ( ) -export { IconCounter0SharpFilled as default } +export default IconCounter0SharpFilled diff --git a/src/IconCounter1Outlined.tsx b/src/IconCounter1Outlined.tsx index c075d08cd..01c8f77a7 100644 --- a/src/IconCounter1Outlined.tsx +++ b/src/IconCounter1Outlined.tsx @@ -8,4 +8,4 @@ const IconCounter1Outlined: React.FC = ({ ...props }) => ( ) -export { IconCounter1Outlined as default } +export default IconCounter1Outlined diff --git a/src/IconCounter1OutlinedFilled.tsx b/src/IconCounter1OutlinedFilled.tsx index 5113ffb00..830319e9c 100644 --- a/src/IconCounter1OutlinedFilled.tsx +++ b/src/IconCounter1OutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconCounter1OutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconCounter1OutlinedFilled as default } +export default IconCounter1OutlinedFilled diff --git a/src/IconCounter1Rounded.tsx b/src/IconCounter1Rounded.tsx index 0fc055dbd..6a6726f19 100644 --- a/src/IconCounter1Rounded.tsx +++ b/src/IconCounter1Rounded.tsx @@ -8,4 +8,4 @@ const IconCounter1Rounded: React.FC = ({ ...props }) => ( ) -export { IconCounter1Rounded as default } +export default IconCounter1Rounded diff --git a/src/IconCounter1RoundedFilled.tsx b/src/IconCounter1RoundedFilled.tsx index 088675600..f8250601d 100644 --- a/src/IconCounter1RoundedFilled.tsx +++ b/src/IconCounter1RoundedFilled.tsx @@ -8,4 +8,4 @@ const IconCounter1RoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconCounter1RoundedFilled as default } +export default IconCounter1RoundedFilled diff --git a/src/IconCounter1Sharp.tsx b/src/IconCounter1Sharp.tsx index a9c750365..6fe862fb2 100644 --- a/src/IconCounter1Sharp.tsx +++ b/src/IconCounter1Sharp.tsx @@ -8,4 +8,4 @@ const IconCounter1Sharp: React.FC = ({ ...props }) => ( ) -export { IconCounter1Sharp as default } +export default IconCounter1Sharp diff --git a/src/IconCounter1SharpFilled.tsx b/src/IconCounter1SharpFilled.tsx index 7624cc980..804f63b0e 100644 --- a/src/IconCounter1SharpFilled.tsx +++ b/src/IconCounter1SharpFilled.tsx @@ -8,4 +8,4 @@ const IconCounter1SharpFilled: React.FC = ({ ...props }) => ( ) -export { IconCounter1SharpFilled as default } +export default IconCounter1SharpFilled diff --git a/src/IconCounter2Outlined.tsx b/src/IconCounter2Outlined.tsx index b552a34f2..94d4ec44d 100644 --- a/src/IconCounter2Outlined.tsx +++ b/src/IconCounter2Outlined.tsx @@ -8,4 +8,4 @@ const IconCounter2Outlined: React.FC = ({ ...props }) => ( ) -export { IconCounter2Outlined as default } +export default IconCounter2Outlined diff --git a/src/IconCounter2OutlinedFilled.tsx b/src/IconCounter2OutlinedFilled.tsx index a46fca088..420464633 100644 --- a/src/IconCounter2OutlinedFilled.tsx +++ b/src/IconCounter2OutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconCounter2OutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconCounter2OutlinedFilled as default } +export default IconCounter2OutlinedFilled diff --git a/src/IconCounter2Rounded.tsx b/src/IconCounter2Rounded.tsx index 64fb18749..f12449fdc 100644 --- a/src/IconCounter2Rounded.tsx +++ b/src/IconCounter2Rounded.tsx @@ -8,4 +8,4 @@ const IconCounter2Rounded: React.FC = ({ ...props }) => ( ) -export { IconCounter2Rounded as default } +export default IconCounter2Rounded diff --git a/src/IconCounter2RoundedFilled.tsx b/src/IconCounter2RoundedFilled.tsx index 5a63a3bb9..557cb6d5b 100644 --- a/src/IconCounter2RoundedFilled.tsx +++ b/src/IconCounter2RoundedFilled.tsx @@ -8,4 +8,4 @@ const IconCounter2RoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconCounter2RoundedFilled as default } +export default IconCounter2RoundedFilled diff --git a/src/IconCounter2Sharp.tsx b/src/IconCounter2Sharp.tsx index 19c10b766..a69defcc9 100644 --- a/src/IconCounter2Sharp.tsx +++ b/src/IconCounter2Sharp.tsx @@ -8,4 +8,4 @@ const IconCounter2Sharp: React.FC = ({ ...props }) => ( ) -export { IconCounter2Sharp as default } +export default IconCounter2Sharp diff --git a/src/IconCounter2SharpFilled.tsx b/src/IconCounter2SharpFilled.tsx index 645fb560c..399c605bd 100644 --- a/src/IconCounter2SharpFilled.tsx +++ b/src/IconCounter2SharpFilled.tsx @@ -8,4 +8,4 @@ const IconCounter2SharpFilled: React.FC = ({ ...props }) => ( ) -export { IconCounter2SharpFilled as default } +export default IconCounter2SharpFilled diff --git a/src/IconCounter3Outlined.tsx b/src/IconCounter3Outlined.tsx index 7de86f5e0..874ce97f8 100644 --- a/src/IconCounter3Outlined.tsx +++ b/src/IconCounter3Outlined.tsx @@ -8,4 +8,4 @@ const IconCounter3Outlined: React.FC = ({ ...props }) => ( ) -export { IconCounter3Outlined as default } +export default IconCounter3Outlined diff --git a/src/IconCounter3OutlinedFilled.tsx b/src/IconCounter3OutlinedFilled.tsx index d1ef02838..3a6a5db68 100644 --- a/src/IconCounter3OutlinedFilled.tsx +++ b/src/IconCounter3OutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconCounter3OutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconCounter3OutlinedFilled as default } +export default IconCounter3OutlinedFilled diff --git a/src/IconCounter3Rounded.tsx b/src/IconCounter3Rounded.tsx index 97f01211d..a3c5228c6 100644 --- a/src/IconCounter3Rounded.tsx +++ b/src/IconCounter3Rounded.tsx @@ -8,4 +8,4 @@ const IconCounter3Rounded: React.FC = ({ ...props }) => ( ) -export { IconCounter3Rounded as default } +export default IconCounter3Rounded diff --git a/src/IconCounter3RoundedFilled.tsx b/src/IconCounter3RoundedFilled.tsx index 95169d0be..cd56b4a0d 100644 --- a/src/IconCounter3RoundedFilled.tsx +++ b/src/IconCounter3RoundedFilled.tsx @@ -8,4 +8,4 @@ const IconCounter3RoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconCounter3RoundedFilled as default } +export default IconCounter3RoundedFilled diff --git a/src/IconCounter3Sharp.tsx b/src/IconCounter3Sharp.tsx index 830fa8fdb..f92dce71f 100644 --- a/src/IconCounter3Sharp.tsx +++ b/src/IconCounter3Sharp.tsx @@ -8,4 +8,4 @@ const IconCounter3Sharp: React.FC = ({ ...props }) => ( ) -export { IconCounter3Sharp as default } +export default IconCounter3Sharp diff --git a/src/IconCounter3SharpFilled.tsx b/src/IconCounter3SharpFilled.tsx index ab260020c..8056239a8 100644 --- a/src/IconCounter3SharpFilled.tsx +++ b/src/IconCounter3SharpFilled.tsx @@ -8,4 +8,4 @@ const IconCounter3SharpFilled: React.FC = ({ ...props }) => ( ) -export { IconCounter3SharpFilled as default } +export default IconCounter3SharpFilled diff --git a/src/IconCounter4Outlined.tsx b/src/IconCounter4Outlined.tsx index 882d32af1..f30809143 100644 --- a/src/IconCounter4Outlined.tsx +++ b/src/IconCounter4Outlined.tsx @@ -8,4 +8,4 @@ const IconCounter4Outlined: React.FC = ({ ...props }) => ( ) -export { IconCounter4Outlined as default } +export default IconCounter4Outlined diff --git a/src/IconCounter4OutlinedFilled.tsx b/src/IconCounter4OutlinedFilled.tsx index 767f8d723..c943046fa 100644 --- a/src/IconCounter4OutlinedFilled.tsx +++ b/src/IconCounter4OutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconCounter4OutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconCounter4OutlinedFilled as default } +export default IconCounter4OutlinedFilled diff --git a/src/IconCounter4Rounded.tsx b/src/IconCounter4Rounded.tsx index d406a5bc6..51c748267 100644 --- a/src/IconCounter4Rounded.tsx +++ b/src/IconCounter4Rounded.tsx @@ -8,4 +8,4 @@ const IconCounter4Rounded: React.FC = ({ ...props }) => ( ) -export { IconCounter4Rounded as default } +export default IconCounter4Rounded diff --git a/src/IconCounter4RoundedFilled.tsx b/src/IconCounter4RoundedFilled.tsx index e6bddea7f..705324580 100644 --- a/src/IconCounter4RoundedFilled.tsx +++ b/src/IconCounter4RoundedFilled.tsx @@ -8,4 +8,4 @@ const IconCounter4RoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconCounter4RoundedFilled as default } +export default IconCounter4RoundedFilled diff --git a/src/IconCounter4Sharp.tsx b/src/IconCounter4Sharp.tsx index efe67f283..0619fc48b 100644 --- a/src/IconCounter4Sharp.tsx +++ b/src/IconCounter4Sharp.tsx @@ -8,4 +8,4 @@ const IconCounter4Sharp: React.FC = ({ ...props }) => ( ) -export { IconCounter4Sharp as default } +export default IconCounter4Sharp diff --git a/src/IconCounter4SharpFilled.tsx b/src/IconCounter4SharpFilled.tsx index a5c32fab6..49bb0f1a8 100644 --- a/src/IconCounter4SharpFilled.tsx +++ b/src/IconCounter4SharpFilled.tsx @@ -8,4 +8,4 @@ const IconCounter4SharpFilled: React.FC = ({ ...props }) => ( ) -export { IconCounter4SharpFilled as default } +export default IconCounter4SharpFilled diff --git a/src/IconCounter5Outlined.tsx b/src/IconCounter5Outlined.tsx index 54993f51b..9e12f20bb 100644 --- a/src/IconCounter5Outlined.tsx +++ b/src/IconCounter5Outlined.tsx @@ -8,4 +8,4 @@ const IconCounter5Outlined: React.FC = ({ ...props }) => ( ) -export { IconCounter5Outlined as default } +export default IconCounter5Outlined diff --git a/src/IconCounter5OutlinedFilled.tsx b/src/IconCounter5OutlinedFilled.tsx index 332bef5b8..9e64f6f8e 100644 --- a/src/IconCounter5OutlinedFilled.tsx +++ b/src/IconCounter5OutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconCounter5OutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconCounter5OutlinedFilled as default } +export default IconCounter5OutlinedFilled diff --git a/src/IconCounter5Rounded.tsx b/src/IconCounter5Rounded.tsx index 2a8bac11b..b565d80db 100644 --- a/src/IconCounter5Rounded.tsx +++ b/src/IconCounter5Rounded.tsx @@ -8,4 +8,4 @@ const IconCounter5Rounded: React.FC = ({ ...props }) => ( ) -export { IconCounter5Rounded as default } +export default IconCounter5Rounded diff --git a/src/IconCounter5RoundedFilled.tsx b/src/IconCounter5RoundedFilled.tsx index 42b273dab..4c98cffb9 100644 --- a/src/IconCounter5RoundedFilled.tsx +++ b/src/IconCounter5RoundedFilled.tsx @@ -8,4 +8,4 @@ const IconCounter5RoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconCounter5RoundedFilled as default } +export default IconCounter5RoundedFilled diff --git a/src/IconCounter5Sharp.tsx b/src/IconCounter5Sharp.tsx index 6c427e996..169a10f54 100644 --- a/src/IconCounter5Sharp.tsx +++ b/src/IconCounter5Sharp.tsx @@ -8,4 +8,4 @@ const IconCounter5Sharp: React.FC = ({ ...props }) => ( ) -export { IconCounter5Sharp as default } +export default IconCounter5Sharp diff --git a/src/IconCounter5SharpFilled.tsx b/src/IconCounter5SharpFilled.tsx index aa3574cfc..20318485e 100644 --- a/src/IconCounter5SharpFilled.tsx +++ b/src/IconCounter5SharpFilled.tsx @@ -8,4 +8,4 @@ const IconCounter5SharpFilled: React.FC = ({ ...props }) => ( ) -export { IconCounter5SharpFilled as default } +export default IconCounter5SharpFilled diff --git a/src/IconCounter6Outlined.tsx b/src/IconCounter6Outlined.tsx index 2955fea10..b2e3b2e0c 100644 --- a/src/IconCounter6Outlined.tsx +++ b/src/IconCounter6Outlined.tsx @@ -8,4 +8,4 @@ const IconCounter6Outlined: React.FC = ({ ...props }) => ( ) -export { IconCounter6Outlined as default } +export default IconCounter6Outlined diff --git a/src/IconCounter6OutlinedFilled.tsx b/src/IconCounter6OutlinedFilled.tsx index 4e44a55ed..4864c03ec 100644 --- a/src/IconCounter6OutlinedFilled.tsx +++ b/src/IconCounter6OutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconCounter6OutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconCounter6OutlinedFilled as default } +export default IconCounter6OutlinedFilled diff --git a/src/IconCounter6Rounded.tsx b/src/IconCounter6Rounded.tsx index c9eda677c..3de08c2a3 100644 --- a/src/IconCounter6Rounded.tsx +++ b/src/IconCounter6Rounded.tsx @@ -8,4 +8,4 @@ const IconCounter6Rounded: React.FC = ({ ...props }) => ( ) -export { IconCounter6Rounded as default } +export default IconCounter6Rounded diff --git a/src/IconCounter6RoundedFilled.tsx b/src/IconCounter6RoundedFilled.tsx index de699a33d..1ee4a6663 100644 --- a/src/IconCounter6RoundedFilled.tsx +++ b/src/IconCounter6RoundedFilled.tsx @@ -8,4 +8,4 @@ const IconCounter6RoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconCounter6RoundedFilled as default } +export default IconCounter6RoundedFilled diff --git a/src/IconCounter6Sharp.tsx b/src/IconCounter6Sharp.tsx index dd7e65e05..8f50122ee 100644 --- a/src/IconCounter6Sharp.tsx +++ b/src/IconCounter6Sharp.tsx @@ -8,4 +8,4 @@ const IconCounter6Sharp: React.FC = ({ ...props }) => ( ) -export { IconCounter6Sharp as default } +export default IconCounter6Sharp diff --git a/src/IconCounter6SharpFilled.tsx b/src/IconCounter6SharpFilled.tsx index d99576a9b..f8574d944 100644 --- a/src/IconCounter6SharpFilled.tsx +++ b/src/IconCounter6SharpFilled.tsx @@ -8,4 +8,4 @@ const IconCounter6SharpFilled: React.FC = ({ ...props }) => ( ) -export { IconCounter6SharpFilled as default } +export default IconCounter6SharpFilled diff --git a/src/IconCounter7Outlined.tsx b/src/IconCounter7Outlined.tsx index 7488f3b7b..33d795bfd 100644 --- a/src/IconCounter7Outlined.tsx +++ b/src/IconCounter7Outlined.tsx @@ -8,4 +8,4 @@ const IconCounter7Outlined: React.FC = ({ ...props }) => ( ) -export { IconCounter7Outlined as default } +export default IconCounter7Outlined diff --git a/src/IconCounter7OutlinedFilled.tsx b/src/IconCounter7OutlinedFilled.tsx index cc25775b3..b6659c247 100644 --- a/src/IconCounter7OutlinedFilled.tsx +++ b/src/IconCounter7OutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconCounter7OutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconCounter7OutlinedFilled as default } +export default IconCounter7OutlinedFilled diff --git a/src/IconCounter7Rounded.tsx b/src/IconCounter7Rounded.tsx index a97fa6955..7a39423a7 100644 --- a/src/IconCounter7Rounded.tsx +++ b/src/IconCounter7Rounded.tsx @@ -8,4 +8,4 @@ const IconCounter7Rounded: React.FC = ({ ...props }) => ( ) -export { IconCounter7Rounded as default } +export default IconCounter7Rounded diff --git a/src/IconCounter7RoundedFilled.tsx b/src/IconCounter7RoundedFilled.tsx index da521677d..9dfddc759 100644 --- a/src/IconCounter7RoundedFilled.tsx +++ b/src/IconCounter7RoundedFilled.tsx @@ -8,4 +8,4 @@ const IconCounter7RoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconCounter7RoundedFilled as default } +export default IconCounter7RoundedFilled diff --git a/src/IconCounter7Sharp.tsx b/src/IconCounter7Sharp.tsx index 9191bbaf3..1b08d0583 100644 --- a/src/IconCounter7Sharp.tsx +++ b/src/IconCounter7Sharp.tsx @@ -8,4 +8,4 @@ const IconCounter7Sharp: React.FC = ({ ...props }) => ( ) -export { IconCounter7Sharp as default } +export default IconCounter7Sharp diff --git a/src/IconCounter7SharpFilled.tsx b/src/IconCounter7SharpFilled.tsx index b379ff45b..812ed3c1b 100644 --- a/src/IconCounter7SharpFilled.tsx +++ b/src/IconCounter7SharpFilled.tsx @@ -8,4 +8,4 @@ const IconCounter7SharpFilled: React.FC = ({ ...props }) => ( ) -export { IconCounter7SharpFilled as default } +export default IconCounter7SharpFilled diff --git a/src/IconCounter8Outlined.tsx b/src/IconCounter8Outlined.tsx index f62ed7336..97b70f60e 100644 --- a/src/IconCounter8Outlined.tsx +++ b/src/IconCounter8Outlined.tsx @@ -8,4 +8,4 @@ const IconCounter8Outlined: React.FC = ({ ...props }) => ( ) -export { IconCounter8Outlined as default } +export default IconCounter8Outlined diff --git a/src/IconCounter8OutlinedFilled.tsx b/src/IconCounter8OutlinedFilled.tsx index dc3562827..04169f4c5 100644 --- a/src/IconCounter8OutlinedFilled.tsx +++ b/src/IconCounter8OutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconCounter8OutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconCounter8OutlinedFilled as default } +export default IconCounter8OutlinedFilled diff --git a/src/IconCounter8Rounded.tsx b/src/IconCounter8Rounded.tsx index 3dc928b92..cb49bd468 100644 --- a/src/IconCounter8Rounded.tsx +++ b/src/IconCounter8Rounded.tsx @@ -8,4 +8,4 @@ const IconCounter8Rounded: React.FC = ({ ...props }) => ( ) -export { IconCounter8Rounded as default } +export default IconCounter8Rounded diff --git a/src/IconCounter8RoundedFilled.tsx b/src/IconCounter8RoundedFilled.tsx index 047d6c198..3f9bf5816 100644 --- a/src/IconCounter8RoundedFilled.tsx +++ b/src/IconCounter8RoundedFilled.tsx @@ -8,4 +8,4 @@ const IconCounter8RoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconCounter8RoundedFilled as default } +export default IconCounter8RoundedFilled diff --git a/src/IconCounter8Sharp.tsx b/src/IconCounter8Sharp.tsx index 491286606..3804f68e8 100644 --- a/src/IconCounter8Sharp.tsx +++ b/src/IconCounter8Sharp.tsx @@ -8,4 +8,4 @@ const IconCounter8Sharp: React.FC = ({ ...props }) => ( ) -export { IconCounter8Sharp as default } +export default IconCounter8Sharp diff --git a/src/IconCounter8SharpFilled.tsx b/src/IconCounter8SharpFilled.tsx index f5ee29967..881d4ecf8 100644 --- a/src/IconCounter8SharpFilled.tsx +++ b/src/IconCounter8SharpFilled.tsx @@ -8,4 +8,4 @@ const IconCounter8SharpFilled: React.FC = ({ ...props }) => ( ) -export { IconCounter8SharpFilled as default } +export default IconCounter8SharpFilled diff --git a/src/IconCounter9Outlined.tsx b/src/IconCounter9Outlined.tsx index 5b8ca1aef..b0587948e 100644 --- a/src/IconCounter9Outlined.tsx +++ b/src/IconCounter9Outlined.tsx @@ -8,4 +8,4 @@ const IconCounter9Outlined: React.FC = ({ ...props }) => ( ) -export { IconCounter9Outlined as default } +export default IconCounter9Outlined diff --git a/src/IconCounter9OutlinedFilled.tsx b/src/IconCounter9OutlinedFilled.tsx index 726f736d7..29047fdcd 100644 --- a/src/IconCounter9OutlinedFilled.tsx +++ b/src/IconCounter9OutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconCounter9OutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconCounter9OutlinedFilled as default } +export default IconCounter9OutlinedFilled diff --git a/src/IconCounter9Rounded.tsx b/src/IconCounter9Rounded.tsx index 0143af6eb..eaa9d072c 100644 --- a/src/IconCounter9Rounded.tsx +++ b/src/IconCounter9Rounded.tsx @@ -8,4 +8,4 @@ const IconCounter9Rounded: React.FC = ({ ...props }) => ( ) -export { IconCounter9Rounded as default } +export default IconCounter9Rounded diff --git a/src/IconCounter9RoundedFilled.tsx b/src/IconCounter9RoundedFilled.tsx index 93afaada4..37c6ae4a1 100644 --- a/src/IconCounter9RoundedFilled.tsx +++ b/src/IconCounter9RoundedFilled.tsx @@ -8,4 +8,4 @@ const IconCounter9RoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconCounter9RoundedFilled as default } +export default IconCounter9RoundedFilled diff --git a/src/IconCounter9Sharp.tsx b/src/IconCounter9Sharp.tsx index e200b3535..976bcea0e 100644 --- a/src/IconCounter9Sharp.tsx +++ b/src/IconCounter9Sharp.tsx @@ -8,4 +8,4 @@ const IconCounter9Sharp: React.FC = ({ ...props }) => ( ) -export { IconCounter9Sharp as default } +export default IconCounter9Sharp diff --git a/src/IconCounter9SharpFilled.tsx b/src/IconCounter9SharpFilled.tsx index 3d3b6eeac..d351165b4 100644 --- a/src/IconCounter9SharpFilled.tsx +++ b/src/IconCounter9SharpFilled.tsx @@ -8,4 +8,4 @@ const IconCounter9SharpFilled: React.FC = ({ ...props }) => ( ) -export { IconCounter9SharpFilled as default } +export default IconCounter9SharpFilled diff --git a/src/IconCountertopsOutlined.tsx b/src/IconCountertopsOutlined.tsx index bf72bbde3..788507a42 100644 --- a/src/IconCountertopsOutlined.tsx +++ b/src/IconCountertopsOutlined.tsx @@ -8,4 +8,4 @@ const IconCountertopsOutlined: React.FC = ({ ...props }) => ( ) -export { IconCountertopsOutlined as default } +export default IconCountertopsOutlined diff --git a/src/IconCountertopsOutlinedFilled.tsx b/src/IconCountertopsOutlinedFilled.tsx index d030c5e53..6d63eb026 100644 --- a/src/IconCountertopsOutlinedFilled.tsx +++ b/src/IconCountertopsOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconCountertopsOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconCountertopsOutlinedFilled as default } +export default IconCountertopsOutlinedFilled diff --git a/src/IconCountertopsRounded.tsx b/src/IconCountertopsRounded.tsx index f2e7cdc76..781d76f3e 100644 --- a/src/IconCountertopsRounded.tsx +++ b/src/IconCountertopsRounded.tsx @@ -8,4 +8,4 @@ const IconCountertopsRounded: React.FC = ({ ...props }) => ( ) -export { IconCountertopsRounded as default } +export default IconCountertopsRounded diff --git a/src/IconCountertopsRoundedFilled.tsx b/src/IconCountertopsRoundedFilled.tsx index 2c1e2fdbf..a3480e749 100644 --- a/src/IconCountertopsRoundedFilled.tsx +++ b/src/IconCountertopsRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconCountertopsRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconCountertopsRoundedFilled as default } +export default IconCountertopsRoundedFilled diff --git a/src/IconCountertopsSharp.tsx b/src/IconCountertopsSharp.tsx index 975e881a4..5626902a2 100644 --- a/src/IconCountertopsSharp.tsx +++ b/src/IconCountertopsSharp.tsx @@ -8,4 +8,4 @@ const IconCountertopsSharp: React.FC = ({ ...props }) => ( ) -export { IconCountertopsSharp as default } +export default IconCountertopsSharp diff --git a/src/IconCountertopsSharpFilled.tsx b/src/IconCountertopsSharpFilled.tsx index fa9001ce9..4997700a0 100644 --- a/src/IconCountertopsSharpFilled.tsx +++ b/src/IconCountertopsSharpFilled.tsx @@ -8,4 +8,4 @@ const IconCountertopsSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconCountertopsSharpFilled as default } +export default IconCountertopsSharpFilled diff --git a/src/IconCreateNewFolderOutlined.tsx b/src/IconCreateNewFolderOutlined.tsx index 68c6c0d0e..9e9e9d918 100644 --- a/src/IconCreateNewFolderOutlined.tsx +++ b/src/IconCreateNewFolderOutlined.tsx @@ -8,4 +8,4 @@ const IconCreateNewFolderOutlined: React.FC = ({ ...props }) => ( ) -export { IconCreateNewFolderOutlined as default } +export default IconCreateNewFolderOutlined diff --git a/src/IconCreateNewFolderOutlinedFilled.tsx b/src/IconCreateNewFolderOutlinedFilled.tsx index 4469bfd81..675f1ad27 100644 --- a/src/IconCreateNewFolderOutlinedFilled.tsx +++ b/src/IconCreateNewFolderOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconCreateNewFolderOutlinedFilled: React.FC = ({ ) -export { IconCreateNewFolderOutlinedFilled as default } +export default IconCreateNewFolderOutlinedFilled diff --git a/src/IconCreateNewFolderRounded.tsx b/src/IconCreateNewFolderRounded.tsx index 04d1ebcea..9a94ec27f 100644 --- a/src/IconCreateNewFolderRounded.tsx +++ b/src/IconCreateNewFolderRounded.tsx @@ -8,4 +8,4 @@ const IconCreateNewFolderRounded: React.FC = ({ ...props }) => ( ) -export { IconCreateNewFolderRounded as default } +export default IconCreateNewFolderRounded diff --git a/src/IconCreateNewFolderRoundedFilled.tsx b/src/IconCreateNewFolderRoundedFilled.tsx index cd94f1fbd..41898fd71 100644 --- a/src/IconCreateNewFolderRoundedFilled.tsx +++ b/src/IconCreateNewFolderRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconCreateNewFolderRoundedFilled: React.FC = ({ ) -export { IconCreateNewFolderRoundedFilled as default } +export default IconCreateNewFolderRoundedFilled diff --git a/src/IconCreateNewFolderSharp.tsx b/src/IconCreateNewFolderSharp.tsx index e9b81f218..3f8982045 100644 --- a/src/IconCreateNewFolderSharp.tsx +++ b/src/IconCreateNewFolderSharp.tsx @@ -8,4 +8,4 @@ const IconCreateNewFolderSharp: React.FC = ({ ...props }) => ( ) -export { IconCreateNewFolderSharp as default } +export default IconCreateNewFolderSharp diff --git a/src/IconCreateNewFolderSharpFilled.tsx b/src/IconCreateNewFolderSharpFilled.tsx index 2576073fd..0fd897fc3 100644 --- a/src/IconCreateNewFolderSharpFilled.tsx +++ b/src/IconCreateNewFolderSharpFilled.tsx @@ -8,4 +8,4 @@ const IconCreateNewFolderSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconCreateNewFolderSharpFilled as default } +export default IconCreateNewFolderSharpFilled diff --git a/src/IconCreditCardClockOutlined.tsx b/src/IconCreditCardClockOutlined.tsx index 5ed7a4282..ce9285350 100644 --- a/src/IconCreditCardClockOutlined.tsx +++ b/src/IconCreditCardClockOutlined.tsx @@ -8,4 +8,4 @@ const IconCreditCardClockOutlined: React.FC = ({ ...props }) => ( ) -export { IconCreditCardClockOutlined as default } +export default IconCreditCardClockOutlined diff --git a/src/IconCreditCardClockOutlinedFilled.tsx b/src/IconCreditCardClockOutlinedFilled.tsx index cc155331f..e08e3355a 100644 --- a/src/IconCreditCardClockOutlinedFilled.tsx +++ b/src/IconCreditCardClockOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconCreditCardClockOutlinedFilled: React.FC = ({ ) -export { IconCreditCardClockOutlinedFilled as default } +export default IconCreditCardClockOutlinedFilled diff --git a/src/IconCreditCardClockRounded.tsx b/src/IconCreditCardClockRounded.tsx index 2925688ce..d494e0017 100644 --- a/src/IconCreditCardClockRounded.tsx +++ b/src/IconCreditCardClockRounded.tsx @@ -8,4 +8,4 @@ const IconCreditCardClockRounded: React.FC = ({ ...props }) => ( ) -export { IconCreditCardClockRounded as default } +export default IconCreditCardClockRounded diff --git a/src/IconCreditCardClockRoundedFilled.tsx b/src/IconCreditCardClockRoundedFilled.tsx index f714ec71f..c1daffa23 100644 --- a/src/IconCreditCardClockRoundedFilled.tsx +++ b/src/IconCreditCardClockRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconCreditCardClockRoundedFilled: React.FC = ({ ) -export { IconCreditCardClockRoundedFilled as default } +export default IconCreditCardClockRoundedFilled diff --git a/src/IconCreditCardClockSharp.tsx b/src/IconCreditCardClockSharp.tsx index 68f0c6e65..733fedd1d 100644 --- a/src/IconCreditCardClockSharp.tsx +++ b/src/IconCreditCardClockSharp.tsx @@ -8,4 +8,4 @@ const IconCreditCardClockSharp: React.FC = ({ ...props }) => ( ) -export { IconCreditCardClockSharp as default } +export default IconCreditCardClockSharp diff --git a/src/IconCreditCardClockSharpFilled.tsx b/src/IconCreditCardClockSharpFilled.tsx index 0c79debc0..ac3d30350 100644 --- a/src/IconCreditCardClockSharpFilled.tsx +++ b/src/IconCreditCardClockSharpFilled.tsx @@ -8,4 +8,4 @@ const IconCreditCardClockSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconCreditCardClockSharpFilled as default } +export default IconCreditCardClockSharpFilled diff --git a/src/IconCreditCardGearOutlined.tsx b/src/IconCreditCardGearOutlined.tsx index 29cef65d2..eba823950 100644 --- a/src/IconCreditCardGearOutlined.tsx +++ b/src/IconCreditCardGearOutlined.tsx @@ -8,4 +8,4 @@ const IconCreditCardGearOutlined: React.FC = ({ ...props }) => ( ) -export { IconCreditCardGearOutlined as default } +export default IconCreditCardGearOutlined diff --git a/src/IconCreditCardGearOutlinedFilled.tsx b/src/IconCreditCardGearOutlinedFilled.tsx index 2a8595e22..dc2f6490d 100644 --- a/src/IconCreditCardGearOutlinedFilled.tsx +++ b/src/IconCreditCardGearOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconCreditCardGearOutlinedFilled: React.FC = ({ ) -export { IconCreditCardGearOutlinedFilled as default } +export default IconCreditCardGearOutlinedFilled diff --git a/src/IconCreditCardGearRounded.tsx b/src/IconCreditCardGearRounded.tsx index 5e4ee7e3f..4d4028efd 100644 --- a/src/IconCreditCardGearRounded.tsx +++ b/src/IconCreditCardGearRounded.tsx @@ -8,4 +8,4 @@ const IconCreditCardGearRounded: React.FC = ({ ...props }) => ( ) -export { IconCreditCardGearRounded as default } +export default IconCreditCardGearRounded diff --git a/src/IconCreditCardGearRoundedFilled.tsx b/src/IconCreditCardGearRoundedFilled.tsx index 316739bf5..70cabe058 100644 --- a/src/IconCreditCardGearRoundedFilled.tsx +++ b/src/IconCreditCardGearRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconCreditCardGearRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconCreditCardGearRoundedFilled as default } +export default IconCreditCardGearRoundedFilled diff --git a/src/IconCreditCardGearSharp.tsx b/src/IconCreditCardGearSharp.tsx index 3cb0d4665..e67dcb56c 100644 --- a/src/IconCreditCardGearSharp.tsx +++ b/src/IconCreditCardGearSharp.tsx @@ -8,4 +8,4 @@ const IconCreditCardGearSharp: React.FC = ({ ...props }) => ( ) -export { IconCreditCardGearSharp as default } +export default IconCreditCardGearSharp diff --git a/src/IconCreditCardGearSharpFilled.tsx b/src/IconCreditCardGearSharpFilled.tsx index 694f93d5f..6f57701fb 100644 --- a/src/IconCreditCardGearSharpFilled.tsx +++ b/src/IconCreditCardGearSharpFilled.tsx @@ -8,4 +8,4 @@ const IconCreditCardGearSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconCreditCardGearSharpFilled as default } +export default IconCreditCardGearSharpFilled diff --git a/src/IconCreditCardHeartOutlined.tsx b/src/IconCreditCardHeartOutlined.tsx index 80b164108..e7cece63a 100644 --- a/src/IconCreditCardHeartOutlined.tsx +++ b/src/IconCreditCardHeartOutlined.tsx @@ -8,4 +8,4 @@ const IconCreditCardHeartOutlined: React.FC = ({ ...props }) => ( ) -export { IconCreditCardHeartOutlined as default } +export default IconCreditCardHeartOutlined diff --git a/src/IconCreditCardHeartOutlinedFilled.tsx b/src/IconCreditCardHeartOutlinedFilled.tsx index 499a2719e..18a2b8408 100644 --- a/src/IconCreditCardHeartOutlinedFilled.tsx +++ b/src/IconCreditCardHeartOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconCreditCardHeartOutlinedFilled: React.FC = ({ ) -export { IconCreditCardHeartOutlinedFilled as default } +export default IconCreditCardHeartOutlinedFilled diff --git a/src/IconCreditCardHeartRounded.tsx b/src/IconCreditCardHeartRounded.tsx index 6fe306309..3fc41a241 100644 --- a/src/IconCreditCardHeartRounded.tsx +++ b/src/IconCreditCardHeartRounded.tsx @@ -8,4 +8,4 @@ const IconCreditCardHeartRounded: React.FC = ({ ...props }) => ( ) -export { IconCreditCardHeartRounded as default } +export default IconCreditCardHeartRounded diff --git a/src/IconCreditCardHeartRoundedFilled.tsx b/src/IconCreditCardHeartRoundedFilled.tsx index 45103985b..85190cc5c 100644 --- a/src/IconCreditCardHeartRoundedFilled.tsx +++ b/src/IconCreditCardHeartRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconCreditCardHeartRoundedFilled: React.FC = ({ ) -export { IconCreditCardHeartRoundedFilled as default } +export default IconCreditCardHeartRoundedFilled diff --git a/src/IconCreditCardHeartSharp.tsx b/src/IconCreditCardHeartSharp.tsx index b6eca0dec..daa1f64db 100644 --- a/src/IconCreditCardHeartSharp.tsx +++ b/src/IconCreditCardHeartSharp.tsx @@ -8,4 +8,4 @@ const IconCreditCardHeartSharp: React.FC = ({ ...props }) => ( ) -export { IconCreditCardHeartSharp as default } +export default IconCreditCardHeartSharp diff --git a/src/IconCreditCardHeartSharpFilled.tsx b/src/IconCreditCardHeartSharpFilled.tsx index e1310a24f..9c02a2142 100644 --- a/src/IconCreditCardHeartSharpFilled.tsx +++ b/src/IconCreditCardHeartSharpFilled.tsx @@ -8,4 +8,4 @@ const IconCreditCardHeartSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconCreditCardHeartSharpFilled as default } +export default IconCreditCardHeartSharpFilled diff --git a/src/IconCreditCardOffOutlined.tsx b/src/IconCreditCardOffOutlined.tsx index 25a7489be..85c925968 100644 --- a/src/IconCreditCardOffOutlined.tsx +++ b/src/IconCreditCardOffOutlined.tsx @@ -8,4 +8,4 @@ const IconCreditCardOffOutlined: React.FC = ({ ...props }) => ( ) -export { IconCreditCardOffOutlined as default } +export default IconCreditCardOffOutlined diff --git a/src/IconCreditCardOffOutlinedFilled.tsx b/src/IconCreditCardOffOutlinedFilled.tsx index a623a0651..af672d9c6 100644 --- a/src/IconCreditCardOffOutlinedFilled.tsx +++ b/src/IconCreditCardOffOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconCreditCardOffOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconCreditCardOffOutlinedFilled as default } +export default IconCreditCardOffOutlinedFilled diff --git a/src/IconCreditCardOffRounded.tsx b/src/IconCreditCardOffRounded.tsx index f30109be5..ec4bd596c 100644 --- a/src/IconCreditCardOffRounded.tsx +++ b/src/IconCreditCardOffRounded.tsx @@ -8,4 +8,4 @@ const IconCreditCardOffRounded: React.FC = ({ ...props }) => ( ) -export { IconCreditCardOffRounded as default } +export default IconCreditCardOffRounded diff --git a/src/IconCreditCardOffRoundedFilled.tsx b/src/IconCreditCardOffRoundedFilled.tsx index 6e3d4e112..4ec2aba89 100644 --- a/src/IconCreditCardOffRoundedFilled.tsx +++ b/src/IconCreditCardOffRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconCreditCardOffRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconCreditCardOffRoundedFilled as default } +export default IconCreditCardOffRoundedFilled diff --git a/src/IconCreditCardOffSharp.tsx b/src/IconCreditCardOffSharp.tsx index 15cab061d..aaebb88fd 100644 --- a/src/IconCreditCardOffSharp.tsx +++ b/src/IconCreditCardOffSharp.tsx @@ -8,4 +8,4 @@ const IconCreditCardOffSharp: React.FC = ({ ...props }) => ( ) -export { IconCreditCardOffSharp as default } +export default IconCreditCardOffSharp diff --git a/src/IconCreditCardOffSharpFilled.tsx b/src/IconCreditCardOffSharpFilled.tsx index 11d632a66..4519c5065 100644 --- a/src/IconCreditCardOffSharpFilled.tsx +++ b/src/IconCreditCardOffSharpFilled.tsx @@ -8,4 +8,4 @@ const IconCreditCardOffSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconCreditCardOffSharpFilled as default } +export default IconCreditCardOffSharpFilled diff --git a/src/IconCreditCardOutlined.tsx b/src/IconCreditCardOutlined.tsx index e61242421..dce89a848 100644 --- a/src/IconCreditCardOutlined.tsx +++ b/src/IconCreditCardOutlined.tsx @@ -8,4 +8,4 @@ const IconCreditCardOutlined: React.FC = ({ ...props }) => ( ) -export { IconCreditCardOutlined as default } +export default IconCreditCardOutlined diff --git a/src/IconCreditCardOutlinedFilled.tsx b/src/IconCreditCardOutlinedFilled.tsx index 70b454863..31a20827b 100644 --- a/src/IconCreditCardOutlinedFilled.tsx +++ b/src/IconCreditCardOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconCreditCardOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconCreditCardOutlinedFilled as default } +export default IconCreditCardOutlinedFilled diff --git a/src/IconCreditCardRounded.tsx b/src/IconCreditCardRounded.tsx index 14da652c7..e81b4159f 100644 --- a/src/IconCreditCardRounded.tsx +++ b/src/IconCreditCardRounded.tsx @@ -8,4 +8,4 @@ const IconCreditCardRounded: React.FC = ({ ...props }) => ( ) -export { IconCreditCardRounded as default } +export default IconCreditCardRounded diff --git a/src/IconCreditCardRoundedFilled.tsx b/src/IconCreditCardRoundedFilled.tsx index 44a6e84c4..0856b54ea 100644 --- a/src/IconCreditCardRoundedFilled.tsx +++ b/src/IconCreditCardRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconCreditCardRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconCreditCardRoundedFilled as default } +export default IconCreditCardRoundedFilled diff --git a/src/IconCreditCardSharp.tsx b/src/IconCreditCardSharp.tsx index c499ca9bd..a824a1e22 100644 --- a/src/IconCreditCardSharp.tsx +++ b/src/IconCreditCardSharp.tsx @@ -8,4 +8,4 @@ const IconCreditCardSharp: React.FC = ({ ...props }) => ( ) -export { IconCreditCardSharp as default } +export default IconCreditCardSharp diff --git a/src/IconCreditCardSharpFilled.tsx b/src/IconCreditCardSharpFilled.tsx index 6717366f0..212db0e88 100644 --- a/src/IconCreditCardSharpFilled.tsx +++ b/src/IconCreditCardSharpFilled.tsx @@ -8,4 +8,4 @@ const IconCreditCardSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconCreditCardSharpFilled as default } +export default IconCreditCardSharpFilled diff --git a/src/IconCreditScoreOutlined.tsx b/src/IconCreditScoreOutlined.tsx index 9b06fc9a4..fdecc3ed3 100644 --- a/src/IconCreditScoreOutlined.tsx +++ b/src/IconCreditScoreOutlined.tsx @@ -8,4 +8,4 @@ const IconCreditScoreOutlined: React.FC = ({ ...props }) => ( ) -export { IconCreditScoreOutlined as default } +export default IconCreditScoreOutlined diff --git a/src/IconCreditScoreOutlinedFilled.tsx b/src/IconCreditScoreOutlinedFilled.tsx index 6027d729b..6f8ca3499 100644 --- a/src/IconCreditScoreOutlinedFilled.tsx +++ b/src/IconCreditScoreOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconCreditScoreOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconCreditScoreOutlinedFilled as default } +export default IconCreditScoreOutlinedFilled diff --git a/src/IconCreditScoreRounded.tsx b/src/IconCreditScoreRounded.tsx index e302a97dd..92da6a55b 100644 --- a/src/IconCreditScoreRounded.tsx +++ b/src/IconCreditScoreRounded.tsx @@ -8,4 +8,4 @@ const IconCreditScoreRounded: React.FC = ({ ...props }) => ( ) -export { IconCreditScoreRounded as default } +export default IconCreditScoreRounded diff --git a/src/IconCreditScoreRoundedFilled.tsx b/src/IconCreditScoreRoundedFilled.tsx index 2bb2f0062..9bbef0364 100644 --- a/src/IconCreditScoreRoundedFilled.tsx +++ b/src/IconCreditScoreRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconCreditScoreRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconCreditScoreRoundedFilled as default } +export default IconCreditScoreRoundedFilled diff --git a/src/IconCreditScoreSharp.tsx b/src/IconCreditScoreSharp.tsx index 1ead7f6f7..281f38fa0 100644 --- a/src/IconCreditScoreSharp.tsx +++ b/src/IconCreditScoreSharp.tsx @@ -8,4 +8,4 @@ const IconCreditScoreSharp: React.FC = ({ ...props }) => ( ) -export { IconCreditScoreSharp as default } +export default IconCreditScoreSharp diff --git a/src/IconCreditScoreSharpFilled.tsx b/src/IconCreditScoreSharpFilled.tsx index 02b00ec21..e04f5503f 100644 --- a/src/IconCreditScoreSharpFilled.tsx +++ b/src/IconCreditScoreSharpFilled.tsx @@ -8,4 +8,4 @@ const IconCreditScoreSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconCreditScoreSharpFilled as default } +export default IconCreditScoreSharpFilled diff --git a/src/IconCribOutlined.tsx b/src/IconCribOutlined.tsx index 680878f9e..a318399bd 100644 --- a/src/IconCribOutlined.tsx +++ b/src/IconCribOutlined.tsx @@ -8,4 +8,4 @@ const IconCribOutlined: React.FC = ({ ...props }) => ( ) -export { IconCribOutlined as default } +export default IconCribOutlined diff --git a/src/IconCribOutlinedFilled.tsx b/src/IconCribOutlinedFilled.tsx index 2cf5bdb1c..098986f1c 100644 --- a/src/IconCribOutlinedFilled.tsx +++ b/src/IconCribOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconCribOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconCribOutlinedFilled as default } +export default IconCribOutlinedFilled diff --git a/src/IconCribRounded.tsx b/src/IconCribRounded.tsx index 513bee25e..f74e09544 100644 --- a/src/IconCribRounded.tsx +++ b/src/IconCribRounded.tsx @@ -8,4 +8,4 @@ const IconCribRounded: React.FC = ({ ...props }) => ( ) -export { IconCribRounded as default } +export default IconCribRounded diff --git a/src/IconCribRoundedFilled.tsx b/src/IconCribRoundedFilled.tsx index e253edd2a..4daf804d5 100644 --- a/src/IconCribRoundedFilled.tsx +++ b/src/IconCribRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconCribRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconCribRoundedFilled as default } +export default IconCribRoundedFilled diff --git a/src/IconCribSharp.tsx b/src/IconCribSharp.tsx index 4a56494bf..12d8f7e0a 100644 --- a/src/IconCribSharp.tsx +++ b/src/IconCribSharp.tsx @@ -8,4 +8,4 @@ const IconCribSharp: React.FC = ({ ...props }) => ( ) -export { IconCribSharp as default } +export default IconCribSharp diff --git a/src/IconCribSharpFilled.tsx b/src/IconCribSharpFilled.tsx index 8ec010075..c14b3760b 100644 --- a/src/IconCribSharpFilled.tsx +++ b/src/IconCribSharpFilled.tsx @@ -8,4 +8,4 @@ const IconCribSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconCribSharpFilled as default } +export default IconCribSharpFilled diff --git a/src/IconCrisisAlertOutlined.tsx b/src/IconCrisisAlertOutlined.tsx index 2b1cfe43c..1e2da6e64 100644 --- a/src/IconCrisisAlertOutlined.tsx +++ b/src/IconCrisisAlertOutlined.tsx @@ -8,4 +8,4 @@ const IconCrisisAlertOutlined: React.FC = ({ ...props }) => ( ) -export { IconCrisisAlertOutlined as default } +export default IconCrisisAlertOutlined diff --git a/src/IconCrisisAlertOutlinedFilled.tsx b/src/IconCrisisAlertOutlinedFilled.tsx index a605828ef..032d62568 100644 --- a/src/IconCrisisAlertOutlinedFilled.tsx +++ b/src/IconCrisisAlertOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconCrisisAlertOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconCrisisAlertOutlinedFilled as default } +export default IconCrisisAlertOutlinedFilled diff --git a/src/IconCrisisAlertRounded.tsx b/src/IconCrisisAlertRounded.tsx index 9e866ef02..bdc6dcaa5 100644 --- a/src/IconCrisisAlertRounded.tsx +++ b/src/IconCrisisAlertRounded.tsx @@ -8,4 +8,4 @@ const IconCrisisAlertRounded: React.FC = ({ ...props }) => ( ) -export { IconCrisisAlertRounded as default } +export default IconCrisisAlertRounded diff --git a/src/IconCrisisAlertRoundedFilled.tsx b/src/IconCrisisAlertRoundedFilled.tsx index fa7326034..586610a0a 100644 --- a/src/IconCrisisAlertRoundedFilled.tsx +++ b/src/IconCrisisAlertRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconCrisisAlertRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconCrisisAlertRoundedFilled as default } +export default IconCrisisAlertRoundedFilled diff --git a/src/IconCrisisAlertSharp.tsx b/src/IconCrisisAlertSharp.tsx index 9bc470f02..a70ac0564 100644 --- a/src/IconCrisisAlertSharp.tsx +++ b/src/IconCrisisAlertSharp.tsx @@ -8,4 +8,4 @@ const IconCrisisAlertSharp: React.FC = ({ ...props }) => ( ) -export { IconCrisisAlertSharp as default } +export default IconCrisisAlertSharp diff --git a/src/IconCrisisAlertSharpFilled.tsx b/src/IconCrisisAlertSharpFilled.tsx index 2952bac3d..b355bee0e 100644 --- a/src/IconCrisisAlertSharpFilled.tsx +++ b/src/IconCrisisAlertSharpFilled.tsx @@ -8,4 +8,4 @@ const IconCrisisAlertSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconCrisisAlertSharpFilled as default } +export default IconCrisisAlertSharpFilled diff --git a/src/IconCrop169Outlined.tsx b/src/IconCrop169Outlined.tsx index 93769e745..ab51a8927 100644 --- a/src/IconCrop169Outlined.tsx +++ b/src/IconCrop169Outlined.tsx @@ -8,4 +8,4 @@ const IconCrop169Outlined: React.FC = ({ ...props }) => ( ) -export { IconCrop169Outlined as default } +export default IconCrop169Outlined diff --git a/src/IconCrop169OutlinedFilled.tsx b/src/IconCrop169OutlinedFilled.tsx index 9692d5880..e9b543a90 100644 --- a/src/IconCrop169OutlinedFilled.tsx +++ b/src/IconCrop169OutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconCrop169OutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconCrop169OutlinedFilled as default } +export default IconCrop169OutlinedFilled diff --git a/src/IconCrop169Rounded.tsx b/src/IconCrop169Rounded.tsx index 155eebbd6..9fb5e682b 100644 --- a/src/IconCrop169Rounded.tsx +++ b/src/IconCrop169Rounded.tsx @@ -8,4 +8,4 @@ const IconCrop169Rounded: React.FC = ({ ...props }) => ( ) -export { IconCrop169Rounded as default } +export default IconCrop169Rounded diff --git a/src/IconCrop169RoundedFilled.tsx b/src/IconCrop169RoundedFilled.tsx index a89275ffd..19811639d 100644 --- a/src/IconCrop169RoundedFilled.tsx +++ b/src/IconCrop169RoundedFilled.tsx @@ -8,4 +8,4 @@ const IconCrop169RoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconCrop169RoundedFilled as default } +export default IconCrop169RoundedFilled diff --git a/src/IconCrop169Sharp.tsx b/src/IconCrop169Sharp.tsx index 72afa1f30..e3b0c51d1 100644 --- a/src/IconCrop169Sharp.tsx +++ b/src/IconCrop169Sharp.tsx @@ -8,4 +8,4 @@ const IconCrop169Sharp: React.FC = ({ ...props }) => ( ) -export { IconCrop169Sharp as default } +export default IconCrop169Sharp diff --git a/src/IconCrop169SharpFilled.tsx b/src/IconCrop169SharpFilled.tsx index 86262602f..8abd3a6de 100644 --- a/src/IconCrop169SharpFilled.tsx +++ b/src/IconCrop169SharpFilled.tsx @@ -8,4 +8,4 @@ const IconCrop169SharpFilled: React.FC = ({ ...props }) => ( ) -export { IconCrop169SharpFilled as default } +export default IconCrop169SharpFilled diff --git a/src/IconCrop32Outlined.tsx b/src/IconCrop32Outlined.tsx index 1595d2097..c50ad9c4c 100644 --- a/src/IconCrop32Outlined.tsx +++ b/src/IconCrop32Outlined.tsx @@ -8,4 +8,4 @@ const IconCrop32Outlined: React.FC = ({ ...props }) => ( ) -export { IconCrop32Outlined as default } +export default IconCrop32Outlined diff --git a/src/IconCrop32OutlinedFilled.tsx b/src/IconCrop32OutlinedFilled.tsx index c470a7e67..04287c208 100644 --- a/src/IconCrop32OutlinedFilled.tsx +++ b/src/IconCrop32OutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconCrop32OutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconCrop32OutlinedFilled as default } +export default IconCrop32OutlinedFilled diff --git a/src/IconCrop32Rounded.tsx b/src/IconCrop32Rounded.tsx index 54f394629..a89467213 100644 --- a/src/IconCrop32Rounded.tsx +++ b/src/IconCrop32Rounded.tsx @@ -8,4 +8,4 @@ const IconCrop32Rounded: React.FC = ({ ...props }) => ( ) -export { IconCrop32Rounded as default } +export default IconCrop32Rounded diff --git a/src/IconCrop32RoundedFilled.tsx b/src/IconCrop32RoundedFilled.tsx index e4d05557d..bcff8eecd 100644 --- a/src/IconCrop32RoundedFilled.tsx +++ b/src/IconCrop32RoundedFilled.tsx @@ -8,4 +8,4 @@ const IconCrop32RoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconCrop32RoundedFilled as default } +export default IconCrop32RoundedFilled diff --git a/src/IconCrop32Sharp.tsx b/src/IconCrop32Sharp.tsx index 5cef4d747..0e0f42c03 100644 --- a/src/IconCrop32Sharp.tsx +++ b/src/IconCrop32Sharp.tsx @@ -8,4 +8,4 @@ const IconCrop32Sharp: React.FC = ({ ...props }) => ( ) -export { IconCrop32Sharp as default } +export default IconCrop32Sharp diff --git a/src/IconCrop32SharpFilled.tsx b/src/IconCrop32SharpFilled.tsx index c729f1ada..614d3a80f 100644 --- a/src/IconCrop32SharpFilled.tsx +++ b/src/IconCrop32SharpFilled.tsx @@ -8,4 +8,4 @@ const IconCrop32SharpFilled: React.FC = ({ ...props }) => ( ) -export { IconCrop32SharpFilled as default } +export default IconCrop32SharpFilled diff --git a/src/IconCrop54Outlined.tsx b/src/IconCrop54Outlined.tsx index 89b50f586..e3e27646d 100644 --- a/src/IconCrop54Outlined.tsx +++ b/src/IconCrop54Outlined.tsx @@ -8,4 +8,4 @@ const IconCrop54Outlined: React.FC = ({ ...props }) => ( ) -export { IconCrop54Outlined as default } +export default IconCrop54Outlined diff --git a/src/IconCrop54OutlinedFilled.tsx b/src/IconCrop54OutlinedFilled.tsx index 2d499227d..95170ce6d 100644 --- a/src/IconCrop54OutlinedFilled.tsx +++ b/src/IconCrop54OutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconCrop54OutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconCrop54OutlinedFilled as default } +export default IconCrop54OutlinedFilled diff --git a/src/IconCrop54Rounded.tsx b/src/IconCrop54Rounded.tsx index 237e22ccc..9ff6d0d7a 100644 --- a/src/IconCrop54Rounded.tsx +++ b/src/IconCrop54Rounded.tsx @@ -8,4 +8,4 @@ const IconCrop54Rounded: React.FC = ({ ...props }) => ( ) -export { IconCrop54Rounded as default } +export default IconCrop54Rounded diff --git a/src/IconCrop54RoundedFilled.tsx b/src/IconCrop54RoundedFilled.tsx index 11ebc8c85..c0bdff3b3 100644 --- a/src/IconCrop54RoundedFilled.tsx +++ b/src/IconCrop54RoundedFilled.tsx @@ -8,4 +8,4 @@ const IconCrop54RoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconCrop54RoundedFilled as default } +export default IconCrop54RoundedFilled diff --git a/src/IconCrop54Sharp.tsx b/src/IconCrop54Sharp.tsx index 105080314..d148f11cd 100644 --- a/src/IconCrop54Sharp.tsx +++ b/src/IconCrop54Sharp.tsx @@ -8,4 +8,4 @@ const IconCrop54Sharp: React.FC = ({ ...props }) => ( ) -export { IconCrop54Sharp as default } +export default IconCrop54Sharp diff --git a/src/IconCrop54SharpFilled.tsx b/src/IconCrop54SharpFilled.tsx index f8ac2daef..a5a5f4517 100644 --- a/src/IconCrop54SharpFilled.tsx +++ b/src/IconCrop54SharpFilled.tsx @@ -8,4 +8,4 @@ const IconCrop54SharpFilled: React.FC = ({ ...props }) => ( ) -export { IconCrop54SharpFilled as default } +export default IconCrop54SharpFilled diff --git a/src/IconCrop75Outlined.tsx b/src/IconCrop75Outlined.tsx index 736ddc3bf..358819cbe 100644 --- a/src/IconCrop75Outlined.tsx +++ b/src/IconCrop75Outlined.tsx @@ -8,4 +8,4 @@ const IconCrop75Outlined: React.FC = ({ ...props }) => ( ) -export { IconCrop75Outlined as default } +export default IconCrop75Outlined diff --git a/src/IconCrop75OutlinedFilled.tsx b/src/IconCrop75OutlinedFilled.tsx index c13fd2ecc..a2c66b1df 100644 --- a/src/IconCrop75OutlinedFilled.tsx +++ b/src/IconCrop75OutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconCrop75OutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconCrop75OutlinedFilled as default } +export default IconCrop75OutlinedFilled diff --git a/src/IconCrop75Rounded.tsx b/src/IconCrop75Rounded.tsx index e5885d89b..13bdc7b95 100644 --- a/src/IconCrop75Rounded.tsx +++ b/src/IconCrop75Rounded.tsx @@ -8,4 +8,4 @@ const IconCrop75Rounded: React.FC = ({ ...props }) => ( ) -export { IconCrop75Rounded as default } +export default IconCrop75Rounded diff --git a/src/IconCrop75RoundedFilled.tsx b/src/IconCrop75RoundedFilled.tsx index 5df3ecedb..0e9835f42 100644 --- a/src/IconCrop75RoundedFilled.tsx +++ b/src/IconCrop75RoundedFilled.tsx @@ -8,4 +8,4 @@ const IconCrop75RoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconCrop75RoundedFilled as default } +export default IconCrop75RoundedFilled diff --git a/src/IconCrop75Sharp.tsx b/src/IconCrop75Sharp.tsx index be754654c..363c5e7f1 100644 --- a/src/IconCrop75Sharp.tsx +++ b/src/IconCrop75Sharp.tsx @@ -8,4 +8,4 @@ const IconCrop75Sharp: React.FC = ({ ...props }) => ( ) -export { IconCrop75Sharp as default } +export default IconCrop75Sharp diff --git a/src/IconCrop75SharpFilled.tsx b/src/IconCrop75SharpFilled.tsx index f5ac417a0..613a03214 100644 --- a/src/IconCrop75SharpFilled.tsx +++ b/src/IconCrop75SharpFilled.tsx @@ -8,4 +8,4 @@ const IconCrop75SharpFilled: React.FC = ({ ...props }) => ( ) -export { IconCrop75SharpFilled as default } +export default IconCrop75SharpFilled diff --git a/src/IconCrop916Outlined.tsx b/src/IconCrop916Outlined.tsx index a80d628e1..a0f8e6ad6 100644 --- a/src/IconCrop916Outlined.tsx +++ b/src/IconCrop916Outlined.tsx @@ -8,4 +8,4 @@ const IconCrop916Outlined: React.FC = ({ ...props }) => ( ) -export { IconCrop916Outlined as default } +export default IconCrop916Outlined diff --git a/src/IconCrop916OutlinedFilled.tsx b/src/IconCrop916OutlinedFilled.tsx index 70ab8a5c6..5df78a2d8 100644 --- a/src/IconCrop916OutlinedFilled.tsx +++ b/src/IconCrop916OutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconCrop916OutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconCrop916OutlinedFilled as default } +export default IconCrop916OutlinedFilled diff --git a/src/IconCrop916Rounded.tsx b/src/IconCrop916Rounded.tsx index 366082638..c9eeb7115 100644 --- a/src/IconCrop916Rounded.tsx +++ b/src/IconCrop916Rounded.tsx @@ -8,4 +8,4 @@ const IconCrop916Rounded: React.FC = ({ ...props }) => ( ) -export { IconCrop916Rounded as default } +export default IconCrop916Rounded diff --git a/src/IconCrop916RoundedFilled.tsx b/src/IconCrop916RoundedFilled.tsx index e40db24fc..18757d252 100644 --- a/src/IconCrop916RoundedFilled.tsx +++ b/src/IconCrop916RoundedFilled.tsx @@ -8,4 +8,4 @@ const IconCrop916RoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconCrop916RoundedFilled as default } +export default IconCrop916RoundedFilled diff --git a/src/IconCrop916Sharp.tsx b/src/IconCrop916Sharp.tsx index e29f0a884..204b38573 100644 --- a/src/IconCrop916Sharp.tsx +++ b/src/IconCrop916Sharp.tsx @@ -8,4 +8,4 @@ const IconCrop916Sharp: React.FC = ({ ...props }) => ( ) -export { IconCrop916Sharp as default } +export default IconCrop916Sharp diff --git a/src/IconCrop916SharpFilled.tsx b/src/IconCrop916SharpFilled.tsx index ea2ae093a..691dabc78 100644 --- a/src/IconCrop916SharpFilled.tsx +++ b/src/IconCrop916SharpFilled.tsx @@ -8,4 +8,4 @@ const IconCrop916SharpFilled: React.FC = ({ ...props }) => ( ) -export { IconCrop916SharpFilled as default } +export default IconCrop916SharpFilled diff --git a/src/IconCropFreeOutlined.tsx b/src/IconCropFreeOutlined.tsx index 4a44b50fd..22a9e6731 100644 --- a/src/IconCropFreeOutlined.tsx +++ b/src/IconCropFreeOutlined.tsx @@ -8,4 +8,4 @@ const IconCropFreeOutlined: React.FC = ({ ...props }) => ( ) -export { IconCropFreeOutlined as default } +export default IconCropFreeOutlined diff --git a/src/IconCropFreeOutlinedFilled.tsx b/src/IconCropFreeOutlinedFilled.tsx index e74257534..63369cd32 100644 --- a/src/IconCropFreeOutlinedFilled.tsx +++ b/src/IconCropFreeOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconCropFreeOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconCropFreeOutlinedFilled as default } +export default IconCropFreeOutlinedFilled diff --git a/src/IconCropFreeRounded.tsx b/src/IconCropFreeRounded.tsx index b4df39abc..91dd1d9d3 100644 --- a/src/IconCropFreeRounded.tsx +++ b/src/IconCropFreeRounded.tsx @@ -8,4 +8,4 @@ const IconCropFreeRounded: React.FC = ({ ...props }) => ( ) -export { IconCropFreeRounded as default } +export default IconCropFreeRounded diff --git a/src/IconCropFreeRoundedFilled.tsx b/src/IconCropFreeRoundedFilled.tsx index d9c7dec97..5a62d3dfa 100644 --- a/src/IconCropFreeRoundedFilled.tsx +++ b/src/IconCropFreeRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconCropFreeRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconCropFreeRoundedFilled as default } +export default IconCropFreeRoundedFilled diff --git a/src/IconCropFreeSharp.tsx b/src/IconCropFreeSharp.tsx index 099c3b229..213665995 100644 --- a/src/IconCropFreeSharp.tsx +++ b/src/IconCropFreeSharp.tsx @@ -8,4 +8,4 @@ const IconCropFreeSharp: React.FC = ({ ...props }) => ( ) -export { IconCropFreeSharp as default } +export default IconCropFreeSharp diff --git a/src/IconCropFreeSharpFilled.tsx b/src/IconCropFreeSharpFilled.tsx index 615cb9bbc..3b7ced51c 100644 --- a/src/IconCropFreeSharpFilled.tsx +++ b/src/IconCropFreeSharpFilled.tsx @@ -8,4 +8,4 @@ const IconCropFreeSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconCropFreeSharpFilled as default } +export default IconCropFreeSharpFilled diff --git a/src/IconCropLandscapeOutlined.tsx b/src/IconCropLandscapeOutlined.tsx index 9e7b50bd3..32a3d230e 100644 --- a/src/IconCropLandscapeOutlined.tsx +++ b/src/IconCropLandscapeOutlined.tsx @@ -8,4 +8,4 @@ const IconCropLandscapeOutlined: React.FC = ({ ...props }) => ( ) -export { IconCropLandscapeOutlined as default } +export default IconCropLandscapeOutlined diff --git a/src/IconCropLandscapeOutlinedFilled.tsx b/src/IconCropLandscapeOutlinedFilled.tsx index 895b57781..f2ff50a3a 100644 --- a/src/IconCropLandscapeOutlinedFilled.tsx +++ b/src/IconCropLandscapeOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconCropLandscapeOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconCropLandscapeOutlinedFilled as default } +export default IconCropLandscapeOutlinedFilled diff --git a/src/IconCropLandscapeRounded.tsx b/src/IconCropLandscapeRounded.tsx index f03626621..8cd37b437 100644 --- a/src/IconCropLandscapeRounded.tsx +++ b/src/IconCropLandscapeRounded.tsx @@ -8,4 +8,4 @@ const IconCropLandscapeRounded: React.FC = ({ ...props }) => ( ) -export { IconCropLandscapeRounded as default } +export default IconCropLandscapeRounded diff --git a/src/IconCropLandscapeRoundedFilled.tsx b/src/IconCropLandscapeRoundedFilled.tsx index c1e0d4c73..3a105cc8e 100644 --- a/src/IconCropLandscapeRoundedFilled.tsx +++ b/src/IconCropLandscapeRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconCropLandscapeRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconCropLandscapeRoundedFilled as default } +export default IconCropLandscapeRoundedFilled diff --git a/src/IconCropLandscapeSharp.tsx b/src/IconCropLandscapeSharp.tsx index 126b9e7b6..0944dde62 100644 --- a/src/IconCropLandscapeSharp.tsx +++ b/src/IconCropLandscapeSharp.tsx @@ -8,4 +8,4 @@ const IconCropLandscapeSharp: React.FC = ({ ...props }) => ( ) -export { IconCropLandscapeSharp as default } +export default IconCropLandscapeSharp diff --git a/src/IconCropLandscapeSharpFilled.tsx b/src/IconCropLandscapeSharpFilled.tsx index 4d0a84134..3ef50ffef 100644 --- a/src/IconCropLandscapeSharpFilled.tsx +++ b/src/IconCropLandscapeSharpFilled.tsx @@ -8,4 +8,4 @@ const IconCropLandscapeSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconCropLandscapeSharpFilled as default } +export default IconCropLandscapeSharpFilled diff --git a/src/IconCropOutlined.tsx b/src/IconCropOutlined.tsx index 25f820d34..8b773b18a 100644 --- a/src/IconCropOutlined.tsx +++ b/src/IconCropOutlined.tsx @@ -8,4 +8,4 @@ const IconCropOutlined: React.FC = ({ ...props }) => ( ) -export { IconCropOutlined as default } +export default IconCropOutlined diff --git a/src/IconCropOutlinedFilled.tsx b/src/IconCropOutlinedFilled.tsx index 703281f05..7e0bdcdfe 100644 --- a/src/IconCropOutlinedFilled.tsx +++ b/src/IconCropOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconCropOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconCropOutlinedFilled as default } +export default IconCropOutlinedFilled diff --git a/src/IconCropPortraitOutlined.tsx b/src/IconCropPortraitOutlined.tsx index 9b6dbe720..ef279417f 100644 --- a/src/IconCropPortraitOutlined.tsx +++ b/src/IconCropPortraitOutlined.tsx @@ -8,4 +8,4 @@ const IconCropPortraitOutlined: React.FC = ({ ...props }) => ( ) -export { IconCropPortraitOutlined as default } +export default IconCropPortraitOutlined diff --git a/src/IconCropPortraitOutlinedFilled.tsx b/src/IconCropPortraitOutlinedFilled.tsx index 5d53556be..e186f4ede 100644 --- a/src/IconCropPortraitOutlinedFilled.tsx +++ b/src/IconCropPortraitOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconCropPortraitOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconCropPortraitOutlinedFilled as default } +export default IconCropPortraitOutlinedFilled diff --git a/src/IconCropPortraitRounded.tsx b/src/IconCropPortraitRounded.tsx index c58b90ff6..a899d4e8b 100644 --- a/src/IconCropPortraitRounded.tsx +++ b/src/IconCropPortraitRounded.tsx @@ -8,4 +8,4 @@ const IconCropPortraitRounded: React.FC = ({ ...props }) => ( ) -export { IconCropPortraitRounded as default } +export default IconCropPortraitRounded diff --git a/src/IconCropPortraitRoundedFilled.tsx b/src/IconCropPortraitRoundedFilled.tsx index 3c059543f..a29fc866a 100644 --- a/src/IconCropPortraitRoundedFilled.tsx +++ b/src/IconCropPortraitRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconCropPortraitRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconCropPortraitRoundedFilled as default } +export default IconCropPortraitRoundedFilled diff --git a/src/IconCropPortraitSharp.tsx b/src/IconCropPortraitSharp.tsx index 4bfd03f59..8dbcb605f 100644 --- a/src/IconCropPortraitSharp.tsx +++ b/src/IconCropPortraitSharp.tsx @@ -8,4 +8,4 @@ const IconCropPortraitSharp: React.FC = ({ ...props }) => ( ) -export { IconCropPortraitSharp as default } +export default IconCropPortraitSharp diff --git a/src/IconCropPortraitSharpFilled.tsx b/src/IconCropPortraitSharpFilled.tsx index add488776..57c93e7e2 100644 --- a/src/IconCropPortraitSharpFilled.tsx +++ b/src/IconCropPortraitSharpFilled.tsx @@ -8,4 +8,4 @@ const IconCropPortraitSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconCropPortraitSharpFilled as default } +export default IconCropPortraitSharpFilled diff --git a/src/IconCropRotateOutlined.tsx b/src/IconCropRotateOutlined.tsx index 82a8b35bc..ffb8949aa 100644 --- a/src/IconCropRotateOutlined.tsx +++ b/src/IconCropRotateOutlined.tsx @@ -8,4 +8,4 @@ const IconCropRotateOutlined: React.FC = ({ ...props }) => ( ) -export { IconCropRotateOutlined as default } +export default IconCropRotateOutlined diff --git a/src/IconCropRotateOutlinedFilled.tsx b/src/IconCropRotateOutlinedFilled.tsx index a03736e1b..3a32cd899 100644 --- a/src/IconCropRotateOutlinedFilled.tsx +++ b/src/IconCropRotateOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconCropRotateOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconCropRotateOutlinedFilled as default } +export default IconCropRotateOutlinedFilled diff --git a/src/IconCropRotateRounded.tsx b/src/IconCropRotateRounded.tsx index ea0dccf8d..4b93977ff 100644 --- a/src/IconCropRotateRounded.tsx +++ b/src/IconCropRotateRounded.tsx @@ -8,4 +8,4 @@ const IconCropRotateRounded: React.FC = ({ ...props }) => ( ) -export { IconCropRotateRounded as default } +export default IconCropRotateRounded diff --git a/src/IconCropRotateRoundedFilled.tsx b/src/IconCropRotateRoundedFilled.tsx index dae6a8925..fa1c1ecce 100644 --- a/src/IconCropRotateRoundedFilled.tsx +++ b/src/IconCropRotateRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconCropRotateRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconCropRotateRoundedFilled as default } +export default IconCropRotateRoundedFilled diff --git a/src/IconCropRotateSharp.tsx b/src/IconCropRotateSharp.tsx index 51dca2d9b..0484b468c 100644 --- a/src/IconCropRotateSharp.tsx +++ b/src/IconCropRotateSharp.tsx @@ -8,4 +8,4 @@ const IconCropRotateSharp: React.FC = ({ ...props }) => ( ) -export { IconCropRotateSharp as default } +export default IconCropRotateSharp diff --git a/src/IconCropRotateSharpFilled.tsx b/src/IconCropRotateSharpFilled.tsx index a9a7256d3..eb1ad678a 100644 --- a/src/IconCropRotateSharpFilled.tsx +++ b/src/IconCropRotateSharpFilled.tsx @@ -8,4 +8,4 @@ const IconCropRotateSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconCropRotateSharpFilled as default } +export default IconCropRotateSharpFilled diff --git a/src/IconCropRounded.tsx b/src/IconCropRounded.tsx index 54ac6b011..9aa8bd282 100644 --- a/src/IconCropRounded.tsx +++ b/src/IconCropRounded.tsx @@ -8,4 +8,4 @@ const IconCropRounded: React.FC = ({ ...props }) => ( ) -export { IconCropRounded as default } +export default IconCropRounded diff --git a/src/IconCropRoundedFilled.tsx b/src/IconCropRoundedFilled.tsx index 2bc9b79c7..d79280ead 100644 --- a/src/IconCropRoundedFilled.tsx +++ b/src/IconCropRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconCropRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconCropRoundedFilled as default } +export default IconCropRoundedFilled diff --git a/src/IconCropSharp.tsx b/src/IconCropSharp.tsx index fb420c363..f78fec5cb 100644 --- a/src/IconCropSharp.tsx +++ b/src/IconCropSharp.tsx @@ -8,4 +8,4 @@ const IconCropSharp: React.FC = ({ ...props }) => ( ) -export { IconCropSharp as default } +export default IconCropSharp diff --git a/src/IconCropSharpFilled.tsx b/src/IconCropSharpFilled.tsx index 7d65149bb..8c4a794da 100644 --- a/src/IconCropSharpFilled.tsx +++ b/src/IconCropSharpFilled.tsx @@ -8,4 +8,4 @@ const IconCropSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconCropSharpFilled as default } +export default IconCropSharpFilled diff --git a/src/IconCropSquareOutlined.tsx b/src/IconCropSquareOutlined.tsx index 2eca191e3..812f696e6 100644 --- a/src/IconCropSquareOutlined.tsx +++ b/src/IconCropSquareOutlined.tsx @@ -8,4 +8,4 @@ const IconCropSquareOutlined: React.FC = ({ ...props }) => ( ) -export { IconCropSquareOutlined as default } +export default IconCropSquareOutlined diff --git a/src/IconCropSquareOutlinedFilled.tsx b/src/IconCropSquareOutlinedFilled.tsx index b2d54c9eb..b8c6deb01 100644 --- a/src/IconCropSquareOutlinedFilled.tsx +++ b/src/IconCropSquareOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconCropSquareOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconCropSquareOutlinedFilled as default } +export default IconCropSquareOutlinedFilled diff --git a/src/IconCropSquareRounded.tsx b/src/IconCropSquareRounded.tsx index b2ae7e060..1292f4813 100644 --- a/src/IconCropSquareRounded.tsx +++ b/src/IconCropSquareRounded.tsx @@ -8,4 +8,4 @@ const IconCropSquareRounded: React.FC = ({ ...props }) => ( ) -export { IconCropSquareRounded as default } +export default IconCropSquareRounded diff --git a/src/IconCropSquareRoundedFilled.tsx b/src/IconCropSquareRoundedFilled.tsx index 2e4bbee9e..75e7d2277 100644 --- a/src/IconCropSquareRoundedFilled.tsx +++ b/src/IconCropSquareRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconCropSquareRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconCropSquareRoundedFilled as default } +export default IconCropSquareRoundedFilled diff --git a/src/IconCropSquareSharp.tsx b/src/IconCropSquareSharp.tsx index 41480d922..1ebb76bca 100644 --- a/src/IconCropSquareSharp.tsx +++ b/src/IconCropSquareSharp.tsx @@ -8,4 +8,4 @@ const IconCropSquareSharp: React.FC = ({ ...props }) => ( ) -export { IconCropSquareSharp as default } +export default IconCropSquareSharp diff --git a/src/IconCropSquareSharpFilled.tsx b/src/IconCropSquareSharpFilled.tsx index ecf16fcf8..3827c941c 100644 --- a/src/IconCropSquareSharpFilled.tsx +++ b/src/IconCropSquareSharpFilled.tsx @@ -8,4 +8,4 @@ const IconCropSquareSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconCropSquareSharpFilled as default } +export default IconCropSquareSharpFilled diff --git a/src/IconCrosswordOutlined.tsx b/src/IconCrosswordOutlined.tsx index 7c7d2bea4..1d0e19f80 100644 --- a/src/IconCrosswordOutlined.tsx +++ b/src/IconCrosswordOutlined.tsx @@ -8,4 +8,4 @@ const IconCrosswordOutlined: React.FC = ({ ...props }) => ( ) -export { IconCrosswordOutlined as default } +export default IconCrosswordOutlined diff --git a/src/IconCrosswordOutlinedFilled.tsx b/src/IconCrosswordOutlinedFilled.tsx index 07cbe0d66..eaddbd485 100644 --- a/src/IconCrosswordOutlinedFilled.tsx +++ b/src/IconCrosswordOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconCrosswordOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconCrosswordOutlinedFilled as default } +export default IconCrosswordOutlinedFilled diff --git a/src/IconCrosswordRounded.tsx b/src/IconCrosswordRounded.tsx index 496012d69..aa5959e8f 100644 --- a/src/IconCrosswordRounded.tsx +++ b/src/IconCrosswordRounded.tsx @@ -8,4 +8,4 @@ const IconCrosswordRounded: React.FC = ({ ...props }) => ( ) -export { IconCrosswordRounded as default } +export default IconCrosswordRounded diff --git a/src/IconCrosswordRoundedFilled.tsx b/src/IconCrosswordRoundedFilled.tsx index 16f342e01..9cf921121 100644 --- a/src/IconCrosswordRoundedFilled.tsx +++ b/src/IconCrosswordRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconCrosswordRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconCrosswordRoundedFilled as default } +export default IconCrosswordRoundedFilled diff --git a/src/IconCrosswordSharp.tsx b/src/IconCrosswordSharp.tsx index 4ac56368f..71dd41211 100644 --- a/src/IconCrosswordSharp.tsx +++ b/src/IconCrosswordSharp.tsx @@ -8,4 +8,4 @@ const IconCrosswordSharp: React.FC = ({ ...props }) => ( ) -export { IconCrosswordSharp as default } +export default IconCrosswordSharp diff --git a/src/IconCrosswordSharpFilled.tsx b/src/IconCrosswordSharpFilled.tsx index 47df8e89b..735b24610 100644 --- a/src/IconCrosswordSharpFilled.tsx +++ b/src/IconCrosswordSharpFilled.tsx @@ -8,4 +8,4 @@ const IconCrosswordSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconCrosswordSharpFilled as default } +export default IconCrosswordSharpFilled diff --git a/src/IconCrowdsourceOutlined.tsx b/src/IconCrowdsourceOutlined.tsx index 76aa77c44..409f91a76 100644 --- a/src/IconCrowdsourceOutlined.tsx +++ b/src/IconCrowdsourceOutlined.tsx @@ -8,4 +8,4 @@ const IconCrowdsourceOutlined: React.FC = ({ ...props }) => ( ) -export { IconCrowdsourceOutlined as default } +export default IconCrowdsourceOutlined diff --git a/src/IconCrowdsourceOutlinedFilled.tsx b/src/IconCrowdsourceOutlinedFilled.tsx index 87e9e280e..8c3408995 100644 --- a/src/IconCrowdsourceOutlinedFilled.tsx +++ b/src/IconCrowdsourceOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconCrowdsourceOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconCrowdsourceOutlinedFilled as default } +export default IconCrowdsourceOutlinedFilled diff --git a/src/IconCrowdsourceRounded.tsx b/src/IconCrowdsourceRounded.tsx index 0b991427f..54df0829e 100644 --- a/src/IconCrowdsourceRounded.tsx +++ b/src/IconCrowdsourceRounded.tsx @@ -8,4 +8,4 @@ const IconCrowdsourceRounded: React.FC = ({ ...props }) => ( ) -export { IconCrowdsourceRounded as default } +export default IconCrowdsourceRounded diff --git a/src/IconCrowdsourceRoundedFilled.tsx b/src/IconCrowdsourceRoundedFilled.tsx index f8ace87ff..29d3ca9ac 100644 --- a/src/IconCrowdsourceRoundedFilled.tsx +++ b/src/IconCrowdsourceRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconCrowdsourceRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconCrowdsourceRoundedFilled as default } +export default IconCrowdsourceRoundedFilled diff --git a/src/IconCrowdsourceSharp.tsx b/src/IconCrowdsourceSharp.tsx index 218dafad3..74c458af9 100644 --- a/src/IconCrowdsourceSharp.tsx +++ b/src/IconCrowdsourceSharp.tsx @@ -8,4 +8,4 @@ const IconCrowdsourceSharp: React.FC = ({ ...props }) => ( ) -export { IconCrowdsourceSharp as default } +export default IconCrowdsourceSharp diff --git a/src/IconCrowdsourceSharpFilled.tsx b/src/IconCrowdsourceSharpFilled.tsx index 36a089a83..2c34d161e 100644 --- a/src/IconCrowdsourceSharpFilled.tsx +++ b/src/IconCrowdsourceSharpFilled.tsx @@ -8,4 +8,4 @@ const IconCrowdsourceSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconCrowdsourceSharpFilled as default } +export default IconCrowdsourceSharpFilled diff --git a/src/IconCrueltyFreeOutlined.tsx b/src/IconCrueltyFreeOutlined.tsx index 5f9ac4916..06191e039 100644 --- a/src/IconCrueltyFreeOutlined.tsx +++ b/src/IconCrueltyFreeOutlined.tsx @@ -8,4 +8,4 @@ const IconCrueltyFreeOutlined: React.FC = ({ ...props }) => ( ) -export { IconCrueltyFreeOutlined as default } +export default IconCrueltyFreeOutlined diff --git a/src/IconCrueltyFreeOutlinedFilled.tsx b/src/IconCrueltyFreeOutlinedFilled.tsx index ff851b18b..b19d3ee5a 100644 --- a/src/IconCrueltyFreeOutlinedFilled.tsx +++ b/src/IconCrueltyFreeOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconCrueltyFreeOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconCrueltyFreeOutlinedFilled as default } +export default IconCrueltyFreeOutlinedFilled diff --git a/src/IconCrueltyFreeRounded.tsx b/src/IconCrueltyFreeRounded.tsx index 1d4dd05b4..c252cd87e 100644 --- a/src/IconCrueltyFreeRounded.tsx +++ b/src/IconCrueltyFreeRounded.tsx @@ -8,4 +8,4 @@ const IconCrueltyFreeRounded: React.FC = ({ ...props }) => ( ) -export { IconCrueltyFreeRounded as default } +export default IconCrueltyFreeRounded diff --git a/src/IconCrueltyFreeRoundedFilled.tsx b/src/IconCrueltyFreeRoundedFilled.tsx index 007a1ffa1..3841dffb7 100644 --- a/src/IconCrueltyFreeRoundedFilled.tsx +++ b/src/IconCrueltyFreeRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconCrueltyFreeRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconCrueltyFreeRoundedFilled as default } +export default IconCrueltyFreeRoundedFilled diff --git a/src/IconCrueltyFreeSharp.tsx b/src/IconCrueltyFreeSharp.tsx index 0eb3564f1..c9ab0e800 100644 --- a/src/IconCrueltyFreeSharp.tsx +++ b/src/IconCrueltyFreeSharp.tsx @@ -8,4 +8,4 @@ const IconCrueltyFreeSharp: React.FC = ({ ...props }) => ( ) -export { IconCrueltyFreeSharp as default } +export default IconCrueltyFreeSharp diff --git a/src/IconCrueltyFreeSharpFilled.tsx b/src/IconCrueltyFreeSharpFilled.tsx index de10cc290..bef4bf0e0 100644 --- a/src/IconCrueltyFreeSharpFilled.tsx +++ b/src/IconCrueltyFreeSharpFilled.tsx @@ -8,4 +8,4 @@ const IconCrueltyFreeSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconCrueltyFreeSharpFilled as default } +export default IconCrueltyFreeSharpFilled diff --git a/src/IconCssOutlined.tsx b/src/IconCssOutlined.tsx index 9a149a6cb..1427b0dab 100644 --- a/src/IconCssOutlined.tsx +++ b/src/IconCssOutlined.tsx @@ -8,4 +8,4 @@ const IconCssOutlined: React.FC = ({ ...props }) => ( ) -export { IconCssOutlined as default } +export default IconCssOutlined diff --git a/src/IconCssOutlinedFilled.tsx b/src/IconCssOutlinedFilled.tsx index f192dcf20..7bbdab79d 100644 --- a/src/IconCssOutlinedFilled.tsx +++ b/src/IconCssOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconCssOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconCssOutlinedFilled as default } +export default IconCssOutlinedFilled diff --git a/src/IconCssRounded.tsx b/src/IconCssRounded.tsx index e589866e7..7ae84ffb8 100644 --- a/src/IconCssRounded.tsx +++ b/src/IconCssRounded.tsx @@ -8,4 +8,4 @@ const IconCssRounded: React.FC = ({ ...props }) => ( ) -export { IconCssRounded as default } +export default IconCssRounded diff --git a/src/IconCssRoundedFilled.tsx b/src/IconCssRoundedFilled.tsx index 623f1c353..7d8fc0ba4 100644 --- a/src/IconCssRoundedFilled.tsx +++ b/src/IconCssRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconCssRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconCssRoundedFilled as default } +export default IconCssRoundedFilled diff --git a/src/IconCssSharp.tsx b/src/IconCssSharp.tsx index 5984617cb..35a9963d3 100644 --- a/src/IconCssSharp.tsx +++ b/src/IconCssSharp.tsx @@ -8,4 +8,4 @@ const IconCssSharp: React.FC = ({ ...props }) => ( ) -export { IconCssSharp as default } +export default IconCssSharp diff --git a/src/IconCssSharpFilled.tsx b/src/IconCssSharpFilled.tsx index 681c0bbdc..8545eda08 100644 --- a/src/IconCssSharpFilled.tsx +++ b/src/IconCssSharpFilled.tsx @@ -8,4 +8,4 @@ const IconCssSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconCssSharpFilled as default } +export default IconCssSharpFilled diff --git a/src/IconCsvOutlined.tsx b/src/IconCsvOutlined.tsx index 5be03bd0f..3c1f1db43 100644 --- a/src/IconCsvOutlined.tsx +++ b/src/IconCsvOutlined.tsx @@ -8,4 +8,4 @@ const IconCsvOutlined: React.FC = ({ ...props }) => ( ) -export { IconCsvOutlined as default } +export default IconCsvOutlined diff --git a/src/IconCsvOutlinedFilled.tsx b/src/IconCsvOutlinedFilled.tsx index d6283efc7..b31e8dd2f 100644 --- a/src/IconCsvOutlinedFilled.tsx +++ b/src/IconCsvOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconCsvOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconCsvOutlinedFilled as default } +export default IconCsvOutlinedFilled diff --git a/src/IconCsvRounded.tsx b/src/IconCsvRounded.tsx index 16ce1bac7..81b347818 100644 --- a/src/IconCsvRounded.tsx +++ b/src/IconCsvRounded.tsx @@ -8,4 +8,4 @@ const IconCsvRounded: React.FC = ({ ...props }) => ( ) -export { IconCsvRounded as default } +export default IconCsvRounded diff --git a/src/IconCsvRoundedFilled.tsx b/src/IconCsvRoundedFilled.tsx index f8ab8c0d5..99994828b 100644 --- a/src/IconCsvRoundedFilled.tsx +++ b/src/IconCsvRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconCsvRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconCsvRoundedFilled as default } +export default IconCsvRoundedFilled diff --git a/src/IconCsvSharp.tsx b/src/IconCsvSharp.tsx index 2bba01d90..8c7859fff 100644 --- a/src/IconCsvSharp.tsx +++ b/src/IconCsvSharp.tsx @@ -8,4 +8,4 @@ const IconCsvSharp: React.FC = ({ ...props }) => ( ) -export { IconCsvSharp as default } +export default IconCsvSharp diff --git a/src/IconCsvSharpFilled.tsx b/src/IconCsvSharpFilled.tsx index 8af35faf3..6f3b9d247 100644 --- a/src/IconCsvSharpFilled.tsx +++ b/src/IconCsvSharpFilled.tsx @@ -8,4 +8,4 @@ const IconCsvSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconCsvSharpFilled as default } +export default IconCsvSharpFilled diff --git a/src/IconCurrencyBitcoinOutlined.tsx b/src/IconCurrencyBitcoinOutlined.tsx index 4099bb7c1..0764a668c 100644 --- a/src/IconCurrencyBitcoinOutlined.tsx +++ b/src/IconCurrencyBitcoinOutlined.tsx @@ -8,4 +8,4 @@ const IconCurrencyBitcoinOutlined: React.FC = ({ ...props }) => ( ) -export { IconCurrencyBitcoinOutlined as default } +export default IconCurrencyBitcoinOutlined diff --git a/src/IconCurrencyBitcoinOutlinedFilled.tsx b/src/IconCurrencyBitcoinOutlinedFilled.tsx index de058c20f..6a3b33a8c 100644 --- a/src/IconCurrencyBitcoinOutlinedFilled.tsx +++ b/src/IconCurrencyBitcoinOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconCurrencyBitcoinOutlinedFilled: React.FC = ({ ) -export { IconCurrencyBitcoinOutlinedFilled as default } +export default IconCurrencyBitcoinOutlinedFilled diff --git a/src/IconCurrencyBitcoinRounded.tsx b/src/IconCurrencyBitcoinRounded.tsx index 924ad4bf8..965010f69 100644 --- a/src/IconCurrencyBitcoinRounded.tsx +++ b/src/IconCurrencyBitcoinRounded.tsx @@ -8,4 +8,4 @@ const IconCurrencyBitcoinRounded: React.FC = ({ ...props }) => ( ) -export { IconCurrencyBitcoinRounded as default } +export default IconCurrencyBitcoinRounded diff --git a/src/IconCurrencyBitcoinRoundedFilled.tsx b/src/IconCurrencyBitcoinRoundedFilled.tsx index 0e31f93bf..a5e9a2774 100644 --- a/src/IconCurrencyBitcoinRoundedFilled.tsx +++ b/src/IconCurrencyBitcoinRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconCurrencyBitcoinRoundedFilled: React.FC = ({ ) -export { IconCurrencyBitcoinRoundedFilled as default } +export default IconCurrencyBitcoinRoundedFilled diff --git a/src/IconCurrencyBitcoinSharp.tsx b/src/IconCurrencyBitcoinSharp.tsx index 7e685a886..70ee9baf2 100644 --- a/src/IconCurrencyBitcoinSharp.tsx +++ b/src/IconCurrencyBitcoinSharp.tsx @@ -8,4 +8,4 @@ const IconCurrencyBitcoinSharp: React.FC = ({ ...props }) => ( ) -export { IconCurrencyBitcoinSharp as default } +export default IconCurrencyBitcoinSharp diff --git a/src/IconCurrencyBitcoinSharpFilled.tsx b/src/IconCurrencyBitcoinSharpFilled.tsx index 369c349a4..ca6160f9b 100644 --- a/src/IconCurrencyBitcoinSharpFilled.tsx +++ b/src/IconCurrencyBitcoinSharpFilled.tsx @@ -8,4 +8,4 @@ const IconCurrencyBitcoinSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconCurrencyBitcoinSharpFilled as default } +export default IconCurrencyBitcoinSharpFilled diff --git a/src/IconCurrencyExchangeOutlined.tsx b/src/IconCurrencyExchangeOutlined.tsx index 8e31c4e56..d2e6d6f8c 100644 --- a/src/IconCurrencyExchangeOutlined.tsx +++ b/src/IconCurrencyExchangeOutlined.tsx @@ -8,4 +8,4 @@ const IconCurrencyExchangeOutlined: React.FC = ({ ...props }) => ( ) -export { IconCurrencyExchangeOutlined as default } +export default IconCurrencyExchangeOutlined diff --git a/src/IconCurrencyExchangeOutlinedFilled.tsx b/src/IconCurrencyExchangeOutlinedFilled.tsx index 36b183de4..1f321a23e 100644 --- a/src/IconCurrencyExchangeOutlinedFilled.tsx +++ b/src/IconCurrencyExchangeOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconCurrencyExchangeOutlinedFilled: React.FC = ({ ) -export { IconCurrencyExchangeOutlinedFilled as default } +export default IconCurrencyExchangeOutlinedFilled diff --git a/src/IconCurrencyExchangeRounded.tsx b/src/IconCurrencyExchangeRounded.tsx index e9f1a1792..a82023662 100644 --- a/src/IconCurrencyExchangeRounded.tsx +++ b/src/IconCurrencyExchangeRounded.tsx @@ -8,4 +8,4 @@ const IconCurrencyExchangeRounded: React.FC = ({ ...props }) => ( ) -export { IconCurrencyExchangeRounded as default } +export default IconCurrencyExchangeRounded diff --git a/src/IconCurrencyExchangeRoundedFilled.tsx b/src/IconCurrencyExchangeRoundedFilled.tsx index 52b08c869..6dcf345fe 100644 --- a/src/IconCurrencyExchangeRoundedFilled.tsx +++ b/src/IconCurrencyExchangeRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconCurrencyExchangeRoundedFilled: React.FC = ({ ) -export { IconCurrencyExchangeRoundedFilled as default } +export default IconCurrencyExchangeRoundedFilled diff --git a/src/IconCurrencyExchangeSharp.tsx b/src/IconCurrencyExchangeSharp.tsx index 6a4f5c81b..65e5f7047 100644 --- a/src/IconCurrencyExchangeSharp.tsx +++ b/src/IconCurrencyExchangeSharp.tsx @@ -8,4 +8,4 @@ const IconCurrencyExchangeSharp: React.FC = ({ ...props }) => ( ) -export { IconCurrencyExchangeSharp as default } +export default IconCurrencyExchangeSharp diff --git a/src/IconCurrencyExchangeSharpFilled.tsx b/src/IconCurrencyExchangeSharpFilled.tsx index 97b6c98a5..1cf5efb9d 100644 --- a/src/IconCurrencyExchangeSharpFilled.tsx +++ b/src/IconCurrencyExchangeSharpFilled.tsx @@ -8,4 +8,4 @@ const IconCurrencyExchangeSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconCurrencyExchangeSharpFilled as default } +export default IconCurrencyExchangeSharpFilled diff --git a/src/IconCurrencyFrancOutlined.tsx b/src/IconCurrencyFrancOutlined.tsx index 9f99a2e0a..96df8a943 100644 --- a/src/IconCurrencyFrancOutlined.tsx +++ b/src/IconCurrencyFrancOutlined.tsx @@ -8,4 +8,4 @@ const IconCurrencyFrancOutlined: React.FC = ({ ...props }) => ( ) -export { IconCurrencyFrancOutlined as default } +export default IconCurrencyFrancOutlined diff --git a/src/IconCurrencyFrancOutlinedFilled.tsx b/src/IconCurrencyFrancOutlinedFilled.tsx index e4fc855c2..0e6ad6860 100644 --- a/src/IconCurrencyFrancOutlinedFilled.tsx +++ b/src/IconCurrencyFrancOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconCurrencyFrancOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconCurrencyFrancOutlinedFilled as default } +export default IconCurrencyFrancOutlinedFilled diff --git a/src/IconCurrencyFrancRounded.tsx b/src/IconCurrencyFrancRounded.tsx index 7b4ae4107..dfdec4290 100644 --- a/src/IconCurrencyFrancRounded.tsx +++ b/src/IconCurrencyFrancRounded.tsx @@ -8,4 +8,4 @@ const IconCurrencyFrancRounded: React.FC = ({ ...props }) => ( ) -export { IconCurrencyFrancRounded as default } +export default IconCurrencyFrancRounded diff --git a/src/IconCurrencyFrancRoundedFilled.tsx b/src/IconCurrencyFrancRoundedFilled.tsx index 9fd7d01dc..be05b821b 100644 --- a/src/IconCurrencyFrancRoundedFilled.tsx +++ b/src/IconCurrencyFrancRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconCurrencyFrancRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconCurrencyFrancRoundedFilled as default } +export default IconCurrencyFrancRoundedFilled diff --git a/src/IconCurrencyFrancSharp.tsx b/src/IconCurrencyFrancSharp.tsx index 603ecc3c7..b145beaca 100644 --- a/src/IconCurrencyFrancSharp.tsx +++ b/src/IconCurrencyFrancSharp.tsx @@ -8,4 +8,4 @@ const IconCurrencyFrancSharp: React.FC = ({ ...props }) => ( ) -export { IconCurrencyFrancSharp as default } +export default IconCurrencyFrancSharp diff --git a/src/IconCurrencyFrancSharpFilled.tsx b/src/IconCurrencyFrancSharpFilled.tsx index eaf3e1b4c..d8fca8f95 100644 --- a/src/IconCurrencyFrancSharpFilled.tsx +++ b/src/IconCurrencyFrancSharpFilled.tsx @@ -8,4 +8,4 @@ const IconCurrencyFrancSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconCurrencyFrancSharpFilled as default } +export default IconCurrencyFrancSharpFilled diff --git a/src/IconCurrencyLiraOutlined.tsx b/src/IconCurrencyLiraOutlined.tsx index 352b953c3..8341bfe4a 100644 --- a/src/IconCurrencyLiraOutlined.tsx +++ b/src/IconCurrencyLiraOutlined.tsx @@ -8,4 +8,4 @@ const IconCurrencyLiraOutlined: React.FC = ({ ...props }) => ( ) -export { IconCurrencyLiraOutlined as default } +export default IconCurrencyLiraOutlined diff --git a/src/IconCurrencyLiraOutlinedFilled.tsx b/src/IconCurrencyLiraOutlinedFilled.tsx index 4b64d855c..abf7a7ab3 100644 --- a/src/IconCurrencyLiraOutlinedFilled.tsx +++ b/src/IconCurrencyLiraOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconCurrencyLiraOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconCurrencyLiraOutlinedFilled as default } +export default IconCurrencyLiraOutlinedFilled diff --git a/src/IconCurrencyLiraRounded.tsx b/src/IconCurrencyLiraRounded.tsx index 4556ca03a..17470f947 100644 --- a/src/IconCurrencyLiraRounded.tsx +++ b/src/IconCurrencyLiraRounded.tsx @@ -8,4 +8,4 @@ const IconCurrencyLiraRounded: React.FC = ({ ...props }) => ( ) -export { IconCurrencyLiraRounded as default } +export default IconCurrencyLiraRounded diff --git a/src/IconCurrencyLiraRoundedFilled.tsx b/src/IconCurrencyLiraRoundedFilled.tsx index ada7d892c..c93835b78 100644 --- a/src/IconCurrencyLiraRoundedFilled.tsx +++ b/src/IconCurrencyLiraRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconCurrencyLiraRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconCurrencyLiraRoundedFilled as default } +export default IconCurrencyLiraRoundedFilled diff --git a/src/IconCurrencyLiraSharp.tsx b/src/IconCurrencyLiraSharp.tsx index ddc434304..57e77479e 100644 --- a/src/IconCurrencyLiraSharp.tsx +++ b/src/IconCurrencyLiraSharp.tsx @@ -8,4 +8,4 @@ const IconCurrencyLiraSharp: React.FC = ({ ...props }) => ( ) -export { IconCurrencyLiraSharp as default } +export default IconCurrencyLiraSharp diff --git a/src/IconCurrencyLiraSharpFilled.tsx b/src/IconCurrencyLiraSharpFilled.tsx index d9c830a62..9459cbb3b 100644 --- a/src/IconCurrencyLiraSharpFilled.tsx +++ b/src/IconCurrencyLiraSharpFilled.tsx @@ -8,4 +8,4 @@ const IconCurrencyLiraSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconCurrencyLiraSharpFilled as default } +export default IconCurrencyLiraSharpFilled diff --git a/src/IconCurrencyPoundOutlined.tsx b/src/IconCurrencyPoundOutlined.tsx index c1bca17c6..b5b7be9fc 100644 --- a/src/IconCurrencyPoundOutlined.tsx +++ b/src/IconCurrencyPoundOutlined.tsx @@ -8,4 +8,4 @@ const IconCurrencyPoundOutlined: React.FC = ({ ...props }) => ( ) -export { IconCurrencyPoundOutlined as default } +export default IconCurrencyPoundOutlined diff --git a/src/IconCurrencyPoundOutlinedFilled.tsx b/src/IconCurrencyPoundOutlinedFilled.tsx index fddfc6a67..90d73abaf 100644 --- a/src/IconCurrencyPoundOutlinedFilled.tsx +++ b/src/IconCurrencyPoundOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconCurrencyPoundOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconCurrencyPoundOutlinedFilled as default } +export default IconCurrencyPoundOutlinedFilled diff --git a/src/IconCurrencyPoundRounded.tsx b/src/IconCurrencyPoundRounded.tsx index 23f3a785d..56bf3660d 100644 --- a/src/IconCurrencyPoundRounded.tsx +++ b/src/IconCurrencyPoundRounded.tsx @@ -8,4 +8,4 @@ const IconCurrencyPoundRounded: React.FC = ({ ...props }) => ( ) -export { IconCurrencyPoundRounded as default } +export default IconCurrencyPoundRounded diff --git a/src/IconCurrencyPoundRoundedFilled.tsx b/src/IconCurrencyPoundRoundedFilled.tsx index afcc882a4..a90d32fad 100644 --- a/src/IconCurrencyPoundRoundedFilled.tsx +++ b/src/IconCurrencyPoundRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconCurrencyPoundRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconCurrencyPoundRoundedFilled as default } +export default IconCurrencyPoundRoundedFilled diff --git a/src/IconCurrencyPoundSharp.tsx b/src/IconCurrencyPoundSharp.tsx index fade61737..e5c925134 100644 --- a/src/IconCurrencyPoundSharp.tsx +++ b/src/IconCurrencyPoundSharp.tsx @@ -8,4 +8,4 @@ const IconCurrencyPoundSharp: React.FC = ({ ...props }) => ( ) -export { IconCurrencyPoundSharp as default } +export default IconCurrencyPoundSharp diff --git a/src/IconCurrencyPoundSharpFilled.tsx b/src/IconCurrencyPoundSharpFilled.tsx index 25bac2e74..4ad135bea 100644 --- a/src/IconCurrencyPoundSharpFilled.tsx +++ b/src/IconCurrencyPoundSharpFilled.tsx @@ -8,4 +8,4 @@ const IconCurrencyPoundSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconCurrencyPoundSharpFilled as default } +export default IconCurrencyPoundSharpFilled diff --git a/src/IconCurrencyRubleOutlined.tsx b/src/IconCurrencyRubleOutlined.tsx index 733aeb180..d877d0f57 100644 --- a/src/IconCurrencyRubleOutlined.tsx +++ b/src/IconCurrencyRubleOutlined.tsx @@ -8,4 +8,4 @@ const IconCurrencyRubleOutlined: React.FC = ({ ...props }) => ( ) -export { IconCurrencyRubleOutlined as default } +export default IconCurrencyRubleOutlined diff --git a/src/IconCurrencyRubleOutlinedFilled.tsx b/src/IconCurrencyRubleOutlinedFilled.tsx index 4e2d299bb..f24366be3 100644 --- a/src/IconCurrencyRubleOutlinedFilled.tsx +++ b/src/IconCurrencyRubleOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconCurrencyRubleOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconCurrencyRubleOutlinedFilled as default } +export default IconCurrencyRubleOutlinedFilled diff --git a/src/IconCurrencyRubleRounded.tsx b/src/IconCurrencyRubleRounded.tsx index df1a27685..ccc4fef1f 100644 --- a/src/IconCurrencyRubleRounded.tsx +++ b/src/IconCurrencyRubleRounded.tsx @@ -8,4 +8,4 @@ const IconCurrencyRubleRounded: React.FC = ({ ...props }) => ( ) -export { IconCurrencyRubleRounded as default } +export default IconCurrencyRubleRounded diff --git a/src/IconCurrencyRubleRoundedFilled.tsx b/src/IconCurrencyRubleRoundedFilled.tsx index d0db8ef4e..d78a8cc66 100644 --- a/src/IconCurrencyRubleRoundedFilled.tsx +++ b/src/IconCurrencyRubleRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconCurrencyRubleRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconCurrencyRubleRoundedFilled as default } +export default IconCurrencyRubleRoundedFilled diff --git a/src/IconCurrencyRubleSharp.tsx b/src/IconCurrencyRubleSharp.tsx index 028f2bee1..096e65b2a 100644 --- a/src/IconCurrencyRubleSharp.tsx +++ b/src/IconCurrencyRubleSharp.tsx @@ -8,4 +8,4 @@ const IconCurrencyRubleSharp: React.FC = ({ ...props }) => ( ) -export { IconCurrencyRubleSharp as default } +export default IconCurrencyRubleSharp diff --git a/src/IconCurrencyRubleSharpFilled.tsx b/src/IconCurrencyRubleSharpFilled.tsx index c7ec080b0..d8ad152c1 100644 --- a/src/IconCurrencyRubleSharpFilled.tsx +++ b/src/IconCurrencyRubleSharpFilled.tsx @@ -8,4 +8,4 @@ const IconCurrencyRubleSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconCurrencyRubleSharpFilled as default } +export default IconCurrencyRubleSharpFilled diff --git a/src/IconCurrencyRupeeCircleOutlined.tsx b/src/IconCurrencyRupeeCircleOutlined.tsx index c476b5a0a..73ccd2e73 100644 --- a/src/IconCurrencyRupeeCircleOutlined.tsx +++ b/src/IconCurrencyRupeeCircleOutlined.tsx @@ -8,4 +8,4 @@ const IconCurrencyRupeeCircleOutlined: React.FC = ({ ...props }) => ( ) -export { IconCurrencyRupeeCircleOutlined as default } +export default IconCurrencyRupeeCircleOutlined diff --git a/src/IconCurrencyRupeeCircleOutlinedFilled.tsx b/src/IconCurrencyRupeeCircleOutlinedFilled.tsx index 707cea655..f3c172975 100644 --- a/src/IconCurrencyRupeeCircleOutlinedFilled.tsx +++ b/src/IconCurrencyRupeeCircleOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconCurrencyRupeeCircleOutlinedFilled: React.FC = ({ ) -export { IconCurrencyRupeeCircleOutlinedFilled as default } +export default IconCurrencyRupeeCircleOutlinedFilled diff --git a/src/IconCurrencyRupeeCircleRounded.tsx b/src/IconCurrencyRupeeCircleRounded.tsx index 74668fd9d..74221f528 100644 --- a/src/IconCurrencyRupeeCircleRounded.tsx +++ b/src/IconCurrencyRupeeCircleRounded.tsx @@ -8,4 +8,4 @@ const IconCurrencyRupeeCircleRounded: React.FC = ({ ...props }) => ( ) -export { IconCurrencyRupeeCircleRounded as default } +export default IconCurrencyRupeeCircleRounded diff --git a/src/IconCurrencyRupeeCircleRoundedFilled.tsx b/src/IconCurrencyRupeeCircleRoundedFilled.tsx index d51de0acc..879d75b12 100644 --- a/src/IconCurrencyRupeeCircleRoundedFilled.tsx +++ b/src/IconCurrencyRupeeCircleRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconCurrencyRupeeCircleRoundedFilled: React.FC = ({ ) -export { IconCurrencyRupeeCircleRoundedFilled as default } +export default IconCurrencyRupeeCircleRoundedFilled diff --git a/src/IconCurrencyRupeeCircleSharp.tsx b/src/IconCurrencyRupeeCircleSharp.tsx index 3212a63da..abb287c66 100644 --- a/src/IconCurrencyRupeeCircleSharp.tsx +++ b/src/IconCurrencyRupeeCircleSharp.tsx @@ -8,4 +8,4 @@ const IconCurrencyRupeeCircleSharp: React.FC = ({ ...props }) => ( ) -export { IconCurrencyRupeeCircleSharp as default } +export default IconCurrencyRupeeCircleSharp diff --git a/src/IconCurrencyRupeeCircleSharpFilled.tsx b/src/IconCurrencyRupeeCircleSharpFilled.tsx index 660df63eb..52cea1603 100644 --- a/src/IconCurrencyRupeeCircleSharpFilled.tsx +++ b/src/IconCurrencyRupeeCircleSharpFilled.tsx @@ -10,4 +10,4 @@ const IconCurrencyRupeeCircleSharpFilled: React.FC = ({ ) -export { IconCurrencyRupeeCircleSharpFilled as default } +export default IconCurrencyRupeeCircleSharpFilled diff --git a/src/IconCurrencyRupeeOutlined.tsx b/src/IconCurrencyRupeeOutlined.tsx index 0b87f3dfe..1c00dae86 100644 --- a/src/IconCurrencyRupeeOutlined.tsx +++ b/src/IconCurrencyRupeeOutlined.tsx @@ -8,4 +8,4 @@ const IconCurrencyRupeeOutlined: React.FC = ({ ...props }) => ( ) -export { IconCurrencyRupeeOutlined as default } +export default IconCurrencyRupeeOutlined diff --git a/src/IconCurrencyRupeeOutlinedFilled.tsx b/src/IconCurrencyRupeeOutlinedFilled.tsx index d44ee3a4a..644469d9c 100644 --- a/src/IconCurrencyRupeeOutlinedFilled.tsx +++ b/src/IconCurrencyRupeeOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconCurrencyRupeeOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconCurrencyRupeeOutlinedFilled as default } +export default IconCurrencyRupeeOutlinedFilled diff --git a/src/IconCurrencyRupeeRounded.tsx b/src/IconCurrencyRupeeRounded.tsx index 638654ebb..0176a627b 100644 --- a/src/IconCurrencyRupeeRounded.tsx +++ b/src/IconCurrencyRupeeRounded.tsx @@ -8,4 +8,4 @@ const IconCurrencyRupeeRounded: React.FC = ({ ...props }) => ( ) -export { IconCurrencyRupeeRounded as default } +export default IconCurrencyRupeeRounded diff --git a/src/IconCurrencyRupeeRoundedFilled.tsx b/src/IconCurrencyRupeeRoundedFilled.tsx index 291ae976d..2aed12a45 100644 --- a/src/IconCurrencyRupeeRoundedFilled.tsx +++ b/src/IconCurrencyRupeeRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconCurrencyRupeeRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconCurrencyRupeeRoundedFilled as default } +export default IconCurrencyRupeeRoundedFilled diff --git a/src/IconCurrencyRupeeSharp.tsx b/src/IconCurrencyRupeeSharp.tsx index 929c5b2a1..adca0e4af 100644 --- a/src/IconCurrencyRupeeSharp.tsx +++ b/src/IconCurrencyRupeeSharp.tsx @@ -8,4 +8,4 @@ const IconCurrencyRupeeSharp: React.FC = ({ ...props }) => ( ) -export { IconCurrencyRupeeSharp as default } +export default IconCurrencyRupeeSharp diff --git a/src/IconCurrencyRupeeSharpFilled.tsx b/src/IconCurrencyRupeeSharpFilled.tsx index 11c6ab99c..0ce614c62 100644 --- a/src/IconCurrencyRupeeSharpFilled.tsx +++ b/src/IconCurrencyRupeeSharpFilled.tsx @@ -8,4 +8,4 @@ const IconCurrencyRupeeSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconCurrencyRupeeSharpFilled as default } +export default IconCurrencyRupeeSharpFilled diff --git a/src/IconCurrencyYenOutlined.tsx b/src/IconCurrencyYenOutlined.tsx index bc760fca3..ec10782f1 100644 --- a/src/IconCurrencyYenOutlined.tsx +++ b/src/IconCurrencyYenOutlined.tsx @@ -8,4 +8,4 @@ const IconCurrencyYenOutlined: React.FC = ({ ...props }) => ( ) -export { IconCurrencyYenOutlined as default } +export default IconCurrencyYenOutlined diff --git a/src/IconCurrencyYenOutlinedFilled.tsx b/src/IconCurrencyYenOutlinedFilled.tsx index ecfd3c46f..bbb51c46c 100644 --- a/src/IconCurrencyYenOutlinedFilled.tsx +++ b/src/IconCurrencyYenOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconCurrencyYenOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconCurrencyYenOutlinedFilled as default } +export default IconCurrencyYenOutlinedFilled diff --git a/src/IconCurrencyYenRounded.tsx b/src/IconCurrencyYenRounded.tsx index ad1f38901..b7e1d807c 100644 --- a/src/IconCurrencyYenRounded.tsx +++ b/src/IconCurrencyYenRounded.tsx @@ -8,4 +8,4 @@ const IconCurrencyYenRounded: React.FC = ({ ...props }) => ( ) -export { IconCurrencyYenRounded as default } +export default IconCurrencyYenRounded diff --git a/src/IconCurrencyYenRoundedFilled.tsx b/src/IconCurrencyYenRoundedFilled.tsx index dae690d96..6f1601d90 100644 --- a/src/IconCurrencyYenRoundedFilled.tsx +++ b/src/IconCurrencyYenRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconCurrencyYenRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconCurrencyYenRoundedFilled as default } +export default IconCurrencyYenRoundedFilled diff --git a/src/IconCurrencyYenSharp.tsx b/src/IconCurrencyYenSharp.tsx index 882d1335b..b23ffdc3d 100644 --- a/src/IconCurrencyYenSharp.tsx +++ b/src/IconCurrencyYenSharp.tsx @@ -8,4 +8,4 @@ const IconCurrencyYenSharp: React.FC = ({ ...props }) => ( ) -export { IconCurrencyYenSharp as default } +export default IconCurrencyYenSharp diff --git a/src/IconCurrencyYenSharpFilled.tsx b/src/IconCurrencyYenSharpFilled.tsx index 9eb92fd78..25f62fde0 100644 --- a/src/IconCurrencyYenSharpFilled.tsx +++ b/src/IconCurrencyYenSharpFilled.tsx @@ -8,4 +8,4 @@ const IconCurrencyYenSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconCurrencyYenSharpFilled as default } +export default IconCurrencyYenSharpFilled diff --git a/src/IconCurrencyYuanOutlined.tsx b/src/IconCurrencyYuanOutlined.tsx index b652cfcb0..633308b56 100644 --- a/src/IconCurrencyYuanOutlined.tsx +++ b/src/IconCurrencyYuanOutlined.tsx @@ -8,4 +8,4 @@ const IconCurrencyYuanOutlined: React.FC = ({ ...props }) => ( ) -export { IconCurrencyYuanOutlined as default } +export default IconCurrencyYuanOutlined diff --git a/src/IconCurrencyYuanOutlinedFilled.tsx b/src/IconCurrencyYuanOutlinedFilled.tsx index 0adba098b..4eb869ceb 100644 --- a/src/IconCurrencyYuanOutlinedFilled.tsx +++ b/src/IconCurrencyYuanOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconCurrencyYuanOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconCurrencyYuanOutlinedFilled as default } +export default IconCurrencyYuanOutlinedFilled diff --git a/src/IconCurrencyYuanRounded.tsx b/src/IconCurrencyYuanRounded.tsx index c5d725856..a9400156f 100644 --- a/src/IconCurrencyYuanRounded.tsx +++ b/src/IconCurrencyYuanRounded.tsx @@ -8,4 +8,4 @@ const IconCurrencyYuanRounded: React.FC = ({ ...props }) => ( ) -export { IconCurrencyYuanRounded as default } +export default IconCurrencyYuanRounded diff --git a/src/IconCurrencyYuanRoundedFilled.tsx b/src/IconCurrencyYuanRoundedFilled.tsx index fc00b76af..2da9185d5 100644 --- a/src/IconCurrencyYuanRoundedFilled.tsx +++ b/src/IconCurrencyYuanRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconCurrencyYuanRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconCurrencyYuanRoundedFilled as default } +export default IconCurrencyYuanRoundedFilled diff --git a/src/IconCurrencyYuanSharp.tsx b/src/IconCurrencyYuanSharp.tsx index 4d149d482..368c58bcf 100644 --- a/src/IconCurrencyYuanSharp.tsx +++ b/src/IconCurrencyYuanSharp.tsx @@ -8,4 +8,4 @@ const IconCurrencyYuanSharp: React.FC = ({ ...props }) => ( ) -export { IconCurrencyYuanSharp as default } +export default IconCurrencyYuanSharp diff --git a/src/IconCurrencyYuanSharpFilled.tsx b/src/IconCurrencyYuanSharpFilled.tsx index fae242519..7c4ab4a41 100644 --- a/src/IconCurrencyYuanSharpFilled.tsx +++ b/src/IconCurrencyYuanSharpFilled.tsx @@ -8,4 +8,4 @@ const IconCurrencyYuanSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconCurrencyYuanSharpFilled as default } +export default IconCurrencyYuanSharpFilled diff --git a/src/IconCurtainsClosedOutlined.tsx b/src/IconCurtainsClosedOutlined.tsx index b708a9399..290eefd49 100644 --- a/src/IconCurtainsClosedOutlined.tsx +++ b/src/IconCurtainsClosedOutlined.tsx @@ -8,4 +8,4 @@ const IconCurtainsClosedOutlined: React.FC = ({ ...props }) => ( ) -export { IconCurtainsClosedOutlined as default } +export default IconCurtainsClosedOutlined diff --git a/src/IconCurtainsClosedOutlinedFilled.tsx b/src/IconCurtainsClosedOutlinedFilled.tsx index 436e56119..44d3ff09d 100644 --- a/src/IconCurtainsClosedOutlinedFilled.tsx +++ b/src/IconCurtainsClosedOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconCurtainsClosedOutlinedFilled: React.FC = ({ ) -export { IconCurtainsClosedOutlinedFilled as default } +export default IconCurtainsClosedOutlinedFilled diff --git a/src/IconCurtainsClosedRounded.tsx b/src/IconCurtainsClosedRounded.tsx index 8f1f32dc1..a49ba3d9d 100644 --- a/src/IconCurtainsClosedRounded.tsx +++ b/src/IconCurtainsClosedRounded.tsx @@ -8,4 +8,4 @@ const IconCurtainsClosedRounded: React.FC = ({ ...props }) => ( ) -export { IconCurtainsClosedRounded as default } +export default IconCurtainsClosedRounded diff --git a/src/IconCurtainsClosedRoundedFilled.tsx b/src/IconCurtainsClosedRoundedFilled.tsx index 7a30e3eaa..6b66675a3 100644 --- a/src/IconCurtainsClosedRoundedFilled.tsx +++ b/src/IconCurtainsClosedRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconCurtainsClosedRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconCurtainsClosedRoundedFilled as default } +export default IconCurtainsClosedRoundedFilled diff --git a/src/IconCurtainsClosedSharp.tsx b/src/IconCurtainsClosedSharp.tsx index 40e87e022..0e40f7780 100644 --- a/src/IconCurtainsClosedSharp.tsx +++ b/src/IconCurtainsClosedSharp.tsx @@ -8,4 +8,4 @@ const IconCurtainsClosedSharp: React.FC = ({ ...props }) => ( ) -export { IconCurtainsClosedSharp as default } +export default IconCurtainsClosedSharp diff --git a/src/IconCurtainsClosedSharpFilled.tsx b/src/IconCurtainsClosedSharpFilled.tsx index ea640f48c..007a7cf41 100644 --- a/src/IconCurtainsClosedSharpFilled.tsx +++ b/src/IconCurtainsClosedSharpFilled.tsx @@ -8,4 +8,4 @@ const IconCurtainsClosedSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconCurtainsClosedSharpFilled as default } +export default IconCurtainsClosedSharpFilled diff --git a/src/IconCurtainsOutlined.tsx b/src/IconCurtainsOutlined.tsx index 4f6cec093..9623c903f 100644 --- a/src/IconCurtainsOutlined.tsx +++ b/src/IconCurtainsOutlined.tsx @@ -8,4 +8,4 @@ const IconCurtainsOutlined: React.FC = ({ ...props }) => ( ) -export { IconCurtainsOutlined as default } +export default IconCurtainsOutlined diff --git a/src/IconCurtainsOutlinedFilled.tsx b/src/IconCurtainsOutlinedFilled.tsx index 1b733bb5d..e92aaeded 100644 --- a/src/IconCurtainsOutlinedFilled.tsx +++ b/src/IconCurtainsOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconCurtainsOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconCurtainsOutlinedFilled as default } +export default IconCurtainsOutlinedFilled diff --git a/src/IconCurtainsRounded.tsx b/src/IconCurtainsRounded.tsx index c6800f810..ce834e7e9 100644 --- a/src/IconCurtainsRounded.tsx +++ b/src/IconCurtainsRounded.tsx @@ -8,4 +8,4 @@ const IconCurtainsRounded: React.FC = ({ ...props }) => ( ) -export { IconCurtainsRounded as default } +export default IconCurtainsRounded diff --git a/src/IconCurtainsRoundedFilled.tsx b/src/IconCurtainsRoundedFilled.tsx index 66be39457..5f2d569aa 100644 --- a/src/IconCurtainsRoundedFilled.tsx +++ b/src/IconCurtainsRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconCurtainsRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconCurtainsRoundedFilled as default } +export default IconCurtainsRoundedFilled diff --git a/src/IconCurtainsSharp.tsx b/src/IconCurtainsSharp.tsx index 4f4485434..d334eac22 100644 --- a/src/IconCurtainsSharp.tsx +++ b/src/IconCurtainsSharp.tsx @@ -8,4 +8,4 @@ const IconCurtainsSharp: React.FC = ({ ...props }) => ( ) -export { IconCurtainsSharp as default } +export default IconCurtainsSharp diff --git a/src/IconCurtainsSharpFilled.tsx b/src/IconCurtainsSharpFilled.tsx index 7d8b9ded4..e6247f374 100644 --- a/src/IconCurtainsSharpFilled.tsx +++ b/src/IconCurtainsSharpFilled.tsx @@ -8,4 +8,4 @@ const IconCurtainsSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconCurtainsSharpFilled as default } +export default IconCurtainsSharpFilled diff --git a/src/IconCustomTypographyOutlined.tsx b/src/IconCustomTypographyOutlined.tsx index 6487bae6a..ed83bb3a0 100644 --- a/src/IconCustomTypographyOutlined.tsx +++ b/src/IconCustomTypographyOutlined.tsx @@ -8,4 +8,4 @@ const IconCustomTypographyOutlined: React.FC = ({ ...props }) => ( ) -export { IconCustomTypographyOutlined as default } +export default IconCustomTypographyOutlined diff --git a/src/IconCustomTypographyOutlinedFilled.tsx b/src/IconCustomTypographyOutlinedFilled.tsx index ea6363859..0b655db78 100644 --- a/src/IconCustomTypographyOutlinedFilled.tsx +++ b/src/IconCustomTypographyOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconCustomTypographyOutlinedFilled: React.FC = ({ ) -export { IconCustomTypographyOutlinedFilled as default } +export default IconCustomTypographyOutlinedFilled diff --git a/src/IconCustomTypographyRounded.tsx b/src/IconCustomTypographyRounded.tsx index 3869fae3d..b0023ea05 100644 --- a/src/IconCustomTypographyRounded.tsx +++ b/src/IconCustomTypographyRounded.tsx @@ -8,4 +8,4 @@ const IconCustomTypographyRounded: React.FC = ({ ...props }) => ( ) -export { IconCustomTypographyRounded as default } +export default IconCustomTypographyRounded diff --git a/src/IconCustomTypographyRoundedFilled.tsx b/src/IconCustomTypographyRoundedFilled.tsx index 299282732..e943f2454 100644 --- a/src/IconCustomTypographyRoundedFilled.tsx +++ b/src/IconCustomTypographyRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconCustomTypographyRoundedFilled: React.FC = ({ ) -export { IconCustomTypographyRoundedFilled as default } +export default IconCustomTypographyRoundedFilled diff --git a/src/IconCustomTypographySharp.tsx b/src/IconCustomTypographySharp.tsx index 8bfd05f4e..97d6e99d4 100644 --- a/src/IconCustomTypographySharp.tsx +++ b/src/IconCustomTypographySharp.tsx @@ -8,4 +8,4 @@ const IconCustomTypographySharp: React.FC = ({ ...props }) => ( ) -export { IconCustomTypographySharp as default } +export default IconCustomTypographySharp diff --git a/src/IconCustomTypographySharpFilled.tsx b/src/IconCustomTypographySharpFilled.tsx index 5723c069c..3b31250d6 100644 --- a/src/IconCustomTypographySharpFilled.tsx +++ b/src/IconCustomTypographySharpFilled.tsx @@ -8,4 +8,4 @@ const IconCustomTypographySharpFilled: React.FC = ({ ...props }) => ( ) -export { IconCustomTypographySharpFilled as default } +export default IconCustomTypographySharpFilled diff --git a/src/IconCycleOutlined.tsx b/src/IconCycleOutlined.tsx index a67599275..b63891d52 100644 --- a/src/IconCycleOutlined.tsx +++ b/src/IconCycleOutlined.tsx @@ -8,4 +8,4 @@ const IconCycleOutlined: React.FC = ({ ...props }) => ( ) -export { IconCycleOutlined as default } +export default IconCycleOutlined diff --git a/src/IconCycleOutlinedFilled.tsx b/src/IconCycleOutlinedFilled.tsx index 3e61e9f7d..3bf00f440 100644 --- a/src/IconCycleOutlinedFilled.tsx +++ b/src/IconCycleOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconCycleOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconCycleOutlinedFilled as default } +export default IconCycleOutlinedFilled diff --git a/src/IconCycleRounded.tsx b/src/IconCycleRounded.tsx index 8e8277830..7eff0373b 100644 --- a/src/IconCycleRounded.tsx +++ b/src/IconCycleRounded.tsx @@ -8,4 +8,4 @@ const IconCycleRounded: React.FC = ({ ...props }) => ( ) -export { IconCycleRounded as default } +export default IconCycleRounded diff --git a/src/IconCycleRoundedFilled.tsx b/src/IconCycleRoundedFilled.tsx index d5c3a600c..2d7f17303 100644 --- a/src/IconCycleRoundedFilled.tsx +++ b/src/IconCycleRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconCycleRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconCycleRoundedFilled as default } +export default IconCycleRoundedFilled diff --git a/src/IconCycleSharp.tsx b/src/IconCycleSharp.tsx index 8919f391b..4e86f06e3 100644 --- a/src/IconCycleSharp.tsx +++ b/src/IconCycleSharp.tsx @@ -8,4 +8,4 @@ const IconCycleSharp: React.FC = ({ ...props }) => ( ) -export { IconCycleSharp as default } +export default IconCycleSharp diff --git a/src/IconCycleSharpFilled.tsx b/src/IconCycleSharpFilled.tsx index 454f15392..e5feddf2f 100644 --- a/src/IconCycleSharpFilled.tsx +++ b/src/IconCycleSharpFilled.tsx @@ -8,4 +8,4 @@ const IconCycleSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconCycleSharpFilled as default } +export default IconCycleSharpFilled diff --git a/src/IconCycloneOutlined.tsx b/src/IconCycloneOutlined.tsx index d095845b5..fe35837da 100644 --- a/src/IconCycloneOutlined.tsx +++ b/src/IconCycloneOutlined.tsx @@ -8,4 +8,4 @@ const IconCycloneOutlined: React.FC = ({ ...props }) => ( ) -export { IconCycloneOutlined as default } +export default IconCycloneOutlined diff --git a/src/IconCycloneOutlinedFilled.tsx b/src/IconCycloneOutlinedFilled.tsx index 9ed370dba..1a1179650 100644 --- a/src/IconCycloneOutlinedFilled.tsx +++ b/src/IconCycloneOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconCycloneOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconCycloneOutlinedFilled as default } +export default IconCycloneOutlinedFilled diff --git a/src/IconCycloneRounded.tsx b/src/IconCycloneRounded.tsx index 44d95775b..0d5c5cacf 100644 --- a/src/IconCycloneRounded.tsx +++ b/src/IconCycloneRounded.tsx @@ -8,4 +8,4 @@ const IconCycloneRounded: React.FC = ({ ...props }) => ( ) -export { IconCycloneRounded as default } +export default IconCycloneRounded diff --git a/src/IconCycloneRoundedFilled.tsx b/src/IconCycloneRoundedFilled.tsx index 484da7dd9..c05a2dbca 100644 --- a/src/IconCycloneRoundedFilled.tsx +++ b/src/IconCycloneRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconCycloneRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconCycloneRoundedFilled as default } +export default IconCycloneRoundedFilled diff --git a/src/IconCycloneSharp.tsx b/src/IconCycloneSharp.tsx index 6b8008577..9834d786a 100644 --- a/src/IconCycloneSharp.tsx +++ b/src/IconCycloneSharp.tsx @@ -8,4 +8,4 @@ const IconCycloneSharp: React.FC = ({ ...props }) => ( ) -export { IconCycloneSharp as default } +export default IconCycloneSharp diff --git a/src/IconCycloneSharpFilled.tsx b/src/IconCycloneSharpFilled.tsx index fc58544e9..ca5ce47b2 100644 --- a/src/IconCycloneSharpFilled.tsx +++ b/src/IconCycloneSharpFilled.tsx @@ -8,4 +8,4 @@ const IconCycloneSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconCycloneSharpFilled as default } +export default IconCycloneSharpFilled diff --git a/src/IconDangerousOutlined.tsx b/src/IconDangerousOutlined.tsx index 87b9f0435..ea6e43b5d 100644 --- a/src/IconDangerousOutlined.tsx +++ b/src/IconDangerousOutlined.tsx @@ -8,4 +8,4 @@ const IconDangerousOutlined: React.FC = ({ ...props }) => ( ) -export { IconDangerousOutlined as default } +export default IconDangerousOutlined diff --git a/src/IconDangerousOutlinedFilled.tsx b/src/IconDangerousOutlinedFilled.tsx index 90a233d01..eb9ef3d50 100644 --- a/src/IconDangerousOutlinedFilled.tsx +++ b/src/IconDangerousOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconDangerousOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconDangerousOutlinedFilled as default } +export default IconDangerousOutlinedFilled diff --git a/src/IconDangerousRounded.tsx b/src/IconDangerousRounded.tsx index f9384b8e5..7b5ad3140 100644 --- a/src/IconDangerousRounded.tsx +++ b/src/IconDangerousRounded.tsx @@ -8,4 +8,4 @@ const IconDangerousRounded: React.FC = ({ ...props }) => ( ) -export { IconDangerousRounded as default } +export default IconDangerousRounded diff --git a/src/IconDangerousRoundedFilled.tsx b/src/IconDangerousRoundedFilled.tsx index fbd0b457e..178aa43f4 100644 --- a/src/IconDangerousRoundedFilled.tsx +++ b/src/IconDangerousRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconDangerousRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconDangerousRoundedFilled as default } +export default IconDangerousRoundedFilled diff --git a/src/IconDangerousSharp.tsx b/src/IconDangerousSharp.tsx index 5e396196d..4520ccda6 100644 --- a/src/IconDangerousSharp.tsx +++ b/src/IconDangerousSharp.tsx @@ -8,4 +8,4 @@ const IconDangerousSharp: React.FC = ({ ...props }) => ( ) -export { IconDangerousSharp as default } +export default IconDangerousSharp diff --git a/src/IconDangerousSharpFilled.tsx b/src/IconDangerousSharpFilled.tsx index c778188ef..b25eef32d 100644 --- a/src/IconDangerousSharpFilled.tsx +++ b/src/IconDangerousSharpFilled.tsx @@ -8,4 +8,4 @@ const IconDangerousSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconDangerousSharpFilled as default } +export default IconDangerousSharpFilled diff --git a/src/IconDarkModeOutlined.tsx b/src/IconDarkModeOutlined.tsx index 2d8e4ac12..aca1cd119 100644 --- a/src/IconDarkModeOutlined.tsx +++ b/src/IconDarkModeOutlined.tsx @@ -8,4 +8,4 @@ const IconDarkModeOutlined: React.FC = ({ ...props }) => ( ) -export { IconDarkModeOutlined as default } +export default IconDarkModeOutlined diff --git a/src/IconDarkModeOutlinedFilled.tsx b/src/IconDarkModeOutlinedFilled.tsx index e860434f9..2d6a3ce90 100644 --- a/src/IconDarkModeOutlinedFilled.tsx +++ b/src/IconDarkModeOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconDarkModeOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconDarkModeOutlinedFilled as default } +export default IconDarkModeOutlinedFilled diff --git a/src/IconDarkModeRounded.tsx b/src/IconDarkModeRounded.tsx index 513db7de2..c1f55206d 100644 --- a/src/IconDarkModeRounded.tsx +++ b/src/IconDarkModeRounded.tsx @@ -8,4 +8,4 @@ const IconDarkModeRounded: React.FC = ({ ...props }) => ( ) -export { IconDarkModeRounded as default } +export default IconDarkModeRounded diff --git a/src/IconDarkModeRoundedFilled.tsx b/src/IconDarkModeRoundedFilled.tsx index 31e052c68..426956090 100644 --- a/src/IconDarkModeRoundedFilled.tsx +++ b/src/IconDarkModeRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconDarkModeRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconDarkModeRoundedFilled as default } +export default IconDarkModeRoundedFilled diff --git a/src/IconDarkModeSharp.tsx b/src/IconDarkModeSharp.tsx index e60b2d377..a0f7c7180 100644 --- a/src/IconDarkModeSharp.tsx +++ b/src/IconDarkModeSharp.tsx @@ -8,4 +8,4 @@ const IconDarkModeSharp: React.FC = ({ ...props }) => ( ) -export { IconDarkModeSharp as default } +export default IconDarkModeSharp diff --git a/src/IconDarkModeSharpFilled.tsx b/src/IconDarkModeSharpFilled.tsx index 8754aa192..ae701958a 100644 --- a/src/IconDarkModeSharpFilled.tsx +++ b/src/IconDarkModeSharpFilled.tsx @@ -8,4 +8,4 @@ const IconDarkModeSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconDarkModeSharpFilled as default } +export default IconDarkModeSharpFilled diff --git a/src/IconDashboardCustomizeOutlined.tsx b/src/IconDashboardCustomizeOutlined.tsx index 03d70c1b3..13f6ce283 100644 --- a/src/IconDashboardCustomizeOutlined.tsx +++ b/src/IconDashboardCustomizeOutlined.tsx @@ -8,4 +8,4 @@ const IconDashboardCustomizeOutlined: React.FC = ({ ...props }) => ( ) -export { IconDashboardCustomizeOutlined as default } +export default IconDashboardCustomizeOutlined diff --git a/src/IconDashboardCustomizeOutlinedFilled.tsx b/src/IconDashboardCustomizeOutlinedFilled.tsx index 6436e1189..ea0221781 100644 --- a/src/IconDashboardCustomizeOutlinedFilled.tsx +++ b/src/IconDashboardCustomizeOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconDashboardCustomizeOutlinedFilled: React.FC = ({ ) -export { IconDashboardCustomizeOutlinedFilled as default } +export default IconDashboardCustomizeOutlinedFilled diff --git a/src/IconDashboardCustomizeRounded.tsx b/src/IconDashboardCustomizeRounded.tsx index 7176f6604..d299bf1e9 100644 --- a/src/IconDashboardCustomizeRounded.tsx +++ b/src/IconDashboardCustomizeRounded.tsx @@ -8,4 +8,4 @@ const IconDashboardCustomizeRounded: React.FC = ({ ...props }) => ( ) -export { IconDashboardCustomizeRounded as default } +export default IconDashboardCustomizeRounded diff --git a/src/IconDashboardCustomizeRoundedFilled.tsx b/src/IconDashboardCustomizeRoundedFilled.tsx index 2b7b5c106..d8eb12265 100644 --- a/src/IconDashboardCustomizeRoundedFilled.tsx +++ b/src/IconDashboardCustomizeRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconDashboardCustomizeRoundedFilled: React.FC = ({ ) -export { IconDashboardCustomizeRoundedFilled as default } +export default IconDashboardCustomizeRoundedFilled diff --git a/src/IconDashboardCustomizeSharp.tsx b/src/IconDashboardCustomizeSharp.tsx index 89e8d4972..49c94d192 100644 --- a/src/IconDashboardCustomizeSharp.tsx +++ b/src/IconDashboardCustomizeSharp.tsx @@ -8,4 +8,4 @@ const IconDashboardCustomizeSharp: React.FC = ({ ...props }) => ( ) -export { IconDashboardCustomizeSharp as default } +export default IconDashboardCustomizeSharp diff --git a/src/IconDashboardCustomizeSharpFilled.tsx b/src/IconDashboardCustomizeSharpFilled.tsx index 78ddaddbf..ce97101bf 100644 --- a/src/IconDashboardCustomizeSharpFilled.tsx +++ b/src/IconDashboardCustomizeSharpFilled.tsx @@ -10,4 +10,4 @@ const IconDashboardCustomizeSharpFilled: React.FC = ({ ) -export { IconDashboardCustomizeSharpFilled as default } +export default IconDashboardCustomizeSharpFilled diff --git a/src/IconDashboardOutlined.tsx b/src/IconDashboardOutlined.tsx index e29892395..8d3203a60 100644 --- a/src/IconDashboardOutlined.tsx +++ b/src/IconDashboardOutlined.tsx @@ -8,4 +8,4 @@ const IconDashboardOutlined: React.FC = ({ ...props }) => ( ) -export { IconDashboardOutlined as default } +export default IconDashboardOutlined diff --git a/src/IconDashboardOutlinedFilled.tsx b/src/IconDashboardOutlinedFilled.tsx index 89ed28c13..ccdab1d76 100644 --- a/src/IconDashboardOutlinedFilled.tsx +++ b/src/IconDashboardOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconDashboardOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconDashboardOutlinedFilled as default } +export default IconDashboardOutlinedFilled diff --git a/src/IconDashboardRounded.tsx b/src/IconDashboardRounded.tsx index fa05ea6a1..a4343b83e 100644 --- a/src/IconDashboardRounded.tsx +++ b/src/IconDashboardRounded.tsx @@ -8,4 +8,4 @@ const IconDashboardRounded: React.FC = ({ ...props }) => ( ) -export { IconDashboardRounded as default } +export default IconDashboardRounded diff --git a/src/IconDashboardRoundedFilled.tsx b/src/IconDashboardRoundedFilled.tsx index 4affce600..48b907777 100644 --- a/src/IconDashboardRoundedFilled.tsx +++ b/src/IconDashboardRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconDashboardRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconDashboardRoundedFilled as default } +export default IconDashboardRoundedFilled diff --git a/src/IconDashboardSharp.tsx b/src/IconDashboardSharp.tsx index 1e294063c..ce9af267b 100644 --- a/src/IconDashboardSharp.tsx +++ b/src/IconDashboardSharp.tsx @@ -8,4 +8,4 @@ const IconDashboardSharp: React.FC = ({ ...props }) => ( ) -export { IconDashboardSharp as default } +export default IconDashboardSharp diff --git a/src/IconDashboardSharpFilled.tsx b/src/IconDashboardSharpFilled.tsx index d4121108a..e965a7776 100644 --- a/src/IconDashboardSharpFilled.tsx +++ b/src/IconDashboardSharpFilled.tsx @@ -8,4 +8,4 @@ const IconDashboardSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconDashboardSharpFilled as default } +export default IconDashboardSharpFilled diff --git a/src/IconDataAlertOutlined.tsx b/src/IconDataAlertOutlined.tsx index 313c89337..f1a21b955 100644 --- a/src/IconDataAlertOutlined.tsx +++ b/src/IconDataAlertOutlined.tsx @@ -8,4 +8,4 @@ const IconDataAlertOutlined: React.FC = ({ ...props }) => ( ) -export { IconDataAlertOutlined as default } +export default IconDataAlertOutlined diff --git a/src/IconDataAlertOutlinedFilled.tsx b/src/IconDataAlertOutlinedFilled.tsx index 7be6a2239..f380efb5d 100644 --- a/src/IconDataAlertOutlinedFilled.tsx +++ b/src/IconDataAlertOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconDataAlertOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconDataAlertOutlinedFilled as default } +export default IconDataAlertOutlinedFilled diff --git a/src/IconDataAlertRounded.tsx b/src/IconDataAlertRounded.tsx index 754b76d27..f557deda9 100644 --- a/src/IconDataAlertRounded.tsx +++ b/src/IconDataAlertRounded.tsx @@ -8,4 +8,4 @@ const IconDataAlertRounded: React.FC = ({ ...props }) => ( ) -export { IconDataAlertRounded as default } +export default IconDataAlertRounded diff --git a/src/IconDataAlertRoundedFilled.tsx b/src/IconDataAlertRoundedFilled.tsx index 436b170c7..c1d3f2865 100644 --- a/src/IconDataAlertRoundedFilled.tsx +++ b/src/IconDataAlertRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconDataAlertRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconDataAlertRoundedFilled as default } +export default IconDataAlertRoundedFilled diff --git a/src/IconDataAlertSharp.tsx b/src/IconDataAlertSharp.tsx index 77b2cc09f..bf0184f50 100644 --- a/src/IconDataAlertSharp.tsx +++ b/src/IconDataAlertSharp.tsx @@ -8,4 +8,4 @@ const IconDataAlertSharp: React.FC = ({ ...props }) => ( ) -export { IconDataAlertSharp as default } +export default IconDataAlertSharp diff --git a/src/IconDataAlertSharpFilled.tsx b/src/IconDataAlertSharpFilled.tsx index d18a4e7fe..475c85b5f 100644 --- a/src/IconDataAlertSharpFilled.tsx +++ b/src/IconDataAlertSharpFilled.tsx @@ -8,4 +8,4 @@ const IconDataAlertSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconDataAlertSharpFilled as default } +export default IconDataAlertSharpFilled diff --git a/src/IconDataArrayOutlined.tsx b/src/IconDataArrayOutlined.tsx index 136dc5682..6c2f9aff4 100644 --- a/src/IconDataArrayOutlined.tsx +++ b/src/IconDataArrayOutlined.tsx @@ -8,4 +8,4 @@ const IconDataArrayOutlined: React.FC = ({ ...props }) => ( ) -export { IconDataArrayOutlined as default } +export default IconDataArrayOutlined diff --git a/src/IconDataArrayOutlinedFilled.tsx b/src/IconDataArrayOutlinedFilled.tsx index 6ada8df04..59e50b429 100644 --- a/src/IconDataArrayOutlinedFilled.tsx +++ b/src/IconDataArrayOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconDataArrayOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconDataArrayOutlinedFilled as default } +export default IconDataArrayOutlinedFilled diff --git a/src/IconDataArrayRounded.tsx b/src/IconDataArrayRounded.tsx index 99d1be238..d312f250e 100644 --- a/src/IconDataArrayRounded.tsx +++ b/src/IconDataArrayRounded.tsx @@ -8,4 +8,4 @@ const IconDataArrayRounded: React.FC = ({ ...props }) => ( ) -export { IconDataArrayRounded as default } +export default IconDataArrayRounded diff --git a/src/IconDataArrayRoundedFilled.tsx b/src/IconDataArrayRoundedFilled.tsx index 86ac7f333..1876babbc 100644 --- a/src/IconDataArrayRoundedFilled.tsx +++ b/src/IconDataArrayRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconDataArrayRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconDataArrayRoundedFilled as default } +export default IconDataArrayRoundedFilled diff --git a/src/IconDataArraySharp.tsx b/src/IconDataArraySharp.tsx index ea3bcbb59..423503f68 100644 --- a/src/IconDataArraySharp.tsx +++ b/src/IconDataArraySharp.tsx @@ -8,4 +8,4 @@ const IconDataArraySharp: React.FC = ({ ...props }) => ( ) -export { IconDataArraySharp as default } +export default IconDataArraySharp diff --git a/src/IconDataArraySharpFilled.tsx b/src/IconDataArraySharpFilled.tsx index 17ef5819e..1cbfc7e07 100644 --- a/src/IconDataArraySharpFilled.tsx +++ b/src/IconDataArraySharpFilled.tsx @@ -8,4 +8,4 @@ const IconDataArraySharpFilled: React.FC = ({ ...props }) => ( ) -export { IconDataArraySharpFilled as default } +export default IconDataArraySharpFilled diff --git a/src/IconDataCheckOutlined.tsx b/src/IconDataCheckOutlined.tsx index 3824431bd..16f52f64b 100644 --- a/src/IconDataCheckOutlined.tsx +++ b/src/IconDataCheckOutlined.tsx @@ -8,4 +8,4 @@ const IconDataCheckOutlined: React.FC = ({ ...props }) => ( ) -export { IconDataCheckOutlined as default } +export default IconDataCheckOutlined diff --git a/src/IconDataCheckOutlinedFilled.tsx b/src/IconDataCheckOutlinedFilled.tsx index 177fcdd61..0921306b5 100644 --- a/src/IconDataCheckOutlinedFilled.tsx +++ b/src/IconDataCheckOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconDataCheckOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconDataCheckOutlinedFilled as default } +export default IconDataCheckOutlinedFilled diff --git a/src/IconDataCheckRounded.tsx b/src/IconDataCheckRounded.tsx index dd8cda783..fe760a710 100644 --- a/src/IconDataCheckRounded.tsx +++ b/src/IconDataCheckRounded.tsx @@ -8,4 +8,4 @@ const IconDataCheckRounded: React.FC = ({ ...props }) => ( ) -export { IconDataCheckRounded as default } +export default IconDataCheckRounded diff --git a/src/IconDataCheckRoundedFilled.tsx b/src/IconDataCheckRoundedFilled.tsx index cd801e7a7..a24f2e572 100644 --- a/src/IconDataCheckRoundedFilled.tsx +++ b/src/IconDataCheckRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconDataCheckRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconDataCheckRoundedFilled as default } +export default IconDataCheckRoundedFilled diff --git a/src/IconDataCheckSharp.tsx b/src/IconDataCheckSharp.tsx index 68889c40e..f2debe063 100644 --- a/src/IconDataCheckSharp.tsx +++ b/src/IconDataCheckSharp.tsx @@ -8,4 +8,4 @@ const IconDataCheckSharp: React.FC = ({ ...props }) => ( ) -export { IconDataCheckSharp as default } +export default IconDataCheckSharp diff --git a/src/IconDataCheckSharpFilled.tsx b/src/IconDataCheckSharpFilled.tsx index 8bc341544..e63f4425d 100644 --- a/src/IconDataCheckSharpFilled.tsx +++ b/src/IconDataCheckSharpFilled.tsx @@ -8,4 +8,4 @@ const IconDataCheckSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconDataCheckSharpFilled as default } +export default IconDataCheckSharpFilled diff --git a/src/IconDataExplorationOutlined.tsx b/src/IconDataExplorationOutlined.tsx index 57335dc35..52448c0ba 100644 --- a/src/IconDataExplorationOutlined.tsx +++ b/src/IconDataExplorationOutlined.tsx @@ -8,4 +8,4 @@ const IconDataExplorationOutlined: React.FC = ({ ...props }) => ( ) -export { IconDataExplorationOutlined as default } +export default IconDataExplorationOutlined diff --git a/src/IconDataExplorationOutlinedFilled.tsx b/src/IconDataExplorationOutlinedFilled.tsx index ceacfaf6e..580449b70 100644 --- a/src/IconDataExplorationOutlinedFilled.tsx +++ b/src/IconDataExplorationOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconDataExplorationOutlinedFilled: React.FC = ({ ) -export { IconDataExplorationOutlinedFilled as default } +export default IconDataExplorationOutlinedFilled diff --git a/src/IconDataExplorationRounded.tsx b/src/IconDataExplorationRounded.tsx index 83c880951..b4486332d 100644 --- a/src/IconDataExplorationRounded.tsx +++ b/src/IconDataExplorationRounded.tsx @@ -8,4 +8,4 @@ const IconDataExplorationRounded: React.FC = ({ ...props }) => ( ) -export { IconDataExplorationRounded as default } +export default IconDataExplorationRounded diff --git a/src/IconDataExplorationRoundedFilled.tsx b/src/IconDataExplorationRoundedFilled.tsx index adb231d88..5fea9f24d 100644 --- a/src/IconDataExplorationRoundedFilled.tsx +++ b/src/IconDataExplorationRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconDataExplorationRoundedFilled: React.FC = ({ ) -export { IconDataExplorationRoundedFilled as default } +export default IconDataExplorationRoundedFilled diff --git a/src/IconDataExplorationSharp.tsx b/src/IconDataExplorationSharp.tsx index 0effe68bf..08ba87ad5 100644 --- a/src/IconDataExplorationSharp.tsx +++ b/src/IconDataExplorationSharp.tsx @@ -8,4 +8,4 @@ const IconDataExplorationSharp: React.FC = ({ ...props }) => ( ) -export { IconDataExplorationSharp as default } +export default IconDataExplorationSharp diff --git a/src/IconDataExplorationSharpFilled.tsx b/src/IconDataExplorationSharpFilled.tsx index ca302e045..780e5ddc2 100644 --- a/src/IconDataExplorationSharpFilled.tsx +++ b/src/IconDataExplorationSharpFilled.tsx @@ -8,4 +8,4 @@ const IconDataExplorationSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconDataExplorationSharpFilled as default } +export default IconDataExplorationSharpFilled diff --git a/src/IconDataInfoAlertOutlined.tsx b/src/IconDataInfoAlertOutlined.tsx index 21d6dba7b..3d351691b 100644 --- a/src/IconDataInfoAlertOutlined.tsx +++ b/src/IconDataInfoAlertOutlined.tsx @@ -8,4 +8,4 @@ const IconDataInfoAlertOutlined: React.FC = ({ ...props }) => ( ) -export { IconDataInfoAlertOutlined as default } +export default IconDataInfoAlertOutlined diff --git a/src/IconDataInfoAlertOutlinedFilled.tsx b/src/IconDataInfoAlertOutlinedFilled.tsx index 663a605ee..139deaca7 100644 --- a/src/IconDataInfoAlertOutlinedFilled.tsx +++ b/src/IconDataInfoAlertOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconDataInfoAlertOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconDataInfoAlertOutlinedFilled as default } +export default IconDataInfoAlertOutlinedFilled diff --git a/src/IconDataInfoAlertRounded.tsx b/src/IconDataInfoAlertRounded.tsx index 9f8fade94..4cd65a641 100644 --- a/src/IconDataInfoAlertRounded.tsx +++ b/src/IconDataInfoAlertRounded.tsx @@ -8,4 +8,4 @@ const IconDataInfoAlertRounded: React.FC = ({ ...props }) => ( ) -export { IconDataInfoAlertRounded as default } +export default IconDataInfoAlertRounded diff --git a/src/IconDataInfoAlertRoundedFilled.tsx b/src/IconDataInfoAlertRoundedFilled.tsx index 42844f04f..ddfec2403 100644 --- a/src/IconDataInfoAlertRoundedFilled.tsx +++ b/src/IconDataInfoAlertRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconDataInfoAlertRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconDataInfoAlertRoundedFilled as default } +export default IconDataInfoAlertRoundedFilled diff --git a/src/IconDataInfoAlertSharp.tsx b/src/IconDataInfoAlertSharp.tsx index d2a78ecef..0587f2444 100644 --- a/src/IconDataInfoAlertSharp.tsx +++ b/src/IconDataInfoAlertSharp.tsx @@ -8,4 +8,4 @@ const IconDataInfoAlertSharp: React.FC = ({ ...props }) => ( ) -export { IconDataInfoAlertSharp as default } +export default IconDataInfoAlertSharp diff --git a/src/IconDataInfoAlertSharpFilled.tsx b/src/IconDataInfoAlertSharpFilled.tsx index c4178df44..952db2eeb 100644 --- a/src/IconDataInfoAlertSharpFilled.tsx +++ b/src/IconDataInfoAlertSharpFilled.tsx @@ -8,4 +8,4 @@ const IconDataInfoAlertSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconDataInfoAlertSharpFilled as default } +export default IconDataInfoAlertSharpFilled diff --git a/src/IconDataLossPreventionOutlined.tsx b/src/IconDataLossPreventionOutlined.tsx index 431304eb3..46b20363a 100644 --- a/src/IconDataLossPreventionOutlined.tsx +++ b/src/IconDataLossPreventionOutlined.tsx @@ -8,4 +8,4 @@ const IconDataLossPreventionOutlined: React.FC = ({ ...props }) => ( ) -export { IconDataLossPreventionOutlined as default } +export default IconDataLossPreventionOutlined diff --git a/src/IconDataLossPreventionOutlinedFilled.tsx b/src/IconDataLossPreventionOutlinedFilled.tsx index 26527a2d3..a6a115fa0 100644 --- a/src/IconDataLossPreventionOutlinedFilled.tsx +++ b/src/IconDataLossPreventionOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconDataLossPreventionOutlinedFilled: React.FC = ({ ) -export { IconDataLossPreventionOutlinedFilled as default } +export default IconDataLossPreventionOutlinedFilled diff --git a/src/IconDataLossPreventionRounded.tsx b/src/IconDataLossPreventionRounded.tsx index 5584e72d7..8de548e8b 100644 --- a/src/IconDataLossPreventionRounded.tsx +++ b/src/IconDataLossPreventionRounded.tsx @@ -8,4 +8,4 @@ const IconDataLossPreventionRounded: React.FC = ({ ...props }) => ( ) -export { IconDataLossPreventionRounded as default } +export default IconDataLossPreventionRounded diff --git a/src/IconDataLossPreventionRoundedFilled.tsx b/src/IconDataLossPreventionRoundedFilled.tsx index 0711cf534..14dae595d 100644 --- a/src/IconDataLossPreventionRoundedFilled.tsx +++ b/src/IconDataLossPreventionRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconDataLossPreventionRoundedFilled: React.FC = ({ ) -export { IconDataLossPreventionRoundedFilled as default } +export default IconDataLossPreventionRoundedFilled diff --git a/src/IconDataLossPreventionSharp.tsx b/src/IconDataLossPreventionSharp.tsx index 08a3ec6cd..1669de96f 100644 --- a/src/IconDataLossPreventionSharp.tsx +++ b/src/IconDataLossPreventionSharp.tsx @@ -8,4 +8,4 @@ const IconDataLossPreventionSharp: React.FC = ({ ...props }) => ( ) -export { IconDataLossPreventionSharp as default } +export default IconDataLossPreventionSharp diff --git a/src/IconDataLossPreventionSharpFilled.tsx b/src/IconDataLossPreventionSharpFilled.tsx index ebf9b3c20..f4747f404 100644 --- a/src/IconDataLossPreventionSharpFilled.tsx +++ b/src/IconDataLossPreventionSharpFilled.tsx @@ -10,4 +10,4 @@ const IconDataLossPreventionSharpFilled: React.FC = ({ ) -export { IconDataLossPreventionSharpFilled as default } +export default IconDataLossPreventionSharpFilled diff --git a/src/IconDataObjectOutlined.tsx b/src/IconDataObjectOutlined.tsx index 07e4d8726..9c6e2aa27 100644 --- a/src/IconDataObjectOutlined.tsx +++ b/src/IconDataObjectOutlined.tsx @@ -8,4 +8,4 @@ const IconDataObjectOutlined: React.FC = ({ ...props }) => ( ) -export { IconDataObjectOutlined as default } +export default IconDataObjectOutlined diff --git a/src/IconDataObjectOutlinedFilled.tsx b/src/IconDataObjectOutlinedFilled.tsx index f23684824..e94c8a6f7 100644 --- a/src/IconDataObjectOutlinedFilled.tsx +++ b/src/IconDataObjectOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconDataObjectOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconDataObjectOutlinedFilled as default } +export default IconDataObjectOutlinedFilled diff --git a/src/IconDataObjectRounded.tsx b/src/IconDataObjectRounded.tsx index 46c4a4117..fbcf3f9d2 100644 --- a/src/IconDataObjectRounded.tsx +++ b/src/IconDataObjectRounded.tsx @@ -8,4 +8,4 @@ const IconDataObjectRounded: React.FC = ({ ...props }) => ( ) -export { IconDataObjectRounded as default } +export default IconDataObjectRounded diff --git a/src/IconDataObjectRoundedFilled.tsx b/src/IconDataObjectRoundedFilled.tsx index 167002455..3d6b5b72b 100644 --- a/src/IconDataObjectRoundedFilled.tsx +++ b/src/IconDataObjectRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconDataObjectRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconDataObjectRoundedFilled as default } +export default IconDataObjectRoundedFilled diff --git a/src/IconDataObjectSharp.tsx b/src/IconDataObjectSharp.tsx index 8b1479ac9..6a10a53f2 100644 --- a/src/IconDataObjectSharp.tsx +++ b/src/IconDataObjectSharp.tsx @@ -8,4 +8,4 @@ const IconDataObjectSharp: React.FC = ({ ...props }) => ( ) -export { IconDataObjectSharp as default } +export default IconDataObjectSharp diff --git a/src/IconDataObjectSharpFilled.tsx b/src/IconDataObjectSharpFilled.tsx index 68e896990..87fa27824 100644 --- a/src/IconDataObjectSharpFilled.tsx +++ b/src/IconDataObjectSharpFilled.tsx @@ -8,4 +8,4 @@ const IconDataObjectSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconDataObjectSharpFilled as default } +export default IconDataObjectSharpFilled diff --git a/src/IconDataSaverOnOutlined.tsx b/src/IconDataSaverOnOutlined.tsx index bb7851eab..8473dfa7c 100644 --- a/src/IconDataSaverOnOutlined.tsx +++ b/src/IconDataSaverOnOutlined.tsx @@ -8,4 +8,4 @@ const IconDataSaverOnOutlined: React.FC = ({ ...props }) => ( ) -export { IconDataSaverOnOutlined as default } +export default IconDataSaverOnOutlined diff --git a/src/IconDataSaverOnOutlinedFilled.tsx b/src/IconDataSaverOnOutlinedFilled.tsx index eb984a2e0..58df07825 100644 --- a/src/IconDataSaverOnOutlinedFilled.tsx +++ b/src/IconDataSaverOnOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconDataSaverOnOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconDataSaverOnOutlinedFilled as default } +export default IconDataSaverOnOutlinedFilled diff --git a/src/IconDataSaverOnRounded.tsx b/src/IconDataSaverOnRounded.tsx index a172bc4cc..fb8931ae2 100644 --- a/src/IconDataSaverOnRounded.tsx +++ b/src/IconDataSaverOnRounded.tsx @@ -8,4 +8,4 @@ const IconDataSaverOnRounded: React.FC = ({ ...props }) => ( ) -export { IconDataSaverOnRounded as default } +export default IconDataSaverOnRounded diff --git a/src/IconDataSaverOnRoundedFilled.tsx b/src/IconDataSaverOnRoundedFilled.tsx index 94a72e1ea..5f51d59b1 100644 --- a/src/IconDataSaverOnRoundedFilled.tsx +++ b/src/IconDataSaverOnRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconDataSaverOnRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconDataSaverOnRoundedFilled as default } +export default IconDataSaverOnRoundedFilled diff --git a/src/IconDataSaverOnSharp.tsx b/src/IconDataSaverOnSharp.tsx index 5f2e94c90..61e258c91 100644 --- a/src/IconDataSaverOnSharp.tsx +++ b/src/IconDataSaverOnSharp.tsx @@ -8,4 +8,4 @@ const IconDataSaverOnSharp: React.FC = ({ ...props }) => ( ) -export { IconDataSaverOnSharp as default } +export default IconDataSaverOnSharp diff --git a/src/IconDataSaverOnSharpFilled.tsx b/src/IconDataSaverOnSharpFilled.tsx index 2d2cddb00..8cf6b210d 100644 --- a/src/IconDataSaverOnSharpFilled.tsx +++ b/src/IconDataSaverOnSharpFilled.tsx @@ -8,4 +8,4 @@ const IconDataSaverOnSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconDataSaverOnSharpFilled as default } +export default IconDataSaverOnSharpFilled diff --git a/src/IconDataTableOutlined.tsx b/src/IconDataTableOutlined.tsx index 6686d6c1e..4b3af1c42 100644 --- a/src/IconDataTableOutlined.tsx +++ b/src/IconDataTableOutlined.tsx @@ -8,4 +8,4 @@ const IconDataTableOutlined: React.FC = ({ ...props }) => ( ) -export { IconDataTableOutlined as default } +export default IconDataTableOutlined diff --git a/src/IconDataTableOutlinedFilled.tsx b/src/IconDataTableOutlinedFilled.tsx index edb057277..d47ad28dd 100644 --- a/src/IconDataTableOutlinedFilled.tsx +++ b/src/IconDataTableOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconDataTableOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconDataTableOutlinedFilled as default } +export default IconDataTableOutlinedFilled diff --git a/src/IconDataTableRounded.tsx b/src/IconDataTableRounded.tsx index c832ef582..8ce49ca09 100644 --- a/src/IconDataTableRounded.tsx +++ b/src/IconDataTableRounded.tsx @@ -8,4 +8,4 @@ const IconDataTableRounded: React.FC = ({ ...props }) => ( ) -export { IconDataTableRounded as default } +export default IconDataTableRounded diff --git a/src/IconDataTableRoundedFilled.tsx b/src/IconDataTableRoundedFilled.tsx index a80b1c1ab..10583c068 100644 --- a/src/IconDataTableRoundedFilled.tsx +++ b/src/IconDataTableRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconDataTableRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconDataTableRoundedFilled as default } +export default IconDataTableRoundedFilled diff --git a/src/IconDataTableSharp.tsx b/src/IconDataTableSharp.tsx index 3956b4381..cdec19cee 100644 --- a/src/IconDataTableSharp.tsx +++ b/src/IconDataTableSharp.tsx @@ -8,4 +8,4 @@ const IconDataTableSharp: React.FC = ({ ...props }) => ( ) -export { IconDataTableSharp as default } +export default IconDataTableSharp diff --git a/src/IconDataTableSharpFilled.tsx b/src/IconDataTableSharpFilled.tsx index 03a945060..f3024800d 100644 --- a/src/IconDataTableSharpFilled.tsx +++ b/src/IconDataTableSharpFilled.tsx @@ -8,4 +8,4 @@ const IconDataTableSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconDataTableSharpFilled as default } +export default IconDataTableSharpFilled diff --git a/src/IconDataThresholdingOutlined.tsx b/src/IconDataThresholdingOutlined.tsx index 1f35a82db..711ce53e0 100644 --- a/src/IconDataThresholdingOutlined.tsx +++ b/src/IconDataThresholdingOutlined.tsx @@ -8,4 +8,4 @@ const IconDataThresholdingOutlined: React.FC = ({ ...props }) => ( ) -export { IconDataThresholdingOutlined as default } +export default IconDataThresholdingOutlined diff --git a/src/IconDataThresholdingOutlinedFilled.tsx b/src/IconDataThresholdingOutlinedFilled.tsx index 8731b96af..7a581efa3 100644 --- a/src/IconDataThresholdingOutlinedFilled.tsx +++ b/src/IconDataThresholdingOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconDataThresholdingOutlinedFilled: React.FC = ({ ) -export { IconDataThresholdingOutlinedFilled as default } +export default IconDataThresholdingOutlinedFilled diff --git a/src/IconDataThresholdingRounded.tsx b/src/IconDataThresholdingRounded.tsx index 51e1b7258..2ef1f3eaf 100644 --- a/src/IconDataThresholdingRounded.tsx +++ b/src/IconDataThresholdingRounded.tsx @@ -8,4 +8,4 @@ const IconDataThresholdingRounded: React.FC = ({ ...props }) => ( ) -export { IconDataThresholdingRounded as default } +export default IconDataThresholdingRounded diff --git a/src/IconDataThresholdingRoundedFilled.tsx b/src/IconDataThresholdingRoundedFilled.tsx index 939c155ac..cc98a919a 100644 --- a/src/IconDataThresholdingRoundedFilled.tsx +++ b/src/IconDataThresholdingRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconDataThresholdingRoundedFilled: React.FC = ({ ) -export { IconDataThresholdingRoundedFilled as default } +export default IconDataThresholdingRoundedFilled diff --git a/src/IconDataThresholdingSharp.tsx b/src/IconDataThresholdingSharp.tsx index 414d22acc..41f21cafb 100644 --- a/src/IconDataThresholdingSharp.tsx +++ b/src/IconDataThresholdingSharp.tsx @@ -8,4 +8,4 @@ const IconDataThresholdingSharp: React.FC = ({ ...props }) => ( ) -export { IconDataThresholdingSharp as default } +export default IconDataThresholdingSharp diff --git a/src/IconDataThresholdingSharpFilled.tsx b/src/IconDataThresholdingSharpFilled.tsx index 54224f3bc..5d3d71434 100644 --- a/src/IconDataThresholdingSharpFilled.tsx +++ b/src/IconDataThresholdingSharpFilled.tsx @@ -8,4 +8,4 @@ const IconDataThresholdingSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconDataThresholdingSharpFilled as default } +export default IconDataThresholdingSharpFilled diff --git a/src/IconDataUsageOutlined.tsx b/src/IconDataUsageOutlined.tsx index f5047e5e5..2ddd58306 100644 --- a/src/IconDataUsageOutlined.tsx +++ b/src/IconDataUsageOutlined.tsx @@ -8,4 +8,4 @@ const IconDataUsageOutlined: React.FC = ({ ...props }) => ( ) -export { IconDataUsageOutlined as default } +export default IconDataUsageOutlined diff --git a/src/IconDataUsageOutlinedFilled.tsx b/src/IconDataUsageOutlinedFilled.tsx index a7b76e9e8..1c6bdcd95 100644 --- a/src/IconDataUsageOutlinedFilled.tsx +++ b/src/IconDataUsageOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconDataUsageOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconDataUsageOutlinedFilled as default } +export default IconDataUsageOutlinedFilled diff --git a/src/IconDataUsageRounded.tsx b/src/IconDataUsageRounded.tsx index e2a5b2aa2..c12360d44 100644 --- a/src/IconDataUsageRounded.tsx +++ b/src/IconDataUsageRounded.tsx @@ -8,4 +8,4 @@ const IconDataUsageRounded: React.FC = ({ ...props }) => ( ) -export { IconDataUsageRounded as default } +export default IconDataUsageRounded diff --git a/src/IconDataUsageRoundedFilled.tsx b/src/IconDataUsageRoundedFilled.tsx index a6ae02921..fb56eb16d 100644 --- a/src/IconDataUsageRoundedFilled.tsx +++ b/src/IconDataUsageRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconDataUsageRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconDataUsageRoundedFilled as default } +export default IconDataUsageRoundedFilled diff --git a/src/IconDataUsageSharp.tsx b/src/IconDataUsageSharp.tsx index caea25d87..049873c3d 100644 --- a/src/IconDataUsageSharp.tsx +++ b/src/IconDataUsageSharp.tsx @@ -8,4 +8,4 @@ const IconDataUsageSharp: React.FC = ({ ...props }) => ( ) -export { IconDataUsageSharp as default } +export default IconDataUsageSharp diff --git a/src/IconDataUsageSharpFilled.tsx b/src/IconDataUsageSharpFilled.tsx index 9bddf2af4..ed02beceb 100644 --- a/src/IconDataUsageSharpFilled.tsx +++ b/src/IconDataUsageSharpFilled.tsx @@ -8,4 +8,4 @@ const IconDataUsageSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconDataUsageSharpFilled as default } +export default IconDataUsageSharpFilled diff --git a/src/IconDatabaseOffOutlined.tsx b/src/IconDatabaseOffOutlined.tsx index 150c01749..3abcc4f8f 100644 --- a/src/IconDatabaseOffOutlined.tsx +++ b/src/IconDatabaseOffOutlined.tsx @@ -8,4 +8,4 @@ const IconDatabaseOffOutlined: React.FC = ({ ...props }) => ( ) -export { IconDatabaseOffOutlined as default } +export default IconDatabaseOffOutlined diff --git a/src/IconDatabaseOffOutlinedFilled.tsx b/src/IconDatabaseOffOutlinedFilled.tsx index 5e3d5c30c..169c8e784 100644 --- a/src/IconDatabaseOffOutlinedFilled.tsx +++ b/src/IconDatabaseOffOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconDatabaseOffOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconDatabaseOffOutlinedFilled as default } +export default IconDatabaseOffOutlinedFilled diff --git a/src/IconDatabaseOffRounded.tsx b/src/IconDatabaseOffRounded.tsx index 7c7b0c2a0..f305b924c 100644 --- a/src/IconDatabaseOffRounded.tsx +++ b/src/IconDatabaseOffRounded.tsx @@ -8,4 +8,4 @@ const IconDatabaseOffRounded: React.FC = ({ ...props }) => ( ) -export { IconDatabaseOffRounded as default } +export default IconDatabaseOffRounded diff --git a/src/IconDatabaseOffRoundedFilled.tsx b/src/IconDatabaseOffRoundedFilled.tsx index e34dfd23e..f7cfbf43c 100644 --- a/src/IconDatabaseOffRoundedFilled.tsx +++ b/src/IconDatabaseOffRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconDatabaseOffRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconDatabaseOffRoundedFilled as default } +export default IconDatabaseOffRoundedFilled diff --git a/src/IconDatabaseOffSharp.tsx b/src/IconDatabaseOffSharp.tsx index deddb75d1..c82ab420c 100644 --- a/src/IconDatabaseOffSharp.tsx +++ b/src/IconDatabaseOffSharp.tsx @@ -8,4 +8,4 @@ const IconDatabaseOffSharp: React.FC = ({ ...props }) => ( ) -export { IconDatabaseOffSharp as default } +export default IconDatabaseOffSharp diff --git a/src/IconDatabaseOffSharpFilled.tsx b/src/IconDatabaseOffSharpFilled.tsx index 433fc4cb3..b5ce274a6 100644 --- a/src/IconDatabaseOffSharpFilled.tsx +++ b/src/IconDatabaseOffSharpFilled.tsx @@ -8,4 +8,4 @@ const IconDatabaseOffSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconDatabaseOffSharpFilled as default } +export default IconDatabaseOffSharpFilled diff --git a/src/IconDatabaseOutlined.tsx b/src/IconDatabaseOutlined.tsx index 1f03ebd92..933af4516 100644 --- a/src/IconDatabaseOutlined.tsx +++ b/src/IconDatabaseOutlined.tsx @@ -8,4 +8,4 @@ const IconDatabaseOutlined: React.FC = ({ ...props }) => ( ) -export { IconDatabaseOutlined as default } +export default IconDatabaseOutlined diff --git a/src/IconDatabaseOutlinedFilled.tsx b/src/IconDatabaseOutlinedFilled.tsx index 9dedd25fa..99d4932be 100644 --- a/src/IconDatabaseOutlinedFilled.tsx +++ b/src/IconDatabaseOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconDatabaseOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconDatabaseOutlinedFilled as default } +export default IconDatabaseOutlinedFilled diff --git a/src/IconDatabaseRounded.tsx b/src/IconDatabaseRounded.tsx index 15b4bf681..6db36ccf6 100644 --- a/src/IconDatabaseRounded.tsx +++ b/src/IconDatabaseRounded.tsx @@ -8,4 +8,4 @@ const IconDatabaseRounded: React.FC = ({ ...props }) => ( ) -export { IconDatabaseRounded as default } +export default IconDatabaseRounded diff --git a/src/IconDatabaseRoundedFilled.tsx b/src/IconDatabaseRoundedFilled.tsx index 6f3060e67..073df5ff0 100644 --- a/src/IconDatabaseRoundedFilled.tsx +++ b/src/IconDatabaseRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconDatabaseRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconDatabaseRoundedFilled as default } +export default IconDatabaseRoundedFilled diff --git a/src/IconDatabaseSharp.tsx b/src/IconDatabaseSharp.tsx index 3f998232a..5964cdf06 100644 --- a/src/IconDatabaseSharp.tsx +++ b/src/IconDatabaseSharp.tsx @@ -8,4 +8,4 @@ const IconDatabaseSharp: React.FC = ({ ...props }) => ( ) -export { IconDatabaseSharp as default } +export default IconDatabaseSharp diff --git a/src/IconDatabaseSharpFilled.tsx b/src/IconDatabaseSharpFilled.tsx index 8c2c29107..ab7f9e2ba 100644 --- a/src/IconDatabaseSharpFilled.tsx +++ b/src/IconDatabaseSharpFilled.tsx @@ -8,4 +8,4 @@ const IconDatabaseSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconDatabaseSharpFilled as default } +export default IconDatabaseSharpFilled diff --git a/src/IconDatasetLinkedOutlined.tsx b/src/IconDatasetLinkedOutlined.tsx index 03e2babd5..045652ac2 100644 --- a/src/IconDatasetLinkedOutlined.tsx +++ b/src/IconDatasetLinkedOutlined.tsx @@ -8,4 +8,4 @@ const IconDatasetLinkedOutlined: React.FC = ({ ...props }) => ( ) -export { IconDatasetLinkedOutlined as default } +export default IconDatasetLinkedOutlined diff --git a/src/IconDatasetLinkedOutlinedFilled.tsx b/src/IconDatasetLinkedOutlinedFilled.tsx index 4069bc711..5cc722d60 100644 --- a/src/IconDatasetLinkedOutlinedFilled.tsx +++ b/src/IconDatasetLinkedOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconDatasetLinkedOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconDatasetLinkedOutlinedFilled as default } +export default IconDatasetLinkedOutlinedFilled diff --git a/src/IconDatasetLinkedRounded.tsx b/src/IconDatasetLinkedRounded.tsx index 2a7211b06..b12a3dad5 100644 --- a/src/IconDatasetLinkedRounded.tsx +++ b/src/IconDatasetLinkedRounded.tsx @@ -8,4 +8,4 @@ const IconDatasetLinkedRounded: React.FC = ({ ...props }) => ( ) -export { IconDatasetLinkedRounded as default } +export default IconDatasetLinkedRounded diff --git a/src/IconDatasetLinkedRoundedFilled.tsx b/src/IconDatasetLinkedRoundedFilled.tsx index ff39dbfea..4dcfdafa2 100644 --- a/src/IconDatasetLinkedRoundedFilled.tsx +++ b/src/IconDatasetLinkedRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconDatasetLinkedRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconDatasetLinkedRoundedFilled as default } +export default IconDatasetLinkedRoundedFilled diff --git a/src/IconDatasetLinkedSharp.tsx b/src/IconDatasetLinkedSharp.tsx index c6c2a00a9..28583d798 100644 --- a/src/IconDatasetLinkedSharp.tsx +++ b/src/IconDatasetLinkedSharp.tsx @@ -8,4 +8,4 @@ const IconDatasetLinkedSharp: React.FC = ({ ...props }) => ( ) -export { IconDatasetLinkedSharp as default } +export default IconDatasetLinkedSharp diff --git a/src/IconDatasetLinkedSharpFilled.tsx b/src/IconDatasetLinkedSharpFilled.tsx index 92776d9ce..34ead0979 100644 --- a/src/IconDatasetLinkedSharpFilled.tsx +++ b/src/IconDatasetLinkedSharpFilled.tsx @@ -8,4 +8,4 @@ const IconDatasetLinkedSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconDatasetLinkedSharpFilled as default } +export default IconDatasetLinkedSharpFilled diff --git a/src/IconDatasetOutlined.tsx b/src/IconDatasetOutlined.tsx index f42d8d64a..522b1d8ce 100644 --- a/src/IconDatasetOutlined.tsx +++ b/src/IconDatasetOutlined.tsx @@ -8,4 +8,4 @@ const IconDatasetOutlined: React.FC = ({ ...props }) => ( ) -export { IconDatasetOutlined as default } +export default IconDatasetOutlined diff --git a/src/IconDatasetOutlinedFilled.tsx b/src/IconDatasetOutlinedFilled.tsx index 785e0fb9e..df6d02ced 100644 --- a/src/IconDatasetOutlinedFilled.tsx +++ b/src/IconDatasetOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconDatasetOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconDatasetOutlinedFilled as default } +export default IconDatasetOutlinedFilled diff --git a/src/IconDatasetRounded.tsx b/src/IconDatasetRounded.tsx index b625e2de5..8ea29266d 100644 --- a/src/IconDatasetRounded.tsx +++ b/src/IconDatasetRounded.tsx @@ -8,4 +8,4 @@ const IconDatasetRounded: React.FC = ({ ...props }) => ( ) -export { IconDatasetRounded as default } +export default IconDatasetRounded diff --git a/src/IconDatasetRoundedFilled.tsx b/src/IconDatasetRoundedFilled.tsx index ced6c6985..fbb0c5143 100644 --- a/src/IconDatasetRoundedFilled.tsx +++ b/src/IconDatasetRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconDatasetRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconDatasetRoundedFilled as default } +export default IconDatasetRoundedFilled diff --git a/src/IconDatasetSharp.tsx b/src/IconDatasetSharp.tsx index 2a77340f9..f85ffe777 100644 --- a/src/IconDatasetSharp.tsx +++ b/src/IconDatasetSharp.tsx @@ -8,4 +8,4 @@ const IconDatasetSharp: React.FC = ({ ...props }) => ( ) -export { IconDatasetSharp as default } +export default IconDatasetSharp diff --git a/src/IconDatasetSharpFilled.tsx b/src/IconDatasetSharpFilled.tsx index b563caadb..7c2ee9a01 100644 --- a/src/IconDatasetSharpFilled.tsx +++ b/src/IconDatasetSharpFilled.tsx @@ -8,4 +8,4 @@ const IconDatasetSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconDatasetSharpFilled as default } +export default IconDatasetSharpFilled diff --git a/src/IconDateRangeOutlined.tsx b/src/IconDateRangeOutlined.tsx index 615dee53e..c1fee300a 100644 --- a/src/IconDateRangeOutlined.tsx +++ b/src/IconDateRangeOutlined.tsx @@ -8,4 +8,4 @@ const IconDateRangeOutlined: React.FC = ({ ...props }) => ( ) -export { IconDateRangeOutlined as default } +export default IconDateRangeOutlined diff --git a/src/IconDateRangeOutlinedFilled.tsx b/src/IconDateRangeOutlinedFilled.tsx index f50a61d79..53fac1913 100644 --- a/src/IconDateRangeOutlinedFilled.tsx +++ b/src/IconDateRangeOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconDateRangeOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconDateRangeOutlinedFilled as default } +export default IconDateRangeOutlinedFilled diff --git a/src/IconDateRangeRounded.tsx b/src/IconDateRangeRounded.tsx index 03a687986..6e9d6b0a4 100644 --- a/src/IconDateRangeRounded.tsx +++ b/src/IconDateRangeRounded.tsx @@ -8,4 +8,4 @@ const IconDateRangeRounded: React.FC = ({ ...props }) => ( ) -export { IconDateRangeRounded as default } +export default IconDateRangeRounded diff --git a/src/IconDateRangeRoundedFilled.tsx b/src/IconDateRangeRoundedFilled.tsx index 085507e31..66d3734e0 100644 --- a/src/IconDateRangeRoundedFilled.tsx +++ b/src/IconDateRangeRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconDateRangeRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconDateRangeRoundedFilled as default } +export default IconDateRangeRoundedFilled diff --git a/src/IconDateRangeSharp.tsx b/src/IconDateRangeSharp.tsx index 3fe01a6d7..36ca535de 100644 --- a/src/IconDateRangeSharp.tsx +++ b/src/IconDateRangeSharp.tsx @@ -8,4 +8,4 @@ const IconDateRangeSharp: React.FC = ({ ...props }) => ( ) -export { IconDateRangeSharp as default } +export default IconDateRangeSharp diff --git a/src/IconDateRangeSharpFilled.tsx b/src/IconDateRangeSharpFilled.tsx index febdad112..5d073c687 100644 --- a/src/IconDateRangeSharpFilled.tsx +++ b/src/IconDateRangeSharpFilled.tsx @@ -8,4 +8,4 @@ const IconDateRangeSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconDateRangeSharpFilled as default } +export default IconDateRangeSharpFilled diff --git a/src/IconDeblurOutlined.tsx b/src/IconDeblurOutlined.tsx index d02108b79..68472a9d9 100644 --- a/src/IconDeblurOutlined.tsx +++ b/src/IconDeblurOutlined.tsx @@ -8,4 +8,4 @@ const IconDeblurOutlined: React.FC = ({ ...props }) => ( ) -export { IconDeblurOutlined as default } +export default IconDeblurOutlined diff --git a/src/IconDeblurOutlinedFilled.tsx b/src/IconDeblurOutlinedFilled.tsx index f8ad4400d..7df5e2b29 100644 --- a/src/IconDeblurOutlinedFilled.tsx +++ b/src/IconDeblurOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconDeblurOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconDeblurOutlinedFilled as default } +export default IconDeblurOutlinedFilled diff --git a/src/IconDeblurRounded.tsx b/src/IconDeblurRounded.tsx index b48f5b1fe..74441f81a 100644 --- a/src/IconDeblurRounded.tsx +++ b/src/IconDeblurRounded.tsx @@ -8,4 +8,4 @@ const IconDeblurRounded: React.FC = ({ ...props }) => ( ) -export { IconDeblurRounded as default } +export default IconDeblurRounded diff --git a/src/IconDeblurRoundedFilled.tsx b/src/IconDeblurRoundedFilled.tsx index b110e0198..9dd3c82ab 100644 --- a/src/IconDeblurRoundedFilled.tsx +++ b/src/IconDeblurRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconDeblurRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconDeblurRoundedFilled as default } +export default IconDeblurRoundedFilled diff --git a/src/IconDeblurSharp.tsx b/src/IconDeblurSharp.tsx index d7623a2bd..7cbd4cb05 100644 --- a/src/IconDeblurSharp.tsx +++ b/src/IconDeblurSharp.tsx @@ -8,4 +8,4 @@ const IconDeblurSharp: React.FC = ({ ...props }) => ( ) -export { IconDeblurSharp as default } +export default IconDeblurSharp diff --git a/src/IconDeblurSharpFilled.tsx b/src/IconDeblurSharpFilled.tsx index d8b3fc0ea..780eeac1c 100644 --- a/src/IconDeblurSharpFilled.tsx +++ b/src/IconDeblurSharpFilled.tsx @@ -8,4 +8,4 @@ const IconDeblurSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconDeblurSharpFilled as default } +export default IconDeblurSharpFilled diff --git a/src/IconDeceasedOutlined.tsx b/src/IconDeceasedOutlined.tsx index 6ee6a9d90..770775c42 100644 --- a/src/IconDeceasedOutlined.tsx +++ b/src/IconDeceasedOutlined.tsx @@ -8,4 +8,4 @@ const IconDeceasedOutlined: React.FC = ({ ...props }) => ( ) -export { IconDeceasedOutlined as default } +export default IconDeceasedOutlined diff --git a/src/IconDeceasedOutlinedFilled.tsx b/src/IconDeceasedOutlinedFilled.tsx index 5c8e9512e..6471117e4 100644 --- a/src/IconDeceasedOutlinedFilled.tsx +++ b/src/IconDeceasedOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconDeceasedOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconDeceasedOutlinedFilled as default } +export default IconDeceasedOutlinedFilled diff --git a/src/IconDeceasedRounded.tsx b/src/IconDeceasedRounded.tsx index 157ec4846..c01fec6b1 100644 --- a/src/IconDeceasedRounded.tsx +++ b/src/IconDeceasedRounded.tsx @@ -8,4 +8,4 @@ const IconDeceasedRounded: React.FC = ({ ...props }) => ( ) -export { IconDeceasedRounded as default } +export default IconDeceasedRounded diff --git a/src/IconDeceasedRoundedFilled.tsx b/src/IconDeceasedRoundedFilled.tsx index 462399a95..598b6a1c5 100644 --- a/src/IconDeceasedRoundedFilled.tsx +++ b/src/IconDeceasedRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconDeceasedRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconDeceasedRoundedFilled as default } +export default IconDeceasedRoundedFilled diff --git a/src/IconDeceasedSharp.tsx b/src/IconDeceasedSharp.tsx index aec66dfc6..95037d67d 100644 --- a/src/IconDeceasedSharp.tsx +++ b/src/IconDeceasedSharp.tsx @@ -8,4 +8,4 @@ const IconDeceasedSharp: React.FC = ({ ...props }) => ( ) -export { IconDeceasedSharp as default } +export default IconDeceasedSharp diff --git a/src/IconDeceasedSharpFilled.tsx b/src/IconDeceasedSharpFilled.tsx index 483c453a0..2b4e3ac76 100644 --- a/src/IconDeceasedSharpFilled.tsx +++ b/src/IconDeceasedSharpFilled.tsx @@ -8,4 +8,4 @@ const IconDeceasedSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconDeceasedSharpFilled as default } +export default IconDeceasedSharpFilled diff --git a/src/IconDecimalDecreaseOutlined.tsx b/src/IconDecimalDecreaseOutlined.tsx index ba4e9eb76..cd854ce5c 100644 --- a/src/IconDecimalDecreaseOutlined.tsx +++ b/src/IconDecimalDecreaseOutlined.tsx @@ -8,4 +8,4 @@ const IconDecimalDecreaseOutlined: React.FC = ({ ...props }) => ( ) -export { IconDecimalDecreaseOutlined as default } +export default IconDecimalDecreaseOutlined diff --git a/src/IconDecimalDecreaseOutlinedFilled.tsx b/src/IconDecimalDecreaseOutlinedFilled.tsx index a8703e57b..5e3660683 100644 --- a/src/IconDecimalDecreaseOutlinedFilled.tsx +++ b/src/IconDecimalDecreaseOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconDecimalDecreaseOutlinedFilled: React.FC = ({ ) -export { IconDecimalDecreaseOutlinedFilled as default } +export default IconDecimalDecreaseOutlinedFilled diff --git a/src/IconDecimalDecreaseRounded.tsx b/src/IconDecimalDecreaseRounded.tsx index 2f35c1c9e..05278ae41 100644 --- a/src/IconDecimalDecreaseRounded.tsx +++ b/src/IconDecimalDecreaseRounded.tsx @@ -8,4 +8,4 @@ const IconDecimalDecreaseRounded: React.FC = ({ ...props }) => ( ) -export { IconDecimalDecreaseRounded as default } +export default IconDecimalDecreaseRounded diff --git a/src/IconDecimalDecreaseRoundedFilled.tsx b/src/IconDecimalDecreaseRoundedFilled.tsx index 6656713e2..2cfbdbdfe 100644 --- a/src/IconDecimalDecreaseRoundedFilled.tsx +++ b/src/IconDecimalDecreaseRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconDecimalDecreaseRoundedFilled: React.FC = ({ ) -export { IconDecimalDecreaseRoundedFilled as default } +export default IconDecimalDecreaseRoundedFilled diff --git a/src/IconDecimalDecreaseSharp.tsx b/src/IconDecimalDecreaseSharp.tsx index e55d1e650..7cdf39f13 100644 --- a/src/IconDecimalDecreaseSharp.tsx +++ b/src/IconDecimalDecreaseSharp.tsx @@ -8,4 +8,4 @@ const IconDecimalDecreaseSharp: React.FC = ({ ...props }) => ( ) -export { IconDecimalDecreaseSharp as default } +export default IconDecimalDecreaseSharp diff --git a/src/IconDecimalDecreaseSharpFilled.tsx b/src/IconDecimalDecreaseSharpFilled.tsx index 4e7155315..d5847da93 100644 --- a/src/IconDecimalDecreaseSharpFilled.tsx +++ b/src/IconDecimalDecreaseSharpFilled.tsx @@ -8,4 +8,4 @@ const IconDecimalDecreaseSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconDecimalDecreaseSharpFilled as default } +export default IconDecimalDecreaseSharpFilled diff --git a/src/IconDecimalIncreaseOutlined.tsx b/src/IconDecimalIncreaseOutlined.tsx index 721e78ad5..cbc71969a 100644 --- a/src/IconDecimalIncreaseOutlined.tsx +++ b/src/IconDecimalIncreaseOutlined.tsx @@ -8,4 +8,4 @@ const IconDecimalIncreaseOutlined: React.FC = ({ ...props }) => ( ) -export { IconDecimalIncreaseOutlined as default } +export default IconDecimalIncreaseOutlined diff --git a/src/IconDecimalIncreaseOutlinedFilled.tsx b/src/IconDecimalIncreaseOutlinedFilled.tsx index da2a049cb..d4cb6ff96 100644 --- a/src/IconDecimalIncreaseOutlinedFilled.tsx +++ b/src/IconDecimalIncreaseOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconDecimalIncreaseOutlinedFilled: React.FC = ({ ) -export { IconDecimalIncreaseOutlinedFilled as default } +export default IconDecimalIncreaseOutlinedFilled diff --git a/src/IconDecimalIncreaseRounded.tsx b/src/IconDecimalIncreaseRounded.tsx index f4a5b8515..75723ad91 100644 --- a/src/IconDecimalIncreaseRounded.tsx +++ b/src/IconDecimalIncreaseRounded.tsx @@ -8,4 +8,4 @@ const IconDecimalIncreaseRounded: React.FC = ({ ...props }) => ( ) -export { IconDecimalIncreaseRounded as default } +export default IconDecimalIncreaseRounded diff --git a/src/IconDecimalIncreaseRoundedFilled.tsx b/src/IconDecimalIncreaseRoundedFilled.tsx index 77637492f..d1f6a4e5d 100644 --- a/src/IconDecimalIncreaseRoundedFilled.tsx +++ b/src/IconDecimalIncreaseRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconDecimalIncreaseRoundedFilled: React.FC = ({ ) -export { IconDecimalIncreaseRoundedFilled as default } +export default IconDecimalIncreaseRoundedFilled diff --git a/src/IconDecimalIncreaseSharp.tsx b/src/IconDecimalIncreaseSharp.tsx index f1a552903..77f6d08d0 100644 --- a/src/IconDecimalIncreaseSharp.tsx +++ b/src/IconDecimalIncreaseSharp.tsx @@ -8,4 +8,4 @@ const IconDecimalIncreaseSharp: React.FC = ({ ...props }) => ( ) -export { IconDecimalIncreaseSharp as default } +export default IconDecimalIncreaseSharp diff --git a/src/IconDecimalIncreaseSharpFilled.tsx b/src/IconDecimalIncreaseSharpFilled.tsx index 98d0dbdc1..42a0962f2 100644 --- a/src/IconDecimalIncreaseSharpFilled.tsx +++ b/src/IconDecimalIncreaseSharpFilled.tsx @@ -8,4 +8,4 @@ const IconDecimalIncreaseSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconDecimalIncreaseSharpFilled as default } +export default IconDecimalIncreaseSharpFilled diff --git a/src/IconDeckOutlined.tsx b/src/IconDeckOutlined.tsx index 01ae218c6..a98a5eb18 100644 --- a/src/IconDeckOutlined.tsx +++ b/src/IconDeckOutlined.tsx @@ -8,4 +8,4 @@ const IconDeckOutlined: React.FC = ({ ...props }) => ( ) -export { IconDeckOutlined as default } +export default IconDeckOutlined diff --git a/src/IconDeckOutlinedFilled.tsx b/src/IconDeckOutlinedFilled.tsx index bd40a609f..4fc916ae5 100644 --- a/src/IconDeckOutlinedFilled.tsx +++ b/src/IconDeckOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconDeckOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconDeckOutlinedFilled as default } +export default IconDeckOutlinedFilled diff --git a/src/IconDeckRounded.tsx b/src/IconDeckRounded.tsx index d036cbe09..be527fc44 100644 --- a/src/IconDeckRounded.tsx +++ b/src/IconDeckRounded.tsx @@ -8,4 +8,4 @@ const IconDeckRounded: React.FC = ({ ...props }) => ( ) -export { IconDeckRounded as default } +export default IconDeckRounded diff --git a/src/IconDeckRoundedFilled.tsx b/src/IconDeckRoundedFilled.tsx index da11e73cf..5cbf6152f 100644 --- a/src/IconDeckRoundedFilled.tsx +++ b/src/IconDeckRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconDeckRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconDeckRoundedFilled as default } +export default IconDeckRoundedFilled diff --git a/src/IconDeckSharp.tsx b/src/IconDeckSharp.tsx index 81d140e40..960ad626d 100644 --- a/src/IconDeckSharp.tsx +++ b/src/IconDeckSharp.tsx @@ -8,4 +8,4 @@ const IconDeckSharp: React.FC = ({ ...props }) => ( ) -export { IconDeckSharp as default } +export default IconDeckSharp diff --git a/src/IconDeckSharpFilled.tsx b/src/IconDeckSharpFilled.tsx index ce894f3bf..1772c2e92 100644 --- a/src/IconDeckSharpFilled.tsx +++ b/src/IconDeckSharpFilled.tsx @@ -8,4 +8,4 @@ const IconDeckSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconDeckSharpFilled as default } +export default IconDeckSharpFilled diff --git a/src/IconDehazeOutlined.tsx b/src/IconDehazeOutlined.tsx index bc22646c9..a277e28b2 100644 --- a/src/IconDehazeOutlined.tsx +++ b/src/IconDehazeOutlined.tsx @@ -8,4 +8,4 @@ const IconDehazeOutlined: React.FC = ({ ...props }) => ( ) -export { IconDehazeOutlined as default } +export default IconDehazeOutlined diff --git a/src/IconDehazeOutlinedFilled.tsx b/src/IconDehazeOutlinedFilled.tsx index 4c2cf4916..ed68d889d 100644 --- a/src/IconDehazeOutlinedFilled.tsx +++ b/src/IconDehazeOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconDehazeOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconDehazeOutlinedFilled as default } +export default IconDehazeOutlinedFilled diff --git a/src/IconDehazeRounded.tsx b/src/IconDehazeRounded.tsx index c7c011635..8f8d19aa4 100644 --- a/src/IconDehazeRounded.tsx +++ b/src/IconDehazeRounded.tsx @@ -8,4 +8,4 @@ const IconDehazeRounded: React.FC = ({ ...props }) => ( ) -export { IconDehazeRounded as default } +export default IconDehazeRounded diff --git a/src/IconDehazeRoundedFilled.tsx b/src/IconDehazeRoundedFilled.tsx index 7c657ac2f..53f447850 100644 --- a/src/IconDehazeRoundedFilled.tsx +++ b/src/IconDehazeRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconDehazeRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconDehazeRoundedFilled as default } +export default IconDehazeRoundedFilled diff --git a/src/IconDehazeSharp.tsx b/src/IconDehazeSharp.tsx index 8a0cfb128..36309f2a8 100644 --- a/src/IconDehazeSharp.tsx +++ b/src/IconDehazeSharp.tsx @@ -8,4 +8,4 @@ const IconDehazeSharp: React.FC = ({ ...props }) => ( ) -export { IconDehazeSharp as default } +export default IconDehazeSharp diff --git a/src/IconDehazeSharpFilled.tsx b/src/IconDehazeSharpFilled.tsx index 5f295e0ea..813d45072 100644 --- a/src/IconDehazeSharpFilled.tsx +++ b/src/IconDehazeSharpFilled.tsx @@ -8,4 +8,4 @@ const IconDehazeSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconDehazeSharpFilled as default } +export default IconDehazeSharpFilled diff --git a/src/IconDeleteForeverOutlined.tsx b/src/IconDeleteForeverOutlined.tsx index f001e055b..271369fcd 100644 --- a/src/IconDeleteForeverOutlined.tsx +++ b/src/IconDeleteForeverOutlined.tsx @@ -8,4 +8,4 @@ const IconDeleteForeverOutlined: React.FC = ({ ...props }) => ( ) -export { IconDeleteForeverOutlined as default } +export default IconDeleteForeverOutlined diff --git a/src/IconDeleteForeverOutlinedFilled.tsx b/src/IconDeleteForeverOutlinedFilled.tsx index e0c939df0..d31d5ef50 100644 --- a/src/IconDeleteForeverOutlinedFilled.tsx +++ b/src/IconDeleteForeverOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconDeleteForeverOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconDeleteForeverOutlinedFilled as default } +export default IconDeleteForeverOutlinedFilled diff --git a/src/IconDeleteForeverRounded.tsx b/src/IconDeleteForeverRounded.tsx index e944e3398..b9019ce0c 100644 --- a/src/IconDeleteForeverRounded.tsx +++ b/src/IconDeleteForeverRounded.tsx @@ -8,4 +8,4 @@ const IconDeleteForeverRounded: React.FC = ({ ...props }) => ( ) -export { IconDeleteForeverRounded as default } +export default IconDeleteForeverRounded diff --git a/src/IconDeleteForeverRoundedFilled.tsx b/src/IconDeleteForeverRoundedFilled.tsx index 2cb07d22d..5791eb54d 100644 --- a/src/IconDeleteForeverRoundedFilled.tsx +++ b/src/IconDeleteForeverRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconDeleteForeverRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconDeleteForeverRoundedFilled as default } +export default IconDeleteForeverRoundedFilled diff --git a/src/IconDeleteForeverSharp.tsx b/src/IconDeleteForeverSharp.tsx index 8792b8db8..0150d9144 100644 --- a/src/IconDeleteForeverSharp.tsx +++ b/src/IconDeleteForeverSharp.tsx @@ -8,4 +8,4 @@ const IconDeleteForeverSharp: React.FC = ({ ...props }) => ( ) -export { IconDeleteForeverSharp as default } +export default IconDeleteForeverSharp diff --git a/src/IconDeleteForeverSharpFilled.tsx b/src/IconDeleteForeverSharpFilled.tsx index 51075189d..0f05c1ed7 100644 --- a/src/IconDeleteForeverSharpFilled.tsx +++ b/src/IconDeleteForeverSharpFilled.tsx @@ -8,4 +8,4 @@ const IconDeleteForeverSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconDeleteForeverSharpFilled as default } +export default IconDeleteForeverSharpFilled diff --git a/src/IconDeleteHistoryOutlined.tsx b/src/IconDeleteHistoryOutlined.tsx index 8c44ae204..252ba60ba 100644 --- a/src/IconDeleteHistoryOutlined.tsx +++ b/src/IconDeleteHistoryOutlined.tsx @@ -8,4 +8,4 @@ const IconDeleteHistoryOutlined: React.FC = ({ ...props }) => ( ) -export { IconDeleteHistoryOutlined as default } +export default IconDeleteHistoryOutlined diff --git a/src/IconDeleteHistoryOutlinedFilled.tsx b/src/IconDeleteHistoryOutlinedFilled.tsx index 8978e4e78..5e6910528 100644 --- a/src/IconDeleteHistoryOutlinedFilled.tsx +++ b/src/IconDeleteHistoryOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconDeleteHistoryOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconDeleteHistoryOutlinedFilled as default } +export default IconDeleteHistoryOutlinedFilled diff --git a/src/IconDeleteHistoryRounded.tsx b/src/IconDeleteHistoryRounded.tsx index 24370affe..a04bdd847 100644 --- a/src/IconDeleteHistoryRounded.tsx +++ b/src/IconDeleteHistoryRounded.tsx @@ -8,4 +8,4 @@ const IconDeleteHistoryRounded: React.FC = ({ ...props }) => ( ) -export { IconDeleteHistoryRounded as default } +export default IconDeleteHistoryRounded diff --git a/src/IconDeleteHistoryRoundedFilled.tsx b/src/IconDeleteHistoryRoundedFilled.tsx index 16457800b..42fb05988 100644 --- a/src/IconDeleteHistoryRoundedFilled.tsx +++ b/src/IconDeleteHistoryRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconDeleteHistoryRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconDeleteHistoryRoundedFilled as default } +export default IconDeleteHistoryRoundedFilled diff --git a/src/IconDeleteHistorySharp.tsx b/src/IconDeleteHistorySharp.tsx index 4643f9131..73fc90fc3 100644 --- a/src/IconDeleteHistorySharp.tsx +++ b/src/IconDeleteHistorySharp.tsx @@ -8,4 +8,4 @@ const IconDeleteHistorySharp: React.FC = ({ ...props }) => ( ) -export { IconDeleteHistorySharp as default } +export default IconDeleteHistorySharp diff --git a/src/IconDeleteHistorySharpFilled.tsx b/src/IconDeleteHistorySharpFilled.tsx index bdc1c8564..141b71dae 100644 --- a/src/IconDeleteHistorySharpFilled.tsx +++ b/src/IconDeleteHistorySharpFilled.tsx @@ -8,4 +8,4 @@ const IconDeleteHistorySharpFilled: React.FC = ({ ...props }) => ( ) -export { IconDeleteHistorySharpFilled as default } +export default IconDeleteHistorySharpFilled diff --git a/src/IconDeleteOutlined.tsx b/src/IconDeleteOutlined.tsx index c50bf589a..92c0aefc7 100644 --- a/src/IconDeleteOutlined.tsx +++ b/src/IconDeleteOutlined.tsx @@ -8,4 +8,4 @@ const IconDeleteOutlined: React.FC = ({ ...props }) => ( ) -export { IconDeleteOutlined as default } +export default IconDeleteOutlined diff --git a/src/IconDeleteOutlinedFilled.tsx b/src/IconDeleteOutlinedFilled.tsx index 692e823da..ee2e68d53 100644 --- a/src/IconDeleteOutlinedFilled.tsx +++ b/src/IconDeleteOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconDeleteOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconDeleteOutlinedFilled as default } +export default IconDeleteOutlinedFilled diff --git a/src/IconDeleteRounded.tsx b/src/IconDeleteRounded.tsx index 737e38758..b54abe0b8 100644 --- a/src/IconDeleteRounded.tsx +++ b/src/IconDeleteRounded.tsx @@ -8,4 +8,4 @@ const IconDeleteRounded: React.FC = ({ ...props }) => ( ) -export { IconDeleteRounded as default } +export default IconDeleteRounded diff --git a/src/IconDeleteRoundedFilled.tsx b/src/IconDeleteRoundedFilled.tsx index 25d4b90b3..b97702533 100644 --- a/src/IconDeleteRoundedFilled.tsx +++ b/src/IconDeleteRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconDeleteRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconDeleteRoundedFilled as default } +export default IconDeleteRoundedFilled diff --git a/src/IconDeleteSharp.tsx b/src/IconDeleteSharp.tsx index 56e96290a..24f4a4bf8 100644 --- a/src/IconDeleteSharp.tsx +++ b/src/IconDeleteSharp.tsx @@ -8,4 +8,4 @@ const IconDeleteSharp: React.FC = ({ ...props }) => ( ) -export { IconDeleteSharp as default } +export default IconDeleteSharp diff --git a/src/IconDeleteSharpFilled.tsx b/src/IconDeleteSharpFilled.tsx index 479d6249a..e44afac98 100644 --- a/src/IconDeleteSharpFilled.tsx +++ b/src/IconDeleteSharpFilled.tsx @@ -8,4 +8,4 @@ const IconDeleteSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconDeleteSharpFilled as default } +export default IconDeleteSharpFilled diff --git a/src/IconDeleteSweepOutlined.tsx b/src/IconDeleteSweepOutlined.tsx index 1b2960146..7c5aeca33 100644 --- a/src/IconDeleteSweepOutlined.tsx +++ b/src/IconDeleteSweepOutlined.tsx @@ -8,4 +8,4 @@ const IconDeleteSweepOutlined: React.FC = ({ ...props }) => ( ) -export { IconDeleteSweepOutlined as default } +export default IconDeleteSweepOutlined diff --git a/src/IconDeleteSweepOutlinedFilled.tsx b/src/IconDeleteSweepOutlinedFilled.tsx index 880b74afb..a5e885e11 100644 --- a/src/IconDeleteSweepOutlinedFilled.tsx +++ b/src/IconDeleteSweepOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconDeleteSweepOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconDeleteSweepOutlinedFilled as default } +export default IconDeleteSweepOutlinedFilled diff --git a/src/IconDeleteSweepRounded.tsx b/src/IconDeleteSweepRounded.tsx index 1b7e0e2f4..a5edd2390 100644 --- a/src/IconDeleteSweepRounded.tsx +++ b/src/IconDeleteSweepRounded.tsx @@ -8,4 +8,4 @@ const IconDeleteSweepRounded: React.FC = ({ ...props }) => ( ) -export { IconDeleteSweepRounded as default } +export default IconDeleteSweepRounded diff --git a/src/IconDeleteSweepRoundedFilled.tsx b/src/IconDeleteSweepRoundedFilled.tsx index 0c2974daf..18197c864 100644 --- a/src/IconDeleteSweepRoundedFilled.tsx +++ b/src/IconDeleteSweepRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconDeleteSweepRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconDeleteSweepRoundedFilled as default } +export default IconDeleteSweepRoundedFilled diff --git a/src/IconDeleteSweepSharp.tsx b/src/IconDeleteSweepSharp.tsx index 2725f71cb..b1e0c4e60 100644 --- a/src/IconDeleteSweepSharp.tsx +++ b/src/IconDeleteSweepSharp.tsx @@ -8,4 +8,4 @@ const IconDeleteSweepSharp: React.FC = ({ ...props }) => ( ) -export { IconDeleteSweepSharp as default } +export default IconDeleteSweepSharp diff --git a/src/IconDeleteSweepSharpFilled.tsx b/src/IconDeleteSweepSharpFilled.tsx index bd43567d4..e34ef7e62 100644 --- a/src/IconDeleteSweepSharpFilled.tsx +++ b/src/IconDeleteSweepSharpFilled.tsx @@ -8,4 +8,4 @@ const IconDeleteSweepSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconDeleteSweepSharpFilled as default } +export default IconDeleteSweepSharpFilled diff --git a/src/IconDemographyOutlined.tsx b/src/IconDemographyOutlined.tsx index 14dc52b14..a61cff813 100644 --- a/src/IconDemographyOutlined.tsx +++ b/src/IconDemographyOutlined.tsx @@ -8,4 +8,4 @@ const IconDemographyOutlined: React.FC = ({ ...props }) => ( ) -export { IconDemographyOutlined as default } +export default IconDemographyOutlined diff --git a/src/IconDemographyOutlinedFilled.tsx b/src/IconDemographyOutlinedFilled.tsx index d72ffac5d..8d308d005 100644 --- a/src/IconDemographyOutlinedFilled.tsx +++ b/src/IconDemographyOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconDemographyOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconDemographyOutlinedFilled as default } +export default IconDemographyOutlinedFilled diff --git a/src/IconDemographyRounded.tsx b/src/IconDemographyRounded.tsx index 21a6e4a37..eb85ad939 100644 --- a/src/IconDemographyRounded.tsx +++ b/src/IconDemographyRounded.tsx @@ -8,4 +8,4 @@ const IconDemographyRounded: React.FC = ({ ...props }) => ( ) -export { IconDemographyRounded as default } +export default IconDemographyRounded diff --git a/src/IconDemographyRoundedFilled.tsx b/src/IconDemographyRoundedFilled.tsx index da412853e..0f9a6326e 100644 --- a/src/IconDemographyRoundedFilled.tsx +++ b/src/IconDemographyRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconDemographyRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconDemographyRoundedFilled as default } +export default IconDemographyRoundedFilled diff --git a/src/IconDemographySharp.tsx b/src/IconDemographySharp.tsx index 7244175cc..488806056 100644 --- a/src/IconDemographySharp.tsx +++ b/src/IconDemographySharp.tsx @@ -8,4 +8,4 @@ const IconDemographySharp: React.FC = ({ ...props }) => ( ) -export { IconDemographySharp as default } +export default IconDemographySharp diff --git a/src/IconDemographySharpFilled.tsx b/src/IconDemographySharpFilled.tsx index 54b9e7a1f..43fea26e8 100644 --- a/src/IconDemographySharpFilled.tsx +++ b/src/IconDemographySharpFilled.tsx @@ -8,4 +8,4 @@ const IconDemographySharpFilled: React.FC = ({ ...props }) => ( ) -export { IconDemographySharpFilled as default } +export default IconDemographySharpFilled diff --git a/src/IconDensityLargeOutlined.tsx b/src/IconDensityLargeOutlined.tsx index 7936fbadf..ad34eb2af 100644 --- a/src/IconDensityLargeOutlined.tsx +++ b/src/IconDensityLargeOutlined.tsx @@ -8,4 +8,4 @@ const IconDensityLargeOutlined: React.FC = ({ ...props }) => ( ) -export { IconDensityLargeOutlined as default } +export default IconDensityLargeOutlined diff --git a/src/IconDensityLargeOutlinedFilled.tsx b/src/IconDensityLargeOutlinedFilled.tsx index 14a0d5cd4..e0253015a 100644 --- a/src/IconDensityLargeOutlinedFilled.tsx +++ b/src/IconDensityLargeOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconDensityLargeOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconDensityLargeOutlinedFilled as default } +export default IconDensityLargeOutlinedFilled diff --git a/src/IconDensityLargeRounded.tsx b/src/IconDensityLargeRounded.tsx index 7e4e09381..8b2e11b6e 100644 --- a/src/IconDensityLargeRounded.tsx +++ b/src/IconDensityLargeRounded.tsx @@ -8,4 +8,4 @@ const IconDensityLargeRounded: React.FC = ({ ...props }) => ( ) -export { IconDensityLargeRounded as default } +export default IconDensityLargeRounded diff --git a/src/IconDensityLargeRoundedFilled.tsx b/src/IconDensityLargeRoundedFilled.tsx index a57f5be6a..f8aa68e9a 100644 --- a/src/IconDensityLargeRoundedFilled.tsx +++ b/src/IconDensityLargeRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconDensityLargeRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconDensityLargeRoundedFilled as default } +export default IconDensityLargeRoundedFilled diff --git a/src/IconDensityLargeSharp.tsx b/src/IconDensityLargeSharp.tsx index 22a742be3..a7213385f 100644 --- a/src/IconDensityLargeSharp.tsx +++ b/src/IconDensityLargeSharp.tsx @@ -8,4 +8,4 @@ const IconDensityLargeSharp: React.FC = ({ ...props }) => ( ) -export { IconDensityLargeSharp as default } +export default IconDensityLargeSharp diff --git a/src/IconDensityLargeSharpFilled.tsx b/src/IconDensityLargeSharpFilled.tsx index 61b11c66a..fa5baf362 100644 --- a/src/IconDensityLargeSharpFilled.tsx +++ b/src/IconDensityLargeSharpFilled.tsx @@ -8,4 +8,4 @@ const IconDensityLargeSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconDensityLargeSharpFilled as default } +export default IconDensityLargeSharpFilled diff --git a/src/IconDensityMediumOutlined.tsx b/src/IconDensityMediumOutlined.tsx index 0221241da..1a2bb682d 100644 --- a/src/IconDensityMediumOutlined.tsx +++ b/src/IconDensityMediumOutlined.tsx @@ -8,4 +8,4 @@ const IconDensityMediumOutlined: React.FC = ({ ...props }) => ( ) -export { IconDensityMediumOutlined as default } +export default IconDensityMediumOutlined diff --git a/src/IconDensityMediumOutlinedFilled.tsx b/src/IconDensityMediumOutlinedFilled.tsx index 29bfb221b..b371f077a 100644 --- a/src/IconDensityMediumOutlinedFilled.tsx +++ b/src/IconDensityMediumOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconDensityMediumOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconDensityMediumOutlinedFilled as default } +export default IconDensityMediumOutlinedFilled diff --git a/src/IconDensityMediumRounded.tsx b/src/IconDensityMediumRounded.tsx index 8ae5b3b2b..c4fc3cc6e 100644 --- a/src/IconDensityMediumRounded.tsx +++ b/src/IconDensityMediumRounded.tsx @@ -8,4 +8,4 @@ const IconDensityMediumRounded: React.FC = ({ ...props }) => ( ) -export { IconDensityMediumRounded as default } +export default IconDensityMediumRounded diff --git a/src/IconDensityMediumRoundedFilled.tsx b/src/IconDensityMediumRoundedFilled.tsx index d161db22f..5432055a6 100644 --- a/src/IconDensityMediumRoundedFilled.tsx +++ b/src/IconDensityMediumRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconDensityMediumRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconDensityMediumRoundedFilled as default } +export default IconDensityMediumRoundedFilled diff --git a/src/IconDensityMediumSharp.tsx b/src/IconDensityMediumSharp.tsx index 08826c693..6573d08b0 100644 --- a/src/IconDensityMediumSharp.tsx +++ b/src/IconDensityMediumSharp.tsx @@ -8,4 +8,4 @@ const IconDensityMediumSharp: React.FC = ({ ...props }) => ( ) -export { IconDensityMediumSharp as default } +export default IconDensityMediumSharp diff --git a/src/IconDensityMediumSharpFilled.tsx b/src/IconDensityMediumSharpFilled.tsx index 74727063c..73f40ecbd 100644 --- a/src/IconDensityMediumSharpFilled.tsx +++ b/src/IconDensityMediumSharpFilled.tsx @@ -8,4 +8,4 @@ const IconDensityMediumSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconDensityMediumSharpFilled as default } +export default IconDensityMediumSharpFilled diff --git a/src/IconDensitySmallOutlined.tsx b/src/IconDensitySmallOutlined.tsx index c70a06b05..332747175 100644 --- a/src/IconDensitySmallOutlined.tsx +++ b/src/IconDensitySmallOutlined.tsx @@ -8,4 +8,4 @@ const IconDensitySmallOutlined: React.FC = ({ ...props }) => ( ) -export { IconDensitySmallOutlined as default } +export default IconDensitySmallOutlined diff --git a/src/IconDensitySmallOutlinedFilled.tsx b/src/IconDensitySmallOutlinedFilled.tsx index 1824a2d2b..091b8b115 100644 --- a/src/IconDensitySmallOutlinedFilled.tsx +++ b/src/IconDensitySmallOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconDensitySmallOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconDensitySmallOutlinedFilled as default } +export default IconDensitySmallOutlinedFilled diff --git a/src/IconDensitySmallRounded.tsx b/src/IconDensitySmallRounded.tsx index a4ea9c0a9..3f19cb41b 100644 --- a/src/IconDensitySmallRounded.tsx +++ b/src/IconDensitySmallRounded.tsx @@ -8,4 +8,4 @@ const IconDensitySmallRounded: React.FC = ({ ...props }) => ( ) -export { IconDensitySmallRounded as default } +export default IconDensitySmallRounded diff --git a/src/IconDensitySmallRoundedFilled.tsx b/src/IconDensitySmallRoundedFilled.tsx index dad8584d1..abdf909f4 100644 --- a/src/IconDensitySmallRoundedFilled.tsx +++ b/src/IconDensitySmallRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconDensitySmallRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconDensitySmallRoundedFilled as default } +export default IconDensitySmallRoundedFilled diff --git a/src/IconDensitySmallSharp.tsx b/src/IconDensitySmallSharp.tsx index 4b0d28ad8..a2c410245 100644 --- a/src/IconDensitySmallSharp.tsx +++ b/src/IconDensitySmallSharp.tsx @@ -8,4 +8,4 @@ const IconDensitySmallSharp: React.FC = ({ ...props }) => ( ) -export { IconDensitySmallSharp as default } +export default IconDensitySmallSharp diff --git a/src/IconDensitySmallSharpFilled.tsx b/src/IconDensitySmallSharpFilled.tsx index c53851a86..8e3313cab 100644 --- a/src/IconDensitySmallSharpFilled.tsx +++ b/src/IconDensitySmallSharpFilled.tsx @@ -8,4 +8,4 @@ const IconDensitySmallSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconDensitySmallSharpFilled as default } +export default IconDensitySmallSharpFilled diff --git a/src/IconDentistryOutlined.tsx b/src/IconDentistryOutlined.tsx index 267606700..79277a7bd 100644 --- a/src/IconDentistryOutlined.tsx +++ b/src/IconDentistryOutlined.tsx @@ -8,4 +8,4 @@ const IconDentistryOutlined: React.FC = ({ ...props }) => ( ) -export { IconDentistryOutlined as default } +export default IconDentistryOutlined diff --git a/src/IconDentistryOutlinedFilled.tsx b/src/IconDentistryOutlinedFilled.tsx index 7758c3852..48bce9c3d 100644 --- a/src/IconDentistryOutlinedFilled.tsx +++ b/src/IconDentistryOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconDentistryOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconDentistryOutlinedFilled as default } +export default IconDentistryOutlinedFilled diff --git a/src/IconDentistryRounded.tsx b/src/IconDentistryRounded.tsx index 6523ffccc..cb19d5317 100644 --- a/src/IconDentistryRounded.tsx +++ b/src/IconDentistryRounded.tsx @@ -8,4 +8,4 @@ const IconDentistryRounded: React.FC = ({ ...props }) => ( ) -export { IconDentistryRounded as default } +export default IconDentistryRounded diff --git a/src/IconDentistryRoundedFilled.tsx b/src/IconDentistryRoundedFilled.tsx index c690d8a46..26111c9e5 100644 --- a/src/IconDentistryRoundedFilled.tsx +++ b/src/IconDentistryRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconDentistryRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconDentistryRoundedFilled as default } +export default IconDentistryRoundedFilled diff --git a/src/IconDentistrySharp.tsx b/src/IconDentistrySharp.tsx index 705a9e1bc..999baa749 100644 --- a/src/IconDentistrySharp.tsx +++ b/src/IconDentistrySharp.tsx @@ -8,4 +8,4 @@ const IconDentistrySharp: React.FC = ({ ...props }) => ( ) -export { IconDentistrySharp as default } +export default IconDentistrySharp diff --git a/src/IconDentistrySharpFilled.tsx b/src/IconDentistrySharpFilled.tsx index 5607a3463..79b26438d 100644 --- a/src/IconDentistrySharpFilled.tsx +++ b/src/IconDentistrySharpFilled.tsx @@ -8,4 +8,4 @@ const IconDentistrySharpFilled: React.FC = ({ ...props }) => ( ) -export { IconDentistrySharpFilled as default } +export default IconDentistrySharpFilled diff --git a/src/IconDepartureBoardOutlined.tsx b/src/IconDepartureBoardOutlined.tsx index 36fefc7d1..d3d99ebcf 100644 --- a/src/IconDepartureBoardOutlined.tsx +++ b/src/IconDepartureBoardOutlined.tsx @@ -8,4 +8,4 @@ const IconDepartureBoardOutlined: React.FC = ({ ...props }) => ( ) -export { IconDepartureBoardOutlined as default } +export default IconDepartureBoardOutlined diff --git a/src/IconDepartureBoardOutlinedFilled.tsx b/src/IconDepartureBoardOutlinedFilled.tsx index ad70be662..861881f33 100644 --- a/src/IconDepartureBoardOutlinedFilled.tsx +++ b/src/IconDepartureBoardOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconDepartureBoardOutlinedFilled: React.FC = ({ ) -export { IconDepartureBoardOutlinedFilled as default } +export default IconDepartureBoardOutlinedFilled diff --git a/src/IconDepartureBoardRounded.tsx b/src/IconDepartureBoardRounded.tsx index 566ac3b60..abee221cb 100644 --- a/src/IconDepartureBoardRounded.tsx +++ b/src/IconDepartureBoardRounded.tsx @@ -8,4 +8,4 @@ const IconDepartureBoardRounded: React.FC = ({ ...props }) => ( ) -export { IconDepartureBoardRounded as default } +export default IconDepartureBoardRounded diff --git a/src/IconDepartureBoardRoundedFilled.tsx b/src/IconDepartureBoardRoundedFilled.tsx index 88804989b..f7145e47c 100644 --- a/src/IconDepartureBoardRoundedFilled.tsx +++ b/src/IconDepartureBoardRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconDepartureBoardRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconDepartureBoardRoundedFilled as default } +export default IconDepartureBoardRoundedFilled diff --git a/src/IconDepartureBoardSharp.tsx b/src/IconDepartureBoardSharp.tsx index 05aa69b7f..b0f1c108d 100644 --- a/src/IconDepartureBoardSharp.tsx +++ b/src/IconDepartureBoardSharp.tsx @@ -8,4 +8,4 @@ const IconDepartureBoardSharp: React.FC = ({ ...props }) => ( ) -export { IconDepartureBoardSharp as default } +export default IconDepartureBoardSharp diff --git a/src/IconDepartureBoardSharpFilled.tsx b/src/IconDepartureBoardSharpFilled.tsx index 41f80cdae..f3b2833c2 100644 --- a/src/IconDepartureBoardSharpFilled.tsx +++ b/src/IconDepartureBoardSharpFilled.tsx @@ -8,4 +8,4 @@ const IconDepartureBoardSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconDepartureBoardSharpFilled as default } +export default IconDepartureBoardSharpFilled diff --git a/src/IconDeployedCodeAccountOutlined.tsx b/src/IconDeployedCodeAccountOutlined.tsx index a85ae9e2d..65451428a 100644 --- a/src/IconDeployedCodeAccountOutlined.tsx +++ b/src/IconDeployedCodeAccountOutlined.tsx @@ -8,4 +8,4 @@ const IconDeployedCodeAccountOutlined: React.FC = ({ ...props }) => ( ) -export { IconDeployedCodeAccountOutlined as default } +export default IconDeployedCodeAccountOutlined diff --git a/src/IconDeployedCodeAccountOutlinedFilled.tsx b/src/IconDeployedCodeAccountOutlinedFilled.tsx index 36b455a4f..495b30685 100644 --- a/src/IconDeployedCodeAccountOutlinedFilled.tsx +++ b/src/IconDeployedCodeAccountOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconDeployedCodeAccountOutlinedFilled: React.FC = ({ ) -export { IconDeployedCodeAccountOutlinedFilled as default } +export default IconDeployedCodeAccountOutlinedFilled diff --git a/src/IconDeployedCodeAccountRounded.tsx b/src/IconDeployedCodeAccountRounded.tsx index 35e171d31..3d42f1944 100644 --- a/src/IconDeployedCodeAccountRounded.tsx +++ b/src/IconDeployedCodeAccountRounded.tsx @@ -8,4 +8,4 @@ const IconDeployedCodeAccountRounded: React.FC = ({ ...props }) => ( ) -export { IconDeployedCodeAccountRounded as default } +export default IconDeployedCodeAccountRounded diff --git a/src/IconDeployedCodeAccountRoundedFilled.tsx b/src/IconDeployedCodeAccountRoundedFilled.tsx index 8e48f3b8e..20d7243fa 100644 --- a/src/IconDeployedCodeAccountRoundedFilled.tsx +++ b/src/IconDeployedCodeAccountRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconDeployedCodeAccountRoundedFilled: React.FC = ({ ) -export { IconDeployedCodeAccountRoundedFilled as default } +export default IconDeployedCodeAccountRoundedFilled diff --git a/src/IconDeployedCodeAccountSharp.tsx b/src/IconDeployedCodeAccountSharp.tsx index f44216a9e..b594c9bd5 100644 --- a/src/IconDeployedCodeAccountSharp.tsx +++ b/src/IconDeployedCodeAccountSharp.tsx @@ -8,4 +8,4 @@ const IconDeployedCodeAccountSharp: React.FC = ({ ...props }) => ( ) -export { IconDeployedCodeAccountSharp as default } +export default IconDeployedCodeAccountSharp diff --git a/src/IconDeployedCodeAccountSharpFilled.tsx b/src/IconDeployedCodeAccountSharpFilled.tsx index e1cc1d6f5..b510d8f81 100644 --- a/src/IconDeployedCodeAccountSharpFilled.tsx +++ b/src/IconDeployedCodeAccountSharpFilled.tsx @@ -10,4 +10,4 @@ const IconDeployedCodeAccountSharpFilled: React.FC = ({ ) -export { IconDeployedCodeAccountSharpFilled as default } +export default IconDeployedCodeAccountSharpFilled diff --git a/src/IconDeployedCodeAlertOutlined.tsx b/src/IconDeployedCodeAlertOutlined.tsx index 6003c6bf9..e44a1999c 100644 --- a/src/IconDeployedCodeAlertOutlined.tsx +++ b/src/IconDeployedCodeAlertOutlined.tsx @@ -8,4 +8,4 @@ const IconDeployedCodeAlertOutlined: React.FC = ({ ...props }) => ( ) -export { IconDeployedCodeAlertOutlined as default } +export default IconDeployedCodeAlertOutlined diff --git a/src/IconDeployedCodeAlertOutlinedFilled.tsx b/src/IconDeployedCodeAlertOutlinedFilled.tsx index 46884550f..9543170ca 100644 --- a/src/IconDeployedCodeAlertOutlinedFilled.tsx +++ b/src/IconDeployedCodeAlertOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconDeployedCodeAlertOutlinedFilled: React.FC = ({ ) -export { IconDeployedCodeAlertOutlinedFilled as default } +export default IconDeployedCodeAlertOutlinedFilled diff --git a/src/IconDeployedCodeAlertRounded.tsx b/src/IconDeployedCodeAlertRounded.tsx index 17793eeda..0ab433154 100644 --- a/src/IconDeployedCodeAlertRounded.tsx +++ b/src/IconDeployedCodeAlertRounded.tsx @@ -8,4 +8,4 @@ const IconDeployedCodeAlertRounded: React.FC = ({ ...props }) => ( ) -export { IconDeployedCodeAlertRounded as default } +export default IconDeployedCodeAlertRounded diff --git a/src/IconDeployedCodeAlertRoundedFilled.tsx b/src/IconDeployedCodeAlertRoundedFilled.tsx index 37bb8450b..9f2b9651c 100644 --- a/src/IconDeployedCodeAlertRoundedFilled.tsx +++ b/src/IconDeployedCodeAlertRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconDeployedCodeAlertRoundedFilled: React.FC = ({ ) -export { IconDeployedCodeAlertRoundedFilled as default } +export default IconDeployedCodeAlertRoundedFilled diff --git a/src/IconDeployedCodeAlertSharp.tsx b/src/IconDeployedCodeAlertSharp.tsx index 821ae1447..4ef03d6d3 100644 --- a/src/IconDeployedCodeAlertSharp.tsx +++ b/src/IconDeployedCodeAlertSharp.tsx @@ -8,4 +8,4 @@ const IconDeployedCodeAlertSharp: React.FC = ({ ...props }) => ( ) -export { IconDeployedCodeAlertSharp as default } +export default IconDeployedCodeAlertSharp diff --git a/src/IconDeployedCodeAlertSharpFilled.tsx b/src/IconDeployedCodeAlertSharpFilled.tsx index 49353f988..fc9b3b633 100644 --- a/src/IconDeployedCodeAlertSharpFilled.tsx +++ b/src/IconDeployedCodeAlertSharpFilled.tsx @@ -10,4 +10,4 @@ const IconDeployedCodeAlertSharpFilled: React.FC = ({ ) -export { IconDeployedCodeAlertSharpFilled as default } +export default IconDeployedCodeAlertSharpFilled diff --git a/src/IconDeployedCodeHistoryOutlined.tsx b/src/IconDeployedCodeHistoryOutlined.tsx index bb7341b82..109f15a0f 100644 --- a/src/IconDeployedCodeHistoryOutlined.tsx +++ b/src/IconDeployedCodeHistoryOutlined.tsx @@ -8,4 +8,4 @@ const IconDeployedCodeHistoryOutlined: React.FC = ({ ...props }) => ( ) -export { IconDeployedCodeHistoryOutlined as default } +export default IconDeployedCodeHistoryOutlined diff --git a/src/IconDeployedCodeHistoryOutlinedFilled.tsx b/src/IconDeployedCodeHistoryOutlinedFilled.tsx index 8ae10979b..b5510a7cc 100644 --- a/src/IconDeployedCodeHistoryOutlinedFilled.tsx +++ b/src/IconDeployedCodeHistoryOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconDeployedCodeHistoryOutlinedFilled: React.FC = ({ ) -export { IconDeployedCodeHistoryOutlinedFilled as default } +export default IconDeployedCodeHistoryOutlinedFilled diff --git a/src/IconDeployedCodeHistoryRounded.tsx b/src/IconDeployedCodeHistoryRounded.tsx index 6302f2c6e..9a68c2b71 100644 --- a/src/IconDeployedCodeHistoryRounded.tsx +++ b/src/IconDeployedCodeHistoryRounded.tsx @@ -8,4 +8,4 @@ const IconDeployedCodeHistoryRounded: React.FC = ({ ...props }) => ( ) -export { IconDeployedCodeHistoryRounded as default } +export default IconDeployedCodeHistoryRounded diff --git a/src/IconDeployedCodeHistoryRoundedFilled.tsx b/src/IconDeployedCodeHistoryRoundedFilled.tsx index b8817adf6..a7699a010 100644 --- a/src/IconDeployedCodeHistoryRoundedFilled.tsx +++ b/src/IconDeployedCodeHistoryRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconDeployedCodeHistoryRoundedFilled: React.FC = ({ ) -export { IconDeployedCodeHistoryRoundedFilled as default } +export default IconDeployedCodeHistoryRoundedFilled diff --git a/src/IconDeployedCodeHistorySharp.tsx b/src/IconDeployedCodeHistorySharp.tsx index f6bb7495b..907a10506 100644 --- a/src/IconDeployedCodeHistorySharp.tsx +++ b/src/IconDeployedCodeHistorySharp.tsx @@ -8,4 +8,4 @@ const IconDeployedCodeHistorySharp: React.FC = ({ ...props }) => ( ) -export { IconDeployedCodeHistorySharp as default } +export default IconDeployedCodeHistorySharp diff --git a/src/IconDeployedCodeHistorySharpFilled.tsx b/src/IconDeployedCodeHistorySharpFilled.tsx index 18179d4d9..dbf78a5c7 100644 --- a/src/IconDeployedCodeHistorySharpFilled.tsx +++ b/src/IconDeployedCodeHistorySharpFilled.tsx @@ -10,4 +10,4 @@ const IconDeployedCodeHistorySharpFilled: React.FC = ({ ) -export { IconDeployedCodeHistorySharpFilled as default } +export default IconDeployedCodeHistorySharpFilled diff --git a/src/IconDeployedCodeOutlined.tsx b/src/IconDeployedCodeOutlined.tsx index 74500c028..14b98cb0e 100644 --- a/src/IconDeployedCodeOutlined.tsx +++ b/src/IconDeployedCodeOutlined.tsx @@ -8,4 +8,4 @@ const IconDeployedCodeOutlined: React.FC = ({ ...props }) => ( ) -export { IconDeployedCodeOutlined as default } +export default IconDeployedCodeOutlined diff --git a/src/IconDeployedCodeOutlinedFilled.tsx b/src/IconDeployedCodeOutlinedFilled.tsx index 4b6b6833c..e797ed14f 100644 --- a/src/IconDeployedCodeOutlinedFilled.tsx +++ b/src/IconDeployedCodeOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconDeployedCodeOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconDeployedCodeOutlinedFilled as default } +export default IconDeployedCodeOutlinedFilled diff --git a/src/IconDeployedCodeRounded.tsx b/src/IconDeployedCodeRounded.tsx index 4c12616cd..d2fc2b979 100644 --- a/src/IconDeployedCodeRounded.tsx +++ b/src/IconDeployedCodeRounded.tsx @@ -8,4 +8,4 @@ const IconDeployedCodeRounded: React.FC = ({ ...props }) => ( ) -export { IconDeployedCodeRounded as default } +export default IconDeployedCodeRounded diff --git a/src/IconDeployedCodeRoundedFilled.tsx b/src/IconDeployedCodeRoundedFilled.tsx index bd8ecb52c..48cee3fbe 100644 --- a/src/IconDeployedCodeRoundedFilled.tsx +++ b/src/IconDeployedCodeRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconDeployedCodeRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconDeployedCodeRoundedFilled as default } +export default IconDeployedCodeRoundedFilled diff --git a/src/IconDeployedCodeSharp.tsx b/src/IconDeployedCodeSharp.tsx index 41cc266e6..4118a3ce6 100644 --- a/src/IconDeployedCodeSharp.tsx +++ b/src/IconDeployedCodeSharp.tsx @@ -8,4 +8,4 @@ const IconDeployedCodeSharp: React.FC = ({ ...props }) => ( ) -export { IconDeployedCodeSharp as default } +export default IconDeployedCodeSharp diff --git a/src/IconDeployedCodeSharpFilled.tsx b/src/IconDeployedCodeSharpFilled.tsx index 4ee893b21..6e8de569f 100644 --- a/src/IconDeployedCodeSharpFilled.tsx +++ b/src/IconDeployedCodeSharpFilled.tsx @@ -8,4 +8,4 @@ const IconDeployedCodeSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconDeployedCodeSharpFilled as default } +export default IconDeployedCodeSharpFilled diff --git a/src/IconDeployedCodeUpdateOutlined.tsx b/src/IconDeployedCodeUpdateOutlined.tsx index 9a9d245ef..80d66f16f 100644 --- a/src/IconDeployedCodeUpdateOutlined.tsx +++ b/src/IconDeployedCodeUpdateOutlined.tsx @@ -8,4 +8,4 @@ const IconDeployedCodeUpdateOutlined: React.FC = ({ ...props }) => ( ) -export { IconDeployedCodeUpdateOutlined as default } +export default IconDeployedCodeUpdateOutlined diff --git a/src/IconDeployedCodeUpdateOutlinedFilled.tsx b/src/IconDeployedCodeUpdateOutlinedFilled.tsx index 4ab258061..9ea099060 100644 --- a/src/IconDeployedCodeUpdateOutlinedFilled.tsx +++ b/src/IconDeployedCodeUpdateOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconDeployedCodeUpdateOutlinedFilled: React.FC = ({ ) -export { IconDeployedCodeUpdateOutlinedFilled as default } +export default IconDeployedCodeUpdateOutlinedFilled diff --git a/src/IconDeployedCodeUpdateRounded.tsx b/src/IconDeployedCodeUpdateRounded.tsx index 5f11c9c10..ce04a98e2 100644 --- a/src/IconDeployedCodeUpdateRounded.tsx +++ b/src/IconDeployedCodeUpdateRounded.tsx @@ -8,4 +8,4 @@ const IconDeployedCodeUpdateRounded: React.FC = ({ ...props }) => ( ) -export { IconDeployedCodeUpdateRounded as default } +export default IconDeployedCodeUpdateRounded diff --git a/src/IconDeployedCodeUpdateRoundedFilled.tsx b/src/IconDeployedCodeUpdateRoundedFilled.tsx index 5bfed3b1a..e834d2fec 100644 --- a/src/IconDeployedCodeUpdateRoundedFilled.tsx +++ b/src/IconDeployedCodeUpdateRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconDeployedCodeUpdateRoundedFilled: React.FC = ({ ) -export { IconDeployedCodeUpdateRoundedFilled as default } +export default IconDeployedCodeUpdateRoundedFilled diff --git a/src/IconDeployedCodeUpdateSharp.tsx b/src/IconDeployedCodeUpdateSharp.tsx index 2894001c9..6d5c8d3c4 100644 --- a/src/IconDeployedCodeUpdateSharp.tsx +++ b/src/IconDeployedCodeUpdateSharp.tsx @@ -8,4 +8,4 @@ const IconDeployedCodeUpdateSharp: React.FC = ({ ...props }) => ( ) -export { IconDeployedCodeUpdateSharp as default } +export default IconDeployedCodeUpdateSharp diff --git a/src/IconDeployedCodeUpdateSharpFilled.tsx b/src/IconDeployedCodeUpdateSharpFilled.tsx index a1b4e3981..ded072e30 100644 --- a/src/IconDeployedCodeUpdateSharpFilled.tsx +++ b/src/IconDeployedCodeUpdateSharpFilled.tsx @@ -10,4 +10,4 @@ const IconDeployedCodeUpdateSharpFilled: React.FC = ({ ) -export { IconDeployedCodeUpdateSharpFilled as default } +export default IconDeployedCodeUpdateSharpFilled diff --git a/src/IconDermatologyOutlined.tsx b/src/IconDermatologyOutlined.tsx index 9eba8ac5e..128e6ffda 100644 --- a/src/IconDermatologyOutlined.tsx +++ b/src/IconDermatologyOutlined.tsx @@ -8,4 +8,4 @@ const IconDermatologyOutlined: React.FC = ({ ...props }) => ( ) -export { IconDermatologyOutlined as default } +export default IconDermatologyOutlined diff --git a/src/IconDermatologyOutlinedFilled.tsx b/src/IconDermatologyOutlinedFilled.tsx index e9b63e985..094156e5f 100644 --- a/src/IconDermatologyOutlinedFilled.tsx +++ b/src/IconDermatologyOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconDermatologyOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconDermatologyOutlinedFilled as default } +export default IconDermatologyOutlinedFilled diff --git a/src/IconDermatologyRounded.tsx b/src/IconDermatologyRounded.tsx index 889585759..1918269c6 100644 --- a/src/IconDermatologyRounded.tsx +++ b/src/IconDermatologyRounded.tsx @@ -8,4 +8,4 @@ const IconDermatologyRounded: React.FC = ({ ...props }) => ( ) -export { IconDermatologyRounded as default } +export default IconDermatologyRounded diff --git a/src/IconDermatologyRoundedFilled.tsx b/src/IconDermatologyRoundedFilled.tsx index 03eea6662..5a3688d8e 100644 --- a/src/IconDermatologyRoundedFilled.tsx +++ b/src/IconDermatologyRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconDermatologyRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconDermatologyRoundedFilled as default } +export default IconDermatologyRoundedFilled diff --git a/src/IconDermatologySharp.tsx b/src/IconDermatologySharp.tsx index 9ca37d2d3..ddd8a9df9 100644 --- a/src/IconDermatologySharp.tsx +++ b/src/IconDermatologySharp.tsx @@ -8,4 +8,4 @@ const IconDermatologySharp: React.FC = ({ ...props }) => ( ) -export { IconDermatologySharp as default } +export default IconDermatologySharp diff --git a/src/IconDermatologySharpFilled.tsx b/src/IconDermatologySharpFilled.tsx index 0a249b57c..3ef2aef3d 100644 --- a/src/IconDermatologySharpFilled.tsx +++ b/src/IconDermatologySharpFilled.tsx @@ -8,4 +8,4 @@ const IconDermatologySharpFilled: React.FC = ({ ...props }) => ( ) -export { IconDermatologySharpFilled as default } +export default IconDermatologySharpFilled diff --git a/src/IconDescriptionOutlined.tsx b/src/IconDescriptionOutlined.tsx index 0f497d2d5..7ec41a929 100644 --- a/src/IconDescriptionOutlined.tsx +++ b/src/IconDescriptionOutlined.tsx @@ -8,4 +8,4 @@ const IconDescriptionOutlined: React.FC = ({ ...props }) => ( ) -export { IconDescriptionOutlined as default } +export default IconDescriptionOutlined diff --git a/src/IconDescriptionOutlinedFilled.tsx b/src/IconDescriptionOutlinedFilled.tsx index 44b1325af..f9858558f 100644 --- a/src/IconDescriptionOutlinedFilled.tsx +++ b/src/IconDescriptionOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconDescriptionOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconDescriptionOutlinedFilled as default } +export default IconDescriptionOutlinedFilled diff --git a/src/IconDescriptionRounded.tsx b/src/IconDescriptionRounded.tsx index b23b49634..3bd577d2a 100644 --- a/src/IconDescriptionRounded.tsx +++ b/src/IconDescriptionRounded.tsx @@ -8,4 +8,4 @@ const IconDescriptionRounded: React.FC = ({ ...props }) => ( ) -export { IconDescriptionRounded as default } +export default IconDescriptionRounded diff --git a/src/IconDescriptionRoundedFilled.tsx b/src/IconDescriptionRoundedFilled.tsx index 44768c468..b7b5419ba 100644 --- a/src/IconDescriptionRoundedFilled.tsx +++ b/src/IconDescriptionRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconDescriptionRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconDescriptionRoundedFilled as default } +export default IconDescriptionRoundedFilled diff --git a/src/IconDescriptionSharp.tsx b/src/IconDescriptionSharp.tsx index 0702ddccc..79f7e1379 100644 --- a/src/IconDescriptionSharp.tsx +++ b/src/IconDescriptionSharp.tsx @@ -8,4 +8,4 @@ const IconDescriptionSharp: React.FC = ({ ...props }) => ( ) -export { IconDescriptionSharp as default } +export default IconDescriptionSharp diff --git a/src/IconDescriptionSharpFilled.tsx b/src/IconDescriptionSharpFilled.tsx index 5324bce32..6de06a276 100644 --- a/src/IconDescriptionSharpFilled.tsx +++ b/src/IconDescriptionSharpFilled.tsx @@ -8,4 +8,4 @@ const IconDescriptionSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconDescriptionSharpFilled as default } +export default IconDescriptionSharpFilled diff --git a/src/IconDeselectOutlined.tsx b/src/IconDeselectOutlined.tsx index e228e2776..d27315684 100644 --- a/src/IconDeselectOutlined.tsx +++ b/src/IconDeselectOutlined.tsx @@ -8,4 +8,4 @@ const IconDeselectOutlined: React.FC = ({ ...props }) => ( ) -export { IconDeselectOutlined as default } +export default IconDeselectOutlined diff --git a/src/IconDeselectOutlinedFilled.tsx b/src/IconDeselectOutlinedFilled.tsx index eea1b2308..b28d63d9c 100644 --- a/src/IconDeselectOutlinedFilled.tsx +++ b/src/IconDeselectOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconDeselectOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconDeselectOutlinedFilled as default } +export default IconDeselectOutlinedFilled diff --git a/src/IconDeselectRounded.tsx b/src/IconDeselectRounded.tsx index ccfdddfa2..328ff3485 100644 --- a/src/IconDeselectRounded.tsx +++ b/src/IconDeselectRounded.tsx @@ -8,4 +8,4 @@ const IconDeselectRounded: React.FC = ({ ...props }) => ( ) -export { IconDeselectRounded as default } +export default IconDeselectRounded diff --git a/src/IconDeselectRoundedFilled.tsx b/src/IconDeselectRoundedFilled.tsx index 0916fc54b..66f04d6bf 100644 --- a/src/IconDeselectRoundedFilled.tsx +++ b/src/IconDeselectRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconDeselectRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconDeselectRoundedFilled as default } +export default IconDeselectRoundedFilled diff --git a/src/IconDeselectSharp.tsx b/src/IconDeselectSharp.tsx index cd6deb74c..9bc6b2183 100644 --- a/src/IconDeselectSharp.tsx +++ b/src/IconDeselectSharp.tsx @@ -8,4 +8,4 @@ const IconDeselectSharp: React.FC = ({ ...props }) => ( ) -export { IconDeselectSharp as default } +export default IconDeselectSharp diff --git a/src/IconDeselectSharpFilled.tsx b/src/IconDeselectSharpFilled.tsx index b2b86d571..d36ee985a 100644 --- a/src/IconDeselectSharpFilled.tsx +++ b/src/IconDeselectSharpFilled.tsx @@ -8,4 +8,4 @@ const IconDeselectSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconDeselectSharpFilled as default } +export default IconDeselectSharpFilled diff --git a/src/IconDesignServicesOutlined.tsx b/src/IconDesignServicesOutlined.tsx index 3c5139730..889f2b2d0 100644 --- a/src/IconDesignServicesOutlined.tsx +++ b/src/IconDesignServicesOutlined.tsx @@ -8,4 +8,4 @@ const IconDesignServicesOutlined: React.FC = ({ ...props }) => ( ) -export { IconDesignServicesOutlined as default } +export default IconDesignServicesOutlined diff --git a/src/IconDesignServicesOutlinedFilled.tsx b/src/IconDesignServicesOutlinedFilled.tsx index 6f7986f1a..e10a1cd1b 100644 --- a/src/IconDesignServicesOutlinedFilled.tsx +++ b/src/IconDesignServicesOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconDesignServicesOutlinedFilled: React.FC = ({ ) -export { IconDesignServicesOutlinedFilled as default } +export default IconDesignServicesOutlinedFilled diff --git a/src/IconDesignServicesRounded.tsx b/src/IconDesignServicesRounded.tsx index 829803494..0c8b14cd4 100644 --- a/src/IconDesignServicesRounded.tsx +++ b/src/IconDesignServicesRounded.tsx @@ -8,4 +8,4 @@ const IconDesignServicesRounded: React.FC = ({ ...props }) => ( ) -export { IconDesignServicesRounded as default } +export default IconDesignServicesRounded diff --git a/src/IconDesignServicesRoundedFilled.tsx b/src/IconDesignServicesRoundedFilled.tsx index 0a0ab5bc9..3427b503b 100644 --- a/src/IconDesignServicesRoundedFilled.tsx +++ b/src/IconDesignServicesRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconDesignServicesRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconDesignServicesRoundedFilled as default } +export default IconDesignServicesRoundedFilled diff --git a/src/IconDesignServicesSharp.tsx b/src/IconDesignServicesSharp.tsx index a98135024..c3bab22d7 100644 --- a/src/IconDesignServicesSharp.tsx +++ b/src/IconDesignServicesSharp.tsx @@ -8,4 +8,4 @@ const IconDesignServicesSharp: React.FC = ({ ...props }) => ( ) -export { IconDesignServicesSharp as default } +export default IconDesignServicesSharp diff --git a/src/IconDesignServicesSharpFilled.tsx b/src/IconDesignServicesSharpFilled.tsx index 7ad3e985e..9848d0d57 100644 --- a/src/IconDesignServicesSharpFilled.tsx +++ b/src/IconDesignServicesSharpFilled.tsx @@ -8,4 +8,4 @@ const IconDesignServicesSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconDesignServicesSharpFilled as default } +export default IconDesignServicesSharpFilled diff --git a/src/IconDeskOutlined.tsx b/src/IconDeskOutlined.tsx index 1f79498f9..c4a9d2fef 100644 --- a/src/IconDeskOutlined.tsx +++ b/src/IconDeskOutlined.tsx @@ -8,4 +8,4 @@ const IconDeskOutlined: React.FC = ({ ...props }) => ( ) -export { IconDeskOutlined as default } +export default IconDeskOutlined diff --git a/src/IconDeskOutlinedFilled.tsx b/src/IconDeskOutlinedFilled.tsx index cd599777f..71ab1b0e7 100644 --- a/src/IconDeskOutlinedFilled.tsx +++ b/src/IconDeskOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconDeskOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconDeskOutlinedFilled as default } +export default IconDeskOutlinedFilled diff --git a/src/IconDeskRounded.tsx b/src/IconDeskRounded.tsx index cda2be2f2..ae5b4e604 100644 --- a/src/IconDeskRounded.tsx +++ b/src/IconDeskRounded.tsx @@ -8,4 +8,4 @@ const IconDeskRounded: React.FC = ({ ...props }) => ( ) -export { IconDeskRounded as default } +export default IconDeskRounded diff --git a/src/IconDeskRoundedFilled.tsx b/src/IconDeskRoundedFilled.tsx index 715a54f9b..b4fb9e17b 100644 --- a/src/IconDeskRoundedFilled.tsx +++ b/src/IconDeskRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconDeskRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconDeskRoundedFilled as default } +export default IconDeskRoundedFilled diff --git a/src/IconDeskSharp.tsx b/src/IconDeskSharp.tsx index 059ac4c28..038335be4 100644 --- a/src/IconDeskSharp.tsx +++ b/src/IconDeskSharp.tsx @@ -8,4 +8,4 @@ const IconDeskSharp: React.FC = ({ ...props }) => ( ) -export { IconDeskSharp as default } +export default IconDeskSharp diff --git a/src/IconDeskSharpFilled.tsx b/src/IconDeskSharpFilled.tsx index 9ac7bc6b6..0eb808563 100644 --- a/src/IconDeskSharpFilled.tsx +++ b/src/IconDeskSharpFilled.tsx @@ -8,4 +8,4 @@ const IconDeskSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconDeskSharpFilled as default } +export default IconDeskSharpFilled diff --git a/src/IconDeskphoneOutlined.tsx b/src/IconDeskphoneOutlined.tsx index 6f87bcc03..495c795f5 100644 --- a/src/IconDeskphoneOutlined.tsx +++ b/src/IconDeskphoneOutlined.tsx @@ -8,4 +8,4 @@ const IconDeskphoneOutlined: React.FC = ({ ...props }) => ( ) -export { IconDeskphoneOutlined as default } +export default IconDeskphoneOutlined diff --git a/src/IconDeskphoneOutlinedFilled.tsx b/src/IconDeskphoneOutlinedFilled.tsx index 8058c62e9..1b56ed794 100644 --- a/src/IconDeskphoneOutlinedFilled.tsx +++ b/src/IconDeskphoneOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconDeskphoneOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconDeskphoneOutlinedFilled as default } +export default IconDeskphoneOutlinedFilled diff --git a/src/IconDeskphoneRounded.tsx b/src/IconDeskphoneRounded.tsx index b732b591c..91f3bed7e 100644 --- a/src/IconDeskphoneRounded.tsx +++ b/src/IconDeskphoneRounded.tsx @@ -8,4 +8,4 @@ const IconDeskphoneRounded: React.FC = ({ ...props }) => ( ) -export { IconDeskphoneRounded as default } +export default IconDeskphoneRounded diff --git a/src/IconDeskphoneRoundedFilled.tsx b/src/IconDeskphoneRoundedFilled.tsx index 7018050fd..6674ca264 100644 --- a/src/IconDeskphoneRoundedFilled.tsx +++ b/src/IconDeskphoneRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconDeskphoneRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconDeskphoneRoundedFilled as default } +export default IconDeskphoneRoundedFilled diff --git a/src/IconDeskphoneSharp.tsx b/src/IconDeskphoneSharp.tsx index 7fc2ce900..317dc2f03 100644 --- a/src/IconDeskphoneSharp.tsx +++ b/src/IconDeskphoneSharp.tsx @@ -8,4 +8,4 @@ const IconDeskphoneSharp: React.FC = ({ ...props }) => ( ) -export { IconDeskphoneSharp as default } +export default IconDeskphoneSharp diff --git a/src/IconDeskphoneSharpFilled.tsx b/src/IconDeskphoneSharpFilled.tsx index 54f13deb5..676032cfd 100644 --- a/src/IconDeskphoneSharpFilled.tsx +++ b/src/IconDeskphoneSharpFilled.tsx @@ -8,4 +8,4 @@ const IconDeskphoneSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconDeskphoneSharpFilled as default } +export default IconDeskphoneSharpFilled diff --git a/src/IconDesktopAccessDisabledOutlined.tsx b/src/IconDesktopAccessDisabledOutlined.tsx index 348d039b0..e000c8fa2 100644 --- a/src/IconDesktopAccessDisabledOutlined.tsx +++ b/src/IconDesktopAccessDisabledOutlined.tsx @@ -10,4 +10,4 @@ const IconDesktopAccessDisabledOutlined: React.FC = ({ ) -export { IconDesktopAccessDisabledOutlined as default } +export default IconDesktopAccessDisabledOutlined diff --git a/src/IconDesktopAccessDisabledOutlinedFilled.tsx b/src/IconDesktopAccessDisabledOutlinedFilled.tsx index a9180ce40..5e88015f5 100644 --- a/src/IconDesktopAccessDisabledOutlinedFilled.tsx +++ b/src/IconDesktopAccessDisabledOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconDesktopAccessDisabledOutlinedFilled: React.FC = ({ ) -export { IconDesktopAccessDisabledOutlinedFilled as default } +export default IconDesktopAccessDisabledOutlinedFilled diff --git a/src/IconDesktopAccessDisabledRounded.tsx b/src/IconDesktopAccessDisabledRounded.tsx index ea032b036..dbd47224c 100644 --- a/src/IconDesktopAccessDisabledRounded.tsx +++ b/src/IconDesktopAccessDisabledRounded.tsx @@ -10,4 +10,4 @@ const IconDesktopAccessDisabledRounded: React.FC = ({ ) -export { IconDesktopAccessDisabledRounded as default } +export default IconDesktopAccessDisabledRounded diff --git a/src/IconDesktopAccessDisabledRoundedFilled.tsx b/src/IconDesktopAccessDisabledRoundedFilled.tsx index d0cb07329..bf7c54982 100644 --- a/src/IconDesktopAccessDisabledRoundedFilled.tsx +++ b/src/IconDesktopAccessDisabledRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconDesktopAccessDisabledRoundedFilled: React.FC = ({ ) -export { IconDesktopAccessDisabledRoundedFilled as default } +export default IconDesktopAccessDisabledRoundedFilled diff --git a/src/IconDesktopAccessDisabledSharp.tsx b/src/IconDesktopAccessDisabledSharp.tsx index c10c15635..d9adc9ba2 100644 --- a/src/IconDesktopAccessDisabledSharp.tsx +++ b/src/IconDesktopAccessDisabledSharp.tsx @@ -8,4 +8,4 @@ const IconDesktopAccessDisabledSharp: React.FC = ({ ...props }) => ( ) -export { IconDesktopAccessDisabledSharp as default } +export default IconDesktopAccessDisabledSharp diff --git a/src/IconDesktopAccessDisabledSharpFilled.tsx b/src/IconDesktopAccessDisabledSharpFilled.tsx index 445f30f72..b372de515 100644 --- a/src/IconDesktopAccessDisabledSharpFilled.tsx +++ b/src/IconDesktopAccessDisabledSharpFilled.tsx @@ -10,4 +10,4 @@ const IconDesktopAccessDisabledSharpFilled: React.FC = ({ ) -export { IconDesktopAccessDisabledSharpFilled as default } +export default IconDesktopAccessDisabledSharpFilled diff --git a/src/IconDesktopLandscapeAddOutlined.tsx b/src/IconDesktopLandscapeAddOutlined.tsx index c5a574e88..47b8c1490 100644 --- a/src/IconDesktopLandscapeAddOutlined.tsx +++ b/src/IconDesktopLandscapeAddOutlined.tsx @@ -8,4 +8,4 @@ const IconDesktopLandscapeAddOutlined: React.FC = ({ ...props }) => ( ) -export { IconDesktopLandscapeAddOutlined as default } +export default IconDesktopLandscapeAddOutlined diff --git a/src/IconDesktopLandscapeAddOutlinedFilled.tsx b/src/IconDesktopLandscapeAddOutlinedFilled.tsx index c6951a2c2..aeed921f0 100644 --- a/src/IconDesktopLandscapeAddOutlinedFilled.tsx +++ b/src/IconDesktopLandscapeAddOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconDesktopLandscapeAddOutlinedFilled: React.FC = ({ ) -export { IconDesktopLandscapeAddOutlinedFilled as default } +export default IconDesktopLandscapeAddOutlinedFilled diff --git a/src/IconDesktopLandscapeAddRounded.tsx b/src/IconDesktopLandscapeAddRounded.tsx index e79c3f955..e066d2b3c 100644 --- a/src/IconDesktopLandscapeAddRounded.tsx +++ b/src/IconDesktopLandscapeAddRounded.tsx @@ -8,4 +8,4 @@ const IconDesktopLandscapeAddRounded: React.FC = ({ ...props }) => ( ) -export { IconDesktopLandscapeAddRounded as default } +export default IconDesktopLandscapeAddRounded diff --git a/src/IconDesktopLandscapeAddRoundedFilled.tsx b/src/IconDesktopLandscapeAddRoundedFilled.tsx index c88ed2c7d..c8f0a2905 100644 --- a/src/IconDesktopLandscapeAddRoundedFilled.tsx +++ b/src/IconDesktopLandscapeAddRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconDesktopLandscapeAddRoundedFilled: React.FC = ({ ) -export { IconDesktopLandscapeAddRoundedFilled as default } +export default IconDesktopLandscapeAddRoundedFilled diff --git a/src/IconDesktopLandscapeAddSharp.tsx b/src/IconDesktopLandscapeAddSharp.tsx index 8d295443e..512bd2e70 100644 --- a/src/IconDesktopLandscapeAddSharp.tsx +++ b/src/IconDesktopLandscapeAddSharp.tsx @@ -8,4 +8,4 @@ const IconDesktopLandscapeAddSharp: React.FC = ({ ...props }) => ( ) -export { IconDesktopLandscapeAddSharp as default } +export default IconDesktopLandscapeAddSharp diff --git a/src/IconDesktopLandscapeAddSharpFilled.tsx b/src/IconDesktopLandscapeAddSharpFilled.tsx index 259f0bc56..b5d3ad871 100644 --- a/src/IconDesktopLandscapeAddSharpFilled.tsx +++ b/src/IconDesktopLandscapeAddSharpFilled.tsx @@ -10,4 +10,4 @@ const IconDesktopLandscapeAddSharpFilled: React.FC = ({ ) -export { IconDesktopLandscapeAddSharpFilled as default } +export default IconDesktopLandscapeAddSharpFilled diff --git a/src/IconDesktopLandscapeOutlined.tsx b/src/IconDesktopLandscapeOutlined.tsx index 012b20991..7af839ec0 100644 --- a/src/IconDesktopLandscapeOutlined.tsx +++ b/src/IconDesktopLandscapeOutlined.tsx @@ -8,4 +8,4 @@ const IconDesktopLandscapeOutlined: React.FC = ({ ...props }) => ( ) -export { IconDesktopLandscapeOutlined as default } +export default IconDesktopLandscapeOutlined diff --git a/src/IconDesktopLandscapeOutlinedFilled.tsx b/src/IconDesktopLandscapeOutlinedFilled.tsx index 102274ec4..b01eb4d1c 100644 --- a/src/IconDesktopLandscapeOutlinedFilled.tsx +++ b/src/IconDesktopLandscapeOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconDesktopLandscapeOutlinedFilled: React.FC = ({ ) -export { IconDesktopLandscapeOutlinedFilled as default } +export default IconDesktopLandscapeOutlinedFilled diff --git a/src/IconDesktopLandscapeRounded.tsx b/src/IconDesktopLandscapeRounded.tsx index 22e6cf7fc..dd54f73f3 100644 --- a/src/IconDesktopLandscapeRounded.tsx +++ b/src/IconDesktopLandscapeRounded.tsx @@ -8,4 +8,4 @@ const IconDesktopLandscapeRounded: React.FC = ({ ...props }) => ( ) -export { IconDesktopLandscapeRounded as default } +export default IconDesktopLandscapeRounded diff --git a/src/IconDesktopLandscapeRoundedFilled.tsx b/src/IconDesktopLandscapeRoundedFilled.tsx index 484fd9e7f..7d3690067 100644 --- a/src/IconDesktopLandscapeRoundedFilled.tsx +++ b/src/IconDesktopLandscapeRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconDesktopLandscapeRoundedFilled: React.FC = ({ ) -export { IconDesktopLandscapeRoundedFilled as default } +export default IconDesktopLandscapeRoundedFilled diff --git a/src/IconDesktopLandscapeSharp.tsx b/src/IconDesktopLandscapeSharp.tsx index 262eb91b7..8d410409a 100644 --- a/src/IconDesktopLandscapeSharp.tsx +++ b/src/IconDesktopLandscapeSharp.tsx @@ -8,4 +8,4 @@ const IconDesktopLandscapeSharp: React.FC = ({ ...props }) => ( ) -export { IconDesktopLandscapeSharp as default } +export default IconDesktopLandscapeSharp diff --git a/src/IconDesktopLandscapeSharpFilled.tsx b/src/IconDesktopLandscapeSharpFilled.tsx index d315b95e3..b03a1c44c 100644 --- a/src/IconDesktopLandscapeSharpFilled.tsx +++ b/src/IconDesktopLandscapeSharpFilled.tsx @@ -8,4 +8,4 @@ const IconDesktopLandscapeSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconDesktopLandscapeSharpFilled as default } +export default IconDesktopLandscapeSharpFilled diff --git a/src/IconDesktopMacOutlined.tsx b/src/IconDesktopMacOutlined.tsx index 12a681d7c..3a4f17641 100644 --- a/src/IconDesktopMacOutlined.tsx +++ b/src/IconDesktopMacOutlined.tsx @@ -8,4 +8,4 @@ const IconDesktopMacOutlined: React.FC = ({ ...props }) => ( ) -export { IconDesktopMacOutlined as default } +export default IconDesktopMacOutlined diff --git a/src/IconDesktopMacOutlinedFilled.tsx b/src/IconDesktopMacOutlinedFilled.tsx index 05d40b15d..f5489cb57 100644 --- a/src/IconDesktopMacOutlinedFilled.tsx +++ b/src/IconDesktopMacOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconDesktopMacOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconDesktopMacOutlinedFilled as default } +export default IconDesktopMacOutlinedFilled diff --git a/src/IconDesktopMacRounded.tsx b/src/IconDesktopMacRounded.tsx index 8ff3f84d3..450c48e8c 100644 --- a/src/IconDesktopMacRounded.tsx +++ b/src/IconDesktopMacRounded.tsx @@ -8,4 +8,4 @@ const IconDesktopMacRounded: React.FC = ({ ...props }) => ( ) -export { IconDesktopMacRounded as default } +export default IconDesktopMacRounded diff --git a/src/IconDesktopMacRoundedFilled.tsx b/src/IconDesktopMacRoundedFilled.tsx index 39f0b8f6e..242ae9c07 100644 --- a/src/IconDesktopMacRoundedFilled.tsx +++ b/src/IconDesktopMacRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconDesktopMacRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconDesktopMacRoundedFilled as default } +export default IconDesktopMacRoundedFilled diff --git a/src/IconDesktopMacSharp.tsx b/src/IconDesktopMacSharp.tsx index 86547d002..78ad4293e 100644 --- a/src/IconDesktopMacSharp.tsx +++ b/src/IconDesktopMacSharp.tsx @@ -8,4 +8,4 @@ const IconDesktopMacSharp: React.FC = ({ ...props }) => ( ) -export { IconDesktopMacSharp as default } +export default IconDesktopMacSharp diff --git a/src/IconDesktopMacSharpFilled.tsx b/src/IconDesktopMacSharpFilled.tsx index e3a004655..86c808eeb 100644 --- a/src/IconDesktopMacSharpFilled.tsx +++ b/src/IconDesktopMacSharpFilled.tsx @@ -8,4 +8,4 @@ const IconDesktopMacSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconDesktopMacSharpFilled as default } +export default IconDesktopMacSharpFilled diff --git a/src/IconDesktopPortraitOutlined.tsx b/src/IconDesktopPortraitOutlined.tsx index 34f028676..7d50a5fb5 100644 --- a/src/IconDesktopPortraitOutlined.tsx +++ b/src/IconDesktopPortraitOutlined.tsx @@ -8,4 +8,4 @@ const IconDesktopPortraitOutlined: React.FC = ({ ...props }) => ( ) -export { IconDesktopPortraitOutlined as default } +export default IconDesktopPortraitOutlined diff --git a/src/IconDesktopPortraitOutlinedFilled.tsx b/src/IconDesktopPortraitOutlinedFilled.tsx index 13a66bbf0..50143ccc1 100644 --- a/src/IconDesktopPortraitOutlinedFilled.tsx +++ b/src/IconDesktopPortraitOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconDesktopPortraitOutlinedFilled: React.FC = ({ ) -export { IconDesktopPortraitOutlinedFilled as default } +export default IconDesktopPortraitOutlinedFilled diff --git a/src/IconDesktopPortraitRounded.tsx b/src/IconDesktopPortraitRounded.tsx index bb6089efc..bcb9a87e7 100644 --- a/src/IconDesktopPortraitRounded.tsx +++ b/src/IconDesktopPortraitRounded.tsx @@ -8,4 +8,4 @@ const IconDesktopPortraitRounded: React.FC = ({ ...props }) => ( ) -export { IconDesktopPortraitRounded as default } +export default IconDesktopPortraitRounded diff --git a/src/IconDesktopPortraitRoundedFilled.tsx b/src/IconDesktopPortraitRoundedFilled.tsx index 934f7254f..55aeecf3b 100644 --- a/src/IconDesktopPortraitRoundedFilled.tsx +++ b/src/IconDesktopPortraitRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconDesktopPortraitRoundedFilled: React.FC = ({ ) -export { IconDesktopPortraitRoundedFilled as default } +export default IconDesktopPortraitRoundedFilled diff --git a/src/IconDesktopPortraitSharp.tsx b/src/IconDesktopPortraitSharp.tsx index 0d66ef686..9bfd402ba 100644 --- a/src/IconDesktopPortraitSharp.tsx +++ b/src/IconDesktopPortraitSharp.tsx @@ -8,4 +8,4 @@ const IconDesktopPortraitSharp: React.FC = ({ ...props }) => ( ) -export { IconDesktopPortraitSharp as default } +export default IconDesktopPortraitSharp diff --git a/src/IconDesktopPortraitSharpFilled.tsx b/src/IconDesktopPortraitSharpFilled.tsx index 878531c9d..58935b7b7 100644 --- a/src/IconDesktopPortraitSharpFilled.tsx +++ b/src/IconDesktopPortraitSharpFilled.tsx @@ -8,4 +8,4 @@ const IconDesktopPortraitSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconDesktopPortraitSharpFilled as default } +export default IconDesktopPortraitSharpFilled diff --git a/src/IconDesktopWindowsOutlined.tsx b/src/IconDesktopWindowsOutlined.tsx index 18edf3cf3..777c1119f 100644 --- a/src/IconDesktopWindowsOutlined.tsx +++ b/src/IconDesktopWindowsOutlined.tsx @@ -8,4 +8,4 @@ const IconDesktopWindowsOutlined: React.FC = ({ ...props }) => ( ) -export { IconDesktopWindowsOutlined as default } +export default IconDesktopWindowsOutlined diff --git a/src/IconDesktopWindowsOutlinedFilled.tsx b/src/IconDesktopWindowsOutlinedFilled.tsx index 1506a1d13..e320f1377 100644 --- a/src/IconDesktopWindowsOutlinedFilled.tsx +++ b/src/IconDesktopWindowsOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconDesktopWindowsOutlinedFilled: React.FC = ({ ) -export { IconDesktopWindowsOutlinedFilled as default } +export default IconDesktopWindowsOutlinedFilled diff --git a/src/IconDesktopWindowsRounded.tsx b/src/IconDesktopWindowsRounded.tsx index c6c014c2f..407c75639 100644 --- a/src/IconDesktopWindowsRounded.tsx +++ b/src/IconDesktopWindowsRounded.tsx @@ -8,4 +8,4 @@ const IconDesktopWindowsRounded: React.FC = ({ ...props }) => ( ) -export { IconDesktopWindowsRounded as default } +export default IconDesktopWindowsRounded diff --git a/src/IconDesktopWindowsRoundedFilled.tsx b/src/IconDesktopWindowsRoundedFilled.tsx index 7674a1a21..a6a38358a 100644 --- a/src/IconDesktopWindowsRoundedFilled.tsx +++ b/src/IconDesktopWindowsRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconDesktopWindowsRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconDesktopWindowsRoundedFilled as default } +export default IconDesktopWindowsRoundedFilled diff --git a/src/IconDesktopWindowsSharp.tsx b/src/IconDesktopWindowsSharp.tsx index 6a414b041..3b93a3efc 100644 --- a/src/IconDesktopWindowsSharp.tsx +++ b/src/IconDesktopWindowsSharp.tsx @@ -8,4 +8,4 @@ const IconDesktopWindowsSharp: React.FC = ({ ...props }) => ( ) -export { IconDesktopWindowsSharp as default } +export default IconDesktopWindowsSharp diff --git a/src/IconDesktopWindowsSharpFilled.tsx b/src/IconDesktopWindowsSharpFilled.tsx index 8b5c8b75f..3c2dcdb72 100644 --- a/src/IconDesktopWindowsSharpFilled.tsx +++ b/src/IconDesktopWindowsSharpFilled.tsx @@ -8,4 +8,4 @@ const IconDesktopWindowsSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconDesktopWindowsSharpFilled as default } +export default IconDesktopWindowsSharpFilled diff --git a/src/IconDestructionOutlined.tsx b/src/IconDestructionOutlined.tsx index b34538dbe..e2bded5e9 100644 --- a/src/IconDestructionOutlined.tsx +++ b/src/IconDestructionOutlined.tsx @@ -8,4 +8,4 @@ const IconDestructionOutlined: React.FC = ({ ...props }) => ( ) -export { IconDestructionOutlined as default } +export default IconDestructionOutlined diff --git a/src/IconDestructionOutlinedFilled.tsx b/src/IconDestructionOutlinedFilled.tsx index 58d159710..6244686b3 100644 --- a/src/IconDestructionOutlinedFilled.tsx +++ b/src/IconDestructionOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconDestructionOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconDestructionOutlinedFilled as default } +export default IconDestructionOutlinedFilled diff --git a/src/IconDestructionRounded.tsx b/src/IconDestructionRounded.tsx index 274605c99..1ff276670 100644 --- a/src/IconDestructionRounded.tsx +++ b/src/IconDestructionRounded.tsx @@ -8,4 +8,4 @@ const IconDestructionRounded: React.FC = ({ ...props }) => ( ) -export { IconDestructionRounded as default } +export default IconDestructionRounded diff --git a/src/IconDestructionRoundedFilled.tsx b/src/IconDestructionRoundedFilled.tsx index 76496e412..775bacca3 100644 --- a/src/IconDestructionRoundedFilled.tsx +++ b/src/IconDestructionRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconDestructionRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconDestructionRoundedFilled as default } +export default IconDestructionRoundedFilled diff --git a/src/IconDestructionSharp.tsx b/src/IconDestructionSharp.tsx index 00c4da885..8d371cad1 100644 --- a/src/IconDestructionSharp.tsx +++ b/src/IconDestructionSharp.tsx @@ -8,4 +8,4 @@ const IconDestructionSharp: React.FC = ({ ...props }) => ( ) -export { IconDestructionSharp as default } +export default IconDestructionSharp diff --git a/src/IconDestructionSharpFilled.tsx b/src/IconDestructionSharpFilled.tsx index 57129b460..6e59ac88f 100644 --- a/src/IconDestructionSharpFilled.tsx +++ b/src/IconDestructionSharpFilled.tsx @@ -8,4 +8,4 @@ const IconDestructionSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconDestructionSharpFilled as default } +export default IconDestructionSharpFilled diff --git a/src/IconDetailsOutlined.tsx b/src/IconDetailsOutlined.tsx index 3f1d56930..9fd2fabec 100644 --- a/src/IconDetailsOutlined.tsx +++ b/src/IconDetailsOutlined.tsx @@ -8,4 +8,4 @@ const IconDetailsOutlined: React.FC = ({ ...props }) => ( ) -export { IconDetailsOutlined as default } +export default IconDetailsOutlined diff --git a/src/IconDetailsOutlinedFilled.tsx b/src/IconDetailsOutlinedFilled.tsx index 36261d0c0..41faf7514 100644 --- a/src/IconDetailsOutlinedFilled.tsx +++ b/src/IconDetailsOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconDetailsOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconDetailsOutlinedFilled as default } +export default IconDetailsOutlinedFilled diff --git a/src/IconDetailsRounded.tsx b/src/IconDetailsRounded.tsx index 0800e349b..8b504374c 100644 --- a/src/IconDetailsRounded.tsx +++ b/src/IconDetailsRounded.tsx @@ -8,4 +8,4 @@ const IconDetailsRounded: React.FC = ({ ...props }) => ( ) -export { IconDetailsRounded as default } +export default IconDetailsRounded diff --git a/src/IconDetailsRoundedFilled.tsx b/src/IconDetailsRoundedFilled.tsx index 37151711d..3fccc136d 100644 --- a/src/IconDetailsRoundedFilled.tsx +++ b/src/IconDetailsRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconDetailsRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconDetailsRoundedFilled as default } +export default IconDetailsRoundedFilled diff --git a/src/IconDetailsSharp.tsx b/src/IconDetailsSharp.tsx index dd90cd19e..15a281e5f 100644 --- a/src/IconDetailsSharp.tsx +++ b/src/IconDetailsSharp.tsx @@ -8,4 +8,4 @@ const IconDetailsSharp: React.FC = ({ ...props }) => ( ) -export { IconDetailsSharp as default } +export default IconDetailsSharp diff --git a/src/IconDetailsSharpFilled.tsx b/src/IconDetailsSharpFilled.tsx index ed989b801..f32537fcf 100644 --- a/src/IconDetailsSharpFilled.tsx +++ b/src/IconDetailsSharpFilled.tsx @@ -8,4 +8,4 @@ const IconDetailsSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconDetailsSharpFilled as default } +export default IconDetailsSharpFilled diff --git a/src/IconDetectionAndZoneOutlined.tsx b/src/IconDetectionAndZoneOutlined.tsx index eb5109940..55394522b 100644 --- a/src/IconDetectionAndZoneOutlined.tsx +++ b/src/IconDetectionAndZoneOutlined.tsx @@ -8,4 +8,4 @@ const IconDetectionAndZoneOutlined: React.FC = ({ ...props }) => ( ) -export { IconDetectionAndZoneOutlined as default } +export default IconDetectionAndZoneOutlined diff --git a/src/IconDetectionAndZoneOutlinedFilled.tsx b/src/IconDetectionAndZoneOutlinedFilled.tsx index 77265db6b..276d2243c 100644 --- a/src/IconDetectionAndZoneOutlinedFilled.tsx +++ b/src/IconDetectionAndZoneOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconDetectionAndZoneOutlinedFilled: React.FC = ({ ) -export { IconDetectionAndZoneOutlinedFilled as default } +export default IconDetectionAndZoneOutlinedFilled diff --git a/src/IconDetectionAndZoneRounded.tsx b/src/IconDetectionAndZoneRounded.tsx index 9205a7dc0..a3b102441 100644 --- a/src/IconDetectionAndZoneRounded.tsx +++ b/src/IconDetectionAndZoneRounded.tsx @@ -8,4 +8,4 @@ const IconDetectionAndZoneRounded: React.FC = ({ ...props }) => ( ) -export { IconDetectionAndZoneRounded as default } +export default IconDetectionAndZoneRounded diff --git a/src/IconDetectionAndZoneRoundedFilled.tsx b/src/IconDetectionAndZoneRoundedFilled.tsx index 58be3fd2b..1aeccafdf 100644 --- a/src/IconDetectionAndZoneRoundedFilled.tsx +++ b/src/IconDetectionAndZoneRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconDetectionAndZoneRoundedFilled: React.FC = ({ ) -export { IconDetectionAndZoneRoundedFilled as default } +export default IconDetectionAndZoneRoundedFilled diff --git a/src/IconDetectionAndZoneSharp.tsx b/src/IconDetectionAndZoneSharp.tsx index 2ce2ffc02..7291c683a 100644 --- a/src/IconDetectionAndZoneSharp.tsx +++ b/src/IconDetectionAndZoneSharp.tsx @@ -8,4 +8,4 @@ const IconDetectionAndZoneSharp: React.FC = ({ ...props }) => ( ) -export { IconDetectionAndZoneSharp as default } +export default IconDetectionAndZoneSharp diff --git a/src/IconDetectionAndZoneSharpFilled.tsx b/src/IconDetectionAndZoneSharpFilled.tsx index 375271cf0..3ed0d8d19 100644 --- a/src/IconDetectionAndZoneSharpFilled.tsx +++ b/src/IconDetectionAndZoneSharpFilled.tsx @@ -8,4 +8,4 @@ const IconDetectionAndZoneSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconDetectionAndZoneSharpFilled as default } +export default IconDetectionAndZoneSharpFilled diff --git a/src/IconDetectorAlarmOutlined.tsx b/src/IconDetectorAlarmOutlined.tsx index 69fec9031..f548ba835 100644 --- a/src/IconDetectorAlarmOutlined.tsx +++ b/src/IconDetectorAlarmOutlined.tsx @@ -8,4 +8,4 @@ const IconDetectorAlarmOutlined: React.FC = ({ ...props }) => ( ) -export { IconDetectorAlarmOutlined as default } +export default IconDetectorAlarmOutlined diff --git a/src/IconDetectorAlarmOutlinedFilled.tsx b/src/IconDetectorAlarmOutlinedFilled.tsx index 187363b9d..e3ee0f8c5 100644 --- a/src/IconDetectorAlarmOutlinedFilled.tsx +++ b/src/IconDetectorAlarmOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconDetectorAlarmOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconDetectorAlarmOutlinedFilled as default } +export default IconDetectorAlarmOutlinedFilled diff --git a/src/IconDetectorAlarmRounded.tsx b/src/IconDetectorAlarmRounded.tsx index b7a5fe939..dfa4c457d 100644 --- a/src/IconDetectorAlarmRounded.tsx +++ b/src/IconDetectorAlarmRounded.tsx @@ -8,4 +8,4 @@ const IconDetectorAlarmRounded: React.FC = ({ ...props }) => ( ) -export { IconDetectorAlarmRounded as default } +export default IconDetectorAlarmRounded diff --git a/src/IconDetectorAlarmRoundedFilled.tsx b/src/IconDetectorAlarmRoundedFilled.tsx index 8180651d9..761c865a3 100644 --- a/src/IconDetectorAlarmRoundedFilled.tsx +++ b/src/IconDetectorAlarmRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconDetectorAlarmRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconDetectorAlarmRoundedFilled as default } +export default IconDetectorAlarmRoundedFilled diff --git a/src/IconDetectorAlarmSharp.tsx b/src/IconDetectorAlarmSharp.tsx index 5053d92f0..ed5307b9b 100644 --- a/src/IconDetectorAlarmSharp.tsx +++ b/src/IconDetectorAlarmSharp.tsx @@ -8,4 +8,4 @@ const IconDetectorAlarmSharp: React.FC = ({ ...props }) => ( ) -export { IconDetectorAlarmSharp as default } +export default IconDetectorAlarmSharp diff --git a/src/IconDetectorAlarmSharpFilled.tsx b/src/IconDetectorAlarmSharpFilled.tsx index 02774715a..b7b59be22 100644 --- a/src/IconDetectorAlarmSharpFilled.tsx +++ b/src/IconDetectorAlarmSharpFilled.tsx @@ -8,4 +8,4 @@ const IconDetectorAlarmSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconDetectorAlarmSharpFilled as default } +export default IconDetectorAlarmSharpFilled diff --git a/src/IconDetectorBatteryOutlined.tsx b/src/IconDetectorBatteryOutlined.tsx index 2a2a26763..777b3edaf 100644 --- a/src/IconDetectorBatteryOutlined.tsx +++ b/src/IconDetectorBatteryOutlined.tsx @@ -8,4 +8,4 @@ const IconDetectorBatteryOutlined: React.FC = ({ ...props }) => ( ) -export { IconDetectorBatteryOutlined as default } +export default IconDetectorBatteryOutlined diff --git a/src/IconDetectorBatteryOutlinedFilled.tsx b/src/IconDetectorBatteryOutlinedFilled.tsx index a69bf9a00..d4b755062 100644 --- a/src/IconDetectorBatteryOutlinedFilled.tsx +++ b/src/IconDetectorBatteryOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconDetectorBatteryOutlinedFilled: React.FC = ({ ) -export { IconDetectorBatteryOutlinedFilled as default } +export default IconDetectorBatteryOutlinedFilled diff --git a/src/IconDetectorBatteryRounded.tsx b/src/IconDetectorBatteryRounded.tsx index 2e5da6e2d..9ffc30305 100644 --- a/src/IconDetectorBatteryRounded.tsx +++ b/src/IconDetectorBatteryRounded.tsx @@ -8,4 +8,4 @@ const IconDetectorBatteryRounded: React.FC = ({ ...props }) => ( ) -export { IconDetectorBatteryRounded as default } +export default IconDetectorBatteryRounded diff --git a/src/IconDetectorBatteryRoundedFilled.tsx b/src/IconDetectorBatteryRoundedFilled.tsx index 96c9b4cf2..cd2cfc72e 100644 --- a/src/IconDetectorBatteryRoundedFilled.tsx +++ b/src/IconDetectorBatteryRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconDetectorBatteryRoundedFilled: React.FC = ({ ) -export { IconDetectorBatteryRoundedFilled as default } +export default IconDetectorBatteryRoundedFilled diff --git a/src/IconDetectorBatterySharp.tsx b/src/IconDetectorBatterySharp.tsx index 6e05fc3c1..97037ff0d 100644 --- a/src/IconDetectorBatterySharp.tsx +++ b/src/IconDetectorBatterySharp.tsx @@ -8,4 +8,4 @@ const IconDetectorBatterySharp: React.FC = ({ ...props }) => ( ) -export { IconDetectorBatterySharp as default } +export default IconDetectorBatterySharp diff --git a/src/IconDetectorBatterySharpFilled.tsx b/src/IconDetectorBatterySharpFilled.tsx index ab997ca04..10224c639 100644 --- a/src/IconDetectorBatterySharpFilled.tsx +++ b/src/IconDetectorBatterySharpFilled.tsx @@ -8,4 +8,4 @@ const IconDetectorBatterySharpFilled: React.FC = ({ ...props }) => ( ) -export { IconDetectorBatterySharpFilled as default } +export default IconDetectorBatterySharpFilled diff --git a/src/IconDetectorCoOutlined.tsx b/src/IconDetectorCoOutlined.tsx index 24482f0da..dbfb4f582 100644 --- a/src/IconDetectorCoOutlined.tsx +++ b/src/IconDetectorCoOutlined.tsx @@ -8,4 +8,4 @@ const IconDetectorCoOutlined: React.FC = ({ ...props }) => ( ) -export { IconDetectorCoOutlined as default } +export default IconDetectorCoOutlined diff --git a/src/IconDetectorCoOutlinedFilled.tsx b/src/IconDetectorCoOutlinedFilled.tsx index 2d0037200..659802295 100644 --- a/src/IconDetectorCoOutlinedFilled.tsx +++ b/src/IconDetectorCoOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconDetectorCoOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconDetectorCoOutlinedFilled as default } +export default IconDetectorCoOutlinedFilled diff --git a/src/IconDetectorCoRounded.tsx b/src/IconDetectorCoRounded.tsx index 72eaf4a5c..c367d91bb 100644 --- a/src/IconDetectorCoRounded.tsx +++ b/src/IconDetectorCoRounded.tsx @@ -8,4 +8,4 @@ const IconDetectorCoRounded: React.FC = ({ ...props }) => ( ) -export { IconDetectorCoRounded as default } +export default IconDetectorCoRounded diff --git a/src/IconDetectorCoRoundedFilled.tsx b/src/IconDetectorCoRoundedFilled.tsx index d8e5508e2..ca527a691 100644 --- a/src/IconDetectorCoRoundedFilled.tsx +++ b/src/IconDetectorCoRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconDetectorCoRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconDetectorCoRoundedFilled as default } +export default IconDetectorCoRoundedFilled diff --git a/src/IconDetectorCoSharp.tsx b/src/IconDetectorCoSharp.tsx index ef50a72e8..d3949bd2e 100644 --- a/src/IconDetectorCoSharp.tsx +++ b/src/IconDetectorCoSharp.tsx @@ -8,4 +8,4 @@ const IconDetectorCoSharp: React.FC = ({ ...props }) => ( ) -export { IconDetectorCoSharp as default } +export default IconDetectorCoSharp diff --git a/src/IconDetectorCoSharpFilled.tsx b/src/IconDetectorCoSharpFilled.tsx index 0ee345f20..199742f49 100644 --- a/src/IconDetectorCoSharpFilled.tsx +++ b/src/IconDetectorCoSharpFilled.tsx @@ -8,4 +8,4 @@ const IconDetectorCoSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconDetectorCoSharpFilled as default } +export default IconDetectorCoSharpFilled diff --git a/src/IconDetectorOfflineOutlined.tsx b/src/IconDetectorOfflineOutlined.tsx index d42413dcd..2f8e53e23 100644 --- a/src/IconDetectorOfflineOutlined.tsx +++ b/src/IconDetectorOfflineOutlined.tsx @@ -8,4 +8,4 @@ const IconDetectorOfflineOutlined: React.FC = ({ ...props }) => ( ) -export { IconDetectorOfflineOutlined as default } +export default IconDetectorOfflineOutlined diff --git a/src/IconDetectorOfflineOutlinedFilled.tsx b/src/IconDetectorOfflineOutlinedFilled.tsx index 85e35c4b7..1c1d3beb0 100644 --- a/src/IconDetectorOfflineOutlinedFilled.tsx +++ b/src/IconDetectorOfflineOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconDetectorOfflineOutlinedFilled: React.FC = ({ ) -export { IconDetectorOfflineOutlinedFilled as default } +export default IconDetectorOfflineOutlinedFilled diff --git a/src/IconDetectorOfflineRounded.tsx b/src/IconDetectorOfflineRounded.tsx index fad5ee565..1c56eda44 100644 --- a/src/IconDetectorOfflineRounded.tsx +++ b/src/IconDetectorOfflineRounded.tsx @@ -8,4 +8,4 @@ const IconDetectorOfflineRounded: React.FC = ({ ...props }) => ( ) -export { IconDetectorOfflineRounded as default } +export default IconDetectorOfflineRounded diff --git a/src/IconDetectorOfflineRoundedFilled.tsx b/src/IconDetectorOfflineRoundedFilled.tsx index fa1f597f3..0cf16fd2c 100644 --- a/src/IconDetectorOfflineRoundedFilled.tsx +++ b/src/IconDetectorOfflineRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconDetectorOfflineRoundedFilled: React.FC = ({ ) -export { IconDetectorOfflineRoundedFilled as default } +export default IconDetectorOfflineRoundedFilled diff --git a/src/IconDetectorOfflineSharp.tsx b/src/IconDetectorOfflineSharp.tsx index 6d2a60e6d..02a8ed9cd 100644 --- a/src/IconDetectorOfflineSharp.tsx +++ b/src/IconDetectorOfflineSharp.tsx @@ -8,4 +8,4 @@ const IconDetectorOfflineSharp: React.FC = ({ ...props }) => ( ) -export { IconDetectorOfflineSharp as default } +export default IconDetectorOfflineSharp diff --git a/src/IconDetectorOfflineSharpFilled.tsx b/src/IconDetectorOfflineSharpFilled.tsx index 884dea126..292611723 100644 --- a/src/IconDetectorOfflineSharpFilled.tsx +++ b/src/IconDetectorOfflineSharpFilled.tsx @@ -8,4 +8,4 @@ const IconDetectorOfflineSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconDetectorOfflineSharpFilled as default } +export default IconDetectorOfflineSharpFilled diff --git a/src/IconDetectorOutlined.tsx b/src/IconDetectorOutlined.tsx index a5928fd11..1e22114a3 100644 --- a/src/IconDetectorOutlined.tsx +++ b/src/IconDetectorOutlined.tsx @@ -8,4 +8,4 @@ const IconDetectorOutlined: React.FC = ({ ...props }) => ( ) -export { IconDetectorOutlined as default } +export default IconDetectorOutlined diff --git a/src/IconDetectorOutlinedFilled.tsx b/src/IconDetectorOutlinedFilled.tsx index 3f998082b..b160ed837 100644 --- a/src/IconDetectorOutlinedFilled.tsx +++ b/src/IconDetectorOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconDetectorOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconDetectorOutlinedFilled as default } +export default IconDetectorOutlinedFilled diff --git a/src/IconDetectorRounded.tsx b/src/IconDetectorRounded.tsx index c16f0f606..88a93e117 100644 --- a/src/IconDetectorRounded.tsx +++ b/src/IconDetectorRounded.tsx @@ -8,4 +8,4 @@ const IconDetectorRounded: React.FC = ({ ...props }) => ( ) -export { IconDetectorRounded as default } +export default IconDetectorRounded diff --git a/src/IconDetectorRoundedFilled.tsx b/src/IconDetectorRoundedFilled.tsx index 1fcbb7639..d772b3207 100644 --- a/src/IconDetectorRoundedFilled.tsx +++ b/src/IconDetectorRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconDetectorRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconDetectorRoundedFilled as default } +export default IconDetectorRoundedFilled diff --git a/src/IconDetectorSharp.tsx b/src/IconDetectorSharp.tsx index 7568ba34a..5c309a7d5 100644 --- a/src/IconDetectorSharp.tsx +++ b/src/IconDetectorSharp.tsx @@ -8,4 +8,4 @@ const IconDetectorSharp: React.FC = ({ ...props }) => ( ) -export { IconDetectorSharp as default } +export default IconDetectorSharp diff --git a/src/IconDetectorSharpFilled.tsx b/src/IconDetectorSharpFilled.tsx index 39fb8c452..ff6b81881 100644 --- a/src/IconDetectorSharpFilled.tsx +++ b/src/IconDetectorSharpFilled.tsx @@ -8,4 +8,4 @@ const IconDetectorSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconDetectorSharpFilled as default } +export default IconDetectorSharpFilled diff --git a/src/IconDetectorSmokeOutlined.tsx b/src/IconDetectorSmokeOutlined.tsx index 35fcc6973..956aaf716 100644 --- a/src/IconDetectorSmokeOutlined.tsx +++ b/src/IconDetectorSmokeOutlined.tsx @@ -8,4 +8,4 @@ const IconDetectorSmokeOutlined: React.FC = ({ ...props }) => ( ) -export { IconDetectorSmokeOutlined as default } +export default IconDetectorSmokeOutlined diff --git a/src/IconDetectorSmokeOutlinedFilled.tsx b/src/IconDetectorSmokeOutlinedFilled.tsx index e53c6aaca..78efa2ca2 100644 --- a/src/IconDetectorSmokeOutlinedFilled.tsx +++ b/src/IconDetectorSmokeOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconDetectorSmokeOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconDetectorSmokeOutlinedFilled as default } +export default IconDetectorSmokeOutlinedFilled diff --git a/src/IconDetectorSmokeRounded.tsx b/src/IconDetectorSmokeRounded.tsx index 2e4828a78..b4c1c1e76 100644 --- a/src/IconDetectorSmokeRounded.tsx +++ b/src/IconDetectorSmokeRounded.tsx @@ -8,4 +8,4 @@ const IconDetectorSmokeRounded: React.FC = ({ ...props }) => ( ) -export { IconDetectorSmokeRounded as default } +export default IconDetectorSmokeRounded diff --git a/src/IconDetectorSmokeRoundedFilled.tsx b/src/IconDetectorSmokeRoundedFilled.tsx index 43a876663..e1e74b291 100644 --- a/src/IconDetectorSmokeRoundedFilled.tsx +++ b/src/IconDetectorSmokeRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconDetectorSmokeRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconDetectorSmokeRoundedFilled as default } +export default IconDetectorSmokeRoundedFilled diff --git a/src/IconDetectorSmokeSharp.tsx b/src/IconDetectorSmokeSharp.tsx index be8c8513a..394763b31 100644 --- a/src/IconDetectorSmokeSharp.tsx +++ b/src/IconDetectorSmokeSharp.tsx @@ -8,4 +8,4 @@ const IconDetectorSmokeSharp: React.FC = ({ ...props }) => ( ) -export { IconDetectorSmokeSharp as default } +export default IconDetectorSmokeSharp diff --git a/src/IconDetectorSmokeSharpFilled.tsx b/src/IconDetectorSmokeSharpFilled.tsx index 5bf26f5f0..cf38c6e32 100644 --- a/src/IconDetectorSmokeSharpFilled.tsx +++ b/src/IconDetectorSmokeSharpFilled.tsx @@ -8,4 +8,4 @@ const IconDetectorSmokeSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconDetectorSmokeSharpFilled as default } +export default IconDetectorSmokeSharpFilled diff --git a/src/IconDetectorStatusOutlined.tsx b/src/IconDetectorStatusOutlined.tsx index 010728d82..09e471ee7 100644 --- a/src/IconDetectorStatusOutlined.tsx +++ b/src/IconDetectorStatusOutlined.tsx @@ -8,4 +8,4 @@ const IconDetectorStatusOutlined: React.FC = ({ ...props }) => ( ) -export { IconDetectorStatusOutlined as default } +export default IconDetectorStatusOutlined diff --git a/src/IconDetectorStatusOutlinedFilled.tsx b/src/IconDetectorStatusOutlinedFilled.tsx index 135d84472..305764251 100644 --- a/src/IconDetectorStatusOutlinedFilled.tsx +++ b/src/IconDetectorStatusOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconDetectorStatusOutlinedFilled: React.FC = ({ ) -export { IconDetectorStatusOutlinedFilled as default } +export default IconDetectorStatusOutlinedFilled diff --git a/src/IconDetectorStatusRounded.tsx b/src/IconDetectorStatusRounded.tsx index 65a5c6aec..59d15d76d 100644 --- a/src/IconDetectorStatusRounded.tsx +++ b/src/IconDetectorStatusRounded.tsx @@ -8,4 +8,4 @@ const IconDetectorStatusRounded: React.FC = ({ ...props }) => ( ) -export { IconDetectorStatusRounded as default } +export default IconDetectorStatusRounded diff --git a/src/IconDetectorStatusRoundedFilled.tsx b/src/IconDetectorStatusRoundedFilled.tsx index edaf98c1d..7e9bca234 100644 --- a/src/IconDetectorStatusRoundedFilled.tsx +++ b/src/IconDetectorStatusRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconDetectorStatusRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconDetectorStatusRoundedFilled as default } +export default IconDetectorStatusRoundedFilled diff --git a/src/IconDetectorStatusSharp.tsx b/src/IconDetectorStatusSharp.tsx index bed6483b5..6d4ab853d 100644 --- a/src/IconDetectorStatusSharp.tsx +++ b/src/IconDetectorStatusSharp.tsx @@ -8,4 +8,4 @@ const IconDetectorStatusSharp: React.FC = ({ ...props }) => ( ) -export { IconDetectorStatusSharp as default } +export default IconDetectorStatusSharp diff --git a/src/IconDetectorStatusSharpFilled.tsx b/src/IconDetectorStatusSharpFilled.tsx index a2491a8ce..64ae34f3d 100644 --- a/src/IconDetectorStatusSharpFilled.tsx +++ b/src/IconDetectorStatusSharpFilled.tsx @@ -8,4 +8,4 @@ const IconDetectorStatusSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconDetectorStatusSharpFilled as default } +export default IconDetectorStatusSharpFilled diff --git a/src/IconDeveloperBoardOffOutlined.tsx b/src/IconDeveloperBoardOffOutlined.tsx index e7366ff5b..0fb38e5f5 100644 --- a/src/IconDeveloperBoardOffOutlined.tsx +++ b/src/IconDeveloperBoardOffOutlined.tsx @@ -8,4 +8,4 @@ const IconDeveloperBoardOffOutlined: React.FC = ({ ...props }) => ( ) -export { IconDeveloperBoardOffOutlined as default } +export default IconDeveloperBoardOffOutlined diff --git a/src/IconDeveloperBoardOffOutlinedFilled.tsx b/src/IconDeveloperBoardOffOutlinedFilled.tsx index 338ecb0b9..4e09f60c9 100644 --- a/src/IconDeveloperBoardOffOutlinedFilled.tsx +++ b/src/IconDeveloperBoardOffOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconDeveloperBoardOffOutlinedFilled: React.FC = ({ ) -export { IconDeveloperBoardOffOutlinedFilled as default } +export default IconDeveloperBoardOffOutlinedFilled diff --git a/src/IconDeveloperBoardOffRounded.tsx b/src/IconDeveloperBoardOffRounded.tsx index f5fffd59d..84fd78434 100644 --- a/src/IconDeveloperBoardOffRounded.tsx +++ b/src/IconDeveloperBoardOffRounded.tsx @@ -8,4 +8,4 @@ const IconDeveloperBoardOffRounded: React.FC = ({ ...props }) => ( ) -export { IconDeveloperBoardOffRounded as default } +export default IconDeveloperBoardOffRounded diff --git a/src/IconDeveloperBoardOffRoundedFilled.tsx b/src/IconDeveloperBoardOffRoundedFilled.tsx index 7fb70534e..38b539470 100644 --- a/src/IconDeveloperBoardOffRoundedFilled.tsx +++ b/src/IconDeveloperBoardOffRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconDeveloperBoardOffRoundedFilled: React.FC = ({ ) -export { IconDeveloperBoardOffRoundedFilled as default } +export default IconDeveloperBoardOffRoundedFilled diff --git a/src/IconDeveloperBoardOffSharp.tsx b/src/IconDeveloperBoardOffSharp.tsx index a7c8cbc80..4558f0474 100644 --- a/src/IconDeveloperBoardOffSharp.tsx +++ b/src/IconDeveloperBoardOffSharp.tsx @@ -8,4 +8,4 @@ const IconDeveloperBoardOffSharp: React.FC = ({ ...props }) => ( ) -export { IconDeveloperBoardOffSharp as default } +export default IconDeveloperBoardOffSharp diff --git a/src/IconDeveloperBoardOffSharpFilled.tsx b/src/IconDeveloperBoardOffSharpFilled.tsx index 27ac94969..22efed6c0 100644 --- a/src/IconDeveloperBoardOffSharpFilled.tsx +++ b/src/IconDeveloperBoardOffSharpFilled.tsx @@ -10,4 +10,4 @@ const IconDeveloperBoardOffSharpFilled: React.FC = ({ ) -export { IconDeveloperBoardOffSharpFilled as default } +export default IconDeveloperBoardOffSharpFilled diff --git a/src/IconDeveloperBoardOutlined.tsx b/src/IconDeveloperBoardOutlined.tsx index d5c989247..1a8f4141e 100644 --- a/src/IconDeveloperBoardOutlined.tsx +++ b/src/IconDeveloperBoardOutlined.tsx @@ -8,4 +8,4 @@ const IconDeveloperBoardOutlined: React.FC = ({ ...props }) => ( ) -export { IconDeveloperBoardOutlined as default } +export default IconDeveloperBoardOutlined diff --git a/src/IconDeveloperBoardOutlinedFilled.tsx b/src/IconDeveloperBoardOutlinedFilled.tsx index 5d7efd276..7d9d95d2b 100644 --- a/src/IconDeveloperBoardOutlinedFilled.tsx +++ b/src/IconDeveloperBoardOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconDeveloperBoardOutlinedFilled: React.FC = ({ ) -export { IconDeveloperBoardOutlinedFilled as default } +export default IconDeveloperBoardOutlinedFilled diff --git a/src/IconDeveloperBoardRounded.tsx b/src/IconDeveloperBoardRounded.tsx index 750711bdd..196f0a886 100644 --- a/src/IconDeveloperBoardRounded.tsx +++ b/src/IconDeveloperBoardRounded.tsx @@ -8,4 +8,4 @@ const IconDeveloperBoardRounded: React.FC = ({ ...props }) => ( ) -export { IconDeveloperBoardRounded as default } +export default IconDeveloperBoardRounded diff --git a/src/IconDeveloperBoardRoundedFilled.tsx b/src/IconDeveloperBoardRoundedFilled.tsx index 933979063..612362866 100644 --- a/src/IconDeveloperBoardRoundedFilled.tsx +++ b/src/IconDeveloperBoardRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconDeveloperBoardRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconDeveloperBoardRoundedFilled as default } +export default IconDeveloperBoardRoundedFilled diff --git a/src/IconDeveloperBoardSharp.tsx b/src/IconDeveloperBoardSharp.tsx index 74f730ade..b3d86e6ff 100644 --- a/src/IconDeveloperBoardSharp.tsx +++ b/src/IconDeveloperBoardSharp.tsx @@ -8,4 +8,4 @@ const IconDeveloperBoardSharp: React.FC = ({ ...props }) => ( ) -export { IconDeveloperBoardSharp as default } +export default IconDeveloperBoardSharp diff --git a/src/IconDeveloperBoardSharpFilled.tsx b/src/IconDeveloperBoardSharpFilled.tsx index 6c2dd82d1..52d0c4965 100644 --- a/src/IconDeveloperBoardSharpFilled.tsx +++ b/src/IconDeveloperBoardSharpFilled.tsx @@ -8,4 +8,4 @@ const IconDeveloperBoardSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconDeveloperBoardSharpFilled as default } +export default IconDeveloperBoardSharpFilled diff --git a/src/IconDeveloperGuideOutlined.tsx b/src/IconDeveloperGuideOutlined.tsx index a613d7fb5..2cdafd377 100644 --- a/src/IconDeveloperGuideOutlined.tsx +++ b/src/IconDeveloperGuideOutlined.tsx @@ -8,4 +8,4 @@ const IconDeveloperGuideOutlined: React.FC = ({ ...props }) => ( ) -export { IconDeveloperGuideOutlined as default } +export default IconDeveloperGuideOutlined diff --git a/src/IconDeveloperGuideOutlinedFilled.tsx b/src/IconDeveloperGuideOutlinedFilled.tsx index b5ca33f1e..85c0e1eae 100644 --- a/src/IconDeveloperGuideOutlinedFilled.tsx +++ b/src/IconDeveloperGuideOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconDeveloperGuideOutlinedFilled: React.FC = ({ ) -export { IconDeveloperGuideOutlinedFilled as default } +export default IconDeveloperGuideOutlinedFilled diff --git a/src/IconDeveloperGuideRounded.tsx b/src/IconDeveloperGuideRounded.tsx index 049722f5f..5d4d00af7 100644 --- a/src/IconDeveloperGuideRounded.tsx +++ b/src/IconDeveloperGuideRounded.tsx @@ -8,4 +8,4 @@ const IconDeveloperGuideRounded: React.FC = ({ ...props }) => ( ) -export { IconDeveloperGuideRounded as default } +export default IconDeveloperGuideRounded diff --git a/src/IconDeveloperGuideRoundedFilled.tsx b/src/IconDeveloperGuideRoundedFilled.tsx index 22b156dbd..dbb1200af 100644 --- a/src/IconDeveloperGuideRoundedFilled.tsx +++ b/src/IconDeveloperGuideRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconDeveloperGuideRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconDeveloperGuideRoundedFilled as default } +export default IconDeveloperGuideRoundedFilled diff --git a/src/IconDeveloperGuideSharp.tsx b/src/IconDeveloperGuideSharp.tsx index 2f0ba629e..0f8f17475 100644 --- a/src/IconDeveloperGuideSharp.tsx +++ b/src/IconDeveloperGuideSharp.tsx @@ -8,4 +8,4 @@ const IconDeveloperGuideSharp: React.FC = ({ ...props }) => ( ) -export { IconDeveloperGuideSharp as default } +export default IconDeveloperGuideSharp diff --git a/src/IconDeveloperGuideSharpFilled.tsx b/src/IconDeveloperGuideSharpFilled.tsx index 26de8ae47..c8a0a40ba 100644 --- a/src/IconDeveloperGuideSharpFilled.tsx +++ b/src/IconDeveloperGuideSharpFilled.tsx @@ -8,4 +8,4 @@ const IconDeveloperGuideSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconDeveloperGuideSharpFilled as default } +export default IconDeveloperGuideSharpFilled diff --git a/src/IconDeveloperModeOutlined.tsx b/src/IconDeveloperModeOutlined.tsx index 12ccffe67..bf6fc6e1b 100644 --- a/src/IconDeveloperModeOutlined.tsx +++ b/src/IconDeveloperModeOutlined.tsx @@ -8,4 +8,4 @@ const IconDeveloperModeOutlined: React.FC = ({ ...props }) => ( ) -export { IconDeveloperModeOutlined as default } +export default IconDeveloperModeOutlined diff --git a/src/IconDeveloperModeOutlinedFilled.tsx b/src/IconDeveloperModeOutlinedFilled.tsx index d05e06e98..e46473c63 100644 --- a/src/IconDeveloperModeOutlinedFilled.tsx +++ b/src/IconDeveloperModeOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconDeveloperModeOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconDeveloperModeOutlinedFilled as default } +export default IconDeveloperModeOutlinedFilled diff --git a/src/IconDeveloperModeRounded.tsx b/src/IconDeveloperModeRounded.tsx index 10281528f..4140c4994 100644 --- a/src/IconDeveloperModeRounded.tsx +++ b/src/IconDeveloperModeRounded.tsx @@ -8,4 +8,4 @@ const IconDeveloperModeRounded: React.FC = ({ ...props }) => ( ) -export { IconDeveloperModeRounded as default } +export default IconDeveloperModeRounded diff --git a/src/IconDeveloperModeRoundedFilled.tsx b/src/IconDeveloperModeRoundedFilled.tsx index 4d58f1c57..3a9d3a34a 100644 --- a/src/IconDeveloperModeRoundedFilled.tsx +++ b/src/IconDeveloperModeRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconDeveloperModeRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconDeveloperModeRoundedFilled as default } +export default IconDeveloperModeRoundedFilled diff --git a/src/IconDeveloperModeSharp.tsx b/src/IconDeveloperModeSharp.tsx index 05c69583a..2ce428d01 100644 --- a/src/IconDeveloperModeSharp.tsx +++ b/src/IconDeveloperModeSharp.tsx @@ -8,4 +8,4 @@ const IconDeveloperModeSharp: React.FC = ({ ...props }) => ( ) -export { IconDeveloperModeSharp as default } +export default IconDeveloperModeSharp diff --git a/src/IconDeveloperModeSharpFilled.tsx b/src/IconDeveloperModeSharpFilled.tsx index 3c8a16834..213d22307 100644 --- a/src/IconDeveloperModeSharpFilled.tsx +++ b/src/IconDeveloperModeSharpFilled.tsx @@ -8,4 +8,4 @@ const IconDeveloperModeSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconDeveloperModeSharpFilled as default } +export default IconDeveloperModeSharpFilled diff --git a/src/IconDeveloperModeTvOutlined.tsx b/src/IconDeveloperModeTvOutlined.tsx index 49a306ead..da8b82b58 100644 --- a/src/IconDeveloperModeTvOutlined.tsx +++ b/src/IconDeveloperModeTvOutlined.tsx @@ -8,4 +8,4 @@ const IconDeveloperModeTvOutlined: React.FC = ({ ...props }) => ( ) -export { IconDeveloperModeTvOutlined as default } +export default IconDeveloperModeTvOutlined diff --git a/src/IconDeveloperModeTvOutlinedFilled.tsx b/src/IconDeveloperModeTvOutlinedFilled.tsx index e8c5b336a..1c2658cae 100644 --- a/src/IconDeveloperModeTvOutlinedFilled.tsx +++ b/src/IconDeveloperModeTvOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconDeveloperModeTvOutlinedFilled: React.FC = ({ ) -export { IconDeveloperModeTvOutlinedFilled as default } +export default IconDeveloperModeTvOutlinedFilled diff --git a/src/IconDeveloperModeTvRounded.tsx b/src/IconDeveloperModeTvRounded.tsx index 0e07cbff1..ef7e45362 100644 --- a/src/IconDeveloperModeTvRounded.tsx +++ b/src/IconDeveloperModeTvRounded.tsx @@ -8,4 +8,4 @@ const IconDeveloperModeTvRounded: React.FC = ({ ...props }) => ( ) -export { IconDeveloperModeTvRounded as default } +export default IconDeveloperModeTvRounded diff --git a/src/IconDeveloperModeTvRoundedFilled.tsx b/src/IconDeveloperModeTvRoundedFilled.tsx index 6cd231281..b50bbe4a7 100644 --- a/src/IconDeveloperModeTvRoundedFilled.tsx +++ b/src/IconDeveloperModeTvRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconDeveloperModeTvRoundedFilled: React.FC = ({ ) -export { IconDeveloperModeTvRoundedFilled as default } +export default IconDeveloperModeTvRoundedFilled diff --git a/src/IconDeveloperModeTvSharp.tsx b/src/IconDeveloperModeTvSharp.tsx index 4df49b6b7..e35a63331 100644 --- a/src/IconDeveloperModeTvSharp.tsx +++ b/src/IconDeveloperModeTvSharp.tsx @@ -8,4 +8,4 @@ const IconDeveloperModeTvSharp: React.FC = ({ ...props }) => ( ) -export { IconDeveloperModeTvSharp as default } +export default IconDeveloperModeTvSharp diff --git a/src/IconDeveloperModeTvSharpFilled.tsx b/src/IconDeveloperModeTvSharpFilled.tsx index 7b01caa7f..d9fe66f59 100644 --- a/src/IconDeveloperModeTvSharpFilled.tsx +++ b/src/IconDeveloperModeTvSharpFilled.tsx @@ -8,4 +8,4 @@ const IconDeveloperModeTvSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconDeveloperModeTvSharpFilled as default } +export default IconDeveloperModeTvSharpFilled diff --git a/src/IconDeviceHubOutlined.tsx b/src/IconDeviceHubOutlined.tsx index db086ce5b..873ba1778 100644 --- a/src/IconDeviceHubOutlined.tsx +++ b/src/IconDeviceHubOutlined.tsx @@ -8,4 +8,4 @@ const IconDeviceHubOutlined: React.FC = ({ ...props }) => ( ) -export { IconDeviceHubOutlined as default } +export default IconDeviceHubOutlined diff --git a/src/IconDeviceHubOutlinedFilled.tsx b/src/IconDeviceHubOutlinedFilled.tsx index 25b3646a0..387612149 100644 --- a/src/IconDeviceHubOutlinedFilled.tsx +++ b/src/IconDeviceHubOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconDeviceHubOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconDeviceHubOutlinedFilled as default } +export default IconDeviceHubOutlinedFilled diff --git a/src/IconDeviceHubRounded.tsx b/src/IconDeviceHubRounded.tsx index acd340a8f..6a32d6b8e 100644 --- a/src/IconDeviceHubRounded.tsx +++ b/src/IconDeviceHubRounded.tsx @@ -8,4 +8,4 @@ const IconDeviceHubRounded: React.FC = ({ ...props }) => ( ) -export { IconDeviceHubRounded as default } +export default IconDeviceHubRounded diff --git a/src/IconDeviceHubRoundedFilled.tsx b/src/IconDeviceHubRoundedFilled.tsx index a6026ceb1..68db8ef5e 100644 --- a/src/IconDeviceHubRoundedFilled.tsx +++ b/src/IconDeviceHubRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconDeviceHubRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconDeviceHubRoundedFilled as default } +export default IconDeviceHubRoundedFilled diff --git a/src/IconDeviceHubSharp.tsx b/src/IconDeviceHubSharp.tsx index abb9ccdb9..47f7b8039 100644 --- a/src/IconDeviceHubSharp.tsx +++ b/src/IconDeviceHubSharp.tsx @@ -8,4 +8,4 @@ const IconDeviceHubSharp: React.FC = ({ ...props }) => ( ) -export { IconDeviceHubSharp as default } +export default IconDeviceHubSharp diff --git a/src/IconDeviceHubSharpFilled.tsx b/src/IconDeviceHubSharpFilled.tsx index d98373b0e..84b7e7e03 100644 --- a/src/IconDeviceHubSharpFilled.tsx +++ b/src/IconDeviceHubSharpFilled.tsx @@ -8,4 +8,4 @@ const IconDeviceHubSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconDeviceHubSharpFilled as default } +export default IconDeviceHubSharpFilled diff --git a/src/IconDeviceThermostatOutlined.tsx b/src/IconDeviceThermostatOutlined.tsx index 2c881a04c..8e5546c84 100644 --- a/src/IconDeviceThermostatOutlined.tsx +++ b/src/IconDeviceThermostatOutlined.tsx @@ -8,4 +8,4 @@ const IconDeviceThermostatOutlined: React.FC = ({ ...props }) => ( ) -export { IconDeviceThermostatOutlined as default } +export default IconDeviceThermostatOutlined diff --git a/src/IconDeviceThermostatOutlinedFilled.tsx b/src/IconDeviceThermostatOutlinedFilled.tsx index 8046467c9..c80012918 100644 --- a/src/IconDeviceThermostatOutlinedFilled.tsx +++ b/src/IconDeviceThermostatOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconDeviceThermostatOutlinedFilled: React.FC = ({ ) -export { IconDeviceThermostatOutlinedFilled as default } +export default IconDeviceThermostatOutlinedFilled diff --git a/src/IconDeviceThermostatRounded.tsx b/src/IconDeviceThermostatRounded.tsx index 0212253b8..938c210bd 100644 --- a/src/IconDeviceThermostatRounded.tsx +++ b/src/IconDeviceThermostatRounded.tsx @@ -8,4 +8,4 @@ const IconDeviceThermostatRounded: React.FC = ({ ...props }) => ( ) -export { IconDeviceThermostatRounded as default } +export default IconDeviceThermostatRounded diff --git a/src/IconDeviceThermostatRoundedFilled.tsx b/src/IconDeviceThermostatRoundedFilled.tsx index 3cb20540c..e182d2b42 100644 --- a/src/IconDeviceThermostatRoundedFilled.tsx +++ b/src/IconDeviceThermostatRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconDeviceThermostatRoundedFilled: React.FC = ({ ) -export { IconDeviceThermostatRoundedFilled as default } +export default IconDeviceThermostatRoundedFilled diff --git a/src/IconDeviceThermostatSharp.tsx b/src/IconDeviceThermostatSharp.tsx index 76e065515..efd597a9c 100644 --- a/src/IconDeviceThermostatSharp.tsx +++ b/src/IconDeviceThermostatSharp.tsx @@ -8,4 +8,4 @@ const IconDeviceThermostatSharp: React.FC = ({ ...props }) => ( ) -export { IconDeviceThermostatSharp as default } +export default IconDeviceThermostatSharp diff --git a/src/IconDeviceThermostatSharpFilled.tsx b/src/IconDeviceThermostatSharpFilled.tsx index c0fd76acb..fd7338e73 100644 --- a/src/IconDeviceThermostatSharpFilled.tsx +++ b/src/IconDeviceThermostatSharpFilled.tsx @@ -8,4 +8,4 @@ const IconDeviceThermostatSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconDeviceThermostatSharpFilled as default } +export default IconDeviceThermostatSharpFilled diff --git a/src/IconDeviceUnknownOutlined.tsx b/src/IconDeviceUnknownOutlined.tsx index 92f4c8303..0e35459cd 100644 --- a/src/IconDeviceUnknownOutlined.tsx +++ b/src/IconDeviceUnknownOutlined.tsx @@ -8,4 +8,4 @@ const IconDeviceUnknownOutlined: React.FC = ({ ...props }) => ( ) -export { IconDeviceUnknownOutlined as default } +export default IconDeviceUnknownOutlined diff --git a/src/IconDeviceUnknownOutlinedFilled.tsx b/src/IconDeviceUnknownOutlinedFilled.tsx index 39ee3117d..6d65eb57b 100644 --- a/src/IconDeviceUnknownOutlinedFilled.tsx +++ b/src/IconDeviceUnknownOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconDeviceUnknownOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconDeviceUnknownOutlinedFilled as default } +export default IconDeviceUnknownOutlinedFilled diff --git a/src/IconDeviceUnknownRounded.tsx b/src/IconDeviceUnknownRounded.tsx index b1702e81e..e74917e86 100644 --- a/src/IconDeviceUnknownRounded.tsx +++ b/src/IconDeviceUnknownRounded.tsx @@ -8,4 +8,4 @@ const IconDeviceUnknownRounded: React.FC = ({ ...props }) => ( ) -export { IconDeviceUnknownRounded as default } +export default IconDeviceUnknownRounded diff --git a/src/IconDeviceUnknownRoundedFilled.tsx b/src/IconDeviceUnknownRoundedFilled.tsx index 0bdd16ba0..fac54db41 100644 --- a/src/IconDeviceUnknownRoundedFilled.tsx +++ b/src/IconDeviceUnknownRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconDeviceUnknownRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconDeviceUnknownRoundedFilled as default } +export default IconDeviceUnknownRoundedFilled diff --git a/src/IconDeviceUnknownSharp.tsx b/src/IconDeviceUnknownSharp.tsx index 2390c3794..6fce7c6a7 100644 --- a/src/IconDeviceUnknownSharp.tsx +++ b/src/IconDeviceUnknownSharp.tsx @@ -8,4 +8,4 @@ const IconDeviceUnknownSharp: React.FC = ({ ...props }) => ( ) -export { IconDeviceUnknownSharp as default } +export default IconDeviceUnknownSharp diff --git a/src/IconDeviceUnknownSharpFilled.tsx b/src/IconDeviceUnknownSharpFilled.tsx index ea1177e64..b343fd3e4 100644 --- a/src/IconDeviceUnknownSharpFilled.tsx +++ b/src/IconDeviceUnknownSharpFilled.tsx @@ -8,4 +8,4 @@ const IconDeviceUnknownSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconDeviceUnknownSharpFilled as default } +export default IconDeviceUnknownSharpFilled diff --git a/src/IconDevicesFold2Outlined.tsx b/src/IconDevicesFold2Outlined.tsx index e8093e54f..859dc03c7 100644 --- a/src/IconDevicesFold2Outlined.tsx +++ b/src/IconDevicesFold2Outlined.tsx @@ -8,4 +8,4 @@ const IconDevicesFold2Outlined: React.FC = ({ ...props }) => ( ) -export { IconDevicesFold2Outlined as default } +export default IconDevicesFold2Outlined diff --git a/src/IconDevicesFold2OutlinedFilled.tsx b/src/IconDevicesFold2OutlinedFilled.tsx index 543a6c78d..2fd885d77 100644 --- a/src/IconDevicesFold2OutlinedFilled.tsx +++ b/src/IconDevicesFold2OutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconDevicesFold2OutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconDevicesFold2OutlinedFilled as default } +export default IconDevicesFold2OutlinedFilled diff --git a/src/IconDevicesFold2Rounded.tsx b/src/IconDevicesFold2Rounded.tsx index 9a1b8317f..7c323ce36 100644 --- a/src/IconDevicesFold2Rounded.tsx +++ b/src/IconDevicesFold2Rounded.tsx @@ -8,4 +8,4 @@ const IconDevicesFold2Rounded: React.FC = ({ ...props }) => ( ) -export { IconDevicesFold2Rounded as default } +export default IconDevicesFold2Rounded diff --git a/src/IconDevicesFold2RoundedFilled.tsx b/src/IconDevicesFold2RoundedFilled.tsx index 1bad83bcd..7eaec3445 100644 --- a/src/IconDevicesFold2RoundedFilled.tsx +++ b/src/IconDevicesFold2RoundedFilled.tsx @@ -8,4 +8,4 @@ const IconDevicesFold2RoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconDevicesFold2RoundedFilled as default } +export default IconDevicesFold2RoundedFilled diff --git a/src/IconDevicesFold2Sharp.tsx b/src/IconDevicesFold2Sharp.tsx index c13f2967c..562ae513f 100644 --- a/src/IconDevicesFold2Sharp.tsx +++ b/src/IconDevicesFold2Sharp.tsx @@ -8,4 +8,4 @@ const IconDevicesFold2Sharp: React.FC = ({ ...props }) => ( ) -export { IconDevicesFold2Sharp as default } +export default IconDevicesFold2Sharp diff --git a/src/IconDevicesFold2SharpFilled.tsx b/src/IconDevicesFold2SharpFilled.tsx index 4372860f4..6782e1312 100644 --- a/src/IconDevicesFold2SharpFilled.tsx +++ b/src/IconDevicesFold2SharpFilled.tsx @@ -8,4 +8,4 @@ const IconDevicesFold2SharpFilled: React.FC = ({ ...props }) => ( ) -export { IconDevicesFold2SharpFilled as default } +export default IconDevicesFold2SharpFilled diff --git a/src/IconDevicesFoldOutlined.tsx b/src/IconDevicesFoldOutlined.tsx index cf9e6655d..73a664df9 100644 --- a/src/IconDevicesFoldOutlined.tsx +++ b/src/IconDevicesFoldOutlined.tsx @@ -8,4 +8,4 @@ const IconDevicesFoldOutlined: React.FC = ({ ...props }) => ( ) -export { IconDevicesFoldOutlined as default } +export default IconDevicesFoldOutlined diff --git a/src/IconDevicesFoldOutlinedFilled.tsx b/src/IconDevicesFoldOutlinedFilled.tsx index ca9325f3d..8e8bec4e6 100644 --- a/src/IconDevicesFoldOutlinedFilled.tsx +++ b/src/IconDevicesFoldOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconDevicesFoldOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconDevicesFoldOutlinedFilled as default } +export default IconDevicesFoldOutlinedFilled diff --git a/src/IconDevicesFoldRounded.tsx b/src/IconDevicesFoldRounded.tsx index 895d5119b..0a58513bf 100644 --- a/src/IconDevicesFoldRounded.tsx +++ b/src/IconDevicesFoldRounded.tsx @@ -8,4 +8,4 @@ const IconDevicesFoldRounded: React.FC = ({ ...props }) => ( ) -export { IconDevicesFoldRounded as default } +export default IconDevicesFoldRounded diff --git a/src/IconDevicesFoldRoundedFilled.tsx b/src/IconDevicesFoldRoundedFilled.tsx index 01839162b..5c31a22c8 100644 --- a/src/IconDevicesFoldRoundedFilled.tsx +++ b/src/IconDevicesFoldRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconDevicesFoldRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconDevicesFoldRoundedFilled as default } +export default IconDevicesFoldRoundedFilled diff --git a/src/IconDevicesFoldSharp.tsx b/src/IconDevicesFoldSharp.tsx index 987e27998..ddf2aae43 100644 --- a/src/IconDevicesFoldSharp.tsx +++ b/src/IconDevicesFoldSharp.tsx @@ -8,4 +8,4 @@ const IconDevicesFoldSharp: React.FC = ({ ...props }) => ( ) -export { IconDevicesFoldSharp as default } +export default IconDevicesFoldSharp diff --git a/src/IconDevicesFoldSharpFilled.tsx b/src/IconDevicesFoldSharpFilled.tsx index 8020818d6..11a1bf531 100644 --- a/src/IconDevicesFoldSharpFilled.tsx +++ b/src/IconDevicesFoldSharpFilled.tsx @@ -8,4 +8,4 @@ const IconDevicesFoldSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconDevicesFoldSharpFilled as default } +export default IconDevicesFoldSharpFilled diff --git a/src/IconDevicesOffOutlined.tsx b/src/IconDevicesOffOutlined.tsx index 4d4f04789..fef03592b 100644 --- a/src/IconDevicesOffOutlined.tsx +++ b/src/IconDevicesOffOutlined.tsx @@ -8,4 +8,4 @@ const IconDevicesOffOutlined: React.FC = ({ ...props }) => ( ) -export { IconDevicesOffOutlined as default } +export default IconDevicesOffOutlined diff --git a/src/IconDevicesOffOutlinedFilled.tsx b/src/IconDevicesOffOutlinedFilled.tsx index 1a65dbe68..c478eae65 100644 --- a/src/IconDevicesOffOutlinedFilled.tsx +++ b/src/IconDevicesOffOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconDevicesOffOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconDevicesOffOutlinedFilled as default } +export default IconDevicesOffOutlinedFilled diff --git a/src/IconDevicesOffRounded.tsx b/src/IconDevicesOffRounded.tsx index 7bede16d9..fabda26ea 100644 --- a/src/IconDevicesOffRounded.tsx +++ b/src/IconDevicesOffRounded.tsx @@ -8,4 +8,4 @@ const IconDevicesOffRounded: React.FC = ({ ...props }) => ( ) -export { IconDevicesOffRounded as default } +export default IconDevicesOffRounded diff --git a/src/IconDevicesOffRoundedFilled.tsx b/src/IconDevicesOffRoundedFilled.tsx index b021d6d86..b0ccb7f75 100644 --- a/src/IconDevicesOffRoundedFilled.tsx +++ b/src/IconDevicesOffRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconDevicesOffRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconDevicesOffRoundedFilled as default } +export default IconDevicesOffRoundedFilled diff --git a/src/IconDevicesOffSharp.tsx b/src/IconDevicesOffSharp.tsx index 896324c6c..058977fc6 100644 --- a/src/IconDevicesOffSharp.tsx +++ b/src/IconDevicesOffSharp.tsx @@ -8,4 +8,4 @@ const IconDevicesOffSharp: React.FC = ({ ...props }) => ( ) -export { IconDevicesOffSharp as default } +export default IconDevicesOffSharp diff --git a/src/IconDevicesOffSharpFilled.tsx b/src/IconDevicesOffSharpFilled.tsx index 21f5f1c27..4aae05336 100644 --- a/src/IconDevicesOffSharpFilled.tsx +++ b/src/IconDevicesOffSharpFilled.tsx @@ -8,4 +8,4 @@ const IconDevicesOffSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconDevicesOffSharpFilled as default } +export default IconDevicesOffSharpFilled diff --git a/src/IconDevicesOtherOutlined.tsx b/src/IconDevicesOtherOutlined.tsx index 50412b848..6640e1958 100644 --- a/src/IconDevicesOtherOutlined.tsx +++ b/src/IconDevicesOtherOutlined.tsx @@ -8,4 +8,4 @@ const IconDevicesOtherOutlined: React.FC = ({ ...props }) => ( ) -export { IconDevicesOtherOutlined as default } +export default IconDevicesOtherOutlined diff --git a/src/IconDevicesOtherOutlinedFilled.tsx b/src/IconDevicesOtherOutlinedFilled.tsx index 821b6bdc9..4fad62d3d 100644 --- a/src/IconDevicesOtherOutlinedFilled.tsx +++ b/src/IconDevicesOtherOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconDevicesOtherOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconDevicesOtherOutlinedFilled as default } +export default IconDevicesOtherOutlinedFilled diff --git a/src/IconDevicesOtherRounded.tsx b/src/IconDevicesOtherRounded.tsx index bb4645712..be53a4f63 100644 --- a/src/IconDevicesOtherRounded.tsx +++ b/src/IconDevicesOtherRounded.tsx @@ -8,4 +8,4 @@ const IconDevicesOtherRounded: React.FC = ({ ...props }) => ( ) -export { IconDevicesOtherRounded as default } +export default IconDevicesOtherRounded diff --git a/src/IconDevicesOtherRoundedFilled.tsx b/src/IconDevicesOtherRoundedFilled.tsx index fcf9f0fea..754d21f14 100644 --- a/src/IconDevicesOtherRoundedFilled.tsx +++ b/src/IconDevicesOtherRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconDevicesOtherRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconDevicesOtherRoundedFilled as default } +export default IconDevicesOtherRoundedFilled diff --git a/src/IconDevicesOtherSharp.tsx b/src/IconDevicesOtherSharp.tsx index af960a289..6016ade05 100644 --- a/src/IconDevicesOtherSharp.tsx +++ b/src/IconDevicesOtherSharp.tsx @@ -8,4 +8,4 @@ const IconDevicesOtherSharp: React.FC = ({ ...props }) => ( ) -export { IconDevicesOtherSharp as default } +export default IconDevicesOtherSharp diff --git a/src/IconDevicesOtherSharpFilled.tsx b/src/IconDevicesOtherSharpFilled.tsx index 02932a12c..21eb1f758 100644 --- a/src/IconDevicesOtherSharpFilled.tsx +++ b/src/IconDevicesOtherSharpFilled.tsx @@ -8,4 +8,4 @@ const IconDevicesOtherSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconDevicesOtherSharpFilled as default } +export default IconDevicesOtherSharpFilled diff --git a/src/IconDevicesOutlined.tsx b/src/IconDevicesOutlined.tsx index f8a73bb2b..6cdbffb2e 100644 --- a/src/IconDevicesOutlined.tsx +++ b/src/IconDevicesOutlined.tsx @@ -8,4 +8,4 @@ const IconDevicesOutlined: React.FC = ({ ...props }) => ( ) -export { IconDevicesOutlined as default } +export default IconDevicesOutlined diff --git a/src/IconDevicesOutlinedFilled.tsx b/src/IconDevicesOutlinedFilled.tsx index 6c44d825b..8f7ad9504 100644 --- a/src/IconDevicesOutlinedFilled.tsx +++ b/src/IconDevicesOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconDevicesOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconDevicesOutlinedFilled as default } +export default IconDevicesOutlinedFilled diff --git a/src/IconDevicesRounded.tsx b/src/IconDevicesRounded.tsx index f391842c9..fd34c8a93 100644 --- a/src/IconDevicesRounded.tsx +++ b/src/IconDevicesRounded.tsx @@ -8,4 +8,4 @@ const IconDevicesRounded: React.FC = ({ ...props }) => ( ) -export { IconDevicesRounded as default } +export default IconDevicesRounded diff --git a/src/IconDevicesRoundedFilled.tsx b/src/IconDevicesRoundedFilled.tsx index ed8e5680c..e1aeb25ff 100644 --- a/src/IconDevicesRoundedFilled.tsx +++ b/src/IconDevicesRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconDevicesRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconDevicesRoundedFilled as default } +export default IconDevicesRoundedFilled diff --git a/src/IconDevicesSharp.tsx b/src/IconDevicesSharp.tsx index 65eb75f04..f6f1f4cc1 100644 --- a/src/IconDevicesSharp.tsx +++ b/src/IconDevicesSharp.tsx @@ -8,4 +8,4 @@ const IconDevicesSharp: React.FC = ({ ...props }) => ( ) -export { IconDevicesSharp as default } +export default IconDevicesSharp diff --git a/src/IconDevicesSharpFilled.tsx b/src/IconDevicesSharpFilled.tsx index 868075841..e1fb2d7dc 100644 --- a/src/IconDevicesSharpFilled.tsx +++ b/src/IconDevicesSharpFilled.tsx @@ -8,4 +8,4 @@ const IconDevicesSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconDevicesSharpFilled as default } +export default IconDevicesSharpFilled diff --git a/src/IconDevicesWearablesOutlined.tsx b/src/IconDevicesWearablesOutlined.tsx index 7f261d6ca..35de82556 100644 --- a/src/IconDevicesWearablesOutlined.tsx +++ b/src/IconDevicesWearablesOutlined.tsx @@ -8,4 +8,4 @@ const IconDevicesWearablesOutlined: React.FC = ({ ...props }) => ( ) -export { IconDevicesWearablesOutlined as default } +export default IconDevicesWearablesOutlined diff --git a/src/IconDevicesWearablesOutlinedFilled.tsx b/src/IconDevicesWearablesOutlinedFilled.tsx index 64d4ec91f..16d302e2d 100644 --- a/src/IconDevicesWearablesOutlinedFilled.tsx +++ b/src/IconDevicesWearablesOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconDevicesWearablesOutlinedFilled: React.FC = ({ ) -export { IconDevicesWearablesOutlinedFilled as default } +export default IconDevicesWearablesOutlinedFilled diff --git a/src/IconDevicesWearablesRounded.tsx b/src/IconDevicesWearablesRounded.tsx index db7a95ad4..d824fbc85 100644 --- a/src/IconDevicesWearablesRounded.tsx +++ b/src/IconDevicesWearablesRounded.tsx @@ -8,4 +8,4 @@ const IconDevicesWearablesRounded: React.FC = ({ ...props }) => ( ) -export { IconDevicesWearablesRounded as default } +export default IconDevicesWearablesRounded diff --git a/src/IconDevicesWearablesRoundedFilled.tsx b/src/IconDevicesWearablesRoundedFilled.tsx index 4a78e7cca..6b3ea87d1 100644 --- a/src/IconDevicesWearablesRoundedFilled.tsx +++ b/src/IconDevicesWearablesRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconDevicesWearablesRoundedFilled: React.FC = ({ ) -export { IconDevicesWearablesRoundedFilled as default } +export default IconDevicesWearablesRoundedFilled diff --git a/src/IconDevicesWearablesSharp.tsx b/src/IconDevicesWearablesSharp.tsx index 027980aec..2ab2f57b7 100644 --- a/src/IconDevicesWearablesSharp.tsx +++ b/src/IconDevicesWearablesSharp.tsx @@ -8,4 +8,4 @@ const IconDevicesWearablesSharp: React.FC = ({ ...props }) => ( ) -export { IconDevicesWearablesSharp as default } +export default IconDevicesWearablesSharp diff --git a/src/IconDevicesWearablesSharpFilled.tsx b/src/IconDevicesWearablesSharpFilled.tsx index 6a20dee42..1b35b6514 100644 --- a/src/IconDevicesWearablesSharpFilled.tsx +++ b/src/IconDevicesWearablesSharpFilled.tsx @@ -8,4 +8,4 @@ const IconDevicesWearablesSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconDevicesWearablesSharpFilled as default } +export default IconDevicesWearablesSharpFilled diff --git a/src/IconDewPointOutlined.tsx b/src/IconDewPointOutlined.tsx index 9d63bc25b..92f2a8419 100644 --- a/src/IconDewPointOutlined.tsx +++ b/src/IconDewPointOutlined.tsx @@ -8,4 +8,4 @@ const IconDewPointOutlined: React.FC = ({ ...props }) => ( ) -export { IconDewPointOutlined as default } +export default IconDewPointOutlined diff --git a/src/IconDewPointOutlinedFilled.tsx b/src/IconDewPointOutlinedFilled.tsx index 03722e4c0..167bfe9f8 100644 --- a/src/IconDewPointOutlinedFilled.tsx +++ b/src/IconDewPointOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconDewPointOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconDewPointOutlinedFilled as default } +export default IconDewPointOutlinedFilled diff --git a/src/IconDewPointRounded.tsx b/src/IconDewPointRounded.tsx index 94c4ce2f7..8385a5c4e 100644 --- a/src/IconDewPointRounded.tsx +++ b/src/IconDewPointRounded.tsx @@ -8,4 +8,4 @@ const IconDewPointRounded: React.FC = ({ ...props }) => ( ) -export { IconDewPointRounded as default } +export default IconDewPointRounded diff --git a/src/IconDewPointRoundedFilled.tsx b/src/IconDewPointRoundedFilled.tsx index e6460a33e..84bed7069 100644 --- a/src/IconDewPointRoundedFilled.tsx +++ b/src/IconDewPointRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconDewPointRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconDewPointRoundedFilled as default } +export default IconDewPointRoundedFilled diff --git a/src/IconDewPointSharp.tsx b/src/IconDewPointSharp.tsx index b1be5cef4..5e6a5fe2f 100644 --- a/src/IconDewPointSharp.tsx +++ b/src/IconDewPointSharp.tsx @@ -8,4 +8,4 @@ const IconDewPointSharp: React.FC = ({ ...props }) => ( ) -export { IconDewPointSharp as default } +export default IconDewPointSharp diff --git a/src/IconDewPointSharpFilled.tsx b/src/IconDewPointSharpFilled.tsx index 6db32df2b..1c9507183 100644 --- a/src/IconDewPointSharpFilled.tsx +++ b/src/IconDewPointSharpFilled.tsx @@ -8,4 +8,4 @@ const IconDewPointSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconDewPointSharpFilled as default } +export default IconDewPointSharpFilled diff --git a/src/IconDiagnosisOutlined.tsx b/src/IconDiagnosisOutlined.tsx index 83950707f..b03412b85 100644 --- a/src/IconDiagnosisOutlined.tsx +++ b/src/IconDiagnosisOutlined.tsx @@ -8,4 +8,4 @@ const IconDiagnosisOutlined: React.FC = ({ ...props }) => ( ) -export { IconDiagnosisOutlined as default } +export default IconDiagnosisOutlined diff --git a/src/IconDiagnosisOutlinedFilled.tsx b/src/IconDiagnosisOutlinedFilled.tsx index def90cb26..5dedc02bc 100644 --- a/src/IconDiagnosisOutlinedFilled.tsx +++ b/src/IconDiagnosisOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconDiagnosisOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconDiagnosisOutlinedFilled as default } +export default IconDiagnosisOutlinedFilled diff --git a/src/IconDiagnosisRounded.tsx b/src/IconDiagnosisRounded.tsx index 3ef95d9ca..d5292a426 100644 --- a/src/IconDiagnosisRounded.tsx +++ b/src/IconDiagnosisRounded.tsx @@ -8,4 +8,4 @@ const IconDiagnosisRounded: React.FC = ({ ...props }) => ( ) -export { IconDiagnosisRounded as default } +export default IconDiagnosisRounded diff --git a/src/IconDiagnosisRoundedFilled.tsx b/src/IconDiagnosisRoundedFilled.tsx index 6c0e185ce..0088ac49c 100644 --- a/src/IconDiagnosisRoundedFilled.tsx +++ b/src/IconDiagnosisRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconDiagnosisRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconDiagnosisRoundedFilled as default } +export default IconDiagnosisRoundedFilled diff --git a/src/IconDiagnosisSharp.tsx b/src/IconDiagnosisSharp.tsx index 4d8b47ae9..419284b6d 100644 --- a/src/IconDiagnosisSharp.tsx +++ b/src/IconDiagnosisSharp.tsx @@ -8,4 +8,4 @@ const IconDiagnosisSharp: React.FC = ({ ...props }) => ( ) -export { IconDiagnosisSharp as default } +export default IconDiagnosisSharp diff --git a/src/IconDiagnosisSharpFilled.tsx b/src/IconDiagnosisSharpFilled.tsx index 7926c56a5..8139a79ec 100644 --- a/src/IconDiagnosisSharpFilled.tsx +++ b/src/IconDiagnosisSharpFilled.tsx @@ -8,4 +8,4 @@ const IconDiagnosisSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconDiagnosisSharpFilled as default } +export default IconDiagnosisSharpFilled diff --git a/src/IconDiagonalLineOutlined.tsx b/src/IconDiagonalLineOutlined.tsx index 5ef2582e2..a77fcb7e9 100644 --- a/src/IconDiagonalLineOutlined.tsx +++ b/src/IconDiagonalLineOutlined.tsx @@ -8,4 +8,4 @@ const IconDiagonalLineOutlined: React.FC = ({ ...props }) => ( ) -export { IconDiagonalLineOutlined as default } +export default IconDiagonalLineOutlined diff --git a/src/IconDiagonalLineOutlinedFilled.tsx b/src/IconDiagonalLineOutlinedFilled.tsx index dc373e015..6362ed0fa 100644 --- a/src/IconDiagonalLineOutlinedFilled.tsx +++ b/src/IconDiagonalLineOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconDiagonalLineOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconDiagonalLineOutlinedFilled as default } +export default IconDiagonalLineOutlinedFilled diff --git a/src/IconDiagonalLineRounded.tsx b/src/IconDiagonalLineRounded.tsx index e1d3f2f8c..208639024 100644 --- a/src/IconDiagonalLineRounded.tsx +++ b/src/IconDiagonalLineRounded.tsx @@ -8,4 +8,4 @@ const IconDiagonalLineRounded: React.FC = ({ ...props }) => ( ) -export { IconDiagonalLineRounded as default } +export default IconDiagonalLineRounded diff --git a/src/IconDiagonalLineRoundedFilled.tsx b/src/IconDiagonalLineRoundedFilled.tsx index ce8074705..c0ecd86fe 100644 --- a/src/IconDiagonalLineRoundedFilled.tsx +++ b/src/IconDiagonalLineRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconDiagonalLineRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconDiagonalLineRoundedFilled as default } +export default IconDiagonalLineRoundedFilled diff --git a/src/IconDiagonalLineSharp.tsx b/src/IconDiagonalLineSharp.tsx index 1b760db42..6db71daea 100644 --- a/src/IconDiagonalLineSharp.tsx +++ b/src/IconDiagonalLineSharp.tsx @@ -8,4 +8,4 @@ const IconDiagonalLineSharp: React.FC = ({ ...props }) => ( ) -export { IconDiagonalLineSharp as default } +export default IconDiagonalLineSharp diff --git a/src/IconDiagonalLineSharpFilled.tsx b/src/IconDiagonalLineSharpFilled.tsx index 20ba73a75..39f4bd8b1 100644 --- a/src/IconDiagonalLineSharpFilled.tsx +++ b/src/IconDiagonalLineSharpFilled.tsx @@ -8,4 +8,4 @@ const IconDiagonalLineSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconDiagonalLineSharpFilled as default } +export default IconDiagonalLineSharpFilled diff --git a/src/IconDialerSipOutlined.tsx b/src/IconDialerSipOutlined.tsx index 8d97f3fff..e9275c94c 100644 --- a/src/IconDialerSipOutlined.tsx +++ b/src/IconDialerSipOutlined.tsx @@ -8,4 +8,4 @@ const IconDialerSipOutlined: React.FC = ({ ...props }) => ( ) -export { IconDialerSipOutlined as default } +export default IconDialerSipOutlined diff --git a/src/IconDialerSipOutlinedFilled.tsx b/src/IconDialerSipOutlinedFilled.tsx index 447e8b4dc..cf214ec4b 100644 --- a/src/IconDialerSipOutlinedFilled.tsx +++ b/src/IconDialerSipOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconDialerSipOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconDialerSipOutlinedFilled as default } +export default IconDialerSipOutlinedFilled diff --git a/src/IconDialerSipRounded.tsx b/src/IconDialerSipRounded.tsx index 9b0941fbe..1f46f141d 100644 --- a/src/IconDialerSipRounded.tsx +++ b/src/IconDialerSipRounded.tsx @@ -8,4 +8,4 @@ const IconDialerSipRounded: React.FC = ({ ...props }) => ( ) -export { IconDialerSipRounded as default } +export default IconDialerSipRounded diff --git a/src/IconDialerSipRoundedFilled.tsx b/src/IconDialerSipRoundedFilled.tsx index 064d121d2..67bcc722e 100644 --- a/src/IconDialerSipRoundedFilled.tsx +++ b/src/IconDialerSipRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconDialerSipRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconDialerSipRoundedFilled as default } +export default IconDialerSipRoundedFilled diff --git a/src/IconDialerSipSharp.tsx b/src/IconDialerSipSharp.tsx index 8210723cc..8345a41ef 100644 --- a/src/IconDialerSipSharp.tsx +++ b/src/IconDialerSipSharp.tsx @@ -8,4 +8,4 @@ const IconDialerSipSharp: React.FC = ({ ...props }) => ( ) -export { IconDialerSipSharp as default } +export default IconDialerSipSharp diff --git a/src/IconDialerSipSharpFilled.tsx b/src/IconDialerSipSharpFilled.tsx index 14a87e7ae..748f9b73c 100644 --- a/src/IconDialerSipSharpFilled.tsx +++ b/src/IconDialerSipSharpFilled.tsx @@ -8,4 +8,4 @@ const IconDialerSipSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconDialerSipSharpFilled as default } +export default IconDialerSipSharpFilled diff --git a/src/IconDialogsOutlined.tsx b/src/IconDialogsOutlined.tsx index 6b06b2454..a7f37c9cb 100644 --- a/src/IconDialogsOutlined.tsx +++ b/src/IconDialogsOutlined.tsx @@ -8,4 +8,4 @@ const IconDialogsOutlined: React.FC = ({ ...props }) => ( ) -export { IconDialogsOutlined as default } +export default IconDialogsOutlined diff --git a/src/IconDialogsOutlinedFilled.tsx b/src/IconDialogsOutlinedFilled.tsx index d68715d8e..305c7f074 100644 --- a/src/IconDialogsOutlinedFilled.tsx +++ b/src/IconDialogsOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconDialogsOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconDialogsOutlinedFilled as default } +export default IconDialogsOutlinedFilled diff --git a/src/IconDialogsRounded.tsx b/src/IconDialogsRounded.tsx index 823a2b1e2..717086a53 100644 --- a/src/IconDialogsRounded.tsx +++ b/src/IconDialogsRounded.tsx @@ -8,4 +8,4 @@ const IconDialogsRounded: React.FC = ({ ...props }) => ( ) -export { IconDialogsRounded as default } +export default IconDialogsRounded diff --git a/src/IconDialogsRoundedFilled.tsx b/src/IconDialogsRoundedFilled.tsx index 3614701db..45f9ca1b0 100644 --- a/src/IconDialogsRoundedFilled.tsx +++ b/src/IconDialogsRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconDialogsRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconDialogsRoundedFilled as default } +export default IconDialogsRoundedFilled diff --git a/src/IconDialogsSharp.tsx b/src/IconDialogsSharp.tsx index da21e8d6b..1475c0374 100644 --- a/src/IconDialogsSharp.tsx +++ b/src/IconDialogsSharp.tsx @@ -8,4 +8,4 @@ const IconDialogsSharp: React.FC = ({ ...props }) => ( ) -export { IconDialogsSharp as default } +export default IconDialogsSharp diff --git a/src/IconDialogsSharpFilled.tsx b/src/IconDialogsSharpFilled.tsx index c6984a418..2a1f4c9f2 100644 --- a/src/IconDialogsSharpFilled.tsx +++ b/src/IconDialogsSharpFilled.tsx @@ -8,4 +8,4 @@ const IconDialogsSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconDialogsSharpFilled as default } +export default IconDialogsSharpFilled diff --git a/src/IconDialpadOutlined.tsx b/src/IconDialpadOutlined.tsx index 4d5224a51..68a133f9e 100644 --- a/src/IconDialpadOutlined.tsx +++ b/src/IconDialpadOutlined.tsx @@ -8,4 +8,4 @@ const IconDialpadOutlined: React.FC = ({ ...props }) => ( ) -export { IconDialpadOutlined as default } +export default IconDialpadOutlined diff --git a/src/IconDialpadOutlinedFilled.tsx b/src/IconDialpadOutlinedFilled.tsx index d65470710..b98c3bfb2 100644 --- a/src/IconDialpadOutlinedFilled.tsx +++ b/src/IconDialpadOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconDialpadOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconDialpadOutlinedFilled as default } +export default IconDialpadOutlinedFilled diff --git a/src/IconDialpadRounded.tsx b/src/IconDialpadRounded.tsx index 9dd30bfab..f04fe58c2 100644 --- a/src/IconDialpadRounded.tsx +++ b/src/IconDialpadRounded.tsx @@ -8,4 +8,4 @@ const IconDialpadRounded: React.FC = ({ ...props }) => ( ) -export { IconDialpadRounded as default } +export default IconDialpadRounded diff --git a/src/IconDialpadRoundedFilled.tsx b/src/IconDialpadRoundedFilled.tsx index 76410d003..210dcd269 100644 --- a/src/IconDialpadRoundedFilled.tsx +++ b/src/IconDialpadRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconDialpadRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconDialpadRoundedFilled as default } +export default IconDialpadRoundedFilled diff --git a/src/IconDialpadSharp.tsx b/src/IconDialpadSharp.tsx index 644376c38..31d919378 100644 --- a/src/IconDialpadSharp.tsx +++ b/src/IconDialpadSharp.tsx @@ -8,4 +8,4 @@ const IconDialpadSharp: React.FC = ({ ...props }) => ( ) -export { IconDialpadSharp as default } +export default IconDialpadSharp diff --git a/src/IconDialpadSharpFilled.tsx b/src/IconDialpadSharpFilled.tsx index 305dcbe4c..f54ba9d33 100644 --- a/src/IconDialpadSharpFilled.tsx +++ b/src/IconDialpadSharpFilled.tsx @@ -8,4 +8,4 @@ const IconDialpadSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconDialpadSharpFilled as default } +export default IconDialpadSharpFilled diff --git a/src/IconDiamondOutlined.tsx b/src/IconDiamondOutlined.tsx index dbf0191f3..1c0769bb0 100644 --- a/src/IconDiamondOutlined.tsx +++ b/src/IconDiamondOutlined.tsx @@ -8,4 +8,4 @@ const IconDiamondOutlined: React.FC = ({ ...props }) => ( ) -export { IconDiamondOutlined as default } +export default IconDiamondOutlined diff --git a/src/IconDiamondOutlinedFilled.tsx b/src/IconDiamondOutlinedFilled.tsx index 43e19b3d8..f80d367d5 100644 --- a/src/IconDiamondOutlinedFilled.tsx +++ b/src/IconDiamondOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconDiamondOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconDiamondOutlinedFilled as default } +export default IconDiamondOutlinedFilled diff --git a/src/IconDiamondRounded.tsx b/src/IconDiamondRounded.tsx index 350eadc4b..480729001 100644 --- a/src/IconDiamondRounded.tsx +++ b/src/IconDiamondRounded.tsx @@ -8,4 +8,4 @@ const IconDiamondRounded: React.FC = ({ ...props }) => ( ) -export { IconDiamondRounded as default } +export default IconDiamondRounded diff --git a/src/IconDiamondRoundedFilled.tsx b/src/IconDiamondRoundedFilled.tsx index a466c91b8..2b397ab87 100644 --- a/src/IconDiamondRoundedFilled.tsx +++ b/src/IconDiamondRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconDiamondRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconDiamondRoundedFilled as default } +export default IconDiamondRoundedFilled diff --git a/src/IconDiamondSharp.tsx b/src/IconDiamondSharp.tsx index 5e35c445f..61bd42a3c 100644 --- a/src/IconDiamondSharp.tsx +++ b/src/IconDiamondSharp.tsx @@ -8,4 +8,4 @@ const IconDiamondSharp: React.FC = ({ ...props }) => ( ) -export { IconDiamondSharp as default } +export default IconDiamondSharp diff --git a/src/IconDiamondSharpFilled.tsx b/src/IconDiamondSharpFilled.tsx index 628bb494b..ab7afb07e 100644 --- a/src/IconDiamondSharpFilled.tsx +++ b/src/IconDiamondSharpFilled.tsx @@ -8,4 +8,4 @@ const IconDiamondSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconDiamondSharpFilled as default } +export default IconDiamondSharpFilled diff --git a/src/IconDictionaryOutlined.tsx b/src/IconDictionaryOutlined.tsx index 14414d876..a3ae52be7 100644 --- a/src/IconDictionaryOutlined.tsx +++ b/src/IconDictionaryOutlined.tsx @@ -8,4 +8,4 @@ const IconDictionaryOutlined: React.FC = ({ ...props }) => ( ) -export { IconDictionaryOutlined as default } +export default IconDictionaryOutlined diff --git a/src/IconDictionaryOutlinedFilled.tsx b/src/IconDictionaryOutlinedFilled.tsx index d9a2878c7..a3c64dd66 100644 --- a/src/IconDictionaryOutlinedFilled.tsx +++ b/src/IconDictionaryOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconDictionaryOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconDictionaryOutlinedFilled as default } +export default IconDictionaryOutlinedFilled diff --git a/src/IconDictionaryRounded.tsx b/src/IconDictionaryRounded.tsx index 9bda0510c..2f23783f0 100644 --- a/src/IconDictionaryRounded.tsx +++ b/src/IconDictionaryRounded.tsx @@ -8,4 +8,4 @@ const IconDictionaryRounded: React.FC = ({ ...props }) => ( ) -export { IconDictionaryRounded as default } +export default IconDictionaryRounded diff --git a/src/IconDictionaryRoundedFilled.tsx b/src/IconDictionaryRoundedFilled.tsx index 95179dfca..27bc36655 100644 --- a/src/IconDictionaryRoundedFilled.tsx +++ b/src/IconDictionaryRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconDictionaryRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconDictionaryRoundedFilled as default } +export default IconDictionaryRoundedFilled diff --git a/src/IconDictionarySharp.tsx b/src/IconDictionarySharp.tsx index b74385f21..4271b0d62 100644 --- a/src/IconDictionarySharp.tsx +++ b/src/IconDictionarySharp.tsx @@ -8,4 +8,4 @@ const IconDictionarySharp: React.FC = ({ ...props }) => ( ) -export { IconDictionarySharp as default } +export default IconDictionarySharp diff --git a/src/IconDictionarySharpFilled.tsx b/src/IconDictionarySharpFilled.tsx index 457fe8489..fee423334 100644 --- a/src/IconDictionarySharpFilled.tsx +++ b/src/IconDictionarySharpFilled.tsx @@ -8,4 +8,4 @@ const IconDictionarySharpFilled: React.FC = ({ ...props }) => ( ) -export { IconDictionarySharpFilled as default } +export default IconDictionarySharpFilled diff --git a/src/IconDifferenceOutlined.tsx b/src/IconDifferenceOutlined.tsx index 64fd6ac88..32a4447af 100644 --- a/src/IconDifferenceOutlined.tsx +++ b/src/IconDifferenceOutlined.tsx @@ -8,4 +8,4 @@ const IconDifferenceOutlined: React.FC = ({ ...props }) => ( ) -export { IconDifferenceOutlined as default } +export default IconDifferenceOutlined diff --git a/src/IconDifferenceOutlinedFilled.tsx b/src/IconDifferenceOutlinedFilled.tsx index 37c3e309e..1ae6eb264 100644 --- a/src/IconDifferenceOutlinedFilled.tsx +++ b/src/IconDifferenceOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconDifferenceOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconDifferenceOutlinedFilled as default } +export default IconDifferenceOutlinedFilled diff --git a/src/IconDifferenceRounded.tsx b/src/IconDifferenceRounded.tsx index 549d13da7..27024708e 100644 --- a/src/IconDifferenceRounded.tsx +++ b/src/IconDifferenceRounded.tsx @@ -8,4 +8,4 @@ const IconDifferenceRounded: React.FC = ({ ...props }) => ( ) -export { IconDifferenceRounded as default } +export default IconDifferenceRounded diff --git a/src/IconDifferenceRoundedFilled.tsx b/src/IconDifferenceRoundedFilled.tsx index 563501952..9a757b207 100644 --- a/src/IconDifferenceRoundedFilled.tsx +++ b/src/IconDifferenceRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconDifferenceRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconDifferenceRoundedFilled as default } +export default IconDifferenceRoundedFilled diff --git a/src/IconDifferenceSharp.tsx b/src/IconDifferenceSharp.tsx index 39a693937..e5d3d6c01 100644 --- a/src/IconDifferenceSharp.tsx +++ b/src/IconDifferenceSharp.tsx @@ -8,4 +8,4 @@ const IconDifferenceSharp: React.FC = ({ ...props }) => ( ) -export { IconDifferenceSharp as default } +export default IconDifferenceSharp diff --git a/src/IconDifferenceSharpFilled.tsx b/src/IconDifferenceSharpFilled.tsx index 670446a6c..62072f470 100644 --- a/src/IconDifferenceSharpFilled.tsx +++ b/src/IconDifferenceSharpFilled.tsx @@ -8,4 +8,4 @@ const IconDifferenceSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconDifferenceSharpFilled as default } +export default IconDifferenceSharpFilled diff --git a/src/IconDigitalOutOfHomeOutlined.tsx b/src/IconDigitalOutOfHomeOutlined.tsx index a6ad6b15b..362a18845 100644 --- a/src/IconDigitalOutOfHomeOutlined.tsx +++ b/src/IconDigitalOutOfHomeOutlined.tsx @@ -8,4 +8,4 @@ const IconDigitalOutOfHomeOutlined: React.FC = ({ ...props }) => ( ) -export { IconDigitalOutOfHomeOutlined as default } +export default IconDigitalOutOfHomeOutlined diff --git a/src/IconDigitalOutOfHomeOutlinedFilled.tsx b/src/IconDigitalOutOfHomeOutlinedFilled.tsx index 231cfc40d..18f0783e9 100644 --- a/src/IconDigitalOutOfHomeOutlinedFilled.tsx +++ b/src/IconDigitalOutOfHomeOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconDigitalOutOfHomeOutlinedFilled: React.FC = ({ ) -export { IconDigitalOutOfHomeOutlinedFilled as default } +export default IconDigitalOutOfHomeOutlinedFilled diff --git a/src/IconDigitalOutOfHomeRounded.tsx b/src/IconDigitalOutOfHomeRounded.tsx index d7efc1e0f..50e8a8b4c 100644 --- a/src/IconDigitalOutOfHomeRounded.tsx +++ b/src/IconDigitalOutOfHomeRounded.tsx @@ -8,4 +8,4 @@ const IconDigitalOutOfHomeRounded: React.FC = ({ ...props }) => ( ) -export { IconDigitalOutOfHomeRounded as default } +export default IconDigitalOutOfHomeRounded diff --git a/src/IconDigitalOutOfHomeRoundedFilled.tsx b/src/IconDigitalOutOfHomeRoundedFilled.tsx index 799111ab3..e4ca70eac 100644 --- a/src/IconDigitalOutOfHomeRoundedFilled.tsx +++ b/src/IconDigitalOutOfHomeRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconDigitalOutOfHomeRoundedFilled: React.FC = ({ ) -export { IconDigitalOutOfHomeRoundedFilled as default } +export default IconDigitalOutOfHomeRoundedFilled diff --git a/src/IconDigitalOutOfHomeSharp.tsx b/src/IconDigitalOutOfHomeSharp.tsx index f18a08699..f58e41469 100644 --- a/src/IconDigitalOutOfHomeSharp.tsx +++ b/src/IconDigitalOutOfHomeSharp.tsx @@ -8,4 +8,4 @@ const IconDigitalOutOfHomeSharp: React.FC = ({ ...props }) => ( ) -export { IconDigitalOutOfHomeSharp as default } +export default IconDigitalOutOfHomeSharp diff --git a/src/IconDigitalOutOfHomeSharpFilled.tsx b/src/IconDigitalOutOfHomeSharpFilled.tsx index 2e2c0f238..645934d6f 100644 --- a/src/IconDigitalOutOfHomeSharpFilled.tsx +++ b/src/IconDigitalOutOfHomeSharpFilled.tsx @@ -8,4 +8,4 @@ const IconDigitalOutOfHomeSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconDigitalOutOfHomeSharpFilled as default } +export default IconDigitalOutOfHomeSharpFilled diff --git a/src/IconDigitalWellbeingOutlined.tsx b/src/IconDigitalWellbeingOutlined.tsx index b3ae4dd72..52758a9a1 100644 --- a/src/IconDigitalWellbeingOutlined.tsx +++ b/src/IconDigitalWellbeingOutlined.tsx @@ -8,4 +8,4 @@ const IconDigitalWellbeingOutlined: React.FC = ({ ...props }) => ( ) -export { IconDigitalWellbeingOutlined as default } +export default IconDigitalWellbeingOutlined diff --git a/src/IconDigitalWellbeingOutlinedFilled.tsx b/src/IconDigitalWellbeingOutlinedFilled.tsx index 1e1cbb256..128fb6486 100644 --- a/src/IconDigitalWellbeingOutlinedFilled.tsx +++ b/src/IconDigitalWellbeingOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconDigitalWellbeingOutlinedFilled: React.FC = ({ ) -export { IconDigitalWellbeingOutlinedFilled as default } +export default IconDigitalWellbeingOutlinedFilled diff --git a/src/IconDigitalWellbeingRounded.tsx b/src/IconDigitalWellbeingRounded.tsx index d01defd05..c823607df 100644 --- a/src/IconDigitalWellbeingRounded.tsx +++ b/src/IconDigitalWellbeingRounded.tsx @@ -8,4 +8,4 @@ const IconDigitalWellbeingRounded: React.FC = ({ ...props }) => ( ) -export { IconDigitalWellbeingRounded as default } +export default IconDigitalWellbeingRounded diff --git a/src/IconDigitalWellbeingRoundedFilled.tsx b/src/IconDigitalWellbeingRoundedFilled.tsx index 0ecc522c3..1672fe911 100644 --- a/src/IconDigitalWellbeingRoundedFilled.tsx +++ b/src/IconDigitalWellbeingRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconDigitalWellbeingRoundedFilled: React.FC = ({ ) -export { IconDigitalWellbeingRoundedFilled as default } +export default IconDigitalWellbeingRoundedFilled diff --git a/src/IconDigitalWellbeingSharp.tsx b/src/IconDigitalWellbeingSharp.tsx index a5a16b8dc..993b50b9b 100644 --- a/src/IconDigitalWellbeingSharp.tsx +++ b/src/IconDigitalWellbeingSharp.tsx @@ -8,4 +8,4 @@ const IconDigitalWellbeingSharp: React.FC = ({ ...props }) => ( ) -export { IconDigitalWellbeingSharp as default } +export default IconDigitalWellbeingSharp diff --git a/src/IconDigitalWellbeingSharpFilled.tsx b/src/IconDigitalWellbeingSharpFilled.tsx index 180d1feb3..54ca148b6 100644 --- a/src/IconDigitalWellbeingSharpFilled.tsx +++ b/src/IconDigitalWellbeingSharpFilled.tsx @@ -8,4 +8,4 @@ const IconDigitalWellbeingSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconDigitalWellbeingSharpFilled as default } +export default IconDigitalWellbeingSharpFilled diff --git a/src/IconDiningOutlined.tsx b/src/IconDiningOutlined.tsx index 8fc5d66e6..5bce73e98 100644 --- a/src/IconDiningOutlined.tsx +++ b/src/IconDiningOutlined.tsx @@ -8,4 +8,4 @@ const IconDiningOutlined: React.FC = ({ ...props }) => ( ) -export { IconDiningOutlined as default } +export default IconDiningOutlined diff --git a/src/IconDiningOutlinedFilled.tsx b/src/IconDiningOutlinedFilled.tsx index 9cbe79859..3e6057be7 100644 --- a/src/IconDiningOutlinedFilled.tsx +++ b/src/IconDiningOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconDiningOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconDiningOutlinedFilled as default } +export default IconDiningOutlinedFilled diff --git a/src/IconDiningRounded.tsx b/src/IconDiningRounded.tsx index ca0333a82..a03f1be5b 100644 --- a/src/IconDiningRounded.tsx +++ b/src/IconDiningRounded.tsx @@ -8,4 +8,4 @@ const IconDiningRounded: React.FC = ({ ...props }) => ( ) -export { IconDiningRounded as default } +export default IconDiningRounded diff --git a/src/IconDiningRoundedFilled.tsx b/src/IconDiningRoundedFilled.tsx index eb2d99a9d..076f78b5b 100644 --- a/src/IconDiningRoundedFilled.tsx +++ b/src/IconDiningRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconDiningRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconDiningRoundedFilled as default } +export default IconDiningRoundedFilled diff --git a/src/IconDiningSharp.tsx b/src/IconDiningSharp.tsx index d9cf0b380..1b5017ec2 100644 --- a/src/IconDiningSharp.tsx +++ b/src/IconDiningSharp.tsx @@ -8,4 +8,4 @@ const IconDiningSharp: React.FC = ({ ...props }) => ( ) -export { IconDiningSharp as default } +export default IconDiningSharp diff --git a/src/IconDiningSharpFilled.tsx b/src/IconDiningSharpFilled.tsx index b24e8d8bc..53b7d0b59 100644 --- a/src/IconDiningSharpFilled.tsx +++ b/src/IconDiningSharpFilled.tsx @@ -8,4 +8,4 @@ const IconDiningSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconDiningSharpFilled as default } +export default IconDiningSharpFilled diff --git a/src/IconDinnerDiningOutlined.tsx b/src/IconDinnerDiningOutlined.tsx index b208b6168..efac0ce54 100644 --- a/src/IconDinnerDiningOutlined.tsx +++ b/src/IconDinnerDiningOutlined.tsx @@ -8,4 +8,4 @@ const IconDinnerDiningOutlined: React.FC = ({ ...props }) => ( ) -export { IconDinnerDiningOutlined as default } +export default IconDinnerDiningOutlined diff --git a/src/IconDinnerDiningOutlinedFilled.tsx b/src/IconDinnerDiningOutlinedFilled.tsx index 2ee560e7d..d121b643d 100644 --- a/src/IconDinnerDiningOutlinedFilled.tsx +++ b/src/IconDinnerDiningOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconDinnerDiningOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconDinnerDiningOutlinedFilled as default } +export default IconDinnerDiningOutlinedFilled diff --git a/src/IconDinnerDiningRounded.tsx b/src/IconDinnerDiningRounded.tsx index 3fd05ba06..c713e98ae 100644 --- a/src/IconDinnerDiningRounded.tsx +++ b/src/IconDinnerDiningRounded.tsx @@ -8,4 +8,4 @@ const IconDinnerDiningRounded: React.FC = ({ ...props }) => ( ) -export { IconDinnerDiningRounded as default } +export default IconDinnerDiningRounded diff --git a/src/IconDinnerDiningRoundedFilled.tsx b/src/IconDinnerDiningRoundedFilled.tsx index 574a183fc..4fcdb1dd3 100644 --- a/src/IconDinnerDiningRoundedFilled.tsx +++ b/src/IconDinnerDiningRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconDinnerDiningRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconDinnerDiningRoundedFilled as default } +export default IconDinnerDiningRoundedFilled diff --git a/src/IconDinnerDiningSharp.tsx b/src/IconDinnerDiningSharp.tsx index 3686d0f4b..106154613 100644 --- a/src/IconDinnerDiningSharp.tsx +++ b/src/IconDinnerDiningSharp.tsx @@ -8,4 +8,4 @@ const IconDinnerDiningSharp: React.FC = ({ ...props }) => ( ) -export { IconDinnerDiningSharp as default } +export default IconDinnerDiningSharp diff --git a/src/IconDinnerDiningSharpFilled.tsx b/src/IconDinnerDiningSharpFilled.tsx index d9b9b5b5f..158080ad0 100644 --- a/src/IconDinnerDiningSharpFilled.tsx +++ b/src/IconDinnerDiningSharpFilled.tsx @@ -8,4 +8,4 @@ const IconDinnerDiningSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconDinnerDiningSharpFilled as default } +export default IconDinnerDiningSharpFilled diff --git a/src/IconDirectionsAltOffOutlined.tsx b/src/IconDirectionsAltOffOutlined.tsx index 0c71bc333..4ebfab20d 100644 --- a/src/IconDirectionsAltOffOutlined.tsx +++ b/src/IconDirectionsAltOffOutlined.tsx @@ -8,4 +8,4 @@ const IconDirectionsAltOffOutlined: React.FC = ({ ...props }) => ( ) -export { IconDirectionsAltOffOutlined as default } +export default IconDirectionsAltOffOutlined diff --git a/src/IconDirectionsAltOffOutlinedFilled.tsx b/src/IconDirectionsAltOffOutlinedFilled.tsx index 02b82c011..c33bbd26b 100644 --- a/src/IconDirectionsAltOffOutlinedFilled.tsx +++ b/src/IconDirectionsAltOffOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconDirectionsAltOffOutlinedFilled: React.FC = ({ ) -export { IconDirectionsAltOffOutlinedFilled as default } +export default IconDirectionsAltOffOutlinedFilled diff --git a/src/IconDirectionsAltOffRounded.tsx b/src/IconDirectionsAltOffRounded.tsx index d62a26d5a..82449cbb0 100644 --- a/src/IconDirectionsAltOffRounded.tsx +++ b/src/IconDirectionsAltOffRounded.tsx @@ -8,4 +8,4 @@ const IconDirectionsAltOffRounded: React.FC = ({ ...props }) => ( ) -export { IconDirectionsAltOffRounded as default } +export default IconDirectionsAltOffRounded diff --git a/src/IconDirectionsAltOffRoundedFilled.tsx b/src/IconDirectionsAltOffRoundedFilled.tsx index 203400e5d..51308604e 100644 --- a/src/IconDirectionsAltOffRoundedFilled.tsx +++ b/src/IconDirectionsAltOffRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconDirectionsAltOffRoundedFilled: React.FC = ({ ) -export { IconDirectionsAltOffRoundedFilled as default } +export default IconDirectionsAltOffRoundedFilled diff --git a/src/IconDirectionsAltOffSharp.tsx b/src/IconDirectionsAltOffSharp.tsx index 88c364d73..b83ad2424 100644 --- a/src/IconDirectionsAltOffSharp.tsx +++ b/src/IconDirectionsAltOffSharp.tsx @@ -8,4 +8,4 @@ const IconDirectionsAltOffSharp: React.FC = ({ ...props }) => ( ) -export { IconDirectionsAltOffSharp as default } +export default IconDirectionsAltOffSharp diff --git a/src/IconDirectionsAltOffSharpFilled.tsx b/src/IconDirectionsAltOffSharpFilled.tsx index 92dac0a8a..3bb2b5944 100644 --- a/src/IconDirectionsAltOffSharpFilled.tsx +++ b/src/IconDirectionsAltOffSharpFilled.tsx @@ -8,4 +8,4 @@ const IconDirectionsAltOffSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconDirectionsAltOffSharpFilled as default } +export default IconDirectionsAltOffSharpFilled diff --git a/src/IconDirectionsAltOutlined.tsx b/src/IconDirectionsAltOutlined.tsx index 8a36b0946..836522033 100644 --- a/src/IconDirectionsAltOutlined.tsx +++ b/src/IconDirectionsAltOutlined.tsx @@ -8,4 +8,4 @@ const IconDirectionsAltOutlined: React.FC = ({ ...props }) => ( ) -export { IconDirectionsAltOutlined as default } +export default IconDirectionsAltOutlined diff --git a/src/IconDirectionsAltOutlinedFilled.tsx b/src/IconDirectionsAltOutlinedFilled.tsx index f9ca5be40..358f67781 100644 --- a/src/IconDirectionsAltOutlinedFilled.tsx +++ b/src/IconDirectionsAltOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconDirectionsAltOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconDirectionsAltOutlinedFilled as default } +export default IconDirectionsAltOutlinedFilled diff --git a/src/IconDirectionsAltRounded.tsx b/src/IconDirectionsAltRounded.tsx index 6692fdd87..75f16e1da 100644 --- a/src/IconDirectionsAltRounded.tsx +++ b/src/IconDirectionsAltRounded.tsx @@ -8,4 +8,4 @@ const IconDirectionsAltRounded: React.FC = ({ ...props }) => ( ) -export { IconDirectionsAltRounded as default } +export default IconDirectionsAltRounded diff --git a/src/IconDirectionsAltRoundedFilled.tsx b/src/IconDirectionsAltRoundedFilled.tsx index d6a340607..a11fd405f 100644 --- a/src/IconDirectionsAltRoundedFilled.tsx +++ b/src/IconDirectionsAltRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconDirectionsAltRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconDirectionsAltRoundedFilled as default } +export default IconDirectionsAltRoundedFilled diff --git a/src/IconDirectionsAltSharp.tsx b/src/IconDirectionsAltSharp.tsx index 4e991e9b1..ff6c52ce7 100644 --- a/src/IconDirectionsAltSharp.tsx +++ b/src/IconDirectionsAltSharp.tsx @@ -8,4 +8,4 @@ const IconDirectionsAltSharp: React.FC = ({ ...props }) => ( ) -export { IconDirectionsAltSharp as default } +export default IconDirectionsAltSharp diff --git a/src/IconDirectionsAltSharpFilled.tsx b/src/IconDirectionsAltSharpFilled.tsx index 46d1a1ff3..ad2cce592 100644 --- a/src/IconDirectionsAltSharpFilled.tsx +++ b/src/IconDirectionsAltSharpFilled.tsx @@ -8,4 +8,4 @@ const IconDirectionsAltSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconDirectionsAltSharpFilled as default } +export default IconDirectionsAltSharpFilled diff --git a/src/IconDirectionsBikeOutlined.tsx b/src/IconDirectionsBikeOutlined.tsx index 3292379e0..e781461e9 100644 --- a/src/IconDirectionsBikeOutlined.tsx +++ b/src/IconDirectionsBikeOutlined.tsx @@ -8,4 +8,4 @@ const IconDirectionsBikeOutlined: React.FC = ({ ...props }) => ( ) -export { IconDirectionsBikeOutlined as default } +export default IconDirectionsBikeOutlined diff --git a/src/IconDirectionsBikeOutlinedFilled.tsx b/src/IconDirectionsBikeOutlinedFilled.tsx index adefec64b..03ab7ba1c 100644 --- a/src/IconDirectionsBikeOutlinedFilled.tsx +++ b/src/IconDirectionsBikeOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconDirectionsBikeOutlinedFilled: React.FC = ({ ) -export { IconDirectionsBikeOutlinedFilled as default } +export default IconDirectionsBikeOutlinedFilled diff --git a/src/IconDirectionsBikeRounded.tsx b/src/IconDirectionsBikeRounded.tsx index 141c0291d..0aa42b29e 100644 --- a/src/IconDirectionsBikeRounded.tsx +++ b/src/IconDirectionsBikeRounded.tsx @@ -8,4 +8,4 @@ const IconDirectionsBikeRounded: React.FC = ({ ...props }) => ( ) -export { IconDirectionsBikeRounded as default } +export default IconDirectionsBikeRounded diff --git a/src/IconDirectionsBikeRoundedFilled.tsx b/src/IconDirectionsBikeRoundedFilled.tsx index 6ca415c8f..2f7c9c103 100644 --- a/src/IconDirectionsBikeRoundedFilled.tsx +++ b/src/IconDirectionsBikeRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconDirectionsBikeRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconDirectionsBikeRoundedFilled as default } +export default IconDirectionsBikeRoundedFilled diff --git a/src/IconDirectionsBikeSharp.tsx b/src/IconDirectionsBikeSharp.tsx index dbbeefccb..0b630dce4 100644 --- a/src/IconDirectionsBikeSharp.tsx +++ b/src/IconDirectionsBikeSharp.tsx @@ -8,4 +8,4 @@ const IconDirectionsBikeSharp: React.FC = ({ ...props }) => ( ) -export { IconDirectionsBikeSharp as default } +export default IconDirectionsBikeSharp diff --git a/src/IconDirectionsBikeSharpFilled.tsx b/src/IconDirectionsBikeSharpFilled.tsx index fa36672ca..047e2a469 100644 --- a/src/IconDirectionsBikeSharpFilled.tsx +++ b/src/IconDirectionsBikeSharpFilled.tsx @@ -8,4 +8,4 @@ const IconDirectionsBikeSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconDirectionsBikeSharpFilled as default } +export default IconDirectionsBikeSharpFilled diff --git a/src/IconDirectionsBoatOutlined.tsx b/src/IconDirectionsBoatOutlined.tsx index c3243aef9..78854e537 100644 --- a/src/IconDirectionsBoatOutlined.tsx +++ b/src/IconDirectionsBoatOutlined.tsx @@ -8,4 +8,4 @@ const IconDirectionsBoatOutlined: React.FC = ({ ...props }) => ( ) -export { IconDirectionsBoatOutlined as default } +export default IconDirectionsBoatOutlined diff --git a/src/IconDirectionsBoatOutlinedFilled.tsx b/src/IconDirectionsBoatOutlinedFilled.tsx index 50df7f76d..34552313b 100644 --- a/src/IconDirectionsBoatOutlinedFilled.tsx +++ b/src/IconDirectionsBoatOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconDirectionsBoatOutlinedFilled: React.FC = ({ ) -export { IconDirectionsBoatOutlinedFilled as default } +export default IconDirectionsBoatOutlinedFilled diff --git a/src/IconDirectionsBoatRounded.tsx b/src/IconDirectionsBoatRounded.tsx index db653103a..647762dd5 100644 --- a/src/IconDirectionsBoatRounded.tsx +++ b/src/IconDirectionsBoatRounded.tsx @@ -8,4 +8,4 @@ const IconDirectionsBoatRounded: React.FC = ({ ...props }) => ( ) -export { IconDirectionsBoatRounded as default } +export default IconDirectionsBoatRounded diff --git a/src/IconDirectionsBoatRoundedFilled.tsx b/src/IconDirectionsBoatRoundedFilled.tsx index fbc3d477a..bbf7c2f6e 100644 --- a/src/IconDirectionsBoatRoundedFilled.tsx +++ b/src/IconDirectionsBoatRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconDirectionsBoatRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconDirectionsBoatRoundedFilled as default } +export default IconDirectionsBoatRoundedFilled diff --git a/src/IconDirectionsBoatSharp.tsx b/src/IconDirectionsBoatSharp.tsx index 7151d407f..9772cab48 100644 --- a/src/IconDirectionsBoatSharp.tsx +++ b/src/IconDirectionsBoatSharp.tsx @@ -8,4 +8,4 @@ const IconDirectionsBoatSharp: React.FC = ({ ...props }) => ( ) -export { IconDirectionsBoatSharp as default } +export default IconDirectionsBoatSharp diff --git a/src/IconDirectionsBoatSharpFilled.tsx b/src/IconDirectionsBoatSharpFilled.tsx index 2e9501633..f7f13e2da 100644 --- a/src/IconDirectionsBoatSharpFilled.tsx +++ b/src/IconDirectionsBoatSharpFilled.tsx @@ -8,4 +8,4 @@ const IconDirectionsBoatSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconDirectionsBoatSharpFilled as default } +export default IconDirectionsBoatSharpFilled diff --git a/src/IconDirectionsBusOutlined.tsx b/src/IconDirectionsBusOutlined.tsx index 085e5c2de..a265403f6 100644 --- a/src/IconDirectionsBusOutlined.tsx +++ b/src/IconDirectionsBusOutlined.tsx @@ -8,4 +8,4 @@ const IconDirectionsBusOutlined: React.FC = ({ ...props }) => ( ) -export { IconDirectionsBusOutlined as default } +export default IconDirectionsBusOutlined diff --git a/src/IconDirectionsBusOutlinedFilled.tsx b/src/IconDirectionsBusOutlinedFilled.tsx index 170338101..a8106f6e2 100644 --- a/src/IconDirectionsBusOutlinedFilled.tsx +++ b/src/IconDirectionsBusOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconDirectionsBusOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconDirectionsBusOutlinedFilled as default } +export default IconDirectionsBusOutlinedFilled diff --git a/src/IconDirectionsBusRounded.tsx b/src/IconDirectionsBusRounded.tsx index 271e8b24c..7416b6cc0 100644 --- a/src/IconDirectionsBusRounded.tsx +++ b/src/IconDirectionsBusRounded.tsx @@ -8,4 +8,4 @@ const IconDirectionsBusRounded: React.FC = ({ ...props }) => ( ) -export { IconDirectionsBusRounded as default } +export default IconDirectionsBusRounded diff --git a/src/IconDirectionsBusRoundedFilled.tsx b/src/IconDirectionsBusRoundedFilled.tsx index 38fa9b3f8..2587f930e 100644 --- a/src/IconDirectionsBusRoundedFilled.tsx +++ b/src/IconDirectionsBusRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconDirectionsBusRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconDirectionsBusRoundedFilled as default } +export default IconDirectionsBusRoundedFilled diff --git a/src/IconDirectionsBusSharp.tsx b/src/IconDirectionsBusSharp.tsx index 4aa603277..9659cdbc7 100644 --- a/src/IconDirectionsBusSharp.tsx +++ b/src/IconDirectionsBusSharp.tsx @@ -8,4 +8,4 @@ const IconDirectionsBusSharp: React.FC = ({ ...props }) => ( ) -export { IconDirectionsBusSharp as default } +export default IconDirectionsBusSharp diff --git a/src/IconDirectionsBusSharpFilled.tsx b/src/IconDirectionsBusSharpFilled.tsx index 49d52cd10..428706dc2 100644 --- a/src/IconDirectionsBusSharpFilled.tsx +++ b/src/IconDirectionsBusSharpFilled.tsx @@ -8,4 +8,4 @@ const IconDirectionsBusSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconDirectionsBusSharpFilled as default } +export default IconDirectionsBusSharpFilled diff --git a/src/IconDirectionsCarOutlined.tsx b/src/IconDirectionsCarOutlined.tsx index d5d60aee2..fa3193ada 100644 --- a/src/IconDirectionsCarOutlined.tsx +++ b/src/IconDirectionsCarOutlined.tsx @@ -8,4 +8,4 @@ const IconDirectionsCarOutlined: React.FC = ({ ...props }) => ( ) -export { IconDirectionsCarOutlined as default } +export default IconDirectionsCarOutlined diff --git a/src/IconDirectionsCarOutlinedFilled.tsx b/src/IconDirectionsCarOutlinedFilled.tsx index e80cbeab9..e25b840fe 100644 --- a/src/IconDirectionsCarOutlinedFilled.tsx +++ b/src/IconDirectionsCarOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconDirectionsCarOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconDirectionsCarOutlinedFilled as default } +export default IconDirectionsCarOutlinedFilled diff --git a/src/IconDirectionsCarRounded.tsx b/src/IconDirectionsCarRounded.tsx index b5fa1409e..03c59f04e 100644 --- a/src/IconDirectionsCarRounded.tsx +++ b/src/IconDirectionsCarRounded.tsx @@ -8,4 +8,4 @@ const IconDirectionsCarRounded: React.FC = ({ ...props }) => ( ) -export { IconDirectionsCarRounded as default } +export default IconDirectionsCarRounded diff --git a/src/IconDirectionsCarRoundedFilled.tsx b/src/IconDirectionsCarRoundedFilled.tsx index 568d3b8d1..a1e07d2f6 100644 --- a/src/IconDirectionsCarRoundedFilled.tsx +++ b/src/IconDirectionsCarRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconDirectionsCarRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconDirectionsCarRoundedFilled as default } +export default IconDirectionsCarRoundedFilled diff --git a/src/IconDirectionsCarSharp.tsx b/src/IconDirectionsCarSharp.tsx index 7c518472d..17168438a 100644 --- a/src/IconDirectionsCarSharp.tsx +++ b/src/IconDirectionsCarSharp.tsx @@ -8,4 +8,4 @@ const IconDirectionsCarSharp: React.FC = ({ ...props }) => ( ) -export { IconDirectionsCarSharp as default } +export default IconDirectionsCarSharp diff --git a/src/IconDirectionsCarSharpFilled.tsx b/src/IconDirectionsCarSharpFilled.tsx index 7437dfb80..0c0388a25 100644 --- a/src/IconDirectionsCarSharpFilled.tsx +++ b/src/IconDirectionsCarSharpFilled.tsx @@ -8,4 +8,4 @@ const IconDirectionsCarSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconDirectionsCarSharpFilled as default } +export default IconDirectionsCarSharpFilled diff --git a/src/IconDirectionsOffOutlined.tsx b/src/IconDirectionsOffOutlined.tsx index bd9a2077f..2a67755a9 100644 --- a/src/IconDirectionsOffOutlined.tsx +++ b/src/IconDirectionsOffOutlined.tsx @@ -8,4 +8,4 @@ const IconDirectionsOffOutlined: React.FC = ({ ...props }) => ( ) -export { IconDirectionsOffOutlined as default } +export default IconDirectionsOffOutlined diff --git a/src/IconDirectionsOffOutlinedFilled.tsx b/src/IconDirectionsOffOutlinedFilled.tsx index 9a890719f..1ccbc0fe4 100644 --- a/src/IconDirectionsOffOutlinedFilled.tsx +++ b/src/IconDirectionsOffOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconDirectionsOffOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconDirectionsOffOutlinedFilled as default } +export default IconDirectionsOffOutlinedFilled diff --git a/src/IconDirectionsOffRounded.tsx b/src/IconDirectionsOffRounded.tsx index 339138dc9..c796ed852 100644 --- a/src/IconDirectionsOffRounded.tsx +++ b/src/IconDirectionsOffRounded.tsx @@ -8,4 +8,4 @@ const IconDirectionsOffRounded: React.FC = ({ ...props }) => ( ) -export { IconDirectionsOffRounded as default } +export default IconDirectionsOffRounded diff --git a/src/IconDirectionsOffRoundedFilled.tsx b/src/IconDirectionsOffRoundedFilled.tsx index 3a51eb771..fd49f4273 100644 --- a/src/IconDirectionsOffRoundedFilled.tsx +++ b/src/IconDirectionsOffRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconDirectionsOffRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconDirectionsOffRoundedFilled as default } +export default IconDirectionsOffRoundedFilled diff --git a/src/IconDirectionsOffSharp.tsx b/src/IconDirectionsOffSharp.tsx index 9c0983b8e..1bcaf73dd 100644 --- a/src/IconDirectionsOffSharp.tsx +++ b/src/IconDirectionsOffSharp.tsx @@ -8,4 +8,4 @@ const IconDirectionsOffSharp: React.FC = ({ ...props }) => ( ) -export { IconDirectionsOffSharp as default } +export default IconDirectionsOffSharp diff --git a/src/IconDirectionsOffSharpFilled.tsx b/src/IconDirectionsOffSharpFilled.tsx index 92cb32955..9898b3d28 100644 --- a/src/IconDirectionsOffSharpFilled.tsx +++ b/src/IconDirectionsOffSharpFilled.tsx @@ -8,4 +8,4 @@ const IconDirectionsOffSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconDirectionsOffSharpFilled as default } +export default IconDirectionsOffSharpFilled diff --git a/src/IconDirectionsOutlined.tsx b/src/IconDirectionsOutlined.tsx index 64e902e8b..b9033887f 100644 --- a/src/IconDirectionsOutlined.tsx +++ b/src/IconDirectionsOutlined.tsx @@ -8,4 +8,4 @@ const IconDirectionsOutlined: React.FC = ({ ...props }) => ( ) -export { IconDirectionsOutlined as default } +export default IconDirectionsOutlined diff --git a/src/IconDirectionsOutlinedFilled.tsx b/src/IconDirectionsOutlinedFilled.tsx index dc29dba24..7db481c07 100644 --- a/src/IconDirectionsOutlinedFilled.tsx +++ b/src/IconDirectionsOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconDirectionsOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconDirectionsOutlinedFilled as default } +export default IconDirectionsOutlinedFilled diff --git a/src/IconDirectionsRailway2Outlined.tsx b/src/IconDirectionsRailway2Outlined.tsx index 5f01340c3..29eecc3ca 100644 --- a/src/IconDirectionsRailway2Outlined.tsx +++ b/src/IconDirectionsRailway2Outlined.tsx @@ -8,4 +8,4 @@ const IconDirectionsRailway2Outlined: React.FC = ({ ...props }) => ( ) -export { IconDirectionsRailway2Outlined as default } +export default IconDirectionsRailway2Outlined diff --git a/src/IconDirectionsRailway2OutlinedFilled.tsx b/src/IconDirectionsRailway2OutlinedFilled.tsx index b834671ad..8c3e7de87 100644 --- a/src/IconDirectionsRailway2OutlinedFilled.tsx +++ b/src/IconDirectionsRailway2OutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconDirectionsRailway2OutlinedFilled: React.FC = ({ ) -export { IconDirectionsRailway2OutlinedFilled as default } +export default IconDirectionsRailway2OutlinedFilled diff --git a/src/IconDirectionsRailway2Rounded.tsx b/src/IconDirectionsRailway2Rounded.tsx index 46c722fb6..689bb5d79 100644 --- a/src/IconDirectionsRailway2Rounded.tsx +++ b/src/IconDirectionsRailway2Rounded.tsx @@ -8,4 +8,4 @@ const IconDirectionsRailway2Rounded: React.FC = ({ ...props }) => ( ) -export { IconDirectionsRailway2Rounded as default } +export default IconDirectionsRailway2Rounded diff --git a/src/IconDirectionsRailway2RoundedFilled.tsx b/src/IconDirectionsRailway2RoundedFilled.tsx index 8eee4b814..18e24568e 100644 --- a/src/IconDirectionsRailway2RoundedFilled.tsx +++ b/src/IconDirectionsRailway2RoundedFilled.tsx @@ -10,4 +10,4 @@ const IconDirectionsRailway2RoundedFilled: React.FC = ({ ) -export { IconDirectionsRailway2RoundedFilled as default } +export default IconDirectionsRailway2RoundedFilled diff --git a/src/IconDirectionsRailway2Sharp.tsx b/src/IconDirectionsRailway2Sharp.tsx index 3f94314bc..abef997e0 100644 --- a/src/IconDirectionsRailway2Sharp.tsx +++ b/src/IconDirectionsRailway2Sharp.tsx @@ -8,4 +8,4 @@ const IconDirectionsRailway2Sharp: React.FC = ({ ...props }) => ( ) -export { IconDirectionsRailway2Sharp as default } +export default IconDirectionsRailway2Sharp diff --git a/src/IconDirectionsRailway2SharpFilled.tsx b/src/IconDirectionsRailway2SharpFilled.tsx index 5d618db2d..42e20b489 100644 --- a/src/IconDirectionsRailway2SharpFilled.tsx +++ b/src/IconDirectionsRailway2SharpFilled.tsx @@ -10,4 +10,4 @@ const IconDirectionsRailway2SharpFilled: React.FC = ({ ) -export { IconDirectionsRailway2SharpFilled as default } +export default IconDirectionsRailway2SharpFilled diff --git a/src/IconDirectionsRailwayOutlined.tsx b/src/IconDirectionsRailwayOutlined.tsx index 7fb6a043e..2be392ce5 100644 --- a/src/IconDirectionsRailwayOutlined.tsx +++ b/src/IconDirectionsRailwayOutlined.tsx @@ -8,4 +8,4 @@ const IconDirectionsRailwayOutlined: React.FC = ({ ...props }) => ( ) -export { IconDirectionsRailwayOutlined as default } +export default IconDirectionsRailwayOutlined diff --git a/src/IconDirectionsRailwayOutlinedFilled.tsx b/src/IconDirectionsRailwayOutlinedFilled.tsx index 9a6056ecb..6c9eeaeb0 100644 --- a/src/IconDirectionsRailwayOutlinedFilled.tsx +++ b/src/IconDirectionsRailwayOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconDirectionsRailwayOutlinedFilled: React.FC = ({ ) -export { IconDirectionsRailwayOutlinedFilled as default } +export default IconDirectionsRailwayOutlinedFilled diff --git a/src/IconDirectionsRailwayRounded.tsx b/src/IconDirectionsRailwayRounded.tsx index 4c5f983d0..028486d2a 100644 --- a/src/IconDirectionsRailwayRounded.tsx +++ b/src/IconDirectionsRailwayRounded.tsx @@ -8,4 +8,4 @@ const IconDirectionsRailwayRounded: React.FC = ({ ...props }) => ( ) -export { IconDirectionsRailwayRounded as default } +export default IconDirectionsRailwayRounded diff --git a/src/IconDirectionsRailwayRoundedFilled.tsx b/src/IconDirectionsRailwayRoundedFilled.tsx index 3be7f93ba..d28d3beee 100644 --- a/src/IconDirectionsRailwayRoundedFilled.tsx +++ b/src/IconDirectionsRailwayRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconDirectionsRailwayRoundedFilled: React.FC = ({ ) -export { IconDirectionsRailwayRoundedFilled as default } +export default IconDirectionsRailwayRoundedFilled diff --git a/src/IconDirectionsRailwaySharp.tsx b/src/IconDirectionsRailwaySharp.tsx index c5a349426..1cd3c7e11 100644 --- a/src/IconDirectionsRailwaySharp.tsx +++ b/src/IconDirectionsRailwaySharp.tsx @@ -8,4 +8,4 @@ const IconDirectionsRailwaySharp: React.FC = ({ ...props }) => ( ) -export { IconDirectionsRailwaySharp as default } +export default IconDirectionsRailwaySharp diff --git a/src/IconDirectionsRailwaySharpFilled.tsx b/src/IconDirectionsRailwaySharpFilled.tsx index a264b3f71..a502aee24 100644 --- a/src/IconDirectionsRailwaySharpFilled.tsx +++ b/src/IconDirectionsRailwaySharpFilled.tsx @@ -10,4 +10,4 @@ const IconDirectionsRailwaySharpFilled: React.FC = ({ ) -export { IconDirectionsRailwaySharpFilled as default } +export default IconDirectionsRailwaySharpFilled diff --git a/src/IconDirectionsRounded.tsx b/src/IconDirectionsRounded.tsx index 8a05ede79..101683828 100644 --- a/src/IconDirectionsRounded.tsx +++ b/src/IconDirectionsRounded.tsx @@ -8,4 +8,4 @@ const IconDirectionsRounded: React.FC = ({ ...props }) => ( ) -export { IconDirectionsRounded as default } +export default IconDirectionsRounded diff --git a/src/IconDirectionsRoundedFilled.tsx b/src/IconDirectionsRoundedFilled.tsx index 6e9c1dafa..edcaea95f 100644 --- a/src/IconDirectionsRoundedFilled.tsx +++ b/src/IconDirectionsRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconDirectionsRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconDirectionsRoundedFilled as default } +export default IconDirectionsRoundedFilled diff --git a/src/IconDirectionsRunOutlined.tsx b/src/IconDirectionsRunOutlined.tsx index 91423a80f..b849ab69e 100644 --- a/src/IconDirectionsRunOutlined.tsx +++ b/src/IconDirectionsRunOutlined.tsx @@ -8,4 +8,4 @@ const IconDirectionsRunOutlined: React.FC = ({ ...props }) => ( ) -export { IconDirectionsRunOutlined as default } +export default IconDirectionsRunOutlined diff --git a/src/IconDirectionsRunOutlinedFilled.tsx b/src/IconDirectionsRunOutlinedFilled.tsx index e70e1473c..cfba05245 100644 --- a/src/IconDirectionsRunOutlinedFilled.tsx +++ b/src/IconDirectionsRunOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconDirectionsRunOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconDirectionsRunOutlinedFilled as default } +export default IconDirectionsRunOutlinedFilled diff --git a/src/IconDirectionsRunRounded.tsx b/src/IconDirectionsRunRounded.tsx index 34f48eafa..3d06d8406 100644 --- a/src/IconDirectionsRunRounded.tsx +++ b/src/IconDirectionsRunRounded.tsx @@ -8,4 +8,4 @@ const IconDirectionsRunRounded: React.FC = ({ ...props }) => ( ) -export { IconDirectionsRunRounded as default } +export default IconDirectionsRunRounded diff --git a/src/IconDirectionsRunRoundedFilled.tsx b/src/IconDirectionsRunRoundedFilled.tsx index 1cd31825f..8bab4e2ba 100644 --- a/src/IconDirectionsRunRoundedFilled.tsx +++ b/src/IconDirectionsRunRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconDirectionsRunRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconDirectionsRunRoundedFilled as default } +export default IconDirectionsRunRoundedFilled diff --git a/src/IconDirectionsRunSharp.tsx b/src/IconDirectionsRunSharp.tsx index 4b93500de..f6803d907 100644 --- a/src/IconDirectionsRunSharp.tsx +++ b/src/IconDirectionsRunSharp.tsx @@ -8,4 +8,4 @@ const IconDirectionsRunSharp: React.FC = ({ ...props }) => ( ) -export { IconDirectionsRunSharp as default } +export default IconDirectionsRunSharp diff --git a/src/IconDirectionsRunSharpFilled.tsx b/src/IconDirectionsRunSharpFilled.tsx index 31be5aa02..74c6235a1 100644 --- a/src/IconDirectionsRunSharpFilled.tsx +++ b/src/IconDirectionsRunSharpFilled.tsx @@ -8,4 +8,4 @@ const IconDirectionsRunSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconDirectionsRunSharpFilled as default } +export default IconDirectionsRunSharpFilled diff --git a/src/IconDirectionsSharp.tsx b/src/IconDirectionsSharp.tsx index f54c5906d..b850a10a8 100644 --- a/src/IconDirectionsSharp.tsx +++ b/src/IconDirectionsSharp.tsx @@ -8,4 +8,4 @@ const IconDirectionsSharp: React.FC = ({ ...props }) => ( ) -export { IconDirectionsSharp as default } +export default IconDirectionsSharp diff --git a/src/IconDirectionsSharpFilled.tsx b/src/IconDirectionsSharpFilled.tsx index 4276fd379..1e02f7d67 100644 --- a/src/IconDirectionsSharpFilled.tsx +++ b/src/IconDirectionsSharpFilled.tsx @@ -8,4 +8,4 @@ const IconDirectionsSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconDirectionsSharpFilled as default } +export default IconDirectionsSharpFilled diff --git a/src/IconDirectionsSubwayOutlined.tsx b/src/IconDirectionsSubwayOutlined.tsx index ef070b1b3..8a2a3e7cd 100644 --- a/src/IconDirectionsSubwayOutlined.tsx +++ b/src/IconDirectionsSubwayOutlined.tsx @@ -8,4 +8,4 @@ const IconDirectionsSubwayOutlined: React.FC = ({ ...props }) => ( ) -export { IconDirectionsSubwayOutlined as default } +export default IconDirectionsSubwayOutlined diff --git a/src/IconDirectionsSubwayOutlinedFilled.tsx b/src/IconDirectionsSubwayOutlinedFilled.tsx index d3a24290e..4573345bf 100644 --- a/src/IconDirectionsSubwayOutlinedFilled.tsx +++ b/src/IconDirectionsSubwayOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconDirectionsSubwayOutlinedFilled: React.FC = ({ ) -export { IconDirectionsSubwayOutlinedFilled as default } +export default IconDirectionsSubwayOutlinedFilled diff --git a/src/IconDirectionsSubwayRounded.tsx b/src/IconDirectionsSubwayRounded.tsx index 6e71b7e17..e2f75bea0 100644 --- a/src/IconDirectionsSubwayRounded.tsx +++ b/src/IconDirectionsSubwayRounded.tsx @@ -8,4 +8,4 @@ const IconDirectionsSubwayRounded: React.FC = ({ ...props }) => ( ) -export { IconDirectionsSubwayRounded as default } +export default IconDirectionsSubwayRounded diff --git a/src/IconDirectionsSubwayRoundedFilled.tsx b/src/IconDirectionsSubwayRoundedFilled.tsx index b798aee8c..87034ec0b 100644 --- a/src/IconDirectionsSubwayRoundedFilled.tsx +++ b/src/IconDirectionsSubwayRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconDirectionsSubwayRoundedFilled: React.FC = ({ ) -export { IconDirectionsSubwayRoundedFilled as default } +export default IconDirectionsSubwayRoundedFilled diff --git a/src/IconDirectionsSubwaySharp.tsx b/src/IconDirectionsSubwaySharp.tsx index 07420469e..1cc1fea20 100644 --- a/src/IconDirectionsSubwaySharp.tsx +++ b/src/IconDirectionsSubwaySharp.tsx @@ -8,4 +8,4 @@ const IconDirectionsSubwaySharp: React.FC = ({ ...props }) => ( ) -export { IconDirectionsSubwaySharp as default } +export default IconDirectionsSubwaySharp diff --git a/src/IconDirectionsSubwaySharpFilled.tsx b/src/IconDirectionsSubwaySharpFilled.tsx index 9eb74139b..9c6a2963e 100644 --- a/src/IconDirectionsSubwaySharpFilled.tsx +++ b/src/IconDirectionsSubwaySharpFilled.tsx @@ -8,4 +8,4 @@ const IconDirectionsSubwaySharpFilled: React.FC = ({ ...props }) => ( ) -export { IconDirectionsSubwaySharpFilled as default } +export default IconDirectionsSubwaySharpFilled diff --git a/src/IconDirectionsWalkOutlined.tsx b/src/IconDirectionsWalkOutlined.tsx index 55389bbb5..e369b7852 100644 --- a/src/IconDirectionsWalkOutlined.tsx +++ b/src/IconDirectionsWalkOutlined.tsx @@ -8,4 +8,4 @@ const IconDirectionsWalkOutlined: React.FC = ({ ...props }) => ( ) -export { IconDirectionsWalkOutlined as default } +export default IconDirectionsWalkOutlined diff --git a/src/IconDirectionsWalkOutlinedFilled.tsx b/src/IconDirectionsWalkOutlinedFilled.tsx index 913430763..524b4f6d1 100644 --- a/src/IconDirectionsWalkOutlinedFilled.tsx +++ b/src/IconDirectionsWalkOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconDirectionsWalkOutlinedFilled: React.FC = ({ ) -export { IconDirectionsWalkOutlinedFilled as default } +export default IconDirectionsWalkOutlinedFilled diff --git a/src/IconDirectionsWalkRounded.tsx b/src/IconDirectionsWalkRounded.tsx index 05f543480..7d991e9b1 100644 --- a/src/IconDirectionsWalkRounded.tsx +++ b/src/IconDirectionsWalkRounded.tsx @@ -8,4 +8,4 @@ const IconDirectionsWalkRounded: React.FC = ({ ...props }) => ( ) -export { IconDirectionsWalkRounded as default } +export default IconDirectionsWalkRounded diff --git a/src/IconDirectionsWalkRoundedFilled.tsx b/src/IconDirectionsWalkRoundedFilled.tsx index 072466b19..e9d9cb858 100644 --- a/src/IconDirectionsWalkRoundedFilled.tsx +++ b/src/IconDirectionsWalkRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconDirectionsWalkRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconDirectionsWalkRoundedFilled as default } +export default IconDirectionsWalkRoundedFilled diff --git a/src/IconDirectionsWalkSharp.tsx b/src/IconDirectionsWalkSharp.tsx index 1ad771094..30cde16fa 100644 --- a/src/IconDirectionsWalkSharp.tsx +++ b/src/IconDirectionsWalkSharp.tsx @@ -8,4 +8,4 @@ const IconDirectionsWalkSharp: React.FC = ({ ...props }) => ( ) -export { IconDirectionsWalkSharp as default } +export default IconDirectionsWalkSharp diff --git a/src/IconDirectionsWalkSharpFilled.tsx b/src/IconDirectionsWalkSharpFilled.tsx index c7e058a59..cdd819cab 100644 --- a/src/IconDirectionsWalkSharpFilled.tsx +++ b/src/IconDirectionsWalkSharpFilled.tsx @@ -8,4 +8,4 @@ const IconDirectionsWalkSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconDirectionsWalkSharpFilled as default } +export default IconDirectionsWalkSharpFilled diff --git a/src/IconDirectorySyncOutlined.tsx b/src/IconDirectorySyncOutlined.tsx index 64768b253..a96274f3a 100644 --- a/src/IconDirectorySyncOutlined.tsx +++ b/src/IconDirectorySyncOutlined.tsx @@ -8,4 +8,4 @@ const IconDirectorySyncOutlined: React.FC = ({ ...props }) => ( ) -export { IconDirectorySyncOutlined as default } +export default IconDirectorySyncOutlined diff --git a/src/IconDirectorySyncOutlinedFilled.tsx b/src/IconDirectorySyncOutlinedFilled.tsx index 4e9ed2096..22b8931e9 100644 --- a/src/IconDirectorySyncOutlinedFilled.tsx +++ b/src/IconDirectorySyncOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconDirectorySyncOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconDirectorySyncOutlinedFilled as default } +export default IconDirectorySyncOutlinedFilled diff --git a/src/IconDirectorySyncRounded.tsx b/src/IconDirectorySyncRounded.tsx index b35ea3673..4e3bea267 100644 --- a/src/IconDirectorySyncRounded.tsx +++ b/src/IconDirectorySyncRounded.tsx @@ -8,4 +8,4 @@ const IconDirectorySyncRounded: React.FC = ({ ...props }) => ( ) -export { IconDirectorySyncRounded as default } +export default IconDirectorySyncRounded diff --git a/src/IconDirectorySyncRoundedFilled.tsx b/src/IconDirectorySyncRoundedFilled.tsx index fd8a5396a..1a850e62b 100644 --- a/src/IconDirectorySyncRoundedFilled.tsx +++ b/src/IconDirectorySyncRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconDirectorySyncRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconDirectorySyncRoundedFilled as default } +export default IconDirectorySyncRoundedFilled diff --git a/src/IconDirectorySyncSharp.tsx b/src/IconDirectorySyncSharp.tsx index 896bb9bde..a30702ae5 100644 --- a/src/IconDirectorySyncSharp.tsx +++ b/src/IconDirectorySyncSharp.tsx @@ -8,4 +8,4 @@ const IconDirectorySyncSharp: React.FC = ({ ...props }) => ( ) -export { IconDirectorySyncSharp as default } +export default IconDirectorySyncSharp diff --git a/src/IconDirectorySyncSharpFilled.tsx b/src/IconDirectorySyncSharpFilled.tsx index 5d1ba0b90..6edb3b3a7 100644 --- a/src/IconDirectorySyncSharpFilled.tsx +++ b/src/IconDirectorySyncSharpFilled.tsx @@ -8,4 +8,4 @@ const IconDirectorySyncSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconDirectorySyncSharpFilled as default } +export default IconDirectorySyncSharpFilled diff --git a/src/IconDirtyLensOutlined.tsx b/src/IconDirtyLensOutlined.tsx index 8800fac54..a6cb0b634 100644 --- a/src/IconDirtyLensOutlined.tsx +++ b/src/IconDirtyLensOutlined.tsx @@ -8,4 +8,4 @@ const IconDirtyLensOutlined: React.FC = ({ ...props }) => ( ) -export { IconDirtyLensOutlined as default } +export default IconDirtyLensOutlined diff --git a/src/IconDirtyLensOutlinedFilled.tsx b/src/IconDirtyLensOutlinedFilled.tsx index c28035991..8bd3c9064 100644 --- a/src/IconDirtyLensOutlinedFilled.tsx +++ b/src/IconDirtyLensOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconDirtyLensOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconDirtyLensOutlinedFilled as default } +export default IconDirtyLensOutlinedFilled diff --git a/src/IconDirtyLensRounded.tsx b/src/IconDirtyLensRounded.tsx index 1b4fdda20..92452af5a 100644 --- a/src/IconDirtyLensRounded.tsx +++ b/src/IconDirtyLensRounded.tsx @@ -8,4 +8,4 @@ const IconDirtyLensRounded: React.FC = ({ ...props }) => ( ) -export { IconDirtyLensRounded as default } +export default IconDirtyLensRounded diff --git a/src/IconDirtyLensRoundedFilled.tsx b/src/IconDirtyLensRoundedFilled.tsx index 80b10327c..0c48fbc73 100644 --- a/src/IconDirtyLensRoundedFilled.tsx +++ b/src/IconDirtyLensRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconDirtyLensRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconDirtyLensRoundedFilled as default } +export default IconDirtyLensRoundedFilled diff --git a/src/IconDirtyLensSharp.tsx b/src/IconDirtyLensSharp.tsx index 7aef3db6c..427182a3d 100644 --- a/src/IconDirtyLensSharp.tsx +++ b/src/IconDirtyLensSharp.tsx @@ -8,4 +8,4 @@ const IconDirtyLensSharp: React.FC = ({ ...props }) => ( ) -export { IconDirtyLensSharp as default } +export default IconDirtyLensSharp diff --git a/src/IconDirtyLensSharpFilled.tsx b/src/IconDirtyLensSharpFilled.tsx index d05840872..a3611b578 100644 --- a/src/IconDirtyLensSharpFilled.tsx +++ b/src/IconDirtyLensSharpFilled.tsx @@ -8,4 +8,4 @@ const IconDirtyLensSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconDirtyLensSharpFilled as default } +export default IconDirtyLensSharpFilled diff --git a/src/IconDisabledByDefaultOutlined.tsx b/src/IconDisabledByDefaultOutlined.tsx index 87a1f3ba7..66e27020c 100644 --- a/src/IconDisabledByDefaultOutlined.tsx +++ b/src/IconDisabledByDefaultOutlined.tsx @@ -8,4 +8,4 @@ const IconDisabledByDefaultOutlined: React.FC = ({ ...props }) => ( ) -export { IconDisabledByDefaultOutlined as default } +export default IconDisabledByDefaultOutlined diff --git a/src/IconDisabledByDefaultOutlinedFilled.tsx b/src/IconDisabledByDefaultOutlinedFilled.tsx index 0dbad65bb..548484fa1 100644 --- a/src/IconDisabledByDefaultOutlinedFilled.tsx +++ b/src/IconDisabledByDefaultOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconDisabledByDefaultOutlinedFilled: React.FC = ({ ) -export { IconDisabledByDefaultOutlinedFilled as default } +export default IconDisabledByDefaultOutlinedFilled diff --git a/src/IconDisabledByDefaultRounded.tsx b/src/IconDisabledByDefaultRounded.tsx index 9e09f634a..676c9462e 100644 --- a/src/IconDisabledByDefaultRounded.tsx +++ b/src/IconDisabledByDefaultRounded.tsx @@ -8,4 +8,4 @@ const IconDisabledByDefaultRounded: React.FC = ({ ...props }) => ( ) -export { IconDisabledByDefaultRounded as default } +export default IconDisabledByDefaultRounded diff --git a/src/IconDisabledByDefaultRoundedFilled.tsx b/src/IconDisabledByDefaultRoundedFilled.tsx index 5307d3bb4..a53bffee3 100644 --- a/src/IconDisabledByDefaultRoundedFilled.tsx +++ b/src/IconDisabledByDefaultRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconDisabledByDefaultRoundedFilled: React.FC = ({ ) -export { IconDisabledByDefaultRoundedFilled as default } +export default IconDisabledByDefaultRoundedFilled diff --git a/src/IconDisabledByDefaultSharp.tsx b/src/IconDisabledByDefaultSharp.tsx index 4d04c0a5d..4dda9ead6 100644 --- a/src/IconDisabledByDefaultSharp.tsx +++ b/src/IconDisabledByDefaultSharp.tsx @@ -8,4 +8,4 @@ const IconDisabledByDefaultSharp: React.FC = ({ ...props }) => ( ) -export { IconDisabledByDefaultSharp as default } +export default IconDisabledByDefaultSharp diff --git a/src/IconDisabledByDefaultSharpFilled.tsx b/src/IconDisabledByDefaultSharpFilled.tsx index 3d19a2c85..c37bef622 100644 --- a/src/IconDisabledByDefaultSharpFilled.tsx +++ b/src/IconDisabledByDefaultSharpFilled.tsx @@ -10,4 +10,4 @@ const IconDisabledByDefaultSharpFilled: React.FC = ({ ) -export { IconDisabledByDefaultSharpFilled as default } +export default IconDisabledByDefaultSharpFilled diff --git a/src/IconDisabledVisibleOutlined.tsx b/src/IconDisabledVisibleOutlined.tsx index 8d93b6710..aa7bb4339 100644 --- a/src/IconDisabledVisibleOutlined.tsx +++ b/src/IconDisabledVisibleOutlined.tsx @@ -8,4 +8,4 @@ const IconDisabledVisibleOutlined: React.FC = ({ ...props }) => ( ) -export { IconDisabledVisibleOutlined as default } +export default IconDisabledVisibleOutlined diff --git a/src/IconDisabledVisibleOutlinedFilled.tsx b/src/IconDisabledVisibleOutlinedFilled.tsx index f92e7ed78..642d2d1d0 100644 --- a/src/IconDisabledVisibleOutlinedFilled.tsx +++ b/src/IconDisabledVisibleOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconDisabledVisibleOutlinedFilled: React.FC = ({ ) -export { IconDisabledVisibleOutlinedFilled as default } +export default IconDisabledVisibleOutlinedFilled diff --git a/src/IconDisabledVisibleRounded.tsx b/src/IconDisabledVisibleRounded.tsx index 4276a8a7b..847d72832 100644 --- a/src/IconDisabledVisibleRounded.tsx +++ b/src/IconDisabledVisibleRounded.tsx @@ -8,4 +8,4 @@ const IconDisabledVisibleRounded: React.FC = ({ ...props }) => ( ) -export { IconDisabledVisibleRounded as default } +export default IconDisabledVisibleRounded diff --git a/src/IconDisabledVisibleRoundedFilled.tsx b/src/IconDisabledVisibleRoundedFilled.tsx index dee52c24e..c65e2d671 100644 --- a/src/IconDisabledVisibleRoundedFilled.tsx +++ b/src/IconDisabledVisibleRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconDisabledVisibleRoundedFilled: React.FC = ({ ) -export { IconDisabledVisibleRoundedFilled as default } +export default IconDisabledVisibleRoundedFilled diff --git a/src/IconDisabledVisibleSharp.tsx b/src/IconDisabledVisibleSharp.tsx index de6c335fa..97dead895 100644 --- a/src/IconDisabledVisibleSharp.tsx +++ b/src/IconDisabledVisibleSharp.tsx @@ -8,4 +8,4 @@ const IconDisabledVisibleSharp: React.FC = ({ ...props }) => ( ) -export { IconDisabledVisibleSharp as default } +export default IconDisabledVisibleSharp diff --git a/src/IconDisabledVisibleSharpFilled.tsx b/src/IconDisabledVisibleSharpFilled.tsx index 9edb9ecef..181bba657 100644 --- a/src/IconDisabledVisibleSharpFilled.tsx +++ b/src/IconDisabledVisibleSharpFilled.tsx @@ -8,4 +8,4 @@ const IconDisabledVisibleSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconDisabledVisibleSharpFilled as default } +export default IconDisabledVisibleSharpFilled diff --git a/src/IconDiscFullOutlined.tsx b/src/IconDiscFullOutlined.tsx index 925a5a600..a8cd0f94c 100644 --- a/src/IconDiscFullOutlined.tsx +++ b/src/IconDiscFullOutlined.tsx @@ -8,4 +8,4 @@ const IconDiscFullOutlined: React.FC = ({ ...props }) => ( ) -export { IconDiscFullOutlined as default } +export default IconDiscFullOutlined diff --git a/src/IconDiscFullOutlinedFilled.tsx b/src/IconDiscFullOutlinedFilled.tsx index 3606ac431..4ee833e27 100644 --- a/src/IconDiscFullOutlinedFilled.tsx +++ b/src/IconDiscFullOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconDiscFullOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconDiscFullOutlinedFilled as default } +export default IconDiscFullOutlinedFilled diff --git a/src/IconDiscFullRounded.tsx b/src/IconDiscFullRounded.tsx index 766fd266a..87672ebe1 100644 --- a/src/IconDiscFullRounded.tsx +++ b/src/IconDiscFullRounded.tsx @@ -8,4 +8,4 @@ const IconDiscFullRounded: React.FC = ({ ...props }) => ( ) -export { IconDiscFullRounded as default } +export default IconDiscFullRounded diff --git a/src/IconDiscFullRoundedFilled.tsx b/src/IconDiscFullRoundedFilled.tsx index 9e4bc9e77..ec78649ce 100644 --- a/src/IconDiscFullRoundedFilled.tsx +++ b/src/IconDiscFullRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconDiscFullRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconDiscFullRoundedFilled as default } +export default IconDiscFullRoundedFilled diff --git a/src/IconDiscFullSharp.tsx b/src/IconDiscFullSharp.tsx index 2827306be..b95886c19 100644 --- a/src/IconDiscFullSharp.tsx +++ b/src/IconDiscFullSharp.tsx @@ -8,4 +8,4 @@ const IconDiscFullSharp: React.FC = ({ ...props }) => ( ) -export { IconDiscFullSharp as default } +export default IconDiscFullSharp diff --git a/src/IconDiscFullSharpFilled.tsx b/src/IconDiscFullSharpFilled.tsx index 0646130a2..fcaa6bf14 100644 --- a/src/IconDiscFullSharpFilled.tsx +++ b/src/IconDiscFullSharpFilled.tsx @@ -8,4 +8,4 @@ const IconDiscFullSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconDiscFullSharpFilled as default } +export default IconDiscFullSharpFilled diff --git a/src/IconDiscoverTuneOutlined.tsx b/src/IconDiscoverTuneOutlined.tsx index 906be411f..ad61131a2 100644 --- a/src/IconDiscoverTuneOutlined.tsx +++ b/src/IconDiscoverTuneOutlined.tsx @@ -8,4 +8,4 @@ const IconDiscoverTuneOutlined: React.FC = ({ ...props }) => ( ) -export { IconDiscoverTuneOutlined as default } +export default IconDiscoverTuneOutlined diff --git a/src/IconDiscoverTuneOutlinedFilled.tsx b/src/IconDiscoverTuneOutlinedFilled.tsx index a59c6fba2..bdaf172d2 100644 --- a/src/IconDiscoverTuneOutlinedFilled.tsx +++ b/src/IconDiscoverTuneOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconDiscoverTuneOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconDiscoverTuneOutlinedFilled as default } +export default IconDiscoverTuneOutlinedFilled diff --git a/src/IconDiscoverTuneRounded.tsx b/src/IconDiscoverTuneRounded.tsx index 0b7c008d4..670f51c33 100644 --- a/src/IconDiscoverTuneRounded.tsx +++ b/src/IconDiscoverTuneRounded.tsx @@ -8,4 +8,4 @@ const IconDiscoverTuneRounded: React.FC = ({ ...props }) => ( ) -export { IconDiscoverTuneRounded as default } +export default IconDiscoverTuneRounded diff --git a/src/IconDiscoverTuneRoundedFilled.tsx b/src/IconDiscoverTuneRoundedFilled.tsx index 82dc8b380..cbc5bff1b 100644 --- a/src/IconDiscoverTuneRoundedFilled.tsx +++ b/src/IconDiscoverTuneRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconDiscoverTuneRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconDiscoverTuneRoundedFilled as default } +export default IconDiscoverTuneRoundedFilled diff --git a/src/IconDiscoverTuneSharp.tsx b/src/IconDiscoverTuneSharp.tsx index dccd8f25c..129ca3f6d 100644 --- a/src/IconDiscoverTuneSharp.tsx +++ b/src/IconDiscoverTuneSharp.tsx @@ -8,4 +8,4 @@ const IconDiscoverTuneSharp: React.FC = ({ ...props }) => ( ) -export { IconDiscoverTuneSharp as default } +export default IconDiscoverTuneSharp diff --git a/src/IconDiscoverTuneSharpFilled.tsx b/src/IconDiscoverTuneSharpFilled.tsx index 2a15225eb..a1084fc58 100644 --- a/src/IconDiscoverTuneSharpFilled.tsx +++ b/src/IconDiscoverTuneSharpFilled.tsx @@ -8,4 +8,4 @@ const IconDiscoverTuneSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconDiscoverTuneSharpFilled as default } +export default IconDiscoverTuneSharpFilled diff --git a/src/IconDishwasherGenOutlined.tsx b/src/IconDishwasherGenOutlined.tsx index dd587e5bd..13b08a75d 100644 --- a/src/IconDishwasherGenOutlined.tsx +++ b/src/IconDishwasherGenOutlined.tsx @@ -8,4 +8,4 @@ const IconDishwasherGenOutlined: React.FC = ({ ...props }) => ( ) -export { IconDishwasherGenOutlined as default } +export default IconDishwasherGenOutlined diff --git a/src/IconDishwasherGenOutlinedFilled.tsx b/src/IconDishwasherGenOutlinedFilled.tsx index b83f3e5a5..cd9ac50ed 100644 --- a/src/IconDishwasherGenOutlinedFilled.tsx +++ b/src/IconDishwasherGenOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconDishwasherGenOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconDishwasherGenOutlinedFilled as default } +export default IconDishwasherGenOutlinedFilled diff --git a/src/IconDishwasherGenRounded.tsx b/src/IconDishwasherGenRounded.tsx index 7fed4aa31..fffca4f9a 100644 --- a/src/IconDishwasherGenRounded.tsx +++ b/src/IconDishwasherGenRounded.tsx @@ -8,4 +8,4 @@ const IconDishwasherGenRounded: React.FC = ({ ...props }) => ( ) -export { IconDishwasherGenRounded as default } +export default IconDishwasherGenRounded diff --git a/src/IconDishwasherGenRoundedFilled.tsx b/src/IconDishwasherGenRoundedFilled.tsx index 32a905345..3c5f93c2f 100644 --- a/src/IconDishwasherGenRoundedFilled.tsx +++ b/src/IconDishwasherGenRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconDishwasherGenRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconDishwasherGenRoundedFilled as default } +export default IconDishwasherGenRoundedFilled diff --git a/src/IconDishwasherGenSharp.tsx b/src/IconDishwasherGenSharp.tsx index f0033b8b0..f7d99e896 100644 --- a/src/IconDishwasherGenSharp.tsx +++ b/src/IconDishwasherGenSharp.tsx @@ -8,4 +8,4 @@ const IconDishwasherGenSharp: React.FC = ({ ...props }) => ( ) -export { IconDishwasherGenSharp as default } +export default IconDishwasherGenSharp diff --git a/src/IconDishwasherGenSharpFilled.tsx b/src/IconDishwasherGenSharpFilled.tsx index a946946f4..ba527058d 100644 --- a/src/IconDishwasherGenSharpFilled.tsx +++ b/src/IconDishwasherGenSharpFilled.tsx @@ -8,4 +8,4 @@ const IconDishwasherGenSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconDishwasherGenSharpFilled as default } +export default IconDishwasherGenSharpFilled diff --git a/src/IconDishwasherOutlined.tsx b/src/IconDishwasherOutlined.tsx index abb8f2c82..6423fd460 100644 --- a/src/IconDishwasherOutlined.tsx +++ b/src/IconDishwasherOutlined.tsx @@ -8,4 +8,4 @@ const IconDishwasherOutlined: React.FC = ({ ...props }) => ( ) -export { IconDishwasherOutlined as default } +export default IconDishwasherOutlined diff --git a/src/IconDishwasherOutlinedFilled.tsx b/src/IconDishwasherOutlinedFilled.tsx index eafde60f4..580a94ecd 100644 --- a/src/IconDishwasherOutlinedFilled.tsx +++ b/src/IconDishwasherOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconDishwasherOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconDishwasherOutlinedFilled as default } +export default IconDishwasherOutlinedFilled diff --git a/src/IconDishwasherRounded.tsx b/src/IconDishwasherRounded.tsx index ee82d1a04..cf40e409c 100644 --- a/src/IconDishwasherRounded.tsx +++ b/src/IconDishwasherRounded.tsx @@ -8,4 +8,4 @@ const IconDishwasherRounded: React.FC = ({ ...props }) => ( ) -export { IconDishwasherRounded as default } +export default IconDishwasherRounded diff --git a/src/IconDishwasherRoundedFilled.tsx b/src/IconDishwasherRoundedFilled.tsx index 587fbb7bc..3406169e8 100644 --- a/src/IconDishwasherRoundedFilled.tsx +++ b/src/IconDishwasherRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconDishwasherRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconDishwasherRoundedFilled as default } +export default IconDishwasherRoundedFilled diff --git a/src/IconDishwasherSharp.tsx b/src/IconDishwasherSharp.tsx index d1fb21a55..98812402b 100644 --- a/src/IconDishwasherSharp.tsx +++ b/src/IconDishwasherSharp.tsx @@ -8,4 +8,4 @@ const IconDishwasherSharp: React.FC = ({ ...props }) => ( ) -export { IconDishwasherSharp as default } +export default IconDishwasherSharp diff --git a/src/IconDishwasherSharpFilled.tsx b/src/IconDishwasherSharpFilled.tsx index fb04df92c..428c52eb5 100644 --- a/src/IconDishwasherSharpFilled.tsx +++ b/src/IconDishwasherSharpFilled.tsx @@ -8,4 +8,4 @@ const IconDishwasherSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconDishwasherSharpFilled as default } +export default IconDishwasherSharpFilled diff --git a/src/IconDisplayExternalInputOutlined.tsx b/src/IconDisplayExternalInputOutlined.tsx index 88a0a18d0..e9c82d714 100644 --- a/src/IconDisplayExternalInputOutlined.tsx +++ b/src/IconDisplayExternalInputOutlined.tsx @@ -10,4 +10,4 @@ const IconDisplayExternalInputOutlined: React.FC = ({ ) -export { IconDisplayExternalInputOutlined as default } +export default IconDisplayExternalInputOutlined diff --git a/src/IconDisplayExternalInputOutlinedFilled.tsx b/src/IconDisplayExternalInputOutlinedFilled.tsx index ef6ad380a..cd2601e1e 100644 --- a/src/IconDisplayExternalInputOutlinedFilled.tsx +++ b/src/IconDisplayExternalInputOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconDisplayExternalInputOutlinedFilled: React.FC = ({ ) -export { IconDisplayExternalInputOutlinedFilled as default } +export default IconDisplayExternalInputOutlinedFilled diff --git a/src/IconDisplayExternalInputRounded.tsx b/src/IconDisplayExternalInputRounded.tsx index b92802bb2..8d621522b 100644 --- a/src/IconDisplayExternalInputRounded.tsx +++ b/src/IconDisplayExternalInputRounded.tsx @@ -8,4 +8,4 @@ const IconDisplayExternalInputRounded: React.FC = ({ ...props }) => ( ) -export { IconDisplayExternalInputRounded as default } +export default IconDisplayExternalInputRounded diff --git a/src/IconDisplayExternalInputRoundedFilled.tsx b/src/IconDisplayExternalInputRoundedFilled.tsx index 8a22c38e5..900015003 100644 --- a/src/IconDisplayExternalInputRoundedFilled.tsx +++ b/src/IconDisplayExternalInputRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconDisplayExternalInputRoundedFilled: React.FC = ({ ) -export { IconDisplayExternalInputRoundedFilled as default } +export default IconDisplayExternalInputRoundedFilled diff --git a/src/IconDisplayExternalInputSharp.tsx b/src/IconDisplayExternalInputSharp.tsx index 2ddb068e2..242fe176e 100644 --- a/src/IconDisplayExternalInputSharp.tsx +++ b/src/IconDisplayExternalInputSharp.tsx @@ -8,4 +8,4 @@ const IconDisplayExternalInputSharp: React.FC = ({ ...props }) => ( ) -export { IconDisplayExternalInputSharp as default } +export default IconDisplayExternalInputSharp diff --git a/src/IconDisplayExternalInputSharpFilled.tsx b/src/IconDisplayExternalInputSharpFilled.tsx index caf1e0a9d..eb6bfb9f7 100644 --- a/src/IconDisplayExternalInputSharpFilled.tsx +++ b/src/IconDisplayExternalInputSharpFilled.tsx @@ -10,4 +10,4 @@ const IconDisplayExternalInputSharpFilled: React.FC = ({ ) -export { IconDisplayExternalInputSharpFilled as default } +export default IconDisplayExternalInputSharpFilled diff --git a/src/IconDisplaySettingsOutlined.tsx b/src/IconDisplaySettingsOutlined.tsx index b9a45fe92..cd9baf531 100644 --- a/src/IconDisplaySettingsOutlined.tsx +++ b/src/IconDisplaySettingsOutlined.tsx @@ -8,4 +8,4 @@ const IconDisplaySettingsOutlined: React.FC = ({ ...props }) => ( ) -export { IconDisplaySettingsOutlined as default } +export default IconDisplaySettingsOutlined diff --git a/src/IconDisplaySettingsOutlinedFilled.tsx b/src/IconDisplaySettingsOutlinedFilled.tsx index 32eb0e0ed..c64b0c96f 100644 --- a/src/IconDisplaySettingsOutlinedFilled.tsx +++ b/src/IconDisplaySettingsOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconDisplaySettingsOutlinedFilled: React.FC = ({ ) -export { IconDisplaySettingsOutlinedFilled as default } +export default IconDisplaySettingsOutlinedFilled diff --git a/src/IconDisplaySettingsRounded.tsx b/src/IconDisplaySettingsRounded.tsx index eaf2fb67d..9f859eb03 100644 --- a/src/IconDisplaySettingsRounded.tsx +++ b/src/IconDisplaySettingsRounded.tsx @@ -8,4 +8,4 @@ const IconDisplaySettingsRounded: React.FC = ({ ...props }) => ( ) -export { IconDisplaySettingsRounded as default } +export default IconDisplaySettingsRounded diff --git a/src/IconDisplaySettingsRoundedFilled.tsx b/src/IconDisplaySettingsRoundedFilled.tsx index 0379b126b..9dc26cbf4 100644 --- a/src/IconDisplaySettingsRoundedFilled.tsx +++ b/src/IconDisplaySettingsRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconDisplaySettingsRoundedFilled: React.FC = ({ ) -export { IconDisplaySettingsRoundedFilled as default } +export default IconDisplaySettingsRoundedFilled diff --git a/src/IconDisplaySettingsSharp.tsx b/src/IconDisplaySettingsSharp.tsx index 20cb5e886..32d29cdc3 100644 --- a/src/IconDisplaySettingsSharp.tsx +++ b/src/IconDisplaySettingsSharp.tsx @@ -8,4 +8,4 @@ const IconDisplaySettingsSharp: React.FC = ({ ...props }) => ( ) -export { IconDisplaySettingsSharp as default } +export default IconDisplaySettingsSharp diff --git a/src/IconDisplaySettingsSharpFilled.tsx b/src/IconDisplaySettingsSharpFilled.tsx index c6b1bbb20..b70f33cc1 100644 --- a/src/IconDisplaySettingsSharpFilled.tsx +++ b/src/IconDisplaySettingsSharpFilled.tsx @@ -8,4 +8,4 @@ const IconDisplaySettingsSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconDisplaySettingsSharpFilled as default } +export default IconDisplaySettingsSharpFilled diff --git a/src/IconDistanceOutlined.tsx b/src/IconDistanceOutlined.tsx index 17447a2ff..42f3cb752 100644 --- a/src/IconDistanceOutlined.tsx +++ b/src/IconDistanceOutlined.tsx @@ -8,4 +8,4 @@ const IconDistanceOutlined: React.FC = ({ ...props }) => ( ) -export { IconDistanceOutlined as default } +export default IconDistanceOutlined diff --git a/src/IconDistanceOutlinedFilled.tsx b/src/IconDistanceOutlinedFilled.tsx index 5c5dc1661..af2bf8efd 100644 --- a/src/IconDistanceOutlinedFilled.tsx +++ b/src/IconDistanceOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconDistanceOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconDistanceOutlinedFilled as default } +export default IconDistanceOutlinedFilled diff --git a/src/IconDistanceRounded.tsx b/src/IconDistanceRounded.tsx index 6b05b8b1a..4443eb402 100644 --- a/src/IconDistanceRounded.tsx +++ b/src/IconDistanceRounded.tsx @@ -8,4 +8,4 @@ const IconDistanceRounded: React.FC = ({ ...props }) => ( ) -export { IconDistanceRounded as default } +export default IconDistanceRounded diff --git a/src/IconDistanceRoundedFilled.tsx b/src/IconDistanceRoundedFilled.tsx index 4cdcb23d6..fbead0397 100644 --- a/src/IconDistanceRoundedFilled.tsx +++ b/src/IconDistanceRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconDistanceRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconDistanceRoundedFilled as default } +export default IconDistanceRoundedFilled diff --git a/src/IconDistanceSharp.tsx b/src/IconDistanceSharp.tsx index 7970eed65..652d3c630 100644 --- a/src/IconDistanceSharp.tsx +++ b/src/IconDistanceSharp.tsx @@ -8,4 +8,4 @@ const IconDistanceSharp: React.FC = ({ ...props }) => ( ) -export { IconDistanceSharp as default } +export default IconDistanceSharp diff --git a/src/IconDistanceSharpFilled.tsx b/src/IconDistanceSharpFilled.tsx index 1ddf6c5c5..a207b2298 100644 --- a/src/IconDistanceSharpFilled.tsx +++ b/src/IconDistanceSharpFilled.tsx @@ -8,4 +8,4 @@ const IconDistanceSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconDistanceSharpFilled as default } +export default IconDistanceSharpFilled diff --git a/src/IconDiversity1Outlined.tsx b/src/IconDiversity1Outlined.tsx index 12f08d74d..9b0e367c8 100644 --- a/src/IconDiversity1Outlined.tsx +++ b/src/IconDiversity1Outlined.tsx @@ -8,4 +8,4 @@ const IconDiversity1Outlined: React.FC = ({ ...props }) => ( ) -export { IconDiversity1Outlined as default } +export default IconDiversity1Outlined diff --git a/src/IconDiversity1OutlinedFilled.tsx b/src/IconDiversity1OutlinedFilled.tsx index 128cbf300..89cf2d8a5 100644 --- a/src/IconDiversity1OutlinedFilled.tsx +++ b/src/IconDiversity1OutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconDiversity1OutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconDiversity1OutlinedFilled as default } +export default IconDiversity1OutlinedFilled diff --git a/src/IconDiversity1Rounded.tsx b/src/IconDiversity1Rounded.tsx index 4e3261ce3..c724f6674 100644 --- a/src/IconDiversity1Rounded.tsx +++ b/src/IconDiversity1Rounded.tsx @@ -8,4 +8,4 @@ const IconDiversity1Rounded: React.FC = ({ ...props }) => ( ) -export { IconDiversity1Rounded as default } +export default IconDiversity1Rounded diff --git a/src/IconDiversity1RoundedFilled.tsx b/src/IconDiversity1RoundedFilled.tsx index 9dc83e52a..c45d7aafa 100644 --- a/src/IconDiversity1RoundedFilled.tsx +++ b/src/IconDiversity1RoundedFilled.tsx @@ -8,4 +8,4 @@ const IconDiversity1RoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconDiversity1RoundedFilled as default } +export default IconDiversity1RoundedFilled diff --git a/src/IconDiversity1Sharp.tsx b/src/IconDiversity1Sharp.tsx index c194d2cee..c0f8a5811 100644 --- a/src/IconDiversity1Sharp.tsx +++ b/src/IconDiversity1Sharp.tsx @@ -8,4 +8,4 @@ const IconDiversity1Sharp: React.FC = ({ ...props }) => ( ) -export { IconDiversity1Sharp as default } +export default IconDiversity1Sharp diff --git a/src/IconDiversity1SharpFilled.tsx b/src/IconDiversity1SharpFilled.tsx index f1d74364f..098e9a72f 100644 --- a/src/IconDiversity1SharpFilled.tsx +++ b/src/IconDiversity1SharpFilled.tsx @@ -8,4 +8,4 @@ const IconDiversity1SharpFilled: React.FC = ({ ...props }) => ( ) -export { IconDiversity1SharpFilled as default } +export default IconDiversity1SharpFilled diff --git a/src/IconDiversity2Outlined.tsx b/src/IconDiversity2Outlined.tsx index d0c58ae2f..faaac69cd 100644 --- a/src/IconDiversity2Outlined.tsx +++ b/src/IconDiversity2Outlined.tsx @@ -8,4 +8,4 @@ const IconDiversity2Outlined: React.FC = ({ ...props }) => ( ) -export { IconDiversity2Outlined as default } +export default IconDiversity2Outlined diff --git a/src/IconDiversity2OutlinedFilled.tsx b/src/IconDiversity2OutlinedFilled.tsx index e53137ee5..77d882ba4 100644 --- a/src/IconDiversity2OutlinedFilled.tsx +++ b/src/IconDiversity2OutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconDiversity2OutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconDiversity2OutlinedFilled as default } +export default IconDiversity2OutlinedFilled diff --git a/src/IconDiversity2Rounded.tsx b/src/IconDiversity2Rounded.tsx index 3c00c4628..e4eeb0162 100644 --- a/src/IconDiversity2Rounded.tsx +++ b/src/IconDiversity2Rounded.tsx @@ -8,4 +8,4 @@ const IconDiversity2Rounded: React.FC = ({ ...props }) => ( ) -export { IconDiversity2Rounded as default } +export default IconDiversity2Rounded diff --git a/src/IconDiversity2RoundedFilled.tsx b/src/IconDiversity2RoundedFilled.tsx index 752c1bc6b..9133a5bd9 100644 --- a/src/IconDiversity2RoundedFilled.tsx +++ b/src/IconDiversity2RoundedFilled.tsx @@ -8,4 +8,4 @@ const IconDiversity2RoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconDiversity2RoundedFilled as default } +export default IconDiversity2RoundedFilled diff --git a/src/IconDiversity2Sharp.tsx b/src/IconDiversity2Sharp.tsx index e5a6f4b86..b233576f3 100644 --- a/src/IconDiversity2Sharp.tsx +++ b/src/IconDiversity2Sharp.tsx @@ -8,4 +8,4 @@ const IconDiversity2Sharp: React.FC = ({ ...props }) => ( ) -export { IconDiversity2Sharp as default } +export default IconDiversity2Sharp diff --git a/src/IconDiversity2SharpFilled.tsx b/src/IconDiversity2SharpFilled.tsx index 7d68d2300..4d76e336a 100644 --- a/src/IconDiversity2SharpFilled.tsx +++ b/src/IconDiversity2SharpFilled.tsx @@ -8,4 +8,4 @@ const IconDiversity2SharpFilled: React.FC = ({ ...props }) => ( ) -export { IconDiversity2SharpFilled as default } +export default IconDiversity2SharpFilled diff --git a/src/IconDiversity3Outlined.tsx b/src/IconDiversity3Outlined.tsx index 0e8d618ac..f38cb5ea0 100644 --- a/src/IconDiversity3Outlined.tsx +++ b/src/IconDiversity3Outlined.tsx @@ -8,4 +8,4 @@ const IconDiversity3Outlined: React.FC = ({ ...props }) => ( ) -export { IconDiversity3Outlined as default } +export default IconDiversity3Outlined diff --git a/src/IconDiversity3OutlinedFilled.tsx b/src/IconDiversity3OutlinedFilled.tsx index f7a8808d2..51e86daeb 100644 --- a/src/IconDiversity3OutlinedFilled.tsx +++ b/src/IconDiversity3OutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconDiversity3OutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconDiversity3OutlinedFilled as default } +export default IconDiversity3OutlinedFilled diff --git a/src/IconDiversity3Rounded.tsx b/src/IconDiversity3Rounded.tsx index 066a08665..acc193d02 100644 --- a/src/IconDiversity3Rounded.tsx +++ b/src/IconDiversity3Rounded.tsx @@ -8,4 +8,4 @@ const IconDiversity3Rounded: React.FC = ({ ...props }) => ( ) -export { IconDiversity3Rounded as default } +export default IconDiversity3Rounded diff --git a/src/IconDiversity3RoundedFilled.tsx b/src/IconDiversity3RoundedFilled.tsx index 97742db1b..c2bdeadd0 100644 --- a/src/IconDiversity3RoundedFilled.tsx +++ b/src/IconDiversity3RoundedFilled.tsx @@ -8,4 +8,4 @@ const IconDiversity3RoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconDiversity3RoundedFilled as default } +export default IconDiversity3RoundedFilled diff --git a/src/IconDiversity3Sharp.tsx b/src/IconDiversity3Sharp.tsx index 775bea04a..a59df3089 100644 --- a/src/IconDiversity3Sharp.tsx +++ b/src/IconDiversity3Sharp.tsx @@ -8,4 +8,4 @@ const IconDiversity3Sharp: React.FC = ({ ...props }) => ( ) -export { IconDiversity3Sharp as default } +export default IconDiversity3Sharp diff --git a/src/IconDiversity3SharpFilled.tsx b/src/IconDiversity3SharpFilled.tsx index b99d06a6b..fc852eec1 100644 --- a/src/IconDiversity3SharpFilled.tsx +++ b/src/IconDiversity3SharpFilled.tsx @@ -8,4 +8,4 @@ const IconDiversity3SharpFilled: React.FC = ({ ...props }) => ( ) -export { IconDiversity3SharpFilled as default } +export default IconDiversity3SharpFilled diff --git a/src/IconDiversity4Outlined.tsx b/src/IconDiversity4Outlined.tsx index 219ecc5a3..f61dd5bfa 100644 --- a/src/IconDiversity4Outlined.tsx +++ b/src/IconDiversity4Outlined.tsx @@ -8,4 +8,4 @@ const IconDiversity4Outlined: React.FC = ({ ...props }) => ( ) -export { IconDiversity4Outlined as default } +export default IconDiversity4Outlined diff --git a/src/IconDiversity4OutlinedFilled.tsx b/src/IconDiversity4OutlinedFilled.tsx index d07d674a2..0417639f7 100644 --- a/src/IconDiversity4OutlinedFilled.tsx +++ b/src/IconDiversity4OutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconDiversity4OutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconDiversity4OutlinedFilled as default } +export default IconDiversity4OutlinedFilled diff --git a/src/IconDiversity4Rounded.tsx b/src/IconDiversity4Rounded.tsx index 382412971..4d7d8137d 100644 --- a/src/IconDiversity4Rounded.tsx +++ b/src/IconDiversity4Rounded.tsx @@ -8,4 +8,4 @@ const IconDiversity4Rounded: React.FC = ({ ...props }) => ( ) -export { IconDiversity4Rounded as default } +export default IconDiversity4Rounded diff --git a/src/IconDiversity4RoundedFilled.tsx b/src/IconDiversity4RoundedFilled.tsx index a4a564b77..72fefd5bd 100644 --- a/src/IconDiversity4RoundedFilled.tsx +++ b/src/IconDiversity4RoundedFilled.tsx @@ -8,4 +8,4 @@ const IconDiversity4RoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconDiversity4RoundedFilled as default } +export default IconDiversity4RoundedFilled diff --git a/src/IconDiversity4Sharp.tsx b/src/IconDiversity4Sharp.tsx index 8b8d0b0ad..7a9696aa0 100644 --- a/src/IconDiversity4Sharp.tsx +++ b/src/IconDiversity4Sharp.tsx @@ -8,4 +8,4 @@ const IconDiversity4Sharp: React.FC = ({ ...props }) => ( ) -export { IconDiversity4Sharp as default } +export default IconDiversity4Sharp diff --git a/src/IconDiversity4SharpFilled.tsx b/src/IconDiversity4SharpFilled.tsx index f53089c72..fa4c2c92d 100644 --- a/src/IconDiversity4SharpFilled.tsx +++ b/src/IconDiversity4SharpFilled.tsx @@ -8,4 +8,4 @@ const IconDiversity4SharpFilled: React.FC = ({ ...props }) => ( ) -export { IconDiversity4SharpFilled as default } +export default IconDiversity4SharpFilled diff --git a/src/IconDnsOutlined.tsx b/src/IconDnsOutlined.tsx index 1eba3fe1b..9a0910367 100644 --- a/src/IconDnsOutlined.tsx +++ b/src/IconDnsOutlined.tsx @@ -8,4 +8,4 @@ const IconDnsOutlined: React.FC = ({ ...props }) => ( ) -export { IconDnsOutlined as default } +export default IconDnsOutlined diff --git a/src/IconDnsOutlinedFilled.tsx b/src/IconDnsOutlinedFilled.tsx index 6636f5591..219672631 100644 --- a/src/IconDnsOutlinedFilled.tsx +++ b/src/IconDnsOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconDnsOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconDnsOutlinedFilled as default } +export default IconDnsOutlinedFilled diff --git a/src/IconDnsRounded.tsx b/src/IconDnsRounded.tsx index bd970abf0..f5fe5b9d3 100644 --- a/src/IconDnsRounded.tsx +++ b/src/IconDnsRounded.tsx @@ -8,4 +8,4 @@ const IconDnsRounded: React.FC = ({ ...props }) => ( ) -export { IconDnsRounded as default } +export default IconDnsRounded diff --git a/src/IconDnsRoundedFilled.tsx b/src/IconDnsRoundedFilled.tsx index 9bcbacd8d..a5430e269 100644 --- a/src/IconDnsRoundedFilled.tsx +++ b/src/IconDnsRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconDnsRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconDnsRoundedFilled as default } +export default IconDnsRoundedFilled diff --git a/src/IconDnsSharp.tsx b/src/IconDnsSharp.tsx index 4d09a61f8..e6b86f9a0 100644 --- a/src/IconDnsSharp.tsx +++ b/src/IconDnsSharp.tsx @@ -8,4 +8,4 @@ const IconDnsSharp: React.FC = ({ ...props }) => ( ) -export { IconDnsSharp as default } +export default IconDnsSharp diff --git a/src/IconDnsSharpFilled.tsx b/src/IconDnsSharpFilled.tsx index 9a1d485a3..bf47054ff 100644 --- a/src/IconDnsSharpFilled.tsx +++ b/src/IconDnsSharpFilled.tsx @@ -8,4 +8,4 @@ const IconDnsSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconDnsSharpFilled as default } +export default IconDnsSharpFilled diff --git a/src/IconDoNotDisturbOffOutlined.tsx b/src/IconDoNotDisturbOffOutlined.tsx index 726171fe2..4e17b04f1 100644 --- a/src/IconDoNotDisturbOffOutlined.tsx +++ b/src/IconDoNotDisturbOffOutlined.tsx @@ -8,4 +8,4 @@ const IconDoNotDisturbOffOutlined: React.FC = ({ ...props }) => ( ) -export { IconDoNotDisturbOffOutlined as default } +export default IconDoNotDisturbOffOutlined diff --git a/src/IconDoNotDisturbOffOutlinedFilled.tsx b/src/IconDoNotDisturbOffOutlinedFilled.tsx index 9b0d509da..69a390e95 100644 --- a/src/IconDoNotDisturbOffOutlinedFilled.tsx +++ b/src/IconDoNotDisturbOffOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconDoNotDisturbOffOutlinedFilled: React.FC = ({ ) -export { IconDoNotDisturbOffOutlinedFilled as default } +export default IconDoNotDisturbOffOutlinedFilled diff --git a/src/IconDoNotDisturbOffRounded.tsx b/src/IconDoNotDisturbOffRounded.tsx index 00434ad52..7f1415596 100644 --- a/src/IconDoNotDisturbOffRounded.tsx +++ b/src/IconDoNotDisturbOffRounded.tsx @@ -8,4 +8,4 @@ const IconDoNotDisturbOffRounded: React.FC = ({ ...props }) => ( ) -export { IconDoNotDisturbOffRounded as default } +export default IconDoNotDisturbOffRounded diff --git a/src/IconDoNotDisturbOffRoundedFilled.tsx b/src/IconDoNotDisturbOffRoundedFilled.tsx index 70db8c869..8e85ba480 100644 --- a/src/IconDoNotDisturbOffRoundedFilled.tsx +++ b/src/IconDoNotDisturbOffRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconDoNotDisturbOffRoundedFilled: React.FC = ({ ) -export { IconDoNotDisturbOffRoundedFilled as default } +export default IconDoNotDisturbOffRoundedFilled diff --git a/src/IconDoNotDisturbOffSharp.tsx b/src/IconDoNotDisturbOffSharp.tsx index 262ce34dc..e0f6693b2 100644 --- a/src/IconDoNotDisturbOffSharp.tsx +++ b/src/IconDoNotDisturbOffSharp.tsx @@ -8,4 +8,4 @@ const IconDoNotDisturbOffSharp: React.FC = ({ ...props }) => ( ) -export { IconDoNotDisturbOffSharp as default } +export default IconDoNotDisturbOffSharp diff --git a/src/IconDoNotDisturbOffSharpFilled.tsx b/src/IconDoNotDisturbOffSharpFilled.tsx index f35c935aa..6ddd3a13d 100644 --- a/src/IconDoNotDisturbOffSharpFilled.tsx +++ b/src/IconDoNotDisturbOffSharpFilled.tsx @@ -8,4 +8,4 @@ const IconDoNotDisturbOffSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconDoNotDisturbOffSharpFilled as default } +export default IconDoNotDisturbOffSharpFilled diff --git a/src/IconDoNotDisturbOnOutlined.tsx b/src/IconDoNotDisturbOnOutlined.tsx index 343b686d0..b2cfbca20 100644 --- a/src/IconDoNotDisturbOnOutlined.tsx +++ b/src/IconDoNotDisturbOnOutlined.tsx @@ -8,4 +8,4 @@ const IconDoNotDisturbOnOutlined: React.FC = ({ ...props }) => ( ) -export { IconDoNotDisturbOnOutlined as default } +export default IconDoNotDisturbOnOutlined diff --git a/src/IconDoNotDisturbOnOutlinedFilled.tsx b/src/IconDoNotDisturbOnOutlinedFilled.tsx index f6b2b7b3f..24c1fed85 100644 --- a/src/IconDoNotDisturbOnOutlinedFilled.tsx +++ b/src/IconDoNotDisturbOnOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconDoNotDisturbOnOutlinedFilled: React.FC = ({ ) -export { IconDoNotDisturbOnOutlinedFilled as default } +export default IconDoNotDisturbOnOutlinedFilled diff --git a/src/IconDoNotDisturbOnRounded.tsx b/src/IconDoNotDisturbOnRounded.tsx index ba328d601..d00c2efaf 100644 --- a/src/IconDoNotDisturbOnRounded.tsx +++ b/src/IconDoNotDisturbOnRounded.tsx @@ -8,4 +8,4 @@ const IconDoNotDisturbOnRounded: React.FC = ({ ...props }) => ( ) -export { IconDoNotDisturbOnRounded as default } +export default IconDoNotDisturbOnRounded diff --git a/src/IconDoNotDisturbOnRoundedFilled.tsx b/src/IconDoNotDisturbOnRoundedFilled.tsx index 175b1d0de..ced08bda1 100644 --- a/src/IconDoNotDisturbOnRoundedFilled.tsx +++ b/src/IconDoNotDisturbOnRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconDoNotDisturbOnRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconDoNotDisturbOnRoundedFilled as default } +export default IconDoNotDisturbOnRoundedFilled diff --git a/src/IconDoNotDisturbOnSharp.tsx b/src/IconDoNotDisturbOnSharp.tsx index 67aba9dc4..16aab2e89 100644 --- a/src/IconDoNotDisturbOnSharp.tsx +++ b/src/IconDoNotDisturbOnSharp.tsx @@ -8,4 +8,4 @@ const IconDoNotDisturbOnSharp: React.FC = ({ ...props }) => ( ) -export { IconDoNotDisturbOnSharp as default } +export default IconDoNotDisturbOnSharp diff --git a/src/IconDoNotDisturbOnSharpFilled.tsx b/src/IconDoNotDisturbOnSharpFilled.tsx index 769fc8f09..8db7be17d 100644 --- a/src/IconDoNotDisturbOnSharpFilled.tsx +++ b/src/IconDoNotDisturbOnSharpFilled.tsx @@ -8,4 +8,4 @@ const IconDoNotDisturbOnSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconDoNotDisturbOnSharpFilled as default } +export default IconDoNotDisturbOnSharpFilled diff --git a/src/IconDoNotDisturbOnTotalSilenceOutlined.tsx b/src/IconDoNotDisturbOnTotalSilenceOutlined.tsx index 50afc462f..0e69d9b83 100644 --- a/src/IconDoNotDisturbOnTotalSilenceOutlined.tsx +++ b/src/IconDoNotDisturbOnTotalSilenceOutlined.tsx @@ -10,4 +10,4 @@ const IconDoNotDisturbOnTotalSilenceOutlined: React.FC = ({ ) -export { IconDoNotDisturbOnTotalSilenceOutlined as default } +export default IconDoNotDisturbOnTotalSilenceOutlined diff --git a/src/IconDoNotDisturbOnTotalSilenceOutlinedFilled.tsx b/src/IconDoNotDisturbOnTotalSilenceOutlinedFilled.tsx index b24b4540b..79fc4e81f 100644 --- a/src/IconDoNotDisturbOnTotalSilenceOutlinedFilled.tsx +++ b/src/IconDoNotDisturbOnTotalSilenceOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconDoNotDisturbOnTotalSilenceOutlinedFilled: React.FC = ({ ) -export { IconDoNotDisturbOnTotalSilenceOutlinedFilled as default } +export default IconDoNotDisturbOnTotalSilenceOutlinedFilled diff --git a/src/IconDoNotDisturbOnTotalSilenceRounded.tsx b/src/IconDoNotDisturbOnTotalSilenceRounded.tsx index 6dd33db7b..a405eb81d 100644 --- a/src/IconDoNotDisturbOnTotalSilenceRounded.tsx +++ b/src/IconDoNotDisturbOnTotalSilenceRounded.tsx @@ -10,4 +10,4 @@ const IconDoNotDisturbOnTotalSilenceRounded: React.FC = ({ ) -export { IconDoNotDisturbOnTotalSilenceRounded as default } +export default IconDoNotDisturbOnTotalSilenceRounded diff --git a/src/IconDoNotDisturbOnTotalSilenceRoundedFilled.tsx b/src/IconDoNotDisturbOnTotalSilenceRoundedFilled.tsx index c5b54b75d..54980ee2c 100644 --- a/src/IconDoNotDisturbOnTotalSilenceRoundedFilled.tsx +++ b/src/IconDoNotDisturbOnTotalSilenceRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconDoNotDisturbOnTotalSilenceRoundedFilled: React.FC = ({ ) -export { IconDoNotDisturbOnTotalSilenceRoundedFilled as default } +export default IconDoNotDisturbOnTotalSilenceRoundedFilled diff --git a/src/IconDoNotDisturbOnTotalSilenceSharp.tsx b/src/IconDoNotDisturbOnTotalSilenceSharp.tsx index 9f36e29a7..e16d9fe61 100644 --- a/src/IconDoNotDisturbOnTotalSilenceSharp.tsx +++ b/src/IconDoNotDisturbOnTotalSilenceSharp.tsx @@ -10,4 +10,4 @@ const IconDoNotDisturbOnTotalSilenceSharp: React.FC = ({ ) -export { IconDoNotDisturbOnTotalSilenceSharp as default } +export default IconDoNotDisturbOnTotalSilenceSharp diff --git a/src/IconDoNotDisturbOnTotalSilenceSharpFilled.tsx b/src/IconDoNotDisturbOnTotalSilenceSharpFilled.tsx index 7380fb444..114b1c952 100644 --- a/src/IconDoNotDisturbOnTotalSilenceSharpFilled.tsx +++ b/src/IconDoNotDisturbOnTotalSilenceSharpFilled.tsx @@ -10,4 +10,4 @@ const IconDoNotDisturbOnTotalSilenceSharpFilled: React.FC = ({ ) -export { IconDoNotDisturbOnTotalSilenceSharpFilled as default } +export default IconDoNotDisturbOnTotalSilenceSharpFilled diff --git a/src/IconDoNotStepOutlined.tsx b/src/IconDoNotStepOutlined.tsx index fdeea4436..78f635d01 100644 --- a/src/IconDoNotStepOutlined.tsx +++ b/src/IconDoNotStepOutlined.tsx @@ -8,4 +8,4 @@ const IconDoNotStepOutlined: React.FC = ({ ...props }) => ( ) -export { IconDoNotStepOutlined as default } +export default IconDoNotStepOutlined diff --git a/src/IconDoNotStepOutlinedFilled.tsx b/src/IconDoNotStepOutlinedFilled.tsx index 28a60177f..16b16239e 100644 --- a/src/IconDoNotStepOutlinedFilled.tsx +++ b/src/IconDoNotStepOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconDoNotStepOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconDoNotStepOutlinedFilled as default } +export default IconDoNotStepOutlinedFilled diff --git a/src/IconDoNotStepRounded.tsx b/src/IconDoNotStepRounded.tsx index 36eb8f960..85a7d71e6 100644 --- a/src/IconDoNotStepRounded.tsx +++ b/src/IconDoNotStepRounded.tsx @@ -8,4 +8,4 @@ const IconDoNotStepRounded: React.FC = ({ ...props }) => ( ) -export { IconDoNotStepRounded as default } +export default IconDoNotStepRounded diff --git a/src/IconDoNotStepRoundedFilled.tsx b/src/IconDoNotStepRoundedFilled.tsx index b5c2d0a43..6675a9756 100644 --- a/src/IconDoNotStepRoundedFilled.tsx +++ b/src/IconDoNotStepRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconDoNotStepRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconDoNotStepRoundedFilled as default } +export default IconDoNotStepRoundedFilled diff --git a/src/IconDoNotStepSharp.tsx b/src/IconDoNotStepSharp.tsx index b186b3668..10e8584f6 100644 --- a/src/IconDoNotStepSharp.tsx +++ b/src/IconDoNotStepSharp.tsx @@ -8,4 +8,4 @@ const IconDoNotStepSharp: React.FC = ({ ...props }) => ( ) -export { IconDoNotStepSharp as default } +export default IconDoNotStepSharp diff --git a/src/IconDoNotStepSharpFilled.tsx b/src/IconDoNotStepSharpFilled.tsx index 81deeb8c5..033740ed2 100644 --- a/src/IconDoNotStepSharpFilled.tsx +++ b/src/IconDoNotStepSharpFilled.tsx @@ -8,4 +8,4 @@ const IconDoNotStepSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconDoNotStepSharpFilled as default } +export default IconDoNotStepSharpFilled diff --git a/src/IconDoNotTouchOutlined.tsx b/src/IconDoNotTouchOutlined.tsx index 608081b7c..9a9d5a5c1 100644 --- a/src/IconDoNotTouchOutlined.tsx +++ b/src/IconDoNotTouchOutlined.tsx @@ -8,4 +8,4 @@ const IconDoNotTouchOutlined: React.FC = ({ ...props }) => ( ) -export { IconDoNotTouchOutlined as default } +export default IconDoNotTouchOutlined diff --git a/src/IconDoNotTouchOutlinedFilled.tsx b/src/IconDoNotTouchOutlinedFilled.tsx index 61a45b7cc..3b577d900 100644 --- a/src/IconDoNotTouchOutlinedFilled.tsx +++ b/src/IconDoNotTouchOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconDoNotTouchOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconDoNotTouchOutlinedFilled as default } +export default IconDoNotTouchOutlinedFilled diff --git a/src/IconDoNotTouchRounded.tsx b/src/IconDoNotTouchRounded.tsx index 52a013a2b..f81c57af7 100644 --- a/src/IconDoNotTouchRounded.tsx +++ b/src/IconDoNotTouchRounded.tsx @@ -8,4 +8,4 @@ const IconDoNotTouchRounded: React.FC = ({ ...props }) => ( ) -export { IconDoNotTouchRounded as default } +export default IconDoNotTouchRounded diff --git a/src/IconDoNotTouchRoundedFilled.tsx b/src/IconDoNotTouchRoundedFilled.tsx index 609a79c02..7acf3e305 100644 --- a/src/IconDoNotTouchRoundedFilled.tsx +++ b/src/IconDoNotTouchRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconDoNotTouchRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconDoNotTouchRoundedFilled as default } +export default IconDoNotTouchRoundedFilled diff --git a/src/IconDoNotTouchSharp.tsx b/src/IconDoNotTouchSharp.tsx index a2a836618..096f2b3bb 100644 --- a/src/IconDoNotTouchSharp.tsx +++ b/src/IconDoNotTouchSharp.tsx @@ -8,4 +8,4 @@ const IconDoNotTouchSharp: React.FC = ({ ...props }) => ( ) -export { IconDoNotTouchSharp as default } +export default IconDoNotTouchSharp diff --git a/src/IconDoNotTouchSharpFilled.tsx b/src/IconDoNotTouchSharpFilled.tsx index b29cb4efe..bee766d54 100644 --- a/src/IconDoNotTouchSharpFilled.tsx +++ b/src/IconDoNotTouchSharpFilled.tsx @@ -8,4 +8,4 @@ const IconDoNotTouchSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconDoNotTouchSharpFilled as default } +export default IconDoNotTouchSharpFilled diff --git a/src/IconDockOutlined.tsx b/src/IconDockOutlined.tsx index 3892c604f..01e952cf4 100644 --- a/src/IconDockOutlined.tsx +++ b/src/IconDockOutlined.tsx @@ -8,4 +8,4 @@ const IconDockOutlined: React.FC = ({ ...props }) => ( ) -export { IconDockOutlined as default } +export default IconDockOutlined diff --git a/src/IconDockOutlinedFilled.tsx b/src/IconDockOutlinedFilled.tsx index 4594ea684..83c776aee 100644 --- a/src/IconDockOutlinedFilled.tsx +++ b/src/IconDockOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconDockOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconDockOutlinedFilled as default } +export default IconDockOutlinedFilled diff --git a/src/IconDockRounded.tsx b/src/IconDockRounded.tsx index 9eab455ad..2b162756f 100644 --- a/src/IconDockRounded.tsx +++ b/src/IconDockRounded.tsx @@ -8,4 +8,4 @@ const IconDockRounded: React.FC = ({ ...props }) => ( ) -export { IconDockRounded as default } +export default IconDockRounded diff --git a/src/IconDockRoundedFilled.tsx b/src/IconDockRoundedFilled.tsx index a4c094954..7c14a496e 100644 --- a/src/IconDockRoundedFilled.tsx +++ b/src/IconDockRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconDockRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconDockRoundedFilled as default } +export default IconDockRoundedFilled diff --git a/src/IconDockSharp.tsx b/src/IconDockSharp.tsx index 345a7c3ca..770210724 100644 --- a/src/IconDockSharp.tsx +++ b/src/IconDockSharp.tsx @@ -8,4 +8,4 @@ const IconDockSharp: React.FC = ({ ...props }) => ( ) -export { IconDockSharp as default } +export default IconDockSharp diff --git a/src/IconDockSharpFilled.tsx b/src/IconDockSharpFilled.tsx index 42a0c6509..f319ac5eb 100644 --- a/src/IconDockSharpFilled.tsx +++ b/src/IconDockSharpFilled.tsx @@ -8,4 +8,4 @@ const IconDockSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconDockSharpFilled as default } +export default IconDockSharpFilled diff --git a/src/IconDockToBottomOutlined.tsx b/src/IconDockToBottomOutlined.tsx index eeefb869a..99f0d865e 100644 --- a/src/IconDockToBottomOutlined.tsx +++ b/src/IconDockToBottomOutlined.tsx @@ -8,4 +8,4 @@ const IconDockToBottomOutlined: React.FC = ({ ...props }) => ( ) -export { IconDockToBottomOutlined as default } +export default IconDockToBottomOutlined diff --git a/src/IconDockToBottomOutlinedFilled.tsx b/src/IconDockToBottomOutlinedFilled.tsx index 9f0172806..5c9fdab09 100644 --- a/src/IconDockToBottomOutlinedFilled.tsx +++ b/src/IconDockToBottomOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconDockToBottomOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconDockToBottomOutlinedFilled as default } +export default IconDockToBottomOutlinedFilled diff --git a/src/IconDockToBottomRounded.tsx b/src/IconDockToBottomRounded.tsx index cbea85da5..6e3c854be 100644 --- a/src/IconDockToBottomRounded.tsx +++ b/src/IconDockToBottomRounded.tsx @@ -8,4 +8,4 @@ const IconDockToBottomRounded: React.FC = ({ ...props }) => ( ) -export { IconDockToBottomRounded as default } +export default IconDockToBottomRounded diff --git a/src/IconDockToBottomRoundedFilled.tsx b/src/IconDockToBottomRoundedFilled.tsx index 7eaf229a0..1304b907d 100644 --- a/src/IconDockToBottomRoundedFilled.tsx +++ b/src/IconDockToBottomRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconDockToBottomRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconDockToBottomRoundedFilled as default } +export default IconDockToBottomRoundedFilled diff --git a/src/IconDockToBottomSharp.tsx b/src/IconDockToBottomSharp.tsx index ea3d7feb9..4a00bb97d 100644 --- a/src/IconDockToBottomSharp.tsx +++ b/src/IconDockToBottomSharp.tsx @@ -8,4 +8,4 @@ const IconDockToBottomSharp: React.FC = ({ ...props }) => ( ) -export { IconDockToBottomSharp as default } +export default IconDockToBottomSharp diff --git a/src/IconDockToBottomSharpFilled.tsx b/src/IconDockToBottomSharpFilled.tsx index 12f409428..7b161f9a1 100644 --- a/src/IconDockToBottomSharpFilled.tsx +++ b/src/IconDockToBottomSharpFilled.tsx @@ -8,4 +8,4 @@ const IconDockToBottomSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconDockToBottomSharpFilled as default } +export default IconDockToBottomSharpFilled diff --git a/src/IconDockToLeftOutlined.tsx b/src/IconDockToLeftOutlined.tsx index ae993c20a..1ee66dd20 100644 --- a/src/IconDockToLeftOutlined.tsx +++ b/src/IconDockToLeftOutlined.tsx @@ -8,4 +8,4 @@ const IconDockToLeftOutlined: React.FC = ({ ...props }) => ( ) -export { IconDockToLeftOutlined as default } +export default IconDockToLeftOutlined diff --git a/src/IconDockToLeftOutlinedFilled.tsx b/src/IconDockToLeftOutlinedFilled.tsx index 337bbe40e..e27f734d5 100644 --- a/src/IconDockToLeftOutlinedFilled.tsx +++ b/src/IconDockToLeftOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconDockToLeftOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconDockToLeftOutlinedFilled as default } +export default IconDockToLeftOutlinedFilled diff --git a/src/IconDockToLeftRounded.tsx b/src/IconDockToLeftRounded.tsx index 9e5f15fd2..07c40402e 100644 --- a/src/IconDockToLeftRounded.tsx +++ b/src/IconDockToLeftRounded.tsx @@ -8,4 +8,4 @@ const IconDockToLeftRounded: React.FC = ({ ...props }) => ( ) -export { IconDockToLeftRounded as default } +export default IconDockToLeftRounded diff --git a/src/IconDockToLeftRoundedFilled.tsx b/src/IconDockToLeftRoundedFilled.tsx index 503a236a8..26909ade1 100644 --- a/src/IconDockToLeftRoundedFilled.tsx +++ b/src/IconDockToLeftRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconDockToLeftRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconDockToLeftRoundedFilled as default } +export default IconDockToLeftRoundedFilled diff --git a/src/IconDockToLeftSharp.tsx b/src/IconDockToLeftSharp.tsx index 3d0f882ca..7d829d8c2 100644 --- a/src/IconDockToLeftSharp.tsx +++ b/src/IconDockToLeftSharp.tsx @@ -8,4 +8,4 @@ const IconDockToLeftSharp: React.FC = ({ ...props }) => ( ) -export { IconDockToLeftSharp as default } +export default IconDockToLeftSharp diff --git a/src/IconDockToLeftSharpFilled.tsx b/src/IconDockToLeftSharpFilled.tsx index f9c634b73..6358f0bff 100644 --- a/src/IconDockToLeftSharpFilled.tsx +++ b/src/IconDockToLeftSharpFilled.tsx @@ -8,4 +8,4 @@ const IconDockToLeftSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconDockToLeftSharpFilled as default } +export default IconDockToLeftSharpFilled diff --git a/src/IconDockToRightOutlined.tsx b/src/IconDockToRightOutlined.tsx index 6db0f835a..22eabf8ee 100644 --- a/src/IconDockToRightOutlined.tsx +++ b/src/IconDockToRightOutlined.tsx @@ -8,4 +8,4 @@ const IconDockToRightOutlined: React.FC = ({ ...props }) => ( ) -export { IconDockToRightOutlined as default } +export default IconDockToRightOutlined diff --git a/src/IconDockToRightOutlinedFilled.tsx b/src/IconDockToRightOutlinedFilled.tsx index 02c5f994a..bbc4880a2 100644 --- a/src/IconDockToRightOutlinedFilled.tsx +++ b/src/IconDockToRightOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconDockToRightOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconDockToRightOutlinedFilled as default } +export default IconDockToRightOutlinedFilled diff --git a/src/IconDockToRightRounded.tsx b/src/IconDockToRightRounded.tsx index f03065b8d..10d8fb3bc 100644 --- a/src/IconDockToRightRounded.tsx +++ b/src/IconDockToRightRounded.tsx @@ -8,4 +8,4 @@ const IconDockToRightRounded: React.FC = ({ ...props }) => ( ) -export { IconDockToRightRounded as default } +export default IconDockToRightRounded diff --git a/src/IconDockToRightRoundedFilled.tsx b/src/IconDockToRightRoundedFilled.tsx index 5a8174a5e..56a11eb65 100644 --- a/src/IconDockToRightRoundedFilled.tsx +++ b/src/IconDockToRightRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconDockToRightRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconDockToRightRoundedFilled as default } +export default IconDockToRightRoundedFilled diff --git a/src/IconDockToRightSharp.tsx b/src/IconDockToRightSharp.tsx index be53b4203..9869e5edf 100644 --- a/src/IconDockToRightSharp.tsx +++ b/src/IconDockToRightSharp.tsx @@ -8,4 +8,4 @@ const IconDockToRightSharp: React.FC = ({ ...props }) => ( ) -export { IconDockToRightSharp as default } +export default IconDockToRightSharp diff --git a/src/IconDockToRightSharpFilled.tsx b/src/IconDockToRightSharpFilled.tsx index e995ed447..c29cded58 100644 --- a/src/IconDockToRightSharpFilled.tsx +++ b/src/IconDockToRightSharpFilled.tsx @@ -8,4 +8,4 @@ const IconDockToRightSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconDockToRightSharpFilled as default } +export default IconDockToRightSharpFilled diff --git a/src/IconDocsAddOnOutlined.tsx b/src/IconDocsAddOnOutlined.tsx index 3f623581a..a1f5a8963 100644 --- a/src/IconDocsAddOnOutlined.tsx +++ b/src/IconDocsAddOnOutlined.tsx @@ -8,4 +8,4 @@ const IconDocsAddOnOutlined: React.FC = ({ ...props }) => ( ) -export { IconDocsAddOnOutlined as default } +export default IconDocsAddOnOutlined diff --git a/src/IconDocsAddOnOutlinedFilled.tsx b/src/IconDocsAddOnOutlinedFilled.tsx index 311ccebd1..9e9e8e595 100644 --- a/src/IconDocsAddOnOutlinedFilled.tsx +++ b/src/IconDocsAddOnOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconDocsAddOnOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconDocsAddOnOutlinedFilled as default } +export default IconDocsAddOnOutlinedFilled diff --git a/src/IconDocsAddOnRounded.tsx b/src/IconDocsAddOnRounded.tsx index 72791021d..aa35d2388 100644 --- a/src/IconDocsAddOnRounded.tsx +++ b/src/IconDocsAddOnRounded.tsx @@ -8,4 +8,4 @@ const IconDocsAddOnRounded: React.FC = ({ ...props }) => ( ) -export { IconDocsAddOnRounded as default } +export default IconDocsAddOnRounded diff --git a/src/IconDocsAddOnRoundedFilled.tsx b/src/IconDocsAddOnRoundedFilled.tsx index d519d8aaf..f5bc1201f 100644 --- a/src/IconDocsAddOnRoundedFilled.tsx +++ b/src/IconDocsAddOnRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconDocsAddOnRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconDocsAddOnRoundedFilled as default } +export default IconDocsAddOnRoundedFilled diff --git a/src/IconDocsAddOnSharp.tsx b/src/IconDocsAddOnSharp.tsx index 3560feccb..ace3e74dd 100644 --- a/src/IconDocsAddOnSharp.tsx +++ b/src/IconDocsAddOnSharp.tsx @@ -8,4 +8,4 @@ const IconDocsAddOnSharp: React.FC = ({ ...props }) => ( ) -export { IconDocsAddOnSharp as default } +export default IconDocsAddOnSharp diff --git a/src/IconDocsAddOnSharpFilled.tsx b/src/IconDocsAddOnSharpFilled.tsx index b2d8588a9..52c9bc499 100644 --- a/src/IconDocsAddOnSharpFilled.tsx +++ b/src/IconDocsAddOnSharpFilled.tsx @@ -8,4 +8,4 @@ const IconDocsAddOnSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconDocsAddOnSharpFilled as default } +export default IconDocsAddOnSharpFilled diff --git a/src/IconDocsAppsScriptOutlined.tsx b/src/IconDocsAppsScriptOutlined.tsx index 2b7c26870..d3a79abc5 100644 --- a/src/IconDocsAppsScriptOutlined.tsx +++ b/src/IconDocsAppsScriptOutlined.tsx @@ -8,4 +8,4 @@ const IconDocsAppsScriptOutlined: React.FC = ({ ...props }) => ( ) -export { IconDocsAppsScriptOutlined as default } +export default IconDocsAppsScriptOutlined diff --git a/src/IconDocsAppsScriptOutlinedFilled.tsx b/src/IconDocsAppsScriptOutlinedFilled.tsx index fb8005776..aed386aa5 100644 --- a/src/IconDocsAppsScriptOutlinedFilled.tsx +++ b/src/IconDocsAppsScriptOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconDocsAppsScriptOutlinedFilled: React.FC = ({ ) -export { IconDocsAppsScriptOutlinedFilled as default } +export default IconDocsAppsScriptOutlinedFilled diff --git a/src/IconDocsAppsScriptRounded.tsx b/src/IconDocsAppsScriptRounded.tsx index 9f72c7aea..a900851d1 100644 --- a/src/IconDocsAppsScriptRounded.tsx +++ b/src/IconDocsAppsScriptRounded.tsx @@ -8,4 +8,4 @@ const IconDocsAppsScriptRounded: React.FC = ({ ...props }) => ( ) -export { IconDocsAppsScriptRounded as default } +export default IconDocsAppsScriptRounded diff --git a/src/IconDocsAppsScriptRoundedFilled.tsx b/src/IconDocsAppsScriptRoundedFilled.tsx index fed8ec664..4050431f6 100644 --- a/src/IconDocsAppsScriptRoundedFilled.tsx +++ b/src/IconDocsAppsScriptRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconDocsAppsScriptRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconDocsAppsScriptRoundedFilled as default } +export default IconDocsAppsScriptRoundedFilled diff --git a/src/IconDocsAppsScriptSharp.tsx b/src/IconDocsAppsScriptSharp.tsx index 9426e1514..3033af7bd 100644 --- a/src/IconDocsAppsScriptSharp.tsx +++ b/src/IconDocsAppsScriptSharp.tsx @@ -8,4 +8,4 @@ const IconDocsAppsScriptSharp: React.FC = ({ ...props }) => ( ) -export { IconDocsAppsScriptSharp as default } +export default IconDocsAppsScriptSharp diff --git a/src/IconDocsAppsScriptSharpFilled.tsx b/src/IconDocsAppsScriptSharpFilled.tsx index 10a5978d6..626eabadd 100644 --- a/src/IconDocsAppsScriptSharpFilled.tsx +++ b/src/IconDocsAppsScriptSharpFilled.tsx @@ -8,4 +8,4 @@ const IconDocsAppsScriptSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconDocsAppsScriptSharpFilled as default } +export default IconDocsAppsScriptSharpFilled diff --git a/src/IconDocumentScannerOutlined.tsx b/src/IconDocumentScannerOutlined.tsx index d3ad4f47e..7a3905ca1 100644 --- a/src/IconDocumentScannerOutlined.tsx +++ b/src/IconDocumentScannerOutlined.tsx @@ -8,4 +8,4 @@ const IconDocumentScannerOutlined: React.FC = ({ ...props }) => ( ) -export { IconDocumentScannerOutlined as default } +export default IconDocumentScannerOutlined diff --git a/src/IconDocumentScannerOutlinedFilled.tsx b/src/IconDocumentScannerOutlinedFilled.tsx index 18a81a11e..193319ae2 100644 --- a/src/IconDocumentScannerOutlinedFilled.tsx +++ b/src/IconDocumentScannerOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconDocumentScannerOutlinedFilled: React.FC = ({ ) -export { IconDocumentScannerOutlinedFilled as default } +export default IconDocumentScannerOutlinedFilled diff --git a/src/IconDocumentScannerRounded.tsx b/src/IconDocumentScannerRounded.tsx index c876dcf5d..215aeb145 100644 --- a/src/IconDocumentScannerRounded.tsx +++ b/src/IconDocumentScannerRounded.tsx @@ -8,4 +8,4 @@ const IconDocumentScannerRounded: React.FC = ({ ...props }) => ( ) -export { IconDocumentScannerRounded as default } +export default IconDocumentScannerRounded diff --git a/src/IconDocumentScannerRoundedFilled.tsx b/src/IconDocumentScannerRoundedFilled.tsx index 78bcba8ea..8668822aa 100644 --- a/src/IconDocumentScannerRoundedFilled.tsx +++ b/src/IconDocumentScannerRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconDocumentScannerRoundedFilled: React.FC = ({ ) -export { IconDocumentScannerRoundedFilled as default } +export default IconDocumentScannerRoundedFilled diff --git a/src/IconDocumentScannerSharp.tsx b/src/IconDocumentScannerSharp.tsx index 7019956e2..ab518c83a 100644 --- a/src/IconDocumentScannerSharp.tsx +++ b/src/IconDocumentScannerSharp.tsx @@ -8,4 +8,4 @@ const IconDocumentScannerSharp: React.FC = ({ ...props }) => ( ) -export { IconDocumentScannerSharp as default } +export default IconDocumentScannerSharp diff --git a/src/IconDocumentScannerSharpFilled.tsx b/src/IconDocumentScannerSharpFilled.tsx index 717ad2b7e..502e2b2dd 100644 --- a/src/IconDocumentScannerSharpFilled.tsx +++ b/src/IconDocumentScannerSharpFilled.tsx @@ -8,4 +8,4 @@ const IconDocumentScannerSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconDocumentScannerSharpFilled as default } +export default IconDocumentScannerSharpFilled diff --git a/src/IconDomainAddOutlined.tsx b/src/IconDomainAddOutlined.tsx index 5b1b8269b..ffac1f8b1 100644 --- a/src/IconDomainAddOutlined.tsx +++ b/src/IconDomainAddOutlined.tsx @@ -8,4 +8,4 @@ const IconDomainAddOutlined: React.FC = ({ ...props }) => ( ) -export { IconDomainAddOutlined as default } +export default IconDomainAddOutlined diff --git a/src/IconDomainAddOutlinedFilled.tsx b/src/IconDomainAddOutlinedFilled.tsx index adf14fe64..6761c4e23 100644 --- a/src/IconDomainAddOutlinedFilled.tsx +++ b/src/IconDomainAddOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconDomainAddOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconDomainAddOutlinedFilled as default } +export default IconDomainAddOutlinedFilled diff --git a/src/IconDomainAddRounded.tsx b/src/IconDomainAddRounded.tsx index de10e1dc3..e7a8cfa13 100644 --- a/src/IconDomainAddRounded.tsx +++ b/src/IconDomainAddRounded.tsx @@ -8,4 +8,4 @@ const IconDomainAddRounded: React.FC = ({ ...props }) => ( ) -export { IconDomainAddRounded as default } +export default IconDomainAddRounded diff --git a/src/IconDomainAddRoundedFilled.tsx b/src/IconDomainAddRoundedFilled.tsx index 2b7a50571..38ff40ec4 100644 --- a/src/IconDomainAddRoundedFilled.tsx +++ b/src/IconDomainAddRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconDomainAddRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconDomainAddRoundedFilled as default } +export default IconDomainAddRoundedFilled diff --git a/src/IconDomainAddSharp.tsx b/src/IconDomainAddSharp.tsx index a1b0d5f09..8543e4e87 100644 --- a/src/IconDomainAddSharp.tsx +++ b/src/IconDomainAddSharp.tsx @@ -8,4 +8,4 @@ const IconDomainAddSharp: React.FC = ({ ...props }) => ( ) -export { IconDomainAddSharp as default } +export default IconDomainAddSharp diff --git a/src/IconDomainAddSharpFilled.tsx b/src/IconDomainAddSharpFilled.tsx index 1edf677ae..f791b2084 100644 --- a/src/IconDomainAddSharpFilled.tsx +++ b/src/IconDomainAddSharpFilled.tsx @@ -8,4 +8,4 @@ const IconDomainAddSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconDomainAddSharpFilled as default } +export default IconDomainAddSharpFilled diff --git a/src/IconDomainDisabledOutlined.tsx b/src/IconDomainDisabledOutlined.tsx index a7e87c156..392c9ff59 100644 --- a/src/IconDomainDisabledOutlined.tsx +++ b/src/IconDomainDisabledOutlined.tsx @@ -8,4 +8,4 @@ const IconDomainDisabledOutlined: React.FC = ({ ...props }) => ( ) -export { IconDomainDisabledOutlined as default } +export default IconDomainDisabledOutlined diff --git a/src/IconDomainDisabledOutlinedFilled.tsx b/src/IconDomainDisabledOutlinedFilled.tsx index 91683a5a2..c4a852aef 100644 --- a/src/IconDomainDisabledOutlinedFilled.tsx +++ b/src/IconDomainDisabledOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconDomainDisabledOutlinedFilled: React.FC = ({ ) -export { IconDomainDisabledOutlinedFilled as default } +export default IconDomainDisabledOutlinedFilled diff --git a/src/IconDomainDisabledRounded.tsx b/src/IconDomainDisabledRounded.tsx index 87edd5c58..80c81cc94 100644 --- a/src/IconDomainDisabledRounded.tsx +++ b/src/IconDomainDisabledRounded.tsx @@ -8,4 +8,4 @@ const IconDomainDisabledRounded: React.FC = ({ ...props }) => ( ) -export { IconDomainDisabledRounded as default } +export default IconDomainDisabledRounded diff --git a/src/IconDomainDisabledRoundedFilled.tsx b/src/IconDomainDisabledRoundedFilled.tsx index 0ad169497..ee2f5f38c 100644 --- a/src/IconDomainDisabledRoundedFilled.tsx +++ b/src/IconDomainDisabledRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconDomainDisabledRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconDomainDisabledRoundedFilled as default } +export default IconDomainDisabledRoundedFilled diff --git a/src/IconDomainDisabledSharp.tsx b/src/IconDomainDisabledSharp.tsx index 1aab5f3bb..4b81c6645 100644 --- a/src/IconDomainDisabledSharp.tsx +++ b/src/IconDomainDisabledSharp.tsx @@ -8,4 +8,4 @@ const IconDomainDisabledSharp: React.FC = ({ ...props }) => ( ) -export { IconDomainDisabledSharp as default } +export default IconDomainDisabledSharp diff --git a/src/IconDomainDisabledSharpFilled.tsx b/src/IconDomainDisabledSharpFilled.tsx index 7f9889183..c7e28e6a1 100644 --- a/src/IconDomainDisabledSharpFilled.tsx +++ b/src/IconDomainDisabledSharpFilled.tsx @@ -8,4 +8,4 @@ const IconDomainDisabledSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconDomainDisabledSharpFilled as default } +export default IconDomainDisabledSharpFilled diff --git a/src/IconDomainOutlined.tsx b/src/IconDomainOutlined.tsx index f37c38124..8de4dd6e4 100644 --- a/src/IconDomainOutlined.tsx +++ b/src/IconDomainOutlined.tsx @@ -8,4 +8,4 @@ const IconDomainOutlined: React.FC = ({ ...props }) => ( ) -export { IconDomainOutlined as default } +export default IconDomainOutlined diff --git a/src/IconDomainOutlinedFilled.tsx b/src/IconDomainOutlinedFilled.tsx index a07fac9e4..f1a47b3db 100644 --- a/src/IconDomainOutlinedFilled.tsx +++ b/src/IconDomainOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconDomainOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconDomainOutlinedFilled as default } +export default IconDomainOutlinedFilled diff --git a/src/IconDomainRounded.tsx b/src/IconDomainRounded.tsx index b75b22d72..9b5465e78 100644 --- a/src/IconDomainRounded.tsx +++ b/src/IconDomainRounded.tsx @@ -8,4 +8,4 @@ const IconDomainRounded: React.FC = ({ ...props }) => ( ) -export { IconDomainRounded as default } +export default IconDomainRounded diff --git a/src/IconDomainRoundedFilled.tsx b/src/IconDomainRoundedFilled.tsx index af2182647..2f58153d8 100644 --- a/src/IconDomainRoundedFilled.tsx +++ b/src/IconDomainRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconDomainRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconDomainRoundedFilled as default } +export default IconDomainRoundedFilled diff --git a/src/IconDomainSharp.tsx b/src/IconDomainSharp.tsx index 23d9c3a1f..034192880 100644 --- a/src/IconDomainSharp.tsx +++ b/src/IconDomainSharp.tsx @@ -8,4 +8,4 @@ const IconDomainSharp: React.FC = ({ ...props }) => ( ) -export { IconDomainSharp as default } +export default IconDomainSharp diff --git a/src/IconDomainSharpFilled.tsx b/src/IconDomainSharpFilled.tsx index 74adf1b63..08f909ef4 100644 --- a/src/IconDomainSharpFilled.tsx +++ b/src/IconDomainSharpFilled.tsx @@ -8,4 +8,4 @@ const IconDomainSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconDomainSharpFilled as default } +export default IconDomainSharpFilled diff --git a/src/IconDomainVerificationOffOutlined.tsx b/src/IconDomainVerificationOffOutlined.tsx index 6a5c747dc..10d451c88 100644 --- a/src/IconDomainVerificationOffOutlined.tsx +++ b/src/IconDomainVerificationOffOutlined.tsx @@ -10,4 +10,4 @@ const IconDomainVerificationOffOutlined: React.FC = ({ ) -export { IconDomainVerificationOffOutlined as default } +export default IconDomainVerificationOffOutlined diff --git a/src/IconDomainVerificationOffOutlinedFilled.tsx b/src/IconDomainVerificationOffOutlinedFilled.tsx index e011af99d..7037e962f 100644 --- a/src/IconDomainVerificationOffOutlinedFilled.tsx +++ b/src/IconDomainVerificationOffOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconDomainVerificationOffOutlinedFilled: React.FC = ({ ) -export { IconDomainVerificationOffOutlinedFilled as default } +export default IconDomainVerificationOffOutlinedFilled diff --git a/src/IconDomainVerificationOffRounded.tsx b/src/IconDomainVerificationOffRounded.tsx index d991050e0..b37f86b7d 100644 --- a/src/IconDomainVerificationOffRounded.tsx +++ b/src/IconDomainVerificationOffRounded.tsx @@ -10,4 +10,4 @@ const IconDomainVerificationOffRounded: React.FC = ({ ) -export { IconDomainVerificationOffRounded as default } +export default IconDomainVerificationOffRounded diff --git a/src/IconDomainVerificationOffRoundedFilled.tsx b/src/IconDomainVerificationOffRoundedFilled.tsx index 1080af348..4cf282cd5 100644 --- a/src/IconDomainVerificationOffRoundedFilled.tsx +++ b/src/IconDomainVerificationOffRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconDomainVerificationOffRoundedFilled: React.FC = ({ ) -export { IconDomainVerificationOffRoundedFilled as default } +export default IconDomainVerificationOffRoundedFilled diff --git a/src/IconDomainVerificationOffSharp.tsx b/src/IconDomainVerificationOffSharp.tsx index a75cc2aaa..25e4fad89 100644 --- a/src/IconDomainVerificationOffSharp.tsx +++ b/src/IconDomainVerificationOffSharp.tsx @@ -8,4 +8,4 @@ const IconDomainVerificationOffSharp: React.FC = ({ ...props }) => ( ) -export { IconDomainVerificationOffSharp as default } +export default IconDomainVerificationOffSharp diff --git a/src/IconDomainVerificationOffSharpFilled.tsx b/src/IconDomainVerificationOffSharpFilled.tsx index fb0a6f221..b8c9e5c85 100644 --- a/src/IconDomainVerificationOffSharpFilled.tsx +++ b/src/IconDomainVerificationOffSharpFilled.tsx @@ -10,4 +10,4 @@ const IconDomainVerificationOffSharpFilled: React.FC = ({ ) -export { IconDomainVerificationOffSharpFilled as default } +export default IconDomainVerificationOffSharpFilled diff --git a/src/IconDomainVerificationOutlined.tsx b/src/IconDomainVerificationOutlined.tsx index 450450083..b9dac8051 100644 --- a/src/IconDomainVerificationOutlined.tsx +++ b/src/IconDomainVerificationOutlined.tsx @@ -8,4 +8,4 @@ const IconDomainVerificationOutlined: React.FC = ({ ...props }) => ( ) -export { IconDomainVerificationOutlined as default } +export default IconDomainVerificationOutlined diff --git a/src/IconDomainVerificationOutlinedFilled.tsx b/src/IconDomainVerificationOutlinedFilled.tsx index 50dfa6c87..ec8d3d850 100644 --- a/src/IconDomainVerificationOutlinedFilled.tsx +++ b/src/IconDomainVerificationOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconDomainVerificationOutlinedFilled: React.FC = ({ ) -export { IconDomainVerificationOutlinedFilled as default } +export default IconDomainVerificationOutlinedFilled diff --git a/src/IconDomainVerificationRounded.tsx b/src/IconDomainVerificationRounded.tsx index f5da0326d..06cd128a5 100644 --- a/src/IconDomainVerificationRounded.tsx +++ b/src/IconDomainVerificationRounded.tsx @@ -8,4 +8,4 @@ const IconDomainVerificationRounded: React.FC = ({ ...props }) => ( ) -export { IconDomainVerificationRounded as default } +export default IconDomainVerificationRounded diff --git a/src/IconDomainVerificationRoundedFilled.tsx b/src/IconDomainVerificationRoundedFilled.tsx index 428e122ba..6e5f2172c 100644 --- a/src/IconDomainVerificationRoundedFilled.tsx +++ b/src/IconDomainVerificationRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconDomainVerificationRoundedFilled: React.FC = ({ ) -export { IconDomainVerificationRoundedFilled as default } +export default IconDomainVerificationRoundedFilled diff --git a/src/IconDomainVerificationSharp.tsx b/src/IconDomainVerificationSharp.tsx index f60911d83..b37f34314 100644 --- a/src/IconDomainVerificationSharp.tsx +++ b/src/IconDomainVerificationSharp.tsx @@ -8,4 +8,4 @@ const IconDomainVerificationSharp: React.FC = ({ ...props }) => ( ) -export { IconDomainVerificationSharp as default } +export default IconDomainVerificationSharp diff --git a/src/IconDomainVerificationSharpFilled.tsx b/src/IconDomainVerificationSharpFilled.tsx index 6d1264ce4..e7a4016ab 100644 --- a/src/IconDomainVerificationSharpFilled.tsx +++ b/src/IconDomainVerificationSharpFilled.tsx @@ -10,4 +10,4 @@ const IconDomainVerificationSharpFilled: React.FC = ({ ) -export { IconDomainVerificationSharpFilled as default } +export default IconDomainVerificationSharpFilled diff --git a/src/IconDominoMaskOutlined.tsx b/src/IconDominoMaskOutlined.tsx index 824b9e990..88e271cf0 100644 --- a/src/IconDominoMaskOutlined.tsx +++ b/src/IconDominoMaskOutlined.tsx @@ -8,4 +8,4 @@ const IconDominoMaskOutlined: React.FC = ({ ...props }) => ( ) -export { IconDominoMaskOutlined as default } +export default IconDominoMaskOutlined diff --git a/src/IconDominoMaskOutlinedFilled.tsx b/src/IconDominoMaskOutlinedFilled.tsx index a3ed7b656..70cb44148 100644 --- a/src/IconDominoMaskOutlinedFilled.tsx +++ b/src/IconDominoMaskOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconDominoMaskOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconDominoMaskOutlinedFilled as default } +export default IconDominoMaskOutlinedFilled diff --git a/src/IconDominoMaskRounded.tsx b/src/IconDominoMaskRounded.tsx index 0d1d7b90b..e040f2d94 100644 --- a/src/IconDominoMaskRounded.tsx +++ b/src/IconDominoMaskRounded.tsx @@ -8,4 +8,4 @@ const IconDominoMaskRounded: React.FC = ({ ...props }) => ( ) -export { IconDominoMaskRounded as default } +export default IconDominoMaskRounded diff --git a/src/IconDominoMaskRoundedFilled.tsx b/src/IconDominoMaskRoundedFilled.tsx index 8ab3c92d6..0e04487a3 100644 --- a/src/IconDominoMaskRoundedFilled.tsx +++ b/src/IconDominoMaskRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconDominoMaskRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconDominoMaskRoundedFilled as default } +export default IconDominoMaskRoundedFilled diff --git a/src/IconDominoMaskSharp.tsx b/src/IconDominoMaskSharp.tsx index 0213d816e..bc8fb43a0 100644 --- a/src/IconDominoMaskSharp.tsx +++ b/src/IconDominoMaskSharp.tsx @@ -8,4 +8,4 @@ const IconDominoMaskSharp: React.FC = ({ ...props }) => ( ) -export { IconDominoMaskSharp as default } +export default IconDominoMaskSharp diff --git a/src/IconDominoMaskSharpFilled.tsx b/src/IconDominoMaskSharpFilled.tsx index 100ab09be..21ba854c5 100644 --- a/src/IconDominoMaskSharpFilled.tsx +++ b/src/IconDominoMaskSharpFilled.tsx @@ -8,4 +8,4 @@ const IconDominoMaskSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconDominoMaskSharpFilled as default } +export default IconDominoMaskSharpFilled diff --git a/src/IconDoneAllOutlined.tsx b/src/IconDoneAllOutlined.tsx index d3d4a5131..9cb16af8b 100644 --- a/src/IconDoneAllOutlined.tsx +++ b/src/IconDoneAllOutlined.tsx @@ -8,4 +8,4 @@ const IconDoneAllOutlined: React.FC = ({ ...props }) => ( ) -export { IconDoneAllOutlined as default } +export default IconDoneAllOutlined diff --git a/src/IconDoneAllOutlinedFilled.tsx b/src/IconDoneAllOutlinedFilled.tsx index c1aa45a44..f03aad0f4 100644 --- a/src/IconDoneAllOutlinedFilled.tsx +++ b/src/IconDoneAllOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconDoneAllOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconDoneAllOutlinedFilled as default } +export default IconDoneAllOutlinedFilled diff --git a/src/IconDoneAllRounded.tsx b/src/IconDoneAllRounded.tsx index 4377dee5f..c4e49ce85 100644 --- a/src/IconDoneAllRounded.tsx +++ b/src/IconDoneAllRounded.tsx @@ -8,4 +8,4 @@ const IconDoneAllRounded: React.FC = ({ ...props }) => ( ) -export { IconDoneAllRounded as default } +export default IconDoneAllRounded diff --git a/src/IconDoneAllRoundedFilled.tsx b/src/IconDoneAllRoundedFilled.tsx index a76d0ab76..2a7832eed 100644 --- a/src/IconDoneAllRoundedFilled.tsx +++ b/src/IconDoneAllRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconDoneAllRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconDoneAllRoundedFilled as default } +export default IconDoneAllRoundedFilled diff --git a/src/IconDoneAllSharp.tsx b/src/IconDoneAllSharp.tsx index 95e4da49b..6bf5243ed 100644 --- a/src/IconDoneAllSharp.tsx +++ b/src/IconDoneAllSharp.tsx @@ -8,4 +8,4 @@ const IconDoneAllSharp: React.FC = ({ ...props }) => ( ) -export { IconDoneAllSharp as default } +export default IconDoneAllSharp diff --git a/src/IconDoneAllSharpFilled.tsx b/src/IconDoneAllSharpFilled.tsx index 852fb77eb..1b5dcaca9 100644 --- a/src/IconDoneAllSharpFilled.tsx +++ b/src/IconDoneAllSharpFilled.tsx @@ -8,4 +8,4 @@ const IconDoneAllSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconDoneAllSharpFilled as default } +export default IconDoneAllSharpFilled diff --git a/src/IconDoneOutlineOutlined.tsx b/src/IconDoneOutlineOutlined.tsx index 2bf04a308..b273e688b 100644 --- a/src/IconDoneOutlineOutlined.tsx +++ b/src/IconDoneOutlineOutlined.tsx @@ -8,4 +8,4 @@ const IconDoneOutlineOutlined: React.FC = ({ ...props }) => ( ) -export { IconDoneOutlineOutlined as default } +export default IconDoneOutlineOutlined diff --git a/src/IconDoneOutlineOutlinedFilled.tsx b/src/IconDoneOutlineOutlinedFilled.tsx index 7945e129f..408fc2bd5 100644 --- a/src/IconDoneOutlineOutlinedFilled.tsx +++ b/src/IconDoneOutlineOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconDoneOutlineOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconDoneOutlineOutlinedFilled as default } +export default IconDoneOutlineOutlinedFilled diff --git a/src/IconDoneOutlineRounded.tsx b/src/IconDoneOutlineRounded.tsx index 5bbc62b7a..8d0618532 100644 --- a/src/IconDoneOutlineRounded.tsx +++ b/src/IconDoneOutlineRounded.tsx @@ -8,4 +8,4 @@ const IconDoneOutlineRounded: React.FC = ({ ...props }) => ( ) -export { IconDoneOutlineRounded as default } +export default IconDoneOutlineRounded diff --git a/src/IconDoneOutlineRoundedFilled.tsx b/src/IconDoneOutlineRoundedFilled.tsx index 6627cf1ee..7ddd1c404 100644 --- a/src/IconDoneOutlineRoundedFilled.tsx +++ b/src/IconDoneOutlineRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconDoneOutlineRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconDoneOutlineRoundedFilled as default } +export default IconDoneOutlineRoundedFilled diff --git a/src/IconDoneOutlineSharp.tsx b/src/IconDoneOutlineSharp.tsx index 8cee18dbb..c506d65bd 100644 --- a/src/IconDoneOutlineSharp.tsx +++ b/src/IconDoneOutlineSharp.tsx @@ -8,4 +8,4 @@ const IconDoneOutlineSharp: React.FC = ({ ...props }) => ( ) -export { IconDoneOutlineSharp as default } +export default IconDoneOutlineSharp diff --git a/src/IconDoneOutlineSharpFilled.tsx b/src/IconDoneOutlineSharpFilled.tsx index 6d381b4b5..152307861 100644 --- a/src/IconDoneOutlineSharpFilled.tsx +++ b/src/IconDoneOutlineSharpFilled.tsx @@ -8,4 +8,4 @@ const IconDoneOutlineSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconDoneOutlineSharpFilled as default } +export default IconDoneOutlineSharpFilled diff --git a/src/IconDonutLargeOutlined.tsx b/src/IconDonutLargeOutlined.tsx index c136d6bc8..2cd14ea1c 100644 --- a/src/IconDonutLargeOutlined.tsx +++ b/src/IconDonutLargeOutlined.tsx @@ -8,4 +8,4 @@ const IconDonutLargeOutlined: React.FC = ({ ...props }) => ( ) -export { IconDonutLargeOutlined as default } +export default IconDonutLargeOutlined diff --git a/src/IconDonutLargeOutlinedFilled.tsx b/src/IconDonutLargeOutlinedFilled.tsx index ea04e49eb..c295652aa 100644 --- a/src/IconDonutLargeOutlinedFilled.tsx +++ b/src/IconDonutLargeOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconDonutLargeOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconDonutLargeOutlinedFilled as default } +export default IconDonutLargeOutlinedFilled diff --git a/src/IconDonutLargeRounded.tsx b/src/IconDonutLargeRounded.tsx index 01b28a45a..ffa89d533 100644 --- a/src/IconDonutLargeRounded.tsx +++ b/src/IconDonutLargeRounded.tsx @@ -8,4 +8,4 @@ const IconDonutLargeRounded: React.FC = ({ ...props }) => ( ) -export { IconDonutLargeRounded as default } +export default IconDonutLargeRounded diff --git a/src/IconDonutLargeRoundedFilled.tsx b/src/IconDonutLargeRoundedFilled.tsx index 75f2c776d..d2a9b9775 100644 --- a/src/IconDonutLargeRoundedFilled.tsx +++ b/src/IconDonutLargeRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconDonutLargeRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconDonutLargeRoundedFilled as default } +export default IconDonutLargeRoundedFilled diff --git a/src/IconDonutLargeSharp.tsx b/src/IconDonutLargeSharp.tsx index f63a7a220..7ae3d7ed1 100644 --- a/src/IconDonutLargeSharp.tsx +++ b/src/IconDonutLargeSharp.tsx @@ -8,4 +8,4 @@ const IconDonutLargeSharp: React.FC = ({ ...props }) => ( ) -export { IconDonutLargeSharp as default } +export default IconDonutLargeSharp diff --git a/src/IconDonutLargeSharpFilled.tsx b/src/IconDonutLargeSharpFilled.tsx index 98ccd9290..28aceb1e6 100644 --- a/src/IconDonutLargeSharpFilled.tsx +++ b/src/IconDonutLargeSharpFilled.tsx @@ -8,4 +8,4 @@ const IconDonutLargeSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconDonutLargeSharpFilled as default } +export default IconDonutLargeSharpFilled diff --git a/src/IconDonutSmallOutlined.tsx b/src/IconDonutSmallOutlined.tsx index ba5c669f8..b2238b5b0 100644 --- a/src/IconDonutSmallOutlined.tsx +++ b/src/IconDonutSmallOutlined.tsx @@ -8,4 +8,4 @@ const IconDonutSmallOutlined: React.FC = ({ ...props }) => ( ) -export { IconDonutSmallOutlined as default } +export default IconDonutSmallOutlined diff --git a/src/IconDonutSmallOutlinedFilled.tsx b/src/IconDonutSmallOutlinedFilled.tsx index 5bc0480cc..dccdc8bf5 100644 --- a/src/IconDonutSmallOutlinedFilled.tsx +++ b/src/IconDonutSmallOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconDonutSmallOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconDonutSmallOutlinedFilled as default } +export default IconDonutSmallOutlinedFilled diff --git a/src/IconDonutSmallRounded.tsx b/src/IconDonutSmallRounded.tsx index 6c3af4c87..8420dedfd 100644 --- a/src/IconDonutSmallRounded.tsx +++ b/src/IconDonutSmallRounded.tsx @@ -8,4 +8,4 @@ const IconDonutSmallRounded: React.FC = ({ ...props }) => ( ) -export { IconDonutSmallRounded as default } +export default IconDonutSmallRounded diff --git a/src/IconDonutSmallRoundedFilled.tsx b/src/IconDonutSmallRoundedFilled.tsx index 47647af7b..35b40f746 100644 --- a/src/IconDonutSmallRoundedFilled.tsx +++ b/src/IconDonutSmallRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconDonutSmallRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconDonutSmallRoundedFilled as default } +export default IconDonutSmallRoundedFilled diff --git a/src/IconDonutSmallSharp.tsx b/src/IconDonutSmallSharp.tsx index 7dce74e67..13a596bcc 100644 --- a/src/IconDonutSmallSharp.tsx +++ b/src/IconDonutSmallSharp.tsx @@ -8,4 +8,4 @@ const IconDonutSmallSharp: React.FC = ({ ...props }) => ( ) -export { IconDonutSmallSharp as default } +export default IconDonutSmallSharp diff --git a/src/IconDonutSmallSharpFilled.tsx b/src/IconDonutSmallSharpFilled.tsx index 527d90683..3573db6cb 100644 --- a/src/IconDonutSmallSharpFilled.tsx +++ b/src/IconDonutSmallSharpFilled.tsx @@ -8,4 +8,4 @@ const IconDonutSmallSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconDonutSmallSharpFilled as default } +export default IconDonutSmallSharpFilled diff --git a/src/IconDoorBackOutlined.tsx b/src/IconDoorBackOutlined.tsx index 50e372f80..ac4977cc4 100644 --- a/src/IconDoorBackOutlined.tsx +++ b/src/IconDoorBackOutlined.tsx @@ -8,4 +8,4 @@ const IconDoorBackOutlined: React.FC = ({ ...props }) => ( ) -export { IconDoorBackOutlined as default } +export default IconDoorBackOutlined diff --git a/src/IconDoorBackOutlinedFilled.tsx b/src/IconDoorBackOutlinedFilled.tsx index 61fced819..242d3db3b 100644 --- a/src/IconDoorBackOutlinedFilled.tsx +++ b/src/IconDoorBackOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconDoorBackOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconDoorBackOutlinedFilled as default } +export default IconDoorBackOutlinedFilled diff --git a/src/IconDoorBackRounded.tsx b/src/IconDoorBackRounded.tsx index e263f472d..f8d876683 100644 --- a/src/IconDoorBackRounded.tsx +++ b/src/IconDoorBackRounded.tsx @@ -8,4 +8,4 @@ const IconDoorBackRounded: React.FC = ({ ...props }) => ( ) -export { IconDoorBackRounded as default } +export default IconDoorBackRounded diff --git a/src/IconDoorBackRoundedFilled.tsx b/src/IconDoorBackRoundedFilled.tsx index 9775cc654..3b26282be 100644 --- a/src/IconDoorBackRoundedFilled.tsx +++ b/src/IconDoorBackRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconDoorBackRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconDoorBackRoundedFilled as default } +export default IconDoorBackRoundedFilled diff --git a/src/IconDoorBackSharp.tsx b/src/IconDoorBackSharp.tsx index e3116b931..9b82d867c 100644 --- a/src/IconDoorBackSharp.tsx +++ b/src/IconDoorBackSharp.tsx @@ -8,4 +8,4 @@ const IconDoorBackSharp: React.FC = ({ ...props }) => ( ) -export { IconDoorBackSharp as default } +export default IconDoorBackSharp diff --git a/src/IconDoorBackSharpFilled.tsx b/src/IconDoorBackSharpFilled.tsx index d75003ab9..5031e3ad6 100644 --- a/src/IconDoorBackSharpFilled.tsx +++ b/src/IconDoorBackSharpFilled.tsx @@ -8,4 +8,4 @@ const IconDoorBackSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconDoorBackSharpFilled as default } +export default IconDoorBackSharpFilled diff --git a/src/IconDoorFrontOutlined.tsx b/src/IconDoorFrontOutlined.tsx index 1ebd20c23..5bfb1fa95 100644 --- a/src/IconDoorFrontOutlined.tsx +++ b/src/IconDoorFrontOutlined.tsx @@ -8,4 +8,4 @@ const IconDoorFrontOutlined: React.FC = ({ ...props }) => ( ) -export { IconDoorFrontOutlined as default } +export default IconDoorFrontOutlined diff --git a/src/IconDoorFrontOutlinedFilled.tsx b/src/IconDoorFrontOutlinedFilled.tsx index 3002ded9a..faab25024 100644 --- a/src/IconDoorFrontOutlinedFilled.tsx +++ b/src/IconDoorFrontOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconDoorFrontOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconDoorFrontOutlinedFilled as default } +export default IconDoorFrontOutlinedFilled diff --git a/src/IconDoorFrontRounded.tsx b/src/IconDoorFrontRounded.tsx index b1dc0e674..ced9d913b 100644 --- a/src/IconDoorFrontRounded.tsx +++ b/src/IconDoorFrontRounded.tsx @@ -8,4 +8,4 @@ const IconDoorFrontRounded: React.FC = ({ ...props }) => ( ) -export { IconDoorFrontRounded as default } +export default IconDoorFrontRounded diff --git a/src/IconDoorFrontRoundedFilled.tsx b/src/IconDoorFrontRoundedFilled.tsx index 76c8b3d16..957638f55 100644 --- a/src/IconDoorFrontRoundedFilled.tsx +++ b/src/IconDoorFrontRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconDoorFrontRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconDoorFrontRoundedFilled as default } +export default IconDoorFrontRoundedFilled diff --git a/src/IconDoorFrontSharp.tsx b/src/IconDoorFrontSharp.tsx index 8d26452b1..c9e2d84aa 100644 --- a/src/IconDoorFrontSharp.tsx +++ b/src/IconDoorFrontSharp.tsx @@ -8,4 +8,4 @@ const IconDoorFrontSharp: React.FC = ({ ...props }) => ( ) -export { IconDoorFrontSharp as default } +export default IconDoorFrontSharp diff --git a/src/IconDoorFrontSharpFilled.tsx b/src/IconDoorFrontSharpFilled.tsx index c8b06ed99..a9b1b4f23 100644 --- a/src/IconDoorFrontSharpFilled.tsx +++ b/src/IconDoorFrontSharpFilled.tsx @@ -8,4 +8,4 @@ const IconDoorFrontSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconDoorFrontSharpFilled as default } +export default IconDoorFrontSharpFilled diff --git a/src/IconDoorOpenOutlined.tsx b/src/IconDoorOpenOutlined.tsx index e3a320a7c..ffd2e0de6 100644 --- a/src/IconDoorOpenOutlined.tsx +++ b/src/IconDoorOpenOutlined.tsx @@ -8,4 +8,4 @@ const IconDoorOpenOutlined: React.FC = ({ ...props }) => ( ) -export { IconDoorOpenOutlined as default } +export default IconDoorOpenOutlined diff --git a/src/IconDoorOpenOutlinedFilled.tsx b/src/IconDoorOpenOutlinedFilled.tsx index e9a50cc1f..a91e5f1a3 100644 --- a/src/IconDoorOpenOutlinedFilled.tsx +++ b/src/IconDoorOpenOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconDoorOpenOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconDoorOpenOutlinedFilled as default } +export default IconDoorOpenOutlinedFilled diff --git a/src/IconDoorOpenRounded.tsx b/src/IconDoorOpenRounded.tsx index 228c5a814..13d6c423c 100644 --- a/src/IconDoorOpenRounded.tsx +++ b/src/IconDoorOpenRounded.tsx @@ -8,4 +8,4 @@ const IconDoorOpenRounded: React.FC = ({ ...props }) => ( ) -export { IconDoorOpenRounded as default } +export default IconDoorOpenRounded diff --git a/src/IconDoorOpenRoundedFilled.tsx b/src/IconDoorOpenRoundedFilled.tsx index 7f26a12bb..5ba3cb831 100644 --- a/src/IconDoorOpenRoundedFilled.tsx +++ b/src/IconDoorOpenRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconDoorOpenRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconDoorOpenRoundedFilled as default } +export default IconDoorOpenRoundedFilled diff --git a/src/IconDoorOpenSharp.tsx b/src/IconDoorOpenSharp.tsx index f9aa3682b..6078651d7 100644 --- a/src/IconDoorOpenSharp.tsx +++ b/src/IconDoorOpenSharp.tsx @@ -8,4 +8,4 @@ const IconDoorOpenSharp: React.FC = ({ ...props }) => ( ) -export { IconDoorOpenSharp as default } +export default IconDoorOpenSharp diff --git a/src/IconDoorOpenSharpFilled.tsx b/src/IconDoorOpenSharpFilled.tsx index c8448ca82..3d3bf5b0b 100644 --- a/src/IconDoorOpenSharpFilled.tsx +++ b/src/IconDoorOpenSharpFilled.tsx @@ -8,4 +8,4 @@ const IconDoorOpenSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconDoorOpenSharpFilled as default } +export default IconDoorOpenSharpFilled diff --git a/src/IconDoorSensorOutlined.tsx b/src/IconDoorSensorOutlined.tsx index 95d2d010a..88c2b5a46 100644 --- a/src/IconDoorSensorOutlined.tsx +++ b/src/IconDoorSensorOutlined.tsx @@ -8,4 +8,4 @@ const IconDoorSensorOutlined: React.FC = ({ ...props }) => ( ) -export { IconDoorSensorOutlined as default } +export default IconDoorSensorOutlined diff --git a/src/IconDoorSensorOutlinedFilled.tsx b/src/IconDoorSensorOutlinedFilled.tsx index fb16741ae..f1d96465b 100644 --- a/src/IconDoorSensorOutlinedFilled.tsx +++ b/src/IconDoorSensorOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconDoorSensorOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconDoorSensorOutlinedFilled as default } +export default IconDoorSensorOutlinedFilled diff --git a/src/IconDoorSensorRounded.tsx b/src/IconDoorSensorRounded.tsx index b1ca414e1..a1c21cdee 100644 --- a/src/IconDoorSensorRounded.tsx +++ b/src/IconDoorSensorRounded.tsx @@ -8,4 +8,4 @@ const IconDoorSensorRounded: React.FC = ({ ...props }) => ( ) -export { IconDoorSensorRounded as default } +export default IconDoorSensorRounded diff --git a/src/IconDoorSensorRoundedFilled.tsx b/src/IconDoorSensorRoundedFilled.tsx index 2298e070f..a30501a67 100644 --- a/src/IconDoorSensorRoundedFilled.tsx +++ b/src/IconDoorSensorRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconDoorSensorRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconDoorSensorRoundedFilled as default } +export default IconDoorSensorRoundedFilled diff --git a/src/IconDoorSensorSharp.tsx b/src/IconDoorSensorSharp.tsx index b1e0e5ad6..7d49d323b 100644 --- a/src/IconDoorSensorSharp.tsx +++ b/src/IconDoorSensorSharp.tsx @@ -8,4 +8,4 @@ const IconDoorSensorSharp: React.FC = ({ ...props }) => ( ) -export { IconDoorSensorSharp as default } +export default IconDoorSensorSharp diff --git a/src/IconDoorSensorSharpFilled.tsx b/src/IconDoorSensorSharpFilled.tsx index f4755de29..462e56d13 100644 --- a/src/IconDoorSensorSharpFilled.tsx +++ b/src/IconDoorSensorSharpFilled.tsx @@ -8,4 +8,4 @@ const IconDoorSensorSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconDoorSensorSharpFilled as default } +export default IconDoorSensorSharpFilled diff --git a/src/IconDoorSlidingOutlined.tsx b/src/IconDoorSlidingOutlined.tsx index cd4b2e764..ae47d0661 100644 --- a/src/IconDoorSlidingOutlined.tsx +++ b/src/IconDoorSlidingOutlined.tsx @@ -8,4 +8,4 @@ const IconDoorSlidingOutlined: React.FC = ({ ...props }) => ( ) -export { IconDoorSlidingOutlined as default } +export default IconDoorSlidingOutlined diff --git a/src/IconDoorSlidingOutlinedFilled.tsx b/src/IconDoorSlidingOutlinedFilled.tsx index 9544a08ed..85c1b2fcc 100644 --- a/src/IconDoorSlidingOutlinedFilled.tsx +++ b/src/IconDoorSlidingOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconDoorSlidingOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconDoorSlidingOutlinedFilled as default } +export default IconDoorSlidingOutlinedFilled diff --git a/src/IconDoorSlidingRounded.tsx b/src/IconDoorSlidingRounded.tsx index 868c55947..1647af089 100644 --- a/src/IconDoorSlidingRounded.tsx +++ b/src/IconDoorSlidingRounded.tsx @@ -8,4 +8,4 @@ const IconDoorSlidingRounded: React.FC = ({ ...props }) => ( ) -export { IconDoorSlidingRounded as default } +export default IconDoorSlidingRounded diff --git a/src/IconDoorSlidingRoundedFilled.tsx b/src/IconDoorSlidingRoundedFilled.tsx index fe050da6c..ed63da4ed 100644 --- a/src/IconDoorSlidingRoundedFilled.tsx +++ b/src/IconDoorSlidingRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconDoorSlidingRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconDoorSlidingRoundedFilled as default } +export default IconDoorSlidingRoundedFilled diff --git a/src/IconDoorSlidingSharp.tsx b/src/IconDoorSlidingSharp.tsx index 2f5e62c21..17b0837ca 100644 --- a/src/IconDoorSlidingSharp.tsx +++ b/src/IconDoorSlidingSharp.tsx @@ -8,4 +8,4 @@ const IconDoorSlidingSharp: React.FC = ({ ...props }) => ( ) -export { IconDoorSlidingSharp as default } +export default IconDoorSlidingSharp diff --git a/src/IconDoorSlidingSharpFilled.tsx b/src/IconDoorSlidingSharpFilled.tsx index a2595ea2e..a613398df 100644 --- a/src/IconDoorSlidingSharpFilled.tsx +++ b/src/IconDoorSlidingSharpFilled.tsx @@ -8,4 +8,4 @@ const IconDoorSlidingSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconDoorSlidingSharpFilled as default } +export default IconDoorSlidingSharpFilled diff --git a/src/IconDoorbell3pOutlined.tsx b/src/IconDoorbell3pOutlined.tsx index 7658fa5ff..2cf36585a 100644 --- a/src/IconDoorbell3pOutlined.tsx +++ b/src/IconDoorbell3pOutlined.tsx @@ -8,4 +8,4 @@ const IconDoorbell3pOutlined: React.FC = ({ ...props }) => ( ) -export { IconDoorbell3pOutlined as default } +export default IconDoorbell3pOutlined diff --git a/src/IconDoorbell3pOutlinedFilled.tsx b/src/IconDoorbell3pOutlinedFilled.tsx index f46d64548..b7139bff3 100644 --- a/src/IconDoorbell3pOutlinedFilled.tsx +++ b/src/IconDoorbell3pOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconDoorbell3pOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconDoorbell3pOutlinedFilled as default } +export default IconDoorbell3pOutlinedFilled diff --git a/src/IconDoorbell3pRounded.tsx b/src/IconDoorbell3pRounded.tsx index 956119d47..2088bb5e5 100644 --- a/src/IconDoorbell3pRounded.tsx +++ b/src/IconDoorbell3pRounded.tsx @@ -8,4 +8,4 @@ const IconDoorbell3pRounded: React.FC = ({ ...props }) => ( ) -export { IconDoorbell3pRounded as default } +export default IconDoorbell3pRounded diff --git a/src/IconDoorbell3pRoundedFilled.tsx b/src/IconDoorbell3pRoundedFilled.tsx index 10787e471..c9ad89be9 100644 --- a/src/IconDoorbell3pRoundedFilled.tsx +++ b/src/IconDoorbell3pRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconDoorbell3pRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconDoorbell3pRoundedFilled as default } +export default IconDoorbell3pRoundedFilled diff --git a/src/IconDoorbell3pSharp.tsx b/src/IconDoorbell3pSharp.tsx index f06978c9d..d594c745b 100644 --- a/src/IconDoorbell3pSharp.tsx +++ b/src/IconDoorbell3pSharp.tsx @@ -8,4 +8,4 @@ const IconDoorbell3pSharp: React.FC = ({ ...props }) => ( ) -export { IconDoorbell3pSharp as default } +export default IconDoorbell3pSharp diff --git a/src/IconDoorbell3pSharpFilled.tsx b/src/IconDoorbell3pSharpFilled.tsx index d6e206055..a7b4ab2fa 100644 --- a/src/IconDoorbell3pSharpFilled.tsx +++ b/src/IconDoorbell3pSharpFilled.tsx @@ -8,4 +8,4 @@ const IconDoorbell3pSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconDoorbell3pSharpFilled as default } +export default IconDoorbell3pSharpFilled diff --git a/src/IconDoorbellChimeOutlined.tsx b/src/IconDoorbellChimeOutlined.tsx index 7c52816f1..b6fd012ae 100644 --- a/src/IconDoorbellChimeOutlined.tsx +++ b/src/IconDoorbellChimeOutlined.tsx @@ -8,4 +8,4 @@ const IconDoorbellChimeOutlined: React.FC = ({ ...props }) => ( ) -export { IconDoorbellChimeOutlined as default } +export default IconDoorbellChimeOutlined diff --git a/src/IconDoorbellChimeOutlinedFilled.tsx b/src/IconDoorbellChimeOutlinedFilled.tsx index 6951ccb26..cac8188b5 100644 --- a/src/IconDoorbellChimeOutlinedFilled.tsx +++ b/src/IconDoorbellChimeOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconDoorbellChimeOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconDoorbellChimeOutlinedFilled as default } +export default IconDoorbellChimeOutlinedFilled diff --git a/src/IconDoorbellChimeRounded.tsx b/src/IconDoorbellChimeRounded.tsx index 6575fee02..a5f50941b 100644 --- a/src/IconDoorbellChimeRounded.tsx +++ b/src/IconDoorbellChimeRounded.tsx @@ -8,4 +8,4 @@ const IconDoorbellChimeRounded: React.FC = ({ ...props }) => ( ) -export { IconDoorbellChimeRounded as default } +export default IconDoorbellChimeRounded diff --git a/src/IconDoorbellChimeRoundedFilled.tsx b/src/IconDoorbellChimeRoundedFilled.tsx index c35bb2d49..9bf45e4eb 100644 --- a/src/IconDoorbellChimeRoundedFilled.tsx +++ b/src/IconDoorbellChimeRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconDoorbellChimeRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconDoorbellChimeRoundedFilled as default } +export default IconDoorbellChimeRoundedFilled diff --git a/src/IconDoorbellChimeSharp.tsx b/src/IconDoorbellChimeSharp.tsx index 39e8b8747..eed7a0811 100644 --- a/src/IconDoorbellChimeSharp.tsx +++ b/src/IconDoorbellChimeSharp.tsx @@ -8,4 +8,4 @@ const IconDoorbellChimeSharp: React.FC = ({ ...props }) => ( ) -export { IconDoorbellChimeSharp as default } +export default IconDoorbellChimeSharp diff --git a/src/IconDoorbellChimeSharpFilled.tsx b/src/IconDoorbellChimeSharpFilled.tsx index c0794e8f4..c128e4654 100644 --- a/src/IconDoorbellChimeSharpFilled.tsx +++ b/src/IconDoorbellChimeSharpFilled.tsx @@ -8,4 +8,4 @@ const IconDoorbellChimeSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconDoorbellChimeSharpFilled as default } +export default IconDoorbellChimeSharpFilled diff --git a/src/IconDoorbellOutlined.tsx b/src/IconDoorbellOutlined.tsx index 2a6cabd52..8606765ba 100644 --- a/src/IconDoorbellOutlined.tsx +++ b/src/IconDoorbellOutlined.tsx @@ -8,4 +8,4 @@ const IconDoorbellOutlined: React.FC = ({ ...props }) => ( ) -export { IconDoorbellOutlined as default } +export default IconDoorbellOutlined diff --git a/src/IconDoorbellOutlinedFilled.tsx b/src/IconDoorbellOutlinedFilled.tsx index d8dde0108..a6411e637 100644 --- a/src/IconDoorbellOutlinedFilled.tsx +++ b/src/IconDoorbellOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconDoorbellOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconDoorbellOutlinedFilled as default } +export default IconDoorbellOutlinedFilled diff --git a/src/IconDoorbellRounded.tsx b/src/IconDoorbellRounded.tsx index 104686722..0ae152a81 100644 --- a/src/IconDoorbellRounded.tsx +++ b/src/IconDoorbellRounded.tsx @@ -8,4 +8,4 @@ const IconDoorbellRounded: React.FC = ({ ...props }) => ( ) -export { IconDoorbellRounded as default } +export default IconDoorbellRounded diff --git a/src/IconDoorbellRoundedFilled.tsx b/src/IconDoorbellRoundedFilled.tsx index f4957ba38..792a5c88a 100644 --- a/src/IconDoorbellRoundedFilled.tsx +++ b/src/IconDoorbellRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconDoorbellRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconDoorbellRoundedFilled as default } +export default IconDoorbellRoundedFilled diff --git a/src/IconDoorbellSharp.tsx b/src/IconDoorbellSharp.tsx index c9688e786..ce39cdb10 100644 --- a/src/IconDoorbellSharp.tsx +++ b/src/IconDoorbellSharp.tsx @@ -8,4 +8,4 @@ const IconDoorbellSharp: React.FC = ({ ...props }) => ( ) -export { IconDoorbellSharp as default } +export default IconDoorbellSharp diff --git a/src/IconDoorbellSharpFilled.tsx b/src/IconDoorbellSharpFilled.tsx index ea1dac250..4547ca0d8 100644 --- a/src/IconDoorbellSharpFilled.tsx +++ b/src/IconDoorbellSharpFilled.tsx @@ -8,4 +8,4 @@ const IconDoorbellSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconDoorbellSharpFilled as default } +export default IconDoorbellSharpFilled diff --git a/src/IconDoubleArrowOutlined.tsx b/src/IconDoubleArrowOutlined.tsx index 157ca5a35..2ee0fb266 100644 --- a/src/IconDoubleArrowOutlined.tsx +++ b/src/IconDoubleArrowOutlined.tsx @@ -8,4 +8,4 @@ const IconDoubleArrowOutlined: React.FC = ({ ...props }) => ( ) -export { IconDoubleArrowOutlined as default } +export default IconDoubleArrowOutlined diff --git a/src/IconDoubleArrowOutlinedFilled.tsx b/src/IconDoubleArrowOutlinedFilled.tsx index f1eff283f..00ae7ea09 100644 --- a/src/IconDoubleArrowOutlinedFilled.tsx +++ b/src/IconDoubleArrowOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconDoubleArrowOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconDoubleArrowOutlinedFilled as default } +export default IconDoubleArrowOutlinedFilled diff --git a/src/IconDoubleArrowRounded.tsx b/src/IconDoubleArrowRounded.tsx index f2ef675cc..64e5601ea 100644 --- a/src/IconDoubleArrowRounded.tsx +++ b/src/IconDoubleArrowRounded.tsx @@ -8,4 +8,4 @@ const IconDoubleArrowRounded: React.FC = ({ ...props }) => ( ) -export { IconDoubleArrowRounded as default } +export default IconDoubleArrowRounded diff --git a/src/IconDoubleArrowRoundedFilled.tsx b/src/IconDoubleArrowRoundedFilled.tsx index fb3f014da..93507a916 100644 --- a/src/IconDoubleArrowRoundedFilled.tsx +++ b/src/IconDoubleArrowRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconDoubleArrowRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconDoubleArrowRoundedFilled as default } +export default IconDoubleArrowRoundedFilled diff --git a/src/IconDoubleArrowSharp.tsx b/src/IconDoubleArrowSharp.tsx index fa38eedd8..fc286e885 100644 --- a/src/IconDoubleArrowSharp.tsx +++ b/src/IconDoubleArrowSharp.tsx @@ -8,4 +8,4 @@ const IconDoubleArrowSharp: React.FC = ({ ...props }) => ( ) -export { IconDoubleArrowSharp as default } +export default IconDoubleArrowSharp diff --git a/src/IconDoubleArrowSharpFilled.tsx b/src/IconDoubleArrowSharpFilled.tsx index 6fbd40a80..11e6502d2 100644 --- a/src/IconDoubleArrowSharpFilled.tsx +++ b/src/IconDoubleArrowSharpFilled.tsx @@ -8,4 +8,4 @@ const IconDoubleArrowSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconDoubleArrowSharpFilled as default } +export default IconDoubleArrowSharpFilled diff --git a/src/IconDownhillSkiingOutlined.tsx b/src/IconDownhillSkiingOutlined.tsx index 263c7ee65..5943cca1b 100644 --- a/src/IconDownhillSkiingOutlined.tsx +++ b/src/IconDownhillSkiingOutlined.tsx @@ -8,4 +8,4 @@ const IconDownhillSkiingOutlined: React.FC = ({ ...props }) => ( ) -export { IconDownhillSkiingOutlined as default } +export default IconDownhillSkiingOutlined diff --git a/src/IconDownhillSkiingOutlinedFilled.tsx b/src/IconDownhillSkiingOutlinedFilled.tsx index a702f70c0..88fad926c 100644 --- a/src/IconDownhillSkiingOutlinedFilled.tsx +++ b/src/IconDownhillSkiingOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconDownhillSkiingOutlinedFilled: React.FC = ({ ) -export { IconDownhillSkiingOutlinedFilled as default } +export default IconDownhillSkiingOutlinedFilled diff --git a/src/IconDownhillSkiingRounded.tsx b/src/IconDownhillSkiingRounded.tsx index 2bee56541..3e257e8ec 100644 --- a/src/IconDownhillSkiingRounded.tsx +++ b/src/IconDownhillSkiingRounded.tsx @@ -8,4 +8,4 @@ const IconDownhillSkiingRounded: React.FC = ({ ...props }) => ( ) -export { IconDownhillSkiingRounded as default } +export default IconDownhillSkiingRounded diff --git a/src/IconDownhillSkiingRoundedFilled.tsx b/src/IconDownhillSkiingRoundedFilled.tsx index aa8db08b8..c6ab888f8 100644 --- a/src/IconDownhillSkiingRoundedFilled.tsx +++ b/src/IconDownhillSkiingRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconDownhillSkiingRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconDownhillSkiingRoundedFilled as default } +export default IconDownhillSkiingRoundedFilled diff --git a/src/IconDownhillSkiingSharp.tsx b/src/IconDownhillSkiingSharp.tsx index e77fc2c49..e6f88c724 100644 --- a/src/IconDownhillSkiingSharp.tsx +++ b/src/IconDownhillSkiingSharp.tsx @@ -8,4 +8,4 @@ const IconDownhillSkiingSharp: React.FC = ({ ...props }) => ( ) -export { IconDownhillSkiingSharp as default } +export default IconDownhillSkiingSharp diff --git a/src/IconDownhillSkiingSharpFilled.tsx b/src/IconDownhillSkiingSharpFilled.tsx index 970d06d7a..de1cea2f7 100644 --- a/src/IconDownhillSkiingSharpFilled.tsx +++ b/src/IconDownhillSkiingSharpFilled.tsx @@ -8,4 +8,4 @@ const IconDownhillSkiingSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconDownhillSkiingSharpFilled as default } +export default IconDownhillSkiingSharpFilled diff --git a/src/IconDownload2Outlined.tsx b/src/IconDownload2Outlined.tsx index cc46a31ab..be034d4c8 100644 --- a/src/IconDownload2Outlined.tsx +++ b/src/IconDownload2Outlined.tsx @@ -8,4 +8,4 @@ const IconDownload2Outlined: React.FC = ({ ...props }) => ( ) -export { IconDownload2Outlined as default } +export default IconDownload2Outlined diff --git a/src/IconDownload2OutlinedFilled.tsx b/src/IconDownload2OutlinedFilled.tsx index e3792ef81..85bb07502 100644 --- a/src/IconDownload2OutlinedFilled.tsx +++ b/src/IconDownload2OutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconDownload2OutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconDownload2OutlinedFilled as default } +export default IconDownload2OutlinedFilled diff --git a/src/IconDownload2Rounded.tsx b/src/IconDownload2Rounded.tsx index df71e5f4e..7eeaa7e55 100644 --- a/src/IconDownload2Rounded.tsx +++ b/src/IconDownload2Rounded.tsx @@ -8,4 +8,4 @@ const IconDownload2Rounded: React.FC = ({ ...props }) => ( ) -export { IconDownload2Rounded as default } +export default IconDownload2Rounded diff --git a/src/IconDownload2RoundedFilled.tsx b/src/IconDownload2RoundedFilled.tsx index c7a2d9aef..28407ab57 100644 --- a/src/IconDownload2RoundedFilled.tsx +++ b/src/IconDownload2RoundedFilled.tsx @@ -8,4 +8,4 @@ const IconDownload2RoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconDownload2RoundedFilled as default } +export default IconDownload2RoundedFilled diff --git a/src/IconDownload2Sharp.tsx b/src/IconDownload2Sharp.tsx index 365bc6016..a6fdb1441 100644 --- a/src/IconDownload2Sharp.tsx +++ b/src/IconDownload2Sharp.tsx @@ -8,4 +8,4 @@ const IconDownload2Sharp: React.FC = ({ ...props }) => ( ) -export { IconDownload2Sharp as default } +export default IconDownload2Sharp diff --git a/src/IconDownload2SharpFilled.tsx b/src/IconDownload2SharpFilled.tsx index 679843f5c..296ff6a2a 100644 --- a/src/IconDownload2SharpFilled.tsx +++ b/src/IconDownload2SharpFilled.tsx @@ -8,4 +8,4 @@ const IconDownload2SharpFilled: React.FC = ({ ...props }) => ( ) -export { IconDownload2SharpFilled as default } +export default IconDownload2SharpFilled diff --git a/src/IconDownloadDoneOutlined.tsx b/src/IconDownloadDoneOutlined.tsx index 6f9ade482..a4b1c9fac 100644 --- a/src/IconDownloadDoneOutlined.tsx +++ b/src/IconDownloadDoneOutlined.tsx @@ -8,4 +8,4 @@ const IconDownloadDoneOutlined: React.FC = ({ ...props }) => ( ) -export { IconDownloadDoneOutlined as default } +export default IconDownloadDoneOutlined diff --git a/src/IconDownloadDoneOutlinedFilled.tsx b/src/IconDownloadDoneOutlinedFilled.tsx index 2f9e1e50c..86e32871f 100644 --- a/src/IconDownloadDoneOutlinedFilled.tsx +++ b/src/IconDownloadDoneOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconDownloadDoneOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconDownloadDoneOutlinedFilled as default } +export default IconDownloadDoneOutlinedFilled diff --git a/src/IconDownloadDoneRounded.tsx b/src/IconDownloadDoneRounded.tsx index 7e40e2cf7..a7370562e 100644 --- a/src/IconDownloadDoneRounded.tsx +++ b/src/IconDownloadDoneRounded.tsx @@ -8,4 +8,4 @@ const IconDownloadDoneRounded: React.FC = ({ ...props }) => ( ) -export { IconDownloadDoneRounded as default } +export default IconDownloadDoneRounded diff --git a/src/IconDownloadDoneRoundedFilled.tsx b/src/IconDownloadDoneRoundedFilled.tsx index d3db79a73..c7f8f67e6 100644 --- a/src/IconDownloadDoneRoundedFilled.tsx +++ b/src/IconDownloadDoneRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconDownloadDoneRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconDownloadDoneRoundedFilled as default } +export default IconDownloadDoneRoundedFilled diff --git a/src/IconDownloadDoneSharp.tsx b/src/IconDownloadDoneSharp.tsx index 97ca67ec0..c44ccc72d 100644 --- a/src/IconDownloadDoneSharp.tsx +++ b/src/IconDownloadDoneSharp.tsx @@ -8,4 +8,4 @@ const IconDownloadDoneSharp: React.FC = ({ ...props }) => ( ) -export { IconDownloadDoneSharp as default } +export default IconDownloadDoneSharp diff --git a/src/IconDownloadDoneSharpFilled.tsx b/src/IconDownloadDoneSharpFilled.tsx index b9db17d98..55676c07c 100644 --- a/src/IconDownloadDoneSharpFilled.tsx +++ b/src/IconDownloadDoneSharpFilled.tsx @@ -8,4 +8,4 @@ const IconDownloadDoneSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconDownloadDoneSharpFilled as default } +export default IconDownloadDoneSharpFilled diff --git a/src/IconDownloadForOfflineOutlined.tsx b/src/IconDownloadForOfflineOutlined.tsx index e9668b759..1812174f4 100644 --- a/src/IconDownloadForOfflineOutlined.tsx +++ b/src/IconDownloadForOfflineOutlined.tsx @@ -8,4 +8,4 @@ const IconDownloadForOfflineOutlined: React.FC = ({ ...props }) => ( ) -export { IconDownloadForOfflineOutlined as default } +export default IconDownloadForOfflineOutlined diff --git a/src/IconDownloadForOfflineOutlinedFilled.tsx b/src/IconDownloadForOfflineOutlinedFilled.tsx index c31f0cc3c..4205005ac 100644 --- a/src/IconDownloadForOfflineOutlinedFilled.tsx +++ b/src/IconDownloadForOfflineOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconDownloadForOfflineOutlinedFilled: React.FC = ({ ) -export { IconDownloadForOfflineOutlinedFilled as default } +export default IconDownloadForOfflineOutlinedFilled diff --git a/src/IconDownloadForOfflineRounded.tsx b/src/IconDownloadForOfflineRounded.tsx index 9e8552138..01b6083cc 100644 --- a/src/IconDownloadForOfflineRounded.tsx +++ b/src/IconDownloadForOfflineRounded.tsx @@ -8,4 +8,4 @@ const IconDownloadForOfflineRounded: React.FC = ({ ...props }) => ( ) -export { IconDownloadForOfflineRounded as default } +export default IconDownloadForOfflineRounded diff --git a/src/IconDownloadForOfflineRoundedFilled.tsx b/src/IconDownloadForOfflineRoundedFilled.tsx index 09312f6c2..278c57e65 100644 --- a/src/IconDownloadForOfflineRoundedFilled.tsx +++ b/src/IconDownloadForOfflineRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconDownloadForOfflineRoundedFilled: React.FC = ({ ) -export { IconDownloadForOfflineRoundedFilled as default } +export default IconDownloadForOfflineRoundedFilled diff --git a/src/IconDownloadForOfflineSharp.tsx b/src/IconDownloadForOfflineSharp.tsx index 40e77e398..1679dc7af 100644 --- a/src/IconDownloadForOfflineSharp.tsx +++ b/src/IconDownloadForOfflineSharp.tsx @@ -8,4 +8,4 @@ const IconDownloadForOfflineSharp: React.FC = ({ ...props }) => ( ) -export { IconDownloadForOfflineSharp as default } +export default IconDownloadForOfflineSharp diff --git a/src/IconDownloadForOfflineSharpFilled.tsx b/src/IconDownloadForOfflineSharpFilled.tsx index a0f8694cf..3899f9e15 100644 --- a/src/IconDownloadForOfflineSharpFilled.tsx +++ b/src/IconDownloadForOfflineSharpFilled.tsx @@ -10,4 +10,4 @@ const IconDownloadForOfflineSharpFilled: React.FC = ({ ) -export { IconDownloadForOfflineSharpFilled as default } +export default IconDownloadForOfflineSharpFilled diff --git a/src/IconDownloadOutlined.tsx b/src/IconDownloadOutlined.tsx index 9ec415549..7e42ceb3a 100644 --- a/src/IconDownloadOutlined.tsx +++ b/src/IconDownloadOutlined.tsx @@ -8,4 +8,4 @@ const IconDownloadOutlined: React.FC = ({ ...props }) => ( ) -export { IconDownloadOutlined as default } +export default IconDownloadOutlined diff --git a/src/IconDownloadOutlinedFilled.tsx b/src/IconDownloadOutlinedFilled.tsx index fdcdb0837..85cc26189 100644 --- a/src/IconDownloadOutlinedFilled.tsx +++ b/src/IconDownloadOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconDownloadOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconDownloadOutlinedFilled as default } +export default IconDownloadOutlinedFilled diff --git a/src/IconDownloadRounded.tsx b/src/IconDownloadRounded.tsx index 867298e6f..582cb0587 100644 --- a/src/IconDownloadRounded.tsx +++ b/src/IconDownloadRounded.tsx @@ -8,4 +8,4 @@ const IconDownloadRounded: React.FC = ({ ...props }) => ( ) -export { IconDownloadRounded as default } +export default IconDownloadRounded diff --git a/src/IconDownloadRoundedFilled.tsx b/src/IconDownloadRoundedFilled.tsx index 84beb2a1e..9e384dc68 100644 --- a/src/IconDownloadRoundedFilled.tsx +++ b/src/IconDownloadRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconDownloadRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconDownloadRoundedFilled as default } +export default IconDownloadRoundedFilled diff --git a/src/IconDownloadSharp.tsx b/src/IconDownloadSharp.tsx index e756304d2..777106153 100644 --- a/src/IconDownloadSharp.tsx +++ b/src/IconDownloadSharp.tsx @@ -8,4 +8,4 @@ const IconDownloadSharp: React.FC = ({ ...props }) => ( ) -export { IconDownloadSharp as default } +export default IconDownloadSharp diff --git a/src/IconDownloadSharpFilled.tsx b/src/IconDownloadSharpFilled.tsx index 967524579..3fdc1300e 100644 --- a/src/IconDownloadSharpFilled.tsx +++ b/src/IconDownloadSharpFilled.tsx @@ -8,4 +8,4 @@ const IconDownloadSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconDownloadSharpFilled as default } +export default IconDownloadSharpFilled diff --git a/src/IconDownloadingOutlined.tsx b/src/IconDownloadingOutlined.tsx index 01043b0cc..3126a69da 100644 --- a/src/IconDownloadingOutlined.tsx +++ b/src/IconDownloadingOutlined.tsx @@ -8,4 +8,4 @@ const IconDownloadingOutlined: React.FC = ({ ...props }) => ( ) -export { IconDownloadingOutlined as default } +export default IconDownloadingOutlined diff --git a/src/IconDownloadingOutlinedFilled.tsx b/src/IconDownloadingOutlinedFilled.tsx index 126df54c6..cd9b7a354 100644 --- a/src/IconDownloadingOutlinedFilled.tsx +++ b/src/IconDownloadingOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconDownloadingOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconDownloadingOutlinedFilled as default } +export default IconDownloadingOutlinedFilled diff --git a/src/IconDownloadingRounded.tsx b/src/IconDownloadingRounded.tsx index 4ef028e26..7c4fa1c77 100644 --- a/src/IconDownloadingRounded.tsx +++ b/src/IconDownloadingRounded.tsx @@ -8,4 +8,4 @@ const IconDownloadingRounded: React.FC = ({ ...props }) => ( ) -export { IconDownloadingRounded as default } +export default IconDownloadingRounded diff --git a/src/IconDownloadingRoundedFilled.tsx b/src/IconDownloadingRoundedFilled.tsx index 3112d8d78..39459b17f 100644 --- a/src/IconDownloadingRoundedFilled.tsx +++ b/src/IconDownloadingRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconDownloadingRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconDownloadingRoundedFilled as default } +export default IconDownloadingRoundedFilled diff --git a/src/IconDownloadingSharp.tsx b/src/IconDownloadingSharp.tsx index d6f1b9aaa..7a051e904 100644 --- a/src/IconDownloadingSharp.tsx +++ b/src/IconDownloadingSharp.tsx @@ -8,4 +8,4 @@ const IconDownloadingSharp: React.FC = ({ ...props }) => ( ) -export { IconDownloadingSharp as default } +export default IconDownloadingSharp diff --git a/src/IconDownloadingSharpFilled.tsx b/src/IconDownloadingSharpFilled.tsx index f922968f2..b8a8cc090 100644 --- a/src/IconDownloadingSharpFilled.tsx +++ b/src/IconDownloadingSharpFilled.tsx @@ -8,4 +8,4 @@ const IconDownloadingSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconDownloadingSharpFilled as default } +export default IconDownloadingSharpFilled diff --git a/src/IconDraftOrdersOutlined.tsx b/src/IconDraftOrdersOutlined.tsx index a2e02d106..ddb2ee6cc 100644 --- a/src/IconDraftOrdersOutlined.tsx +++ b/src/IconDraftOrdersOutlined.tsx @@ -8,4 +8,4 @@ const IconDraftOrdersOutlined: React.FC = ({ ...props }) => ( ) -export { IconDraftOrdersOutlined as default } +export default IconDraftOrdersOutlined diff --git a/src/IconDraftOrdersOutlinedFilled.tsx b/src/IconDraftOrdersOutlinedFilled.tsx index 8913e93f7..265d24bdb 100644 --- a/src/IconDraftOrdersOutlinedFilled.tsx +++ b/src/IconDraftOrdersOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconDraftOrdersOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconDraftOrdersOutlinedFilled as default } +export default IconDraftOrdersOutlinedFilled diff --git a/src/IconDraftOrdersRounded.tsx b/src/IconDraftOrdersRounded.tsx index 08254985d..7bf77fe6b 100644 --- a/src/IconDraftOrdersRounded.tsx +++ b/src/IconDraftOrdersRounded.tsx @@ -8,4 +8,4 @@ const IconDraftOrdersRounded: React.FC = ({ ...props }) => ( ) -export { IconDraftOrdersRounded as default } +export default IconDraftOrdersRounded diff --git a/src/IconDraftOrdersRoundedFilled.tsx b/src/IconDraftOrdersRoundedFilled.tsx index f97ca8878..30b805724 100644 --- a/src/IconDraftOrdersRoundedFilled.tsx +++ b/src/IconDraftOrdersRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconDraftOrdersRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconDraftOrdersRoundedFilled as default } +export default IconDraftOrdersRoundedFilled diff --git a/src/IconDraftOrdersSharp.tsx b/src/IconDraftOrdersSharp.tsx index c7f6edccf..5f719b0b1 100644 --- a/src/IconDraftOrdersSharp.tsx +++ b/src/IconDraftOrdersSharp.tsx @@ -8,4 +8,4 @@ const IconDraftOrdersSharp: React.FC = ({ ...props }) => ( ) -export { IconDraftOrdersSharp as default } +export default IconDraftOrdersSharp diff --git a/src/IconDraftOrdersSharpFilled.tsx b/src/IconDraftOrdersSharpFilled.tsx index 5eb1722e0..098d66474 100644 --- a/src/IconDraftOrdersSharpFilled.tsx +++ b/src/IconDraftOrdersSharpFilled.tsx @@ -8,4 +8,4 @@ const IconDraftOrdersSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconDraftOrdersSharpFilled as default } +export default IconDraftOrdersSharpFilled diff --git a/src/IconDraftOutlined.tsx b/src/IconDraftOutlined.tsx index ac40f7882..e6741e45a 100644 --- a/src/IconDraftOutlined.tsx +++ b/src/IconDraftOutlined.tsx @@ -8,4 +8,4 @@ const IconDraftOutlined: React.FC = ({ ...props }) => ( ) -export { IconDraftOutlined as default } +export default IconDraftOutlined diff --git a/src/IconDraftOutlinedFilled.tsx b/src/IconDraftOutlinedFilled.tsx index d02a47292..474c8f1c1 100644 --- a/src/IconDraftOutlinedFilled.tsx +++ b/src/IconDraftOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconDraftOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconDraftOutlinedFilled as default } +export default IconDraftOutlinedFilled diff --git a/src/IconDraftRounded.tsx b/src/IconDraftRounded.tsx index dd8388ab4..754cdd252 100644 --- a/src/IconDraftRounded.tsx +++ b/src/IconDraftRounded.tsx @@ -8,4 +8,4 @@ const IconDraftRounded: React.FC = ({ ...props }) => ( ) -export { IconDraftRounded as default } +export default IconDraftRounded diff --git a/src/IconDraftRoundedFilled.tsx b/src/IconDraftRoundedFilled.tsx index e96a1e4d0..a2650ab59 100644 --- a/src/IconDraftRoundedFilled.tsx +++ b/src/IconDraftRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconDraftRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconDraftRoundedFilled as default } +export default IconDraftRoundedFilled diff --git a/src/IconDraftSharp.tsx b/src/IconDraftSharp.tsx index 3fa1fa8fc..f8e66a44e 100644 --- a/src/IconDraftSharp.tsx +++ b/src/IconDraftSharp.tsx @@ -8,4 +8,4 @@ const IconDraftSharp: React.FC = ({ ...props }) => ( ) -export { IconDraftSharp as default } +export default IconDraftSharp diff --git a/src/IconDraftSharpFilled.tsx b/src/IconDraftSharpFilled.tsx index 6899f42a4..3a741a49c 100644 --- a/src/IconDraftSharpFilled.tsx +++ b/src/IconDraftSharpFilled.tsx @@ -8,4 +8,4 @@ const IconDraftSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconDraftSharpFilled as default } +export default IconDraftSharpFilled diff --git a/src/IconDraftsOutlined.tsx b/src/IconDraftsOutlined.tsx index 4e62d3cab..ed8dc2b5c 100644 --- a/src/IconDraftsOutlined.tsx +++ b/src/IconDraftsOutlined.tsx @@ -8,4 +8,4 @@ const IconDraftsOutlined: React.FC = ({ ...props }) => ( ) -export { IconDraftsOutlined as default } +export default IconDraftsOutlined diff --git a/src/IconDraftsOutlinedFilled.tsx b/src/IconDraftsOutlinedFilled.tsx index 6245e1e99..a29157d41 100644 --- a/src/IconDraftsOutlinedFilled.tsx +++ b/src/IconDraftsOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconDraftsOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconDraftsOutlinedFilled as default } +export default IconDraftsOutlinedFilled diff --git a/src/IconDraftsRounded.tsx b/src/IconDraftsRounded.tsx index e515e326c..f36db2c78 100644 --- a/src/IconDraftsRounded.tsx +++ b/src/IconDraftsRounded.tsx @@ -8,4 +8,4 @@ const IconDraftsRounded: React.FC = ({ ...props }) => ( ) -export { IconDraftsRounded as default } +export default IconDraftsRounded diff --git a/src/IconDraftsRoundedFilled.tsx b/src/IconDraftsRoundedFilled.tsx index f810128a5..2abd1071c 100644 --- a/src/IconDraftsRoundedFilled.tsx +++ b/src/IconDraftsRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconDraftsRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconDraftsRoundedFilled as default } +export default IconDraftsRoundedFilled diff --git a/src/IconDraftsSharp.tsx b/src/IconDraftsSharp.tsx index c263277d5..dc1692902 100644 --- a/src/IconDraftsSharp.tsx +++ b/src/IconDraftsSharp.tsx @@ -8,4 +8,4 @@ const IconDraftsSharp: React.FC = ({ ...props }) => ( ) -export { IconDraftsSharp as default } +export default IconDraftsSharp diff --git a/src/IconDraftsSharpFilled.tsx b/src/IconDraftsSharpFilled.tsx index 4a0c4e72f..9b563c37a 100644 --- a/src/IconDraftsSharpFilled.tsx +++ b/src/IconDraftsSharpFilled.tsx @@ -8,4 +8,4 @@ const IconDraftsSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconDraftsSharpFilled as default } +export default IconDraftsSharpFilled diff --git a/src/IconDragClickOutlined.tsx b/src/IconDragClickOutlined.tsx index 2cf61a198..6d41cd5a1 100644 --- a/src/IconDragClickOutlined.tsx +++ b/src/IconDragClickOutlined.tsx @@ -8,4 +8,4 @@ const IconDragClickOutlined: React.FC = ({ ...props }) => ( ) -export { IconDragClickOutlined as default } +export default IconDragClickOutlined diff --git a/src/IconDragClickOutlinedFilled.tsx b/src/IconDragClickOutlinedFilled.tsx index 60ab10648..294829c4e 100644 --- a/src/IconDragClickOutlinedFilled.tsx +++ b/src/IconDragClickOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconDragClickOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconDragClickOutlinedFilled as default } +export default IconDragClickOutlinedFilled diff --git a/src/IconDragClickRounded.tsx b/src/IconDragClickRounded.tsx index 29fdd561f..e1ad4ea2c 100644 --- a/src/IconDragClickRounded.tsx +++ b/src/IconDragClickRounded.tsx @@ -8,4 +8,4 @@ const IconDragClickRounded: React.FC = ({ ...props }) => ( ) -export { IconDragClickRounded as default } +export default IconDragClickRounded diff --git a/src/IconDragClickRoundedFilled.tsx b/src/IconDragClickRoundedFilled.tsx index 78d6792ea..7c5e194c3 100644 --- a/src/IconDragClickRoundedFilled.tsx +++ b/src/IconDragClickRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconDragClickRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconDragClickRoundedFilled as default } +export default IconDragClickRoundedFilled diff --git a/src/IconDragClickSharp.tsx b/src/IconDragClickSharp.tsx index 5aed8911e..4ea198e58 100644 --- a/src/IconDragClickSharp.tsx +++ b/src/IconDragClickSharp.tsx @@ -8,4 +8,4 @@ const IconDragClickSharp: React.FC = ({ ...props }) => ( ) -export { IconDragClickSharp as default } +export default IconDragClickSharp diff --git a/src/IconDragClickSharpFilled.tsx b/src/IconDragClickSharpFilled.tsx index 1a57fffe2..91fe69738 100644 --- a/src/IconDragClickSharpFilled.tsx +++ b/src/IconDragClickSharpFilled.tsx @@ -8,4 +8,4 @@ const IconDragClickSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconDragClickSharpFilled as default } +export default IconDragClickSharpFilled diff --git a/src/IconDragHandleOutlined.tsx b/src/IconDragHandleOutlined.tsx index 65f687ec4..e8d17c440 100644 --- a/src/IconDragHandleOutlined.tsx +++ b/src/IconDragHandleOutlined.tsx @@ -8,4 +8,4 @@ const IconDragHandleOutlined: React.FC = ({ ...props }) => ( ) -export { IconDragHandleOutlined as default } +export default IconDragHandleOutlined diff --git a/src/IconDragHandleOutlinedFilled.tsx b/src/IconDragHandleOutlinedFilled.tsx index e80609e32..9515182d0 100644 --- a/src/IconDragHandleOutlinedFilled.tsx +++ b/src/IconDragHandleOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconDragHandleOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconDragHandleOutlinedFilled as default } +export default IconDragHandleOutlinedFilled diff --git a/src/IconDragHandleRounded.tsx b/src/IconDragHandleRounded.tsx index 034dd073b..dc9da26fc 100644 --- a/src/IconDragHandleRounded.tsx +++ b/src/IconDragHandleRounded.tsx @@ -8,4 +8,4 @@ const IconDragHandleRounded: React.FC = ({ ...props }) => ( ) -export { IconDragHandleRounded as default } +export default IconDragHandleRounded diff --git a/src/IconDragHandleRoundedFilled.tsx b/src/IconDragHandleRoundedFilled.tsx index a1b809b09..539a61fee 100644 --- a/src/IconDragHandleRoundedFilled.tsx +++ b/src/IconDragHandleRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconDragHandleRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconDragHandleRoundedFilled as default } +export default IconDragHandleRoundedFilled diff --git a/src/IconDragHandleSharp.tsx b/src/IconDragHandleSharp.tsx index 15abdabcd..07ef5628e 100644 --- a/src/IconDragHandleSharp.tsx +++ b/src/IconDragHandleSharp.tsx @@ -8,4 +8,4 @@ const IconDragHandleSharp: React.FC = ({ ...props }) => ( ) -export { IconDragHandleSharp as default } +export default IconDragHandleSharp diff --git a/src/IconDragHandleSharpFilled.tsx b/src/IconDragHandleSharpFilled.tsx index 0caf1a2ce..d5f0755b1 100644 --- a/src/IconDragHandleSharpFilled.tsx +++ b/src/IconDragHandleSharpFilled.tsx @@ -8,4 +8,4 @@ const IconDragHandleSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconDragHandleSharpFilled as default } +export default IconDragHandleSharpFilled diff --git a/src/IconDragIndicatorOutlined.tsx b/src/IconDragIndicatorOutlined.tsx index 29a6e5c31..b9059ed61 100644 --- a/src/IconDragIndicatorOutlined.tsx +++ b/src/IconDragIndicatorOutlined.tsx @@ -8,4 +8,4 @@ const IconDragIndicatorOutlined: React.FC = ({ ...props }) => ( ) -export { IconDragIndicatorOutlined as default } +export default IconDragIndicatorOutlined diff --git a/src/IconDragIndicatorOutlinedFilled.tsx b/src/IconDragIndicatorOutlinedFilled.tsx index ac9b3af47..be0af2d92 100644 --- a/src/IconDragIndicatorOutlinedFilled.tsx +++ b/src/IconDragIndicatorOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconDragIndicatorOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconDragIndicatorOutlinedFilled as default } +export default IconDragIndicatorOutlinedFilled diff --git a/src/IconDragIndicatorRounded.tsx b/src/IconDragIndicatorRounded.tsx index dbfe8e46f..2c9385692 100644 --- a/src/IconDragIndicatorRounded.tsx +++ b/src/IconDragIndicatorRounded.tsx @@ -8,4 +8,4 @@ const IconDragIndicatorRounded: React.FC = ({ ...props }) => ( ) -export { IconDragIndicatorRounded as default } +export default IconDragIndicatorRounded diff --git a/src/IconDragIndicatorRoundedFilled.tsx b/src/IconDragIndicatorRoundedFilled.tsx index 9d324abe1..32801f34a 100644 --- a/src/IconDragIndicatorRoundedFilled.tsx +++ b/src/IconDragIndicatorRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconDragIndicatorRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconDragIndicatorRoundedFilled as default } +export default IconDragIndicatorRoundedFilled diff --git a/src/IconDragIndicatorSharp.tsx b/src/IconDragIndicatorSharp.tsx index 65765f683..5be2fff16 100644 --- a/src/IconDragIndicatorSharp.tsx +++ b/src/IconDragIndicatorSharp.tsx @@ -8,4 +8,4 @@ const IconDragIndicatorSharp: React.FC = ({ ...props }) => ( ) -export { IconDragIndicatorSharp as default } +export default IconDragIndicatorSharp diff --git a/src/IconDragIndicatorSharpFilled.tsx b/src/IconDragIndicatorSharpFilled.tsx index cb0f8f4cc..961ebe3a5 100644 --- a/src/IconDragIndicatorSharpFilled.tsx +++ b/src/IconDragIndicatorSharpFilled.tsx @@ -8,4 +8,4 @@ const IconDragIndicatorSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconDragIndicatorSharpFilled as default } +export default IconDragIndicatorSharpFilled diff --git a/src/IconDragPanOutlined.tsx b/src/IconDragPanOutlined.tsx index 9b307aaf8..d70fd070f 100644 --- a/src/IconDragPanOutlined.tsx +++ b/src/IconDragPanOutlined.tsx @@ -8,4 +8,4 @@ const IconDragPanOutlined: React.FC = ({ ...props }) => ( ) -export { IconDragPanOutlined as default } +export default IconDragPanOutlined diff --git a/src/IconDragPanOutlinedFilled.tsx b/src/IconDragPanOutlinedFilled.tsx index b78e67609..0e5215c35 100644 --- a/src/IconDragPanOutlinedFilled.tsx +++ b/src/IconDragPanOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconDragPanOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconDragPanOutlinedFilled as default } +export default IconDragPanOutlinedFilled diff --git a/src/IconDragPanRounded.tsx b/src/IconDragPanRounded.tsx index 05a1e112d..fd99660b5 100644 --- a/src/IconDragPanRounded.tsx +++ b/src/IconDragPanRounded.tsx @@ -8,4 +8,4 @@ const IconDragPanRounded: React.FC = ({ ...props }) => ( ) -export { IconDragPanRounded as default } +export default IconDragPanRounded diff --git a/src/IconDragPanRoundedFilled.tsx b/src/IconDragPanRoundedFilled.tsx index 3f253c14e..3f57ffae4 100644 --- a/src/IconDragPanRoundedFilled.tsx +++ b/src/IconDragPanRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconDragPanRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconDragPanRoundedFilled as default } +export default IconDragPanRoundedFilled diff --git a/src/IconDragPanSharp.tsx b/src/IconDragPanSharp.tsx index d637816e5..bf8a261e7 100644 --- a/src/IconDragPanSharp.tsx +++ b/src/IconDragPanSharp.tsx @@ -8,4 +8,4 @@ const IconDragPanSharp: React.FC = ({ ...props }) => ( ) -export { IconDragPanSharp as default } +export default IconDragPanSharp diff --git a/src/IconDragPanSharpFilled.tsx b/src/IconDragPanSharpFilled.tsx index 6d00e0e1d..7d5f3abf9 100644 --- a/src/IconDragPanSharpFilled.tsx +++ b/src/IconDragPanSharpFilled.tsx @@ -8,4 +8,4 @@ const IconDragPanSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconDragPanSharpFilled as default } +export default IconDragPanSharpFilled diff --git a/src/IconDrawAbstractOutlined.tsx b/src/IconDrawAbstractOutlined.tsx index 2f3a876ca..0c5edd689 100644 --- a/src/IconDrawAbstractOutlined.tsx +++ b/src/IconDrawAbstractOutlined.tsx @@ -8,4 +8,4 @@ const IconDrawAbstractOutlined: React.FC = ({ ...props }) => ( ) -export { IconDrawAbstractOutlined as default } +export default IconDrawAbstractOutlined diff --git a/src/IconDrawAbstractOutlinedFilled.tsx b/src/IconDrawAbstractOutlinedFilled.tsx index d4cbbd1fa..688477068 100644 --- a/src/IconDrawAbstractOutlinedFilled.tsx +++ b/src/IconDrawAbstractOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconDrawAbstractOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconDrawAbstractOutlinedFilled as default } +export default IconDrawAbstractOutlinedFilled diff --git a/src/IconDrawAbstractRounded.tsx b/src/IconDrawAbstractRounded.tsx index 27fcf1726..08d85f95c 100644 --- a/src/IconDrawAbstractRounded.tsx +++ b/src/IconDrawAbstractRounded.tsx @@ -8,4 +8,4 @@ const IconDrawAbstractRounded: React.FC = ({ ...props }) => ( ) -export { IconDrawAbstractRounded as default } +export default IconDrawAbstractRounded diff --git a/src/IconDrawAbstractRoundedFilled.tsx b/src/IconDrawAbstractRoundedFilled.tsx index 87d2f5c23..7b2de95cc 100644 --- a/src/IconDrawAbstractRoundedFilled.tsx +++ b/src/IconDrawAbstractRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconDrawAbstractRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconDrawAbstractRoundedFilled as default } +export default IconDrawAbstractRoundedFilled diff --git a/src/IconDrawAbstractSharp.tsx b/src/IconDrawAbstractSharp.tsx index 0a4484293..f4bf133bb 100644 --- a/src/IconDrawAbstractSharp.tsx +++ b/src/IconDrawAbstractSharp.tsx @@ -8,4 +8,4 @@ const IconDrawAbstractSharp: React.FC = ({ ...props }) => ( ) -export { IconDrawAbstractSharp as default } +export default IconDrawAbstractSharp diff --git a/src/IconDrawAbstractSharpFilled.tsx b/src/IconDrawAbstractSharpFilled.tsx index 076bb9702..a5bfc8cd7 100644 --- a/src/IconDrawAbstractSharpFilled.tsx +++ b/src/IconDrawAbstractSharpFilled.tsx @@ -8,4 +8,4 @@ const IconDrawAbstractSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconDrawAbstractSharpFilled as default } +export default IconDrawAbstractSharpFilled diff --git a/src/IconDrawCollageOutlined.tsx b/src/IconDrawCollageOutlined.tsx index 4ef2957ae..f31afd6da 100644 --- a/src/IconDrawCollageOutlined.tsx +++ b/src/IconDrawCollageOutlined.tsx @@ -8,4 +8,4 @@ const IconDrawCollageOutlined: React.FC = ({ ...props }) => ( ) -export { IconDrawCollageOutlined as default } +export default IconDrawCollageOutlined diff --git a/src/IconDrawCollageOutlinedFilled.tsx b/src/IconDrawCollageOutlinedFilled.tsx index 9f7a2ac00..71b4d4261 100644 --- a/src/IconDrawCollageOutlinedFilled.tsx +++ b/src/IconDrawCollageOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconDrawCollageOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconDrawCollageOutlinedFilled as default } +export default IconDrawCollageOutlinedFilled diff --git a/src/IconDrawCollageRounded.tsx b/src/IconDrawCollageRounded.tsx index 85786521d..b1c713ed6 100644 --- a/src/IconDrawCollageRounded.tsx +++ b/src/IconDrawCollageRounded.tsx @@ -8,4 +8,4 @@ const IconDrawCollageRounded: React.FC = ({ ...props }) => ( ) -export { IconDrawCollageRounded as default } +export default IconDrawCollageRounded diff --git a/src/IconDrawCollageRoundedFilled.tsx b/src/IconDrawCollageRoundedFilled.tsx index dc5359dbc..ca641c5b3 100644 --- a/src/IconDrawCollageRoundedFilled.tsx +++ b/src/IconDrawCollageRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconDrawCollageRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconDrawCollageRoundedFilled as default } +export default IconDrawCollageRoundedFilled diff --git a/src/IconDrawCollageSharp.tsx b/src/IconDrawCollageSharp.tsx index 3350da79e..7664d8154 100644 --- a/src/IconDrawCollageSharp.tsx +++ b/src/IconDrawCollageSharp.tsx @@ -8,4 +8,4 @@ const IconDrawCollageSharp: React.FC = ({ ...props }) => ( ) -export { IconDrawCollageSharp as default } +export default IconDrawCollageSharp diff --git a/src/IconDrawCollageSharpFilled.tsx b/src/IconDrawCollageSharpFilled.tsx index bff85ef7b..d40734dd9 100644 --- a/src/IconDrawCollageSharpFilled.tsx +++ b/src/IconDrawCollageSharpFilled.tsx @@ -8,4 +8,4 @@ const IconDrawCollageSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconDrawCollageSharpFilled as default } +export default IconDrawCollageSharpFilled diff --git a/src/IconDrawOutlined.tsx b/src/IconDrawOutlined.tsx index d6b638579..9ad8fbb78 100644 --- a/src/IconDrawOutlined.tsx +++ b/src/IconDrawOutlined.tsx @@ -8,4 +8,4 @@ const IconDrawOutlined: React.FC = ({ ...props }) => ( ) -export { IconDrawOutlined as default } +export default IconDrawOutlined diff --git a/src/IconDrawOutlinedFilled.tsx b/src/IconDrawOutlinedFilled.tsx index 0f33b2b87..8a7aa0c7d 100644 --- a/src/IconDrawOutlinedFilled.tsx +++ b/src/IconDrawOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconDrawOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconDrawOutlinedFilled as default } +export default IconDrawOutlinedFilled diff --git a/src/IconDrawRounded.tsx b/src/IconDrawRounded.tsx index 8f5261026..d26274564 100644 --- a/src/IconDrawRounded.tsx +++ b/src/IconDrawRounded.tsx @@ -8,4 +8,4 @@ const IconDrawRounded: React.FC = ({ ...props }) => ( ) -export { IconDrawRounded as default } +export default IconDrawRounded diff --git a/src/IconDrawRoundedFilled.tsx b/src/IconDrawRoundedFilled.tsx index 3e40d2b08..34e66611e 100644 --- a/src/IconDrawRoundedFilled.tsx +++ b/src/IconDrawRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconDrawRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconDrawRoundedFilled as default } +export default IconDrawRoundedFilled diff --git a/src/IconDrawSharp.tsx b/src/IconDrawSharp.tsx index e75fc23db..aed77741c 100644 --- a/src/IconDrawSharp.tsx +++ b/src/IconDrawSharp.tsx @@ -8,4 +8,4 @@ const IconDrawSharp: React.FC = ({ ...props }) => ( ) -export { IconDrawSharp as default } +export default IconDrawSharp diff --git a/src/IconDrawSharpFilled.tsx b/src/IconDrawSharpFilled.tsx index 38a1844ac..51cfa42a0 100644 --- a/src/IconDrawSharpFilled.tsx +++ b/src/IconDrawSharpFilled.tsx @@ -8,4 +8,4 @@ const IconDrawSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconDrawSharpFilled as default } +export default IconDrawSharpFilled diff --git a/src/IconDresserOutlined.tsx b/src/IconDresserOutlined.tsx index 43056968a..feaf05917 100644 --- a/src/IconDresserOutlined.tsx +++ b/src/IconDresserOutlined.tsx @@ -8,4 +8,4 @@ const IconDresserOutlined: React.FC = ({ ...props }) => ( ) -export { IconDresserOutlined as default } +export default IconDresserOutlined diff --git a/src/IconDresserOutlinedFilled.tsx b/src/IconDresserOutlinedFilled.tsx index 2f71343a7..a1be952bd 100644 --- a/src/IconDresserOutlinedFilled.tsx +++ b/src/IconDresserOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconDresserOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconDresserOutlinedFilled as default } +export default IconDresserOutlinedFilled diff --git a/src/IconDresserRounded.tsx b/src/IconDresserRounded.tsx index e6c2a7e49..026de9eb1 100644 --- a/src/IconDresserRounded.tsx +++ b/src/IconDresserRounded.tsx @@ -8,4 +8,4 @@ const IconDresserRounded: React.FC = ({ ...props }) => ( ) -export { IconDresserRounded as default } +export default IconDresserRounded diff --git a/src/IconDresserRoundedFilled.tsx b/src/IconDresserRoundedFilled.tsx index 2d3d894b2..9da47865e 100644 --- a/src/IconDresserRoundedFilled.tsx +++ b/src/IconDresserRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconDresserRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconDresserRoundedFilled as default } +export default IconDresserRoundedFilled diff --git a/src/IconDresserSharp.tsx b/src/IconDresserSharp.tsx index f5093fb14..1dd0627c6 100644 --- a/src/IconDresserSharp.tsx +++ b/src/IconDresserSharp.tsx @@ -8,4 +8,4 @@ const IconDresserSharp: React.FC = ({ ...props }) => ( ) -export { IconDresserSharp as default } +export default IconDresserSharp diff --git a/src/IconDresserSharpFilled.tsx b/src/IconDresserSharpFilled.tsx index 30fa92c0b..bcd4334cd 100644 --- a/src/IconDresserSharpFilled.tsx +++ b/src/IconDresserSharpFilled.tsx @@ -8,4 +8,4 @@ const IconDresserSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconDresserSharpFilled as default } +export default IconDresserSharpFilled diff --git a/src/IconDriveExportOutlined.tsx b/src/IconDriveExportOutlined.tsx index dbd2dee0f..4f5a955c6 100644 --- a/src/IconDriveExportOutlined.tsx +++ b/src/IconDriveExportOutlined.tsx @@ -8,4 +8,4 @@ const IconDriveExportOutlined: React.FC = ({ ...props }) => ( ) -export { IconDriveExportOutlined as default } +export default IconDriveExportOutlined diff --git a/src/IconDriveExportOutlinedFilled.tsx b/src/IconDriveExportOutlinedFilled.tsx index 83fd70415..282f811df 100644 --- a/src/IconDriveExportOutlinedFilled.tsx +++ b/src/IconDriveExportOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconDriveExportOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconDriveExportOutlinedFilled as default } +export default IconDriveExportOutlinedFilled diff --git a/src/IconDriveExportRounded.tsx b/src/IconDriveExportRounded.tsx index 60120f3cd..83d4eaba2 100644 --- a/src/IconDriveExportRounded.tsx +++ b/src/IconDriveExportRounded.tsx @@ -8,4 +8,4 @@ const IconDriveExportRounded: React.FC = ({ ...props }) => ( ) -export { IconDriveExportRounded as default } +export default IconDriveExportRounded diff --git a/src/IconDriveExportRoundedFilled.tsx b/src/IconDriveExportRoundedFilled.tsx index b3906e909..2eb71abc6 100644 --- a/src/IconDriveExportRoundedFilled.tsx +++ b/src/IconDriveExportRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconDriveExportRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconDriveExportRoundedFilled as default } +export default IconDriveExportRoundedFilled diff --git a/src/IconDriveExportSharp.tsx b/src/IconDriveExportSharp.tsx index cb0b8aa1a..15e9e4d99 100644 --- a/src/IconDriveExportSharp.tsx +++ b/src/IconDriveExportSharp.tsx @@ -8,4 +8,4 @@ const IconDriveExportSharp: React.FC = ({ ...props }) => ( ) -export { IconDriveExportSharp as default } +export default IconDriveExportSharp diff --git a/src/IconDriveExportSharpFilled.tsx b/src/IconDriveExportSharpFilled.tsx index 9a112f691..f06bf168d 100644 --- a/src/IconDriveExportSharpFilled.tsx +++ b/src/IconDriveExportSharpFilled.tsx @@ -8,4 +8,4 @@ const IconDriveExportSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconDriveExportSharpFilled as default } +export default IconDriveExportSharpFilled diff --git a/src/IconDriveFileMoveOutlined.tsx b/src/IconDriveFileMoveOutlined.tsx index d040a8452..4f08ee1c8 100644 --- a/src/IconDriveFileMoveOutlined.tsx +++ b/src/IconDriveFileMoveOutlined.tsx @@ -8,4 +8,4 @@ const IconDriveFileMoveOutlined: React.FC = ({ ...props }) => ( ) -export { IconDriveFileMoveOutlined as default } +export default IconDriveFileMoveOutlined diff --git a/src/IconDriveFileMoveOutlinedFilled.tsx b/src/IconDriveFileMoveOutlinedFilled.tsx index 022b8ca03..5f4b04eda 100644 --- a/src/IconDriveFileMoveOutlinedFilled.tsx +++ b/src/IconDriveFileMoveOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconDriveFileMoveOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconDriveFileMoveOutlinedFilled as default } +export default IconDriveFileMoveOutlinedFilled diff --git a/src/IconDriveFileMoveRounded.tsx b/src/IconDriveFileMoveRounded.tsx index db7128df0..05a665302 100644 --- a/src/IconDriveFileMoveRounded.tsx +++ b/src/IconDriveFileMoveRounded.tsx @@ -8,4 +8,4 @@ const IconDriveFileMoveRounded: React.FC = ({ ...props }) => ( ) -export { IconDriveFileMoveRounded as default } +export default IconDriveFileMoveRounded diff --git a/src/IconDriveFileMoveRoundedFilled.tsx b/src/IconDriveFileMoveRoundedFilled.tsx index 2d70987fe..35c0b9b40 100644 --- a/src/IconDriveFileMoveRoundedFilled.tsx +++ b/src/IconDriveFileMoveRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconDriveFileMoveRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconDriveFileMoveRoundedFilled as default } +export default IconDriveFileMoveRoundedFilled diff --git a/src/IconDriveFileMoveSharp.tsx b/src/IconDriveFileMoveSharp.tsx index 7cf018a7d..67fc50b67 100644 --- a/src/IconDriveFileMoveSharp.tsx +++ b/src/IconDriveFileMoveSharp.tsx @@ -8,4 +8,4 @@ const IconDriveFileMoveSharp: React.FC = ({ ...props }) => ( ) -export { IconDriveFileMoveSharp as default } +export default IconDriveFileMoveSharp diff --git a/src/IconDriveFileMoveSharpFilled.tsx b/src/IconDriveFileMoveSharpFilled.tsx index 71a36a516..06ac4728f 100644 --- a/src/IconDriveFileMoveSharpFilled.tsx +++ b/src/IconDriveFileMoveSharpFilled.tsx @@ -8,4 +8,4 @@ const IconDriveFileMoveSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconDriveFileMoveSharpFilled as default } +export default IconDriveFileMoveSharpFilled diff --git a/src/IconDriveFolderUploadOutlined.tsx b/src/IconDriveFolderUploadOutlined.tsx index 4eb9cc2a9..e60c6994a 100644 --- a/src/IconDriveFolderUploadOutlined.tsx +++ b/src/IconDriveFolderUploadOutlined.tsx @@ -8,4 +8,4 @@ const IconDriveFolderUploadOutlined: React.FC = ({ ...props }) => ( ) -export { IconDriveFolderUploadOutlined as default } +export default IconDriveFolderUploadOutlined diff --git a/src/IconDriveFolderUploadOutlinedFilled.tsx b/src/IconDriveFolderUploadOutlinedFilled.tsx index 77d25b437..272bad774 100644 --- a/src/IconDriveFolderUploadOutlinedFilled.tsx +++ b/src/IconDriveFolderUploadOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconDriveFolderUploadOutlinedFilled: React.FC = ({ ) -export { IconDriveFolderUploadOutlinedFilled as default } +export default IconDriveFolderUploadOutlinedFilled diff --git a/src/IconDriveFolderUploadRounded.tsx b/src/IconDriveFolderUploadRounded.tsx index 11550a85f..429280d9c 100644 --- a/src/IconDriveFolderUploadRounded.tsx +++ b/src/IconDriveFolderUploadRounded.tsx @@ -8,4 +8,4 @@ const IconDriveFolderUploadRounded: React.FC = ({ ...props }) => ( ) -export { IconDriveFolderUploadRounded as default } +export default IconDriveFolderUploadRounded diff --git a/src/IconDriveFolderUploadRoundedFilled.tsx b/src/IconDriveFolderUploadRoundedFilled.tsx index b6dd44762..d274688e6 100644 --- a/src/IconDriveFolderUploadRoundedFilled.tsx +++ b/src/IconDriveFolderUploadRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconDriveFolderUploadRoundedFilled: React.FC = ({ ) -export { IconDriveFolderUploadRoundedFilled as default } +export default IconDriveFolderUploadRoundedFilled diff --git a/src/IconDriveFolderUploadSharp.tsx b/src/IconDriveFolderUploadSharp.tsx index fd8ac1ac6..338248188 100644 --- a/src/IconDriveFolderUploadSharp.tsx +++ b/src/IconDriveFolderUploadSharp.tsx @@ -8,4 +8,4 @@ const IconDriveFolderUploadSharp: React.FC = ({ ...props }) => ( ) -export { IconDriveFolderUploadSharp as default } +export default IconDriveFolderUploadSharp diff --git a/src/IconDriveFolderUploadSharpFilled.tsx b/src/IconDriveFolderUploadSharpFilled.tsx index 32d716fb5..b31c7fdfd 100644 --- a/src/IconDriveFolderUploadSharpFilled.tsx +++ b/src/IconDriveFolderUploadSharpFilled.tsx @@ -10,4 +10,4 @@ const IconDriveFolderUploadSharpFilled: React.FC = ({ ) -export { IconDriveFolderUploadSharpFilled as default } +export default IconDriveFolderUploadSharpFilled diff --git a/src/IconDropdownOutlined.tsx b/src/IconDropdownOutlined.tsx index 551ed0286..0b1c877d2 100644 --- a/src/IconDropdownOutlined.tsx +++ b/src/IconDropdownOutlined.tsx @@ -8,4 +8,4 @@ const IconDropdownOutlined: React.FC = ({ ...props }) => ( ) -export { IconDropdownOutlined as default } +export default IconDropdownOutlined diff --git a/src/IconDropdownOutlinedFilled.tsx b/src/IconDropdownOutlinedFilled.tsx index d90236e9a..e2987efef 100644 --- a/src/IconDropdownOutlinedFilled.tsx +++ b/src/IconDropdownOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconDropdownOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconDropdownOutlinedFilled as default } +export default IconDropdownOutlinedFilled diff --git a/src/IconDropdownRounded.tsx b/src/IconDropdownRounded.tsx index cecd4acd6..10a2cca46 100644 --- a/src/IconDropdownRounded.tsx +++ b/src/IconDropdownRounded.tsx @@ -8,4 +8,4 @@ const IconDropdownRounded: React.FC = ({ ...props }) => ( ) -export { IconDropdownRounded as default } +export default IconDropdownRounded diff --git a/src/IconDropdownRoundedFilled.tsx b/src/IconDropdownRoundedFilled.tsx index ba4ddd0dc..8e6dd7132 100644 --- a/src/IconDropdownRoundedFilled.tsx +++ b/src/IconDropdownRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconDropdownRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconDropdownRoundedFilled as default } +export default IconDropdownRoundedFilled diff --git a/src/IconDropdownSharp.tsx b/src/IconDropdownSharp.tsx index dc2b12ffb..a531402ec 100644 --- a/src/IconDropdownSharp.tsx +++ b/src/IconDropdownSharp.tsx @@ -8,4 +8,4 @@ const IconDropdownSharp: React.FC = ({ ...props }) => ( ) -export { IconDropdownSharp as default } +export default IconDropdownSharp diff --git a/src/IconDropdownSharpFilled.tsx b/src/IconDropdownSharpFilled.tsx index afd8fc753..a4b1237cd 100644 --- a/src/IconDropdownSharpFilled.tsx +++ b/src/IconDropdownSharpFilled.tsx @@ -8,4 +8,4 @@ const IconDropdownSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconDropdownSharpFilled as default } +export default IconDropdownSharpFilled diff --git a/src/IconDryCleaningOutlined.tsx b/src/IconDryCleaningOutlined.tsx index 59f55fa1f..a9a6d1717 100644 --- a/src/IconDryCleaningOutlined.tsx +++ b/src/IconDryCleaningOutlined.tsx @@ -8,4 +8,4 @@ const IconDryCleaningOutlined: React.FC = ({ ...props }) => ( ) -export { IconDryCleaningOutlined as default } +export default IconDryCleaningOutlined diff --git a/src/IconDryCleaningOutlinedFilled.tsx b/src/IconDryCleaningOutlinedFilled.tsx index 961e2834d..80f806f33 100644 --- a/src/IconDryCleaningOutlinedFilled.tsx +++ b/src/IconDryCleaningOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconDryCleaningOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconDryCleaningOutlinedFilled as default } +export default IconDryCleaningOutlinedFilled diff --git a/src/IconDryCleaningRounded.tsx b/src/IconDryCleaningRounded.tsx index 5dec013e9..e85d77b1f 100644 --- a/src/IconDryCleaningRounded.tsx +++ b/src/IconDryCleaningRounded.tsx @@ -8,4 +8,4 @@ const IconDryCleaningRounded: React.FC = ({ ...props }) => ( ) -export { IconDryCleaningRounded as default } +export default IconDryCleaningRounded diff --git a/src/IconDryCleaningRoundedFilled.tsx b/src/IconDryCleaningRoundedFilled.tsx index a41ef4b96..ca0f69857 100644 --- a/src/IconDryCleaningRoundedFilled.tsx +++ b/src/IconDryCleaningRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconDryCleaningRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconDryCleaningRoundedFilled as default } +export default IconDryCleaningRoundedFilled diff --git a/src/IconDryCleaningSharp.tsx b/src/IconDryCleaningSharp.tsx index 94bbdcea2..a62e544fc 100644 --- a/src/IconDryCleaningSharp.tsx +++ b/src/IconDryCleaningSharp.tsx @@ -8,4 +8,4 @@ const IconDryCleaningSharp: React.FC = ({ ...props }) => ( ) -export { IconDryCleaningSharp as default } +export default IconDryCleaningSharp diff --git a/src/IconDryCleaningSharpFilled.tsx b/src/IconDryCleaningSharpFilled.tsx index 73d143eb3..c6269de93 100644 --- a/src/IconDryCleaningSharpFilled.tsx +++ b/src/IconDryCleaningSharpFilled.tsx @@ -8,4 +8,4 @@ const IconDryCleaningSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconDryCleaningSharpFilled as default } +export default IconDryCleaningSharpFilled diff --git a/src/IconDryOutlined.tsx b/src/IconDryOutlined.tsx index 3c8dd0d0a..3d9a96b95 100644 --- a/src/IconDryOutlined.tsx +++ b/src/IconDryOutlined.tsx @@ -8,4 +8,4 @@ const IconDryOutlined: React.FC = ({ ...props }) => ( ) -export { IconDryOutlined as default } +export default IconDryOutlined diff --git a/src/IconDryOutlinedFilled.tsx b/src/IconDryOutlinedFilled.tsx index 1357950a8..6e33ac093 100644 --- a/src/IconDryOutlinedFilled.tsx +++ b/src/IconDryOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconDryOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconDryOutlinedFilled as default } +export default IconDryOutlinedFilled diff --git a/src/IconDryRounded.tsx b/src/IconDryRounded.tsx index c44258c7e..d970458c5 100644 --- a/src/IconDryRounded.tsx +++ b/src/IconDryRounded.tsx @@ -8,4 +8,4 @@ const IconDryRounded: React.FC = ({ ...props }) => ( ) -export { IconDryRounded as default } +export default IconDryRounded diff --git a/src/IconDryRoundedFilled.tsx b/src/IconDryRoundedFilled.tsx index db9175e71..4d50385f2 100644 --- a/src/IconDryRoundedFilled.tsx +++ b/src/IconDryRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconDryRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconDryRoundedFilled as default } +export default IconDryRoundedFilled diff --git a/src/IconDrySharp.tsx b/src/IconDrySharp.tsx index 3d2b750d2..ee787e75d 100644 --- a/src/IconDrySharp.tsx +++ b/src/IconDrySharp.tsx @@ -8,4 +8,4 @@ const IconDrySharp: React.FC = ({ ...props }) => ( ) -export { IconDrySharp as default } +export default IconDrySharp diff --git a/src/IconDrySharpFilled.tsx b/src/IconDrySharpFilled.tsx index 5594a0454..43b01c3fc 100644 --- a/src/IconDrySharpFilled.tsx +++ b/src/IconDrySharpFilled.tsx @@ -8,4 +8,4 @@ const IconDrySharpFilled: React.FC = ({ ...props }) => ( ) -export { IconDrySharpFilled as default } +export default IconDrySharpFilled diff --git a/src/IconDualScreenOutlined.tsx b/src/IconDualScreenOutlined.tsx index 38e4b6788..d3713681b 100644 --- a/src/IconDualScreenOutlined.tsx +++ b/src/IconDualScreenOutlined.tsx @@ -8,4 +8,4 @@ const IconDualScreenOutlined: React.FC = ({ ...props }) => ( ) -export { IconDualScreenOutlined as default } +export default IconDualScreenOutlined diff --git a/src/IconDualScreenOutlinedFilled.tsx b/src/IconDualScreenOutlinedFilled.tsx index d953073b3..a59cd545d 100644 --- a/src/IconDualScreenOutlinedFilled.tsx +++ b/src/IconDualScreenOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconDualScreenOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconDualScreenOutlinedFilled as default } +export default IconDualScreenOutlinedFilled diff --git a/src/IconDualScreenRounded.tsx b/src/IconDualScreenRounded.tsx index db0ced8d9..a4928f4b9 100644 --- a/src/IconDualScreenRounded.tsx +++ b/src/IconDualScreenRounded.tsx @@ -8,4 +8,4 @@ const IconDualScreenRounded: React.FC = ({ ...props }) => ( ) -export { IconDualScreenRounded as default } +export default IconDualScreenRounded diff --git a/src/IconDualScreenRoundedFilled.tsx b/src/IconDualScreenRoundedFilled.tsx index 211648f4b..f14ed2956 100644 --- a/src/IconDualScreenRoundedFilled.tsx +++ b/src/IconDualScreenRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconDualScreenRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconDualScreenRoundedFilled as default } +export default IconDualScreenRoundedFilled diff --git a/src/IconDualScreenSharp.tsx b/src/IconDualScreenSharp.tsx index 581edd9dd..d58597b87 100644 --- a/src/IconDualScreenSharp.tsx +++ b/src/IconDualScreenSharp.tsx @@ -8,4 +8,4 @@ const IconDualScreenSharp: React.FC = ({ ...props }) => ( ) -export { IconDualScreenSharp as default } +export default IconDualScreenSharp diff --git a/src/IconDualScreenSharpFilled.tsx b/src/IconDualScreenSharpFilled.tsx index d09dff457..43d3831cf 100644 --- a/src/IconDualScreenSharpFilled.tsx +++ b/src/IconDualScreenSharpFilled.tsx @@ -8,4 +8,4 @@ const IconDualScreenSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconDualScreenSharpFilled as default } +export default IconDualScreenSharpFilled diff --git a/src/IconDuoOutlined.tsx b/src/IconDuoOutlined.tsx index c82f859a6..189268683 100644 --- a/src/IconDuoOutlined.tsx +++ b/src/IconDuoOutlined.tsx @@ -8,4 +8,4 @@ const IconDuoOutlined: React.FC = ({ ...props }) => ( ) -export { IconDuoOutlined as default } +export default IconDuoOutlined diff --git a/src/IconDuoOutlinedFilled.tsx b/src/IconDuoOutlinedFilled.tsx index cbf134805..65af83a10 100644 --- a/src/IconDuoOutlinedFilled.tsx +++ b/src/IconDuoOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconDuoOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconDuoOutlinedFilled as default } +export default IconDuoOutlinedFilled diff --git a/src/IconDuoRounded.tsx b/src/IconDuoRounded.tsx index adfb651c1..722886a10 100644 --- a/src/IconDuoRounded.tsx +++ b/src/IconDuoRounded.tsx @@ -8,4 +8,4 @@ const IconDuoRounded: React.FC = ({ ...props }) => ( ) -export { IconDuoRounded as default } +export default IconDuoRounded diff --git a/src/IconDuoRoundedFilled.tsx b/src/IconDuoRoundedFilled.tsx index a5c735c50..1abd8863c 100644 --- a/src/IconDuoRoundedFilled.tsx +++ b/src/IconDuoRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconDuoRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconDuoRoundedFilled as default } +export default IconDuoRoundedFilled diff --git a/src/IconDuoSharp.tsx b/src/IconDuoSharp.tsx index 4f3268ac9..8f57b88f0 100644 --- a/src/IconDuoSharp.tsx +++ b/src/IconDuoSharp.tsx @@ -8,4 +8,4 @@ const IconDuoSharp: React.FC = ({ ...props }) => ( ) -export { IconDuoSharp as default } +export default IconDuoSharp diff --git a/src/IconDuoSharpFilled.tsx b/src/IconDuoSharpFilled.tsx index e10432c2c..1c2b85864 100644 --- a/src/IconDuoSharpFilled.tsx +++ b/src/IconDuoSharpFilled.tsx @@ -8,4 +8,4 @@ const IconDuoSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconDuoSharpFilled as default } +export default IconDuoSharpFilled diff --git a/src/IconDvrOutlined.tsx b/src/IconDvrOutlined.tsx index 523b20f77..cfe24f369 100644 --- a/src/IconDvrOutlined.tsx +++ b/src/IconDvrOutlined.tsx @@ -8,4 +8,4 @@ const IconDvrOutlined: React.FC = ({ ...props }) => ( ) -export { IconDvrOutlined as default } +export default IconDvrOutlined diff --git a/src/IconDvrOutlinedFilled.tsx b/src/IconDvrOutlinedFilled.tsx index cd83ec816..3f659a8ed 100644 --- a/src/IconDvrOutlinedFilled.tsx +++ b/src/IconDvrOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconDvrOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconDvrOutlinedFilled as default } +export default IconDvrOutlinedFilled diff --git a/src/IconDvrRounded.tsx b/src/IconDvrRounded.tsx index be6bad688..bc50b3aaa 100644 --- a/src/IconDvrRounded.tsx +++ b/src/IconDvrRounded.tsx @@ -8,4 +8,4 @@ const IconDvrRounded: React.FC = ({ ...props }) => ( ) -export { IconDvrRounded as default } +export default IconDvrRounded diff --git a/src/IconDvrRoundedFilled.tsx b/src/IconDvrRoundedFilled.tsx index 8eb6fbede..1b9f3d5f4 100644 --- a/src/IconDvrRoundedFilled.tsx +++ b/src/IconDvrRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconDvrRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconDvrRoundedFilled as default } +export default IconDvrRoundedFilled diff --git a/src/IconDvrSharp.tsx b/src/IconDvrSharp.tsx index da352b894..c4e6ade97 100644 --- a/src/IconDvrSharp.tsx +++ b/src/IconDvrSharp.tsx @@ -8,4 +8,4 @@ const IconDvrSharp: React.FC = ({ ...props }) => ( ) -export { IconDvrSharp as default } +export default IconDvrSharp diff --git a/src/IconDvrSharpFilled.tsx b/src/IconDvrSharpFilled.tsx index 680355d65..9723763cd 100644 --- a/src/IconDvrSharpFilled.tsx +++ b/src/IconDvrSharpFilled.tsx @@ -8,4 +8,4 @@ const IconDvrSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconDvrSharpFilled as default } +export default IconDvrSharpFilled diff --git a/src/IconDynamicFeedOutlined.tsx b/src/IconDynamicFeedOutlined.tsx index 8c4e1a255..29ead092d 100644 --- a/src/IconDynamicFeedOutlined.tsx +++ b/src/IconDynamicFeedOutlined.tsx @@ -8,4 +8,4 @@ const IconDynamicFeedOutlined: React.FC = ({ ...props }) => ( ) -export { IconDynamicFeedOutlined as default } +export default IconDynamicFeedOutlined diff --git a/src/IconDynamicFeedOutlinedFilled.tsx b/src/IconDynamicFeedOutlinedFilled.tsx index c920e5114..30ba60fe1 100644 --- a/src/IconDynamicFeedOutlinedFilled.tsx +++ b/src/IconDynamicFeedOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconDynamicFeedOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconDynamicFeedOutlinedFilled as default } +export default IconDynamicFeedOutlinedFilled diff --git a/src/IconDynamicFeedRounded.tsx b/src/IconDynamicFeedRounded.tsx index 7c0019af4..bfaa0df9f 100644 --- a/src/IconDynamicFeedRounded.tsx +++ b/src/IconDynamicFeedRounded.tsx @@ -8,4 +8,4 @@ const IconDynamicFeedRounded: React.FC = ({ ...props }) => ( ) -export { IconDynamicFeedRounded as default } +export default IconDynamicFeedRounded diff --git a/src/IconDynamicFeedRoundedFilled.tsx b/src/IconDynamicFeedRoundedFilled.tsx index 59b747f40..3083271a6 100644 --- a/src/IconDynamicFeedRoundedFilled.tsx +++ b/src/IconDynamicFeedRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconDynamicFeedRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconDynamicFeedRoundedFilled as default } +export default IconDynamicFeedRoundedFilled diff --git a/src/IconDynamicFeedSharp.tsx b/src/IconDynamicFeedSharp.tsx index 99b8792af..4549660d5 100644 --- a/src/IconDynamicFeedSharp.tsx +++ b/src/IconDynamicFeedSharp.tsx @@ -8,4 +8,4 @@ const IconDynamicFeedSharp: React.FC = ({ ...props }) => ( ) -export { IconDynamicFeedSharp as default } +export default IconDynamicFeedSharp diff --git a/src/IconDynamicFeedSharpFilled.tsx b/src/IconDynamicFeedSharpFilled.tsx index 45f7e2205..938173270 100644 --- a/src/IconDynamicFeedSharpFilled.tsx +++ b/src/IconDynamicFeedSharpFilled.tsx @@ -8,4 +8,4 @@ const IconDynamicFeedSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconDynamicFeedSharpFilled as default } +export default IconDynamicFeedSharpFilled diff --git a/src/IconDynamicFormOutlined.tsx b/src/IconDynamicFormOutlined.tsx index 7402f744b..29474e94b 100644 --- a/src/IconDynamicFormOutlined.tsx +++ b/src/IconDynamicFormOutlined.tsx @@ -8,4 +8,4 @@ const IconDynamicFormOutlined: React.FC = ({ ...props }) => ( ) -export { IconDynamicFormOutlined as default } +export default IconDynamicFormOutlined diff --git a/src/IconDynamicFormOutlinedFilled.tsx b/src/IconDynamicFormOutlinedFilled.tsx index 34d55fdea..1f0f70978 100644 --- a/src/IconDynamicFormOutlinedFilled.tsx +++ b/src/IconDynamicFormOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconDynamicFormOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconDynamicFormOutlinedFilled as default } +export default IconDynamicFormOutlinedFilled diff --git a/src/IconDynamicFormRounded.tsx b/src/IconDynamicFormRounded.tsx index c8d331860..983bc6cd9 100644 --- a/src/IconDynamicFormRounded.tsx +++ b/src/IconDynamicFormRounded.tsx @@ -8,4 +8,4 @@ const IconDynamicFormRounded: React.FC = ({ ...props }) => ( ) -export { IconDynamicFormRounded as default } +export default IconDynamicFormRounded diff --git a/src/IconDynamicFormRoundedFilled.tsx b/src/IconDynamicFormRoundedFilled.tsx index 83ba6d18b..0a22ed3ac 100644 --- a/src/IconDynamicFormRoundedFilled.tsx +++ b/src/IconDynamicFormRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconDynamicFormRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconDynamicFormRoundedFilled as default } +export default IconDynamicFormRoundedFilled diff --git a/src/IconDynamicFormSharp.tsx b/src/IconDynamicFormSharp.tsx index ba7578590..8d5fbc584 100644 --- a/src/IconDynamicFormSharp.tsx +++ b/src/IconDynamicFormSharp.tsx @@ -8,4 +8,4 @@ const IconDynamicFormSharp: React.FC = ({ ...props }) => ( ) -export { IconDynamicFormSharp as default } +export default IconDynamicFormSharp diff --git a/src/IconDynamicFormSharpFilled.tsx b/src/IconDynamicFormSharpFilled.tsx index 40927d6c8..83cefeb5d 100644 --- a/src/IconDynamicFormSharpFilled.tsx +++ b/src/IconDynamicFormSharpFilled.tsx @@ -8,4 +8,4 @@ const IconDynamicFormSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconDynamicFormSharpFilled as default } +export default IconDynamicFormSharpFilled diff --git a/src/IconE911AvatarOutlined.tsx b/src/IconE911AvatarOutlined.tsx index e04df01bb..22e47e8ad 100644 --- a/src/IconE911AvatarOutlined.tsx +++ b/src/IconE911AvatarOutlined.tsx @@ -8,4 +8,4 @@ const IconE911AvatarOutlined: React.FC = ({ ...props }) => ( ) -export { IconE911AvatarOutlined as default } +export default IconE911AvatarOutlined diff --git a/src/IconE911AvatarOutlinedFilled.tsx b/src/IconE911AvatarOutlinedFilled.tsx index ce0357231..54d001428 100644 --- a/src/IconE911AvatarOutlinedFilled.tsx +++ b/src/IconE911AvatarOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconE911AvatarOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconE911AvatarOutlinedFilled as default } +export default IconE911AvatarOutlinedFilled diff --git a/src/IconE911AvatarRounded.tsx b/src/IconE911AvatarRounded.tsx index db79baa60..9de2831ed 100644 --- a/src/IconE911AvatarRounded.tsx +++ b/src/IconE911AvatarRounded.tsx @@ -8,4 +8,4 @@ const IconE911AvatarRounded: React.FC = ({ ...props }) => ( ) -export { IconE911AvatarRounded as default } +export default IconE911AvatarRounded diff --git a/src/IconE911AvatarRoundedFilled.tsx b/src/IconE911AvatarRoundedFilled.tsx index e99bd4cef..e43e3cfe5 100644 --- a/src/IconE911AvatarRoundedFilled.tsx +++ b/src/IconE911AvatarRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconE911AvatarRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconE911AvatarRoundedFilled as default } +export default IconE911AvatarRoundedFilled diff --git a/src/IconE911AvatarSharp.tsx b/src/IconE911AvatarSharp.tsx index 893f4c48d..417edf900 100644 --- a/src/IconE911AvatarSharp.tsx +++ b/src/IconE911AvatarSharp.tsx @@ -8,4 +8,4 @@ const IconE911AvatarSharp: React.FC = ({ ...props }) => ( ) -export { IconE911AvatarSharp as default } +export default IconE911AvatarSharp diff --git a/src/IconE911AvatarSharpFilled.tsx b/src/IconE911AvatarSharpFilled.tsx index cdf7c50f6..22b880bf5 100644 --- a/src/IconE911AvatarSharpFilled.tsx +++ b/src/IconE911AvatarSharpFilled.tsx @@ -8,4 +8,4 @@ const IconE911AvatarSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconE911AvatarSharpFilled as default } +export default IconE911AvatarSharpFilled diff --git a/src/IconE911EmergencyOutlined.tsx b/src/IconE911EmergencyOutlined.tsx index d77ad5b23..bc051dd2f 100644 --- a/src/IconE911EmergencyOutlined.tsx +++ b/src/IconE911EmergencyOutlined.tsx @@ -8,4 +8,4 @@ const IconE911EmergencyOutlined: React.FC = ({ ...props }) => ( ) -export { IconE911EmergencyOutlined as default } +export default IconE911EmergencyOutlined diff --git a/src/IconE911EmergencyOutlinedFilled.tsx b/src/IconE911EmergencyOutlinedFilled.tsx index 088330c25..b9b69d45c 100644 --- a/src/IconE911EmergencyOutlinedFilled.tsx +++ b/src/IconE911EmergencyOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconE911EmergencyOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconE911EmergencyOutlinedFilled as default } +export default IconE911EmergencyOutlinedFilled diff --git a/src/IconE911EmergencyRounded.tsx b/src/IconE911EmergencyRounded.tsx index 2901a9e25..f8d493366 100644 --- a/src/IconE911EmergencyRounded.tsx +++ b/src/IconE911EmergencyRounded.tsx @@ -8,4 +8,4 @@ const IconE911EmergencyRounded: React.FC = ({ ...props }) => ( ) -export { IconE911EmergencyRounded as default } +export default IconE911EmergencyRounded diff --git a/src/IconE911EmergencyRoundedFilled.tsx b/src/IconE911EmergencyRoundedFilled.tsx index fcee9ae1b..c1a4f4118 100644 --- a/src/IconE911EmergencyRoundedFilled.tsx +++ b/src/IconE911EmergencyRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconE911EmergencyRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconE911EmergencyRoundedFilled as default } +export default IconE911EmergencyRoundedFilled diff --git a/src/IconE911EmergencySharp.tsx b/src/IconE911EmergencySharp.tsx index f9974dd1b..af8a1cac5 100644 --- a/src/IconE911EmergencySharp.tsx +++ b/src/IconE911EmergencySharp.tsx @@ -8,4 +8,4 @@ const IconE911EmergencySharp: React.FC = ({ ...props }) => ( ) -export { IconE911EmergencySharp as default } +export default IconE911EmergencySharp diff --git a/src/IconE911EmergencySharpFilled.tsx b/src/IconE911EmergencySharpFilled.tsx index db2189cf0..71f0b8e38 100644 --- a/src/IconE911EmergencySharpFilled.tsx +++ b/src/IconE911EmergencySharpFilled.tsx @@ -8,4 +8,4 @@ const IconE911EmergencySharpFilled: React.FC = ({ ...props }) => ( ) -export { IconE911EmergencySharpFilled as default } +export default IconE911EmergencySharpFilled diff --git a/src/IconEMobiledataBadgeOutlined.tsx b/src/IconEMobiledataBadgeOutlined.tsx index 601c2cd9c..1b86f0e27 100644 --- a/src/IconEMobiledataBadgeOutlined.tsx +++ b/src/IconEMobiledataBadgeOutlined.tsx @@ -8,4 +8,4 @@ const IconEMobiledataBadgeOutlined: React.FC = ({ ...props }) => ( ) -export { IconEMobiledataBadgeOutlined as default } +export default IconEMobiledataBadgeOutlined diff --git a/src/IconEMobiledataBadgeOutlinedFilled.tsx b/src/IconEMobiledataBadgeOutlinedFilled.tsx index 86785ac27..9a7374daf 100644 --- a/src/IconEMobiledataBadgeOutlinedFilled.tsx +++ b/src/IconEMobiledataBadgeOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconEMobiledataBadgeOutlinedFilled: React.FC = ({ ) -export { IconEMobiledataBadgeOutlinedFilled as default } +export default IconEMobiledataBadgeOutlinedFilled diff --git a/src/IconEMobiledataBadgeRounded.tsx b/src/IconEMobiledataBadgeRounded.tsx index 328a61372..6bef70f6e 100644 --- a/src/IconEMobiledataBadgeRounded.tsx +++ b/src/IconEMobiledataBadgeRounded.tsx @@ -8,4 +8,4 @@ const IconEMobiledataBadgeRounded: React.FC = ({ ...props }) => ( ) -export { IconEMobiledataBadgeRounded as default } +export default IconEMobiledataBadgeRounded diff --git a/src/IconEMobiledataBadgeRoundedFilled.tsx b/src/IconEMobiledataBadgeRoundedFilled.tsx index 53d90a8fa..f1a72cc1f 100644 --- a/src/IconEMobiledataBadgeRoundedFilled.tsx +++ b/src/IconEMobiledataBadgeRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconEMobiledataBadgeRoundedFilled: React.FC = ({ ) -export { IconEMobiledataBadgeRoundedFilled as default } +export default IconEMobiledataBadgeRoundedFilled diff --git a/src/IconEMobiledataBadgeSharp.tsx b/src/IconEMobiledataBadgeSharp.tsx index 939c9be0e..6229ea9d0 100644 --- a/src/IconEMobiledataBadgeSharp.tsx +++ b/src/IconEMobiledataBadgeSharp.tsx @@ -8,4 +8,4 @@ const IconEMobiledataBadgeSharp: React.FC = ({ ...props }) => ( ) -export { IconEMobiledataBadgeSharp as default } +export default IconEMobiledataBadgeSharp diff --git a/src/IconEMobiledataBadgeSharpFilled.tsx b/src/IconEMobiledataBadgeSharpFilled.tsx index abc04ad4c..fc354d658 100644 --- a/src/IconEMobiledataBadgeSharpFilled.tsx +++ b/src/IconEMobiledataBadgeSharpFilled.tsx @@ -8,4 +8,4 @@ const IconEMobiledataBadgeSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconEMobiledataBadgeSharpFilled as default } +export default IconEMobiledataBadgeSharpFilled diff --git a/src/IconEMobiledataOutlined.tsx b/src/IconEMobiledataOutlined.tsx index ac717d86a..ade6f4eba 100644 --- a/src/IconEMobiledataOutlined.tsx +++ b/src/IconEMobiledataOutlined.tsx @@ -8,4 +8,4 @@ const IconEMobiledataOutlined: React.FC = ({ ...props }) => ( ) -export { IconEMobiledataOutlined as default } +export default IconEMobiledataOutlined diff --git a/src/IconEMobiledataOutlinedFilled.tsx b/src/IconEMobiledataOutlinedFilled.tsx index 45d467ef4..bfc11dae6 100644 --- a/src/IconEMobiledataOutlinedFilled.tsx +++ b/src/IconEMobiledataOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconEMobiledataOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconEMobiledataOutlinedFilled as default } +export default IconEMobiledataOutlinedFilled diff --git a/src/IconEMobiledataRounded.tsx b/src/IconEMobiledataRounded.tsx index baf335ccc..70d04f993 100644 --- a/src/IconEMobiledataRounded.tsx +++ b/src/IconEMobiledataRounded.tsx @@ -8,4 +8,4 @@ const IconEMobiledataRounded: React.FC = ({ ...props }) => ( ) -export { IconEMobiledataRounded as default } +export default IconEMobiledataRounded diff --git a/src/IconEMobiledataRoundedFilled.tsx b/src/IconEMobiledataRoundedFilled.tsx index bdbd8aea7..d807f8119 100644 --- a/src/IconEMobiledataRoundedFilled.tsx +++ b/src/IconEMobiledataRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconEMobiledataRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconEMobiledataRoundedFilled as default } +export default IconEMobiledataRoundedFilled diff --git a/src/IconEMobiledataSharp.tsx b/src/IconEMobiledataSharp.tsx index 35a4d9481..c468a17d7 100644 --- a/src/IconEMobiledataSharp.tsx +++ b/src/IconEMobiledataSharp.tsx @@ -8,4 +8,4 @@ const IconEMobiledataSharp: React.FC = ({ ...props }) => ( ) -export { IconEMobiledataSharp as default } +export default IconEMobiledataSharp diff --git a/src/IconEMobiledataSharpFilled.tsx b/src/IconEMobiledataSharpFilled.tsx index 4c3a400a8..6cc1ed2a2 100644 --- a/src/IconEMobiledataSharpFilled.tsx +++ b/src/IconEMobiledataSharpFilled.tsx @@ -8,4 +8,4 @@ const IconEMobiledataSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconEMobiledataSharpFilled as default } +export default IconEMobiledataSharpFilled diff --git a/src/IconEarbudsBatteryOutlined.tsx b/src/IconEarbudsBatteryOutlined.tsx index 2a6cf4b7a..4456cdada 100644 --- a/src/IconEarbudsBatteryOutlined.tsx +++ b/src/IconEarbudsBatteryOutlined.tsx @@ -8,4 +8,4 @@ const IconEarbudsBatteryOutlined: React.FC = ({ ...props }) => ( ) -export { IconEarbudsBatteryOutlined as default } +export default IconEarbudsBatteryOutlined diff --git a/src/IconEarbudsBatteryOutlinedFilled.tsx b/src/IconEarbudsBatteryOutlinedFilled.tsx index 6747dfba8..22fc8e761 100644 --- a/src/IconEarbudsBatteryOutlinedFilled.tsx +++ b/src/IconEarbudsBatteryOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconEarbudsBatteryOutlinedFilled: React.FC = ({ ) -export { IconEarbudsBatteryOutlinedFilled as default } +export default IconEarbudsBatteryOutlinedFilled diff --git a/src/IconEarbudsBatteryRounded.tsx b/src/IconEarbudsBatteryRounded.tsx index 2daea2346..f1881cf86 100644 --- a/src/IconEarbudsBatteryRounded.tsx +++ b/src/IconEarbudsBatteryRounded.tsx @@ -8,4 +8,4 @@ const IconEarbudsBatteryRounded: React.FC = ({ ...props }) => ( ) -export { IconEarbudsBatteryRounded as default } +export default IconEarbudsBatteryRounded diff --git a/src/IconEarbudsBatteryRoundedFilled.tsx b/src/IconEarbudsBatteryRoundedFilled.tsx index dc09f48c9..c05afe1d2 100644 --- a/src/IconEarbudsBatteryRoundedFilled.tsx +++ b/src/IconEarbudsBatteryRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconEarbudsBatteryRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconEarbudsBatteryRoundedFilled as default } +export default IconEarbudsBatteryRoundedFilled diff --git a/src/IconEarbudsBatterySharp.tsx b/src/IconEarbudsBatterySharp.tsx index dfdbeb575..2f1c08413 100644 --- a/src/IconEarbudsBatterySharp.tsx +++ b/src/IconEarbudsBatterySharp.tsx @@ -8,4 +8,4 @@ const IconEarbudsBatterySharp: React.FC = ({ ...props }) => ( ) -export { IconEarbudsBatterySharp as default } +export default IconEarbudsBatterySharp diff --git a/src/IconEarbudsBatterySharpFilled.tsx b/src/IconEarbudsBatterySharpFilled.tsx index 7af55d2d5..2d40ea56b 100644 --- a/src/IconEarbudsBatterySharpFilled.tsx +++ b/src/IconEarbudsBatterySharpFilled.tsx @@ -8,4 +8,4 @@ const IconEarbudsBatterySharpFilled: React.FC = ({ ...props }) => ( ) -export { IconEarbudsBatterySharpFilled as default } +export default IconEarbudsBatterySharpFilled diff --git a/src/IconEarbudsOutlined.tsx b/src/IconEarbudsOutlined.tsx index bff5c0637..806566127 100644 --- a/src/IconEarbudsOutlined.tsx +++ b/src/IconEarbudsOutlined.tsx @@ -8,4 +8,4 @@ const IconEarbudsOutlined: React.FC = ({ ...props }) => ( ) -export { IconEarbudsOutlined as default } +export default IconEarbudsOutlined diff --git a/src/IconEarbudsOutlinedFilled.tsx b/src/IconEarbudsOutlinedFilled.tsx index 5a77ed6a4..bf3da5efb 100644 --- a/src/IconEarbudsOutlinedFilled.tsx +++ b/src/IconEarbudsOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconEarbudsOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconEarbudsOutlinedFilled as default } +export default IconEarbudsOutlinedFilled diff --git a/src/IconEarbudsRounded.tsx b/src/IconEarbudsRounded.tsx index 0da436c44..bd1cced13 100644 --- a/src/IconEarbudsRounded.tsx +++ b/src/IconEarbudsRounded.tsx @@ -8,4 +8,4 @@ const IconEarbudsRounded: React.FC = ({ ...props }) => ( ) -export { IconEarbudsRounded as default } +export default IconEarbudsRounded diff --git a/src/IconEarbudsRoundedFilled.tsx b/src/IconEarbudsRoundedFilled.tsx index c9e1d3542..18eff7bf7 100644 --- a/src/IconEarbudsRoundedFilled.tsx +++ b/src/IconEarbudsRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconEarbudsRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconEarbudsRoundedFilled as default } +export default IconEarbudsRoundedFilled diff --git a/src/IconEarbudsSharp.tsx b/src/IconEarbudsSharp.tsx index 729a14251..32bf7af52 100644 --- a/src/IconEarbudsSharp.tsx +++ b/src/IconEarbudsSharp.tsx @@ -8,4 +8,4 @@ const IconEarbudsSharp: React.FC = ({ ...props }) => ( ) -export { IconEarbudsSharp as default } +export default IconEarbudsSharp diff --git a/src/IconEarbudsSharpFilled.tsx b/src/IconEarbudsSharpFilled.tsx index 54695c8e2..e2180b9a1 100644 --- a/src/IconEarbudsSharpFilled.tsx +++ b/src/IconEarbudsSharpFilled.tsx @@ -8,4 +8,4 @@ const IconEarbudsSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconEarbudsSharpFilled as default } +export default IconEarbudsSharpFilled diff --git a/src/IconEarlyOnOutlined.tsx b/src/IconEarlyOnOutlined.tsx index 376b9c9d5..179f5ba8e 100644 --- a/src/IconEarlyOnOutlined.tsx +++ b/src/IconEarlyOnOutlined.tsx @@ -8,4 +8,4 @@ const IconEarlyOnOutlined: React.FC = ({ ...props }) => ( ) -export { IconEarlyOnOutlined as default } +export default IconEarlyOnOutlined diff --git a/src/IconEarlyOnOutlinedFilled.tsx b/src/IconEarlyOnOutlinedFilled.tsx index 62b42c522..8c3bbdb4f 100644 --- a/src/IconEarlyOnOutlinedFilled.tsx +++ b/src/IconEarlyOnOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconEarlyOnOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconEarlyOnOutlinedFilled as default } +export default IconEarlyOnOutlinedFilled diff --git a/src/IconEarlyOnRounded.tsx b/src/IconEarlyOnRounded.tsx index 5d184325d..218a06ebf 100644 --- a/src/IconEarlyOnRounded.tsx +++ b/src/IconEarlyOnRounded.tsx @@ -8,4 +8,4 @@ const IconEarlyOnRounded: React.FC = ({ ...props }) => ( ) -export { IconEarlyOnRounded as default } +export default IconEarlyOnRounded diff --git a/src/IconEarlyOnRoundedFilled.tsx b/src/IconEarlyOnRoundedFilled.tsx index cd7944e5d..56787c39b 100644 --- a/src/IconEarlyOnRoundedFilled.tsx +++ b/src/IconEarlyOnRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconEarlyOnRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconEarlyOnRoundedFilled as default } +export default IconEarlyOnRoundedFilled diff --git a/src/IconEarlyOnSharp.tsx b/src/IconEarlyOnSharp.tsx index 1ffc01cea..b169a37d9 100644 --- a/src/IconEarlyOnSharp.tsx +++ b/src/IconEarlyOnSharp.tsx @@ -8,4 +8,4 @@ const IconEarlyOnSharp: React.FC = ({ ...props }) => ( ) -export { IconEarlyOnSharp as default } +export default IconEarlyOnSharp diff --git a/src/IconEarlyOnSharpFilled.tsx b/src/IconEarlyOnSharpFilled.tsx index b5d58cc61..0894839d4 100644 --- a/src/IconEarlyOnSharpFilled.tsx +++ b/src/IconEarlyOnSharpFilled.tsx @@ -8,4 +8,4 @@ const IconEarlyOnSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconEarlyOnSharpFilled as default } +export default IconEarlyOnSharpFilled diff --git a/src/IconEarthquakeOutlined.tsx b/src/IconEarthquakeOutlined.tsx index 377928fd2..8fa92e10a 100644 --- a/src/IconEarthquakeOutlined.tsx +++ b/src/IconEarthquakeOutlined.tsx @@ -8,4 +8,4 @@ const IconEarthquakeOutlined: React.FC = ({ ...props }) => ( ) -export { IconEarthquakeOutlined as default } +export default IconEarthquakeOutlined diff --git a/src/IconEarthquakeOutlinedFilled.tsx b/src/IconEarthquakeOutlinedFilled.tsx index b26c11b7d..bb3dc8fdb 100644 --- a/src/IconEarthquakeOutlinedFilled.tsx +++ b/src/IconEarthquakeOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconEarthquakeOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconEarthquakeOutlinedFilled as default } +export default IconEarthquakeOutlinedFilled diff --git a/src/IconEarthquakeRounded.tsx b/src/IconEarthquakeRounded.tsx index 3937b7e0c..195a65cc5 100644 --- a/src/IconEarthquakeRounded.tsx +++ b/src/IconEarthquakeRounded.tsx @@ -8,4 +8,4 @@ const IconEarthquakeRounded: React.FC = ({ ...props }) => ( ) -export { IconEarthquakeRounded as default } +export default IconEarthquakeRounded diff --git a/src/IconEarthquakeRoundedFilled.tsx b/src/IconEarthquakeRoundedFilled.tsx index 4e677f8c0..3a16c2bb2 100644 --- a/src/IconEarthquakeRoundedFilled.tsx +++ b/src/IconEarthquakeRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconEarthquakeRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconEarthquakeRoundedFilled as default } +export default IconEarthquakeRoundedFilled diff --git a/src/IconEarthquakeSharp.tsx b/src/IconEarthquakeSharp.tsx index 401279209..c3475ddbe 100644 --- a/src/IconEarthquakeSharp.tsx +++ b/src/IconEarthquakeSharp.tsx @@ -8,4 +8,4 @@ const IconEarthquakeSharp: React.FC = ({ ...props }) => ( ) -export { IconEarthquakeSharp as default } +export default IconEarthquakeSharp diff --git a/src/IconEarthquakeSharpFilled.tsx b/src/IconEarthquakeSharpFilled.tsx index 516023483..abccec49c 100644 --- a/src/IconEarthquakeSharpFilled.tsx +++ b/src/IconEarthquakeSharpFilled.tsx @@ -8,4 +8,4 @@ const IconEarthquakeSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconEarthquakeSharpFilled as default } +export default IconEarthquakeSharpFilled diff --git a/src/IconEastOutlined.tsx b/src/IconEastOutlined.tsx index ab84edc54..403e3cd38 100644 --- a/src/IconEastOutlined.tsx +++ b/src/IconEastOutlined.tsx @@ -8,4 +8,4 @@ const IconEastOutlined: React.FC = ({ ...props }) => ( ) -export { IconEastOutlined as default } +export default IconEastOutlined diff --git a/src/IconEastOutlinedFilled.tsx b/src/IconEastOutlinedFilled.tsx index 11798b948..e0b5cdec8 100644 --- a/src/IconEastOutlinedFilled.tsx +++ b/src/IconEastOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconEastOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconEastOutlinedFilled as default } +export default IconEastOutlinedFilled diff --git a/src/IconEastRounded.tsx b/src/IconEastRounded.tsx index c63f43d47..92b038a88 100644 --- a/src/IconEastRounded.tsx +++ b/src/IconEastRounded.tsx @@ -8,4 +8,4 @@ const IconEastRounded: React.FC = ({ ...props }) => ( ) -export { IconEastRounded as default } +export default IconEastRounded diff --git a/src/IconEastRoundedFilled.tsx b/src/IconEastRoundedFilled.tsx index ab69b6fb7..35533c252 100644 --- a/src/IconEastRoundedFilled.tsx +++ b/src/IconEastRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconEastRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconEastRoundedFilled as default } +export default IconEastRoundedFilled diff --git a/src/IconEastSharp.tsx b/src/IconEastSharp.tsx index 1558042ef..f6cceaf33 100644 --- a/src/IconEastSharp.tsx +++ b/src/IconEastSharp.tsx @@ -8,4 +8,4 @@ const IconEastSharp: React.FC = ({ ...props }) => ( ) -export { IconEastSharp as default } +export default IconEastSharp diff --git a/src/IconEastSharpFilled.tsx b/src/IconEastSharpFilled.tsx index fb1c3d542..cb1e6de11 100644 --- a/src/IconEastSharpFilled.tsx +++ b/src/IconEastSharpFilled.tsx @@ -8,4 +8,4 @@ const IconEastSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconEastSharpFilled as default } +export default IconEastSharpFilled diff --git a/src/IconEcgHeartOutlined.tsx b/src/IconEcgHeartOutlined.tsx index 6da4f03e1..e8c153f9c 100644 --- a/src/IconEcgHeartOutlined.tsx +++ b/src/IconEcgHeartOutlined.tsx @@ -8,4 +8,4 @@ const IconEcgHeartOutlined: React.FC = ({ ...props }) => ( ) -export { IconEcgHeartOutlined as default } +export default IconEcgHeartOutlined diff --git a/src/IconEcgHeartOutlinedFilled.tsx b/src/IconEcgHeartOutlinedFilled.tsx index be578dd83..3dd386d56 100644 --- a/src/IconEcgHeartOutlinedFilled.tsx +++ b/src/IconEcgHeartOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconEcgHeartOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconEcgHeartOutlinedFilled as default } +export default IconEcgHeartOutlinedFilled diff --git a/src/IconEcgHeartRounded.tsx b/src/IconEcgHeartRounded.tsx index d85f9a4da..a044da5d0 100644 --- a/src/IconEcgHeartRounded.tsx +++ b/src/IconEcgHeartRounded.tsx @@ -8,4 +8,4 @@ const IconEcgHeartRounded: React.FC = ({ ...props }) => ( ) -export { IconEcgHeartRounded as default } +export default IconEcgHeartRounded diff --git a/src/IconEcgHeartRoundedFilled.tsx b/src/IconEcgHeartRoundedFilled.tsx index b8f755be2..1999f9d4e 100644 --- a/src/IconEcgHeartRoundedFilled.tsx +++ b/src/IconEcgHeartRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconEcgHeartRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconEcgHeartRoundedFilled as default } +export default IconEcgHeartRoundedFilled diff --git a/src/IconEcgHeartSharp.tsx b/src/IconEcgHeartSharp.tsx index d851b54b6..07ce2d8d6 100644 --- a/src/IconEcgHeartSharp.tsx +++ b/src/IconEcgHeartSharp.tsx @@ -8,4 +8,4 @@ const IconEcgHeartSharp: React.FC = ({ ...props }) => ( ) -export { IconEcgHeartSharp as default } +export default IconEcgHeartSharp diff --git a/src/IconEcgHeartSharpFilled.tsx b/src/IconEcgHeartSharpFilled.tsx index 026a9b02d..22fd18887 100644 --- a/src/IconEcgHeartSharpFilled.tsx +++ b/src/IconEcgHeartSharpFilled.tsx @@ -8,4 +8,4 @@ const IconEcgHeartSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconEcgHeartSharpFilled as default } +export default IconEcgHeartSharpFilled diff --git a/src/IconEcgOutlined.tsx b/src/IconEcgOutlined.tsx index a38262307..d6d8914b9 100644 --- a/src/IconEcgOutlined.tsx +++ b/src/IconEcgOutlined.tsx @@ -8,4 +8,4 @@ const IconEcgOutlined: React.FC = ({ ...props }) => ( ) -export { IconEcgOutlined as default } +export default IconEcgOutlined diff --git a/src/IconEcgOutlinedFilled.tsx b/src/IconEcgOutlinedFilled.tsx index 629b72024..506b68974 100644 --- a/src/IconEcgOutlinedFilled.tsx +++ b/src/IconEcgOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconEcgOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconEcgOutlinedFilled as default } +export default IconEcgOutlinedFilled diff --git a/src/IconEcgRounded.tsx b/src/IconEcgRounded.tsx index 5a0505fe0..a04674b3f 100644 --- a/src/IconEcgRounded.tsx +++ b/src/IconEcgRounded.tsx @@ -8,4 +8,4 @@ const IconEcgRounded: React.FC = ({ ...props }) => ( ) -export { IconEcgRounded as default } +export default IconEcgRounded diff --git a/src/IconEcgRoundedFilled.tsx b/src/IconEcgRoundedFilled.tsx index 948aa9b27..c8d50e60d 100644 --- a/src/IconEcgRoundedFilled.tsx +++ b/src/IconEcgRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconEcgRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconEcgRoundedFilled as default } +export default IconEcgRoundedFilled diff --git a/src/IconEcgSharp.tsx b/src/IconEcgSharp.tsx index c6a89344c..03947a03a 100644 --- a/src/IconEcgSharp.tsx +++ b/src/IconEcgSharp.tsx @@ -8,4 +8,4 @@ const IconEcgSharp: React.FC = ({ ...props }) => ( ) -export { IconEcgSharp as default } +export default IconEcgSharp diff --git a/src/IconEcgSharpFilled.tsx b/src/IconEcgSharpFilled.tsx index 11eb54c76..b1153f54c 100644 --- a/src/IconEcgSharpFilled.tsx +++ b/src/IconEcgSharpFilled.tsx @@ -8,4 +8,4 @@ const IconEcgSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconEcgSharpFilled as default } +export default IconEcgSharpFilled diff --git a/src/IconEcoOutlined.tsx b/src/IconEcoOutlined.tsx index 8e0c09d0c..305d8b674 100644 --- a/src/IconEcoOutlined.tsx +++ b/src/IconEcoOutlined.tsx @@ -8,4 +8,4 @@ const IconEcoOutlined: React.FC = ({ ...props }) => ( ) -export { IconEcoOutlined as default } +export default IconEcoOutlined diff --git a/src/IconEcoOutlinedFilled.tsx b/src/IconEcoOutlinedFilled.tsx index 2d4090015..6b80503a6 100644 --- a/src/IconEcoOutlinedFilled.tsx +++ b/src/IconEcoOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconEcoOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconEcoOutlinedFilled as default } +export default IconEcoOutlinedFilled diff --git a/src/IconEcoRounded.tsx b/src/IconEcoRounded.tsx index bf19dcb6b..27f7cd0bb 100644 --- a/src/IconEcoRounded.tsx +++ b/src/IconEcoRounded.tsx @@ -8,4 +8,4 @@ const IconEcoRounded: React.FC = ({ ...props }) => ( ) -export { IconEcoRounded as default } +export default IconEcoRounded diff --git a/src/IconEcoRoundedFilled.tsx b/src/IconEcoRoundedFilled.tsx index ecc106f5e..29c1ac7ef 100644 --- a/src/IconEcoRoundedFilled.tsx +++ b/src/IconEcoRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconEcoRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconEcoRoundedFilled as default } +export default IconEcoRoundedFilled diff --git a/src/IconEcoSharp.tsx b/src/IconEcoSharp.tsx index 1bb90ce2c..7abef3a8f 100644 --- a/src/IconEcoSharp.tsx +++ b/src/IconEcoSharp.tsx @@ -8,4 +8,4 @@ const IconEcoSharp: React.FC = ({ ...props }) => ( ) -export { IconEcoSharp as default } +export default IconEcoSharp diff --git a/src/IconEcoSharpFilled.tsx b/src/IconEcoSharpFilled.tsx index d2076cb15..f585a5cc4 100644 --- a/src/IconEcoSharpFilled.tsx +++ b/src/IconEcoSharpFilled.tsx @@ -8,4 +8,4 @@ const IconEcoSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconEcoSharpFilled as default } +export default IconEcoSharpFilled diff --git a/src/IconEdaOutlined.tsx b/src/IconEdaOutlined.tsx index 7982763c1..a377106cc 100644 --- a/src/IconEdaOutlined.tsx +++ b/src/IconEdaOutlined.tsx @@ -8,4 +8,4 @@ const IconEdaOutlined: React.FC = ({ ...props }) => ( ) -export { IconEdaOutlined as default } +export default IconEdaOutlined diff --git a/src/IconEdaOutlinedFilled.tsx b/src/IconEdaOutlinedFilled.tsx index 66c856745..8c22d67ee 100644 --- a/src/IconEdaOutlinedFilled.tsx +++ b/src/IconEdaOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconEdaOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconEdaOutlinedFilled as default } +export default IconEdaOutlinedFilled diff --git a/src/IconEdaRounded.tsx b/src/IconEdaRounded.tsx index d7158d400..5fe64782f 100644 --- a/src/IconEdaRounded.tsx +++ b/src/IconEdaRounded.tsx @@ -8,4 +8,4 @@ const IconEdaRounded: React.FC = ({ ...props }) => ( ) -export { IconEdaRounded as default } +export default IconEdaRounded diff --git a/src/IconEdaRoundedFilled.tsx b/src/IconEdaRoundedFilled.tsx index 092c82d4a..eb0e8f612 100644 --- a/src/IconEdaRoundedFilled.tsx +++ b/src/IconEdaRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconEdaRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconEdaRoundedFilled as default } +export default IconEdaRoundedFilled diff --git a/src/IconEdaSharp.tsx b/src/IconEdaSharp.tsx index 650d3e110..4689df484 100644 --- a/src/IconEdaSharp.tsx +++ b/src/IconEdaSharp.tsx @@ -8,4 +8,4 @@ const IconEdaSharp: React.FC = ({ ...props }) => ( ) -export { IconEdaSharp as default } +export default IconEdaSharp diff --git a/src/IconEdaSharpFilled.tsx b/src/IconEdaSharpFilled.tsx index d6bc4e3f4..32ad6c3bd 100644 --- a/src/IconEdaSharpFilled.tsx +++ b/src/IconEdaSharpFilled.tsx @@ -8,4 +8,4 @@ const IconEdaSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconEdaSharpFilled as default } +export default IconEdaSharpFilled diff --git a/src/IconEdgesensorHighOutlined.tsx b/src/IconEdgesensorHighOutlined.tsx index 3e691df30..1cdf50bde 100644 --- a/src/IconEdgesensorHighOutlined.tsx +++ b/src/IconEdgesensorHighOutlined.tsx @@ -8,4 +8,4 @@ const IconEdgesensorHighOutlined: React.FC = ({ ...props }) => ( ) -export { IconEdgesensorHighOutlined as default } +export default IconEdgesensorHighOutlined diff --git a/src/IconEdgesensorHighOutlinedFilled.tsx b/src/IconEdgesensorHighOutlinedFilled.tsx index 5efaae6d5..cec60556a 100644 --- a/src/IconEdgesensorHighOutlinedFilled.tsx +++ b/src/IconEdgesensorHighOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconEdgesensorHighOutlinedFilled: React.FC = ({ ) -export { IconEdgesensorHighOutlinedFilled as default } +export default IconEdgesensorHighOutlinedFilled diff --git a/src/IconEdgesensorHighRounded.tsx b/src/IconEdgesensorHighRounded.tsx index 9e854ea8e..8c20dc998 100644 --- a/src/IconEdgesensorHighRounded.tsx +++ b/src/IconEdgesensorHighRounded.tsx @@ -8,4 +8,4 @@ const IconEdgesensorHighRounded: React.FC = ({ ...props }) => ( ) -export { IconEdgesensorHighRounded as default } +export default IconEdgesensorHighRounded diff --git a/src/IconEdgesensorHighRoundedFilled.tsx b/src/IconEdgesensorHighRoundedFilled.tsx index c98d6bb1d..f40f98818 100644 --- a/src/IconEdgesensorHighRoundedFilled.tsx +++ b/src/IconEdgesensorHighRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconEdgesensorHighRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconEdgesensorHighRoundedFilled as default } +export default IconEdgesensorHighRoundedFilled diff --git a/src/IconEdgesensorHighSharp.tsx b/src/IconEdgesensorHighSharp.tsx index a36bc8c7a..fceee8a33 100644 --- a/src/IconEdgesensorHighSharp.tsx +++ b/src/IconEdgesensorHighSharp.tsx @@ -8,4 +8,4 @@ const IconEdgesensorHighSharp: React.FC = ({ ...props }) => ( ) -export { IconEdgesensorHighSharp as default } +export default IconEdgesensorHighSharp diff --git a/src/IconEdgesensorHighSharpFilled.tsx b/src/IconEdgesensorHighSharpFilled.tsx index 6cc3951f7..b5eac60fd 100644 --- a/src/IconEdgesensorHighSharpFilled.tsx +++ b/src/IconEdgesensorHighSharpFilled.tsx @@ -8,4 +8,4 @@ const IconEdgesensorHighSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconEdgesensorHighSharpFilled as default } +export default IconEdgesensorHighSharpFilled diff --git a/src/IconEdgesensorLowOutlined.tsx b/src/IconEdgesensorLowOutlined.tsx index 997277724..acf1d0808 100644 --- a/src/IconEdgesensorLowOutlined.tsx +++ b/src/IconEdgesensorLowOutlined.tsx @@ -8,4 +8,4 @@ const IconEdgesensorLowOutlined: React.FC = ({ ...props }) => ( ) -export { IconEdgesensorLowOutlined as default } +export default IconEdgesensorLowOutlined diff --git a/src/IconEdgesensorLowOutlinedFilled.tsx b/src/IconEdgesensorLowOutlinedFilled.tsx index ea19a0f10..86617b59f 100644 --- a/src/IconEdgesensorLowOutlinedFilled.tsx +++ b/src/IconEdgesensorLowOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconEdgesensorLowOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconEdgesensorLowOutlinedFilled as default } +export default IconEdgesensorLowOutlinedFilled diff --git a/src/IconEdgesensorLowRounded.tsx b/src/IconEdgesensorLowRounded.tsx index 6e1936ca3..8582e210f 100644 --- a/src/IconEdgesensorLowRounded.tsx +++ b/src/IconEdgesensorLowRounded.tsx @@ -8,4 +8,4 @@ const IconEdgesensorLowRounded: React.FC = ({ ...props }) => ( ) -export { IconEdgesensorLowRounded as default } +export default IconEdgesensorLowRounded diff --git a/src/IconEdgesensorLowRoundedFilled.tsx b/src/IconEdgesensorLowRoundedFilled.tsx index 8b7bbf4a4..48f37bbaf 100644 --- a/src/IconEdgesensorLowRoundedFilled.tsx +++ b/src/IconEdgesensorLowRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconEdgesensorLowRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconEdgesensorLowRoundedFilled as default } +export default IconEdgesensorLowRoundedFilled diff --git a/src/IconEdgesensorLowSharpFilled.tsx b/src/IconEdgesensorLowSharpFilled.tsx index eee088800..625dea864 100644 --- a/src/IconEdgesensorLowSharpFilled.tsx +++ b/src/IconEdgesensorLowSharpFilled.tsx @@ -8,4 +8,4 @@ const IconEdgesensorLowSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconEdgesensorLowSharpFilled as default } +export default IconEdgesensorLowSharpFilled diff --git a/src/IconEditAttributesOutlined.tsx b/src/IconEditAttributesOutlined.tsx index 5506d537c..4be68b7c8 100644 --- a/src/IconEditAttributesOutlined.tsx +++ b/src/IconEditAttributesOutlined.tsx @@ -8,4 +8,4 @@ const IconEditAttributesOutlined: React.FC = ({ ...props }) => ( ) -export { IconEditAttributesOutlined as default } +export default IconEditAttributesOutlined diff --git a/src/IconEditAttributesOutlinedFilled.tsx b/src/IconEditAttributesOutlinedFilled.tsx index 4aa6115d4..1bd32ce69 100644 --- a/src/IconEditAttributesOutlinedFilled.tsx +++ b/src/IconEditAttributesOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconEditAttributesOutlinedFilled: React.FC = ({ ) -export { IconEditAttributesOutlinedFilled as default } +export default IconEditAttributesOutlinedFilled diff --git a/src/IconEditAttributesRounded.tsx b/src/IconEditAttributesRounded.tsx index f800660d6..2b7990feb 100644 --- a/src/IconEditAttributesRounded.tsx +++ b/src/IconEditAttributesRounded.tsx @@ -8,4 +8,4 @@ const IconEditAttributesRounded: React.FC = ({ ...props }) => ( ) -export { IconEditAttributesRounded as default } +export default IconEditAttributesRounded diff --git a/src/IconEditAttributesRoundedFilled.tsx b/src/IconEditAttributesRoundedFilled.tsx index c4b46cbe7..908241d24 100644 --- a/src/IconEditAttributesRoundedFilled.tsx +++ b/src/IconEditAttributesRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconEditAttributesRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconEditAttributesRoundedFilled as default } +export default IconEditAttributesRoundedFilled diff --git a/src/IconEditAttributesSharp.tsx b/src/IconEditAttributesSharp.tsx index b6edcb7f9..568fd928e 100644 --- a/src/IconEditAttributesSharp.tsx +++ b/src/IconEditAttributesSharp.tsx @@ -8,4 +8,4 @@ const IconEditAttributesSharp: React.FC = ({ ...props }) => ( ) -export { IconEditAttributesSharp as default } +export default IconEditAttributesSharp diff --git a/src/IconEditAttributesSharpFilled.tsx b/src/IconEditAttributesSharpFilled.tsx index 83fe2b4e7..b47640802 100644 --- a/src/IconEditAttributesSharpFilled.tsx +++ b/src/IconEditAttributesSharpFilled.tsx @@ -8,4 +8,4 @@ const IconEditAttributesSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconEditAttributesSharpFilled as default } +export default IconEditAttributesSharpFilled diff --git a/src/IconEditAudioOutlined.tsx b/src/IconEditAudioOutlined.tsx index 6d2d43e09..563c1fa4e 100644 --- a/src/IconEditAudioOutlined.tsx +++ b/src/IconEditAudioOutlined.tsx @@ -8,4 +8,4 @@ const IconEditAudioOutlined: React.FC = ({ ...props }) => ( ) -export { IconEditAudioOutlined as default } +export default IconEditAudioOutlined diff --git a/src/IconEditAudioOutlinedFilled.tsx b/src/IconEditAudioOutlinedFilled.tsx index 512e395a4..8402a4dd5 100644 --- a/src/IconEditAudioOutlinedFilled.tsx +++ b/src/IconEditAudioOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconEditAudioOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconEditAudioOutlinedFilled as default } +export default IconEditAudioOutlinedFilled diff --git a/src/IconEditAudioRounded.tsx b/src/IconEditAudioRounded.tsx index d9eb8f605..07227bffe 100644 --- a/src/IconEditAudioRounded.tsx +++ b/src/IconEditAudioRounded.tsx @@ -8,4 +8,4 @@ const IconEditAudioRounded: React.FC = ({ ...props }) => ( ) -export { IconEditAudioRounded as default } +export default IconEditAudioRounded diff --git a/src/IconEditAudioRoundedFilled.tsx b/src/IconEditAudioRoundedFilled.tsx index 7bc996126..15f3be848 100644 --- a/src/IconEditAudioRoundedFilled.tsx +++ b/src/IconEditAudioRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconEditAudioRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconEditAudioRoundedFilled as default } +export default IconEditAudioRoundedFilled diff --git a/src/IconEditAudioSharp.tsx b/src/IconEditAudioSharp.tsx index e68a993e7..ae4514b85 100644 --- a/src/IconEditAudioSharp.tsx +++ b/src/IconEditAudioSharp.tsx @@ -8,4 +8,4 @@ const IconEditAudioSharp: React.FC = ({ ...props }) => ( ) -export { IconEditAudioSharp as default } +export default IconEditAudioSharp diff --git a/src/IconEditAudioSharpFilled.tsx b/src/IconEditAudioSharpFilled.tsx index e8dd1a95c..484a35d5f 100644 --- a/src/IconEditAudioSharpFilled.tsx +++ b/src/IconEditAudioSharpFilled.tsx @@ -8,4 +8,4 @@ const IconEditAudioSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconEditAudioSharpFilled as default } +export default IconEditAudioSharpFilled diff --git a/src/IconEditCalendarOutlined.tsx b/src/IconEditCalendarOutlined.tsx index 85719e461..db51837e3 100644 --- a/src/IconEditCalendarOutlined.tsx +++ b/src/IconEditCalendarOutlined.tsx @@ -8,4 +8,4 @@ const IconEditCalendarOutlined: React.FC = ({ ...props }) => ( ) -export { IconEditCalendarOutlined as default } +export default IconEditCalendarOutlined diff --git a/src/IconEditCalendarOutlinedFilled.tsx b/src/IconEditCalendarOutlinedFilled.tsx index 5a65029e5..6dc63e4f9 100644 --- a/src/IconEditCalendarOutlinedFilled.tsx +++ b/src/IconEditCalendarOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconEditCalendarOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconEditCalendarOutlinedFilled as default } +export default IconEditCalendarOutlinedFilled diff --git a/src/IconEditCalendarRounded.tsx b/src/IconEditCalendarRounded.tsx index 1709a4ed4..2c83e0ecf 100644 --- a/src/IconEditCalendarRounded.tsx +++ b/src/IconEditCalendarRounded.tsx @@ -8,4 +8,4 @@ const IconEditCalendarRounded: React.FC = ({ ...props }) => ( ) -export { IconEditCalendarRounded as default } +export default IconEditCalendarRounded diff --git a/src/IconEditCalendarRoundedFilled.tsx b/src/IconEditCalendarRoundedFilled.tsx index e1c6e52ec..667cd7c7e 100644 --- a/src/IconEditCalendarRoundedFilled.tsx +++ b/src/IconEditCalendarRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconEditCalendarRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconEditCalendarRoundedFilled as default } +export default IconEditCalendarRoundedFilled diff --git a/src/IconEditCalendarSharp.tsx b/src/IconEditCalendarSharp.tsx index 9d8fd02e2..bc114d9e5 100644 --- a/src/IconEditCalendarSharp.tsx +++ b/src/IconEditCalendarSharp.tsx @@ -8,4 +8,4 @@ const IconEditCalendarSharp: React.FC = ({ ...props }) => ( ) -export { IconEditCalendarSharp as default } +export default IconEditCalendarSharp diff --git a/src/IconEditCalendarSharpFilled.tsx b/src/IconEditCalendarSharpFilled.tsx index 4a3409d4a..8de7eb967 100644 --- a/src/IconEditCalendarSharpFilled.tsx +++ b/src/IconEditCalendarSharpFilled.tsx @@ -8,4 +8,4 @@ const IconEditCalendarSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconEditCalendarSharpFilled as default } +export default IconEditCalendarSharpFilled diff --git a/src/IconEditDocumentOutlined.tsx b/src/IconEditDocumentOutlined.tsx index d0e1249f2..9ba5c6402 100644 --- a/src/IconEditDocumentOutlined.tsx +++ b/src/IconEditDocumentOutlined.tsx @@ -8,4 +8,4 @@ const IconEditDocumentOutlined: React.FC = ({ ...props }) => ( ) -export { IconEditDocumentOutlined as default } +export default IconEditDocumentOutlined diff --git a/src/IconEditDocumentOutlinedFilled.tsx b/src/IconEditDocumentOutlinedFilled.tsx index 7600d72c9..9bb483344 100644 --- a/src/IconEditDocumentOutlinedFilled.tsx +++ b/src/IconEditDocumentOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconEditDocumentOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconEditDocumentOutlinedFilled as default } +export default IconEditDocumentOutlinedFilled diff --git a/src/IconEditDocumentRounded.tsx b/src/IconEditDocumentRounded.tsx index f88db08b0..d834e2efd 100644 --- a/src/IconEditDocumentRounded.tsx +++ b/src/IconEditDocumentRounded.tsx @@ -8,4 +8,4 @@ const IconEditDocumentRounded: React.FC = ({ ...props }) => ( ) -export { IconEditDocumentRounded as default } +export default IconEditDocumentRounded diff --git a/src/IconEditDocumentRoundedFilled.tsx b/src/IconEditDocumentRoundedFilled.tsx index fa379e0c5..1dc95f33b 100644 --- a/src/IconEditDocumentRoundedFilled.tsx +++ b/src/IconEditDocumentRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconEditDocumentRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconEditDocumentRoundedFilled as default } +export default IconEditDocumentRoundedFilled diff --git a/src/IconEditDocumentSharp.tsx b/src/IconEditDocumentSharp.tsx index 31c8967b7..a940f65e6 100644 --- a/src/IconEditDocumentSharp.tsx +++ b/src/IconEditDocumentSharp.tsx @@ -8,4 +8,4 @@ const IconEditDocumentSharp: React.FC = ({ ...props }) => ( ) -export { IconEditDocumentSharp as default } +export default IconEditDocumentSharp diff --git a/src/IconEditDocumentSharpFilled.tsx b/src/IconEditDocumentSharpFilled.tsx index 6a3654e8c..ab39519e2 100644 --- a/src/IconEditDocumentSharpFilled.tsx +++ b/src/IconEditDocumentSharpFilled.tsx @@ -8,4 +8,4 @@ const IconEditDocumentSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconEditDocumentSharpFilled as default } +export default IconEditDocumentSharpFilled diff --git a/src/IconEditLocationAltOutlined.tsx b/src/IconEditLocationAltOutlined.tsx index e31e7b5b8..0b4b1c00c 100644 --- a/src/IconEditLocationAltOutlined.tsx +++ b/src/IconEditLocationAltOutlined.tsx @@ -8,4 +8,4 @@ const IconEditLocationAltOutlined: React.FC = ({ ...props }) => ( ) -export { IconEditLocationAltOutlined as default } +export default IconEditLocationAltOutlined diff --git a/src/IconEditLocationAltOutlinedFilled.tsx b/src/IconEditLocationAltOutlinedFilled.tsx index e300afb52..c94f47082 100644 --- a/src/IconEditLocationAltOutlinedFilled.tsx +++ b/src/IconEditLocationAltOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconEditLocationAltOutlinedFilled: React.FC = ({ ) -export { IconEditLocationAltOutlinedFilled as default } +export default IconEditLocationAltOutlinedFilled diff --git a/src/IconEditLocationAltRounded.tsx b/src/IconEditLocationAltRounded.tsx index 49e0ca94a..c7fd7e4b1 100644 --- a/src/IconEditLocationAltRounded.tsx +++ b/src/IconEditLocationAltRounded.tsx @@ -8,4 +8,4 @@ const IconEditLocationAltRounded: React.FC = ({ ...props }) => ( ) -export { IconEditLocationAltRounded as default } +export default IconEditLocationAltRounded diff --git a/src/IconEditLocationAltRoundedFilled.tsx b/src/IconEditLocationAltRoundedFilled.tsx index 299d907ff..290cb444f 100644 --- a/src/IconEditLocationAltRoundedFilled.tsx +++ b/src/IconEditLocationAltRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconEditLocationAltRoundedFilled: React.FC = ({ ) -export { IconEditLocationAltRoundedFilled as default } +export default IconEditLocationAltRoundedFilled diff --git a/src/IconEditLocationAltSharp.tsx b/src/IconEditLocationAltSharp.tsx index 39bc485ee..d2ae598ea 100644 --- a/src/IconEditLocationAltSharp.tsx +++ b/src/IconEditLocationAltSharp.tsx @@ -8,4 +8,4 @@ const IconEditLocationAltSharp: React.FC = ({ ...props }) => ( ) -export { IconEditLocationAltSharp as default } +export default IconEditLocationAltSharp diff --git a/src/IconEditLocationAltSharpFilled.tsx b/src/IconEditLocationAltSharpFilled.tsx index d43121ceb..00affae4f 100644 --- a/src/IconEditLocationAltSharpFilled.tsx +++ b/src/IconEditLocationAltSharpFilled.tsx @@ -8,4 +8,4 @@ const IconEditLocationAltSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconEditLocationAltSharpFilled as default } +export default IconEditLocationAltSharpFilled diff --git a/src/IconEditLocationOutlined.tsx b/src/IconEditLocationOutlined.tsx index 0a89c6315..36ba8c38f 100644 --- a/src/IconEditLocationOutlined.tsx +++ b/src/IconEditLocationOutlined.tsx @@ -8,4 +8,4 @@ const IconEditLocationOutlined: React.FC = ({ ...props }) => ( ) -export { IconEditLocationOutlined as default } +export default IconEditLocationOutlined diff --git a/src/IconEditLocationOutlinedFilled.tsx b/src/IconEditLocationOutlinedFilled.tsx index be8141c5b..0d6812865 100644 --- a/src/IconEditLocationOutlinedFilled.tsx +++ b/src/IconEditLocationOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconEditLocationOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconEditLocationOutlinedFilled as default } +export default IconEditLocationOutlinedFilled diff --git a/src/IconEditLocationRounded.tsx b/src/IconEditLocationRounded.tsx index 3ba1b767d..07b7e300c 100644 --- a/src/IconEditLocationRounded.tsx +++ b/src/IconEditLocationRounded.tsx @@ -8,4 +8,4 @@ const IconEditLocationRounded: React.FC = ({ ...props }) => ( ) -export { IconEditLocationRounded as default } +export default IconEditLocationRounded diff --git a/src/IconEditLocationRoundedFilled.tsx b/src/IconEditLocationRoundedFilled.tsx index d45ac4bc1..193e80916 100644 --- a/src/IconEditLocationRoundedFilled.tsx +++ b/src/IconEditLocationRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconEditLocationRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconEditLocationRoundedFilled as default } +export default IconEditLocationRoundedFilled diff --git a/src/IconEditLocationSharp.tsx b/src/IconEditLocationSharp.tsx index 16daf7512..b2559d259 100644 --- a/src/IconEditLocationSharp.tsx +++ b/src/IconEditLocationSharp.tsx @@ -8,4 +8,4 @@ const IconEditLocationSharp: React.FC = ({ ...props }) => ( ) -export { IconEditLocationSharp as default } +export default IconEditLocationSharp diff --git a/src/IconEditLocationSharpFilled.tsx b/src/IconEditLocationSharpFilled.tsx index c480aac00..9e58c206a 100644 --- a/src/IconEditLocationSharpFilled.tsx +++ b/src/IconEditLocationSharpFilled.tsx @@ -8,4 +8,4 @@ const IconEditLocationSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconEditLocationSharpFilled as default } +export default IconEditLocationSharpFilled diff --git a/src/IconEditNoteOutlined.tsx b/src/IconEditNoteOutlined.tsx index caeb176f8..a10d88188 100644 --- a/src/IconEditNoteOutlined.tsx +++ b/src/IconEditNoteOutlined.tsx @@ -8,4 +8,4 @@ const IconEditNoteOutlined: React.FC = ({ ...props }) => ( ) -export { IconEditNoteOutlined as default } +export default IconEditNoteOutlined diff --git a/src/IconEditNoteOutlinedFilled.tsx b/src/IconEditNoteOutlinedFilled.tsx index 43ebda75c..c3f8e1c31 100644 --- a/src/IconEditNoteOutlinedFilled.tsx +++ b/src/IconEditNoteOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconEditNoteOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconEditNoteOutlinedFilled as default } +export default IconEditNoteOutlinedFilled diff --git a/src/IconEditNoteRounded.tsx b/src/IconEditNoteRounded.tsx index e13b0a35f..614b83c49 100644 --- a/src/IconEditNoteRounded.tsx +++ b/src/IconEditNoteRounded.tsx @@ -8,4 +8,4 @@ const IconEditNoteRounded: React.FC = ({ ...props }) => ( ) -export { IconEditNoteRounded as default } +export default IconEditNoteRounded diff --git a/src/IconEditNoteRoundedFilled.tsx b/src/IconEditNoteRoundedFilled.tsx index e2eb42454..0cf5ba381 100644 --- a/src/IconEditNoteRoundedFilled.tsx +++ b/src/IconEditNoteRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconEditNoteRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconEditNoteRoundedFilled as default } +export default IconEditNoteRoundedFilled diff --git a/src/IconEditNoteSharp.tsx b/src/IconEditNoteSharp.tsx index 625162268..c28a1b41d 100644 --- a/src/IconEditNoteSharp.tsx +++ b/src/IconEditNoteSharp.tsx @@ -8,4 +8,4 @@ const IconEditNoteSharp: React.FC = ({ ...props }) => ( ) -export { IconEditNoteSharp as default } +export default IconEditNoteSharp diff --git a/src/IconEditNoteSharpFilled.tsx b/src/IconEditNoteSharpFilled.tsx index 05a882345..a64eb9715 100644 --- a/src/IconEditNoteSharpFilled.tsx +++ b/src/IconEditNoteSharpFilled.tsx @@ -8,4 +8,4 @@ const IconEditNoteSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconEditNoteSharpFilled as default } +export default IconEditNoteSharpFilled diff --git a/src/IconEditNotificationsOutlined.tsx b/src/IconEditNotificationsOutlined.tsx index f6736fb50..7b7866e2c 100644 --- a/src/IconEditNotificationsOutlined.tsx +++ b/src/IconEditNotificationsOutlined.tsx @@ -8,4 +8,4 @@ const IconEditNotificationsOutlined: React.FC = ({ ...props }) => ( ) -export { IconEditNotificationsOutlined as default } +export default IconEditNotificationsOutlined diff --git a/src/IconEditNotificationsOutlinedFilled.tsx b/src/IconEditNotificationsOutlinedFilled.tsx index ee23a5694..f7f2ee50e 100644 --- a/src/IconEditNotificationsOutlinedFilled.tsx +++ b/src/IconEditNotificationsOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconEditNotificationsOutlinedFilled: React.FC = ({ ) -export { IconEditNotificationsOutlinedFilled as default } +export default IconEditNotificationsOutlinedFilled diff --git a/src/IconEditNotificationsRounded.tsx b/src/IconEditNotificationsRounded.tsx index 30a819b6f..96973fe3f 100644 --- a/src/IconEditNotificationsRounded.tsx +++ b/src/IconEditNotificationsRounded.tsx @@ -8,4 +8,4 @@ const IconEditNotificationsRounded: React.FC = ({ ...props }) => ( ) -export { IconEditNotificationsRounded as default } +export default IconEditNotificationsRounded diff --git a/src/IconEditNotificationsRoundedFilled.tsx b/src/IconEditNotificationsRoundedFilled.tsx index 47ed44ca7..560ee75e8 100644 --- a/src/IconEditNotificationsRoundedFilled.tsx +++ b/src/IconEditNotificationsRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconEditNotificationsRoundedFilled: React.FC = ({ ) -export { IconEditNotificationsRoundedFilled as default } +export default IconEditNotificationsRoundedFilled diff --git a/src/IconEditNotificationsSharp.tsx b/src/IconEditNotificationsSharp.tsx index c734d9f56..1a912657d 100644 --- a/src/IconEditNotificationsSharp.tsx +++ b/src/IconEditNotificationsSharp.tsx @@ -8,4 +8,4 @@ const IconEditNotificationsSharp: React.FC = ({ ...props }) => ( ) -export { IconEditNotificationsSharp as default } +export default IconEditNotificationsSharp diff --git a/src/IconEditNotificationsSharpFilled.tsx b/src/IconEditNotificationsSharpFilled.tsx index d25d98441..a6fd533ca 100644 --- a/src/IconEditNotificationsSharpFilled.tsx +++ b/src/IconEditNotificationsSharpFilled.tsx @@ -10,4 +10,4 @@ const IconEditNotificationsSharpFilled: React.FC = ({ ) -export { IconEditNotificationsSharpFilled as default } +export default IconEditNotificationsSharpFilled diff --git a/src/IconEditOffOutlined.tsx b/src/IconEditOffOutlined.tsx index 202d3f0f4..0c8f29e82 100644 --- a/src/IconEditOffOutlined.tsx +++ b/src/IconEditOffOutlined.tsx @@ -8,4 +8,4 @@ const IconEditOffOutlined: React.FC = ({ ...props }) => ( ) -export { IconEditOffOutlined as default } +export default IconEditOffOutlined diff --git a/src/IconEditOffOutlinedFilled.tsx b/src/IconEditOffOutlinedFilled.tsx index 99cc93d36..a0e5bddce 100644 --- a/src/IconEditOffOutlinedFilled.tsx +++ b/src/IconEditOffOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconEditOffOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconEditOffOutlinedFilled as default } +export default IconEditOffOutlinedFilled diff --git a/src/IconEditOffRounded.tsx b/src/IconEditOffRounded.tsx index d3bb9e8ef..6434db89c 100644 --- a/src/IconEditOffRounded.tsx +++ b/src/IconEditOffRounded.tsx @@ -8,4 +8,4 @@ const IconEditOffRounded: React.FC = ({ ...props }) => ( ) -export { IconEditOffRounded as default } +export default IconEditOffRounded diff --git a/src/IconEditOffRoundedFilled.tsx b/src/IconEditOffRoundedFilled.tsx index 236098e15..9bb0f82f6 100644 --- a/src/IconEditOffRoundedFilled.tsx +++ b/src/IconEditOffRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconEditOffRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconEditOffRoundedFilled as default } +export default IconEditOffRoundedFilled diff --git a/src/IconEditOffSharp.tsx b/src/IconEditOffSharp.tsx index bb0a62616..ee4561b26 100644 --- a/src/IconEditOffSharp.tsx +++ b/src/IconEditOffSharp.tsx @@ -8,4 +8,4 @@ const IconEditOffSharp: React.FC = ({ ...props }) => ( ) -export { IconEditOffSharp as default } +export default IconEditOffSharp diff --git a/src/IconEditOffSharpFilled.tsx b/src/IconEditOffSharpFilled.tsx index 580708007..71c8eb75e 100644 --- a/src/IconEditOffSharpFilled.tsx +++ b/src/IconEditOffSharpFilled.tsx @@ -8,4 +8,4 @@ const IconEditOffSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconEditOffSharpFilled as default } +export default IconEditOffSharpFilled diff --git a/src/IconEditOutlined.tsx b/src/IconEditOutlined.tsx index a0b187c7e..7c3147568 100644 --- a/src/IconEditOutlined.tsx +++ b/src/IconEditOutlined.tsx @@ -8,4 +8,4 @@ const IconEditOutlined: React.FC = ({ ...props }) => ( ) -export { IconEditOutlined as default } +export default IconEditOutlined diff --git a/src/IconEditOutlinedFilled.tsx b/src/IconEditOutlinedFilled.tsx index 7a032833b..2258c4e8d 100644 --- a/src/IconEditOutlinedFilled.tsx +++ b/src/IconEditOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconEditOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconEditOutlinedFilled as default } +export default IconEditOutlinedFilled diff --git a/src/IconEditRoadOutlined.tsx b/src/IconEditRoadOutlined.tsx index ad73b389b..ffe3ef144 100644 --- a/src/IconEditRoadOutlined.tsx +++ b/src/IconEditRoadOutlined.tsx @@ -8,4 +8,4 @@ const IconEditRoadOutlined: React.FC = ({ ...props }) => ( ) -export { IconEditRoadOutlined as default } +export default IconEditRoadOutlined diff --git a/src/IconEditRoadOutlinedFilled.tsx b/src/IconEditRoadOutlinedFilled.tsx index 2fa2ec8d7..591afcac5 100644 --- a/src/IconEditRoadOutlinedFilled.tsx +++ b/src/IconEditRoadOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconEditRoadOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconEditRoadOutlinedFilled as default } +export default IconEditRoadOutlinedFilled diff --git a/src/IconEditRoadRounded.tsx b/src/IconEditRoadRounded.tsx index a915c189d..18f6426fa 100644 --- a/src/IconEditRoadRounded.tsx +++ b/src/IconEditRoadRounded.tsx @@ -8,4 +8,4 @@ const IconEditRoadRounded: React.FC = ({ ...props }) => ( ) -export { IconEditRoadRounded as default } +export default IconEditRoadRounded diff --git a/src/IconEditRoadRoundedFilled.tsx b/src/IconEditRoadRoundedFilled.tsx index 14bbd02ed..653453b85 100644 --- a/src/IconEditRoadRoundedFilled.tsx +++ b/src/IconEditRoadRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconEditRoadRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconEditRoadRoundedFilled as default } +export default IconEditRoadRoundedFilled diff --git a/src/IconEditRoadSharp.tsx b/src/IconEditRoadSharp.tsx index dcfdcb1c5..79e3bf9d2 100644 --- a/src/IconEditRoadSharp.tsx +++ b/src/IconEditRoadSharp.tsx @@ -8,4 +8,4 @@ const IconEditRoadSharp: React.FC = ({ ...props }) => ( ) -export { IconEditRoadSharp as default } +export default IconEditRoadSharp diff --git a/src/IconEditRoadSharpFilled.tsx b/src/IconEditRoadSharpFilled.tsx index fe4011328..0c816f9f5 100644 --- a/src/IconEditRoadSharpFilled.tsx +++ b/src/IconEditRoadSharpFilled.tsx @@ -8,4 +8,4 @@ const IconEditRoadSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconEditRoadSharpFilled as default } +export default IconEditRoadSharpFilled diff --git a/src/IconEditRounded.tsx b/src/IconEditRounded.tsx index 701a191b8..d25655299 100644 --- a/src/IconEditRounded.tsx +++ b/src/IconEditRounded.tsx @@ -8,4 +8,4 @@ const IconEditRounded: React.FC = ({ ...props }) => ( ) -export { IconEditRounded as default } +export default IconEditRounded diff --git a/src/IconEditRoundedFilled.tsx b/src/IconEditRoundedFilled.tsx index 9dea5ff51..aa95c61bc 100644 --- a/src/IconEditRoundedFilled.tsx +++ b/src/IconEditRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconEditRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconEditRoundedFilled as default } +export default IconEditRoundedFilled diff --git a/src/IconEditSharp.tsx b/src/IconEditSharp.tsx index fa32056fa..f06243fa0 100644 --- a/src/IconEditSharp.tsx +++ b/src/IconEditSharp.tsx @@ -8,4 +8,4 @@ const IconEditSharp: React.FC = ({ ...props }) => ( ) -export { IconEditSharp as default } +export default IconEditSharp diff --git a/src/IconEditSharpFilled.tsx b/src/IconEditSharpFilled.tsx index c35c75216..3b9e5deb3 100644 --- a/src/IconEditSharpFilled.tsx +++ b/src/IconEditSharpFilled.tsx @@ -8,4 +8,4 @@ const IconEditSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconEditSharpFilled as default } +export default IconEditSharpFilled diff --git a/src/IconEditSquareOutlined.tsx b/src/IconEditSquareOutlined.tsx index 0cb12300f..922267116 100644 --- a/src/IconEditSquareOutlined.tsx +++ b/src/IconEditSquareOutlined.tsx @@ -8,4 +8,4 @@ const IconEditSquareOutlined: React.FC = ({ ...props }) => ( ) -export { IconEditSquareOutlined as default } +export default IconEditSquareOutlined diff --git a/src/IconEditSquareOutlinedFilled.tsx b/src/IconEditSquareOutlinedFilled.tsx index a333902d6..ab77f41d1 100644 --- a/src/IconEditSquareOutlinedFilled.tsx +++ b/src/IconEditSquareOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconEditSquareOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconEditSquareOutlinedFilled as default } +export default IconEditSquareOutlinedFilled diff --git a/src/IconEditSquareRounded.tsx b/src/IconEditSquareRounded.tsx index c47d31ac9..9147e692c 100644 --- a/src/IconEditSquareRounded.tsx +++ b/src/IconEditSquareRounded.tsx @@ -8,4 +8,4 @@ const IconEditSquareRounded: React.FC = ({ ...props }) => ( ) -export { IconEditSquareRounded as default } +export default IconEditSquareRounded diff --git a/src/IconEditSquareRoundedFilled.tsx b/src/IconEditSquareRoundedFilled.tsx index f26bfdce6..84c943c71 100644 --- a/src/IconEditSquareRoundedFilled.tsx +++ b/src/IconEditSquareRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconEditSquareRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconEditSquareRoundedFilled as default } +export default IconEditSquareRoundedFilled diff --git a/src/IconEditSquareSharp.tsx b/src/IconEditSquareSharp.tsx index dba719cd0..31afb3f02 100644 --- a/src/IconEditSquareSharp.tsx +++ b/src/IconEditSquareSharp.tsx @@ -8,4 +8,4 @@ const IconEditSquareSharp: React.FC = ({ ...props }) => ( ) -export { IconEditSquareSharp as default } +export default IconEditSquareSharp diff --git a/src/IconEditSquareSharpFilled.tsx b/src/IconEditSquareSharpFilled.tsx index 9b7cd5519..0d955be95 100644 --- a/src/IconEditSquareSharpFilled.tsx +++ b/src/IconEditSquareSharpFilled.tsx @@ -8,4 +8,4 @@ const IconEditSquareSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconEditSquareSharpFilled as default } +export default IconEditSquareSharpFilled diff --git a/src/IconEditorChoiceOutlined.tsx b/src/IconEditorChoiceOutlined.tsx index 5e189b144..e8d2084d6 100644 --- a/src/IconEditorChoiceOutlined.tsx +++ b/src/IconEditorChoiceOutlined.tsx @@ -8,4 +8,4 @@ const IconEditorChoiceOutlined: React.FC = ({ ...props }) => ( ) -export { IconEditorChoiceOutlined as default } +export default IconEditorChoiceOutlined diff --git a/src/IconEditorChoiceOutlinedFilled.tsx b/src/IconEditorChoiceOutlinedFilled.tsx index 1fab96f4d..d4b55180b 100644 --- a/src/IconEditorChoiceOutlinedFilled.tsx +++ b/src/IconEditorChoiceOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconEditorChoiceOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconEditorChoiceOutlinedFilled as default } +export default IconEditorChoiceOutlinedFilled diff --git a/src/IconEditorChoiceRounded.tsx b/src/IconEditorChoiceRounded.tsx index 87391b4d5..58e97ce50 100644 --- a/src/IconEditorChoiceRounded.tsx +++ b/src/IconEditorChoiceRounded.tsx @@ -8,4 +8,4 @@ const IconEditorChoiceRounded: React.FC = ({ ...props }) => ( ) -export { IconEditorChoiceRounded as default } +export default IconEditorChoiceRounded diff --git a/src/IconEditorChoiceRoundedFilled.tsx b/src/IconEditorChoiceRoundedFilled.tsx index 93ce328b0..91495f4b8 100644 --- a/src/IconEditorChoiceRoundedFilled.tsx +++ b/src/IconEditorChoiceRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconEditorChoiceRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconEditorChoiceRoundedFilled as default } +export default IconEditorChoiceRoundedFilled diff --git a/src/IconEditorChoiceSharp.tsx b/src/IconEditorChoiceSharp.tsx index 766966748..46b954dad 100644 --- a/src/IconEditorChoiceSharp.tsx +++ b/src/IconEditorChoiceSharp.tsx @@ -8,4 +8,4 @@ const IconEditorChoiceSharp: React.FC = ({ ...props }) => ( ) -export { IconEditorChoiceSharp as default } +export default IconEditorChoiceSharp diff --git a/src/IconEditorChoiceSharpFilled.tsx b/src/IconEditorChoiceSharpFilled.tsx index 3bb08bfa1..50c35bfe8 100644 --- a/src/IconEditorChoiceSharpFilled.tsx +++ b/src/IconEditorChoiceSharpFilled.tsx @@ -8,4 +8,4 @@ const IconEditorChoiceSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconEditorChoiceSharpFilled as default } +export default IconEditorChoiceSharpFilled diff --git a/src/IconEggAltOutlined.tsx b/src/IconEggAltOutlined.tsx index eb033202c..dcc591413 100644 --- a/src/IconEggAltOutlined.tsx +++ b/src/IconEggAltOutlined.tsx @@ -8,4 +8,4 @@ const IconEggAltOutlined: React.FC = ({ ...props }) => ( ) -export { IconEggAltOutlined as default } +export default IconEggAltOutlined diff --git a/src/IconEggAltOutlinedFilled.tsx b/src/IconEggAltOutlinedFilled.tsx index d353801b9..acd0161c7 100644 --- a/src/IconEggAltOutlinedFilled.tsx +++ b/src/IconEggAltOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconEggAltOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconEggAltOutlinedFilled as default } +export default IconEggAltOutlinedFilled diff --git a/src/IconEggAltRounded.tsx b/src/IconEggAltRounded.tsx index 7faac9435..b6640559c 100644 --- a/src/IconEggAltRounded.tsx +++ b/src/IconEggAltRounded.tsx @@ -8,4 +8,4 @@ const IconEggAltRounded: React.FC = ({ ...props }) => ( ) -export { IconEggAltRounded as default } +export default IconEggAltRounded diff --git a/src/IconEggAltRoundedFilled.tsx b/src/IconEggAltRoundedFilled.tsx index 3481a40b8..87ff98bcc 100644 --- a/src/IconEggAltRoundedFilled.tsx +++ b/src/IconEggAltRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconEggAltRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconEggAltRoundedFilled as default } +export default IconEggAltRoundedFilled diff --git a/src/IconEggAltSharp.tsx b/src/IconEggAltSharp.tsx index 85fa98fef..8a1bb1439 100644 --- a/src/IconEggAltSharp.tsx +++ b/src/IconEggAltSharp.tsx @@ -8,4 +8,4 @@ const IconEggAltSharp: React.FC = ({ ...props }) => ( ) -export { IconEggAltSharp as default } +export default IconEggAltSharp diff --git a/src/IconEggAltSharpFilled.tsx b/src/IconEggAltSharpFilled.tsx index edaebd0fa..92a85d27d 100644 --- a/src/IconEggAltSharpFilled.tsx +++ b/src/IconEggAltSharpFilled.tsx @@ -8,4 +8,4 @@ const IconEggAltSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconEggAltSharpFilled as default } +export default IconEggAltSharpFilled diff --git a/src/IconEggOutlined.tsx b/src/IconEggOutlined.tsx index b49f71ca4..f9c67d846 100644 --- a/src/IconEggOutlined.tsx +++ b/src/IconEggOutlined.tsx @@ -8,4 +8,4 @@ const IconEggOutlined: React.FC = ({ ...props }) => ( ) -export { IconEggOutlined as default } +export default IconEggOutlined diff --git a/src/IconEggOutlinedFilled.tsx b/src/IconEggOutlinedFilled.tsx index 1f34e67c3..1a79f4603 100644 --- a/src/IconEggOutlinedFilled.tsx +++ b/src/IconEggOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconEggOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconEggOutlinedFilled as default } +export default IconEggOutlinedFilled diff --git a/src/IconEggRounded.tsx b/src/IconEggRounded.tsx index 189cd1d63..d4885d3cb 100644 --- a/src/IconEggRounded.tsx +++ b/src/IconEggRounded.tsx @@ -8,4 +8,4 @@ const IconEggRounded: React.FC = ({ ...props }) => ( ) -export { IconEggRounded as default } +export default IconEggRounded diff --git a/src/IconEggRoundedFilled.tsx b/src/IconEggRoundedFilled.tsx index 1749b96a8..b11109b03 100644 --- a/src/IconEggRoundedFilled.tsx +++ b/src/IconEggRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconEggRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconEggRoundedFilled as default } +export default IconEggRoundedFilled diff --git a/src/IconEggSharp.tsx b/src/IconEggSharp.tsx index 8f3e83830..3bbe5a57f 100644 --- a/src/IconEggSharp.tsx +++ b/src/IconEggSharp.tsx @@ -8,4 +8,4 @@ const IconEggSharp: React.FC = ({ ...props }) => ( ) -export { IconEggSharp as default } +export default IconEggSharp diff --git a/src/IconEggSharpFilled.tsx b/src/IconEggSharpFilled.tsx index 2ad6b65be..c1553a626 100644 --- a/src/IconEggSharpFilled.tsx +++ b/src/IconEggSharpFilled.tsx @@ -8,4 +8,4 @@ const IconEggSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconEggSharpFilled as default } +export default IconEggSharpFilled diff --git a/src/IconEjectOutlined.tsx b/src/IconEjectOutlined.tsx index 3981b62e3..69b62a939 100644 --- a/src/IconEjectOutlined.tsx +++ b/src/IconEjectOutlined.tsx @@ -8,4 +8,4 @@ const IconEjectOutlined: React.FC = ({ ...props }) => ( ) -export { IconEjectOutlined as default } +export default IconEjectOutlined diff --git a/src/IconEjectOutlinedFilled.tsx b/src/IconEjectOutlinedFilled.tsx index 4858dc01b..d6d3e8585 100644 --- a/src/IconEjectOutlinedFilled.tsx +++ b/src/IconEjectOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconEjectOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconEjectOutlinedFilled as default } +export default IconEjectOutlinedFilled diff --git a/src/IconEjectRounded.tsx b/src/IconEjectRounded.tsx index a349c18a2..5a0337d69 100644 --- a/src/IconEjectRounded.tsx +++ b/src/IconEjectRounded.tsx @@ -8,4 +8,4 @@ const IconEjectRounded: React.FC = ({ ...props }) => ( ) -export { IconEjectRounded as default } +export default IconEjectRounded diff --git a/src/IconEjectRoundedFilled.tsx b/src/IconEjectRoundedFilled.tsx index 50aeaceb3..f74420d13 100644 --- a/src/IconEjectRoundedFilled.tsx +++ b/src/IconEjectRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconEjectRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconEjectRoundedFilled as default } +export default IconEjectRoundedFilled diff --git a/src/IconEjectSharp.tsx b/src/IconEjectSharp.tsx index 10384bf60..4535e2210 100644 --- a/src/IconEjectSharp.tsx +++ b/src/IconEjectSharp.tsx @@ -8,4 +8,4 @@ const IconEjectSharp: React.FC = ({ ...props }) => ( ) -export { IconEjectSharp as default } +export default IconEjectSharp diff --git a/src/IconEjectSharpFilled.tsx b/src/IconEjectSharpFilled.tsx index a4a721518..a8bdce24b 100644 --- a/src/IconEjectSharpFilled.tsx +++ b/src/IconEjectSharpFilled.tsx @@ -8,4 +8,4 @@ const IconEjectSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconEjectSharpFilled as default } +export default IconEjectSharpFilled diff --git a/src/IconElderlyOutlined.tsx b/src/IconElderlyOutlined.tsx index 4d1281095..eae98e62c 100644 --- a/src/IconElderlyOutlined.tsx +++ b/src/IconElderlyOutlined.tsx @@ -8,4 +8,4 @@ const IconElderlyOutlined: React.FC = ({ ...props }) => ( ) -export { IconElderlyOutlined as default } +export default IconElderlyOutlined diff --git a/src/IconElderlyOutlinedFilled.tsx b/src/IconElderlyOutlinedFilled.tsx index bed01a9cf..c10085391 100644 --- a/src/IconElderlyOutlinedFilled.tsx +++ b/src/IconElderlyOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconElderlyOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconElderlyOutlinedFilled as default } +export default IconElderlyOutlinedFilled diff --git a/src/IconElderlyRounded.tsx b/src/IconElderlyRounded.tsx index 06ed8d646..b3c29aedd 100644 --- a/src/IconElderlyRounded.tsx +++ b/src/IconElderlyRounded.tsx @@ -8,4 +8,4 @@ const IconElderlyRounded: React.FC = ({ ...props }) => ( ) -export { IconElderlyRounded as default } +export default IconElderlyRounded diff --git a/src/IconElderlyRoundedFilled.tsx b/src/IconElderlyRoundedFilled.tsx index bbb5b53d2..bca9ca50a 100644 --- a/src/IconElderlyRoundedFilled.tsx +++ b/src/IconElderlyRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconElderlyRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconElderlyRoundedFilled as default } +export default IconElderlyRoundedFilled diff --git a/src/IconElderlySharp.tsx b/src/IconElderlySharp.tsx index 584dee5b0..fc9eb456c 100644 --- a/src/IconElderlySharp.tsx +++ b/src/IconElderlySharp.tsx @@ -8,4 +8,4 @@ const IconElderlySharp: React.FC = ({ ...props }) => ( ) -export { IconElderlySharp as default } +export default IconElderlySharp diff --git a/src/IconElderlySharpFilled.tsx b/src/IconElderlySharpFilled.tsx index ae48bccdf..e517f0fe7 100644 --- a/src/IconElderlySharpFilled.tsx +++ b/src/IconElderlySharpFilled.tsx @@ -8,4 +8,4 @@ const IconElderlySharpFilled: React.FC = ({ ...props }) => ( ) -export { IconElderlySharpFilled as default } +export default IconElderlySharpFilled diff --git a/src/IconElderlyWomanOutlined.tsx b/src/IconElderlyWomanOutlined.tsx index b91d03bb5..17d16220b 100644 --- a/src/IconElderlyWomanOutlined.tsx +++ b/src/IconElderlyWomanOutlined.tsx @@ -8,4 +8,4 @@ const IconElderlyWomanOutlined: React.FC = ({ ...props }) => ( ) -export { IconElderlyWomanOutlined as default } +export default IconElderlyWomanOutlined diff --git a/src/IconElderlyWomanOutlinedFilled.tsx b/src/IconElderlyWomanOutlinedFilled.tsx index d7b0cf419..b79e972cf 100644 --- a/src/IconElderlyWomanOutlinedFilled.tsx +++ b/src/IconElderlyWomanOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconElderlyWomanOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconElderlyWomanOutlinedFilled as default } +export default IconElderlyWomanOutlinedFilled diff --git a/src/IconElderlyWomanRounded.tsx b/src/IconElderlyWomanRounded.tsx index 535f14c8e..777dc7bd1 100644 --- a/src/IconElderlyWomanRounded.tsx +++ b/src/IconElderlyWomanRounded.tsx @@ -8,4 +8,4 @@ const IconElderlyWomanRounded: React.FC = ({ ...props }) => ( ) -export { IconElderlyWomanRounded as default } +export default IconElderlyWomanRounded diff --git a/src/IconElderlyWomanRoundedFilled.tsx b/src/IconElderlyWomanRoundedFilled.tsx index b5deccc1c..2923d3925 100644 --- a/src/IconElderlyWomanRoundedFilled.tsx +++ b/src/IconElderlyWomanRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconElderlyWomanRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconElderlyWomanRoundedFilled as default } +export default IconElderlyWomanRoundedFilled diff --git a/src/IconElderlyWomanSharp.tsx b/src/IconElderlyWomanSharp.tsx index 0499678cb..d383c2a9c 100644 --- a/src/IconElderlyWomanSharp.tsx +++ b/src/IconElderlyWomanSharp.tsx @@ -8,4 +8,4 @@ const IconElderlyWomanSharp: React.FC = ({ ...props }) => ( ) -export { IconElderlyWomanSharp as default } +export default IconElderlyWomanSharp diff --git a/src/IconElderlyWomanSharpFilled.tsx b/src/IconElderlyWomanSharpFilled.tsx index 53371b360..8955290cb 100644 --- a/src/IconElderlyWomanSharpFilled.tsx +++ b/src/IconElderlyWomanSharpFilled.tsx @@ -8,4 +8,4 @@ const IconElderlyWomanSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconElderlyWomanSharpFilled as default } +export default IconElderlyWomanSharpFilled diff --git a/src/IconElectricBikeOutlined.tsx b/src/IconElectricBikeOutlined.tsx index a6e0763f4..d561eabac 100644 --- a/src/IconElectricBikeOutlined.tsx +++ b/src/IconElectricBikeOutlined.tsx @@ -8,4 +8,4 @@ const IconElectricBikeOutlined: React.FC = ({ ...props }) => ( ) -export { IconElectricBikeOutlined as default } +export default IconElectricBikeOutlined diff --git a/src/IconElectricBikeOutlinedFilled.tsx b/src/IconElectricBikeOutlinedFilled.tsx index 8dd0e7a5b..ed83a322b 100644 --- a/src/IconElectricBikeOutlinedFilled.tsx +++ b/src/IconElectricBikeOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconElectricBikeOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconElectricBikeOutlinedFilled as default } +export default IconElectricBikeOutlinedFilled diff --git a/src/IconElectricBikeRounded.tsx b/src/IconElectricBikeRounded.tsx index a44d5edb3..2359945a6 100644 --- a/src/IconElectricBikeRounded.tsx +++ b/src/IconElectricBikeRounded.tsx @@ -8,4 +8,4 @@ const IconElectricBikeRounded: React.FC = ({ ...props }) => ( ) -export { IconElectricBikeRounded as default } +export default IconElectricBikeRounded diff --git a/src/IconElectricBikeRoundedFilled.tsx b/src/IconElectricBikeRoundedFilled.tsx index 723ef1a25..201130106 100644 --- a/src/IconElectricBikeRoundedFilled.tsx +++ b/src/IconElectricBikeRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconElectricBikeRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconElectricBikeRoundedFilled as default } +export default IconElectricBikeRoundedFilled diff --git a/src/IconElectricBikeSharp.tsx b/src/IconElectricBikeSharp.tsx index 4c768300c..402e1ba55 100644 --- a/src/IconElectricBikeSharp.tsx +++ b/src/IconElectricBikeSharp.tsx @@ -8,4 +8,4 @@ const IconElectricBikeSharp: React.FC = ({ ...props }) => ( ) -export { IconElectricBikeSharp as default } +export default IconElectricBikeSharp diff --git a/src/IconElectricBikeSharpFilled.tsx b/src/IconElectricBikeSharpFilled.tsx index a63c79016..8264b4255 100644 --- a/src/IconElectricBikeSharpFilled.tsx +++ b/src/IconElectricBikeSharpFilled.tsx @@ -8,4 +8,4 @@ const IconElectricBikeSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconElectricBikeSharpFilled as default } +export default IconElectricBikeSharpFilled diff --git a/src/IconElectricBoltOutlined.tsx b/src/IconElectricBoltOutlined.tsx index e041a7afb..6738431b0 100644 --- a/src/IconElectricBoltOutlined.tsx +++ b/src/IconElectricBoltOutlined.tsx @@ -8,4 +8,4 @@ const IconElectricBoltOutlined: React.FC = ({ ...props }) => ( ) -export { IconElectricBoltOutlined as default } +export default IconElectricBoltOutlined diff --git a/src/IconElectricBoltOutlinedFilled.tsx b/src/IconElectricBoltOutlinedFilled.tsx index e23d5b93e..b53852b97 100644 --- a/src/IconElectricBoltOutlinedFilled.tsx +++ b/src/IconElectricBoltOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconElectricBoltOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconElectricBoltOutlinedFilled as default } +export default IconElectricBoltOutlinedFilled diff --git a/src/IconElectricBoltRounded.tsx b/src/IconElectricBoltRounded.tsx index 88ab5c329..262415d09 100644 --- a/src/IconElectricBoltRounded.tsx +++ b/src/IconElectricBoltRounded.tsx @@ -8,4 +8,4 @@ const IconElectricBoltRounded: React.FC = ({ ...props }) => ( ) -export { IconElectricBoltRounded as default } +export default IconElectricBoltRounded diff --git a/src/IconElectricBoltRoundedFilled.tsx b/src/IconElectricBoltRoundedFilled.tsx index 78ea481bf..afc8d245b 100644 --- a/src/IconElectricBoltRoundedFilled.tsx +++ b/src/IconElectricBoltRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconElectricBoltRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconElectricBoltRoundedFilled as default } +export default IconElectricBoltRoundedFilled diff --git a/src/IconElectricBoltSharp.tsx b/src/IconElectricBoltSharp.tsx index b113836a4..b21e094e1 100644 --- a/src/IconElectricBoltSharp.tsx +++ b/src/IconElectricBoltSharp.tsx @@ -8,4 +8,4 @@ const IconElectricBoltSharp: React.FC = ({ ...props }) => ( ) -export { IconElectricBoltSharp as default } +export default IconElectricBoltSharp diff --git a/src/IconElectricBoltSharpFilled.tsx b/src/IconElectricBoltSharpFilled.tsx index 3ae92176c..e9afc0668 100644 --- a/src/IconElectricBoltSharpFilled.tsx +++ b/src/IconElectricBoltSharpFilled.tsx @@ -8,4 +8,4 @@ const IconElectricBoltSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconElectricBoltSharpFilled as default } +export default IconElectricBoltSharpFilled diff --git a/src/IconElectricCarOutlined.tsx b/src/IconElectricCarOutlined.tsx index 91a5c46b3..c6c4b08cc 100644 --- a/src/IconElectricCarOutlined.tsx +++ b/src/IconElectricCarOutlined.tsx @@ -8,4 +8,4 @@ const IconElectricCarOutlined: React.FC = ({ ...props }) => ( ) -export { IconElectricCarOutlined as default } +export default IconElectricCarOutlined diff --git a/src/IconElectricCarOutlinedFilled.tsx b/src/IconElectricCarOutlinedFilled.tsx index 427ee62fa..7b18f065c 100644 --- a/src/IconElectricCarOutlinedFilled.tsx +++ b/src/IconElectricCarOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconElectricCarOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconElectricCarOutlinedFilled as default } +export default IconElectricCarOutlinedFilled diff --git a/src/IconElectricCarRounded.tsx b/src/IconElectricCarRounded.tsx index 3e8e64323..0aec45531 100644 --- a/src/IconElectricCarRounded.tsx +++ b/src/IconElectricCarRounded.tsx @@ -8,4 +8,4 @@ const IconElectricCarRounded: React.FC = ({ ...props }) => ( ) -export { IconElectricCarRounded as default } +export default IconElectricCarRounded diff --git a/src/IconElectricCarRoundedFilled.tsx b/src/IconElectricCarRoundedFilled.tsx index 88a24e0b7..7302a5cb2 100644 --- a/src/IconElectricCarRoundedFilled.tsx +++ b/src/IconElectricCarRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconElectricCarRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconElectricCarRoundedFilled as default } +export default IconElectricCarRoundedFilled diff --git a/src/IconElectricCarSharp.tsx b/src/IconElectricCarSharp.tsx index 8fa270a8f..56726a831 100644 --- a/src/IconElectricCarSharp.tsx +++ b/src/IconElectricCarSharp.tsx @@ -8,4 +8,4 @@ const IconElectricCarSharp: React.FC = ({ ...props }) => ( ) -export { IconElectricCarSharp as default } +export default IconElectricCarSharp diff --git a/src/IconElectricCarSharpFilled.tsx b/src/IconElectricCarSharpFilled.tsx index 3c2cd2f7c..40e9f6bc3 100644 --- a/src/IconElectricCarSharpFilled.tsx +++ b/src/IconElectricCarSharpFilled.tsx @@ -8,4 +8,4 @@ const IconElectricCarSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconElectricCarSharpFilled as default } +export default IconElectricCarSharpFilled diff --git a/src/IconElectricMeterOutlined.tsx b/src/IconElectricMeterOutlined.tsx index 37fe2a1f4..c5094f455 100644 --- a/src/IconElectricMeterOutlined.tsx +++ b/src/IconElectricMeterOutlined.tsx @@ -8,4 +8,4 @@ const IconElectricMeterOutlined: React.FC = ({ ...props }) => ( ) -export { IconElectricMeterOutlined as default } +export default IconElectricMeterOutlined diff --git a/src/IconElectricMeterOutlinedFilled.tsx b/src/IconElectricMeterOutlinedFilled.tsx index 39b76d6f4..1bc4b55a0 100644 --- a/src/IconElectricMeterOutlinedFilled.tsx +++ b/src/IconElectricMeterOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconElectricMeterOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconElectricMeterOutlinedFilled as default } +export default IconElectricMeterOutlinedFilled diff --git a/src/IconElectricMeterRounded.tsx b/src/IconElectricMeterRounded.tsx index 7bfba4d36..1726e42be 100644 --- a/src/IconElectricMeterRounded.tsx +++ b/src/IconElectricMeterRounded.tsx @@ -8,4 +8,4 @@ const IconElectricMeterRounded: React.FC = ({ ...props }) => ( ) -export { IconElectricMeterRounded as default } +export default IconElectricMeterRounded diff --git a/src/IconElectricMeterRoundedFilled.tsx b/src/IconElectricMeterRoundedFilled.tsx index 617c65e30..942856223 100644 --- a/src/IconElectricMeterRoundedFilled.tsx +++ b/src/IconElectricMeterRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconElectricMeterRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconElectricMeterRoundedFilled as default } +export default IconElectricMeterRoundedFilled diff --git a/src/IconElectricMeterSharp.tsx b/src/IconElectricMeterSharp.tsx index c93a33f8b..454319893 100644 --- a/src/IconElectricMeterSharp.tsx +++ b/src/IconElectricMeterSharp.tsx @@ -8,4 +8,4 @@ const IconElectricMeterSharp: React.FC = ({ ...props }) => ( ) -export { IconElectricMeterSharp as default } +export default IconElectricMeterSharp diff --git a/src/IconElectricMeterSharpFilled.tsx b/src/IconElectricMeterSharpFilled.tsx index d258d51b3..4fee30d4f 100644 --- a/src/IconElectricMeterSharpFilled.tsx +++ b/src/IconElectricMeterSharpFilled.tsx @@ -8,4 +8,4 @@ const IconElectricMeterSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconElectricMeterSharpFilled as default } +export default IconElectricMeterSharpFilled diff --git a/src/IconElectricMopedOutlined.tsx b/src/IconElectricMopedOutlined.tsx index 5171f6086..8788c6bb2 100644 --- a/src/IconElectricMopedOutlined.tsx +++ b/src/IconElectricMopedOutlined.tsx @@ -8,4 +8,4 @@ const IconElectricMopedOutlined: React.FC = ({ ...props }) => ( ) -export { IconElectricMopedOutlined as default } +export default IconElectricMopedOutlined diff --git a/src/IconElectricMopedOutlinedFilled.tsx b/src/IconElectricMopedOutlinedFilled.tsx index 26480158a..249c75499 100644 --- a/src/IconElectricMopedOutlinedFilled.tsx +++ b/src/IconElectricMopedOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconElectricMopedOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconElectricMopedOutlinedFilled as default } +export default IconElectricMopedOutlinedFilled diff --git a/src/IconElectricMopedRounded.tsx b/src/IconElectricMopedRounded.tsx index edc35c84e..c168bb8e5 100644 --- a/src/IconElectricMopedRounded.tsx +++ b/src/IconElectricMopedRounded.tsx @@ -8,4 +8,4 @@ const IconElectricMopedRounded: React.FC = ({ ...props }) => ( ) -export { IconElectricMopedRounded as default } +export default IconElectricMopedRounded diff --git a/src/IconElectricMopedRoundedFilled.tsx b/src/IconElectricMopedRoundedFilled.tsx index 0e5c9d43f..d348e6cd0 100644 --- a/src/IconElectricMopedRoundedFilled.tsx +++ b/src/IconElectricMopedRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconElectricMopedRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconElectricMopedRoundedFilled as default } +export default IconElectricMopedRoundedFilled diff --git a/src/IconElectricMopedSharp.tsx b/src/IconElectricMopedSharp.tsx index e8614c11c..53ca743ee 100644 --- a/src/IconElectricMopedSharp.tsx +++ b/src/IconElectricMopedSharp.tsx @@ -8,4 +8,4 @@ const IconElectricMopedSharp: React.FC = ({ ...props }) => ( ) -export { IconElectricMopedSharp as default } +export default IconElectricMopedSharp diff --git a/src/IconElectricMopedSharpFilled.tsx b/src/IconElectricMopedSharpFilled.tsx index 9968597db..6e61df916 100644 --- a/src/IconElectricMopedSharpFilled.tsx +++ b/src/IconElectricMopedSharpFilled.tsx @@ -8,4 +8,4 @@ const IconElectricMopedSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconElectricMopedSharpFilled as default } +export default IconElectricMopedSharpFilled diff --git a/src/IconElectricRickshawOutlined.tsx b/src/IconElectricRickshawOutlined.tsx index d10c5dd27..e1dd8243a 100644 --- a/src/IconElectricRickshawOutlined.tsx +++ b/src/IconElectricRickshawOutlined.tsx @@ -8,4 +8,4 @@ const IconElectricRickshawOutlined: React.FC = ({ ...props }) => ( ) -export { IconElectricRickshawOutlined as default } +export default IconElectricRickshawOutlined diff --git a/src/IconElectricRickshawOutlinedFilled.tsx b/src/IconElectricRickshawOutlinedFilled.tsx index 81b17d067..b9ef8c35c 100644 --- a/src/IconElectricRickshawOutlinedFilled.tsx +++ b/src/IconElectricRickshawOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconElectricRickshawOutlinedFilled: React.FC = ({ ) -export { IconElectricRickshawOutlinedFilled as default } +export default IconElectricRickshawOutlinedFilled diff --git a/src/IconElectricRickshawRounded.tsx b/src/IconElectricRickshawRounded.tsx index aeb5eb3f0..f2c84a674 100644 --- a/src/IconElectricRickshawRounded.tsx +++ b/src/IconElectricRickshawRounded.tsx @@ -8,4 +8,4 @@ const IconElectricRickshawRounded: React.FC = ({ ...props }) => ( ) -export { IconElectricRickshawRounded as default } +export default IconElectricRickshawRounded diff --git a/src/IconElectricRickshawRoundedFilled.tsx b/src/IconElectricRickshawRoundedFilled.tsx index 580dd216c..628c6984f 100644 --- a/src/IconElectricRickshawRoundedFilled.tsx +++ b/src/IconElectricRickshawRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconElectricRickshawRoundedFilled: React.FC = ({ ) -export { IconElectricRickshawRoundedFilled as default } +export default IconElectricRickshawRoundedFilled diff --git a/src/IconElectricRickshawSharp.tsx b/src/IconElectricRickshawSharp.tsx index d08e94232..cb7a9fe5b 100644 --- a/src/IconElectricRickshawSharp.tsx +++ b/src/IconElectricRickshawSharp.tsx @@ -8,4 +8,4 @@ const IconElectricRickshawSharp: React.FC = ({ ...props }) => ( ) -export { IconElectricRickshawSharp as default } +export default IconElectricRickshawSharp diff --git a/src/IconElectricRickshawSharpFilled.tsx b/src/IconElectricRickshawSharpFilled.tsx index 320b27cb6..455cb982c 100644 --- a/src/IconElectricRickshawSharpFilled.tsx +++ b/src/IconElectricRickshawSharpFilled.tsx @@ -8,4 +8,4 @@ const IconElectricRickshawSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconElectricRickshawSharpFilled as default } +export default IconElectricRickshawSharpFilled diff --git a/src/IconElectricScooterOutlined.tsx b/src/IconElectricScooterOutlined.tsx index 69c755467..8878a5b11 100644 --- a/src/IconElectricScooterOutlined.tsx +++ b/src/IconElectricScooterOutlined.tsx @@ -8,4 +8,4 @@ const IconElectricScooterOutlined: React.FC = ({ ...props }) => ( ) -export { IconElectricScooterOutlined as default } +export default IconElectricScooterOutlined diff --git a/src/IconElectricScooterOutlinedFilled.tsx b/src/IconElectricScooterOutlinedFilled.tsx index bfcd24f30..79f446fd9 100644 --- a/src/IconElectricScooterOutlinedFilled.tsx +++ b/src/IconElectricScooterOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconElectricScooterOutlinedFilled: React.FC = ({ ) -export { IconElectricScooterOutlinedFilled as default } +export default IconElectricScooterOutlinedFilled diff --git a/src/IconElectricScooterRounded.tsx b/src/IconElectricScooterRounded.tsx index 65597af0d..89f7827ee 100644 --- a/src/IconElectricScooterRounded.tsx +++ b/src/IconElectricScooterRounded.tsx @@ -8,4 +8,4 @@ const IconElectricScooterRounded: React.FC = ({ ...props }) => ( ) -export { IconElectricScooterRounded as default } +export default IconElectricScooterRounded diff --git a/src/IconElectricScooterRoundedFilled.tsx b/src/IconElectricScooterRoundedFilled.tsx index 9795ea514..87c167340 100644 --- a/src/IconElectricScooterRoundedFilled.tsx +++ b/src/IconElectricScooterRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconElectricScooterRoundedFilled: React.FC = ({ ) -export { IconElectricScooterRoundedFilled as default } +export default IconElectricScooterRoundedFilled diff --git a/src/IconElectricScooterSharp.tsx b/src/IconElectricScooterSharp.tsx index 2e3bf6170..66d077059 100644 --- a/src/IconElectricScooterSharp.tsx +++ b/src/IconElectricScooterSharp.tsx @@ -8,4 +8,4 @@ const IconElectricScooterSharp: React.FC = ({ ...props }) => ( ) -export { IconElectricScooterSharp as default } +export default IconElectricScooterSharp diff --git a/src/IconElectricScooterSharpFilled.tsx b/src/IconElectricScooterSharpFilled.tsx index 27d515b40..1e6486062 100644 --- a/src/IconElectricScooterSharpFilled.tsx +++ b/src/IconElectricScooterSharpFilled.tsx @@ -8,4 +8,4 @@ const IconElectricScooterSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconElectricScooterSharpFilled as default } +export default IconElectricScooterSharpFilled diff --git a/src/IconElectricalServicesOutlined.tsx b/src/IconElectricalServicesOutlined.tsx index 2f88f6645..4c803c4d4 100644 --- a/src/IconElectricalServicesOutlined.tsx +++ b/src/IconElectricalServicesOutlined.tsx @@ -8,4 +8,4 @@ const IconElectricalServicesOutlined: React.FC = ({ ...props }) => ( ) -export { IconElectricalServicesOutlined as default } +export default IconElectricalServicesOutlined diff --git a/src/IconElectricalServicesOutlinedFilled.tsx b/src/IconElectricalServicesOutlinedFilled.tsx index 1aaed85cf..110238319 100644 --- a/src/IconElectricalServicesOutlinedFilled.tsx +++ b/src/IconElectricalServicesOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconElectricalServicesOutlinedFilled: React.FC = ({ ) -export { IconElectricalServicesOutlinedFilled as default } +export default IconElectricalServicesOutlinedFilled diff --git a/src/IconElectricalServicesRounded.tsx b/src/IconElectricalServicesRounded.tsx index 417a8638f..7fe35a275 100644 --- a/src/IconElectricalServicesRounded.tsx +++ b/src/IconElectricalServicesRounded.tsx @@ -8,4 +8,4 @@ const IconElectricalServicesRounded: React.FC = ({ ...props }) => ( ) -export { IconElectricalServicesRounded as default } +export default IconElectricalServicesRounded diff --git a/src/IconElectricalServicesRoundedFilled.tsx b/src/IconElectricalServicesRoundedFilled.tsx index 5f29aa893..c1941f3db 100644 --- a/src/IconElectricalServicesRoundedFilled.tsx +++ b/src/IconElectricalServicesRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconElectricalServicesRoundedFilled: React.FC = ({ ) -export { IconElectricalServicesRoundedFilled as default } +export default IconElectricalServicesRoundedFilled diff --git a/src/IconElectricalServicesSharp.tsx b/src/IconElectricalServicesSharp.tsx index 28e827027..2417904db 100644 --- a/src/IconElectricalServicesSharp.tsx +++ b/src/IconElectricalServicesSharp.tsx @@ -8,4 +8,4 @@ const IconElectricalServicesSharp: React.FC = ({ ...props }) => ( ) -export { IconElectricalServicesSharp as default } +export default IconElectricalServicesSharp diff --git a/src/IconElectricalServicesSharpFilled.tsx b/src/IconElectricalServicesSharpFilled.tsx index c40a85e09..f23be2b90 100644 --- a/src/IconElectricalServicesSharpFilled.tsx +++ b/src/IconElectricalServicesSharpFilled.tsx @@ -10,4 +10,4 @@ const IconElectricalServicesSharpFilled: React.FC = ({ ) -export { IconElectricalServicesSharpFilled as default } +export default IconElectricalServicesSharpFilled diff --git a/src/IconElevationOutlined.tsx b/src/IconElevationOutlined.tsx index 524a384aa..8a05d9001 100644 --- a/src/IconElevationOutlined.tsx +++ b/src/IconElevationOutlined.tsx @@ -8,4 +8,4 @@ const IconElevationOutlined: React.FC = ({ ...props }) => ( ) -export { IconElevationOutlined as default } +export default IconElevationOutlined diff --git a/src/IconElevationOutlinedFilled.tsx b/src/IconElevationOutlinedFilled.tsx index 6bba35d72..cdf2d8658 100644 --- a/src/IconElevationOutlinedFilled.tsx +++ b/src/IconElevationOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconElevationOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconElevationOutlinedFilled as default } +export default IconElevationOutlinedFilled diff --git a/src/IconElevationRounded.tsx b/src/IconElevationRounded.tsx index 39722e321..2984fb291 100644 --- a/src/IconElevationRounded.tsx +++ b/src/IconElevationRounded.tsx @@ -8,4 +8,4 @@ const IconElevationRounded: React.FC = ({ ...props }) => ( ) -export { IconElevationRounded as default } +export default IconElevationRounded diff --git a/src/IconElevationRoundedFilled.tsx b/src/IconElevationRoundedFilled.tsx index 3c92440f5..0c252a084 100644 --- a/src/IconElevationRoundedFilled.tsx +++ b/src/IconElevationRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconElevationRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconElevationRoundedFilled as default } +export default IconElevationRoundedFilled diff --git a/src/IconElevationSharp.tsx b/src/IconElevationSharp.tsx index 9871d2fcd..f51eb42a3 100644 --- a/src/IconElevationSharp.tsx +++ b/src/IconElevationSharp.tsx @@ -8,4 +8,4 @@ const IconElevationSharp: React.FC = ({ ...props }) => ( ) -export { IconElevationSharp as default } +export default IconElevationSharp diff --git a/src/IconElevationSharpFilled.tsx b/src/IconElevationSharpFilled.tsx index 32250a794..8ed3140e1 100644 --- a/src/IconElevationSharpFilled.tsx +++ b/src/IconElevationSharpFilled.tsx @@ -8,4 +8,4 @@ const IconElevationSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconElevationSharpFilled as default } +export default IconElevationSharpFilled diff --git a/src/IconElevatorOutlined.tsx b/src/IconElevatorOutlined.tsx index b2f87965e..ee1cf739e 100644 --- a/src/IconElevatorOutlined.tsx +++ b/src/IconElevatorOutlined.tsx @@ -8,4 +8,4 @@ const IconElevatorOutlined: React.FC = ({ ...props }) => ( ) -export { IconElevatorOutlined as default } +export default IconElevatorOutlined diff --git a/src/IconElevatorOutlinedFilled.tsx b/src/IconElevatorOutlinedFilled.tsx index 960a68dd1..d69d54571 100644 --- a/src/IconElevatorOutlinedFilled.tsx +++ b/src/IconElevatorOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconElevatorOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconElevatorOutlinedFilled as default } +export default IconElevatorOutlinedFilled diff --git a/src/IconElevatorRounded.tsx b/src/IconElevatorRounded.tsx index a50b4b1fd..863e86995 100644 --- a/src/IconElevatorRounded.tsx +++ b/src/IconElevatorRounded.tsx @@ -8,4 +8,4 @@ const IconElevatorRounded: React.FC = ({ ...props }) => ( ) -export { IconElevatorRounded as default } +export default IconElevatorRounded diff --git a/src/IconElevatorRoundedFilled.tsx b/src/IconElevatorRoundedFilled.tsx index 1c4cbcc79..7e86fbe02 100644 --- a/src/IconElevatorRoundedFilled.tsx +++ b/src/IconElevatorRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconElevatorRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconElevatorRoundedFilled as default } +export default IconElevatorRoundedFilled diff --git a/src/IconElevatorSharp.tsx b/src/IconElevatorSharp.tsx index 57c9364d0..beecaecd5 100644 --- a/src/IconElevatorSharp.tsx +++ b/src/IconElevatorSharp.tsx @@ -8,4 +8,4 @@ const IconElevatorSharp: React.FC = ({ ...props }) => ( ) -export { IconElevatorSharp as default } +export default IconElevatorSharp diff --git a/src/IconElevatorSharpFilled.tsx b/src/IconElevatorSharpFilled.tsx index ecb69dad8..1fa741656 100644 --- a/src/IconElevatorSharpFilled.tsx +++ b/src/IconElevatorSharpFilled.tsx @@ -8,4 +8,4 @@ const IconElevatorSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconElevatorSharpFilled as default } +export default IconElevatorSharpFilled diff --git a/src/IconEmergencyHeat2Outlined.tsx b/src/IconEmergencyHeat2Outlined.tsx index ced9dadf0..7e00a6996 100644 --- a/src/IconEmergencyHeat2Outlined.tsx +++ b/src/IconEmergencyHeat2Outlined.tsx @@ -8,4 +8,4 @@ const IconEmergencyHeat2Outlined: React.FC = ({ ...props }) => ( ) -export { IconEmergencyHeat2Outlined as default } +export default IconEmergencyHeat2Outlined diff --git a/src/IconEmergencyHeat2OutlinedFilled.tsx b/src/IconEmergencyHeat2OutlinedFilled.tsx index 4cd84585c..5b36a6b53 100644 --- a/src/IconEmergencyHeat2OutlinedFilled.tsx +++ b/src/IconEmergencyHeat2OutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconEmergencyHeat2OutlinedFilled: React.FC = ({ ) -export { IconEmergencyHeat2OutlinedFilled as default } +export default IconEmergencyHeat2OutlinedFilled diff --git a/src/IconEmergencyHeat2Rounded.tsx b/src/IconEmergencyHeat2Rounded.tsx index 4e11503d5..942a7e661 100644 --- a/src/IconEmergencyHeat2Rounded.tsx +++ b/src/IconEmergencyHeat2Rounded.tsx @@ -8,4 +8,4 @@ const IconEmergencyHeat2Rounded: React.FC = ({ ...props }) => ( ) -export { IconEmergencyHeat2Rounded as default } +export default IconEmergencyHeat2Rounded diff --git a/src/IconEmergencyHeat2RoundedFilled.tsx b/src/IconEmergencyHeat2RoundedFilled.tsx index 4068437c8..d37811d38 100644 --- a/src/IconEmergencyHeat2RoundedFilled.tsx +++ b/src/IconEmergencyHeat2RoundedFilled.tsx @@ -8,4 +8,4 @@ const IconEmergencyHeat2RoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconEmergencyHeat2RoundedFilled as default } +export default IconEmergencyHeat2RoundedFilled diff --git a/src/IconEmergencyHeat2Sharp.tsx b/src/IconEmergencyHeat2Sharp.tsx index c21add97e..47130cc78 100644 --- a/src/IconEmergencyHeat2Sharp.tsx +++ b/src/IconEmergencyHeat2Sharp.tsx @@ -8,4 +8,4 @@ const IconEmergencyHeat2Sharp: React.FC = ({ ...props }) => ( ) -export { IconEmergencyHeat2Sharp as default } +export default IconEmergencyHeat2Sharp diff --git a/src/IconEmergencyHeat2SharpFilled.tsx b/src/IconEmergencyHeat2SharpFilled.tsx index 7ac3ae7d3..3edc24871 100644 --- a/src/IconEmergencyHeat2SharpFilled.tsx +++ b/src/IconEmergencyHeat2SharpFilled.tsx @@ -8,4 +8,4 @@ const IconEmergencyHeat2SharpFilled: React.FC = ({ ...props }) => ( ) -export { IconEmergencyHeat2SharpFilled as default } +export default IconEmergencyHeat2SharpFilled diff --git a/src/IconEmergencyHeatOutlined.tsx b/src/IconEmergencyHeatOutlined.tsx index 0b18c4d61..1649a9d8f 100644 --- a/src/IconEmergencyHeatOutlined.tsx +++ b/src/IconEmergencyHeatOutlined.tsx @@ -8,4 +8,4 @@ const IconEmergencyHeatOutlined: React.FC = ({ ...props }) => ( ) -export { IconEmergencyHeatOutlined as default } +export default IconEmergencyHeatOutlined diff --git a/src/IconEmergencyHeatOutlinedFilled.tsx b/src/IconEmergencyHeatOutlinedFilled.tsx index 8bc4e0064..cb8d458c5 100644 --- a/src/IconEmergencyHeatOutlinedFilled.tsx +++ b/src/IconEmergencyHeatOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconEmergencyHeatOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconEmergencyHeatOutlinedFilled as default } +export default IconEmergencyHeatOutlinedFilled diff --git a/src/IconEmergencyHeatRounded.tsx b/src/IconEmergencyHeatRounded.tsx index e445fa01e..a160a9341 100644 --- a/src/IconEmergencyHeatRounded.tsx +++ b/src/IconEmergencyHeatRounded.tsx @@ -8,4 +8,4 @@ const IconEmergencyHeatRounded: React.FC = ({ ...props }) => ( ) -export { IconEmergencyHeatRounded as default } +export default IconEmergencyHeatRounded diff --git a/src/IconEmergencyHeatRoundedFilled.tsx b/src/IconEmergencyHeatRoundedFilled.tsx index 42f830985..40ead811e 100644 --- a/src/IconEmergencyHeatRoundedFilled.tsx +++ b/src/IconEmergencyHeatRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconEmergencyHeatRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconEmergencyHeatRoundedFilled as default } +export default IconEmergencyHeatRoundedFilled diff --git a/src/IconEmergencyHeatSharp.tsx b/src/IconEmergencyHeatSharp.tsx index bd5422c23..84c961840 100644 --- a/src/IconEmergencyHeatSharp.tsx +++ b/src/IconEmergencyHeatSharp.tsx @@ -8,4 +8,4 @@ const IconEmergencyHeatSharp: React.FC = ({ ...props }) => ( ) -export { IconEmergencyHeatSharp as default } +export default IconEmergencyHeatSharp diff --git a/src/IconEmergencyHeatSharpFilled.tsx b/src/IconEmergencyHeatSharpFilled.tsx index 3def65d44..50d6a78ae 100644 --- a/src/IconEmergencyHeatSharpFilled.tsx +++ b/src/IconEmergencyHeatSharpFilled.tsx @@ -8,4 +8,4 @@ const IconEmergencyHeatSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconEmergencyHeatSharpFilled as default } +export default IconEmergencyHeatSharpFilled diff --git a/src/IconEmergencyHomeOutlined.tsx b/src/IconEmergencyHomeOutlined.tsx index 34a3172c4..8f36f888b 100644 --- a/src/IconEmergencyHomeOutlined.tsx +++ b/src/IconEmergencyHomeOutlined.tsx @@ -8,4 +8,4 @@ const IconEmergencyHomeOutlined: React.FC = ({ ...props }) => ( ) -export { IconEmergencyHomeOutlined as default } +export default IconEmergencyHomeOutlined diff --git a/src/IconEmergencyHomeOutlinedFilled.tsx b/src/IconEmergencyHomeOutlinedFilled.tsx index 4e29e18ad..dfd14634d 100644 --- a/src/IconEmergencyHomeOutlinedFilled.tsx +++ b/src/IconEmergencyHomeOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconEmergencyHomeOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconEmergencyHomeOutlinedFilled as default } +export default IconEmergencyHomeOutlinedFilled diff --git a/src/IconEmergencyHomeRounded.tsx b/src/IconEmergencyHomeRounded.tsx index 90df6f06a..e07e12b0b 100644 --- a/src/IconEmergencyHomeRounded.tsx +++ b/src/IconEmergencyHomeRounded.tsx @@ -8,4 +8,4 @@ const IconEmergencyHomeRounded: React.FC = ({ ...props }) => ( ) -export { IconEmergencyHomeRounded as default } +export default IconEmergencyHomeRounded diff --git a/src/IconEmergencyHomeRoundedFilled.tsx b/src/IconEmergencyHomeRoundedFilled.tsx index 5c461f1af..2d8cdbb5a 100644 --- a/src/IconEmergencyHomeRoundedFilled.tsx +++ b/src/IconEmergencyHomeRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconEmergencyHomeRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconEmergencyHomeRoundedFilled as default } +export default IconEmergencyHomeRoundedFilled diff --git a/src/IconEmergencyHomeSharp.tsx b/src/IconEmergencyHomeSharp.tsx index da8f4abc2..3cf3e052b 100644 --- a/src/IconEmergencyHomeSharp.tsx +++ b/src/IconEmergencyHomeSharp.tsx @@ -8,4 +8,4 @@ const IconEmergencyHomeSharp: React.FC = ({ ...props }) => ( ) -export { IconEmergencyHomeSharp as default } +export default IconEmergencyHomeSharp diff --git a/src/IconEmergencyHomeSharpFilled.tsx b/src/IconEmergencyHomeSharpFilled.tsx index e4865ef20..e190791f6 100644 --- a/src/IconEmergencyHomeSharpFilled.tsx +++ b/src/IconEmergencyHomeSharpFilled.tsx @@ -8,4 +8,4 @@ const IconEmergencyHomeSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconEmergencyHomeSharpFilled as default } +export default IconEmergencyHomeSharpFilled diff --git a/src/IconEmergencyOutlined.tsx b/src/IconEmergencyOutlined.tsx index 415d9cffc..faf42a616 100644 --- a/src/IconEmergencyOutlined.tsx +++ b/src/IconEmergencyOutlined.tsx @@ -8,4 +8,4 @@ const IconEmergencyOutlined: React.FC = ({ ...props }) => ( ) -export { IconEmergencyOutlined as default } +export default IconEmergencyOutlined diff --git a/src/IconEmergencyOutlinedFilled.tsx b/src/IconEmergencyOutlinedFilled.tsx index 2ab7501cf..d6f8fad78 100644 --- a/src/IconEmergencyOutlinedFilled.tsx +++ b/src/IconEmergencyOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconEmergencyOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconEmergencyOutlinedFilled as default } +export default IconEmergencyOutlinedFilled diff --git a/src/IconEmergencyRecordingOutlined.tsx b/src/IconEmergencyRecordingOutlined.tsx index 0a29bbb2b..33c3e76cb 100644 --- a/src/IconEmergencyRecordingOutlined.tsx +++ b/src/IconEmergencyRecordingOutlined.tsx @@ -8,4 +8,4 @@ const IconEmergencyRecordingOutlined: React.FC = ({ ...props }) => ( ) -export { IconEmergencyRecordingOutlined as default } +export default IconEmergencyRecordingOutlined diff --git a/src/IconEmergencyRecordingOutlinedFilled.tsx b/src/IconEmergencyRecordingOutlinedFilled.tsx index 4d2804799..269f6fe41 100644 --- a/src/IconEmergencyRecordingOutlinedFilled.tsx +++ b/src/IconEmergencyRecordingOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconEmergencyRecordingOutlinedFilled: React.FC = ({ ) -export { IconEmergencyRecordingOutlinedFilled as default } +export default IconEmergencyRecordingOutlinedFilled diff --git a/src/IconEmergencyRecordingRounded.tsx b/src/IconEmergencyRecordingRounded.tsx index c56f98f11..212f38bdb 100644 --- a/src/IconEmergencyRecordingRounded.tsx +++ b/src/IconEmergencyRecordingRounded.tsx @@ -8,4 +8,4 @@ const IconEmergencyRecordingRounded: React.FC = ({ ...props }) => ( ) -export { IconEmergencyRecordingRounded as default } +export default IconEmergencyRecordingRounded diff --git a/src/IconEmergencyRecordingRoundedFilled.tsx b/src/IconEmergencyRecordingRoundedFilled.tsx index 9a08b2cad..2d65a89d0 100644 --- a/src/IconEmergencyRecordingRoundedFilled.tsx +++ b/src/IconEmergencyRecordingRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconEmergencyRecordingRoundedFilled: React.FC = ({ ) -export { IconEmergencyRecordingRoundedFilled as default } +export default IconEmergencyRecordingRoundedFilled diff --git a/src/IconEmergencyRecordingSharp.tsx b/src/IconEmergencyRecordingSharp.tsx index 7ece68302..9ff3eafce 100644 --- a/src/IconEmergencyRecordingSharp.tsx +++ b/src/IconEmergencyRecordingSharp.tsx @@ -8,4 +8,4 @@ const IconEmergencyRecordingSharp: React.FC = ({ ...props }) => ( ) -export { IconEmergencyRecordingSharp as default } +export default IconEmergencyRecordingSharp diff --git a/src/IconEmergencyRecordingSharpFilled.tsx b/src/IconEmergencyRecordingSharpFilled.tsx index 8b723399a..56923f824 100644 --- a/src/IconEmergencyRecordingSharpFilled.tsx +++ b/src/IconEmergencyRecordingSharpFilled.tsx @@ -10,4 +10,4 @@ const IconEmergencyRecordingSharpFilled: React.FC = ({ ) -export { IconEmergencyRecordingSharpFilled as default } +export default IconEmergencyRecordingSharpFilled diff --git a/src/IconEmergencyRounded.tsx b/src/IconEmergencyRounded.tsx index d9fd5759d..bf8d50b02 100644 --- a/src/IconEmergencyRounded.tsx +++ b/src/IconEmergencyRounded.tsx @@ -8,4 +8,4 @@ const IconEmergencyRounded: React.FC = ({ ...props }) => ( ) -export { IconEmergencyRounded as default } +export default IconEmergencyRounded diff --git a/src/IconEmergencyRoundedFilled.tsx b/src/IconEmergencyRoundedFilled.tsx index 5892a98d9..b4e485e1a 100644 --- a/src/IconEmergencyRoundedFilled.tsx +++ b/src/IconEmergencyRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconEmergencyRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconEmergencyRoundedFilled as default } +export default IconEmergencyRoundedFilled diff --git a/src/IconEmergencyShareOffOutlined.tsx b/src/IconEmergencyShareOffOutlined.tsx index b3dc4cde7..31d10ab5b 100644 --- a/src/IconEmergencyShareOffOutlined.tsx +++ b/src/IconEmergencyShareOffOutlined.tsx @@ -8,4 +8,4 @@ const IconEmergencyShareOffOutlined: React.FC = ({ ...props }) => ( ) -export { IconEmergencyShareOffOutlined as default } +export default IconEmergencyShareOffOutlined diff --git a/src/IconEmergencyShareOffOutlinedFilled.tsx b/src/IconEmergencyShareOffOutlinedFilled.tsx index 0c1a04e2f..2833336e0 100644 --- a/src/IconEmergencyShareOffOutlinedFilled.tsx +++ b/src/IconEmergencyShareOffOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconEmergencyShareOffOutlinedFilled: React.FC = ({ ) -export { IconEmergencyShareOffOutlinedFilled as default } +export default IconEmergencyShareOffOutlinedFilled diff --git a/src/IconEmergencyShareOffRounded.tsx b/src/IconEmergencyShareOffRounded.tsx index 6ed892bae..5011770cc 100644 --- a/src/IconEmergencyShareOffRounded.tsx +++ b/src/IconEmergencyShareOffRounded.tsx @@ -8,4 +8,4 @@ const IconEmergencyShareOffRounded: React.FC = ({ ...props }) => ( ) -export { IconEmergencyShareOffRounded as default } +export default IconEmergencyShareOffRounded diff --git a/src/IconEmergencyShareOffRoundedFilled.tsx b/src/IconEmergencyShareOffRoundedFilled.tsx index 5bbbb3925..9845a2b4a 100644 --- a/src/IconEmergencyShareOffRoundedFilled.tsx +++ b/src/IconEmergencyShareOffRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconEmergencyShareOffRoundedFilled: React.FC = ({ ) -export { IconEmergencyShareOffRoundedFilled as default } +export default IconEmergencyShareOffRoundedFilled diff --git a/src/IconEmergencyShareOffSharp.tsx b/src/IconEmergencyShareOffSharp.tsx index c76f1df71..7623505e4 100644 --- a/src/IconEmergencyShareOffSharp.tsx +++ b/src/IconEmergencyShareOffSharp.tsx @@ -8,4 +8,4 @@ const IconEmergencyShareOffSharp: React.FC = ({ ...props }) => ( ) -export { IconEmergencyShareOffSharp as default } +export default IconEmergencyShareOffSharp diff --git a/src/IconEmergencyShareOffSharpFilled.tsx b/src/IconEmergencyShareOffSharpFilled.tsx index 5a3cbaab3..2931d7c39 100644 --- a/src/IconEmergencyShareOffSharpFilled.tsx +++ b/src/IconEmergencyShareOffSharpFilled.tsx @@ -10,4 +10,4 @@ const IconEmergencyShareOffSharpFilled: React.FC = ({ ) -export { IconEmergencyShareOffSharpFilled as default } +export default IconEmergencyShareOffSharpFilled diff --git a/src/IconEmergencyShareOutlined.tsx b/src/IconEmergencyShareOutlined.tsx index 12bebe5d2..cb05c0bc7 100644 --- a/src/IconEmergencyShareOutlined.tsx +++ b/src/IconEmergencyShareOutlined.tsx @@ -8,4 +8,4 @@ const IconEmergencyShareOutlined: React.FC = ({ ...props }) => ( ) -export { IconEmergencyShareOutlined as default } +export default IconEmergencyShareOutlined diff --git a/src/IconEmergencyShareOutlinedFilled.tsx b/src/IconEmergencyShareOutlinedFilled.tsx index 2bc5acd23..cea2e7228 100644 --- a/src/IconEmergencyShareOutlinedFilled.tsx +++ b/src/IconEmergencyShareOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconEmergencyShareOutlinedFilled: React.FC = ({ ) -export { IconEmergencyShareOutlinedFilled as default } +export default IconEmergencyShareOutlinedFilled diff --git a/src/IconEmergencyShareRounded.tsx b/src/IconEmergencyShareRounded.tsx index 32f8b868f..d9d1acde8 100644 --- a/src/IconEmergencyShareRounded.tsx +++ b/src/IconEmergencyShareRounded.tsx @@ -8,4 +8,4 @@ const IconEmergencyShareRounded: React.FC = ({ ...props }) => ( ) -export { IconEmergencyShareRounded as default } +export default IconEmergencyShareRounded diff --git a/src/IconEmergencyShareRoundedFilled.tsx b/src/IconEmergencyShareRoundedFilled.tsx index 7d9e1fec4..216f8ec81 100644 --- a/src/IconEmergencyShareRoundedFilled.tsx +++ b/src/IconEmergencyShareRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconEmergencyShareRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconEmergencyShareRoundedFilled as default } +export default IconEmergencyShareRoundedFilled diff --git a/src/IconEmergencyShareSharp.tsx b/src/IconEmergencyShareSharp.tsx index bbd6d1ced..1a9792b26 100644 --- a/src/IconEmergencyShareSharp.tsx +++ b/src/IconEmergencyShareSharp.tsx @@ -8,4 +8,4 @@ const IconEmergencyShareSharp: React.FC = ({ ...props }) => ( ) -export { IconEmergencyShareSharp as default } +export default IconEmergencyShareSharp diff --git a/src/IconEmergencyShareSharpFilled.tsx b/src/IconEmergencyShareSharpFilled.tsx index 0e615cc94..8933d8d58 100644 --- a/src/IconEmergencyShareSharpFilled.tsx +++ b/src/IconEmergencyShareSharpFilled.tsx @@ -8,4 +8,4 @@ const IconEmergencyShareSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconEmergencyShareSharpFilled as default } +export default IconEmergencyShareSharpFilled diff --git a/src/IconEmergencySharp.tsx b/src/IconEmergencySharp.tsx index 7e841f1e9..e93459278 100644 --- a/src/IconEmergencySharp.tsx +++ b/src/IconEmergencySharp.tsx @@ -8,4 +8,4 @@ const IconEmergencySharp: React.FC = ({ ...props }) => ( ) -export { IconEmergencySharp as default } +export default IconEmergencySharp diff --git a/src/IconEmergencySharpFilled.tsx b/src/IconEmergencySharpFilled.tsx index c97360a78..2e3117066 100644 --- a/src/IconEmergencySharpFilled.tsx +++ b/src/IconEmergencySharpFilled.tsx @@ -8,4 +8,4 @@ const IconEmergencySharpFilled: React.FC = ({ ...props }) => ( ) -export { IconEmergencySharpFilled as default } +export default IconEmergencySharpFilled diff --git a/src/IconEmojiEventsOutlined.tsx b/src/IconEmojiEventsOutlined.tsx index 49ad9f86e..55ca0bd47 100644 --- a/src/IconEmojiEventsOutlined.tsx +++ b/src/IconEmojiEventsOutlined.tsx @@ -8,4 +8,4 @@ const IconEmojiEventsOutlined: React.FC = ({ ...props }) => ( ) -export { IconEmojiEventsOutlined as default } +export default IconEmojiEventsOutlined diff --git a/src/IconEmojiEventsOutlinedFilled.tsx b/src/IconEmojiEventsOutlinedFilled.tsx index b97ed651f..3fafcbfee 100644 --- a/src/IconEmojiEventsOutlinedFilled.tsx +++ b/src/IconEmojiEventsOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconEmojiEventsOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconEmojiEventsOutlinedFilled as default } +export default IconEmojiEventsOutlinedFilled diff --git a/src/IconEmojiEventsRounded.tsx b/src/IconEmojiEventsRounded.tsx index a84deb847..82b2d67da 100644 --- a/src/IconEmojiEventsRounded.tsx +++ b/src/IconEmojiEventsRounded.tsx @@ -8,4 +8,4 @@ const IconEmojiEventsRounded: React.FC = ({ ...props }) => ( ) -export { IconEmojiEventsRounded as default } +export default IconEmojiEventsRounded diff --git a/src/IconEmojiEventsRoundedFilled.tsx b/src/IconEmojiEventsRoundedFilled.tsx index 98453f83f..3a597292e 100644 --- a/src/IconEmojiEventsRoundedFilled.tsx +++ b/src/IconEmojiEventsRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconEmojiEventsRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconEmojiEventsRoundedFilled as default } +export default IconEmojiEventsRoundedFilled diff --git a/src/IconEmojiEventsSharp.tsx b/src/IconEmojiEventsSharp.tsx index 92f26a448..655a32f05 100644 --- a/src/IconEmojiEventsSharp.tsx +++ b/src/IconEmojiEventsSharp.tsx @@ -8,4 +8,4 @@ const IconEmojiEventsSharp: React.FC = ({ ...props }) => ( ) -export { IconEmojiEventsSharp as default } +export default IconEmojiEventsSharp diff --git a/src/IconEmojiEventsSharpFilled.tsx b/src/IconEmojiEventsSharpFilled.tsx index 3a63ecc3a..87acb6760 100644 --- a/src/IconEmojiEventsSharpFilled.tsx +++ b/src/IconEmojiEventsSharpFilled.tsx @@ -8,4 +8,4 @@ const IconEmojiEventsSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconEmojiEventsSharpFilled as default } +export default IconEmojiEventsSharpFilled diff --git a/src/IconEmojiFoodBeverageOutlined.tsx b/src/IconEmojiFoodBeverageOutlined.tsx index 812751910..2b30ce6f9 100644 --- a/src/IconEmojiFoodBeverageOutlined.tsx +++ b/src/IconEmojiFoodBeverageOutlined.tsx @@ -8,4 +8,4 @@ const IconEmojiFoodBeverageOutlined: React.FC = ({ ...props }) => ( ) -export { IconEmojiFoodBeverageOutlined as default } +export default IconEmojiFoodBeverageOutlined diff --git a/src/IconEmojiFoodBeverageOutlinedFilled.tsx b/src/IconEmojiFoodBeverageOutlinedFilled.tsx index c198f54c3..b0f153ee7 100644 --- a/src/IconEmojiFoodBeverageOutlinedFilled.tsx +++ b/src/IconEmojiFoodBeverageOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconEmojiFoodBeverageOutlinedFilled: React.FC = ({ ) -export { IconEmojiFoodBeverageOutlinedFilled as default } +export default IconEmojiFoodBeverageOutlinedFilled diff --git a/src/IconEmojiFoodBeverageRounded.tsx b/src/IconEmojiFoodBeverageRounded.tsx index 77dd70a16..d5eefcae9 100644 --- a/src/IconEmojiFoodBeverageRounded.tsx +++ b/src/IconEmojiFoodBeverageRounded.tsx @@ -8,4 +8,4 @@ const IconEmojiFoodBeverageRounded: React.FC = ({ ...props }) => ( ) -export { IconEmojiFoodBeverageRounded as default } +export default IconEmojiFoodBeverageRounded diff --git a/src/IconEmojiFoodBeverageRoundedFilled.tsx b/src/IconEmojiFoodBeverageRoundedFilled.tsx index c045699c5..913937b38 100644 --- a/src/IconEmojiFoodBeverageRoundedFilled.tsx +++ b/src/IconEmojiFoodBeverageRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconEmojiFoodBeverageRoundedFilled: React.FC = ({ ) -export { IconEmojiFoodBeverageRoundedFilled as default } +export default IconEmojiFoodBeverageRoundedFilled diff --git a/src/IconEmojiFoodBeverageSharp.tsx b/src/IconEmojiFoodBeverageSharp.tsx index 06f7f932f..3686e2be3 100644 --- a/src/IconEmojiFoodBeverageSharp.tsx +++ b/src/IconEmojiFoodBeverageSharp.tsx @@ -8,4 +8,4 @@ const IconEmojiFoodBeverageSharp: React.FC = ({ ...props }) => ( ) -export { IconEmojiFoodBeverageSharp as default } +export default IconEmojiFoodBeverageSharp diff --git a/src/IconEmojiFoodBeverageSharpFilled.tsx b/src/IconEmojiFoodBeverageSharpFilled.tsx index c4ff21405..80830476b 100644 --- a/src/IconEmojiFoodBeverageSharpFilled.tsx +++ b/src/IconEmojiFoodBeverageSharpFilled.tsx @@ -10,4 +10,4 @@ const IconEmojiFoodBeverageSharpFilled: React.FC = ({ ) -export { IconEmojiFoodBeverageSharpFilled as default } +export default IconEmojiFoodBeverageSharpFilled diff --git a/src/IconEmojiLanguageOutlined.tsx b/src/IconEmojiLanguageOutlined.tsx index 40e8217ff..5cee01bf1 100644 --- a/src/IconEmojiLanguageOutlined.tsx +++ b/src/IconEmojiLanguageOutlined.tsx @@ -8,4 +8,4 @@ const IconEmojiLanguageOutlined: React.FC = ({ ...props }) => ( ) -export { IconEmojiLanguageOutlined as default } +export default IconEmojiLanguageOutlined diff --git a/src/IconEmojiLanguageOutlinedFilled.tsx b/src/IconEmojiLanguageOutlinedFilled.tsx index b866f677b..fa76cfc35 100644 --- a/src/IconEmojiLanguageOutlinedFilled.tsx +++ b/src/IconEmojiLanguageOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconEmojiLanguageOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconEmojiLanguageOutlinedFilled as default } +export default IconEmojiLanguageOutlinedFilled diff --git a/src/IconEmojiLanguageRounded.tsx b/src/IconEmojiLanguageRounded.tsx index 72e2998f4..9e46d7246 100644 --- a/src/IconEmojiLanguageRounded.tsx +++ b/src/IconEmojiLanguageRounded.tsx @@ -8,4 +8,4 @@ const IconEmojiLanguageRounded: React.FC = ({ ...props }) => ( ) -export { IconEmojiLanguageRounded as default } +export default IconEmojiLanguageRounded diff --git a/src/IconEmojiLanguageRoundedFilled.tsx b/src/IconEmojiLanguageRoundedFilled.tsx index 69e8d76da..75783a3e5 100644 --- a/src/IconEmojiLanguageRoundedFilled.tsx +++ b/src/IconEmojiLanguageRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconEmojiLanguageRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconEmojiLanguageRoundedFilled as default } +export default IconEmojiLanguageRoundedFilled diff --git a/src/IconEmojiLanguageSharp.tsx b/src/IconEmojiLanguageSharp.tsx index eba7cab23..6492aece3 100644 --- a/src/IconEmojiLanguageSharp.tsx +++ b/src/IconEmojiLanguageSharp.tsx @@ -8,4 +8,4 @@ const IconEmojiLanguageSharp: React.FC = ({ ...props }) => ( ) -export { IconEmojiLanguageSharp as default } +export default IconEmojiLanguageSharp diff --git a/src/IconEmojiLanguageSharpFilled.tsx b/src/IconEmojiLanguageSharpFilled.tsx index 814081b2c..0d3362e91 100644 --- a/src/IconEmojiLanguageSharpFilled.tsx +++ b/src/IconEmojiLanguageSharpFilled.tsx @@ -8,4 +8,4 @@ const IconEmojiLanguageSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconEmojiLanguageSharpFilled as default } +export default IconEmojiLanguageSharpFilled diff --git a/src/IconEmojiNatureOutlined.tsx b/src/IconEmojiNatureOutlined.tsx index 13c9e1132..b22d2f889 100644 --- a/src/IconEmojiNatureOutlined.tsx +++ b/src/IconEmojiNatureOutlined.tsx @@ -8,4 +8,4 @@ const IconEmojiNatureOutlined: React.FC = ({ ...props }) => ( ) -export { IconEmojiNatureOutlined as default } +export default IconEmojiNatureOutlined diff --git a/src/IconEmojiNatureOutlinedFilled.tsx b/src/IconEmojiNatureOutlinedFilled.tsx index f2257f189..7d2d7a00f 100644 --- a/src/IconEmojiNatureOutlinedFilled.tsx +++ b/src/IconEmojiNatureOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconEmojiNatureOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconEmojiNatureOutlinedFilled as default } +export default IconEmojiNatureOutlinedFilled diff --git a/src/IconEmojiNatureRounded.tsx b/src/IconEmojiNatureRounded.tsx index 21ca8b1d1..6394a2425 100644 --- a/src/IconEmojiNatureRounded.tsx +++ b/src/IconEmojiNatureRounded.tsx @@ -8,4 +8,4 @@ const IconEmojiNatureRounded: React.FC = ({ ...props }) => ( ) -export { IconEmojiNatureRounded as default } +export default IconEmojiNatureRounded diff --git a/src/IconEmojiNatureRoundedFilled.tsx b/src/IconEmojiNatureRoundedFilled.tsx index 799eed90a..4aca775fa 100644 --- a/src/IconEmojiNatureRoundedFilled.tsx +++ b/src/IconEmojiNatureRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconEmojiNatureRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconEmojiNatureRoundedFilled as default } +export default IconEmojiNatureRoundedFilled diff --git a/src/IconEmojiNatureSharp.tsx b/src/IconEmojiNatureSharp.tsx index da6cdafc0..e51016f82 100644 --- a/src/IconEmojiNatureSharp.tsx +++ b/src/IconEmojiNatureSharp.tsx @@ -8,4 +8,4 @@ const IconEmojiNatureSharp: React.FC = ({ ...props }) => ( ) -export { IconEmojiNatureSharp as default } +export default IconEmojiNatureSharp diff --git a/src/IconEmojiNatureSharpFilled.tsx b/src/IconEmojiNatureSharpFilled.tsx index 35e959770..a2502ca1c 100644 --- a/src/IconEmojiNatureSharpFilled.tsx +++ b/src/IconEmojiNatureSharpFilled.tsx @@ -8,4 +8,4 @@ const IconEmojiNatureSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconEmojiNatureSharpFilled as default } +export default IconEmojiNatureSharpFilled diff --git a/src/IconEmojiObjectsOutlined.tsx b/src/IconEmojiObjectsOutlined.tsx index 439d867f4..f5439b72c 100644 --- a/src/IconEmojiObjectsOutlined.tsx +++ b/src/IconEmojiObjectsOutlined.tsx @@ -8,4 +8,4 @@ const IconEmojiObjectsOutlined: React.FC = ({ ...props }) => ( ) -export { IconEmojiObjectsOutlined as default } +export default IconEmojiObjectsOutlined diff --git a/src/IconEmojiObjectsOutlinedFilled.tsx b/src/IconEmojiObjectsOutlinedFilled.tsx index b8d6821a5..bd7a5ae73 100644 --- a/src/IconEmojiObjectsOutlinedFilled.tsx +++ b/src/IconEmojiObjectsOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconEmojiObjectsOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconEmojiObjectsOutlinedFilled as default } +export default IconEmojiObjectsOutlinedFilled diff --git a/src/IconEmojiObjectsRounded.tsx b/src/IconEmojiObjectsRounded.tsx index 600048acd..df619892a 100644 --- a/src/IconEmojiObjectsRounded.tsx +++ b/src/IconEmojiObjectsRounded.tsx @@ -8,4 +8,4 @@ const IconEmojiObjectsRounded: React.FC = ({ ...props }) => ( ) -export { IconEmojiObjectsRounded as default } +export default IconEmojiObjectsRounded diff --git a/src/IconEmojiObjectsRoundedFilled.tsx b/src/IconEmojiObjectsRoundedFilled.tsx index f6490d1fc..82af3c011 100644 --- a/src/IconEmojiObjectsRoundedFilled.tsx +++ b/src/IconEmojiObjectsRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconEmojiObjectsRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconEmojiObjectsRoundedFilled as default } +export default IconEmojiObjectsRoundedFilled diff --git a/src/IconEmojiObjectsSharp.tsx b/src/IconEmojiObjectsSharp.tsx index 7c5adc7ee..867b3c80c 100644 --- a/src/IconEmojiObjectsSharp.tsx +++ b/src/IconEmojiObjectsSharp.tsx @@ -8,4 +8,4 @@ const IconEmojiObjectsSharp: React.FC = ({ ...props }) => ( ) -export { IconEmojiObjectsSharp as default } +export default IconEmojiObjectsSharp diff --git a/src/IconEmojiObjectsSharpFilled.tsx b/src/IconEmojiObjectsSharpFilled.tsx index 4413aa7cd..f018dd072 100644 --- a/src/IconEmojiObjectsSharpFilled.tsx +++ b/src/IconEmojiObjectsSharpFilled.tsx @@ -8,4 +8,4 @@ const IconEmojiObjectsSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconEmojiObjectsSharpFilled as default } +export default IconEmojiObjectsSharpFilled diff --git a/src/IconEmojiPeopleOutlined.tsx b/src/IconEmojiPeopleOutlined.tsx index 596a4740d..997d9c742 100644 --- a/src/IconEmojiPeopleOutlined.tsx +++ b/src/IconEmojiPeopleOutlined.tsx @@ -8,4 +8,4 @@ const IconEmojiPeopleOutlined: React.FC = ({ ...props }) => ( ) -export { IconEmojiPeopleOutlined as default } +export default IconEmojiPeopleOutlined diff --git a/src/IconEmojiPeopleOutlinedFilled.tsx b/src/IconEmojiPeopleOutlinedFilled.tsx index 936845673..ecde7d0a2 100644 --- a/src/IconEmojiPeopleOutlinedFilled.tsx +++ b/src/IconEmojiPeopleOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconEmojiPeopleOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconEmojiPeopleOutlinedFilled as default } +export default IconEmojiPeopleOutlinedFilled diff --git a/src/IconEmojiPeopleRounded.tsx b/src/IconEmojiPeopleRounded.tsx index 1b7f0d043..fd84f941c 100644 --- a/src/IconEmojiPeopleRounded.tsx +++ b/src/IconEmojiPeopleRounded.tsx @@ -8,4 +8,4 @@ const IconEmojiPeopleRounded: React.FC = ({ ...props }) => ( ) -export { IconEmojiPeopleRounded as default } +export default IconEmojiPeopleRounded diff --git a/src/IconEmojiPeopleRoundedFilled.tsx b/src/IconEmojiPeopleRoundedFilled.tsx index 8eb431a13..ca23096de 100644 --- a/src/IconEmojiPeopleRoundedFilled.tsx +++ b/src/IconEmojiPeopleRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconEmojiPeopleRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconEmojiPeopleRoundedFilled as default } +export default IconEmojiPeopleRoundedFilled diff --git a/src/IconEmojiPeopleSharp.tsx b/src/IconEmojiPeopleSharp.tsx index 8fbb358d5..22dae6f79 100644 --- a/src/IconEmojiPeopleSharp.tsx +++ b/src/IconEmojiPeopleSharp.tsx @@ -8,4 +8,4 @@ const IconEmojiPeopleSharp: React.FC = ({ ...props }) => ( ) -export { IconEmojiPeopleSharp as default } +export default IconEmojiPeopleSharp diff --git a/src/IconEmojiPeopleSharpFilled.tsx b/src/IconEmojiPeopleSharpFilled.tsx index 7239eadd0..487957735 100644 --- a/src/IconEmojiPeopleSharpFilled.tsx +++ b/src/IconEmojiPeopleSharpFilled.tsx @@ -8,4 +8,4 @@ const IconEmojiPeopleSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconEmojiPeopleSharpFilled as default } +export default IconEmojiPeopleSharpFilled diff --git a/src/IconEmojiSymbolsOutlined.tsx b/src/IconEmojiSymbolsOutlined.tsx index d460ce789..a754b14bc 100644 --- a/src/IconEmojiSymbolsOutlined.tsx +++ b/src/IconEmojiSymbolsOutlined.tsx @@ -8,4 +8,4 @@ const IconEmojiSymbolsOutlined: React.FC = ({ ...props }) => ( ) -export { IconEmojiSymbolsOutlined as default } +export default IconEmojiSymbolsOutlined diff --git a/src/IconEmojiSymbolsOutlinedFilled.tsx b/src/IconEmojiSymbolsOutlinedFilled.tsx index 1079af5b0..dc2318076 100644 --- a/src/IconEmojiSymbolsOutlinedFilled.tsx +++ b/src/IconEmojiSymbolsOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconEmojiSymbolsOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconEmojiSymbolsOutlinedFilled as default } +export default IconEmojiSymbolsOutlinedFilled diff --git a/src/IconEmojiSymbolsRounded.tsx b/src/IconEmojiSymbolsRounded.tsx index e5f56fec7..f5822f2bd 100644 --- a/src/IconEmojiSymbolsRounded.tsx +++ b/src/IconEmojiSymbolsRounded.tsx @@ -8,4 +8,4 @@ const IconEmojiSymbolsRounded: React.FC = ({ ...props }) => ( ) -export { IconEmojiSymbolsRounded as default } +export default IconEmojiSymbolsRounded diff --git a/src/IconEmojiSymbolsRoundedFilled.tsx b/src/IconEmojiSymbolsRoundedFilled.tsx index 2c834614a..d943eb848 100644 --- a/src/IconEmojiSymbolsRoundedFilled.tsx +++ b/src/IconEmojiSymbolsRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconEmojiSymbolsRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconEmojiSymbolsRoundedFilled as default } +export default IconEmojiSymbolsRoundedFilled diff --git a/src/IconEmojiSymbolsSharp.tsx b/src/IconEmojiSymbolsSharp.tsx index caf30cf8c..e4639eb8a 100644 --- a/src/IconEmojiSymbolsSharp.tsx +++ b/src/IconEmojiSymbolsSharp.tsx @@ -8,4 +8,4 @@ const IconEmojiSymbolsSharp: React.FC = ({ ...props }) => ( ) -export { IconEmojiSymbolsSharp as default } +export default IconEmojiSymbolsSharp diff --git a/src/IconEmojiSymbolsSharpFilled.tsx b/src/IconEmojiSymbolsSharpFilled.tsx index c8ebbd732..13dc6a702 100644 --- a/src/IconEmojiSymbolsSharpFilled.tsx +++ b/src/IconEmojiSymbolsSharpFilled.tsx @@ -8,4 +8,4 @@ const IconEmojiSymbolsSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconEmojiSymbolsSharpFilled as default } +export default IconEmojiSymbolsSharpFilled diff --git a/src/IconEmojiTransportationOutlined.tsx b/src/IconEmojiTransportationOutlined.tsx index a44b286e1..fbea07d46 100644 --- a/src/IconEmojiTransportationOutlined.tsx +++ b/src/IconEmojiTransportationOutlined.tsx @@ -8,4 +8,4 @@ const IconEmojiTransportationOutlined: React.FC = ({ ...props }) => ( ) -export { IconEmojiTransportationOutlined as default } +export default IconEmojiTransportationOutlined diff --git a/src/IconEmojiTransportationOutlinedFilled.tsx b/src/IconEmojiTransportationOutlinedFilled.tsx index af2d7c537..0b15e63d0 100644 --- a/src/IconEmojiTransportationOutlinedFilled.tsx +++ b/src/IconEmojiTransportationOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconEmojiTransportationOutlinedFilled: React.FC = ({ ) -export { IconEmojiTransportationOutlinedFilled as default } +export default IconEmojiTransportationOutlinedFilled diff --git a/src/IconEmojiTransportationRounded.tsx b/src/IconEmojiTransportationRounded.tsx index 573d4da2f..581932794 100644 --- a/src/IconEmojiTransportationRounded.tsx +++ b/src/IconEmojiTransportationRounded.tsx @@ -8,4 +8,4 @@ const IconEmojiTransportationRounded: React.FC = ({ ...props }) => ( ) -export { IconEmojiTransportationRounded as default } +export default IconEmojiTransportationRounded diff --git a/src/IconEmojiTransportationRoundedFilled.tsx b/src/IconEmojiTransportationRoundedFilled.tsx index fb38c8743..c5f23f9f8 100644 --- a/src/IconEmojiTransportationRoundedFilled.tsx +++ b/src/IconEmojiTransportationRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconEmojiTransportationRoundedFilled: React.FC = ({ ) -export { IconEmojiTransportationRoundedFilled as default } +export default IconEmojiTransportationRoundedFilled diff --git a/src/IconEmojiTransportationSharp.tsx b/src/IconEmojiTransportationSharp.tsx index bc8597224..7a30280d9 100644 --- a/src/IconEmojiTransportationSharp.tsx +++ b/src/IconEmojiTransportationSharp.tsx @@ -8,4 +8,4 @@ const IconEmojiTransportationSharp: React.FC = ({ ...props }) => ( ) -export { IconEmojiTransportationSharp as default } +export default IconEmojiTransportationSharp diff --git a/src/IconEmojiTransportationSharpFilled.tsx b/src/IconEmojiTransportationSharpFilled.tsx index b817c0551..17545d6ca 100644 --- a/src/IconEmojiTransportationSharpFilled.tsx +++ b/src/IconEmojiTransportationSharpFilled.tsx @@ -10,4 +10,4 @@ const IconEmojiTransportationSharpFilled: React.FC = ({ ) -export { IconEmojiTransportationSharpFilled as default } +export default IconEmojiTransportationSharpFilled diff --git a/src/IconEmoticonOutlined.tsx b/src/IconEmoticonOutlined.tsx index 9e737b608..c1794851b 100644 --- a/src/IconEmoticonOutlined.tsx +++ b/src/IconEmoticonOutlined.tsx @@ -8,4 +8,4 @@ const IconEmoticonOutlined: React.FC = ({ ...props }) => ( ) -export { IconEmoticonOutlined as default } +export default IconEmoticonOutlined diff --git a/src/IconEmoticonOutlinedFilled.tsx b/src/IconEmoticonOutlinedFilled.tsx index eb80b7f0a..815157706 100644 --- a/src/IconEmoticonOutlinedFilled.tsx +++ b/src/IconEmoticonOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconEmoticonOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconEmoticonOutlinedFilled as default } +export default IconEmoticonOutlinedFilled diff --git a/src/IconEmoticonRounded.tsx b/src/IconEmoticonRounded.tsx index cf5da9875..20a9aeaec 100644 --- a/src/IconEmoticonRounded.tsx +++ b/src/IconEmoticonRounded.tsx @@ -8,4 +8,4 @@ const IconEmoticonRounded: React.FC = ({ ...props }) => ( ) -export { IconEmoticonRounded as default } +export default IconEmoticonRounded diff --git a/src/IconEmoticonRoundedFilled.tsx b/src/IconEmoticonRoundedFilled.tsx index 82c27c653..2e84c497c 100644 --- a/src/IconEmoticonRoundedFilled.tsx +++ b/src/IconEmoticonRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconEmoticonRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconEmoticonRoundedFilled as default } +export default IconEmoticonRoundedFilled diff --git a/src/IconEmoticonSharp.tsx b/src/IconEmoticonSharp.tsx index d251a0841..24cc1e630 100644 --- a/src/IconEmoticonSharp.tsx +++ b/src/IconEmoticonSharp.tsx @@ -8,4 +8,4 @@ const IconEmoticonSharp: React.FC = ({ ...props }) => ( ) -export { IconEmoticonSharp as default } +export default IconEmoticonSharp diff --git a/src/IconEmoticonSharpFilled.tsx b/src/IconEmoticonSharpFilled.tsx index b19835905..8d1777362 100644 --- a/src/IconEmoticonSharpFilled.tsx +++ b/src/IconEmoticonSharpFilled.tsx @@ -8,4 +8,4 @@ const IconEmoticonSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconEmoticonSharpFilled as default } +export default IconEmoticonSharpFilled diff --git a/src/IconEmptyDashboardOutlined.tsx b/src/IconEmptyDashboardOutlined.tsx index 846410529..bbec4c910 100644 --- a/src/IconEmptyDashboardOutlined.tsx +++ b/src/IconEmptyDashboardOutlined.tsx @@ -8,4 +8,4 @@ const IconEmptyDashboardOutlined: React.FC = ({ ...props }) => ( ) -export { IconEmptyDashboardOutlined as default } +export default IconEmptyDashboardOutlined diff --git a/src/IconEmptyDashboardOutlinedFilled.tsx b/src/IconEmptyDashboardOutlinedFilled.tsx index ec8856736..a37bd58c6 100644 --- a/src/IconEmptyDashboardOutlinedFilled.tsx +++ b/src/IconEmptyDashboardOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconEmptyDashboardOutlinedFilled: React.FC = ({ ) -export { IconEmptyDashboardOutlinedFilled as default } +export default IconEmptyDashboardOutlinedFilled diff --git a/src/IconEmptyDashboardRounded.tsx b/src/IconEmptyDashboardRounded.tsx index 2fca29e2d..a35a2e91a 100644 --- a/src/IconEmptyDashboardRounded.tsx +++ b/src/IconEmptyDashboardRounded.tsx @@ -8,4 +8,4 @@ const IconEmptyDashboardRounded: React.FC = ({ ...props }) => ( ) -export { IconEmptyDashboardRounded as default } +export default IconEmptyDashboardRounded diff --git a/src/IconEmptyDashboardRoundedFilled.tsx b/src/IconEmptyDashboardRoundedFilled.tsx index 3dcb72b3b..4abe18c63 100644 --- a/src/IconEmptyDashboardRoundedFilled.tsx +++ b/src/IconEmptyDashboardRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconEmptyDashboardRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconEmptyDashboardRoundedFilled as default } +export default IconEmptyDashboardRoundedFilled diff --git a/src/IconEmptyDashboardSharp.tsx b/src/IconEmptyDashboardSharp.tsx index c2c860232..7826f85f7 100644 --- a/src/IconEmptyDashboardSharp.tsx +++ b/src/IconEmptyDashboardSharp.tsx @@ -8,4 +8,4 @@ const IconEmptyDashboardSharp: React.FC = ({ ...props }) => ( ) -export { IconEmptyDashboardSharp as default } +export default IconEmptyDashboardSharp diff --git a/src/IconEmptyDashboardSharpFilled.tsx b/src/IconEmptyDashboardSharpFilled.tsx index 02335c622..3547d7d1a 100644 --- a/src/IconEmptyDashboardSharpFilled.tsx +++ b/src/IconEmptyDashboardSharpFilled.tsx @@ -8,4 +8,4 @@ const IconEmptyDashboardSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconEmptyDashboardSharpFilled as default } +export default IconEmptyDashboardSharpFilled diff --git a/src/IconEnableOutlined.tsx b/src/IconEnableOutlined.tsx index 76113aac1..3dad57630 100644 --- a/src/IconEnableOutlined.tsx +++ b/src/IconEnableOutlined.tsx @@ -8,4 +8,4 @@ const IconEnableOutlined: React.FC = ({ ...props }) => ( ) -export { IconEnableOutlined as default } +export default IconEnableOutlined diff --git a/src/IconEnableOutlinedFilled.tsx b/src/IconEnableOutlinedFilled.tsx index 6e7afe0e0..fcd8be0b7 100644 --- a/src/IconEnableOutlinedFilled.tsx +++ b/src/IconEnableOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconEnableOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconEnableOutlinedFilled as default } +export default IconEnableOutlinedFilled diff --git a/src/IconEnableRounded.tsx b/src/IconEnableRounded.tsx index 939358e7d..2ae554db7 100644 --- a/src/IconEnableRounded.tsx +++ b/src/IconEnableRounded.tsx @@ -8,4 +8,4 @@ const IconEnableRounded: React.FC = ({ ...props }) => ( ) -export { IconEnableRounded as default } +export default IconEnableRounded diff --git a/src/IconEnableRoundedFilled.tsx b/src/IconEnableRoundedFilled.tsx index 5e831d66a..38753644e 100644 --- a/src/IconEnableRoundedFilled.tsx +++ b/src/IconEnableRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconEnableRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconEnableRoundedFilled as default } +export default IconEnableRoundedFilled diff --git a/src/IconEnableSharp.tsx b/src/IconEnableSharp.tsx index a9a6373fc..9ebc1f614 100644 --- a/src/IconEnableSharp.tsx +++ b/src/IconEnableSharp.tsx @@ -8,4 +8,4 @@ const IconEnableSharp: React.FC = ({ ...props }) => ( ) -export { IconEnableSharp as default } +export default IconEnableSharp diff --git a/src/IconEnableSharpFilled.tsx b/src/IconEnableSharpFilled.tsx index c7b5e5821..2dc63c223 100644 --- a/src/IconEnableSharpFilled.tsx +++ b/src/IconEnableSharpFilled.tsx @@ -8,4 +8,4 @@ const IconEnableSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconEnableSharpFilled as default } +export default IconEnableSharpFilled diff --git a/src/IconEncryptedAddCircleOutlined.tsx b/src/IconEncryptedAddCircleOutlined.tsx index d525bfa1d..aceb7a5b6 100644 --- a/src/IconEncryptedAddCircleOutlined.tsx +++ b/src/IconEncryptedAddCircleOutlined.tsx @@ -8,4 +8,4 @@ const IconEncryptedAddCircleOutlined: React.FC = ({ ...props }) => ( ) -export { IconEncryptedAddCircleOutlined as default } +export default IconEncryptedAddCircleOutlined diff --git a/src/IconEncryptedAddCircleOutlinedFilled.tsx b/src/IconEncryptedAddCircleOutlinedFilled.tsx index da4761fcd..0d635c218 100644 --- a/src/IconEncryptedAddCircleOutlinedFilled.tsx +++ b/src/IconEncryptedAddCircleOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconEncryptedAddCircleOutlinedFilled: React.FC = ({ ) -export { IconEncryptedAddCircleOutlinedFilled as default } +export default IconEncryptedAddCircleOutlinedFilled diff --git a/src/IconEncryptedAddCircleRounded.tsx b/src/IconEncryptedAddCircleRounded.tsx index fde7811b4..829fd75a8 100644 --- a/src/IconEncryptedAddCircleRounded.tsx +++ b/src/IconEncryptedAddCircleRounded.tsx @@ -8,4 +8,4 @@ const IconEncryptedAddCircleRounded: React.FC = ({ ...props }) => ( ) -export { IconEncryptedAddCircleRounded as default } +export default IconEncryptedAddCircleRounded diff --git a/src/IconEncryptedAddCircleRoundedFilled.tsx b/src/IconEncryptedAddCircleRoundedFilled.tsx index 89365db79..3839400f2 100644 --- a/src/IconEncryptedAddCircleRoundedFilled.tsx +++ b/src/IconEncryptedAddCircleRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconEncryptedAddCircleRoundedFilled: React.FC = ({ ) -export { IconEncryptedAddCircleRoundedFilled as default } +export default IconEncryptedAddCircleRoundedFilled diff --git a/src/IconEncryptedAddCircleSharp.tsx b/src/IconEncryptedAddCircleSharp.tsx index be82d2b2e..34f7c3824 100644 --- a/src/IconEncryptedAddCircleSharp.tsx +++ b/src/IconEncryptedAddCircleSharp.tsx @@ -8,4 +8,4 @@ const IconEncryptedAddCircleSharp: React.FC = ({ ...props }) => ( ) -export { IconEncryptedAddCircleSharp as default } +export default IconEncryptedAddCircleSharp diff --git a/src/IconEncryptedAddCircleSharpFilled.tsx b/src/IconEncryptedAddCircleSharpFilled.tsx index d911ff9ae..21c6e2f4d 100644 --- a/src/IconEncryptedAddCircleSharpFilled.tsx +++ b/src/IconEncryptedAddCircleSharpFilled.tsx @@ -10,4 +10,4 @@ const IconEncryptedAddCircleSharpFilled: React.FC = ({ ) -export { IconEncryptedAddCircleSharpFilled as default } +export default IconEncryptedAddCircleSharpFilled diff --git a/src/IconEncryptedAddOutlined.tsx b/src/IconEncryptedAddOutlined.tsx index b6060e24f..80d55bb99 100644 --- a/src/IconEncryptedAddOutlined.tsx +++ b/src/IconEncryptedAddOutlined.tsx @@ -8,4 +8,4 @@ const IconEncryptedAddOutlined: React.FC = ({ ...props }) => ( ) -export { IconEncryptedAddOutlined as default } +export default IconEncryptedAddOutlined diff --git a/src/IconEncryptedAddOutlinedFilled.tsx b/src/IconEncryptedAddOutlinedFilled.tsx index b4a196f62..066f8930b 100644 --- a/src/IconEncryptedAddOutlinedFilled.tsx +++ b/src/IconEncryptedAddOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconEncryptedAddOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconEncryptedAddOutlinedFilled as default } +export default IconEncryptedAddOutlinedFilled diff --git a/src/IconEncryptedAddRounded.tsx b/src/IconEncryptedAddRounded.tsx index 8dce13b94..108eddeee 100644 --- a/src/IconEncryptedAddRounded.tsx +++ b/src/IconEncryptedAddRounded.tsx @@ -8,4 +8,4 @@ const IconEncryptedAddRounded: React.FC = ({ ...props }) => ( ) -export { IconEncryptedAddRounded as default } +export default IconEncryptedAddRounded diff --git a/src/IconEncryptedAddRoundedFilled.tsx b/src/IconEncryptedAddRoundedFilled.tsx index e7ee5aa48..9711acc67 100644 --- a/src/IconEncryptedAddRoundedFilled.tsx +++ b/src/IconEncryptedAddRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconEncryptedAddRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconEncryptedAddRoundedFilled as default } +export default IconEncryptedAddRoundedFilled diff --git a/src/IconEncryptedAddSharp.tsx b/src/IconEncryptedAddSharp.tsx index b2781a1d5..b7da1fa37 100644 --- a/src/IconEncryptedAddSharp.tsx +++ b/src/IconEncryptedAddSharp.tsx @@ -8,4 +8,4 @@ const IconEncryptedAddSharp: React.FC = ({ ...props }) => ( ) -export { IconEncryptedAddSharp as default } +export default IconEncryptedAddSharp diff --git a/src/IconEncryptedAddSharpFilled.tsx b/src/IconEncryptedAddSharpFilled.tsx index 3d81e6cde..15a0f8925 100644 --- a/src/IconEncryptedAddSharpFilled.tsx +++ b/src/IconEncryptedAddSharpFilled.tsx @@ -8,4 +8,4 @@ const IconEncryptedAddSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconEncryptedAddSharpFilled as default } +export default IconEncryptedAddSharpFilled diff --git a/src/IconEncryptedMinusCircleOutlined.tsx b/src/IconEncryptedMinusCircleOutlined.tsx index a21ddc0ec..3cb67b9eb 100644 --- a/src/IconEncryptedMinusCircleOutlined.tsx +++ b/src/IconEncryptedMinusCircleOutlined.tsx @@ -10,4 +10,4 @@ const IconEncryptedMinusCircleOutlined: React.FC = ({ ) -export { IconEncryptedMinusCircleOutlined as default } +export default IconEncryptedMinusCircleOutlined diff --git a/src/IconEncryptedMinusCircleOutlinedFilled.tsx b/src/IconEncryptedMinusCircleOutlinedFilled.tsx index 864b7b352..a95c0b399 100644 --- a/src/IconEncryptedMinusCircleOutlinedFilled.tsx +++ b/src/IconEncryptedMinusCircleOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconEncryptedMinusCircleOutlinedFilled: React.FC = ({ ) -export { IconEncryptedMinusCircleOutlinedFilled as default } +export default IconEncryptedMinusCircleOutlinedFilled diff --git a/src/IconEncryptedMinusCircleRounded.tsx b/src/IconEncryptedMinusCircleRounded.tsx index 3f9dc0d5e..4ae361028 100644 --- a/src/IconEncryptedMinusCircleRounded.tsx +++ b/src/IconEncryptedMinusCircleRounded.tsx @@ -8,4 +8,4 @@ const IconEncryptedMinusCircleRounded: React.FC = ({ ...props }) => ( ) -export { IconEncryptedMinusCircleRounded as default } +export default IconEncryptedMinusCircleRounded diff --git a/src/IconEncryptedMinusCircleRoundedFilled.tsx b/src/IconEncryptedMinusCircleRoundedFilled.tsx index 7ed688627..f7be93de0 100644 --- a/src/IconEncryptedMinusCircleRoundedFilled.tsx +++ b/src/IconEncryptedMinusCircleRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconEncryptedMinusCircleRoundedFilled: React.FC = ({ ) -export { IconEncryptedMinusCircleRoundedFilled as default } +export default IconEncryptedMinusCircleRoundedFilled diff --git a/src/IconEncryptedMinusCircleSharp.tsx b/src/IconEncryptedMinusCircleSharp.tsx index e39c8d64c..9ea11347a 100644 --- a/src/IconEncryptedMinusCircleSharp.tsx +++ b/src/IconEncryptedMinusCircleSharp.tsx @@ -8,4 +8,4 @@ const IconEncryptedMinusCircleSharp: React.FC = ({ ...props }) => ( ) -export { IconEncryptedMinusCircleSharp as default } +export default IconEncryptedMinusCircleSharp diff --git a/src/IconEncryptedMinusCircleSharpFilled.tsx b/src/IconEncryptedMinusCircleSharpFilled.tsx index fa9367ea7..854adbaca 100644 --- a/src/IconEncryptedMinusCircleSharpFilled.tsx +++ b/src/IconEncryptedMinusCircleSharpFilled.tsx @@ -10,4 +10,4 @@ const IconEncryptedMinusCircleSharpFilled: React.FC = ({ ) -export { IconEncryptedMinusCircleSharpFilled as default } +export default IconEncryptedMinusCircleSharpFilled diff --git a/src/IconEncryptedOffOutlined.tsx b/src/IconEncryptedOffOutlined.tsx index 3e560d297..cdaed824b 100644 --- a/src/IconEncryptedOffOutlined.tsx +++ b/src/IconEncryptedOffOutlined.tsx @@ -8,4 +8,4 @@ const IconEncryptedOffOutlined: React.FC = ({ ...props }) => ( ) -export { IconEncryptedOffOutlined as default } +export default IconEncryptedOffOutlined diff --git a/src/IconEncryptedOffOutlinedFilled.tsx b/src/IconEncryptedOffOutlinedFilled.tsx index b8824c9c0..242f0afd8 100644 --- a/src/IconEncryptedOffOutlinedFilled.tsx +++ b/src/IconEncryptedOffOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconEncryptedOffOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconEncryptedOffOutlinedFilled as default } +export default IconEncryptedOffOutlinedFilled diff --git a/src/IconEncryptedOffRounded.tsx b/src/IconEncryptedOffRounded.tsx index 5621f49ef..99670f2b2 100644 --- a/src/IconEncryptedOffRounded.tsx +++ b/src/IconEncryptedOffRounded.tsx @@ -8,4 +8,4 @@ const IconEncryptedOffRounded: React.FC = ({ ...props }) => ( ) -export { IconEncryptedOffRounded as default } +export default IconEncryptedOffRounded diff --git a/src/IconEncryptedOffRoundedFilled.tsx b/src/IconEncryptedOffRoundedFilled.tsx index 627e8fa6d..8d4495819 100644 --- a/src/IconEncryptedOffRoundedFilled.tsx +++ b/src/IconEncryptedOffRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconEncryptedOffRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconEncryptedOffRoundedFilled as default } +export default IconEncryptedOffRoundedFilled diff --git a/src/IconEncryptedOffSharp.tsx b/src/IconEncryptedOffSharp.tsx index 7a1610766..203ed6961 100644 --- a/src/IconEncryptedOffSharp.tsx +++ b/src/IconEncryptedOffSharp.tsx @@ -8,4 +8,4 @@ const IconEncryptedOffSharp: React.FC = ({ ...props }) => ( ) -export { IconEncryptedOffSharp as default } +export default IconEncryptedOffSharp diff --git a/src/IconEncryptedOffSharpFilled.tsx b/src/IconEncryptedOffSharpFilled.tsx index 44304ae68..e866a5d08 100644 --- a/src/IconEncryptedOffSharpFilled.tsx +++ b/src/IconEncryptedOffSharpFilled.tsx @@ -8,4 +8,4 @@ const IconEncryptedOffSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconEncryptedOffSharpFilled as default } +export default IconEncryptedOffSharpFilled diff --git a/src/IconEncryptedOutlined.tsx b/src/IconEncryptedOutlined.tsx index cccaec1f8..bc87ae57a 100644 --- a/src/IconEncryptedOutlined.tsx +++ b/src/IconEncryptedOutlined.tsx @@ -8,4 +8,4 @@ const IconEncryptedOutlined: React.FC = ({ ...props }) => ( ) -export { IconEncryptedOutlined as default } +export default IconEncryptedOutlined diff --git a/src/IconEncryptedOutlinedFilled.tsx b/src/IconEncryptedOutlinedFilled.tsx index cc86d033f..0e3aab7f4 100644 --- a/src/IconEncryptedOutlinedFilled.tsx +++ b/src/IconEncryptedOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconEncryptedOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconEncryptedOutlinedFilled as default } +export default IconEncryptedOutlinedFilled diff --git a/src/IconEncryptedRounded.tsx b/src/IconEncryptedRounded.tsx index f693a3759..802b35ef5 100644 --- a/src/IconEncryptedRounded.tsx +++ b/src/IconEncryptedRounded.tsx @@ -8,4 +8,4 @@ const IconEncryptedRounded: React.FC = ({ ...props }) => ( ) -export { IconEncryptedRounded as default } +export default IconEncryptedRounded diff --git a/src/IconEncryptedRoundedFilled.tsx b/src/IconEncryptedRoundedFilled.tsx index 25b882333..b2a72a0be 100644 --- a/src/IconEncryptedRoundedFilled.tsx +++ b/src/IconEncryptedRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconEncryptedRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconEncryptedRoundedFilled as default } +export default IconEncryptedRoundedFilled diff --git a/src/IconEncryptedSharp.tsx b/src/IconEncryptedSharp.tsx index e7e8293b6..ba332ab16 100644 --- a/src/IconEncryptedSharp.tsx +++ b/src/IconEncryptedSharp.tsx @@ -8,4 +8,4 @@ const IconEncryptedSharp: React.FC = ({ ...props }) => ( ) -export { IconEncryptedSharp as default } +export default IconEncryptedSharp diff --git a/src/IconEncryptedSharpFilled.tsx b/src/IconEncryptedSharpFilled.tsx index fff707974..4ec3b435c 100644 --- a/src/IconEncryptedSharpFilled.tsx +++ b/src/IconEncryptedSharpFilled.tsx @@ -8,4 +8,4 @@ const IconEncryptedSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconEncryptedSharpFilled as default } +export default IconEncryptedSharpFilled diff --git a/src/IconEndocrinologyOutlined.tsx b/src/IconEndocrinologyOutlined.tsx index a9373cade..7daf9a84d 100644 --- a/src/IconEndocrinologyOutlined.tsx +++ b/src/IconEndocrinologyOutlined.tsx @@ -8,4 +8,4 @@ const IconEndocrinologyOutlined: React.FC = ({ ...props }) => ( ) -export { IconEndocrinologyOutlined as default } +export default IconEndocrinologyOutlined diff --git a/src/IconEndocrinologyOutlinedFilled.tsx b/src/IconEndocrinologyOutlinedFilled.tsx index 988de93bf..fa5fce465 100644 --- a/src/IconEndocrinologyOutlinedFilled.tsx +++ b/src/IconEndocrinologyOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconEndocrinologyOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconEndocrinologyOutlinedFilled as default } +export default IconEndocrinologyOutlinedFilled diff --git a/src/IconEndocrinologyRounded.tsx b/src/IconEndocrinologyRounded.tsx index 4507faa48..cd8a121bf 100644 --- a/src/IconEndocrinologyRounded.tsx +++ b/src/IconEndocrinologyRounded.tsx @@ -8,4 +8,4 @@ const IconEndocrinologyRounded: React.FC = ({ ...props }) => ( ) -export { IconEndocrinologyRounded as default } +export default IconEndocrinologyRounded diff --git a/src/IconEndocrinologyRoundedFilled.tsx b/src/IconEndocrinologyRoundedFilled.tsx index 1b7ec8aed..e78e60679 100644 --- a/src/IconEndocrinologyRoundedFilled.tsx +++ b/src/IconEndocrinologyRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconEndocrinologyRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconEndocrinologyRoundedFilled as default } +export default IconEndocrinologyRoundedFilled diff --git a/src/IconEndocrinologySharp.tsx b/src/IconEndocrinologySharp.tsx index f302b8b30..8222ab441 100644 --- a/src/IconEndocrinologySharp.tsx +++ b/src/IconEndocrinologySharp.tsx @@ -8,4 +8,4 @@ const IconEndocrinologySharp: React.FC = ({ ...props }) => ( ) -export { IconEndocrinologySharp as default } +export default IconEndocrinologySharp diff --git a/src/IconEndocrinologySharpFilled.tsx b/src/IconEndocrinologySharpFilled.tsx index 15d1b49fb..b94795c35 100644 --- a/src/IconEndocrinologySharpFilled.tsx +++ b/src/IconEndocrinologySharpFilled.tsx @@ -8,4 +8,4 @@ const IconEndocrinologySharpFilled: React.FC = ({ ...props }) => ( ) -export { IconEndocrinologySharpFilled as default } +export default IconEndocrinologySharpFilled diff --git a/src/IconEnergyOutlined.tsx b/src/IconEnergyOutlined.tsx index 61f6e4d12..8d3ea7e92 100644 --- a/src/IconEnergyOutlined.tsx +++ b/src/IconEnergyOutlined.tsx @@ -8,4 +8,4 @@ const IconEnergyOutlined: React.FC = ({ ...props }) => ( ) -export { IconEnergyOutlined as default } +export default IconEnergyOutlined diff --git a/src/IconEnergyOutlinedFilled.tsx b/src/IconEnergyOutlinedFilled.tsx index c8352f74e..c7f7fcd44 100644 --- a/src/IconEnergyOutlinedFilled.tsx +++ b/src/IconEnergyOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconEnergyOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconEnergyOutlinedFilled as default } +export default IconEnergyOutlinedFilled diff --git a/src/IconEnergyProgramSavingOutlined.tsx b/src/IconEnergyProgramSavingOutlined.tsx index 990e4a501..63db8fb22 100644 --- a/src/IconEnergyProgramSavingOutlined.tsx +++ b/src/IconEnergyProgramSavingOutlined.tsx @@ -8,4 +8,4 @@ const IconEnergyProgramSavingOutlined: React.FC = ({ ...props }) => ( ) -export { IconEnergyProgramSavingOutlined as default } +export default IconEnergyProgramSavingOutlined diff --git a/src/IconEnergyProgramSavingOutlinedFilled.tsx b/src/IconEnergyProgramSavingOutlinedFilled.tsx index 86985534e..f1fd22939 100644 --- a/src/IconEnergyProgramSavingOutlinedFilled.tsx +++ b/src/IconEnergyProgramSavingOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconEnergyProgramSavingOutlinedFilled: React.FC = ({ ) -export { IconEnergyProgramSavingOutlinedFilled as default } +export default IconEnergyProgramSavingOutlinedFilled diff --git a/src/IconEnergyProgramSavingRounded.tsx b/src/IconEnergyProgramSavingRounded.tsx index a811f4be0..e3e592397 100644 --- a/src/IconEnergyProgramSavingRounded.tsx +++ b/src/IconEnergyProgramSavingRounded.tsx @@ -8,4 +8,4 @@ const IconEnergyProgramSavingRounded: React.FC = ({ ...props }) => ( ) -export { IconEnergyProgramSavingRounded as default } +export default IconEnergyProgramSavingRounded diff --git a/src/IconEnergyProgramSavingRoundedFilled.tsx b/src/IconEnergyProgramSavingRoundedFilled.tsx index ff2265779..b72ffa308 100644 --- a/src/IconEnergyProgramSavingRoundedFilled.tsx +++ b/src/IconEnergyProgramSavingRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconEnergyProgramSavingRoundedFilled: React.FC = ({ ) -export { IconEnergyProgramSavingRoundedFilled as default } +export default IconEnergyProgramSavingRoundedFilled diff --git a/src/IconEnergyProgramSavingSharp.tsx b/src/IconEnergyProgramSavingSharp.tsx index dae1cce80..82af6b2f7 100644 --- a/src/IconEnergyProgramSavingSharp.tsx +++ b/src/IconEnergyProgramSavingSharp.tsx @@ -8,4 +8,4 @@ const IconEnergyProgramSavingSharp: React.FC = ({ ...props }) => ( ) -export { IconEnergyProgramSavingSharp as default } +export default IconEnergyProgramSavingSharp diff --git a/src/IconEnergyProgramSavingSharpFilled.tsx b/src/IconEnergyProgramSavingSharpFilled.tsx index 7a33221a1..ce0b53915 100644 --- a/src/IconEnergyProgramSavingSharpFilled.tsx +++ b/src/IconEnergyProgramSavingSharpFilled.tsx @@ -10,4 +10,4 @@ const IconEnergyProgramSavingSharpFilled: React.FC = ({ ) -export { IconEnergyProgramSavingSharpFilled as default } +export default IconEnergyProgramSavingSharpFilled diff --git a/src/IconEnergyProgramTimeUsedOutlined.tsx b/src/IconEnergyProgramTimeUsedOutlined.tsx index 03a1f724f..734191e62 100644 --- a/src/IconEnergyProgramTimeUsedOutlined.tsx +++ b/src/IconEnergyProgramTimeUsedOutlined.tsx @@ -10,4 +10,4 @@ const IconEnergyProgramTimeUsedOutlined: React.FC = ({ ) -export { IconEnergyProgramTimeUsedOutlined as default } +export default IconEnergyProgramTimeUsedOutlined diff --git a/src/IconEnergyProgramTimeUsedOutlinedFilled.tsx b/src/IconEnergyProgramTimeUsedOutlinedFilled.tsx index ad8391dd9..b76ee0bb6 100644 --- a/src/IconEnergyProgramTimeUsedOutlinedFilled.tsx +++ b/src/IconEnergyProgramTimeUsedOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconEnergyProgramTimeUsedOutlinedFilled: React.FC = ({ ) -export { IconEnergyProgramTimeUsedOutlinedFilled as default } +export default IconEnergyProgramTimeUsedOutlinedFilled diff --git a/src/IconEnergyProgramTimeUsedRounded.tsx b/src/IconEnergyProgramTimeUsedRounded.tsx index 4273715b2..7a2138f40 100644 --- a/src/IconEnergyProgramTimeUsedRounded.tsx +++ b/src/IconEnergyProgramTimeUsedRounded.tsx @@ -10,4 +10,4 @@ const IconEnergyProgramTimeUsedRounded: React.FC = ({ ) -export { IconEnergyProgramTimeUsedRounded as default } +export default IconEnergyProgramTimeUsedRounded diff --git a/src/IconEnergyProgramTimeUsedRoundedFilled.tsx b/src/IconEnergyProgramTimeUsedRoundedFilled.tsx index 413d36b66..5caf9e02d 100644 --- a/src/IconEnergyProgramTimeUsedRoundedFilled.tsx +++ b/src/IconEnergyProgramTimeUsedRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconEnergyProgramTimeUsedRoundedFilled: React.FC = ({ ) -export { IconEnergyProgramTimeUsedRoundedFilled as default } +export default IconEnergyProgramTimeUsedRoundedFilled diff --git a/src/IconEnergyProgramTimeUsedSharp.tsx b/src/IconEnergyProgramTimeUsedSharp.tsx index 92c8938c7..5c48437c0 100644 --- a/src/IconEnergyProgramTimeUsedSharp.tsx +++ b/src/IconEnergyProgramTimeUsedSharp.tsx @@ -8,4 +8,4 @@ const IconEnergyProgramTimeUsedSharp: React.FC = ({ ...props }) => ( ) -export { IconEnergyProgramTimeUsedSharp as default } +export default IconEnergyProgramTimeUsedSharp diff --git a/src/IconEnergyProgramTimeUsedSharpFilled.tsx b/src/IconEnergyProgramTimeUsedSharpFilled.tsx index 46fda55ee..d5bd04f42 100644 --- a/src/IconEnergyProgramTimeUsedSharpFilled.tsx +++ b/src/IconEnergyProgramTimeUsedSharpFilled.tsx @@ -10,4 +10,4 @@ const IconEnergyProgramTimeUsedSharpFilled: React.FC = ({ ) -export { IconEnergyProgramTimeUsedSharpFilled as default } +export default IconEnergyProgramTimeUsedSharpFilled diff --git a/src/IconEnergyRounded.tsx b/src/IconEnergyRounded.tsx index 05c8542c2..d130d3516 100644 --- a/src/IconEnergyRounded.tsx +++ b/src/IconEnergyRounded.tsx @@ -8,4 +8,4 @@ const IconEnergyRounded: React.FC = ({ ...props }) => ( ) -export { IconEnergyRounded as default } +export default IconEnergyRounded diff --git a/src/IconEnergyRoundedFilled.tsx b/src/IconEnergyRoundedFilled.tsx index 218f3c8ef..2f779641d 100644 --- a/src/IconEnergyRoundedFilled.tsx +++ b/src/IconEnergyRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconEnergyRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconEnergyRoundedFilled as default } +export default IconEnergyRoundedFilled diff --git a/src/IconEnergySavingsLeafOutlined.tsx b/src/IconEnergySavingsLeafOutlined.tsx index 93e85cc72..5a6cf2eb2 100644 --- a/src/IconEnergySavingsLeafOutlined.tsx +++ b/src/IconEnergySavingsLeafOutlined.tsx @@ -8,4 +8,4 @@ const IconEnergySavingsLeafOutlined: React.FC = ({ ...props }) => ( ) -export { IconEnergySavingsLeafOutlined as default } +export default IconEnergySavingsLeafOutlined diff --git a/src/IconEnergySavingsLeafOutlinedFilled.tsx b/src/IconEnergySavingsLeafOutlinedFilled.tsx index e63f43e7a..8a8cf3576 100644 --- a/src/IconEnergySavingsLeafOutlinedFilled.tsx +++ b/src/IconEnergySavingsLeafOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconEnergySavingsLeafOutlinedFilled: React.FC = ({ ) -export { IconEnergySavingsLeafOutlinedFilled as default } +export default IconEnergySavingsLeafOutlinedFilled diff --git a/src/IconEnergySavingsLeafRounded.tsx b/src/IconEnergySavingsLeafRounded.tsx index bc23a025b..05cb5242b 100644 --- a/src/IconEnergySavingsLeafRounded.tsx +++ b/src/IconEnergySavingsLeafRounded.tsx @@ -8,4 +8,4 @@ const IconEnergySavingsLeafRounded: React.FC = ({ ...props }) => ( ) -export { IconEnergySavingsLeafRounded as default } +export default IconEnergySavingsLeafRounded diff --git a/src/IconEnergySavingsLeafRoundedFilled.tsx b/src/IconEnergySavingsLeafRoundedFilled.tsx index 04324e9ea..12816f17b 100644 --- a/src/IconEnergySavingsLeafRoundedFilled.tsx +++ b/src/IconEnergySavingsLeafRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconEnergySavingsLeafRoundedFilled: React.FC = ({ ) -export { IconEnergySavingsLeafRoundedFilled as default } +export default IconEnergySavingsLeafRoundedFilled diff --git a/src/IconEnergySavingsLeafSharp.tsx b/src/IconEnergySavingsLeafSharp.tsx index 5ae110e29..59794c94b 100644 --- a/src/IconEnergySavingsLeafSharp.tsx +++ b/src/IconEnergySavingsLeafSharp.tsx @@ -8,4 +8,4 @@ const IconEnergySavingsLeafSharp: React.FC = ({ ...props }) => ( ) -export { IconEnergySavingsLeafSharp as default } +export default IconEnergySavingsLeafSharp diff --git a/src/IconEnergySavingsLeafSharpFilled.tsx b/src/IconEnergySavingsLeafSharpFilled.tsx index e740747e7..d9fe8f2c2 100644 --- a/src/IconEnergySavingsLeafSharpFilled.tsx +++ b/src/IconEnergySavingsLeafSharpFilled.tsx @@ -10,4 +10,4 @@ const IconEnergySavingsLeafSharpFilled: React.FC = ({ ) -export { IconEnergySavingsLeafSharpFilled as default } +export default IconEnergySavingsLeafSharpFilled diff --git a/src/IconEnergySharp.tsx b/src/IconEnergySharp.tsx index 536c70738..67bfdfee1 100644 --- a/src/IconEnergySharp.tsx +++ b/src/IconEnergySharp.tsx @@ -8,4 +8,4 @@ const IconEnergySharp: React.FC = ({ ...props }) => ( ) -export { IconEnergySharp as default } +export default IconEnergySharp diff --git a/src/IconEnergySharpFilled.tsx b/src/IconEnergySharpFilled.tsx index f6984266a..532e20053 100644 --- a/src/IconEnergySharpFilled.tsx +++ b/src/IconEnergySharpFilled.tsx @@ -8,4 +8,4 @@ const IconEnergySharpFilled: React.FC = ({ ...props }) => ( ) -export { IconEnergySharpFilled as default } +export default IconEnergySharpFilled diff --git a/src/IconEngineeringOutlined.tsx b/src/IconEngineeringOutlined.tsx index 691b21ac4..2cee39fa6 100644 --- a/src/IconEngineeringOutlined.tsx +++ b/src/IconEngineeringOutlined.tsx @@ -8,4 +8,4 @@ const IconEngineeringOutlined: React.FC = ({ ...props }) => ( ) -export { IconEngineeringOutlined as default } +export default IconEngineeringOutlined diff --git a/src/IconEngineeringOutlinedFilled.tsx b/src/IconEngineeringOutlinedFilled.tsx index a887bb26e..5f4931f8c 100644 --- a/src/IconEngineeringOutlinedFilled.tsx +++ b/src/IconEngineeringOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconEngineeringOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconEngineeringOutlinedFilled as default } +export default IconEngineeringOutlinedFilled diff --git a/src/IconEngineeringRounded.tsx b/src/IconEngineeringRounded.tsx index c8f02087d..8dabc580c 100644 --- a/src/IconEngineeringRounded.tsx +++ b/src/IconEngineeringRounded.tsx @@ -8,4 +8,4 @@ const IconEngineeringRounded: React.FC = ({ ...props }) => ( ) -export { IconEngineeringRounded as default } +export default IconEngineeringRounded diff --git a/src/IconEngineeringRoundedFilled.tsx b/src/IconEngineeringRoundedFilled.tsx index b484fe996..87d61181b 100644 --- a/src/IconEngineeringRoundedFilled.tsx +++ b/src/IconEngineeringRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconEngineeringRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconEngineeringRoundedFilled as default } +export default IconEngineeringRoundedFilled diff --git a/src/IconEngineeringSharp.tsx b/src/IconEngineeringSharp.tsx index b5c887084..f00f9791e 100644 --- a/src/IconEngineeringSharp.tsx +++ b/src/IconEngineeringSharp.tsx @@ -8,4 +8,4 @@ const IconEngineeringSharp: React.FC = ({ ...props }) => ( ) -export { IconEngineeringSharp as default } +export default IconEngineeringSharp diff --git a/src/IconEngineeringSharpFilled.tsx b/src/IconEngineeringSharpFilled.tsx index 5672001fa..6ad7e528d 100644 --- a/src/IconEngineeringSharpFilled.tsx +++ b/src/IconEngineeringSharpFilled.tsx @@ -8,4 +8,4 @@ const IconEngineeringSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconEngineeringSharpFilled as default } +export default IconEngineeringSharpFilled diff --git a/src/IconEnhancedEncryptionOutlined.tsx b/src/IconEnhancedEncryptionOutlined.tsx index d75158832..af4e94a96 100644 --- a/src/IconEnhancedEncryptionOutlined.tsx +++ b/src/IconEnhancedEncryptionOutlined.tsx @@ -8,4 +8,4 @@ const IconEnhancedEncryptionOutlined: React.FC = ({ ...props }) => ( ) -export { IconEnhancedEncryptionOutlined as default } +export default IconEnhancedEncryptionOutlined diff --git a/src/IconEnhancedEncryptionOutlinedFilled.tsx b/src/IconEnhancedEncryptionOutlinedFilled.tsx index af748d116..00c239fef 100644 --- a/src/IconEnhancedEncryptionOutlinedFilled.tsx +++ b/src/IconEnhancedEncryptionOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconEnhancedEncryptionOutlinedFilled: React.FC = ({ ) -export { IconEnhancedEncryptionOutlinedFilled as default } +export default IconEnhancedEncryptionOutlinedFilled diff --git a/src/IconEnhancedEncryptionRounded.tsx b/src/IconEnhancedEncryptionRounded.tsx index ec5fe4a7d..f33609274 100644 --- a/src/IconEnhancedEncryptionRounded.tsx +++ b/src/IconEnhancedEncryptionRounded.tsx @@ -8,4 +8,4 @@ const IconEnhancedEncryptionRounded: React.FC = ({ ...props }) => ( ) -export { IconEnhancedEncryptionRounded as default } +export default IconEnhancedEncryptionRounded diff --git a/src/IconEnhancedEncryptionRoundedFilled.tsx b/src/IconEnhancedEncryptionRoundedFilled.tsx index 7ed87a83b..56450ffa6 100644 --- a/src/IconEnhancedEncryptionRoundedFilled.tsx +++ b/src/IconEnhancedEncryptionRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconEnhancedEncryptionRoundedFilled: React.FC = ({ ) -export { IconEnhancedEncryptionRoundedFilled as default } +export default IconEnhancedEncryptionRoundedFilled diff --git a/src/IconEnhancedEncryptionSharp.tsx b/src/IconEnhancedEncryptionSharp.tsx index 7c97d643f..765648005 100644 --- a/src/IconEnhancedEncryptionSharp.tsx +++ b/src/IconEnhancedEncryptionSharp.tsx @@ -8,4 +8,4 @@ const IconEnhancedEncryptionSharp: React.FC = ({ ...props }) => ( ) -export { IconEnhancedEncryptionSharp as default } +export default IconEnhancedEncryptionSharp diff --git a/src/IconEnhancedEncryptionSharpFilled.tsx b/src/IconEnhancedEncryptionSharpFilled.tsx index f2fb0f34e..907db2aae 100644 --- a/src/IconEnhancedEncryptionSharpFilled.tsx +++ b/src/IconEnhancedEncryptionSharpFilled.tsx @@ -10,4 +10,4 @@ const IconEnhancedEncryptionSharpFilled: React.FC = ({ ) -export { IconEnhancedEncryptionSharpFilled as default } +export default IconEnhancedEncryptionSharpFilled diff --git a/src/IconEntOutlined.tsx b/src/IconEntOutlined.tsx index 11d4025ff..e58c2aeda 100644 --- a/src/IconEntOutlined.tsx +++ b/src/IconEntOutlined.tsx @@ -8,4 +8,4 @@ const IconEntOutlined: React.FC = ({ ...props }) => ( ) -export { IconEntOutlined as default } +export default IconEntOutlined diff --git a/src/IconEntOutlinedFilled.tsx b/src/IconEntOutlinedFilled.tsx index 55a920c2d..7731a0e33 100644 --- a/src/IconEntOutlinedFilled.tsx +++ b/src/IconEntOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconEntOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconEntOutlinedFilled as default } +export default IconEntOutlinedFilled diff --git a/src/IconEntRounded.tsx b/src/IconEntRounded.tsx index d66b87418..2832bd11d 100644 --- a/src/IconEntRounded.tsx +++ b/src/IconEntRounded.tsx @@ -8,4 +8,4 @@ const IconEntRounded: React.FC = ({ ...props }) => ( ) -export { IconEntRounded as default } +export default IconEntRounded diff --git a/src/IconEntRoundedFilled.tsx b/src/IconEntRoundedFilled.tsx index 9ab38aedf..8ce814d6b 100644 --- a/src/IconEntRoundedFilled.tsx +++ b/src/IconEntRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconEntRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconEntRoundedFilled as default } +export default IconEntRoundedFilled diff --git a/src/IconEntSharp.tsx b/src/IconEntSharp.tsx index 24851fc8d..c83d86862 100644 --- a/src/IconEntSharp.tsx +++ b/src/IconEntSharp.tsx @@ -8,4 +8,4 @@ const IconEntSharp: React.FC = ({ ...props }) => ( ) -export { IconEntSharp as default } +export default IconEntSharp diff --git a/src/IconEntSharpFilled.tsx b/src/IconEntSharpFilled.tsx index 79c5bf13f..dfcfbee98 100644 --- a/src/IconEntSharpFilled.tsx +++ b/src/IconEntSharpFilled.tsx @@ -8,4 +8,4 @@ const IconEntSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconEntSharpFilled as default } +export default IconEntSharpFilled diff --git a/src/IconEnterpriseOffOutlined.tsx b/src/IconEnterpriseOffOutlined.tsx index 0e0afc9bc..4ba67e37f 100644 --- a/src/IconEnterpriseOffOutlined.tsx +++ b/src/IconEnterpriseOffOutlined.tsx @@ -8,4 +8,4 @@ const IconEnterpriseOffOutlined: React.FC = ({ ...props }) => ( ) -export { IconEnterpriseOffOutlined as default } +export default IconEnterpriseOffOutlined diff --git a/src/IconEnterpriseOffOutlinedFilled.tsx b/src/IconEnterpriseOffOutlinedFilled.tsx index fc203b74a..a7d125664 100644 --- a/src/IconEnterpriseOffOutlinedFilled.tsx +++ b/src/IconEnterpriseOffOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconEnterpriseOffOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconEnterpriseOffOutlinedFilled as default } +export default IconEnterpriseOffOutlinedFilled diff --git a/src/IconEnterpriseOffRounded.tsx b/src/IconEnterpriseOffRounded.tsx index b1bdbf153..26b9204dd 100644 --- a/src/IconEnterpriseOffRounded.tsx +++ b/src/IconEnterpriseOffRounded.tsx @@ -8,4 +8,4 @@ const IconEnterpriseOffRounded: React.FC = ({ ...props }) => ( ) -export { IconEnterpriseOffRounded as default } +export default IconEnterpriseOffRounded diff --git a/src/IconEnterpriseOffRoundedFilled.tsx b/src/IconEnterpriseOffRoundedFilled.tsx index dceb696cb..03d7f3619 100644 --- a/src/IconEnterpriseOffRoundedFilled.tsx +++ b/src/IconEnterpriseOffRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconEnterpriseOffRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconEnterpriseOffRoundedFilled as default } +export default IconEnterpriseOffRoundedFilled diff --git a/src/IconEnterpriseOffSharp.tsx b/src/IconEnterpriseOffSharp.tsx index f9671ba56..5cc46357c 100644 --- a/src/IconEnterpriseOffSharp.tsx +++ b/src/IconEnterpriseOffSharp.tsx @@ -8,4 +8,4 @@ const IconEnterpriseOffSharp: React.FC = ({ ...props }) => ( ) -export { IconEnterpriseOffSharp as default } +export default IconEnterpriseOffSharp diff --git a/src/IconEnterpriseOffSharpFilled.tsx b/src/IconEnterpriseOffSharpFilled.tsx index 83d743731..d4859edb8 100644 --- a/src/IconEnterpriseOffSharpFilled.tsx +++ b/src/IconEnterpriseOffSharpFilled.tsx @@ -8,4 +8,4 @@ const IconEnterpriseOffSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconEnterpriseOffSharpFilled as default } +export default IconEnterpriseOffSharpFilled diff --git a/src/IconEnterpriseOutlined.tsx b/src/IconEnterpriseOutlined.tsx index a4ce07414..644b9629f 100644 --- a/src/IconEnterpriseOutlined.tsx +++ b/src/IconEnterpriseOutlined.tsx @@ -8,4 +8,4 @@ const IconEnterpriseOutlined: React.FC = ({ ...props }) => ( ) -export { IconEnterpriseOutlined as default } +export default IconEnterpriseOutlined diff --git a/src/IconEnterpriseOutlinedFilled.tsx b/src/IconEnterpriseOutlinedFilled.tsx index 2ac7b4f79..421bbd768 100644 --- a/src/IconEnterpriseOutlinedFilled.tsx +++ b/src/IconEnterpriseOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconEnterpriseOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconEnterpriseOutlinedFilled as default } +export default IconEnterpriseOutlinedFilled diff --git a/src/IconEnterpriseRounded.tsx b/src/IconEnterpriseRounded.tsx index 48eb4f2e7..f150ccca8 100644 --- a/src/IconEnterpriseRounded.tsx +++ b/src/IconEnterpriseRounded.tsx @@ -8,4 +8,4 @@ const IconEnterpriseRounded: React.FC = ({ ...props }) => ( ) -export { IconEnterpriseRounded as default } +export default IconEnterpriseRounded diff --git a/src/IconEnterpriseRoundedFilled.tsx b/src/IconEnterpriseRoundedFilled.tsx index 47cfd0e6d..b9a3688aa 100644 --- a/src/IconEnterpriseRoundedFilled.tsx +++ b/src/IconEnterpriseRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconEnterpriseRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconEnterpriseRoundedFilled as default } +export default IconEnterpriseRoundedFilled diff --git a/src/IconEnterpriseSharp.tsx b/src/IconEnterpriseSharp.tsx index 0d3664b0f..eed710a1f 100644 --- a/src/IconEnterpriseSharp.tsx +++ b/src/IconEnterpriseSharp.tsx @@ -8,4 +8,4 @@ const IconEnterpriseSharp: React.FC = ({ ...props }) => ( ) -export { IconEnterpriseSharp as default } +export default IconEnterpriseSharp diff --git a/src/IconEnterpriseSharpFilled.tsx b/src/IconEnterpriseSharpFilled.tsx index 617a897a2..a9451b746 100644 --- a/src/IconEnterpriseSharpFilled.tsx +++ b/src/IconEnterpriseSharpFilled.tsx @@ -8,4 +8,4 @@ const IconEnterpriseSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconEnterpriseSharpFilled as default } +export default IconEnterpriseSharpFilled diff --git a/src/IconEqualOutlined.tsx b/src/IconEqualOutlined.tsx index 8cd3b9067..06661fc6f 100644 --- a/src/IconEqualOutlined.tsx +++ b/src/IconEqualOutlined.tsx @@ -8,4 +8,4 @@ const IconEqualOutlined: React.FC = ({ ...props }) => ( ) -export { IconEqualOutlined as default } +export default IconEqualOutlined diff --git a/src/IconEqualOutlinedFilled.tsx b/src/IconEqualOutlinedFilled.tsx index 117f76b0d..7518f4a7f 100644 --- a/src/IconEqualOutlinedFilled.tsx +++ b/src/IconEqualOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconEqualOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconEqualOutlinedFilled as default } +export default IconEqualOutlinedFilled diff --git a/src/IconEqualRounded.tsx b/src/IconEqualRounded.tsx index d752dc649..f2dc4763b 100644 --- a/src/IconEqualRounded.tsx +++ b/src/IconEqualRounded.tsx @@ -8,4 +8,4 @@ const IconEqualRounded: React.FC = ({ ...props }) => ( ) -export { IconEqualRounded as default } +export default IconEqualRounded diff --git a/src/IconEqualRoundedFilled.tsx b/src/IconEqualRoundedFilled.tsx index 58c336a1d..41194a268 100644 --- a/src/IconEqualRoundedFilled.tsx +++ b/src/IconEqualRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconEqualRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconEqualRoundedFilled as default } +export default IconEqualRoundedFilled diff --git a/src/IconEqualSharp.tsx b/src/IconEqualSharp.tsx index ef0617337..196502c12 100644 --- a/src/IconEqualSharp.tsx +++ b/src/IconEqualSharp.tsx @@ -8,4 +8,4 @@ const IconEqualSharp: React.FC = ({ ...props }) => ( ) -export { IconEqualSharp as default } +export default IconEqualSharp diff --git a/src/IconEqualSharpFilled.tsx b/src/IconEqualSharpFilled.tsx index 98fc84ed9..34b1d5212 100644 --- a/src/IconEqualSharpFilled.tsx +++ b/src/IconEqualSharpFilled.tsx @@ -8,4 +8,4 @@ const IconEqualSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconEqualSharpFilled as default } +export default IconEqualSharpFilled diff --git a/src/IconEqualizerOutlined.tsx b/src/IconEqualizerOutlined.tsx index 4a6358820..810264a46 100644 --- a/src/IconEqualizerOutlined.tsx +++ b/src/IconEqualizerOutlined.tsx @@ -8,4 +8,4 @@ const IconEqualizerOutlined: React.FC = ({ ...props }) => ( ) -export { IconEqualizerOutlined as default } +export default IconEqualizerOutlined diff --git a/src/IconEqualizerOutlinedFilled.tsx b/src/IconEqualizerOutlinedFilled.tsx index 59c8b9789..13385c270 100644 --- a/src/IconEqualizerOutlinedFilled.tsx +++ b/src/IconEqualizerOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconEqualizerOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconEqualizerOutlinedFilled as default } +export default IconEqualizerOutlinedFilled diff --git a/src/IconEqualizerRounded.tsx b/src/IconEqualizerRounded.tsx index 317fa94ee..8cbe099d8 100644 --- a/src/IconEqualizerRounded.tsx +++ b/src/IconEqualizerRounded.tsx @@ -8,4 +8,4 @@ const IconEqualizerRounded: React.FC = ({ ...props }) => ( ) -export { IconEqualizerRounded as default } +export default IconEqualizerRounded diff --git a/src/IconEqualizerRoundedFilled.tsx b/src/IconEqualizerRoundedFilled.tsx index e48deae85..f96ec87d4 100644 --- a/src/IconEqualizerRoundedFilled.tsx +++ b/src/IconEqualizerRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconEqualizerRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconEqualizerRoundedFilled as default } +export default IconEqualizerRoundedFilled diff --git a/src/IconEqualizerSharp.tsx b/src/IconEqualizerSharp.tsx index 2c7fe24d9..06caeed0d 100644 --- a/src/IconEqualizerSharp.tsx +++ b/src/IconEqualizerSharp.tsx @@ -8,4 +8,4 @@ const IconEqualizerSharp: React.FC = ({ ...props }) => ( ) -export { IconEqualizerSharp as default } +export default IconEqualizerSharp diff --git a/src/IconEqualizerSharpFilled.tsx b/src/IconEqualizerSharpFilled.tsx index b7319246b..4a0199b5f 100644 --- a/src/IconEqualizerSharpFilled.tsx +++ b/src/IconEqualizerSharpFilled.tsx @@ -8,4 +8,4 @@ const IconEqualizerSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconEqualizerSharpFilled as default } +export default IconEqualizerSharpFilled diff --git a/src/IconEraserSize1Outlined.tsx b/src/IconEraserSize1Outlined.tsx index 726a830c7..198bcd549 100644 --- a/src/IconEraserSize1Outlined.tsx +++ b/src/IconEraserSize1Outlined.tsx @@ -8,4 +8,4 @@ const IconEraserSize1Outlined: React.FC = ({ ...props }) => ( ) -export { IconEraserSize1Outlined as default } +export default IconEraserSize1Outlined diff --git a/src/IconEraserSize1OutlinedFilled.tsx b/src/IconEraserSize1OutlinedFilled.tsx index 378abbf1c..93587a2a0 100644 --- a/src/IconEraserSize1OutlinedFilled.tsx +++ b/src/IconEraserSize1OutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconEraserSize1OutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconEraserSize1OutlinedFilled as default } +export default IconEraserSize1OutlinedFilled diff --git a/src/IconEraserSize1Rounded.tsx b/src/IconEraserSize1Rounded.tsx index 3b4838ef3..dae87482e 100644 --- a/src/IconEraserSize1Rounded.tsx +++ b/src/IconEraserSize1Rounded.tsx @@ -8,4 +8,4 @@ const IconEraserSize1Rounded: React.FC = ({ ...props }) => ( ) -export { IconEraserSize1Rounded as default } +export default IconEraserSize1Rounded diff --git a/src/IconEraserSize1RoundedFilled.tsx b/src/IconEraserSize1RoundedFilled.tsx index 0a25cad9a..7a2887ce1 100644 --- a/src/IconEraserSize1RoundedFilled.tsx +++ b/src/IconEraserSize1RoundedFilled.tsx @@ -8,4 +8,4 @@ const IconEraserSize1RoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconEraserSize1RoundedFilled as default } +export default IconEraserSize1RoundedFilled diff --git a/src/IconEraserSize1Sharp.tsx b/src/IconEraserSize1Sharp.tsx index 5ce1ce691..901498198 100644 --- a/src/IconEraserSize1Sharp.tsx +++ b/src/IconEraserSize1Sharp.tsx @@ -8,4 +8,4 @@ const IconEraserSize1Sharp: React.FC = ({ ...props }) => ( ) -export { IconEraserSize1Sharp as default } +export default IconEraserSize1Sharp diff --git a/src/IconEraserSize1SharpFilled.tsx b/src/IconEraserSize1SharpFilled.tsx index dd73dd524..0f7895a34 100644 --- a/src/IconEraserSize1SharpFilled.tsx +++ b/src/IconEraserSize1SharpFilled.tsx @@ -8,4 +8,4 @@ const IconEraserSize1SharpFilled: React.FC = ({ ...props }) => ( ) -export { IconEraserSize1SharpFilled as default } +export default IconEraserSize1SharpFilled diff --git a/src/IconEraserSize2Outlined.tsx b/src/IconEraserSize2Outlined.tsx index cf345d9eb..e9a30e1ed 100644 --- a/src/IconEraserSize2Outlined.tsx +++ b/src/IconEraserSize2Outlined.tsx @@ -8,4 +8,4 @@ const IconEraserSize2Outlined: React.FC = ({ ...props }) => ( ) -export { IconEraserSize2Outlined as default } +export default IconEraserSize2Outlined diff --git a/src/IconEraserSize2OutlinedFilled.tsx b/src/IconEraserSize2OutlinedFilled.tsx index 6704b7d9f..9c3d205db 100644 --- a/src/IconEraserSize2OutlinedFilled.tsx +++ b/src/IconEraserSize2OutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconEraserSize2OutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconEraserSize2OutlinedFilled as default } +export default IconEraserSize2OutlinedFilled diff --git a/src/IconEraserSize2Rounded.tsx b/src/IconEraserSize2Rounded.tsx index ba4431251..3d8e90033 100644 --- a/src/IconEraserSize2Rounded.tsx +++ b/src/IconEraserSize2Rounded.tsx @@ -8,4 +8,4 @@ const IconEraserSize2Rounded: React.FC = ({ ...props }) => ( ) -export { IconEraserSize2Rounded as default } +export default IconEraserSize2Rounded diff --git a/src/IconEraserSize2RoundedFilled.tsx b/src/IconEraserSize2RoundedFilled.tsx index ebecba628..abdb33dc9 100644 --- a/src/IconEraserSize2RoundedFilled.tsx +++ b/src/IconEraserSize2RoundedFilled.tsx @@ -8,4 +8,4 @@ const IconEraserSize2RoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconEraserSize2RoundedFilled as default } +export default IconEraserSize2RoundedFilled diff --git a/src/IconEraserSize2Sharp.tsx b/src/IconEraserSize2Sharp.tsx index 90a3cfd1e..d694a90d7 100644 --- a/src/IconEraserSize2Sharp.tsx +++ b/src/IconEraserSize2Sharp.tsx @@ -8,4 +8,4 @@ const IconEraserSize2Sharp: React.FC = ({ ...props }) => ( ) -export { IconEraserSize2Sharp as default } +export default IconEraserSize2Sharp diff --git a/src/IconEraserSize2SharpFilled.tsx b/src/IconEraserSize2SharpFilled.tsx index 782bdf930..65014b857 100644 --- a/src/IconEraserSize2SharpFilled.tsx +++ b/src/IconEraserSize2SharpFilled.tsx @@ -8,4 +8,4 @@ const IconEraserSize2SharpFilled: React.FC = ({ ...props }) => ( ) -export { IconEraserSize2SharpFilled as default } +export default IconEraserSize2SharpFilled diff --git a/src/IconEraserSize3Outlined.tsx b/src/IconEraserSize3Outlined.tsx index d02fca1ee..780b3a1ed 100644 --- a/src/IconEraserSize3Outlined.tsx +++ b/src/IconEraserSize3Outlined.tsx @@ -8,4 +8,4 @@ const IconEraserSize3Outlined: React.FC = ({ ...props }) => ( ) -export { IconEraserSize3Outlined as default } +export default IconEraserSize3Outlined diff --git a/src/IconEraserSize3OutlinedFilled.tsx b/src/IconEraserSize3OutlinedFilled.tsx index ef795bb09..075be500b 100644 --- a/src/IconEraserSize3OutlinedFilled.tsx +++ b/src/IconEraserSize3OutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconEraserSize3OutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconEraserSize3OutlinedFilled as default } +export default IconEraserSize3OutlinedFilled diff --git a/src/IconEraserSize3Rounded.tsx b/src/IconEraserSize3Rounded.tsx index 1c66396c6..ebbd7f053 100644 --- a/src/IconEraserSize3Rounded.tsx +++ b/src/IconEraserSize3Rounded.tsx @@ -8,4 +8,4 @@ const IconEraserSize3Rounded: React.FC = ({ ...props }) => ( ) -export { IconEraserSize3Rounded as default } +export default IconEraserSize3Rounded diff --git a/src/IconEraserSize3RoundedFilled.tsx b/src/IconEraserSize3RoundedFilled.tsx index e579b0c2e..15c33fd31 100644 --- a/src/IconEraserSize3RoundedFilled.tsx +++ b/src/IconEraserSize3RoundedFilled.tsx @@ -8,4 +8,4 @@ const IconEraserSize3RoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconEraserSize3RoundedFilled as default } +export default IconEraserSize3RoundedFilled diff --git a/src/IconEraserSize3Sharp.tsx b/src/IconEraserSize3Sharp.tsx index 52788279e..464c32966 100644 --- a/src/IconEraserSize3Sharp.tsx +++ b/src/IconEraserSize3Sharp.tsx @@ -8,4 +8,4 @@ const IconEraserSize3Sharp: React.FC = ({ ...props }) => ( ) -export { IconEraserSize3Sharp as default } +export default IconEraserSize3Sharp diff --git a/src/IconEraserSize3SharpFilled.tsx b/src/IconEraserSize3SharpFilled.tsx index 1baa49914..49366c0be 100644 --- a/src/IconEraserSize3SharpFilled.tsx +++ b/src/IconEraserSize3SharpFilled.tsx @@ -8,4 +8,4 @@ const IconEraserSize3SharpFilled: React.FC = ({ ...props }) => ( ) -export { IconEraserSize3SharpFilled as default } +export default IconEraserSize3SharpFilled diff --git a/src/IconEraserSize4Outlined.tsx b/src/IconEraserSize4Outlined.tsx index 87594377e..753d2d8fb 100644 --- a/src/IconEraserSize4Outlined.tsx +++ b/src/IconEraserSize4Outlined.tsx @@ -8,4 +8,4 @@ const IconEraserSize4Outlined: React.FC = ({ ...props }) => ( ) -export { IconEraserSize4Outlined as default } +export default IconEraserSize4Outlined diff --git a/src/IconEraserSize4OutlinedFilled.tsx b/src/IconEraserSize4OutlinedFilled.tsx index 4ba7ed379..ab7d850b9 100644 --- a/src/IconEraserSize4OutlinedFilled.tsx +++ b/src/IconEraserSize4OutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconEraserSize4OutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconEraserSize4OutlinedFilled as default } +export default IconEraserSize4OutlinedFilled diff --git a/src/IconEraserSize4Rounded.tsx b/src/IconEraserSize4Rounded.tsx index 174cf495c..d02316e67 100644 --- a/src/IconEraserSize4Rounded.tsx +++ b/src/IconEraserSize4Rounded.tsx @@ -8,4 +8,4 @@ const IconEraserSize4Rounded: React.FC = ({ ...props }) => ( ) -export { IconEraserSize4Rounded as default } +export default IconEraserSize4Rounded diff --git a/src/IconEraserSize4RoundedFilled.tsx b/src/IconEraserSize4RoundedFilled.tsx index b905d49b6..741992de1 100644 --- a/src/IconEraserSize4RoundedFilled.tsx +++ b/src/IconEraserSize4RoundedFilled.tsx @@ -8,4 +8,4 @@ const IconEraserSize4RoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconEraserSize4RoundedFilled as default } +export default IconEraserSize4RoundedFilled diff --git a/src/IconEraserSize4Sharp.tsx b/src/IconEraserSize4Sharp.tsx index fc1e1c7be..0da5b516b 100644 --- a/src/IconEraserSize4Sharp.tsx +++ b/src/IconEraserSize4Sharp.tsx @@ -8,4 +8,4 @@ const IconEraserSize4Sharp: React.FC = ({ ...props }) => ( ) -export { IconEraserSize4Sharp as default } +export default IconEraserSize4Sharp diff --git a/src/IconEraserSize4SharpFilled.tsx b/src/IconEraserSize4SharpFilled.tsx index dc280829c..c836cf6db 100644 --- a/src/IconEraserSize4SharpFilled.tsx +++ b/src/IconEraserSize4SharpFilled.tsx @@ -8,4 +8,4 @@ const IconEraserSize4SharpFilled: React.FC = ({ ...props }) => ( ) -export { IconEraserSize4SharpFilled as default } +export default IconEraserSize4SharpFilled diff --git a/src/IconEraserSize5Outlined.tsx b/src/IconEraserSize5Outlined.tsx index 9beaa054e..8f9247ec8 100644 --- a/src/IconEraserSize5Outlined.tsx +++ b/src/IconEraserSize5Outlined.tsx @@ -8,4 +8,4 @@ const IconEraserSize5Outlined: React.FC = ({ ...props }) => ( ) -export { IconEraserSize5Outlined as default } +export default IconEraserSize5Outlined diff --git a/src/IconEraserSize5OutlinedFilled.tsx b/src/IconEraserSize5OutlinedFilled.tsx index 879b8d613..3ce3ed812 100644 --- a/src/IconEraserSize5OutlinedFilled.tsx +++ b/src/IconEraserSize5OutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconEraserSize5OutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconEraserSize5OutlinedFilled as default } +export default IconEraserSize5OutlinedFilled diff --git a/src/IconEraserSize5Rounded.tsx b/src/IconEraserSize5Rounded.tsx index dbd72ddd2..79bc3cdfb 100644 --- a/src/IconEraserSize5Rounded.tsx +++ b/src/IconEraserSize5Rounded.tsx @@ -8,4 +8,4 @@ const IconEraserSize5Rounded: React.FC = ({ ...props }) => ( ) -export { IconEraserSize5Rounded as default } +export default IconEraserSize5Rounded diff --git a/src/IconEraserSize5RoundedFilled.tsx b/src/IconEraserSize5RoundedFilled.tsx index b58ba1369..62d6c08d5 100644 --- a/src/IconEraserSize5RoundedFilled.tsx +++ b/src/IconEraserSize5RoundedFilled.tsx @@ -8,4 +8,4 @@ const IconEraserSize5RoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconEraserSize5RoundedFilled as default } +export default IconEraserSize5RoundedFilled diff --git a/src/IconEraserSize5Sharp.tsx b/src/IconEraserSize5Sharp.tsx index d5223524b..89417dede 100644 --- a/src/IconEraserSize5Sharp.tsx +++ b/src/IconEraserSize5Sharp.tsx @@ -8,4 +8,4 @@ const IconEraserSize5Sharp: React.FC = ({ ...props }) => ( ) -export { IconEraserSize5Sharp as default } +export default IconEraserSize5Sharp diff --git a/src/IconEraserSize5SharpFilled.tsx b/src/IconEraserSize5SharpFilled.tsx index f2305f379..3cfe98a8d 100644 --- a/src/IconEraserSize5SharpFilled.tsx +++ b/src/IconEraserSize5SharpFilled.tsx @@ -8,4 +8,4 @@ const IconEraserSize5SharpFilled: React.FC = ({ ...props }) => ( ) -export { IconEraserSize5SharpFilled as default } +export default IconEraserSize5SharpFilled diff --git a/src/IconErrorMedOutlined.tsx b/src/IconErrorMedOutlined.tsx index 1a0f7bb1b..f90fc584f 100644 --- a/src/IconErrorMedOutlined.tsx +++ b/src/IconErrorMedOutlined.tsx @@ -8,4 +8,4 @@ const IconErrorMedOutlined: React.FC = ({ ...props }) => ( ) -export { IconErrorMedOutlined as default } +export default IconErrorMedOutlined diff --git a/src/IconErrorMedOutlinedFilled.tsx b/src/IconErrorMedOutlinedFilled.tsx index 086636878..b28bd1fdd 100644 --- a/src/IconErrorMedOutlinedFilled.tsx +++ b/src/IconErrorMedOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconErrorMedOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconErrorMedOutlinedFilled as default } +export default IconErrorMedOutlinedFilled diff --git a/src/IconErrorMedRounded.tsx b/src/IconErrorMedRounded.tsx index 77a162388..5cb95b422 100644 --- a/src/IconErrorMedRounded.tsx +++ b/src/IconErrorMedRounded.tsx @@ -8,4 +8,4 @@ const IconErrorMedRounded: React.FC = ({ ...props }) => ( ) -export { IconErrorMedRounded as default } +export default IconErrorMedRounded diff --git a/src/IconErrorMedRoundedFilled.tsx b/src/IconErrorMedRoundedFilled.tsx index 765838d0f..427a17809 100644 --- a/src/IconErrorMedRoundedFilled.tsx +++ b/src/IconErrorMedRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconErrorMedRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconErrorMedRoundedFilled as default } +export default IconErrorMedRoundedFilled diff --git a/src/IconErrorMedSharp.tsx b/src/IconErrorMedSharp.tsx index 8e9aa8531..9d896646f 100644 --- a/src/IconErrorMedSharp.tsx +++ b/src/IconErrorMedSharp.tsx @@ -8,4 +8,4 @@ const IconErrorMedSharp: React.FC = ({ ...props }) => ( ) -export { IconErrorMedSharp as default } +export default IconErrorMedSharp diff --git a/src/IconErrorMedSharpFilled.tsx b/src/IconErrorMedSharpFilled.tsx index 3c6caf989..fddb1e3d2 100644 --- a/src/IconErrorMedSharpFilled.tsx +++ b/src/IconErrorMedSharpFilled.tsx @@ -8,4 +8,4 @@ const IconErrorMedSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconErrorMedSharpFilled as default } +export default IconErrorMedSharpFilled diff --git a/src/IconErrorOutlined.tsx b/src/IconErrorOutlined.tsx index 0440d4e08..185ccf422 100644 --- a/src/IconErrorOutlined.tsx +++ b/src/IconErrorOutlined.tsx @@ -8,4 +8,4 @@ const IconErrorOutlined: React.FC = ({ ...props }) => ( ) -export { IconErrorOutlined as default } +export default IconErrorOutlined diff --git a/src/IconErrorOutlinedFilled.tsx b/src/IconErrorOutlinedFilled.tsx index a3bdc2f7b..4974a18c1 100644 --- a/src/IconErrorOutlinedFilled.tsx +++ b/src/IconErrorOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconErrorOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconErrorOutlinedFilled as default } +export default IconErrorOutlinedFilled diff --git a/src/IconErrorRounded.tsx b/src/IconErrorRounded.tsx index 039937ada..4a0bb953c 100644 --- a/src/IconErrorRounded.tsx +++ b/src/IconErrorRounded.tsx @@ -8,4 +8,4 @@ const IconErrorRounded: React.FC = ({ ...props }) => ( ) -export { IconErrorRounded as default } +export default IconErrorRounded diff --git a/src/IconErrorRoundedFilled.tsx b/src/IconErrorRoundedFilled.tsx index 4ee8e6151..0f886336c 100644 --- a/src/IconErrorRoundedFilled.tsx +++ b/src/IconErrorRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconErrorRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconErrorRoundedFilled as default } +export default IconErrorRoundedFilled diff --git a/src/IconErrorSharp.tsx b/src/IconErrorSharp.tsx index 00d0e1242..1e6353075 100644 --- a/src/IconErrorSharp.tsx +++ b/src/IconErrorSharp.tsx @@ -8,4 +8,4 @@ const IconErrorSharp: React.FC = ({ ...props }) => ( ) -export { IconErrorSharp as default } +export default IconErrorSharp diff --git a/src/IconErrorSharpFilled.tsx b/src/IconErrorSharpFilled.tsx index 3d3ba19a6..f1a993998 100644 --- a/src/IconErrorSharpFilled.tsx +++ b/src/IconErrorSharpFilled.tsx @@ -8,4 +8,4 @@ const IconErrorSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconErrorSharpFilled as default } +export default IconErrorSharpFilled diff --git a/src/IconEscalatorOutlined.tsx b/src/IconEscalatorOutlined.tsx index b68fe17a5..a94b9eb18 100644 --- a/src/IconEscalatorOutlined.tsx +++ b/src/IconEscalatorOutlined.tsx @@ -8,4 +8,4 @@ const IconEscalatorOutlined: React.FC = ({ ...props }) => ( ) -export { IconEscalatorOutlined as default } +export default IconEscalatorOutlined diff --git a/src/IconEscalatorOutlinedFilled.tsx b/src/IconEscalatorOutlinedFilled.tsx index ac9b222c2..e120a66d0 100644 --- a/src/IconEscalatorOutlinedFilled.tsx +++ b/src/IconEscalatorOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconEscalatorOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconEscalatorOutlinedFilled as default } +export default IconEscalatorOutlinedFilled diff --git a/src/IconEscalatorRounded.tsx b/src/IconEscalatorRounded.tsx index 60534639b..b601022c8 100644 --- a/src/IconEscalatorRounded.tsx +++ b/src/IconEscalatorRounded.tsx @@ -8,4 +8,4 @@ const IconEscalatorRounded: React.FC = ({ ...props }) => ( ) -export { IconEscalatorRounded as default } +export default IconEscalatorRounded diff --git a/src/IconEscalatorRoundedFilled.tsx b/src/IconEscalatorRoundedFilled.tsx index c4fb098ee..601281a4c 100644 --- a/src/IconEscalatorRoundedFilled.tsx +++ b/src/IconEscalatorRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconEscalatorRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconEscalatorRoundedFilled as default } +export default IconEscalatorRoundedFilled diff --git a/src/IconEscalatorSharp.tsx b/src/IconEscalatorSharp.tsx index 3f82d2300..c7c6d4ca3 100644 --- a/src/IconEscalatorSharp.tsx +++ b/src/IconEscalatorSharp.tsx @@ -8,4 +8,4 @@ const IconEscalatorSharp: React.FC = ({ ...props }) => ( ) -export { IconEscalatorSharp as default } +export default IconEscalatorSharp diff --git a/src/IconEscalatorSharpFilled.tsx b/src/IconEscalatorSharpFilled.tsx index 1df60c2a6..9b2e9a6b6 100644 --- a/src/IconEscalatorSharpFilled.tsx +++ b/src/IconEscalatorSharpFilled.tsx @@ -8,4 +8,4 @@ const IconEscalatorSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconEscalatorSharpFilled as default } +export default IconEscalatorSharpFilled diff --git a/src/IconEscalatorWarningOutlined.tsx b/src/IconEscalatorWarningOutlined.tsx index 2b51c08e7..2aaf7d4e9 100644 --- a/src/IconEscalatorWarningOutlined.tsx +++ b/src/IconEscalatorWarningOutlined.tsx @@ -8,4 +8,4 @@ const IconEscalatorWarningOutlined: React.FC = ({ ...props }) => ( ) -export { IconEscalatorWarningOutlined as default } +export default IconEscalatorWarningOutlined diff --git a/src/IconEscalatorWarningOutlinedFilled.tsx b/src/IconEscalatorWarningOutlinedFilled.tsx index 6e01d1f9c..04aa716ff 100644 --- a/src/IconEscalatorWarningOutlinedFilled.tsx +++ b/src/IconEscalatorWarningOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconEscalatorWarningOutlinedFilled: React.FC = ({ ) -export { IconEscalatorWarningOutlinedFilled as default } +export default IconEscalatorWarningOutlinedFilled diff --git a/src/IconEscalatorWarningRounded.tsx b/src/IconEscalatorWarningRounded.tsx index baf779d2c..89ec64f1a 100644 --- a/src/IconEscalatorWarningRounded.tsx +++ b/src/IconEscalatorWarningRounded.tsx @@ -8,4 +8,4 @@ const IconEscalatorWarningRounded: React.FC = ({ ...props }) => ( ) -export { IconEscalatorWarningRounded as default } +export default IconEscalatorWarningRounded diff --git a/src/IconEscalatorWarningRoundedFilled.tsx b/src/IconEscalatorWarningRoundedFilled.tsx index 84a036b42..7a3f8fce6 100644 --- a/src/IconEscalatorWarningRoundedFilled.tsx +++ b/src/IconEscalatorWarningRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconEscalatorWarningRoundedFilled: React.FC = ({ ) -export { IconEscalatorWarningRoundedFilled as default } +export default IconEscalatorWarningRoundedFilled diff --git a/src/IconEscalatorWarningSharp.tsx b/src/IconEscalatorWarningSharp.tsx index 58a2acf6d..27fed4b1e 100644 --- a/src/IconEscalatorWarningSharp.tsx +++ b/src/IconEscalatorWarningSharp.tsx @@ -8,4 +8,4 @@ const IconEscalatorWarningSharp: React.FC = ({ ...props }) => ( ) -export { IconEscalatorWarningSharp as default } +export default IconEscalatorWarningSharp diff --git a/src/IconEscalatorWarningSharpFilled.tsx b/src/IconEscalatorWarningSharpFilled.tsx index 686c05c5a..c93025695 100644 --- a/src/IconEscalatorWarningSharpFilled.tsx +++ b/src/IconEscalatorWarningSharpFilled.tsx @@ -8,4 +8,4 @@ const IconEscalatorWarningSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconEscalatorWarningSharpFilled as default } +export default IconEscalatorWarningSharpFilled diff --git a/src/IconEuroOutlined.tsx b/src/IconEuroOutlined.tsx index 8a7f77dd7..89055141d 100644 --- a/src/IconEuroOutlined.tsx +++ b/src/IconEuroOutlined.tsx @@ -8,4 +8,4 @@ const IconEuroOutlined: React.FC = ({ ...props }) => ( ) -export { IconEuroOutlined as default } +export default IconEuroOutlined diff --git a/src/IconEuroOutlinedFilled.tsx b/src/IconEuroOutlinedFilled.tsx index 1a5e906a3..2e301f6e6 100644 --- a/src/IconEuroOutlinedFilled.tsx +++ b/src/IconEuroOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconEuroOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconEuroOutlinedFilled as default } +export default IconEuroOutlinedFilled diff --git a/src/IconEuroRounded.tsx b/src/IconEuroRounded.tsx index 301b5894d..838f38b5f 100644 --- a/src/IconEuroRounded.tsx +++ b/src/IconEuroRounded.tsx @@ -8,4 +8,4 @@ const IconEuroRounded: React.FC = ({ ...props }) => ( ) -export { IconEuroRounded as default } +export default IconEuroRounded diff --git a/src/IconEuroRoundedFilled.tsx b/src/IconEuroRoundedFilled.tsx index e389a2fd5..1d4a91c3c 100644 --- a/src/IconEuroRoundedFilled.tsx +++ b/src/IconEuroRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconEuroRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconEuroRoundedFilled as default } +export default IconEuroRoundedFilled diff --git a/src/IconEuroSharp.tsx b/src/IconEuroSharp.tsx index e7b207b51..86a77abce 100644 --- a/src/IconEuroSharp.tsx +++ b/src/IconEuroSharp.tsx @@ -8,4 +8,4 @@ const IconEuroSharp: React.FC = ({ ...props }) => ( ) -export { IconEuroSharp as default } +export default IconEuroSharp diff --git a/src/IconEuroSharpFilled.tsx b/src/IconEuroSharpFilled.tsx index 58141b6c4..3c40999b3 100644 --- a/src/IconEuroSharpFilled.tsx +++ b/src/IconEuroSharpFilled.tsx @@ -8,4 +8,4 @@ const IconEuroSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconEuroSharpFilled as default } +export default IconEuroSharpFilled diff --git a/src/IconEuroSymbolOutlined.tsx b/src/IconEuroSymbolOutlined.tsx index 93154c271..1d83ade3a 100644 --- a/src/IconEuroSymbolOutlined.tsx +++ b/src/IconEuroSymbolOutlined.tsx @@ -8,4 +8,4 @@ const IconEuroSymbolOutlined: React.FC = ({ ...props }) => ( ) -export { IconEuroSymbolOutlined as default } +export default IconEuroSymbolOutlined diff --git a/src/IconEuroSymbolOutlinedFilled.tsx b/src/IconEuroSymbolOutlinedFilled.tsx index 5b7a947cd..0b324d0e5 100644 --- a/src/IconEuroSymbolOutlinedFilled.tsx +++ b/src/IconEuroSymbolOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconEuroSymbolOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconEuroSymbolOutlinedFilled as default } +export default IconEuroSymbolOutlinedFilled diff --git a/src/IconEuroSymbolRounded.tsx b/src/IconEuroSymbolRounded.tsx index a3fbeca3f..f9855af11 100644 --- a/src/IconEuroSymbolRounded.tsx +++ b/src/IconEuroSymbolRounded.tsx @@ -8,4 +8,4 @@ const IconEuroSymbolRounded: React.FC = ({ ...props }) => ( ) -export { IconEuroSymbolRounded as default } +export default IconEuroSymbolRounded diff --git a/src/IconEuroSymbolRoundedFilled.tsx b/src/IconEuroSymbolRoundedFilled.tsx index 02aad42d0..9e742f5c8 100644 --- a/src/IconEuroSymbolRoundedFilled.tsx +++ b/src/IconEuroSymbolRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconEuroSymbolRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconEuroSymbolRoundedFilled as default } +export default IconEuroSymbolRoundedFilled diff --git a/src/IconEuroSymbolSharp.tsx b/src/IconEuroSymbolSharp.tsx index 2fab1b712..760316e69 100644 --- a/src/IconEuroSymbolSharp.tsx +++ b/src/IconEuroSymbolSharp.tsx @@ -8,4 +8,4 @@ const IconEuroSymbolSharp: React.FC = ({ ...props }) => ( ) -export { IconEuroSymbolSharp as default } +export default IconEuroSymbolSharp diff --git a/src/IconEuroSymbolSharpFilled.tsx b/src/IconEuroSymbolSharpFilled.tsx index 49467b098..3fff15ced 100644 --- a/src/IconEuroSymbolSharpFilled.tsx +++ b/src/IconEuroSymbolSharpFilled.tsx @@ -8,4 +8,4 @@ const IconEuroSymbolSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconEuroSymbolSharpFilled as default } +export default IconEuroSymbolSharpFilled diff --git a/src/IconEvChargerOutlined.tsx b/src/IconEvChargerOutlined.tsx index 5862c6fb0..67f7c3c41 100644 --- a/src/IconEvChargerOutlined.tsx +++ b/src/IconEvChargerOutlined.tsx @@ -8,4 +8,4 @@ const IconEvChargerOutlined: React.FC = ({ ...props }) => ( ) -export { IconEvChargerOutlined as default } +export default IconEvChargerOutlined diff --git a/src/IconEvChargerOutlinedFilled.tsx b/src/IconEvChargerOutlinedFilled.tsx index d14ead4e9..9e7f41547 100644 --- a/src/IconEvChargerOutlinedFilled.tsx +++ b/src/IconEvChargerOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconEvChargerOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconEvChargerOutlinedFilled as default } +export default IconEvChargerOutlinedFilled diff --git a/src/IconEvChargerRounded.tsx b/src/IconEvChargerRounded.tsx index 016e65624..609ac2ce7 100644 --- a/src/IconEvChargerRounded.tsx +++ b/src/IconEvChargerRounded.tsx @@ -8,4 +8,4 @@ const IconEvChargerRounded: React.FC = ({ ...props }) => ( ) -export { IconEvChargerRounded as default } +export default IconEvChargerRounded diff --git a/src/IconEvChargerRoundedFilled.tsx b/src/IconEvChargerRoundedFilled.tsx index f115e18b4..10f12cd7a 100644 --- a/src/IconEvChargerRoundedFilled.tsx +++ b/src/IconEvChargerRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconEvChargerRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconEvChargerRoundedFilled as default } +export default IconEvChargerRoundedFilled diff --git a/src/IconEvChargerSharp.tsx b/src/IconEvChargerSharp.tsx index 213eaef3e..8d535ae0c 100644 --- a/src/IconEvChargerSharp.tsx +++ b/src/IconEvChargerSharp.tsx @@ -8,4 +8,4 @@ const IconEvChargerSharp: React.FC = ({ ...props }) => ( ) -export { IconEvChargerSharp as default } +export default IconEvChargerSharp diff --git a/src/IconEvChargerSharpFilled.tsx b/src/IconEvChargerSharpFilled.tsx index 443f54d21..983164f66 100644 --- a/src/IconEvChargerSharpFilled.tsx +++ b/src/IconEvChargerSharpFilled.tsx @@ -8,4 +8,4 @@ const IconEvChargerSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconEvChargerSharpFilled as default } +export default IconEvChargerSharpFilled diff --git a/src/IconEvMobiledataBadgeOutlined.tsx b/src/IconEvMobiledataBadgeOutlined.tsx index ce92423ff..119139f65 100644 --- a/src/IconEvMobiledataBadgeOutlined.tsx +++ b/src/IconEvMobiledataBadgeOutlined.tsx @@ -8,4 +8,4 @@ const IconEvMobiledataBadgeOutlined: React.FC = ({ ...props }) => ( ) -export { IconEvMobiledataBadgeOutlined as default } +export default IconEvMobiledataBadgeOutlined diff --git a/src/IconEvMobiledataBadgeOutlinedFilled.tsx b/src/IconEvMobiledataBadgeOutlinedFilled.tsx index c88d63855..b795bb777 100644 --- a/src/IconEvMobiledataBadgeOutlinedFilled.tsx +++ b/src/IconEvMobiledataBadgeOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconEvMobiledataBadgeOutlinedFilled: React.FC = ({ ) -export { IconEvMobiledataBadgeOutlinedFilled as default } +export default IconEvMobiledataBadgeOutlinedFilled diff --git a/src/IconEvMobiledataBadgeRounded.tsx b/src/IconEvMobiledataBadgeRounded.tsx index a0d9ccaee..69328a543 100644 --- a/src/IconEvMobiledataBadgeRounded.tsx +++ b/src/IconEvMobiledataBadgeRounded.tsx @@ -8,4 +8,4 @@ const IconEvMobiledataBadgeRounded: React.FC = ({ ...props }) => ( ) -export { IconEvMobiledataBadgeRounded as default } +export default IconEvMobiledataBadgeRounded diff --git a/src/IconEvMobiledataBadgeRoundedFilled.tsx b/src/IconEvMobiledataBadgeRoundedFilled.tsx index 5a7d6fb5b..739f61c55 100644 --- a/src/IconEvMobiledataBadgeRoundedFilled.tsx +++ b/src/IconEvMobiledataBadgeRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconEvMobiledataBadgeRoundedFilled: React.FC = ({ ) -export { IconEvMobiledataBadgeRoundedFilled as default } +export default IconEvMobiledataBadgeRoundedFilled diff --git a/src/IconEvMobiledataBadgeSharp.tsx b/src/IconEvMobiledataBadgeSharp.tsx index 2431bc20e..d3b81689a 100644 --- a/src/IconEvMobiledataBadgeSharp.tsx +++ b/src/IconEvMobiledataBadgeSharp.tsx @@ -8,4 +8,4 @@ const IconEvMobiledataBadgeSharp: React.FC = ({ ...props }) => ( ) -export { IconEvMobiledataBadgeSharp as default } +export default IconEvMobiledataBadgeSharp diff --git a/src/IconEvMobiledataBadgeSharpFilled.tsx b/src/IconEvMobiledataBadgeSharpFilled.tsx index c6946a2d8..e134e9f7e 100644 --- a/src/IconEvMobiledataBadgeSharpFilled.tsx +++ b/src/IconEvMobiledataBadgeSharpFilled.tsx @@ -10,4 +10,4 @@ const IconEvMobiledataBadgeSharpFilled: React.FC = ({ ) -export { IconEvMobiledataBadgeSharpFilled as default } +export default IconEvMobiledataBadgeSharpFilled diff --git a/src/IconEvShadowAddOutlined.tsx b/src/IconEvShadowAddOutlined.tsx index bcb2ba1bf..1f053c2cd 100644 --- a/src/IconEvShadowAddOutlined.tsx +++ b/src/IconEvShadowAddOutlined.tsx @@ -8,4 +8,4 @@ const IconEvShadowAddOutlined: React.FC = ({ ...props }) => ( ) -export { IconEvShadowAddOutlined as default } +export default IconEvShadowAddOutlined diff --git a/src/IconEvShadowAddOutlinedFilled.tsx b/src/IconEvShadowAddOutlinedFilled.tsx index d520c13fd..6a496f93c 100644 --- a/src/IconEvShadowAddOutlinedFilled.tsx +++ b/src/IconEvShadowAddOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconEvShadowAddOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconEvShadowAddOutlinedFilled as default } +export default IconEvShadowAddOutlinedFilled diff --git a/src/IconEvShadowAddRounded.tsx b/src/IconEvShadowAddRounded.tsx index f8fcd58d8..847b84fb2 100644 --- a/src/IconEvShadowAddRounded.tsx +++ b/src/IconEvShadowAddRounded.tsx @@ -8,4 +8,4 @@ const IconEvShadowAddRounded: React.FC = ({ ...props }) => ( ) -export { IconEvShadowAddRounded as default } +export default IconEvShadowAddRounded diff --git a/src/IconEvShadowAddRoundedFilled.tsx b/src/IconEvShadowAddRoundedFilled.tsx index 4ebfe9b3c..66a31a518 100644 --- a/src/IconEvShadowAddRoundedFilled.tsx +++ b/src/IconEvShadowAddRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconEvShadowAddRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconEvShadowAddRoundedFilled as default } +export default IconEvShadowAddRoundedFilled diff --git a/src/IconEvShadowAddSharp.tsx b/src/IconEvShadowAddSharp.tsx index 5d3bfc387..73d73005a 100644 --- a/src/IconEvShadowAddSharp.tsx +++ b/src/IconEvShadowAddSharp.tsx @@ -8,4 +8,4 @@ const IconEvShadowAddSharp: React.FC = ({ ...props }) => ( ) -export { IconEvShadowAddSharp as default } +export default IconEvShadowAddSharp diff --git a/src/IconEvShadowAddSharpFilled.tsx b/src/IconEvShadowAddSharpFilled.tsx index 11ea407b0..d28b4be37 100644 --- a/src/IconEvShadowAddSharpFilled.tsx +++ b/src/IconEvShadowAddSharpFilled.tsx @@ -8,4 +8,4 @@ const IconEvShadowAddSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconEvShadowAddSharpFilled as default } +export default IconEvShadowAddSharpFilled diff --git a/src/IconEvShadowMinusOutlined.tsx b/src/IconEvShadowMinusOutlined.tsx index a8695feea..6c2864a0b 100644 --- a/src/IconEvShadowMinusOutlined.tsx +++ b/src/IconEvShadowMinusOutlined.tsx @@ -8,4 +8,4 @@ const IconEvShadowMinusOutlined: React.FC = ({ ...props }) => ( ) -export { IconEvShadowMinusOutlined as default } +export default IconEvShadowMinusOutlined diff --git a/src/IconEvShadowMinusOutlinedFilled.tsx b/src/IconEvShadowMinusOutlinedFilled.tsx index e31803b2a..fc4bb1710 100644 --- a/src/IconEvShadowMinusOutlinedFilled.tsx +++ b/src/IconEvShadowMinusOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconEvShadowMinusOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconEvShadowMinusOutlinedFilled as default } +export default IconEvShadowMinusOutlinedFilled diff --git a/src/IconEvShadowMinusRounded.tsx b/src/IconEvShadowMinusRounded.tsx index b8a69c165..7f2757414 100644 --- a/src/IconEvShadowMinusRounded.tsx +++ b/src/IconEvShadowMinusRounded.tsx @@ -8,4 +8,4 @@ const IconEvShadowMinusRounded: React.FC = ({ ...props }) => ( ) -export { IconEvShadowMinusRounded as default } +export default IconEvShadowMinusRounded diff --git a/src/IconEvShadowMinusRoundedFilled.tsx b/src/IconEvShadowMinusRoundedFilled.tsx index 91366fd65..af1be3d08 100644 --- a/src/IconEvShadowMinusRoundedFilled.tsx +++ b/src/IconEvShadowMinusRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconEvShadowMinusRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconEvShadowMinusRoundedFilled as default } +export default IconEvShadowMinusRoundedFilled diff --git a/src/IconEvShadowMinusSharp.tsx b/src/IconEvShadowMinusSharp.tsx index 0ec2f753d..4327c7ed3 100644 --- a/src/IconEvShadowMinusSharp.tsx +++ b/src/IconEvShadowMinusSharp.tsx @@ -8,4 +8,4 @@ const IconEvShadowMinusSharp: React.FC = ({ ...props }) => ( ) -export { IconEvShadowMinusSharp as default } +export default IconEvShadowMinusSharp diff --git a/src/IconEvShadowMinusSharpFilled.tsx b/src/IconEvShadowMinusSharpFilled.tsx index 6fe8cba4b..821d13254 100644 --- a/src/IconEvShadowMinusSharpFilled.tsx +++ b/src/IconEvShadowMinusSharpFilled.tsx @@ -8,4 +8,4 @@ const IconEvShadowMinusSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconEvShadowMinusSharpFilled as default } +export default IconEvShadowMinusSharpFilled diff --git a/src/IconEvShadowOutlined.tsx b/src/IconEvShadowOutlined.tsx index 6293a21a6..964c9378d 100644 --- a/src/IconEvShadowOutlined.tsx +++ b/src/IconEvShadowOutlined.tsx @@ -8,4 +8,4 @@ const IconEvShadowOutlined: React.FC = ({ ...props }) => ( ) -export { IconEvShadowOutlined as default } +export default IconEvShadowOutlined diff --git a/src/IconEvShadowOutlinedFilled.tsx b/src/IconEvShadowOutlinedFilled.tsx index dc756a7ea..f8b069abd 100644 --- a/src/IconEvShadowOutlinedFilled.tsx +++ b/src/IconEvShadowOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconEvShadowOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconEvShadowOutlinedFilled as default } +export default IconEvShadowOutlinedFilled diff --git a/src/IconEvShadowRounded.tsx b/src/IconEvShadowRounded.tsx index b07c6ba52..30e231f57 100644 --- a/src/IconEvShadowRounded.tsx +++ b/src/IconEvShadowRounded.tsx @@ -8,4 +8,4 @@ const IconEvShadowRounded: React.FC = ({ ...props }) => ( ) -export { IconEvShadowRounded as default } +export default IconEvShadowRounded diff --git a/src/IconEvShadowRoundedFilled.tsx b/src/IconEvShadowRoundedFilled.tsx index 75a32366a..543ac2e39 100644 --- a/src/IconEvShadowRoundedFilled.tsx +++ b/src/IconEvShadowRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconEvShadowRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconEvShadowRoundedFilled as default } +export default IconEvShadowRoundedFilled diff --git a/src/IconEvShadowSharp.tsx b/src/IconEvShadowSharp.tsx index 296e6e887..06d806331 100644 --- a/src/IconEvShadowSharp.tsx +++ b/src/IconEvShadowSharp.tsx @@ -8,4 +8,4 @@ const IconEvShadowSharp: React.FC = ({ ...props }) => ( ) -export { IconEvShadowSharp as default } +export default IconEvShadowSharp diff --git a/src/IconEvShadowSharpFilled.tsx b/src/IconEvShadowSharpFilled.tsx index 3cb05e8d6..7443a8487 100644 --- a/src/IconEvShadowSharpFilled.tsx +++ b/src/IconEvShadowSharpFilled.tsx @@ -8,4 +8,4 @@ const IconEvShadowSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconEvShadowSharpFilled as default } +export default IconEvShadowSharpFilled diff --git a/src/IconEvStationOutlined.tsx b/src/IconEvStationOutlined.tsx index ae210d271..f31fe44f1 100644 --- a/src/IconEvStationOutlined.tsx +++ b/src/IconEvStationOutlined.tsx @@ -8,4 +8,4 @@ const IconEvStationOutlined: React.FC = ({ ...props }) => ( ) -export { IconEvStationOutlined as default } +export default IconEvStationOutlined diff --git a/src/IconEvStationOutlinedFilled.tsx b/src/IconEvStationOutlinedFilled.tsx index e51ead9d9..980034c51 100644 --- a/src/IconEvStationOutlinedFilled.tsx +++ b/src/IconEvStationOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconEvStationOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconEvStationOutlinedFilled as default } +export default IconEvStationOutlinedFilled diff --git a/src/IconEvStationRounded.tsx b/src/IconEvStationRounded.tsx index f3b2396c5..fa6a6545c 100644 --- a/src/IconEvStationRounded.tsx +++ b/src/IconEvStationRounded.tsx @@ -8,4 +8,4 @@ const IconEvStationRounded: React.FC = ({ ...props }) => ( ) -export { IconEvStationRounded as default } +export default IconEvStationRounded diff --git a/src/IconEvStationRoundedFilled.tsx b/src/IconEvStationRoundedFilled.tsx index 21c8329ee..cccf00940 100644 --- a/src/IconEvStationRoundedFilled.tsx +++ b/src/IconEvStationRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconEvStationRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconEvStationRoundedFilled as default } +export default IconEvStationRoundedFilled diff --git a/src/IconEvStationSharp.tsx b/src/IconEvStationSharp.tsx index bf077da14..b2671ea6b 100644 --- a/src/IconEvStationSharp.tsx +++ b/src/IconEvStationSharp.tsx @@ -8,4 +8,4 @@ const IconEvStationSharp: React.FC = ({ ...props }) => ( ) -export { IconEvStationSharp as default } +export default IconEvStationSharp diff --git a/src/IconEvStationSharpFilled.tsx b/src/IconEvStationSharpFilled.tsx index 1aea17656..d6cb9a80d 100644 --- a/src/IconEvStationSharpFilled.tsx +++ b/src/IconEvStationSharpFilled.tsx @@ -8,4 +8,4 @@ const IconEvStationSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconEvStationSharpFilled as default } +export default IconEvStationSharpFilled diff --git a/src/IconEventAvailableOutlined.tsx b/src/IconEventAvailableOutlined.tsx index 29c848016..b69e8e782 100644 --- a/src/IconEventAvailableOutlined.tsx +++ b/src/IconEventAvailableOutlined.tsx @@ -8,4 +8,4 @@ const IconEventAvailableOutlined: React.FC = ({ ...props }) => ( ) -export { IconEventAvailableOutlined as default } +export default IconEventAvailableOutlined diff --git a/src/IconEventAvailableOutlinedFilled.tsx b/src/IconEventAvailableOutlinedFilled.tsx index a7fd81ea4..f2df51634 100644 --- a/src/IconEventAvailableOutlinedFilled.tsx +++ b/src/IconEventAvailableOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconEventAvailableOutlinedFilled: React.FC = ({ ) -export { IconEventAvailableOutlinedFilled as default } +export default IconEventAvailableOutlinedFilled diff --git a/src/IconEventAvailableRounded.tsx b/src/IconEventAvailableRounded.tsx index 72d593b7d..5515543ad 100644 --- a/src/IconEventAvailableRounded.tsx +++ b/src/IconEventAvailableRounded.tsx @@ -8,4 +8,4 @@ const IconEventAvailableRounded: React.FC = ({ ...props }) => ( ) -export { IconEventAvailableRounded as default } +export default IconEventAvailableRounded diff --git a/src/IconEventAvailableRoundedFilled.tsx b/src/IconEventAvailableRoundedFilled.tsx index 2d7272481..7786bfc92 100644 --- a/src/IconEventAvailableRoundedFilled.tsx +++ b/src/IconEventAvailableRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconEventAvailableRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconEventAvailableRoundedFilled as default } +export default IconEventAvailableRoundedFilled diff --git a/src/IconEventAvailableSharp.tsx b/src/IconEventAvailableSharp.tsx index b23637912..92b4c8820 100644 --- a/src/IconEventAvailableSharp.tsx +++ b/src/IconEventAvailableSharp.tsx @@ -8,4 +8,4 @@ const IconEventAvailableSharp: React.FC = ({ ...props }) => ( ) -export { IconEventAvailableSharp as default } +export default IconEventAvailableSharp diff --git a/src/IconEventAvailableSharpFilled.tsx b/src/IconEventAvailableSharpFilled.tsx index e104b12e3..0ba1398c6 100644 --- a/src/IconEventAvailableSharpFilled.tsx +++ b/src/IconEventAvailableSharpFilled.tsx @@ -8,4 +8,4 @@ const IconEventAvailableSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconEventAvailableSharpFilled as default } +export default IconEventAvailableSharpFilled diff --git a/src/IconEventBusyOutlined.tsx b/src/IconEventBusyOutlined.tsx index c65f046a7..8c4b47fe9 100644 --- a/src/IconEventBusyOutlined.tsx +++ b/src/IconEventBusyOutlined.tsx @@ -8,4 +8,4 @@ const IconEventBusyOutlined: React.FC = ({ ...props }) => ( ) -export { IconEventBusyOutlined as default } +export default IconEventBusyOutlined diff --git a/src/IconEventBusyOutlinedFilled.tsx b/src/IconEventBusyOutlinedFilled.tsx index e26218c16..d80795f6c 100644 --- a/src/IconEventBusyOutlinedFilled.tsx +++ b/src/IconEventBusyOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconEventBusyOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconEventBusyOutlinedFilled as default } +export default IconEventBusyOutlinedFilled diff --git a/src/IconEventBusyRounded.tsx b/src/IconEventBusyRounded.tsx index 0338c0b79..a51eab95d 100644 --- a/src/IconEventBusyRounded.tsx +++ b/src/IconEventBusyRounded.tsx @@ -8,4 +8,4 @@ const IconEventBusyRounded: React.FC = ({ ...props }) => ( ) -export { IconEventBusyRounded as default } +export default IconEventBusyRounded diff --git a/src/IconEventBusyRoundedFilled.tsx b/src/IconEventBusyRoundedFilled.tsx index ad1df7e81..ec4ba73d2 100644 --- a/src/IconEventBusyRoundedFilled.tsx +++ b/src/IconEventBusyRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconEventBusyRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconEventBusyRoundedFilled as default } +export default IconEventBusyRoundedFilled diff --git a/src/IconEventBusySharp.tsx b/src/IconEventBusySharp.tsx index 055eb08d5..402d26b1d 100644 --- a/src/IconEventBusySharp.tsx +++ b/src/IconEventBusySharp.tsx @@ -8,4 +8,4 @@ const IconEventBusySharp: React.FC = ({ ...props }) => ( ) -export { IconEventBusySharp as default } +export default IconEventBusySharp diff --git a/src/IconEventBusySharpFilled.tsx b/src/IconEventBusySharpFilled.tsx index b86404cba..68b212b0d 100644 --- a/src/IconEventBusySharpFilled.tsx +++ b/src/IconEventBusySharpFilled.tsx @@ -8,4 +8,4 @@ const IconEventBusySharpFilled: React.FC = ({ ...props }) => ( ) -export { IconEventBusySharpFilled as default } +export default IconEventBusySharpFilled diff --git a/src/IconEventListOutlined.tsx b/src/IconEventListOutlined.tsx index 3d10e99c0..2bc95c7ef 100644 --- a/src/IconEventListOutlined.tsx +++ b/src/IconEventListOutlined.tsx @@ -8,4 +8,4 @@ const IconEventListOutlined: React.FC = ({ ...props }) => ( ) -export { IconEventListOutlined as default } +export default IconEventListOutlined diff --git a/src/IconEventListOutlinedFilled.tsx b/src/IconEventListOutlinedFilled.tsx index 4f4be3d54..ebd3bc610 100644 --- a/src/IconEventListOutlinedFilled.tsx +++ b/src/IconEventListOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconEventListOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconEventListOutlinedFilled as default } +export default IconEventListOutlinedFilled diff --git a/src/IconEventListRounded.tsx b/src/IconEventListRounded.tsx index eb65fd7ea..e13c0e337 100644 --- a/src/IconEventListRounded.tsx +++ b/src/IconEventListRounded.tsx @@ -8,4 +8,4 @@ const IconEventListRounded: React.FC = ({ ...props }) => ( ) -export { IconEventListRounded as default } +export default IconEventListRounded diff --git a/src/IconEventListRoundedFilled.tsx b/src/IconEventListRoundedFilled.tsx index 556a56429..0436ae703 100644 --- a/src/IconEventListRoundedFilled.tsx +++ b/src/IconEventListRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconEventListRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconEventListRoundedFilled as default } +export default IconEventListRoundedFilled diff --git a/src/IconEventListSharp.tsx b/src/IconEventListSharp.tsx index 1a5e6dd4a..41da54a2b 100644 --- a/src/IconEventListSharp.tsx +++ b/src/IconEventListSharp.tsx @@ -8,4 +8,4 @@ const IconEventListSharp: React.FC = ({ ...props }) => ( ) -export { IconEventListSharp as default } +export default IconEventListSharp diff --git a/src/IconEventListSharpFilled.tsx b/src/IconEventListSharpFilled.tsx index 43df40f60..757f9f971 100644 --- a/src/IconEventListSharpFilled.tsx +++ b/src/IconEventListSharpFilled.tsx @@ -8,4 +8,4 @@ const IconEventListSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconEventListSharpFilled as default } +export default IconEventListSharpFilled diff --git a/src/IconEventNoteOutlined.tsx b/src/IconEventNoteOutlined.tsx index f9c92cc08..899c9130c 100644 --- a/src/IconEventNoteOutlined.tsx +++ b/src/IconEventNoteOutlined.tsx @@ -8,4 +8,4 @@ const IconEventNoteOutlined: React.FC = ({ ...props }) => ( ) -export { IconEventNoteOutlined as default } +export default IconEventNoteOutlined diff --git a/src/IconEventNoteOutlinedFilled.tsx b/src/IconEventNoteOutlinedFilled.tsx index d53288741..56455f653 100644 --- a/src/IconEventNoteOutlinedFilled.tsx +++ b/src/IconEventNoteOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconEventNoteOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconEventNoteOutlinedFilled as default } +export default IconEventNoteOutlinedFilled diff --git a/src/IconEventNoteRounded.tsx b/src/IconEventNoteRounded.tsx index 2098fd8c5..b4e6f6207 100644 --- a/src/IconEventNoteRounded.tsx +++ b/src/IconEventNoteRounded.tsx @@ -8,4 +8,4 @@ const IconEventNoteRounded: React.FC = ({ ...props }) => ( ) -export { IconEventNoteRounded as default } +export default IconEventNoteRounded diff --git a/src/IconEventNoteRoundedFilled.tsx b/src/IconEventNoteRoundedFilled.tsx index 0decff67d..c4be80506 100644 --- a/src/IconEventNoteRoundedFilled.tsx +++ b/src/IconEventNoteRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconEventNoteRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconEventNoteRoundedFilled as default } +export default IconEventNoteRoundedFilled diff --git a/src/IconEventNoteSharp.tsx b/src/IconEventNoteSharp.tsx index 0f4951a8e..ead54491a 100644 --- a/src/IconEventNoteSharp.tsx +++ b/src/IconEventNoteSharp.tsx @@ -8,4 +8,4 @@ const IconEventNoteSharp: React.FC = ({ ...props }) => ( ) -export { IconEventNoteSharp as default } +export default IconEventNoteSharp diff --git a/src/IconEventNoteSharpFilled.tsx b/src/IconEventNoteSharpFilled.tsx index 4d1e09054..16e79ae0e 100644 --- a/src/IconEventNoteSharpFilled.tsx +++ b/src/IconEventNoteSharpFilled.tsx @@ -8,4 +8,4 @@ const IconEventNoteSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconEventNoteSharpFilled as default } +export default IconEventNoteSharpFilled diff --git a/src/IconEventOutlined.tsx b/src/IconEventOutlined.tsx index 3f052e828..a9d140d55 100644 --- a/src/IconEventOutlined.tsx +++ b/src/IconEventOutlined.tsx @@ -8,4 +8,4 @@ const IconEventOutlined: React.FC = ({ ...props }) => ( ) -export { IconEventOutlined as default } +export default IconEventOutlined diff --git a/src/IconEventOutlinedFilled.tsx b/src/IconEventOutlinedFilled.tsx index 8fb9dab98..92ddcd128 100644 --- a/src/IconEventOutlinedFilled.tsx +++ b/src/IconEventOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconEventOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconEventOutlinedFilled as default } +export default IconEventOutlinedFilled diff --git a/src/IconEventRepeatOutlined.tsx b/src/IconEventRepeatOutlined.tsx index 286ac315e..f63cc3e28 100644 --- a/src/IconEventRepeatOutlined.tsx +++ b/src/IconEventRepeatOutlined.tsx @@ -8,4 +8,4 @@ const IconEventRepeatOutlined: React.FC = ({ ...props }) => ( ) -export { IconEventRepeatOutlined as default } +export default IconEventRepeatOutlined diff --git a/src/IconEventRepeatOutlinedFilled.tsx b/src/IconEventRepeatOutlinedFilled.tsx index 992245ce1..544c5f9f0 100644 --- a/src/IconEventRepeatOutlinedFilled.tsx +++ b/src/IconEventRepeatOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconEventRepeatOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconEventRepeatOutlinedFilled as default } +export default IconEventRepeatOutlinedFilled diff --git a/src/IconEventRepeatRounded.tsx b/src/IconEventRepeatRounded.tsx index 5aacbb5de..21a935f66 100644 --- a/src/IconEventRepeatRounded.tsx +++ b/src/IconEventRepeatRounded.tsx @@ -8,4 +8,4 @@ const IconEventRepeatRounded: React.FC = ({ ...props }) => ( ) -export { IconEventRepeatRounded as default } +export default IconEventRepeatRounded diff --git a/src/IconEventRepeatRoundedFilled.tsx b/src/IconEventRepeatRoundedFilled.tsx index ddb7846bb..f86d876d4 100644 --- a/src/IconEventRepeatRoundedFilled.tsx +++ b/src/IconEventRepeatRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconEventRepeatRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconEventRepeatRoundedFilled as default } +export default IconEventRepeatRoundedFilled diff --git a/src/IconEventRepeatSharp.tsx b/src/IconEventRepeatSharp.tsx index 413b5d0a7..5952844a5 100644 --- a/src/IconEventRepeatSharp.tsx +++ b/src/IconEventRepeatSharp.tsx @@ -8,4 +8,4 @@ const IconEventRepeatSharp: React.FC = ({ ...props }) => ( ) -export { IconEventRepeatSharp as default } +export default IconEventRepeatSharp diff --git a/src/IconEventRepeatSharpFilled.tsx b/src/IconEventRepeatSharpFilled.tsx index a5f119449..a483e4329 100644 --- a/src/IconEventRepeatSharpFilled.tsx +++ b/src/IconEventRepeatSharpFilled.tsx @@ -8,4 +8,4 @@ const IconEventRepeatSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconEventRepeatSharpFilled as default } +export default IconEventRepeatSharpFilled diff --git a/src/IconEventRounded.tsx b/src/IconEventRounded.tsx index cd86b5e12..64c19b38d 100644 --- a/src/IconEventRounded.tsx +++ b/src/IconEventRounded.tsx @@ -8,4 +8,4 @@ const IconEventRounded: React.FC = ({ ...props }) => ( ) -export { IconEventRounded as default } +export default IconEventRounded diff --git a/src/IconEventRoundedFilled.tsx b/src/IconEventRoundedFilled.tsx index 270bc669a..f841b865e 100644 --- a/src/IconEventRoundedFilled.tsx +++ b/src/IconEventRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconEventRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconEventRoundedFilled as default } +export default IconEventRoundedFilled diff --git a/src/IconEventSeatOutlined.tsx b/src/IconEventSeatOutlined.tsx index 0defd2718..3744eb972 100644 --- a/src/IconEventSeatOutlined.tsx +++ b/src/IconEventSeatOutlined.tsx @@ -8,4 +8,4 @@ const IconEventSeatOutlined: React.FC = ({ ...props }) => ( ) -export { IconEventSeatOutlined as default } +export default IconEventSeatOutlined diff --git a/src/IconEventSeatOutlinedFilled.tsx b/src/IconEventSeatOutlinedFilled.tsx index 767c3e8c3..db3df9017 100644 --- a/src/IconEventSeatOutlinedFilled.tsx +++ b/src/IconEventSeatOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconEventSeatOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconEventSeatOutlinedFilled as default } +export default IconEventSeatOutlinedFilled diff --git a/src/IconEventSeatRounded.tsx b/src/IconEventSeatRounded.tsx index b02fae552..3d543f5fd 100644 --- a/src/IconEventSeatRounded.tsx +++ b/src/IconEventSeatRounded.tsx @@ -8,4 +8,4 @@ const IconEventSeatRounded: React.FC = ({ ...props }) => ( ) -export { IconEventSeatRounded as default } +export default IconEventSeatRounded diff --git a/src/IconEventSeatRoundedFilled.tsx b/src/IconEventSeatRoundedFilled.tsx index 316036212..75dbbc577 100644 --- a/src/IconEventSeatRoundedFilled.tsx +++ b/src/IconEventSeatRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconEventSeatRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconEventSeatRoundedFilled as default } +export default IconEventSeatRoundedFilled diff --git a/src/IconEventSeatSharp.tsx b/src/IconEventSeatSharp.tsx index f68f26fce..5f2458fb8 100644 --- a/src/IconEventSeatSharp.tsx +++ b/src/IconEventSeatSharp.tsx @@ -8,4 +8,4 @@ const IconEventSeatSharp: React.FC = ({ ...props }) => ( ) -export { IconEventSeatSharp as default } +export default IconEventSeatSharp diff --git a/src/IconEventSeatSharpFilled.tsx b/src/IconEventSeatSharpFilled.tsx index 7fcf750dc..9c96c7213 100644 --- a/src/IconEventSeatSharpFilled.tsx +++ b/src/IconEventSeatSharpFilled.tsx @@ -8,4 +8,4 @@ const IconEventSeatSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconEventSeatSharpFilled as default } +export default IconEventSeatSharpFilled diff --git a/src/IconEventSharp.tsx b/src/IconEventSharp.tsx index 61cb0e19a..4c32cbfa3 100644 --- a/src/IconEventSharp.tsx +++ b/src/IconEventSharp.tsx @@ -8,4 +8,4 @@ const IconEventSharp: React.FC = ({ ...props }) => ( ) -export { IconEventSharp as default } +export default IconEventSharp diff --git a/src/IconEventSharpFilled.tsx b/src/IconEventSharpFilled.tsx index 568470080..2a05395ed 100644 --- a/src/IconEventSharpFilled.tsx +++ b/src/IconEventSharpFilled.tsx @@ -8,4 +8,4 @@ const IconEventSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconEventSharpFilled as default } +export default IconEventSharpFilled diff --git a/src/IconEventUpcomingOutlined.tsx b/src/IconEventUpcomingOutlined.tsx index b901101e7..59faccb7f 100644 --- a/src/IconEventUpcomingOutlined.tsx +++ b/src/IconEventUpcomingOutlined.tsx @@ -8,4 +8,4 @@ const IconEventUpcomingOutlined: React.FC = ({ ...props }) => ( ) -export { IconEventUpcomingOutlined as default } +export default IconEventUpcomingOutlined diff --git a/src/IconEventUpcomingOutlinedFilled.tsx b/src/IconEventUpcomingOutlinedFilled.tsx index 2bd4982f9..b04a46621 100644 --- a/src/IconEventUpcomingOutlinedFilled.tsx +++ b/src/IconEventUpcomingOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconEventUpcomingOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconEventUpcomingOutlinedFilled as default } +export default IconEventUpcomingOutlinedFilled diff --git a/src/IconEventUpcomingRounded.tsx b/src/IconEventUpcomingRounded.tsx index ad03c6525..1513d4074 100644 --- a/src/IconEventUpcomingRounded.tsx +++ b/src/IconEventUpcomingRounded.tsx @@ -8,4 +8,4 @@ const IconEventUpcomingRounded: React.FC = ({ ...props }) => ( ) -export { IconEventUpcomingRounded as default } +export default IconEventUpcomingRounded diff --git a/src/IconEventUpcomingRoundedFilled.tsx b/src/IconEventUpcomingRoundedFilled.tsx index cd0382f9c..145b5b477 100644 --- a/src/IconEventUpcomingRoundedFilled.tsx +++ b/src/IconEventUpcomingRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconEventUpcomingRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconEventUpcomingRoundedFilled as default } +export default IconEventUpcomingRoundedFilled diff --git a/src/IconEventUpcomingSharp.tsx b/src/IconEventUpcomingSharp.tsx index 64ac0c781..0c09b6316 100644 --- a/src/IconEventUpcomingSharp.tsx +++ b/src/IconEventUpcomingSharp.tsx @@ -8,4 +8,4 @@ const IconEventUpcomingSharp: React.FC = ({ ...props }) => ( ) -export { IconEventUpcomingSharp as default } +export default IconEventUpcomingSharp diff --git a/src/IconEventUpcomingSharpFilled.tsx b/src/IconEventUpcomingSharpFilled.tsx index 706794e95..1ee095f74 100644 --- a/src/IconEventUpcomingSharpFilled.tsx +++ b/src/IconEventUpcomingSharpFilled.tsx @@ -8,4 +8,4 @@ const IconEventUpcomingSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconEventUpcomingSharpFilled as default } +export default IconEventUpcomingSharpFilled diff --git a/src/IconExclamationOutlined.tsx b/src/IconExclamationOutlined.tsx index 2ae8ca35f..9f39c517c 100644 --- a/src/IconExclamationOutlined.tsx +++ b/src/IconExclamationOutlined.tsx @@ -8,4 +8,4 @@ const IconExclamationOutlined: React.FC = ({ ...props }) => ( ) -export { IconExclamationOutlined as default } +export default IconExclamationOutlined diff --git a/src/IconExclamationOutlinedFilled.tsx b/src/IconExclamationOutlinedFilled.tsx index a1727a3cc..9aee02c80 100644 --- a/src/IconExclamationOutlinedFilled.tsx +++ b/src/IconExclamationOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconExclamationOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconExclamationOutlinedFilled as default } +export default IconExclamationOutlinedFilled diff --git a/src/IconExclamationRounded.tsx b/src/IconExclamationRounded.tsx index a0e8cdaac..c766c4078 100644 --- a/src/IconExclamationRounded.tsx +++ b/src/IconExclamationRounded.tsx @@ -8,4 +8,4 @@ const IconExclamationRounded: React.FC = ({ ...props }) => ( ) -export { IconExclamationRounded as default } +export default IconExclamationRounded diff --git a/src/IconExclamationRoundedFilled.tsx b/src/IconExclamationRoundedFilled.tsx index 9e390b0ad..ffe6458ce 100644 --- a/src/IconExclamationRoundedFilled.tsx +++ b/src/IconExclamationRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconExclamationRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconExclamationRoundedFilled as default } +export default IconExclamationRoundedFilled diff --git a/src/IconExclamationSharp.tsx b/src/IconExclamationSharp.tsx index 4c6c2ed6f..292de2d00 100644 --- a/src/IconExclamationSharp.tsx +++ b/src/IconExclamationSharp.tsx @@ -8,4 +8,4 @@ const IconExclamationSharp: React.FC = ({ ...props }) => ( ) -export { IconExclamationSharp as default } +export default IconExclamationSharp diff --git a/src/IconExclamationSharpFilled.tsx b/src/IconExclamationSharpFilled.tsx index 9d8cf04f3..97c7e091c 100644 --- a/src/IconExclamationSharpFilled.tsx +++ b/src/IconExclamationSharpFilled.tsx @@ -8,4 +8,4 @@ const IconExclamationSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconExclamationSharpFilled as default } +export default IconExclamationSharpFilled diff --git a/src/IconExerciseOutlined.tsx b/src/IconExerciseOutlined.tsx index 74635d3a1..3bfee0d03 100644 --- a/src/IconExerciseOutlined.tsx +++ b/src/IconExerciseOutlined.tsx @@ -8,4 +8,4 @@ const IconExerciseOutlined: React.FC = ({ ...props }) => ( ) -export { IconExerciseOutlined as default } +export default IconExerciseOutlined diff --git a/src/IconExerciseOutlinedFilled.tsx b/src/IconExerciseOutlinedFilled.tsx index 40b7ced64..a4b649b8d 100644 --- a/src/IconExerciseOutlinedFilled.tsx +++ b/src/IconExerciseOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconExerciseOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconExerciseOutlinedFilled as default } +export default IconExerciseOutlinedFilled diff --git a/src/IconExerciseRounded.tsx b/src/IconExerciseRounded.tsx index 6a7d0f6f6..e3ea2191f 100644 --- a/src/IconExerciseRounded.tsx +++ b/src/IconExerciseRounded.tsx @@ -8,4 +8,4 @@ const IconExerciseRounded: React.FC = ({ ...props }) => ( ) -export { IconExerciseRounded as default } +export default IconExerciseRounded diff --git a/src/IconExerciseRoundedFilled.tsx b/src/IconExerciseRoundedFilled.tsx index 74be770c6..f4d3608cc 100644 --- a/src/IconExerciseRoundedFilled.tsx +++ b/src/IconExerciseRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconExerciseRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconExerciseRoundedFilled as default } +export default IconExerciseRoundedFilled diff --git a/src/IconExerciseSharp.tsx b/src/IconExerciseSharp.tsx index dca4314f1..b2cba2052 100644 --- a/src/IconExerciseSharp.tsx +++ b/src/IconExerciseSharp.tsx @@ -8,4 +8,4 @@ const IconExerciseSharp: React.FC = ({ ...props }) => ( ) -export { IconExerciseSharp as default } +export default IconExerciseSharp diff --git a/src/IconExerciseSharpFilled.tsx b/src/IconExerciseSharpFilled.tsx index 531d13efa..10c1ba7ef 100644 --- a/src/IconExerciseSharpFilled.tsx +++ b/src/IconExerciseSharpFilled.tsx @@ -8,4 +8,4 @@ const IconExerciseSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconExerciseSharpFilled as default } +export default IconExerciseSharpFilled diff --git a/src/IconExitToAppOutlined.tsx b/src/IconExitToAppOutlined.tsx index 19f0cf556..44706d360 100644 --- a/src/IconExitToAppOutlined.tsx +++ b/src/IconExitToAppOutlined.tsx @@ -8,4 +8,4 @@ const IconExitToAppOutlined: React.FC = ({ ...props }) => ( ) -export { IconExitToAppOutlined as default } +export default IconExitToAppOutlined diff --git a/src/IconExitToAppOutlinedFilled.tsx b/src/IconExitToAppOutlinedFilled.tsx index 15001612c..34f87acf0 100644 --- a/src/IconExitToAppOutlinedFilled.tsx +++ b/src/IconExitToAppOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconExitToAppOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconExitToAppOutlinedFilled as default } +export default IconExitToAppOutlinedFilled diff --git a/src/IconExitToAppRounded.tsx b/src/IconExitToAppRounded.tsx index afc2bfe1b..56ac5ae29 100644 --- a/src/IconExitToAppRounded.tsx +++ b/src/IconExitToAppRounded.tsx @@ -8,4 +8,4 @@ const IconExitToAppRounded: React.FC = ({ ...props }) => ( ) -export { IconExitToAppRounded as default } +export default IconExitToAppRounded diff --git a/src/IconExitToAppRoundedFilled.tsx b/src/IconExitToAppRoundedFilled.tsx index ca65c5164..02b3bf3a4 100644 --- a/src/IconExitToAppRoundedFilled.tsx +++ b/src/IconExitToAppRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconExitToAppRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconExitToAppRoundedFilled as default } +export default IconExitToAppRoundedFilled diff --git a/src/IconExitToAppSharp.tsx b/src/IconExitToAppSharp.tsx index 9e42c9c6c..25d94e93c 100644 --- a/src/IconExitToAppSharp.tsx +++ b/src/IconExitToAppSharp.tsx @@ -8,4 +8,4 @@ const IconExitToAppSharp: React.FC = ({ ...props }) => ( ) -export { IconExitToAppSharp as default } +export default IconExitToAppSharp diff --git a/src/IconExitToAppSharpFilled.tsx b/src/IconExitToAppSharpFilled.tsx index 0e118d1de..8e0a9558a 100644 --- a/src/IconExitToAppSharpFilled.tsx +++ b/src/IconExitToAppSharpFilled.tsx @@ -8,4 +8,4 @@ const IconExitToAppSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconExitToAppSharpFilled as default } +export default IconExitToAppSharpFilled diff --git a/src/IconExpandAllOutlined.tsx b/src/IconExpandAllOutlined.tsx index b137046d6..792cecf1f 100644 --- a/src/IconExpandAllOutlined.tsx +++ b/src/IconExpandAllOutlined.tsx @@ -8,4 +8,4 @@ const IconExpandAllOutlined: React.FC = ({ ...props }) => ( ) -export { IconExpandAllOutlined as default } +export default IconExpandAllOutlined diff --git a/src/IconExpandAllOutlinedFilled.tsx b/src/IconExpandAllOutlinedFilled.tsx index 7f59e0335..9e0e739f7 100644 --- a/src/IconExpandAllOutlinedFilled.tsx +++ b/src/IconExpandAllOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconExpandAllOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconExpandAllOutlinedFilled as default } +export default IconExpandAllOutlinedFilled diff --git a/src/IconExpandAllRounded.tsx b/src/IconExpandAllRounded.tsx index 52b6fc4b1..db8375f17 100644 --- a/src/IconExpandAllRounded.tsx +++ b/src/IconExpandAllRounded.tsx @@ -8,4 +8,4 @@ const IconExpandAllRounded: React.FC = ({ ...props }) => ( ) -export { IconExpandAllRounded as default } +export default IconExpandAllRounded diff --git a/src/IconExpandAllRoundedFilled.tsx b/src/IconExpandAllRoundedFilled.tsx index 54a8c46d8..e7ade89b5 100644 --- a/src/IconExpandAllRoundedFilled.tsx +++ b/src/IconExpandAllRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconExpandAllRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconExpandAllRoundedFilled as default } +export default IconExpandAllRoundedFilled diff --git a/src/IconExpandAllSharp.tsx b/src/IconExpandAllSharp.tsx index 5ebf1facd..6ed358e1f 100644 --- a/src/IconExpandAllSharp.tsx +++ b/src/IconExpandAllSharp.tsx @@ -8,4 +8,4 @@ const IconExpandAllSharp: React.FC = ({ ...props }) => ( ) -export { IconExpandAllSharp as default } +export default IconExpandAllSharp diff --git a/src/IconExpandAllSharpFilled.tsx b/src/IconExpandAllSharpFilled.tsx index 69f55fca5..273ec4080 100644 --- a/src/IconExpandAllSharpFilled.tsx +++ b/src/IconExpandAllSharpFilled.tsx @@ -8,4 +8,4 @@ const IconExpandAllSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconExpandAllSharpFilled as default } +export default IconExpandAllSharpFilled diff --git a/src/IconExpandCircleDownOutlined.tsx b/src/IconExpandCircleDownOutlined.tsx index 70f7eb36a..0aa80ef5e 100644 --- a/src/IconExpandCircleDownOutlined.tsx +++ b/src/IconExpandCircleDownOutlined.tsx @@ -8,4 +8,4 @@ const IconExpandCircleDownOutlined: React.FC = ({ ...props }) => ( ) -export { IconExpandCircleDownOutlined as default } +export default IconExpandCircleDownOutlined diff --git a/src/IconExpandCircleDownOutlinedFilled.tsx b/src/IconExpandCircleDownOutlinedFilled.tsx index 1980fee80..3bce03d2d 100644 --- a/src/IconExpandCircleDownOutlinedFilled.tsx +++ b/src/IconExpandCircleDownOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconExpandCircleDownOutlinedFilled: React.FC = ({ ) -export { IconExpandCircleDownOutlinedFilled as default } +export default IconExpandCircleDownOutlinedFilled diff --git a/src/IconExpandCircleDownRounded.tsx b/src/IconExpandCircleDownRounded.tsx index ff1586138..a47898147 100644 --- a/src/IconExpandCircleDownRounded.tsx +++ b/src/IconExpandCircleDownRounded.tsx @@ -8,4 +8,4 @@ const IconExpandCircleDownRounded: React.FC = ({ ...props }) => ( ) -export { IconExpandCircleDownRounded as default } +export default IconExpandCircleDownRounded diff --git a/src/IconExpandCircleDownRoundedFilled.tsx b/src/IconExpandCircleDownRoundedFilled.tsx index f17bf340e..c795931b7 100644 --- a/src/IconExpandCircleDownRoundedFilled.tsx +++ b/src/IconExpandCircleDownRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconExpandCircleDownRoundedFilled: React.FC = ({ ) -export { IconExpandCircleDownRoundedFilled as default } +export default IconExpandCircleDownRoundedFilled diff --git a/src/IconExpandCircleDownSharp.tsx b/src/IconExpandCircleDownSharp.tsx index bb4973a61..069087c5c 100644 --- a/src/IconExpandCircleDownSharp.tsx +++ b/src/IconExpandCircleDownSharp.tsx @@ -8,4 +8,4 @@ const IconExpandCircleDownSharp: React.FC = ({ ...props }) => ( ) -export { IconExpandCircleDownSharp as default } +export default IconExpandCircleDownSharp diff --git a/src/IconExpandCircleDownSharpFilled.tsx b/src/IconExpandCircleDownSharpFilled.tsx index a31a146e4..0f52b9986 100644 --- a/src/IconExpandCircleDownSharpFilled.tsx +++ b/src/IconExpandCircleDownSharpFilled.tsx @@ -8,4 +8,4 @@ const IconExpandCircleDownSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconExpandCircleDownSharpFilled as default } +export default IconExpandCircleDownSharpFilled diff --git a/src/IconExpandCircleRightOutlined.tsx b/src/IconExpandCircleRightOutlined.tsx index 6cf99ff53..78d78b15b 100644 --- a/src/IconExpandCircleRightOutlined.tsx +++ b/src/IconExpandCircleRightOutlined.tsx @@ -8,4 +8,4 @@ const IconExpandCircleRightOutlined: React.FC = ({ ...props }) => ( ) -export { IconExpandCircleRightOutlined as default } +export default IconExpandCircleRightOutlined diff --git a/src/IconExpandCircleRightOutlinedFilled.tsx b/src/IconExpandCircleRightOutlinedFilled.tsx index 6825aada1..02296ad9b 100644 --- a/src/IconExpandCircleRightOutlinedFilled.tsx +++ b/src/IconExpandCircleRightOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconExpandCircleRightOutlinedFilled: React.FC = ({ ) -export { IconExpandCircleRightOutlinedFilled as default } +export default IconExpandCircleRightOutlinedFilled diff --git a/src/IconExpandCircleRightRounded.tsx b/src/IconExpandCircleRightRounded.tsx index 434e004b8..273642ada 100644 --- a/src/IconExpandCircleRightRounded.tsx +++ b/src/IconExpandCircleRightRounded.tsx @@ -8,4 +8,4 @@ const IconExpandCircleRightRounded: React.FC = ({ ...props }) => ( ) -export { IconExpandCircleRightRounded as default } +export default IconExpandCircleRightRounded diff --git a/src/IconExpandCircleRightRoundedFilled.tsx b/src/IconExpandCircleRightRoundedFilled.tsx index 90a8b8cac..901aea5ea 100644 --- a/src/IconExpandCircleRightRoundedFilled.tsx +++ b/src/IconExpandCircleRightRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconExpandCircleRightRoundedFilled: React.FC = ({ ) -export { IconExpandCircleRightRoundedFilled as default } +export default IconExpandCircleRightRoundedFilled diff --git a/src/IconExpandCircleRightSharp.tsx b/src/IconExpandCircleRightSharp.tsx index e63a69411..8e49d81ad 100644 --- a/src/IconExpandCircleRightSharp.tsx +++ b/src/IconExpandCircleRightSharp.tsx @@ -8,4 +8,4 @@ const IconExpandCircleRightSharp: React.FC = ({ ...props }) => ( ) -export { IconExpandCircleRightSharp as default } +export default IconExpandCircleRightSharp diff --git a/src/IconExpandCircleRightSharpFilled.tsx b/src/IconExpandCircleRightSharpFilled.tsx index 7792e7135..8eef278ab 100644 --- a/src/IconExpandCircleRightSharpFilled.tsx +++ b/src/IconExpandCircleRightSharpFilled.tsx @@ -10,4 +10,4 @@ const IconExpandCircleRightSharpFilled: React.FC = ({ ) -export { IconExpandCircleRightSharpFilled as default } +export default IconExpandCircleRightSharpFilled diff --git a/src/IconExpandCircleUpOutlined.tsx b/src/IconExpandCircleUpOutlined.tsx index f9bbfba80..fdcb497e1 100644 --- a/src/IconExpandCircleUpOutlined.tsx +++ b/src/IconExpandCircleUpOutlined.tsx @@ -8,4 +8,4 @@ const IconExpandCircleUpOutlined: React.FC = ({ ...props }) => ( ) -export { IconExpandCircleUpOutlined as default } +export default IconExpandCircleUpOutlined diff --git a/src/IconExpandCircleUpOutlinedFilled.tsx b/src/IconExpandCircleUpOutlinedFilled.tsx index 472b6b9e6..a601fa276 100644 --- a/src/IconExpandCircleUpOutlinedFilled.tsx +++ b/src/IconExpandCircleUpOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconExpandCircleUpOutlinedFilled: React.FC = ({ ) -export { IconExpandCircleUpOutlinedFilled as default } +export default IconExpandCircleUpOutlinedFilled diff --git a/src/IconExpandCircleUpRounded.tsx b/src/IconExpandCircleUpRounded.tsx index 4a8c5a61b..8a38a3800 100644 --- a/src/IconExpandCircleUpRounded.tsx +++ b/src/IconExpandCircleUpRounded.tsx @@ -8,4 +8,4 @@ const IconExpandCircleUpRounded: React.FC = ({ ...props }) => ( ) -export { IconExpandCircleUpRounded as default } +export default IconExpandCircleUpRounded diff --git a/src/IconExpandCircleUpRoundedFilled.tsx b/src/IconExpandCircleUpRoundedFilled.tsx index 404c67431..f55d11fea 100644 --- a/src/IconExpandCircleUpRoundedFilled.tsx +++ b/src/IconExpandCircleUpRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconExpandCircleUpRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconExpandCircleUpRoundedFilled as default } +export default IconExpandCircleUpRoundedFilled diff --git a/src/IconExpandCircleUpSharp.tsx b/src/IconExpandCircleUpSharp.tsx index 340fa75b6..b5d7c8527 100644 --- a/src/IconExpandCircleUpSharp.tsx +++ b/src/IconExpandCircleUpSharp.tsx @@ -8,4 +8,4 @@ const IconExpandCircleUpSharp: React.FC = ({ ...props }) => ( ) -export { IconExpandCircleUpSharp as default } +export default IconExpandCircleUpSharp diff --git a/src/IconExpandCircleUpSharpFilled.tsx b/src/IconExpandCircleUpSharpFilled.tsx index dd019be9d..58793c0ad 100644 --- a/src/IconExpandCircleUpSharpFilled.tsx +++ b/src/IconExpandCircleUpSharpFilled.tsx @@ -8,4 +8,4 @@ const IconExpandCircleUpSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconExpandCircleUpSharpFilled as default } +export default IconExpandCircleUpSharpFilled diff --git a/src/IconExpandContentOutlined.tsx b/src/IconExpandContentOutlined.tsx index 048789401..58367987a 100644 --- a/src/IconExpandContentOutlined.tsx +++ b/src/IconExpandContentOutlined.tsx @@ -8,4 +8,4 @@ const IconExpandContentOutlined: React.FC = ({ ...props }) => ( ) -export { IconExpandContentOutlined as default } +export default IconExpandContentOutlined diff --git a/src/IconExpandContentOutlinedFilled.tsx b/src/IconExpandContentOutlinedFilled.tsx index 8cf4a4873..aeb3f8fec 100644 --- a/src/IconExpandContentOutlinedFilled.tsx +++ b/src/IconExpandContentOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconExpandContentOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconExpandContentOutlinedFilled as default } +export default IconExpandContentOutlinedFilled diff --git a/src/IconExpandContentRounded.tsx b/src/IconExpandContentRounded.tsx index c2fc1a5f9..48213d71d 100644 --- a/src/IconExpandContentRounded.tsx +++ b/src/IconExpandContentRounded.tsx @@ -8,4 +8,4 @@ const IconExpandContentRounded: React.FC = ({ ...props }) => ( ) -export { IconExpandContentRounded as default } +export default IconExpandContentRounded diff --git a/src/IconExpandContentRoundedFilled.tsx b/src/IconExpandContentRoundedFilled.tsx index 582e98238..4a31557dc 100644 --- a/src/IconExpandContentRoundedFilled.tsx +++ b/src/IconExpandContentRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconExpandContentRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconExpandContentRoundedFilled as default } +export default IconExpandContentRoundedFilled diff --git a/src/IconExpandContentSharp.tsx b/src/IconExpandContentSharp.tsx index c00f709cf..b570dfe5e 100644 --- a/src/IconExpandContentSharp.tsx +++ b/src/IconExpandContentSharp.tsx @@ -8,4 +8,4 @@ const IconExpandContentSharp: React.FC = ({ ...props }) => ( ) -export { IconExpandContentSharp as default } +export default IconExpandContentSharp diff --git a/src/IconExpandContentSharpFilled.tsx b/src/IconExpandContentSharpFilled.tsx index a6ee33779..2ccaa5ca2 100644 --- a/src/IconExpandContentSharpFilled.tsx +++ b/src/IconExpandContentSharpFilled.tsx @@ -8,4 +8,4 @@ const IconExpandContentSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconExpandContentSharpFilled as default } +export default IconExpandContentSharpFilled diff --git a/src/IconExpandOutlined.tsx b/src/IconExpandOutlined.tsx index 1315af26e..db702efe2 100644 --- a/src/IconExpandOutlined.tsx +++ b/src/IconExpandOutlined.tsx @@ -8,4 +8,4 @@ const IconExpandOutlined: React.FC = ({ ...props }) => ( ) -export { IconExpandOutlined as default } +export default IconExpandOutlined diff --git a/src/IconExpandOutlinedFilled.tsx b/src/IconExpandOutlinedFilled.tsx index 157a5391e..ea41f6021 100644 --- a/src/IconExpandOutlinedFilled.tsx +++ b/src/IconExpandOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconExpandOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconExpandOutlinedFilled as default } +export default IconExpandOutlinedFilled diff --git a/src/IconExpandRounded.tsx b/src/IconExpandRounded.tsx index 6eb66fc10..914390076 100644 --- a/src/IconExpandRounded.tsx +++ b/src/IconExpandRounded.tsx @@ -8,4 +8,4 @@ const IconExpandRounded: React.FC = ({ ...props }) => ( ) -export { IconExpandRounded as default } +export default IconExpandRounded diff --git a/src/IconExpandRoundedFilled.tsx b/src/IconExpandRoundedFilled.tsx index ced9cf475..71878c131 100644 --- a/src/IconExpandRoundedFilled.tsx +++ b/src/IconExpandRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconExpandRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconExpandRoundedFilled as default } +export default IconExpandRoundedFilled diff --git a/src/IconExpandSharp.tsx b/src/IconExpandSharp.tsx index 56266eb93..4c07d0c0c 100644 --- a/src/IconExpandSharp.tsx +++ b/src/IconExpandSharp.tsx @@ -8,4 +8,4 @@ const IconExpandSharp: React.FC = ({ ...props }) => ( ) -export { IconExpandSharp as default } +export default IconExpandSharp diff --git a/src/IconExpandSharpFilled.tsx b/src/IconExpandSharpFilled.tsx index 718036c82..2004b542f 100644 --- a/src/IconExpandSharpFilled.tsx +++ b/src/IconExpandSharpFilled.tsx @@ -8,4 +8,4 @@ const IconExpandSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconExpandSharpFilled as default } +export default IconExpandSharpFilled diff --git a/src/IconExperimentOutlined.tsx b/src/IconExperimentOutlined.tsx index 144abd7fc..265cac36e 100644 --- a/src/IconExperimentOutlined.tsx +++ b/src/IconExperimentOutlined.tsx @@ -8,4 +8,4 @@ const IconExperimentOutlined: React.FC = ({ ...props }) => ( ) -export { IconExperimentOutlined as default } +export default IconExperimentOutlined diff --git a/src/IconExperimentOutlinedFilled.tsx b/src/IconExperimentOutlinedFilled.tsx index 982781700..afcafa19c 100644 --- a/src/IconExperimentOutlinedFilled.tsx +++ b/src/IconExperimentOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconExperimentOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconExperimentOutlinedFilled as default } +export default IconExperimentOutlinedFilled diff --git a/src/IconExperimentRounded.tsx b/src/IconExperimentRounded.tsx index 3cb928ee4..e28fc5548 100644 --- a/src/IconExperimentRounded.tsx +++ b/src/IconExperimentRounded.tsx @@ -8,4 +8,4 @@ const IconExperimentRounded: React.FC = ({ ...props }) => ( ) -export { IconExperimentRounded as default } +export default IconExperimentRounded diff --git a/src/IconExperimentRoundedFilled.tsx b/src/IconExperimentRoundedFilled.tsx index 67cac9602..f269ea514 100644 --- a/src/IconExperimentRoundedFilled.tsx +++ b/src/IconExperimentRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconExperimentRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconExperimentRoundedFilled as default } +export default IconExperimentRoundedFilled diff --git a/src/IconExperimentSharp.tsx b/src/IconExperimentSharp.tsx index f9b76fd11..39d038576 100644 --- a/src/IconExperimentSharp.tsx +++ b/src/IconExperimentSharp.tsx @@ -8,4 +8,4 @@ const IconExperimentSharp: React.FC = ({ ...props }) => ( ) -export { IconExperimentSharp as default } +export default IconExperimentSharp diff --git a/src/IconExperimentSharpFilled.tsx b/src/IconExperimentSharpFilled.tsx index 0c9021d56..893142620 100644 --- a/src/IconExperimentSharpFilled.tsx +++ b/src/IconExperimentSharpFilled.tsx @@ -8,4 +8,4 @@ const IconExperimentSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconExperimentSharpFilled as default } +export default IconExperimentSharpFilled diff --git a/src/IconExplicitOutlined.tsx b/src/IconExplicitOutlined.tsx index 1a7a1f4c2..63f8a9c75 100644 --- a/src/IconExplicitOutlined.tsx +++ b/src/IconExplicitOutlined.tsx @@ -8,4 +8,4 @@ const IconExplicitOutlined: React.FC = ({ ...props }) => ( ) -export { IconExplicitOutlined as default } +export default IconExplicitOutlined diff --git a/src/IconExplicitOutlinedFilled.tsx b/src/IconExplicitOutlinedFilled.tsx index e3335e56d..01b9862c6 100644 --- a/src/IconExplicitOutlinedFilled.tsx +++ b/src/IconExplicitOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconExplicitOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconExplicitOutlinedFilled as default } +export default IconExplicitOutlinedFilled diff --git a/src/IconExplicitRounded.tsx b/src/IconExplicitRounded.tsx index d4297dd5c..c597064c2 100644 --- a/src/IconExplicitRounded.tsx +++ b/src/IconExplicitRounded.tsx @@ -8,4 +8,4 @@ const IconExplicitRounded: React.FC = ({ ...props }) => ( ) -export { IconExplicitRounded as default } +export default IconExplicitRounded diff --git a/src/IconExplicitRoundedFilled.tsx b/src/IconExplicitRoundedFilled.tsx index 538ce9594..0b8fb567f 100644 --- a/src/IconExplicitRoundedFilled.tsx +++ b/src/IconExplicitRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconExplicitRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconExplicitRoundedFilled as default } +export default IconExplicitRoundedFilled diff --git a/src/IconExplicitSharp.tsx b/src/IconExplicitSharp.tsx index d5c4bc7e9..7814abe27 100644 --- a/src/IconExplicitSharp.tsx +++ b/src/IconExplicitSharp.tsx @@ -8,4 +8,4 @@ const IconExplicitSharp: React.FC = ({ ...props }) => ( ) -export { IconExplicitSharp as default } +export default IconExplicitSharp diff --git a/src/IconExplicitSharpFilled.tsx b/src/IconExplicitSharpFilled.tsx index 762a73908..d96722fb8 100644 --- a/src/IconExplicitSharpFilled.tsx +++ b/src/IconExplicitSharpFilled.tsx @@ -8,4 +8,4 @@ const IconExplicitSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconExplicitSharpFilled as default } +export default IconExplicitSharpFilled diff --git a/src/IconExploreNearbyOutlined.tsx b/src/IconExploreNearbyOutlined.tsx index e03811509..7c1c95b03 100644 --- a/src/IconExploreNearbyOutlined.tsx +++ b/src/IconExploreNearbyOutlined.tsx @@ -8,4 +8,4 @@ const IconExploreNearbyOutlined: React.FC = ({ ...props }) => ( ) -export { IconExploreNearbyOutlined as default } +export default IconExploreNearbyOutlined diff --git a/src/IconExploreNearbyOutlinedFilled.tsx b/src/IconExploreNearbyOutlinedFilled.tsx index 336baef4a..70dc196a1 100644 --- a/src/IconExploreNearbyOutlinedFilled.tsx +++ b/src/IconExploreNearbyOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconExploreNearbyOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconExploreNearbyOutlinedFilled as default } +export default IconExploreNearbyOutlinedFilled diff --git a/src/IconExploreNearbyRounded.tsx b/src/IconExploreNearbyRounded.tsx index ea6bcb42a..96bddb974 100644 --- a/src/IconExploreNearbyRounded.tsx +++ b/src/IconExploreNearbyRounded.tsx @@ -8,4 +8,4 @@ const IconExploreNearbyRounded: React.FC = ({ ...props }) => ( ) -export { IconExploreNearbyRounded as default } +export default IconExploreNearbyRounded diff --git a/src/IconExploreNearbyRoundedFilled.tsx b/src/IconExploreNearbyRoundedFilled.tsx index 580704adf..5e30f60b8 100644 --- a/src/IconExploreNearbyRoundedFilled.tsx +++ b/src/IconExploreNearbyRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconExploreNearbyRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconExploreNearbyRoundedFilled as default } +export default IconExploreNearbyRoundedFilled diff --git a/src/IconExploreNearbySharp.tsx b/src/IconExploreNearbySharp.tsx index df6cda7ba..7dec3a80b 100644 --- a/src/IconExploreNearbySharp.tsx +++ b/src/IconExploreNearbySharp.tsx @@ -8,4 +8,4 @@ const IconExploreNearbySharp: React.FC = ({ ...props }) => ( ) -export { IconExploreNearbySharp as default } +export default IconExploreNearbySharp diff --git a/src/IconExploreNearbySharpFilled.tsx b/src/IconExploreNearbySharpFilled.tsx index d763405ea..d53e9f3fd 100644 --- a/src/IconExploreNearbySharpFilled.tsx +++ b/src/IconExploreNearbySharpFilled.tsx @@ -8,4 +8,4 @@ const IconExploreNearbySharpFilled: React.FC = ({ ...props }) => ( ) -export { IconExploreNearbySharpFilled as default } +export default IconExploreNearbySharpFilled diff --git a/src/IconExploreOffOutlined.tsx b/src/IconExploreOffOutlined.tsx index cdebac53c..8c8f71e9c 100644 --- a/src/IconExploreOffOutlined.tsx +++ b/src/IconExploreOffOutlined.tsx @@ -8,4 +8,4 @@ const IconExploreOffOutlined: React.FC = ({ ...props }) => ( ) -export { IconExploreOffOutlined as default } +export default IconExploreOffOutlined diff --git a/src/IconExploreOffOutlinedFilled.tsx b/src/IconExploreOffOutlinedFilled.tsx index f518265b1..db9490869 100644 --- a/src/IconExploreOffOutlinedFilled.tsx +++ b/src/IconExploreOffOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconExploreOffOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconExploreOffOutlinedFilled as default } +export default IconExploreOffOutlinedFilled diff --git a/src/IconExploreOffRounded.tsx b/src/IconExploreOffRounded.tsx index f529dbddc..86a824595 100644 --- a/src/IconExploreOffRounded.tsx +++ b/src/IconExploreOffRounded.tsx @@ -8,4 +8,4 @@ const IconExploreOffRounded: React.FC = ({ ...props }) => ( ) -export { IconExploreOffRounded as default } +export default IconExploreOffRounded diff --git a/src/IconExploreOffRoundedFilled.tsx b/src/IconExploreOffRoundedFilled.tsx index ebdfece12..707fa2cb0 100644 --- a/src/IconExploreOffRoundedFilled.tsx +++ b/src/IconExploreOffRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconExploreOffRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconExploreOffRoundedFilled as default } +export default IconExploreOffRoundedFilled diff --git a/src/IconExploreOffSharp.tsx b/src/IconExploreOffSharp.tsx index 8d015676c..9d815c9d8 100644 --- a/src/IconExploreOffSharp.tsx +++ b/src/IconExploreOffSharp.tsx @@ -8,4 +8,4 @@ const IconExploreOffSharp: React.FC = ({ ...props }) => ( ) -export { IconExploreOffSharp as default } +export default IconExploreOffSharp diff --git a/src/IconExploreOffSharpFilled.tsx b/src/IconExploreOffSharpFilled.tsx index b774db0db..6acbeab3b 100644 --- a/src/IconExploreOffSharpFilled.tsx +++ b/src/IconExploreOffSharpFilled.tsx @@ -8,4 +8,4 @@ const IconExploreOffSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconExploreOffSharpFilled as default } +export default IconExploreOffSharpFilled diff --git a/src/IconExploreOutlined.tsx b/src/IconExploreOutlined.tsx index 37a8db727..69319db35 100644 --- a/src/IconExploreOutlined.tsx +++ b/src/IconExploreOutlined.tsx @@ -8,4 +8,4 @@ const IconExploreOutlined: React.FC = ({ ...props }) => ( ) -export { IconExploreOutlined as default } +export default IconExploreOutlined diff --git a/src/IconExploreOutlinedFilled.tsx b/src/IconExploreOutlinedFilled.tsx index cd365e632..a51109111 100644 --- a/src/IconExploreOutlinedFilled.tsx +++ b/src/IconExploreOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconExploreOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconExploreOutlinedFilled as default } +export default IconExploreOutlinedFilled diff --git a/src/IconExploreRounded.tsx b/src/IconExploreRounded.tsx index be4c3b31e..038ce71f7 100644 --- a/src/IconExploreRounded.tsx +++ b/src/IconExploreRounded.tsx @@ -8,4 +8,4 @@ const IconExploreRounded: React.FC = ({ ...props }) => ( ) -export { IconExploreRounded as default } +export default IconExploreRounded diff --git a/src/IconExploreRoundedFilled.tsx b/src/IconExploreRoundedFilled.tsx index 3cb000a75..47de5c8dc 100644 --- a/src/IconExploreRoundedFilled.tsx +++ b/src/IconExploreRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconExploreRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconExploreRoundedFilled as default } +export default IconExploreRoundedFilled diff --git a/src/IconExploreSharp.tsx b/src/IconExploreSharp.tsx index df5b83a88..46f0f520d 100644 --- a/src/IconExploreSharp.tsx +++ b/src/IconExploreSharp.tsx @@ -8,4 +8,4 @@ const IconExploreSharp: React.FC = ({ ...props }) => ( ) -export { IconExploreSharp as default } +export default IconExploreSharp diff --git a/src/IconExploreSharpFilled.tsx b/src/IconExploreSharpFilled.tsx index c93058191..33c4e48b4 100644 --- a/src/IconExploreSharpFilled.tsx +++ b/src/IconExploreSharpFilled.tsx @@ -8,4 +8,4 @@ const IconExploreSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconExploreSharpFilled as default } +export default IconExploreSharpFilled diff --git a/src/IconExplosionOutlined.tsx b/src/IconExplosionOutlined.tsx index fb9c5f788..59933edd3 100644 --- a/src/IconExplosionOutlined.tsx +++ b/src/IconExplosionOutlined.tsx @@ -8,4 +8,4 @@ const IconExplosionOutlined: React.FC = ({ ...props }) => ( ) -export { IconExplosionOutlined as default } +export default IconExplosionOutlined diff --git a/src/IconExplosionOutlinedFilled.tsx b/src/IconExplosionOutlinedFilled.tsx index ae67cb74e..596215768 100644 --- a/src/IconExplosionOutlinedFilled.tsx +++ b/src/IconExplosionOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconExplosionOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconExplosionOutlinedFilled as default } +export default IconExplosionOutlinedFilled diff --git a/src/IconExplosionRounded.tsx b/src/IconExplosionRounded.tsx index db99025c1..ac462778e 100644 --- a/src/IconExplosionRounded.tsx +++ b/src/IconExplosionRounded.tsx @@ -8,4 +8,4 @@ const IconExplosionRounded: React.FC = ({ ...props }) => ( ) -export { IconExplosionRounded as default } +export default IconExplosionRounded diff --git a/src/IconExplosionRoundedFilled.tsx b/src/IconExplosionRoundedFilled.tsx index 1305638cb..4969643da 100644 --- a/src/IconExplosionRoundedFilled.tsx +++ b/src/IconExplosionRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconExplosionRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconExplosionRoundedFilled as default } +export default IconExplosionRoundedFilled diff --git a/src/IconExplosionSharp.tsx b/src/IconExplosionSharp.tsx index 08438c91c..2b5e0a30e 100644 --- a/src/IconExplosionSharp.tsx +++ b/src/IconExplosionSharp.tsx @@ -8,4 +8,4 @@ const IconExplosionSharp: React.FC = ({ ...props }) => ( ) -export { IconExplosionSharp as default } +export default IconExplosionSharp diff --git a/src/IconExplosionSharpFilled.tsx b/src/IconExplosionSharpFilled.tsx index 36fc67a68..4d2a4819b 100644 --- a/src/IconExplosionSharpFilled.tsx +++ b/src/IconExplosionSharpFilled.tsx @@ -8,4 +8,4 @@ const IconExplosionSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconExplosionSharpFilled as default } +export default IconExplosionSharpFilled diff --git a/src/IconExportNotesOutlined.tsx b/src/IconExportNotesOutlined.tsx index 75b83c803..0e333605f 100644 --- a/src/IconExportNotesOutlined.tsx +++ b/src/IconExportNotesOutlined.tsx @@ -8,4 +8,4 @@ const IconExportNotesOutlined: React.FC = ({ ...props }) => ( ) -export { IconExportNotesOutlined as default } +export default IconExportNotesOutlined diff --git a/src/IconExportNotesOutlinedFilled.tsx b/src/IconExportNotesOutlinedFilled.tsx index 0803c8f21..b5eb7fff9 100644 --- a/src/IconExportNotesOutlinedFilled.tsx +++ b/src/IconExportNotesOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconExportNotesOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconExportNotesOutlinedFilled as default } +export default IconExportNotesOutlinedFilled diff --git a/src/IconExportNotesRounded.tsx b/src/IconExportNotesRounded.tsx index 8dcc2d2c0..7778f6913 100644 --- a/src/IconExportNotesRounded.tsx +++ b/src/IconExportNotesRounded.tsx @@ -8,4 +8,4 @@ const IconExportNotesRounded: React.FC = ({ ...props }) => ( ) -export { IconExportNotesRounded as default } +export default IconExportNotesRounded diff --git a/src/IconExportNotesRoundedFilled.tsx b/src/IconExportNotesRoundedFilled.tsx index f7d735e1a..5e7215fb8 100644 --- a/src/IconExportNotesRoundedFilled.tsx +++ b/src/IconExportNotesRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconExportNotesRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconExportNotesRoundedFilled as default } +export default IconExportNotesRoundedFilled diff --git a/src/IconExportNotesSharp.tsx b/src/IconExportNotesSharp.tsx index a29f59355..1882659ea 100644 --- a/src/IconExportNotesSharp.tsx +++ b/src/IconExportNotesSharp.tsx @@ -8,4 +8,4 @@ const IconExportNotesSharp: React.FC = ({ ...props }) => ( ) -export { IconExportNotesSharp as default } +export default IconExportNotesSharp diff --git a/src/IconExportNotesSharpFilled.tsx b/src/IconExportNotesSharpFilled.tsx index f008b9089..9e6f9f043 100644 --- a/src/IconExportNotesSharpFilled.tsx +++ b/src/IconExportNotesSharpFilled.tsx @@ -8,4 +8,4 @@ const IconExportNotesSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconExportNotesSharpFilled as default } +export default IconExportNotesSharpFilled diff --git a/src/IconExposureNeg1Outlined.tsx b/src/IconExposureNeg1Outlined.tsx index 40f03cef9..e50d4341c 100644 --- a/src/IconExposureNeg1Outlined.tsx +++ b/src/IconExposureNeg1Outlined.tsx @@ -8,4 +8,4 @@ const IconExposureNeg1Outlined: React.FC = ({ ...props }) => ( ) -export { IconExposureNeg1Outlined as default } +export default IconExposureNeg1Outlined diff --git a/src/IconExposureNeg1OutlinedFilled.tsx b/src/IconExposureNeg1OutlinedFilled.tsx index 857f306c0..fe990234a 100644 --- a/src/IconExposureNeg1OutlinedFilled.tsx +++ b/src/IconExposureNeg1OutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconExposureNeg1OutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconExposureNeg1OutlinedFilled as default } +export default IconExposureNeg1OutlinedFilled diff --git a/src/IconExposureNeg1Rounded.tsx b/src/IconExposureNeg1Rounded.tsx index fc97d02e3..4be7d1a35 100644 --- a/src/IconExposureNeg1Rounded.tsx +++ b/src/IconExposureNeg1Rounded.tsx @@ -8,4 +8,4 @@ const IconExposureNeg1Rounded: React.FC = ({ ...props }) => ( ) -export { IconExposureNeg1Rounded as default } +export default IconExposureNeg1Rounded diff --git a/src/IconExposureNeg1RoundedFilled.tsx b/src/IconExposureNeg1RoundedFilled.tsx index 16be6a56e..3ea51bc09 100644 --- a/src/IconExposureNeg1RoundedFilled.tsx +++ b/src/IconExposureNeg1RoundedFilled.tsx @@ -8,4 +8,4 @@ const IconExposureNeg1RoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconExposureNeg1RoundedFilled as default } +export default IconExposureNeg1RoundedFilled diff --git a/src/IconExposureNeg1Sharp.tsx b/src/IconExposureNeg1Sharp.tsx index b0b8b9143..9fba2512e 100644 --- a/src/IconExposureNeg1Sharp.tsx +++ b/src/IconExposureNeg1Sharp.tsx @@ -8,4 +8,4 @@ const IconExposureNeg1Sharp: React.FC = ({ ...props }) => ( ) -export { IconExposureNeg1Sharp as default } +export default IconExposureNeg1Sharp diff --git a/src/IconExposureNeg1SharpFilled.tsx b/src/IconExposureNeg1SharpFilled.tsx index ed47f517e..f8b5dd791 100644 --- a/src/IconExposureNeg1SharpFilled.tsx +++ b/src/IconExposureNeg1SharpFilled.tsx @@ -8,4 +8,4 @@ const IconExposureNeg1SharpFilled: React.FC = ({ ...props }) => ( ) -export { IconExposureNeg1SharpFilled as default } +export default IconExposureNeg1SharpFilled diff --git a/src/IconExposureNeg2Outlined.tsx b/src/IconExposureNeg2Outlined.tsx index bb14740f0..ec3797590 100644 --- a/src/IconExposureNeg2Outlined.tsx +++ b/src/IconExposureNeg2Outlined.tsx @@ -8,4 +8,4 @@ const IconExposureNeg2Outlined: React.FC = ({ ...props }) => ( ) -export { IconExposureNeg2Outlined as default } +export default IconExposureNeg2Outlined diff --git a/src/IconExposureNeg2OutlinedFilled.tsx b/src/IconExposureNeg2OutlinedFilled.tsx index 030dc5a21..398152303 100644 --- a/src/IconExposureNeg2OutlinedFilled.tsx +++ b/src/IconExposureNeg2OutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconExposureNeg2OutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconExposureNeg2OutlinedFilled as default } +export default IconExposureNeg2OutlinedFilled diff --git a/src/IconExposureNeg2Rounded.tsx b/src/IconExposureNeg2Rounded.tsx index 5e27120d5..b33c9fb0f 100644 --- a/src/IconExposureNeg2Rounded.tsx +++ b/src/IconExposureNeg2Rounded.tsx @@ -8,4 +8,4 @@ const IconExposureNeg2Rounded: React.FC = ({ ...props }) => ( ) -export { IconExposureNeg2Rounded as default } +export default IconExposureNeg2Rounded diff --git a/src/IconExposureNeg2RoundedFilled.tsx b/src/IconExposureNeg2RoundedFilled.tsx index e7031184c..39389662a 100644 --- a/src/IconExposureNeg2RoundedFilled.tsx +++ b/src/IconExposureNeg2RoundedFilled.tsx @@ -8,4 +8,4 @@ const IconExposureNeg2RoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconExposureNeg2RoundedFilled as default } +export default IconExposureNeg2RoundedFilled diff --git a/src/IconExposureNeg2Sharp.tsx b/src/IconExposureNeg2Sharp.tsx index 7344b26a8..48ddb5b2f 100644 --- a/src/IconExposureNeg2Sharp.tsx +++ b/src/IconExposureNeg2Sharp.tsx @@ -8,4 +8,4 @@ const IconExposureNeg2Sharp: React.FC = ({ ...props }) => ( ) -export { IconExposureNeg2Sharp as default } +export default IconExposureNeg2Sharp diff --git a/src/IconExposureNeg2SharpFilled.tsx b/src/IconExposureNeg2SharpFilled.tsx index 3a3a171fe..f1f42851b 100644 --- a/src/IconExposureNeg2SharpFilled.tsx +++ b/src/IconExposureNeg2SharpFilled.tsx @@ -8,4 +8,4 @@ const IconExposureNeg2SharpFilled: React.FC = ({ ...props }) => ( ) -export { IconExposureNeg2SharpFilled as default } +export default IconExposureNeg2SharpFilled diff --git a/src/IconExposureOutlined.tsx b/src/IconExposureOutlined.tsx index 414593df2..406197219 100644 --- a/src/IconExposureOutlined.tsx +++ b/src/IconExposureOutlined.tsx @@ -8,4 +8,4 @@ const IconExposureOutlined: React.FC = ({ ...props }) => ( ) -export { IconExposureOutlined as default } +export default IconExposureOutlined diff --git a/src/IconExposureOutlinedFilled.tsx b/src/IconExposureOutlinedFilled.tsx index 116b91fd6..9a337ef31 100644 --- a/src/IconExposureOutlinedFilled.tsx +++ b/src/IconExposureOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconExposureOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconExposureOutlinedFilled as default } +export default IconExposureOutlinedFilled diff --git a/src/IconExposurePlus1Outlined.tsx b/src/IconExposurePlus1Outlined.tsx index 54fed53bd..f0187754e 100644 --- a/src/IconExposurePlus1Outlined.tsx +++ b/src/IconExposurePlus1Outlined.tsx @@ -8,4 +8,4 @@ const IconExposurePlus1Outlined: React.FC = ({ ...props }) => ( ) -export { IconExposurePlus1Outlined as default } +export default IconExposurePlus1Outlined diff --git a/src/IconExposurePlus1OutlinedFilled.tsx b/src/IconExposurePlus1OutlinedFilled.tsx index 58bcb7a9d..d167b5dc0 100644 --- a/src/IconExposurePlus1OutlinedFilled.tsx +++ b/src/IconExposurePlus1OutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconExposurePlus1OutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconExposurePlus1OutlinedFilled as default } +export default IconExposurePlus1OutlinedFilled diff --git a/src/IconExposurePlus1Rounded.tsx b/src/IconExposurePlus1Rounded.tsx index 80b9c8182..4f209d15e 100644 --- a/src/IconExposurePlus1Rounded.tsx +++ b/src/IconExposurePlus1Rounded.tsx @@ -8,4 +8,4 @@ const IconExposurePlus1Rounded: React.FC = ({ ...props }) => ( ) -export { IconExposurePlus1Rounded as default } +export default IconExposurePlus1Rounded diff --git a/src/IconExposurePlus1RoundedFilled.tsx b/src/IconExposurePlus1RoundedFilled.tsx index c070e4117..b2280f44e 100644 --- a/src/IconExposurePlus1RoundedFilled.tsx +++ b/src/IconExposurePlus1RoundedFilled.tsx @@ -8,4 +8,4 @@ const IconExposurePlus1RoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconExposurePlus1RoundedFilled as default } +export default IconExposurePlus1RoundedFilled diff --git a/src/IconExposurePlus1Sharp.tsx b/src/IconExposurePlus1Sharp.tsx index 744c9ac9c..79e9a0c73 100644 --- a/src/IconExposurePlus1Sharp.tsx +++ b/src/IconExposurePlus1Sharp.tsx @@ -8,4 +8,4 @@ const IconExposurePlus1Sharp: React.FC = ({ ...props }) => ( ) -export { IconExposurePlus1Sharp as default } +export default IconExposurePlus1Sharp diff --git a/src/IconExposurePlus1SharpFilled.tsx b/src/IconExposurePlus1SharpFilled.tsx index caccc45ca..83d62a0f5 100644 --- a/src/IconExposurePlus1SharpFilled.tsx +++ b/src/IconExposurePlus1SharpFilled.tsx @@ -8,4 +8,4 @@ const IconExposurePlus1SharpFilled: React.FC = ({ ...props }) => ( ) -export { IconExposurePlus1SharpFilled as default } +export default IconExposurePlus1SharpFilled diff --git a/src/IconExposurePlus2Outlined.tsx b/src/IconExposurePlus2Outlined.tsx index 0f4e870ae..f9fc8a907 100644 --- a/src/IconExposurePlus2Outlined.tsx +++ b/src/IconExposurePlus2Outlined.tsx @@ -8,4 +8,4 @@ const IconExposurePlus2Outlined: React.FC = ({ ...props }) => ( ) -export { IconExposurePlus2Outlined as default } +export default IconExposurePlus2Outlined diff --git a/src/IconExposurePlus2OutlinedFilled.tsx b/src/IconExposurePlus2OutlinedFilled.tsx index 1643653db..f6745b36b 100644 --- a/src/IconExposurePlus2OutlinedFilled.tsx +++ b/src/IconExposurePlus2OutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconExposurePlus2OutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconExposurePlus2OutlinedFilled as default } +export default IconExposurePlus2OutlinedFilled diff --git a/src/IconExposurePlus2Rounded.tsx b/src/IconExposurePlus2Rounded.tsx index 4728e5783..00590b7b5 100644 --- a/src/IconExposurePlus2Rounded.tsx +++ b/src/IconExposurePlus2Rounded.tsx @@ -8,4 +8,4 @@ const IconExposurePlus2Rounded: React.FC = ({ ...props }) => ( ) -export { IconExposurePlus2Rounded as default } +export default IconExposurePlus2Rounded diff --git a/src/IconExposurePlus2RoundedFilled.tsx b/src/IconExposurePlus2RoundedFilled.tsx index b04a55ed6..28ee0730a 100644 --- a/src/IconExposurePlus2RoundedFilled.tsx +++ b/src/IconExposurePlus2RoundedFilled.tsx @@ -8,4 +8,4 @@ const IconExposurePlus2RoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconExposurePlus2RoundedFilled as default } +export default IconExposurePlus2RoundedFilled diff --git a/src/IconExposurePlus2Sharp.tsx b/src/IconExposurePlus2Sharp.tsx index f3b1c2c79..bcd64241d 100644 --- a/src/IconExposurePlus2Sharp.tsx +++ b/src/IconExposurePlus2Sharp.tsx @@ -8,4 +8,4 @@ const IconExposurePlus2Sharp: React.FC = ({ ...props }) => ( ) -export { IconExposurePlus2Sharp as default } +export default IconExposurePlus2Sharp diff --git a/src/IconExposurePlus2SharpFilled.tsx b/src/IconExposurePlus2SharpFilled.tsx index d607fa6b1..d83c1d769 100644 --- a/src/IconExposurePlus2SharpFilled.tsx +++ b/src/IconExposurePlus2SharpFilled.tsx @@ -8,4 +8,4 @@ const IconExposurePlus2SharpFilled: React.FC = ({ ...props }) => ( ) -export { IconExposurePlus2SharpFilled as default } +export default IconExposurePlus2SharpFilled diff --git a/src/IconExposureRounded.tsx b/src/IconExposureRounded.tsx index f9e7868cf..f898e3492 100644 --- a/src/IconExposureRounded.tsx +++ b/src/IconExposureRounded.tsx @@ -8,4 +8,4 @@ const IconExposureRounded: React.FC = ({ ...props }) => ( ) -export { IconExposureRounded as default } +export default IconExposureRounded diff --git a/src/IconExposureRoundedFilled.tsx b/src/IconExposureRoundedFilled.tsx index b6ac6b3b6..38c98c022 100644 --- a/src/IconExposureRoundedFilled.tsx +++ b/src/IconExposureRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconExposureRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconExposureRoundedFilled as default } +export default IconExposureRoundedFilled diff --git a/src/IconExposureSharp.tsx b/src/IconExposureSharp.tsx index 64f339c32..30c581510 100644 --- a/src/IconExposureSharp.tsx +++ b/src/IconExposureSharp.tsx @@ -8,4 +8,4 @@ const IconExposureSharp: React.FC = ({ ...props }) => ( ) -export { IconExposureSharp as default } +export default IconExposureSharp diff --git a/src/IconExposureSharpFilled.tsx b/src/IconExposureSharpFilled.tsx index 3763c8968..3c58362b7 100644 --- a/src/IconExposureSharpFilled.tsx +++ b/src/IconExposureSharpFilled.tsx @@ -8,4 +8,4 @@ const IconExposureSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconExposureSharpFilled as default } +export default IconExposureSharpFilled diff --git a/src/IconExposureZeroOutlined.tsx b/src/IconExposureZeroOutlined.tsx index dc34b7796..9fde9a806 100644 --- a/src/IconExposureZeroOutlined.tsx +++ b/src/IconExposureZeroOutlined.tsx @@ -8,4 +8,4 @@ const IconExposureZeroOutlined: React.FC = ({ ...props }) => ( ) -export { IconExposureZeroOutlined as default } +export default IconExposureZeroOutlined diff --git a/src/IconExposureZeroOutlinedFilled.tsx b/src/IconExposureZeroOutlinedFilled.tsx index 7dc4ddd2a..31c6d7a4c 100644 --- a/src/IconExposureZeroOutlinedFilled.tsx +++ b/src/IconExposureZeroOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconExposureZeroOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconExposureZeroOutlinedFilled as default } +export default IconExposureZeroOutlinedFilled diff --git a/src/IconExposureZeroRounded.tsx b/src/IconExposureZeroRounded.tsx index f414964e1..f9241dc43 100644 --- a/src/IconExposureZeroRounded.tsx +++ b/src/IconExposureZeroRounded.tsx @@ -8,4 +8,4 @@ const IconExposureZeroRounded: React.FC = ({ ...props }) => ( ) -export { IconExposureZeroRounded as default } +export default IconExposureZeroRounded diff --git a/src/IconExposureZeroRoundedFilled.tsx b/src/IconExposureZeroRoundedFilled.tsx index d7c3cc76e..c8efd6dd1 100644 --- a/src/IconExposureZeroRoundedFilled.tsx +++ b/src/IconExposureZeroRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconExposureZeroRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconExposureZeroRoundedFilled as default } +export default IconExposureZeroRoundedFilled diff --git a/src/IconExposureZeroSharp.tsx b/src/IconExposureZeroSharp.tsx index d9b4d75e4..cd8026efa 100644 --- a/src/IconExposureZeroSharp.tsx +++ b/src/IconExposureZeroSharp.tsx @@ -8,4 +8,4 @@ const IconExposureZeroSharp: React.FC = ({ ...props }) => ( ) -export { IconExposureZeroSharp as default } +export default IconExposureZeroSharp diff --git a/src/IconExposureZeroSharpFilled.tsx b/src/IconExposureZeroSharpFilled.tsx index b0489c64e..896e9131b 100644 --- a/src/IconExposureZeroSharpFilled.tsx +++ b/src/IconExposureZeroSharpFilled.tsx @@ -8,4 +8,4 @@ const IconExposureZeroSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconExposureZeroSharpFilled as default } +export default IconExposureZeroSharpFilled diff --git a/src/IconExtensionOffOutlined.tsx b/src/IconExtensionOffOutlined.tsx index 000ffd078..12ef8d4fd 100644 --- a/src/IconExtensionOffOutlined.tsx +++ b/src/IconExtensionOffOutlined.tsx @@ -8,4 +8,4 @@ const IconExtensionOffOutlined: React.FC = ({ ...props }) => ( ) -export { IconExtensionOffOutlined as default } +export default IconExtensionOffOutlined diff --git a/src/IconExtensionOffOutlinedFilled.tsx b/src/IconExtensionOffOutlinedFilled.tsx index 1d4fc7acd..9d47ac9c8 100644 --- a/src/IconExtensionOffOutlinedFilled.tsx +++ b/src/IconExtensionOffOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconExtensionOffOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconExtensionOffOutlinedFilled as default } +export default IconExtensionOffOutlinedFilled diff --git a/src/IconExtensionOffRounded.tsx b/src/IconExtensionOffRounded.tsx index 14a49fdea..d0dc7bd05 100644 --- a/src/IconExtensionOffRounded.tsx +++ b/src/IconExtensionOffRounded.tsx @@ -8,4 +8,4 @@ const IconExtensionOffRounded: React.FC = ({ ...props }) => ( ) -export { IconExtensionOffRounded as default } +export default IconExtensionOffRounded diff --git a/src/IconExtensionOffRoundedFilled.tsx b/src/IconExtensionOffRoundedFilled.tsx index ebdb79247..7f2ffe628 100644 --- a/src/IconExtensionOffRoundedFilled.tsx +++ b/src/IconExtensionOffRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconExtensionOffRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconExtensionOffRoundedFilled as default } +export default IconExtensionOffRoundedFilled diff --git a/src/IconExtensionOffSharp.tsx b/src/IconExtensionOffSharp.tsx index 6a0b6e42c..6f276423d 100644 --- a/src/IconExtensionOffSharp.tsx +++ b/src/IconExtensionOffSharp.tsx @@ -8,4 +8,4 @@ const IconExtensionOffSharp: React.FC = ({ ...props }) => ( ) -export { IconExtensionOffSharp as default } +export default IconExtensionOffSharp diff --git a/src/IconExtensionOffSharpFilled.tsx b/src/IconExtensionOffSharpFilled.tsx index 435efa0a7..707d19f53 100644 --- a/src/IconExtensionOffSharpFilled.tsx +++ b/src/IconExtensionOffSharpFilled.tsx @@ -8,4 +8,4 @@ const IconExtensionOffSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconExtensionOffSharpFilled as default } +export default IconExtensionOffSharpFilled diff --git a/src/IconExtensionOutlined.tsx b/src/IconExtensionOutlined.tsx index b920c75c2..b618fd46a 100644 --- a/src/IconExtensionOutlined.tsx +++ b/src/IconExtensionOutlined.tsx @@ -8,4 +8,4 @@ const IconExtensionOutlined: React.FC = ({ ...props }) => ( ) -export { IconExtensionOutlined as default } +export default IconExtensionOutlined diff --git a/src/IconExtensionOutlinedFilled.tsx b/src/IconExtensionOutlinedFilled.tsx index b7a22b22d..0fbf419d7 100644 --- a/src/IconExtensionOutlinedFilled.tsx +++ b/src/IconExtensionOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconExtensionOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconExtensionOutlinedFilled as default } +export default IconExtensionOutlinedFilled diff --git a/src/IconExtensionRounded.tsx b/src/IconExtensionRounded.tsx index c61685513..0bc618478 100644 --- a/src/IconExtensionRounded.tsx +++ b/src/IconExtensionRounded.tsx @@ -8,4 +8,4 @@ const IconExtensionRounded: React.FC = ({ ...props }) => ( ) -export { IconExtensionRounded as default } +export default IconExtensionRounded diff --git a/src/IconExtensionRoundedFilled.tsx b/src/IconExtensionRoundedFilled.tsx index cfdd5b355..d87f1700e 100644 --- a/src/IconExtensionRoundedFilled.tsx +++ b/src/IconExtensionRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconExtensionRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconExtensionRoundedFilled as default } +export default IconExtensionRoundedFilled diff --git a/src/IconExtensionSharp.tsx b/src/IconExtensionSharp.tsx index f0e0a01e2..9b192fbf5 100644 --- a/src/IconExtensionSharp.tsx +++ b/src/IconExtensionSharp.tsx @@ -8,4 +8,4 @@ const IconExtensionSharp: React.FC = ({ ...props }) => ( ) -export { IconExtensionSharp as default } +export default IconExtensionSharp diff --git a/src/IconExtensionSharpFilled.tsx b/src/IconExtensionSharpFilled.tsx index c0ef40c3e..9b77506fd 100644 --- a/src/IconExtensionSharpFilled.tsx +++ b/src/IconExtensionSharpFilled.tsx @@ -8,4 +8,4 @@ const IconExtensionSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconExtensionSharpFilled as default } +export default IconExtensionSharpFilled diff --git a/src/IconEyeTrackingOutlined.tsx b/src/IconEyeTrackingOutlined.tsx index 2c6220b64..f39245730 100644 --- a/src/IconEyeTrackingOutlined.tsx +++ b/src/IconEyeTrackingOutlined.tsx @@ -8,4 +8,4 @@ const IconEyeTrackingOutlined: React.FC = ({ ...props }) => ( ) -export { IconEyeTrackingOutlined as default } +export default IconEyeTrackingOutlined diff --git a/src/IconEyeTrackingOutlinedFilled.tsx b/src/IconEyeTrackingOutlinedFilled.tsx index 486c19bb6..3d5663e4a 100644 --- a/src/IconEyeTrackingOutlinedFilled.tsx +++ b/src/IconEyeTrackingOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconEyeTrackingOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconEyeTrackingOutlinedFilled as default } +export default IconEyeTrackingOutlinedFilled diff --git a/src/IconEyeTrackingRounded.tsx b/src/IconEyeTrackingRounded.tsx index bf1961f44..8920f6f31 100644 --- a/src/IconEyeTrackingRounded.tsx +++ b/src/IconEyeTrackingRounded.tsx @@ -8,4 +8,4 @@ const IconEyeTrackingRounded: React.FC = ({ ...props }) => ( ) -export { IconEyeTrackingRounded as default } +export default IconEyeTrackingRounded diff --git a/src/IconEyeTrackingRoundedFilled.tsx b/src/IconEyeTrackingRoundedFilled.tsx index be4cd580c..f58bdfdf8 100644 --- a/src/IconEyeTrackingRoundedFilled.tsx +++ b/src/IconEyeTrackingRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconEyeTrackingRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconEyeTrackingRoundedFilled as default } +export default IconEyeTrackingRoundedFilled diff --git a/src/IconEyeTrackingSharp.tsx b/src/IconEyeTrackingSharp.tsx index 2a3430473..165100d88 100644 --- a/src/IconEyeTrackingSharp.tsx +++ b/src/IconEyeTrackingSharp.tsx @@ -8,4 +8,4 @@ const IconEyeTrackingSharp: React.FC = ({ ...props }) => ( ) -export { IconEyeTrackingSharp as default } +export default IconEyeTrackingSharp diff --git a/src/IconEyeTrackingSharpFilled.tsx b/src/IconEyeTrackingSharpFilled.tsx index 766eeeb00..dc782c698 100644 --- a/src/IconEyeTrackingSharpFilled.tsx +++ b/src/IconEyeTrackingSharpFilled.tsx @@ -8,4 +8,4 @@ const IconEyeTrackingSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconEyeTrackingSharpFilled as default } +export default IconEyeTrackingSharpFilled diff --git a/src/IconEyeglassesOutlined.tsx b/src/IconEyeglassesOutlined.tsx index 3e7730a25..9aa53f3be 100644 --- a/src/IconEyeglassesOutlined.tsx +++ b/src/IconEyeglassesOutlined.tsx @@ -8,4 +8,4 @@ const IconEyeglassesOutlined: React.FC = ({ ...props }) => ( ) -export { IconEyeglassesOutlined as default } +export default IconEyeglassesOutlined diff --git a/src/IconEyeglassesOutlinedFilled.tsx b/src/IconEyeglassesOutlinedFilled.tsx index 5dfaa4a1b..db21c00b5 100644 --- a/src/IconEyeglassesOutlinedFilled.tsx +++ b/src/IconEyeglassesOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconEyeglassesOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconEyeglassesOutlinedFilled as default } +export default IconEyeglassesOutlinedFilled diff --git a/src/IconEyeglassesRounded.tsx b/src/IconEyeglassesRounded.tsx index f7062e3a4..369d430d7 100644 --- a/src/IconEyeglassesRounded.tsx +++ b/src/IconEyeglassesRounded.tsx @@ -8,4 +8,4 @@ const IconEyeglassesRounded: React.FC = ({ ...props }) => ( ) -export { IconEyeglassesRounded as default } +export default IconEyeglassesRounded diff --git a/src/IconEyeglassesRoundedFilled.tsx b/src/IconEyeglassesRoundedFilled.tsx index 67f33e1e4..d8a6be2b1 100644 --- a/src/IconEyeglassesRoundedFilled.tsx +++ b/src/IconEyeglassesRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconEyeglassesRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconEyeglassesRoundedFilled as default } +export default IconEyeglassesRoundedFilled diff --git a/src/IconEyeglassesSharp.tsx b/src/IconEyeglassesSharp.tsx index 937d5f453..e5ee37bd1 100644 --- a/src/IconEyeglassesSharp.tsx +++ b/src/IconEyeglassesSharp.tsx @@ -8,4 +8,4 @@ const IconEyeglassesSharp: React.FC = ({ ...props }) => ( ) -export { IconEyeglassesSharp as default } +export default IconEyeglassesSharp diff --git a/src/IconEyeglassesSharpFilled.tsx b/src/IconEyeglassesSharpFilled.tsx index 7f5851a1c..2d8e8b9ca 100644 --- a/src/IconEyeglassesSharpFilled.tsx +++ b/src/IconEyeglassesSharpFilled.tsx @@ -8,4 +8,4 @@ const IconEyeglassesSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconEyeglassesSharpFilled as default } +export default IconEyeglassesSharpFilled diff --git a/src/IconFace2Outlined.tsx b/src/IconFace2Outlined.tsx index 18cb6e37a..e557de009 100644 --- a/src/IconFace2Outlined.tsx +++ b/src/IconFace2Outlined.tsx @@ -8,4 +8,4 @@ const IconFace2Outlined: React.FC = ({ ...props }) => ( ) -export { IconFace2Outlined as default } +export default IconFace2Outlined diff --git a/src/IconFace2OutlinedFilled.tsx b/src/IconFace2OutlinedFilled.tsx index b7a7bed1e..17b1049ef 100644 --- a/src/IconFace2OutlinedFilled.tsx +++ b/src/IconFace2OutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconFace2OutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconFace2OutlinedFilled as default } +export default IconFace2OutlinedFilled diff --git a/src/IconFace2Rounded.tsx b/src/IconFace2Rounded.tsx index c03631aff..ad1c842fd 100644 --- a/src/IconFace2Rounded.tsx +++ b/src/IconFace2Rounded.tsx @@ -8,4 +8,4 @@ const IconFace2Rounded: React.FC = ({ ...props }) => ( ) -export { IconFace2Rounded as default } +export default IconFace2Rounded diff --git a/src/IconFace2RoundedFilled.tsx b/src/IconFace2RoundedFilled.tsx index 79f5e20e8..46f3a7dca 100644 --- a/src/IconFace2RoundedFilled.tsx +++ b/src/IconFace2RoundedFilled.tsx @@ -8,4 +8,4 @@ const IconFace2RoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconFace2RoundedFilled as default } +export default IconFace2RoundedFilled diff --git a/src/IconFace2Sharp.tsx b/src/IconFace2Sharp.tsx index 0632032ca..02befdff5 100644 --- a/src/IconFace2Sharp.tsx +++ b/src/IconFace2Sharp.tsx @@ -8,4 +8,4 @@ const IconFace2Sharp: React.FC = ({ ...props }) => ( ) -export { IconFace2Sharp as default } +export default IconFace2Sharp diff --git a/src/IconFace2SharpFilled.tsx b/src/IconFace2SharpFilled.tsx index f5b9b7362..6c549fcb8 100644 --- a/src/IconFace2SharpFilled.tsx +++ b/src/IconFace2SharpFilled.tsx @@ -8,4 +8,4 @@ const IconFace2SharpFilled: React.FC = ({ ...props }) => ( ) -export { IconFace2SharpFilled as default } +export default IconFace2SharpFilled diff --git a/src/IconFace3Outlined.tsx b/src/IconFace3Outlined.tsx index 6120867d0..e8ba2acac 100644 --- a/src/IconFace3Outlined.tsx +++ b/src/IconFace3Outlined.tsx @@ -8,4 +8,4 @@ const IconFace3Outlined: React.FC = ({ ...props }) => ( ) -export { IconFace3Outlined as default } +export default IconFace3Outlined diff --git a/src/IconFace3OutlinedFilled.tsx b/src/IconFace3OutlinedFilled.tsx index 925373279..b2215fd12 100644 --- a/src/IconFace3OutlinedFilled.tsx +++ b/src/IconFace3OutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconFace3OutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconFace3OutlinedFilled as default } +export default IconFace3OutlinedFilled diff --git a/src/IconFace3Rounded.tsx b/src/IconFace3Rounded.tsx index 59edcb2e9..7d4ce92a8 100644 --- a/src/IconFace3Rounded.tsx +++ b/src/IconFace3Rounded.tsx @@ -8,4 +8,4 @@ const IconFace3Rounded: React.FC = ({ ...props }) => ( ) -export { IconFace3Rounded as default } +export default IconFace3Rounded diff --git a/src/IconFace3RoundedFilled.tsx b/src/IconFace3RoundedFilled.tsx index a5880d431..35a92c235 100644 --- a/src/IconFace3RoundedFilled.tsx +++ b/src/IconFace3RoundedFilled.tsx @@ -8,4 +8,4 @@ const IconFace3RoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconFace3RoundedFilled as default } +export default IconFace3RoundedFilled diff --git a/src/IconFace3Sharp.tsx b/src/IconFace3Sharp.tsx index d0028da75..8fb2495ef 100644 --- a/src/IconFace3Sharp.tsx +++ b/src/IconFace3Sharp.tsx @@ -8,4 +8,4 @@ const IconFace3Sharp: React.FC = ({ ...props }) => ( ) -export { IconFace3Sharp as default } +export default IconFace3Sharp diff --git a/src/IconFace3SharpFilled.tsx b/src/IconFace3SharpFilled.tsx index e63cf028f..2dbea502d 100644 --- a/src/IconFace3SharpFilled.tsx +++ b/src/IconFace3SharpFilled.tsx @@ -8,4 +8,4 @@ const IconFace3SharpFilled: React.FC = ({ ...props }) => ( ) -export { IconFace3SharpFilled as default } +export default IconFace3SharpFilled diff --git a/src/IconFace4Outlined.tsx b/src/IconFace4Outlined.tsx index 41a20b270..1f9a0e2fa 100644 --- a/src/IconFace4Outlined.tsx +++ b/src/IconFace4Outlined.tsx @@ -8,4 +8,4 @@ const IconFace4Outlined: React.FC = ({ ...props }) => ( ) -export { IconFace4Outlined as default } +export default IconFace4Outlined diff --git a/src/IconFace4OutlinedFilled.tsx b/src/IconFace4OutlinedFilled.tsx index 2d822f2e9..d7c0e9289 100644 --- a/src/IconFace4OutlinedFilled.tsx +++ b/src/IconFace4OutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconFace4OutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconFace4OutlinedFilled as default } +export default IconFace4OutlinedFilled diff --git a/src/IconFace4Rounded.tsx b/src/IconFace4Rounded.tsx index 952e9346d..4da81bfb6 100644 --- a/src/IconFace4Rounded.tsx +++ b/src/IconFace4Rounded.tsx @@ -8,4 +8,4 @@ const IconFace4Rounded: React.FC = ({ ...props }) => ( ) -export { IconFace4Rounded as default } +export default IconFace4Rounded diff --git a/src/IconFace4RoundedFilled.tsx b/src/IconFace4RoundedFilled.tsx index e72d11ef0..9524ef0fb 100644 --- a/src/IconFace4RoundedFilled.tsx +++ b/src/IconFace4RoundedFilled.tsx @@ -8,4 +8,4 @@ const IconFace4RoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconFace4RoundedFilled as default } +export default IconFace4RoundedFilled diff --git a/src/IconFace4Sharp.tsx b/src/IconFace4Sharp.tsx index a89eed61a..a20a4eee8 100644 --- a/src/IconFace4Sharp.tsx +++ b/src/IconFace4Sharp.tsx @@ -8,4 +8,4 @@ const IconFace4Sharp: React.FC = ({ ...props }) => ( ) -export { IconFace4Sharp as default } +export default IconFace4Sharp diff --git a/src/IconFace4SharpFilled.tsx b/src/IconFace4SharpFilled.tsx index b6cc34da4..2015adc7d 100644 --- a/src/IconFace4SharpFilled.tsx +++ b/src/IconFace4SharpFilled.tsx @@ -8,4 +8,4 @@ const IconFace4SharpFilled: React.FC = ({ ...props }) => ( ) -export { IconFace4SharpFilled as default } +export default IconFace4SharpFilled diff --git a/src/IconFace5Outlined.tsx b/src/IconFace5Outlined.tsx index 5625b3f5a..1bda914f9 100644 --- a/src/IconFace5Outlined.tsx +++ b/src/IconFace5Outlined.tsx @@ -8,4 +8,4 @@ const IconFace5Outlined: React.FC = ({ ...props }) => ( ) -export { IconFace5Outlined as default } +export default IconFace5Outlined diff --git a/src/IconFace5OutlinedFilled.tsx b/src/IconFace5OutlinedFilled.tsx index 3db0406f0..09e0363ef 100644 --- a/src/IconFace5OutlinedFilled.tsx +++ b/src/IconFace5OutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconFace5OutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconFace5OutlinedFilled as default } +export default IconFace5OutlinedFilled diff --git a/src/IconFace5Rounded.tsx b/src/IconFace5Rounded.tsx index 239166f64..861b66c63 100644 --- a/src/IconFace5Rounded.tsx +++ b/src/IconFace5Rounded.tsx @@ -8,4 +8,4 @@ const IconFace5Rounded: React.FC = ({ ...props }) => ( ) -export { IconFace5Rounded as default } +export default IconFace5Rounded diff --git a/src/IconFace5RoundedFilled.tsx b/src/IconFace5RoundedFilled.tsx index 97cb41e21..5ce17b6fb 100644 --- a/src/IconFace5RoundedFilled.tsx +++ b/src/IconFace5RoundedFilled.tsx @@ -8,4 +8,4 @@ const IconFace5RoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconFace5RoundedFilled as default } +export default IconFace5RoundedFilled diff --git a/src/IconFace5Sharp.tsx b/src/IconFace5Sharp.tsx index 30b117eda..7c29d90ab 100644 --- a/src/IconFace5Sharp.tsx +++ b/src/IconFace5Sharp.tsx @@ -8,4 +8,4 @@ const IconFace5Sharp: React.FC = ({ ...props }) => ( ) -export { IconFace5Sharp as default } +export default IconFace5Sharp diff --git a/src/IconFace5SharpFilled.tsx b/src/IconFace5SharpFilled.tsx index a1e547248..841a2c3de 100644 --- a/src/IconFace5SharpFilled.tsx +++ b/src/IconFace5SharpFilled.tsx @@ -8,4 +8,4 @@ const IconFace5SharpFilled: React.FC = ({ ...props }) => ( ) -export { IconFace5SharpFilled as default } +export default IconFace5SharpFilled diff --git a/src/IconFace6Outlined.tsx b/src/IconFace6Outlined.tsx index 5a94601ba..05b6c1979 100644 --- a/src/IconFace6Outlined.tsx +++ b/src/IconFace6Outlined.tsx @@ -8,4 +8,4 @@ const IconFace6Outlined: React.FC = ({ ...props }) => ( ) -export { IconFace6Outlined as default } +export default IconFace6Outlined diff --git a/src/IconFace6OutlinedFilled.tsx b/src/IconFace6OutlinedFilled.tsx index d808184db..02c9a5281 100644 --- a/src/IconFace6OutlinedFilled.tsx +++ b/src/IconFace6OutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconFace6OutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconFace6OutlinedFilled as default } +export default IconFace6OutlinedFilled diff --git a/src/IconFace6Rounded.tsx b/src/IconFace6Rounded.tsx index be08b22bd..e109bcdcd 100644 --- a/src/IconFace6Rounded.tsx +++ b/src/IconFace6Rounded.tsx @@ -8,4 +8,4 @@ const IconFace6Rounded: React.FC = ({ ...props }) => ( ) -export { IconFace6Rounded as default } +export default IconFace6Rounded diff --git a/src/IconFace6RoundedFilled.tsx b/src/IconFace6RoundedFilled.tsx index 64a7af7cc..52e8940ee 100644 --- a/src/IconFace6RoundedFilled.tsx +++ b/src/IconFace6RoundedFilled.tsx @@ -8,4 +8,4 @@ const IconFace6RoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconFace6RoundedFilled as default } +export default IconFace6RoundedFilled diff --git a/src/IconFace6Sharp.tsx b/src/IconFace6Sharp.tsx index 54a88b4c2..6d6e4aef1 100644 --- a/src/IconFace6Sharp.tsx +++ b/src/IconFace6Sharp.tsx @@ -8,4 +8,4 @@ const IconFace6Sharp: React.FC = ({ ...props }) => ( ) -export { IconFace6Sharp as default } +export default IconFace6Sharp diff --git a/src/IconFace6SharpFilled.tsx b/src/IconFace6SharpFilled.tsx index 2075040b2..3736ee236 100644 --- a/src/IconFace6SharpFilled.tsx +++ b/src/IconFace6SharpFilled.tsx @@ -8,4 +8,4 @@ const IconFace6SharpFilled: React.FC = ({ ...props }) => ( ) -export { IconFace6SharpFilled as default } +export default IconFace6SharpFilled diff --git a/src/IconFaceDownOutlined.tsx b/src/IconFaceDownOutlined.tsx index c94816184..3e37d5daa 100644 --- a/src/IconFaceDownOutlined.tsx +++ b/src/IconFaceDownOutlined.tsx @@ -8,4 +8,4 @@ const IconFaceDownOutlined: React.FC = ({ ...props }) => ( ) -export { IconFaceDownOutlined as default } +export default IconFaceDownOutlined diff --git a/src/IconFaceDownOutlinedFilled.tsx b/src/IconFaceDownOutlinedFilled.tsx index 8fb87031b..3fcc69ed0 100644 --- a/src/IconFaceDownOutlinedFilled.tsx +++ b/src/IconFaceDownOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconFaceDownOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconFaceDownOutlinedFilled as default } +export default IconFaceDownOutlinedFilled diff --git a/src/IconFaceDownRounded.tsx b/src/IconFaceDownRounded.tsx index b29c97afb..6646899f5 100644 --- a/src/IconFaceDownRounded.tsx +++ b/src/IconFaceDownRounded.tsx @@ -8,4 +8,4 @@ const IconFaceDownRounded: React.FC = ({ ...props }) => ( ) -export { IconFaceDownRounded as default } +export default IconFaceDownRounded diff --git a/src/IconFaceDownRoundedFilled.tsx b/src/IconFaceDownRoundedFilled.tsx index 0be5faf05..c019addb8 100644 --- a/src/IconFaceDownRoundedFilled.tsx +++ b/src/IconFaceDownRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconFaceDownRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconFaceDownRoundedFilled as default } +export default IconFaceDownRoundedFilled diff --git a/src/IconFaceDownSharp.tsx b/src/IconFaceDownSharp.tsx index ca47470c6..7b2044b2a 100644 --- a/src/IconFaceDownSharp.tsx +++ b/src/IconFaceDownSharp.tsx @@ -8,4 +8,4 @@ const IconFaceDownSharp: React.FC = ({ ...props }) => ( ) -export { IconFaceDownSharp as default } +export default IconFaceDownSharp diff --git a/src/IconFaceDownSharpFilled.tsx b/src/IconFaceDownSharpFilled.tsx index efecbac04..d55d7cac8 100644 --- a/src/IconFaceDownSharpFilled.tsx +++ b/src/IconFaceDownSharpFilled.tsx @@ -8,4 +8,4 @@ const IconFaceDownSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconFaceDownSharpFilled as default } +export default IconFaceDownSharpFilled diff --git a/src/IconFaceLeftOutlined.tsx b/src/IconFaceLeftOutlined.tsx index 16ce66423..5376dac94 100644 --- a/src/IconFaceLeftOutlined.tsx +++ b/src/IconFaceLeftOutlined.tsx @@ -8,4 +8,4 @@ const IconFaceLeftOutlined: React.FC = ({ ...props }) => ( ) -export { IconFaceLeftOutlined as default } +export default IconFaceLeftOutlined diff --git a/src/IconFaceLeftOutlinedFilled.tsx b/src/IconFaceLeftOutlinedFilled.tsx index a980f000e..a16965836 100644 --- a/src/IconFaceLeftOutlinedFilled.tsx +++ b/src/IconFaceLeftOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconFaceLeftOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconFaceLeftOutlinedFilled as default } +export default IconFaceLeftOutlinedFilled diff --git a/src/IconFaceLeftRounded.tsx b/src/IconFaceLeftRounded.tsx index 5f7fcf41b..430f1d1de 100644 --- a/src/IconFaceLeftRounded.tsx +++ b/src/IconFaceLeftRounded.tsx @@ -8,4 +8,4 @@ const IconFaceLeftRounded: React.FC = ({ ...props }) => ( ) -export { IconFaceLeftRounded as default } +export default IconFaceLeftRounded diff --git a/src/IconFaceLeftRoundedFilled.tsx b/src/IconFaceLeftRoundedFilled.tsx index 5eb6728d9..a6b197444 100644 --- a/src/IconFaceLeftRoundedFilled.tsx +++ b/src/IconFaceLeftRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconFaceLeftRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconFaceLeftRoundedFilled as default } +export default IconFaceLeftRoundedFilled diff --git a/src/IconFaceLeftSharp.tsx b/src/IconFaceLeftSharp.tsx index badbea257..9cb5381af 100644 --- a/src/IconFaceLeftSharp.tsx +++ b/src/IconFaceLeftSharp.tsx @@ -8,4 +8,4 @@ const IconFaceLeftSharp: React.FC = ({ ...props }) => ( ) -export { IconFaceLeftSharp as default } +export default IconFaceLeftSharp diff --git a/src/IconFaceLeftSharpFilled.tsx b/src/IconFaceLeftSharpFilled.tsx index 5add3845d..2beb94c26 100644 --- a/src/IconFaceLeftSharpFilled.tsx +++ b/src/IconFaceLeftSharpFilled.tsx @@ -8,4 +8,4 @@ const IconFaceLeftSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconFaceLeftSharpFilled as default } +export default IconFaceLeftSharpFilled diff --git a/src/IconFaceNodOutlined.tsx b/src/IconFaceNodOutlined.tsx index 35f2a10d4..865fccce5 100644 --- a/src/IconFaceNodOutlined.tsx +++ b/src/IconFaceNodOutlined.tsx @@ -8,4 +8,4 @@ const IconFaceNodOutlined: React.FC = ({ ...props }) => ( ) -export { IconFaceNodOutlined as default } +export default IconFaceNodOutlined diff --git a/src/IconFaceNodOutlinedFilled.tsx b/src/IconFaceNodOutlinedFilled.tsx index 03b10f5cd..831a34c35 100644 --- a/src/IconFaceNodOutlinedFilled.tsx +++ b/src/IconFaceNodOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconFaceNodOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconFaceNodOutlinedFilled as default } +export default IconFaceNodOutlinedFilled diff --git a/src/IconFaceNodRounded.tsx b/src/IconFaceNodRounded.tsx index 93ff9acfa..1ae100bf1 100644 --- a/src/IconFaceNodRounded.tsx +++ b/src/IconFaceNodRounded.tsx @@ -8,4 +8,4 @@ const IconFaceNodRounded: React.FC = ({ ...props }) => ( ) -export { IconFaceNodRounded as default } +export default IconFaceNodRounded diff --git a/src/IconFaceNodRoundedFilled.tsx b/src/IconFaceNodRoundedFilled.tsx index 854d24459..e9143a896 100644 --- a/src/IconFaceNodRoundedFilled.tsx +++ b/src/IconFaceNodRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconFaceNodRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconFaceNodRoundedFilled as default } +export default IconFaceNodRoundedFilled diff --git a/src/IconFaceNodSharp.tsx b/src/IconFaceNodSharp.tsx index 8b4acc4bd..79625d8ed 100644 --- a/src/IconFaceNodSharp.tsx +++ b/src/IconFaceNodSharp.tsx @@ -8,4 +8,4 @@ const IconFaceNodSharp: React.FC = ({ ...props }) => ( ) -export { IconFaceNodSharp as default } +export default IconFaceNodSharp diff --git a/src/IconFaceNodSharpFilled.tsx b/src/IconFaceNodSharpFilled.tsx index 2c6f72b0b..f8d45a1f4 100644 --- a/src/IconFaceNodSharpFilled.tsx +++ b/src/IconFaceNodSharpFilled.tsx @@ -8,4 +8,4 @@ const IconFaceNodSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconFaceNodSharpFilled as default } +export default IconFaceNodSharpFilled diff --git a/src/IconFaceOutlined.tsx b/src/IconFaceOutlined.tsx index 103befb9c..aea4289e8 100644 --- a/src/IconFaceOutlined.tsx +++ b/src/IconFaceOutlined.tsx @@ -8,4 +8,4 @@ const IconFaceOutlined: React.FC = ({ ...props }) => ( ) -export { IconFaceOutlined as default } +export default IconFaceOutlined diff --git a/src/IconFaceOutlinedFilled.tsx b/src/IconFaceOutlinedFilled.tsx index 4315427d4..6103d3b4d 100644 --- a/src/IconFaceOutlinedFilled.tsx +++ b/src/IconFaceOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconFaceOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconFaceOutlinedFilled as default } +export default IconFaceOutlinedFilled diff --git a/src/IconFaceRetouchingOffOutlined.tsx b/src/IconFaceRetouchingOffOutlined.tsx index 00df2a061..1e68bf079 100644 --- a/src/IconFaceRetouchingOffOutlined.tsx +++ b/src/IconFaceRetouchingOffOutlined.tsx @@ -8,4 +8,4 @@ const IconFaceRetouchingOffOutlined: React.FC = ({ ...props }) => ( ) -export { IconFaceRetouchingOffOutlined as default } +export default IconFaceRetouchingOffOutlined diff --git a/src/IconFaceRetouchingOffOutlinedFilled.tsx b/src/IconFaceRetouchingOffOutlinedFilled.tsx index 0d8d7271e..5b74df0b7 100644 --- a/src/IconFaceRetouchingOffOutlinedFilled.tsx +++ b/src/IconFaceRetouchingOffOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconFaceRetouchingOffOutlinedFilled: React.FC = ({ ) -export { IconFaceRetouchingOffOutlinedFilled as default } +export default IconFaceRetouchingOffOutlinedFilled diff --git a/src/IconFaceRetouchingOffRounded.tsx b/src/IconFaceRetouchingOffRounded.tsx index a120a7c3d..afda93255 100644 --- a/src/IconFaceRetouchingOffRounded.tsx +++ b/src/IconFaceRetouchingOffRounded.tsx @@ -8,4 +8,4 @@ const IconFaceRetouchingOffRounded: React.FC = ({ ...props }) => ( ) -export { IconFaceRetouchingOffRounded as default } +export default IconFaceRetouchingOffRounded diff --git a/src/IconFaceRetouchingOffRoundedFilled.tsx b/src/IconFaceRetouchingOffRoundedFilled.tsx index 1c5e546f4..d1791fd82 100644 --- a/src/IconFaceRetouchingOffRoundedFilled.tsx +++ b/src/IconFaceRetouchingOffRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconFaceRetouchingOffRoundedFilled: React.FC = ({ ) -export { IconFaceRetouchingOffRoundedFilled as default } +export default IconFaceRetouchingOffRoundedFilled diff --git a/src/IconFaceRetouchingOffSharp.tsx b/src/IconFaceRetouchingOffSharp.tsx index 7a5a879e8..7e57adf18 100644 --- a/src/IconFaceRetouchingOffSharp.tsx +++ b/src/IconFaceRetouchingOffSharp.tsx @@ -8,4 +8,4 @@ const IconFaceRetouchingOffSharp: React.FC = ({ ...props }) => ( ) -export { IconFaceRetouchingOffSharp as default } +export default IconFaceRetouchingOffSharp diff --git a/src/IconFaceRetouchingOffSharpFilled.tsx b/src/IconFaceRetouchingOffSharpFilled.tsx index a28a30e90..d267b15c0 100644 --- a/src/IconFaceRetouchingOffSharpFilled.tsx +++ b/src/IconFaceRetouchingOffSharpFilled.tsx @@ -10,4 +10,4 @@ const IconFaceRetouchingOffSharpFilled: React.FC = ({ ) -export { IconFaceRetouchingOffSharpFilled as default } +export default IconFaceRetouchingOffSharpFilled diff --git a/src/IconFaceRightOutlined.tsx b/src/IconFaceRightOutlined.tsx index 4666b0234..1e961960b 100644 --- a/src/IconFaceRightOutlined.tsx +++ b/src/IconFaceRightOutlined.tsx @@ -8,4 +8,4 @@ const IconFaceRightOutlined: React.FC = ({ ...props }) => ( ) -export { IconFaceRightOutlined as default } +export default IconFaceRightOutlined diff --git a/src/IconFaceRightOutlinedFilled.tsx b/src/IconFaceRightOutlinedFilled.tsx index 892ea1f00..2e97778b2 100644 --- a/src/IconFaceRightOutlinedFilled.tsx +++ b/src/IconFaceRightOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconFaceRightOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconFaceRightOutlinedFilled as default } +export default IconFaceRightOutlinedFilled diff --git a/src/IconFaceRightRounded.tsx b/src/IconFaceRightRounded.tsx index 41bfc80a4..e847b5a34 100644 --- a/src/IconFaceRightRounded.tsx +++ b/src/IconFaceRightRounded.tsx @@ -8,4 +8,4 @@ const IconFaceRightRounded: React.FC = ({ ...props }) => ( ) -export { IconFaceRightRounded as default } +export default IconFaceRightRounded diff --git a/src/IconFaceRightRoundedFilled.tsx b/src/IconFaceRightRoundedFilled.tsx index bbaeeb2e1..6675b10e9 100644 --- a/src/IconFaceRightRoundedFilled.tsx +++ b/src/IconFaceRightRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconFaceRightRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconFaceRightRoundedFilled as default } +export default IconFaceRightRoundedFilled diff --git a/src/IconFaceRightSharp.tsx b/src/IconFaceRightSharp.tsx index f8dd06578..3a3f46627 100644 --- a/src/IconFaceRightSharp.tsx +++ b/src/IconFaceRightSharp.tsx @@ -8,4 +8,4 @@ const IconFaceRightSharp: React.FC = ({ ...props }) => ( ) -export { IconFaceRightSharp as default } +export default IconFaceRightSharp diff --git a/src/IconFaceRightSharpFilled.tsx b/src/IconFaceRightSharpFilled.tsx index 7075a07d7..2d72f4b7e 100644 --- a/src/IconFaceRightSharpFilled.tsx +++ b/src/IconFaceRightSharpFilled.tsx @@ -8,4 +8,4 @@ const IconFaceRightSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconFaceRightSharpFilled as default } +export default IconFaceRightSharpFilled diff --git a/src/IconFaceRounded.tsx b/src/IconFaceRounded.tsx index 95ce2e461..5e269c86f 100644 --- a/src/IconFaceRounded.tsx +++ b/src/IconFaceRounded.tsx @@ -8,4 +8,4 @@ const IconFaceRounded: React.FC = ({ ...props }) => ( ) -export { IconFaceRounded as default } +export default IconFaceRounded diff --git a/src/IconFaceRoundedFilled.tsx b/src/IconFaceRoundedFilled.tsx index d57770a8d..55eb74c51 100644 --- a/src/IconFaceRoundedFilled.tsx +++ b/src/IconFaceRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconFaceRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconFaceRoundedFilled as default } +export default IconFaceRoundedFilled diff --git a/src/IconFaceShakeOutlined.tsx b/src/IconFaceShakeOutlined.tsx index 917e9d8d3..4c64a0b2b 100644 --- a/src/IconFaceShakeOutlined.tsx +++ b/src/IconFaceShakeOutlined.tsx @@ -8,4 +8,4 @@ const IconFaceShakeOutlined: React.FC = ({ ...props }) => ( ) -export { IconFaceShakeOutlined as default } +export default IconFaceShakeOutlined diff --git a/src/IconFaceShakeOutlinedFilled.tsx b/src/IconFaceShakeOutlinedFilled.tsx index 94be9b1cb..da470f83b 100644 --- a/src/IconFaceShakeOutlinedFilled.tsx +++ b/src/IconFaceShakeOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconFaceShakeOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconFaceShakeOutlinedFilled as default } +export default IconFaceShakeOutlinedFilled diff --git a/src/IconFaceShakeRounded.tsx b/src/IconFaceShakeRounded.tsx index 0be534789..7aece8a08 100644 --- a/src/IconFaceShakeRounded.tsx +++ b/src/IconFaceShakeRounded.tsx @@ -8,4 +8,4 @@ const IconFaceShakeRounded: React.FC = ({ ...props }) => ( ) -export { IconFaceShakeRounded as default } +export default IconFaceShakeRounded diff --git a/src/IconFaceShakeRoundedFilled.tsx b/src/IconFaceShakeRoundedFilled.tsx index 20f8e7c9a..716e79772 100644 --- a/src/IconFaceShakeRoundedFilled.tsx +++ b/src/IconFaceShakeRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconFaceShakeRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconFaceShakeRoundedFilled as default } +export default IconFaceShakeRoundedFilled diff --git a/src/IconFaceShakeSharp.tsx b/src/IconFaceShakeSharp.tsx index 5db8f55d0..6e2f1eb71 100644 --- a/src/IconFaceShakeSharp.tsx +++ b/src/IconFaceShakeSharp.tsx @@ -8,4 +8,4 @@ const IconFaceShakeSharp: React.FC = ({ ...props }) => ( ) -export { IconFaceShakeSharp as default } +export default IconFaceShakeSharp diff --git a/src/IconFaceShakeSharpFilled.tsx b/src/IconFaceShakeSharpFilled.tsx index a41db034b..a2017baab 100644 --- a/src/IconFaceShakeSharpFilled.tsx +++ b/src/IconFaceShakeSharpFilled.tsx @@ -8,4 +8,4 @@ const IconFaceShakeSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconFaceShakeSharpFilled as default } +export default IconFaceShakeSharpFilled diff --git a/src/IconFaceSharp.tsx b/src/IconFaceSharp.tsx index 7c5f532b2..b1e27c3b3 100644 --- a/src/IconFaceSharp.tsx +++ b/src/IconFaceSharp.tsx @@ -8,4 +8,4 @@ const IconFaceSharp: React.FC = ({ ...props }) => ( ) -export { IconFaceSharp as default } +export default IconFaceSharp diff --git a/src/IconFaceSharpFilled.tsx b/src/IconFaceSharpFilled.tsx index fbd7a3ce3..e26aebfc1 100644 --- a/src/IconFaceSharpFilled.tsx +++ b/src/IconFaceSharpFilled.tsx @@ -8,4 +8,4 @@ const IconFaceSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconFaceSharpFilled as default } +export default IconFaceSharpFilled diff --git a/src/IconFaceUpOutlined.tsx b/src/IconFaceUpOutlined.tsx index be7ad6d11..aa7668030 100644 --- a/src/IconFaceUpOutlined.tsx +++ b/src/IconFaceUpOutlined.tsx @@ -8,4 +8,4 @@ const IconFaceUpOutlined: React.FC = ({ ...props }) => ( ) -export { IconFaceUpOutlined as default } +export default IconFaceUpOutlined diff --git a/src/IconFaceUpOutlinedFilled.tsx b/src/IconFaceUpOutlinedFilled.tsx index 095f466a3..d9f755a3e 100644 --- a/src/IconFaceUpOutlinedFilled.tsx +++ b/src/IconFaceUpOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconFaceUpOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconFaceUpOutlinedFilled as default } +export default IconFaceUpOutlinedFilled diff --git a/src/IconFaceUpRounded.tsx b/src/IconFaceUpRounded.tsx index 5a93be5b3..2337c46b9 100644 --- a/src/IconFaceUpRounded.tsx +++ b/src/IconFaceUpRounded.tsx @@ -8,4 +8,4 @@ const IconFaceUpRounded: React.FC = ({ ...props }) => ( ) -export { IconFaceUpRounded as default } +export default IconFaceUpRounded diff --git a/src/IconFaceUpRoundedFilled.tsx b/src/IconFaceUpRoundedFilled.tsx index d5815bf33..ec156cadf 100644 --- a/src/IconFaceUpRoundedFilled.tsx +++ b/src/IconFaceUpRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconFaceUpRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconFaceUpRoundedFilled as default } +export default IconFaceUpRoundedFilled diff --git a/src/IconFaceUpSharp.tsx b/src/IconFaceUpSharp.tsx index 0500cf900..9a9308206 100644 --- a/src/IconFaceUpSharp.tsx +++ b/src/IconFaceUpSharp.tsx @@ -8,4 +8,4 @@ const IconFaceUpSharp: React.FC = ({ ...props }) => ( ) -export { IconFaceUpSharp as default } +export default IconFaceUpSharp diff --git a/src/IconFaceUpSharpFilled.tsx b/src/IconFaceUpSharpFilled.tsx index f3b42f45b..a10366c19 100644 --- a/src/IconFaceUpSharpFilled.tsx +++ b/src/IconFaceUpSharpFilled.tsx @@ -8,4 +8,4 @@ const IconFaceUpSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconFaceUpSharpFilled as default } +export default IconFaceUpSharpFilled diff --git a/src/IconFactCheckOutlined.tsx b/src/IconFactCheckOutlined.tsx index 146f76199..2342fcd17 100644 --- a/src/IconFactCheckOutlined.tsx +++ b/src/IconFactCheckOutlined.tsx @@ -8,4 +8,4 @@ const IconFactCheckOutlined: React.FC = ({ ...props }) => ( ) -export { IconFactCheckOutlined as default } +export default IconFactCheckOutlined diff --git a/src/IconFactCheckOutlinedFilled.tsx b/src/IconFactCheckOutlinedFilled.tsx index 412f4f120..107e27a24 100644 --- a/src/IconFactCheckOutlinedFilled.tsx +++ b/src/IconFactCheckOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconFactCheckOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconFactCheckOutlinedFilled as default } +export default IconFactCheckOutlinedFilled diff --git a/src/IconFactCheckRounded.tsx b/src/IconFactCheckRounded.tsx index 1dc95c0b1..5e9b66298 100644 --- a/src/IconFactCheckRounded.tsx +++ b/src/IconFactCheckRounded.tsx @@ -8,4 +8,4 @@ const IconFactCheckRounded: React.FC = ({ ...props }) => ( ) -export { IconFactCheckRounded as default } +export default IconFactCheckRounded diff --git a/src/IconFactCheckRoundedFilled.tsx b/src/IconFactCheckRoundedFilled.tsx index c7c0bbdf3..65bbc7eec 100644 --- a/src/IconFactCheckRoundedFilled.tsx +++ b/src/IconFactCheckRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconFactCheckRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconFactCheckRoundedFilled as default } +export default IconFactCheckRoundedFilled diff --git a/src/IconFactCheckSharp.tsx b/src/IconFactCheckSharp.tsx index b68ed7812..f0e8b7ed3 100644 --- a/src/IconFactCheckSharp.tsx +++ b/src/IconFactCheckSharp.tsx @@ -8,4 +8,4 @@ const IconFactCheckSharp: React.FC = ({ ...props }) => ( ) -export { IconFactCheckSharp as default } +export default IconFactCheckSharp diff --git a/src/IconFactCheckSharpFilled.tsx b/src/IconFactCheckSharpFilled.tsx index 38187ffc7..552a69618 100644 --- a/src/IconFactCheckSharpFilled.tsx +++ b/src/IconFactCheckSharpFilled.tsx @@ -8,4 +8,4 @@ const IconFactCheckSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconFactCheckSharpFilled as default } +export default IconFactCheckSharpFilled diff --git a/src/IconFactoryOutlined.tsx b/src/IconFactoryOutlined.tsx index 65b6996db..4b51a0877 100644 --- a/src/IconFactoryOutlined.tsx +++ b/src/IconFactoryOutlined.tsx @@ -8,4 +8,4 @@ const IconFactoryOutlined: React.FC = ({ ...props }) => ( ) -export { IconFactoryOutlined as default } +export default IconFactoryOutlined diff --git a/src/IconFactoryOutlinedFilled.tsx b/src/IconFactoryOutlinedFilled.tsx index 307a47965..a5dd7118b 100644 --- a/src/IconFactoryOutlinedFilled.tsx +++ b/src/IconFactoryOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconFactoryOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconFactoryOutlinedFilled as default } +export default IconFactoryOutlinedFilled diff --git a/src/IconFactoryRounded.tsx b/src/IconFactoryRounded.tsx index 359c65c50..b9ceb31e1 100644 --- a/src/IconFactoryRounded.tsx +++ b/src/IconFactoryRounded.tsx @@ -8,4 +8,4 @@ const IconFactoryRounded: React.FC = ({ ...props }) => ( ) -export { IconFactoryRounded as default } +export default IconFactoryRounded diff --git a/src/IconFactoryRoundedFilled.tsx b/src/IconFactoryRoundedFilled.tsx index 353fb3bd3..6b64aa25c 100644 --- a/src/IconFactoryRoundedFilled.tsx +++ b/src/IconFactoryRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconFactoryRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconFactoryRoundedFilled as default } +export default IconFactoryRoundedFilled diff --git a/src/IconFactorySharp.tsx b/src/IconFactorySharp.tsx index e08f1ed1e..084a55735 100644 --- a/src/IconFactorySharp.tsx +++ b/src/IconFactorySharp.tsx @@ -8,4 +8,4 @@ const IconFactorySharp: React.FC = ({ ...props }) => ( ) -export { IconFactorySharp as default } +export default IconFactorySharp diff --git a/src/IconFactorySharpFilled.tsx b/src/IconFactorySharpFilled.tsx index 06a9f7377..04e45acf6 100644 --- a/src/IconFactorySharpFilled.tsx +++ b/src/IconFactorySharpFilled.tsx @@ -8,4 +8,4 @@ const IconFactorySharpFilled: React.FC = ({ ...props }) => ( ) -export { IconFactorySharpFilled as default } +export default IconFactorySharpFilled diff --git a/src/IconFallingOutlined.tsx b/src/IconFallingOutlined.tsx index 3ba4a652c..b7081421a 100644 --- a/src/IconFallingOutlined.tsx +++ b/src/IconFallingOutlined.tsx @@ -8,4 +8,4 @@ const IconFallingOutlined: React.FC = ({ ...props }) => ( ) -export { IconFallingOutlined as default } +export default IconFallingOutlined diff --git a/src/IconFallingOutlinedFilled.tsx b/src/IconFallingOutlinedFilled.tsx index 77c10bd11..cc4af0489 100644 --- a/src/IconFallingOutlinedFilled.tsx +++ b/src/IconFallingOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconFallingOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconFallingOutlinedFilled as default } +export default IconFallingOutlinedFilled diff --git a/src/IconFallingRounded.tsx b/src/IconFallingRounded.tsx index 7eb9bf984..ffb3a333b 100644 --- a/src/IconFallingRounded.tsx +++ b/src/IconFallingRounded.tsx @@ -8,4 +8,4 @@ const IconFallingRounded: React.FC = ({ ...props }) => ( ) -export { IconFallingRounded as default } +export default IconFallingRounded diff --git a/src/IconFallingRoundedFilled.tsx b/src/IconFallingRoundedFilled.tsx index 96cbf968b..2cd658a3b 100644 --- a/src/IconFallingRoundedFilled.tsx +++ b/src/IconFallingRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconFallingRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconFallingRoundedFilled as default } +export default IconFallingRoundedFilled diff --git a/src/IconFallingSharp.tsx b/src/IconFallingSharp.tsx index 05585ad44..82328da5b 100644 --- a/src/IconFallingSharp.tsx +++ b/src/IconFallingSharp.tsx @@ -8,4 +8,4 @@ const IconFallingSharp: React.FC = ({ ...props }) => ( ) -export { IconFallingSharp as default } +export default IconFallingSharp diff --git a/src/IconFallingSharpFilled.tsx b/src/IconFallingSharpFilled.tsx index 67cd94693..0201e47c4 100644 --- a/src/IconFallingSharpFilled.tsx +++ b/src/IconFallingSharpFilled.tsx @@ -8,4 +8,4 @@ const IconFallingSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconFallingSharpFilled as default } +export default IconFallingSharpFilled diff --git a/src/IconFamiliarFaceAndZoneOutlined.tsx b/src/IconFamiliarFaceAndZoneOutlined.tsx index 1c030293d..fec0eccef 100644 --- a/src/IconFamiliarFaceAndZoneOutlined.tsx +++ b/src/IconFamiliarFaceAndZoneOutlined.tsx @@ -8,4 +8,4 @@ const IconFamiliarFaceAndZoneOutlined: React.FC = ({ ...props }) => ( ) -export { IconFamiliarFaceAndZoneOutlined as default } +export default IconFamiliarFaceAndZoneOutlined diff --git a/src/IconFamiliarFaceAndZoneOutlinedFilled.tsx b/src/IconFamiliarFaceAndZoneOutlinedFilled.tsx index c5d57c4cc..6582acfc5 100644 --- a/src/IconFamiliarFaceAndZoneOutlinedFilled.tsx +++ b/src/IconFamiliarFaceAndZoneOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconFamiliarFaceAndZoneOutlinedFilled: React.FC = ({ ) -export { IconFamiliarFaceAndZoneOutlinedFilled as default } +export default IconFamiliarFaceAndZoneOutlinedFilled diff --git a/src/IconFamiliarFaceAndZoneRounded.tsx b/src/IconFamiliarFaceAndZoneRounded.tsx index 0b05657a4..a4858d39b 100644 --- a/src/IconFamiliarFaceAndZoneRounded.tsx +++ b/src/IconFamiliarFaceAndZoneRounded.tsx @@ -8,4 +8,4 @@ const IconFamiliarFaceAndZoneRounded: React.FC = ({ ...props }) => ( ) -export { IconFamiliarFaceAndZoneRounded as default } +export default IconFamiliarFaceAndZoneRounded diff --git a/src/IconFamiliarFaceAndZoneRoundedFilled.tsx b/src/IconFamiliarFaceAndZoneRoundedFilled.tsx index 41d95e318..790e1e4bd 100644 --- a/src/IconFamiliarFaceAndZoneRoundedFilled.tsx +++ b/src/IconFamiliarFaceAndZoneRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconFamiliarFaceAndZoneRoundedFilled: React.FC = ({ ) -export { IconFamiliarFaceAndZoneRoundedFilled as default } +export default IconFamiliarFaceAndZoneRoundedFilled diff --git a/src/IconFamiliarFaceAndZoneSharp.tsx b/src/IconFamiliarFaceAndZoneSharp.tsx index 63f58964e..18f811d78 100644 --- a/src/IconFamiliarFaceAndZoneSharp.tsx +++ b/src/IconFamiliarFaceAndZoneSharp.tsx @@ -8,4 +8,4 @@ const IconFamiliarFaceAndZoneSharp: React.FC = ({ ...props }) => ( ) -export { IconFamiliarFaceAndZoneSharp as default } +export default IconFamiliarFaceAndZoneSharp diff --git a/src/IconFamiliarFaceAndZoneSharpFilled.tsx b/src/IconFamiliarFaceAndZoneSharpFilled.tsx index 17dabc432..e08f21c3a 100644 --- a/src/IconFamiliarFaceAndZoneSharpFilled.tsx +++ b/src/IconFamiliarFaceAndZoneSharpFilled.tsx @@ -10,4 +10,4 @@ const IconFamiliarFaceAndZoneSharpFilled: React.FC = ({ ) -export { IconFamiliarFaceAndZoneSharpFilled as default } +export default IconFamiliarFaceAndZoneSharpFilled diff --git a/src/IconFamilyHistoryOutlined.tsx b/src/IconFamilyHistoryOutlined.tsx index 1fece737a..42e5798d1 100644 --- a/src/IconFamilyHistoryOutlined.tsx +++ b/src/IconFamilyHistoryOutlined.tsx @@ -8,4 +8,4 @@ const IconFamilyHistoryOutlined: React.FC = ({ ...props }) => ( ) -export { IconFamilyHistoryOutlined as default } +export default IconFamilyHistoryOutlined diff --git a/src/IconFamilyHistoryOutlinedFilled.tsx b/src/IconFamilyHistoryOutlinedFilled.tsx index 87e6f19d7..f9e151c20 100644 --- a/src/IconFamilyHistoryOutlinedFilled.tsx +++ b/src/IconFamilyHistoryOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconFamilyHistoryOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconFamilyHistoryOutlinedFilled as default } +export default IconFamilyHistoryOutlinedFilled diff --git a/src/IconFamilyHistoryRounded.tsx b/src/IconFamilyHistoryRounded.tsx index 734de73ba..1d97ce701 100644 --- a/src/IconFamilyHistoryRounded.tsx +++ b/src/IconFamilyHistoryRounded.tsx @@ -8,4 +8,4 @@ const IconFamilyHistoryRounded: React.FC = ({ ...props }) => ( ) -export { IconFamilyHistoryRounded as default } +export default IconFamilyHistoryRounded diff --git a/src/IconFamilyHistoryRoundedFilled.tsx b/src/IconFamilyHistoryRoundedFilled.tsx index 13a53413e..3f6d09607 100644 --- a/src/IconFamilyHistoryRoundedFilled.tsx +++ b/src/IconFamilyHistoryRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconFamilyHistoryRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconFamilyHistoryRoundedFilled as default } +export default IconFamilyHistoryRoundedFilled diff --git a/src/IconFamilyHistorySharp.tsx b/src/IconFamilyHistorySharp.tsx index 1b7afc105..48495eabb 100644 --- a/src/IconFamilyHistorySharp.tsx +++ b/src/IconFamilyHistorySharp.tsx @@ -8,4 +8,4 @@ const IconFamilyHistorySharp: React.FC = ({ ...props }) => ( ) -export { IconFamilyHistorySharp as default } +export default IconFamilyHistorySharp diff --git a/src/IconFamilyHistorySharpFilled.tsx b/src/IconFamilyHistorySharpFilled.tsx index 98fc88989..b8bc12750 100644 --- a/src/IconFamilyHistorySharpFilled.tsx +++ b/src/IconFamilyHistorySharpFilled.tsx @@ -8,4 +8,4 @@ const IconFamilyHistorySharpFilled: React.FC = ({ ...props }) => ( ) -export { IconFamilyHistorySharpFilled as default } +export default IconFamilyHistorySharpFilled diff --git a/src/IconFamilyHomeOutlined.tsx b/src/IconFamilyHomeOutlined.tsx index dc744af78..25f26d709 100644 --- a/src/IconFamilyHomeOutlined.tsx +++ b/src/IconFamilyHomeOutlined.tsx @@ -8,4 +8,4 @@ const IconFamilyHomeOutlined: React.FC = ({ ...props }) => ( ) -export { IconFamilyHomeOutlined as default } +export default IconFamilyHomeOutlined diff --git a/src/IconFamilyHomeOutlinedFilled.tsx b/src/IconFamilyHomeOutlinedFilled.tsx index 6d4ecca12..d82df4cb1 100644 --- a/src/IconFamilyHomeOutlinedFilled.tsx +++ b/src/IconFamilyHomeOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconFamilyHomeOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconFamilyHomeOutlinedFilled as default } +export default IconFamilyHomeOutlinedFilled diff --git a/src/IconFamilyHomeRounded.tsx b/src/IconFamilyHomeRounded.tsx index a9e7179e6..c9c0ecec6 100644 --- a/src/IconFamilyHomeRounded.tsx +++ b/src/IconFamilyHomeRounded.tsx @@ -8,4 +8,4 @@ const IconFamilyHomeRounded: React.FC = ({ ...props }) => ( ) -export { IconFamilyHomeRounded as default } +export default IconFamilyHomeRounded diff --git a/src/IconFamilyHomeRoundedFilled.tsx b/src/IconFamilyHomeRoundedFilled.tsx index 30b6ffbe1..5d48d4f28 100644 --- a/src/IconFamilyHomeRoundedFilled.tsx +++ b/src/IconFamilyHomeRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconFamilyHomeRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconFamilyHomeRoundedFilled as default } +export default IconFamilyHomeRoundedFilled diff --git a/src/IconFamilyHomeSharp.tsx b/src/IconFamilyHomeSharp.tsx index 3b26f6ad2..c7af49ef7 100644 --- a/src/IconFamilyHomeSharp.tsx +++ b/src/IconFamilyHomeSharp.tsx @@ -8,4 +8,4 @@ const IconFamilyHomeSharp: React.FC = ({ ...props }) => ( ) -export { IconFamilyHomeSharp as default } +export default IconFamilyHomeSharp diff --git a/src/IconFamilyHomeSharpFilled.tsx b/src/IconFamilyHomeSharpFilled.tsx index cac6df489..470042a82 100644 --- a/src/IconFamilyHomeSharpFilled.tsx +++ b/src/IconFamilyHomeSharpFilled.tsx @@ -8,4 +8,4 @@ const IconFamilyHomeSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconFamilyHomeSharpFilled as default } +export default IconFamilyHomeSharpFilled diff --git a/src/IconFamilyLinkOutlined.tsx b/src/IconFamilyLinkOutlined.tsx index a880a4e1d..61fffdb72 100644 --- a/src/IconFamilyLinkOutlined.tsx +++ b/src/IconFamilyLinkOutlined.tsx @@ -8,4 +8,4 @@ const IconFamilyLinkOutlined: React.FC = ({ ...props }) => ( ) -export { IconFamilyLinkOutlined as default } +export default IconFamilyLinkOutlined diff --git a/src/IconFamilyLinkOutlinedFilled.tsx b/src/IconFamilyLinkOutlinedFilled.tsx index b970f4ad8..367694a3a 100644 --- a/src/IconFamilyLinkOutlinedFilled.tsx +++ b/src/IconFamilyLinkOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconFamilyLinkOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconFamilyLinkOutlinedFilled as default } +export default IconFamilyLinkOutlinedFilled diff --git a/src/IconFamilyLinkRounded.tsx b/src/IconFamilyLinkRounded.tsx index 524c5bac4..7de1b9312 100644 --- a/src/IconFamilyLinkRounded.tsx +++ b/src/IconFamilyLinkRounded.tsx @@ -8,4 +8,4 @@ const IconFamilyLinkRounded: React.FC = ({ ...props }) => ( ) -export { IconFamilyLinkRounded as default } +export default IconFamilyLinkRounded diff --git a/src/IconFamilyLinkRoundedFilled.tsx b/src/IconFamilyLinkRoundedFilled.tsx index e927e7716..18b9b3bb4 100644 --- a/src/IconFamilyLinkRoundedFilled.tsx +++ b/src/IconFamilyLinkRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconFamilyLinkRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconFamilyLinkRoundedFilled as default } +export default IconFamilyLinkRoundedFilled diff --git a/src/IconFamilyLinkSharp.tsx b/src/IconFamilyLinkSharp.tsx index d04a83199..6b8889953 100644 --- a/src/IconFamilyLinkSharp.tsx +++ b/src/IconFamilyLinkSharp.tsx @@ -8,4 +8,4 @@ const IconFamilyLinkSharp: React.FC = ({ ...props }) => ( ) -export { IconFamilyLinkSharp as default } +export default IconFamilyLinkSharp diff --git a/src/IconFamilyLinkSharpFilled.tsx b/src/IconFamilyLinkSharpFilled.tsx index cfc9e8483..6b41e1a62 100644 --- a/src/IconFamilyLinkSharpFilled.tsx +++ b/src/IconFamilyLinkSharpFilled.tsx @@ -8,4 +8,4 @@ const IconFamilyLinkSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconFamilyLinkSharpFilled as default } +export default IconFamilyLinkSharpFilled diff --git a/src/IconFamilyRestroomOutlined.tsx b/src/IconFamilyRestroomOutlined.tsx index 6fe8b515f..609425dfb 100644 --- a/src/IconFamilyRestroomOutlined.tsx +++ b/src/IconFamilyRestroomOutlined.tsx @@ -8,4 +8,4 @@ const IconFamilyRestroomOutlined: React.FC = ({ ...props }) => ( ) -export { IconFamilyRestroomOutlined as default } +export default IconFamilyRestroomOutlined diff --git a/src/IconFamilyRestroomOutlinedFilled.tsx b/src/IconFamilyRestroomOutlinedFilled.tsx index e2767706b..7dbe0c378 100644 --- a/src/IconFamilyRestroomOutlinedFilled.tsx +++ b/src/IconFamilyRestroomOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconFamilyRestroomOutlinedFilled: React.FC = ({ ) -export { IconFamilyRestroomOutlinedFilled as default } +export default IconFamilyRestroomOutlinedFilled diff --git a/src/IconFamilyRestroomRounded.tsx b/src/IconFamilyRestroomRounded.tsx index 631611df3..b04b4c397 100644 --- a/src/IconFamilyRestroomRounded.tsx +++ b/src/IconFamilyRestroomRounded.tsx @@ -8,4 +8,4 @@ const IconFamilyRestroomRounded: React.FC = ({ ...props }) => ( ) -export { IconFamilyRestroomRounded as default } +export default IconFamilyRestroomRounded diff --git a/src/IconFamilyRestroomRoundedFilled.tsx b/src/IconFamilyRestroomRoundedFilled.tsx index 0ab53fb64..5cad0efa2 100644 --- a/src/IconFamilyRestroomRoundedFilled.tsx +++ b/src/IconFamilyRestroomRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconFamilyRestroomRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconFamilyRestroomRoundedFilled as default } +export default IconFamilyRestroomRoundedFilled diff --git a/src/IconFamilyRestroomSharp.tsx b/src/IconFamilyRestroomSharp.tsx index b45b7d975..a121539bb 100644 --- a/src/IconFamilyRestroomSharp.tsx +++ b/src/IconFamilyRestroomSharp.tsx @@ -8,4 +8,4 @@ const IconFamilyRestroomSharp: React.FC = ({ ...props }) => ( ) -export { IconFamilyRestroomSharp as default } +export default IconFamilyRestroomSharp diff --git a/src/IconFamilyRestroomSharpFilled.tsx b/src/IconFamilyRestroomSharpFilled.tsx index d3957cdb7..520565de0 100644 --- a/src/IconFamilyRestroomSharpFilled.tsx +++ b/src/IconFamilyRestroomSharpFilled.tsx @@ -8,4 +8,4 @@ const IconFamilyRestroomSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconFamilyRestroomSharpFilled as default } +export default IconFamilyRestroomSharpFilled diff --git a/src/IconFamilyStarOutlined.tsx b/src/IconFamilyStarOutlined.tsx index 8d23f60a9..7c6c9ed6d 100644 --- a/src/IconFamilyStarOutlined.tsx +++ b/src/IconFamilyStarOutlined.tsx @@ -8,4 +8,4 @@ const IconFamilyStarOutlined: React.FC = ({ ...props }) => ( ) -export { IconFamilyStarOutlined as default } +export default IconFamilyStarOutlined diff --git a/src/IconFamilyStarOutlinedFilled.tsx b/src/IconFamilyStarOutlinedFilled.tsx index 928798415..96084c681 100644 --- a/src/IconFamilyStarOutlinedFilled.tsx +++ b/src/IconFamilyStarOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconFamilyStarOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconFamilyStarOutlinedFilled as default } +export default IconFamilyStarOutlinedFilled diff --git a/src/IconFamilyStarRounded.tsx b/src/IconFamilyStarRounded.tsx index ed3ad468e..69e0b8ea7 100644 --- a/src/IconFamilyStarRounded.tsx +++ b/src/IconFamilyStarRounded.tsx @@ -8,4 +8,4 @@ const IconFamilyStarRounded: React.FC = ({ ...props }) => ( ) -export { IconFamilyStarRounded as default } +export default IconFamilyStarRounded diff --git a/src/IconFamilyStarRoundedFilled.tsx b/src/IconFamilyStarRoundedFilled.tsx index 7ea3f6222..97efcaae1 100644 --- a/src/IconFamilyStarRoundedFilled.tsx +++ b/src/IconFamilyStarRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconFamilyStarRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconFamilyStarRoundedFilled as default } +export default IconFamilyStarRoundedFilled diff --git a/src/IconFamilyStarSharp.tsx b/src/IconFamilyStarSharp.tsx index a19125895..a2e067e02 100644 --- a/src/IconFamilyStarSharp.tsx +++ b/src/IconFamilyStarSharp.tsx @@ -8,4 +8,4 @@ const IconFamilyStarSharp: React.FC = ({ ...props }) => ( ) -export { IconFamilyStarSharp as default } +export default IconFamilyStarSharp diff --git a/src/IconFamilyStarSharpFilled.tsx b/src/IconFamilyStarSharpFilled.tsx index d2aac5f97..078c4a52e 100644 --- a/src/IconFamilyStarSharpFilled.tsx +++ b/src/IconFamilyStarSharpFilled.tsx @@ -8,4 +8,4 @@ const IconFamilyStarSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconFamilyStarSharpFilled as default } +export default IconFamilyStarSharpFilled diff --git a/src/IconFarsightDigitalOutlined.tsx b/src/IconFarsightDigitalOutlined.tsx index 0b9d63b0a..869b391f1 100644 --- a/src/IconFarsightDigitalOutlined.tsx +++ b/src/IconFarsightDigitalOutlined.tsx @@ -8,4 +8,4 @@ const IconFarsightDigitalOutlined: React.FC = ({ ...props }) => ( ) -export { IconFarsightDigitalOutlined as default } +export default IconFarsightDigitalOutlined diff --git a/src/IconFarsightDigitalOutlinedFilled.tsx b/src/IconFarsightDigitalOutlinedFilled.tsx index 39f7f1d06..6a3117283 100644 --- a/src/IconFarsightDigitalOutlinedFilled.tsx +++ b/src/IconFarsightDigitalOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconFarsightDigitalOutlinedFilled: React.FC = ({ ) -export { IconFarsightDigitalOutlinedFilled as default } +export default IconFarsightDigitalOutlinedFilled diff --git a/src/IconFarsightDigitalRounded.tsx b/src/IconFarsightDigitalRounded.tsx index 9c8277ebf..ab89463b3 100644 --- a/src/IconFarsightDigitalRounded.tsx +++ b/src/IconFarsightDigitalRounded.tsx @@ -8,4 +8,4 @@ const IconFarsightDigitalRounded: React.FC = ({ ...props }) => ( ) -export { IconFarsightDigitalRounded as default } +export default IconFarsightDigitalRounded diff --git a/src/IconFarsightDigitalRoundedFilled.tsx b/src/IconFarsightDigitalRoundedFilled.tsx index 6872b0c6b..83ab44490 100644 --- a/src/IconFarsightDigitalRoundedFilled.tsx +++ b/src/IconFarsightDigitalRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconFarsightDigitalRoundedFilled: React.FC = ({ ) -export { IconFarsightDigitalRoundedFilled as default } +export default IconFarsightDigitalRoundedFilled diff --git a/src/IconFarsightDigitalSharp.tsx b/src/IconFarsightDigitalSharp.tsx index 70a0306a5..26961c0d4 100644 --- a/src/IconFarsightDigitalSharp.tsx +++ b/src/IconFarsightDigitalSharp.tsx @@ -8,4 +8,4 @@ const IconFarsightDigitalSharp: React.FC = ({ ...props }) => ( ) -export { IconFarsightDigitalSharp as default } +export default IconFarsightDigitalSharp diff --git a/src/IconFarsightDigitalSharpFilled.tsx b/src/IconFarsightDigitalSharpFilled.tsx index 6235acf80..3e9205a23 100644 --- a/src/IconFarsightDigitalSharpFilled.tsx +++ b/src/IconFarsightDigitalSharpFilled.tsx @@ -8,4 +8,4 @@ const IconFarsightDigitalSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconFarsightDigitalSharpFilled as default } +export default IconFarsightDigitalSharpFilled diff --git a/src/IconFastForwardOutlined.tsx b/src/IconFastForwardOutlined.tsx index 404b2ab5c..876d858e2 100644 --- a/src/IconFastForwardOutlined.tsx +++ b/src/IconFastForwardOutlined.tsx @@ -8,4 +8,4 @@ const IconFastForwardOutlined: React.FC = ({ ...props }) => ( ) -export { IconFastForwardOutlined as default } +export default IconFastForwardOutlined diff --git a/src/IconFastForwardOutlinedFilled.tsx b/src/IconFastForwardOutlinedFilled.tsx index 794b45756..c36d6b134 100644 --- a/src/IconFastForwardOutlinedFilled.tsx +++ b/src/IconFastForwardOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconFastForwardOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconFastForwardOutlinedFilled as default } +export default IconFastForwardOutlinedFilled diff --git a/src/IconFastForwardRounded.tsx b/src/IconFastForwardRounded.tsx index 52d9d4705..d101de401 100644 --- a/src/IconFastForwardRounded.tsx +++ b/src/IconFastForwardRounded.tsx @@ -8,4 +8,4 @@ const IconFastForwardRounded: React.FC = ({ ...props }) => ( ) -export { IconFastForwardRounded as default } +export default IconFastForwardRounded diff --git a/src/IconFastForwardRoundedFilled.tsx b/src/IconFastForwardRoundedFilled.tsx index 1d86c3d79..4881fda4d 100644 --- a/src/IconFastForwardRoundedFilled.tsx +++ b/src/IconFastForwardRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconFastForwardRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconFastForwardRoundedFilled as default } +export default IconFastForwardRoundedFilled diff --git a/src/IconFastForwardSharp.tsx b/src/IconFastForwardSharp.tsx index e2d175790..af7423d39 100644 --- a/src/IconFastForwardSharp.tsx +++ b/src/IconFastForwardSharp.tsx @@ -8,4 +8,4 @@ const IconFastForwardSharp: React.FC = ({ ...props }) => ( ) -export { IconFastForwardSharp as default } +export default IconFastForwardSharp diff --git a/src/IconFastForwardSharpFilled.tsx b/src/IconFastForwardSharpFilled.tsx index 74f5a6468..9d8ef8675 100644 --- a/src/IconFastForwardSharpFilled.tsx +++ b/src/IconFastForwardSharpFilled.tsx @@ -8,4 +8,4 @@ const IconFastForwardSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconFastForwardSharpFilled as default } +export default IconFastForwardSharpFilled diff --git a/src/IconFastRewindOutlined.tsx b/src/IconFastRewindOutlined.tsx index 1c0c1dfed..ae6391e6d 100644 --- a/src/IconFastRewindOutlined.tsx +++ b/src/IconFastRewindOutlined.tsx @@ -8,4 +8,4 @@ const IconFastRewindOutlined: React.FC = ({ ...props }) => ( ) -export { IconFastRewindOutlined as default } +export default IconFastRewindOutlined diff --git a/src/IconFastRewindOutlinedFilled.tsx b/src/IconFastRewindOutlinedFilled.tsx index c5a0e0d05..8c5c9ac0a 100644 --- a/src/IconFastRewindOutlinedFilled.tsx +++ b/src/IconFastRewindOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconFastRewindOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconFastRewindOutlinedFilled as default } +export default IconFastRewindOutlinedFilled diff --git a/src/IconFastRewindRounded.tsx b/src/IconFastRewindRounded.tsx index 385fe2a5a..d9b13b0f2 100644 --- a/src/IconFastRewindRounded.tsx +++ b/src/IconFastRewindRounded.tsx @@ -8,4 +8,4 @@ const IconFastRewindRounded: React.FC = ({ ...props }) => ( ) -export { IconFastRewindRounded as default } +export default IconFastRewindRounded diff --git a/src/IconFastRewindRoundedFilled.tsx b/src/IconFastRewindRoundedFilled.tsx index 5bf3b138b..dfd2e7c02 100644 --- a/src/IconFastRewindRoundedFilled.tsx +++ b/src/IconFastRewindRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconFastRewindRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconFastRewindRoundedFilled as default } +export default IconFastRewindRoundedFilled diff --git a/src/IconFastRewindSharp.tsx b/src/IconFastRewindSharp.tsx index 2dc87df5f..6e3eaf357 100644 --- a/src/IconFastRewindSharp.tsx +++ b/src/IconFastRewindSharp.tsx @@ -8,4 +8,4 @@ const IconFastRewindSharp: React.FC = ({ ...props }) => ( ) -export { IconFastRewindSharp as default } +export default IconFastRewindSharp diff --git a/src/IconFastRewindSharpFilled.tsx b/src/IconFastRewindSharpFilled.tsx index f28b0bc66..440f01956 100644 --- a/src/IconFastRewindSharpFilled.tsx +++ b/src/IconFastRewindSharpFilled.tsx @@ -8,4 +8,4 @@ const IconFastRewindSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconFastRewindSharpFilled as default } +export default IconFastRewindSharpFilled diff --git a/src/IconFastfoodOutlined.tsx b/src/IconFastfoodOutlined.tsx index 0d90a0bca..ca4047751 100644 --- a/src/IconFastfoodOutlined.tsx +++ b/src/IconFastfoodOutlined.tsx @@ -8,4 +8,4 @@ const IconFastfoodOutlined: React.FC = ({ ...props }) => ( ) -export { IconFastfoodOutlined as default } +export default IconFastfoodOutlined diff --git a/src/IconFastfoodOutlinedFilled.tsx b/src/IconFastfoodOutlinedFilled.tsx index ef86ecf8b..98bd1fe74 100644 --- a/src/IconFastfoodOutlinedFilled.tsx +++ b/src/IconFastfoodOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconFastfoodOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconFastfoodOutlinedFilled as default } +export default IconFastfoodOutlinedFilled diff --git a/src/IconFastfoodRounded.tsx b/src/IconFastfoodRounded.tsx index 09b09d375..e7976a91a 100644 --- a/src/IconFastfoodRounded.tsx +++ b/src/IconFastfoodRounded.tsx @@ -8,4 +8,4 @@ const IconFastfoodRounded: React.FC = ({ ...props }) => ( ) -export { IconFastfoodRounded as default } +export default IconFastfoodRounded diff --git a/src/IconFastfoodRoundedFilled.tsx b/src/IconFastfoodRoundedFilled.tsx index 43c468976..c7110f20c 100644 --- a/src/IconFastfoodRoundedFilled.tsx +++ b/src/IconFastfoodRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconFastfoodRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconFastfoodRoundedFilled as default } +export default IconFastfoodRoundedFilled diff --git a/src/IconFastfoodSharp.tsx b/src/IconFastfoodSharp.tsx index 63d59ca09..ed87dcd45 100644 --- a/src/IconFastfoodSharp.tsx +++ b/src/IconFastfoodSharp.tsx @@ -8,4 +8,4 @@ const IconFastfoodSharp: React.FC = ({ ...props }) => ( ) -export { IconFastfoodSharp as default } +export default IconFastfoodSharp diff --git a/src/IconFastfoodSharpFilled.tsx b/src/IconFastfoodSharpFilled.tsx index 633a4559d..762e3c572 100644 --- a/src/IconFastfoodSharpFilled.tsx +++ b/src/IconFastfoodSharpFilled.tsx @@ -8,4 +8,4 @@ const IconFastfoodSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconFastfoodSharpFilled as default } +export default IconFastfoodSharpFilled diff --git a/src/IconFaucetOutlined.tsx b/src/IconFaucetOutlined.tsx index ccddf43f2..96c5200e8 100644 --- a/src/IconFaucetOutlined.tsx +++ b/src/IconFaucetOutlined.tsx @@ -8,4 +8,4 @@ const IconFaucetOutlined: React.FC = ({ ...props }) => ( ) -export { IconFaucetOutlined as default } +export default IconFaucetOutlined diff --git a/src/IconFaucetOutlinedFilled.tsx b/src/IconFaucetOutlinedFilled.tsx index ca071e7df..3885091e8 100644 --- a/src/IconFaucetOutlinedFilled.tsx +++ b/src/IconFaucetOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconFaucetOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconFaucetOutlinedFilled as default } +export default IconFaucetOutlinedFilled diff --git a/src/IconFaucetRounded.tsx b/src/IconFaucetRounded.tsx index add42bcf7..a9bfab514 100644 --- a/src/IconFaucetRounded.tsx +++ b/src/IconFaucetRounded.tsx @@ -8,4 +8,4 @@ const IconFaucetRounded: React.FC = ({ ...props }) => ( ) -export { IconFaucetRounded as default } +export default IconFaucetRounded diff --git a/src/IconFaucetRoundedFilled.tsx b/src/IconFaucetRoundedFilled.tsx index 29b14d92e..52d71806c 100644 --- a/src/IconFaucetRoundedFilled.tsx +++ b/src/IconFaucetRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconFaucetRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconFaucetRoundedFilled as default } +export default IconFaucetRoundedFilled diff --git a/src/IconFaucetSharp.tsx b/src/IconFaucetSharp.tsx index b0c49352f..e36a9be3d 100644 --- a/src/IconFaucetSharp.tsx +++ b/src/IconFaucetSharp.tsx @@ -8,4 +8,4 @@ const IconFaucetSharp: React.FC = ({ ...props }) => ( ) -export { IconFaucetSharp as default } +export default IconFaucetSharp diff --git a/src/IconFaucetSharpFilled.tsx b/src/IconFaucetSharpFilled.tsx index 2d7714a3e..ed6666f5c 100644 --- a/src/IconFaucetSharpFilled.tsx +++ b/src/IconFaucetSharpFilled.tsx @@ -8,4 +8,4 @@ const IconFaucetSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconFaucetSharpFilled as default } +export default IconFaucetSharpFilled diff --git a/src/IconFavoriteOutlined.tsx b/src/IconFavoriteOutlined.tsx index d21a8464f..60d4a76f4 100644 --- a/src/IconFavoriteOutlined.tsx +++ b/src/IconFavoriteOutlined.tsx @@ -8,4 +8,4 @@ const IconFavoriteOutlined: React.FC = ({ ...props }) => ( ) -export { IconFavoriteOutlined as default } +export default IconFavoriteOutlined diff --git a/src/IconFavoriteOutlinedFilled.tsx b/src/IconFavoriteOutlinedFilled.tsx index eb5bd9900..432da9f40 100644 --- a/src/IconFavoriteOutlinedFilled.tsx +++ b/src/IconFavoriteOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconFavoriteOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconFavoriteOutlinedFilled as default } +export default IconFavoriteOutlinedFilled diff --git a/src/IconFavoriteRounded.tsx b/src/IconFavoriteRounded.tsx index 10cb78a3c..114511d59 100644 --- a/src/IconFavoriteRounded.tsx +++ b/src/IconFavoriteRounded.tsx @@ -8,4 +8,4 @@ const IconFavoriteRounded: React.FC = ({ ...props }) => ( ) -export { IconFavoriteRounded as default } +export default IconFavoriteRounded diff --git a/src/IconFavoriteRoundedFilled.tsx b/src/IconFavoriteRoundedFilled.tsx index d28bb59a6..80f2a0b78 100644 --- a/src/IconFavoriteRoundedFilled.tsx +++ b/src/IconFavoriteRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconFavoriteRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconFavoriteRoundedFilled as default } +export default IconFavoriteRoundedFilled diff --git a/src/IconFavoriteSharp.tsx b/src/IconFavoriteSharp.tsx index 4c5d7483c..0fc56d58c 100644 --- a/src/IconFavoriteSharp.tsx +++ b/src/IconFavoriteSharp.tsx @@ -8,4 +8,4 @@ const IconFavoriteSharp: React.FC = ({ ...props }) => ( ) -export { IconFavoriteSharp as default } +export default IconFavoriteSharp diff --git a/src/IconFavoriteSharpFilled.tsx b/src/IconFavoriteSharpFilled.tsx index 588bc47b4..01217201d 100644 --- a/src/IconFavoriteSharpFilled.tsx +++ b/src/IconFavoriteSharpFilled.tsx @@ -8,4 +8,4 @@ const IconFavoriteSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconFavoriteSharpFilled as default } +export default IconFavoriteSharpFilled diff --git a/src/IconFaxOutlined.tsx b/src/IconFaxOutlined.tsx index 190caee92..0cbd610fd 100644 --- a/src/IconFaxOutlined.tsx +++ b/src/IconFaxOutlined.tsx @@ -8,4 +8,4 @@ const IconFaxOutlined: React.FC = ({ ...props }) => ( ) -export { IconFaxOutlined as default } +export default IconFaxOutlined diff --git a/src/IconFaxOutlinedFilled.tsx b/src/IconFaxOutlinedFilled.tsx index 90a259441..ddcca9eb4 100644 --- a/src/IconFaxOutlinedFilled.tsx +++ b/src/IconFaxOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconFaxOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconFaxOutlinedFilled as default } +export default IconFaxOutlinedFilled diff --git a/src/IconFaxRounded.tsx b/src/IconFaxRounded.tsx index 33cb9bbef..8ca0603f7 100644 --- a/src/IconFaxRounded.tsx +++ b/src/IconFaxRounded.tsx @@ -8,4 +8,4 @@ const IconFaxRounded: React.FC = ({ ...props }) => ( ) -export { IconFaxRounded as default } +export default IconFaxRounded diff --git a/src/IconFaxRoundedFilled.tsx b/src/IconFaxRoundedFilled.tsx index 8b4aff9c6..418691c49 100644 --- a/src/IconFaxRoundedFilled.tsx +++ b/src/IconFaxRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconFaxRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconFaxRoundedFilled as default } +export default IconFaxRoundedFilled diff --git a/src/IconFaxSharp.tsx b/src/IconFaxSharp.tsx index 5fdf7392b..034a1b34d 100644 --- a/src/IconFaxSharp.tsx +++ b/src/IconFaxSharp.tsx @@ -8,4 +8,4 @@ const IconFaxSharp: React.FC = ({ ...props }) => ( ) -export { IconFaxSharp as default } +export default IconFaxSharp diff --git a/src/IconFaxSharpFilled.tsx b/src/IconFaxSharpFilled.tsx index 59988382f..ed4d39382 100644 --- a/src/IconFaxSharpFilled.tsx +++ b/src/IconFaxSharpFilled.tsx @@ -8,4 +8,4 @@ const IconFaxSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconFaxSharpFilled as default } +export default IconFaxSharpFilled diff --git a/src/IconFeatureSearchOutlined.tsx b/src/IconFeatureSearchOutlined.tsx index 9a0801ce9..e32d157d3 100644 --- a/src/IconFeatureSearchOutlined.tsx +++ b/src/IconFeatureSearchOutlined.tsx @@ -8,4 +8,4 @@ const IconFeatureSearchOutlined: React.FC = ({ ...props }) => ( ) -export { IconFeatureSearchOutlined as default } +export default IconFeatureSearchOutlined diff --git a/src/IconFeatureSearchOutlinedFilled.tsx b/src/IconFeatureSearchOutlinedFilled.tsx index 4362d4a94..00159d489 100644 --- a/src/IconFeatureSearchOutlinedFilled.tsx +++ b/src/IconFeatureSearchOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconFeatureSearchOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconFeatureSearchOutlinedFilled as default } +export default IconFeatureSearchOutlinedFilled diff --git a/src/IconFeatureSearchRounded.tsx b/src/IconFeatureSearchRounded.tsx index 292c889a0..57fcebbf6 100644 --- a/src/IconFeatureSearchRounded.tsx +++ b/src/IconFeatureSearchRounded.tsx @@ -8,4 +8,4 @@ const IconFeatureSearchRounded: React.FC = ({ ...props }) => ( ) -export { IconFeatureSearchRounded as default } +export default IconFeatureSearchRounded diff --git a/src/IconFeatureSearchRoundedFilled.tsx b/src/IconFeatureSearchRoundedFilled.tsx index 0d0c25f76..ecb6cf0a7 100644 --- a/src/IconFeatureSearchRoundedFilled.tsx +++ b/src/IconFeatureSearchRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconFeatureSearchRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconFeatureSearchRoundedFilled as default } +export default IconFeatureSearchRoundedFilled diff --git a/src/IconFeatureSearchSharp.tsx b/src/IconFeatureSearchSharp.tsx index f52c06704..fff99a05c 100644 --- a/src/IconFeatureSearchSharp.tsx +++ b/src/IconFeatureSearchSharp.tsx @@ -8,4 +8,4 @@ const IconFeatureSearchSharp: React.FC = ({ ...props }) => ( ) -export { IconFeatureSearchSharp as default } +export default IconFeatureSearchSharp diff --git a/src/IconFeatureSearchSharpFilled.tsx b/src/IconFeatureSearchSharpFilled.tsx index 4146d0b73..324708c5c 100644 --- a/src/IconFeatureSearchSharpFilled.tsx +++ b/src/IconFeatureSearchSharpFilled.tsx @@ -8,4 +8,4 @@ const IconFeatureSearchSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconFeatureSearchSharpFilled as default } +export default IconFeatureSearchSharpFilled diff --git a/src/IconFeaturedPlayListOutlined.tsx b/src/IconFeaturedPlayListOutlined.tsx index 2e66eca4a..ffff381d7 100644 --- a/src/IconFeaturedPlayListOutlined.tsx +++ b/src/IconFeaturedPlayListOutlined.tsx @@ -8,4 +8,4 @@ const IconFeaturedPlayListOutlined: React.FC = ({ ...props }) => ( ) -export { IconFeaturedPlayListOutlined as default } +export default IconFeaturedPlayListOutlined diff --git a/src/IconFeaturedPlayListOutlinedFilled.tsx b/src/IconFeaturedPlayListOutlinedFilled.tsx index 3a9d78a0f..3286f0eb2 100644 --- a/src/IconFeaturedPlayListOutlinedFilled.tsx +++ b/src/IconFeaturedPlayListOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconFeaturedPlayListOutlinedFilled: React.FC = ({ ) -export { IconFeaturedPlayListOutlinedFilled as default } +export default IconFeaturedPlayListOutlinedFilled diff --git a/src/IconFeaturedPlayListRounded.tsx b/src/IconFeaturedPlayListRounded.tsx index 0d2db80a5..d43975da9 100644 --- a/src/IconFeaturedPlayListRounded.tsx +++ b/src/IconFeaturedPlayListRounded.tsx @@ -8,4 +8,4 @@ const IconFeaturedPlayListRounded: React.FC = ({ ...props }) => ( ) -export { IconFeaturedPlayListRounded as default } +export default IconFeaturedPlayListRounded diff --git a/src/IconFeaturedPlayListRoundedFilled.tsx b/src/IconFeaturedPlayListRoundedFilled.tsx index cb5058937..2de16466d 100644 --- a/src/IconFeaturedPlayListRoundedFilled.tsx +++ b/src/IconFeaturedPlayListRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconFeaturedPlayListRoundedFilled: React.FC = ({ ) -export { IconFeaturedPlayListRoundedFilled as default } +export default IconFeaturedPlayListRoundedFilled diff --git a/src/IconFeaturedPlayListSharp.tsx b/src/IconFeaturedPlayListSharp.tsx index d11a2cc70..9686c5f0f 100644 --- a/src/IconFeaturedPlayListSharp.tsx +++ b/src/IconFeaturedPlayListSharp.tsx @@ -8,4 +8,4 @@ const IconFeaturedPlayListSharp: React.FC = ({ ...props }) => ( ) -export { IconFeaturedPlayListSharp as default } +export default IconFeaturedPlayListSharp diff --git a/src/IconFeaturedPlayListSharpFilled.tsx b/src/IconFeaturedPlayListSharpFilled.tsx index ecd9f6a70..f589af9cd 100644 --- a/src/IconFeaturedPlayListSharpFilled.tsx +++ b/src/IconFeaturedPlayListSharpFilled.tsx @@ -8,4 +8,4 @@ const IconFeaturedPlayListSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconFeaturedPlayListSharpFilled as default } +export default IconFeaturedPlayListSharpFilled diff --git a/src/IconFeaturedSeasonalAndGiftsOutlined.tsx b/src/IconFeaturedSeasonalAndGiftsOutlined.tsx index 0085dbc75..bc4d816d2 100644 --- a/src/IconFeaturedSeasonalAndGiftsOutlined.tsx +++ b/src/IconFeaturedSeasonalAndGiftsOutlined.tsx @@ -10,4 +10,4 @@ const IconFeaturedSeasonalAndGiftsOutlined: React.FC = ({ ) -export { IconFeaturedSeasonalAndGiftsOutlined as default } +export default IconFeaturedSeasonalAndGiftsOutlined diff --git a/src/IconFeaturedSeasonalAndGiftsOutlinedFilled.tsx b/src/IconFeaturedSeasonalAndGiftsOutlinedFilled.tsx index 69265803d..34e0b4cb6 100644 --- a/src/IconFeaturedSeasonalAndGiftsOutlinedFilled.tsx +++ b/src/IconFeaturedSeasonalAndGiftsOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconFeaturedSeasonalAndGiftsOutlinedFilled: React.FC = ({ ) -export { IconFeaturedSeasonalAndGiftsOutlinedFilled as default } +export default IconFeaturedSeasonalAndGiftsOutlinedFilled diff --git a/src/IconFeaturedSeasonalAndGiftsRounded.tsx b/src/IconFeaturedSeasonalAndGiftsRounded.tsx index f2b08d4e7..49cf938a9 100644 --- a/src/IconFeaturedSeasonalAndGiftsRounded.tsx +++ b/src/IconFeaturedSeasonalAndGiftsRounded.tsx @@ -10,4 +10,4 @@ const IconFeaturedSeasonalAndGiftsRounded: React.FC = ({ ) -export { IconFeaturedSeasonalAndGiftsRounded as default } +export default IconFeaturedSeasonalAndGiftsRounded diff --git a/src/IconFeaturedSeasonalAndGiftsRoundedFilled.tsx b/src/IconFeaturedSeasonalAndGiftsRoundedFilled.tsx index 6b08e970e..a83ada5d6 100644 --- a/src/IconFeaturedSeasonalAndGiftsRoundedFilled.tsx +++ b/src/IconFeaturedSeasonalAndGiftsRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconFeaturedSeasonalAndGiftsRoundedFilled: React.FC = ({ ) -export { IconFeaturedSeasonalAndGiftsRoundedFilled as default } +export default IconFeaturedSeasonalAndGiftsRoundedFilled diff --git a/src/IconFeaturedSeasonalAndGiftsSharp.tsx b/src/IconFeaturedSeasonalAndGiftsSharp.tsx index 875e87933..3de9dd1c8 100644 --- a/src/IconFeaturedSeasonalAndGiftsSharp.tsx +++ b/src/IconFeaturedSeasonalAndGiftsSharp.tsx @@ -10,4 +10,4 @@ const IconFeaturedSeasonalAndGiftsSharp: React.FC = ({ ) -export { IconFeaturedSeasonalAndGiftsSharp as default } +export default IconFeaturedSeasonalAndGiftsSharp diff --git a/src/IconFeaturedSeasonalAndGiftsSharpFilled.tsx b/src/IconFeaturedSeasonalAndGiftsSharpFilled.tsx index dbd218a62..d1a7dd26d 100644 --- a/src/IconFeaturedSeasonalAndGiftsSharpFilled.tsx +++ b/src/IconFeaturedSeasonalAndGiftsSharpFilled.tsx @@ -10,4 +10,4 @@ const IconFeaturedSeasonalAndGiftsSharpFilled: React.FC = ({ ) -export { IconFeaturedSeasonalAndGiftsSharpFilled as default } +export default IconFeaturedSeasonalAndGiftsSharpFilled diff --git a/src/IconFeaturedVideoOutlined.tsx b/src/IconFeaturedVideoOutlined.tsx index d72e9bab2..290bc3aac 100644 --- a/src/IconFeaturedVideoOutlined.tsx +++ b/src/IconFeaturedVideoOutlined.tsx @@ -8,4 +8,4 @@ const IconFeaturedVideoOutlined: React.FC = ({ ...props }) => ( ) -export { IconFeaturedVideoOutlined as default } +export default IconFeaturedVideoOutlined diff --git a/src/IconFeaturedVideoOutlinedFilled.tsx b/src/IconFeaturedVideoOutlinedFilled.tsx index 6558163cd..f3a6fd407 100644 --- a/src/IconFeaturedVideoOutlinedFilled.tsx +++ b/src/IconFeaturedVideoOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconFeaturedVideoOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconFeaturedVideoOutlinedFilled as default } +export default IconFeaturedVideoOutlinedFilled diff --git a/src/IconFeaturedVideoRounded.tsx b/src/IconFeaturedVideoRounded.tsx index 9c69dbc71..189a53b63 100644 --- a/src/IconFeaturedVideoRounded.tsx +++ b/src/IconFeaturedVideoRounded.tsx @@ -8,4 +8,4 @@ const IconFeaturedVideoRounded: React.FC = ({ ...props }) => ( ) -export { IconFeaturedVideoRounded as default } +export default IconFeaturedVideoRounded diff --git a/src/IconFeaturedVideoRoundedFilled.tsx b/src/IconFeaturedVideoRoundedFilled.tsx index 2c2f96edb..603b8792f 100644 --- a/src/IconFeaturedVideoRoundedFilled.tsx +++ b/src/IconFeaturedVideoRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconFeaturedVideoRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconFeaturedVideoRoundedFilled as default } +export default IconFeaturedVideoRoundedFilled diff --git a/src/IconFeaturedVideoSharp.tsx b/src/IconFeaturedVideoSharp.tsx index ec8fcab8a..e195fabf5 100644 --- a/src/IconFeaturedVideoSharp.tsx +++ b/src/IconFeaturedVideoSharp.tsx @@ -8,4 +8,4 @@ const IconFeaturedVideoSharp: React.FC = ({ ...props }) => ( ) -export { IconFeaturedVideoSharp as default } +export default IconFeaturedVideoSharp diff --git a/src/IconFeaturedVideoSharpFilled.tsx b/src/IconFeaturedVideoSharpFilled.tsx index 09c6f3591..3ce6fdd1f 100644 --- a/src/IconFeaturedVideoSharpFilled.tsx +++ b/src/IconFeaturedVideoSharpFilled.tsx @@ -8,4 +8,4 @@ const IconFeaturedVideoSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconFeaturedVideoSharpFilled as default } +export default IconFeaturedVideoSharpFilled diff --git a/src/IconFeedbackOutlined.tsx b/src/IconFeedbackOutlined.tsx index 9c3d3e2ec..5e54599d4 100644 --- a/src/IconFeedbackOutlined.tsx +++ b/src/IconFeedbackOutlined.tsx @@ -8,4 +8,4 @@ const IconFeedbackOutlined: React.FC = ({ ...props }) => ( ) -export { IconFeedbackOutlined as default } +export default IconFeedbackOutlined diff --git a/src/IconFeedbackOutlinedFilled.tsx b/src/IconFeedbackOutlinedFilled.tsx index e1ce72867..68e5d8117 100644 --- a/src/IconFeedbackOutlinedFilled.tsx +++ b/src/IconFeedbackOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconFeedbackOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconFeedbackOutlinedFilled as default } +export default IconFeedbackOutlinedFilled diff --git a/src/IconFeedbackRounded.tsx b/src/IconFeedbackRounded.tsx index cf19ae2c6..700e3ab4d 100644 --- a/src/IconFeedbackRounded.tsx +++ b/src/IconFeedbackRounded.tsx @@ -8,4 +8,4 @@ const IconFeedbackRounded: React.FC = ({ ...props }) => ( ) -export { IconFeedbackRounded as default } +export default IconFeedbackRounded diff --git a/src/IconFeedbackRoundedFilled.tsx b/src/IconFeedbackRoundedFilled.tsx index e296d2f6f..c34aebff0 100644 --- a/src/IconFeedbackRoundedFilled.tsx +++ b/src/IconFeedbackRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconFeedbackRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconFeedbackRoundedFilled as default } +export default IconFeedbackRoundedFilled diff --git a/src/IconFeedbackSharp.tsx b/src/IconFeedbackSharp.tsx index fe4d1a84b..b263f9495 100644 --- a/src/IconFeedbackSharp.tsx +++ b/src/IconFeedbackSharp.tsx @@ -8,4 +8,4 @@ const IconFeedbackSharp: React.FC = ({ ...props }) => ( ) -export { IconFeedbackSharp as default } +export default IconFeedbackSharp diff --git a/src/IconFeedbackSharpFilled.tsx b/src/IconFeedbackSharpFilled.tsx index 8fd6d4789..950a69052 100644 --- a/src/IconFeedbackSharpFilled.tsx +++ b/src/IconFeedbackSharpFilled.tsx @@ -8,4 +8,4 @@ const IconFeedbackSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconFeedbackSharpFilled as default } +export default IconFeedbackSharpFilled diff --git a/src/IconFemaleOutlined.tsx b/src/IconFemaleOutlined.tsx index 7da54fb8a..60868fd68 100644 --- a/src/IconFemaleOutlined.tsx +++ b/src/IconFemaleOutlined.tsx @@ -8,4 +8,4 @@ const IconFemaleOutlined: React.FC = ({ ...props }) => ( ) -export { IconFemaleOutlined as default } +export default IconFemaleOutlined diff --git a/src/IconFemaleOutlinedFilled.tsx b/src/IconFemaleOutlinedFilled.tsx index 07a18087c..d5d01cc10 100644 --- a/src/IconFemaleOutlinedFilled.tsx +++ b/src/IconFemaleOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconFemaleOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconFemaleOutlinedFilled as default } +export default IconFemaleOutlinedFilled diff --git a/src/IconFemaleRounded.tsx b/src/IconFemaleRounded.tsx index 0d1b2a815..ba43efff4 100644 --- a/src/IconFemaleRounded.tsx +++ b/src/IconFemaleRounded.tsx @@ -8,4 +8,4 @@ const IconFemaleRounded: React.FC = ({ ...props }) => ( ) -export { IconFemaleRounded as default } +export default IconFemaleRounded diff --git a/src/IconFemaleRoundedFilled.tsx b/src/IconFemaleRoundedFilled.tsx index da38df8f6..c71f8924e 100644 --- a/src/IconFemaleRoundedFilled.tsx +++ b/src/IconFemaleRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconFemaleRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconFemaleRoundedFilled as default } +export default IconFemaleRoundedFilled diff --git a/src/IconFemaleSharp.tsx b/src/IconFemaleSharp.tsx index 5a0f69922..d33402b14 100644 --- a/src/IconFemaleSharp.tsx +++ b/src/IconFemaleSharp.tsx @@ -8,4 +8,4 @@ const IconFemaleSharp: React.FC = ({ ...props }) => ( ) -export { IconFemaleSharp as default } +export default IconFemaleSharp diff --git a/src/IconFemaleSharpFilled.tsx b/src/IconFemaleSharpFilled.tsx index 8ff37d269..0a9517229 100644 --- a/src/IconFemaleSharpFilled.tsx +++ b/src/IconFemaleSharpFilled.tsx @@ -8,4 +8,4 @@ const IconFemaleSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconFemaleSharpFilled as default } +export default IconFemaleSharpFilled diff --git a/src/IconFemurAltOutlined.tsx b/src/IconFemurAltOutlined.tsx index a674d304a..44283f74f 100644 --- a/src/IconFemurAltOutlined.tsx +++ b/src/IconFemurAltOutlined.tsx @@ -8,4 +8,4 @@ const IconFemurAltOutlined: React.FC = ({ ...props }) => ( ) -export { IconFemurAltOutlined as default } +export default IconFemurAltOutlined diff --git a/src/IconFemurAltOutlinedFilled.tsx b/src/IconFemurAltOutlinedFilled.tsx index d83bf73a4..69c5b29ff 100644 --- a/src/IconFemurAltOutlinedFilled.tsx +++ b/src/IconFemurAltOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconFemurAltOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconFemurAltOutlinedFilled as default } +export default IconFemurAltOutlinedFilled diff --git a/src/IconFemurAltRounded.tsx b/src/IconFemurAltRounded.tsx index 15620ab98..da61c8374 100644 --- a/src/IconFemurAltRounded.tsx +++ b/src/IconFemurAltRounded.tsx @@ -8,4 +8,4 @@ const IconFemurAltRounded: React.FC = ({ ...props }) => ( ) -export { IconFemurAltRounded as default } +export default IconFemurAltRounded diff --git a/src/IconFemurAltRoundedFilled.tsx b/src/IconFemurAltRoundedFilled.tsx index c0ce92492..f7866fd65 100644 --- a/src/IconFemurAltRoundedFilled.tsx +++ b/src/IconFemurAltRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconFemurAltRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconFemurAltRoundedFilled as default } +export default IconFemurAltRoundedFilled diff --git a/src/IconFemurAltSharp.tsx b/src/IconFemurAltSharp.tsx index 45521701d..5ddd3eeec 100644 --- a/src/IconFemurAltSharp.tsx +++ b/src/IconFemurAltSharp.tsx @@ -8,4 +8,4 @@ const IconFemurAltSharp: React.FC = ({ ...props }) => ( ) -export { IconFemurAltSharp as default } +export default IconFemurAltSharp diff --git a/src/IconFemurAltSharpFilled.tsx b/src/IconFemurAltSharpFilled.tsx index 301cc4043..106ead797 100644 --- a/src/IconFemurAltSharpFilled.tsx +++ b/src/IconFemurAltSharpFilled.tsx @@ -8,4 +8,4 @@ const IconFemurAltSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconFemurAltSharpFilled as default } +export default IconFemurAltSharpFilled diff --git a/src/IconFemurOutlined.tsx b/src/IconFemurOutlined.tsx index 60df89bd3..586bd4151 100644 --- a/src/IconFemurOutlined.tsx +++ b/src/IconFemurOutlined.tsx @@ -8,4 +8,4 @@ const IconFemurOutlined: React.FC = ({ ...props }) => ( ) -export { IconFemurOutlined as default } +export default IconFemurOutlined diff --git a/src/IconFemurOutlinedFilled.tsx b/src/IconFemurOutlinedFilled.tsx index da3cb1ad3..5e1d60b6e 100644 --- a/src/IconFemurOutlinedFilled.tsx +++ b/src/IconFemurOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconFemurOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconFemurOutlinedFilled as default } +export default IconFemurOutlinedFilled diff --git a/src/IconFemurRounded.tsx b/src/IconFemurRounded.tsx index da72d0051..338e8ea1b 100644 --- a/src/IconFemurRounded.tsx +++ b/src/IconFemurRounded.tsx @@ -8,4 +8,4 @@ const IconFemurRounded: React.FC = ({ ...props }) => ( ) -export { IconFemurRounded as default } +export default IconFemurRounded diff --git a/src/IconFemurRoundedFilled.tsx b/src/IconFemurRoundedFilled.tsx index b7d2accc8..a311a961b 100644 --- a/src/IconFemurRoundedFilled.tsx +++ b/src/IconFemurRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconFemurRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconFemurRoundedFilled as default } +export default IconFemurRoundedFilled diff --git a/src/IconFemurSharp.tsx b/src/IconFemurSharp.tsx index 8e0e70eb3..ee3226f90 100644 --- a/src/IconFemurSharp.tsx +++ b/src/IconFemurSharp.tsx @@ -8,4 +8,4 @@ const IconFemurSharp: React.FC = ({ ...props }) => ( ) -export { IconFemurSharp as default } +export default IconFemurSharp diff --git a/src/IconFemurSharpFilled.tsx b/src/IconFemurSharpFilled.tsx index 831ec0a9e..77bbcd640 100644 --- a/src/IconFemurSharpFilled.tsx +++ b/src/IconFemurSharpFilled.tsx @@ -8,4 +8,4 @@ const IconFemurSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconFemurSharpFilled as default } +export default IconFemurSharpFilled diff --git a/src/IconFenceOutlined.tsx b/src/IconFenceOutlined.tsx index 6e0c4ab06..126abdecc 100644 --- a/src/IconFenceOutlined.tsx +++ b/src/IconFenceOutlined.tsx @@ -8,4 +8,4 @@ const IconFenceOutlined: React.FC = ({ ...props }) => ( ) -export { IconFenceOutlined as default } +export default IconFenceOutlined diff --git a/src/IconFenceOutlinedFilled.tsx b/src/IconFenceOutlinedFilled.tsx index ebc2958bb..c270c22c0 100644 --- a/src/IconFenceOutlinedFilled.tsx +++ b/src/IconFenceOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconFenceOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconFenceOutlinedFilled as default } +export default IconFenceOutlinedFilled diff --git a/src/IconFenceRounded.tsx b/src/IconFenceRounded.tsx index ed70f8a65..772f81695 100644 --- a/src/IconFenceRounded.tsx +++ b/src/IconFenceRounded.tsx @@ -8,4 +8,4 @@ const IconFenceRounded: React.FC = ({ ...props }) => ( ) -export { IconFenceRounded as default } +export default IconFenceRounded diff --git a/src/IconFenceRoundedFilled.tsx b/src/IconFenceRoundedFilled.tsx index 67ea6eba8..093c76021 100644 --- a/src/IconFenceRoundedFilled.tsx +++ b/src/IconFenceRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconFenceRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconFenceRoundedFilled as default } +export default IconFenceRoundedFilled diff --git a/src/IconFenceSharp.tsx b/src/IconFenceSharp.tsx index 94f7437ac..03c4e434a 100644 --- a/src/IconFenceSharp.tsx +++ b/src/IconFenceSharp.tsx @@ -8,4 +8,4 @@ const IconFenceSharp: React.FC = ({ ...props }) => ( ) -export { IconFenceSharp as default } +export default IconFenceSharp diff --git a/src/IconFenceSharpFilled.tsx b/src/IconFenceSharpFilled.tsx index b45b650f1..48fe3ffae 100644 --- a/src/IconFenceSharpFilled.tsx +++ b/src/IconFenceSharpFilled.tsx @@ -8,4 +8,4 @@ const IconFenceSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconFenceSharpFilled as default } +export default IconFenceSharpFilled diff --git a/src/IconFertileOutlined.tsx b/src/IconFertileOutlined.tsx index f5f9a4453..f8982de8f 100644 --- a/src/IconFertileOutlined.tsx +++ b/src/IconFertileOutlined.tsx @@ -8,4 +8,4 @@ const IconFertileOutlined: React.FC = ({ ...props }) => ( ) -export { IconFertileOutlined as default } +export default IconFertileOutlined diff --git a/src/IconFertileOutlinedFilled.tsx b/src/IconFertileOutlinedFilled.tsx index cf3a8be0a..739f0717a 100644 --- a/src/IconFertileOutlinedFilled.tsx +++ b/src/IconFertileOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconFertileOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconFertileOutlinedFilled as default } +export default IconFertileOutlinedFilled diff --git a/src/IconFertileRounded.tsx b/src/IconFertileRounded.tsx index 7941ef6f3..7432a00d6 100644 --- a/src/IconFertileRounded.tsx +++ b/src/IconFertileRounded.tsx @@ -8,4 +8,4 @@ const IconFertileRounded: React.FC = ({ ...props }) => ( ) -export { IconFertileRounded as default } +export default IconFertileRounded diff --git a/src/IconFertileRoundedFilled.tsx b/src/IconFertileRoundedFilled.tsx index 06adc05bd..b658b5d1c 100644 --- a/src/IconFertileRoundedFilled.tsx +++ b/src/IconFertileRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconFertileRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconFertileRoundedFilled as default } +export default IconFertileRoundedFilled diff --git a/src/IconFertileSharp.tsx b/src/IconFertileSharp.tsx index eddfbe0ab..05f467b49 100644 --- a/src/IconFertileSharp.tsx +++ b/src/IconFertileSharp.tsx @@ -8,4 +8,4 @@ const IconFertileSharp: React.FC = ({ ...props }) => ( ) -export { IconFertileSharp as default } +export default IconFertileSharp diff --git a/src/IconFertileSharpFilled.tsx b/src/IconFertileSharpFilled.tsx index 2f74fad3a..cb7c056ed 100644 --- a/src/IconFertileSharpFilled.tsx +++ b/src/IconFertileSharpFilled.tsx @@ -8,4 +8,4 @@ const IconFertileSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconFertileSharpFilled as default } +export default IconFertileSharpFilled diff --git a/src/IconFestivalOutlined.tsx b/src/IconFestivalOutlined.tsx index 9d26c08af..94d5f5d95 100644 --- a/src/IconFestivalOutlined.tsx +++ b/src/IconFestivalOutlined.tsx @@ -8,4 +8,4 @@ const IconFestivalOutlined: React.FC = ({ ...props }) => ( ) -export { IconFestivalOutlined as default } +export default IconFestivalOutlined diff --git a/src/IconFestivalOutlinedFilled.tsx b/src/IconFestivalOutlinedFilled.tsx index d41e6d581..4ee14f2e7 100644 --- a/src/IconFestivalOutlinedFilled.tsx +++ b/src/IconFestivalOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconFestivalOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconFestivalOutlinedFilled as default } +export default IconFestivalOutlinedFilled diff --git a/src/IconFestivalRounded.tsx b/src/IconFestivalRounded.tsx index f17a5f48c..e3309019b 100644 --- a/src/IconFestivalRounded.tsx +++ b/src/IconFestivalRounded.tsx @@ -8,4 +8,4 @@ const IconFestivalRounded: React.FC = ({ ...props }) => ( ) -export { IconFestivalRounded as default } +export default IconFestivalRounded diff --git a/src/IconFestivalRoundedFilled.tsx b/src/IconFestivalRoundedFilled.tsx index 3f740b218..3e9b687e7 100644 --- a/src/IconFestivalRoundedFilled.tsx +++ b/src/IconFestivalRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconFestivalRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconFestivalRoundedFilled as default } +export default IconFestivalRoundedFilled diff --git a/src/IconFestivalSharp.tsx b/src/IconFestivalSharp.tsx index 7e3feaf60..3deeb59f1 100644 --- a/src/IconFestivalSharp.tsx +++ b/src/IconFestivalSharp.tsx @@ -8,4 +8,4 @@ const IconFestivalSharp: React.FC = ({ ...props }) => ( ) -export { IconFestivalSharp as default } +export default IconFestivalSharp diff --git a/src/IconFestivalSharpFilled.tsx b/src/IconFestivalSharpFilled.tsx index b4b60b189..8dc730ba7 100644 --- a/src/IconFestivalSharpFilled.tsx +++ b/src/IconFestivalSharpFilled.tsx @@ -8,4 +8,4 @@ const IconFestivalSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconFestivalSharpFilled as default } +export default IconFestivalSharpFilled diff --git a/src/IconFiberDvrOutlined.tsx b/src/IconFiberDvrOutlined.tsx index dfcd53f6b..3699f896f 100644 --- a/src/IconFiberDvrOutlined.tsx +++ b/src/IconFiberDvrOutlined.tsx @@ -8,4 +8,4 @@ const IconFiberDvrOutlined: React.FC = ({ ...props }) => ( ) -export { IconFiberDvrOutlined as default } +export default IconFiberDvrOutlined diff --git a/src/IconFiberDvrOutlinedFilled.tsx b/src/IconFiberDvrOutlinedFilled.tsx index 77ba803c1..b879ff332 100644 --- a/src/IconFiberDvrOutlinedFilled.tsx +++ b/src/IconFiberDvrOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconFiberDvrOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconFiberDvrOutlinedFilled as default } +export default IconFiberDvrOutlinedFilled diff --git a/src/IconFiberDvrRounded.tsx b/src/IconFiberDvrRounded.tsx index 763ed7951..469f64ff7 100644 --- a/src/IconFiberDvrRounded.tsx +++ b/src/IconFiberDvrRounded.tsx @@ -8,4 +8,4 @@ const IconFiberDvrRounded: React.FC = ({ ...props }) => ( ) -export { IconFiberDvrRounded as default } +export default IconFiberDvrRounded diff --git a/src/IconFiberDvrRoundedFilled.tsx b/src/IconFiberDvrRoundedFilled.tsx index 1d8b870ab..9454c5b42 100644 --- a/src/IconFiberDvrRoundedFilled.tsx +++ b/src/IconFiberDvrRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconFiberDvrRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconFiberDvrRoundedFilled as default } +export default IconFiberDvrRoundedFilled diff --git a/src/IconFiberDvrSharp.tsx b/src/IconFiberDvrSharp.tsx index b65fbd956..054c9e716 100644 --- a/src/IconFiberDvrSharp.tsx +++ b/src/IconFiberDvrSharp.tsx @@ -8,4 +8,4 @@ const IconFiberDvrSharp: React.FC = ({ ...props }) => ( ) -export { IconFiberDvrSharp as default } +export default IconFiberDvrSharp diff --git a/src/IconFiberDvrSharpFilled.tsx b/src/IconFiberDvrSharpFilled.tsx index 6d70c926a..13283de17 100644 --- a/src/IconFiberDvrSharpFilled.tsx +++ b/src/IconFiberDvrSharpFilled.tsx @@ -8,4 +8,4 @@ const IconFiberDvrSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconFiberDvrSharpFilled as default } +export default IconFiberDvrSharpFilled diff --git a/src/IconFiberManualRecordOutlined.tsx b/src/IconFiberManualRecordOutlined.tsx index 2ce9dd717..00d691abd 100644 --- a/src/IconFiberManualRecordOutlined.tsx +++ b/src/IconFiberManualRecordOutlined.tsx @@ -8,4 +8,4 @@ const IconFiberManualRecordOutlined: React.FC = ({ ...props }) => ( ) -export { IconFiberManualRecordOutlined as default } +export default IconFiberManualRecordOutlined diff --git a/src/IconFiberManualRecordOutlinedFilled.tsx b/src/IconFiberManualRecordOutlinedFilled.tsx index 8a4fe25f9..16c6b0698 100644 --- a/src/IconFiberManualRecordOutlinedFilled.tsx +++ b/src/IconFiberManualRecordOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconFiberManualRecordOutlinedFilled: React.FC = ({ ) -export { IconFiberManualRecordOutlinedFilled as default } +export default IconFiberManualRecordOutlinedFilled diff --git a/src/IconFiberManualRecordRounded.tsx b/src/IconFiberManualRecordRounded.tsx index 2ef8a3109..56818bb5c 100644 --- a/src/IconFiberManualRecordRounded.tsx +++ b/src/IconFiberManualRecordRounded.tsx @@ -8,4 +8,4 @@ const IconFiberManualRecordRounded: React.FC = ({ ...props }) => ( ) -export { IconFiberManualRecordRounded as default } +export default IconFiberManualRecordRounded diff --git a/src/IconFiberManualRecordRoundedFilled.tsx b/src/IconFiberManualRecordRoundedFilled.tsx index ae86a9c52..04ca757ed 100644 --- a/src/IconFiberManualRecordRoundedFilled.tsx +++ b/src/IconFiberManualRecordRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconFiberManualRecordRoundedFilled: React.FC = ({ ) -export { IconFiberManualRecordRoundedFilled as default } +export default IconFiberManualRecordRoundedFilled diff --git a/src/IconFiberManualRecordSharp.tsx b/src/IconFiberManualRecordSharp.tsx index 65f11e3df..2f3943842 100644 --- a/src/IconFiberManualRecordSharp.tsx +++ b/src/IconFiberManualRecordSharp.tsx @@ -8,4 +8,4 @@ const IconFiberManualRecordSharp: React.FC = ({ ...props }) => ( ) -export { IconFiberManualRecordSharp as default } +export default IconFiberManualRecordSharp diff --git a/src/IconFiberManualRecordSharpFilled.tsx b/src/IconFiberManualRecordSharpFilled.tsx index 1492f06cd..ace99bfc9 100644 --- a/src/IconFiberManualRecordSharpFilled.tsx +++ b/src/IconFiberManualRecordSharpFilled.tsx @@ -10,4 +10,4 @@ const IconFiberManualRecordSharpFilled: React.FC = ({ ) -export { IconFiberManualRecordSharpFilled as default } +export default IconFiberManualRecordSharpFilled diff --git a/src/IconFiberNewOutlined.tsx b/src/IconFiberNewOutlined.tsx index dc2c79490..e1ad8913b 100644 --- a/src/IconFiberNewOutlined.tsx +++ b/src/IconFiberNewOutlined.tsx @@ -8,4 +8,4 @@ const IconFiberNewOutlined: React.FC = ({ ...props }) => ( ) -export { IconFiberNewOutlined as default } +export default IconFiberNewOutlined diff --git a/src/IconFiberNewOutlinedFilled.tsx b/src/IconFiberNewOutlinedFilled.tsx index b3eeae441..96707dc54 100644 --- a/src/IconFiberNewOutlinedFilled.tsx +++ b/src/IconFiberNewOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconFiberNewOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconFiberNewOutlinedFilled as default } +export default IconFiberNewOutlinedFilled diff --git a/src/IconFiberNewRounded.tsx b/src/IconFiberNewRounded.tsx index cbdaf28d1..355acf767 100644 --- a/src/IconFiberNewRounded.tsx +++ b/src/IconFiberNewRounded.tsx @@ -8,4 +8,4 @@ const IconFiberNewRounded: React.FC = ({ ...props }) => ( ) -export { IconFiberNewRounded as default } +export default IconFiberNewRounded diff --git a/src/IconFiberNewRoundedFilled.tsx b/src/IconFiberNewRoundedFilled.tsx index 4d49c3c45..c875ea92e 100644 --- a/src/IconFiberNewRoundedFilled.tsx +++ b/src/IconFiberNewRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconFiberNewRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconFiberNewRoundedFilled as default } +export default IconFiberNewRoundedFilled diff --git a/src/IconFiberNewSharp.tsx b/src/IconFiberNewSharp.tsx index 1feb84f6f..3f06a0278 100644 --- a/src/IconFiberNewSharp.tsx +++ b/src/IconFiberNewSharp.tsx @@ -8,4 +8,4 @@ const IconFiberNewSharp: React.FC = ({ ...props }) => ( ) -export { IconFiberNewSharp as default } +export default IconFiberNewSharp diff --git a/src/IconFiberNewSharpFilled.tsx b/src/IconFiberNewSharpFilled.tsx index 30cb47449..1cdaa35eb 100644 --- a/src/IconFiberNewSharpFilled.tsx +++ b/src/IconFiberNewSharpFilled.tsx @@ -8,4 +8,4 @@ const IconFiberNewSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconFiberNewSharpFilled as default } +export default IconFiberNewSharpFilled diff --git a/src/IconFiberPinOutlined.tsx b/src/IconFiberPinOutlined.tsx index 28b46b59e..c5642ba81 100644 --- a/src/IconFiberPinOutlined.tsx +++ b/src/IconFiberPinOutlined.tsx @@ -8,4 +8,4 @@ const IconFiberPinOutlined: React.FC = ({ ...props }) => ( ) -export { IconFiberPinOutlined as default } +export default IconFiberPinOutlined diff --git a/src/IconFiberPinOutlinedFilled.tsx b/src/IconFiberPinOutlinedFilled.tsx index d422595de..0ac20f699 100644 --- a/src/IconFiberPinOutlinedFilled.tsx +++ b/src/IconFiberPinOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconFiberPinOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconFiberPinOutlinedFilled as default } +export default IconFiberPinOutlinedFilled diff --git a/src/IconFiberPinRounded.tsx b/src/IconFiberPinRounded.tsx index f7e95999c..ee194ea65 100644 --- a/src/IconFiberPinRounded.tsx +++ b/src/IconFiberPinRounded.tsx @@ -8,4 +8,4 @@ const IconFiberPinRounded: React.FC = ({ ...props }) => ( ) -export { IconFiberPinRounded as default } +export default IconFiberPinRounded diff --git a/src/IconFiberPinRoundedFilled.tsx b/src/IconFiberPinRoundedFilled.tsx index b03c24742..ea642d1a6 100644 --- a/src/IconFiberPinRoundedFilled.tsx +++ b/src/IconFiberPinRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconFiberPinRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconFiberPinRoundedFilled as default } +export default IconFiberPinRoundedFilled diff --git a/src/IconFiberPinSharp.tsx b/src/IconFiberPinSharp.tsx index 3a469be56..ff556fbd2 100644 --- a/src/IconFiberPinSharp.tsx +++ b/src/IconFiberPinSharp.tsx @@ -8,4 +8,4 @@ const IconFiberPinSharp: React.FC = ({ ...props }) => ( ) -export { IconFiberPinSharp as default } +export default IconFiberPinSharp diff --git a/src/IconFiberPinSharpFilled.tsx b/src/IconFiberPinSharpFilled.tsx index 942fc6cdc..fe963514d 100644 --- a/src/IconFiberPinSharpFilled.tsx +++ b/src/IconFiberPinSharpFilled.tsx @@ -8,4 +8,4 @@ const IconFiberPinSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconFiberPinSharpFilled as default } +export default IconFiberPinSharpFilled diff --git a/src/IconFiberSmartRecordOutlined.tsx b/src/IconFiberSmartRecordOutlined.tsx index f28339817..33e0e6df7 100644 --- a/src/IconFiberSmartRecordOutlined.tsx +++ b/src/IconFiberSmartRecordOutlined.tsx @@ -8,4 +8,4 @@ const IconFiberSmartRecordOutlined: React.FC = ({ ...props }) => ( ) -export { IconFiberSmartRecordOutlined as default } +export default IconFiberSmartRecordOutlined diff --git a/src/IconFiberSmartRecordOutlinedFilled.tsx b/src/IconFiberSmartRecordOutlinedFilled.tsx index 811019783..73c0e5596 100644 --- a/src/IconFiberSmartRecordOutlinedFilled.tsx +++ b/src/IconFiberSmartRecordOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconFiberSmartRecordOutlinedFilled: React.FC = ({ ) -export { IconFiberSmartRecordOutlinedFilled as default } +export default IconFiberSmartRecordOutlinedFilled diff --git a/src/IconFiberSmartRecordRounded.tsx b/src/IconFiberSmartRecordRounded.tsx index a50c24e8b..94813eba0 100644 --- a/src/IconFiberSmartRecordRounded.tsx +++ b/src/IconFiberSmartRecordRounded.tsx @@ -8,4 +8,4 @@ const IconFiberSmartRecordRounded: React.FC = ({ ...props }) => ( ) -export { IconFiberSmartRecordRounded as default } +export default IconFiberSmartRecordRounded diff --git a/src/IconFiberSmartRecordRoundedFilled.tsx b/src/IconFiberSmartRecordRoundedFilled.tsx index 55bd96adf..c4a0540f9 100644 --- a/src/IconFiberSmartRecordRoundedFilled.tsx +++ b/src/IconFiberSmartRecordRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconFiberSmartRecordRoundedFilled: React.FC = ({ ) -export { IconFiberSmartRecordRoundedFilled as default } +export default IconFiberSmartRecordRoundedFilled diff --git a/src/IconFiberSmartRecordSharp.tsx b/src/IconFiberSmartRecordSharp.tsx index fb37e3103..f969a4bef 100644 --- a/src/IconFiberSmartRecordSharp.tsx +++ b/src/IconFiberSmartRecordSharp.tsx @@ -8,4 +8,4 @@ const IconFiberSmartRecordSharp: React.FC = ({ ...props }) => ( ) -export { IconFiberSmartRecordSharp as default } +export default IconFiberSmartRecordSharp diff --git a/src/IconFiberSmartRecordSharpFilled.tsx b/src/IconFiberSmartRecordSharpFilled.tsx index 2bec92d80..80a23eab3 100644 --- a/src/IconFiberSmartRecordSharpFilled.tsx +++ b/src/IconFiberSmartRecordSharpFilled.tsx @@ -8,4 +8,4 @@ const IconFiberSmartRecordSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconFiberSmartRecordSharpFilled as default } +export default IconFiberSmartRecordSharpFilled diff --git a/src/IconFileCopyOffOutlined.tsx b/src/IconFileCopyOffOutlined.tsx index 8ee6a3610..4179b9791 100644 --- a/src/IconFileCopyOffOutlined.tsx +++ b/src/IconFileCopyOffOutlined.tsx @@ -8,4 +8,4 @@ const IconFileCopyOffOutlined: React.FC = ({ ...props }) => ( ) -export { IconFileCopyOffOutlined as default } +export default IconFileCopyOffOutlined diff --git a/src/IconFileCopyOffOutlinedFilled.tsx b/src/IconFileCopyOffOutlinedFilled.tsx index 015ef523e..25f274626 100644 --- a/src/IconFileCopyOffOutlinedFilled.tsx +++ b/src/IconFileCopyOffOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconFileCopyOffOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconFileCopyOffOutlinedFilled as default } +export default IconFileCopyOffOutlinedFilled diff --git a/src/IconFileCopyOffRounded.tsx b/src/IconFileCopyOffRounded.tsx index 7fe55ebfe..953b1ee81 100644 --- a/src/IconFileCopyOffRounded.tsx +++ b/src/IconFileCopyOffRounded.tsx @@ -8,4 +8,4 @@ const IconFileCopyOffRounded: React.FC = ({ ...props }) => ( ) -export { IconFileCopyOffRounded as default } +export default IconFileCopyOffRounded diff --git a/src/IconFileCopyOffRoundedFilled.tsx b/src/IconFileCopyOffRoundedFilled.tsx index ed1380220..4e609f7b8 100644 --- a/src/IconFileCopyOffRoundedFilled.tsx +++ b/src/IconFileCopyOffRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconFileCopyOffRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconFileCopyOffRoundedFilled as default } +export default IconFileCopyOffRoundedFilled diff --git a/src/IconFileCopyOffSharp.tsx b/src/IconFileCopyOffSharp.tsx index 11ffe26d9..7e8acce9b 100644 --- a/src/IconFileCopyOffSharp.tsx +++ b/src/IconFileCopyOffSharp.tsx @@ -8,4 +8,4 @@ const IconFileCopyOffSharp: React.FC = ({ ...props }) => ( ) -export { IconFileCopyOffSharp as default } +export default IconFileCopyOffSharp diff --git a/src/IconFileCopyOffSharpFilled.tsx b/src/IconFileCopyOffSharpFilled.tsx index 61c3d1ecc..deeebbdc9 100644 --- a/src/IconFileCopyOffSharpFilled.tsx +++ b/src/IconFileCopyOffSharpFilled.tsx @@ -8,4 +8,4 @@ const IconFileCopyOffSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconFileCopyOffSharpFilled as default } +export default IconFileCopyOffSharpFilled diff --git a/src/IconFileCopyOutlined.tsx b/src/IconFileCopyOutlined.tsx index 73785dda8..e13dc5bb4 100644 --- a/src/IconFileCopyOutlined.tsx +++ b/src/IconFileCopyOutlined.tsx @@ -8,4 +8,4 @@ const IconFileCopyOutlined: React.FC = ({ ...props }) => ( ) -export { IconFileCopyOutlined as default } +export default IconFileCopyOutlined diff --git a/src/IconFileCopyOutlinedFilled.tsx b/src/IconFileCopyOutlinedFilled.tsx index f40bb38ea..e85b0b7f5 100644 --- a/src/IconFileCopyOutlinedFilled.tsx +++ b/src/IconFileCopyOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconFileCopyOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconFileCopyOutlinedFilled as default } +export default IconFileCopyOutlinedFilled diff --git a/src/IconFileCopyRounded.tsx b/src/IconFileCopyRounded.tsx index 868af2552..718697e9a 100644 --- a/src/IconFileCopyRounded.tsx +++ b/src/IconFileCopyRounded.tsx @@ -8,4 +8,4 @@ const IconFileCopyRounded: React.FC = ({ ...props }) => ( ) -export { IconFileCopyRounded as default } +export default IconFileCopyRounded diff --git a/src/IconFileCopyRoundedFilled.tsx b/src/IconFileCopyRoundedFilled.tsx index 1a4a2f149..61795a6c8 100644 --- a/src/IconFileCopyRoundedFilled.tsx +++ b/src/IconFileCopyRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconFileCopyRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconFileCopyRoundedFilled as default } +export default IconFileCopyRoundedFilled diff --git a/src/IconFileCopySharp.tsx b/src/IconFileCopySharp.tsx index 7e3d07303..6ebf5b47b 100644 --- a/src/IconFileCopySharp.tsx +++ b/src/IconFileCopySharp.tsx @@ -8,4 +8,4 @@ const IconFileCopySharp: React.FC = ({ ...props }) => ( ) -export { IconFileCopySharp as default } +export default IconFileCopySharp diff --git a/src/IconFileCopySharpFilled.tsx b/src/IconFileCopySharpFilled.tsx index 9ce2eb78d..903edd91f 100644 --- a/src/IconFileCopySharpFilled.tsx +++ b/src/IconFileCopySharpFilled.tsx @@ -8,4 +8,4 @@ const IconFileCopySharpFilled: React.FC = ({ ...props }) => ( ) -export { IconFileCopySharpFilled as default } +export default IconFileCopySharpFilled diff --git a/src/IconFileDownloadOffOutlined.tsx b/src/IconFileDownloadOffOutlined.tsx index a291048e7..ba9fe42e9 100644 --- a/src/IconFileDownloadOffOutlined.tsx +++ b/src/IconFileDownloadOffOutlined.tsx @@ -8,4 +8,4 @@ const IconFileDownloadOffOutlined: React.FC = ({ ...props }) => ( ) -export { IconFileDownloadOffOutlined as default } +export default IconFileDownloadOffOutlined diff --git a/src/IconFileDownloadOffOutlinedFilled.tsx b/src/IconFileDownloadOffOutlinedFilled.tsx index 7eab03fa8..74a085e20 100644 --- a/src/IconFileDownloadOffOutlinedFilled.tsx +++ b/src/IconFileDownloadOffOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconFileDownloadOffOutlinedFilled: React.FC = ({ ) -export { IconFileDownloadOffOutlinedFilled as default } +export default IconFileDownloadOffOutlinedFilled diff --git a/src/IconFileDownloadOffRounded.tsx b/src/IconFileDownloadOffRounded.tsx index 8ef15135e..f6b18ff29 100644 --- a/src/IconFileDownloadOffRounded.tsx +++ b/src/IconFileDownloadOffRounded.tsx @@ -8,4 +8,4 @@ const IconFileDownloadOffRounded: React.FC = ({ ...props }) => ( ) -export { IconFileDownloadOffRounded as default } +export default IconFileDownloadOffRounded diff --git a/src/IconFileDownloadOffRoundedFilled.tsx b/src/IconFileDownloadOffRoundedFilled.tsx index 76d3518e9..55ce272b6 100644 --- a/src/IconFileDownloadOffRoundedFilled.tsx +++ b/src/IconFileDownloadOffRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconFileDownloadOffRoundedFilled: React.FC = ({ ) -export { IconFileDownloadOffRoundedFilled as default } +export default IconFileDownloadOffRoundedFilled diff --git a/src/IconFileDownloadOffSharp.tsx b/src/IconFileDownloadOffSharp.tsx index bfa31fcba..52dab9aeb 100644 --- a/src/IconFileDownloadOffSharp.tsx +++ b/src/IconFileDownloadOffSharp.tsx @@ -8,4 +8,4 @@ const IconFileDownloadOffSharp: React.FC = ({ ...props }) => ( ) -export { IconFileDownloadOffSharp as default } +export default IconFileDownloadOffSharp diff --git a/src/IconFileDownloadOffSharpFilled.tsx b/src/IconFileDownloadOffSharpFilled.tsx index 26dd3160c..2077b5903 100644 --- a/src/IconFileDownloadOffSharpFilled.tsx +++ b/src/IconFileDownloadOffSharpFilled.tsx @@ -8,4 +8,4 @@ const IconFileDownloadOffSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconFileDownloadOffSharpFilled as default } +export default IconFileDownloadOffSharpFilled diff --git a/src/IconFileMapOutlined.tsx b/src/IconFileMapOutlined.tsx index 9d2839281..94d7abeb4 100644 --- a/src/IconFileMapOutlined.tsx +++ b/src/IconFileMapOutlined.tsx @@ -8,4 +8,4 @@ const IconFileMapOutlined: React.FC = ({ ...props }) => ( ) -export { IconFileMapOutlined as default } +export default IconFileMapOutlined diff --git a/src/IconFileMapOutlinedFilled.tsx b/src/IconFileMapOutlinedFilled.tsx index 7132ec20c..7315fd1d1 100644 --- a/src/IconFileMapOutlinedFilled.tsx +++ b/src/IconFileMapOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconFileMapOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconFileMapOutlinedFilled as default } +export default IconFileMapOutlinedFilled diff --git a/src/IconFileMapRounded.tsx b/src/IconFileMapRounded.tsx index 120f40271..b8e743785 100644 --- a/src/IconFileMapRounded.tsx +++ b/src/IconFileMapRounded.tsx @@ -8,4 +8,4 @@ const IconFileMapRounded: React.FC = ({ ...props }) => ( ) -export { IconFileMapRounded as default } +export default IconFileMapRounded diff --git a/src/IconFileMapRoundedFilled.tsx b/src/IconFileMapRoundedFilled.tsx index de5a4cbb5..46affb46b 100644 --- a/src/IconFileMapRoundedFilled.tsx +++ b/src/IconFileMapRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconFileMapRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconFileMapRoundedFilled as default } +export default IconFileMapRoundedFilled diff --git a/src/IconFileMapSharp.tsx b/src/IconFileMapSharp.tsx index ea0923034..717377d86 100644 --- a/src/IconFileMapSharp.tsx +++ b/src/IconFileMapSharp.tsx @@ -8,4 +8,4 @@ const IconFileMapSharp: React.FC = ({ ...props }) => ( ) -export { IconFileMapSharp as default } +export default IconFileMapSharp diff --git a/src/IconFileMapSharpFilled.tsx b/src/IconFileMapSharpFilled.tsx index d4ded704c..c6b892674 100644 --- a/src/IconFileMapSharpFilled.tsx +++ b/src/IconFileMapSharpFilled.tsx @@ -8,4 +8,4 @@ const IconFileMapSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconFileMapSharpFilled as default } +export default IconFileMapSharpFilled diff --git a/src/IconFileOpenOutlined.tsx b/src/IconFileOpenOutlined.tsx index bccf9e3cf..538269f5b 100644 --- a/src/IconFileOpenOutlined.tsx +++ b/src/IconFileOpenOutlined.tsx @@ -8,4 +8,4 @@ const IconFileOpenOutlined: React.FC = ({ ...props }) => ( ) -export { IconFileOpenOutlined as default } +export default IconFileOpenOutlined diff --git a/src/IconFileOpenOutlinedFilled.tsx b/src/IconFileOpenOutlinedFilled.tsx index 6bbe96d08..24cbca4a9 100644 --- a/src/IconFileOpenOutlinedFilled.tsx +++ b/src/IconFileOpenOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconFileOpenOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconFileOpenOutlinedFilled as default } +export default IconFileOpenOutlinedFilled diff --git a/src/IconFileOpenRounded.tsx b/src/IconFileOpenRounded.tsx index ada6e01db..934f903af 100644 --- a/src/IconFileOpenRounded.tsx +++ b/src/IconFileOpenRounded.tsx @@ -8,4 +8,4 @@ const IconFileOpenRounded: React.FC = ({ ...props }) => ( ) -export { IconFileOpenRounded as default } +export default IconFileOpenRounded diff --git a/src/IconFileOpenRoundedFilled.tsx b/src/IconFileOpenRoundedFilled.tsx index 99bff4bcc..01a6bc6a6 100644 --- a/src/IconFileOpenRoundedFilled.tsx +++ b/src/IconFileOpenRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconFileOpenRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconFileOpenRoundedFilled as default } +export default IconFileOpenRoundedFilled diff --git a/src/IconFileOpenSharp.tsx b/src/IconFileOpenSharp.tsx index ecfac06e2..ddc87a4a9 100644 --- a/src/IconFileOpenSharp.tsx +++ b/src/IconFileOpenSharp.tsx @@ -8,4 +8,4 @@ const IconFileOpenSharp: React.FC = ({ ...props }) => ( ) -export { IconFileOpenSharp as default } +export default IconFileOpenSharp diff --git a/src/IconFileOpenSharpFilled.tsx b/src/IconFileOpenSharpFilled.tsx index 03c02cb1d..e77821f31 100644 --- a/src/IconFileOpenSharpFilled.tsx +++ b/src/IconFileOpenSharpFilled.tsx @@ -8,4 +8,4 @@ const IconFileOpenSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconFileOpenSharpFilled as default } +export default IconFileOpenSharpFilled diff --git a/src/IconFilePresentOutlined.tsx b/src/IconFilePresentOutlined.tsx index 4483100ee..245feaae7 100644 --- a/src/IconFilePresentOutlined.tsx +++ b/src/IconFilePresentOutlined.tsx @@ -8,4 +8,4 @@ const IconFilePresentOutlined: React.FC = ({ ...props }) => ( ) -export { IconFilePresentOutlined as default } +export default IconFilePresentOutlined diff --git a/src/IconFilePresentOutlinedFilled.tsx b/src/IconFilePresentOutlinedFilled.tsx index dc62d7c6d..5adb86ee9 100644 --- a/src/IconFilePresentOutlinedFilled.tsx +++ b/src/IconFilePresentOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconFilePresentOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconFilePresentOutlinedFilled as default } +export default IconFilePresentOutlinedFilled diff --git a/src/IconFilePresentRounded.tsx b/src/IconFilePresentRounded.tsx index 2a65091a6..c06954e74 100644 --- a/src/IconFilePresentRounded.tsx +++ b/src/IconFilePresentRounded.tsx @@ -8,4 +8,4 @@ const IconFilePresentRounded: React.FC = ({ ...props }) => ( ) -export { IconFilePresentRounded as default } +export default IconFilePresentRounded diff --git a/src/IconFilePresentRoundedFilled.tsx b/src/IconFilePresentRoundedFilled.tsx index c500481c2..fbf8c2261 100644 --- a/src/IconFilePresentRoundedFilled.tsx +++ b/src/IconFilePresentRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconFilePresentRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconFilePresentRoundedFilled as default } +export default IconFilePresentRoundedFilled diff --git a/src/IconFilePresentSharp.tsx b/src/IconFilePresentSharp.tsx index f16107f53..64598fb3a 100644 --- a/src/IconFilePresentSharp.tsx +++ b/src/IconFilePresentSharp.tsx @@ -8,4 +8,4 @@ const IconFilePresentSharp: React.FC = ({ ...props }) => ( ) -export { IconFilePresentSharp as default } +export default IconFilePresentSharp diff --git a/src/IconFilePresentSharpFilled.tsx b/src/IconFilePresentSharpFilled.tsx index c7e3878b3..01e98b6cb 100644 --- a/src/IconFilePresentSharpFilled.tsx +++ b/src/IconFilePresentSharpFilled.tsx @@ -8,4 +8,4 @@ const IconFilePresentSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconFilePresentSharpFilled as default } +export default IconFilePresentSharpFilled diff --git a/src/IconFileSaveOffOutlined.tsx b/src/IconFileSaveOffOutlined.tsx index dfd10b8e1..29f6d2d0b 100644 --- a/src/IconFileSaveOffOutlined.tsx +++ b/src/IconFileSaveOffOutlined.tsx @@ -8,4 +8,4 @@ const IconFileSaveOffOutlined: React.FC = ({ ...props }) => ( ) -export { IconFileSaveOffOutlined as default } +export default IconFileSaveOffOutlined diff --git a/src/IconFileSaveOffOutlinedFilled.tsx b/src/IconFileSaveOffOutlinedFilled.tsx index 50b5dd0b5..1245d24a3 100644 --- a/src/IconFileSaveOffOutlinedFilled.tsx +++ b/src/IconFileSaveOffOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconFileSaveOffOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconFileSaveOffOutlinedFilled as default } +export default IconFileSaveOffOutlinedFilled diff --git a/src/IconFileSaveOffRounded.tsx b/src/IconFileSaveOffRounded.tsx index 489f76f84..331ead823 100644 --- a/src/IconFileSaveOffRounded.tsx +++ b/src/IconFileSaveOffRounded.tsx @@ -8,4 +8,4 @@ const IconFileSaveOffRounded: React.FC = ({ ...props }) => ( ) -export { IconFileSaveOffRounded as default } +export default IconFileSaveOffRounded diff --git a/src/IconFileSaveOffRoundedFilled.tsx b/src/IconFileSaveOffRoundedFilled.tsx index 24c80fcec..e52b12abd 100644 --- a/src/IconFileSaveOffRoundedFilled.tsx +++ b/src/IconFileSaveOffRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconFileSaveOffRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconFileSaveOffRoundedFilled as default } +export default IconFileSaveOffRoundedFilled diff --git a/src/IconFileSaveOffSharp.tsx b/src/IconFileSaveOffSharp.tsx index cc99175f0..d551770ca 100644 --- a/src/IconFileSaveOffSharp.tsx +++ b/src/IconFileSaveOffSharp.tsx @@ -8,4 +8,4 @@ const IconFileSaveOffSharp: React.FC = ({ ...props }) => ( ) -export { IconFileSaveOffSharp as default } +export default IconFileSaveOffSharp diff --git a/src/IconFileSaveOffSharpFilled.tsx b/src/IconFileSaveOffSharpFilled.tsx index 373c71846..2a94e09c2 100644 --- a/src/IconFileSaveOffSharpFilled.tsx +++ b/src/IconFileSaveOffSharpFilled.tsx @@ -8,4 +8,4 @@ const IconFileSaveOffSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconFileSaveOffSharpFilled as default } +export default IconFileSaveOffSharpFilled diff --git a/src/IconFileSaveOutlined.tsx b/src/IconFileSaveOutlined.tsx index db7cc8007..f45d84743 100644 --- a/src/IconFileSaveOutlined.tsx +++ b/src/IconFileSaveOutlined.tsx @@ -8,4 +8,4 @@ const IconFileSaveOutlined: React.FC = ({ ...props }) => ( ) -export { IconFileSaveOutlined as default } +export default IconFileSaveOutlined diff --git a/src/IconFileSaveOutlinedFilled.tsx b/src/IconFileSaveOutlinedFilled.tsx index b0b9d8076..0937a980e 100644 --- a/src/IconFileSaveOutlinedFilled.tsx +++ b/src/IconFileSaveOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconFileSaveOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconFileSaveOutlinedFilled as default } +export default IconFileSaveOutlinedFilled diff --git a/src/IconFileSaveRounded.tsx b/src/IconFileSaveRounded.tsx index f304643c3..7992fb6ca 100644 --- a/src/IconFileSaveRounded.tsx +++ b/src/IconFileSaveRounded.tsx @@ -8,4 +8,4 @@ const IconFileSaveRounded: React.FC = ({ ...props }) => ( ) -export { IconFileSaveRounded as default } +export default IconFileSaveRounded diff --git a/src/IconFileSaveRoundedFilled.tsx b/src/IconFileSaveRoundedFilled.tsx index bc407b9f0..ac15cb726 100644 --- a/src/IconFileSaveRoundedFilled.tsx +++ b/src/IconFileSaveRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconFileSaveRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconFileSaveRoundedFilled as default } +export default IconFileSaveRoundedFilled diff --git a/src/IconFileSaveSharp.tsx b/src/IconFileSaveSharp.tsx index 1fe8eadab..3c7b85a65 100644 --- a/src/IconFileSaveSharp.tsx +++ b/src/IconFileSaveSharp.tsx @@ -8,4 +8,4 @@ const IconFileSaveSharp: React.FC = ({ ...props }) => ( ) -export { IconFileSaveSharp as default } +export default IconFileSaveSharp diff --git a/src/IconFileSaveSharpFilled.tsx b/src/IconFileSaveSharpFilled.tsx index db23bf397..987c29855 100644 --- a/src/IconFileSaveSharpFilled.tsx +++ b/src/IconFileSaveSharpFilled.tsx @@ -8,4 +8,4 @@ const IconFileSaveSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconFileSaveSharpFilled as default } +export default IconFileSaveSharpFilled diff --git a/src/IconFileUploadOffOutlined.tsx b/src/IconFileUploadOffOutlined.tsx index 2bad132f0..2cc279010 100644 --- a/src/IconFileUploadOffOutlined.tsx +++ b/src/IconFileUploadOffOutlined.tsx @@ -8,4 +8,4 @@ const IconFileUploadOffOutlined: React.FC = ({ ...props }) => ( ) -export { IconFileUploadOffOutlined as default } +export default IconFileUploadOffOutlined diff --git a/src/IconFileUploadOffOutlinedFilled.tsx b/src/IconFileUploadOffOutlinedFilled.tsx index d9874a386..174b437fd 100644 --- a/src/IconFileUploadOffOutlinedFilled.tsx +++ b/src/IconFileUploadOffOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconFileUploadOffOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconFileUploadOffOutlinedFilled as default } +export default IconFileUploadOffOutlinedFilled diff --git a/src/IconFileUploadOffRounded.tsx b/src/IconFileUploadOffRounded.tsx index e02edfc05..52ed13fb9 100644 --- a/src/IconFileUploadOffRounded.tsx +++ b/src/IconFileUploadOffRounded.tsx @@ -8,4 +8,4 @@ const IconFileUploadOffRounded: React.FC = ({ ...props }) => ( ) -export { IconFileUploadOffRounded as default } +export default IconFileUploadOffRounded diff --git a/src/IconFileUploadOffRoundedFilled.tsx b/src/IconFileUploadOffRoundedFilled.tsx index 7e141ad20..778b77ba4 100644 --- a/src/IconFileUploadOffRoundedFilled.tsx +++ b/src/IconFileUploadOffRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconFileUploadOffRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconFileUploadOffRoundedFilled as default } +export default IconFileUploadOffRoundedFilled diff --git a/src/IconFileUploadOffSharp.tsx b/src/IconFileUploadOffSharp.tsx index 831cb628d..b7dd6a8fc 100644 --- a/src/IconFileUploadOffSharp.tsx +++ b/src/IconFileUploadOffSharp.tsx @@ -8,4 +8,4 @@ const IconFileUploadOffSharp: React.FC = ({ ...props }) => ( ) -export { IconFileUploadOffSharp as default } +export default IconFileUploadOffSharp diff --git a/src/IconFileUploadOffSharpFilled.tsx b/src/IconFileUploadOffSharpFilled.tsx index e7f62cd59..6b7682ced 100644 --- a/src/IconFileUploadOffSharpFilled.tsx +++ b/src/IconFileUploadOffSharpFilled.tsx @@ -8,4 +8,4 @@ const IconFileUploadOffSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconFileUploadOffSharpFilled as default } +export default IconFileUploadOffSharpFilled diff --git a/src/IconFilter1Outlined.tsx b/src/IconFilter1Outlined.tsx index 60962af14..82b53a916 100644 --- a/src/IconFilter1Outlined.tsx +++ b/src/IconFilter1Outlined.tsx @@ -8,4 +8,4 @@ const IconFilter1Outlined: React.FC = ({ ...props }) => ( ) -export { IconFilter1Outlined as default } +export default IconFilter1Outlined diff --git a/src/IconFilter1OutlinedFilled.tsx b/src/IconFilter1OutlinedFilled.tsx index b671da257..41588b902 100644 --- a/src/IconFilter1OutlinedFilled.tsx +++ b/src/IconFilter1OutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconFilter1OutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconFilter1OutlinedFilled as default } +export default IconFilter1OutlinedFilled diff --git a/src/IconFilter1Rounded.tsx b/src/IconFilter1Rounded.tsx index e51b2743e..0f548394b 100644 --- a/src/IconFilter1Rounded.tsx +++ b/src/IconFilter1Rounded.tsx @@ -8,4 +8,4 @@ const IconFilter1Rounded: React.FC = ({ ...props }) => ( ) -export { IconFilter1Rounded as default } +export default IconFilter1Rounded diff --git a/src/IconFilter1RoundedFilled.tsx b/src/IconFilter1RoundedFilled.tsx index 3d02701ab..03c00ba5b 100644 --- a/src/IconFilter1RoundedFilled.tsx +++ b/src/IconFilter1RoundedFilled.tsx @@ -8,4 +8,4 @@ const IconFilter1RoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconFilter1RoundedFilled as default } +export default IconFilter1RoundedFilled diff --git a/src/IconFilter1Sharp.tsx b/src/IconFilter1Sharp.tsx index a5d119d57..ddc604428 100644 --- a/src/IconFilter1Sharp.tsx +++ b/src/IconFilter1Sharp.tsx @@ -8,4 +8,4 @@ const IconFilter1Sharp: React.FC = ({ ...props }) => ( ) -export { IconFilter1Sharp as default } +export default IconFilter1Sharp diff --git a/src/IconFilter1SharpFilled.tsx b/src/IconFilter1SharpFilled.tsx index 067921aaf..709d98e3d 100644 --- a/src/IconFilter1SharpFilled.tsx +++ b/src/IconFilter1SharpFilled.tsx @@ -8,4 +8,4 @@ const IconFilter1SharpFilled: React.FC = ({ ...props }) => ( ) -export { IconFilter1SharpFilled as default } +export default IconFilter1SharpFilled diff --git a/src/IconFilter2Outlined.tsx b/src/IconFilter2Outlined.tsx index b3f613d47..6ab045043 100644 --- a/src/IconFilter2Outlined.tsx +++ b/src/IconFilter2Outlined.tsx @@ -8,4 +8,4 @@ const IconFilter2Outlined: React.FC = ({ ...props }) => ( ) -export { IconFilter2Outlined as default } +export default IconFilter2Outlined diff --git a/src/IconFilter2OutlinedFilled.tsx b/src/IconFilter2OutlinedFilled.tsx index a058049b2..9aa348a80 100644 --- a/src/IconFilter2OutlinedFilled.tsx +++ b/src/IconFilter2OutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconFilter2OutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconFilter2OutlinedFilled as default } +export default IconFilter2OutlinedFilled diff --git a/src/IconFilter2Rounded.tsx b/src/IconFilter2Rounded.tsx index c42647341..1a1b8f58d 100644 --- a/src/IconFilter2Rounded.tsx +++ b/src/IconFilter2Rounded.tsx @@ -8,4 +8,4 @@ const IconFilter2Rounded: React.FC = ({ ...props }) => ( ) -export { IconFilter2Rounded as default } +export default IconFilter2Rounded diff --git a/src/IconFilter2RoundedFilled.tsx b/src/IconFilter2RoundedFilled.tsx index b108d4fef..469276cbf 100644 --- a/src/IconFilter2RoundedFilled.tsx +++ b/src/IconFilter2RoundedFilled.tsx @@ -8,4 +8,4 @@ const IconFilter2RoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconFilter2RoundedFilled as default } +export default IconFilter2RoundedFilled diff --git a/src/IconFilter2Sharp.tsx b/src/IconFilter2Sharp.tsx index 737b1aa90..8f583f46b 100644 --- a/src/IconFilter2Sharp.tsx +++ b/src/IconFilter2Sharp.tsx @@ -8,4 +8,4 @@ const IconFilter2Sharp: React.FC = ({ ...props }) => ( ) -export { IconFilter2Sharp as default } +export default IconFilter2Sharp diff --git a/src/IconFilter2SharpFilled.tsx b/src/IconFilter2SharpFilled.tsx index b4207949d..9fcafd3f7 100644 --- a/src/IconFilter2SharpFilled.tsx +++ b/src/IconFilter2SharpFilled.tsx @@ -8,4 +8,4 @@ const IconFilter2SharpFilled: React.FC = ({ ...props }) => ( ) -export { IconFilter2SharpFilled as default } +export default IconFilter2SharpFilled diff --git a/src/IconFilter3Outlined.tsx b/src/IconFilter3Outlined.tsx index 162fe99f7..ea7fe210d 100644 --- a/src/IconFilter3Outlined.tsx +++ b/src/IconFilter3Outlined.tsx @@ -8,4 +8,4 @@ const IconFilter3Outlined: React.FC = ({ ...props }) => ( ) -export { IconFilter3Outlined as default } +export default IconFilter3Outlined diff --git a/src/IconFilter3OutlinedFilled.tsx b/src/IconFilter3OutlinedFilled.tsx index 95c78da0a..e22db9b8c 100644 --- a/src/IconFilter3OutlinedFilled.tsx +++ b/src/IconFilter3OutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconFilter3OutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconFilter3OutlinedFilled as default } +export default IconFilter3OutlinedFilled diff --git a/src/IconFilter3Rounded.tsx b/src/IconFilter3Rounded.tsx index 994dc7830..f76a6cd08 100644 --- a/src/IconFilter3Rounded.tsx +++ b/src/IconFilter3Rounded.tsx @@ -8,4 +8,4 @@ const IconFilter3Rounded: React.FC = ({ ...props }) => ( ) -export { IconFilter3Rounded as default } +export default IconFilter3Rounded diff --git a/src/IconFilter3RoundedFilled.tsx b/src/IconFilter3RoundedFilled.tsx index 4c2aee9a4..bee5bb1f8 100644 --- a/src/IconFilter3RoundedFilled.tsx +++ b/src/IconFilter3RoundedFilled.tsx @@ -8,4 +8,4 @@ const IconFilter3RoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconFilter3RoundedFilled as default } +export default IconFilter3RoundedFilled diff --git a/src/IconFilter3Sharp.tsx b/src/IconFilter3Sharp.tsx index 1f2f632e4..9339d9cc0 100644 --- a/src/IconFilter3Sharp.tsx +++ b/src/IconFilter3Sharp.tsx @@ -8,4 +8,4 @@ const IconFilter3Sharp: React.FC = ({ ...props }) => ( ) -export { IconFilter3Sharp as default } +export default IconFilter3Sharp diff --git a/src/IconFilter3SharpFilled.tsx b/src/IconFilter3SharpFilled.tsx index 115f6576d..f951cd310 100644 --- a/src/IconFilter3SharpFilled.tsx +++ b/src/IconFilter3SharpFilled.tsx @@ -8,4 +8,4 @@ const IconFilter3SharpFilled: React.FC = ({ ...props }) => ( ) -export { IconFilter3SharpFilled as default } +export default IconFilter3SharpFilled diff --git a/src/IconFilter4Outlined.tsx b/src/IconFilter4Outlined.tsx index 6b24c62d3..bfac4b595 100644 --- a/src/IconFilter4Outlined.tsx +++ b/src/IconFilter4Outlined.tsx @@ -8,4 +8,4 @@ const IconFilter4Outlined: React.FC = ({ ...props }) => ( ) -export { IconFilter4Outlined as default } +export default IconFilter4Outlined diff --git a/src/IconFilter4OutlinedFilled.tsx b/src/IconFilter4OutlinedFilled.tsx index 1c7e80943..a8a0d595b 100644 --- a/src/IconFilter4OutlinedFilled.tsx +++ b/src/IconFilter4OutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconFilter4OutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconFilter4OutlinedFilled as default } +export default IconFilter4OutlinedFilled diff --git a/src/IconFilter4Rounded.tsx b/src/IconFilter4Rounded.tsx index 21c024d44..cfde0cc16 100644 --- a/src/IconFilter4Rounded.tsx +++ b/src/IconFilter4Rounded.tsx @@ -8,4 +8,4 @@ const IconFilter4Rounded: React.FC = ({ ...props }) => ( ) -export { IconFilter4Rounded as default } +export default IconFilter4Rounded diff --git a/src/IconFilter4RoundedFilled.tsx b/src/IconFilter4RoundedFilled.tsx index 31e4fb676..d967ba53a 100644 --- a/src/IconFilter4RoundedFilled.tsx +++ b/src/IconFilter4RoundedFilled.tsx @@ -8,4 +8,4 @@ const IconFilter4RoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconFilter4RoundedFilled as default } +export default IconFilter4RoundedFilled diff --git a/src/IconFilter4SharpFilled.tsx b/src/IconFilter4SharpFilled.tsx index ce45d1509..deaf0d685 100644 --- a/src/IconFilter4SharpFilled.tsx +++ b/src/IconFilter4SharpFilled.tsx @@ -8,4 +8,4 @@ const IconFilter4SharpFilled: React.FC = ({ ...props }) => ( ) -export { IconFilter4SharpFilled as default } +export default IconFilter4SharpFilled diff --git a/src/IconFilter5Outlined.tsx b/src/IconFilter5Outlined.tsx index d3985876f..8240b6624 100644 --- a/src/IconFilter5Outlined.tsx +++ b/src/IconFilter5Outlined.tsx @@ -8,4 +8,4 @@ const IconFilter5Outlined: React.FC = ({ ...props }) => ( ) -export { IconFilter5Outlined as default } +export default IconFilter5Outlined diff --git a/src/IconFilter5OutlinedFilled.tsx b/src/IconFilter5OutlinedFilled.tsx index 97c6d52d9..169374161 100644 --- a/src/IconFilter5OutlinedFilled.tsx +++ b/src/IconFilter5OutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconFilter5OutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconFilter5OutlinedFilled as default } +export default IconFilter5OutlinedFilled diff --git a/src/IconFilter5Rounded.tsx b/src/IconFilter5Rounded.tsx index 7b7a67b34..1103ae0f4 100644 --- a/src/IconFilter5Rounded.tsx +++ b/src/IconFilter5Rounded.tsx @@ -8,4 +8,4 @@ const IconFilter5Rounded: React.FC = ({ ...props }) => ( ) -export { IconFilter5Rounded as default } +export default IconFilter5Rounded diff --git a/src/IconFilter5RoundedFilled.tsx b/src/IconFilter5RoundedFilled.tsx index f519009cf..f3cde450f 100644 --- a/src/IconFilter5RoundedFilled.tsx +++ b/src/IconFilter5RoundedFilled.tsx @@ -8,4 +8,4 @@ const IconFilter5RoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconFilter5RoundedFilled as default } +export default IconFilter5RoundedFilled diff --git a/src/IconFilter5Sharp.tsx b/src/IconFilter5Sharp.tsx index 2bbe84cc4..140fbf2a9 100644 --- a/src/IconFilter5Sharp.tsx +++ b/src/IconFilter5Sharp.tsx @@ -8,4 +8,4 @@ const IconFilter5Sharp: React.FC = ({ ...props }) => ( ) -export { IconFilter5Sharp as default } +export default IconFilter5Sharp diff --git a/src/IconFilter5SharpFilled.tsx b/src/IconFilter5SharpFilled.tsx index ddc6d316e..074879e3d 100644 --- a/src/IconFilter5SharpFilled.tsx +++ b/src/IconFilter5SharpFilled.tsx @@ -8,4 +8,4 @@ const IconFilter5SharpFilled: React.FC = ({ ...props }) => ( ) -export { IconFilter5SharpFilled as default } +export default IconFilter5SharpFilled diff --git a/src/IconFilter6Outlined.tsx b/src/IconFilter6Outlined.tsx index 1cf3db21b..23fc816df 100644 --- a/src/IconFilter6Outlined.tsx +++ b/src/IconFilter6Outlined.tsx @@ -8,4 +8,4 @@ const IconFilter6Outlined: React.FC = ({ ...props }) => ( ) -export { IconFilter6Outlined as default } +export default IconFilter6Outlined diff --git a/src/IconFilter6OutlinedFilled.tsx b/src/IconFilter6OutlinedFilled.tsx index 622192c2c..aa37e1f11 100644 --- a/src/IconFilter6OutlinedFilled.tsx +++ b/src/IconFilter6OutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconFilter6OutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconFilter6OutlinedFilled as default } +export default IconFilter6OutlinedFilled diff --git a/src/IconFilter6Rounded.tsx b/src/IconFilter6Rounded.tsx index 77fcab3de..5cb5502f1 100644 --- a/src/IconFilter6Rounded.tsx +++ b/src/IconFilter6Rounded.tsx @@ -8,4 +8,4 @@ const IconFilter6Rounded: React.FC = ({ ...props }) => ( ) -export { IconFilter6Rounded as default } +export default IconFilter6Rounded diff --git a/src/IconFilter6RoundedFilled.tsx b/src/IconFilter6RoundedFilled.tsx index 6d72e2ef8..7d6aede2d 100644 --- a/src/IconFilter6RoundedFilled.tsx +++ b/src/IconFilter6RoundedFilled.tsx @@ -8,4 +8,4 @@ const IconFilter6RoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconFilter6RoundedFilled as default } +export default IconFilter6RoundedFilled diff --git a/src/IconFilter6Sharp.tsx b/src/IconFilter6Sharp.tsx index b608e11dc..b78572d11 100644 --- a/src/IconFilter6Sharp.tsx +++ b/src/IconFilter6Sharp.tsx @@ -8,4 +8,4 @@ const IconFilter6Sharp: React.FC = ({ ...props }) => ( ) -export { IconFilter6Sharp as default } +export default IconFilter6Sharp diff --git a/src/IconFilter6SharpFilled.tsx b/src/IconFilter6SharpFilled.tsx index 059819eea..a2159c428 100644 --- a/src/IconFilter6SharpFilled.tsx +++ b/src/IconFilter6SharpFilled.tsx @@ -8,4 +8,4 @@ const IconFilter6SharpFilled: React.FC = ({ ...props }) => ( ) -export { IconFilter6SharpFilled as default } +export default IconFilter6SharpFilled diff --git a/src/IconFilter7Outlined.tsx b/src/IconFilter7Outlined.tsx index 402883414..2997c641f 100644 --- a/src/IconFilter7Outlined.tsx +++ b/src/IconFilter7Outlined.tsx @@ -8,4 +8,4 @@ const IconFilter7Outlined: React.FC = ({ ...props }) => ( ) -export { IconFilter7Outlined as default } +export default IconFilter7Outlined diff --git a/src/IconFilter7OutlinedFilled.tsx b/src/IconFilter7OutlinedFilled.tsx index e28aec29e..20cbfe718 100644 --- a/src/IconFilter7OutlinedFilled.tsx +++ b/src/IconFilter7OutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconFilter7OutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconFilter7OutlinedFilled as default } +export default IconFilter7OutlinedFilled diff --git a/src/IconFilter7Rounded.tsx b/src/IconFilter7Rounded.tsx index 3f95e0544..c7203804f 100644 --- a/src/IconFilter7Rounded.tsx +++ b/src/IconFilter7Rounded.tsx @@ -8,4 +8,4 @@ const IconFilter7Rounded: React.FC = ({ ...props }) => ( ) -export { IconFilter7Rounded as default } +export default IconFilter7Rounded diff --git a/src/IconFilter7RoundedFilled.tsx b/src/IconFilter7RoundedFilled.tsx index 795249856..55ada1553 100644 --- a/src/IconFilter7RoundedFilled.tsx +++ b/src/IconFilter7RoundedFilled.tsx @@ -8,4 +8,4 @@ const IconFilter7RoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconFilter7RoundedFilled as default } +export default IconFilter7RoundedFilled diff --git a/src/IconFilter7Sharp.tsx b/src/IconFilter7Sharp.tsx index ed34be116..c9b31e298 100644 --- a/src/IconFilter7Sharp.tsx +++ b/src/IconFilter7Sharp.tsx @@ -8,4 +8,4 @@ const IconFilter7Sharp: React.FC = ({ ...props }) => ( ) -export { IconFilter7Sharp as default } +export default IconFilter7Sharp diff --git a/src/IconFilter7SharpFilled.tsx b/src/IconFilter7SharpFilled.tsx index f1f2f7649..4486cd7b7 100644 --- a/src/IconFilter7SharpFilled.tsx +++ b/src/IconFilter7SharpFilled.tsx @@ -8,4 +8,4 @@ const IconFilter7SharpFilled: React.FC = ({ ...props }) => ( ) -export { IconFilter7SharpFilled as default } +export default IconFilter7SharpFilled diff --git a/src/IconFilter8Outlined.tsx b/src/IconFilter8Outlined.tsx index 8b457aeb7..0f69527f2 100644 --- a/src/IconFilter8Outlined.tsx +++ b/src/IconFilter8Outlined.tsx @@ -8,4 +8,4 @@ const IconFilter8Outlined: React.FC = ({ ...props }) => ( ) -export { IconFilter8Outlined as default } +export default IconFilter8Outlined diff --git a/src/IconFilter8OutlinedFilled.tsx b/src/IconFilter8OutlinedFilled.tsx index 6806d7708..6b1dea8b5 100644 --- a/src/IconFilter8OutlinedFilled.tsx +++ b/src/IconFilter8OutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconFilter8OutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconFilter8OutlinedFilled as default } +export default IconFilter8OutlinedFilled diff --git a/src/IconFilter8Rounded.tsx b/src/IconFilter8Rounded.tsx index 49a06b0f3..0873fcb56 100644 --- a/src/IconFilter8Rounded.tsx +++ b/src/IconFilter8Rounded.tsx @@ -8,4 +8,4 @@ const IconFilter8Rounded: React.FC = ({ ...props }) => ( ) -export { IconFilter8Rounded as default } +export default IconFilter8Rounded diff --git a/src/IconFilter8RoundedFilled.tsx b/src/IconFilter8RoundedFilled.tsx index 2c686e12b..a2da304e4 100644 --- a/src/IconFilter8RoundedFilled.tsx +++ b/src/IconFilter8RoundedFilled.tsx @@ -8,4 +8,4 @@ const IconFilter8RoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconFilter8RoundedFilled as default } +export default IconFilter8RoundedFilled diff --git a/src/IconFilter8Sharp.tsx b/src/IconFilter8Sharp.tsx index 657d0f851..6c01dfad2 100644 --- a/src/IconFilter8Sharp.tsx +++ b/src/IconFilter8Sharp.tsx @@ -8,4 +8,4 @@ const IconFilter8Sharp: React.FC = ({ ...props }) => ( ) -export { IconFilter8Sharp as default } +export default IconFilter8Sharp diff --git a/src/IconFilter8SharpFilled.tsx b/src/IconFilter8SharpFilled.tsx index e69ba12eb..d80b5c033 100644 --- a/src/IconFilter8SharpFilled.tsx +++ b/src/IconFilter8SharpFilled.tsx @@ -8,4 +8,4 @@ const IconFilter8SharpFilled: React.FC = ({ ...props }) => ( ) -export { IconFilter8SharpFilled as default } +export default IconFilter8SharpFilled diff --git a/src/IconFilter9Outlined.tsx b/src/IconFilter9Outlined.tsx index 8609eab9b..65091dd78 100644 --- a/src/IconFilter9Outlined.tsx +++ b/src/IconFilter9Outlined.tsx @@ -8,4 +8,4 @@ const IconFilter9Outlined: React.FC = ({ ...props }) => ( ) -export { IconFilter9Outlined as default } +export default IconFilter9Outlined diff --git a/src/IconFilter9OutlinedFilled.tsx b/src/IconFilter9OutlinedFilled.tsx index ea57315b6..0d690c9e6 100644 --- a/src/IconFilter9OutlinedFilled.tsx +++ b/src/IconFilter9OutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconFilter9OutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconFilter9OutlinedFilled as default } +export default IconFilter9OutlinedFilled diff --git a/src/IconFilter9PlusOutlined.tsx b/src/IconFilter9PlusOutlined.tsx index 8bfa50f2c..2979a4bda 100644 --- a/src/IconFilter9PlusOutlined.tsx +++ b/src/IconFilter9PlusOutlined.tsx @@ -8,4 +8,4 @@ const IconFilter9PlusOutlined: React.FC = ({ ...props }) => ( ) -export { IconFilter9PlusOutlined as default } +export default IconFilter9PlusOutlined diff --git a/src/IconFilter9PlusOutlinedFilled.tsx b/src/IconFilter9PlusOutlinedFilled.tsx index 2366eb01e..1dad35179 100644 --- a/src/IconFilter9PlusOutlinedFilled.tsx +++ b/src/IconFilter9PlusOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconFilter9PlusOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconFilter9PlusOutlinedFilled as default } +export default IconFilter9PlusOutlinedFilled diff --git a/src/IconFilter9PlusRounded.tsx b/src/IconFilter9PlusRounded.tsx index 23e96d900..5a9fdb84d 100644 --- a/src/IconFilter9PlusRounded.tsx +++ b/src/IconFilter9PlusRounded.tsx @@ -8,4 +8,4 @@ const IconFilter9PlusRounded: React.FC = ({ ...props }) => ( ) -export { IconFilter9PlusRounded as default } +export default IconFilter9PlusRounded diff --git a/src/IconFilter9PlusRoundedFilled.tsx b/src/IconFilter9PlusRoundedFilled.tsx index ed1dc8688..a3a199299 100644 --- a/src/IconFilter9PlusRoundedFilled.tsx +++ b/src/IconFilter9PlusRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconFilter9PlusRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconFilter9PlusRoundedFilled as default } +export default IconFilter9PlusRoundedFilled diff --git a/src/IconFilter9PlusSharp.tsx b/src/IconFilter9PlusSharp.tsx index 631b329c6..d8544f6e4 100644 --- a/src/IconFilter9PlusSharp.tsx +++ b/src/IconFilter9PlusSharp.tsx @@ -8,4 +8,4 @@ const IconFilter9PlusSharp: React.FC = ({ ...props }) => ( ) -export { IconFilter9PlusSharp as default } +export default IconFilter9PlusSharp diff --git a/src/IconFilter9PlusSharpFilled.tsx b/src/IconFilter9PlusSharpFilled.tsx index 3ae5eada8..e11e151b0 100644 --- a/src/IconFilter9PlusSharpFilled.tsx +++ b/src/IconFilter9PlusSharpFilled.tsx @@ -8,4 +8,4 @@ const IconFilter9PlusSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconFilter9PlusSharpFilled as default } +export default IconFilter9PlusSharpFilled diff --git a/src/IconFilter9Rounded.tsx b/src/IconFilter9Rounded.tsx index 5a3798694..0656cf7e0 100644 --- a/src/IconFilter9Rounded.tsx +++ b/src/IconFilter9Rounded.tsx @@ -8,4 +8,4 @@ const IconFilter9Rounded: React.FC = ({ ...props }) => ( ) -export { IconFilter9Rounded as default } +export default IconFilter9Rounded diff --git a/src/IconFilter9RoundedFilled.tsx b/src/IconFilter9RoundedFilled.tsx index 1ba9f3cd4..4906afa63 100644 --- a/src/IconFilter9RoundedFilled.tsx +++ b/src/IconFilter9RoundedFilled.tsx @@ -8,4 +8,4 @@ const IconFilter9RoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconFilter9RoundedFilled as default } +export default IconFilter9RoundedFilled diff --git a/src/IconFilter9Sharp.tsx b/src/IconFilter9Sharp.tsx index 79eddc4ce..f7602257a 100644 --- a/src/IconFilter9Sharp.tsx +++ b/src/IconFilter9Sharp.tsx @@ -8,4 +8,4 @@ const IconFilter9Sharp: React.FC = ({ ...props }) => ( ) -export { IconFilter9Sharp as default } +export default IconFilter9Sharp diff --git a/src/IconFilter9SharpFilled.tsx b/src/IconFilter9SharpFilled.tsx index ceb0c91b7..4d3f9eafa 100644 --- a/src/IconFilter9SharpFilled.tsx +++ b/src/IconFilter9SharpFilled.tsx @@ -8,4 +8,4 @@ const IconFilter9SharpFilled: React.FC = ({ ...props }) => ( ) -export { IconFilter9SharpFilled as default } +export default IconFilter9SharpFilled diff --git a/src/IconFilterAltOffOutlined.tsx b/src/IconFilterAltOffOutlined.tsx index b07a85c72..25311bd1e 100644 --- a/src/IconFilterAltOffOutlined.tsx +++ b/src/IconFilterAltOffOutlined.tsx @@ -8,4 +8,4 @@ const IconFilterAltOffOutlined: React.FC = ({ ...props }) => ( ) -export { IconFilterAltOffOutlined as default } +export default IconFilterAltOffOutlined diff --git a/src/IconFilterAltOffOutlinedFilled.tsx b/src/IconFilterAltOffOutlinedFilled.tsx index 7bfae817c..eba3a4246 100644 --- a/src/IconFilterAltOffOutlinedFilled.tsx +++ b/src/IconFilterAltOffOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconFilterAltOffOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconFilterAltOffOutlinedFilled as default } +export default IconFilterAltOffOutlinedFilled diff --git a/src/IconFilterAltOffRounded.tsx b/src/IconFilterAltOffRounded.tsx index 3b70469aa..8a9adb0e1 100644 --- a/src/IconFilterAltOffRounded.tsx +++ b/src/IconFilterAltOffRounded.tsx @@ -8,4 +8,4 @@ const IconFilterAltOffRounded: React.FC = ({ ...props }) => ( ) -export { IconFilterAltOffRounded as default } +export default IconFilterAltOffRounded diff --git a/src/IconFilterAltOffRoundedFilled.tsx b/src/IconFilterAltOffRoundedFilled.tsx index 8b81ecb85..3a9c69ba9 100644 --- a/src/IconFilterAltOffRoundedFilled.tsx +++ b/src/IconFilterAltOffRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconFilterAltOffRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconFilterAltOffRoundedFilled as default } +export default IconFilterAltOffRoundedFilled diff --git a/src/IconFilterAltOffSharp.tsx b/src/IconFilterAltOffSharp.tsx index a6791a54e..e9e5c68f8 100644 --- a/src/IconFilterAltOffSharp.tsx +++ b/src/IconFilterAltOffSharp.tsx @@ -8,4 +8,4 @@ const IconFilterAltOffSharp: React.FC = ({ ...props }) => ( ) -export { IconFilterAltOffSharp as default } +export default IconFilterAltOffSharp diff --git a/src/IconFilterAltOffSharpFilled.tsx b/src/IconFilterAltOffSharpFilled.tsx index aba5b6880..9b2da6191 100644 --- a/src/IconFilterAltOffSharpFilled.tsx +++ b/src/IconFilterAltOffSharpFilled.tsx @@ -8,4 +8,4 @@ const IconFilterAltOffSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconFilterAltOffSharpFilled as default } +export default IconFilterAltOffSharpFilled diff --git a/src/IconFilterAltOutlined.tsx b/src/IconFilterAltOutlined.tsx index a8ed0f63b..83ae94d09 100644 --- a/src/IconFilterAltOutlined.tsx +++ b/src/IconFilterAltOutlined.tsx @@ -8,4 +8,4 @@ const IconFilterAltOutlined: React.FC = ({ ...props }) => ( ) -export { IconFilterAltOutlined as default } +export default IconFilterAltOutlined diff --git a/src/IconFilterAltOutlinedFilled.tsx b/src/IconFilterAltOutlinedFilled.tsx index 430ae05f4..7bb4b9ffb 100644 --- a/src/IconFilterAltOutlinedFilled.tsx +++ b/src/IconFilterAltOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconFilterAltOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconFilterAltOutlinedFilled as default } +export default IconFilterAltOutlinedFilled diff --git a/src/IconFilterAltRounded.tsx b/src/IconFilterAltRounded.tsx index 440ad00f2..d2010e9a5 100644 --- a/src/IconFilterAltRounded.tsx +++ b/src/IconFilterAltRounded.tsx @@ -8,4 +8,4 @@ const IconFilterAltRounded: React.FC = ({ ...props }) => ( ) -export { IconFilterAltRounded as default } +export default IconFilterAltRounded diff --git a/src/IconFilterAltRoundedFilled.tsx b/src/IconFilterAltRoundedFilled.tsx index 98d3beb1b..6b6e6b2fb 100644 --- a/src/IconFilterAltRoundedFilled.tsx +++ b/src/IconFilterAltRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconFilterAltRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconFilterAltRoundedFilled as default } +export default IconFilterAltRoundedFilled diff --git a/src/IconFilterAltSharp.tsx b/src/IconFilterAltSharp.tsx index 7fb47b31e..26671ac85 100644 --- a/src/IconFilterAltSharp.tsx +++ b/src/IconFilterAltSharp.tsx @@ -8,4 +8,4 @@ const IconFilterAltSharp: React.FC = ({ ...props }) => ( ) -export { IconFilterAltSharp as default } +export default IconFilterAltSharp diff --git a/src/IconFilterAltSharpFilled.tsx b/src/IconFilterAltSharpFilled.tsx index 908e7c90c..6a2fd8412 100644 --- a/src/IconFilterAltSharpFilled.tsx +++ b/src/IconFilterAltSharpFilled.tsx @@ -8,4 +8,4 @@ const IconFilterAltSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconFilterAltSharpFilled as default } +export default IconFilterAltSharpFilled diff --git a/src/IconFilterBAndWOutlined.tsx b/src/IconFilterBAndWOutlined.tsx index b4c5df96f..9cc32f321 100644 --- a/src/IconFilterBAndWOutlined.tsx +++ b/src/IconFilterBAndWOutlined.tsx @@ -8,4 +8,4 @@ const IconFilterBAndWOutlined: React.FC = ({ ...props }) => ( ) -export { IconFilterBAndWOutlined as default } +export default IconFilterBAndWOutlined diff --git a/src/IconFilterBAndWOutlinedFilled.tsx b/src/IconFilterBAndWOutlinedFilled.tsx index 35e187daa..9e8df34e0 100644 --- a/src/IconFilterBAndWOutlinedFilled.tsx +++ b/src/IconFilterBAndWOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconFilterBAndWOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconFilterBAndWOutlinedFilled as default } +export default IconFilterBAndWOutlinedFilled diff --git a/src/IconFilterBAndWRounded.tsx b/src/IconFilterBAndWRounded.tsx index 69a509ab3..820770660 100644 --- a/src/IconFilterBAndWRounded.tsx +++ b/src/IconFilterBAndWRounded.tsx @@ -8,4 +8,4 @@ const IconFilterBAndWRounded: React.FC = ({ ...props }) => ( ) -export { IconFilterBAndWRounded as default } +export default IconFilterBAndWRounded diff --git a/src/IconFilterBAndWRoundedFilled.tsx b/src/IconFilterBAndWRoundedFilled.tsx index 492fde2ef..807d6c35b 100644 --- a/src/IconFilterBAndWRoundedFilled.tsx +++ b/src/IconFilterBAndWRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconFilterBAndWRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconFilterBAndWRoundedFilled as default } +export default IconFilterBAndWRoundedFilled diff --git a/src/IconFilterBAndWSharp.tsx b/src/IconFilterBAndWSharp.tsx index 751c7f636..4bcba149d 100644 --- a/src/IconFilterBAndWSharp.tsx +++ b/src/IconFilterBAndWSharp.tsx @@ -8,4 +8,4 @@ const IconFilterBAndWSharp: React.FC = ({ ...props }) => ( ) -export { IconFilterBAndWSharp as default } +export default IconFilterBAndWSharp diff --git a/src/IconFilterBAndWSharpFilled.tsx b/src/IconFilterBAndWSharpFilled.tsx index 567954ea1..8c120edce 100644 --- a/src/IconFilterBAndWSharpFilled.tsx +++ b/src/IconFilterBAndWSharpFilled.tsx @@ -8,4 +8,4 @@ const IconFilterBAndWSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconFilterBAndWSharpFilled as default } +export default IconFilterBAndWSharpFilled diff --git a/src/IconFilterCenterFocusOutlined.tsx b/src/IconFilterCenterFocusOutlined.tsx index 5a406be4e..8d2ea6978 100644 --- a/src/IconFilterCenterFocusOutlined.tsx +++ b/src/IconFilterCenterFocusOutlined.tsx @@ -8,4 +8,4 @@ const IconFilterCenterFocusOutlined: React.FC = ({ ...props }) => ( ) -export { IconFilterCenterFocusOutlined as default } +export default IconFilterCenterFocusOutlined diff --git a/src/IconFilterCenterFocusOutlinedFilled.tsx b/src/IconFilterCenterFocusOutlinedFilled.tsx index e31b9dbe8..0ee583ddf 100644 --- a/src/IconFilterCenterFocusOutlinedFilled.tsx +++ b/src/IconFilterCenterFocusOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconFilterCenterFocusOutlinedFilled: React.FC = ({ ) -export { IconFilterCenterFocusOutlinedFilled as default } +export default IconFilterCenterFocusOutlinedFilled diff --git a/src/IconFilterCenterFocusRounded.tsx b/src/IconFilterCenterFocusRounded.tsx index 7dc60d437..5fd80878e 100644 --- a/src/IconFilterCenterFocusRounded.tsx +++ b/src/IconFilterCenterFocusRounded.tsx @@ -8,4 +8,4 @@ const IconFilterCenterFocusRounded: React.FC = ({ ...props }) => ( ) -export { IconFilterCenterFocusRounded as default } +export default IconFilterCenterFocusRounded diff --git a/src/IconFilterCenterFocusRoundedFilled.tsx b/src/IconFilterCenterFocusRoundedFilled.tsx index 2364a36f5..8c52733d7 100644 --- a/src/IconFilterCenterFocusRoundedFilled.tsx +++ b/src/IconFilterCenterFocusRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconFilterCenterFocusRoundedFilled: React.FC = ({ ) -export { IconFilterCenterFocusRoundedFilled as default } +export default IconFilterCenterFocusRoundedFilled diff --git a/src/IconFilterCenterFocusSharp.tsx b/src/IconFilterCenterFocusSharp.tsx index 06d835647..89aa03e67 100644 --- a/src/IconFilterCenterFocusSharp.tsx +++ b/src/IconFilterCenterFocusSharp.tsx @@ -8,4 +8,4 @@ const IconFilterCenterFocusSharp: React.FC = ({ ...props }) => ( ) -export { IconFilterCenterFocusSharp as default } +export default IconFilterCenterFocusSharp diff --git a/src/IconFilterCenterFocusSharpFilled.tsx b/src/IconFilterCenterFocusSharpFilled.tsx index 92d75fed7..825831190 100644 --- a/src/IconFilterCenterFocusSharpFilled.tsx +++ b/src/IconFilterCenterFocusSharpFilled.tsx @@ -10,4 +10,4 @@ const IconFilterCenterFocusSharpFilled: React.FC = ({ ) -export { IconFilterCenterFocusSharpFilled as default } +export default IconFilterCenterFocusSharpFilled diff --git a/src/IconFilterDramaOutlined.tsx b/src/IconFilterDramaOutlined.tsx index 98dc31538..8c9e91b1e 100644 --- a/src/IconFilterDramaOutlined.tsx +++ b/src/IconFilterDramaOutlined.tsx @@ -8,4 +8,4 @@ const IconFilterDramaOutlined: React.FC = ({ ...props }) => ( ) -export { IconFilterDramaOutlined as default } +export default IconFilterDramaOutlined diff --git a/src/IconFilterDramaOutlinedFilled.tsx b/src/IconFilterDramaOutlinedFilled.tsx index 648a5fd8d..67c4da2c3 100644 --- a/src/IconFilterDramaOutlinedFilled.tsx +++ b/src/IconFilterDramaOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconFilterDramaOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconFilterDramaOutlinedFilled as default } +export default IconFilterDramaOutlinedFilled diff --git a/src/IconFilterDramaRounded.tsx b/src/IconFilterDramaRounded.tsx index f03ffd7cf..99af19c1b 100644 --- a/src/IconFilterDramaRounded.tsx +++ b/src/IconFilterDramaRounded.tsx @@ -8,4 +8,4 @@ const IconFilterDramaRounded: React.FC = ({ ...props }) => ( ) -export { IconFilterDramaRounded as default } +export default IconFilterDramaRounded diff --git a/src/IconFilterDramaRoundedFilled.tsx b/src/IconFilterDramaRoundedFilled.tsx index 6490ee949..5c6773798 100644 --- a/src/IconFilterDramaRoundedFilled.tsx +++ b/src/IconFilterDramaRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconFilterDramaRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconFilterDramaRoundedFilled as default } +export default IconFilterDramaRoundedFilled diff --git a/src/IconFilterDramaSharp.tsx b/src/IconFilterDramaSharp.tsx index eb3fd5c9c..bf53be956 100644 --- a/src/IconFilterDramaSharp.tsx +++ b/src/IconFilterDramaSharp.tsx @@ -8,4 +8,4 @@ const IconFilterDramaSharp: React.FC = ({ ...props }) => ( ) -export { IconFilterDramaSharp as default } +export default IconFilterDramaSharp diff --git a/src/IconFilterDramaSharpFilled.tsx b/src/IconFilterDramaSharpFilled.tsx index 211f39b68..ab0e776b6 100644 --- a/src/IconFilterDramaSharpFilled.tsx +++ b/src/IconFilterDramaSharpFilled.tsx @@ -8,4 +8,4 @@ const IconFilterDramaSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconFilterDramaSharpFilled as default } +export default IconFilterDramaSharpFilled diff --git a/src/IconFilterFramesOutlined.tsx b/src/IconFilterFramesOutlined.tsx index b590ebdb4..8db0c9848 100644 --- a/src/IconFilterFramesOutlined.tsx +++ b/src/IconFilterFramesOutlined.tsx @@ -8,4 +8,4 @@ const IconFilterFramesOutlined: React.FC = ({ ...props }) => ( ) -export { IconFilterFramesOutlined as default } +export default IconFilterFramesOutlined diff --git a/src/IconFilterFramesOutlinedFilled.tsx b/src/IconFilterFramesOutlinedFilled.tsx index 5e4471233..e9abffd43 100644 --- a/src/IconFilterFramesOutlinedFilled.tsx +++ b/src/IconFilterFramesOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconFilterFramesOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconFilterFramesOutlinedFilled as default } +export default IconFilterFramesOutlinedFilled diff --git a/src/IconFilterFramesRounded.tsx b/src/IconFilterFramesRounded.tsx index 1692a942e..a27aa7fe0 100644 --- a/src/IconFilterFramesRounded.tsx +++ b/src/IconFilterFramesRounded.tsx @@ -8,4 +8,4 @@ const IconFilterFramesRounded: React.FC = ({ ...props }) => ( ) -export { IconFilterFramesRounded as default } +export default IconFilterFramesRounded diff --git a/src/IconFilterFramesRoundedFilled.tsx b/src/IconFilterFramesRoundedFilled.tsx index 277e5acf2..ad09ca53c 100644 --- a/src/IconFilterFramesRoundedFilled.tsx +++ b/src/IconFilterFramesRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconFilterFramesRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconFilterFramesRoundedFilled as default } +export default IconFilterFramesRoundedFilled diff --git a/src/IconFilterFramesSharp.tsx b/src/IconFilterFramesSharp.tsx index aca71c5d0..bcd9f5bde 100644 --- a/src/IconFilterFramesSharp.tsx +++ b/src/IconFilterFramesSharp.tsx @@ -8,4 +8,4 @@ const IconFilterFramesSharp: React.FC = ({ ...props }) => ( ) -export { IconFilterFramesSharp as default } +export default IconFilterFramesSharp diff --git a/src/IconFilterFramesSharpFilled.tsx b/src/IconFilterFramesSharpFilled.tsx index cd2850734..790702810 100644 --- a/src/IconFilterFramesSharpFilled.tsx +++ b/src/IconFilterFramesSharpFilled.tsx @@ -8,4 +8,4 @@ const IconFilterFramesSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconFilterFramesSharpFilled as default } +export default IconFilterFramesSharpFilled diff --git a/src/IconFilterHdrOutlined.tsx b/src/IconFilterHdrOutlined.tsx index a8c0cf97b..775571845 100644 --- a/src/IconFilterHdrOutlined.tsx +++ b/src/IconFilterHdrOutlined.tsx @@ -8,4 +8,4 @@ const IconFilterHdrOutlined: React.FC = ({ ...props }) => ( ) -export { IconFilterHdrOutlined as default } +export default IconFilterHdrOutlined diff --git a/src/IconFilterHdrOutlinedFilled.tsx b/src/IconFilterHdrOutlinedFilled.tsx index 6fd149819..815faa494 100644 --- a/src/IconFilterHdrOutlinedFilled.tsx +++ b/src/IconFilterHdrOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconFilterHdrOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconFilterHdrOutlinedFilled as default } +export default IconFilterHdrOutlinedFilled diff --git a/src/IconFilterHdrRounded.tsx b/src/IconFilterHdrRounded.tsx index f508a3bc3..0337650e5 100644 --- a/src/IconFilterHdrRounded.tsx +++ b/src/IconFilterHdrRounded.tsx @@ -8,4 +8,4 @@ const IconFilterHdrRounded: React.FC = ({ ...props }) => ( ) -export { IconFilterHdrRounded as default } +export default IconFilterHdrRounded diff --git a/src/IconFilterHdrRoundedFilled.tsx b/src/IconFilterHdrRoundedFilled.tsx index 1ddefa084..39c17d323 100644 --- a/src/IconFilterHdrRoundedFilled.tsx +++ b/src/IconFilterHdrRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconFilterHdrRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconFilterHdrRoundedFilled as default } +export default IconFilterHdrRoundedFilled diff --git a/src/IconFilterHdrSharp.tsx b/src/IconFilterHdrSharp.tsx index 95e6e7268..a5491a3a1 100644 --- a/src/IconFilterHdrSharp.tsx +++ b/src/IconFilterHdrSharp.tsx @@ -8,4 +8,4 @@ const IconFilterHdrSharp: React.FC = ({ ...props }) => ( ) -export { IconFilterHdrSharp as default } +export default IconFilterHdrSharp diff --git a/src/IconFilterHdrSharpFilled.tsx b/src/IconFilterHdrSharpFilled.tsx index d425ba4dc..5aceea562 100644 --- a/src/IconFilterHdrSharpFilled.tsx +++ b/src/IconFilterHdrSharpFilled.tsx @@ -8,4 +8,4 @@ const IconFilterHdrSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconFilterHdrSharpFilled as default } +export default IconFilterHdrSharpFilled diff --git a/src/IconFilterListOffOutlined.tsx b/src/IconFilterListOffOutlined.tsx index 725f52474..cfc92bce1 100644 --- a/src/IconFilterListOffOutlined.tsx +++ b/src/IconFilterListOffOutlined.tsx @@ -8,4 +8,4 @@ const IconFilterListOffOutlined: React.FC = ({ ...props }) => ( ) -export { IconFilterListOffOutlined as default } +export default IconFilterListOffOutlined diff --git a/src/IconFilterListOffOutlinedFilled.tsx b/src/IconFilterListOffOutlinedFilled.tsx index 1b05897d1..1e9146d4a 100644 --- a/src/IconFilterListOffOutlinedFilled.tsx +++ b/src/IconFilterListOffOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconFilterListOffOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconFilterListOffOutlinedFilled as default } +export default IconFilterListOffOutlinedFilled diff --git a/src/IconFilterListOffRounded.tsx b/src/IconFilterListOffRounded.tsx index 85081e230..069e08d62 100644 --- a/src/IconFilterListOffRounded.tsx +++ b/src/IconFilterListOffRounded.tsx @@ -8,4 +8,4 @@ const IconFilterListOffRounded: React.FC = ({ ...props }) => ( ) -export { IconFilterListOffRounded as default } +export default IconFilterListOffRounded diff --git a/src/IconFilterListOffRoundedFilled.tsx b/src/IconFilterListOffRoundedFilled.tsx index c6f81088d..d4c093f5b 100644 --- a/src/IconFilterListOffRoundedFilled.tsx +++ b/src/IconFilterListOffRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconFilterListOffRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconFilterListOffRoundedFilled as default } +export default IconFilterListOffRoundedFilled diff --git a/src/IconFilterListOffSharp.tsx b/src/IconFilterListOffSharp.tsx index ffc3b0cee..de9ee2e77 100644 --- a/src/IconFilterListOffSharp.tsx +++ b/src/IconFilterListOffSharp.tsx @@ -8,4 +8,4 @@ const IconFilterListOffSharp: React.FC = ({ ...props }) => ( ) -export { IconFilterListOffSharp as default } +export default IconFilterListOffSharp diff --git a/src/IconFilterListOffSharpFilled.tsx b/src/IconFilterListOffSharpFilled.tsx index 5752298ff..d65c88369 100644 --- a/src/IconFilterListOffSharpFilled.tsx +++ b/src/IconFilterListOffSharpFilled.tsx @@ -8,4 +8,4 @@ const IconFilterListOffSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconFilterListOffSharpFilled as default } +export default IconFilterListOffSharpFilled diff --git a/src/IconFilterListOutlined.tsx b/src/IconFilterListOutlined.tsx index d78b2db70..59e642698 100644 --- a/src/IconFilterListOutlined.tsx +++ b/src/IconFilterListOutlined.tsx @@ -8,4 +8,4 @@ const IconFilterListOutlined: React.FC = ({ ...props }) => ( ) -export { IconFilterListOutlined as default } +export default IconFilterListOutlined diff --git a/src/IconFilterListOutlinedFilled.tsx b/src/IconFilterListOutlinedFilled.tsx index fcbc81fa3..0a9d03436 100644 --- a/src/IconFilterListOutlinedFilled.tsx +++ b/src/IconFilterListOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconFilterListOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconFilterListOutlinedFilled as default } +export default IconFilterListOutlinedFilled diff --git a/src/IconFilterListRounded.tsx b/src/IconFilterListRounded.tsx index c256744d3..b03cefdea 100644 --- a/src/IconFilterListRounded.tsx +++ b/src/IconFilterListRounded.tsx @@ -8,4 +8,4 @@ const IconFilterListRounded: React.FC = ({ ...props }) => ( ) -export { IconFilterListRounded as default } +export default IconFilterListRounded diff --git a/src/IconFilterListRoundedFilled.tsx b/src/IconFilterListRoundedFilled.tsx index 34159cfe3..200a3afe5 100644 --- a/src/IconFilterListRoundedFilled.tsx +++ b/src/IconFilterListRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconFilterListRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconFilterListRoundedFilled as default } +export default IconFilterListRoundedFilled diff --git a/src/IconFilterListSharp.tsx b/src/IconFilterListSharp.tsx index f8e83091f..be0a8a292 100644 --- a/src/IconFilterListSharp.tsx +++ b/src/IconFilterListSharp.tsx @@ -8,4 +8,4 @@ const IconFilterListSharp: React.FC = ({ ...props }) => ( ) -export { IconFilterListSharp as default } +export default IconFilterListSharp diff --git a/src/IconFilterListSharpFilled.tsx b/src/IconFilterListSharpFilled.tsx index 9a883d2de..7349925ad 100644 --- a/src/IconFilterListSharpFilled.tsx +++ b/src/IconFilterListSharpFilled.tsx @@ -8,4 +8,4 @@ const IconFilterListSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconFilterListSharpFilled as default } +export default IconFilterListSharpFilled diff --git a/src/IconFilterNoneOutlined.tsx b/src/IconFilterNoneOutlined.tsx index a5fb11bae..f17e0b8c2 100644 --- a/src/IconFilterNoneOutlined.tsx +++ b/src/IconFilterNoneOutlined.tsx @@ -8,4 +8,4 @@ const IconFilterNoneOutlined: React.FC = ({ ...props }) => ( ) -export { IconFilterNoneOutlined as default } +export default IconFilterNoneOutlined diff --git a/src/IconFilterNoneOutlinedFilled.tsx b/src/IconFilterNoneOutlinedFilled.tsx index 5db1bd8b9..a0060ae37 100644 --- a/src/IconFilterNoneOutlinedFilled.tsx +++ b/src/IconFilterNoneOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconFilterNoneOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconFilterNoneOutlinedFilled as default } +export default IconFilterNoneOutlinedFilled diff --git a/src/IconFilterNoneRounded.tsx b/src/IconFilterNoneRounded.tsx index 9fa5c1411..c422dc3c7 100644 --- a/src/IconFilterNoneRounded.tsx +++ b/src/IconFilterNoneRounded.tsx @@ -8,4 +8,4 @@ const IconFilterNoneRounded: React.FC = ({ ...props }) => ( ) -export { IconFilterNoneRounded as default } +export default IconFilterNoneRounded diff --git a/src/IconFilterNoneRoundedFilled.tsx b/src/IconFilterNoneRoundedFilled.tsx index 6270c32ac..75c598e4e 100644 --- a/src/IconFilterNoneRoundedFilled.tsx +++ b/src/IconFilterNoneRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconFilterNoneRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconFilterNoneRoundedFilled as default } +export default IconFilterNoneRoundedFilled diff --git a/src/IconFilterNoneSharp.tsx b/src/IconFilterNoneSharp.tsx index faa24e513..8d3ba84c6 100644 --- a/src/IconFilterNoneSharp.tsx +++ b/src/IconFilterNoneSharp.tsx @@ -8,4 +8,4 @@ const IconFilterNoneSharp: React.FC = ({ ...props }) => ( ) -export { IconFilterNoneSharp as default } +export default IconFilterNoneSharp diff --git a/src/IconFilterNoneSharpFilled.tsx b/src/IconFilterNoneSharpFilled.tsx index d1f128acd..b3770586c 100644 --- a/src/IconFilterNoneSharpFilled.tsx +++ b/src/IconFilterNoneSharpFilled.tsx @@ -8,4 +8,4 @@ const IconFilterNoneSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconFilterNoneSharpFilled as default } +export default IconFilterNoneSharpFilled diff --git a/src/IconFilterOutlined.tsx b/src/IconFilterOutlined.tsx index f81ebf8b3..6a5dfe65b 100644 --- a/src/IconFilterOutlined.tsx +++ b/src/IconFilterOutlined.tsx @@ -8,4 +8,4 @@ const IconFilterOutlined: React.FC = ({ ...props }) => ( ) -export { IconFilterOutlined as default } +export default IconFilterOutlined diff --git a/src/IconFilterOutlinedFilled.tsx b/src/IconFilterOutlinedFilled.tsx index 0cc258ff0..498847630 100644 --- a/src/IconFilterOutlinedFilled.tsx +++ b/src/IconFilterOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconFilterOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconFilterOutlinedFilled as default } +export default IconFilterOutlinedFilled diff --git a/src/IconFilterRetroluxOutlined.tsx b/src/IconFilterRetroluxOutlined.tsx index 5e58211a6..e9329c9c5 100644 --- a/src/IconFilterRetroluxOutlined.tsx +++ b/src/IconFilterRetroluxOutlined.tsx @@ -8,4 +8,4 @@ const IconFilterRetroluxOutlined: React.FC = ({ ...props }) => ( ) -export { IconFilterRetroluxOutlined as default } +export default IconFilterRetroluxOutlined diff --git a/src/IconFilterRetroluxOutlinedFilled.tsx b/src/IconFilterRetroluxOutlinedFilled.tsx index 9a6983956..5ca61ae73 100644 --- a/src/IconFilterRetroluxOutlinedFilled.tsx +++ b/src/IconFilterRetroluxOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconFilterRetroluxOutlinedFilled: React.FC = ({ ) -export { IconFilterRetroluxOutlinedFilled as default } +export default IconFilterRetroluxOutlinedFilled diff --git a/src/IconFilterRetroluxRounded.tsx b/src/IconFilterRetroluxRounded.tsx index 41715c7e3..95191ac92 100644 --- a/src/IconFilterRetroluxRounded.tsx +++ b/src/IconFilterRetroluxRounded.tsx @@ -8,4 +8,4 @@ const IconFilterRetroluxRounded: React.FC = ({ ...props }) => ( ) -export { IconFilterRetroluxRounded as default } +export default IconFilterRetroluxRounded diff --git a/src/IconFilterRetroluxRoundedFilled.tsx b/src/IconFilterRetroluxRoundedFilled.tsx index 86520766b..03ca842c8 100644 --- a/src/IconFilterRetroluxRoundedFilled.tsx +++ b/src/IconFilterRetroluxRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconFilterRetroluxRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconFilterRetroluxRoundedFilled as default } +export default IconFilterRetroluxRoundedFilled diff --git a/src/IconFilterRetroluxSharp.tsx b/src/IconFilterRetroluxSharp.tsx index 492fb4fdf..5be5d17f8 100644 --- a/src/IconFilterRetroluxSharp.tsx +++ b/src/IconFilterRetroluxSharp.tsx @@ -8,4 +8,4 @@ const IconFilterRetroluxSharp: React.FC = ({ ...props }) => ( ) -export { IconFilterRetroluxSharp as default } +export default IconFilterRetroluxSharp diff --git a/src/IconFilterRetroluxSharpFilled.tsx b/src/IconFilterRetroluxSharpFilled.tsx index 6dc3c0d31..638d0e143 100644 --- a/src/IconFilterRetroluxSharpFilled.tsx +++ b/src/IconFilterRetroluxSharpFilled.tsx @@ -8,4 +8,4 @@ const IconFilterRetroluxSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconFilterRetroluxSharpFilled as default } +export default IconFilterRetroluxSharpFilled diff --git a/src/IconFilterRounded.tsx b/src/IconFilterRounded.tsx index 661bede96..db9a50cd0 100644 --- a/src/IconFilterRounded.tsx +++ b/src/IconFilterRounded.tsx @@ -8,4 +8,4 @@ const IconFilterRounded: React.FC = ({ ...props }) => ( ) -export { IconFilterRounded as default } +export default IconFilterRounded diff --git a/src/IconFilterRoundedFilled.tsx b/src/IconFilterRoundedFilled.tsx index 705aeae1f..e72dcc699 100644 --- a/src/IconFilterRoundedFilled.tsx +++ b/src/IconFilterRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconFilterRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconFilterRoundedFilled as default } +export default IconFilterRoundedFilled diff --git a/src/IconFilterSharp.tsx b/src/IconFilterSharp.tsx index a695bf125..965211cbb 100644 --- a/src/IconFilterSharp.tsx +++ b/src/IconFilterSharp.tsx @@ -8,4 +8,4 @@ const IconFilterSharp: React.FC = ({ ...props }) => ( ) -export { IconFilterSharp as default } +export default IconFilterSharp diff --git a/src/IconFilterSharpFilled.tsx b/src/IconFilterSharpFilled.tsx index e51af7b91..340ba2b17 100644 --- a/src/IconFilterSharpFilled.tsx +++ b/src/IconFilterSharpFilled.tsx @@ -8,4 +8,4 @@ const IconFilterSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconFilterSharpFilled as default } +export default IconFilterSharpFilled diff --git a/src/IconFilterTiltShiftOutlined.tsx b/src/IconFilterTiltShiftOutlined.tsx index c05e519c0..c62abbae3 100644 --- a/src/IconFilterTiltShiftOutlined.tsx +++ b/src/IconFilterTiltShiftOutlined.tsx @@ -8,4 +8,4 @@ const IconFilterTiltShiftOutlined: React.FC = ({ ...props }) => ( ) -export { IconFilterTiltShiftOutlined as default } +export default IconFilterTiltShiftOutlined diff --git a/src/IconFilterTiltShiftOutlinedFilled.tsx b/src/IconFilterTiltShiftOutlinedFilled.tsx index 73324efa0..c67a3da91 100644 --- a/src/IconFilterTiltShiftOutlinedFilled.tsx +++ b/src/IconFilterTiltShiftOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconFilterTiltShiftOutlinedFilled: React.FC = ({ ) -export { IconFilterTiltShiftOutlinedFilled as default } +export default IconFilterTiltShiftOutlinedFilled diff --git a/src/IconFilterTiltShiftRounded.tsx b/src/IconFilterTiltShiftRounded.tsx index 50bf87d86..a7219528d 100644 --- a/src/IconFilterTiltShiftRounded.tsx +++ b/src/IconFilterTiltShiftRounded.tsx @@ -8,4 +8,4 @@ const IconFilterTiltShiftRounded: React.FC = ({ ...props }) => ( ) -export { IconFilterTiltShiftRounded as default } +export default IconFilterTiltShiftRounded diff --git a/src/IconFilterTiltShiftRoundedFilled.tsx b/src/IconFilterTiltShiftRoundedFilled.tsx index f3424e790..158ab4b24 100644 --- a/src/IconFilterTiltShiftRoundedFilled.tsx +++ b/src/IconFilterTiltShiftRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconFilterTiltShiftRoundedFilled: React.FC = ({ ) -export { IconFilterTiltShiftRoundedFilled as default } +export default IconFilterTiltShiftRoundedFilled diff --git a/src/IconFilterTiltShiftSharp.tsx b/src/IconFilterTiltShiftSharp.tsx index 51f7318bb..e06fc76fe 100644 --- a/src/IconFilterTiltShiftSharp.tsx +++ b/src/IconFilterTiltShiftSharp.tsx @@ -8,4 +8,4 @@ const IconFilterTiltShiftSharp: React.FC = ({ ...props }) => ( ) -export { IconFilterTiltShiftSharp as default } +export default IconFilterTiltShiftSharp diff --git a/src/IconFilterTiltShiftSharpFilled.tsx b/src/IconFilterTiltShiftSharpFilled.tsx index 3f8d1012a..4220e7d5a 100644 --- a/src/IconFilterTiltShiftSharpFilled.tsx +++ b/src/IconFilterTiltShiftSharpFilled.tsx @@ -8,4 +8,4 @@ const IconFilterTiltShiftSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconFilterTiltShiftSharpFilled as default } +export default IconFilterTiltShiftSharpFilled diff --git a/src/IconFilterVintageOutlined.tsx b/src/IconFilterVintageOutlined.tsx index 9ad54d33c..e20101410 100644 --- a/src/IconFilterVintageOutlined.tsx +++ b/src/IconFilterVintageOutlined.tsx @@ -8,4 +8,4 @@ const IconFilterVintageOutlined: React.FC = ({ ...props }) => ( ) -export { IconFilterVintageOutlined as default } +export default IconFilterVintageOutlined diff --git a/src/IconFilterVintageOutlinedFilled.tsx b/src/IconFilterVintageOutlinedFilled.tsx index 68ffb10ec..a0d9c5869 100644 --- a/src/IconFilterVintageOutlinedFilled.tsx +++ b/src/IconFilterVintageOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconFilterVintageOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconFilterVintageOutlinedFilled as default } +export default IconFilterVintageOutlinedFilled diff --git a/src/IconFilterVintageRounded.tsx b/src/IconFilterVintageRounded.tsx index 000320e72..dbf4ba17b 100644 --- a/src/IconFilterVintageRounded.tsx +++ b/src/IconFilterVintageRounded.tsx @@ -8,4 +8,4 @@ const IconFilterVintageRounded: React.FC = ({ ...props }) => ( ) -export { IconFilterVintageRounded as default } +export default IconFilterVintageRounded diff --git a/src/IconFilterVintageRoundedFilled.tsx b/src/IconFilterVintageRoundedFilled.tsx index 477d3195d..3e5ecae0b 100644 --- a/src/IconFilterVintageRoundedFilled.tsx +++ b/src/IconFilterVintageRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconFilterVintageRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconFilterVintageRoundedFilled as default } +export default IconFilterVintageRoundedFilled diff --git a/src/IconFilterVintageSharp.tsx b/src/IconFilterVintageSharp.tsx index ddea4d298..b100c9f86 100644 --- a/src/IconFilterVintageSharp.tsx +++ b/src/IconFilterVintageSharp.tsx @@ -8,4 +8,4 @@ const IconFilterVintageSharp: React.FC = ({ ...props }) => ( ) -export { IconFilterVintageSharp as default } +export default IconFilterVintageSharp diff --git a/src/IconFilterVintageSharpFilled.tsx b/src/IconFilterVintageSharpFilled.tsx index 624538b73..75cfd7052 100644 --- a/src/IconFilterVintageSharpFilled.tsx +++ b/src/IconFilterVintageSharpFilled.tsx @@ -8,4 +8,4 @@ const IconFilterVintageSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconFilterVintageSharpFilled as default } +export default IconFilterVintageSharpFilled diff --git a/src/IconFinanceChipOutlined.tsx b/src/IconFinanceChipOutlined.tsx index 98ebf071c..0d98ba300 100644 --- a/src/IconFinanceChipOutlined.tsx +++ b/src/IconFinanceChipOutlined.tsx @@ -8,4 +8,4 @@ const IconFinanceChipOutlined: React.FC = ({ ...props }) => ( ) -export { IconFinanceChipOutlined as default } +export default IconFinanceChipOutlined diff --git a/src/IconFinanceChipOutlinedFilled.tsx b/src/IconFinanceChipOutlinedFilled.tsx index d5b75ce11..c6a4a3bc1 100644 --- a/src/IconFinanceChipOutlinedFilled.tsx +++ b/src/IconFinanceChipOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconFinanceChipOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconFinanceChipOutlinedFilled as default } +export default IconFinanceChipOutlinedFilled diff --git a/src/IconFinanceChipRounded.tsx b/src/IconFinanceChipRounded.tsx index 37a726fac..e3e00740a 100644 --- a/src/IconFinanceChipRounded.tsx +++ b/src/IconFinanceChipRounded.tsx @@ -8,4 +8,4 @@ const IconFinanceChipRounded: React.FC = ({ ...props }) => ( ) -export { IconFinanceChipRounded as default } +export default IconFinanceChipRounded diff --git a/src/IconFinanceChipRoundedFilled.tsx b/src/IconFinanceChipRoundedFilled.tsx index b33d12f3a..32147d343 100644 --- a/src/IconFinanceChipRoundedFilled.tsx +++ b/src/IconFinanceChipRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconFinanceChipRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconFinanceChipRoundedFilled as default } +export default IconFinanceChipRoundedFilled diff --git a/src/IconFinanceChipSharp.tsx b/src/IconFinanceChipSharp.tsx index 13fb754ef..6d7706ef1 100644 --- a/src/IconFinanceChipSharp.tsx +++ b/src/IconFinanceChipSharp.tsx @@ -8,4 +8,4 @@ const IconFinanceChipSharp: React.FC = ({ ...props }) => ( ) -export { IconFinanceChipSharp as default } +export default IconFinanceChipSharp diff --git a/src/IconFinanceChipSharpFilled.tsx b/src/IconFinanceChipSharpFilled.tsx index a7ea14d71..fd4e04523 100644 --- a/src/IconFinanceChipSharpFilled.tsx +++ b/src/IconFinanceChipSharpFilled.tsx @@ -8,4 +8,4 @@ const IconFinanceChipSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconFinanceChipSharpFilled as default } +export default IconFinanceChipSharpFilled diff --git a/src/IconFinanceModeOutlined.tsx b/src/IconFinanceModeOutlined.tsx index eb78555f1..cdd45173b 100644 --- a/src/IconFinanceModeOutlined.tsx +++ b/src/IconFinanceModeOutlined.tsx @@ -8,4 +8,4 @@ const IconFinanceModeOutlined: React.FC = ({ ...props }) => ( ) -export { IconFinanceModeOutlined as default } +export default IconFinanceModeOutlined diff --git a/src/IconFinanceModeOutlinedFilled.tsx b/src/IconFinanceModeOutlinedFilled.tsx index a107d3228..5c2f49163 100644 --- a/src/IconFinanceModeOutlinedFilled.tsx +++ b/src/IconFinanceModeOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconFinanceModeOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconFinanceModeOutlinedFilled as default } +export default IconFinanceModeOutlinedFilled diff --git a/src/IconFinanceModeRounded.tsx b/src/IconFinanceModeRounded.tsx index d978ac72c..ff6682290 100644 --- a/src/IconFinanceModeRounded.tsx +++ b/src/IconFinanceModeRounded.tsx @@ -8,4 +8,4 @@ const IconFinanceModeRounded: React.FC = ({ ...props }) => ( ) -export { IconFinanceModeRounded as default } +export default IconFinanceModeRounded diff --git a/src/IconFinanceModeRoundedFilled.tsx b/src/IconFinanceModeRoundedFilled.tsx index 685794ae1..4646c1794 100644 --- a/src/IconFinanceModeRoundedFilled.tsx +++ b/src/IconFinanceModeRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconFinanceModeRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconFinanceModeRoundedFilled as default } +export default IconFinanceModeRoundedFilled diff --git a/src/IconFinanceModeSharp.tsx b/src/IconFinanceModeSharp.tsx index 2a969ad1e..ced7c24d1 100644 --- a/src/IconFinanceModeSharp.tsx +++ b/src/IconFinanceModeSharp.tsx @@ -8,4 +8,4 @@ const IconFinanceModeSharp: React.FC = ({ ...props }) => ( ) -export { IconFinanceModeSharp as default } +export default IconFinanceModeSharp diff --git a/src/IconFinanceModeSharpFilled.tsx b/src/IconFinanceModeSharpFilled.tsx index ed07c6b0e..d3aa49576 100644 --- a/src/IconFinanceModeSharpFilled.tsx +++ b/src/IconFinanceModeSharpFilled.tsx @@ -8,4 +8,4 @@ const IconFinanceModeSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconFinanceModeSharpFilled as default } +export default IconFinanceModeSharpFilled diff --git a/src/IconFinanceOutlined.tsx b/src/IconFinanceOutlined.tsx index 76c11da9e..e45481791 100644 --- a/src/IconFinanceOutlined.tsx +++ b/src/IconFinanceOutlined.tsx @@ -8,4 +8,4 @@ const IconFinanceOutlined: React.FC = ({ ...props }) => ( ) -export { IconFinanceOutlined as default } +export default IconFinanceOutlined diff --git a/src/IconFinanceOutlinedFilled.tsx b/src/IconFinanceOutlinedFilled.tsx index 0a412b838..d7daa279b 100644 --- a/src/IconFinanceOutlinedFilled.tsx +++ b/src/IconFinanceOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconFinanceOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconFinanceOutlinedFilled as default } +export default IconFinanceOutlinedFilled diff --git a/src/IconFinanceRounded.tsx b/src/IconFinanceRounded.tsx index c10f83a7c..c6748a221 100644 --- a/src/IconFinanceRounded.tsx +++ b/src/IconFinanceRounded.tsx @@ -8,4 +8,4 @@ const IconFinanceRounded: React.FC = ({ ...props }) => ( ) -export { IconFinanceRounded as default } +export default IconFinanceRounded diff --git a/src/IconFinanceRoundedFilled.tsx b/src/IconFinanceRoundedFilled.tsx index b11238444..cd166dff0 100644 --- a/src/IconFinanceRoundedFilled.tsx +++ b/src/IconFinanceRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconFinanceRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconFinanceRoundedFilled as default } +export default IconFinanceRoundedFilled diff --git a/src/IconFinanceSharp.tsx b/src/IconFinanceSharp.tsx index 614e4c4d1..59b7e6ea5 100644 --- a/src/IconFinanceSharp.tsx +++ b/src/IconFinanceSharp.tsx @@ -8,4 +8,4 @@ const IconFinanceSharp: React.FC = ({ ...props }) => ( ) -export { IconFinanceSharp as default } +export default IconFinanceSharp diff --git a/src/IconFinanceSharpFilled.tsx b/src/IconFinanceSharpFilled.tsx index 2b55aaf40..ea6096b9f 100644 --- a/src/IconFinanceSharpFilled.tsx +++ b/src/IconFinanceSharpFilled.tsx @@ -8,4 +8,4 @@ const IconFinanceSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconFinanceSharpFilled as default } +export default IconFinanceSharpFilled diff --git a/src/IconFindInPageOutlined.tsx b/src/IconFindInPageOutlined.tsx index 2c82914aa..ca82d6dec 100644 --- a/src/IconFindInPageOutlined.tsx +++ b/src/IconFindInPageOutlined.tsx @@ -8,4 +8,4 @@ const IconFindInPageOutlined: React.FC = ({ ...props }) => ( ) -export { IconFindInPageOutlined as default } +export default IconFindInPageOutlined diff --git a/src/IconFindInPageOutlinedFilled.tsx b/src/IconFindInPageOutlinedFilled.tsx index 269bc21b3..14a276b8a 100644 --- a/src/IconFindInPageOutlinedFilled.tsx +++ b/src/IconFindInPageOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconFindInPageOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconFindInPageOutlinedFilled as default } +export default IconFindInPageOutlinedFilled diff --git a/src/IconFindInPageRounded.tsx b/src/IconFindInPageRounded.tsx index 8be83ecb3..86648e9b4 100644 --- a/src/IconFindInPageRounded.tsx +++ b/src/IconFindInPageRounded.tsx @@ -8,4 +8,4 @@ const IconFindInPageRounded: React.FC = ({ ...props }) => ( ) -export { IconFindInPageRounded as default } +export default IconFindInPageRounded diff --git a/src/IconFindInPageRoundedFilled.tsx b/src/IconFindInPageRoundedFilled.tsx index 8974c4a91..8747a6b87 100644 --- a/src/IconFindInPageRoundedFilled.tsx +++ b/src/IconFindInPageRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconFindInPageRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconFindInPageRoundedFilled as default } +export default IconFindInPageRoundedFilled diff --git a/src/IconFindInPageSharp.tsx b/src/IconFindInPageSharp.tsx index e1eb96a11..1b5c9426d 100644 --- a/src/IconFindInPageSharp.tsx +++ b/src/IconFindInPageSharp.tsx @@ -8,4 +8,4 @@ const IconFindInPageSharp: React.FC = ({ ...props }) => ( ) -export { IconFindInPageSharp as default } +export default IconFindInPageSharp diff --git a/src/IconFindInPageSharpFilled.tsx b/src/IconFindInPageSharpFilled.tsx index d3e93cc00..edcff0ccb 100644 --- a/src/IconFindInPageSharpFilled.tsx +++ b/src/IconFindInPageSharpFilled.tsx @@ -8,4 +8,4 @@ const IconFindInPageSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconFindInPageSharpFilled as default } +export default IconFindInPageSharpFilled diff --git a/src/IconFindReplaceOutlined.tsx b/src/IconFindReplaceOutlined.tsx index fec13b82f..15b6213d1 100644 --- a/src/IconFindReplaceOutlined.tsx +++ b/src/IconFindReplaceOutlined.tsx @@ -8,4 +8,4 @@ const IconFindReplaceOutlined: React.FC = ({ ...props }) => ( ) -export { IconFindReplaceOutlined as default } +export default IconFindReplaceOutlined diff --git a/src/IconFindReplaceOutlinedFilled.tsx b/src/IconFindReplaceOutlinedFilled.tsx index 95c951d43..3f99b3b5f 100644 --- a/src/IconFindReplaceOutlinedFilled.tsx +++ b/src/IconFindReplaceOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconFindReplaceOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconFindReplaceOutlinedFilled as default } +export default IconFindReplaceOutlinedFilled diff --git a/src/IconFindReplaceRounded.tsx b/src/IconFindReplaceRounded.tsx index 19e846a0e..05c0bfe3f 100644 --- a/src/IconFindReplaceRounded.tsx +++ b/src/IconFindReplaceRounded.tsx @@ -8,4 +8,4 @@ const IconFindReplaceRounded: React.FC = ({ ...props }) => ( ) -export { IconFindReplaceRounded as default } +export default IconFindReplaceRounded diff --git a/src/IconFindReplaceRoundedFilled.tsx b/src/IconFindReplaceRoundedFilled.tsx index 7cfc920b2..405066c39 100644 --- a/src/IconFindReplaceRoundedFilled.tsx +++ b/src/IconFindReplaceRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconFindReplaceRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconFindReplaceRoundedFilled as default } +export default IconFindReplaceRoundedFilled diff --git a/src/IconFindReplaceSharp.tsx b/src/IconFindReplaceSharp.tsx index 62b29c143..54cd48d75 100644 --- a/src/IconFindReplaceSharp.tsx +++ b/src/IconFindReplaceSharp.tsx @@ -8,4 +8,4 @@ const IconFindReplaceSharp: React.FC = ({ ...props }) => ( ) -export { IconFindReplaceSharp as default } +export default IconFindReplaceSharp diff --git a/src/IconFindReplaceSharpFilled.tsx b/src/IconFindReplaceSharpFilled.tsx index 2837344c8..21c906e2c 100644 --- a/src/IconFindReplaceSharpFilled.tsx +++ b/src/IconFindReplaceSharpFilled.tsx @@ -8,4 +8,4 @@ const IconFindReplaceSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconFindReplaceSharpFilled as default } +export default IconFindReplaceSharpFilled diff --git a/src/IconFingerprintOffOutlined.tsx b/src/IconFingerprintOffOutlined.tsx index 3e18d551a..a684d8883 100644 --- a/src/IconFingerprintOffOutlined.tsx +++ b/src/IconFingerprintOffOutlined.tsx @@ -8,4 +8,4 @@ const IconFingerprintOffOutlined: React.FC = ({ ...props }) => ( ) -export { IconFingerprintOffOutlined as default } +export default IconFingerprintOffOutlined diff --git a/src/IconFingerprintOffOutlinedFilled.tsx b/src/IconFingerprintOffOutlinedFilled.tsx index e060228c0..44b8f012d 100644 --- a/src/IconFingerprintOffOutlinedFilled.tsx +++ b/src/IconFingerprintOffOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconFingerprintOffOutlinedFilled: React.FC = ({ ) -export { IconFingerprintOffOutlinedFilled as default } +export default IconFingerprintOffOutlinedFilled diff --git a/src/IconFingerprintOffRounded.tsx b/src/IconFingerprintOffRounded.tsx index d8bfce7d0..7780f5340 100644 --- a/src/IconFingerprintOffRounded.tsx +++ b/src/IconFingerprintOffRounded.tsx @@ -8,4 +8,4 @@ const IconFingerprintOffRounded: React.FC = ({ ...props }) => ( ) -export { IconFingerprintOffRounded as default } +export default IconFingerprintOffRounded diff --git a/src/IconFingerprintOffRoundedFilled.tsx b/src/IconFingerprintOffRoundedFilled.tsx index 79849b081..80c8d33ce 100644 --- a/src/IconFingerprintOffRoundedFilled.tsx +++ b/src/IconFingerprintOffRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconFingerprintOffRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconFingerprintOffRoundedFilled as default } +export default IconFingerprintOffRoundedFilled diff --git a/src/IconFingerprintOffSharp.tsx b/src/IconFingerprintOffSharp.tsx index 96ed886dc..7d8217a4f 100644 --- a/src/IconFingerprintOffSharp.tsx +++ b/src/IconFingerprintOffSharp.tsx @@ -8,4 +8,4 @@ const IconFingerprintOffSharp: React.FC = ({ ...props }) => ( ) -export { IconFingerprintOffSharp as default } +export default IconFingerprintOffSharp diff --git a/src/IconFingerprintOffSharpFilled.tsx b/src/IconFingerprintOffSharpFilled.tsx index 67ae7a950..4f81c9750 100644 --- a/src/IconFingerprintOffSharpFilled.tsx +++ b/src/IconFingerprintOffSharpFilled.tsx @@ -8,4 +8,4 @@ const IconFingerprintOffSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconFingerprintOffSharpFilled as default } +export default IconFingerprintOffSharpFilled diff --git a/src/IconFingerprintOutlined.tsx b/src/IconFingerprintOutlined.tsx index e2780eb5b..ea1887973 100644 --- a/src/IconFingerprintOutlined.tsx +++ b/src/IconFingerprintOutlined.tsx @@ -8,4 +8,4 @@ const IconFingerprintOutlined: React.FC = ({ ...props }) => ( ) -export { IconFingerprintOutlined as default } +export default IconFingerprintOutlined diff --git a/src/IconFingerprintOutlinedFilled.tsx b/src/IconFingerprintOutlinedFilled.tsx index 08fedd32d..770b0efeb 100644 --- a/src/IconFingerprintOutlinedFilled.tsx +++ b/src/IconFingerprintOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconFingerprintOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconFingerprintOutlinedFilled as default } +export default IconFingerprintOutlinedFilled diff --git a/src/IconFingerprintRounded.tsx b/src/IconFingerprintRounded.tsx index 9bf3a1d98..1f2274b53 100644 --- a/src/IconFingerprintRounded.tsx +++ b/src/IconFingerprintRounded.tsx @@ -8,4 +8,4 @@ const IconFingerprintRounded: React.FC = ({ ...props }) => ( ) -export { IconFingerprintRounded as default } +export default IconFingerprintRounded diff --git a/src/IconFingerprintRoundedFilled.tsx b/src/IconFingerprintRoundedFilled.tsx index 67522b895..727398340 100644 --- a/src/IconFingerprintRoundedFilled.tsx +++ b/src/IconFingerprintRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconFingerprintRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconFingerprintRoundedFilled as default } +export default IconFingerprintRoundedFilled diff --git a/src/IconFingerprintSharp.tsx b/src/IconFingerprintSharp.tsx index 6c73b3fdb..681e22eec 100644 --- a/src/IconFingerprintSharp.tsx +++ b/src/IconFingerprintSharp.tsx @@ -8,4 +8,4 @@ const IconFingerprintSharp: React.FC = ({ ...props }) => ( ) -export { IconFingerprintSharp as default } +export default IconFingerprintSharp diff --git a/src/IconFingerprintSharpFilled.tsx b/src/IconFingerprintSharpFilled.tsx index d11a81f30..3d6a0a268 100644 --- a/src/IconFingerprintSharpFilled.tsx +++ b/src/IconFingerprintSharpFilled.tsx @@ -8,4 +8,4 @@ const IconFingerprintSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconFingerprintSharpFilled as default } +export default IconFingerprintSharpFilled diff --git a/src/IconFireExtinguisherOutlined.tsx b/src/IconFireExtinguisherOutlined.tsx index 74affb799..50b7deae9 100644 --- a/src/IconFireExtinguisherOutlined.tsx +++ b/src/IconFireExtinguisherOutlined.tsx @@ -8,4 +8,4 @@ const IconFireExtinguisherOutlined: React.FC = ({ ...props }) => ( ) -export { IconFireExtinguisherOutlined as default } +export default IconFireExtinguisherOutlined diff --git a/src/IconFireExtinguisherOutlinedFilled.tsx b/src/IconFireExtinguisherOutlinedFilled.tsx index d90006929..20e5681bc 100644 --- a/src/IconFireExtinguisherOutlinedFilled.tsx +++ b/src/IconFireExtinguisherOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconFireExtinguisherOutlinedFilled: React.FC = ({ ) -export { IconFireExtinguisherOutlinedFilled as default } +export default IconFireExtinguisherOutlinedFilled diff --git a/src/IconFireExtinguisherRounded.tsx b/src/IconFireExtinguisherRounded.tsx index 38ded6ec2..adc0064b8 100644 --- a/src/IconFireExtinguisherRounded.tsx +++ b/src/IconFireExtinguisherRounded.tsx @@ -8,4 +8,4 @@ const IconFireExtinguisherRounded: React.FC = ({ ...props }) => ( ) -export { IconFireExtinguisherRounded as default } +export default IconFireExtinguisherRounded diff --git a/src/IconFireExtinguisherRoundedFilled.tsx b/src/IconFireExtinguisherRoundedFilled.tsx index b2a0ac376..008550c36 100644 --- a/src/IconFireExtinguisherRoundedFilled.tsx +++ b/src/IconFireExtinguisherRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconFireExtinguisherRoundedFilled: React.FC = ({ ) -export { IconFireExtinguisherRoundedFilled as default } +export default IconFireExtinguisherRoundedFilled diff --git a/src/IconFireExtinguisherSharp.tsx b/src/IconFireExtinguisherSharp.tsx index 81e8b2cf0..af94185ba 100644 --- a/src/IconFireExtinguisherSharp.tsx +++ b/src/IconFireExtinguisherSharp.tsx @@ -8,4 +8,4 @@ const IconFireExtinguisherSharp: React.FC = ({ ...props }) => ( ) -export { IconFireExtinguisherSharp as default } +export default IconFireExtinguisherSharp diff --git a/src/IconFireExtinguisherSharpFilled.tsx b/src/IconFireExtinguisherSharpFilled.tsx index 90879f339..b435e7b0e 100644 --- a/src/IconFireExtinguisherSharpFilled.tsx +++ b/src/IconFireExtinguisherSharpFilled.tsx @@ -8,4 +8,4 @@ const IconFireExtinguisherSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconFireExtinguisherSharpFilled as default } +export default IconFireExtinguisherSharpFilled diff --git a/src/IconFireHydrantOutlined.tsx b/src/IconFireHydrantOutlined.tsx index 182de35e9..063c1235a 100644 --- a/src/IconFireHydrantOutlined.tsx +++ b/src/IconFireHydrantOutlined.tsx @@ -8,4 +8,4 @@ const IconFireHydrantOutlined: React.FC = ({ ...props }) => ( ) -export { IconFireHydrantOutlined as default } +export default IconFireHydrantOutlined diff --git a/src/IconFireHydrantOutlinedFilled.tsx b/src/IconFireHydrantOutlinedFilled.tsx index e52718d02..a407973b2 100644 --- a/src/IconFireHydrantOutlinedFilled.tsx +++ b/src/IconFireHydrantOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconFireHydrantOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconFireHydrantOutlinedFilled as default } +export default IconFireHydrantOutlinedFilled diff --git a/src/IconFireHydrantRounded.tsx b/src/IconFireHydrantRounded.tsx index a1eedf246..43c48179e 100644 --- a/src/IconFireHydrantRounded.tsx +++ b/src/IconFireHydrantRounded.tsx @@ -8,4 +8,4 @@ const IconFireHydrantRounded: React.FC = ({ ...props }) => ( ) -export { IconFireHydrantRounded as default } +export default IconFireHydrantRounded diff --git a/src/IconFireHydrantRoundedFilled.tsx b/src/IconFireHydrantRoundedFilled.tsx index 07c28f4a3..c3796ed55 100644 --- a/src/IconFireHydrantRoundedFilled.tsx +++ b/src/IconFireHydrantRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconFireHydrantRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconFireHydrantRoundedFilled as default } +export default IconFireHydrantRoundedFilled diff --git a/src/IconFireHydrantSharp.tsx b/src/IconFireHydrantSharp.tsx index c1a9971d7..6c81cf0f5 100644 --- a/src/IconFireHydrantSharp.tsx +++ b/src/IconFireHydrantSharp.tsx @@ -8,4 +8,4 @@ const IconFireHydrantSharp: React.FC = ({ ...props }) => ( ) -export { IconFireHydrantSharp as default } +export default IconFireHydrantSharp diff --git a/src/IconFireHydrantSharpFilled.tsx b/src/IconFireHydrantSharpFilled.tsx index 8741f8f4f..e2618200e 100644 --- a/src/IconFireHydrantSharpFilled.tsx +++ b/src/IconFireHydrantSharpFilled.tsx @@ -8,4 +8,4 @@ const IconFireHydrantSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconFireHydrantSharpFilled as default } +export default IconFireHydrantSharpFilled diff --git a/src/IconFireTruckOutlined.tsx b/src/IconFireTruckOutlined.tsx index 507098e4d..a76e0baff 100644 --- a/src/IconFireTruckOutlined.tsx +++ b/src/IconFireTruckOutlined.tsx @@ -8,4 +8,4 @@ const IconFireTruckOutlined: React.FC = ({ ...props }) => ( ) -export { IconFireTruckOutlined as default } +export default IconFireTruckOutlined diff --git a/src/IconFireTruckOutlinedFilled.tsx b/src/IconFireTruckOutlinedFilled.tsx index 0387ba047..02a66a234 100644 --- a/src/IconFireTruckOutlinedFilled.tsx +++ b/src/IconFireTruckOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconFireTruckOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconFireTruckOutlinedFilled as default } +export default IconFireTruckOutlinedFilled diff --git a/src/IconFireTruckRounded.tsx b/src/IconFireTruckRounded.tsx index af3a6b597..48d7abc93 100644 --- a/src/IconFireTruckRounded.tsx +++ b/src/IconFireTruckRounded.tsx @@ -8,4 +8,4 @@ const IconFireTruckRounded: React.FC = ({ ...props }) => ( ) -export { IconFireTruckRounded as default } +export default IconFireTruckRounded diff --git a/src/IconFireTruckRoundedFilled.tsx b/src/IconFireTruckRoundedFilled.tsx index 41a523d90..f33f51969 100644 --- a/src/IconFireTruckRoundedFilled.tsx +++ b/src/IconFireTruckRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconFireTruckRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconFireTruckRoundedFilled as default } +export default IconFireTruckRoundedFilled diff --git a/src/IconFireTruckSharp.tsx b/src/IconFireTruckSharp.tsx index 4bc6c6634..324691881 100644 --- a/src/IconFireTruckSharp.tsx +++ b/src/IconFireTruckSharp.tsx @@ -8,4 +8,4 @@ const IconFireTruckSharp: React.FC = ({ ...props }) => ( ) -export { IconFireTruckSharp as default } +export default IconFireTruckSharp diff --git a/src/IconFireTruckSharpFilled.tsx b/src/IconFireTruckSharpFilled.tsx index 5768710fe..85e4b0134 100644 --- a/src/IconFireTruckSharpFilled.tsx +++ b/src/IconFireTruckSharpFilled.tsx @@ -8,4 +8,4 @@ const IconFireTruckSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconFireTruckSharpFilled as default } +export default IconFireTruckSharpFilled diff --git a/src/IconFireplaceOutlined.tsx b/src/IconFireplaceOutlined.tsx index 5bb06a07f..cf59f2e86 100644 --- a/src/IconFireplaceOutlined.tsx +++ b/src/IconFireplaceOutlined.tsx @@ -8,4 +8,4 @@ const IconFireplaceOutlined: React.FC = ({ ...props }) => ( ) -export { IconFireplaceOutlined as default } +export default IconFireplaceOutlined diff --git a/src/IconFireplaceOutlinedFilled.tsx b/src/IconFireplaceOutlinedFilled.tsx index 7b1b6fb10..f5c17d20b 100644 --- a/src/IconFireplaceOutlinedFilled.tsx +++ b/src/IconFireplaceOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconFireplaceOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconFireplaceOutlinedFilled as default } +export default IconFireplaceOutlinedFilled diff --git a/src/IconFireplaceRounded.tsx b/src/IconFireplaceRounded.tsx index 4276d4141..17c099847 100644 --- a/src/IconFireplaceRounded.tsx +++ b/src/IconFireplaceRounded.tsx @@ -8,4 +8,4 @@ const IconFireplaceRounded: React.FC = ({ ...props }) => ( ) -export { IconFireplaceRounded as default } +export default IconFireplaceRounded diff --git a/src/IconFireplaceRoundedFilled.tsx b/src/IconFireplaceRoundedFilled.tsx index cdea0d07a..4f95000b8 100644 --- a/src/IconFireplaceRoundedFilled.tsx +++ b/src/IconFireplaceRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconFireplaceRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconFireplaceRoundedFilled as default } +export default IconFireplaceRoundedFilled diff --git a/src/IconFireplaceSharp.tsx b/src/IconFireplaceSharp.tsx index 97817161b..98c89a7f5 100644 --- a/src/IconFireplaceSharp.tsx +++ b/src/IconFireplaceSharp.tsx @@ -8,4 +8,4 @@ const IconFireplaceSharp: React.FC = ({ ...props }) => ( ) -export { IconFireplaceSharp as default } +export default IconFireplaceSharp diff --git a/src/IconFireplaceSharpFilled.tsx b/src/IconFireplaceSharpFilled.tsx index bb86fd7cf..914bfc347 100644 --- a/src/IconFireplaceSharpFilled.tsx +++ b/src/IconFireplaceSharpFilled.tsx @@ -8,4 +8,4 @@ const IconFireplaceSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconFireplaceSharpFilled as default } +export default IconFireplaceSharpFilled diff --git a/src/IconFirstPageOutlined.tsx b/src/IconFirstPageOutlined.tsx index 84da605db..6dfc15358 100644 --- a/src/IconFirstPageOutlined.tsx +++ b/src/IconFirstPageOutlined.tsx @@ -8,4 +8,4 @@ const IconFirstPageOutlined: React.FC = ({ ...props }) => ( ) -export { IconFirstPageOutlined as default } +export default IconFirstPageOutlined diff --git a/src/IconFirstPageOutlinedFilled.tsx b/src/IconFirstPageOutlinedFilled.tsx index 4bf57a8c7..a5aa4990e 100644 --- a/src/IconFirstPageOutlinedFilled.tsx +++ b/src/IconFirstPageOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconFirstPageOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconFirstPageOutlinedFilled as default } +export default IconFirstPageOutlinedFilled diff --git a/src/IconFirstPageRounded.tsx b/src/IconFirstPageRounded.tsx index 529195245..fd4a76fea 100644 --- a/src/IconFirstPageRounded.tsx +++ b/src/IconFirstPageRounded.tsx @@ -8,4 +8,4 @@ const IconFirstPageRounded: React.FC = ({ ...props }) => ( ) -export { IconFirstPageRounded as default } +export default IconFirstPageRounded diff --git a/src/IconFirstPageRoundedFilled.tsx b/src/IconFirstPageRoundedFilled.tsx index 0fe685056..d55ea31ba 100644 --- a/src/IconFirstPageRoundedFilled.tsx +++ b/src/IconFirstPageRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconFirstPageRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconFirstPageRoundedFilled as default } +export default IconFirstPageRoundedFilled diff --git a/src/IconFirstPageSharp.tsx b/src/IconFirstPageSharp.tsx index b0949e9e7..c07aa6b83 100644 --- a/src/IconFirstPageSharp.tsx +++ b/src/IconFirstPageSharp.tsx @@ -8,4 +8,4 @@ const IconFirstPageSharp: React.FC = ({ ...props }) => ( ) -export { IconFirstPageSharp as default } +export default IconFirstPageSharp diff --git a/src/IconFirstPageSharpFilled.tsx b/src/IconFirstPageSharpFilled.tsx index 069cfd136..3b4e4547a 100644 --- a/src/IconFirstPageSharpFilled.tsx +++ b/src/IconFirstPageSharpFilled.tsx @@ -8,4 +8,4 @@ const IconFirstPageSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconFirstPageSharpFilled as default } +export default IconFirstPageSharpFilled diff --git a/src/IconFitPageOutlined.tsx b/src/IconFitPageOutlined.tsx index 7f04309de..ce43f7e90 100644 --- a/src/IconFitPageOutlined.tsx +++ b/src/IconFitPageOutlined.tsx @@ -8,4 +8,4 @@ const IconFitPageOutlined: React.FC = ({ ...props }) => ( ) -export { IconFitPageOutlined as default } +export default IconFitPageOutlined diff --git a/src/IconFitPageOutlinedFilled.tsx b/src/IconFitPageOutlinedFilled.tsx index 81ba3af43..43d55dde8 100644 --- a/src/IconFitPageOutlinedFilled.tsx +++ b/src/IconFitPageOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconFitPageOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconFitPageOutlinedFilled as default } +export default IconFitPageOutlinedFilled diff --git a/src/IconFitPageRounded.tsx b/src/IconFitPageRounded.tsx index d1d8c75aa..348322781 100644 --- a/src/IconFitPageRounded.tsx +++ b/src/IconFitPageRounded.tsx @@ -8,4 +8,4 @@ const IconFitPageRounded: React.FC = ({ ...props }) => ( ) -export { IconFitPageRounded as default } +export default IconFitPageRounded diff --git a/src/IconFitPageRoundedFilled.tsx b/src/IconFitPageRoundedFilled.tsx index 88290c753..2a962581c 100644 --- a/src/IconFitPageRoundedFilled.tsx +++ b/src/IconFitPageRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconFitPageRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconFitPageRoundedFilled as default } +export default IconFitPageRoundedFilled diff --git a/src/IconFitPageSharp.tsx b/src/IconFitPageSharp.tsx index ab87857e3..ff53f2fa9 100644 --- a/src/IconFitPageSharp.tsx +++ b/src/IconFitPageSharp.tsx @@ -8,4 +8,4 @@ const IconFitPageSharp: React.FC = ({ ...props }) => ( ) -export { IconFitPageSharp as default } +export default IconFitPageSharp diff --git a/src/IconFitPageSharpFilled.tsx b/src/IconFitPageSharpFilled.tsx index fab035b54..674b5fec7 100644 --- a/src/IconFitPageSharpFilled.tsx +++ b/src/IconFitPageSharpFilled.tsx @@ -8,4 +8,4 @@ const IconFitPageSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconFitPageSharpFilled as default } +export default IconFitPageSharpFilled diff --git a/src/IconFitScreenOutlined.tsx b/src/IconFitScreenOutlined.tsx index 3a4036827..76c83c4ef 100644 --- a/src/IconFitScreenOutlined.tsx +++ b/src/IconFitScreenOutlined.tsx @@ -8,4 +8,4 @@ const IconFitScreenOutlined: React.FC = ({ ...props }) => ( ) -export { IconFitScreenOutlined as default } +export default IconFitScreenOutlined diff --git a/src/IconFitScreenOutlinedFilled.tsx b/src/IconFitScreenOutlinedFilled.tsx index 1ee5ca125..cf73d64dd 100644 --- a/src/IconFitScreenOutlinedFilled.tsx +++ b/src/IconFitScreenOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconFitScreenOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconFitScreenOutlinedFilled as default } +export default IconFitScreenOutlinedFilled diff --git a/src/IconFitScreenRounded.tsx b/src/IconFitScreenRounded.tsx index 2f5c129d1..a0657841e 100644 --- a/src/IconFitScreenRounded.tsx +++ b/src/IconFitScreenRounded.tsx @@ -8,4 +8,4 @@ const IconFitScreenRounded: React.FC = ({ ...props }) => ( ) -export { IconFitScreenRounded as default } +export default IconFitScreenRounded diff --git a/src/IconFitScreenRoundedFilled.tsx b/src/IconFitScreenRoundedFilled.tsx index 938583540..d40f585c4 100644 --- a/src/IconFitScreenRoundedFilled.tsx +++ b/src/IconFitScreenRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconFitScreenRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconFitScreenRoundedFilled as default } +export default IconFitScreenRoundedFilled diff --git a/src/IconFitScreenSharp.tsx b/src/IconFitScreenSharp.tsx index e00ff0941..db8852654 100644 --- a/src/IconFitScreenSharp.tsx +++ b/src/IconFitScreenSharp.tsx @@ -8,4 +8,4 @@ const IconFitScreenSharp: React.FC = ({ ...props }) => ( ) -export { IconFitScreenSharp as default } +export default IconFitScreenSharp diff --git a/src/IconFitScreenSharpFilled.tsx b/src/IconFitScreenSharpFilled.tsx index 61e500ff8..f00f9338c 100644 --- a/src/IconFitScreenSharpFilled.tsx +++ b/src/IconFitScreenSharpFilled.tsx @@ -8,4 +8,4 @@ const IconFitScreenSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconFitScreenSharpFilled as default } +export default IconFitScreenSharpFilled diff --git a/src/IconFitWidthOutlined.tsx b/src/IconFitWidthOutlined.tsx index 55e499e06..f0fa03364 100644 --- a/src/IconFitWidthOutlined.tsx +++ b/src/IconFitWidthOutlined.tsx @@ -8,4 +8,4 @@ const IconFitWidthOutlined: React.FC = ({ ...props }) => ( ) -export { IconFitWidthOutlined as default } +export default IconFitWidthOutlined diff --git a/src/IconFitWidthOutlinedFilled.tsx b/src/IconFitWidthOutlinedFilled.tsx index 8169e05ca..84ad28905 100644 --- a/src/IconFitWidthOutlinedFilled.tsx +++ b/src/IconFitWidthOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconFitWidthOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconFitWidthOutlinedFilled as default } +export default IconFitWidthOutlinedFilled diff --git a/src/IconFitWidthRounded.tsx b/src/IconFitWidthRounded.tsx index 267f237cb..840d23e1a 100644 --- a/src/IconFitWidthRounded.tsx +++ b/src/IconFitWidthRounded.tsx @@ -8,4 +8,4 @@ const IconFitWidthRounded: React.FC = ({ ...props }) => ( ) -export { IconFitWidthRounded as default } +export default IconFitWidthRounded diff --git a/src/IconFitWidthRoundedFilled.tsx b/src/IconFitWidthRoundedFilled.tsx index 61b1cfda9..ed2e2d56e 100644 --- a/src/IconFitWidthRoundedFilled.tsx +++ b/src/IconFitWidthRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconFitWidthRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconFitWidthRoundedFilled as default } +export default IconFitWidthRoundedFilled diff --git a/src/IconFitWidthSharp.tsx b/src/IconFitWidthSharp.tsx index cd7520570..dfd66d0f0 100644 --- a/src/IconFitWidthSharp.tsx +++ b/src/IconFitWidthSharp.tsx @@ -8,4 +8,4 @@ const IconFitWidthSharp: React.FC = ({ ...props }) => ( ) -export { IconFitWidthSharp as default } +export default IconFitWidthSharp diff --git a/src/IconFitWidthSharpFilled.tsx b/src/IconFitWidthSharpFilled.tsx index 51835edf2..9ab23c650 100644 --- a/src/IconFitWidthSharpFilled.tsx +++ b/src/IconFitWidthSharpFilled.tsx @@ -8,4 +8,4 @@ const IconFitWidthSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconFitWidthSharpFilled as default } +export default IconFitWidthSharpFilled diff --git a/src/IconFitnessCenterOutlined.tsx b/src/IconFitnessCenterOutlined.tsx index 9b1efe900..0ee4b3e96 100644 --- a/src/IconFitnessCenterOutlined.tsx +++ b/src/IconFitnessCenterOutlined.tsx @@ -8,4 +8,4 @@ const IconFitnessCenterOutlined: React.FC = ({ ...props }) => ( ) -export { IconFitnessCenterOutlined as default } +export default IconFitnessCenterOutlined diff --git a/src/IconFitnessCenterOutlinedFilled.tsx b/src/IconFitnessCenterOutlinedFilled.tsx index 7f5fad811..0af53ff66 100644 --- a/src/IconFitnessCenterOutlinedFilled.tsx +++ b/src/IconFitnessCenterOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconFitnessCenterOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconFitnessCenterOutlinedFilled as default } +export default IconFitnessCenterOutlinedFilled diff --git a/src/IconFitnessCenterRounded.tsx b/src/IconFitnessCenterRounded.tsx index f72bd5032..01c3f3f70 100644 --- a/src/IconFitnessCenterRounded.tsx +++ b/src/IconFitnessCenterRounded.tsx @@ -8,4 +8,4 @@ const IconFitnessCenterRounded: React.FC = ({ ...props }) => ( ) -export { IconFitnessCenterRounded as default } +export default IconFitnessCenterRounded diff --git a/src/IconFitnessCenterRoundedFilled.tsx b/src/IconFitnessCenterRoundedFilled.tsx index f4813c874..c68473ecd 100644 --- a/src/IconFitnessCenterRoundedFilled.tsx +++ b/src/IconFitnessCenterRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconFitnessCenterRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconFitnessCenterRoundedFilled as default } +export default IconFitnessCenterRoundedFilled diff --git a/src/IconFitnessCenterSharp.tsx b/src/IconFitnessCenterSharp.tsx index ebef832a5..b660ced05 100644 --- a/src/IconFitnessCenterSharp.tsx +++ b/src/IconFitnessCenterSharp.tsx @@ -8,4 +8,4 @@ const IconFitnessCenterSharp: React.FC = ({ ...props }) => ( ) -export { IconFitnessCenterSharp as default } +export default IconFitnessCenterSharp diff --git a/src/IconFitnessCenterSharpFilled.tsx b/src/IconFitnessCenterSharpFilled.tsx index f3200153d..7c8aa73e0 100644 --- a/src/IconFitnessCenterSharpFilled.tsx +++ b/src/IconFitnessCenterSharpFilled.tsx @@ -8,4 +8,4 @@ const IconFitnessCenterSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconFitnessCenterSharpFilled as default } +export default IconFitnessCenterSharpFilled diff --git a/src/IconFitnessTrackerOutlined.tsx b/src/IconFitnessTrackerOutlined.tsx index 20e1d28ff..f4e5f0bf7 100644 --- a/src/IconFitnessTrackerOutlined.tsx +++ b/src/IconFitnessTrackerOutlined.tsx @@ -8,4 +8,4 @@ const IconFitnessTrackerOutlined: React.FC = ({ ...props }) => ( ) -export { IconFitnessTrackerOutlined as default } +export default IconFitnessTrackerOutlined diff --git a/src/IconFitnessTrackerOutlinedFilled.tsx b/src/IconFitnessTrackerOutlinedFilled.tsx index c712c30da..c8ab90faa 100644 --- a/src/IconFitnessTrackerOutlinedFilled.tsx +++ b/src/IconFitnessTrackerOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconFitnessTrackerOutlinedFilled: React.FC = ({ ) -export { IconFitnessTrackerOutlinedFilled as default } +export default IconFitnessTrackerOutlinedFilled diff --git a/src/IconFitnessTrackerRounded.tsx b/src/IconFitnessTrackerRounded.tsx index 6a95f4dcb..f8acbbb0e 100644 --- a/src/IconFitnessTrackerRounded.tsx +++ b/src/IconFitnessTrackerRounded.tsx @@ -8,4 +8,4 @@ const IconFitnessTrackerRounded: React.FC = ({ ...props }) => ( ) -export { IconFitnessTrackerRounded as default } +export default IconFitnessTrackerRounded diff --git a/src/IconFitnessTrackerRoundedFilled.tsx b/src/IconFitnessTrackerRoundedFilled.tsx index e31db8983..e3383810d 100644 --- a/src/IconFitnessTrackerRoundedFilled.tsx +++ b/src/IconFitnessTrackerRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconFitnessTrackerRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconFitnessTrackerRoundedFilled as default } +export default IconFitnessTrackerRoundedFilled diff --git a/src/IconFitnessTrackerSharp.tsx b/src/IconFitnessTrackerSharp.tsx index 237a34c07..d8f6d5b93 100644 --- a/src/IconFitnessTrackerSharp.tsx +++ b/src/IconFitnessTrackerSharp.tsx @@ -8,4 +8,4 @@ const IconFitnessTrackerSharp: React.FC = ({ ...props }) => ( ) -export { IconFitnessTrackerSharp as default } +export default IconFitnessTrackerSharp diff --git a/src/IconFitnessTrackerSharpFilled.tsx b/src/IconFitnessTrackerSharpFilled.tsx index 34670e94d..599ecdacb 100644 --- a/src/IconFitnessTrackerSharpFilled.tsx +++ b/src/IconFitnessTrackerSharpFilled.tsx @@ -8,4 +8,4 @@ const IconFitnessTrackerSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconFitnessTrackerSharpFilled as default } +export default IconFitnessTrackerSharpFilled diff --git a/src/IconFlag2Outlined.tsx b/src/IconFlag2Outlined.tsx index 22d172ab3..7ab8ad752 100644 --- a/src/IconFlag2Outlined.tsx +++ b/src/IconFlag2Outlined.tsx @@ -8,4 +8,4 @@ const IconFlag2Outlined: React.FC = ({ ...props }) => ( ) -export { IconFlag2Outlined as default } +export default IconFlag2Outlined diff --git a/src/IconFlag2OutlinedFilled.tsx b/src/IconFlag2OutlinedFilled.tsx index e389b5afc..4203ff020 100644 --- a/src/IconFlag2OutlinedFilled.tsx +++ b/src/IconFlag2OutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconFlag2OutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconFlag2OutlinedFilled as default } +export default IconFlag2OutlinedFilled diff --git a/src/IconFlag2Rounded.tsx b/src/IconFlag2Rounded.tsx index 6000c9af5..84c044136 100644 --- a/src/IconFlag2Rounded.tsx +++ b/src/IconFlag2Rounded.tsx @@ -8,4 +8,4 @@ const IconFlag2Rounded: React.FC = ({ ...props }) => ( ) -export { IconFlag2Rounded as default } +export default IconFlag2Rounded diff --git a/src/IconFlag2RoundedFilled.tsx b/src/IconFlag2RoundedFilled.tsx index f2b23e481..9faeac580 100644 --- a/src/IconFlag2RoundedFilled.tsx +++ b/src/IconFlag2RoundedFilled.tsx @@ -8,4 +8,4 @@ const IconFlag2RoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconFlag2RoundedFilled as default } +export default IconFlag2RoundedFilled diff --git a/src/IconFlag2Sharp.tsx b/src/IconFlag2Sharp.tsx index 398f54ebc..3912415aa 100644 --- a/src/IconFlag2Sharp.tsx +++ b/src/IconFlag2Sharp.tsx @@ -8,4 +8,4 @@ const IconFlag2Sharp: React.FC = ({ ...props }) => ( ) -export { IconFlag2Sharp as default } +export default IconFlag2Sharp diff --git a/src/IconFlag2SharpFilled.tsx b/src/IconFlag2SharpFilled.tsx index 444416755..e73584e40 100644 --- a/src/IconFlag2SharpFilled.tsx +++ b/src/IconFlag2SharpFilled.tsx @@ -8,4 +8,4 @@ const IconFlag2SharpFilled: React.FC = ({ ...props }) => ( ) -export { IconFlag2SharpFilled as default } +export default IconFlag2SharpFilled diff --git a/src/IconFlagCircleOutlined.tsx b/src/IconFlagCircleOutlined.tsx index 484b2b861..cf1182096 100644 --- a/src/IconFlagCircleOutlined.tsx +++ b/src/IconFlagCircleOutlined.tsx @@ -8,4 +8,4 @@ const IconFlagCircleOutlined: React.FC = ({ ...props }) => ( ) -export { IconFlagCircleOutlined as default } +export default IconFlagCircleOutlined diff --git a/src/IconFlagCircleOutlinedFilled.tsx b/src/IconFlagCircleOutlinedFilled.tsx index 1807837e9..75337ccc4 100644 --- a/src/IconFlagCircleOutlinedFilled.tsx +++ b/src/IconFlagCircleOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconFlagCircleOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconFlagCircleOutlinedFilled as default } +export default IconFlagCircleOutlinedFilled diff --git a/src/IconFlagCircleRounded.tsx b/src/IconFlagCircleRounded.tsx index 753e2f333..ec68d7028 100644 --- a/src/IconFlagCircleRounded.tsx +++ b/src/IconFlagCircleRounded.tsx @@ -8,4 +8,4 @@ const IconFlagCircleRounded: React.FC = ({ ...props }) => ( ) -export { IconFlagCircleRounded as default } +export default IconFlagCircleRounded diff --git a/src/IconFlagCircleRoundedFilled.tsx b/src/IconFlagCircleRoundedFilled.tsx index 3b4187c94..2e4872c94 100644 --- a/src/IconFlagCircleRoundedFilled.tsx +++ b/src/IconFlagCircleRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconFlagCircleRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconFlagCircleRoundedFilled as default } +export default IconFlagCircleRoundedFilled diff --git a/src/IconFlagCircleSharp.tsx b/src/IconFlagCircleSharp.tsx index f4b88489f..a637299d4 100644 --- a/src/IconFlagCircleSharp.tsx +++ b/src/IconFlagCircleSharp.tsx @@ -8,4 +8,4 @@ const IconFlagCircleSharp: React.FC = ({ ...props }) => ( ) -export { IconFlagCircleSharp as default } +export default IconFlagCircleSharp diff --git a/src/IconFlagCircleSharpFilled.tsx b/src/IconFlagCircleSharpFilled.tsx index 192003ee4..88859f95c 100644 --- a/src/IconFlagCircleSharpFilled.tsx +++ b/src/IconFlagCircleSharpFilled.tsx @@ -8,4 +8,4 @@ const IconFlagCircleSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconFlagCircleSharpFilled as default } +export default IconFlagCircleSharpFilled diff --git a/src/IconFlagOutlined.tsx b/src/IconFlagOutlined.tsx index 6a525be89..672f1f267 100644 --- a/src/IconFlagOutlined.tsx +++ b/src/IconFlagOutlined.tsx @@ -8,4 +8,4 @@ const IconFlagOutlined: React.FC = ({ ...props }) => ( ) -export { IconFlagOutlined as default } +export default IconFlagOutlined diff --git a/src/IconFlagOutlinedFilled.tsx b/src/IconFlagOutlinedFilled.tsx index aa5b03ecc..2117e5808 100644 --- a/src/IconFlagOutlinedFilled.tsx +++ b/src/IconFlagOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconFlagOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconFlagOutlinedFilled as default } +export default IconFlagOutlinedFilled diff --git a/src/IconFlagRounded.tsx b/src/IconFlagRounded.tsx index ea240b861..cdf2dcbf3 100644 --- a/src/IconFlagRounded.tsx +++ b/src/IconFlagRounded.tsx @@ -8,4 +8,4 @@ const IconFlagRounded: React.FC = ({ ...props }) => ( ) -export { IconFlagRounded as default } +export default IconFlagRounded diff --git a/src/IconFlagRoundedFilled.tsx b/src/IconFlagRoundedFilled.tsx index 0f4aaabcc..79e81d6b8 100644 --- a/src/IconFlagRoundedFilled.tsx +++ b/src/IconFlagRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconFlagRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconFlagRoundedFilled as default } +export default IconFlagRoundedFilled diff --git a/src/IconFlagSharp.tsx b/src/IconFlagSharp.tsx index 73c66c687..cea78972d 100644 --- a/src/IconFlagSharp.tsx +++ b/src/IconFlagSharp.tsx @@ -8,4 +8,4 @@ const IconFlagSharp: React.FC = ({ ...props }) => ( ) -export { IconFlagSharp as default } +export default IconFlagSharp diff --git a/src/IconFlagSharpFilled.tsx b/src/IconFlagSharpFilled.tsx index 229347a4d..5023ba483 100644 --- a/src/IconFlagSharpFilled.tsx +++ b/src/IconFlagSharpFilled.tsx @@ -8,4 +8,4 @@ const IconFlagSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconFlagSharpFilled as default } +export default IconFlagSharpFilled diff --git a/src/IconFlakyOutlined.tsx b/src/IconFlakyOutlined.tsx index 1685bc240..b6f0e0ea2 100644 --- a/src/IconFlakyOutlined.tsx +++ b/src/IconFlakyOutlined.tsx @@ -8,4 +8,4 @@ const IconFlakyOutlined: React.FC = ({ ...props }) => ( ) -export { IconFlakyOutlined as default } +export default IconFlakyOutlined diff --git a/src/IconFlakyOutlinedFilled.tsx b/src/IconFlakyOutlinedFilled.tsx index 6295312a1..431739dc9 100644 --- a/src/IconFlakyOutlinedFilled.tsx +++ b/src/IconFlakyOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconFlakyOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconFlakyOutlinedFilled as default } +export default IconFlakyOutlinedFilled diff --git a/src/IconFlakyRounded.tsx b/src/IconFlakyRounded.tsx index 077a978c2..732e00f24 100644 --- a/src/IconFlakyRounded.tsx +++ b/src/IconFlakyRounded.tsx @@ -8,4 +8,4 @@ const IconFlakyRounded: React.FC = ({ ...props }) => ( ) -export { IconFlakyRounded as default } +export default IconFlakyRounded diff --git a/src/IconFlakyRoundedFilled.tsx b/src/IconFlakyRoundedFilled.tsx index 7aea27864..48b8428df 100644 --- a/src/IconFlakyRoundedFilled.tsx +++ b/src/IconFlakyRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconFlakyRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconFlakyRoundedFilled as default } +export default IconFlakyRoundedFilled diff --git a/src/IconFlakySharp.tsx b/src/IconFlakySharp.tsx index 112d531f2..b19fafff7 100644 --- a/src/IconFlakySharp.tsx +++ b/src/IconFlakySharp.tsx @@ -8,4 +8,4 @@ const IconFlakySharp: React.FC = ({ ...props }) => ( ) -export { IconFlakySharp as default } +export default IconFlakySharp diff --git a/src/IconFlakySharpFilled.tsx b/src/IconFlakySharpFilled.tsx index e22809f31..09d9252f3 100644 --- a/src/IconFlakySharpFilled.tsx +++ b/src/IconFlakySharpFilled.tsx @@ -8,4 +8,4 @@ const IconFlakySharpFilled: React.FC = ({ ...props }) => ( ) -export { IconFlakySharpFilled as default } +export default IconFlakySharpFilled diff --git a/src/IconFlareOutlined.tsx b/src/IconFlareOutlined.tsx index ba1832f1c..b408ff090 100644 --- a/src/IconFlareOutlined.tsx +++ b/src/IconFlareOutlined.tsx @@ -8,4 +8,4 @@ const IconFlareOutlined: React.FC = ({ ...props }) => ( ) -export { IconFlareOutlined as default } +export default IconFlareOutlined diff --git a/src/IconFlareOutlinedFilled.tsx b/src/IconFlareOutlinedFilled.tsx index 07d5b9109..bfedc4540 100644 --- a/src/IconFlareOutlinedFilled.tsx +++ b/src/IconFlareOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconFlareOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconFlareOutlinedFilled as default } +export default IconFlareOutlinedFilled diff --git a/src/IconFlareRounded.tsx b/src/IconFlareRounded.tsx index 3a2ebe9dd..48601684d 100644 --- a/src/IconFlareRounded.tsx +++ b/src/IconFlareRounded.tsx @@ -8,4 +8,4 @@ const IconFlareRounded: React.FC = ({ ...props }) => ( ) -export { IconFlareRounded as default } +export default IconFlareRounded diff --git a/src/IconFlareRoundedFilled.tsx b/src/IconFlareRoundedFilled.tsx index 3c39dcf58..d2408dde9 100644 --- a/src/IconFlareRoundedFilled.tsx +++ b/src/IconFlareRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconFlareRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconFlareRoundedFilled as default } +export default IconFlareRoundedFilled diff --git a/src/IconFlareSharp.tsx b/src/IconFlareSharp.tsx index 9f8bda452..d0d35ab13 100644 --- a/src/IconFlareSharp.tsx +++ b/src/IconFlareSharp.tsx @@ -8,4 +8,4 @@ const IconFlareSharp: React.FC = ({ ...props }) => ( ) -export { IconFlareSharp as default } +export default IconFlareSharp diff --git a/src/IconFlareSharpFilled.tsx b/src/IconFlareSharpFilled.tsx index a449570d8..f1df4b752 100644 --- a/src/IconFlareSharpFilled.tsx +++ b/src/IconFlareSharpFilled.tsx @@ -8,4 +8,4 @@ const IconFlareSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconFlareSharpFilled as default } +export default IconFlareSharpFilled diff --git a/src/IconFlashAutoOutlined.tsx b/src/IconFlashAutoOutlined.tsx index 5e8ce4a1f..7e00a1170 100644 --- a/src/IconFlashAutoOutlined.tsx +++ b/src/IconFlashAutoOutlined.tsx @@ -8,4 +8,4 @@ const IconFlashAutoOutlined: React.FC = ({ ...props }) => ( ) -export { IconFlashAutoOutlined as default } +export default IconFlashAutoOutlined diff --git a/src/IconFlashAutoOutlinedFilled.tsx b/src/IconFlashAutoOutlinedFilled.tsx index 97742766d..a3fd37552 100644 --- a/src/IconFlashAutoOutlinedFilled.tsx +++ b/src/IconFlashAutoOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconFlashAutoOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconFlashAutoOutlinedFilled as default } +export default IconFlashAutoOutlinedFilled diff --git a/src/IconFlashAutoRounded.tsx b/src/IconFlashAutoRounded.tsx index 847538b87..67a1a540b 100644 --- a/src/IconFlashAutoRounded.tsx +++ b/src/IconFlashAutoRounded.tsx @@ -8,4 +8,4 @@ const IconFlashAutoRounded: React.FC = ({ ...props }) => ( ) -export { IconFlashAutoRounded as default } +export default IconFlashAutoRounded diff --git a/src/IconFlashAutoRoundedFilled.tsx b/src/IconFlashAutoRoundedFilled.tsx index 68d3001d0..1d87745f0 100644 --- a/src/IconFlashAutoRoundedFilled.tsx +++ b/src/IconFlashAutoRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconFlashAutoRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconFlashAutoRoundedFilled as default } +export default IconFlashAutoRoundedFilled diff --git a/src/IconFlashAutoSharp.tsx b/src/IconFlashAutoSharp.tsx index 2c955b801..01c33aec6 100644 --- a/src/IconFlashAutoSharp.tsx +++ b/src/IconFlashAutoSharp.tsx @@ -8,4 +8,4 @@ const IconFlashAutoSharp: React.FC = ({ ...props }) => ( ) -export { IconFlashAutoSharp as default } +export default IconFlashAutoSharp diff --git a/src/IconFlashAutoSharpFilled.tsx b/src/IconFlashAutoSharpFilled.tsx index 1f7c29c40..2ac9c7888 100644 --- a/src/IconFlashAutoSharpFilled.tsx +++ b/src/IconFlashAutoSharpFilled.tsx @@ -8,4 +8,4 @@ const IconFlashAutoSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconFlashAutoSharpFilled as default } +export default IconFlashAutoSharpFilled diff --git a/src/IconFlashOffOutlined.tsx b/src/IconFlashOffOutlined.tsx index 49d37227c..86382f5a8 100644 --- a/src/IconFlashOffOutlined.tsx +++ b/src/IconFlashOffOutlined.tsx @@ -8,4 +8,4 @@ const IconFlashOffOutlined: React.FC = ({ ...props }) => ( ) -export { IconFlashOffOutlined as default } +export default IconFlashOffOutlined diff --git a/src/IconFlashOffOutlinedFilled.tsx b/src/IconFlashOffOutlinedFilled.tsx index 9c41284fb..da9f784e4 100644 --- a/src/IconFlashOffOutlinedFilled.tsx +++ b/src/IconFlashOffOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconFlashOffOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconFlashOffOutlinedFilled as default } +export default IconFlashOffOutlinedFilled diff --git a/src/IconFlashOffRounded.tsx b/src/IconFlashOffRounded.tsx index 571df6437..9e3e8298d 100644 --- a/src/IconFlashOffRounded.tsx +++ b/src/IconFlashOffRounded.tsx @@ -8,4 +8,4 @@ const IconFlashOffRounded: React.FC = ({ ...props }) => ( ) -export { IconFlashOffRounded as default } +export default IconFlashOffRounded diff --git a/src/IconFlashOffRoundedFilled.tsx b/src/IconFlashOffRoundedFilled.tsx index 4a6c8d1ce..2e587510a 100644 --- a/src/IconFlashOffRoundedFilled.tsx +++ b/src/IconFlashOffRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconFlashOffRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconFlashOffRoundedFilled as default } +export default IconFlashOffRoundedFilled diff --git a/src/IconFlashOffSharp.tsx b/src/IconFlashOffSharp.tsx index 5b9566626..8b82281f0 100644 --- a/src/IconFlashOffSharp.tsx +++ b/src/IconFlashOffSharp.tsx @@ -8,4 +8,4 @@ const IconFlashOffSharp: React.FC = ({ ...props }) => ( ) -export { IconFlashOffSharp as default } +export default IconFlashOffSharp diff --git a/src/IconFlashOffSharpFilled.tsx b/src/IconFlashOffSharpFilled.tsx index 5c616e544..85b56e6fa 100644 --- a/src/IconFlashOffSharpFilled.tsx +++ b/src/IconFlashOffSharpFilled.tsx @@ -8,4 +8,4 @@ const IconFlashOffSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconFlashOffSharpFilled as default } +export default IconFlashOffSharpFilled diff --git a/src/IconFlashOnOutlined.tsx b/src/IconFlashOnOutlined.tsx index c534e0167..69308dcc6 100644 --- a/src/IconFlashOnOutlined.tsx +++ b/src/IconFlashOnOutlined.tsx @@ -8,4 +8,4 @@ const IconFlashOnOutlined: React.FC = ({ ...props }) => ( ) -export { IconFlashOnOutlined as default } +export default IconFlashOnOutlined diff --git a/src/IconFlashOnOutlinedFilled.tsx b/src/IconFlashOnOutlinedFilled.tsx index 9899bdf61..d908a740f 100644 --- a/src/IconFlashOnOutlinedFilled.tsx +++ b/src/IconFlashOnOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconFlashOnOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconFlashOnOutlinedFilled as default } +export default IconFlashOnOutlinedFilled diff --git a/src/IconFlashOnRounded.tsx b/src/IconFlashOnRounded.tsx index 4b956031e..d92d41a73 100644 --- a/src/IconFlashOnRounded.tsx +++ b/src/IconFlashOnRounded.tsx @@ -8,4 +8,4 @@ const IconFlashOnRounded: React.FC = ({ ...props }) => ( ) -export { IconFlashOnRounded as default } +export default IconFlashOnRounded diff --git a/src/IconFlashOnRoundedFilled.tsx b/src/IconFlashOnRoundedFilled.tsx index e73893561..38bb1ac29 100644 --- a/src/IconFlashOnRoundedFilled.tsx +++ b/src/IconFlashOnRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconFlashOnRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconFlashOnRoundedFilled as default } +export default IconFlashOnRoundedFilled diff --git a/src/IconFlashOnSharp.tsx b/src/IconFlashOnSharp.tsx index b085b8064..3caf63314 100644 --- a/src/IconFlashOnSharp.tsx +++ b/src/IconFlashOnSharp.tsx @@ -8,4 +8,4 @@ const IconFlashOnSharp: React.FC = ({ ...props }) => ( ) -export { IconFlashOnSharp as default } +export default IconFlashOnSharp diff --git a/src/IconFlashOnSharpFilled.tsx b/src/IconFlashOnSharpFilled.tsx index 5e67bd719..8f05b4c0b 100644 --- a/src/IconFlashOnSharpFilled.tsx +++ b/src/IconFlashOnSharpFilled.tsx @@ -8,4 +8,4 @@ const IconFlashOnSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconFlashOnSharpFilled as default } +export default IconFlashOnSharpFilled diff --git a/src/IconFlashlightOffOutlined.tsx b/src/IconFlashlightOffOutlined.tsx index df9dddeaf..755b9a48e 100644 --- a/src/IconFlashlightOffOutlined.tsx +++ b/src/IconFlashlightOffOutlined.tsx @@ -8,4 +8,4 @@ const IconFlashlightOffOutlined: React.FC = ({ ...props }) => ( ) -export { IconFlashlightOffOutlined as default } +export default IconFlashlightOffOutlined diff --git a/src/IconFlashlightOffOutlinedFilled.tsx b/src/IconFlashlightOffOutlinedFilled.tsx index a3eea6121..145c7a65f 100644 --- a/src/IconFlashlightOffOutlinedFilled.tsx +++ b/src/IconFlashlightOffOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconFlashlightOffOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconFlashlightOffOutlinedFilled as default } +export default IconFlashlightOffOutlinedFilled diff --git a/src/IconFlashlightOffRounded.tsx b/src/IconFlashlightOffRounded.tsx index e9fe97235..783c1c6e3 100644 --- a/src/IconFlashlightOffRounded.tsx +++ b/src/IconFlashlightOffRounded.tsx @@ -8,4 +8,4 @@ const IconFlashlightOffRounded: React.FC = ({ ...props }) => ( ) -export { IconFlashlightOffRounded as default } +export default IconFlashlightOffRounded diff --git a/src/IconFlashlightOffRoundedFilled.tsx b/src/IconFlashlightOffRoundedFilled.tsx index ae4cbd0e4..24d69567b 100644 --- a/src/IconFlashlightOffRoundedFilled.tsx +++ b/src/IconFlashlightOffRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconFlashlightOffRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconFlashlightOffRoundedFilled as default } +export default IconFlashlightOffRoundedFilled diff --git a/src/IconFlashlightOffSharp.tsx b/src/IconFlashlightOffSharp.tsx index c25f6ff7f..a879ce089 100644 --- a/src/IconFlashlightOffSharp.tsx +++ b/src/IconFlashlightOffSharp.tsx @@ -8,4 +8,4 @@ const IconFlashlightOffSharp: React.FC = ({ ...props }) => ( ) -export { IconFlashlightOffSharp as default } +export default IconFlashlightOffSharp diff --git a/src/IconFlashlightOffSharpFilled.tsx b/src/IconFlashlightOffSharpFilled.tsx index ffbd0770d..1fc298f6b 100644 --- a/src/IconFlashlightOffSharpFilled.tsx +++ b/src/IconFlashlightOffSharpFilled.tsx @@ -8,4 +8,4 @@ const IconFlashlightOffSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconFlashlightOffSharpFilled as default } +export default IconFlashlightOffSharpFilled diff --git a/src/IconFlashlightOnOutlined.tsx b/src/IconFlashlightOnOutlined.tsx index ab240c636..ba95b7eb2 100644 --- a/src/IconFlashlightOnOutlined.tsx +++ b/src/IconFlashlightOnOutlined.tsx @@ -8,4 +8,4 @@ const IconFlashlightOnOutlined: React.FC = ({ ...props }) => ( ) -export { IconFlashlightOnOutlined as default } +export default IconFlashlightOnOutlined diff --git a/src/IconFlashlightOnOutlinedFilled.tsx b/src/IconFlashlightOnOutlinedFilled.tsx index 7f6bfe7a7..fcfa4fa80 100644 --- a/src/IconFlashlightOnOutlinedFilled.tsx +++ b/src/IconFlashlightOnOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconFlashlightOnOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconFlashlightOnOutlinedFilled as default } +export default IconFlashlightOnOutlinedFilled diff --git a/src/IconFlashlightOnRounded.tsx b/src/IconFlashlightOnRounded.tsx index 3622b6f51..9073ea5db 100644 --- a/src/IconFlashlightOnRounded.tsx +++ b/src/IconFlashlightOnRounded.tsx @@ -8,4 +8,4 @@ const IconFlashlightOnRounded: React.FC = ({ ...props }) => ( ) -export { IconFlashlightOnRounded as default } +export default IconFlashlightOnRounded diff --git a/src/IconFlashlightOnRoundedFilled.tsx b/src/IconFlashlightOnRoundedFilled.tsx index 9cfad6539..5b4964462 100644 --- a/src/IconFlashlightOnRoundedFilled.tsx +++ b/src/IconFlashlightOnRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconFlashlightOnRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconFlashlightOnRoundedFilled as default } +export default IconFlashlightOnRoundedFilled diff --git a/src/IconFlashlightOnSharp.tsx b/src/IconFlashlightOnSharp.tsx index 5fd02edf1..eca54b332 100644 --- a/src/IconFlashlightOnSharp.tsx +++ b/src/IconFlashlightOnSharp.tsx @@ -8,4 +8,4 @@ const IconFlashlightOnSharp: React.FC = ({ ...props }) => ( ) -export { IconFlashlightOnSharp as default } +export default IconFlashlightOnSharp diff --git a/src/IconFlashlightOnSharpFilled.tsx b/src/IconFlashlightOnSharpFilled.tsx index 6c5840863..a2f27dc17 100644 --- a/src/IconFlashlightOnSharpFilled.tsx +++ b/src/IconFlashlightOnSharpFilled.tsx @@ -8,4 +8,4 @@ const IconFlashlightOnSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconFlashlightOnSharpFilled as default } +export default IconFlashlightOnSharpFilled diff --git a/src/IconFlatwareOutlined.tsx b/src/IconFlatwareOutlined.tsx index 3e534345d..57a8a63c5 100644 --- a/src/IconFlatwareOutlined.tsx +++ b/src/IconFlatwareOutlined.tsx @@ -8,4 +8,4 @@ const IconFlatwareOutlined: React.FC = ({ ...props }) => ( ) -export { IconFlatwareOutlined as default } +export default IconFlatwareOutlined diff --git a/src/IconFlatwareOutlinedFilled.tsx b/src/IconFlatwareOutlinedFilled.tsx index 2309cda93..b92836b25 100644 --- a/src/IconFlatwareOutlinedFilled.tsx +++ b/src/IconFlatwareOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconFlatwareOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconFlatwareOutlinedFilled as default } +export default IconFlatwareOutlinedFilled diff --git a/src/IconFlatwareRounded.tsx b/src/IconFlatwareRounded.tsx index eaab012a0..5c07399c6 100644 --- a/src/IconFlatwareRounded.tsx +++ b/src/IconFlatwareRounded.tsx @@ -8,4 +8,4 @@ const IconFlatwareRounded: React.FC = ({ ...props }) => ( ) -export { IconFlatwareRounded as default } +export default IconFlatwareRounded diff --git a/src/IconFlatwareRoundedFilled.tsx b/src/IconFlatwareRoundedFilled.tsx index 5fae69c2e..a25cdf7c9 100644 --- a/src/IconFlatwareRoundedFilled.tsx +++ b/src/IconFlatwareRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconFlatwareRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconFlatwareRoundedFilled as default } +export default IconFlatwareRoundedFilled diff --git a/src/IconFlatwareSharp.tsx b/src/IconFlatwareSharp.tsx index 89a95ee79..3e08b9cf7 100644 --- a/src/IconFlatwareSharp.tsx +++ b/src/IconFlatwareSharp.tsx @@ -8,4 +8,4 @@ const IconFlatwareSharp: React.FC = ({ ...props }) => ( ) -export { IconFlatwareSharp as default } +export default IconFlatwareSharp diff --git a/src/IconFlatwareSharpFilled.tsx b/src/IconFlatwareSharpFilled.tsx index 3b28753f0..4762bbbd7 100644 --- a/src/IconFlatwareSharpFilled.tsx +++ b/src/IconFlatwareSharpFilled.tsx @@ -8,4 +8,4 @@ const IconFlatwareSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconFlatwareSharpFilled as default } +export default IconFlatwareSharpFilled diff --git a/src/IconFlexDirectionOutlined.tsx b/src/IconFlexDirectionOutlined.tsx index 98dedd540..92ba4946a 100644 --- a/src/IconFlexDirectionOutlined.tsx +++ b/src/IconFlexDirectionOutlined.tsx @@ -8,4 +8,4 @@ const IconFlexDirectionOutlined: React.FC = ({ ...props }) => ( ) -export { IconFlexDirectionOutlined as default } +export default IconFlexDirectionOutlined diff --git a/src/IconFlexDirectionOutlinedFilled.tsx b/src/IconFlexDirectionOutlinedFilled.tsx index 067bcd221..0c63d4850 100644 --- a/src/IconFlexDirectionOutlinedFilled.tsx +++ b/src/IconFlexDirectionOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconFlexDirectionOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconFlexDirectionOutlinedFilled as default } +export default IconFlexDirectionOutlinedFilled diff --git a/src/IconFlexDirectionRounded.tsx b/src/IconFlexDirectionRounded.tsx index fd5d12772..22c8d5735 100644 --- a/src/IconFlexDirectionRounded.tsx +++ b/src/IconFlexDirectionRounded.tsx @@ -8,4 +8,4 @@ const IconFlexDirectionRounded: React.FC = ({ ...props }) => ( ) -export { IconFlexDirectionRounded as default } +export default IconFlexDirectionRounded diff --git a/src/IconFlexDirectionRoundedFilled.tsx b/src/IconFlexDirectionRoundedFilled.tsx index 08778d07e..0365e1d4a 100644 --- a/src/IconFlexDirectionRoundedFilled.tsx +++ b/src/IconFlexDirectionRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconFlexDirectionRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconFlexDirectionRoundedFilled as default } +export default IconFlexDirectionRoundedFilled diff --git a/src/IconFlexDirectionSharp.tsx b/src/IconFlexDirectionSharp.tsx index e7b2b870f..faee39b72 100644 --- a/src/IconFlexDirectionSharp.tsx +++ b/src/IconFlexDirectionSharp.tsx @@ -8,4 +8,4 @@ const IconFlexDirectionSharp: React.FC = ({ ...props }) => ( ) -export { IconFlexDirectionSharp as default } +export default IconFlexDirectionSharp diff --git a/src/IconFlexDirectionSharpFilled.tsx b/src/IconFlexDirectionSharpFilled.tsx index 7f2cef022..826872dad 100644 --- a/src/IconFlexDirectionSharpFilled.tsx +++ b/src/IconFlexDirectionSharpFilled.tsx @@ -8,4 +8,4 @@ const IconFlexDirectionSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconFlexDirectionSharpFilled as default } +export default IconFlexDirectionSharpFilled diff --git a/src/IconFlexNoWrapOutlined.tsx b/src/IconFlexNoWrapOutlined.tsx index 8e3daae12..a00551fe0 100644 --- a/src/IconFlexNoWrapOutlined.tsx +++ b/src/IconFlexNoWrapOutlined.tsx @@ -8,4 +8,4 @@ const IconFlexNoWrapOutlined: React.FC = ({ ...props }) => ( ) -export { IconFlexNoWrapOutlined as default } +export default IconFlexNoWrapOutlined diff --git a/src/IconFlexNoWrapOutlinedFilled.tsx b/src/IconFlexNoWrapOutlinedFilled.tsx index bd7cbe4a6..062ac3a22 100644 --- a/src/IconFlexNoWrapOutlinedFilled.tsx +++ b/src/IconFlexNoWrapOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconFlexNoWrapOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconFlexNoWrapOutlinedFilled as default } +export default IconFlexNoWrapOutlinedFilled diff --git a/src/IconFlexNoWrapRounded.tsx b/src/IconFlexNoWrapRounded.tsx index c9dab6333..230c6de7f 100644 --- a/src/IconFlexNoWrapRounded.tsx +++ b/src/IconFlexNoWrapRounded.tsx @@ -8,4 +8,4 @@ const IconFlexNoWrapRounded: React.FC = ({ ...props }) => ( ) -export { IconFlexNoWrapRounded as default } +export default IconFlexNoWrapRounded diff --git a/src/IconFlexNoWrapRoundedFilled.tsx b/src/IconFlexNoWrapRoundedFilled.tsx index e5cbb7cc0..88ba2c431 100644 --- a/src/IconFlexNoWrapRoundedFilled.tsx +++ b/src/IconFlexNoWrapRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconFlexNoWrapRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconFlexNoWrapRoundedFilled as default } +export default IconFlexNoWrapRoundedFilled diff --git a/src/IconFlexNoWrapSharp.tsx b/src/IconFlexNoWrapSharp.tsx index 038876650..9845f0d50 100644 --- a/src/IconFlexNoWrapSharp.tsx +++ b/src/IconFlexNoWrapSharp.tsx @@ -8,4 +8,4 @@ const IconFlexNoWrapSharp: React.FC = ({ ...props }) => ( ) -export { IconFlexNoWrapSharp as default } +export default IconFlexNoWrapSharp diff --git a/src/IconFlexNoWrapSharpFilled.tsx b/src/IconFlexNoWrapSharpFilled.tsx index 8b1e5e80d..e9016fadd 100644 --- a/src/IconFlexNoWrapSharpFilled.tsx +++ b/src/IconFlexNoWrapSharpFilled.tsx @@ -8,4 +8,4 @@ const IconFlexNoWrapSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconFlexNoWrapSharpFilled as default } +export default IconFlexNoWrapSharpFilled diff --git a/src/IconFlexWrapOutlined.tsx b/src/IconFlexWrapOutlined.tsx index a5d0eb492..72f0e1821 100644 --- a/src/IconFlexWrapOutlined.tsx +++ b/src/IconFlexWrapOutlined.tsx @@ -8,4 +8,4 @@ const IconFlexWrapOutlined: React.FC = ({ ...props }) => ( ) -export { IconFlexWrapOutlined as default } +export default IconFlexWrapOutlined diff --git a/src/IconFlexWrapOutlinedFilled.tsx b/src/IconFlexWrapOutlinedFilled.tsx index e13fc0824..e06b08ad0 100644 --- a/src/IconFlexWrapOutlinedFilled.tsx +++ b/src/IconFlexWrapOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconFlexWrapOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconFlexWrapOutlinedFilled as default } +export default IconFlexWrapOutlinedFilled diff --git a/src/IconFlexWrapRounded.tsx b/src/IconFlexWrapRounded.tsx index bdd88cadb..182bca7bd 100644 --- a/src/IconFlexWrapRounded.tsx +++ b/src/IconFlexWrapRounded.tsx @@ -8,4 +8,4 @@ const IconFlexWrapRounded: React.FC = ({ ...props }) => ( ) -export { IconFlexWrapRounded as default } +export default IconFlexWrapRounded diff --git a/src/IconFlexWrapRoundedFilled.tsx b/src/IconFlexWrapRoundedFilled.tsx index 7fb3afd6c..c65f97076 100644 --- a/src/IconFlexWrapRoundedFilled.tsx +++ b/src/IconFlexWrapRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconFlexWrapRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconFlexWrapRoundedFilled as default } +export default IconFlexWrapRoundedFilled diff --git a/src/IconFlexWrapSharp.tsx b/src/IconFlexWrapSharp.tsx index 43a423cdf..48697f3ba 100644 --- a/src/IconFlexWrapSharp.tsx +++ b/src/IconFlexWrapSharp.tsx @@ -8,4 +8,4 @@ const IconFlexWrapSharp: React.FC = ({ ...props }) => ( ) -export { IconFlexWrapSharp as default } +export default IconFlexWrapSharp diff --git a/src/IconFlexWrapSharpFilled.tsx b/src/IconFlexWrapSharpFilled.tsx index 35012cbe2..0b225b9df 100644 --- a/src/IconFlexWrapSharpFilled.tsx +++ b/src/IconFlexWrapSharpFilled.tsx @@ -8,4 +8,4 @@ const IconFlexWrapSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconFlexWrapSharpFilled as default } +export default IconFlexWrapSharpFilled diff --git a/src/IconFlightClassOutlined.tsx b/src/IconFlightClassOutlined.tsx index e7a2bd87c..484a383e0 100644 --- a/src/IconFlightClassOutlined.tsx +++ b/src/IconFlightClassOutlined.tsx @@ -8,4 +8,4 @@ const IconFlightClassOutlined: React.FC = ({ ...props }) => ( ) -export { IconFlightClassOutlined as default } +export default IconFlightClassOutlined diff --git a/src/IconFlightClassOutlinedFilled.tsx b/src/IconFlightClassOutlinedFilled.tsx index 4c16737ac..40d4a56da 100644 --- a/src/IconFlightClassOutlinedFilled.tsx +++ b/src/IconFlightClassOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconFlightClassOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconFlightClassOutlinedFilled as default } +export default IconFlightClassOutlinedFilled diff --git a/src/IconFlightClassRounded.tsx b/src/IconFlightClassRounded.tsx index d53170720..2c3d20c0f 100644 --- a/src/IconFlightClassRounded.tsx +++ b/src/IconFlightClassRounded.tsx @@ -8,4 +8,4 @@ const IconFlightClassRounded: React.FC = ({ ...props }) => ( ) -export { IconFlightClassRounded as default } +export default IconFlightClassRounded diff --git a/src/IconFlightClassRoundedFilled.tsx b/src/IconFlightClassRoundedFilled.tsx index 41e251a7f..406245825 100644 --- a/src/IconFlightClassRoundedFilled.tsx +++ b/src/IconFlightClassRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconFlightClassRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconFlightClassRoundedFilled as default } +export default IconFlightClassRoundedFilled diff --git a/src/IconFlightClassSharp.tsx b/src/IconFlightClassSharp.tsx index 6e15992eb..c5635b8fd 100644 --- a/src/IconFlightClassSharp.tsx +++ b/src/IconFlightClassSharp.tsx @@ -8,4 +8,4 @@ const IconFlightClassSharp: React.FC = ({ ...props }) => ( ) -export { IconFlightClassSharp as default } +export default IconFlightClassSharp diff --git a/src/IconFlightClassSharpFilled.tsx b/src/IconFlightClassSharpFilled.tsx index 469a73500..749bfc389 100644 --- a/src/IconFlightClassSharpFilled.tsx +++ b/src/IconFlightClassSharpFilled.tsx @@ -8,4 +8,4 @@ const IconFlightClassSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconFlightClassSharpFilled as default } +export default IconFlightClassSharpFilled diff --git a/src/IconFlightLandOutlined.tsx b/src/IconFlightLandOutlined.tsx index fe6c29d52..b13a87b3d 100644 --- a/src/IconFlightLandOutlined.tsx +++ b/src/IconFlightLandOutlined.tsx @@ -8,4 +8,4 @@ const IconFlightLandOutlined: React.FC = ({ ...props }) => ( ) -export { IconFlightLandOutlined as default } +export default IconFlightLandOutlined diff --git a/src/IconFlightLandOutlinedFilled.tsx b/src/IconFlightLandOutlinedFilled.tsx index 8b6768894..eeacc7967 100644 --- a/src/IconFlightLandOutlinedFilled.tsx +++ b/src/IconFlightLandOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconFlightLandOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconFlightLandOutlinedFilled as default } +export default IconFlightLandOutlinedFilled diff --git a/src/IconFlightLandRounded.tsx b/src/IconFlightLandRounded.tsx index 6f5537978..277f7040e 100644 --- a/src/IconFlightLandRounded.tsx +++ b/src/IconFlightLandRounded.tsx @@ -8,4 +8,4 @@ const IconFlightLandRounded: React.FC = ({ ...props }) => ( ) -export { IconFlightLandRounded as default } +export default IconFlightLandRounded diff --git a/src/IconFlightLandRoundedFilled.tsx b/src/IconFlightLandRoundedFilled.tsx index f8150d669..a9b027a19 100644 --- a/src/IconFlightLandRoundedFilled.tsx +++ b/src/IconFlightLandRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconFlightLandRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconFlightLandRoundedFilled as default } +export default IconFlightLandRoundedFilled diff --git a/src/IconFlightLandSharp.tsx b/src/IconFlightLandSharp.tsx index a285dde29..1f3f2992e 100644 --- a/src/IconFlightLandSharp.tsx +++ b/src/IconFlightLandSharp.tsx @@ -8,4 +8,4 @@ const IconFlightLandSharp: React.FC = ({ ...props }) => ( ) -export { IconFlightLandSharp as default } +export default IconFlightLandSharp diff --git a/src/IconFlightLandSharpFilled.tsx b/src/IconFlightLandSharpFilled.tsx index a42e5e6b6..6c63972d7 100644 --- a/src/IconFlightLandSharpFilled.tsx +++ b/src/IconFlightLandSharpFilled.tsx @@ -8,4 +8,4 @@ const IconFlightLandSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconFlightLandSharpFilled as default } +export default IconFlightLandSharpFilled diff --git a/src/IconFlightOutlined.tsx b/src/IconFlightOutlined.tsx index 0ce0ee842..d8a948447 100644 --- a/src/IconFlightOutlined.tsx +++ b/src/IconFlightOutlined.tsx @@ -8,4 +8,4 @@ const IconFlightOutlined: React.FC = ({ ...props }) => ( ) -export { IconFlightOutlined as default } +export default IconFlightOutlined diff --git a/src/IconFlightOutlinedFilled.tsx b/src/IconFlightOutlinedFilled.tsx index 4e149a963..c2f288964 100644 --- a/src/IconFlightOutlinedFilled.tsx +++ b/src/IconFlightOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconFlightOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconFlightOutlinedFilled as default } +export default IconFlightOutlinedFilled diff --git a/src/IconFlightRounded.tsx b/src/IconFlightRounded.tsx index fc2e2a224..4f2803267 100644 --- a/src/IconFlightRounded.tsx +++ b/src/IconFlightRounded.tsx @@ -8,4 +8,4 @@ const IconFlightRounded: React.FC = ({ ...props }) => ( ) -export { IconFlightRounded as default } +export default IconFlightRounded diff --git a/src/IconFlightRoundedFilled.tsx b/src/IconFlightRoundedFilled.tsx index 863621c69..ac73707ad 100644 --- a/src/IconFlightRoundedFilled.tsx +++ b/src/IconFlightRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconFlightRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconFlightRoundedFilled as default } +export default IconFlightRoundedFilled diff --git a/src/IconFlightSharp.tsx b/src/IconFlightSharp.tsx index 8518aa9f7..c93eef837 100644 --- a/src/IconFlightSharp.tsx +++ b/src/IconFlightSharp.tsx @@ -8,4 +8,4 @@ const IconFlightSharp: React.FC = ({ ...props }) => ( ) -export { IconFlightSharp as default } +export default IconFlightSharp diff --git a/src/IconFlightSharpFilled.tsx b/src/IconFlightSharpFilled.tsx index ea277ad5b..91242a9a2 100644 --- a/src/IconFlightSharpFilled.tsx +++ b/src/IconFlightSharpFilled.tsx @@ -8,4 +8,4 @@ const IconFlightSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconFlightSharpFilled as default } +export default IconFlightSharpFilled diff --git a/src/IconFlightTakeoffOutlined.tsx b/src/IconFlightTakeoffOutlined.tsx index ca25cd419..7848f76b6 100644 --- a/src/IconFlightTakeoffOutlined.tsx +++ b/src/IconFlightTakeoffOutlined.tsx @@ -8,4 +8,4 @@ const IconFlightTakeoffOutlined: React.FC = ({ ...props }) => ( ) -export { IconFlightTakeoffOutlined as default } +export default IconFlightTakeoffOutlined diff --git a/src/IconFlightTakeoffOutlinedFilled.tsx b/src/IconFlightTakeoffOutlinedFilled.tsx index 05d856744..97949f60b 100644 --- a/src/IconFlightTakeoffOutlinedFilled.tsx +++ b/src/IconFlightTakeoffOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconFlightTakeoffOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconFlightTakeoffOutlinedFilled as default } +export default IconFlightTakeoffOutlinedFilled diff --git a/src/IconFlightTakeoffRounded.tsx b/src/IconFlightTakeoffRounded.tsx index 87a09ce46..619b8e01e 100644 --- a/src/IconFlightTakeoffRounded.tsx +++ b/src/IconFlightTakeoffRounded.tsx @@ -8,4 +8,4 @@ const IconFlightTakeoffRounded: React.FC = ({ ...props }) => ( ) -export { IconFlightTakeoffRounded as default } +export default IconFlightTakeoffRounded diff --git a/src/IconFlightTakeoffRoundedFilled.tsx b/src/IconFlightTakeoffRoundedFilled.tsx index de2668f5a..8032f4b1b 100644 --- a/src/IconFlightTakeoffRoundedFilled.tsx +++ b/src/IconFlightTakeoffRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconFlightTakeoffRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconFlightTakeoffRoundedFilled as default } +export default IconFlightTakeoffRoundedFilled diff --git a/src/IconFlightTakeoffSharp.tsx b/src/IconFlightTakeoffSharp.tsx index a51aa7f7d..62d8e7d6b 100644 --- a/src/IconFlightTakeoffSharp.tsx +++ b/src/IconFlightTakeoffSharp.tsx @@ -8,4 +8,4 @@ const IconFlightTakeoffSharp: React.FC = ({ ...props }) => ( ) -export { IconFlightTakeoffSharp as default } +export default IconFlightTakeoffSharp diff --git a/src/IconFlightTakeoffSharpFilled.tsx b/src/IconFlightTakeoffSharpFilled.tsx index 34ff2edf1..bf9175c1f 100644 --- a/src/IconFlightTakeoffSharpFilled.tsx +++ b/src/IconFlightTakeoffSharpFilled.tsx @@ -8,4 +8,4 @@ const IconFlightTakeoffSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconFlightTakeoffSharpFilled as default } +export default IconFlightTakeoffSharpFilled diff --git a/src/IconFlightsAndHotelsOutlined.tsx b/src/IconFlightsAndHotelsOutlined.tsx index 90a36c07a..b963eea96 100644 --- a/src/IconFlightsAndHotelsOutlined.tsx +++ b/src/IconFlightsAndHotelsOutlined.tsx @@ -8,4 +8,4 @@ const IconFlightsAndHotelsOutlined: React.FC = ({ ...props }) => ( ) -export { IconFlightsAndHotelsOutlined as default } +export default IconFlightsAndHotelsOutlined diff --git a/src/IconFlightsAndHotelsOutlinedFilled.tsx b/src/IconFlightsAndHotelsOutlinedFilled.tsx index 4617cd10f..ac639b5a6 100644 --- a/src/IconFlightsAndHotelsOutlinedFilled.tsx +++ b/src/IconFlightsAndHotelsOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconFlightsAndHotelsOutlinedFilled: React.FC = ({ ) -export { IconFlightsAndHotelsOutlinedFilled as default } +export default IconFlightsAndHotelsOutlinedFilled diff --git a/src/IconFlightsAndHotelsRounded.tsx b/src/IconFlightsAndHotelsRounded.tsx index adca27b56..2474d7c87 100644 --- a/src/IconFlightsAndHotelsRounded.tsx +++ b/src/IconFlightsAndHotelsRounded.tsx @@ -8,4 +8,4 @@ const IconFlightsAndHotelsRounded: React.FC = ({ ...props }) => ( ) -export { IconFlightsAndHotelsRounded as default } +export default IconFlightsAndHotelsRounded diff --git a/src/IconFlightsAndHotelsRoundedFilled.tsx b/src/IconFlightsAndHotelsRoundedFilled.tsx index 140bf83f2..376a6bb04 100644 --- a/src/IconFlightsAndHotelsRoundedFilled.tsx +++ b/src/IconFlightsAndHotelsRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconFlightsAndHotelsRoundedFilled: React.FC = ({ ) -export { IconFlightsAndHotelsRoundedFilled as default } +export default IconFlightsAndHotelsRoundedFilled diff --git a/src/IconFlightsAndHotelsSharp.tsx b/src/IconFlightsAndHotelsSharp.tsx index 0409f7950..3082f4e39 100644 --- a/src/IconFlightsAndHotelsSharp.tsx +++ b/src/IconFlightsAndHotelsSharp.tsx @@ -8,4 +8,4 @@ const IconFlightsAndHotelsSharp: React.FC = ({ ...props }) => ( ) -export { IconFlightsAndHotelsSharp as default } +export default IconFlightsAndHotelsSharp diff --git a/src/IconFlightsAndHotelsSharpFilled.tsx b/src/IconFlightsAndHotelsSharpFilled.tsx index d3bb1b008..d981616c1 100644 --- a/src/IconFlightsAndHotelsSharpFilled.tsx +++ b/src/IconFlightsAndHotelsSharpFilled.tsx @@ -8,4 +8,4 @@ const IconFlightsAndHotelsSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconFlightsAndHotelsSharpFilled as default } +export default IconFlightsAndHotelsSharpFilled diff --git a/src/IconFlipCameraAndroidOutlined.tsx b/src/IconFlipCameraAndroidOutlined.tsx index 0e425e14d..b9341a7ac 100644 --- a/src/IconFlipCameraAndroidOutlined.tsx +++ b/src/IconFlipCameraAndroidOutlined.tsx @@ -8,4 +8,4 @@ const IconFlipCameraAndroidOutlined: React.FC = ({ ...props }) => ( ) -export { IconFlipCameraAndroidOutlined as default } +export default IconFlipCameraAndroidOutlined diff --git a/src/IconFlipCameraAndroidOutlinedFilled.tsx b/src/IconFlipCameraAndroidOutlinedFilled.tsx index 44d180eaf..3470763ef 100644 --- a/src/IconFlipCameraAndroidOutlinedFilled.tsx +++ b/src/IconFlipCameraAndroidOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconFlipCameraAndroidOutlinedFilled: React.FC = ({ ) -export { IconFlipCameraAndroidOutlinedFilled as default } +export default IconFlipCameraAndroidOutlinedFilled diff --git a/src/IconFlipCameraAndroidRounded.tsx b/src/IconFlipCameraAndroidRounded.tsx index ad47aa99d..33407e405 100644 --- a/src/IconFlipCameraAndroidRounded.tsx +++ b/src/IconFlipCameraAndroidRounded.tsx @@ -8,4 +8,4 @@ const IconFlipCameraAndroidRounded: React.FC = ({ ...props }) => ( ) -export { IconFlipCameraAndroidRounded as default } +export default IconFlipCameraAndroidRounded diff --git a/src/IconFlipCameraAndroidRoundedFilled.tsx b/src/IconFlipCameraAndroidRoundedFilled.tsx index 5b71f3985..6f6a7b69f 100644 --- a/src/IconFlipCameraAndroidRoundedFilled.tsx +++ b/src/IconFlipCameraAndroidRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconFlipCameraAndroidRoundedFilled: React.FC = ({ ) -export { IconFlipCameraAndroidRoundedFilled as default } +export default IconFlipCameraAndroidRoundedFilled diff --git a/src/IconFlipCameraAndroidSharp.tsx b/src/IconFlipCameraAndroidSharp.tsx index e2050c733..96d609759 100644 --- a/src/IconFlipCameraAndroidSharp.tsx +++ b/src/IconFlipCameraAndroidSharp.tsx @@ -8,4 +8,4 @@ const IconFlipCameraAndroidSharp: React.FC = ({ ...props }) => ( ) -export { IconFlipCameraAndroidSharp as default } +export default IconFlipCameraAndroidSharp diff --git a/src/IconFlipCameraAndroidSharpFilled.tsx b/src/IconFlipCameraAndroidSharpFilled.tsx index 4073e22c4..c9b3418e5 100644 --- a/src/IconFlipCameraAndroidSharpFilled.tsx +++ b/src/IconFlipCameraAndroidSharpFilled.tsx @@ -10,4 +10,4 @@ const IconFlipCameraAndroidSharpFilled: React.FC = ({ ) -export { IconFlipCameraAndroidSharpFilled as default } +export default IconFlipCameraAndroidSharpFilled diff --git a/src/IconFlipCameraIosOutlined.tsx b/src/IconFlipCameraIosOutlined.tsx index e4d32abb6..1dd79c0dc 100644 --- a/src/IconFlipCameraIosOutlined.tsx +++ b/src/IconFlipCameraIosOutlined.tsx @@ -8,4 +8,4 @@ const IconFlipCameraIosOutlined: React.FC = ({ ...props }) => ( ) -export { IconFlipCameraIosOutlined as default } +export default IconFlipCameraIosOutlined diff --git a/src/IconFlipCameraIosOutlinedFilled.tsx b/src/IconFlipCameraIosOutlinedFilled.tsx index c39f21dd8..247aa0cdb 100644 --- a/src/IconFlipCameraIosOutlinedFilled.tsx +++ b/src/IconFlipCameraIosOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconFlipCameraIosOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconFlipCameraIosOutlinedFilled as default } +export default IconFlipCameraIosOutlinedFilled diff --git a/src/IconFlipCameraIosRounded.tsx b/src/IconFlipCameraIosRounded.tsx index 49722a042..fda122f36 100644 --- a/src/IconFlipCameraIosRounded.tsx +++ b/src/IconFlipCameraIosRounded.tsx @@ -8,4 +8,4 @@ const IconFlipCameraIosRounded: React.FC = ({ ...props }) => ( ) -export { IconFlipCameraIosRounded as default } +export default IconFlipCameraIosRounded diff --git a/src/IconFlipCameraIosRoundedFilled.tsx b/src/IconFlipCameraIosRoundedFilled.tsx index f7c1b4a22..6e97471d9 100644 --- a/src/IconFlipCameraIosRoundedFilled.tsx +++ b/src/IconFlipCameraIosRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconFlipCameraIosRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconFlipCameraIosRoundedFilled as default } +export default IconFlipCameraIosRoundedFilled diff --git a/src/IconFlipCameraIosSharp.tsx b/src/IconFlipCameraIosSharp.tsx index 8768ae346..523f76b14 100644 --- a/src/IconFlipCameraIosSharp.tsx +++ b/src/IconFlipCameraIosSharp.tsx @@ -8,4 +8,4 @@ const IconFlipCameraIosSharp: React.FC = ({ ...props }) => ( ) -export { IconFlipCameraIosSharp as default } +export default IconFlipCameraIosSharp diff --git a/src/IconFlipCameraIosSharpFilled.tsx b/src/IconFlipCameraIosSharpFilled.tsx index f0a0bf185..4f7913dd2 100644 --- a/src/IconFlipCameraIosSharpFilled.tsx +++ b/src/IconFlipCameraIosSharpFilled.tsx @@ -8,4 +8,4 @@ const IconFlipCameraIosSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconFlipCameraIosSharpFilled as default } +export default IconFlipCameraIosSharpFilled diff --git a/src/IconFlipOutlined.tsx b/src/IconFlipOutlined.tsx index f10309f6c..e203270b5 100644 --- a/src/IconFlipOutlined.tsx +++ b/src/IconFlipOutlined.tsx @@ -8,4 +8,4 @@ const IconFlipOutlined: React.FC = ({ ...props }) => ( ) -export { IconFlipOutlined as default } +export default IconFlipOutlined diff --git a/src/IconFlipOutlinedFilled.tsx b/src/IconFlipOutlinedFilled.tsx index dac38532d..c43637b98 100644 --- a/src/IconFlipOutlinedFilled.tsx +++ b/src/IconFlipOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconFlipOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconFlipOutlinedFilled as default } +export default IconFlipOutlinedFilled diff --git a/src/IconFlipRounded.tsx b/src/IconFlipRounded.tsx index 7b9ffd860..645f8a27b 100644 --- a/src/IconFlipRounded.tsx +++ b/src/IconFlipRounded.tsx @@ -8,4 +8,4 @@ const IconFlipRounded: React.FC = ({ ...props }) => ( ) -export { IconFlipRounded as default } +export default IconFlipRounded diff --git a/src/IconFlipRoundedFilled.tsx b/src/IconFlipRoundedFilled.tsx index f4004e38d..507aaea89 100644 --- a/src/IconFlipRoundedFilled.tsx +++ b/src/IconFlipRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconFlipRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconFlipRoundedFilled as default } +export default IconFlipRoundedFilled diff --git a/src/IconFlipSharp.tsx b/src/IconFlipSharp.tsx index b6c214c9f..3773b2a10 100644 --- a/src/IconFlipSharp.tsx +++ b/src/IconFlipSharp.tsx @@ -8,4 +8,4 @@ const IconFlipSharp: React.FC = ({ ...props }) => ( ) -export { IconFlipSharp as default } +export default IconFlipSharp diff --git a/src/IconFlipSharpFilled.tsx b/src/IconFlipSharpFilled.tsx index 76934e97e..176b1eda3 100644 --- a/src/IconFlipSharpFilled.tsx +++ b/src/IconFlipSharpFilled.tsx @@ -8,4 +8,4 @@ const IconFlipSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconFlipSharpFilled as default } +export default IconFlipSharpFilled diff --git a/src/IconFlipToBackOutlined.tsx b/src/IconFlipToBackOutlined.tsx index 512f83b3e..aae4d70b0 100644 --- a/src/IconFlipToBackOutlined.tsx +++ b/src/IconFlipToBackOutlined.tsx @@ -8,4 +8,4 @@ const IconFlipToBackOutlined: React.FC = ({ ...props }) => ( ) -export { IconFlipToBackOutlined as default } +export default IconFlipToBackOutlined diff --git a/src/IconFlipToBackOutlinedFilled.tsx b/src/IconFlipToBackOutlinedFilled.tsx index 0d3e9241a..a064bc61d 100644 --- a/src/IconFlipToBackOutlinedFilled.tsx +++ b/src/IconFlipToBackOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconFlipToBackOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconFlipToBackOutlinedFilled as default } +export default IconFlipToBackOutlinedFilled diff --git a/src/IconFlipToBackRounded.tsx b/src/IconFlipToBackRounded.tsx index 61fc0042b..0d902fec6 100644 --- a/src/IconFlipToBackRounded.tsx +++ b/src/IconFlipToBackRounded.tsx @@ -8,4 +8,4 @@ const IconFlipToBackRounded: React.FC = ({ ...props }) => ( ) -export { IconFlipToBackRounded as default } +export default IconFlipToBackRounded diff --git a/src/IconFlipToBackRoundedFilled.tsx b/src/IconFlipToBackRoundedFilled.tsx index c89c91b51..dbe723839 100644 --- a/src/IconFlipToBackRoundedFilled.tsx +++ b/src/IconFlipToBackRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconFlipToBackRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconFlipToBackRoundedFilled as default } +export default IconFlipToBackRoundedFilled diff --git a/src/IconFlipToBackSharp.tsx b/src/IconFlipToBackSharp.tsx index a0160bfcd..ddbd3c2f1 100644 --- a/src/IconFlipToBackSharp.tsx +++ b/src/IconFlipToBackSharp.tsx @@ -8,4 +8,4 @@ const IconFlipToBackSharp: React.FC = ({ ...props }) => ( ) -export { IconFlipToBackSharp as default } +export default IconFlipToBackSharp diff --git a/src/IconFlipToBackSharpFilled.tsx b/src/IconFlipToBackSharpFilled.tsx index bb22e4280..5edc431d3 100644 --- a/src/IconFlipToBackSharpFilled.tsx +++ b/src/IconFlipToBackSharpFilled.tsx @@ -8,4 +8,4 @@ const IconFlipToBackSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconFlipToBackSharpFilled as default } +export default IconFlipToBackSharpFilled diff --git a/src/IconFlipToFrontOutlined.tsx b/src/IconFlipToFrontOutlined.tsx index 09bc4b03a..54a6dba39 100644 --- a/src/IconFlipToFrontOutlined.tsx +++ b/src/IconFlipToFrontOutlined.tsx @@ -8,4 +8,4 @@ const IconFlipToFrontOutlined: React.FC = ({ ...props }) => ( ) -export { IconFlipToFrontOutlined as default } +export default IconFlipToFrontOutlined diff --git a/src/IconFlipToFrontOutlinedFilled.tsx b/src/IconFlipToFrontOutlinedFilled.tsx index 01f528eac..b94fb7742 100644 --- a/src/IconFlipToFrontOutlinedFilled.tsx +++ b/src/IconFlipToFrontOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconFlipToFrontOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconFlipToFrontOutlinedFilled as default } +export default IconFlipToFrontOutlinedFilled diff --git a/src/IconFlipToFrontRounded.tsx b/src/IconFlipToFrontRounded.tsx index 00d883e38..1734e35f0 100644 --- a/src/IconFlipToFrontRounded.tsx +++ b/src/IconFlipToFrontRounded.tsx @@ -8,4 +8,4 @@ const IconFlipToFrontRounded: React.FC = ({ ...props }) => ( ) -export { IconFlipToFrontRounded as default } +export default IconFlipToFrontRounded diff --git a/src/IconFlipToFrontRoundedFilled.tsx b/src/IconFlipToFrontRoundedFilled.tsx index ec7cb99fc..d43f6571e 100644 --- a/src/IconFlipToFrontRoundedFilled.tsx +++ b/src/IconFlipToFrontRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconFlipToFrontRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconFlipToFrontRoundedFilled as default } +export default IconFlipToFrontRoundedFilled diff --git a/src/IconFlipToFrontSharp.tsx b/src/IconFlipToFrontSharp.tsx index e9caf579e..a8d5edd50 100644 --- a/src/IconFlipToFrontSharp.tsx +++ b/src/IconFlipToFrontSharp.tsx @@ -8,4 +8,4 @@ const IconFlipToFrontSharp: React.FC = ({ ...props }) => ( ) -export { IconFlipToFrontSharp as default } +export default IconFlipToFrontSharp diff --git a/src/IconFlipToFrontSharpFilled.tsx b/src/IconFlipToFrontSharpFilled.tsx index edb94fdb1..8c70b22c5 100644 --- a/src/IconFlipToFrontSharpFilled.tsx +++ b/src/IconFlipToFrontSharpFilled.tsx @@ -8,4 +8,4 @@ const IconFlipToFrontSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconFlipToFrontSharpFilled as default } +export default IconFlipToFrontSharpFilled diff --git a/src/IconFloatLandscape2Outlined.tsx b/src/IconFloatLandscape2Outlined.tsx index 54656f704..4c66157af 100644 --- a/src/IconFloatLandscape2Outlined.tsx +++ b/src/IconFloatLandscape2Outlined.tsx @@ -8,4 +8,4 @@ const IconFloatLandscape2Outlined: React.FC = ({ ...props }) => ( ) -export { IconFloatLandscape2Outlined as default } +export default IconFloatLandscape2Outlined diff --git a/src/IconFloatLandscape2OutlinedFilled.tsx b/src/IconFloatLandscape2OutlinedFilled.tsx index 8824f6178..bbda5a482 100644 --- a/src/IconFloatLandscape2OutlinedFilled.tsx +++ b/src/IconFloatLandscape2OutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconFloatLandscape2OutlinedFilled: React.FC = ({ ) -export { IconFloatLandscape2OutlinedFilled as default } +export default IconFloatLandscape2OutlinedFilled diff --git a/src/IconFloatLandscape2Rounded.tsx b/src/IconFloatLandscape2Rounded.tsx index 4b1f7fe5d..3eabb6d2f 100644 --- a/src/IconFloatLandscape2Rounded.tsx +++ b/src/IconFloatLandscape2Rounded.tsx @@ -8,4 +8,4 @@ const IconFloatLandscape2Rounded: React.FC = ({ ...props }) => ( ) -export { IconFloatLandscape2Rounded as default } +export default IconFloatLandscape2Rounded diff --git a/src/IconFloatLandscape2RoundedFilled.tsx b/src/IconFloatLandscape2RoundedFilled.tsx index d99e894e0..53a890c1f 100644 --- a/src/IconFloatLandscape2RoundedFilled.tsx +++ b/src/IconFloatLandscape2RoundedFilled.tsx @@ -10,4 +10,4 @@ const IconFloatLandscape2RoundedFilled: React.FC = ({ ) -export { IconFloatLandscape2RoundedFilled as default } +export default IconFloatLandscape2RoundedFilled diff --git a/src/IconFloatLandscape2Sharp.tsx b/src/IconFloatLandscape2Sharp.tsx index 720bd1f8e..4ae4d1e2b 100644 --- a/src/IconFloatLandscape2Sharp.tsx +++ b/src/IconFloatLandscape2Sharp.tsx @@ -8,4 +8,4 @@ const IconFloatLandscape2Sharp: React.FC = ({ ...props }) => ( ) -export { IconFloatLandscape2Sharp as default } +export default IconFloatLandscape2Sharp diff --git a/src/IconFloatLandscape2SharpFilled.tsx b/src/IconFloatLandscape2SharpFilled.tsx index a66d58c49..903010b5d 100644 --- a/src/IconFloatLandscape2SharpFilled.tsx +++ b/src/IconFloatLandscape2SharpFilled.tsx @@ -8,4 +8,4 @@ const IconFloatLandscape2SharpFilled: React.FC = ({ ...props }) => ( ) -export { IconFloatLandscape2SharpFilled as default } +export default IconFloatLandscape2SharpFilled diff --git a/src/IconFloatPortrait2Outlined.tsx b/src/IconFloatPortrait2Outlined.tsx index 76ad72136..65a62b632 100644 --- a/src/IconFloatPortrait2Outlined.tsx +++ b/src/IconFloatPortrait2Outlined.tsx @@ -8,4 +8,4 @@ const IconFloatPortrait2Outlined: React.FC = ({ ...props }) => ( ) -export { IconFloatPortrait2Outlined as default } +export default IconFloatPortrait2Outlined diff --git a/src/IconFloatPortrait2OutlinedFilled.tsx b/src/IconFloatPortrait2OutlinedFilled.tsx index 5b8b3c6d6..9237e294f 100644 --- a/src/IconFloatPortrait2OutlinedFilled.tsx +++ b/src/IconFloatPortrait2OutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconFloatPortrait2OutlinedFilled: React.FC = ({ ) -export { IconFloatPortrait2OutlinedFilled as default } +export default IconFloatPortrait2OutlinedFilled diff --git a/src/IconFloatPortrait2Rounded.tsx b/src/IconFloatPortrait2Rounded.tsx index f8c022e44..c0cc2bae5 100644 --- a/src/IconFloatPortrait2Rounded.tsx +++ b/src/IconFloatPortrait2Rounded.tsx @@ -8,4 +8,4 @@ const IconFloatPortrait2Rounded: React.FC = ({ ...props }) => ( ) -export { IconFloatPortrait2Rounded as default } +export default IconFloatPortrait2Rounded diff --git a/src/IconFloatPortrait2RoundedFilled.tsx b/src/IconFloatPortrait2RoundedFilled.tsx index 0016f146f..f14cbd1ee 100644 --- a/src/IconFloatPortrait2RoundedFilled.tsx +++ b/src/IconFloatPortrait2RoundedFilled.tsx @@ -8,4 +8,4 @@ const IconFloatPortrait2RoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconFloatPortrait2RoundedFilled as default } +export default IconFloatPortrait2RoundedFilled diff --git a/src/IconFloatPortrait2Sharp.tsx b/src/IconFloatPortrait2Sharp.tsx index 7395831ed..936b5c40c 100644 --- a/src/IconFloatPortrait2Sharp.tsx +++ b/src/IconFloatPortrait2Sharp.tsx @@ -8,4 +8,4 @@ const IconFloatPortrait2Sharp: React.FC = ({ ...props }) => ( ) -export { IconFloatPortrait2Sharp as default } +export default IconFloatPortrait2Sharp diff --git a/src/IconFloatPortrait2SharpFilled.tsx b/src/IconFloatPortrait2SharpFilled.tsx index 2d130a551..46722b363 100644 --- a/src/IconFloatPortrait2SharpFilled.tsx +++ b/src/IconFloatPortrait2SharpFilled.tsx @@ -8,4 +8,4 @@ const IconFloatPortrait2SharpFilled: React.FC = ({ ...props }) => ( ) -export { IconFloatPortrait2SharpFilled as default } +export default IconFloatPortrait2SharpFilled diff --git a/src/IconFloodOutlined.tsx b/src/IconFloodOutlined.tsx index 07d0f5e4e..2daf5170c 100644 --- a/src/IconFloodOutlined.tsx +++ b/src/IconFloodOutlined.tsx @@ -8,4 +8,4 @@ const IconFloodOutlined: React.FC = ({ ...props }) => ( ) -export { IconFloodOutlined as default } +export default IconFloodOutlined diff --git a/src/IconFloodOutlinedFilled.tsx b/src/IconFloodOutlinedFilled.tsx index ff8bd35dc..7a614b17c 100644 --- a/src/IconFloodOutlinedFilled.tsx +++ b/src/IconFloodOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconFloodOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconFloodOutlinedFilled as default } +export default IconFloodOutlinedFilled diff --git a/src/IconFloodRounded.tsx b/src/IconFloodRounded.tsx index ea6ba38d1..6b5dd27b0 100644 --- a/src/IconFloodRounded.tsx +++ b/src/IconFloodRounded.tsx @@ -8,4 +8,4 @@ const IconFloodRounded: React.FC = ({ ...props }) => ( ) -export { IconFloodRounded as default } +export default IconFloodRounded diff --git a/src/IconFloodRoundedFilled.tsx b/src/IconFloodRoundedFilled.tsx index 4c8b22ca6..fcba396f8 100644 --- a/src/IconFloodRoundedFilled.tsx +++ b/src/IconFloodRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconFloodRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconFloodRoundedFilled as default } +export default IconFloodRoundedFilled diff --git a/src/IconFloodSharp.tsx b/src/IconFloodSharp.tsx index a8758e5f4..c32e83ada 100644 --- a/src/IconFloodSharp.tsx +++ b/src/IconFloodSharp.tsx @@ -8,4 +8,4 @@ const IconFloodSharp: React.FC = ({ ...props }) => ( ) -export { IconFloodSharp as default } +export default IconFloodSharp diff --git a/src/IconFloodSharpFilled.tsx b/src/IconFloodSharpFilled.tsx index 3d75c2591..e3746d77e 100644 --- a/src/IconFloodSharpFilled.tsx +++ b/src/IconFloodSharpFilled.tsx @@ -8,4 +8,4 @@ const IconFloodSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconFloodSharpFilled as default } +export default IconFloodSharpFilled diff --git a/src/IconFloorLampOutlined.tsx b/src/IconFloorLampOutlined.tsx index a9b6788b5..955e0836d 100644 --- a/src/IconFloorLampOutlined.tsx +++ b/src/IconFloorLampOutlined.tsx @@ -8,4 +8,4 @@ const IconFloorLampOutlined: React.FC = ({ ...props }) => ( ) -export { IconFloorLampOutlined as default } +export default IconFloorLampOutlined diff --git a/src/IconFloorLampOutlinedFilled.tsx b/src/IconFloorLampOutlinedFilled.tsx index 48ddff382..95f89c929 100644 --- a/src/IconFloorLampOutlinedFilled.tsx +++ b/src/IconFloorLampOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconFloorLampOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconFloorLampOutlinedFilled as default } +export default IconFloorLampOutlinedFilled diff --git a/src/IconFloorLampRounded.tsx b/src/IconFloorLampRounded.tsx index 9a196828d..f7a32efd4 100644 --- a/src/IconFloorLampRounded.tsx +++ b/src/IconFloorLampRounded.tsx @@ -8,4 +8,4 @@ const IconFloorLampRounded: React.FC = ({ ...props }) => ( ) -export { IconFloorLampRounded as default } +export default IconFloorLampRounded diff --git a/src/IconFloorLampRoundedFilled.tsx b/src/IconFloorLampRoundedFilled.tsx index 9c252ea08..b61fc6d53 100644 --- a/src/IconFloorLampRoundedFilled.tsx +++ b/src/IconFloorLampRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconFloorLampRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconFloorLampRoundedFilled as default } +export default IconFloorLampRoundedFilled diff --git a/src/IconFloorLampSharp.tsx b/src/IconFloorLampSharp.tsx index d161ccf98..9a9eca1f2 100644 --- a/src/IconFloorLampSharp.tsx +++ b/src/IconFloorLampSharp.tsx @@ -8,4 +8,4 @@ const IconFloorLampSharp: React.FC = ({ ...props }) => ( ) -export { IconFloorLampSharp as default } +export default IconFloorLampSharp diff --git a/src/IconFloorLampSharpFilled.tsx b/src/IconFloorLampSharpFilled.tsx index a9d98bbc9..6d6bf5294 100644 --- a/src/IconFloorLampSharpFilled.tsx +++ b/src/IconFloorLampSharpFilled.tsx @@ -8,4 +8,4 @@ const IconFloorLampSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconFloorLampSharpFilled as default } +export default IconFloorLampSharpFilled diff --git a/src/IconFloorOutlined.tsx b/src/IconFloorOutlined.tsx index 8992557f5..6c189abf4 100644 --- a/src/IconFloorOutlined.tsx +++ b/src/IconFloorOutlined.tsx @@ -8,4 +8,4 @@ const IconFloorOutlined: React.FC = ({ ...props }) => ( ) -export { IconFloorOutlined as default } +export default IconFloorOutlined diff --git a/src/IconFloorOutlinedFilled.tsx b/src/IconFloorOutlinedFilled.tsx index d5452071d..130b560a5 100644 --- a/src/IconFloorOutlinedFilled.tsx +++ b/src/IconFloorOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconFloorOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconFloorOutlinedFilled as default } +export default IconFloorOutlinedFilled diff --git a/src/IconFloorRounded.tsx b/src/IconFloorRounded.tsx index 9d2d4d773..53f8a90b4 100644 --- a/src/IconFloorRounded.tsx +++ b/src/IconFloorRounded.tsx @@ -8,4 +8,4 @@ const IconFloorRounded: React.FC = ({ ...props }) => ( ) -export { IconFloorRounded as default } +export default IconFloorRounded diff --git a/src/IconFloorRoundedFilled.tsx b/src/IconFloorRoundedFilled.tsx index bcccade15..4da30e745 100644 --- a/src/IconFloorRoundedFilled.tsx +++ b/src/IconFloorRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconFloorRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconFloorRoundedFilled as default } +export default IconFloorRoundedFilled diff --git a/src/IconFloorSharp.tsx b/src/IconFloorSharp.tsx index 347e6b6ec..b4fd2c05c 100644 --- a/src/IconFloorSharp.tsx +++ b/src/IconFloorSharp.tsx @@ -8,4 +8,4 @@ const IconFloorSharp: React.FC = ({ ...props }) => ( ) -export { IconFloorSharp as default } +export default IconFloorSharp diff --git a/src/IconFloorSharpFilled.tsx b/src/IconFloorSharpFilled.tsx index 89a0e8696..a47f0782f 100644 --- a/src/IconFloorSharpFilled.tsx +++ b/src/IconFloorSharpFilled.tsx @@ -8,4 +8,4 @@ const IconFloorSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconFloorSharpFilled as default } +export default IconFloorSharpFilled diff --git a/src/IconFlowsheetOutlined.tsx b/src/IconFlowsheetOutlined.tsx index 583410e46..cd179f3fe 100644 --- a/src/IconFlowsheetOutlined.tsx +++ b/src/IconFlowsheetOutlined.tsx @@ -8,4 +8,4 @@ const IconFlowsheetOutlined: React.FC = ({ ...props }) => ( ) -export { IconFlowsheetOutlined as default } +export default IconFlowsheetOutlined diff --git a/src/IconFlowsheetOutlinedFilled.tsx b/src/IconFlowsheetOutlinedFilled.tsx index b582475d7..303a51f52 100644 --- a/src/IconFlowsheetOutlinedFilled.tsx +++ b/src/IconFlowsheetOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconFlowsheetOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconFlowsheetOutlinedFilled as default } +export default IconFlowsheetOutlinedFilled diff --git a/src/IconFlowsheetRounded.tsx b/src/IconFlowsheetRounded.tsx index e83c29dee..1d781b4c6 100644 --- a/src/IconFlowsheetRounded.tsx +++ b/src/IconFlowsheetRounded.tsx @@ -8,4 +8,4 @@ const IconFlowsheetRounded: React.FC = ({ ...props }) => ( ) -export { IconFlowsheetRounded as default } +export default IconFlowsheetRounded diff --git a/src/IconFlowsheetRoundedFilled.tsx b/src/IconFlowsheetRoundedFilled.tsx index 7bc089c54..ecffc3393 100644 --- a/src/IconFlowsheetRoundedFilled.tsx +++ b/src/IconFlowsheetRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconFlowsheetRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconFlowsheetRoundedFilled as default } +export default IconFlowsheetRoundedFilled diff --git a/src/IconFlowsheetSharp.tsx b/src/IconFlowsheetSharp.tsx index 8482c0065..44b04ba0e 100644 --- a/src/IconFlowsheetSharp.tsx +++ b/src/IconFlowsheetSharp.tsx @@ -8,4 +8,4 @@ const IconFlowsheetSharp: React.FC = ({ ...props }) => ( ) -export { IconFlowsheetSharp as default } +export default IconFlowsheetSharp diff --git a/src/IconFlowsheetSharpFilled.tsx b/src/IconFlowsheetSharpFilled.tsx index 58e935e60..8cea2aa0c 100644 --- a/src/IconFlowsheetSharpFilled.tsx +++ b/src/IconFlowsheetSharpFilled.tsx @@ -8,4 +8,4 @@ const IconFlowsheetSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconFlowsheetSharpFilled as default } +export default IconFlowsheetSharpFilled diff --git a/src/IconFluidBalanceOutlined.tsx b/src/IconFluidBalanceOutlined.tsx index a05d6173c..1016d1142 100644 --- a/src/IconFluidBalanceOutlined.tsx +++ b/src/IconFluidBalanceOutlined.tsx @@ -8,4 +8,4 @@ const IconFluidBalanceOutlined: React.FC = ({ ...props }) => ( ) -export { IconFluidBalanceOutlined as default } +export default IconFluidBalanceOutlined diff --git a/src/IconFluidBalanceOutlinedFilled.tsx b/src/IconFluidBalanceOutlinedFilled.tsx index c36da9ecf..1eb6e6bc2 100644 --- a/src/IconFluidBalanceOutlinedFilled.tsx +++ b/src/IconFluidBalanceOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconFluidBalanceOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconFluidBalanceOutlinedFilled as default } +export default IconFluidBalanceOutlinedFilled diff --git a/src/IconFluidBalanceRounded.tsx b/src/IconFluidBalanceRounded.tsx index e7e0bdf5a..bb33887c0 100644 --- a/src/IconFluidBalanceRounded.tsx +++ b/src/IconFluidBalanceRounded.tsx @@ -8,4 +8,4 @@ const IconFluidBalanceRounded: React.FC = ({ ...props }) => ( ) -export { IconFluidBalanceRounded as default } +export default IconFluidBalanceRounded diff --git a/src/IconFluidBalanceRoundedFilled.tsx b/src/IconFluidBalanceRoundedFilled.tsx index c0ee58491..be87f488f 100644 --- a/src/IconFluidBalanceRoundedFilled.tsx +++ b/src/IconFluidBalanceRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconFluidBalanceRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconFluidBalanceRoundedFilled as default } +export default IconFluidBalanceRoundedFilled diff --git a/src/IconFluidBalanceSharp.tsx b/src/IconFluidBalanceSharp.tsx index b2c6d5f4c..9ff4cb934 100644 --- a/src/IconFluidBalanceSharp.tsx +++ b/src/IconFluidBalanceSharp.tsx @@ -8,4 +8,4 @@ const IconFluidBalanceSharp: React.FC = ({ ...props }) => ( ) -export { IconFluidBalanceSharp as default } +export default IconFluidBalanceSharp diff --git a/src/IconFluidBalanceSharpFilled.tsx b/src/IconFluidBalanceSharpFilled.tsx index 709935fae..88861f59e 100644 --- a/src/IconFluidBalanceSharpFilled.tsx +++ b/src/IconFluidBalanceSharpFilled.tsx @@ -8,4 +8,4 @@ const IconFluidBalanceSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconFluidBalanceSharpFilled as default } +export default IconFluidBalanceSharpFilled diff --git a/src/IconFluidMedOutlined.tsx b/src/IconFluidMedOutlined.tsx index 6ef97b244..77626e286 100644 --- a/src/IconFluidMedOutlined.tsx +++ b/src/IconFluidMedOutlined.tsx @@ -8,4 +8,4 @@ const IconFluidMedOutlined: React.FC = ({ ...props }) => ( ) -export { IconFluidMedOutlined as default } +export default IconFluidMedOutlined diff --git a/src/IconFluidMedOutlinedFilled.tsx b/src/IconFluidMedOutlinedFilled.tsx index 055440108..88e5cce77 100644 --- a/src/IconFluidMedOutlinedFilled.tsx +++ b/src/IconFluidMedOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconFluidMedOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconFluidMedOutlinedFilled as default } +export default IconFluidMedOutlinedFilled diff --git a/src/IconFluidMedRounded.tsx b/src/IconFluidMedRounded.tsx index 636cedfda..01ee91c1a 100644 --- a/src/IconFluidMedRounded.tsx +++ b/src/IconFluidMedRounded.tsx @@ -8,4 +8,4 @@ const IconFluidMedRounded: React.FC = ({ ...props }) => ( ) -export { IconFluidMedRounded as default } +export default IconFluidMedRounded diff --git a/src/IconFluidMedRoundedFilled.tsx b/src/IconFluidMedRoundedFilled.tsx index 91448f941..2d476d2b2 100644 --- a/src/IconFluidMedRoundedFilled.tsx +++ b/src/IconFluidMedRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconFluidMedRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconFluidMedRoundedFilled as default } +export default IconFluidMedRoundedFilled diff --git a/src/IconFluidMedSharp.tsx b/src/IconFluidMedSharp.tsx index ac90ec9e6..fe6ddee36 100644 --- a/src/IconFluidMedSharp.tsx +++ b/src/IconFluidMedSharp.tsx @@ -8,4 +8,4 @@ const IconFluidMedSharp: React.FC = ({ ...props }) => ( ) -export { IconFluidMedSharp as default } +export default IconFluidMedSharp diff --git a/src/IconFluidMedSharpFilled.tsx b/src/IconFluidMedSharpFilled.tsx index 068ef4bc3..6a3052327 100644 --- a/src/IconFluidMedSharpFilled.tsx +++ b/src/IconFluidMedSharpFilled.tsx @@ -8,4 +8,4 @@ const IconFluidMedSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconFluidMedSharpFilled as default } +export default IconFluidMedSharpFilled diff --git a/src/IconFluidOutlined.tsx b/src/IconFluidOutlined.tsx index 09f292a92..c231b2475 100644 --- a/src/IconFluidOutlined.tsx +++ b/src/IconFluidOutlined.tsx @@ -8,4 +8,4 @@ const IconFluidOutlined: React.FC = ({ ...props }) => ( ) -export { IconFluidOutlined as default } +export default IconFluidOutlined diff --git a/src/IconFluidOutlinedFilled.tsx b/src/IconFluidOutlinedFilled.tsx index aac531c62..e7bae9e9a 100644 --- a/src/IconFluidOutlinedFilled.tsx +++ b/src/IconFluidOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconFluidOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconFluidOutlinedFilled as default } +export default IconFluidOutlinedFilled diff --git a/src/IconFluidRounded.tsx b/src/IconFluidRounded.tsx index ef52cb269..8f4787000 100644 --- a/src/IconFluidRounded.tsx +++ b/src/IconFluidRounded.tsx @@ -8,4 +8,4 @@ const IconFluidRounded: React.FC = ({ ...props }) => ( ) -export { IconFluidRounded as default } +export default IconFluidRounded diff --git a/src/IconFluidRoundedFilled.tsx b/src/IconFluidRoundedFilled.tsx index 678377e9f..6f07c0aa6 100644 --- a/src/IconFluidRoundedFilled.tsx +++ b/src/IconFluidRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconFluidRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconFluidRoundedFilled as default } +export default IconFluidRoundedFilled diff --git a/src/IconFluidSharp.tsx b/src/IconFluidSharp.tsx index bb7285247..d102f0705 100644 --- a/src/IconFluidSharp.tsx +++ b/src/IconFluidSharp.tsx @@ -8,4 +8,4 @@ const IconFluidSharp: React.FC = ({ ...props }) => ( ) -export { IconFluidSharp as default } +export default IconFluidSharp diff --git a/src/IconFluidSharpFilled.tsx b/src/IconFluidSharpFilled.tsx index 7464bc7d8..73059bd26 100644 --- a/src/IconFluidSharpFilled.tsx +++ b/src/IconFluidSharpFilled.tsx @@ -8,4 +8,4 @@ const IconFluidSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconFluidSharpFilled as default } +export default IconFluidSharpFilled diff --git a/src/IconFluorescentOutlined.tsx b/src/IconFluorescentOutlined.tsx index ce13a9b44..916f89d5d 100644 --- a/src/IconFluorescentOutlined.tsx +++ b/src/IconFluorescentOutlined.tsx @@ -8,4 +8,4 @@ const IconFluorescentOutlined: React.FC = ({ ...props }) => ( ) -export { IconFluorescentOutlined as default } +export default IconFluorescentOutlined diff --git a/src/IconFluorescentOutlinedFilled.tsx b/src/IconFluorescentOutlinedFilled.tsx index 2d1305b2b..6e37366ed 100644 --- a/src/IconFluorescentOutlinedFilled.tsx +++ b/src/IconFluorescentOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconFluorescentOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconFluorescentOutlinedFilled as default } +export default IconFluorescentOutlinedFilled diff --git a/src/IconFluorescentRounded.tsx b/src/IconFluorescentRounded.tsx index 02da6675f..5b429e3e9 100644 --- a/src/IconFluorescentRounded.tsx +++ b/src/IconFluorescentRounded.tsx @@ -8,4 +8,4 @@ const IconFluorescentRounded: React.FC = ({ ...props }) => ( ) -export { IconFluorescentRounded as default } +export default IconFluorescentRounded diff --git a/src/IconFluorescentRoundedFilled.tsx b/src/IconFluorescentRoundedFilled.tsx index 7fa02bc09..3e36d10c1 100644 --- a/src/IconFluorescentRoundedFilled.tsx +++ b/src/IconFluorescentRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconFluorescentRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconFluorescentRoundedFilled as default } +export default IconFluorescentRoundedFilled diff --git a/src/IconFluorescentSharp.tsx b/src/IconFluorescentSharp.tsx index a7affea95..8cbb4d5ef 100644 --- a/src/IconFluorescentSharp.tsx +++ b/src/IconFluorescentSharp.tsx @@ -8,4 +8,4 @@ const IconFluorescentSharp: React.FC = ({ ...props }) => ( ) -export { IconFluorescentSharp as default } +export default IconFluorescentSharp diff --git a/src/IconFluorescentSharpFilled.tsx b/src/IconFluorescentSharpFilled.tsx index e0ba9c1cd..d23373113 100644 --- a/src/IconFluorescentSharpFilled.tsx +++ b/src/IconFluorescentSharpFilled.tsx @@ -8,4 +8,4 @@ const IconFluorescentSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconFluorescentSharpFilled as default } +export default IconFluorescentSharpFilled diff --git a/src/IconFlutterDashOutlined.tsx b/src/IconFlutterDashOutlined.tsx index f75867142..de06ef910 100644 --- a/src/IconFlutterDashOutlined.tsx +++ b/src/IconFlutterDashOutlined.tsx @@ -8,4 +8,4 @@ const IconFlutterDashOutlined: React.FC = ({ ...props }) => ( ) -export { IconFlutterDashOutlined as default } +export default IconFlutterDashOutlined diff --git a/src/IconFlutterDashOutlinedFilled.tsx b/src/IconFlutterDashOutlinedFilled.tsx index d8504ab42..f3e63c872 100644 --- a/src/IconFlutterDashOutlinedFilled.tsx +++ b/src/IconFlutterDashOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconFlutterDashOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconFlutterDashOutlinedFilled as default } +export default IconFlutterDashOutlinedFilled diff --git a/src/IconFlutterDashRounded.tsx b/src/IconFlutterDashRounded.tsx index d70cfc1e9..632e13eb8 100644 --- a/src/IconFlutterDashRounded.tsx +++ b/src/IconFlutterDashRounded.tsx @@ -8,4 +8,4 @@ const IconFlutterDashRounded: React.FC = ({ ...props }) => ( ) -export { IconFlutterDashRounded as default } +export default IconFlutterDashRounded diff --git a/src/IconFlutterDashRoundedFilled.tsx b/src/IconFlutterDashRoundedFilled.tsx index 7f7012c87..2a561cfdf 100644 --- a/src/IconFlutterDashRoundedFilled.tsx +++ b/src/IconFlutterDashRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconFlutterDashRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconFlutterDashRoundedFilled as default } +export default IconFlutterDashRoundedFilled diff --git a/src/IconFlutterDashSharp.tsx b/src/IconFlutterDashSharp.tsx index e99289343..2901b4a9a 100644 --- a/src/IconFlutterDashSharp.tsx +++ b/src/IconFlutterDashSharp.tsx @@ -8,4 +8,4 @@ const IconFlutterDashSharp: React.FC = ({ ...props }) => ( ) -export { IconFlutterDashSharp as default } +export default IconFlutterDashSharp diff --git a/src/IconFlutterDashSharpFilled.tsx b/src/IconFlutterDashSharpFilled.tsx index e2cda522d..1a7b33604 100644 --- a/src/IconFlutterDashSharpFilled.tsx +++ b/src/IconFlutterDashSharpFilled.tsx @@ -8,4 +8,4 @@ const IconFlutterDashSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconFlutterDashSharpFilled as default } +export default IconFlutterDashSharpFilled diff --git a/src/IconFlutterOutlined.tsx b/src/IconFlutterOutlined.tsx index 458309440..bd823c17e 100644 --- a/src/IconFlutterOutlined.tsx +++ b/src/IconFlutterOutlined.tsx @@ -8,4 +8,4 @@ const IconFlutterOutlined: React.FC = ({ ...props }) => ( ) -export { IconFlutterOutlined as default } +export default IconFlutterOutlined diff --git a/src/IconFlutterOutlinedFilled.tsx b/src/IconFlutterOutlinedFilled.tsx index e004f0c82..7c1aac5db 100644 --- a/src/IconFlutterOutlinedFilled.tsx +++ b/src/IconFlutterOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconFlutterOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconFlutterOutlinedFilled as default } +export default IconFlutterOutlinedFilled diff --git a/src/IconFlutterRounded.tsx b/src/IconFlutterRounded.tsx index 60ea494a5..3c1e997d9 100644 --- a/src/IconFlutterRounded.tsx +++ b/src/IconFlutterRounded.tsx @@ -8,4 +8,4 @@ const IconFlutterRounded: React.FC = ({ ...props }) => ( ) -export { IconFlutterRounded as default } +export default IconFlutterRounded diff --git a/src/IconFlutterRoundedFilled.tsx b/src/IconFlutterRoundedFilled.tsx index bd18e2129..5a09bbe24 100644 --- a/src/IconFlutterRoundedFilled.tsx +++ b/src/IconFlutterRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconFlutterRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconFlutterRoundedFilled as default } +export default IconFlutterRoundedFilled diff --git a/src/IconFlutterSharp.tsx b/src/IconFlutterSharp.tsx index 312cdaa03..5a16e2314 100644 --- a/src/IconFlutterSharp.tsx +++ b/src/IconFlutterSharp.tsx @@ -8,4 +8,4 @@ const IconFlutterSharp: React.FC = ({ ...props }) => ( ) -export { IconFlutterSharp as default } +export default IconFlutterSharp diff --git a/src/IconFlutterSharpFilled.tsx b/src/IconFlutterSharpFilled.tsx index c2b6bf9a0..6ada56884 100644 --- a/src/IconFlutterSharpFilled.tsx +++ b/src/IconFlutterSharpFilled.tsx @@ -8,4 +8,4 @@ const IconFlutterSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconFlutterSharpFilled as default } +export default IconFlutterSharpFilled diff --git a/src/IconFlyoverOutlined.tsx b/src/IconFlyoverOutlined.tsx index f3f998a93..69c526cbc 100644 --- a/src/IconFlyoverOutlined.tsx +++ b/src/IconFlyoverOutlined.tsx @@ -8,4 +8,4 @@ const IconFlyoverOutlined: React.FC = ({ ...props }) => ( ) -export { IconFlyoverOutlined as default } +export default IconFlyoverOutlined diff --git a/src/IconFlyoverOutlinedFilled.tsx b/src/IconFlyoverOutlinedFilled.tsx index 8fefb2dd3..5270834cb 100644 --- a/src/IconFlyoverOutlinedFilled.tsx +++ b/src/IconFlyoverOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconFlyoverOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconFlyoverOutlinedFilled as default } +export default IconFlyoverOutlinedFilled diff --git a/src/IconFlyoverRounded.tsx b/src/IconFlyoverRounded.tsx index 5a48ce64c..ded7ba0f8 100644 --- a/src/IconFlyoverRounded.tsx +++ b/src/IconFlyoverRounded.tsx @@ -8,4 +8,4 @@ const IconFlyoverRounded: React.FC = ({ ...props }) => ( ) -export { IconFlyoverRounded as default } +export default IconFlyoverRounded diff --git a/src/IconFlyoverRoundedFilled.tsx b/src/IconFlyoverRoundedFilled.tsx index 3fcc3e286..f532b7a8f 100644 --- a/src/IconFlyoverRoundedFilled.tsx +++ b/src/IconFlyoverRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconFlyoverRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconFlyoverRoundedFilled as default } +export default IconFlyoverRoundedFilled diff --git a/src/IconFlyoverSharp.tsx b/src/IconFlyoverSharp.tsx index b5dcd03ab..554b83a6c 100644 --- a/src/IconFlyoverSharp.tsx +++ b/src/IconFlyoverSharp.tsx @@ -8,4 +8,4 @@ const IconFlyoverSharp: React.FC = ({ ...props }) => ( ) -export { IconFlyoverSharp as default } +export default IconFlyoverSharp diff --git a/src/IconFlyoverSharpFilled.tsx b/src/IconFlyoverSharpFilled.tsx index c29394109..bdf91a901 100644 --- a/src/IconFlyoverSharpFilled.tsx +++ b/src/IconFlyoverSharpFilled.tsx @@ -8,4 +8,4 @@ const IconFlyoverSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconFlyoverSharpFilled as default } +export default IconFlyoverSharpFilled diff --git a/src/IconFmdBadOutlined.tsx b/src/IconFmdBadOutlined.tsx index 30c0e929b..1837bddc9 100644 --- a/src/IconFmdBadOutlined.tsx +++ b/src/IconFmdBadOutlined.tsx @@ -8,4 +8,4 @@ const IconFmdBadOutlined: React.FC = ({ ...props }) => ( ) -export { IconFmdBadOutlined as default } +export default IconFmdBadOutlined diff --git a/src/IconFmdBadOutlinedFilled.tsx b/src/IconFmdBadOutlinedFilled.tsx index 4baa0e7b3..eccf11d09 100644 --- a/src/IconFmdBadOutlinedFilled.tsx +++ b/src/IconFmdBadOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconFmdBadOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconFmdBadOutlinedFilled as default } +export default IconFmdBadOutlinedFilled diff --git a/src/IconFmdBadRounded.tsx b/src/IconFmdBadRounded.tsx index 26952e6d7..dc491d0f2 100644 --- a/src/IconFmdBadRounded.tsx +++ b/src/IconFmdBadRounded.tsx @@ -8,4 +8,4 @@ const IconFmdBadRounded: React.FC = ({ ...props }) => ( ) -export { IconFmdBadRounded as default } +export default IconFmdBadRounded diff --git a/src/IconFmdBadRoundedFilled.tsx b/src/IconFmdBadRoundedFilled.tsx index 696c752e9..590912787 100644 --- a/src/IconFmdBadRoundedFilled.tsx +++ b/src/IconFmdBadRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconFmdBadRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconFmdBadRoundedFilled as default } +export default IconFmdBadRoundedFilled diff --git a/src/IconFmdBadSharp.tsx b/src/IconFmdBadSharp.tsx index ba50cee2c..8038d6e13 100644 --- a/src/IconFmdBadSharp.tsx +++ b/src/IconFmdBadSharp.tsx @@ -8,4 +8,4 @@ const IconFmdBadSharp: React.FC = ({ ...props }) => ( ) -export { IconFmdBadSharp as default } +export default IconFmdBadSharp diff --git a/src/IconFmdBadSharpFilled.tsx b/src/IconFmdBadSharpFilled.tsx index 2e8687870..7ee88c6c9 100644 --- a/src/IconFmdBadSharpFilled.tsx +++ b/src/IconFmdBadSharpFilled.tsx @@ -8,4 +8,4 @@ const IconFmdBadSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconFmdBadSharpFilled as default } +export default IconFmdBadSharpFilled diff --git a/src/IconFoggyOutlined.tsx b/src/IconFoggyOutlined.tsx index 47112d775..6d64536fd 100644 --- a/src/IconFoggyOutlined.tsx +++ b/src/IconFoggyOutlined.tsx @@ -8,4 +8,4 @@ const IconFoggyOutlined: React.FC = ({ ...props }) => ( ) -export { IconFoggyOutlined as default } +export default IconFoggyOutlined diff --git a/src/IconFoggyOutlinedFilled.tsx b/src/IconFoggyOutlinedFilled.tsx index 341b730b1..d9f8745bf 100644 --- a/src/IconFoggyOutlinedFilled.tsx +++ b/src/IconFoggyOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconFoggyOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconFoggyOutlinedFilled as default } +export default IconFoggyOutlinedFilled diff --git a/src/IconFoggyRounded.tsx b/src/IconFoggyRounded.tsx index b0d2b8a0d..8b1d15c01 100644 --- a/src/IconFoggyRounded.tsx +++ b/src/IconFoggyRounded.tsx @@ -8,4 +8,4 @@ const IconFoggyRounded: React.FC = ({ ...props }) => ( ) -export { IconFoggyRounded as default } +export default IconFoggyRounded diff --git a/src/IconFoggyRoundedFilled.tsx b/src/IconFoggyRoundedFilled.tsx index be08a7362..f0ee5653d 100644 --- a/src/IconFoggyRoundedFilled.tsx +++ b/src/IconFoggyRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconFoggyRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconFoggyRoundedFilled as default } +export default IconFoggyRoundedFilled diff --git a/src/IconFoggySharp.tsx b/src/IconFoggySharp.tsx index 23463870c..f5f0d2698 100644 --- a/src/IconFoggySharp.tsx +++ b/src/IconFoggySharp.tsx @@ -8,4 +8,4 @@ const IconFoggySharp: React.FC = ({ ...props }) => ( ) -export { IconFoggySharp as default } +export default IconFoggySharp diff --git a/src/IconFoggySharpFilled.tsx b/src/IconFoggySharpFilled.tsx index 003145e9f..d5b1ccc85 100644 --- a/src/IconFoggySharpFilled.tsx +++ b/src/IconFoggySharpFilled.tsx @@ -8,4 +8,4 @@ const IconFoggySharpFilled: React.FC = ({ ...props }) => ( ) -export { IconFoggySharpFilled as default } +export default IconFoggySharpFilled diff --git a/src/IconFoldedHandsOutlined.tsx b/src/IconFoldedHandsOutlined.tsx index 5a24d36f6..95f6e156c 100644 --- a/src/IconFoldedHandsOutlined.tsx +++ b/src/IconFoldedHandsOutlined.tsx @@ -8,4 +8,4 @@ const IconFoldedHandsOutlined: React.FC = ({ ...props }) => ( ) -export { IconFoldedHandsOutlined as default } +export default IconFoldedHandsOutlined diff --git a/src/IconFoldedHandsOutlinedFilled.tsx b/src/IconFoldedHandsOutlinedFilled.tsx index 8a2c0b3ce..b42644ebf 100644 --- a/src/IconFoldedHandsOutlinedFilled.tsx +++ b/src/IconFoldedHandsOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconFoldedHandsOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconFoldedHandsOutlinedFilled as default } +export default IconFoldedHandsOutlinedFilled diff --git a/src/IconFoldedHandsRounded.tsx b/src/IconFoldedHandsRounded.tsx index 0df0d0a36..a5da9ca58 100644 --- a/src/IconFoldedHandsRounded.tsx +++ b/src/IconFoldedHandsRounded.tsx @@ -8,4 +8,4 @@ const IconFoldedHandsRounded: React.FC = ({ ...props }) => ( ) -export { IconFoldedHandsRounded as default } +export default IconFoldedHandsRounded diff --git a/src/IconFoldedHandsRoundedFilled.tsx b/src/IconFoldedHandsRoundedFilled.tsx index 1d203cf0e..6a0e76f53 100644 --- a/src/IconFoldedHandsRoundedFilled.tsx +++ b/src/IconFoldedHandsRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconFoldedHandsRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconFoldedHandsRoundedFilled as default } +export default IconFoldedHandsRoundedFilled diff --git a/src/IconFoldedHandsSharp.tsx b/src/IconFoldedHandsSharp.tsx index 2c54c0766..249960820 100644 --- a/src/IconFoldedHandsSharp.tsx +++ b/src/IconFoldedHandsSharp.tsx @@ -8,4 +8,4 @@ const IconFoldedHandsSharp: React.FC = ({ ...props }) => ( ) -export { IconFoldedHandsSharp as default } +export default IconFoldedHandsSharp diff --git a/src/IconFoldedHandsSharpFilled.tsx b/src/IconFoldedHandsSharpFilled.tsx index 2872736cc..db3834fea 100644 --- a/src/IconFoldedHandsSharpFilled.tsx +++ b/src/IconFoldedHandsSharpFilled.tsx @@ -8,4 +8,4 @@ const IconFoldedHandsSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconFoldedHandsSharpFilled as default } +export default IconFoldedHandsSharpFilled diff --git a/src/IconFolderCopyOutlined.tsx b/src/IconFolderCopyOutlined.tsx index ea163679e..5651eacb0 100644 --- a/src/IconFolderCopyOutlined.tsx +++ b/src/IconFolderCopyOutlined.tsx @@ -8,4 +8,4 @@ const IconFolderCopyOutlined: React.FC = ({ ...props }) => ( ) -export { IconFolderCopyOutlined as default } +export default IconFolderCopyOutlined diff --git a/src/IconFolderCopyOutlinedFilled.tsx b/src/IconFolderCopyOutlinedFilled.tsx index cb32fac4c..b0b8545a1 100644 --- a/src/IconFolderCopyOutlinedFilled.tsx +++ b/src/IconFolderCopyOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconFolderCopyOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconFolderCopyOutlinedFilled as default } +export default IconFolderCopyOutlinedFilled diff --git a/src/IconFolderCopyRounded.tsx b/src/IconFolderCopyRounded.tsx index 2d314b2e8..95c46a1c2 100644 --- a/src/IconFolderCopyRounded.tsx +++ b/src/IconFolderCopyRounded.tsx @@ -8,4 +8,4 @@ const IconFolderCopyRounded: React.FC = ({ ...props }) => ( ) -export { IconFolderCopyRounded as default } +export default IconFolderCopyRounded diff --git a/src/IconFolderCopyRoundedFilled.tsx b/src/IconFolderCopyRoundedFilled.tsx index 7dc984e84..ac51eeb2e 100644 --- a/src/IconFolderCopyRoundedFilled.tsx +++ b/src/IconFolderCopyRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconFolderCopyRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconFolderCopyRoundedFilled as default } +export default IconFolderCopyRoundedFilled diff --git a/src/IconFolderCopySharp.tsx b/src/IconFolderCopySharp.tsx index 22e3ff2cb..706ffb718 100644 --- a/src/IconFolderCopySharp.tsx +++ b/src/IconFolderCopySharp.tsx @@ -8,4 +8,4 @@ const IconFolderCopySharp: React.FC = ({ ...props }) => ( ) -export { IconFolderCopySharp as default } +export default IconFolderCopySharp diff --git a/src/IconFolderCopySharpFilled.tsx b/src/IconFolderCopySharpFilled.tsx index 0cda26400..213ab2fb2 100644 --- a/src/IconFolderCopySharpFilled.tsx +++ b/src/IconFolderCopySharpFilled.tsx @@ -8,4 +8,4 @@ const IconFolderCopySharpFilled: React.FC = ({ ...props }) => ( ) -export { IconFolderCopySharpFilled as default } +export default IconFolderCopySharpFilled diff --git a/src/IconFolderDataOutlined.tsx b/src/IconFolderDataOutlined.tsx index 6b9253d1b..d44020d90 100644 --- a/src/IconFolderDataOutlined.tsx +++ b/src/IconFolderDataOutlined.tsx @@ -8,4 +8,4 @@ const IconFolderDataOutlined: React.FC = ({ ...props }) => ( ) -export { IconFolderDataOutlined as default } +export default IconFolderDataOutlined diff --git a/src/IconFolderDataOutlinedFilled.tsx b/src/IconFolderDataOutlinedFilled.tsx index 7176fa6a5..254fa7aa1 100644 --- a/src/IconFolderDataOutlinedFilled.tsx +++ b/src/IconFolderDataOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconFolderDataOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconFolderDataOutlinedFilled as default } +export default IconFolderDataOutlinedFilled diff --git a/src/IconFolderDataRounded.tsx b/src/IconFolderDataRounded.tsx index 0be67455c..f24d28466 100644 --- a/src/IconFolderDataRounded.tsx +++ b/src/IconFolderDataRounded.tsx @@ -8,4 +8,4 @@ const IconFolderDataRounded: React.FC = ({ ...props }) => ( ) -export { IconFolderDataRounded as default } +export default IconFolderDataRounded diff --git a/src/IconFolderDataRoundedFilled.tsx b/src/IconFolderDataRoundedFilled.tsx index f396c1009..25cf91178 100644 --- a/src/IconFolderDataRoundedFilled.tsx +++ b/src/IconFolderDataRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconFolderDataRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconFolderDataRoundedFilled as default } +export default IconFolderDataRoundedFilled diff --git a/src/IconFolderDataSharp.tsx b/src/IconFolderDataSharp.tsx index 463ae235c..ae70ce41c 100644 --- a/src/IconFolderDataSharp.tsx +++ b/src/IconFolderDataSharp.tsx @@ -8,4 +8,4 @@ const IconFolderDataSharp: React.FC = ({ ...props }) => ( ) -export { IconFolderDataSharp as default } +export default IconFolderDataSharp diff --git a/src/IconFolderDataSharpFilled.tsx b/src/IconFolderDataSharpFilled.tsx index d3bd550a0..79dbcb5d3 100644 --- a/src/IconFolderDataSharpFilled.tsx +++ b/src/IconFolderDataSharpFilled.tsx @@ -8,4 +8,4 @@ const IconFolderDataSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconFolderDataSharpFilled as default } +export default IconFolderDataSharpFilled diff --git a/src/IconFolderDeleteOutlined.tsx b/src/IconFolderDeleteOutlined.tsx index bdc5ce95b..71ef1ea06 100644 --- a/src/IconFolderDeleteOutlined.tsx +++ b/src/IconFolderDeleteOutlined.tsx @@ -8,4 +8,4 @@ const IconFolderDeleteOutlined: React.FC = ({ ...props }) => ( ) -export { IconFolderDeleteOutlined as default } +export default IconFolderDeleteOutlined diff --git a/src/IconFolderDeleteOutlinedFilled.tsx b/src/IconFolderDeleteOutlinedFilled.tsx index ed5e6264d..8d0df83d3 100644 --- a/src/IconFolderDeleteOutlinedFilled.tsx +++ b/src/IconFolderDeleteOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconFolderDeleteOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconFolderDeleteOutlinedFilled as default } +export default IconFolderDeleteOutlinedFilled diff --git a/src/IconFolderDeleteRounded.tsx b/src/IconFolderDeleteRounded.tsx index 80c8e0413..7978e6b44 100644 --- a/src/IconFolderDeleteRounded.tsx +++ b/src/IconFolderDeleteRounded.tsx @@ -8,4 +8,4 @@ const IconFolderDeleteRounded: React.FC = ({ ...props }) => ( ) -export { IconFolderDeleteRounded as default } +export default IconFolderDeleteRounded diff --git a/src/IconFolderDeleteRoundedFilled.tsx b/src/IconFolderDeleteRoundedFilled.tsx index 911f402ef..62ebe46da 100644 --- a/src/IconFolderDeleteRoundedFilled.tsx +++ b/src/IconFolderDeleteRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconFolderDeleteRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconFolderDeleteRoundedFilled as default } +export default IconFolderDeleteRoundedFilled diff --git a/src/IconFolderDeleteSharp.tsx b/src/IconFolderDeleteSharp.tsx index d75b19922..6242af53f 100644 --- a/src/IconFolderDeleteSharp.tsx +++ b/src/IconFolderDeleteSharp.tsx @@ -8,4 +8,4 @@ const IconFolderDeleteSharp: React.FC = ({ ...props }) => ( ) -export { IconFolderDeleteSharp as default } +export default IconFolderDeleteSharp diff --git a/src/IconFolderDeleteSharpFilled.tsx b/src/IconFolderDeleteSharpFilled.tsx index 9a17e4169..b7c0b3968 100644 --- a/src/IconFolderDeleteSharpFilled.tsx +++ b/src/IconFolderDeleteSharpFilled.tsx @@ -8,4 +8,4 @@ const IconFolderDeleteSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconFolderDeleteSharpFilled as default } +export default IconFolderDeleteSharpFilled diff --git a/src/IconFolderLimitedOutlined.tsx b/src/IconFolderLimitedOutlined.tsx index 08e435627..bfc9d9fb7 100644 --- a/src/IconFolderLimitedOutlined.tsx +++ b/src/IconFolderLimitedOutlined.tsx @@ -8,4 +8,4 @@ const IconFolderLimitedOutlined: React.FC = ({ ...props }) => ( ) -export { IconFolderLimitedOutlined as default } +export default IconFolderLimitedOutlined diff --git a/src/IconFolderLimitedOutlinedFilled.tsx b/src/IconFolderLimitedOutlinedFilled.tsx index 178d8bcf4..0df1d3131 100644 --- a/src/IconFolderLimitedOutlinedFilled.tsx +++ b/src/IconFolderLimitedOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconFolderLimitedOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconFolderLimitedOutlinedFilled as default } +export default IconFolderLimitedOutlinedFilled diff --git a/src/IconFolderLimitedRounded.tsx b/src/IconFolderLimitedRounded.tsx index 3268ec67a..9613be408 100644 --- a/src/IconFolderLimitedRounded.tsx +++ b/src/IconFolderLimitedRounded.tsx @@ -8,4 +8,4 @@ const IconFolderLimitedRounded: React.FC = ({ ...props }) => ( ) -export { IconFolderLimitedRounded as default } +export default IconFolderLimitedRounded diff --git a/src/IconFolderLimitedRoundedFilled.tsx b/src/IconFolderLimitedRoundedFilled.tsx index 1455af04b..756f65d8d 100644 --- a/src/IconFolderLimitedRoundedFilled.tsx +++ b/src/IconFolderLimitedRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconFolderLimitedRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconFolderLimitedRoundedFilled as default } +export default IconFolderLimitedRoundedFilled diff --git a/src/IconFolderLimitedSharp.tsx b/src/IconFolderLimitedSharp.tsx index ece9edda0..6161775d1 100644 --- a/src/IconFolderLimitedSharp.tsx +++ b/src/IconFolderLimitedSharp.tsx @@ -8,4 +8,4 @@ const IconFolderLimitedSharp: React.FC = ({ ...props }) => ( ) -export { IconFolderLimitedSharp as default } +export default IconFolderLimitedSharp diff --git a/src/IconFolderLimitedSharpFilled.tsx b/src/IconFolderLimitedSharpFilled.tsx index f83a138cc..0a1a34870 100644 --- a/src/IconFolderLimitedSharpFilled.tsx +++ b/src/IconFolderLimitedSharpFilled.tsx @@ -8,4 +8,4 @@ const IconFolderLimitedSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconFolderLimitedSharpFilled as default } +export default IconFolderLimitedSharpFilled diff --git a/src/IconFolderManagedOutlined.tsx b/src/IconFolderManagedOutlined.tsx index 0f13e47f3..3ab139f02 100644 --- a/src/IconFolderManagedOutlined.tsx +++ b/src/IconFolderManagedOutlined.tsx @@ -8,4 +8,4 @@ const IconFolderManagedOutlined: React.FC = ({ ...props }) => ( ) -export { IconFolderManagedOutlined as default } +export default IconFolderManagedOutlined diff --git a/src/IconFolderManagedOutlinedFilled.tsx b/src/IconFolderManagedOutlinedFilled.tsx index a5d772580..48a572d5d 100644 --- a/src/IconFolderManagedOutlinedFilled.tsx +++ b/src/IconFolderManagedOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconFolderManagedOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconFolderManagedOutlinedFilled as default } +export default IconFolderManagedOutlinedFilled diff --git a/src/IconFolderManagedRounded.tsx b/src/IconFolderManagedRounded.tsx index ad193a333..0f1483010 100644 --- a/src/IconFolderManagedRounded.tsx +++ b/src/IconFolderManagedRounded.tsx @@ -8,4 +8,4 @@ const IconFolderManagedRounded: React.FC = ({ ...props }) => ( ) -export { IconFolderManagedRounded as default } +export default IconFolderManagedRounded diff --git a/src/IconFolderManagedRoundedFilled.tsx b/src/IconFolderManagedRoundedFilled.tsx index 0eac889b8..04e1933dc 100644 --- a/src/IconFolderManagedRoundedFilled.tsx +++ b/src/IconFolderManagedRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconFolderManagedRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconFolderManagedRoundedFilled as default } +export default IconFolderManagedRoundedFilled diff --git a/src/IconFolderManagedSharp.tsx b/src/IconFolderManagedSharp.tsx index f403c6e1b..0d635ac54 100644 --- a/src/IconFolderManagedSharp.tsx +++ b/src/IconFolderManagedSharp.tsx @@ -8,4 +8,4 @@ const IconFolderManagedSharp: React.FC = ({ ...props }) => ( ) -export { IconFolderManagedSharp as default } +export default IconFolderManagedSharp diff --git a/src/IconFolderManagedSharpFilled.tsx b/src/IconFolderManagedSharpFilled.tsx index 63f7656e6..af2c753ef 100644 --- a/src/IconFolderManagedSharpFilled.tsx +++ b/src/IconFolderManagedSharpFilled.tsx @@ -8,4 +8,4 @@ const IconFolderManagedSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconFolderManagedSharpFilled as default } +export default IconFolderManagedSharpFilled diff --git a/src/IconFolderOffOutlined.tsx b/src/IconFolderOffOutlined.tsx index d1b1d1efe..3c683e8bc 100644 --- a/src/IconFolderOffOutlined.tsx +++ b/src/IconFolderOffOutlined.tsx @@ -8,4 +8,4 @@ const IconFolderOffOutlined: React.FC = ({ ...props }) => ( ) -export { IconFolderOffOutlined as default } +export default IconFolderOffOutlined diff --git a/src/IconFolderOffOutlinedFilled.tsx b/src/IconFolderOffOutlinedFilled.tsx index 664ac3ebb..a4bad5a37 100644 --- a/src/IconFolderOffOutlinedFilled.tsx +++ b/src/IconFolderOffOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconFolderOffOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconFolderOffOutlinedFilled as default } +export default IconFolderOffOutlinedFilled diff --git a/src/IconFolderOffRounded.tsx b/src/IconFolderOffRounded.tsx index 6fbc8ef95..6a1ea7c1e 100644 --- a/src/IconFolderOffRounded.tsx +++ b/src/IconFolderOffRounded.tsx @@ -8,4 +8,4 @@ const IconFolderOffRounded: React.FC = ({ ...props }) => ( ) -export { IconFolderOffRounded as default } +export default IconFolderOffRounded diff --git a/src/IconFolderOffRoundedFilled.tsx b/src/IconFolderOffRoundedFilled.tsx index dc915c253..1c1eb6778 100644 --- a/src/IconFolderOffRoundedFilled.tsx +++ b/src/IconFolderOffRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconFolderOffRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconFolderOffRoundedFilled as default } +export default IconFolderOffRoundedFilled diff --git a/src/IconFolderOffSharp.tsx b/src/IconFolderOffSharp.tsx index 437caa10e..fbcb37aba 100644 --- a/src/IconFolderOffSharp.tsx +++ b/src/IconFolderOffSharp.tsx @@ -8,4 +8,4 @@ const IconFolderOffSharp: React.FC = ({ ...props }) => ( ) -export { IconFolderOffSharp as default } +export default IconFolderOffSharp diff --git a/src/IconFolderOffSharpFilled.tsx b/src/IconFolderOffSharpFilled.tsx index de3479c27..1afbd6425 100644 --- a/src/IconFolderOffSharpFilled.tsx +++ b/src/IconFolderOffSharpFilled.tsx @@ -8,4 +8,4 @@ const IconFolderOffSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconFolderOffSharpFilled as default } +export default IconFolderOffSharpFilled diff --git a/src/IconFolderOpenOutlined.tsx b/src/IconFolderOpenOutlined.tsx index c1d7f4b27..2bf576662 100644 --- a/src/IconFolderOpenOutlined.tsx +++ b/src/IconFolderOpenOutlined.tsx @@ -8,4 +8,4 @@ const IconFolderOpenOutlined: React.FC = ({ ...props }) => ( ) -export { IconFolderOpenOutlined as default } +export default IconFolderOpenOutlined diff --git a/src/IconFolderOpenOutlinedFilled.tsx b/src/IconFolderOpenOutlinedFilled.tsx index 374202986..7a41bdddb 100644 --- a/src/IconFolderOpenOutlinedFilled.tsx +++ b/src/IconFolderOpenOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconFolderOpenOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconFolderOpenOutlinedFilled as default } +export default IconFolderOpenOutlinedFilled diff --git a/src/IconFolderOpenRounded.tsx b/src/IconFolderOpenRounded.tsx index 66f1c8d15..01840e199 100644 --- a/src/IconFolderOpenRounded.tsx +++ b/src/IconFolderOpenRounded.tsx @@ -8,4 +8,4 @@ const IconFolderOpenRounded: React.FC = ({ ...props }) => ( ) -export { IconFolderOpenRounded as default } +export default IconFolderOpenRounded diff --git a/src/IconFolderOpenRoundedFilled.tsx b/src/IconFolderOpenRoundedFilled.tsx index 4f8540b00..b0bd4023f 100644 --- a/src/IconFolderOpenRoundedFilled.tsx +++ b/src/IconFolderOpenRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconFolderOpenRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconFolderOpenRoundedFilled as default } +export default IconFolderOpenRoundedFilled diff --git a/src/IconFolderOpenSharp.tsx b/src/IconFolderOpenSharp.tsx index 4353fad24..17e73cccf 100644 --- a/src/IconFolderOpenSharp.tsx +++ b/src/IconFolderOpenSharp.tsx @@ -8,4 +8,4 @@ const IconFolderOpenSharp: React.FC = ({ ...props }) => ( ) -export { IconFolderOpenSharp as default } +export default IconFolderOpenSharp diff --git a/src/IconFolderOpenSharpFilled.tsx b/src/IconFolderOpenSharpFilled.tsx index 6f37c76b4..5adf65766 100644 --- a/src/IconFolderOpenSharpFilled.tsx +++ b/src/IconFolderOpenSharpFilled.tsx @@ -8,4 +8,4 @@ const IconFolderOpenSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconFolderOpenSharpFilled as default } +export default IconFolderOpenSharpFilled diff --git a/src/IconFolderOutlined.tsx b/src/IconFolderOutlined.tsx index 10b749e75..23588090f 100644 --- a/src/IconFolderOutlined.tsx +++ b/src/IconFolderOutlined.tsx @@ -8,4 +8,4 @@ const IconFolderOutlined: React.FC = ({ ...props }) => ( ) -export { IconFolderOutlined as default } +export default IconFolderOutlined diff --git a/src/IconFolderOutlinedFilled.tsx b/src/IconFolderOutlinedFilled.tsx index 317922748..12e70c253 100644 --- a/src/IconFolderOutlinedFilled.tsx +++ b/src/IconFolderOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconFolderOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconFolderOutlinedFilled as default } +export default IconFolderOutlinedFilled diff --git a/src/IconFolderRounded.tsx b/src/IconFolderRounded.tsx index c988d656b..5086345b1 100644 --- a/src/IconFolderRounded.tsx +++ b/src/IconFolderRounded.tsx @@ -8,4 +8,4 @@ const IconFolderRounded: React.FC = ({ ...props }) => ( ) -export { IconFolderRounded as default } +export default IconFolderRounded diff --git a/src/IconFolderRoundedFilled.tsx b/src/IconFolderRoundedFilled.tsx index 04c067ce7..60ca8e450 100644 --- a/src/IconFolderRoundedFilled.tsx +++ b/src/IconFolderRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconFolderRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconFolderRoundedFilled as default } +export default IconFolderRoundedFilled diff --git a/src/IconFolderSharedOutlined.tsx b/src/IconFolderSharedOutlined.tsx index b96507b7c..b4cb5f62c 100644 --- a/src/IconFolderSharedOutlined.tsx +++ b/src/IconFolderSharedOutlined.tsx @@ -8,4 +8,4 @@ const IconFolderSharedOutlined: React.FC = ({ ...props }) => ( ) -export { IconFolderSharedOutlined as default } +export default IconFolderSharedOutlined diff --git a/src/IconFolderSharedOutlinedFilled.tsx b/src/IconFolderSharedOutlinedFilled.tsx index 118feeb56..4228f1e26 100644 --- a/src/IconFolderSharedOutlinedFilled.tsx +++ b/src/IconFolderSharedOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconFolderSharedOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconFolderSharedOutlinedFilled as default } +export default IconFolderSharedOutlinedFilled diff --git a/src/IconFolderSharedRounded.tsx b/src/IconFolderSharedRounded.tsx index 36bded37b..a58fa9f9c 100644 --- a/src/IconFolderSharedRounded.tsx +++ b/src/IconFolderSharedRounded.tsx @@ -8,4 +8,4 @@ const IconFolderSharedRounded: React.FC = ({ ...props }) => ( ) -export { IconFolderSharedRounded as default } +export default IconFolderSharedRounded diff --git a/src/IconFolderSharedRoundedFilled.tsx b/src/IconFolderSharedRoundedFilled.tsx index a27878ffb..29d3a2f14 100644 --- a/src/IconFolderSharedRoundedFilled.tsx +++ b/src/IconFolderSharedRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconFolderSharedRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconFolderSharedRoundedFilled as default } +export default IconFolderSharedRoundedFilled diff --git a/src/IconFolderSharedSharp.tsx b/src/IconFolderSharedSharp.tsx index bfd3f7ec0..315aa45ad 100644 --- a/src/IconFolderSharedSharp.tsx +++ b/src/IconFolderSharedSharp.tsx @@ -8,4 +8,4 @@ const IconFolderSharedSharp: React.FC = ({ ...props }) => ( ) -export { IconFolderSharedSharp as default } +export default IconFolderSharedSharp diff --git a/src/IconFolderSharedSharpFilled.tsx b/src/IconFolderSharedSharpFilled.tsx index 74a305ab3..5dc0d266a 100644 --- a/src/IconFolderSharedSharpFilled.tsx +++ b/src/IconFolderSharedSharpFilled.tsx @@ -8,4 +8,4 @@ const IconFolderSharedSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconFolderSharedSharpFilled as default } +export default IconFolderSharedSharpFilled diff --git a/src/IconFolderSharp.tsx b/src/IconFolderSharp.tsx index cb248bfca..636173415 100644 --- a/src/IconFolderSharp.tsx +++ b/src/IconFolderSharp.tsx @@ -8,4 +8,4 @@ const IconFolderSharp: React.FC = ({ ...props }) => ( ) -export { IconFolderSharp as default } +export default IconFolderSharp diff --git a/src/IconFolderSharpFilled.tsx b/src/IconFolderSharpFilled.tsx index 8f867ed85..52b01f8a2 100644 --- a/src/IconFolderSharpFilled.tsx +++ b/src/IconFolderSharpFilled.tsx @@ -8,4 +8,4 @@ const IconFolderSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconFolderSharpFilled as default } +export default IconFolderSharpFilled diff --git a/src/IconFolderSpecialOutlined.tsx b/src/IconFolderSpecialOutlined.tsx index 9743d9e11..d5feeeb25 100644 --- a/src/IconFolderSpecialOutlined.tsx +++ b/src/IconFolderSpecialOutlined.tsx @@ -8,4 +8,4 @@ const IconFolderSpecialOutlined: React.FC = ({ ...props }) => ( ) -export { IconFolderSpecialOutlined as default } +export default IconFolderSpecialOutlined diff --git a/src/IconFolderSpecialOutlinedFilled.tsx b/src/IconFolderSpecialOutlinedFilled.tsx index 68b75d223..05bbac862 100644 --- a/src/IconFolderSpecialOutlinedFilled.tsx +++ b/src/IconFolderSpecialOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconFolderSpecialOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconFolderSpecialOutlinedFilled as default } +export default IconFolderSpecialOutlinedFilled diff --git a/src/IconFolderSpecialRounded.tsx b/src/IconFolderSpecialRounded.tsx index 81598aa1b..c67b6e38a 100644 --- a/src/IconFolderSpecialRounded.tsx +++ b/src/IconFolderSpecialRounded.tsx @@ -8,4 +8,4 @@ const IconFolderSpecialRounded: React.FC = ({ ...props }) => ( ) -export { IconFolderSpecialRounded as default } +export default IconFolderSpecialRounded diff --git a/src/IconFolderSpecialRoundedFilled.tsx b/src/IconFolderSpecialRoundedFilled.tsx index 5379b016a..93351e4de 100644 --- a/src/IconFolderSpecialRoundedFilled.tsx +++ b/src/IconFolderSpecialRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconFolderSpecialRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconFolderSpecialRoundedFilled as default } +export default IconFolderSpecialRoundedFilled diff --git a/src/IconFolderSpecialSharp.tsx b/src/IconFolderSpecialSharp.tsx index 63e9cc765..e4c5ceb15 100644 --- a/src/IconFolderSpecialSharp.tsx +++ b/src/IconFolderSpecialSharp.tsx @@ -8,4 +8,4 @@ const IconFolderSpecialSharp: React.FC = ({ ...props }) => ( ) -export { IconFolderSpecialSharp as default } +export default IconFolderSpecialSharp diff --git a/src/IconFolderSpecialSharpFilled.tsx b/src/IconFolderSpecialSharpFilled.tsx index 92779afb4..4440c7dbd 100644 --- a/src/IconFolderSpecialSharpFilled.tsx +++ b/src/IconFolderSpecialSharpFilled.tsx @@ -8,4 +8,4 @@ const IconFolderSpecialSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconFolderSpecialSharpFilled as default } +export default IconFolderSpecialSharpFilled diff --git a/src/IconFolderSupervisedOutlined.tsx b/src/IconFolderSupervisedOutlined.tsx index e5d62a543..bd7a6185d 100644 --- a/src/IconFolderSupervisedOutlined.tsx +++ b/src/IconFolderSupervisedOutlined.tsx @@ -8,4 +8,4 @@ const IconFolderSupervisedOutlined: React.FC = ({ ...props }) => ( ) -export { IconFolderSupervisedOutlined as default } +export default IconFolderSupervisedOutlined diff --git a/src/IconFolderSupervisedOutlinedFilled.tsx b/src/IconFolderSupervisedOutlinedFilled.tsx index 39ea2eb5f..a3ced9c50 100644 --- a/src/IconFolderSupervisedOutlinedFilled.tsx +++ b/src/IconFolderSupervisedOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconFolderSupervisedOutlinedFilled: React.FC = ({ ) -export { IconFolderSupervisedOutlinedFilled as default } +export default IconFolderSupervisedOutlinedFilled diff --git a/src/IconFolderSupervisedRounded.tsx b/src/IconFolderSupervisedRounded.tsx index a32cededb..b4afd4b64 100644 --- a/src/IconFolderSupervisedRounded.tsx +++ b/src/IconFolderSupervisedRounded.tsx @@ -8,4 +8,4 @@ const IconFolderSupervisedRounded: React.FC = ({ ...props }) => ( ) -export { IconFolderSupervisedRounded as default } +export default IconFolderSupervisedRounded diff --git a/src/IconFolderSupervisedRoundedFilled.tsx b/src/IconFolderSupervisedRoundedFilled.tsx index 7f3d196e1..ed539c0d4 100644 --- a/src/IconFolderSupervisedRoundedFilled.tsx +++ b/src/IconFolderSupervisedRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconFolderSupervisedRoundedFilled: React.FC = ({ ) -export { IconFolderSupervisedRoundedFilled as default } +export default IconFolderSupervisedRoundedFilled diff --git a/src/IconFolderSupervisedSharp.tsx b/src/IconFolderSupervisedSharp.tsx index 6b4bfd400..02dbdce2b 100644 --- a/src/IconFolderSupervisedSharp.tsx +++ b/src/IconFolderSupervisedSharp.tsx @@ -8,4 +8,4 @@ const IconFolderSupervisedSharp: React.FC = ({ ...props }) => ( ) -export { IconFolderSupervisedSharp as default } +export default IconFolderSupervisedSharp diff --git a/src/IconFolderSupervisedSharpFilled.tsx b/src/IconFolderSupervisedSharpFilled.tsx index dab9d0548..5f9066450 100644 --- a/src/IconFolderSupervisedSharpFilled.tsx +++ b/src/IconFolderSupervisedSharpFilled.tsx @@ -8,4 +8,4 @@ const IconFolderSupervisedSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconFolderSupervisedSharpFilled as default } +export default IconFolderSupervisedSharpFilled diff --git a/src/IconFolderZipOutlined.tsx b/src/IconFolderZipOutlined.tsx index 1e1692b04..fbf17b8fa 100644 --- a/src/IconFolderZipOutlined.tsx +++ b/src/IconFolderZipOutlined.tsx @@ -8,4 +8,4 @@ const IconFolderZipOutlined: React.FC = ({ ...props }) => ( ) -export { IconFolderZipOutlined as default } +export default IconFolderZipOutlined diff --git a/src/IconFolderZipOutlinedFilled.tsx b/src/IconFolderZipOutlinedFilled.tsx index 33aa9df67..7840652d3 100644 --- a/src/IconFolderZipOutlinedFilled.tsx +++ b/src/IconFolderZipOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconFolderZipOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconFolderZipOutlinedFilled as default } +export default IconFolderZipOutlinedFilled diff --git a/src/IconFolderZipRounded.tsx b/src/IconFolderZipRounded.tsx index fee776e9d..e85e8add8 100644 --- a/src/IconFolderZipRounded.tsx +++ b/src/IconFolderZipRounded.tsx @@ -8,4 +8,4 @@ const IconFolderZipRounded: React.FC = ({ ...props }) => ( ) -export { IconFolderZipRounded as default } +export default IconFolderZipRounded diff --git a/src/IconFolderZipRoundedFilled.tsx b/src/IconFolderZipRoundedFilled.tsx index 288dbea21..fdc1ffb23 100644 --- a/src/IconFolderZipRoundedFilled.tsx +++ b/src/IconFolderZipRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconFolderZipRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconFolderZipRoundedFilled as default } +export default IconFolderZipRoundedFilled diff --git a/src/IconFolderZipSharp.tsx b/src/IconFolderZipSharp.tsx index 1da8d2701..87acaad0a 100644 --- a/src/IconFolderZipSharp.tsx +++ b/src/IconFolderZipSharp.tsx @@ -8,4 +8,4 @@ const IconFolderZipSharp: React.FC = ({ ...props }) => ( ) -export { IconFolderZipSharp as default } +export default IconFolderZipSharp diff --git a/src/IconFolderZipSharpFilled.tsx b/src/IconFolderZipSharpFilled.tsx index f3bd5a8e2..d1dbe702a 100644 --- a/src/IconFolderZipSharpFilled.tsx +++ b/src/IconFolderZipSharpFilled.tsx @@ -8,4 +8,4 @@ const IconFolderZipSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconFolderZipSharpFilled as default } +export default IconFolderZipSharpFilled diff --git a/src/IconFollowTheSignsOutlined.tsx b/src/IconFollowTheSignsOutlined.tsx index b7f86c0e9..61d9bdcd4 100644 --- a/src/IconFollowTheSignsOutlined.tsx +++ b/src/IconFollowTheSignsOutlined.tsx @@ -8,4 +8,4 @@ const IconFollowTheSignsOutlined: React.FC = ({ ...props }) => ( ) -export { IconFollowTheSignsOutlined as default } +export default IconFollowTheSignsOutlined diff --git a/src/IconFollowTheSignsOutlinedFilled.tsx b/src/IconFollowTheSignsOutlinedFilled.tsx index 5eec96aaa..9591502cd 100644 --- a/src/IconFollowTheSignsOutlinedFilled.tsx +++ b/src/IconFollowTheSignsOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconFollowTheSignsOutlinedFilled: React.FC = ({ ) -export { IconFollowTheSignsOutlinedFilled as default } +export default IconFollowTheSignsOutlinedFilled diff --git a/src/IconFollowTheSignsRounded.tsx b/src/IconFollowTheSignsRounded.tsx index 42dffaecc..073399c34 100644 --- a/src/IconFollowTheSignsRounded.tsx +++ b/src/IconFollowTheSignsRounded.tsx @@ -8,4 +8,4 @@ const IconFollowTheSignsRounded: React.FC = ({ ...props }) => ( ) -export { IconFollowTheSignsRounded as default } +export default IconFollowTheSignsRounded diff --git a/src/IconFollowTheSignsRoundedFilled.tsx b/src/IconFollowTheSignsRoundedFilled.tsx index 0b5c6dc6a..ddeb8d434 100644 --- a/src/IconFollowTheSignsRoundedFilled.tsx +++ b/src/IconFollowTheSignsRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconFollowTheSignsRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconFollowTheSignsRoundedFilled as default } +export default IconFollowTheSignsRoundedFilled diff --git a/src/IconFollowTheSignsSharp.tsx b/src/IconFollowTheSignsSharp.tsx index 70db41b14..1777ed974 100644 --- a/src/IconFollowTheSignsSharp.tsx +++ b/src/IconFollowTheSignsSharp.tsx @@ -8,4 +8,4 @@ const IconFollowTheSignsSharp: React.FC = ({ ...props }) => ( ) -export { IconFollowTheSignsSharp as default } +export default IconFollowTheSignsSharp diff --git a/src/IconFollowTheSignsSharpFilled.tsx b/src/IconFollowTheSignsSharpFilled.tsx index dda69f815..76f8196b0 100644 --- a/src/IconFollowTheSignsSharpFilled.tsx +++ b/src/IconFollowTheSignsSharpFilled.tsx @@ -8,4 +8,4 @@ const IconFollowTheSignsSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconFollowTheSignsSharpFilled as default } +export default IconFollowTheSignsSharpFilled diff --git a/src/IconFontDownloadOffOutlined.tsx b/src/IconFontDownloadOffOutlined.tsx index 168b2e9bf..ea319d2ea 100644 --- a/src/IconFontDownloadOffOutlined.tsx +++ b/src/IconFontDownloadOffOutlined.tsx @@ -8,4 +8,4 @@ const IconFontDownloadOffOutlined: React.FC = ({ ...props }) => ( ) -export { IconFontDownloadOffOutlined as default } +export default IconFontDownloadOffOutlined diff --git a/src/IconFontDownloadOffOutlinedFilled.tsx b/src/IconFontDownloadOffOutlinedFilled.tsx index 530b10ac2..eae7ed2db 100644 --- a/src/IconFontDownloadOffOutlinedFilled.tsx +++ b/src/IconFontDownloadOffOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconFontDownloadOffOutlinedFilled: React.FC = ({ ) -export { IconFontDownloadOffOutlinedFilled as default } +export default IconFontDownloadOffOutlinedFilled diff --git a/src/IconFontDownloadOffRounded.tsx b/src/IconFontDownloadOffRounded.tsx index 1cba7147c..55a40c03f 100644 --- a/src/IconFontDownloadOffRounded.tsx +++ b/src/IconFontDownloadOffRounded.tsx @@ -8,4 +8,4 @@ const IconFontDownloadOffRounded: React.FC = ({ ...props }) => ( ) -export { IconFontDownloadOffRounded as default } +export default IconFontDownloadOffRounded diff --git a/src/IconFontDownloadOffRoundedFilled.tsx b/src/IconFontDownloadOffRoundedFilled.tsx index 9be7a8140..24942029f 100644 --- a/src/IconFontDownloadOffRoundedFilled.tsx +++ b/src/IconFontDownloadOffRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconFontDownloadOffRoundedFilled: React.FC = ({ ) -export { IconFontDownloadOffRoundedFilled as default } +export default IconFontDownloadOffRoundedFilled diff --git a/src/IconFontDownloadOffSharp.tsx b/src/IconFontDownloadOffSharp.tsx index a035b3df9..179649297 100644 --- a/src/IconFontDownloadOffSharp.tsx +++ b/src/IconFontDownloadOffSharp.tsx @@ -8,4 +8,4 @@ const IconFontDownloadOffSharp: React.FC = ({ ...props }) => ( ) -export { IconFontDownloadOffSharp as default } +export default IconFontDownloadOffSharp diff --git a/src/IconFontDownloadOffSharpFilled.tsx b/src/IconFontDownloadOffSharpFilled.tsx index 5468b087f..38343f7dd 100644 --- a/src/IconFontDownloadOffSharpFilled.tsx +++ b/src/IconFontDownloadOffSharpFilled.tsx @@ -8,4 +8,4 @@ const IconFontDownloadOffSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconFontDownloadOffSharpFilled as default } +export default IconFontDownloadOffSharpFilled diff --git a/src/IconFontDownloadOutlined.tsx b/src/IconFontDownloadOutlined.tsx index ea4bbf479..eee61d40e 100644 --- a/src/IconFontDownloadOutlined.tsx +++ b/src/IconFontDownloadOutlined.tsx @@ -8,4 +8,4 @@ const IconFontDownloadOutlined: React.FC = ({ ...props }) => ( ) -export { IconFontDownloadOutlined as default } +export default IconFontDownloadOutlined diff --git a/src/IconFontDownloadOutlinedFilled.tsx b/src/IconFontDownloadOutlinedFilled.tsx index 32da35c65..baf1290f2 100644 --- a/src/IconFontDownloadOutlinedFilled.tsx +++ b/src/IconFontDownloadOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconFontDownloadOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconFontDownloadOutlinedFilled as default } +export default IconFontDownloadOutlinedFilled diff --git a/src/IconFontDownloadRounded.tsx b/src/IconFontDownloadRounded.tsx index 5df75ab84..858fe85b6 100644 --- a/src/IconFontDownloadRounded.tsx +++ b/src/IconFontDownloadRounded.tsx @@ -8,4 +8,4 @@ const IconFontDownloadRounded: React.FC = ({ ...props }) => ( ) -export { IconFontDownloadRounded as default } +export default IconFontDownloadRounded diff --git a/src/IconFontDownloadRoundedFilled.tsx b/src/IconFontDownloadRoundedFilled.tsx index 963274dd1..c36e49bd7 100644 --- a/src/IconFontDownloadRoundedFilled.tsx +++ b/src/IconFontDownloadRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconFontDownloadRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconFontDownloadRoundedFilled as default } +export default IconFontDownloadRoundedFilled diff --git a/src/IconFontDownloadSharp.tsx b/src/IconFontDownloadSharp.tsx index eb6b62db2..f7cfa09c9 100644 --- a/src/IconFontDownloadSharp.tsx +++ b/src/IconFontDownloadSharp.tsx @@ -8,4 +8,4 @@ const IconFontDownloadSharp: React.FC = ({ ...props }) => ( ) -export { IconFontDownloadSharp as default } +export default IconFontDownloadSharp diff --git a/src/IconFontDownloadSharpFilled.tsx b/src/IconFontDownloadSharpFilled.tsx index 101d9a91c..7c7bd43d2 100644 --- a/src/IconFontDownloadSharpFilled.tsx +++ b/src/IconFontDownloadSharpFilled.tsx @@ -8,4 +8,4 @@ const IconFontDownloadSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconFontDownloadSharpFilled as default } +export default IconFontDownloadSharpFilled diff --git a/src/IconFoodBankOutlined.tsx b/src/IconFoodBankOutlined.tsx index 53bdbee22..d188b0797 100644 --- a/src/IconFoodBankOutlined.tsx +++ b/src/IconFoodBankOutlined.tsx @@ -8,4 +8,4 @@ const IconFoodBankOutlined: React.FC = ({ ...props }) => ( ) -export { IconFoodBankOutlined as default } +export default IconFoodBankOutlined diff --git a/src/IconFoodBankOutlinedFilled.tsx b/src/IconFoodBankOutlinedFilled.tsx index eb124b2d9..c110b08e6 100644 --- a/src/IconFoodBankOutlinedFilled.tsx +++ b/src/IconFoodBankOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconFoodBankOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconFoodBankOutlinedFilled as default } +export default IconFoodBankOutlinedFilled diff --git a/src/IconFoodBankRounded.tsx b/src/IconFoodBankRounded.tsx index 3b24f8ca7..b8f757712 100644 --- a/src/IconFoodBankRounded.tsx +++ b/src/IconFoodBankRounded.tsx @@ -8,4 +8,4 @@ const IconFoodBankRounded: React.FC = ({ ...props }) => ( ) -export { IconFoodBankRounded as default } +export default IconFoodBankRounded diff --git a/src/IconFoodBankRoundedFilled.tsx b/src/IconFoodBankRoundedFilled.tsx index 0d29817e3..940604a05 100644 --- a/src/IconFoodBankRoundedFilled.tsx +++ b/src/IconFoodBankRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconFoodBankRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconFoodBankRoundedFilled as default } +export default IconFoodBankRoundedFilled diff --git a/src/IconFoodBankSharp.tsx b/src/IconFoodBankSharp.tsx index 1f1e20746..e42047da9 100644 --- a/src/IconFoodBankSharp.tsx +++ b/src/IconFoodBankSharp.tsx @@ -8,4 +8,4 @@ const IconFoodBankSharp: React.FC = ({ ...props }) => ( ) -export { IconFoodBankSharp as default } +export default IconFoodBankSharp diff --git a/src/IconFoodBankSharpFilled.tsx b/src/IconFoodBankSharpFilled.tsx index 087473dd1..e56e02bbe 100644 --- a/src/IconFoodBankSharpFilled.tsx +++ b/src/IconFoodBankSharpFilled.tsx @@ -8,4 +8,4 @@ const IconFoodBankSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconFoodBankSharpFilled as default } +export default IconFoodBankSharpFilled diff --git a/src/IconFootBonesOutlined.tsx b/src/IconFootBonesOutlined.tsx index 08f5d3677..67d74bcc3 100644 --- a/src/IconFootBonesOutlined.tsx +++ b/src/IconFootBonesOutlined.tsx @@ -8,4 +8,4 @@ const IconFootBonesOutlined: React.FC = ({ ...props }) => ( ) -export { IconFootBonesOutlined as default } +export default IconFootBonesOutlined diff --git a/src/IconFootBonesOutlinedFilled.tsx b/src/IconFootBonesOutlinedFilled.tsx index d470d7d0c..8adc51815 100644 --- a/src/IconFootBonesOutlinedFilled.tsx +++ b/src/IconFootBonesOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconFootBonesOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconFootBonesOutlinedFilled as default } +export default IconFootBonesOutlinedFilled diff --git a/src/IconFootBonesRounded.tsx b/src/IconFootBonesRounded.tsx index 9c1a4e779..157c3e050 100644 --- a/src/IconFootBonesRounded.tsx +++ b/src/IconFootBonesRounded.tsx @@ -8,4 +8,4 @@ const IconFootBonesRounded: React.FC = ({ ...props }) => ( ) -export { IconFootBonesRounded as default } +export default IconFootBonesRounded diff --git a/src/IconFootBonesRoundedFilled.tsx b/src/IconFootBonesRoundedFilled.tsx index 8f707ca4c..e109ec756 100644 --- a/src/IconFootBonesRoundedFilled.tsx +++ b/src/IconFootBonesRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconFootBonesRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconFootBonesRoundedFilled as default } +export default IconFootBonesRoundedFilled diff --git a/src/IconFootBonesSharp.tsx b/src/IconFootBonesSharp.tsx index af18926c7..cf3d59910 100644 --- a/src/IconFootBonesSharp.tsx +++ b/src/IconFootBonesSharp.tsx @@ -8,4 +8,4 @@ const IconFootBonesSharp: React.FC = ({ ...props }) => ( ) -export { IconFootBonesSharp as default } +export default IconFootBonesSharp diff --git a/src/IconFootBonesSharpFilled.tsx b/src/IconFootBonesSharpFilled.tsx index 1501c3113..7bac4a07a 100644 --- a/src/IconFootBonesSharpFilled.tsx +++ b/src/IconFootBonesSharpFilled.tsx @@ -8,4 +8,4 @@ const IconFootBonesSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconFootBonesSharpFilled as default } +export default IconFootBonesSharpFilled diff --git a/src/IconFootprintOutlined.tsx b/src/IconFootprintOutlined.tsx index 2ac9ab530..10704a056 100644 --- a/src/IconFootprintOutlined.tsx +++ b/src/IconFootprintOutlined.tsx @@ -8,4 +8,4 @@ const IconFootprintOutlined: React.FC = ({ ...props }) => ( ) -export { IconFootprintOutlined as default } +export default IconFootprintOutlined diff --git a/src/IconFootprintOutlinedFilled.tsx b/src/IconFootprintOutlinedFilled.tsx index d3fcfa8d3..5bee0c3a1 100644 --- a/src/IconFootprintOutlinedFilled.tsx +++ b/src/IconFootprintOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconFootprintOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconFootprintOutlinedFilled as default } +export default IconFootprintOutlinedFilled diff --git a/src/IconFootprintRounded.tsx b/src/IconFootprintRounded.tsx index 05eabde0c..673b34ab1 100644 --- a/src/IconFootprintRounded.tsx +++ b/src/IconFootprintRounded.tsx @@ -8,4 +8,4 @@ const IconFootprintRounded: React.FC = ({ ...props }) => ( ) -export { IconFootprintRounded as default } +export default IconFootprintRounded diff --git a/src/IconFootprintRoundedFilled.tsx b/src/IconFootprintRoundedFilled.tsx index dca724dbc..fb772c6ba 100644 --- a/src/IconFootprintRoundedFilled.tsx +++ b/src/IconFootprintRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconFootprintRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconFootprintRoundedFilled as default } +export default IconFootprintRoundedFilled diff --git a/src/IconFootprintSharp.tsx b/src/IconFootprintSharp.tsx index c13f3cd57..560ab8962 100644 --- a/src/IconFootprintSharp.tsx +++ b/src/IconFootprintSharp.tsx @@ -8,4 +8,4 @@ const IconFootprintSharp: React.FC = ({ ...props }) => ( ) -export { IconFootprintSharp as default } +export default IconFootprintSharp diff --git a/src/IconFootprintSharpFilled.tsx b/src/IconFootprintSharpFilled.tsx index 68c7f1655..51057f1bb 100644 --- a/src/IconFootprintSharpFilled.tsx +++ b/src/IconFootprintSharpFilled.tsx @@ -8,4 +8,4 @@ const IconFootprintSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconFootprintSharpFilled as default } +export default IconFootprintSharpFilled diff --git a/src/IconForYouOutlined.tsx b/src/IconForYouOutlined.tsx index 03042478b..5adac764e 100644 --- a/src/IconForYouOutlined.tsx +++ b/src/IconForYouOutlined.tsx @@ -8,4 +8,4 @@ const IconForYouOutlined: React.FC = ({ ...props }) => ( ) -export { IconForYouOutlined as default } +export default IconForYouOutlined diff --git a/src/IconForYouOutlinedFilled.tsx b/src/IconForYouOutlinedFilled.tsx index fe75d708c..3a87ec68c 100644 --- a/src/IconForYouOutlinedFilled.tsx +++ b/src/IconForYouOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconForYouOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconForYouOutlinedFilled as default } +export default IconForYouOutlinedFilled diff --git a/src/IconForYouRounded.tsx b/src/IconForYouRounded.tsx index 747e421b3..237829ac3 100644 --- a/src/IconForYouRounded.tsx +++ b/src/IconForYouRounded.tsx @@ -8,4 +8,4 @@ const IconForYouRounded: React.FC = ({ ...props }) => ( ) -export { IconForYouRounded as default } +export default IconForYouRounded diff --git a/src/IconForYouRoundedFilled.tsx b/src/IconForYouRoundedFilled.tsx index 47a34a04b..d1c9fced8 100644 --- a/src/IconForYouRoundedFilled.tsx +++ b/src/IconForYouRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconForYouRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconForYouRoundedFilled as default } +export default IconForYouRoundedFilled diff --git a/src/IconForYouSharp.tsx b/src/IconForYouSharp.tsx index 69a416282..0d80fa34f 100644 --- a/src/IconForYouSharp.tsx +++ b/src/IconForYouSharp.tsx @@ -8,4 +8,4 @@ const IconForYouSharp: React.FC = ({ ...props }) => ( ) -export { IconForYouSharp as default } +export default IconForYouSharp diff --git a/src/IconForYouSharpFilled.tsx b/src/IconForYouSharpFilled.tsx index dc43be4a5..9295dd66b 100644 --- a/src/IconForYouSharpFilled.tsx +++ b/src/IconForYouSharpFilled.tsx @@ -8,4 +8,4 @@ const IconForYouSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconForYouSharpFilled as default } +export default IconForYouSharpFilled diff --git a/src/IconForestOutlined.tsx b/src/IconForestOutlined.tsx index 752022335..0901a4e2c 100644 --- a/src/IconForestOutlined.tsx +++ b/src/IconForestOutlined.tsx @@ -8,4 +8,4 @@ const IconForestOutlined: React.FC = ({ ...props }) => ( ) -export { IconForestOutlined as default } +export default IconForestOutlined diff --git a/src/IconForestOutlinedFilled.tsx b/src/IconForestOutlinedFilled.tsx index 6a8c51da9..14dd512c7 100644 --- a/src/IconForestOutlinedFilled.tsx +++ b/src/IconForestOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconForestOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconForestOutlinedFilled as default } +export default IconForestOutlinedFilled diff --git a/src/IconForestRounded.tsx b/src/IconForestRounded.tsx index 8e0953572..83279da99 100644 --- a/src/IconForestRounded.tsx +++ b/src/IconForestRounded.tsx @@ -8,4 +8,4 @@ const IconForestRounded: React.FC = ({ ...props }) => ( ) -export { IconForestRounded as default } +export default IconForestRounded diff --git a/src/IconForestRoundedFilled.tsx b/src/IconForestRoundedFilled.tsx index 712778b7c..db79778e3 100644 --- a/src/IconForestRoundedFilled.tsx +++ b/src/IconForestRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconForestRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconForestRoundedFilled as default } +export default IconForestRoundedFilled diff --git a/src/IconForestSharp.tsx b/src/IconForestSharp.tsx index 0b369812c..9f3988c3c 100644 --- a/src/IconForestSharp.tsx +++ b/src/IconForestSharp.tsx @@ -8,4 +8,4 @@ const IconForestSharp: React.FC = ({ ...props }) => ( ) -export { IconForestSharp as default } +export default IconForestSharp diff --git a/src/IconForestSharpFilled.tsx b/src/IconForestSharpFilled.tsx index e9166d594..f66c98471 100644 --- a/src/IconForestSharpFilled.tsx +++ b/src/IconForestSharpFilled.tsx @@ -8,4 +8,4 @@ const IconForestSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconForestSharpFilled as default } +export default IconForestSharpFilled diff --git a/src/IconForkLeftOutlined.tsx b/src/IconForkLeftOutlined.tsx index 6d161a957..88b487c62 100644 --- a/src/IconForkLeftOutlined.tsx +++ b/src/IconForkLeftOutlined.tsx @@ -8,4 +8,4 @@ const IconForkLeftOutlined: React.FC = ({ ...props }) => ( ) -export { IconForkLeftOutlined as default } +export default IconForkLeftOutlined diff --git a/src/IconForkLeftOutlinedFilled.tsx b/src/IconForkLeftOutlinedFilled.tsx index 4746bcbf8..e140647aa 100644 --- a/src/IconForkLeftOutlinedFilled.tsx +++ b/src/IconForkLeftOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconForkLeftOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconForkLeftOutlinedFilled as default } +export default IconForkLeftOutlinedFilled diff --git a/src/IconForkLeftRounded.tsx b/src/IconForkLeftRounded.tsx index ae0683150..41f7a7534 100644 --- a/src/IconForkLeftRounded.tsx +++ b/src/IconForkLeftRounded.tsx @@ -8,4 +8,4 @@ const IconForkLeftRounded: React.FC = ({ ...props }) => ( ) -export { IconForkLeftRounded as default } +export default IconForkLeftRounded diff --git a/src/IconForkLeftRoundedFilled.tsx b/src/IconForkLeftRoundedFilled.tsx index d0dd6a8b5..e9271e2f7 100644 --- a/src/IconForkLeftRoundedFilled.tsx +++ b/src/IconForkLeftRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconForkLeftRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconForkLeftRoundedFilled as default } +export default IconForkLeftRoundedFilled diff --git a/src/IconForkLeftSharp.tsx b/src/IconForkLeftSharp.tsx index c4231a211..81c8f62d5 100644 --- a/src/IconForkLeftSharp.tsx +++ b/src/IconForkLeftSharp.tsx @@ -8,4 +8,4 @@ const IconForkLeftSharp: React.FC = ({ ...props }) => ( ) -export { IconForkLeftSharp as default } +export default IconForkLeftSharp diff --git a/src/IconForkLeftSharpFilled.tsx b/src/IconForkLeftSharpFilled.tsx index a2d7b98d4..392d04176 100644 --- a/src/IconForkLeftSharpFilled.tsx +++ b/src/IconForkLeftSharpFilled.tsx @@ -8,4 +8,4 @@ const IconForkLeftSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconForkLeftSharpFilled as default } +export default IconForkLeftSharpFilled diff --git a/src/IconForkRightOutlined.tsx b/src/IconForkRightOutlined.tsx index c00685f37..57037a0c1 100644 --- a/src/IconForkRightOutlined.tsx +++ b/src/IconForkRightOutlined.tsx @@ -8,4 +8,4 @@ const IconForkRightOutlined: React.FC = ({ ...props }) => ( ) -export { IconForkRightOutlined as default } +export default IconForkRightOutlined diff --git a/src/IconForkRightOutlinedFilled.tsx b/src/IconForkRightOutlinedFilled.tsx index 84285afb8..b61420cb3 100644 --- a/src/IconForkRightOutlinedFilled.tsx +++ b/src/IconForkRightOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconForkRightOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconForkRightOutlinedFilled as default } +export default IconForkRightOutlinedFilled diff --git a/src/IconForkRightRounded.tsx b/src/IconForkRightRounded.tsx index bfbf45092..a1b604cf8 100644 --- a/src/IconForkRightRounded.tsx +++ b/src/IconForkRightRounded.tsx @@ -8,4 +8,4 @@ const IconForkRightRounded: React.FC = ({ ...props }) => ( ) -export { IconForkRightRounded as default } +export default IconForkRightRounded diff --git a/src/IconForkRightRoundedFilled.tsx b/src/IconForkRightRoundedFilled.tsx index 577f43066..9db4a0f40 100644 --- a/src/IconForkRightRoundedFilled.tsx +++ b/src/IconForkRightRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconForkRightRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconForkRightRoundedFilled as default } +export default IconForkRightRoundedFilled diff --git a/src/IconForkRightSharp.tsx b/src/IconForkRightSharp.tsx index ab7e18671..1de19b186 100644 --- a/src/IconForkRightSharp.tsx +++ b/src/IconForkRightSharp.tsx @@ -8,4 +8,4 @@ const IconForkRightSharp: React.FC = ({ ...props }) => ( ) -export { IconForkRightSharp as default } +export default IconForkRightSharp diff --git a/src/IconForkRightSharpFilled.tsx b/src/IconForkRightSharpFilled.tsx index e7ff8cb0c..1ca09b500 100644 --- a/src/IconForkRightSharpFilled.tsx +++ b/src/IconForkRightSharpFilled.tsx @@ -8,4 +8,4 @@ const IconForkRightSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconForkRightSharpFilled as default } +export default IconForkRightSharpFilled diff --git a/src/IconForkliftOutlined.tsx b/src/IconForkliftOutlined.tsx index 67d917f9f..07c5db2f6 100644 --- a/src/IconForkliftOutlined.tsx +++ b/src/IconForkliftOutlined.tsx @@ -8,4 +8,4 @@ const IconForkliftOutlined: React.FC = ({ ...props }) => ( ) -export { IconForkliftOutlined as default } +export default IconForkliftOutlined diff --git a/src/IconForkliftOutlinedFilled.tsx b/src/IconForkliftOutlinedFilled.tsx index ebc307392..d2b6aa642 100644 --- a/src/IconForkliftOutlinedFilled.tsx +++ b/src/IconForkliftOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconForkliftOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconForkliftOutlinedFilled as default } +export default IconForkliftOutlinedFilled diff --git a/src/IconForkliftRounded.tsx b/src/IconForkliftRounded.tsx index 5e5299f09..ed0024154 100644 --- a/src/IconForkliftRounded.tsx +++ b/src/IconForkliftRounded.tsx @@ -8,4 +8,4 @@ const IconForkliftRounded: React.FC = ({ ...props }) => ( ) -export { IconForkliftRounded as default } +export default IconForkliftRounded diff --git a/src/IconForkliftRoundedFilled.tsx b/src/IconForkliftRoundedFilled.tsx index 4a695ef48..ac08d7211 100644 --- a/src/IconForkliftRoundedFilled.tsx +++ b/src/IconForkliftRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconForkliftRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconForkliftRoundedFilled as default } +export default IconForkliftRoundedFilled diff --git a/src/IconForkliftSharp.tsx b/src/IconForkliftSharp.tsx index 023942390..f66854562 100644 --- a/src/IconForkliftSharp.tsx +++ b/src/IconForkliftSharp.tsx @@ -8,4 +8,4 @@ const IconForkliftSharp: React.FC = ({ ...props }) => ( ) -export { IconForkliftSharp as default } +export default IconForkliftSharp diff --git a/src/IconForkliftSharpFilled.tsx b/src/IconForkliftSharpFilled.tsx index bc73d3d45..57f2cbd9b 100644 --- a/src/IconForkliftSharpFilled.tsx +++ b/src/IconForkliftSharpFilled.tsx @@ -8,4 +8,4 @@ const IconForkliftSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconForkliftSharpFilled as default } +export default IconForkliftSharpFilled diff --git a/src/IconFormatAlignCenterOutlined.tsx b/src/IconFormatAlignCenterOutlined.tsx index 9d629806e..13247ea7b 100644 --- a/src/IconFormatAlignCenterOutlined.tsx +++ b/src/IconFormatAlignCenterOutlined.tsx @@ -8,4 +8,4 @@ const IconFormatAlignCenterOutlined: React.FC = ({ ...props }) => ( ) -export { IconFormatAlignCenterOutlined as default } +export default IconFormatAlignCenterOutlined diff --git a/src/IconFormatAlignCenterOutlinedFilled.tsx b/src/IconFormatAlignCenterOutlinedFilled.tsx index bbb239d65..9ddb0e8ea 100644 --- a/src/IconFormatAlignCenterOutlinedFilled.tsx +++ b/src/IconFormatAlignCenterOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconFormatAlignCenterOutlinedFilled: React.FC = ({ ) -export { IconFormatAlignCenterOutlinedFilled as default } +export default IconFormatAlignCenterOutlinedFilled diff --git a/src/IconFormatAlignCenterRounded.tsx b/src/IconFormatAlignCenterRounded.tsx index aa1fd1eff..2f565a1c2 100644 --- a/src/IconFormatAlignCenterRounded.tsx +++ b/src/IconFormatAlignCenterRounded.tsx @@ -8,4 +8,4 @@ const IconFormatAlignCenterRounded: React.FC = ({ ...props }) => ( ) -export { IconFormatAlignCenterRounded as default } +export default IconFormatAlignCenterRounded diff --git a/src/IconFormatAlignCenterRoundedFilled.tsx b/src/IconFormatAlignCenterRoundedFilled.tsx index d22df4807..0fe973198 100644 --- a/src/IconFormatAlignCenterRoundedFilled.tsx +++ b/src/IconFormatAlignCenterRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconFormatAlignCenterRoundedFilled: React.FC = ({ ) -export { IconFormatAlignCenterRoundedFilled as default } +export default IconFormatAlignCenterRoundedFilled diff --git a/src/IconFormatAlignCenterSharp.tsx b/src/IconFormatAlignCenterSharp.tsx index 0c3cf8936..8a01dc74b 100644 --- a/src/IconFormatAlignCenterSharp.tsx +++ b/src/IconFormatAlignCenterSharp.tsx @@ -8,4 +8,4 @@ const IconFormatAlignCenterSharp: React.FC = ({ ...props }) => ( ) -export { IconFormatAlignCenterSharp as default } +export default IconFormatAlignCenterSharp diff --git a/src/IconFormatAlignCenterSharpFilled.tsx b/src/IconFormatAlignCenterSharpFilled.tsx index 6eea84abe..c47001900 100644 --- a/src/IconFormatAlignCenterSharpFilled.tsx +++ b/src/IconFormatAlignCenterSharpFilled.tsx @@ -10,4 +10,4 @@ const IconFormatAlignCenterSharpFilled: React.FC = ({ ) -export { IconFormatAlignCenterSharpFilled as default } +export default IconFormatAlignCenterSharpFilled diff --git a/src/IconFormatAlignJustifyOutlined.tsx b/src/IconFormatAlignJustifyOutlined.tsx index db7c5ea22..6ae327b20 100644 --- a/src/IconFormatAlignJustifyOutlined.tsx +++ b/src/IconFormatAlignJustifyOutlined.tsx @@ -8,4 +8,4 @@ const IconFormatAlignJustifyOutlined: React.FC = ({ ...props }) => ( ) -export { IconFormatAlignJustifyOutlined as default } +export default IconFormatAlignJustifyOutlined diff --git a/src/IconFormatAlignJustifyOutlinedFilled.tsx b/src/IconFormatAlignJustifyOutlinedFilled.tsx index 1287bda12..f09d7691c 100644 --- a/src/IconFormatAlignJustifyOutlinedFilled.tsx +++ b/src/IconFormatAlignJustifyOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconFormatAlignJustifyOutlinedFilled: React.FC = ({ ) -export { IconFormatAlignJustifyOutlinedFilled as default } +export default IconFormatAlignJustifyOutlinedFilled diff --git a/src/IconFormatAlignJustifyRounded.tsx b/src/IconFormatAlignJustifyRounded.tsx index 97bfe161f..92abe0a21 100644 --- a/src/IconFormatAlignJustifyRounded.tsx +++ b/src/IconFormatAlignJustifyRounded.tsx @@ -8,4 +8,4 @@ const IconFormatAlignJustifyRounded: React.FC = ({ ...props }) => ( ) -export { IconFormatAlignJustifyRounded as default } +export default IconFormatAlignJustifyRounded diff --git a/src/IconFormatAlignJustifyRoundedFilled.tsx b/src/IconFormatAlignJustifyRoundedFilled.tsx index f5cf2cf1c..e96932f9f 100644 --- a/src/IconFormatAlignJustifyRoundedFilled.tsx +++ b/src/IconFormatAlignJustifyRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconFormatAlignJustifyRoundedFilled: React.FC = ({ ) -export { IconFormatAlignJustifyRoundedFilled as default } +export default IconFormatAlignJustifyRoundedFilled diff --git a/src/IconFormatAlignJustifySharp.tsx b/src/IconFormatAlignJustifySharp.tsx index 7ebb3ce18..060ed4ddd 100644 --- a/src/IconFormatAlignJustifySharp.tsx +++ b/src/IconFormatAlignJustifySharp.tsx @@ -8,4 +8,4 @@ const IconFormatAlignJustifySharp: React.FC = ({ ...props }) => ( ) -export { IconFormatAlignJustifySharp as default } +export default IconFormatAlignJustifySharp diff --git a/src/IconFormatAlignJustifySharpFilled.tsx b/src/IconFormatAlignJustifySharpFilled.tsx index 57d08ac74..32dd29d7e 100644 --- a/src/IconFormatAlignJustifySharpFilled.tsx +++ b/src/IconFormatAlignJustifySharpFilled.tsx @@ -10,4 +10,4 @@ const IconFormatAlignJustifySharpFilled: React.FC = ({ ) -export { IconFormatAlignJustifySharpFilled as default } +export default IconFormatAlignJustifySharpFilled diff --git a/src/IconFormatAlignLeftOutlined.tsx b/src/IconFormatAlignLeftOutlined.tsx index c324afd3e..96c029e21 100644 --- a/src/IconFormatAlignLeftOutlined.tsx +++ b/src/IconFormatAlignLeftOutlined.tsx @@ -8,4 +8,4 @@ const IconFormatAlignLeftOutlined: React.FC = ({ ...props }) => ( ) -export { IconFormatAlignLeftOutlined as default } +export default IconFormatAlignLeftOutlined diff --git a/src/IconFormatAlignLeftOutlinedFilled.tsx b/src/IconFormatAlignLeftOutlinedFilled.tsx index 0e94f4256..825c46a9e 100644 --- a/src/IconFormatAlignLeftOutlinedFilled.tsx +++ b/src/IconFormatAlignLeftOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconFormatAlignLeftOutlinedFilled: React.FC = ({ ) -export { IconFormatAlignLeftOutlinedFilled as default } +export default IconFormatAlignLeftOutlinedFilled diff --git a/src/IconFormatAlignLeftRounded.tsx b/src/IconFormatAlignLeftRounded.tsx index 608868f85..a9ff111ef 100644 --- a/src/IconFormatAlignLeftRounded.tsx +++ b/src/IconFormatAlignLeftRounded.tsx @@ -8,4 +8,4 @@ const IconFormatAlignLeftRounded: React.FC = ({ ...props }) => ( ) -export { IconFormatAlignLeftRounded as default } +export default IconFormatAlignLeftRounded diff --git a/src/IconFormatAlignLeftRoundedFilled.tsx b/src/IconFormatAlignLeftRoundedFilled.tsx index 49f561505..6acc95ecd 100644 --- a/src/IconFormatAlignLeftRoundedFilled.tsx +++ b/src/IconFormatAlignLeftRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconFormatAlignLeftRoundedFilled: React.FC = ({ ) -export { IconFormatAlignLeftRoundedFilled as default } +export default IconFormatAlignLeftRoundedFilled diff --git a/src/IconFormatAlignLeftSharp.tsx b/src/IconFormatAlignLeftSharp.tsx index f095e7dd0..58abc3dc4 100644 --- a/src/IconFormatAlignLeftSharp.tsx +++ b/src/IconFormatAlignLeftSharp.tsx @@ -8,4 +8,4 @@ const IconFormatAlignLeftSharp: React.FC = ({ ...props }) => ( ) -export { IconFormatAlignLeftSharp as default } +export default IconFormatAlignLeftSharp diff --git a/src/IconFormatAlignLeftSharpFilled.tsx b/src/IconFormatAlignLeftSharpFilled.tsx index a1acdb119..a2a4146df 100644 --- a/src/IconFormatAlignLeftSharpFilled.tsx +++ b/src/IconFormatAlignLeftSharpFilled.tsx @@ -8,4 +8,4 @@ const IconFormatAlignLeftSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconFormatAlignLeftSharpFilled as default } +export default IconFormatAlignLeftSharpFilled diff --git a/src/IconFormatAlignRightOutlined.tsx b/src/IconFormatAlignRightOutlined.tsx index 5574c56ed..5d9ba10b8 100644 --- a/src/IconFormatAlignRightOutlined.tsx +++ b/src/IconFormatAlignRightOutlined.tsx @@ -8,4 +8,4 @@ const IconFormatAlignRightOutlined: React.FC = ({ ...props }) => ( ) -export { IconFormatAlignRightOutlined as default } +export default IconFormatAlignRightOutlined diff --git a/src/IconFormatAlignRightOutlinedFilled.tsx b/src/IconFormatAlignRightOutlinedFilled.tsx index 0925452e3..5111773a7 100644 --- a/src/IconFormatAlignRightOutlinedFilled.tsx +++ b/src/IconFormatAlignRightOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconFormatAlignRightOutlinedFilled: React.FC = ({ ) -export { IconFormatAlignRightOutlinedFilled as default } +export default IconFormatAlignRightOutlinedFilled diff --git a/src/IconFormatAlignRightRounded.tsx b/src/IconFormatAlignRightRounded.tsx index 131002b15..275860f4a 100644 --- a/src/IconFormatAlignRightRounded.tsx +++ b/src/IconFormatAlignRightRounded.tsx @@ -8,4 +8,4 @@ const IconFormatAlignRightRounded: React.FC = ({ ...props }) => ( ) -export { IconFormatAlignRightRounded as default } +export default IconFormatAlignRightRounded diff --git a/src/IconFormatAlignRightRoundedFilled.tsx b/src/IconFormatAlignRightRoundedFilled.tsx index a67a84751..777b6630d 100644 --- a/src/IconFormatAlignRightRoundedFilled.tsx +++ b/src/IconFormatAlignRightRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconFormatAlignRightRoundedFilled: React.FC = ({ ) -export { IconFormatAlignRightRoundedFilled as default } +export default IconFormatAlignRightRoundedFilled diff --git a/src/IconFormatAlignRightSharp.tsx b/src/IconFormatAlignRightSharp.tsx index 638a471f5..21269bfb3 100644 --- a/src/IconFormatAlignRightSharp.tsx +++ b/src/IconFormatAlignRightSharp.tsx @@ -8,4 +8,4 @@ const IconFormatAlignRightSharp: React.FC = ({ ...props }) => ( ) -export { IconFormatAlignRightSharp as default } +export default IconFormatAlignRightSharp diff --git a/src/IconFormatAlignRightSharpFilled.tsx b/src/IconFormatAlignRightSharpFilled.tsx index d93f39588..255a12759 100644 --- a/src/IconFormatAlignRightSharpFilled.tsx +++ b/src/IconFormatAlignRightSharpFilled.tsx @@ -8,4 +8,4 @@ const IconFormatAlignRightSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconFormatAlignRightSharpFilled as default } +export default IconFormatAlignRightSharpFilled diff --git a/src/IconFormatBoldOutlined.tsx b/src/IconFormatBoldOutlined.tsx index ed2adf20c..904b0575c 100644 --- a/src/IconFormatBoldOutlined.tsx +++ b/src/IconFormatBoldOutlined.tsx @@ -8,4 +8,4 @@ const IconFormatBoldOutlined: React.FC = ({ ...props }) => ( ) -export { IconFormatBoldOutlined as default } +export default IconFormatBoldOutlined diff --git a/src/IconFormatBoldOutlinedFilled.tsx b/src/IconFormatBoldOutlinedFilled.tsx index c256788ac..6a07c0cc0 100644 --- a/src/IconFormatBoldOutlinedFilled.tsx +++ b/src/IconFormatBoldOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconFormatBoldOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconFormatBoldOutlinedFilled as default } +export default IconFormatBoldOutlinedFilled diff --git a/src/IconFormatBoldRounded.tsx b/src/IconFormatBoldRounded.tsx index 106c772fd..1a1723b6f 100644 --- a/src/IconFormatBoldRounded.tsx +++ b/src/IconFormatBoldRounded.tsx @@ -8,4 +8,4 @@ const IconFormatBoldRounded: React.FC = ({ ...props }) => ( ) -export { IconFormatBoldRounded as default } +export default IconFormatBoldRounded diff --git a/src/IconFormatBoldRoundedFilled.tsx b/src/IconFormatBoldRoundedFilled.tsx index 1babdb745..b73058c72 100644 --- a/src/IconFormatBoldRoundedFilled.tsx +++ b/src/IconFormatBoldRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconFormatBoldRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconFormatBoldRoundedFilled as default } +export default IconFormatBoldRoundedFilled diff --git a/src/IconFormatBoldSharp.tsx b/src/IconFormatBoldSharp.tsx index 31fe7d57b..2fb0ff1ae 100644 --- a/src/IconFormatBoldSharp.tsx +++ b/src/IconFormatBoldSharp.tsx @@ -8,4 +8,4 @@ const IconFormatBoldSharp: React.FC = ({ ...props }) => ( ) -export { IconFormatBoldSharp as default } +export default IconFormatBoldSharp diff --git a/src/IconFormatBoldSharpFilled.tsx b/src/IconFormatBoldSharpFilled.tsx index c094166cc..377232727 100644 --- a/src/IconFormatBoldSharpFilled.tsx +++ b/src/IconFormatBoldSharpFilled.tsx @@ -8,4 +8,4 @@ const IconFormatBoldSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconFormatBoldSharpFilled as default } +export default IconFormatBoldSharpFilled diff --git a/src/IconFormatClearOutlined.tsx b/src/IconFormatClearOutlined.tsx index 1beaec7c4..fcc4bd1db 100644 --- a/src/IconFormatClearOutlined.tsx +++ b/src/IconFormatClearOutlined.tsx @@ -8,4 +8,4 @@ const IconFormatClearOutlined: React.FC = ({ ...props }) => ( ) -export { IconFormatClearOutlined as default } +export default IconFormatClearOutlined diff --git a/src/IconFormatClearOutlinedFilled.tsx b/src/IconFormatClearOutlinedFilled.tsx index f47130e93..449276435 100644 --- a/src/IconFormatClearOutlinedFilled.tsx +++ b/src/IconFormatClearOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconFormatClearOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconFormatClearOutlinedFilled as default } +export default IconFormatClearOutlinedFilled diff --git a/src/IconFormatClearRounded.tsx b/src/IconFormatClearRounded.tsx index b74fb1653..712179297 100644 --- a/src/IconFormatClearRounded.tsx +++ b/src/IconFormatClearRounded.tsx @@ -8,4 +8,4 @@ const IconFormatClearRounded: React.FC = ({ ...props }) => ( ) -export { IconFormatClearRounded as default } +export default IconFormatClearRounded diff --git a/src/IconFormatClearRoundedFilled.tsx b/src/IconFormatClearRoundedFilled.tsx index 70554faf2..96abfa0ab 100644 --- a/src/IconFormatClearRoundedFilled.tsx +++ b/src/IconFormatClearRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconFormatClearRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconFormatClearRoundedFilled as default } +export default IconFormatClearRoundedFilled diff --git a/src/IconFormatClearSharp.tsx b/src/IconFormatClearSharp.tsx index b3272a583..20b2c372c 100644 --- a/src/IconFormatClearSharp.tsx +++ b/src/IconFormatClearSharp.tsx @@ -8,4 +8,4 @@ const IconFormatClearSharp: React.FC = ({ ...props }) => ( ) -export { IconFormatClearSharp as default } +export default IconFormatClearSharp diff --git a/src/IconFormatClearSharpFilled.tsx b/src/IconFormatClearSharpFilled.tsx index dfe67c6be..66fafb816 100644 --- a/src/IconFormatClearSharpFilled.tsx +++ b/src/IconFormatClearSharpFilled.tsx @@ -8,4 +8,4 @@ const IconFormatClearSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconFormatClearSharpFilled as default } +export default IconFormatClearSharpFilled diff --git a/src/IconFormatColorFillOutlined.tsx b/src/IconFormatColorFillOutlined.tsx index 8bf624c8e..ba555ba20 100644 --- a/src/IconFormatColorFillOutlined.tsx +++ b/src/IconFormatColorFillOutlined.tsx @@ -8,4 +8,4 @@ const IconFormatColorFillOutlined: React.FC = ({ ...props }) => ( ) -export { IconFormatColorFillOutlined as default } +export default IconFormatColorFillOutlined diff --git a/src/IconFormatColorFillOutlinedFilled.tsx b/src/IconFormatColorFillOutlinedFilled.tsx index 9d16fd80b..fdec2689c 100644 --- a/src/IconFormatColorFillOutlinedFilled.tsx +++ b/src/IconFormatColorFillOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconFormatColorFillOutlinedFilled: React.FC = ({ ) -export { IconFormatColorFillOutlinedFilled as default } +export default IconFormatColorFillOutlinedFilled diff --git a/src/IconFormatColorFillRounded.tsx b/src/IconFormatColorFillRounded.tsx index 5fda42678..6dd8814e4 100644 --- a/src/IconFormatColorFillRounded.tsx +++ b/src/IconFormatColorFillRounded.tsx @@ -8,4 +8,4 @@ const IconFormatColorFillRounded: React.FC = ({ ...props }) => ( ) -export { IconFormatColorFillRounded as default } +export default IconFormatColorFillRounded diff --git a/src/IconFormatColorFillRoundedFilled.tsx b/src/IconFormatColorFillRoundedFilled.tsx index dd1d006f1..d6740eff0 100644 --- a/src/IconFormatColorFillRoundedFilled.tsx +++ b/src/IconFormatColorFillRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconFormatColorFillRoundedFilled: React.FC = ({ ) -export { IconFormatColorFillRoundedFilled as default } +export default IconFormatColorFillRoundedFilled diff --git a/src/IconFormatColorFillSharp.tsx b/src/IconFormatColorFillSharp.tsx index adac18548..5ef7eae3f 100644 --- a/src/IconFormatColorFillSharp.tsx +++ b/src/IconFormatColorFillSharp.tsx @@ -8,4 +8,4 @@ const IconFormatColorFillSharp: React.FC = ({ ...props }) => ( ) -export { IconFormatColorFillSharp as default } +export default IconFormatColorFillSharp diff --git a/src/IconFormatColorFillSharpFilled.tsx b/src/IconFormatColorFillSharpFilled.tsx index 0a282d09e..6fecb50fd 100644 --- a/src/IconFormatColorFillSharpFilled.tsx +++ b/src/IconFormatColorFillSharpFilled.tsx @@ -8,4 +8,4 @@ const IconFormatColorFillSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconFormatColorFillSharpFilled as default } +export default IconFormatColorFillSharpFilled diff --git a/src/IconFormatColorResetOutlined.tsx b/src/IconFormatColorResetOutlined.tsx index 3b0b5d6fd..2de919efe 100644 --- a/src/IconFormatColorResetOutlined.tsx +++ b/src/IconFormatColorResetOutlined.tsx @@ -8,4 +8,4 @@ const IconFormatColorResetOutlined: React.FC = ({ ...props }) => ( ) -export { IconFormatColorResetOutlined as default } +export default IconFormatColorResetOutlined diff --git a/src/IconFormatColorResetOutlinedFilled.tsx b/src/IconFormatColorResetOutlinedFilled.tsx index 19fbb1cbf..5b35f62cf 100644 --- a/src/IconFormatColorResetOutlinedFilled.tsx +++ b/src/IconFormatColorResetOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconFormatColorResetOutlinedFilled: React.FC = ({ ) -export { IconFormatColorResetOutlinedFilled as default } +export default IconFormatColorResetOutlinedFilled diff --git a/src/IconFormatColorResetRounded.tsx b/src/IconFormatColorResetRounded.tsx index 029a122d1..50a63f148 100644 --- a/src/IconFormatColorResetRounded.tsx +++ b/src/IconFormatColorResetRounded.tsx @@ -8,4 +8,4 @@ const IconFormatColorResetRounded: React.FC = ({ ...props }) => ( ) -export { IconFormatColorResetRounded as default } +export default IconFormatColorResetRounded diff --git a/src/IconFormatColorResetRoundedFilled.tsx b/src/IconFormatColorResetRoundedFilled.tsx index 0211a4743..0122dae29 100644 --- a/src/IconFormatColorResetRoundedFilled.tsx +++ b/src/IconFormatColorResetRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconFormatColorResetRoundedFilled: React.FC = ({ ) -export { IconFormatColorResetRoundedFilled as default } +export default IconFormatColorResetRoundedFilled diff --git a/src/IconFormatColorResetSharp.tsx b/src/IconFormatColorResetSharp.tsx index 43c9d5855..8de0bea51 100644 --- a/src/IconFormatColorResetSharp.tsx +++ b/src/IconFormatColorResetSharp.tsx @@ -8,4 +8,4 @@ const IconFormatColorResetSharp: React.FC = ({ ...props }) => ( ) -export { IconFormatColorResetSharp as default } +export default IconFormatColorResetSharp diff --git a/src/IconFormatColorResetSharpFilled.tsx b/src/IconFormatColorResetSharpFilled.tsx index dc431219c..774030df5 100644 --- a/src/IconFormatColorResetSharpFilled.tsx +++ b/src/IconFormatColorResetSharpFilled.tsx @@ -8,4 +8,4 @@ const IconFormatColorResetSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconFormatColorResetSharpFilled as default } +export default IconFormatColorResetSharpFilled diff --git a/src/IconFormatColorTextOutlined.tsx b/src/IconFormatColorTextOutlined.tsx index 142f9d370..737e77d7d 100644 --- a/src/IconFormatColorTextOutlined.tsx +++ b/src/IconFormatColorTextOutlined.tsx @@ -8,4 +8,4 @@ const IconFormatColorTextOutlined: React.FC = ({ ...props }) => ( ) -export { IconFormatColorTextOutlined as default } +export default IconFormatColorTextOutlined diff --git a/src/IconFormatColorTextOutlinedFilled.tsx b/src/IconFormatColorTextOutlinedFilled.tsx index 61249e9ae..b7dd08f1a 100644 --- a/src/IconFormatColorTextOutlinedFilled.tsx +++ b/src/IconFormatColorTextOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconFormatColorTextOutlinedFilled: React.FC = ({ ) -export { IconFormatColorTextOutlinedFilled as default } +export default IconFormatColorTextOutlinedFilled diff --git a/src/IconFormatColorTextRounded.tsx b/src/IconFormatColorTextRounded.tsx index 822efd26d..aa6edf1b2 100644 --- a/src/IconFormatColorTextRounded.tsx +++ b/src/IconFormatColorTextRounded.tsx @@ -8,4 +8,4 @@ const IconFormatColorTextRounded: React.FC = ({ ...props }) => ( ) -export { IconFormatColorTextRounded as default } +export default IconFormatColorTextRounded diff --git a/src/IconFormatColorTextRoundedFilled.tsx b/src/IconFormatColorTextRoundedFilled.tsx index 2f412ddbe..15e26d246 100644 --- a/src/IconFormatColorTextRoundedFilled.tsx +++ b/src/IconFormatColorTextRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconFormatColorTextRoundedFilled: React.FC = ({ ) -export { IconFormatColorTextRoundedFilled as default } +export default IconFormatColorTextRoundedFilled diff --git a/src/IconFormatColorTextSharp.tsx b/src/IconFormatColorTextSharp.tsx index e360e741b..ca0e3f80a 100644 --- a/src/IconFormatColorTextSharp.tsx +++ b/src/IconFormatColorTextSharp.tsx @@ -8,4 +8,4 @@ const IconFormatColorTextSharp: React.FC = ({ ...props }) => ( ) -export { IconFormatColorTextSharp as default } +export default IconFormatColorTextSharp diff --git a/src/IconFormatColorTextSharpFilled.tsx b/src/IconFormatColorTextSharpFilled.tsx index 76955aefc..b8b5984a5 100644 --- a/src/IconFormatColorTextSharpFilled.tsx +++ b/src/IconFormatColorTextSharpFilled.tsx @@ -8,4 +8,4 @@ const IconFormatColorTextSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconFormatColorTextSharpFilled as default } +export default IconFormatColorTextSharpFilled diff --git a/src/IconFormatH1Outlined.tsx b/src/IconFormatH1Outlined.tsx index 71443aeb5..94ffda408 100644 --- a/src/IconFormatH1Outlined.tsx +++ b/src/IconFormatH1Outlined.tsx @@ -8,4 +8,4 @@ const IconFormatH1Outlined: React.FC = ({ ...props }) => ( ) -export { IconFormatH1Outlined as default } +export default IconFormatH1Outlined diff --git a/src/IconFormatH1OutlinedFilled.tsx b/src/IconFormatH1OutlinedFilled.tsx index 4c04496ee..3919b9a03 100644 --- a/src/IconFormatH1OutlinedFilled.tsx +++ b/src/IconFormatH1OutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconFormatH1OutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconFormatH1OutlinedFilled as default } +export default IconFormatH1OutlinedFilled diff --git a/src/IconFormatH1Rounded.tsx b/src/IconFormatH1Rounded.tsx index bcfe1f7ce..7c0c5e046 100644 --- a/src/IconFormatH1Rounded.tsx +++ b/src/IconFormatH1Rounded.tsx @@ -8,4 +8,4 @@ const IconFormatH1Rounded: React.FC = ({ ...props }) => ( ) -export { IconFormatH1Rounded as default } +export default IconFormatH1Rounded diff --git a/src/IconFormatH1RoundedFilled.tsx b/src/IconFormatH1RoundedFilled.tsx index abd30ec1a..51e7b6a72 100644 --- a/src/IconFormatH1RoundedFilled.tsx +++ b/src/IconFormatH1RoundedFilled.tsx @@ -8,4 +8,4 @@ const IconFormatH1RoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconFormatH1RoundedFilled as default } +export default IconFormatH1RoundedFilled diff --git a/src/IconFormatH1Sharp.tsx b/src/IconFormatH1Sharp.tsx index d91e1380a..eca08adb6 100644 --- a/src/IconFormatH1Sharp.tsx +++ b/src/IconFormatH1Sharp.tsx @@ -8,4 +8,4 @@ const IconFormatH1Sharp: React.FC = ({ ...props }) => ( ) -export { IconFormatH1Sharp as default } +export default IconFormatH1Sharp diff --git a/src/IconFormatH1SharpFilled.tsx b/src/IconFormatH1SharpFilled.tsx index 3f2a6060d..7ea20b7f1 100644 --- a/src/IconFormatH1SharpFilled.tsx +++ b/src/IconFormatH1SharpFilled.tsx @@ -8,4 +8,4 @@ const IconFormatH1SharpFilled: React.FC = ({ ...props }) => ( ) -export { IconFormatH1SharpFilled as default } +export default IconFormatH1SharpFilled diff --git a/src/IconFormatH2Outlined.tsx b/src/IconFormatH2Outlined.tsx index 90970d09a..173210a97 100644 --- a/src/IconFormatH2Outlined.tsx +++ b/src/IconFormatH2Outlined.tsx @@ -8,4 +8,4 @@ const IconFormatH2Outlined: React.FC = ({ ...props }) => ( ) -export { IconFormatH2Outlined as default } +export default IconFormatH2Outlined diff --git a/src/IconFormatH2OutlinedFilled.tsx b/src/IconFormatH2OutlinedFilled.tsx index 4bcbfb911..6f185648b 100644 --- a/src/IconFormatH2OutlinedFilled.tsx +++ b/src/IconFormatH2OutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconFormatH2OutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconFormatH2OutlinedFilled as default } +export default IconFormatH2OutlinedFilled diff --git a/src/IconFormatH2Rounded.tsx b/src/IconFormatH2Rounded.tsx index b36708979..a617731ca 100644 --- a/src/IconFormatH2Rounded.tsx +++ b/src/IconFormatH2Rounded.tsx @@ -8,4 +8,4 @@ const IconFormatH2Rounded: React.FC = ({ ...props }) => ( ) -export { IconFormatH2Rounded as default } +export default IconFormatH2Rounded diff --git a/src/IconFormatH2RoundedFilled.tsx b/src/IconFormatH2RoundedFilled.tsx index 5e8d871f6..96cc9bcc0 100644 --- a/src/IconFormatH2RoundedFilled.tsx +++ b/src/IconFormatH2RoundedFilled.tsx @@ -8,4 +8,4 @@ const IconFormatH2RoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconFormatH2RoundedFilled as default } +export default IconFormatH2RoundedFilled diff --git a/src/IconFormatH2Sharp.tsx b/src/IconFormatH2Sharp.tsx index 3017dfd23..bff3fa6c6 100644 --- a/src/IconFormatH2Sharp.tsx +++ b/src/IconFormatH2Sharp.tsx @@ -8,4 +8,4 @@ const IconFormatH2Sharp: React.FC = ({ ...props }) => ( ) -export { IconFormatH2Sharp as default } +export default IconFormatH2Sharp diff --git a/src/IconFormatH2SharpFilled.tsx b/src/IconFormatH2SharpFilled.tsx index a449be72e..ab74b104e 100644 --- a/src/IconFormatH2SharpFilled.tsx +++ b/src/IconFormatH2SharpFilled.tsx @@ -8,4 +8,4 @@ const IconFormatH2SharpFilled: React.FC = ({ ...props }) => ( ) -export { IconFormatH2SharpFilled as default } +export default IconFormatH2SharpFilled diff --git a/src/IconFormatH3Outlined.tsx b/src/IconFormatH3Outlined.tsx index 13d4e8df7..9cbb84839 100644 --- a/src/IconFormatH3Outlined.tsx +++ b/src/IconFormatH3Outlined.tsx @@ -8,4 +8,4 @@ const IconFormatH3Outlined: React.FC = ({ ...props }) => ( ) -export { IconFormatH3Outlined as default } +export default IconFormatH3Outlined diff --git a/src/IconFormatH3OutlinedFilled.tsx b/src/IconFormatH3OutlinedFilled.tsx index 3d1ed1818..eb068c4c0 100644 --- a/src/IconFormatH3OutlinedFilled.tsx +++ b/src/IconFormatH3OutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconFormatH3OutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconFormatH3OutlinedFilled as default } +export default IconFormatH3OutlinedFilled diff --git a/src/IconFormatH3Rounded.tsx b/src/IconFormatH3Rounded.tsx index ff0442b84..045e38a8f 100644 --- a/src/IconFormatH3Rounded.tsx +++ b/src/IconFormatH3Rounded.tsx @@ -8,4 +8,4 @@ const IconFormatH3Rounded: React.FC = ({ ...props }) => ( ) -export { IconFormatH3Rounded as default } +export default IconFormatH3Rounded diff --git a/src/IconFormatH3RoundedFilled.tsx b/src/IconFormatH3RoundedFilled.tsx index f61bf92f9..133added6 100644 --- a/src/IconFormatH3RoundedFilled.tsx +++ b/src/IconFormatH3RoundedFilled.tsx @@ -8,4 +8,4 @@ const IconFormatH3RoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconFormatH3RoundedFilled as default } +export default IconFormatH3RoundedFilled diff --git a/src/IconFormatH3Sharp.tsx b/src/IconFormatH3Sharp.tsx index 36eb8ad24..32b032ee1 100644 --- a/src/IconFormatH3Sharp.tsx +++ b/src/IconFormatH3Sharp.tsx @@ -8,4 +8,4 @@ const IconFormatH3Sharp: React.FC = ({ ...props }) => ( ) -export { IconFormatH3Sharp as default } +export default IconFormatH3Sharp diff --git a/src/IconFormatH3SharpFilled.tsx b/src/IconFormatH3SharpFilled.tsx index 82ae72734..0201b8807 100644 --- a/src/IconFormatH3SharpFilled.tsx +++ b/src/IconFormatH3SharpFilled.tsx @@ -8,4 +8,4 @@ const IconFormatH3SharpFilled: React.FC = ({ ...props }) => ( ) -export { IconFormatH3SharpFilled as default } +export default IconFormatH3SharpFilled diff --git a/src/IconFormatH4Outlined.tsx b/src/IconFormatH4Outlined.tsx index ffb9630d3..6e0d0465d 100644 --- a/src/IconFormatH4Outlined.tsx +++ b/src/IconFormatH4Outlined.tsx @@ -8,4 +8,4 @@ const IconFormatH4Outlined: React.FC = ({ ...props }) => ( ) -export { IconFormatH4Outlined as default } +export default IconFormatH4Outlined diff --git a/src/IconFormatH4OutlinedFilled.tsx b/src/IconFormatH4OutlinedFilled.tsx index 7f3ac8307..ba39a2a4c 100644 --- a/src/IconFormatH4OutlinedFilled.tsx +++ b/src/IconFormatH4OutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconFormatH4OutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconFormatH4OutlinedFilled as default } +export default IconFormatH4OutlinedFilled diff --git a/src/IconFormatH4Rounded.tsx b/src/IconFormatH4Rounded.tsx index a6ee0ca63..e4bc83267 100644 --- a/src/IconFormatH4Rounded.tsx +++ b/src/IconFormatH4Rounded.tsx @@ -8,4 +8,4 @@ const IconFormatH4Rounded: React.FC = ({ ...props }) => ( ) -export { IconFormatH4Rounded as default } +export default IconFormatH4Rounded diff --git a/src/IconFormatH4RoundedFilled.tsx b/src/IconFormatH4RoundedFilled.tsx index 52ec46b0a..2cf988d19 100644 --- a/src/IconFormatH4RoundedFilled.tsx +++ b/src/IconFormatH4RoundedFilled.tsx @@ -8,4 +8,4 @@ const IconFormatH4RoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconFormatH4RoundedFilled as default } +export default IconFormatH4RoundedFilled diff --git a/src/IconFormatH4Sharp.tsx b/src/IconFormatH4Sharp.tsx index 3ba67bf54..e1b6b61cf 100644 --- a/src/IconFormatH4Sharp.tsx +++ b/src/IconFormatH4Sharp.tsx @@ -8,4 +8,4 @@ const IconFormatH4Sharp: React.FC = ({ ...props }) => ( ) -export { IconFormatH4Sharp as default } +export default IconFormatH4Sharp diff --git a/src/IconFormatH4SharpFilled.tsx b/src/IconFormatH4SharpFilled.tsx index fa4ff9816..9fb5c06c3 100644 --- a/src/IconFormatH4SharpFilled.tsx +++ b/src/IconFormatH4SharpFilled.tsx @@ -8,4 +8,4 @@ const IconFormatH4SharpFilled: React.FC = ({ ...props }) => ( ) -export { IconFormatH4SharpFilled as default } +export default IconFormatH4SharpFilled diff --git a/src/IconFormatH5Outlined.tsx b/src/IconFormatH5Outlined.tsx index 5cd8a49d0..01ea83930 100644 --- a/src/IconFormatH5Outlined.tsx +++ b/src/IconFormatH5Outlined.tsx @@ -8,4 +8,4 @@ const IconFormatH5Outlined: React.FC = ({ ...props }) => ( ) -export { IconFormatH5Outlined as default } +export default IconFormatH5Outlined diff --git a/src/IconFormatH5OutlinedFilled.tsx b/src/IconFormatH5OutlinedFilled.tsx index 0c80d5a12..bea002393 100644 --- a/src/IconFormatH5OutlinedFilled.tsx +++ b/src/IconFormatH5OutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconFormatH5OutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconFormatH5OutlinedFilled as default } +export default IconFormatH5OutlinedFilled diff --git a/src/IconFormatH5Rounded.tsx b/src/IconFormatH5Rounded.tsx index fe897d096..21ad5bfc8 100644 --- a/src/IconFormatH5Rounded.tsx +++ b/src/IconFormatH5Rounded.tsx @@ -8,4 +8,4 @@ const IconFormatH5Rounded: React.FC = ({ ...props }) => ( ) -export { IconFormatH5Rounded as default } +export default IconFormatH5Rounded diff --git a/src/IconFormatH5RoundedFilled.tsx b/src/IconFormatH5RoundedFilled.tsx index d3362500c..54dc4af79 100644 --- a/src/IconFormatH5RoundedFilled.tsx +++ b/src/IconFormatH5RoundedFilled.tsx @@ -8,4 +8,4 @@ const IconFormatH5RoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconFormatH5RoundedFilled as default } +export default IconFormatH5RoundedFilled diff --git a/src/IconFormatH5Sharp.tsx b/src/IconFormatH5Sharp.tsx index ab658b9d8..a43b1b66a 100644 --- a/src/IconFormatH5Sharp.tsx +++ b/src/IconFormatH5Sharp.tsx @@ -8,4 +8,4 @@ const IconFormatH5Sharp: React.FC = ({ ...props }) => ( ) -export { IconFormatH5Sharp as default } +export default IconFormatH5Sharp diff --git a/src/IconFormatH5SharpFilled.tsx b/src/IconFormatH5SharpFilled.tsx index b2a48bc47..2a0d26367 100644 --- a/src/IconFormatH5SharpFilled.tsx +++ b/src/IconFormatH5SharpFilled.tsx @@ -8,4 +8,4 @@ const IconFormatH5SharpFilled: React.FC = ({ ...props }) => ( ) -export { IconFormatH5SharpFilled as default } +export default IconFormatH5SharpFilled diff --git a/src/IconFormatH6Outlined.tsx b/src/IconFormatH6Outlined.tsx index 029735ba6..4330c563f 100644 --- a/src/IconFormatH6Outlined.tsx +++ b/src/IconFormatH6Outlined.tsx @@ -8,4 +8,4 @@ const IconFormatH6Outlined: React.FC = ({ ...props }) => ( ) -export { IconFormatH6Outlined as default } +export default IconFormatH6Outlined diff --git a/src/IconFormatH6OutlinedFilled.tsx b/src/IconFormatH6OutlinedFilled.tsx index 06cd81672..1ebe4ac06 100644 --- a/src/IconFormatH6OutlinedFilled.tsx +++ b/src/IconFormatH6OutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconFormatH6OutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconFormatH6OutlinedFilled as default } +export default IconFormatH6OutlinedFilled diff --git a/src/IconFormatH6Rounded.tsx b/src/IconFormatH6Rounded.tsx index 7302e5820..6fd92d59e 100644 --- a/src/IconFormatH6Rounded.tsx +++ b/src/IconFormatH6Rounded.tsx @@ -8,4 +8,4 @@ const IconFormatH6Rounded: React.FC = ({ ...props }) => ( ) -export { IconFormatH6Rounded as default } +export default IconFormatH6Rounded diff --git a/src/IconFormatH6RoundedFilled.tsx b/src/IconFormatH6RoundedFilled.tsx index 0858c895b..35c638cc4 100644 --- a/src/IconFormatH6RoundedFilled.tsx +++ b/src/IconFormatH6RoundedFilled.tsx @@ -8,4 +8,4 @@ const IconFormatH6RoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconFormatH6RoundedFilled as default } +export default IconFormatH6RoundedFilled diff --git a/src/IconFormatH6Sharp.tsx b/src/IconFormatH6Sharp.tsx index 836a5e327..ae1b3cf92 100644 --- a/src/IconFormatH6Sharp.tsx +++ b/src/IconFormatH6Sharp.tsx @@ -8,4 +8,4 @@ const IconFormatH6Sharp: React.FC = ({ ...props }) => ( ) -export { IconFormatH6Sharp as default } +export default IconFormatH6Sharp diff --git a/src/IconFormatH6SharpFilled.tsx b/src/IconFormatH6SharpFilled.tsx index fcc6a5fb3..6a3e60a44 100644 --- a/src/IconFormatH6SharpFilled.tsx +++ b/src/IconFormatH6SharpFilled.tsx @@ -8,4 +8,4 @@ const IconFormatH6SharpFilled: React.FC = ({ ...props }) => ( ) -export { IconFormatH6SharpFilled as default } +export default IconFormatH6SharpFilled diff --git a/src/IconFormatImageLeftOutlined.tsx b/src/IconFormatImageLeftOutlined.tsx index 430e7830b..fc5e47a79 100644 --- a/src/IconFormatImageLeftOutlined.tsx +++ b/src/IconFormatImageLeftOutlined.tsx @@ -8,4 +8,4 @@ const IconFormatImageLeftOutlined: React.FC = ({ ...props }) => ( ) -export { IconFormatImageLeftOutlined as default } +export default IconFormatImageLeftOutlined diff --git a/src/IconFormatImageLeftOutlinedFilled.tsx b/src/IconFormatImageLeftOutlinedFilled.tsx index 87f25614c..aaba47a57 100644 --- a/src/IconFormatImageLeftOutlinedFilled.tsx +++ b/src/IconFormatImageLeftOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconFormatImageLeftOutlinedFilled: React.FC = ({ ) -export { IconFormatImageLeftOutlinedFilled as default } +export default IconFormatImageLeftOutlinedFilled diff --git a/src/IconFormatImageLeftRounded.tsx b/src/IconFormatImageLeftRounded.tsx index dc3cc3383..219310bed 100644 --- a/src/IconFormatImageLeftRounded.tsx +++ b/src/IconFormatImageLeftRounded.tsx @@ -8,4 +8,4 @@ const IconFormatImageLeftRounded: React.FC = ({ ...props }) => ( ) -export { IconFormatImageLeftRounded as default } +export default IconFormatImageLeftRounded diff --git a/src/IconFormatImageLeftRoundedFilled.tsx b/src/IconFormatImageLeftRoundedFilled.tsx index 5eb08cbc8..450ccab7f 100644 --- a/src/IconFormatImageLeftRoundedFilled.tsx +++ b/src/IconFormatImageLeftRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconFormatImageLeftRoundedFilled: React.FC = ({ ) -export { IconFormatImageLeftRoundedFilled as default } +export default IconFormatImageLeftRoundedFilled diff --git a/src/IconFormatImageLeftSharp.tsx b/src/IconFormatImageLeftSharp.tsx index 114440392..d820f3b11 100644 --- a/src/IconFormatImageLeftSharp.tsx +++ b/src/IconFormatImageLeftSharp.tsx @@ -8,4 +8,4 @@ const IconFormatImageLeftSharp: React.FC = ({ ...props }) => ( ) -export { IconFormatImageLeftSharp as default } +export default IconFormatImageLeftSharp diff --git a/src/IconFormatImageLeftSharpFilled.tsx b/src/IconFormatImageLeftSharpFilled.tsx index 1279a0ea9..b3dccb546 100644 --- a/src/IconFormatImageLeftSharpFilled.tsx +++ b/src/IconFormatImageLeftSharpFilled.tsx @@ -8,4 +8,4 @@ const IconFormatImageLeftSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconFormatImageLeftSharpFilled as default } +export default IconFormatImageLeftSharpFilled diff --git a/src/IconFormatImageRightOutlined.tsx b/src/IconFormatImageRightOutlined.tsx index b0a47d322..9fafcad27 100644 --- a/src/IconFormatImageRightOutlined.tsx +++ b/src/IconFormatImageRightOutlined.tsx @@ -8,4 +8,4 @@ const IconFormatImageRightOutlined: React.FC = ({ ...props }) => ( ) -export { IconFormatImageRightOutlined as default } +export default IconFormatImageRightOutlined diff --git a/src/IconFormatImageRightOutlinedFilled.tsx b/src/IconFormatImageRightOutlinedFilled.tsx index 104a871e5..1fed66b20 100644 --- a/src/IconFormatImageRightOutlinedFilled.tsx +++ b/src/IconFormatImageRightOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconFormatImageRightOutlinedFilled: React.FC = ({ ) -export { IconFormatImageRightOutlinedFilled as default } +export default IconFormatImageRightOutlinedFilled diff --git a/src/IconFormatImageRightRounded.tsx b/src/IconFormatImageRightRounded.tsx index 3c27e05a0..60cf9e0c5 100644 --- a/src/IconFormatImageRightRounded.tsx +++ b/src/IconFormatImageRightRounded.tsx @@ -8,4 +8,4 @@ const IconFormatImageRightRounded: React.FC = ({ ...props }) => ( ) -export { IconFormatImageRightRounded as default } +export default IconFormatImageRightRounded diff --git a/src/IconFormatImageRightRoundedFilled.tsx b/src/IconFormatImageRightRoundedFilled.tsx index 37a4ad8d4..24d304994 100644 --- a/src/IconFormatImageRightRoundedFilled.tsx +++ b/src/IconFormatImageRightRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconFormatImageRightRoundedFilled: React.FC = ({ ) -export { IconFormatImageRightRoundedFilled as default } +export default IconFormatImageRightRoundedFilled diff --git a/src/IconFormatImageRightSharp.tsx b/src/IconFormatImageRightSharp.tsx index 173ede16d..bf156529b 100644 --- a/src/IconFormatImageRightSharp.tsx +++ b/src/IconFormatImageRightSharp.tsx @@ -8,4 +8,4 @@ const IconFormatImageRightSharp: React.FC = ({ ...props }) => ( ) -export { IconFormatImageRightSharp as default } +export default IconFormatImageRightSharp diff --git a/src/IconFormatImageRightSharpFilled.tsx b/src/IconFormatImageRightSharpFilled.tsx index 2958f8e9d..b128ea412 100644 --- a/src/IconFormatImageRightSharpFilled.tsx +++ b/src/IconFormatImageRightSharpFilled.tsx @@ -8,4 +8,4 @@ const IconFormatImageRightSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconFormatImageRightSharpFilled as default } +export default IconFormatImageRightSharpFilled diff --git a/src/IconFormatIndentDecreaseOutlined.tsx b/src/IconFormatIndentDecreaseOutlined.tsx index 375eeb32b..89a1bc306 100644 --- a/src/IconFormatIndentDecreaseOutlined.tsx +++ b/src/IconFormatIndentDecreaseOutlined.tsx @@ -10,4 +10,4 @@ const IconFormatIndentDecreaseOutlined: React.FC = ({ ) -export { IconFormatIndentDecreaseOutlined as default } +export default IconFormatIndentDecreaseOutlined diff --git a/src/IconFormatIndentDecreaseOutlinedFilled.tsx b/src/IconFormatIndentDecreaseOutlinedFilled.tsx index 956eeffd7..72243d23d 100644 --- a/src/IconFormatIndentDecreaseOutlinedFilled.tsx +++ b/src/IconFormatIndentDecreaseOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconFormatIndentDecreaseOutlinedFilled: React.FC = ({ ) -export { IconFormatIndentDecreaseOutlinedFilled as default } +export default IconFormatIndentDecreaseOutlinedFilled diff --git a/src/IconFormatIndentDecreaseRounded.tsx b/src/IconFormatIndentDecreaseRounded.tsx index 050a6c1fe..a9bb4004a 100644 --- a/src/IconFormatIndentDecreaseRounded.tsx +++ b/src/IconFormatIndentDecreaseRounded.tsx @@ -8,4 +8,4 @@ const IconFormatIndentDecreaseRounded: React.FC = ({ ...props }) => ( ) -export { IconFormatIndentDecreaseRounded as default } +export default IconFormatIndentDecreaseRounded diff --git a/src/IconFormatIndentDecreaseRoundedFilled.tsx b/src/IconFormatIndentDecreaseRoundedFilled.tsx index 6df462811..7bb11d585 100644 --- a/src/IconFormatIndentDecreaseRoundedFilled.tsx +++ b/src/IconFormatIndentDecreaseRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconFormatIndentDecreaseRoundedFilled: React.FC = ({ ) -export { IconFormatIndentDecreaseRoundedFilled as default } +export default IconFormatIndentDecreaseRoundedFilled diff --git a/src/IconFormatIndentDecreaseSharp.tsx b/src/IconFormatIndentDecreaseSharp.tsx index 0590c84f7..88e3752b7 100644 --- a/src/IconFormatIndentDecreaseSharp.tsx +++ b/src/IconFormatIndentDecreaseSharp.tsx @@ -8,4 +8,4 @@ const IconFormatIndentDecreaseSharp: React.FC = ({ ...props }) => ( ) -export { IconFormatIndentDecreaseSharp as default } +export default IconFormatIndentDecreaseSharp diff --git a/src/IconFormatIndentDecreaseSharpFilled.tsx b/src/IconFormatIndentDecreaseSharpFilled.tsx index 66fdbf46e..a29fc9465 100644 --- a/src/IconFormatIndentDecreaseSharpFilled.tsx +++ b/src/IconFormatIndentDecreaseSharpFilled.tsx @@ -10,4 +10,4 @@ const IconFormatIndentDecreaseSharpFilled: React.FC = ({ ) -export { IconFormatIndentDecreaseSharpFilled as default } +export default IconFormatIndentDecreaseSharpFilled diff --git a/src/IconFormatIndentIncreaseOutlined.tsx b/src/IconFormatIndentIncreaseOutlined.tsx index 4bdcb8e91..e8c945dac 100644 --- a/src/IconFormatIndentIncreaseOutlined.tsx +++ b/src/IconFormatIndentIncreaseOutlined.tsx @@ -10,4 +10,4 @@ const IconFormatIndentIncreaseOutlined: React.FC = ({ ) -export { IconFormatIndentIncreaseOutlined as default } +export default IconFormatIndentIncreaseOutlined diff --git a/src/IconFormatIndentIncreaseOutlinedFilled.tsx b/src/IconFormatIndentIncreaseOutlinedFilled.tsx index a58f76095..5148a6a91 100644 --- a/src/IconFormatIndentIncreaseOutlinedFilled.tsx +++ b/src/IconFormatIndentIncreaseOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconFormatIndentIncreaseOutlinedFilled: React.FC = ({ ) -export { IconFormatIndentIncreaseOutlinedFilled as default } +export default IconFormatIndentIncreaseOutlinedFilled diff --git a/src/IconFormatIndentIncreaseRounded.tsx b/src/IconFormatIndentIncreaseRounded.tsx index e859c59dd..7c9b51ac6 100644 --- a/src/IconFormatIndentIncreaseRounded.tsx +++ b/src/IconFormatIndentIncreaseRounded.tsx @@ -8,4 +8,4 @@ const IconFormatIndentIncreaseRounded: React.FC = ({ ...props }) => ( ) -export { IconFormatIndentIncreaseRounded as default } +export default IconFormatIndentIncreaseRounded diff --git a/src/IconFormatIndentIncreaseRoundedFilled.tsx b/src/IconFormatIndentIncreaseRoundedFilled.tsx index 47dab7cd9..718e96c32 100644 --- a/src/IconFormatIndentIncreaseRoundedFilled.tsx +++ b/src/IconFormatIndentIncreaseRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconFormatIndentIncreaseRoundedFilled: React.FC = ({ ) -export { IconFormatIndentIncreaseRoundedFilled as default } +export default IconFormatIndentIncreaseRoundedFilled diff --git a/src/IconFormatIndentIncreaseSharp.tsx b/src/IconFormatIndentIncreaseSharp.tsx index 69f78858a..40a355486 100644 --- a/src/IconFormatIndentIncreaseSharp.tsx +++ b/src/IconFormatIndentIncreaseSharp.tsx @@ -8,4 +8,4 @@ const IconFormatIndentIncreaseSharp: React.FC = ({ ...props }) => ( ) -export { IconFormatIndentIncreaseSharp as default } +export default IconFormatIndentIncreaseSharp diff --git a/src/IconFormatIndentIncreaseSharpFilled.tsx b/src/IconFormatIndentIncreaseSharpFilled.tsx index cd7ffc20f..610796df2 100644 --- a/src/IconFormatIndentIncreaseSharpFilled.tsx +++ b/src/IconFormatIndentIncreaseSharpFilled.tsx @@ -10,4 +10,4 @@ const IconFormatIndentIncreaseSharpFilled: React.FC = ({ ) -export { IconFormatIndentIncreaseSharpFilled as default } +export default IconFormatIndentIncreaseSharpFilled diff --git a/src/IconFormatInkHighlighterOutlined.tsx b/src/IconFormatInkHighlighterOutlined.tsx index af9896bbe..5e90d7398 100644 --- a/src/IconFormatInkHighlighterOutlined.tsx +++ b/src/IconFormatInkHighlighterOutlined.tsx @@ -10,4 +10,4 @@ const IconFormatInkHighlighterOutlined: React.FC = ({ ) -export { IconFormatInkHighlighterOutlined as default } +export default IconFormatInkHighlighterOutlined diff --git a/src/IconFormatInkHighlighterOutlinedFilled.tsx b/src/IconFormatInkHighlighterOutlinedFilled.tsx index 586274184..39eaf2fdd 100644 --- a/src/IconFormatInkHighlighterOutlinedFilled.tsx +++ b/src/IconFormatInkHighlighterOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconFormatInkHighlighterOutlinedFilled: React.FC = ({ ) -export { IconFormatInkHighlighterOutlinedFilled as default } +export default IconFormatInkHighlighterOutlinedFilled diff --git a/src/IconFormatInkHighlighterRounded.tsx b/src/IconFormatInkHighlighterRounded.tsx index c9f78279f..f847de0c3 100644 --- a/src/IconFormatInkHighlighterRounded.tsx +++ b/src/IconFormatInkHighlighterRounded.tsx @@ -8,4 +8,4 @@ const IconFormatInkHighlighterRounded: React.FC = ({ ...props }) => ( ) -export { IconFormatInkHighlighterRounded as default } +export default IconFormatInkHighlighterRounded diff --git a/src/IconFormatInkHighlighterRoundedFilled.tsx b/src/IconFormatInkHighlighterRoundedFilled.tsx index d096c845a..b694dbaee 100644 --- a/src/IconFormatInkHighlighterRoundedFilled.tsx +++ b/src/IconFormatInkHighlighterRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconFormatInkHighlighterRoundedFilled: React.FC = ({ ) -export { IconFormatInkHighlighterRoundedFilled as default } +export default IconFormatInkHighlighterRoundedFilled diff --git a/src/IconFormatInkHighlighterSharp.tsx b/src/IconFormatInkHighlighterSharp.tsx index 1559c80ad..707362929 100644 --- a/src/IconFormatInkHighlighterSharp.tsx +++ b/src/IconFormatInkHighlighterSharp.tsx @@ -8,4 +8,4 @@ const IconFormatInkHighlighterSharp: React.FC = ({ ...props }) => ( ) -export { IconFormatInkHighlighterSharp as default } +export default IconFormatInkHighlighterSharp diff --git a/src/IconFormatInkHighlighterSharpFilled.tsx b/src/IconFormatInkHighlighterSharpFilled.tsx index 645560c39..b98ce9c7f 100644 --- a/src/IconFormatInkHighlighterSharpFilled.tsx +++ b/src/IconFormatInkHighlighterSharpFilled.tsx @@ -10,4 +10,4 @@ const IconFormatInkHighlighterSharpFilled: React.FC = ({ ) -export { IconFormatInkHighlighterSharpFilled as default } +export default IconFormatInkHighlighterSharpFilled diff --git a/src/IconFormatItalicOutlined.tsx b/src/IconFormatItalicOutlined.tsx index 3280c3e61..a59905de0 100644 --- a/src/IconFormatItalicOutlined.tsx +++ b/src/IconFormatItalicOutlined.tsx @@ -8,4 +8,4 @@ const IconFormatItalicOutlined: React.FC = ({ ...props }) => ( ) -export { IconFormatItalicOutlined as default } +export default IconFormatItalicOutlined diff --git a/src/IconFormatItalicOutlinedFilled.tsx b/src/IconFormatItalicOutlinedFilled.tsx index 9f2a98857..b80ad2a3b 100644 --- a/src/IconFormatItalicOutlinedFilled.tsx +++ b/src/IconFormatItalicOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconFormatItalicOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconFormatItalicOutlinedFilled as default } +export default IconFormatItalicOutlinedFilled diff --git a/src/IconFormatItalicRounded.tsx b/src/IconFormatItalicRounded.tsx index b5f27df5c..946f41d6f 100644 --- a/src/IconFormatItalicRounded.tsx +++ b/src/IconFormatItalicRounded.tsx @@ -8,4 +8,4 @@ const IconFormatItalicRounded: React.FC = ({ ...props }) => ( ) -export { IconFormatItalicRounded as default } +export default IconFormatItalicRounded diff --git a/src/IconFormatItalicRoundedFilled.tsx b/src/IconFormatItalicRoundedFilled.tsx index 5e7352c7f..816d077dd 100644 --- a/src/IconFormatItalicRoundedFilled.tsx +++ b/src/IconFormatItalicRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconFormatItalicRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconFormatItalicRoundedFilled as default } +export default IconFormatItalicRoundedFilled diff --git a/src/IconFormatItalicSharp.tsx b/src/IconFormatItalicSharp.tsx index 3d6c2f403..c5b888c2c 100644 --- a/src/IconFormatItalicSharp.tsx +++ b/src/IconFormatItalicSharp.tsx @@ -8,4 +8,4 @@ const IconFormatItalicSharp: React.FC = ({ ...props }) => ( ) -export { IconFormatItalicSharp as default } +export default IconFormatItalicSharp diff --git a/src/IconFormatItalicSharpFilled.tsx b/src/IconFormatItalicSharpFilled.tsx index 8cebe0c92..8108ad6a3 100644 --- a/src/IconFormatItalicSharpFilled.tsx +++ b/src/IconFormatItalicSharpFilled.tsx @@ -8,4 +8,4 @@ const IconFormatItalicSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconFormatItalicSharpFilled as default } +export default IconFormatItalicSharpFilled diff --git a/src/IconFormatLetterSpacing2Outlined.tsx b/src/IconFormatLetterSpacing2Outlined.tsx index 1d83050e8..4ffc4946d 100644 --- a/src/IconFormatLetterSpacing2Outlined.tsx +++ b/src/IconFormatLetterSpacing2Outlined.tsx @@ -10,4 +10,4 @@ const IconFormatLetterSpacing2Outlined: React.FC = ({ ) -export { IconFormatLetterSpacing2Outlined as default } +export default IconFormatLetterSpacing2Outlined diff --git a/src/IconFormatLetterSpacing2OutlinedFilled.tsx b/src/IconFormatLetterSpacing2OutlinedFilled.tsx index 2f4d1babb..0781bb855 100644 --- a/src/IconFormatLetterSpacing2OutlinedFilled.tsx +++ b/src/IconFormatLetterSpacing2OutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconFormatLetterSpacing2OutlinedFilled: React.FC = ({ ) -export { IconFormatLetterSpacing2OutlinedFilled as default } +export default IconFormatLetterSpacing2OutlinedFilled diff --git a/src/IconFormatLetterSpacing2Rounded.tsx b/src/IconFormatLetterSpacing2Rounded.tsx index 96d85a67c..8a8eced5a 100644 --- a/src/IconFormatLetterSpacing2Rounded.tsx +++ b/src/IconFormatLetterSpacing2Rounded.tsx @@ -8,4 +8,4 @@ const IconFormatLetterSpacing2Rounded: React.FC = ({ ...props }) => ( ) -export { IconFormatLetterSpacing2Rounded as default } +export default IconFormatLetterSpacing2Rounded diff --git a/src/IconFormatLetterSpacing2RoundedFilled.tsx b/src/IconFormatLetterSpacing2RoundedFilled.tsx index 2c142a657..8a85c38df 100644 --- a/src/IconFormatLetterSpacing2RoundedFilled.tsx +++ b/src/IconFormatLetterSpacing2RoundedFilled.tsx @@ -10,4 +10,4 @@ const IconFormatLetterSpacing2RoundedFilled: React.FC = ({ ) -export { IconFormatLetterSpacing2RoundedFilled as default } +export default IconFormatLetterSpacing2RoundedFilled diff --git a/src/IconFormatLetterSpacing2Sharp.tsx b/src/IconFormatLetterSpacing2Sharp.tsx index 69932affa..a2bc901f8 100644 --- a/src/IconFormatLetterSpacing2Sharp.tsx +++ b/src/IconFormatLetterSpacing2Sharp.tsx @@ -8,4 +8,4 @@ const IconFormatLetterSpacing2Sharp: React.FC = ({ ...props }) => ( ) -export { IconFormatLetterSpacing2Sharp as default } +export default IconFormatLetterSpacing2Sharp diff --git a/src/IconFormatLetterSpacing2SharpFilled.tsx b/src/IconFormatLetterSpacing2SharpFilled.tsx index 8f1259352..69b9a0cf7 100644 --- a/src/IconFormatLetterSpacing2SharpFilled.tsx +++ b/src/IconFormatLetterSpacing2SharpFilled.tsx @@ -10,4 +10,4 @@ const IconFormatLetterSpacing2SharpFilled: React.FC = ({ ) -export { IconFormatLetterSpacing2SharpFilled as default } +export default IconFormatLetterSpacing2SharpFilled diff --git a/src/IconFormatLetterSpacingOutlined.tsx b/src/IconFormatLetterSpacingOutlined.tsx index 336bf3fe9..8cd3640fe 100644 --- a/src/IconFormatLetterSpacingOutlined.tsx +++ b/src/IconFormatLetterSpacingOutlined.tsx @@ -8,4 +8,4 @@ const IconFormatLetterSpacingOutlined: React.FC = ({ ...props }) => ( ) -export { IconFormatLetterSpacingOutlined as default } +export default IconFormatLetterSpacingOutlined diff --git a/src/IconFormatLetterSpacingOutlinedFilled.tsx b/src/IconFormatLetterSpacingOutlinedFilled.tsx index b2be459a7..e52d4ef5e 100644 --- a/src/IconFormatLetterSpacingOutlinedFilled.tsx +++ b/src/IconFormatLetterSpacingOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconFormatLetterSpacingOutlinedFilled: React.FC = ({ ) -export { IconFormatLetterSpacingOutlinedFilled as default } +export default IconFormatLetterSpacingOutlinedFilled diff --git a/src/IconFormatLetterSpacingRounded.tsx b/src/IconFormatLetterSpacingRounded.tsx index 74d248de4..c7f4cd755 100644 --- a/src/IconFormatLetterSpacingRounded.tsx +++ b/src/IconFormatLetterSpacingRounded.tsx @@ -8,4 +8,4 @@ const IconFormatLetterSpacingRounded: React.FC = ({ ...props }) => ( ) -export { IconFormatLetterSpacingRounded as default } +export default IconFormatLetterSpacingRounded diff --git a/src/IconFormatLetterSpacingRoundedFilled.tsx b/src/IconFormatLetterSpacingRoundedFilled.tsx index cd07bd21d..448f14872 100644 --- a/src/IconFormatLetterSpacingRoundedFilled.tsx +++ b/src/IconFormatLetterSpacingRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconFormatLetterSpacingRoundedFilled: React.FC = ({ ) -export { IconFormatLetterSpacingRoundedFilled as default } +export default IconFormatLetterSpacingRoundedFilled diff --git a/src/IconFormatLetterSpacingSharp.tsx b/src/IconFormatLetterSpacingSharp.tsx index 7392efaf4..cc7a262bb 100644 --- a/src/IconFormatLetterSpacingSharp.tsx +++ b/src/IconFormatLetterSpacingSharp.tsx @@ -8,4 +8,4 @@ const IconFormatLetterSpacingSharp: React.FC = ({ ...props }) => ( ) -export { IconFormatLetterSpacingSharp as default } +export default IconFormatLetterSpacingSharp diff --git a/src/IconFormatLetterSpacingSharpFilled.tsx b/src/IconFormatLetterSpacingSharpFilled.tsx index e1ee3e0b2..0b0ce4fae 100644 --- a/src/IconFormatLetterSpacingSharpFilled.tsx +++ b/src/IconFormatLetterSpacingSharpFilled.tsx @@ -10,4 +10,4 @@ const IconFormatLetterSpacingSharpFilled: React.FC = ({ ) -export { IconFormatLetterSpacingSharpFilled as default } +export default IconFormatLetterSpacingSharpFilled diff --git a/src/IconFormatLetterSpacingStandardOutlined.tsx b/src/IconFormatLetterSpacingStandardOutlined.tsx index 56ec29276..dd6cc1abe 100644 --- a/src/IconFormatLetterSpacingStandardOutlined.tsx +++ b/src/IconFormatLetterSpacingStandardOutlined.tsx @@ -10,4 +10,4 @@ const IconFormatLetterSpacingStandardOutlined: React.FC = ({ ) -export { IconFormatLetterSpacingStandardOutlined as default } +export default IconFormatLetterSpacingStandardOutlined diff --git a/src/IconFormatLetterSpacingStandardOutlinedFilled.tsx b/src/IconFormatLetterSpacingStandardOutlinedFilled.tsx index 88f334112..d4816b8eb 100644 --- a/src/IconFormatLetterSpacingStandardOutlinedFilled.tsx +++ b/src/IconFormatLetterSpacingStandardOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconFormatLetterSpacingStandardOutlinedFilled: React.FC = ({ ) -export { IconFormatLetterSpacingStandardOutlinedFilled as default } +export default IconFormatLetterSpacingStandardOutlinedFilled diff --git a/src/IconFormatLetterSpacingStandardRounded.tsx b/src/IconFormatLetterSpacingStandardRounded.tsx index f8ea7a844..86710fafb 100644 --- a/src/IconFormatLetterSpacingStandardRounded.tsx +++ b/src/IconFormatLetterSpacingStandardRounded.tsx @@ -10,4 +10,4 @@ const IconFormatLetterSpacingStandardRounded: React.FC = ({ ) -export { IconFormatLetterSpacingStandardRounded as default } +export default IconFormatLetterSpacingStandardRounded diff --git a/src/IconFormatLetterSpacingStandardRoundedFilled.tsx b/src/IconFormatLetterSpacingStandardRoundedFilled.tsx index 76d8adb84..2b8e739c7 100644 --- a/src/IconFormatLetterSpacingStandardRoundedFilled.tsx +++ b/src/IconFormatLetterSpacingStandardRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconFormatLetterSpacingStandardRoundedFilled: React.FC = ({ ) -export { IconFormatLetterSpacingStandardRoundedFilled as default } +export default IconFormatLetterSpacingStandardRoundedFilled diff --git a/src/IconFormatLetterSpacingStandardSharp.tsx b/src/IconFormatLetterSpacingStandardSharp.tsx index a94d03d9c..46c8b88d4 100644 --- a/src/IconFormatLetterSpacingStandardSharp.tsx +++ b/src/IconFormatLetterSpacingStandardSharp.tsx @@ -10,4 +10,4 @@ const IconFormatLetterSpacingStandardSharp: React.FC = ({ ) -export { IconFormatLetterSpacingStandardSharp as default } +export default IconFormatLetterSpacingStandardSharp diff --git a/src/IconFormatLetterSpacingStandardSharpFilled.tsx b/src/IconFormatLetterSpacingStandardSharpFilled.tsx index c5cd57f3c..595caf923 100644 --- a/src/IconFormatLetterSpacingStandardSharpFilled.tsx +++ b/src/IconFormatLetterSpacingStandardSharpFilled.tsx @@ -10,4 +10,4 @@ const IconFormatLetterSpacingStandardSharpFilled: React.FC = ({ ) -export { IconFormatLetterSpacingStandardSharpFilled as default } +export default IconFormatLetterSpacingStandardSharpFilled diff --git a/src/IconFormatLetterSpacingWideOutlined.tsx b/src/IconFormatLetterSpacingWideOutlined.tsx index 3c500e6d8..dc0dca630 100644 --- a/src/IconFormatLetterSpacingWideOutlined.tsx +++ b/src/IconFormatLetterSpacingWideOutlined.tsx @@ -10,4 +10,4 @@ const IconFormatLetterSpacingWideOutlined: React.FC = ({ ) -export { IconFormatLetterSpacingWideOutlined as default } +export default IconFormatLetterSpacingWideOutlined diff --git a/src/IconFormatLetterSpacingWideOutlinedFilled.tsx b/src/IconFormatLetterSpacingWideOutlinedFilled.tsx index 86a9725ce..d6f650ce3 100644 --- a/src/IconFormatLetterSpacingWideOutlinedFilled.tsx +++ b/src/IconFormatLetterSpacingWideOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconFormatLetterSpacingWideOutlinedFilled: React.FC = ({ ) -export { IconFormatLetterSpacingWideOutlinedFilled as default } +export default IconFormatLetterSpacingWideOutlinedFilled diff --git a/src/IconFormatLetterSpacingWideRounded.tsx b/src/IconFormatLetterSpacingWideRounded.tsx index 7a7e84b66..0d8628b80 100644 --- a/src/IconFormatLetterSpacingWideRounded.tsx +++ b/src/IconFormatLetterSpacingWideRounded.tsx @@ -10,4 +10,4 @@ const IconFormatLetterSpacingWideRounded: React.FC = ({ ) -export { IconFormatLetterSpacingWideRounded as default } +export default IconFormatLetterSpacingWideRounded diff --git a/src/IconFormatLetterSpacingWideRoundedFilled.tsx b/src/IconFormatLetterSpacingWideRoundedFilled.tsx index b2920fcae..21f597426 100644 --- a/src/IconFormatLetterSpacingWideRoundedFilled.tsx +++ b/src/IconFormatLetterSpacingWideRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconFormatLetterSpacingWideRoundedFilled: React.FC = ({ ) -export { IconFormatLetterSpacingWideRoundedFilled as default } +export default IconFormatLetterSpacingWideRoundedFilled diff --git a/src/IconFormatLetterSpacingWideSharp.tsx b/src/IconFormatLetterSpacingWideSharp.tsx index 438b9abaf..d716012b5 100644 --- a/src/IconFormatLetterSpacingWideSharp.tsx +++ b/src/IconFormatLetterSpacingWideSharp.tsx @@ -10,4 +10,4 @@ const IconFormatLetterSpacingWideSharp: React.FC = ({ ) -export { IconFormatLetterSpacingWideSharp as default } +export default IconFormatLetterSpacingWideSharp diff --git a/src/IconFormatLetterSpacingWideSharpFilled.tsx b/src/IconFormatLetterSpacingWideSharpFilled.tsx index 3e6505ccd..e3cc607f1 100644 --- a/src/IconFormatLetterSpacingWideSharpFilled.tsx +++ b/src/IconFormatLetterSpacingWideSharpFilled.tsx @@ -10,4 +10,4 @@ const IconFormatLetterSpacingWideSharpFilled: React.FC = ({ ) -export { IconFormatLetterSpacingWideSharpFilled as default } +export default IconFormatLetterSpacingWideSharpFilled diff --git a/src/IconFormatLetterSpacingWiderOutlined.tsx b/src/IconFormatLetterSpacingWiderOutlined.tsx index 9f9ece04c..a14e9951a 100644 --- a/src/IconFormatLetterSpacingWiderOutlined.tsx +++ b/src/IconFormatLetterSpacingWiderOutlined.tsx @@ -10,4 +10,4 @@ const IconFormatLetterSpacingWiderOutlined: React.FC = ({ ) -export { IconFormatLetterSpacingWiderOutlined as default } +export default IconFormatLetterSpacingWiderOutlined diff --git a/src/IconFormatLetterSpacingWiderOutlinedFilled.tsx b/src/IconFormatLetterSpacingWiderOutlinedFilled.tsx index d1533a9ee..f1901731e 100644 --- a/src/IconFormatLetterSpacingWiderOutlinedFilled.tsx +++ b/src/IconFormatLetterSpacingWiderOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconFormatLetterSpacingWiderOutlinedFilled: React.FC = ({ ) -export { IconFormatLetterSpacingWiderOutlinedFilled as default } +export default IconFormatLetterSpacingWiderOutlinedFilled diff --git a/src/IconFormatLetterSpacingWiderRounded.tsx b/src/IconFormatLetterSpacingWiderRounded.tsx index f556d2b0c..ccd1afec9 100644 --- a/src/IconFormatLetterSpacingWiderRounded.tsx +++ b/src/IconFormatLetterSpacingWiderRounded.tsx @@ -10,4 +10,4 @@ const IconFormatLetterSpacingWiderRounded: React.FC = ({ ) -export { IconFormatLetterSpacingWiderRounded as default } +export default IconFormatLetterSpacingWiderRounded diff --git a/src/IconFormatLetterSpacingWiderRoundedFilled.tsx b/src/IconFormatLetterSpacingWiderRoundedFilled.tsx index bb628decb..26b1fa80e 100644 --- a/src/IconFormatLetterSpacingWiderRoundedFilled.tsx +++ b/src/IconFormatLetterSpacingWiderRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconFormatLetterSpacingWiderRoundedFilled: React.FC = ({ ) -export { IconFormatLetterSpacingWiderRoundedFilled as default } +export default IconFormatLetterSpacingWiderRoundedFilled diff --git a/src/IconFormatLetterSpacingWiderSharp.tsx b/src/IconFormatLetterSpacingWiderSharp.tsx index b860c229f..8dda08119 100644 --- a/src/IconFormatLetterSpacingWiderSharp.tsx +++ b/src/IconFormatLetterSpacingWiderSharp.tsx @@ -10,4 +10,4 @@ const IconFormatLetterSpacingWiderSharp: React.FC = ({ ) -export { IconFormatLetterSpacingWiderSharp as default } +export default IconFormatLetterSpacingWiderSharp diff --git a/src/IconFormatLetterSpacingWiderSharpFilled.tsx b/src/IconFormatLetterSpacingWiderSharpFilled.tsx index 129d629a2..73a94b1ff 100644 --- a/src/IconFormatLetterSpacingWiderSharpFilled.tsx +++ b/src/IconFormatLetterSpacingWiderSharpFilled.tsx @@ -10,4 +10,4 @@ const IconFormatLetterSpacingWiderSharpFilled: React.FC = ({ ) -export { IconFormatLetterSpacingWiderSharpFilled as default } +export default IconFormatLetterSpacingWiderSharpFilled diff --git a/src/IconFormatLineSpacingOutlined.tsx b/src/IconFormatLineSpacingOutlined.tsx index 274ef25ff..7447bbf1c 100644 --- a/src/IconFormatLineSpacingOutlined.tsx +++ b/src/IconFormatLineSpacingOutlined.tsx @@ -8,4 +8,4 @@ const IconFormatLineSpacingOutlined: React.FC = ({ ...props }) => ( ) -export { IconFormatLineSpacingOutlined as default } +export default IconFormatLineSpacingOutlined diff --git a/src/IconFormatLineSpacingOutlinedFilled.tsx b/src/IconFormatLineSpacingOutlinedFilled.tsx index e83896d74..22af78378 100644 --- a/src/IconFormatLineSpacingOutlinedFilled.tsx +++ b/src/IconFormatLineSpacingOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconFormatLineSpacingOutlinedFilled: React.FC = ({ ) -export { IconFormatLineSpacingOutlinedFilled as default } +export default IconFormatLineSpacingOutlinedFilled diff --git a/src/IconFormatLineSpacingRounded.tsx b/src/IconFormatLineSpacingRounded.tsx index 69fa30c9a..8bca8e719 100644 --- a/src/IconFormatLineSpacingRounded.tsx +++ b/src/IconFormatLineSpacingRounded.tsx @@ -8,4 +8,4 @@ const IconFormatLineSpacingRounded: React.FC = ({ ...props }) => ( ) -export { IconFormatLineSpacingRounded as default } +export default IconFormatLineSpacingRounded diff --git a/src/IconFormatLineSpacingRoundedFilled.tsx b/src/IconFormatLineSpacingRoundedFilled.tsx index 2e58fa898..13a4d73b5 100644 --- a/src/IconFormatLineSpacingRoundedFilled.tsx +++ b/src/IconFormatLineSpacingRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconFormatLineSpacingRoundedFilled: React.FC = ({ ) -export { IconFormatLineSpacingRoundedFilled as default } +export default IconFormatLineSpacingRoundedFilled diff --git a/src/IconFormatLineSpacingSharp.tsx b/src/IconFormatLineSpacingSharp.tsx index 7661618f2..f83036c69 100644 --- a/src/IconFormatLineSpacingSharp.tsx +++ b/src/IconFormatLineSpacingSharp.tsx @@ -8,4 +8,4 @@ const IconFormatLineSpacingSharp: React.FC = ({ ...props }) => ( ) -export { IconFormatLineSpacingSharp as default } +export default IconFormatLineSpacingSharp diff --git a/src/IconFormatLineSpacingSharpFilled.tsx b/src/IconFormatLineSpacingSharpFilled.tsx index 14a1a5321..6a14c50fb 100644 --- a/src/IconFormatLineSpacingSharpFilled.tsx +++ b/src/IconFormatLineSpacingSharpFilled.tsx @@ -10,4 +10,4 @@ const IconFormatLineSpacingSharpFilled: React.FC = ({ ) -export { IconFormatLineSpacingSharpFilled as default } +export default IconFormatLineSpacingSharpFilled diff --git a/src/IconFormatListBulletedAddOutlined.tsx b/src/IconFormatListBulletedAddOutlined.tsx index ebd3ca37e..9de20ae47 100644 --- a/src/IconFormatListBulletedAddOutlined.tsx +++ b/src/IconFormatListBulletedAddOutlined.tsx @@ -10,4 +10,4 @@ const IconFormatListBulletedAddOutlined: React.FC = ({ ) -export { IconFormatListBulletedAddOutlined as default } +export default IconFormatListBulletedAddOutlined diff --git a/src/IconFormatListBulletedAddOutlinedFilled.tsx b/src/IconFormatListBulletedAddOutlinedFilled.tsx index 527cebf46..173dcfc15 100644 --- a/src/IconFormatListBulletedAddOutlinedFilled.tsx +++ b/src/IconFormatListBulletedAddOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconFormatListBulletedAddOutlinedFilled: React.FC = ({ ) -export { IconFormatListBulletedAddOutlinedFilled as default } +export default IconFormatListBulletedAddOutlinedFilled diff --git a/src/IconFormatListBulletedAddRounded.tsx b/src/IconFormatListBulletedAddRounded.tsx index 1c93a1394..85e68d538 100644 --- a/src/IconFormatListBulletedAddRounded.tsx +++ b/src/IconFormatListBulletedAddRounded.tsx @@ -10,4 +10,4 @@ const IconFormatListBulletedAddRounded: React.FC = ({ ) -export { IconFormatListBulletedAddRounded as default } +export default IconFormatListBulletedAddRounded diff --git a/src/IconFormatListBulletedAddRoundedFilled.tsx b/src/IconFormatListBulletedAddRoundedFilled.tsx index 9dc1ef2c1..ac5d8670a 100644 --- a/src/IconFormatListBulletedAddRoundedFilled.tsx +++ b/src/IconFormatListBulletedAddRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconFormatListBulletedAddRoundedFilled: React.FC = ({ ) -export { IconFormatListBulletedAddRoundedFilled as default } +export default IconFormatListBulletedAddRoundedFilled diff --git a/src/IconFormatListBulletedAddSharp.tsx b/src/IconFormatListBulletedAddSharp.tsx index 5d910a18d..7ecd03489 100644 --- a/src/IconFormatListBulletedAddSharp.tsx +++ b/src/IconFormatListBulletedAddSharp.tsx @@ -8,4 +8,4 @@ const IconFormatListBulletedAddSharp: React.FC = ({ ...props }) => ( ) -export { IconFormatListBulletedAddSharp as default } +export default IconFormatListBulletedAddSharp diff --git a/src/IconFormatListBulletedAddSharpFilled.tsx b/src/IconFormatListBulletedAddSharpFilled.tsx index fba47c42a..38db29f07 100644 --- a/src/IconFormatListBulletedAddSharpFilled.tsx +++ b/src/IconFormatListBulletedAddSharpFilled.tsx @@ -10,4 +10,4 @@ const IconFormatListBulletedAddSharpFilled: React.FC = ({ ) -export { IconFormatListBulletedAddSharpFilled as default } +export default IconFormatListBulletedAddSharpFilled diff --git a/src/IconFormatListBulletedOutlined.tsx b/src/IconFormatListBulletedOutlined.tsx index f45bbe07f..3a604e917 100644 --- a/src/IconFormatListBulletedOutlined.tsx +++ b/src/IconFormatListBulletedOutlined.tsx @@ -8,4 +8,4 @@ const IconFormatListBulletedOutlined: React.FC = ({ ...props }) => ( ) -export { IconFormatListBulletedOutlined as default } +export default IconFormatListBulletedOutlined diff --git a/src/IconFormatListBulletedOutlinedFilled.tsx b/src/IconFormatListBulletedOutlinedFilled.tsx index 786aec1bd..1b59436ae 100644 --- a/src/IconFormatListBulletedOutlinedFilled.tsx +++ b/src/IconFormatListBulletedOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconFormatListBulletedOutlinedFilled: React.FC = ({ ) -export { IconFormatListBulletedOutlinedFilled as default } +export default IconFormatListBulletedOutlinedFilled diff --git a/src/IconFormatListBulletedRounded.tsx b/src/IconFormatListBulletedRounded.tsx index d110f8d56..53dfc9555 100644 --- a/src/IconFormatListBulletedRounded.tsx +++ b/src/IconFormatListBulletedRounded.tsx @@ -8,4 +8,4 @@ const IconFormatListBulletedRounded: React.FC = ({ ...props }) => ( ) -export { IconFormatListBulletedRounded as default } +export default IconFormatListBulletedRounded diff --git a/src/IconFormatListBulletedRoundedFilled.tsx b/src/IconFormatListBulletedRoundedFilled.tsx index 2ea62e99d..34a6bbb70 100644 --- a/src/IconFormatListBulletedRoundedFilled.tsx +++ b/src/IconFormatListBulletedRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconFormatListBulletedRoundedFilled: React.FC = ({ ) -export { IconFormatListBulletedRoundedFilled as default } +export default IconFormatListBulletedRoundedFilled diff --git a/src/IconFormatListBulletedSharp.tsx b/src/IconFormatListBulletedSharp.tsx index 5a002a40a..96da07ff2 100644 --- a/src/IconFormatListBulletedSharp.tsx +++ b/src/IconFormatListBulletedSharp.tsx @@ -8,4 +8,4 @@ const IconFormatListBulletedSharp: React.FC = ({ ...props }) => ( ) -export { IconFormatListBulletedSharp as default } +export default IconFormatListBulletedSharp diff --git a/src/IconFormatListBulletedSharpFilled.tsx b/src/IconFormatListBulletedSharpFilled.tsx index 2239df1e7..9ce1f8447 100644 --- a/src/IconFormatListBulletedSharpFilled.tsx +++ b/src/IconFormatListBulletedSharpFilled.tsx @@ -10,4 +10,4 @@ const IconFormatListBulletedSharpFilled: React.FC = ({ ) -export { IconFormatListBulletedSharpFilled as default } +export default IconFormatListBulletedSharpFilled diff --git a/src/IconFormatListNumberedOutlined.tsx b/src/IconFormatListNumberedOutlined.tsx index 35a702aa3..337a16fca 100644 --- a/src/IconFormatListNumberedOutlined.tsx +++ b/src/IconFormatListNumberedOutlined.tsx @@ -8,4 +8,4 @@ const IconFormatListNumberedOutlined: React.FC = ({ ...props }) => ( ) -export { IconFormatListNumberedOutlined as default } +export default IconFormatListNumberedOutlined diff --git a/src/IconFormatListNumberedOutlinedFilled.tsx b/src/IconFormatListNumberedOutlinedFilled.tsx index f7f89b383..17114a776 100644 --- a/src/IconFormatListNumberedOutlinedFilled.tsx +++ b/src/IconFormatListNumberedOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconFormatListNumberedOutlinedFilled: React.FC = ({ ) -export { IconFormatListNumberedOutlinedFilled as default } +export default IconFormatListNumberedOutlinedFilled diff --git a/src/IconFormatListNumberedRounded.tsx b/src/IconFormatListNumberedRounded.tsx index c28ca22f7..c6816cf85 100644 --- a/src/IconFormatListNumberedRounded.tsx +++ b/src/IconFormatListNumberedRounded.tsx @@ -8,4 +8,4 @@ const IconFormatListNumberedRounded: React.FC = ({ ...props }) => ( ) -export { IconFormatListNumberedRounded as default } +export default IconFormatListNumberedRounded diff --git a/src/IconFormatListNumberedRoundedFilled.tsx b/src/IconFormatListNumberedRoundedFilled.tsx index 40d5e6595..0d4d0f685 100644 --- a/src/IconFormatListNumberedRoundedFilled.tsx +++ b/src/IconFormatListNumberedRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconFormatListNumberedRoundedFilled: React.FC = ({ ) -export { IconFormatListNumberedRoundedFilled as default } +export default IconFormatListNumberedRoundedFilled diff --git a/src/IconFormatListNumberedRtlOutlined.tsx b/src/IconFormatListNumberedRtlOutlined.tsx index 8d8bf562a..3a807e1fe 100644 --- a/src/IconFormatListNumberedRtlOutlined.tsx +++ b/src/IconFormatListNumberedRtlOutlined.tsx @@ -10,4 +10,4 @@ const IconFormatListNumberedRtlOutlined: React.FC = ({ ) -export { IconFormatListNumberedRtlOutlined as default } +export default IconFormatListNumberedRtlOutlined diff --git a/src/IconFormatListNumberedRtlOutlinedFilled.tsx b/src/IconFormatListNumberedRtlOutlinedFilled.tsx index 08c3a3dc4..a1338812d 100644 --- a/src/IconFormatListNumberedRtlOutlinedFilled.tsx +++ b/src/IconFormatListNumberedRtlOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconFormatListNumberedRtlOutlinedFilled: React.FC = ({ ) -export { IconFormatListNumberedRtlOutlinedFilled as default } +export default IconFormatListNumberedRtlOutlinedFilled diff --git a/src/IconFormatListNumberedRtlRounded.tsx b/src/IconFormatListNumberedRtlRounded.tsx index a71b6bf93..db2bd31bd 100644 --- a/src/IconFormatListNumberedRtlRounded.tsx +++ b/src/IconFormatListNumberedRtlRounded.tsx @@ -10,4 +10,4 @@ const IconFormatListNumberedRtlRounded: React.FC = ({ ) -export { IconFormatListNumberedRtlRounded as default } +export default IconFormatListNumberedRtlRounded diff --git a/src/IconFormatListNumberedRtlRoundedFilled.tsx b/src/IconFormatListNumberedRtlRoundedFilled.tsx index 32ac917a5..0f8ab8a52 100644 --- a/src/IconFormatListNumberedRtlRoundedFilled.tsx +++ b/src/IconFormatListNumberedRtlRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconFormatListNumberedRtlRoundedFilled: React.FC = ({ ) -export { IconFormatListNumberedRtlRoundedFilled as default } +export default IconFormatListNumberedRtlRoundedFilled diff --git a/src/IconFormatListNumberedRtlSharp.tsx b/src/IconFormatListNumberedRtlSharp.tsx index 9055020ec..83e5a48d7 100644 --- a/src/IconFormatListNumberedRtlSharp.tsx +++ b/src/IconFormatListNumberedRtlSharp.tsx @@ -8,4 +8,4 @@ const IconFormatListNumberedRtlSharp: React.FC = ({ ...props }) => ( ) -export { IconFormatListNumberedRtlSharp as default } +export default IconFormatListNumberedRtlSharp diff --git a/src/IconFormatListNumberedRtlSharpFilled.tsx b/src/IconFormatListNumberedRtlSharpFilled.tsx index 2056dd39c..ea0159117 100644 --- a/src/IconFormatListNumberedRtlSharpFilled.tsx +++ b/src/IconFormatListNumberedRtlSharpFilled.tsx @@ -10,4 +10,4 @@ const IconFormatListNumberedRtlSharpFilled: React.FC = ({ ) -export { IconFormatListNumberedRtlSharpFilled as default } +export default IconFormatListNumberedRtlSharpFilled diff --git a/src/IconFormatListNumberedSharp.tsx b/src/IconFormatListNumberedSharp.tsx index 0d2356529..f0cabfc83 100644 --- a/src/IconFormatListNumberedSharp.tsx +++ b/src/IconFormatListNumberedSharp.tsx @@ -8,4 +8,4 @@ const IconFormatListNumberedSharp: React.FC = ({ ...props }) => ( ) -export { IconFormatListNumberedSharp as default } +export default IconFormatListNumberedSharp diff --git a/src/IconFormatListNumberedSharpFilled.tsx b/src/IconFormatListNumberedSharpFilled.tsx index 98cdb5189..1220ea75a 100644 --- a/src/IconFormatListNumberedSharpFilled.tsx +++ b/src/IconFormatListNumberedSharpFilled.tsx @@ -10,4 +10,4 @@ const IconFormatListNumberedSharpFilled: React.FC = ({ ) -export { IconFormatListNumberedSharpFilled as default } +export default IconFormatListNumberedSharpFilled diff --git a/src/IconFormatOverlineOutlined.tsx b/src/IconFormatOverlineOutlined.tsx index ab1c66684..5b874ad1f 100644 --- a/src/IconFormatOverlineOutlined.tsx +++ b/src/IconFormatOverlineOutlined.tsx @@ -8,4 +8,4 @@ const IconFormatOverlineOutlined: React.FC = ({ ...props }) => ( ) -export { IconFormatOverlineOutlined as default } +export default IconFormatOverlineOutlined diff --git a/src/IconFormatOverlineOutlinedFilled.tsx b/src/IconFormatOverlineOutlinedFilled.tsx index 313c30655..8d25741dd 100644 --- a/src/IconFormatOverlineOutlinedFilled.tsx +++ b/src/IconFormatOverlineOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconFormatOverlineOutlinedFilled: React.FC = ({ ) -export { IconFormatOverlineOutlinedFilled as default } +export default IconFormatOverlineOutlinedFilled diff --git a/src/IconFormatOverlineRounded.tsx b/src/IconFormatOverlineRounded.tsx index df53532fc..93cfbbb3b 100644 --- a/src/IconFormatOverlineRounded.tsx +++ b/src/IconFormatOverlineRounded.tsx @@ -8,4 +8,4 @@ const IconFormatOverlineRounded: React.FC = ({ ...props }) => ( ) -export { IconFormatOverlineRounded as default } +export default IconFormatOverlineRounded diff --git a/src/IconFormatOverlineRoundedFilled.tsx b/src/IconFormatOverlineRoundedFilled.tsx index 12face7d3..01185782e 100644 --- a/src/IconFormatOverlineRoundedFilled.tsx +++ b/src/IconFormatOverlineRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconFormatOverlineRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconFormatOverlineRoundedFilled as default } +export default IconFormatOverlineRoundedFilled diff --git a/src/IconFormatOverlineSharp.tsx b/src/IconFormatOverlineSharp.tsx index 4324f4810..d206b9fde 100644 --- a/src/IconFormatOverlineSharp.tsx +++ b/src/IconFormatOverlineSharp.tsx @@ -8,4 +8,4 @@ const IconFormatOverlineSharp: React.FC = ({ ...props }) => ( ) -export { IconFormatOverlineSharp as default } +export default IconFormatOverlineSharp diff --git a/src/IconFormatOverlineSharpFilled.tsx b/src/IconFormatOverlineSharpFilled.tsx index 93375c271..0c3fa0e98 100644 --- a/src/IconFormatOverlineSharpFilled.tsx +++ b/src/IconFormatOverlineSharpFilled.tsx @@ -8,4 +8,4 @@ const IconFormatOverlineSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconFormatOverlineSharpFilled as default } +export default IconFormatOverlineSharpFilled diff --git a/src/IconFormatPaintOutlined.tsx b/src/IconFormatPaintOutlined.tsx index 0a5132474..5ac11e752 100644 --- a/src/IconFormatPaintOutlined.tsx +++ b/src/IconFormatPaintOutlined.tsx @@ -8,4 +8,4 @@ const IconFormatPaintOutlined: React.FC = ({ ...props }) => ( ) -export { IconFormatPaintOutlined as default } +export default IconFormatPaintOutlined diff --git a/src/IconFormatPaintOutlinedFilled.tsx b/src/IconFormatPaintOutlinedFilled.tsx index c6a13b3ce..9c8d609e1 100644 --- a/src/IconFormatPaintOutlinedFilled.tsx +++ b/src/IconFormatPaintOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconFormatPaintOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconFormatPaintOutlinedFilled as default } +export default IconFormatPaintOutlinedFilled diff --git a/src/IconFormatPaintRounded.tsx b/src/IconFormatPaintRounded.tsx index 1e511b921..badee885b 100644 --- a/src/IconFormatPaintRounded.tsx +++ b/src/IconFormatPaintRounded.tsx @@ -8,4 +8,4 @@ const IconFormatPaintRounded: React.FC = ({ ...props }) => ( ) -export { IconFormatPaintRounded as default } +export default IconFormatPaintRounded diff --git a/src/IconFormatPaintRoundedFilled.tsx b/src/IconFormatPaintRoundedFilled.tsx index 5bb02378f..ad0ea0339 100644 --- a/src/IconFormatPaintRoundedFilled.tsx +++ b/src/IconFormatPaintRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconFormatPaintRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconFormatPaintRoundedFilled as default } +export default IconFormatPaintRoundedFilled diff --git a/src/IconFormatPaintSharp.tsx b/src/IconFormatPaintSharp.tsx index c60691c67..906a38292 100644 --- a/src/IconFormatPaintSharp.tsx +++ b/src/IconFormatPaintSharp.tsx @@ -8,4 +8,4 @@ const IconFormatPaintSharp: React.FC = ({ ...props }) => ( ) -export { IconFormatPaintSharp as default } +export default IconFormatPaintSharp diff --git a/src/IconFormatPaintSharpFilled.tsx b/src/IconFormatPaintSharpFilled.tsx index 3fc49b940..f90671653 100644 --- a/src/IconFormatPaintSharpFilled.tsx +++ b/src/IconFormatPaintSharpFilled.tsx @@ -8,4 +8,4 @@ const IconFormatPaintSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconFormatPaintSharpFilled as default } +export default IconFormatPaintSharpFilled diff --git a/src/IconFormatParagraphOutlined.tsx b/src/IconFormatParagraphOutlined.tsx index 5a8b4c7eb..8314ef166 100644 --- a/src/IconFormatParagraphOutlined.tsx +++ b/src/IconFormatParagraphOutlined.tsx @@ -8,4 +8,4 @@ const IconFormatParagraphOutlined: React.FC = ({ ...props }) => ( ) -export { IconFormatParagraphOutlined as default } +export default IconFormatParagraphOutlined diff --git a/src/IconFormatParagraphOutlinedFilled.tsx b/src/IconFormatParagraphOutlinedFilled.tsx index 09ffdaafc..16b0a217e 100644 --- a/src/IconFormatParagraphOutlinedFilled.tsx +++ b/src/IconFormatParagraphOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconFormatParagraphOutlinedFilled: React.FC = ({ ) -export { IconFormatParagraphOutlinedFilled as default } +export default IconFormatParagraphOutlinedFilled diff --git a/src/IconFormatParagraphRounded.tsx b/src/IconFormatParagraphRounded.tsx index 3d76fba4b..f3b94a321 100644 --- a/src/IconFormatParagraphRounded.tsx +++ b/src/IconFormatParagraphRounded.tsx @@ -8,4 +8,4 @@ const IconFormatParagraphRounded: React.FC = ({ ...props }) => ( ) -export { IconFormatParagraphRounded as default } +export default IconFormatParagraphRounded diff --git a/src/IconFormatParagraphRoundedFilled.tsx b/src/IconFormatParagraphRoundedFilled.tsx index 37c2a0ec7..48e911a33 100644 --- a/src/IconFormatParagraphRoundedFilled.tsx +++ b/src/IconFormatParagraphRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconFormatParagraphRoundedFilled: React.FC = ({ ) -export { IconFormatParagraphRoundedFilled as default } +export default IconFormatParagraphRoundedFilled diff --git a/src/IconFormatParagraphSharp.tsx b/src/IconFormatParagraphSharp.tsx index eb5c8110f..a3b38e91b 100644 --- a/src/IconFormatParagraphSharp.tsx +++ b/src/IconFormatParagraphSharp.tsx @@ -8,4 +8,4 @@ const IconFormatParagraphSharp: React.FC = ({ ...props }) => ( ) -export { IconFormatParagraphSharp as default } +export default IconFormatParagraphSharp diff --git a/src/IconFormatParagraphSharpFilled.tsx b/src/IconFormatParagraphSharpFilled.tsx index 97341fda7..dfa20feb4 100644 --- a/src/IconFormatParagraphSharpFilled.tsx +++ b/src/IconFormatParagraphSharpFilled.tsx @@ -8,4 +8,4 @@ const IconFormatParagraphSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconFormatParagraphSharpFilled as default } +export default IconFormatParagraphSharpFilled diff --git a/src/IconFormatQuoteOffOutlined.tsx b/src/IconFormatQuoteOffOutlined.tsx index 2837e8d3f..04b31502f 100644 --- a/src/IconFormatQuoteOffOutlined.tsx +++ b/src/IconFormatQuoteOffOutlined.tsx @@ -8,4 +8,4 @@ const IconFormatQuoteOffOutlined: React.FC = ({ ...props }) => ( ) -export { IconFormatQuoteOffOutlined as default } +export default IconFormatQuoteOffOutlined diff --git a/src/IconFormatQuoteOffOutlinedFilled.tsx b/src/IconFormatQuoteOffOutlinedFilled.tsx index 5669f311b..0594a07b8 100644 --- a/src/IconFormatQuoteOffOutlinedFilled.tsx +++ b/src/IconFormatQuoteOffOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconFormatQuoteOffOutlinedFilled: React.FC = ({ ) -export { IconFormatQuoteOffOutlinedFilled as default } +export default IconFormatQuoteOffOutlinedFilled diff --git a/src/IconFormatQuoteOffRounded.tsx b/src/IconFormatQuoteOffRounded.tsx index 1170f295a..aa9abcc85 100644 --- a/src/IconFormatQuoteOffRounded.tsx +++ b/src/IconFormatQuoteOffRounded.tsx @@ -8,4 +8,4 @@ const IconFormatQuoteOffRounded: React.FC = ({ ...props }) => ( ) -export { IconFormatQuoteOffRounded as default } +export default IconFormatQuoteOffRounded diff --git a/src/IconFormatQuoteOffRoundedFilled.tsx b/src/IconFormatQuoteOffRoundedFilled.tsx index 8cea69b31..798f609ab 100644 --- a/src/IconFormatQuoteOffRoundedFilled.tsx +++ b/src/IconFormatQuoteOffRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconFormatQuoteOffRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconFormatQuoteOffRoundedFilled as default } +export default IconFormatQuoteOffRoundedFilled diff --git a/src/IconFormatQuoteOffSharp.tsx b/src/IconFormatQuoteOffSharp.tsx index 7d46d65d8..24dc52545 100644 --- a/src/IconFormatQuoteOffSharp.tsx +++ b/src/IconFormatQuoteOffSharp.tsx @@ -8,4 +8,4 @@ const IconFormatQuoteOffSharp: React.FC = ({ ...props }) => ( ) -export { IconFormatQuoteOffSharp as default } +export default IconFormatQuoteOffSharp diff --git a/src/IconFormatQuoteOffSharpFilled.tsx b/src/IconFormatQuoteOffSharpFilled.tsx index 03df99418..cc701092c 100644 --- a/src/IconFormatQuoteOffSharpFilled.tsx +++ b/src/IconFormatQuoteOffSharpFilled.tsx @@ -8,4 +8,4 @@ const IconFormatQuoteOffSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconFormatQuoteOffSharpFilled as default } +export default IconFormatQuoteOffSharpFilled diff --git a/src/IconFormatQuoteOutlined.tsx b/src/IconFormatQuoteOutlined.tsx index 99302f47f..9d1e71051 100644 --- a/src/IconFormatQuoteOutlined.tsx +++ b/src/IconFormatQuoteOutlined.tsx @@ -8,4 +8,4 @@ const IconFormatQuoteOutlined: React.FC = ({ ...props }) => ( ) -export { IconFormatQuoteOutlined as default } +export default IconFormatQuoteOutlined diff --git a/src/IconFormatQuoteOutlinedFilled.tsx b/src/IconFormatQuoteOutlinedFilled.tsx index f06577d36..c7231d8f2 100644 --- a/src/IconFormatQuoteOutlinedFilled.tsx +++ b/src/IconFormatQuoteOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconFormatQuoteOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconFormatQuoteOutlinedFilled as default } +export default IconFormatQuoteOutlinedFilled diff --git a/src/IconFormatQuoteRounded.tsx b/src/IconFormatQuoteRounded.tsx index cdae57257..f34a9dbff 100644 --- a/src/IconFormatQuoteRounded.tsx +++ b/src/IconFormatQuoteRounded.tsx @@ -8,4 +8,4 @@ const IconFormatQuoteRounded: React.FC = ({ ...props }) => ( ) -export { IconFormatQuoteRounded as default } +export default IconFormatQuoteRounded diff --git a/src/IconFormatQuoteRoundedFilled.tsx b/src/IconFormatQuoteRoundedFilled.tsx index cd93202b5..a58117b3b 100644 --- a/src/IconFormatQuoteRoundedFilled.tsx +++ b/src/IconFormatQuoteRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconFormatQuoteRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconFormatQuoteRoundedFilled as default } +export default IconFormatQuoteRoundedFilled diff --git a/src/IconFormatQuoteSharp.tsx b/src/IconFormatQuoteSharp.tsx index 78e50489e..748424871 100644 --- a/src/IconFormatQuoteSharp.tsx +++ b/src/IconFormatQuoteSharp.tsx @@ -8,4 +8,4 @@ const IconFormatQuoteSharp: React.FC = ({ ...props }) => ( ) -export { IconFormatQuoteSharp as default } +export default IconFormatQuoteSharp diff --git a/src/IconFormatQuoteSharpFilled.tsx b/src/IconFormatQuoteSharpFilled.tsx index b7f1ede31..6633e318a 100644 --- a/src/IconFormatQuoteSharpFilled.tsx +++ b/src/IconFormatQuoteSharpFilled.tsx @@ -8,4 +8,4 @@ const IconFormatQuoteSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconFormatQuoteSharpFilled as default } +export default IconFormatQuoteSharpFilled diff --git a/src/IconFormatShapesOutlined.tsx b/src/IconFormatShapesOutlined.tsx index 466ac529e..e09f61c3b 100644 --- a/src/IconFormatShapesOutlined.tsx +++ b/src/IconFormatShapesOutlined.tsx @@ -8,4 +8,4 @@ const IconFormatShapesOutlined: React.FC = ({ ...props }) => ( ) -export { IconFormatShapesOutlined as default } +export default IconFormatShapesOutlined diff --git a/src/IconFormatShapesOutlinedFilled.tsx b/src/IconFormatShapesOutlinedFilled.tsx index 135f6bfb7..b042ebe3b 100644 --- a/src/IconFormatShapesOutlinedFilled.tsx +++ b/src/IconFormatShapesOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconFormatShapesOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconFormatShapesOutlinedFilled as default } +export default IconFormatShapesOutlinedFilled diff --git a/src/IconFormatShapesRounded.tsx b/src/IconFormatShapesRounded.tsx index edf0edf25..c5de49708 100644 --- a/src/IconFormatShapesRounded.tsx +++ b/src/IconFormatShapesRounded.tsx @@ -8,4 +8,4 @@ const IconFormatShapesRounded: React.FC = ({ ...props }) => ( ) -export { IconFormatShapesRounded as default } +export default IconFormatShapesRounded diff --git a/src/IconFormatShapesRoundedFilled.tsx b/src/IconFormatShapesRoundedFilled.tsx index b9ffcdec1..e66942bc8 100644 --- a/src/IconFormatShapesRoundedFilled.tsx +++ b/src/IconFormatShapesRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconFormatShapesRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconFormatShapesRoundedFilled as default } +export default IconFormatShapesRoundedFilled diff --git a/src/IconFormatShapesSharp.tsx b/src/IconFormatShapesSharp.tsx index d71583611..697067b32 100644 --- a/src/IconFormatShapesSharp.tsx +++ b/src/IconFormatShapesSharp.tsx @@ -8,4 +8,4 @@ const IconFormatShapesSharp: React.FC = ({ ...props }) => ( ) -export { IconFormatShapesSharp as default } +export default IconFormatShapesSharp diff --git a/src/IconFormatShapesSharpFilled.tsx b/src/IconFormatShapesSharpFilled.tsx index abff1b8af..a4976a4ad 100644 --- a/src/IconFormatShapesSharpFilled.tsx +++ b/src/IconFormatShapesSharpFilled.tsx @@ -8,4 +8,4 @@ const IconFormatShapesSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconFormatShapesSharpFilled as default } +export default IconFormatShapesSharpFilled diff --git a/src/IconFormatSizeOutlined.tsx b/src/IconFormatSizeOutlined.tsx index bb2194c8c..60343383a 100644 --- a/src/IconFormatSizeOutlined.tsx +++ b/src/IconFormatSizeOutlined.tsx @@ -8,4 +8,4 @@ const IconFormatSizeOutlined: React.FC = ({ ...props }) => ( ) -export { IconFormatSizeOutlined as default } +export default IconFormatSizeOutlined diff --git a/src/IconFormatSizeOutlinedFilled.tsx b/src/IconFormatSizeOutlinedFilled.tsx index b6645cff3..124c9d874 100644 --- a/src/IconFormatSizeOutlinedFilled.tsx +++ b/src/IconFormatSizeOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconFormatSizeOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconFormatSizeOutlinedFilled as default } +export default IconFormatSizeOutlinedFilled diff --git a/src/IconFormatSizeRounded.tsx b/src/IconFormatSizeRounded.tsx index c22a81257..c8b5bebbd 100644 --- a/src/IconFormatSizeRounded.tsx +++ b/src/IconFormatSizeRounded.tsx @@ -8,4 +8,4 @@ const IconFormatSizeRounded: React.FC = ({ ...props }) => ( ) -export { IconFormatSizeRounded as default } +export default IconFormatSizeRounded diff --git a/src/IconFormatSizeRoundedFilled.tsx b/src/IconFormatSizeRoundedFilled.tsx index 6f414899b..ea32775aa 100644 --- a/src/IconFormatSizeRoundedFilled.tsx +++ b/src/IconFormatSizeRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconFormatSizeRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconFormatSizeRoundedFilled as default } +export default IconFormatSizeRoundedFilled diff --git a/src/IconFormatSizeSharp.tsx b/src/IconFormatSizeSharp.tsx index d40c1ddef..442f73c97 100644 --- a/src/IconFormatSizeSharp.tsx +++ b/src/IconFormatSizeSharp.tsx @@ -8,4 +8,4 @@ const IconFormatSizeSharp: React.FC = ({ ...props }) => ( ) -export { IconFormatSizeSharp as default } +export default IconFormatSizeSharp diff --git a/src/IconFormatSizeSharpFilled.tsx b/src/IconFormatSizeSharpFilled.tsx index 103153fb5..fb722c2cd 100644 --- a/src/IconFormatSizeSharpFilled.tsx +++ b/src/IconFormatSizeSharpFilled.tsx @@ -8,4 +8,4 @@ const IconFormatSizeSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconFormatSizeSharpFilled as default } +export default IconFormatSizeSharpFilled diff --git a/src/IconFormatStrikethroughOutlined.tsx b/src/IconFormatStrikethroughOutlined.tsx index f05210d01..5f903b0e8 100644 --- a/src/IconFormatStrikethroughOutlined.tsx +++ b/src/IconFormatStrikethroughOutlined.tsx @@ -8,4 +8,4 @@ const IconFormatStrikethroughOutlined: React.FC = ({ ...props }) => ( ) -export { IconFormatStrikethroughOutlined as default } +export default IconFormatStrikethroughOutlined diff --git a/src/IconFormatStrikethroughOutlinedFilled.tsx b/src/IconFormatStrikethroughOutlinedFilled.tsx index b90b24224..e953b61d5 100644 --- a/src/IconFormatStrikethroughOutlinedFilled.tsx +++ b/src/IconFormatStrikethroughOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconFormatStrikethroughOutlinedFilled: React.FC = ({ ) -export { IconFormatStrikethroughOutlinedFilled as default } +export default IconFormatStrikethroughOutlinedFilled diff --git a/src/IconFormatStrikethroughRounded.tsx b/src/IconFormatStrikethroughRounded.tsx index d8cac6853..927984269 100644 --- a/src/IconFormatStrikethroughRounded.tsx +++ b/src/IconFormatStrikethroughRounded.tsx @@ -8,4 +8,4 @@ const IconFormatStrikethroughRounded: React.FC = ({ ...props }) => ( ) -export { IconFormatStrikethroughRounded as default } +export default IconFormatStrikethroughRounded diff --git a/src/IconFormatStrikethroughRoundedFilled.tsx b/src/IconFormatStrikethroughRoundedFilled.tsx index a9f4a58ad..435022017 100644 --- a/src/IconFormatStrikethroughRoundedFilled.tsx +++ b/src/IconFormatStrikethroughRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconFormatStrikethroughRoundedFilled: React.FC = ({ ) -export { IconFormatStrikethroughRoundedFilled as default } +export default IconFormatStrikethroughRoundedFilled diff --git a/src/IconFormatStrikethroughSharp.tsx b/src/IconFormatStrikethroughSharp.tsx index 4b62290d1..67d147ce4 100644 --- a/src/IconFormatStrikethroughSharp.tsx +++ b/src/IconFormatStrikethroughSharp.tsx @@ -8,4 +8,4 @@ const IconFormatStrikethroughSharp: React.FC = ({ ...props }) => ( ) -export { IconFormatStrikethroughSharp as default } +export default IconFormatStrikethroughSharp diff --git a/src/IconFormatStrikethroughSharpFilled.tsx b/src/IconFormatStrikethroughSharpFilled.tsx index b52f6a40f..ead2947a1 100644 --- a/src/IconFormatStrikethroughSharpFilled.tsx +++ b/src/IconFormatStrikethroughSharpFilled.tsx @@ -10,4 +10,4 @@ const IconFormatStrikethroughSharpFilled: React.FC = ({ ) -export { IconFormatStrikethroughSharpFilled as default } +export default IconFormatStrikethroughSharpFilled diff --git a/src/IconFormatTextClipOutlined.tsx b/src/IconFormatTextClipOutlined.tsx index 253d40dce..83272cb40 100644 --- a/src/IconFormatTextClipOutlined.tsx +++ b/src/IconFormatTextClipOutlined.tsx @@ -8,4 +8,4 @@ const IconFormatTextClipOutlined: React.FC = ({ ...props }) => ( ) -export { IconFormatTextClipOutlined as default } +export default IconFormatTextClipOutlined diff --git a/src/IconFormatTextClipOutlinedFilled.tsx b/src/IconFormatTextClipOutlinedFilled.tsx index 07363b67b..8e75d8926 100644 --- a/src/IconFormatTextClipOutlinedFilled.tsx +++ b/src/IconFormatTextClipOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconFormatTextClipOutlinedFilled: React.FC = ({ ) -export { IconFormatTextClipOutlinedFilled as default } +export default IconFormatTextClipOutlinedFilled diff --git a/src/IconFormatTextClipRounded.tsx b/src/IconFormatTextClipRounded.tsx index 025557857..0dcb4c16b 100644 --- a/src/IconFormatTextClipRounded.tsx +++ b/src/IconFormatTextClipRounded.tsx @@ -8,4 +8,4 @@ const IconFormatTextClipRounded: React.FC = ({ ...props }) => ( ) -export { IconFormatTextClipRounded as default } +export default IconFormatTextClipRounded diff --git a/src/IconFormatTextClipRoundedFilled.tsx b/src/IconFormatTextClipRoundedFilled.tsx index 202702517..fe1f1137c 100644 --- a/src/IconFormatTextClipRoundedFilled.tsx +++ b/src/IconFormatTextClipRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconFormatTextClipRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconFormatTextClipRoundedFilled as default } +export default IconFormatTextClipRoundedFilled diff --git a/src/IconFormatTextClipSharp.tsx b/src/IconFormatTextClipSharp.tsx index 2a9b83560..4c3bdef14 100644 --- a/src/IconFormatTextClipSharp.tsx +++ b/src/IconFormatTextClipSharp.tsx @@ -8,4 +8,4 @@ const IconFormatTextClipSharp: React.FC = ({ ...props }) => ( ) -export { IconFormatTextClipSharp as default } +export default IconFormatTextClipSharp diff --git a/src/IconFormatTextClipSharpFilled.tsx b/src/IconFormatTextClipSharpFilled.tsx index 8cae95d0c..ccb0acb3d 100644 --- a/src/IconFormatTextClipSharpFilled.tsx +++ b/src/IconFormatTextClipSharpFilled.tsx @@ -8,4 +8,4 @@ const IconFormatTextClipSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconFormatTextClipSharpFilled as default } +export default IconFormatTextClipSharpFilled diff --git a/src/IconFormatTextOverflowOutlined.tsx b/src/IconFormatTextOverflowOutlined.tsx index 1d9af2d63..0bf6293c7 100644 --- a/src/IconFormatTextOverflowOutlined.tsx +++ b/src/IconFormatTextOverflowOutlined.tsx @@ -8,4 +8,4 @@ const IconFormatTextOverflowOutlined: React.FC = ({ ...props }) => ( ) -export { IconFormatTextOverflowOutlined as default } +export default IconFormatTextOverflowOutlined diff --git a/src/IconFormatTextOverflowOutlinedFilled.tsx b/src/IconFormatTextOverflowOutlinedFilled.tsx index f74de0785..2d8f4cfa4 100644 --- a/src/IconFormatTextOverflowOutlinedFilled.tsx +++ b/src/IconFormatTextOverflowOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconFormatTextOverflowOutlinedFilled: React.FC = ({ ) -export { IconFormatTextOverflowOutlinedFilled as default } +export default IconFormatTextOverflowOutlinedFilled diff --git a/src/IconFormatTextOverflowRounded.tsx b/src/IconFormatTextOverflowRounded.tsx index 637cadd03..39d4a9be1 100644 --- a/src/IconFormatTextOverflowRounded.tsx +++ b/src/IconFormatTextOverflowRounded.tsx @@ -8,4 +8,4 @@ const IconFormatTextOverflowRounded: React.FC = ({ ...props }) => ( ) -export { IconFormatTextOverflowRounded as default } +export default IconFormatTextOverflowRounded diff --git a/src/IconFormatTextOverflowRoundedFilled.tsx b/src/IconFormatTextOverflowRoundedFilled.tsx index 4482df069..f4b352264 100644 --- a/src/IconFormatTextOverflowRoundedFilled.tsx +++ b/src/IconFormatTextOverflowRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconFormatTextOverflowRoundedFilled: React.FC = ({ ) -export { IconFormatTextOverflowRoundedFilled as default } +export default IconFormatTextOverflowRoundedFilled diff --git a/src/IconFormatTextOverflowSharp.tsx b/src/IconFormatTextOverflowSharp.tsx index 792133f64..1ddd4a2bd 100644 --- a/src/IconFormatTextOverflowSharp.tsx +++ b/src/IconFormatTextOverflowSharp.tsx @@ -8,4 +8,4 @@ const IconFormatTextOverflowSharp: React.FC = ({ ...props }) => ( ) -export { IconFormatTextOverflowSharp as default } +export default IconFormatTextOverflowSharp diff --git a/src/IconFormatTextOverflowSharpFilled.tsx b/src/IconFormatTextOverflowSharpFilled.tsx index 3e8146ee1..f77426273 100644 --- a/src/IconFormatTextOverflowSharpFilled.tsx +++ b/src/IconFormatTextOverflowSharpFilled.tsx @@ -10,4 +10,4 @@ const IconFormatTextOverflowSharpFilled: React.FC = ({ ) -export { IconFormatTextOverflowSharpFilled as default } +export default IconFormatTextOverflowSharpFilled diff --git a/src/IconFormatTextWrapOutlined.tsx b/src/IconFormatTextWrapOutlined.tsx index 8482d61f6..8c9f4c8e2 100644 --- a/src/IconFormatTextWrapOutlined.tsx +++ b/src/IconFormatTextWrapOutlined.tsx @@ -8,4 +8,4 @@ const IconFormatTextWrapOutlined: React.FC = ({ ...props }) => ( ) -export { IconFormatTextWrapOutlined as default } +export default IconFormatTextWrapOutlined diff --git a/src/IconFormatTextWrapOutlinedFilled.tsx b/src/IconFormatTextWrapOutlinedFilled.tsx index a22f8ad29..7ca5ada68 100644 --- a/src/IconFormatTextWrapOutlinedFilled.tsx +++ b/src/IconFormatTextWrapOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconFormatTextWrapOutlinedFilled: React.FC = ({ ) -export { IconFormatTextWrapOutlinedFilled as default } +export default IconFormatTextWrapOutlinedFilled diff --git a/src/IconFormatTextWrapRounded.tsx b/src/IconFormatTextWrapRounded.tsx index 21b63fa6b..076dd115d 100644 --- a/src/IconFormatTextWrapRounded.tsx +++ b/src/IconFormatTextWrapRounded.tsx @@ -8,4 +8,4 @@ const IconFormatTextWrapRounded: React.FC = ({ ...props }) => ( ) -export { IconFormatTextWrapRounded as default } +export default IconFormatTextWrapRounded diff --git a/src/IconFormatTextWrapRoundedFilled.tsx b/src/IconFormatTextWrapRoundedFilled.tsx index cd6a4a0b0..b92d73617 100644 --- a/src/IconFormatTextWrapRoundedFilled.tsx +++ b/src/IconFormatTextWrapRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconFormatTextWrapRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconFormatTextWrapRoundedFilled as default } +export default IconFormatTextWrapRoundedFilled diff --git a/src/IconFormatTextWrapSharp.tsx b/src/IconFormatTextWrapSharp.tsx index 5631bb0d5..b44f4bfb3 100644 --- a/src/IconFormatTextWrapSharp.tsx +++ b/src/IconFormatTextWrapSharp.tsx @@ -8,4 +8,4 @@ const IconFormatTextWrapSharp: React.FC = ({ ...props }) => ( ) -export { IconFormatTextWrapSharp as default } +export default IconFormatTextWrapSharp diff --git a/src/IconFormatTextWrapSharpFilled.tsx b/src/IconFormatTextWrapSharpFilled.tsx index 13c1fa2fa..49a3f850a 100644 --- a/src/IconFormatTextWrapSharpFilled.tsx +++ b/src/IconFormatTextWrapSharpFilled.tsx @@ -8,4 +8,4 @@ const IconFormatTextWrapSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconFormatTextWrapSharpFilled as default } +export default IconFormatTextWrapSharpFilled diff --git a/src/IconFormatTextdirectionLToROutlined.tsx b/src/IconFormatTextdirectionLToROutlined.tsx index d3e85d0e8..f4b2ea7e1 100644 --- a/src/IconFormatTextdirectionLToROutlined.tsx +++ b/src/IconFormatTextdirectionLToROutlined.tsx @@ -10,4 +10,4 @@ const IconFormatTextdirectionLToROutlined: React.FC = ({ ) -export { IconFormatTextdirectionLToROutlined as default } +export default IconFormatTextdirectionLToROutlined diff --git a/src/IconFormatTextdirectionLToROutlinedFilled.tsx b/src/IconFormatTextdirectionLToROutlinedFilled.tsx index 2e0495ba2..5e7f21da8 100644 --- a/src/IconFormatTextdirectionLToROutlinedFilled.tsx +++ b/src/IconFormatTextdirectionLToROutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconFormatTextdirectionLToROutlinedFilled: React.FC = ({ ) -export { IconFormatTextdirectionLToROutlinedFilled as default } +export default IconFormatTextdirectionLToROutlinedFilled diff --git a/src/IconFormatTextdirectionLToRRounded.tsx b/src/IconFormatTextdirectionLToRRounded.tsx index 221b7f5d0..e8869c325 100644 --- a/src/IconFormatTextdirectionLToRRounded.tsx +++ b/src/IconFormatTextdirectionLToRRounded.tsx @@ -10,4 +10,4 @@ const IconFormatTextdirectionLToRRounded: React.FC = ({ ) -export { IconFormatTextdirectionLToRRounded as default } +export default IconFormatTextdirectionLToRRounded diff --git a/src/IconFormatTextdirectionLToRRoundedFilled.tsx b/src/IconFormatTextdirectionLToRRoundedFilled.tsx index 1afcdef83..c830a5608 100644 --- a/src/IconFormatTextdirectionLToRRoundedFilled.tsx +++ b/src/IconFormatTextdirectionLToRRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconFormatTextdirectionLToRRoundedFilled: React.FC = ({ ) -export { IconFormatTextdirectionLToRRoundedFilled as default } +export default IconFormatTextdirectionLToRRoundedFilled diff --git a/src/IconFormatTextdirectionLToRSharp.tsx b/src/IconFormatTextdirectionLToRSharp.tsx index 11ee0b1a5..04122c317 100644 --- a/src/IconFormatTextdirectionLToRSharp.tsx +++ b/src/IconFormatTextdirectionLToRSharp.tsx @@ -10,4 +10,4 @@ const IconFormatTextdirectionLToRSharp: React.FC = ({ ) -export { IconFormatTextdirectionLToRSharp as default } +export default IconFormatTextdirectionLToRSharp diff --git a/src/IconFormatTextdirectionLToRSharpFilled.tsx b/src/IconFormatTextdirectionLToRSharpFilled.tsx index 5fd8d95bc..263b53b25 100644 --- a/src/IconFormatTextdirectionLToRSharpFilled.tsx +++ b/src/IconFormatTextdirectionLToRSharpFilled.tsx @@ -10,4 +10,4 @@ const IconFormatTextdirectionLToRSharpFilled: React.FC = ({ ) -export { IconFormatTextdirectionLToRSharpFilled as default } +export default IconFormatTextdirectionLToRSharpFilled diff --git a/src/IconFormatTextdirectionRToLOutlined.tsx b/src/IconFormatTextdirectionRToLOutlined.tsx index 2054a7900..79ebe8f02 100644 --- a/src/IconFormatTextdirectionRToLOutlined.tsx +++ b/src/IconFormatTextdirectionRToLOutlined.tsx @@ -10,4 +10,4 @@ const IconFormatTextdirectionRToLOutlined: React.FC = ({ ) -export { IconFormatTextdirectionRToLOutlined as default } +export default IconFormatTextdirectionRToLOutlined diff --git a/src/IconFormatTextdirectionRToLOutlinedFilled.tsx b/src/IconFormatTextdirectionRToLOutlinedFilled.tsx index ecc9052d3..6d308307e 100644 --- a/src/IconFormatTextdirectionRToLOutlinedFilled.tsx +++ b/src/IconFormatTextdirectionRToLOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconFormatTextdirectionRToLOutlinedFilled: React.FC = ({ ) -export { IconFormatTextdirectionRToLOutlinedFilled as default } +export default IconFormatTextdirectionRToLOutlinedFilled diff --git a/src/IconFormatTextdirectionRToLRounded.tsx b/src/IconFormatTextdirectionRToLRounded.tsx index f6f6f7593..62f2a9c21 100644 --- a/src/IconFormatTextdirectionRToLRounded.tsx +++ b/src/IconFormatTextdirectionRToLRounded.tsx @@ -10,4 +10,4 @@ const IconFormatTextdirectionRToLRounded: React.FC = ({ ) -export { IconFormatTextdirectionRToLRounded as default } +export default IconFormatTextdirectionRToLRounded diff --git a/src/IconFormatTextdirectionRToLRoundedFilled.tsx b/src/IconFormatTextdirectionRToLRoundedFilled.tsx index fa963e445..93cc0a7d9 100644 --- a/src/IconFormatTextdirectionRToLRoundedFilled.tsx +++ b/src/IconFormatTextdirectionRToLRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconFormatTextdirectionRToLRoundedFilled: React.FC = ({ ) -export { IconFormatTextdirectionRToLRoundedFilled as default } +export default IconFormatTextdirectionRToLRoundedFilled diff --git a/src/IconFormatTextdirectionRToLSharp.tsx b/src/IconFormatTextdirectionRToLSharp.tsx index bd6ba959d..407ce225c 100644 --- a/src/IconFormatTextdirectionRToLSharp.tsx +++ b/src/IconFormatTextdirectionRToLSharp.tsx @@ -10,4 +10,4 @@ const IconFormatTextdirectionRToLSharp: React.FC = ({ ) -export { IconFormatTextdirectionRToLSharp as default } +export default IconFormatTextdirectionRToLSharp diff --git a/src/IconFormatTextdirectionRToLSharpFilled.tsx b/src/IconFormatTextdirectionRToLSharpFilled.tsx index cf0e7f641..d7f394ab7 100644 --- a/src/IconFormatTextdirectionRToLSharpFilled.tsx +++ b/src/IconFormatTextdirectionRToLSharpFilled.tsx @@ -10,4 +10,4 @@ const IconFormatTextdirectionRToLSharpFilled: React.FC = ({ ) -export { IconFormatTextdirectionRToLSharpFilled as default } +export default IconFormatTextdirectionRToLSharpFilled diff --git a/src/IconFormatTextdirectionVerticalOutlined.tsx b/src/IconFormatTextdirectionVerticalOutlined.tsx index 0499d9602..c03e56698 100644 --- a/src/IconFormatTextdirectionVerticalOutlined.tsx +++ b/src/IconFormatTextdirectionVerticalOutlined.tsx @@ -10,4 +10,4 @@ const IconFormatTextdirectionVerticalOutlined: React.FC = ({ ) -export { IconFormatTextdirectionVerticalOutlined as default } +export default IconFormatTextdirectionVerticalOutlined diff --git a/src/IconFormatTextdirectionVerticalOutlinedFilled.tsx b/src/IconFormatTextdirectionVerticalOutlinedFilled.tsx index 95210f0b6..751359e71 100644 --- a/src/IconFormatTextdirectionVerticalOutlinedFilled.tsx +++ b/src/IconFormatTextdirectionVerticalOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconFormatTextdirectionVerticalOutlinedFilled: React.FC = ({ ) -export { IconFormatTextdirectionVerticalOutlinedFilled as default } +export default IconFormatTextdirectionVerticalOutlinedFilled diff --git a/src/IconFormatTextdirectionVerticalRounded.tsx b/src/IconFormatTextdirectionVerticalRounded.tsx index 5eb02d8c0..d78653ed8 100644 --- a/src/IconFormatTextdirectionVerticalRounded.tsx +++ b/src/IconFormatTextdirectionVerticalRounded.tsx @@ -10,4 +10,4 @@ const IconFormatTextdirectionVerticalRounded: React.FC = ({ ) -export { IconFormatTextdirectionVerticalRounded as default } +export default IconFormatTextdirectionVerticalRounded diff --git a/src/IconFormatTextdirectionVerticalRoundedFilled.tsx b/src/IconFormatTextdirectionVerticalRoundedFilled.tsx index 21c7966be..2a9592b2c 100644 --- a/src/IconFormatTextdirectionVerticalRoundedFilled.tsx +++ b/src/IconFormatTextdirectionVerticalRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconFormatTextdirectionVerticalRoundedFilled: React.FC = ({ ) -export { IconFormatTextdirectionVerticalRoundedFilled as default } +export default IconFormatTextdirectionVerticalRoundedFilled diff --git a/src/IconFormatTextdirectionVerticalSharp.tsx b/src/IconFormatTextdirectionVerticalSharp.tsx index 5c54f8db6..058c5546d 100644 --- a/src/IconFormatTextdirectionVerticalSharp.tsx +++ b/src/IconFormatTextdirectionVerticalSharp.tsx @@ -10,4 +10,4 @@ const IconFormatTextdirectionVerticalSharp: React.FC = ({ ) -export { IconFormatTextdirectionVerticalSharp as default } +export default IconFormatTextdirectionVerticalSharp diff --git a/src/IconFormatTextdirectionVerticalSharpFilled.tsx b/src/IconFormatTextdirectionVerticalSharpFilled.tsx index 826a00f9d..7479ed306 100644 --- a/src/IconFormatTextdirectionVerticalSharpFilled.tsx +++ b/src/IconFormatTextdirectionVerticalSharpFilled.tsx @@ -10,4 +10,4 @@ const IconFormatTextdirectionVerticalSharpFilled: React.FC = ({ ) -export { IconFormatTextdirectionVerticalSharpFilled as default } +export default IconFormatTextdirectionVerticalSharpFilled diff --git a/src/IconFormatUnderlinedOutlined.tsx b/src/IconFormatUnderlinedOutlined.tsx index e85b08ca6..4ed12e5cc 100644 --- a/src/IconFormatUnderlinedOutlined.tsx +++ b/src/IconFormatUnderlinedOutlined.tsx @@ -8,4 +8,4 @@ const IconFormatUnderlinedOutlined: React.FC = ({ ...props }) => ( ) -export { IconFormatUnderlinedOutlined as default } +export default IconFormatUnderlinedOutlined diff --git a/src/IconFormatUnderlinedOutlinedFilled.tsx b/src/IconFormatUnderlinedOutlinedFilled.tsx index 09c0f57cb..d7bef1f69 100644 --- a/src/IconFormatUnderlinedOutlinedFilled.tsx +++ b/src/IconFormatUnderlinedOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconFormatUnderlinedOutlinedFilled: React.FC = ({ ) -export { IconFormatUnderlinedOutlinedFilled as default } +export default IconFormatUnderlinedOutlinedFilled diff --git a/src/IconFormatUnderlinedRounded.tsx b/src/IconFormatUnderlinedRounded.tsx index 8f833429b..57a448b65 100644 --- a/src/IconFormatUnderlinedRounded.tsx +++ b/src/IconFormatUnderlinedRounded.tsx @@ -8,4 +8,4 @@ const IconFormatUnderlinedRounded: React.FC = ({ ...props }) => ( ) -export { IconFormatUnderlinedRounded as default } +export default IconFormatUnderlinedRounded diff --git a/src/IconFormatUnderlinedRoundedFilled.tsx b/src/IconFormatUnderlinedRoundedFilled.tsx index 738d762f0..236920973 100644 --- a/src/IconFormatUnderlinedRoundedFilled.tsx +++ b/src/IconFormatUnderlinedRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconFormatUnderlinedRoundedFilled: React.FC = ({ ) -export { IconFormatUnderlinedRoundedFilled as default } +export default IconFormatUnderlinedRoundedFilled diff --git a/src/IconFormatUnderlinedSharp.tsx b/src/IconFormatUnderlinedSharp.tsx index ad91968e9..dd991faee 100644 --- a/src/IconFormatUnderlinedSharp.tsx +++ b/src/IconFormatUnderlinedSharp.tsx @@ -8,4 +8,4 @@ const IconFormatUnderlinedSharp: React.FC = ({ ...props }) => ( ) -export { IconFormatUnderlinedSharp as default } +export default IconFormatUnderlinedSharp diff --git a/src/IconFormatUnderlinedSharpFilled.tsx b/src/IconFormatUnderlinedSharpFilled.tsx index 5f9711da7..0db4fd2ab 100644 --- a/src/IconFormatUnderlinedSharpFilled.tsx +++ b/src/IconFormatUnderlinedSharpFilled.tsx @@ -8,4 +8,4 @@ const IconFormatUnderlinedSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconFormatUnderlinedSharpFilled as default } +export default IconFormatUnderlinedSharpFilled diff --git a/src/IconFormatUnderlinedSquiggleOutlined.tsx b/src/IconFormatUnderlinedSquiggleOutlined.tsx index 77ff3dd5e..74a968101 100644 --- a/src/IconFormatUnderlinedSquiggleOutlined.tsx +++ b/src/IconFormatUnderlinedSquiggleOutlined.tsx @@ -10,4 +10,4 @@ const IconFormatUnderlinedSquiggleOutlined: React.FC = ({ ) -export { IconFormatUnderlinedSquiggleOutlined as default } +export default IconFormatUnderlinedSquiggleOutlined diff --git a/src/IconFormatUnderlinedSquiggleOutlinedFilled.tsx b/src/IconFormatUnderlinedSquiggleOutlinedFilled.tsx index cf1fd13e5..fe235e9b7 100644 --- a/src/IconFormatUnderlinedSquiggleOutlinedFilled.tsx +++ b/src/IconFormatUnderlinedSquiggleOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconFormatUnderlinedSquiggleOutlinedFilled: React.FC = ({ ) -export { IconFormatUnderlinedSquiggleOutlinedFilled as default } +export default IconFormatUnderlinedSquiggleOutlinedFilled diff --git a/src/IconFormatUnderlinedSquiggleRounded.tsx b/src/IconFormatUnderlinedSquiggleRounded.tsx index f10914286..3c2679ea9 100644 --- a/src/IconFormatUnderlinedSquiggleRounded.tsx +++ b/src/IconFormatUnderlinedSquiggleRounded.tsx @@ -10,4 +10,4 @@ const IconFormatUnderlinedSquiggleRounded: React.FC = ({ ) -export { IconFormatUnderlinedSquiggleRounded as default } +export default IconFormatUnderlinedSquiggleRounded diff --git a/src/IconFormatUnderlinedSquiggleRoundedFilled.tsx b/src/IconFormatUnderlinedSquiggleRoundedFilled.tsx index f3ddfc524..1140993a2 100644 --- a/src/IconFormatUnderlinedSquiggleRoundedFilled.tsx +++ b/src/IconFormatUnderlinedSquiggleRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconFormatUnderlinedSquiggleRoundedFilled: React.FC = ({ ) -export { IconFormatUnderlinedSquiggleRoundedFilled as default } +export default IconFormatUnderlinedSquiggleRoundedFilled diff --git a/src/IconFormatUnderlinedSquiggleSharp.tsx b/src/IconFormatUnderlinedSquiggleSharp.tsx index 4a76f3e24..e5d661e80 100644 --- a/src/IconFormatUnderlinedSquiggleSharp.tsx +++ b/src/IconFormatUnderlinedSquiggleSharp.tsx @@ -10,4 +10,4 @@ const IconFormatUnderlinedSquiggleSharp: React.FC = ({ ) -export { IconFormatUnderlinedSquiggleSharp as default } +export default IconFormatUnderlinedSquiggleSharp diff --git a/src/IconFormatUnderlinedSquiggleSharpFilled.tsx b/src/IconFormatUnderlinedSquiggleSharpFilled.tsx index d71eec891..d8cca4d80 100644 --- a/src/IconFormatUnderlinedSquiggleSharpFilled.tsx +++ b/src/IconFormatUnderlinedSquiggleSharpFilled.tsx @@ -10,4 +10,4 @@ const IconFormatUnderlinedSquiggleSharpFilled: React.FC = ({ ) -export { IconFormatUnderlinedSquiggleSharpFilled as default } +export default IconFormatUnderlinedSquiggleSharpFilled diff --git a/src/IconFormsAddOnOutlined.tsx b/src/IconFormsAddOnOutlined.tsx index 310685ff8..296e8d7d2 100644 --- a/src/IconFormsAddOnOutlined.tsx +++ b/src/IconFormsAddOnOutlined.tsx @@ -8,4 +8,4 @@ const IconFormsAddOnOutlined: React.FC = ({ ...props }) => ( ) -export { IconFormsAddOnOutlined as default } +export default IconFormsAddOnOutlined diff --git a/src/IconFormsAddOnOutlinedFilled.tsx b/src/IconFormsAddOnOutlinedFilled.tsx index db6958997..4687be722 100644 --- a/src/IconFormsAddOnOutlinedFilled.tsx +++ b/src/IconFormsAddOnOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconFormsAddOnOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconFormsAddOnOutlinedFilled as default } +export default IconFormsAddOnOutlinedFilled diff --git a/src/IconFormsAddOnRounded.tsx b/src/IconFormsAddOnRounded.tsx index 5305368fd..d4291d82c 100644 --- a/src/IconFormsAddOnRounded.tsx +++ b/src/IconFormsAddOnRounded.tsx @@ -8,4 +8,4 @@ const IconFormsAddOnRounded: React.FC = ({ ...props }) => ( ) -export { IconFormsAddOnRounded as default } +export default IconFormsAddOnRounded diff --git a/src/IconFormsAddOnRoundedFilled.tsx b/src/IconFormsAddOnRoundedFilled.tsx index 79a31ec72..01c46ce95 100644 --- a/src/IconFormsAddOnRoundedFilled.tsx +++ b/src/IconFormsAddOnRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconFormsAddOnRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconFormsAddOnRoundedFilled as default } +export default IconFormsAddOnRoundedFilled diff --git a/src/IconFormsAddOnSharp.tsx b/src/IconFormsAddOnSharp.tsx index 92abc98a6..6db159aa0 100644 --- a/src/IconFormsAddOnSharp.tsx +++ b/src/IconFormsAddOnSharp.tsx @@ -8,4 +8,4 @@ const IconFormsAddOnSharp: React.FC = ({ ...props }) => ( ) -export { IconFormsAddOnSharp as default } +export default IconFormsAddOnSharp diff --git a/src/IconFormsAddOnSharpFilled.tsx b/src/IconFormsAddOnSharpFilled.tsx index 634357243..a25b56297 100644 --- a/src/IconFormsAddOnSharpFilled.tsx +++ b/src/IconFormsAddOnSharpFilled.tsx @@ -8,4 +8,4 @@ const IconFormsAddOnSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconFormsAddOnSharpFilled as default } +export default IconFormsAddOnSharpFilled diff --git a/src/IconFormsAppsScriptOutlined.tsx b/src/IconFormsAppsScriptOutlined.tsx index f7221495b..5f129b57e 100644 --- a/src/IconFormsAppsScriptOutlined.tsx +++ b/src/IconFormsAppsScriptOutlined.tsx @@ -8,4 +8,4 @@ const IconFormsAppsScriptOutlined: React.FC = ({ ...props }) => ( ) -export { IconFormsAppsScriptOutlined as default } +export default IconFormsAppsScriptOutlined diff --git a/src/IconFormsAppsScriptOutlinedFilled.tsx b/src/IconFormsAppsScriptOutlinedFilled.tsx index b6f733b52..22ac2787a 100644 --- a/src/IconFormsAppsScriptOutlinedFilled.tsx +++ b/src/IconFormsAppsScriptOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconFormsAppsScriptOutlinedFilled: React.FC = ({ ) -export { IconFormsAppsScriptOutlinedFilled as default } +export default IconFormsAppsScriptOutlinedFilled diff --git a/src/IconFormsAppsScriptRounded.tsx b/src/IconFormsAppsScriptRounded.tsx index 3629b8916..04769a21e 100644 --- a/src/IconFormsAppsScriptRounded.tsx +++ b/src/IconFormsAppsScriptRounded.tsx @@ -8,4 +8,4 @@ const IconFormsAppsScriptRounded: React.FC = ({ ...props }) => ( ) -export { IconFormsAppsScriptRounded as default } +export default IconFormsAppsScriptRounded diff --git a/src/IconFormsAppsScriptRoundedFilled.tsx b/src/IconFormsAppsScriptRoundedFilled.tsx index 006826b4e..ca27d52fc 100644 --- a/src/IconFormsAppsScriptRoundedFilled.tsx +++ b/src/IconFormsAppsScriptRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconFormsAppsScriptRoundedFilled: React.FC = ({ ) -export { IconFormsAppsScriptRoundedFilled as default } +export default IconFormsAppsScriptRoundedFilled diff --git a/src/IconFormsAppsScriptSharp.tsx b/src/IconFormsAppsScriptSharp.tsx index 09af3db96..62c803bb8 100644 --- a/src/IconFormsAppsScriptSharp.tsx +++ b/src/IconFormsAppsScriptSharp.tsx @@ -8,4 +8,4 @@ const IconFormsAppsScriptSharp: React.FC = ({ ...props }) => ( ) -export { IconFormsAppsScriptSharp as default } +export default IconFormsAppsScriptSharp diff --git a/src/IconFormsAppsScriptSharpFilled.tsx b/src/IconFormsAppsScriptSharpFilled.tsx index 7f83f5adb..5ad514023 100644 --- a/src/IconFormsAppsScriptSharpFilled.tsx +++ b/src/IconFormsAppsScriptSharpFilled.tsx @@ -8,4 +8,4 @@ const IconFormsAppsScriptSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconFormsAppsScriptSharpFilled as default } +export default IconFormsAppsScriptSharpFilled diff --git a/src/IconFortOutlined.tsx b/src/IconFortOutlined.tsx index cef8cf833..4705c80f3 100644 --- a/src/IconFortOutlined.tsx +++ b/src/IconFortOutlined.tsx @@ -8,4 +8,4 @@ const IconFortOutlined: React.FC = ({ ...props }) => ( ) -export { IconFortOutlined as default } +export default IconFortOutlined diff --git a/src/IconFortOutlinedFilled.tsx b/src/IconFortOutlinedFilled.tsx index a5649eaba..ce4ae1b57 100644 --- a/src/IconFortOutlinedFilled.tsx +++ b/src/IconFortOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconFortOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconFortOutlinedFilled as default } +export default IconFortOutlinedFilled diff --git a/src/IconFortRounded.tsx b/src/IconFortRounded.tsx index 3abf7f8f2..e50a72a8b 100644 --- a/src/IconFortRounded.tsx +++ b/src/IconFortRounded.tsx @@ -8,4 +8,4 @@ const IconFortRounded: React.FC = ({ ...props }) => ( ) -export { IconFortRounded as default } +export default IconFortRounded diff --git a/src/IconFortRoundedFilled.tsx b/src/IconFortRoundedFilled.tsx index f3a67e25f..6d0533ffa 100644 --- a/src/IconFortRoundedFilled.tsx +++ b/src/IconFortRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconFortRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconFortRoundedFilled as default } +export default IconFortRoundedFilled diff --git a/src/IconFortSharp.tsx b/src/IconFortSharp.tsx index dba0c1aeb..25c24acbe 100644 --- a/src/IconFortSharp.tsx +++ b/src/IconFortSharp.tsx @@ -8,4 +8,4 @@ const IconFortSharp: React.FC = ({ ...props }) => ( ) -export { IconFortSharp as default } +export default IconFortSharp diff --git a/src/IconFortSharpFilled.tsx b/src/IconFortSharpFilled.tsx index 8cdefebce..c03e39237 100644 --- a/src/IconFortSharpFilled.tsx +++ b/src/IconFortSharpFilled.tsx @@ -8,4 +8,4 @@ const IconFortSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconFortSharpFilled as default } +export default IconFortSharpFilled diff --git a/src/IconForumOutlined.tsx b/src/IconForumOutlined.tsx index acc0cadb4..ce054c944 100644 --- a/src/IconForumOutlined.tsx +++ b/src/IconForumOutlined.tsx @@ -8,4 +8,4 @@ const IconForumOutlined: React.FC = ({ ...props }) => ( ) -export { IconForumOutlined as default } +export default IconForumOutlined diff --git a/src/IconForumOutlinedFilled.tsx b/src/IconForumOutlinedFilled.tsx index f00029472..9cd0877ae 100644 --- a/src/IconForumOutlinedFilled.tsx +++ b/src/IconForumOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconForumOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconForumOutlinedFilled as default } +export default IconForumOutlinedFilled diff --git a/src/IconForumRounded.tsx b/src/IconForumRounded.tsx index 342f08b2c..cb9b3830f 100644 --- a/src/IconForumRounded.tsx +++ b/src/IconForumRounded.tsx @@ -8,4 +8,4 @@ const IconForumRounded: React.FC = ({ ...props }) => ( ) -export { IconForumRounded as default } +export default IconForumRounded diff --git a/src/IconForumRoundedFilled.tsx b/src/IconForumRoundedFilled.tsx index abfdba540..fd2c37be4 100644 --- a/src/IconForumRoundedFilled.tsx +++ b/src/IconForumRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconForumRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconForumRoundedFilled as default } +export default IconForumRoundedFilled diff --git a/src/IconForumSharp.tsx b/src/IconForumSharp.tsx index 7537ff4eb..91511bb09 100644 --- a/src/IconForumSharp.tsx +++ b/src/IconForumSharp.tsx @@ -8,4 +8,4 @@ const IconForumSharp: React.FC = ({ ...props }) => ( ) -export { IconForumSharp as default } +export default IconForumSharp diff --git a/src/IconForumSharpFilled.tsx b/src/IconForumSharpFilled.tsx index 4c5e9cfd5..c0e136fc9 100644 --- a/src/IconForumSharpFilled.tsx +++ b/src/IconForumSharpFilled.tsx @@ -8,4 +8,4 @@ const IconForumSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconForumSharpFilled as default } +export default IconForumSharpFilled diff --git a/src/IconForward10Outlined.tsx b/src/IconForward10Outlined.tsx index 76287dc2d..fde74eaab 100644 --- a/src/IconForward10Outlined.tsx +++ b/src/IconForward10Outlined.tsx @@ -8,4 +8,4 @@ const IconForward10Outlined: React.FC = ({ ...props }) => ( ) -export { IconForward10Outlined as default } +export default IconForward10Outlined diff --git a/src/IconForward10OutlinedFilled.tsx b/src/IconForward10OutlinedFilled.tsx index 5a15c29fc..b738c045e 100644 --- a/src/IconForward10OutlinedFilled.tsx +++ b/src/IconForward10OutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconForward10OutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconForward10OutlinedFilled as default } +export default IconForward10OutlinedFilled diff --git a/src/IconForward10Rounded.tsx b/src/IconForward10Rounded.tsx index 1e08d1fdd..b815e4fb1 100644 --- a/src/IconForward10Rounded.tsx +++ b/src/IconForward10Rounded.tsx @@ -8,4 +8,4 @@ const IconForward10Rounded: React.FC = ({ ...props }) => ( ) -export { IconForward10Rounded as default } +export default IconForward10Rounded diff --git a/src/IconForward10RoundedFilled.tsx b/src/IconForward10RoundedFilled.tsx index 6a494b873..a81abb6ae 100644 --- a/src/IconForward10RoundedFilled.tsx +++ b/src/IconForward10RoundedFilled.tsx @@ -8,4 +8,4 @@ const IconForward10RoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconForward10RoundedFilled as default } +export default IconForward10RoundedFilled diff --git a/src/IconForward10Sharp.tsx b/src/IconForward10Sharp.tsx index 1e0943d5e..6bcbf96bd 100644 --- a/src/IconForward10Sharp.tsx +++ b/src/IconForward10Sharp.tsx @@ -8,4 +8,4 @@ const IconForward10Sharp: React.FC = ({ ...props }) => ( ) -export { IconForward10Sharp as default } +export default IconForward10Sharp diff --git a/src/IconForward10SharpFilled.tsx b/src/IconForward10SharpFilled.tsx index 7c6662c1f..ef0ee006f 100644 --- a/src/IconForward10SharpFilled.tsx +++ b/src/IconForward10SharpFilled.tsx @@ -8,4 +8,4 @@ const IconForward10SharpFilled: React.FC = ({ ...props }) => ( ) -export { IconForward10SharpFilled as default } +export default IconForward10SharpFilled diff --git a/src/IconForward30Outlined.tsx b/src/IconForward30Outlined.tsx index 0136fbcaf..37d7e650c 100644 --- a/src/IconForward30Outlined.tsx +++ b/src/IconForward30Outlined.tsx @@ -8,4 +8,4 @@ const IconForward30Outlined: React.FC = ({ ...props }) => ( ) -export { IconForward30Outlined as default } +export default IconForward30Outlined diff --git a/src/IconForward30OutlinedFilled.tsx b/src/IconForward30OutlinedFilled.tsx index 8401e85ac..96d75576f 100644 --- a/src/IconForward30OutlinedFilled.tsx +++ b/src/IconForward30OutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconForward30OutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconForward30OutlinedFilled as default } +export default IconForward30OutlinedFilled diff --git a/src/IconForward30Rounded.tsx b/src/IconForward30Rounded.tsx index 0c1deb690..f1a5122e2 100644 --- a/src/IconForward30Rounded.tsx +++ b/src/IconForward30Rounded.tsx @@ -8,4 +8,4 @@ const IconForward30Rounded: React.FC = ({ ...props }) => ( ) -export { IconForward30Rounded as default } +export default IconForward30Rounded diff --git a/src/IconForward30RoundedFilled.tsx b/src/IconForward30RoundedFilled.tsx index 2be1f5b73..7719651e4 100644 --- a/src/IconForward30RoundedFilled.tsx +++ b/src/IconForward30RoundedFilled.tsx @@ -8,4 +8,4 @@ const IconForward30RoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconForward30RoundedFilled as default } +export default IconForward30RoundedFilled diff --git a/src/IconForward30Sharp.tsx b/src/IconForward30Sharp.tsx index 61c11017d..a54ef3d36 100644 --- a/src/IconForward30Sharp.tsx +++ b/src/IconForward30Sharp.tsx @@ -8,4 +8,4 @@ const IconForward30Sharp: React.FC = ({ ...props }) => ( ) -export { IconForward30Sharp as default } +export default IconForward30Sharp diff --git a/src/IconForward30SharpFilled.tsx b/src/IconForward30SharpFilled.tsx index 73a1a84de..5cc2069d1 100644 --- a/src/IconForward30SharpFilled.tsx +++ b/src/IconForward30SharpFilled.tsx @@ -8,4 +8,4 @@ const IconForward30SharpFilled: React.FC = ({ ...props }) => ( ) -export { IconForward30SharpFilled as default } +export default IconForward30SharpFilled diff --git a/src/IconForward5Outlined.tsx b/src/IconForward5Outlined.tsx index 7332d7c8f..4e7e10979 100644 --- a/src/IconForward5Outlined.tsx +++ b/src/IconForward5Outlined.tsx @@ -8,4 +8,4 @@ const IconForward5Outlined: React.FC = ({ ...props }) => ( ) -export { IconForward5Outlined as default } +export default IconForward5Outlined diff --git a/src/IconForward5OutlinedFilled.tsx b/src/IconForward5OutlinedFilled.tsx index fdecabe4a..e04448c08 100644 --- a/src/IconForward5OutlinedFilled.tsx +++ b/src/IconForward5OutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconForward5OutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconForward5OutlinedFilled as default } +export default IconForward5OutlinedFilled diff --git a/src/IconForward5Rounded.tsx b/src/IconForward5Rounded.tsx index 42e09917f..9f338a3f9 100644 --- a/src/IconForward5Rounded.tsx +++ b/src/IconForward5Rounded.tsx @@ -8,4 +8,4 @@ const IconForward5Rounded: React.FC = ({ ...props }) => ( ) -export { IconForward5Rounded as default } +export default IconForward5Rounded diff --git a/src/IconForward5RoundedFilled.tsx b/src/IconForward5RoundedFilled.tsx index a2d575510..0ff596651 100644 --- a/src/IconForward5RoundedFilled.tsx +++ b/src/IconForward5RoundedFilled.tsx @@ -8,4 +8,4 @@ const IconForward5RoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconForward5RoundedFilled as default } +export default IconForward5RoundedFilled diff --git a/src/IconForward5Sharp.tsx b/src/IconForward5Sharp.tsx index 47d8eaf17..0cb3c6055 100644 --- a/src/IconForward5Sharp.tsx +++ b/src/IconForward5Sharp.tsx @@ -8,4 +8,4 @@ const IconForward5Sharp: React.FC = ({ ...props }) => ( ) -export { IconForward5Sharp as default } +export default IconForward5Sharp diff --git a/src/IconForward5SharpFilled.tsx b/src/IconForward5SharpFilled.tsx index 7f009c11c..c68c87257 100644 --- a/src/IconForward5SharpFilled.tsx +++ b/src/IconForward5SharpFilled.tsx @@ -8,4 +8,4 @@ const IconForward5SharpFilled: React.FC = ({ ...props }) => ( ) -export { IconForward5SharpFilled as default } +export default IconForward5SharpFilled diff --git a/src/IconForwardCircleOutlined.tsx b/src/IconForwardCircleOutlined.tsx index e557a5924..b990d3ff0 100644 --- a/src/IconForwardCircleOutlined.tsx +++ b/src/IconForwardCircleOutlined.tsx @@ -8,4 +8,4 @@ const IconForwardCircleOutlined: React.FC = ({ ...props }) => ( ) -export { IconForwardCircleOutlined as default } +export default IconForwardCircleOutlined diff --git a/src/IconForwardCircleOutlinedFilled.tsx b/src/IconForwardCircleOutlinedFilled.tsx index acdeb2e80..a9f15d2e2 100644 --- a/src/IconForwardCircleOutlinedFilled.tsx +++ b/src/IconForwardCircleOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconForwardCircleOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconForwardCircleOutlinedFilled as default } +export default IconForwardCircleOutlinedFilled diff --git a/src/IconForwardCircleRounded.tsx b/src/IconForwardCircleRounded.tsx index 92df72eb6..600ea1d0a 100644 --- a/src/IconForwardCircleRounded.tsx +++ b/src/IconForwardCircleRounded.tsx @@ -8,4 +8,4 @@ const IconForwardCircleRounded: React.FC = ({ ...props }) => ( ) -export { IconForwardCircleRounded as default } +export default IconForwardCircleRounded diff --git a/src/IconForwardCircleRoundedFilled.tsx b/src/IconForwardCircleRoundedFilled.tsx index 09fc02686..73e771a41 100644 --- a/src/IconForwardCircleRoundedFilled.tsx +++ b/src/IconForwardCircleRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconForwardCircleRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconForwardCircleRoundedFilled as default } +export default IconForwardCircleRoundedFilled diff --git a/src/IconForwardCircleSharp.tsx b/src/IconForwardCircleSharp.tsx index d551b893f..0464ff0ef 100644 --- a/src/IconForwardCircleSharp.tsx +++ b/src/IconForwardCircleSharp.tsx @@ -8,4 +8,4 @@ const IconForwardCircleSharp: React.FC = ({ ...props }) => ( ) -export { IconForwardCircleSharp as default } +export default IconForwardCircleSharp diff --git a/src/IconForwardCircleSharpFilled.tsx b/src/IconForwardCircleSharpFilled.tsx index 5e4504cc8..7f8766c42 100644 --- a/src/IconForwardCircleSharpFilled.tsx +++ b/src/IconForwardCircleSharpFilled.tsx @@ -8,4 +8,4 @@ const IconForwardCircleSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconForwardCircleSharpFilled as default } +export default IconForwardCircleSharpFilled diff --git a/src/IconForwardMediaOutlined.tsx b/src/IconForwardMediaOutlined.tsx index ec912cda4..5d3244a3a 100644 --- a/src/IconForwardMediaOutlined.tsx +++ b/src/IconForwardMediaOutlined.tsx @@ -8,4 +8,4 @@ const IconForwardMediaOutlined: React.FC = ({ ...props }) => ( ) -export { IconForwardMediaOutlined as default } +export default IconForwardMediaOutlined diff --git a/src/IconForwardMediaOutlinedFilled.tsx b/src/IconForwardMediaOutlinedFilled.tsx index e27044e97..4a88c34c1 100644 --- a/src/IconForwardMediaOutlinedFilled.tsx +++ b/src/IconForwardMediaOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconForwardMediaOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconForwardMediaOutlinedFilled as default } +export default IconForwardMediaOutlinedFilled diff --git a/src/IconForwardMediaRounded.tsx b/src/IconForwardMediaRounded.tsx index 5591d12c0..ac5dedcfc 100644 --- a/src/IconForwardMediaRounded.tsx +++ b/src/IconForwardMediaRounded.tsx @@ -8,4 +8,4 @@ const IconForwardMediaRounded: React.FC = ({ ...props }) => ( ) -export { IconForwardMediaRounded as default } +export default IconForwardMediaRounded diff --git a/src/IconForwardMediaRoundedFilled.tsx b/src/IconForwardMediaRoundedFilled.tsx index 600357333..780788177 100644 --- a/src/IconForwardMediaRoundedFilled.tsx +++ b/src/IconForwardMediaRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconForwardMediaRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconForwardMediaRoundedFilled as default } +export default IconForwardMediaRoundedFilled diff --git a/src/IconForwardMediaSharp.tsx b/src/IconForwardMediaSharp.tsx index 3c2f30ffd..9bae29bf9 100644 --- a/src/IconForwardMediaSharp.tsx +++ b/src/IconForwardMediaSharp.tsx @@ -8,4 +8,4 @@ const IconForwardMediaSharp: React.FC = ({ ...props }) => ( ) -export { IconForwardMediaSharp as default } +export default IconForwardMediaSharp diff --git a/src/IconForwardMediaSharpFilled.tsx b/src/IconForwardMediaSharpFilled.tsx index bdb698d9e..f933db86f 100644 --- a/src/IconForwardMediaSharpFilled.tsx +++ b/src/IconForwardMediaSharpFilled.tsx @@ -8,4 +8,4 @@ const IconForwardMediaSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconForwardMediaSharpFilled as default } +export default IconForwardMediaSharpFilled diff --git a/src/IconForwardOutlined.tsx b/src/IconForwardOutlined.tsx index 7a838b1a2..7a9caed2a 100644 --- a/src/IconForwardOutlined.tsx +++ b/src/IconForwardOutlined.tsx @@ -8,4 +8,4 @@ const IconForwardOutlined: React.FC = ({ ...props }) => ( ) -export { IconForwardOutlined as default } +export default IconForwardOutlined diff --git a/src/IconForwardOutlinedFilled.tsx b/src/IconForwardOutlinedFilled.tsx index d8e7edb8d..28508d970 100644 --- a/src/IconForwardOutlinedFilled.tsx +++ b/src/IconForwardOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconForwardOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconForwardOutlinedFilled as default } +export default IconForwardOutlinedFilled diff --git a/src/IconForwardRounded.tsx b/src/IconForwardRounded.tsx index f4858508a..18bc2222c 100644 --- a/src/IconForwardRounded.tsx +++ b/src/IconForwardRounded.tsx @@ -8,4 +8,4 @@ const IconForwardRounded: React.FC = ({ ...props }) => ( ) -export { IconForwardRounded as default } +export default IconForwardRounded diff --git a/src/IconForwardRoundedFilled.tsx b/src/IconForwardRoundedFilled.tsx index 22cd99ceb..6cffc5d33 100644 --- a/src/IconForwardRoundedFilled.tsx +++ b/src/IconForwardRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconForwardRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconForwardRoundedFilled as default } +export default IconForwardRoundedFilled diff --git a/src/IconForwardSharp.tsx b/src/IconForwardSharp.tsx index 4400126f7..42e171b4e 100644 --- a/src/IconForwardSharp.tsx +++ b/src/IconForwardSharp.tsx @@ -8,4 +8,4 @@ const IconForwardSharp: React.FC = ({ ...props }) => ( ) -export { IconForwardSharp as default } +export default IconForwardSharp diff --git a/src/IconForwardSharpFilled.tsx b/src/IconForwardSharpFilled.tsx index 304ad7c25..2387b3405 100644 --- a/src/IconForwardSharpFilled.tsx +++ b/src/IconForwardSharpFilled.tsx @@ -8,4 +8,4 @@ const IconForwardSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconForwardSharpFilled as default } +export default IconForwardSharpFilled diff --git a/src/IconForwardToInboxOutlined.tsx b/src/IconForwardToInboxOutlined.tsx index 97a14d3d8..bb01f618f 100644 --- a/src/IconForwardToInboxOutlined.tsx +++ b/src/IconForwardToInboxOutlined.tsx @@ -8,4 +8,4 @@ const IconForwardToInboxOutlined: React.FC = ({ ...props }) => ( ) -export { IconForwardToInboxOutlined as default } +export default IconForwardToInboxOutlined diff --git a/src/IconForwardToInboxOutlinedFilled.tsx b/src/IconForwardToInboxOutlinedFilled.tsx index 96c09878a..c8d39245c 100644 --- a/src/IconForwardToInboxOutlinedFilled.tsx +++ b/src/IconForwardToInboxOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconForwardToInboxOutlinedFilled: React.FC = ({ ) -export { IconForwardToInboxOutlinedFilled as default } +export default IconForwardToInboxOutlinedFilled diff --git a/src/IconForwardToInboxRounded.tsx b/src/IconForwardToInboxRounded.tsx index a5e5e315b..599588aa7 100644 --- a/src/IconForwardToInboxRounded.tsx +++ b/src/IconForwardToInboxRounded.tsx @@ -8,4 +8,4 @@ const IconForwardToInboxRounded: React.FC = ({ ...props }) => ( ) -export { IconForwardToInboxRounded as default } +export default IconForwardToInboxRounded diff --git a/src/IconForwardToInboxRoundedFilled.tsx b/src/IconForwardToInboxRoundedFilled.tsx index 9ecc6e998..708331383 100644 --- a/src/IconForwardToInboxRoundedFilled.tsx +++ b/src/IconForwardToInboxRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconForwardToInboxRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconForwardToInboxRoundedFilled as default } +export default IconForwardToInboxRoundedFilled diff --git a/src/IconForwardToInboxSharp.tsx b/src/IconForwardToInboxSharp.tsx index 1d868cce4..a27d2cee2 100644 --- a/src/IconForwardToInboxSharp.tsx +++ b/src/IconForwardToInboxSharp.tsx @@ -8,4 +8,4 @@ const IconForwardToInboxSharp: React.FC = ({ ...props }) => ( ) -export { IconForwardToInboxSharp as default } +export default IconForwardToInboxSharp diff --git a/src/IconForwardToInboxSharpFilled.tsx b/src/IconForwardToInboxSharpFilled.tsx index 9f2377094..7c19c04df 100644 --- a/src/IconForwardToInboxSharpFilled.tsx +++ b/src/IconForwardToInboxSharpFilled.tsx @@ -8,4 +8,4 @@ const IconForwardToInboxSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconForwardToInboxSharpFilled as default } +export default IconForwardToInboxSharpFilled diff --git a/src/IconFoundationOutlined.tsx b/src/IconFoundationOutlined.tsx index 140b2c8f5..c7bb9bf3b 100644 --- a/src/IconFoundationOutlined.tsx +++ b/src/IconFoundationOutlined.tsx @@ -8,4 +8,4 @@ const IconFoundationOutlined: React.FC = ({ ...props }) => ( ) -export { IconFoundationOutlined as default } +export default IconFoundationOutlined diff --git a/src/IconFoundationOutlinedFilled.tsx b/src/IconFoundationOutlinedFilled.tsx index 5bf5cd04c..a2058e594 100644 --- a/src/IconFoundationOutlinedFilled.tsx +++ b/src/IconFoundationOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconFoundationOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconFoundationOutlinedFilled as default } +export default IconFoundationOutlinedFilled diff --git a/src/IconFoundationRounded.tsx b/src/IconFoundationRounded.tsx index fd0d988d5..0d8cfcbf4 100644 --- a/src/IconFoundationRounded.tsx +++ b/src/IconFoundationRounded.tsx @@ -8,4 +8,4 @@ const IconFoundationRounded: React.FC = ({ ...props }) => ( ) -export { IconFoundationRounded as default } +export default IconFoundationRounded diff --git a/src/IconFoundationRoundedFilled.tsx b/src/IconFoundationRoundedFilled.tsx index da0f039d5..36c1ebda5 100644 --- a/src/IconFoundationRoundedFilled.tsx +++ b/src/IconFoundationRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconFoundationRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconFoundationRoundedFilled as default } +export default IconFoundationRoundedFilled diff --git a/src/IconFoundationSharp.tsx b/src/IconFoundationSharp.tsx index 91cc0cac9..f896104ce 100644 --- a/src/IconFoundationSharp.tsx +++ b/src/IconFoundationSharp.tsx @@ -8,4 +8,4 @@ const IconFoundationSharp: React.FC = ({ ...props }) => ( ) -export { IconFoundationSharp as default } +export default IconFoundationSharp diff --git a/src/IconFoundationSharpFilled.tsx b/src/IconFoundationSharpFilled.tsx index 7614e045a..d8dc8e27d 100644 --- a/src/IconFoundationSharpFilled.tsx +++ b/src/IconFoundationSharpFilled.tsx @@ -8,4 +8,4 @@ const IconFoundationSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconFoundationSharpFilled as default } +export default IconFoundationSharpFilled diff --git a/src/IconFrameInspectOutlined.tsx b/src/IconFrameInspectOutlined.tsx index 9ed8672a8..c2c7007cf 100644 --- a/src/IconFrameInspectOutlined.tsx +++ b/src/IconFrameInspectOutlined.tsx @@ -8,4 +8,4 @@ const IconFrameInspectOutlined: React.FC = ({ ...props }) => ( ) -export { IconFrameInspectOutlined as default } +export default IconFrameInspectOutlined diff --git a/src/IconFrameInspectOutlinedFilled.tsx b/src/IconFrameInspectOutlinedFilled.tsx index 242b91e92..380106d1b 100644 --- a/src/IconFrameInspectOutlinedFilled.tsx +++ b/src/IconFrameInspectOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconFrameInspectOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconFrameInspectOutlinedFilled as default } +export default IconFrameInspectOutlinedFilled diff --git a/src/IconFrameInspectRounded.tsx b/src/IconFrameInspectRounded.tsx index 5d4d2d45a..6a936e5fa 100644 --- a/src/IconFrameInspectRounded.tsx +++ b/src/IconFrameInspectRounded.tsx @@ -8,4 +8,4 @@ const IconFrameInspectRounded: React.FC = ({ ...props }) => ( ) -export { IconFrameInspectRounded as default } +export default IconFrameInspectRounded diff --git a/src/IconFrameInspectRoundedFilled.tsx b/src/IconFrameInspectRoundedFilled.tsx index 6c7303d4f..581745233 100644 --- a/src/IconFrameInspectRoundedFilled.tsx +++ b/src/IconFrameInspectRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconFrameInspectRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconFrameInspectRoundedFilled as default } +export default IconFrameInspectRoundedFilled diff --git a/src/IconFrameInspectSharp.tsx b/src/IconFrameInspectSharp.tsx index 19fc3a6b6..0bf084a78 100644 --- a/src/IconFrameInspectSharp.tsx +++ b/src/IconFrameInspectSharp.tsx @@ -8,4 +8,4 @@ const IconFrameInspectSharp: React.FC = ({ ...props }) => ( ) -export { IconFrameInspectSharp as default } +export default IconFrameInspectSharp diff --git a/src/IconFrameInspectSharpFilled.tsx b/src/IconFrameInspectSharpFilled.tsx index 503dd558b..2a82fb451 100644 --- a/src/IconFrameInspectSharpFilled.tsx +++ b/src/IconFrameInspectSharpFilled.tsx @@ -8,4 +8,4 @@ const IconFrameInspectSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconFrameInspectSharpFilled as default } +export default IconFrameInspectSharpFilled diff --git a/src/IconFramePersonMicOutlined.tsx b/src/IconFramePersonMicOutlined.tsx index 38d8cea47..b4e1fd8df 100644 --- a/src/IconFramePersonMicOutlined.tsx +++ b/src/IconFramePersonMicOutlined.tsx @@ -8,4 +8,4 @@ const IconFramePersonMicOutlined: React.FC = ({ ...props }) => ( ) -export { IconFramePersonMicOutlined as default } +export default IconFramePersonMicOutlined diff --git a/src/IconFramePersonMicOutlinedFilled.tsx b/src/IconFramePersonMicOutlinedFilled.tsx index 3ce721bb5..dea2f5b8c 100644 --- a/src/IconFramePersonMicOutlinedFilled.tsx +++ b/src/IconFramePersonMicOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconFramePersonMicOutlinedFilled: React.FC = ({ ) -export { IconFramePersonMicOutlinedFilled as default } +export default IconFramePersonMicOutlinedFilled diff --git a/src/IconFramePersonMicRounded.tsx b/src/IconFramePersonMicRounded.tsx index 6f668b81a..8054a8cbe 100644 --- a/src/IconFramePersonMicRounded.tsx +++ b/src/IconFramePersonMicRounded.tsx @@ -8,4 +8,4 @@ const IconFramePersonMicRounded: React.FC = ({ ...props }) => ( ) -export { IconFramePersonMicRounded as default } +export default IconFramePersonMicRounded diff --git a/src/IconFramePersonMicRoundedFilled.tsx b/src/IconFramePersonMicRoundedFilled.tsx index 184df72ac..99d7adcd9 100644 --- a/src/IconFramePersonMicRoundedFilled.tsx +++ b/src/IconFramePersonMicRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconFramePersonMicRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconFramePersonMicRoundedFilled as default } +export default IconFramePersonMicRoundedFilled diff --git a/src/IconFramePersonMicSharp.tsx b/src/IconFramePersonMicSharp.tsx index 2c8eb24be..73d188cc8 100644 --- a/src/IconFramePersonMicSharp.tsx +++ b/src/IconFramePersonMicSharp.tsx @@ -8,4 +8,4 @@ const IconFramePersonMicSharp: React.FC = ({ ...props }) => ( ) -export { IconFramePersonMicSharp as default } +export default IconFramePersonMicSharp diff --git a/src/IconFramePersonMicSharpFilled.tsx b/src/IconFramePersonMicSharpFilled.tsx index 04ef0b9ed..66a889301 100644 --- a/src/IconFramePersonMicSharpFilled.tsx +++ b/src/IconFramePersonMicSharpFilled.tsx @@ -8,4 +8,4 @@ const IconFramePersonMicSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconFramePersonMicSharpFilled as default } +export default IconFramePersonMicSharpFilled diff --git a/src/IconFramePersonOffOutlined.tsx b/src/IconFramePersonOffOutlined.tsx index cad484df0..dbeb7664e 100644 --- a/src/IconFramePersonOffOutlined.tsx +++ b/src/IconFramePersonOffOutlined.tsx @@ -8,4 +8,4 @@ const IconFramePersonOffOutlined: React.FC = ({ ...props }) => ( ) -export { IconFramePersonOffOutlined as default } +export default IconFramePersonOffOutlined diff --git a/src/IconFramePersonOffOutlinedFilled.tsx b/src/IconFramePersonOffOutlinedFilled.tsx index 566d097ae..3db1c6d5d 100644 --- a/src/IconFramePersonOffOutlinedFilled.tsx +++ b/src/IconFramePersonOffOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconFramePersonOffOutlinedFilled: React.FC = ({ ) -export { IconFramePersonOffOutlinedFilled as default } +export default IconFramePersonOffOutlinedFilled diff --git a/src/IconFramePersonOffRounded.tsx b/src/IconFramePersonOffRounded.tsx index 9b723af02..e964a435a 100644 --- a/src/IconFramePersonOffRounded.tsx +++ b/src/IconFramePersonOffRounded.tsx @@ -8,4 +8,4 @@ const IconFramePersonOffRounded: React.FC = ({ ...props }) => ( ) -export { IconFramePersonOffRounded as default } +export default IconFramePersonOffRounded diff --git a/src/IconFramePersonOffRoundedFilled.tsx b/src/IconFramePersonOffRoundedFilled.tsx index 2fedacc46..263c6e940 100644 --- a/src/IconFramePersonOffRoundedFilled.tsx +++ b/src/IconFramePersonOffRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconFramePersonOffRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconFramePersonOffRoundedFilled as default } +export default IconFramePersonOffRoundedFilled diff --git a/src/IconFramePersonOffSharp.tsx b/src/IconFramePersonOffSharp.tsx index b5117839f..1ce0b3a93 100644 --- a/src/IconFramePersonOffSharp.tsx +++ b/src/IconFramePersonOffSharp.tsx @@ -8,4 +8,4 @@ const IconFramePersonOffSharp: React.FC = ({ ...props }) => ( ) -export { IconFramePersonOffSharp as default } +export default IconFramePersonOffSharp diff --git a/src/IconFramePersonOffSharpFilled.tsx b/src/IconFramePersonOffSharpFilled.tsx index f578f4d29..6b45667c9 100644 --- a/src/IconFramePersonOffSharpFilled.tsx +++ b/src/IconFramePersonOffSharpFilled.tsx @@ -8,4 +8,4 @@ const IconFramePersonOffSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconFramePersonOffSharpFilled as default } +export default IconFramePersonOffSharpFilled diff --git a/src/IconFramePersonOutlined.tsx b/src/IconFramePersonOutlined.tsx index 181c62d3a..9b5ee34f6 100644 --- a/src/IconFramePersonOutlined.tsx +++ b/src/IconFramePersonOutlined.tsx @@ -8,4 +8,4 @@ const IconFramePersonOutlined: React.FC = ({ ...props }) => ( ) -export { IconFramePersonOutlined as default } +export default IconFramePersonOutlined diff --git a/src/IconFramePersonOutlinedFilled.tsx b/src/IconFramePersonOutlinedFilled.tsx index 24c928e54..dd5dedd50 100644 --- a/src/IconFramePersonOutlinedFilled.tsx +++ b/src/IconFramePersonOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconFramePersonOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconFramePersonOutlinedFilled as default } +export default IconFramePersonOutlinedFilled diff --git a/src/IconFramePersonRounded.tsx b/src/IconFramePersonRounded.tsx index c71fe5903..3ba212f5d 100644 --- a/src/IconFramePersonRounded.tsx +++ b/src/IconFramePersonRounded.tsx @@ -8,4 +8,4 @@ const IconFramePersonRounded: React.FC = ({ ...props }) => ( ) -export { IconFramePersonRounded as default } +export default IconFramePersonRounded diff --git a/src/IconFramePersonRoundedFilled.tsx b/src/IconFramePersonRoundedFilled.tsx index 96b4aad92..5f6b027b8 100644 --- a/src/IconFramePersonRoundedFilled.tsx +++ b/src/IconFramePersonRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconFramePersonRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconFramePersonRoundedFilled as default } +export default IconFramePersonRoundedFilled diff --git a/src/IconFramePersonSharp.tsx b/src/IconFramePersonSharp.tsx index 61a0fc76f..c825ba949 100644 --- a/src/IconFramePersonSharp.tsx +++ b/src/IconFramePersonSharp.tsx @@ -8,4 +8,4 @@ const IconFramePersonSharp: React.FC = ({ ...props }) => ( ) -export { IconFramePersonSharp as default } +export default IconFramePersonSharp diff --git a/src/IconFramePersonSharpFilled.tsx b/src/IconFramePersonSharpFilled.tsx index 78b6222da..5e797fa5c 100644 --- a/src/IconFramePersonSharpFilled.tsx +++ b/src/IconFramePersonSharpFilled.tsx @@ -8,4 +8,4 @@ const IconFramePersonSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconFramePersonSharpFilled as default } +export default IconFramePersonSharpFilled diff --git a/src/IconFrameReloadOutlined.tsx b/src/IconFrameReloadOutlined.tsx index bf6ab3c7e..add94ba77 100644 --- a/src/IconFrameReloadOutlined.tsx +++ b/src/IconFrameReloadOutlined.tsx @@ -8,4 +8,4 @@ const IconFrameReloadOutlined: React.FC = ({ ...props }) => ( ) -export { IconFrameReloadOutlined as default } +export default IconFrameReloadOutlined diff --git a/src/IconFrameReloadOutlinedFilled.tsx b/src/IconFrameReloadOutlinedFilled.tsx index fc78c9989..67c1a82a1 100644 --- a/src/IconFrameReloadOutlinedFilled.tsx +++ b/src/IconFrameReloadOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconFrameReloadOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconFrameReloadOutlinedFilled as default } +export default IconFrameReloadOutlinedFilled diff --git a/src/IconFrameReloadRounded.tsx b/src/IconFrameReloadRounded.tsx index 56623e19e..fe9af8013 100644 --- a/src/IconFrameReloadRounded.tsx +++ b/src/IconFrameReloadRounded.tsx @@ -8,4 +8,4 @@ const IconFrameReloadRounded: React.FC = ({ ...props }) => ( ) -export { IconFrameReloadRounded as default } +export default IconFrameReloadRounded diff --git a/src/IconFrameReloadRoundedFilled.tsx b/src/IconFrameReloadRoundedFilled.tsx index 6d1bb8159..050bec3fe 100644 --- a/src/IconFrameReloadRoundedFilled.tsx +++ b/src/IconFrameReloadRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconFrameReloadRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconFrameReloadRoundedFilled as default } +export default IconFrameReloadRoundedFilled diff --git a/src/IconFrameReloadSharp.tsx b/src/IconFrameReloadSharp.tsx index 1cffa72c5..256e7799c 100644 --- a/src/IconFrameReloadSharp.tsx +++ b/src/IconFrameReloadSharp.tsx @@ -8,4 +8,4 @@ const IconFrameReloadSharp: React.FC = ({ ...props }) => ( ) -export { IconFrameReloadSharp as default } +export default IconFrameReloadSharp diff --git a/src/IconFrameReloadSharpFilled.tsx b/src/IconFrameReloadSharpFilled.tsx index bf1921743..268bc17f9 100644 --- a/src/IconFrameReloadSharpFilled.tsx +++ b/src/IconFrameReloadSharpFilled.tsx @@ -8,4 +8,4 @@ const IconFrameReloadSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconFrameReloadSharpFilled as default } +export default IconFrameReloadSharpFilled diff --git a/src/IconFrameSourceOutlined.tsx b/src/IconFrameSourceOutlined.tsx index e059f93c1..1deb20918 100644 --- a/src/IconFrameSourceOutlined.tsx +++ b/src/IconFrameSourceOutlined.tsx @@ -8,4 +8,4 @@ const IconFrameSourceOutlined: React.FC = ({ ...props }) => ( ) -export { IconFrameSourceOutlined as default } +export default IconFrameSourceOutlined diff --git a/src/IconFrameSourceOutlinedFilled.tsx b/src/IconFrameSourceOutlinedFilled.tsx index 6c1a42324..852f64ff4 100644 --- a/src/IconFrameSourceOutlinedFilled.tsx +++ b/src/IconFrameSourceOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconFrameSourceOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconFrameSourceOutlinedFilled as default } +export default IconFrameSourceOutlinedFilled diff --git a/src/IconFrameSourceRounded.tsx b/src/IconFrameSourceRounded.tsx index 11a172d72..17fe661ab 100644 --- a/src/IconFrameSourceRounded.tsx +++ b/src/IconFrameSourceRounded.tsx @@ -8,4 +8,4 @@ const IconFrameSourceRounded: React.FC = ({ ...props }) => ( ) -export { IconFrameSourceRounded as default } +export default IconFrameSourceRounded diff --git a/src/IconFrameSourceRoundedFilled.tsx b/src/IconFrameSourceRoundedFilled.tsx index b8f7c8249..c4f237c04 100644 --- a/src/IconFrameSourceRoundedFilled.tsx +++ b/src/IconFrameSourceRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconFrameSourceRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconFrameSourceRoundedFilled as default } +export default IconFrameSourceRoundedFilled diff --git a/src/IconFrameSourceSharp.tsx b/src/IconFrameSourceSharp.tsx index c28cf933d..0a753b63b 100644 --- a/src/IconFrameSourceSharp.tsx +++ b/src/IconFrameSourceSharp.tsx @@ -8,4 +8,4 @@ const IconFrameSourceSharp: React.FC = ({ ...props }) => ( ) -export { IconFrameSourceSharp as default } +export default IconFrameSourceSharp diff --git a/src/IconFrameSourceSharpFilled.tsx b/src/IconFrameSourceSharpFilled.tsx index 44d104ff0..901fb29c7 100644 --- a/src/IconFrameSourceSharpFilled.tsx +++ b/src/IconFrameSourceSharpFilled.tsx @@ -8,4 +8,4 @@ const IconFrameSourceSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconFrameSourceSharpFilled as default } +export default IconFrameSourceSharpFilled diff --git a/src/IconFreeCancellationOutlined.tsx b/src/IconFreeCancellationOutlined.tsx index 71ec68f8c..3491e4e1d 100644 --- a/src/IconFreeCancellationOutlined.tsx +++ b/src/IconFreeCancellationOutlined.tsx @@ -8,4 +8,4 @@ const IconFreeCancellationOutlined: React.FC = ({ ...props }) => ( ) -export { IconFreeCancellationOutlined as default } +export default IconFreeCancellationOutlined diff --git a/src/IconFreeCancellationOutlinedFilled.tsx b/src/IconFreeCancellationOutlinedFilled.tsx index 6c83d23dd..2c18fd42c 100644 --- a/src/IconFreeCancellationOutlinedFilled.tsx +++ b/src/IconFreeCancellationOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconFreeCancellationOutlinedFilled: React.FC = ({ ) -export { IconFreeCancellationOutlinedFilled as default } +export default IconFreeCancellationOutlinedFilled diff --git a/src/IconFreeCancellationRounded.tsx b/src/IconFreeCancellationRounded.tsx index a20ded510..31c9e370c 100644 --- a/src/IconFreeCancellationRounded.tsx +++ b/src/IconFreeCancellationRounded.tsx @@ -8,4 +8,4 @@ const IconFreeCancellationRounded: React.FC = ({ ...props }) => ( ) -export { IconFreeCancellationRounded as default } +export default IconFreeCancellationRounded diff --git a/src/IconFreeCancellationRoundedFilled.tsx b/src/IconFreeCancellationRoundedFilled.tsx index 1cf3b8a0e..01d25b2a9 100644 --- a/src/IconFreeCancellationRoundedFilled.tsx +++ b/src/IconFreeCancellationRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconFreeCancellationRoundedFilled: React.FC = ({ ) -export { IconFreeCancellationRoundedFilled as default } +export default IconFreeCancellationRoundedFilled diff --git a/src/IconFreeCancellationSharp.tsx b/src/IconFreeCancellationSharp.tsx index 06bb8f97b..148646955 100644 --- a/src/IconFreeCancellationSharp.tsx +++ b/src/IconFreeCancellationSharp.tsx @@ -8,4 +8,4 @@ const IconFreeCancellationSharp: React.FC = ({ ...props }) => ( ) -export { IconFreeCancellationSharp as default } +export default IconFreeCancellationSharp diff --git a/src/IconFreeCancellationSharpFilled.tsx b/src/IconFreeCancellationSharpFilled.tsx index 18c3c81d0..192277ac3 100644 --- a/src/IconFreeCancellationSharpFilled.tsx +++ b/src/IconFreeCancellationSharpFilled.tsx @@ -8,4 +8,4 @@ const IconFreeCancellationSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconFreeCancellationSharpFilled as default } +export default IconFreeCancellationSharpFilled diff --git a/src/IconFrontHandOutlined.tsx b/src/IconFrontHandOutlined.tsx index 78219583c..1b6a91344 100644 --- a/src/IconFrontHandOutlined.tsx +++ b/src/IconFrontHandOutlined.tsx @@ -8,4 +8,4 @@ const IconFrontHandOutlined: React.FC = ({ ...props }) => ( ) -export { IconFrontHandOutlined as default } +export default IconFrontHandOutlined diff --git a/src/IconFrontHandOutlinedFilled.tsx b/src/IconFrontHandOutlinedFilled.tsx index 31defbe6b..5a0a1010b 100644 --- a/src/IconFrontHandOutlinedFilled.tsx +++ b/src/IconFrontHandOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconFrontHandOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconFrontHandOutlinedFilled as default } +export default IconFrontHandOutlinedFilled diff --git a/src/IconFrontHandRounded.tsx b/src/IconFrontHandRounded.tsx index 45c47a7b6..b703b9481 100644 --- a/src/IconFrontHandRounded.tsx +++ b/src/IconFrontHandRounded.tsx @@ -8,4 +8,4 @@ const IconFrontHandRounded: React.FC = ({ ...props }) => ( ) -export { IconFrontHandRounded as default } +export default IconFrontHandRounded diff --git a/src/IconFrontHandRoundedFilled.tsx b/src/IconFrontHandRoundedFilled.tsx index 114c6c64d..10bf6c714 100644 --- a/src/IconFrontHandRoundedFilled.tsx +++ b/src/IconFrontHandRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconFrontHandRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconFrontHandRoundedFilled as default } +export default IconFrontHandRoundedFilled diff --git a/src/IconFrontHandSharp.tsx b/src/IconFrontHandSharp.tsx index e1836ffca..cb717d236 100644 --- a/src/IconFrontHandSharp.tsx +++ b/src/IconFrontHandSharp.tsx @@ -8,4 +8,4 @@ const IconFrontHandSharp: React.FC = ({ ...props }) => ( ) -export { IconFrontHandSharp as default } +export default IconFrontHandSharp diff --git a/src/IconFrontHandSharpFilled.tsx b/src/IconFrontHandSharpFilled.tsx index ed7af19c5..a68f79c83 100644 --- a/src/IconFrontHandSharpFilled.tsx +++ b/src/IconFrontHandSharpFilled.tsx @@ -8,4 +8,4 @@ const IconFrontHandSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconFrontHandSharpFilled as default } +export default IconFrontHandSharpFilled diff --git a/src/IconFrontLoaderOutlined.tsx b/src/IconFrontLoaderOutlined.tsx index 752abaaa4..ba18b416a 100644 --- a/src/IconFrontLoaderOutlined.tsx +++ b/src/IconFrontLoaderOutlined.tsx @@ -8,4 +8,4 @@ const IconFrontLoaderOutlined: React.FC = ({ ...props }) => ( ) -export { IconFrontLoaderOutlined as default } +export default IconFrontLoaderOutlined diff --git a/src/IconFrontLoaderOutlinedFilled.tsx b/src/IconFrontLoaderOutlinedFilled.tsx index 123cf636e..1e951e7e7 100644 --- a/src/IconFrontLoaderOutlinedFilled.tsx +++ b/src/IconFrontLoaderOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconFrontLoaderOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconFrontLoaderOutlinedFilled as default } +export default IconFrontLoaderOutlinedFilled diff --git a/src/IconFrontLoaderRounded.tsx b/src/IconFrontLoaderRounded.tsx index e2c5412e7..e5d6212f9 100644 --- a/src/IconFrontLoaderRounded.tsx +++ b/src/IconFrontLoaderRounded.tsx @@ -8,4 +8,4 @@ const IconFrontLoaderRounded: React.FC = ({ ...props }) => ( ) -export { IconFrontLoaderRounded as default } +export default IconFrontLoaderRounded diff --git a/src/IconFrontLoaderRoundedFilled.tsx b/src/IconFrontLoaderRoundedFilled.tsx index a62a17cb3..f4d170d59 100644 --- a/src/IconFrontLoaderRoundedFilled.tsx +++ b/src/IconFrontLoaderRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconFrontLoaderRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconFrontLoaderRoundedFilled as default } +export default IconFrontLoaderRoundedFilled diff --git a/src/IconFrontLoaderSharp.tsx b/src/IconFrontLoaderSharp.tsx index b8f1e726f..9c221a90b 100644 --- a/src/IconFrontLoaderSharp.tsx +++ b/src/IconFrontLoaderSharp.tsx @@ -8,4 +8,4 @@ const IconFrontLoaderSharp: React.FC = ({ ...props }) => ( ) -export { IconFrontLoaderSharp as default } +export default IconFrontLoaderSharp diff --git a/src/IconFrontLoaderSharpFilled.tsx b/src/IconFrontLoaderSharpFilled.tsx index 00ae4a624..6b2c3f8d1 100644 --- a/src/IconFrontLoaderSharpFilled.tsx +++ b/src/IconFrontLoaderSharpFilled.tsx @@ -8,4 +8,4 @@ const IconFrontLoaderSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconFrontLoaderSharpFilled as default } +export default IconFrontLoaderSharpFilled diff --git a/src/IconFullCoverageOutlined.tsx b/src/IconFullCoverageOutlined.tsx index 6127df746..a1fd45df1 100644 --- a/src/IconFullCoverageOutlined.tsx +++ b/src/IconFullCoverageOutlined.tsx @@ -8,4 +8,4 @@ const IconFullCoverageOutlined: React.FC = ({ ...props }) => ( ) -export { IconFullCoverageOutlined as default } +export default IconFullCoverageOutlined diff --git a/src/IconFullCoverageOutlinedFilled.tsx b/src/IconFullCoverageOutlinedFilled.tsx index 0c856891c..79b574720 100644 --- a/src/IconFullCoverageOutlinedFilled.tsx +++ b/src/IconFullCoverageOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconFullCoverageOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconFullCoverageOutlinedFilled as default } +export default IconFullCoverageOutlinedFilled diff --git a/src/IconFullCoverageRounded.tsx b/src/IconFullCoverageRounded.tsx index 5cda56471..22b1f88da 100644 --- a/src/IconFullCoverageRounded.tsx +++ b/src/IconFullCoverageRounded.tsx @@ -8,4 +8,4 @@ const IconFullCoverageRounded: React.FC = ({ ...props }) => ( ) -export { IconFullCoverageRounded as default } +export default IconFullCoverageRounded diff --git a/src/IconFullCoverageRoundedFilled.tsx b/src/IconFullCoverageRoundedFilled.tsx index 65c9d5564..85f9a78c4 100644 --- a/src/IconFullCoverageRoundedFilled.tsx +++ b/src/IconFullCoverageRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconFullCoverageRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconFullCoverageRoundedFilled as default } +export default IconFullCoverageRoundedFilled diff --git a/src/IconFullCoverageSharp.tsx b/src/IconFullCoverageSharp.tsx index 239fe0acb..b7f829d39 100644 --- a/src/IconFullCoverageSharp.tsx +++ b/src/IconFullCoverageSharp.tsx @@ -8,4 +8,4 @@ const IconFullCoverageSharp: React.FC = ({ ...props }) => ( ) -export { IconFullCoverageSharp as default } +export default IconFullCoverageSharp diff --git a/src/IconFullCoverageSharpFilled.tsx b/src/IconFullCoverageSharpFilled.tsx index e748bff5d..0f2d6c4e6 100644 --- a/src/IconFullCoverageSharpFilled.tsx +++ b/src/IconFullCoverageSharpFilled.tsx @@ -8,4 +8,4 @@ const IconFullCoverageSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconFullCoverageSharpFilled as default } +export default IconFullCoverageSharpFilled diff --git a/src/IconFullHdOutlined.tsx b/src/IconFullHdOutlined.tsx index b9a553111..6ec4f245c 100644 --- a/src/IconFullHdOutlined.tsx +++ b/src/IconFullHdOutlined.tsx @@ -8,4 +8,4 @@ const IconFullHdOutlined: React.FC = ({ ...props }) => ( ) -export { IconFullHdOutlined as default } +export default IconFullHdOutlined diff --git a/src/IconFullHdOutlinedFilled.tsx b/src/IconFullHdOutlinedFilled.tsx index 2772900a2..050211d6c 100644 --- a/src/IconFullHdOutlinedFilled.tsx +++ b/src/IconFullHdOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconFullHdOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconFullHdOutlinedFilled as default } +export default IconFullHdOutlinedFilled diff --git a/src/IconFullHdRounded.tsx b/src/IconFullHdRounded.tsx index e82733c94..e4a6cbb19 100644 --- a/src/IconFullHdRounded.tsx +++ b/src/IconFullHdRounded.tsx @@ -8,4 +8,4 @@ const IconFullHdRounded: React.FC = ({ ...props }) => ( ) -export { IconFullHdRounded as default } +export default IconFullHdRounded diff --git a/src/IconFullHdRoundedFilled.tsx b/src/IconFullHdRoundedFilled.tsx index aba330b82..15d7528e6 100644 --- a/src/IconFullHdRoundedFilled.tsx +++ b/src/IconFullHdRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconFullHdRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconFullHdRoundedFilled as default } +export default IconFullHdRoundedFilled diff --git a/src/IconFullHdSharp.tsx b/src/IconFullHdSharp.tsx index ff44faa9c..208fce03b 100644 --- a/src/IconFullHdSharp.tsx +++ b/src/IconFullHdSharp.tsx @@ -8,4 +8,4 @@ const IconFullHdSharp: React.FC = ({ ...props }) => ( ) -export { IconFullHdSharp as default } +export default IconFullHdSharp diff --git a/src/IconFullHdSharpFilled.tsx b/src/IconFullHdSharpFilled.tsx index 3fc1ee90b..f5190e905 100644 --- a/src/IconFullHdSharpFilled.tsx +++ b/src/IconFullHdSharpFilled.tsx @@ -8,4 +8,4 @@ const IconFullHdSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconFullHdSharpFilled as default } +export default IconFullHdSharpFilled diff --git a/src/IconFullStackedBarChartOutlined.tsx b/src/IconFullStackedBarChartOutlined.tsx index 41e9fe399..92df66199 100644 --- a/src/IconFullStackedBarChartOutlined.tsx +++ b/src/IconFullStackedBarChartOutlined.tsx @@ -8,4 +8,4 @@ const IconFullStackedBarChartOutlined: React.FC = ({ ...props }) => ( ) -export { IconFullStackedBarChartOutlined as default } +export default IconFullStackedBarChartOutlined diff --git a/src/IconFullStackedBarChartOutlinedFilled.tsx b/src/IconFullStackedBarChartOutlinedFilled.tsx index 5b31eaf4c..f73ecad52 100644 --- a/src/IconFullStackedBarChartOutlinedFilled.tsx +++ b/src/IconFullStackedBarChartOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconFullStackedBarChartOutlinedFilled: React.FC = ({ ) -export { IconFullStackedBarChartOutlinedFilled as default } +export default IconFullStackedBarChartOutlinedFilled diff --git a/src/IconFullStackedBarChartRounded.tsx b/src/IconFullStackedBarChartRounded.tsx index 4f08d5ef2..539c09191 100644 --- a/src/IconFullStackedBarChartRounded.tsx +++ b/src/IconFullStackedBarChartRounded.tsx @@ -8,4 +8,4 @@ const IconFullStackedBarChartRounded: React.FC = ({ ...props }) => ( ) -export { IconFullStackedBarChartRounded as default } +export default IconFullStackedBarChartRounded diff --git a/src/IconFullStackedBarChartRoundedFilled.tsx b/src/IconFullStackedBarChartRoundedFilled.tsx index 55c0fc7c9..d7f561dae 100644 --- a/src/IconFullStackedBarChartRoundedFilled.tsx +++ b/src/IconFullStackedBarChartRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconFullStackedBarChartRoundedFilled: React.FC = ({ ) -export { IconFullStackedBarChartRoundedFilled as default } +export default IconFullStackedBarChartRoundedFilled diff --git a/src/IconFullStackedBarChartSharp.tsx b/src/IconFullStackedBarChartSharp.tsx index 8e671357c..72ebaaf5f 100644 --- a/src/IconFullStackedBarChartSharp.tsx +++ b/src/IconFullStackedBarChartSharp.tsx @@ -8,4 +8,4 @@ const IconFullStackedBarChartSharp: React.FC = ({ ...props }) => ( ) -export { IconFullStackedBarChartSharp as default } +export default IconFullStackedBarChartSharp diff --git a/src/IconFullStackedBarChartSharpFilled.tsx b/src/IconFullStackedBarChartSharpFilled.tsx index ccb376f04..3b0e66de4 100644 --- a/src/IconFullStackedBarChartSharpFilled.tsx +++ b/src/IconFullStackedBarChartSharpFilled.tsx @@ -10,4 +10,4 @@ const IconFullStackedBarChartSharpFilled: React.FC = ({ ) -export { IconFullStackedBarChartSharpFilled as default } +export default IconFullStackedBarChartSharpFilled diff --git a/src/IconFullscreenExitOutlined.tsx b/src/IconFullscreenExitOutlined.tsx index 36011944a..582ea0083 100644 --- a/src/IconFullscreenExitOutlined.tsx +++ b/src/IconFullscreenExitOutlined.tsx @@ -8,4 +8,4 @@ const IconFullscreenExitOutlined: React.FC = ({ ...props }) => ( ) -export { IconFullscreenExitOutlined as default } +export default IconFullscreenExitOutlined diff --git a/src/IconFullscreenExitOutlinedFilled.tsx b/src/IconFullscreenExitOutlinedFilled.tsx index ff1006f83..434d14580 100644 --- a/src/IconFullscreenExitOutlinedFilled.tsx +++ b/src/IconFullscreenExitOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconFullscreenExitOutlinedFilled: React.FC = ({ ) -export { IconFullscreenExitOutlinedFilled as default } +export default IconFullscreenExitOutlinedFilled diff --git a/src/IconFullscreenExitRounded.tsx b/src/IconFullscreenExitRounded.tsx index be9a95ff2..cb8fbd3f3 100644 --- a/src/IconFullscreenExitRounded.tsx +++ b/src/IconFullscreenExitRounded.tsx @@ -8,4 +8,4 @@ const IconFullscreenExitRounded: React.FC = ({ ...props }) => ( ) -export { IconFullscreenExitRounded as default } +export default IconFullscreenExitRounded diff --git a/src/IconFullscreenExitRoundedFilled.tsx b/src/IconFullscreenExitRoundedFilled.tsx index f3ea96e60..4ea879d8e 100644 --- a/src/IconFullscreenExitRoundedFilled.tsx +++ b/src/IconFullscreenExitRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconFullscreenExitRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconFullscreenExitRoundedFilled as default } +export default IconFullscreenExitRoundedFilled diff --git a/src/IconFullscreenExitSharp.tsx b/src/IconFullscreenExitSharp.tsx index 3f7a18072..8fe3edaf9 100644 --- a/src/IconFullscreenExitSharp.tsx +++ b/src/IconFullscreenExitSharp.tsx @@ -8,4 +8,4 @@ const IconFullscreenExitSharp: React.FC = ({ ...props }) => ( ) -export { IconFullscreenExitSharp as default } +export default IconFullscreenExitSharp diff --git a/src/IconFullscreenExitSharpFilled.tsx b/src/IconFullscreenExitSharpFilled.tsx index 88e80433a..f14a232b0 100644 --- a/src/IconFullscreenExitSharpFilled.tsx +++ b/src/IconFullscreenExitSharpFilled.tsx @@ -8,4 +8,4 @@ const IconFullscreenExitSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconFullscreenExitSharpFilled as default } +export default IconFullscreenExitSharpFilled diff --git a/src/IconFullscreenOutlined.tsx b/src/IconFullscreenOutlined.tsx index e11d75e3a..fdd94d1ef 100644 --- a/src/IconFullscreenOutlined.tsx +++ b/src/IconFullscreenOutlined.tsx @@ -8,4 +8,4 @@ const IconFullscreenOutlined: React.FC = ({ ...props }) => ( ) -export { IconFullscreenOutlined as default } +export default IconFullscreenOutlined diff --git a/src/IconFullscreenOutlinedFilled.tsx b/src/IconFullscreenOutlinedFilled.tsx index 17036e44d..afdffa88c 100644 --- a/src/IconFullscreenOutlinedFilled.tsx +++ b/src/IconFullscreenOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconFullscreenOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconFullscreenOutlinedFilled as default } +export default IconFullscreenOutlinedFilled diff --git a/src/IconFullscreenPortraitOutlined.tsx b/src/IconFullscreenPortraitOutlined.tsx index 3e2974471..6b4b4a64e 100644 --- a/src/IconFullscreenPortraitOutlined.tsx +++ b/src/IconFullscreenPortraitOutlined.tsx @@ -8,4 +8,4 @@ const IconFullscreenPortraitOutlined: React.FC = ({ ...props }) => ( ) -export { IconFullscreenPortraitOutlined as default } +export default IconFullscreenPortraitOutlined diff --git a/src/IconFullscreenPortraitOutlinedFilled.tsx b/src/IconFullscreenPortraitOutlinedFilled.tsx index 7aae3b2c2..021b6d11a 100644 --- a/src/IconFullscreenPortraitOutlinedFilled.tsx +++ b/src/IconFullscreenPortraitOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconFullscreenPortraitOutlinedFilled: React.FC = ({ ) -export { IconFullscreenPortraitOutlinedFilled as default } +export default IconFullscreenPortraitOutlinedFilled diff --git a/src/IconFullscreenPortraitRounded.tsx b/src/IconFullscreenPortraitRounded.tsx index fcf11b465..0581addc5 100644 --- a/src/IconFullscreenPortraitRounded.tsx +++ b/src/IconFullscreenPortraitRounded.tsx @@ -8,4 +8,4 @@ const IconFullscreenPortraitRounded: React.FC = ({ ...props }) => ( ) -export { IconFullscreenPortraitRounded as default } +export default IconFullscreenPortraitRounded diff --git a/src/IconFullscreenPortraitRoundedFilled.tsx b/src/IconFullscreenPortraitRoundedFilled.tsx index a8b389694..6662bea15 100644 --- a/src/IconFullscreenPortraitRoundedFilled.tsx +++ b/src/IconFullscreenPortraitRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconFullscreenPortraitRoundedFilled: React.FC = ({ ) -export { IconFullscreenPortraitRoundedFilled as default } +export default IconFullscreenPortraitRoundedFilled diff --git a/src/IconFullscreenPortraitSharp.tsx b/src/IconFullscreenPortraitSharp.tsx index e89950690..54d65826b 100644 --- a/src/IconFullscreenPortraitSharp.tsx +++ b/src/IconFullscreenPortraitSharp.tsx @@ -8,4 +8,4 @@ const IconFullscreenPortraitSharp: React.FC = ({ ...props }) => ( ) -export { IconFullscreenPortraitSharp as default } +export default IconFullscreenPortraitSharp diff --git a/src/IconFullscreenPortraitSharpFilled.tsx b/src/IconFullscreenPortraitSharpFilled.tsx index e240f4dc5..74377a840 100644 --- a/src/IconFullscreenPortraitSharpFilled.tsx +++ b/src/IconFullscreenPortraitSharpFilled.tsx @@ -10,4 +10,4 @@ const IconFullscreenPortraitSharpFilled: React.FC = ({ ) -export { IconFullscreenPortraitSharpFilled as default } +export default IconFullscreenPortraitSharpFilled diff --git a/src/IconFullscreenRounded.tsx b/src/IconFullscreenRounded.tsx index 2f01d4136..9f59e11d2 100644 --- a/src/IconFullscreenRounded.tsx +++ b/src/IconFullscreenRounded.tsx @@ -8,4 +8,4 @@ const IconFullscreenRounded: React.FC = ({ ...props }) => ( ) -export { IconFullscreenRounded as default } +export default IconFullscreenRounded diff --git a/src/IconFullscreenRoundedFilled.tsx b/src/IconFullscreenRoundedFilled.tsx index b941b4245..18a37ece7 100644 --- a/src/IconFullscreenRoundedFilled.tsx +++ b/src/IconFullscreenRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconFullscreenRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconFullscreenRoundedFilled as default } +export default IconFullscreenRoundedFilled diff --git a/src/IconFullscreenSharp.tsx b/src/IconFullscreenSharp.tsx index b6a7d59ff..7e1259587 100644 --- a/src/IconFullscreenSharp.tsx +++ b/src/IconFullscreenSharp.tsx @@ -8,4 +8,4 @@ const IconFullscreenSharp: React.FC = ({ ...props }) => ( ) -export { IconFullscreenSharp as default } +export default IconFullscreenSharp diff --git a/src/IconFullscreenSharpFilled.tsx b/src/IconFullscreenSharpFilled.tsx index 069d805d4..004c7890f 100644 --- a/src/IconFullscreenSharpFilled.tsx +++ b/src/IconFullscreenSharpFilled.tsx @@ -8,4 +8,4 @@ const IconFullscreenSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconFullscreenSharpFilled as default } +export default IconFullscreenSharpFilled diff --git a/src/IconFunctionOutlined.tsx b/src/IconFunctionOutlined.tsx index 6f0fcc3b3..757605748 100644 --- a/src/IconFunctionOutlined.tsx +++ b/src/IconFunctionOutlined.tsx @@ -8,4 +8,4 @@ const IconFunctionOutlined: React.FC = ({ ...props }) => ( ) -export { IconFunctionOutlined as default } +export default IconFunctionOutlined diff --git a/src/IconFunctionOutlinedFilled.tsx b/src/IconFunctionOutlinedFilled.tsx index ea20dfac1..93a8e98a6 100644 --- a/src/IconFunctionOutlinedFilled.tsx +++ b/src/IconFunctionOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconFunctionOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconFunctionOutlinedFilled as default } +export default IconFunctionOutlinedFilled diff --git a/src/IconFunctionRounded.tsx b/src/IconFunctionRounded.tsx index 07946c466..3d3041453 100644 --- a/src/IconFunctionRounded.tsx +++ b/src/IconFunctionRounded.tsx @@ -8,4 +8,4 @@ const IconFunctionRounded: React.FC = ({ ...props }) => ( ) -export { IconFunctionRounded as default } +export default IconFunctionRounded diff --git a/src/IconFunctionRoundedFilled.tsx b/src/IconFunctionRoundedFilled.tsx index 754b1891d..35cbeb7ee 100644 --- a/src/IconFunctionRoundedFilled.tsx +++ b/src/IconFunctionRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconFunctionRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconFunctionRoundedFilled as default } +export default IconFunctionRoundedFilled diff --git a/src/IconFunctionSharp.tsx b/src/IconFunctionSharp.tsx index 324c1a1fd..d7c126285 100644 --- a/src/IconFunctionSharp.tsx +++ b/src/IconFunctionSharp.tsx @@ -8,4 +8,4 @@ const IconFunctionSharp: React.FC = ({ ...props }) => ( ) -export { IconFunctionSharp as default } +export default IconFunctionSharp diff --git a/src/IconFunctionSharpFilled.tsx b/src/IconFunctionSharpFilled.tsx index a6a68c9de..63a06f8d6 100644 --- a/src/IconFunctionSharpFilled.tsx +++ b/src/IconFunctionSharpFilled.tsx @@ -8,4 +8,4 @@ const IconFunctionSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconFunctionSharpFilled as default } +export default IconFunctionSharpFilled diff --git a/src/IconFunctionsOutlined.tsx b/src/IconFunctionsOutlined.tsx index d0faf430e..c8268ce9d 100644 --- a/src/IconFunctionsOutlined.tsx +++ b/src/IconFunctionsOutlined.tsx @@ -8,4 +8,4 @@ const IconFunctionsOutlined: React.FC = ({ ...props }) => ( ) -export { IconFunctionsOutlined as default } +export default IconFunctionsOutlined diff --git a/src/IconFunctionsOutlinedFilled.tsx b/src/IconFunctionsOutlinedFilled.tsx index 53e2a74a2..031c5b4cc 100644 --- a/src/IconFunctionsOutlinedFilled.tsx +++ b/src/IconFunctionsOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconFunctionsOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconFunctionsOutlinedFilled as default } +export default IconFunctionsOutlinedFilled diff --git a/src/IconFunctionsRounded.tsx b/src/IconFunctionsRounded.tsx index 19016550f..7e3af81c3 100644 --- a/src/IconFunctionsRounded.tsx +++ b/src/IconFunctionsRounded.tsx @@ -8,4 +8,4 @@ const IconFunctionsRounded: React.FC = ({ ...props }) => ( ) -export { IconFunctionsRounded as default } +export default IconFunctionsRounded diff --git a/src/IconFunctionsRoundedFilled.tsx b/src/IconFunctionsRoundedFilled.tsx index ed4956c41..21e67a86c 100644 --- a/src/IconFunctionsRoundedFilled.tsx +++ b/src/IconFunctionsRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconFunctionsRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconFunctionsRoundedFilled as default } +export default IconFunctionsRoundedFilled diff --git a/src/IconFunctionsSharp.tsx b/src/IconFunctionsSharp.tsx index f84eab595..35ae45547 100644 --- a/src/IconFunctionsSharp.tsx +++ b/src/IconFunctionsSharp.tsx @@ -8,4 +8,4 @@ const IconFunctionsSharp: React.FC = ({ ...props }) => ( ) -export { IconFunctionsSharp as default } +export default IconFunctionsSharp diff --git a/src/IconFunctionsSharpFilled.tsx b/src/IconFunctionsSharpFilled.tsx index 072e0a393..7d3916525 100644 --- a/src/IconFunctionsSharpFilled.tsx +++ b/src/IconFunctionsSharpFilled.tsx @@ -8,4 +8,4 @@ const IconFunctionsSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconFunctionsSharpFilled as default } +export default IconFunctionsSharpFilled diff --git a/src/IconFunicularOutlined.tsx b/src/IconFunicularOutlined.tsx index afa16f183..7611a4e8c 100644 --- a/src/IconFunicularOutlined.tsx +++ b/src/IconFunicularOutlined.tsx @@ -8,4 +8,4 @@ const IconFunicularOutlined: React.FC = ({ ...props }) => ( ) -export { IconFunicularOutlined as default } +export default IconFunicularOutlined diff --git a/src/IconFunicularOutlinedFilled.tsx b/src/IconFunicularOutlinedFilled.tsx index 42aab2f85..87210719c 100644 --- a/src/IconFunicularOutlinedFilled.tsx +++ b/src/IconFunicularOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconFunicularOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconFunicularOutlinedFilled as default } +export default IconFunicularOutlinedFilled diff --git a/src/IconFunicularRounded.tsx b/src/IconFunicularRounded.tsx index 187f2810a..83a48e984 100644 --- a/src/IconFunicularRounded.tsx +++ b/src/IconFunicularRounded.tsx @@ -8,4 +8,4 @@ const IconFunicularRounded: React.FC = ({ ...props }) => ( ) -export { IconFunicularRounded as default } +export default IconFunicularRounded diff --git a/src/IconFunicularRoundedFilled.tsx b/src/IconFunicularRoundedFilled.tsx index eae3dacc8..cd6faa879 100644 --- a/src/IconFunicularRoundedFilled.tsx +++ b/src/IconFunicularRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconFunicularRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconFunicularRoundedFilled as default } +export default IconFunicularRoundedFilled diff --git a/src/IconFunicularSharp.tsx b/src/IconFunicularSharp.tsx index e5351321c..e5f1eec28 100644 --- a/src/IconFunicularSharp.tsx +++ b/src/IconFunicularSharp.tsx @@ -8,4 +8,4 @@ const IconFunicularSharp: React.FC = ({ ...props }) => ( ) -export { IconFunicularSharp as default } +export default IconFunicularSharp diff --git a/src/IconFunicularSharpFilled.tsx b/src/IconFunicularSharpFilled.tsx index 9a109722f..6ffe563e1 100644 --- a/src/IconFunicularSharpFilled.tsx +++ b/src/IconFunicularSharpFilled.tsx @@ -8,4 +8,4 @@ const IconFunicularSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconFunicularSharpFilled as default } +export default IconFunicularSharpFilled diff --git a/src/IconGMobiledataBadgeOutlined.tsx b/src/IconGMobiledataBadgeOutlined.tsx index 3a7cbac85..637d8414e 100644 --- a/src/IconGMobiledataBadgeOutlined.tsx +++ b/src/IconGMobiledataBadgeOutlined.tsx @@ -8,4 +8,4 @@ const IconGMobiledataBadgeOutlined: React.FC = ({ ...props }) => ( ) -export { IconGMobiledataBadgeOutlined as default } +export default IconGMobiledataBadgeOutlined diff --git a/src/IconGMobiledataBadgeOutlinedFilled.tsx b/src/IconGMobiledataBadgeOutlinedFilled.tsx index 4ef0c77f0..3d5843149 100644 --- a/src/IconGMobiledataBadgeOutlinedFilled.tsx +++ b/src/IconGMobiledataBadgeOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconGMobiledataBadgeOutlinedFilled: React.FC = ({ ) -export { IconGMobiledataBadgeOutlinedFilled as default } +export default IconGMobiledataBadgeOutlinedFilled diff --git a/src/IconGMobiledataBadgeRounded.tsx b/src/IconGMobiledataBadgeRounded.tsx index 0ed2bd0f0..f32b61ad4 100644 --- a/src/IconGMobiledataBadgeRounded.tsx +++ b/src/IconGMobiledataBadgeRounded.tsx @@ -8,4 +8,4 @@ const IconGMobiledataBadgeRounded: React.FC = ({ ...props }) => ( ) -export { IconGMobiledataBadgeRounded as default } +export default IconGMobiledataBadgeRounded diff --git a/src/IconGMobiledataBadgeRoundedFilled.tsx b/src/IconGMobiledataBadgeRoundedFilled.tsx index 9b19f67f5..fc8d52f1d 100644 --- a/src/IconGMobiledataBadgeRoundedFilled.tsx +++ b/src/IconGMobiledataBadgeRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconGMobiledataBadgeRoundedFilled: React.FC = ({ ) -export { IconGMobiledataBadgeRoundedFilled as default } +export default IconGMobiledataBadgeRoundedFilled diff --git a/src/IconGMobiledataBadgeSharp.tsx b/src/IconGMobiledataBadgeSharp.tsx index 074a4c0b5..e2af5ffac 100644 --- a/src/IconGMobiledataBadgeSharp.tsx +++ b/src/IconGMobiledataBadgeSharp.tsx @@ -8,4 +8,4 @@ const IconGMobiledataBadgeSharp: React.FC = ({ ...props }) => ( ) -export { IconGMobiledataBadgeSharp as default } +export default IconGMobiledataBadgeSharp diff --git a/src/IconGMobiledataBadgeSharpFilled.tsx b/src/IconGMobiledataBadgeSharpFilled.tsx index 78621b42b..d13ecbd59 100644 --- a/src/IconGMobiledataBadgeSharpFilled.tsx +++ b/src/IconGMobiledataBadgeSharpFilled.tsx @@ -8,4 +8,4 @@ const IconGMobiledataBadgeSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconGMobiledataBadgeSharpFilled as default } +export default IconGMobiledataBadgeSharpFilled diff --git a/src/IconGMobiledataOutlined.tsx b/src/IconGMobiledataOutlined.tsx index 7235fecdf..68363ac11 100644 --- a/src/IconGMobiledataOutlined.tsx +++ b/src/IconGMobiledataOutlined.tsx @@ -8,4 +8,4 @@ const IconGMobiledataOutlined: React.FC = ({ ...props }) => ( ) -export { IconGMobiledataOutlined as default } +export default IconGMobiledataOutlined diff --git a/src/IconGMobiledataOutlinedFilled.tsx b/src/IconGMobiledataOutlinedFilled.tsx index 0aebc93e3..d2fe25c78 100644 --- a/src/IconGMobiledataOutlinedFilled.tsx +++ b/src/IconGMobiledataOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconGMobiledataOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconGMobiledataOutlinedFilled as default } +export default IconGMobiledataOutlinedFilled diff --git a/src/IconGMobiledataRounded.tsx b/src/IconGMobiledataRounded.tsx index 28f037384..cf0259694 100644 --- a/src/IconGMobiledataRounded.tsx +++ b/src/IconGMobiledataRounded.tsx @@ -8,4 +8,4 @@ const IconGMobiledataRounded: React.FC = ({ ...props }) => ( ) -export { IconGMobiledataRounded as default } +export default IconGMobiledataRounded diff --git a/src/IconGMobiledataRoundedFilled.tsx b/src/IconGMobiledataRoundedFilled.tsx index 527d65c83..43e30a31d 100644 --- a/src/IconGMobiledataRoundedFilled.tsx +++ b/src/IconGMobiledataRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconGMobiledataRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconGMobiledataRoundedFilled as default } +export default IconGMobiledataRoundedFilled diff --git a/src/IconGMobiledataSharp.tsx b/src/IconGMobiledataSharp.tsx index c0f3543bd..e43fc29e7 100644 --- a/src/IconGMobiledataSharp.tsx +++ b/src/IconGMobiledataSharp.tsx @@ -8,4 +8,4 @@ const IconGMobiledataSharp: React.FC = ({ ...props }) => ( ) -export { IconGMobiledataSharp as default } +export default IconGMobiledataSharp diff --git a/src/IconGMobiledataSharpFilled.tsx b/src/IconGMobiledataSharpFilled.tsx index a3bea6289..aaf165edf 100644 --- a/src/IconGMobiledataSharpFilled.tsx +++ b/src/IconGMobiledataSharpFilled.tsx @@ -8,4 +8,4 @@ const IconGMobiledataSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconGMobiledataSharpFilled as default } +export default IconGMobiledataSharpFilled diff --git a/src/IconGTranslateOutlined.tsx b/src/IconGTranslateOutlined.tsx index eb1d1a3f9..fc2868e6e 100644 --- a/src/IconGTranslateOutlined.tsx +++ b/src/IconGTranslateOutlined.tsx @@ -8,4 +8,4 @@ const IconGTranslateOutlined: React.FC = ({ ...props }) => ( ) -export { IconGTranslateOutlined as default } +export default IconGTranslateOutlined diff --git a/src/IconGTranslateOutlinedFilled.tsx b/src/IconGTranslateOutlinedFilled.tsx index c22d05f9d..65b71bf14 100644 --- a/src/IconGTranslateOutlinedFilled.tsx +++ b/src/IconGTranslateOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconGTranslateOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconGTranslateOutlinedFilled as default } +export default IconGTranslateOutlinedFilled diff --git a/src/IconGTranslateRounded.tsx b/src/IconGTranslateRounded.tsx index 0d99e251a..a50dc4eb9 100644 --- a/src/IconGTranslateRounded.tsx +++ b/src/IconGTranslateRounded.tsx @@ -8,4 +8,4 @@ const IconGTranslateRounded: React.FC = ({ ...props }) => ( ) -export { IconGTranslateRounded as default } +export default IconGTranslateRounded diff --git a/src/IconGTranslateRoundedFilled.tsx b/src/IconGTranslateRoundedFilled.tsx index ab7dbfdc6..5352615ca 100644 --- a/src/IconGTranslateRoundedFilled.tsx +++ b/src/IconGTranslateRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconGTranslateRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconGTranslateRoundedFilled as default } +export default IconGTranslateRoundedFilled diff --git a/src/IconGTranslateSharp.tsx b/src/IconGTranslateSharp.tsx index 15b25aa7a..749548d71 100644 --- a/src/IconGTranslateSharp.tsx +++ b/src/IconGTranslateSharp.tsx @@ -8,4 +8,4 @@ const IconGTranslateSharp: React.FC = ({ ...props }) => ( ) -export { IconGTranslateSharp as default } +export default IconGTranslateSharp diff --git a/src/IconGTranslateSharpFilled.tsx b/src/IconGTranslateSharpFilled.tsx index 58cb2f29d..49a3ca718 100644 --- a/src/IconGTranslateSharpFilled.tsx +++ b/src/IconGTranslateSharpFilled.tsx @@ -8,4 +8,4 @@ const IconGTranslateSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconGTranslateSharpFilled as default } +export default IconGTranslateSharpFilled diff --git a/src/IconGalleryThumbnailOutlined.tsx b/src/IconGalleryThumbnailOutlined.tsx index 97148c5f1..0b58b77cf 100644 --- a/src/IconGalleryThumbnailOutlined.tsx +++ b/src/IconGalleryThumbnailOutlined.tsx @@ -8,4 +8,4 @@ const IconGalleryThumbnailOutlined: React.FC = ({ ...props }) => ( ) -export { IconGalleryThumbnailOutlined as default } +export default IconGalleryThumbnailOutlined diff --git a/src/IconGalleryThumbnailOutlinedFilled.tsx b/src/IconGalleryThumbnailOutlinedFilled.tsx index 352e76beb..78dea21a4 100644 --- a/src/IconGalleryThumbnailOutlinedFilled.tsx +++ b/src/IconGalleryThumbnailOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconGalleryThumbnailOutlinedFilled: React.FC = ({ ) -export { IconGalleryThumbnailOutlinedFilled as default } +export default IconGalleryThumbnailOutlinedFilled diff --git a/src/IconGalleryThumbnailRounded.tsx b/src/IconGalleryThumbnailRounded.tsx index 0f7269452..0a3918b5c 100644 --- a/src/IconGalleryThumbnailRounded.tsx +++ b/src/IconGalleryThumbnailRounded.tsx @@ -8,4 +8,4 @@ const IconGalleryThumbnailRounded: React.FC = ({ ...props }) => ( ) -export { IconGalleryThumbnailRounded as default } +export default IconGalleryThumbnailRounded diff --git a/src/IconGalleryThumbnailRoundedFilled.tsx b/src/IconGalleryThumbnailRoundedFilled.tsx index 14cbfeef3..3aee1e240 100644 --- a/src/IconGalleryThumbnailRoundedFilled.tsx +++ b/src/IconGalleryThumbnailRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconGalleryThumbnailRoundedFilled: React.FC = ({ ) -export { IconGalleryThumbnailRoundedFilled as default } +export default IconGalleryThumbnailRoundedFilled diff --git a/src/IconGalleryThumbnailSharp.tsx b/src/IconGalleryThumbnailSharp.tsx index b7c8717d5..6d12591c6 100644 --- a/src/IconGalleryThumbnailSharp.tsx +++ b/src/IconGalleryThumbnailSharp.tsx @@ -8,4 +8,4 @@ const IconGalleryThumbnailSharp: React.FC = ({ ...props }) => ( ) -export { IconGalleryThumbnailSharp as default } +export default IconGalleryThumbnailSharp diff --git a/src/IconGalleryThumbnailSharpFilled.tsx b/src/IconGalleryThumbnailSharpFilled.tsx index c781c28ae..5234e69d5 100644 --- a/src/IconGalleryThumbnailSharpFilled.tsx +++ b/src/IconGalleryThumbnailSharpFilled.tsx @@ -8,4 +8,4 @@ const IconGalleryThumbnailSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconGalleryThumbnailSharpFilled as default } +export default IconGalleryThumbnailSharpFilled diff --git a/src/IconGamepadOutlined.tsx b/src/IconGamepadOutlined.tsx index e877b6459..004290a83 100644 --- a/src/IconGamepadOutlined.tsx +++ b/src/IconGamepadOutlined.tsx @@ -8,4 +8,4 @@ const IconGamepadOutlined: React.FC = ({ ...props }) => ( ) -export { IconGamepadOutlined as default } +export default IconGamepadOutlined diff --git a/src/IconGamepadOutlinedFilled.tsx b/src/IconGamepadOutlinedFilled.tsx index b0efcb119..07b2e45be 100644 --- a/src/IconGamepadOutlinedFilled.tsx +++ b/src/IconGamepadOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconGamepadOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconGamepadOutlinedFilled as default } +export default IconGamepadOutlinedFilled diff --git a/src/IconGamepadRounded.tsx b/src/IconGamepadRounded.tsx index 10f4108cc..4b6abd1bc 100644 --- a/src/IconGamepadRounded.tsx +++ b/src/IconGamepadRounded.tsx @@ -8,4 +8,4 @@ const IconGamepadRounded: React.FC = ({ ...props }) => ( ) -export { IconGamepadRounded as default } +export default IconGamepadRounded diff --git a/src/IconGamepadRoundedFilled.tsx b/src/IconGamepadRoundedFilled.tsx index 057d44dfd..a09812c86 100644 --- a/src/IconGamepadRoundedFilled.tsx +++ b/src/IconGamepadRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconGamepadRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconGamepadRoundedFilled as default } +export default IconGamepadRoundedFilled diff --git a/src/IconGamepadSharp.tsx b/src/IconGamepadSharp.tsx index 74f270b54..2ddb84a08 100644 --- a/src/IconGamepadSharp.tsx +++ b/src/IconGamepadSharp.tsx @@ -8,4 +8,4 @@ const IconGamepadSharp: React.FC = ({ ...props }) => ( ) -export { IconGamepadSharp as default } +export default IconGamepadSharp diff --git a/src/IconGamepadSharpFilled.tsx b/src/IconGamepadSharpFilled.tsx index fb8a281d5..dc2c5d524 100644 --- a/src/IconGamepadSharpFilled.tsx +++ b/src/IconGamepadSharpFilled.tsx @@ -8,4 +8,4 @@ const IconGamepadSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconGamepadSharpFilled as default } +export default IconGamepadSharpFilled diff --git a/src/IconGarageDoorOutlined.tsx b/src/IconGarageDoorOutlined.tsx index ef4c7e514..58a76da22 100644 --- a/src/IconGarageDoorOutlined.tsx +++ b/src/IconGarageDoorOutlined.tsx @@ -8,4 +8,4 @@ const IconGarageDoorOutlined: React.FC = ({ ...props }) => ( ) -export { IconGarageDoorOutlined as default } +export default IconGarageDoorOutlined diff --git a/src/IconGarageDoorOutlinedFilled.tsx b/src/IconGarageDoorOutlinedFilled.tsx index 55bee206a..f682993f5 100644 --- a/src/IconGarageDoorOutlinedFilled.tsx +++ b/src/IconGarageDoorOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconGarageDoorOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconGarageDoorOutlinedFilled as default } +export default IconGarageDoorOutlinedFilled diff --git a/src/IconGarageDoorRounded.tsx b/src/IconGarageDoorRounded.tsx index eb1a35a4d..432543abe 100644 --- a/src/IconGarageDoorRounded.tsx +++ b/src/IconGarageDoorRounded.tsx @@ -8,4 +8,4 @@ const IconGarageDoorRounded: React.FC = ({ ...props }) => ( ) -export { IconGarageDoorRounded as default } +export default IconGarageDoorRounded diff --git a/src/IconGarageDoorRoundedFilled.tsx b/src/IconGarageDoorRoundedFilled.tsx index 672a6ead1..f1528d946 100644 --- a/src/IconGarageDoorRoundedFilled.tsx +++ b/src/IconGarageDoorRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconGarageDoorRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconGarageDoorRoundedFilled as default } +export default IconGarageDoorRoundedFilled diff --git a/src/IconGarageDoorSharp.tsx b/src/IconGarageDoorSharp.tsx index 08ed6f400..c823952a8 100644 --- a/src/IconGarageDoorSharp.tsx +++ b/src/IconGarageDoorSharp.tsx @@ -8,4 +8,4 @@ const IconGarageDoorSharp: React.FC = ({ ...props }) => ( ) -export { IconGarageDoorSharp as default } +export default IconGarageDoorSharp diff --git a/src/IconGarageDoorSharpFilled.tsx b/src/IconGarageDoorSharpFilled.tsx index 5076e5812..c461b7436 100644 --- a/src/IconGarageDoorSharpFilled.tsx +++ b/src/IconGarageDoorSharpFilled.tsx @@ -8,4 +8,4 @@ const IconGarageDoorSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconGarageDoorSharpFilled as default } +export default IconGarageDoorSharpFilled diff --git a/src/IconGarageHomeOutlined.tsx b/src/IconGarageHomeOutlined.tsx index 0c4941d0e..d6b859af6 100644 --- a/src/IconGarageHomeOutlined.tsx +++ b/src/IconGarageHomeOutlined.tsx @@ -8,4 +8,4 @@ const IconGarageHomeOutlined: React.FC = ({ ...props }) => ( ) -export { IconGarageHomeOutlined as default } +export default IconGarageHomeOutlined diff --git a/src/IconGarageHomeOutlinedFilled.tsx b/src/IconGarageHomeOutlinedFilled.tsx index 36cb2f15a..20ee5c3d7 100644 --- a/src/IconGarageHomeOutlinedFilled.tsx +++ b/src/IconGarageHomeOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconGarageHomeOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconGarageHomeOutlinedFilled as default } +export default IconGarageHomeOutlinedFilled diff --git a/src/IconGarageHomeRounded.tsx b/src/IconGarageHomeRounded.tsx index ee48dfd33..bab9e729c 100644 --- a/src/IconGarageHomeRounded.tsx +++ b/src/IconGarageHomeRounded.tsx @@ -8,4 +8,4 @@ const IconGarageHomeRounded: React.FC = ({ ...props }) => ( ) -export { IconGarageHomeRounded as default } +export default IconGarageHomeRounded diff --git a/src/IconGarageHomeRoundedFilled.tsx b/src/IconGarageHomeRoundedFilled.tsx index d25219edb..aa3ac11d2 100644 --- a/src/IconGarageHomeRoundedFilled.tsx +++ b/src/IconGarageHomeRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconGarageHomeRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconGarageHomeRoundedFilled as default } +export default IconGarageHomeRoundedFilled diff --git a/src/IconGarageHomeSharp.tsx b/src/IconGarageHomeSharp.tsx index 4ec9824a5..af20a95dd 100644 --- a/src/IconGarageHomeSharp.tsx +++ b/src/IconGarageHomeSharp.tsx @@ -8,4 +8,4 @@ const IconGarageHomeSharp: React.FC = ({ ...props }) => ( ) -export { IconGarageHomeSharp as default } +export default IconGarageHomeSharp diff --git a/src/IconGarageHomeSharpFilled.tsx b/src/IconGarageHomeSharpFilled.tsx index 3e45b55ac..116ac9b86 100644 --- a/src/IconGarageHomeSharpFilled.tsx +++ b/src/IconGarageHomeSharpFilled.tsx @@ -8,4 +8,4 @@ const IconGarageHomeSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconGarageHomeSharpFilled as default } +export default IconGarageHomeSharpFilled diff --git a/src/IconGarageOutlined.tsx b/src/IconGarageOutlined.tsx index 0d89ea9ef..ecebaca80 100644 --- a/src/IconGarageOutlined.tsx +++ b/src/IconGarageOutlined.tsx @@ -8,4 +8,4 @@ const IconGarageOutlined: React.FC = ({ ...props }) => ( ) -export { IconGarageOutlined as default } +export default IconGarageOutlined diff --git a/src/IconGarageOutlinedFilled.tsx b/src/IconGarageOutlinedFilled.tsx index 124ac4649..c92a7123d 100644 --- a/src/IconGarageOutlinedFilled.tsx +++ b/src/IconGarageOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconGarageOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconGarageOutlinedFilled as default } +export default IconGarageOutlinedFilled diff --git a/src/IconGarageRounded.tsx b/src/IconGarageRounded.tsx index 4f8dc99d4..775fefe00 100644 --- a/src/IconGarageRounded.tsx +++ b/src/IconGarageRounded.tsx @@ -8,4 +8,4 @@ const IconGarageRounded: React.FC = ({ ...props }) => ( ) -export { IconGarageRounded as default } +export default IconGarageRounded diff --git a/src/IconGarageRoundedFilled.tsx b/src/IconGarageRoundedFilled.tsx index 9bf043b16..3f1b6be7f 100644 --- a/src/IconGarageRoundedFilled.tsx +++ b/src/IconGarageRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconGarageRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconGarageRoundedFilled as default } +export default IconGarageRoundedFilled diff --git a/src/IconGarageSharp.tsx b/src/IconGarageSharp.tsx index b3fb06380..2e9966444 100644 --- a/src/IconGarageSharp.tsx +++ b/src/IconGarageSharp.tsx @@ -8,4 +8,4 @@ const IconGarageSharp: React.FC = ({ ...props }) => ( ) -export { IconGarageSharp as default } +export default IconGarageSharp diff --git a/src/IconGarageSharpFilled.tsx b/src/IconGarageSharpFilled.tsx index 8a130962d..3a03be4b8 100644 --- a/src/IconGarageSharpFilled.tsx +++ b/src/IconGarageSharpFilled.tsx @@ -8,4 +8,4 @@ const IconGarageSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconGarageSharpFilled as default } +export default IconGarageSharpFilled diff --git a/src/IconGardenCartOutlined.tsx b/src/IconGardenCartOutlined.tsx index 122c78b0b..f8e10e656 100644 --- a/src/IconGardenCartOutlined.tsx +++ b/src/IconGardenCartOutlined.tsx @@ -8,4 +8,4 @@ const IconGardenCartOutlined: React.FC = ({ ...props }) => ( ) -export { IconGardenCartOutlined as default } +export default IconGardenCartOutlined diff --git a/src/IconGardenCartOutlinedFilled.tsx b/src/IconGardenCartOutlinedFilled.tsx index 73221f458..dae53ce30 100644 --- a/src/IconGardenCartOutlinedFilled.tsx +++ b/src/IconGardenCartOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconGardenCartOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconGardenCartOutlinedFilled as default } +export default IconGardenCartOutlinedFilled diff --git a/src/IconGardenCartRounded.tsx b/src/IconGardenCartRounded.tsx index 628ea888a..c85b35c17 100644 --- a/src/IconGardenCartRounded.tsx +++ b/src/IconGardenCartRounded.tsx @@ -8,4 +8,4 @@ const IconGardenCartRounded: React.FC = ({ ...props }) => ( ) -export { IconGardenCartRounded as default } +export default IconGardenCartRounded diff --git a/src/IconGardenCartRoundedFilled.tsx b/src/IconGardenCartRoundedFilled.tsx index f307f099f..026803ec5 100644 --- a/src/IconGardenCartRoundedFilled.tsx +++ b/src/IconGardenCartRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconGardenCartRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconGardenCartRoundedFilled as default } +export default IconGardenCartRoundedFilled diff --git a/src/IconGardenCartSharp.tsx b/src/IconGardenCartSharp.tsx index 5872dcb75..092f95080 100644 --- a/src/IconGardenCartSharp.tsx +++ b/src/IconGardenCartSharp.tsx @@ -8,4 +8,4 @@ const IconGardenCartSharp: React.FC = ({ ...props }) => ( ) -export { IconGardenCartSharp as default } +export default IconGardenCartSharp diff --git a/src/IconGardenCartSharpFilled.tsx b/src/IconGardenCartSharpFilled.tsx index 5ef096f59..f4bc98084 100644 --- a/src/IconGardenCartSharpFilled.tsx +++ b/src/IconGardenCartSharpFilled.tsx @@ -8,4 +8,4 @@ const IconGardenCartSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconGardenCartSharpFilled as default } +export default IconGardenCartSharpFilled diff --git a/src/IconGasMeterOutlined.tsx b/src/IconGasMeterOutlined.tsx index 1eec0a528..d2df57dde 100644 --- a/src/IconGasMeterOutlined.tsx +++ b/src/IconGasMeterOutlined.tsx @@ -8,4 +8,4 @@ const IconGasMeterOutlined: React.FC = ({ ...props }) => ( ) -export { IconGasMeterOutlined as default } +export default IconGasMeterOutlined diff --git a/src/IconGasMeterOutlinedFilled.tsx b/src/IconGasMeterOutlinedFilled.tsx index b5a924f2a..2f2fac21e 100644 --- a/src/IconGasMeterOutlinedFilled.tsx +++ b/src/IconGasMeterOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconGasMeterOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconGasMeterOutlinedFilled as default } +export default IconGasMeterOutlinedFilled diff --git a/src/IconGasMeterRounded.tsx b/src/IconGasMeterRounded.tsx index 8cacecc60..ea3ce67a0 100644 --- a/src/IconGasMeterRounded.tsx +++ b/src/IconGasMeterRounded.tsx @@ -8,4 +8,4 @@ const IconGasMeterRounded: React.FC = ({ ...props }) => ( ) -export { IconGasMeterRounded as default } +export default IconGasMeterRounded diff --git a/src/IconGasMeterRoundedFilled.tsx b/src/IconGasMeterRoundedFilled.tsx index d5ea62f45..dbdf350c0 100644 --- a/src/IconGasMeterRoundedFilled.tsx +++ b/src/IconGasMeterRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconGasMeterRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconGasMeterRoundedFilled as default } +export default IconGasMeterRoundedFilled diff --git a/src/IconGasMeterSharp.tsx b/src/IconGasMeterSharp.tsx index b69bfd08b..497465fcc 100644 --- a/src/IconGasMeterSharp.tsx +++ b/src/IconGasMeterSharp.tsx @@ -8,4 +8,4 @@ const IconGasMeterSharp: React.FC = ({ ...props }) => ( ) -export { IconGasMeterSharp as default } +export default IconGasMeterSharp diff --git a/src/IconGasMeterSharpFilled.tsx b/src/IconGasMeterSharpFilled.tsx index 37bd10d86..f78b8fe92 100644 --- a/src/IconGasMeterSharpFilled.tsx +++ b/src/IconGasMeterSharpFilled.tsx @@ -8,4 +8,4 @@ const IconGasMeterSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconGasMeterSharpFilled as default } +export default IconGasMeterSharpFilled diff --git a/src/IconGastroenterologyOutlined.tsx b/src/IconGastroenterologyOutlined.tsx index f49799d21..6068235f8 100644 --- a/src/IconGastroenterologyOutlined.tsx +++ b/src/IconGastroenterologyOutlined.tsx @@ -8,4 +8,4 @@ const IconGastroenterologyOutlined: React.FC = ({ ...props }) => ( ) -export { IconGastroenterologyOutlined as default } +export default IconGastroenterologyOutlined diff --git a/src/IconGastroenterologyOutlinedFilled.tsx b/src/IconGastroenterologyOutlinedFilled.tsx index 5f15f4024..d63096184 100644 --- a/src/IconGastroenterologyOutlinedFilled.tsx +++ b/src/IconGastroenterologyOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconGastroenterologyOutlinedFilled: React.FC = ({ ) -export { IconGastroenterologyOutlinedFilled as default } +export default IconGastroenterologyOutlinedFilled diff --git a/src/IconGastroenterologyRounded.tsx b/src/IconGastroenterologyRounded.tsx index 8a14b16ff..30d220cd2 100644 --- a/src/IconGastroenterologyRounded.tsx +++ b/src/IconGastroenterologyRounded.tsx @@ -8,4 +8,4 @@ const IconGastroenterologyRounded: React.FC = ({ ...props }) => ( ) -export { IconGastroenterologyRounded as default } +export default IconGastroenterologyRounded diff --git a/src/IconGastroenterologyRoundedFilled.tsx b/src/IconGastroenterologyRoundedFilled.tsx index a0e25c917..5eab102a5 100644 --- a/src/IconGastroenterologyRoundedFilled.tsx +++ b/src/IconGastroenterologyRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconGastroenterologyRoundedFilled: React.FC = ({ ) -export { IconGastroenterologyRoundedFilled as default } +export default IconGastroenterologyRoundedFilled diff --git a/src/IconGastroenterologySharp.tsx b/src/IconGastroenterologySharp.tsx index 11e223139..c118939cb 100644 --- a/src/IconGastroenterologySharp.tsx +++ b/src/IconGastroenterologySharp.tsx @@ -8,4 +8,4 @@ const IconGastroenterologySharp: React.FC = ({ ...props }) => ( ) -export { IconGastroenterologySharp as default } +export default IconGastroenterologySharp diff --git a/src/IconGastroenterologySharpFilled.tsx b/src/IconGastroenterologySharpFilled.tsx index 75b0db7e7..f89a6be6f 100644 --- a/src/IconGastroenterologySharpFilled.tsx +++ b/src/IconGastroenterologySharpFilled.tsx @@ -8,4 +8,4 @@ const IconGastroenterologySharpFilled: React.FC = ({ ...props }) => ( ) -export { IconGastroenterologySharpFilled as default } +export default IconGastroenterologySharpFilled diff --git a/src/IconGateOutlined.tsx b/src/IconGateOutlined.tsx index bbca2526c..99d4e5847 100644 --- a/src/IconGateOutlined.tsx +++ b/src/IconGateOutlined.tsx @@ -8,4 +8,4 @@ const IconGateOutlined: React.FC = ({ ...props }) => ( ) -export { IconGateOutlined as default } +export default IconGateOutlined diff --git a/src/IconGateOutlinedFilled.tsx b/src/IconGateOutlinedFilled.tsx index 7a5c16198..b59057d6d 100644 --- a/src/IconGateOutlinedFilled.tsx +++ b/src/IconGateOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconGateOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconGateOutlinedFilled as default } +export default IconGateOutlinedFilled diff --git a/src/IconGateRounded.tsx b/src/IconGateRounded.tsx index 455febd5e..fdb852ee2 100644 --- a/src/IconGateRounded.tsx +++ b/src/IconGateRounded.tsx @@ -8,4 +8,4 @@ const IconGateRounded: React.FC = ({ ...props }) => ( ) -export { IconGateRounded as default } +export default IconGateRounded diff --git a/src/IconGateRoundedFilled.tsx b/src/IconGateRoundedFilled.tsx index 8aefeafbb..5f194e12f 100644 --- a/src/IconGateRoundedFilled.tsx +++ b/src/IconGateRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconGateRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconGateRoundedFilled as default } +export default IconGateRoundedFilled diff --git a/src/IconGateSharp.tsx b/src/IconGateSharp.tsx index f5c41b175..ec2031927 100644 --- a/src/IconGateSharp.tsx +++ b/src/IconGateSharp.tsx @@ -8,4 +8,4 @@ const IconGateSharp: React.FC = ({ ...props }) => ( ) -export { IconGateSharp as default } +export default IconGateSharp diff --git a/src/IconGateSharpFilled.tsx b/src/IconGateSharpFilled.tsx index d84bced5f..865e92596 100644 --- a/src/IconGateSharpFilled.tsx +++ b/src/IconGateSharpFilled.tsx @@ -8,4 +8,4 @@ const IconGateSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconGateSharpFilled as default } +export default IconGateSharpFilled diff --git a/src/IconGavelOutlined.tsx b/src/IconGavelOutlined.tsx index f9cb13af5..7ba85c5dd 100644 --- a/src/IconGavelOutlined.tsx +++ b/src/IconGavelOutlined.tsx @@ -8,4 +8,4 @@ const IconGavelOutlined: React.FC = ({ ...props }) => ( ) -export { IconGavelOutlined as default } +export default IconGavelOutlined diff --git a/src/IconGavelOutlinedFilled.tsx b/src/IconGavelOutlinedFilled.tsx index 69be665cd..b5aeb8ea6 100644 --- a/src/IconGavelOutlinedFilled.tsx +++ b/src/IconGavelOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconGavelOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconGavelOutlinedFilled as default } +export default IconGavelOutlinedFilled diff --git a/src/IconGavelRounded.tsx b/src/IconGavelRounded.tsx index 96b2228fe..3ceb909f2 100644 --- a/src/IconGavelRounded.tsx +++ b/src/IconGavelRounded.tsx @@ -8,4 +8,4 @@ const IconGavelRounded: React.FC = ({ ...props }) => ( ) -export { IconGavelRounded as default } +export default IconGavelRounded diff --git a/src/IconGavelRoundedFilled.tsx b/src/IconGavelRoundedFilled.tsx index 761ac6515..178d3196c 100644 --- a/src/IconGavelRoundedFilled.tsx +++ b/src/IconGavelRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconGavelRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconGavelRoundedFilled as default } +export default IconGavelRoundedFilled diff --git a/src/IconGavelSharp.tsx b/src/IconGavelSharp.tsx index 5a9921ccc..a12941dd7 100644 --- a/src/IconGavelSharp.tsx +++ b/src/IconGavelSharp.tsx @@ -8,4 +8,4 @@ const IconGavelSharp: React.FC = ({ ...props }) => ( ) -export { IconGavelSharp as default } +export default IconGavelSharp diff --git a/src/IconGavelSharpFilled.tsx b/src/IconGavelSharpFilled.tsx index fe4a1c7b1..56ecf13c0 100644 --- a/src/IconGavelSharpFilled.tsx +++ b/src/IconGavelSharpFilled.tsx @@ -8,4 +8,4 @@ const IconGavelSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconGavelSharpFilled as default } +export default IconGavelSharpFilled diff --git a/src/IconGeneralDeviceOutlined.tsx b/src/IconGeneralDeviceOutlined.tsx index f797668db..b3cdb3a05 100644 --- a/src/IconGeneralDeviceOutlined.tsx +++ b/src/IconGeneralDeviceOutlined.tsx @@ -8,4 +8,4 @@ const IconGeneralDeviceOutlined: React.FC = ({ ...props }) => ( ) -export { IconGeneralDeviceOutlined as default } +export default IconGeneralDeviceOutlined diff --git a/src/IconGeneralDeviceOutlinedFilled.tsx b/src/IconGeneralDeviceOutlinedFilled.tsx index 10e72798d..c0eae2376 100644 --- a/src/IconGeneralDeviceOutlinedFilled.tsx +++ b/src/IconGeneralDeviceOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconGeneralDeviceOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconGeneralDeviceOutlinedFilled as default } +export default IconGeneralDeviceOutlinedFilled diff --git a/src/IconGeneralDeviceRounded.tsx b/src/IconGeneralDeviceRounded.tsx index 3735bf430..b2b8cabd7 100644 --- a/src/IconGeneralDeviceRounded.tsx +++ b/src/IconGeneralDeviceRounded.tsx @@ -8,4 +8,4 @@ const IconGeneralDeviceRounded: React.FC = ({ ...props }) => ( ) -export { IconGeneralDeviceRounded as default } +export default IconGeneralDeviceRounded diff --git a/src/IconGeneralDeviceRoundedFilled.tsx b/src/IconGeneralDeviceRoundedFilled.tsx index dcba51e49..fb88712e3 100644 --- a/src/IconGeneralDeviceRoundedFilled.tsx +++ b/src/IconGeneralDeviceRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconGeneralDeviceRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconGeneralDeviceRoundedFilled as default } +export default IconGeneralDeviceRoundedFilled diff --git a/src/IconGeneralDeviceSharp.tsx b/src/IconGeneralDeviceSharp.tsx index c9d37065c..bdaa5dd3a 100644 --- a/src/IconGeneralDeviceSharp.tsx +++ b/src/IconGeneralDeviceSharp.tsx @@ -8,4 +8,4 @@ const IconGeneralDeviceSharp: React.FC = ({ ...props }) => ( ) -export { IconGeneralDeviceSharp as default } +export default IconGeneralDeviceSharp diff --git a/src/IconGeneralDeviceSharpFilled.tsx b/src/IconGeneralDeviceSharpFilled.tsx index 5a67b3def..045691e84 100644 --- a/src/IconGeneralDeviceSharpFilled.tsx +++ b/src/IconGeneralDeviceSharpFilled.tsx @@ -8,4 +8,4 @@ const IconGeneralDeviceSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconGeneralDeviceSharpFilled as default } +export default IconGeneralDeviceSharpFilled diff --git a/src/IconGeneticsOutlined.tsx b/src/IconGeneticsOutlined.tsx index 45c7b26f3..4ee98d9cf 100644 --- a/src/IconGeneticsOutlined.tsx +++ b/src/IconGeneticsOutlined.tsx @@ -8,4 +8,4 @@ const IconGeneticsOutlined: React.FC = ({ ...props }) => ( ) -export { IconGeneticsOutlined as default } +export default IconGeneticsOutlined diff --git a/src/IconGeneticsOutlinedFilled.tsx b/src/IconGeneticsOutlinedFilled.tsx index 517e358cb..87bc47a73 100644 --- a/src/IconGeneticsOutlinedFilled.tsx +++ b/src/IconGeneticsOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconGeneticsOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconGeneticsOutlinedFilled as default } +export default IconGeneticsOutlinedFilled diff --git a/src/IconGeneticsRounded.tsx b/src/IconGeneticsRounded.tsx index 9041cc1ec..a1ebeba5a 100644 --- a/src/IconGeneticsRounded.tsx +++ b/src/IconGeneticsRounded.tsx @@ -8,4 +8,4 @@ const IconGeneticsRounded: React.FC = ({ ...props }) => ( ) -export { IconGeneticsRounded as default } +export default IconGeneticsRounded diff --git a/src/IconGeneticsRoundedFilled.tsx b/src/IconGeneticsRoundedFilled.tsx index 92f16adfc..7cd9b1454 100644 --- a/src/IconGeneticsRoundedFilled.tsx +++ b/src/IconGeneticsRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconGeneticsRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconGeneticsRoundedFilled as default } +export default IconGeneticsRoundedFilled diff --git a/src/IconGeneticsSharp.tsx b/src/IconGeneticsSharp.tsx index 7ea4840e5..bc06003c4 100644 --- a/src/IconGeneticsSharp.tsx +++ b/src/IconGeneticsSharp.tsx @@ -8,4 +8,4 @@ const IconGeneticsSharp: React.FC = ({ ...props }) => ( ) -export { IconGeneticsSharp as default } +export default IconGeneticsSharp diff --git a/src/IconGeneticsSharpFilled.tsx b/src/IconGeneticsSharpFilled.tsx index 38108b8f9..ce9838f45 100644 --- a/src/IconGeneticsSharpFilled.tsx +++ b/src/IconGeneticsSharpFilled.tsx @@ -8,4 +8,4 @@ const IconGeneticsSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconGeneticsSharpFilled as default } +export default IconGeneticsSharpFilled diff --git a/src/IconGenresOutlined.tsx b/src/IconGenresOutlined.tsx index 75761e54e..ae70cd94d 100644 --- a/src/IconGenresOutlined.tsx +++ b/src/IconGenresOutlined.tsx @@ -8,4 +8,4 @@ const IconGenresOutlined: React.FC = ({ ...props }) => ( ) -export { IconGenresOutlined as default } +export default IconGenresOutlined diff --git a/src/IconGenresOutlinedFilled.tsx b/src/IconGenresOutlinedFilled.tsx index a7052f2ff..d0accbf75 100644 --- a/src/IconGenresOutlinedFilled.tsx +++ b/src/IconGenresOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconGenresOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconGenresOutlinedFilled as default } +export default IconGenresOutlinedFilled diff --git a/src/IconGenresRounded.tsx b/src/IconGenresRounded.tsx index c0ad498a9..b6d8b37b5 100644 --- a/src/IconGenresRounded.tsx +++ b/src/IconGenresRounded.tsx @@ -8,4 +8,4 @@ const IconGenresRounded: React.FC = ({ ...props }) => ( ) -export { IconGenresRounded as default } +export default IconGenresRounded diff --git a/src/IconGenresRoundedFilled.tsx b/src/IconGenresRoundedFilled.tsx index eeb494da1..a61e64d33 100644 --- a/src/IconGenresRoundedFilled.tsx +++ b/src/IconGenresRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconGenresRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconGenresRoundedFilled as default } +export default IconGenresRoundedFilled diff --git a/src/IconGenresSharp.tsx b/src/IconGenresSharp.tsx index be4d5cfc0..8af7800b1 100644 --- a/src/IconGenresSharp.tsx +++ b/src/IconGenresSharp.tsx @@ -8,4 +8,4 @@ const IconGenresSharp: React.FC = ({ ...props }) => ( ) -export { IconGenresSharp as default } +export default IconGenresSharp diff --git a/src/IconGenresSharpFilled.tsx b/src/IconGenresSharpFilled.tsx index 255d2edcb..04e4c134b 100644 --- a/src/IconGenresSharpFilled.tsx +++ b/src/IconGenresSharpFilled.tsx @@ -8,4 +8,4 @@ const IconGenresSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconGenresSharpFilled as default } +export default IconGenresSharpFilled diff --git a/src/IconGestureOutlined.tsx b/src/IconGestureOutlined.tsx index 22665df58..7b7b4574a 100644 --- a/src/IconGestureOutlined.tsx +++ b/src/IconGestureOutlined.tsx @@ -8,4 +8,4 @@ const IconGestureOutlined: React.FC = ({ ...props }) => ( ) -export { IconGestureOutlined as default } +export default IconGestureOutlined diff --git a/src/IconGestureOutlinedFilled.tsx b/src/IconGestureOutlinedFilled.tsx index 29b3c48cc..179a340ee 100644 --- a/src/IconGestureOutlinedFilled.tsx +++ b/src/IconGestureOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconGestureOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconGestureOutlinedFilled as default } +export default IconGestureOutlinedFilled diff --git a/src/IconGestureRounded.tsx b/src/IconGestureRounded.tsx index bcda333f3..a0ff38c2d 100644 --- a/src/IconGestureRounded.tsx +++ b/src/IconGestureRounded.tsx @@ -8,4 +8,4 @@ const IconGestureRounded: React.FC = ({ ...props }) => ( ) -export { IconGestureRounded as default } +export default IconGestureRounded diff --git a/src/IconGestureRoundedFilled.tsx b/src/IconGestureRoundedFilled.tsx index e71f979fa..9f6336e6e 100644 --- a/src/IconGestureRoundedFilled.tsx +++ b/src/IconGestureRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconGestureRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconGestureRoundedFilled as default } +export default IconGestureRoundedFilled diff --git a/src/IconGestureSelectOutlined.tsx b/src/IconGestureSelectOutlined.tsx index 58b811bd9..28160509c 100644 --- a/src/IconGestureSelectOutlined.tsx +++ b/src/IconGestureSelectOutlined.tsx @@ -8,4 +8,4 @@ const IconGestureSelectOutlined: React.FC = ({ ...props }) => ( ) -export { IconGestureSelectOutlined as default } +export default IconGestureSelectOutlined diff --git a/src/IconGestureSelectOutlinedFilled.tsx b/src/IconGestureSelectOutlinedFilled.tsx index e76ca059e..fa29fa374 100644 --- a/src/IconGestureSelectOutlinedFilled.tsx +++ b/src/IconGestureSelectOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconGestureSelectOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconGestureSelectOutlinedFilled as default } +export default IconGestureSelectOutlinedFilled diff --git a/src/IconGestureSelectRounded.tsx b/src/IconGestureSelectRounded.tsx index 1931b3848..539501199 100644 --- a/src/IconGestureSelectRounded.tsx +++ b/src/IconGestureSelectRounded.tsx @@ -8,4 +8,4 @@ const IconGestureSelectRounded: React.FC = ({ ...props }) => ( ) -export { IconGestureSelectRounded as default } +export default IconGestureSelectRounded diff --git a/src/IconGestureSelectRoundedFilled.tsx b/src/IconGestureSelectRoundedFilled.tsx index 08eaef095..8d97583da 100644 --- a/src/IconGestureSelectRoundedFilled.tsx +++ b/src/IconGestureSelectRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconGestureSelectRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconGestureSelectRoundedFilled as default } +export default IconGestureSelectRoundedFilled diff --git a/src/IconGestureSelectSharp.tsx b/src/IconGestureSelectSharp.tsx index 85bdf5ed7..c3e38a289 100644 --- a/src/IconGestureSelectSharp.tsx +++ b/src/IconGestureSelectSharp.tsx @@ -8,4 +8,4 @@ const IconGestureSelectSharp: React.FC = ({ ...props }) => ( ) -export { IconGestureSelectSharp as default } +export default IconGestureSelectSharp diff --git a/src/IconGestureSelectSharpFilled.tsx b/src/IconGestureSelectSharpFilled.tsx index 0b35dd646..e5c0f9e6c 100644 --- a/src/IconGestureSelectSharpFilled.tsx +++ b/src/IconGestureSelectSharpFilled.tsx @@ -8,4 +8,4 @@ const IconGestureSelectSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconGestureSelectSharpFilled as default } +export default IconGestureSelectSharpFilled diff --git a/src/IconGestureSharp.tsx b/src/IconGestureSharp.tsx index 91f6474e6..b22a08aa0 100644 --- a/src/IconGestureSharp.tsx +++ b/src/IconGestureSharp.tsx @@ -8,4 +8,4 @@ const IconGestureSharp: React.FC = ({ ...props }) => ( ) -export { IconGestureSharp as default } +export default IconGestureSharp diff --git a/src/IconGestureSharpFilled.tsx b/src/IconGestureSharpFilled.tsx index a96ddd167..d320f23bc 100644 --- a/src/IconGestureSharpFilled.tsx +++ b/src/IconGestureSharpFilled.tsx @@ -8,4 +8,4 @@ const IconGestureSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconGestureSharpFilled as default } +export default IconGestureSharpFilled diff --git a/src/IconGif2Outlined.tsx b/src/IconGif2Outlined.tsx index 73db0948f..0854b91cb 100644 --- a/src/IconGif2Outlined.tsx +++ b/src/IconGif2Outlined.tsx @@ -8,4 +8,4 @@ const IconGif2Outlined: React.FC = ({ ...props }) => ( ) -export { IconGif2Outlined as default } +export default IconGif2Outlined diff --git a/src/IconGif2OutlinedFilled.tsx b/src/IconGif2OutlinedFilled.tsx index af7305cb2..6b32fb4c8 100644 --- a/src/IconGif2OutlinedFilled.tsx +++ b/src/IconGif2OutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconGif2OutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconGif2OutlinedFilled as default } +export default IconGif2OutlinedFilled diff --git a/src/IconGif2Rounded.tsx b/src/IconGif2Rounded.tsx index fff4ab947..7847ef3f3 100644 --- a/src/IconGif2Rounded.tsx +++ b/src/IconGif2Rounded.tsx @@ -8,4 +8,4 @@ const IconGif2Rounded: React.FC = ({ ...props }) => ( ) -export { IconGif2Rounded as default } +export default IconGif2Rounded diff --git a/src/IconGif2RoundedFilled.tsx b/src/IconGif2RoundedFilled.tsx index 27bda5a0e..9566c30f1 100644 --- a/src/IconGif2RoundedFilled.tsx +++ b/src/IconGif2RoundedFilled.tsx @@ -8,4 +8,4 @@ const IconGif2RoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconGif2RoundedFilled as default } +export default IconGif2RoundedFilled diff --git a/src/IconGif2Sharp.tsx b/src/IconGif2Sharp.tsx index b1d7cadf6..2b19f5e98 100644 --- a/src/IconGif2Sharp.tsx +++ b/src/IconGif2Sharp.tsx @@ -8,4 +8,4 @@ const IconGif2Sharp: React.FC = ({ ...props }) => ( ) -export { IconGif2Sharp as default } +export default IconGif2Sharp diff --git a/src/IconGif2SharpFilled.tsx b/src/IconGif2SharpFilled.tsx index a24641dbb..a742d62ac 100644 --- a/src/IconGif2SharpFilled.tsx +++ b/src/IconGif2SharpFilled.tsx @@ -8,4 +8,4 @@ const IconGif2SharpFilled: React.FC = ({ ...props }) => ( ) -export { IconGif2SharpFilled as default } +export default IconGif2SharpFilled diff --git a/src/IconGifBoxOutlined.tsx b/src/IconGifBoxOutlined.tsx index 7dc7cb0d0..b7ace4299 100644 --- a/src/IconGifBoxOutlined.tsx +++ b/src/IconGifBoxOutlined.tsx @@ -8,4 +8,4 @@ const IconGifBoxOutlined: React.FC = ({ ...props }) => ( ) -export { IconGifBoxOutlined as default } +export default IconGifBoxOutlined diff --git a/src/IconGifBoxOutlinedFilled.tsx b/src/IconGifBoxOutlinedFilled.tsx index cabed2dec..10f710ade 100644 --- a/src/IconGifBoxOutlinedFilled.tsx +++ b/src/IconGifBoxOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconGifBoxOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconGifBoxOutlinedFilled as default } +export default IconGifBoxOutlinedFilled diff --git a/src/IconGifBoxRounded.tsx b/src/IconGifBoxRounded.tsx index bb475465d..67052228d 100644 --- a/src/IconGifBoxRounded.tsx +++ b/src/IconGifBoxRounded.tsx @@ -8,4 +8,4 @@ const IconGifBoxRounded: React.FC = ({ ...props }) => ( ) -export { IconGifBoxRounded as default } +export default IconGifBoxRounded diff --git a/src/IconGifBoxRoundedFilled.tsx b/src/IconGifBoxRoundedFilled.tsx index 8185497a9..23148c192 100644 --- a/src/IconGifBoxRoundedFilled.tsx +++ b/src/IconGifBoxRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconGifBoxRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconGifBoxRoundedFilled as default } +export default IconGifBoxRoundedFilled diff --git a/src/IconGifBoxSharp.tsx b/src/IconGifBoxSharp.tsx index 1d7ac551e..9700c3aad 100644 --- a/src/IconGifBoxSharp.tsx +++ b/src/IconGifBoxSharp.tsx @@ -8,4 +8,4 @@ const IconGifBoxSharp: React.FC = ({ ...props }) => ( ) -export { IconGifBoxSharp as default } +export default IconGifBoxSharp diff --git a/src/IconGifBoxSharpFilled.tsx b/src/IconGifBoxSharpFilled.tsx index d5666e5ff..8f5aea54a 100644 --- a/src/IconGifBoxSharpFilled.tsx +++ b/src/IconGifBoxSharpFilled.tsx @@ -8,4 +8,4 @@ const IconGifBoxSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconGifBoxSharpFilled as default } +export default IconGifBoxSharpFilled diff --git a/src/IconGifOutlined.tsx b/src/IconGifOutlined.tsx index dd4606aac..1ff914615 100644 --- a/src/IconGifOutlined.tsx +++ b/src/IconGifOutlined.tsx @@ -8,4 +8,4 @@ const IconGifOutlined: React.FC = ({ ...props }) => ( ) -export { IconGifOutlined as default } +export default IconGifOutlined diff --git a/src/IconGifOutlinedFilled.tsx b/src/IconGifOutlinedFilled.tsx index 8cd0392cc..ad3311846 100644 --- a/src/IconGifOutlinedFilled.tsx +++ b/src/IconGifOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconGifOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconGifOutlinedFilled as default } +export default IconGifOutlinedFilled diff --git a/src/IconGifRounded.tsx b/src/IconGifRounded.tsx index 225df2384..2b9199c55 100644 --- a/src/IconGifRounded.tsx +++ b/src/IconGifRounded.tsx @@ -8,4 +8,4 @@ const IconGifRounded: React.FC = ({ ...props }) => ( ) -export { IconGifRounded as default } +export default IconGifRounded diff --git a/src/IconGifRoundedFilled.tsx b/src/IconGifRoundedFilled.tsx index d88cc6f38..2376ccacb 100644 --- a/src/IconGifRoundedFilled.tsx +++ b/src/IconGifRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconGifRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconGifRoundedFilled as default } +export default IconGifRoundedFilled diff --git a/src/IconGifSharp.tsx b/src/IconGifSharp.tsx index 718cf6ad8..8a91036e9 100644 --- a/src/IconGifSharp.tsx +++ b/src/IconGifSharp.tsx @@ -8,4 +8,4 @@ const IconGifSharp: React.FC = ({ ...props }) => ( ) -export { IconGifSharp as default } +export default IconGifSharp diff --git a/src/IconGifSharpFilled.tsx b/src/IconGifSharpFilled.tsx index 2a07c5c95..51013d16e 100644 --- a/src/IconGifSharpFilled.tsx +++ b/src/IconGifSharpFilled.tsx @@ -8,4 +8,4 @@ const IconGifSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconGifSharpFilled as default } +export default IconGifSharpFilled diff --git a/src/IconGirlOutlined.tsx b/src/IconGirlOutlined.tsx index 7c68a77fb..faa67b4e8 100644 --- a/src/IconGirlOutlined.tsx +++ b/src/IconGirlOutlined.tsx @@ -8,4 +8,4 @@ const IconGirlOutlined: React.FC = ({ ...props }) => ( ) -export { IconGirlOutlined as default } +export default IconGirlOutlined diff --git a/src/IconGirlOutlinedFilled.tsx b/src/IconGirlOutlinedFilled.tsx index 1d5182d37..bd42be4f0 100644 --- a/src/IconGirlOutlinedFilled.tsx +++ b/src/IconGirlOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconGirlOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconGirlOutlinedFilled as default } +export default IconGirlOutlinedFilled diff --git a/src/IconGirlRounded.tsx b/src/IconGirlRounded.tsx index b19782e0b..57a462cad 100644 --- a/src/IconGirlRounded.tsx +++ b/src/IconGirlRounded.tsx @@ -8,4 +8,4 @@ const IconGirlRounded: React.FC = ({ ...props }) => ( ) -export { IconGirlRounded as default } +export default IconGirlRounded diff --git a/src/IconGirlRoundedFilled.tsx b/src/IconGirlRoundedFilled.tsx index d71757878..be3a9acab 100644 --- a/src/IconGirlRoundedFilled.tsx +++ b/src/IconGirlRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconGirlRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconGirlRoundedFilled as default } +export default IconGirlRoundedFilled diff --git a/src/IconGirlSharp.tsx b/src/IconGirlSharp.tsx index 06bead716..e71ca945c 100644 --- a/src/IconGirlSharp.tsx +++ b/src/IconGirlSharp.tsx @@ -8,4 +8,4 @@ const IconGirlSharp: React.FC = ({ ...props }) => ( ) -export { IconGirlSharp as default } +export default IconGirlSharp diff --git a/src/IconGirlSharpFilled.tsx b/src/IconGirlSharpFilled.tsx index 4f46133cf..16c377e30 100644 --- a/src/IconGirlSharpFilled.tsx +++ b/src/IconGirlSharpFilled.tsx @@ -8,4 +8,4 @@ const IconGirlSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconGirlSharpFilled as default } +export default IconGirlSharpFilled diff --git a/src/IconGiteOutlined.tsx b/src/IconGiteOutlined.tsx index d8a02b9ed..75a1bd6ff 100644 --- a/src/IconGiteOutlined.tsx +++ b/src/IconGiteOutlined.tsx @@ -8,4 +8,4 @@ const IconGiteOutlined: React.FC = ({ ...props }) => ( ) -export { IconGiteOutlined as default } +export default IconGiteOutlined diff --git a/src/IconGiteOutlinedFilled.tsx b/src/IconGiteOutlinedFilled.tsx index 80f548511..9ee781d12 100644 --- a/src/IconGiteOutlinedFilled.tsx +++ b/src/IconGiteOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconGiteOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconGiteOutlinedFilled as default } +export default IconGiteOutlinedFilled diff --git a/src/IconGiteRounded.tsx b/src/IconGiteRounded.tsx index 6a31d4c84..06f3f90b3 100644 --- a/src/IconGiteRounded.tsx +++ b/src/IconGiteRounded.tsx @@ -8,4 +8,4 @@ const IconGiteRounded: React.FC = ({ ...props }) => ( ) -export { IconGiteRounded as default } +export default IconGiteRounded diff --git a/src/IconGiteRoundedFilled.tsx b/src/IconGiteRoundedFilled.tsx index 1e0c5a2f1..63396bd48 100644 --- a/src/IconGiteRoundedFilled.tsx +++ b/src/IconGiteRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconGiteRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconGiteRoundedFilled as default } +export default IconGiteRoundedFilled diff --git a/src/IconGiteSharp.tsx b/src/IconGiteSharp.tsx index dc9cf8e78..803731280 100644 --- a/src/IconGiteSharp.tsx +++ b/src/IconGiteSharp.tsx @@ -8,4 +8,4 @@ const IconGiteSharp: React.FC = ({ ...props }) => ( ) -export { IconGiteSharp as default } +export default IconGiteSharp diff --git a/src/IconGiteSharpFilled.tsx b/src/IconGiteSharpFilled.tsx index 58006039c..4ee713fc1 100644 --- a/src/IconGiteSharpFilled.tsx +++ b/src/IconGiteSharpFilled.tsx @@ -8,4 +8,4 @@ const IconGiteSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconGiteSharpFilled as default } +export default IconGiteSharpFilled diff --git a/src/IconGlassCupOutlined.tsx b/src/IconGlassCupOutlined.tsx index ec9f473b7..3db74f8b1 100644 --- a/src/IconGlassCupOutlined.tsx +++ b/src/IconGlassCupOutlined.tsx @@ -8,4 +8,4 @@ const IconGlassCupOutlined: React.FC = ({ ...props }) => ( ) -export { IconGlassCupOutlined as default } +export default IconGlassCupOutlined diff --git a/src/IconGlassCupOutlinedFilled.tsx b/src/IconGlassCupOutlinedFilled.tsx index 39dde8df9..023e99e25 100644 --- a/src/IconGlassCupOutlinedFilled.tsx +++ b/src/IconGlassCupOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconGlassCupOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconGlassCupOutlinedFilled as default } +export default IconGlassCupOutlinedFilled diff --git a/src/IconGlassCupRounded.tsx b/src/IconGlassCupRounded.tsx index 181e2dcbd..1094fecf7 100644 --- a/src/IconGlassCupRounded.tsx +++ b/src/IconGlassCupRounded.tsx @@ -8,4 +8,4 @@ const IconGlassCupRounded: React.FC = ({ ...props }) => ( ) -export { IconGlassCupRounded as default } +export default IconGlassCupRounded diff --git a/src/IconGlassCupRoundedFilled.tsx b/src/IconGlassCupRoundedFilled.tsx index 887787f51..bfe3189c7 100644 --- a/src/IconGlassCupRoundedFilled.tsx +++ b/src/IconGlassCupRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconGlassCupRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconGlassCupRoundedFilled as default } +export default IconGlassCupRoundedFilled diff --git a/src/IconGlassCupSharp.tsx b/src/IconGlassCupSharp.tsx index 924884ec5..94a2caa2b 100644 --- a/src/IconGlassCupSharp.tsx +++ b/src/IconGlassCupSharp.tsx @@ -8,4 +8,4 @@ const IconGlassCupSharp: React.FC = ({ ...props }) => ( ) -export { IconGlassCupSharp as default } +export default IconGlassCupSharp diff --git a/src/IconGlassCupSharpFilled.tsx b/src/IconGlassCupSharpFilled.tsx index 0cf34b378..c66de4c42 100644 --- a/src/IconGlassCupSharpFilled.tsx +++ b/src/IconGlassCupSharpFilled.tsx @@ -8,4 +8,4 @@ const IconGlassCupSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconGlassCupSharpFilled as default } +export default IconGlassCupSharpFilled diff --git a/src/IconGlobeAsiaOutlined.tsx b/src/IconGlobeAsiaOutlined.tsx index 5e5d7121c..194e7b818 100644 --- a/src/IconGlobeAsiaOutlined.tsx +++ b/src/IconGlobeAsiaOutlined.tsx @@ -8,4 +8,4 @@ const IconGlobeAsiaOutlined: React.FC = ({ ...props }) => ( ) -export { IconGlobeAsiaOutlined as default } +export default IconGlobeAsiaOutlined diff --git a/src/IconGlobeAsiaOutlinedFilled.tsx b/src/IconGlobeAsiaOutlinedFilled.tsx index db2c06ab5..4449c6788 100644 --- a/src/IconGlobeAsiaOutlinedFilled.tsx +++ b/src/IconGlobeAsiaOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconGlobeAsiaOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconGlobeAsiaOutlinedFilled as default } +export default IconGlobeAsiaOutlinedFilled diff --git a/src/IconGlobeAsiaRounded.tsx b/src/IconGlobeAsiaRounded.tsx index de43ebcbe..9e27003ae 100644 --- a/src/IconGlobeAsiaRounded.tsx +++ b/src/IconGlobeAsiaRounded.tsx @@ -8,4 +8,4 @@ const IconGlobeAsiaRounded: React.FC = ({ ...props }) => ( ) -export { IconGlobeAsiaRounded as default } +export default IconGlobeAsiaRounded diff --git a/src/IconGlobeAsiaRoundedFilled.tsx b/src/IconGlobeAsiaRoundedFilled.tsx index 75c675938..bc3b514bc 100644 --- a/src/IconGlobeAsiaRoundedFilled.tsx +++ b/src/IconGlobeAsiaRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconGlobeAsiaRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconGlobeAsiaRoundedFilled as default } +export default IconGlobeAsiaRoundedFilled diff --git a/src/IconGlobeAsiaSharp.tsx b/src/IconGlobeAsiaSharp.tsx index 522e49180..6e1a88f01 100644 --- a/src/IconGlobeAsiaSharp.tsx +++ b/src/IconGlobeAsiaSharp.tsx @@ -8,4 +8,4 @@ const IconGlobeAsiaSharp: React.FC = ({ ...props }) => ( ) -export { IconGlobeAsiaSharp as default } +export default IconGlobeAsiaSharp diff --git a/src/IconGlobeAsiaSharpFilled.tsx b/src/IconGlobeAsiaSharpFilled.tsx index 20d4f8872..3a53eae3a 100644 --- a/src/IconGlobeAsiaSharpFilled.tsx +++ b/src/IconGlobeAsiaSharpFilled.tsx @@ -8,4 +8,4 @@ const IconGlobeAsiaSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconGlobeAsiaSharpFilled as default } +export default IconGlobeAsiaSharpFilled diff --git a/src/IconGlobeOutlined.tsx b/src/IconGlobeOutlined.tsx index b5bffd5ca..c90d7db14 100644 --- a/src/IconGlobeOutlined.tsx +++ b/src/IconGlobeOutlined.tsx @@ -8,4 +8,4 @@ const IconGlobeOutlined: React.FC = ({ ...props }) => ( ) -export { IconGlobeOutlined as default } +export default IconGlobeOutlined diff --git a/src/IconGlobeOutlinedFilled.tsx b/src/IconGlobeOutlinedFilled.tsx index 1eb1a570f..7f1b4b87d 100644 --- a/src/IconGlobeOutlinedFilled.tsx +++ b/src/IconGlobeOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconGlobeOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconGlobeOutlinedFilled as default } +export default IconGlobeOutlinedFilled diff --git a/src/IconGlobeRounded.tsx b/src/IconGlobeRounded.tsx index 12c16b9b8..960f5b1e9 100644 --- a/src/IconGlobeRounded.tsx +++ b/src/IconGlobeRounded.tsx @@ -8,4 +8,4 @@ const IconGlobeRounded: React.FC = ({ ...props }) => ( ) -export { IconGlobeRounded as default } +export default IconGlobeRounded diff --git a/src/IconGlobeRoundedFilled.tsx b/src/IconGlobeRoundedFilled.tsx index 2ce2a1664..53e1b3f47 100644 --- a/src/IconGlobeRoundedFilled.tsx +++ b/src/IconGlobeRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconGlobeRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconGlobeRoundedFilled as default } +export default IconGlobeRoundedFilled diff --git a/src/IconGlobeSharp.tsx b/src/IconGlobeSharp.tsx index 8c962a629..e15f62122 100644 --- a/src/IconGlobeSharp.tsx +++ b/src/IconGlobeSharp.tsx @@ -8,4 +8,4 @@ const IconGlobeSharp: React.FC = ({ ...props }) => ( ) -export { IconGlobeSharp as default } +export default IconGlobeSharp diff --git a/src/IconGlobeSharpFilled.tsx b/src/IconGlobeSharpFilled.tsx index 05e34440b..48c5e9600 100644 --- a/src/IconGlobeSharpFilled.tsx +++ b/src/IconGlobeSharpFilled.tsx @@ -8,4 +8,4 @@ const IconGlobeSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconGlobeSharpFilled as default } +export default IconGlobeSharpFilled diff --git a/src/IconGlobeUkOutlined.tsx b/src/IconGlobeUkOutlined.tsx index 78b4d9c3d..b68d29de8 100644 --- a/src/IconGlobeUkOutlined.tsx +++ b/src/IconGlobeUkOutlined.tsx @@ -8,4 +8,4 @@ const IconGlobeUkOutlined: React.FC = ({ ...props }) => ( ) -export { IconGlobeUkOutlined as default } +export default IconGlobeUkOutlined diff --git a/src/IconGlobeUkOutlinedFilled.tsx b/src/IconGlobeUkOutlinedFilled.tsx index 1097f7346..ae56b2d35 100644 --- a/src/IconGlobeUkOutlinedFilled.tsx +++ b/src/IconGlobeUkOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconGlobeUkOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconGlobeUkOutlinedFilled as default } +export default IconGlobeUkOutlinedFilled diff --git a/src/IconGlobeUkRounded.tsx b/src/IconGlobeUkRounded.tsx index eaf35f412..4fe5c02b4 100644 --- a/src/IconGlobeUkRounded.tsx +++ b/src/IconGlobeUkRounded.tsx @@ -8,4 +8,4 @@ const IconGlobeUkRounded: React.FC = ({ ...props }) => ( ) -export { IconGlobeUkRounded as default } +export default IconGlobeUkRounded diff --git a/src/IconGlobeUkRoundedFilled.tsx b/src/IconGlobeUkRoundedFilled.tsx index 1c3c7a51d..a79eefc18 100644 --- a/src/IconGlobeUkRoundedFilled.tsx +++ b/src/IconGlobeUkRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconGlobeUkRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconGlobeUkRoundedFilled as default } +export default IconGlobeUkRoundedFilled diff --git a/src/IconGlobeUkSharp.tsx b/src/IconGlobeUkSharp.tsx index 4839fafa5..954dcc0ea 100644 --- a/src/IconGlobeUkSharp.tsx +++ b/src/IconGlobeUkSharp.tsx @@ -8,4 +8,4 @@ const IconGlobeUkSharp: React.FC = ({ ...props }) => ( ) -export { IconGlobeUkSharp as default } +export default IconGlobeUkSharp diff --git a/src/IconGlobeUkSharpFilled.tsx b/src/IconGlobeUkSharpFilled.tsx index ef10ebddf..82e3f4ddd 100644 --- a/src/IconGlobeUkSharpFilled.tsx +++ b/src/IconGlobeUkSharpFilled.tsx @@ -8,4 +8,4 @@ const IconGlobeUkSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconGlobeUkSharpFilled as default } +export default IconGlobeUkSharpFilled diff --git a/src/IconGlucoseOutlined.tsx b/src/IconGlucoseOutlined.tsx index 4bdb01120..4652b1c85 100644 --- a/src/IconGlucoseOutlined.tsx +++ b/src/IconGlucoseOutlined.tsx @@ -8,4 +8,4 @@ const IconGlucoseOutlined: React.FC = ({ ...props }) => ( ) -export { IconGlucoseOutlined as default } +export default IconGlucoseOutlined diff --git a/src/IconGlucoseOutlinedFilled.tsx b/src/IconGlucoseOutlinedFilled.tsx index 4c070f0c9..30621063d 100644 --- a/src/IconGlucoseOutlinedFilled.tsx +++ b/src/IconGlucoseOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconGlucoseOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconGlucoseOutlinedFilled as default } +export default IconGlucoseOutlinedFilled diff --git a/src/IconGlucoseRounded.tsx b/src/IconGlucoseRounded.tsx index e84f85f37..29d6635bc 100644 --- a/src/IconGlucoseRounded.tsx +++ b/src/IconGlucoseRounded.tsx @@ -8,4 +8,4 @@ const IconGlucoseRounded: React.FC = ({ ...props }) => ( ) -export { IconGlucoseRounded as default } +export default IconGlucoseRounded diff --git a/src/IconGlucoseRoundedFilled.tsx b/src/IconGlucoseRoundedFilled.tsx index 3106b3753..fa39d916a 100644 --- a/src/IconGlucoseRoundedFilled.tsx +++ b/src/IconGlucoseRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconGlucoseRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconGlucoseRoundedFilled as default } +export default IconGlucoseRoundedFilled diff --git a/src/IconGlucoseSharp.tsx b/src/IconGlucoseSharp.tsx index e1d023b32..a0df66e53 100644 --- a/src/IconGlucoseSharp.tsx +++ b/src/IconGlucoseSharp.tsx @@ -8,4 +8,4 @@ const IconGlucoseSharp: React.FC = ({ ...props }) => ( ) -export { IconGlucoseSharp as default } +export default IconGlucoseSharp diff --git a/src/IconGlucoseSharpFilled.tsx b/src/IconGlucoseSharpFilled.tsx index aa38dd3b7..21f18a30d 100644 --- a/src/IconGlucoseSharpFilled.tsx +++ b/src/IconGlucoseSharpFilled.tsx @@ -8,4 +8,4 @@ const IconGlucoseSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconGlucoseSharpFilled as default } +export default IconGlucoseSharpFilled diff --git a/src/IconGlyphsOutlined.tsx b/src/IconGlyphsOutlined.tsx index 580ccae40..dc1441405 100644 --- a/src/IconGlyphsOutlined.tsx +++ b/src/IconGlyphsOutlined.tsx @@ -8,4 +8,4 @@ const IconGlyphsOutlined: React.FC = ({ ...props }) => ( ) -export { IconGlyphsOutlined as default } +export default IconGlyphsOutlined diff --git a/src/IconGlyphsOutlinedFilled.tsx b/src/IconGlyphsOutlinedFilled.tsx index 56ecb7736..3934f9644 100644 --- a/src/IconGlyphsOutlinedFilled.tsx +++ b/src/IconGlyphsOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconGlyphsOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconGlyphsOutlinedFilled as default } +export default IconGlyphsOutlinedFilled diff --git a/src/IconGlyphsRounded.tsx b/src/IconGlyphsRounded.tsx index 50741c8d9..8a24e92ec 100644 --- a/src/IconGlyphsRounded.tsx +++ b/src/IconGlyphsRounded.tsx @@ -8,4 +8,4 @@ const IconGlyphsRounded: React.FC = ({ ...props }) => ( ) -export { IconGlyphsRounded as default } +export default IconGlyphsRounded diff --git a/src/IconGlyphsRoundedFilled.tsx b/src/IconGlyphsRoundedFilled.tsx index 40a4b32e6..1c3d699c7 100644 --- a/src/IconGlyphsRoundedFilled.tsx +++ b/src/IconGlyphsRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconGlyphsRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconGlyphsRoundedFilled as default } +export default IconGlyphsRoundedFilled diff --git a/src/IconGlyphsSharp.tsx b/src/IconGlyphsSharp.tsx index 92fc2a8a2..db4dbcad8 100644 --- a/src/IconGlyphsSharp.tsx +++ b/src/IconGlyphsSharp.tsx @@ -8,4 +8,4 @@ const IconGlyphsSharp: React.FC = ({ ...props }) => ( ) -export { IconGlyphsSharp as default } +export default IconGlyphsSharp diff --git a/src/IconGlyphsSharpFilled.tsx b/src/IconGlyphsSharpFilled.tsx index ffab20f60..ccfde07d8 100644 --- a/src/IconGlyphsSharpFilled.tsx +++ b/src/IconGlyphsSharpFilled.tsx @@ -8,4 +8,4 @@ const IconGlyphsSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconGlyphsSharpFilled as default } +export default IconGlyphsSharpFilled diff --git a/src/IconGoToLineOutlined.tsx b/src/IconGoToLineOutlined.tsx index d1b68f191..8c59e88b1 100644 --- a/src/IconGoToLineOutlined.tsx +++ b/src/IconGoToLineOutlined.tsx @@ -8,4 +8,4 @@ const IconGoToLineOutlined: React.FC = ({ ...props }) => ( ) -export { IconGoToLineOutlined as default } +export default IconGoToLineOutlined diff --git a/src/IconGoToLineOutlinedFilled.tsx b/src/IconGoToLineOutlinedFilled.tsx index d911cb32f..a86262b6a 100644 --- a/src/IconGoToLineOutlinedFilled.tsx +++ b/src/IconGoToLineOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconGoToLineOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconGoToLineOutlinedFilled as default } +export default IconGoToLineOutlinedFilled diff --git a/src/IconGoToLineRounded.tsx b/src/IconGoToLineRounded.tsx index c907242bd..c6162fb2f 100644 --- a/src/IconGoToLineRounded.tsx +++ b/src/IconGoToLineRounded.tsx @@ -8,4 +8,4 @@ const IconGoToLineRounded: React.FC = ({ ...props }) => ( ) -export { IconGoToLineRounded as default } +export default IconGoToLineRounded diff --git a/src/IconGoToLineRoundedFilled.tsx b/src/IconGoToLineRoundedFilled.tsx index 01e179209..e412e6c1a 100644 --- a/src/IconGoToLineRoundedFilled.tsx +++ b/src/IconGoToLineRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconGoToLineRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconGoToLineRoundedFilled as default } +export default IconGoToLineRoundedFilled diff --git a/src/IconGoToLineSharp.tsx b/src/IconGoToLineSharp.tsx index 3bf6b44e8..a92a8c6d8 100644 --- a/src/IconGoToLineSharp.tsx +++ b/src/IconGoToLineSharp.tsx @@ -8,4 +8,4 @@ const IconGoToLineSharp: React.FC = ({ ...props }) => ( ) -export { IconGoToLineSharp as default } +export default IconGoToLineSharp diff --git a/src/IconGoToLineSharpFilled.tsx b/src/IconGoToLineSharpFilled.tsx index 1b084f968..7adc2084b 100644 --- a/src/IconGoToLineSharpFilled.tsx +++ b/src/IconGoToLineSharpFilled.tsx @@ -8,4 +8,4 @@ const IconGoToLineSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconGoToLineSharpFilled as default } +export default IconGoToLineSharpFilled diff --git a/src/IconGolfCourseOutlined.tsx b/src/IconGolfCourseOutlined.tsx index 74fd8191a..ded2eecea 100644 --- a/src/IconGolfCourseOutlined.tsx +++ b/src/IconGolfCourseOutlined.tsx @@ -8,4 +8,4 @@ const IconGolfCourseOutlined: React.FC = ({ ...props }) => ( ) -export { IconGolfCourseOutlined as default } +export default IconGolfCourseOutlined diff --git a/src/IconGolfCourseOutlinedFilled.tsx b/src/IconGolfCourseOutlinedFilled.tsx index 92663575d..278114390 100644 --- a/src/IconGolfCourseOutlinedFilled.tsx +++ b/src/IconGolfCourseOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconGolfCourseOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconGolfCourseOutlinedFilled as default } +export default IconGolfCourseOutlinedFilled diff --git a/src/IconGolfCourseRounded.tsx b/src/IconGolfCourseRounded.tsx index aa476ea49..b46d0cdca 100644 --- a/src/IconGolfCourseRounded.tsx +++ b/src/IconGolfCourseRounded.tsx @@ -8,4 +8,4 @@ const IconGolfCourseRounded: React.FC = ({ ...props }) => ( ) -export { IconGolfCourseRounded as default } +export default IconGolfCourseRounded diff --git a/src/IconGolfCourseRoundedFilled.tsx b/src/IconGolfCourseRoundedFilled.tsx index ae25c9041..ed61e9952 100644 --- a/src/IconGolfCourseRoundedFilled.tsx +++ b/src/IconGolfCourseRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconGolfCourseRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconGolfCourseRoundedFilled as default } +export default IconGolfCourseRoundedFilled diff --git a/src/IconGolfCourseSharp.tsx b/src/IconGolfCourseSharp.tsx index e608de105..90831234c 100644 --- a/src/IconGolfCourseSharp.tsx +++ b/src/IconGolfCourseSharp.tsx @@ -8,4 +8,4 @@ const IconGolfCourseSharp: React.FC = ({ ...props }) => ( ) -export { IconGolfCourseSharp as default } +export default IconGolfCourseSharp diff --git a/src/IconGolfCourseSharpFilled.tsx b/src/IconGolfCourseSharpFilled.tsx index 4a309e5b5..6d75fd2c9 100644 --- a/src/IconGolfCourseSharpFilled.tsx +++ b/src/IconGolfCourseSharpFilled.tsx @@ -8,4 +8,4 @@ const IconGolfCourseSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconGolfCourseSharpFilled as default } +export default IconGolfCourseSharpFilled diff --git a/src/IconGondolaLiftOutlined.tsx b/src/IconGondolaLiftOutlined.tsx index 46b667f99..8df25822c 100644 --- a/src/IconGondolaLiftOutlined.tsx +++ b/src/IconGondolaLiftOutlined.tsx @@ -8,4 +8,4 @@ const IconGondolaLiftOutlined: React.FC = ({ ...props }) => ( ) -export { IconGondolaLiftOutlined as default } +export default IconGondolaLiftOutlined diff --git a/src/IconGondolaLiftOutlinedFilled.tsx b/src/IconGondolaLiftOutlinedFilled.tsx index 3a81f9aa3..61758402d 100644 --- a/src/IconGondolaLiftOutlinedFilled.tsx +++ b/src/IconGondolaLiftOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconGondolaLiftOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconGondolaLiftOutlinedFilled as default } +export default IconGondolaLiftOutlinedFilled diff --git a/src/IconGondolaLiftRounded.tsx b/src/IconGondolaLiftRounded.tsx index 4f3361dc7..6e57c5fbd 100644 --- a/src/IconGondolaLiftRounded.tsx +++ b/src/IconGondolaLiftRounded.tsx @@ -8,4 +8,4 @@ const IconGondolaLiftRounded: React.FC = ({ ...props }) => ( ) -export { IconGondolaLiftRounded as default } +export default IconGondolaLiftRounded diff --git a/src/IconGondolaLiftRoundedFilled.tsx b/src/IconGondolaLiftRoundedFilled.tsx index 4dc4cc4e9..d5cf1ae3a 100644 --- a/src/IconGondolaLiftRoundedFilled.tsx +++ b/src/IconGondolaLiftRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconGondolaLiftRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconGondolaLiftRoundedFilled as default } +export default IconGondolaLiftRoundedFilled diff --git a/src/IconGondolaLiftSharp.tsx b/src/IconGondolaLiftSharp.tsx index 1bdb7654d..c8c2da88b 100644 --- a/src/IconGondolaLiftSharp.tsx +++ b/src/IconGondolaLiftSharp.tsx @@ -8,4 +8,4 @@ const IconGondolaLiftSharp: React.FC = ({ ...props }) => ( ) -export { IconGondolaLiftSharp as default } +export default IconGondolaLiftSharp diff --git a/src/IconGondolaLiftSharpFilled.tsx b/src/IconGondolaLiftSharpFilled.tsx index c6350a54f..d2e3fc53b 100644 --- a/src/IconGondolaLiftSharpFilled.tsx +++ b/src/IconGondolaLiftSharpFilled.tsx @@ -8,4 +8,4 @@ const IconGondolaLiftSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconGondolaLiftSharpFilled as default } +export default IconGondolaLiftSharpFilled diff --git a/src/IconGoogleHomeDevicesOutlined.tsx b/src/IconGoogleHomeDevicesOutlined.tsx index 044e29518..2e349452b 100644 --- a/src/IconGoogleHomeDevicesOutlined.tsx +++ b/src/IconGoogleHomeDevicesOutlined.tsx @@ -8,4 +8,4 @@ const IconGoogleHomeDevicesOutlined: React.FC = ({ ...props }) => ( ) -export { IconGoogleHomeDevicesOutlined as default } +export default IconGoogleHomeDevicesOutlined diff --git a/src/IconGoogleHomeDevicesOutlinedFilled.tsx b/src/IconGoogleHomeDevicesOutlinedFilled.tsx index 20223883e..e802e6ff8 100644 --- a/src/IconGoogleHomeDevicesOutlinedFilled.tsx +++ b/src/IconGoogleHomeDevicesOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconGoogleHomeDevicesOutlinedFilled: React.FC = ({ ) -export { IconGoogleHomeDevicesOutlinedFilled as default } +export default IconGoogleHomeDevicesOutlinedFilled diff --git a/src/IconGoogleHomeDevicesRounded.tsx b/src/IconGoogleHomeDevicesRounded.tsx index 1dccb6e58..d9f6680b2 100644 --- a/src/IconGoogleHomeDevicesRounded.tsx +++ b/src/IconGoogleHomeDevicesRounded.tsx @@ -8,4 +8,4 @@ const IconGoogleHomeDevicesRounded: React.FC = ({ ...props }) => ( ) -export { IconGoogleHomeDevicesRounded as default } +export default IconGoogleHomeDevicesRounded diff --git a/src/IconGoogleHomeDevicesRoundedFilled.tsx b/src/IconGoogleHomeDevicesRoundedFilled.tsx index edfa18d62..090895593 100644 --- a/src/IconGoogleHomeDevicesRoundedFilled.tsx +++ b/src/IconGoogleHomeDevicesRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconGoogleHomeDevicesRoundedFilled: React.FC = ({ ) -export { IconGoogleHomeDevicesRoundedFilled as default } +export default IconGoogleHomeDevicesRoundedFilled diff --git a/src/IconGoogleHomeDevicesSharp.tsx b/src/IconGoogleHomeDevicesSharp.tsx index fea09ac4d..ef496f9a6 100644 --- a/src/IconGoogleHomeDevicesSharp.tsx +++ b/src/IconGoogleHomeDevicesSharp.tsx @@ -8,4 +8,4 @@ const IconGoogleHomeDevicesSharp: React.FC = ({ ...props }) => ( ) -export { IconGoogleHomeDevicesSharp as default } +export default IconGoogleHomeDevicesSharp diff --git a/src/IconGoogleHomeDevicesSharpFilled.tsx b/src/IconGoogleHomeDevicesSharpFilled.tsx index f744d1024..5d7e684e7 100644 --- a/src/IconGoogleHomeDevicesSharpFilled.tsx +++ b/src/IconGoogleHomeDevicesSharpFilled.tsx @@ -10,4 +10,4 @@ const IconGoogleHomeDevicesSharpFilled: React.FC = ({ ) -export { IconGoogleHomeDevicesSharpFilled as default } +export default IconGoogleHomeDevicesSharpFilled diff --git a/src/IconGoogleTvRemoteOutlined.tsx b/src/IconGoogleTvRemoteOutlined.tsx index 2a924aeca..be4c1640d 100644 --- a/src/IconGoogleTvRemoteOutlined.tsx +++ b/src/IconGoogleTvRemoteOutlined.tsx @@ -8,4 +8,4 @@ const IconGoogleTvRemoteOutlined: React.FC = ({ ...props }) => ( ) -export { IconGoogleTvRemoteOutlined as default } +export default IconGoogleTvRemoteOutlined diff --git a/src/IconGoogleTvRemoteOutlinedFilled.tsx b/src/IconGoogleTvRemoteOutlinedFilled.tsx index 503c3ccd3..21fcc45d3 100644 --- a/src/IconGoogleTvRemoteOutlinedFilled.tsx +++ b/src/IconGoogleTvRemoteOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconGoogleTvRemoteOutlinedFilled: React.FC = ({ ) -export { IconGoogleTvRemoteOutlinedFilled as default } +export default IconGoogleTvRemoteOutlinedFilled diff --git a/src/IconGoogleTvRemoteRounded.tsx b/src/IconGoogleTvRemoteRounded.tsx index e4c8c33b2..a1494cfae 100644 --- a/src/IconGoogleTvRemoteRounded.tsx +++ b/src/IconGoogleTvRemoteRounded.tsx @@ -8,4 +8,4 @@ const IconGoogleTvRemoteRounded: React.FC = ({ ...props }) => ( ) -export { IconGoogleTvRemoteRounded as default } +export default IconGoogleTvRemoteRounded diff --git a/src/IconGoogleTvRemoteRoundedFilled.tsx b/src/IconGoogleTvRemoteRoundedFilled.tsx index 7226db91e..032c4af35 100644 --- a/src/IconGoogleTvRemoteRoundedFilled.tsx +++ b/src/IconGoogleTvRemoteRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconGoogleTvRemoteRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconGoogleTvRemoteRoundedFilled as default } +export default IconGoogleTvRemoteRoundedFilled diff --git a/src/IconGoogleTvRemoteSharp.tsx b/src/IconGoogleTvRemoteSharp.tsx index 49d821b84..25bd5e0eb 100644 --- a/src/IconGoogleTvRemoteSharp.tsx +++ b/src/IconGoogleTvRemoteSharp.tsx @@ -8,4 +8,4 @@ const IconGoogleTvRemoteSharp: React.FC = ({ ...props }) => ( ) -export { IconGoogleTvRemoteSharp as default } +export default IconGoogleTvRemoteSharp diff --git a/src/IconGoogleTvRemoteSharpFilled.tsx b/src/IconGoogleTvRemoteSharpFilled.tsx index f3d357dbc..2625dcb3a 100644 --- a/src/IconGoogleTvRemoteSharpFilled.tsx +++ b/src/IconGoogleTvRemoteSharpFilled.tsx @@ -8,4 +8,4 @@ const IconGoogleTvRemoteSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconGoogleTvRemoteSharpFilled as default } +export default IconGoogleTvRemoteSharpFilled diff --git a/src/IconGoogleWifiOutlined.tsx b/src/IconGoogleWifiOutlined.tsx index 4fa7fe6fa..94dea9336 100644 --- a/src/IconGoogleWifiOutlined.tsx +++ b/src/IconGoogleWifiOutlined.tsx @@ -8,4 +8,4 @@ const IconGoogleWifiOutlined: React.FC = ({ ...props }) => ( ) -export { IconGoogleWifiOutlined as default } +export default IconGoogleWifiOutlined diff --git a/src/IconGoogleWifiOutlinedFilled.tsx b/src/IconGoogleWifiOutlinedFilled.tsx index 8a777ca22..8cfc38856 100644 --- a/src/IconGoogleWifiOutlinedFilled.tsx +++ b/src/IconGoogleWifiOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconGoogleWifiOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconGoogleWifiOutlinedFilled as default } +export default IconGoogleWifiOutlinedFilled diff --git a/src/IconGoogleWifiRounded.tsx b/src/IconGoogleWifiRounded.tsx index e84114079..32534d265 100644 --- a/src/IconGoogleWifiRounded.tsx +++ b/src/IconGoogleWifiRounded.tsx @@ -8,4 +8,4 @@ const IconGoogleWifiRounded: React.FC = ({ ...props }) => ( ) -export { IconGoogleWifiRounded as default } +export default IconGoogleWifiRounded diff --git a/src/IconGoogleWifiRoundedFilled.tsx b/src/IconGoogleWifiRoundedFilled.tsx index ec43148fd..55cc630ed 100644 --- a/src/IconGoogleWifiRoundedFilled.tsx +++ b/src/IconGoogleWifiRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconGoogleWifiRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconGoogleWifiRoundedFilled as default } +export default IconGoogleWifiRoundedFilled diff --git a/src/IconGoogleWifiSharp.tsx b/src/IconGoogleWifiSharp.tsx index 45b17800d..02152572e 100644 --- a/src/IconGoogleWifiSharp.tsx +++ b/src/IconGoogleWifiSharp.tsx @@ -8,4 +8,4 @@ const IconGoogleWifiSharp: React.FC = ({ ...props }) => ( ) -export { IconGoogleWifiSharp as default } +export default IconGoogleWifiSharp diff --git a/src/IconGoogleWifiSharpFilled.tsx b/src/IconGoogleWifiSharpFilled.tsx index ea4f93d06..c515c91c4 100644 --- a/src/IconGoogleWifiSharpFilled.tsx +++ b/src/IconGoogleWifiSharpFilled.tsx @@ -8,4 +8,4 @@ const IconGoogleWifiSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconGoogleWifiSharpFilled as default } +export default IconGoogleWifiSharpFilled diff --git a/src/IconGppBadOutlined.tsx b/src/IconGppBadOutlined.tsx index 92886cfa9..f7004ea46 100644 --- a/src/IconGppBadOutlined.tsx +++ b/src/IconGppBadOutlined.tsx @@ -8,4 +8,4 @@ const IconGppBadOutlined: React.FC = ({ ...props }) => ( ) -export { IconGppBadOutlined as default } +export default IconGppBadOutlined diff --git a/src/IconGppBadOutlinedFilled.tsx b/src/IconGppBadOutlinedFilled.tsx index f0d81c741..5cdd598fb 100644 --- a/src/IconGppBadOutlinedFilled.tsx +++ b/src/IconGppBadOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconGppBadOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconGppBadOutlinedFilled as default } +export default IconGppBadOutlinedFilled diff --git a/src/IconGppBadRounded.tsx b/src/IconGppBadRounded.tsx index 937f446e3..0f716cacc 100644 --- a/src/IconGppBadRounded.tsx +++ b/src/IconGppBadRounded.tsx @@ -8,4 +8,4 @@ const IconGppBadRounded: React.FC = ({ ...props }) => ( ) -export { IconGppBadRounded as default } +export default IconGppBadRounded diff --git a/src/IconGppBadRoundedFilled.tsx b/src/IconGppBadRoundedFilled.tsx index e2c083244..739891260 100644 --- a/src/IconGppBadRoundedFilled.tsx +++ b/src/IconGppBadRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconGppBadRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconGppBadRoundedFilled as default } +export default IconGppBadRoundedFilled diff --git a/src/IconGppBadSharp.tsx b/src/IconGppBadSharp.tsx index 1120e337b..f3859fd93 100644 --- a/src/IconGppBadSharp.tsx +++ b/src/IconGppBadSharp.tsx @@ -8,4 +8,4 @@ const IconGppBadSharp: React.FC = ({ ...props }) => ( ) -export { IconGppBadSharp as default } +export default IconGppBadSharp diff --git a/src/IconGppBadSharpFilled.tsx b/src/IconGppBadSharpFilled.tsx index a1df47b0e..16abc5a1c 100644 --- a/src/IconGppBadSharpFilled.tsx +++ b/src/IconGppBadSharpFilled.tsx @@ -8,4 +8,4 @@ const IconGppBadSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconGppBadSharpFilled as default } +export default IconGppBadSharpFilled diff --git a/src/IconGppMaybeOutlined.tsx b/src/IconGppMaybeOutlined.tsx index 30b9ffd27..42a0a54b7 100644 --- a/src/IconGppMaybeOutlined.tsx +++ b/src/IconGppMaybeOutlined.tsx @@ -8,4 +8,4 @@ const IconGppMaybeOutlined: React.FC = ({ ...props }) => ( ) -export { IconGppMaybeOutlined as default } +export default IconGppMaybeOutlined diff --git a/src/IconGppMaybeOutlinedFilled.tsx b/src/IconGppMaybeOutlinedFilled.tsx index 3b3a9324f..06b57d910 100644 --- a/src/IconGppMaybeOutlinedFilled.tsx +++ b/src/IconGppMaybeOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconGppMaybeOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconGppMaybeOutlinedFilled as default } +export default IconGppMaybeOutlinedFilled diff --git a/src/IconGppMaybeRounded.tsx b/src/IconGppMaybeRounded.tsx index a63fa890e..9af89bf6c 100644 --- a/src/IconGppMaybeRounded.tsx +++ b/src/IconGppMaybeRounded.tsx @@ -8,4 +8,4 @@ const IconGppMaybeRounded: React.FC = ({ ...props }) => ( ) -export { IconGppMaybeRounded as default } +export default IconGppMaybeRounded diff --git a/src/IconGppMaybeRoundedFilled.tsx b/src/IconGppMaybeRoundedFilled.tsx index 43e50f9f0..aa1c48c11 100644 --- a/src/IconGppMaybeRoundedFilled.tsx +++ b/src/IconGppMaybeRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconGppMaybeRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconGppMaybeRoundedFilled as default } +export default IconGppMaybeRoundedFilled diff --git a/src/IconGppMaybeSharp.tsx b/src/IconGppMaybeSharp.tsx index 2f219abe1..be89db3e6 100644 --- a/src/IconGppMaybeSharp.tsx +++ b/src/IconGppMaybeSharp.tsx @@ -8,4 +8,4 @@ const IconGppMaybeSharp: React.FC = ({ ...props }) => ( ) -export { IconGppMaybeSharp as default } +export default IconGppMaybeSharp diff --git a/src/IconGppMaybeSharpFilled.tsx b/src/IconGppMaybeSharpFilled.tsx index 5170fe99a..7e6737528 100644 --- a/src/IconGppMaybeSharpFilled.tsx +++ b/src/IconGppMaybeSharpFilled.tsx @@ -8,4 +8,4 @@ const IconGppMaybeSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconGppMaybeSharpFilled as default } +export default IconGppMaybeSharpFilled diff --git a/src/IconGradeOutlined.tsx b/src/IconGradeOutlined.tsx index 3f3c32d4b..c381ed62c 100644 --- a/src/IconGradeOutlined.tsx +++ b/src/IconGradeOutlined.tsx @@ -8,4 +8,4 @@ const IconGradeOutlined: React.FC = ({ ...props }) => ( ) -export { IconGradeOutlined as default } +export default IconGradeOutlined diff --git a/src/IconGradeOutlinedFilled.tsx b/src/IconGradeOutlinedFilled.tsx index 3fd499cc0..53e633c68 100644 --- a/src/IconGradeOutlinedFilled.tsx +++ b/src/IconGradeOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconGradeOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconGradeOutlinedFilled as default } +export default IconGradeOutlinedFilled diff --git a/src/IconGradeRounded.tsx b/src/IconGradeRounded.tsx index 5e7745009..71c748fe6 100644 --- a/src/IconGradeRounded.tsx +++ b/src/IconGradeRounded.tsx @@ -8,4 +8,4 @@ const IconGradeRounded: React.FC = ({ ...props }) => ( ) -export { IconGradeRounded as default } +export default IconGradeRounded diff --git a/src/IconGradeRoundedFilled.tsx b/src/IconGradeRoundedFilled.tsx index 7e97e49f9..56a0c5e42 100644 --- a/src/IconGradeRoundedFilled.tsx +++ b/src/IconGradeRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconGradeRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconGradeRoundedFilled as default } +export default IconGradeRoundedFilled diff --git a/src/IconGradeSharp.tsx b/src/IconGradeSharp.tsx index 0b914cff5..e207730e6 100644 --- a/src/IconGradeSharp.tsx +++ b/src/IconGradeSharp.tsx @@ -8,4 +8,4 @@ const IconGradeSharp: React.FC = ({ ...props }) => ( ) -export { IconGradeSharp as default } +export default IconGradeSharp diff --git a/src/IconGradeSharpFilled.tsx b/src/IconGradeSharpFilled.tsx index c17ff0c38..84ff3c28f 100644 --- a/src/IconGradeSharpFilled.tsx +++ b/src/IconGradeSharpFilled.tsx @@ -8,4 +8,4 @@ const IconGradeSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconGradeSharpFilled as default } +export default IconGradeSharpFilled diff --git a/src/IconGradientOutlined.tsx b/src/IconGradientOutlined.tsx index 2005733ff..b45c9a737 100644 --- a/src/IconGradientOutlined.tsx +++ b/src/IconGradientOutlined.tsx @@ -8,4 +8,4 @@ const IconGradientOutlined: React.FC = ({ ...props }) => ( ) -export { IconGradientOutlined as default } +export default IconGradientOutlined diff --git a/src/IconGradientOutlinedFilled.tsx b/src/IconGradientOutlinedFilled.tsx index fffec5fad..f55520460 100644 --- a/src/IconGradientOutlinedFilled.tsx +++ b/src/IconGradientOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconGradientOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconGradientOutlinedFilled as default } +export default IconGradientOutlinedFilled diff --git a/src/IconGradientRounded.tsx b/src/IconGradientRounded.tsx index eeb788375..81d5129d5 100644 --- a/src/IconGradientRounded.tsx +++ b/src/IconGradientRounded.tsx @@ -8,4 +8,4 @@ const IconGradientRounded: React.FC = ({ ...props }) => ( ) -export { IconGradientRounded as default } +export default IconGradientRounded diff --git a/src/IconGradientRoundedFilled.tsx b/src/IconGradientRoundedFilled.tsx index 73162537d..6e28ecc91 100644 --- a/src/IconGradientRoundedFilled.tsx +++ b/src/IconGradientRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconGradientRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconGradientRoundedFilled as default } +export default IconGradientRoundedFilled diff --git a/src/IconGradientSharp.tsx b/src/IconGradientSharp.tsx index b2d649420..900303e94 100644 --- a/src/IconGradientSharp.tsx +++ b/src/IconGradientSharp.tsx @@ -8,4 +8,4 @@ const IconGradientSharp: React.FC = ({ ...props }) => ( ) -export { IconGradientSharp as default } +export default IconGradientSharp diff --git a/src/IconGradientSharpFilled.tsx b/src/IconGradientSharpFilled.tsx index 5f903ac86..169fb35c8 100644 --- a/src/IconGradientSharpFilled.tsx +++ b/src/IconGradientSharpFilled.tsx @@ -8,4 +8,4 @@ const IconGradientSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconGradientSharpFilled as default } +export default IconGradientSharpFilled diff --git a/src/IconGradingOutlined.tsx b/src/IconGradingOutlined.tsx index 739ab1bf7..dd2d15e17 100644 --- a/src/IconGradingOutlined.tsx +++ b/src/IconGradingOutlined.tsx @@ -8,4 +8,4 @@ const IconGradingOutlined: React.FC = ({ ...props }) => ( ) -export { IconGradingOutlined as default } +export default IconGradingOutlined diff --git a/src/IconGradingOutlinedFilled.tsx b/src/IconGradingOutlinedFilled.tsx index 0f7dfe33c..906166da7 100644 --- a/src/IconGradingOutlinedFilled.tsx +++ b/src/IconGradingOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconGradingOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconGradingOutlinedFilled as default } +export default IconGradingOutlinedFilled diff --git a/src/IconGradingRounded.tsx b/src/IconGradingRounded.tsx index 7bc6f0573..7855d8c6b 100644 --- a/src/IconGradingRounded.tsx +++ b/src/IconGradingRounded.tsx @@ -8,4 +8,4 @@ const IconGradingRounded: React.FC = ({ ...props }) => ( ) -export { IconGradingRounded as default } +export default IconGradingRounded diff --git a/src/IconGradingRoundedFilled.tsx b/src/IconGradingRoundedFilled.tsx index bb79de070..e1f57ce76 100644 --- a/src/IconGradingRoundedFilled.tsx +++ b/src/IconGradingRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconGradingRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconGradingRoundedFilled as default } +export default IconGradingRoundedFilled diff --git a/src/IconGradingSharp.tsx b/src/IconGradingSharp.tsx index 1f8fc4abc..2d327d29c 100644 --- a/src/IconGradingSharp.tsx +++ b/src/IconGradingSharp.tsx @@ -8,4 +8,4 @@ const IconGradingSharp: React.FC = ({ ...props }) => ( ) -export { IconGradingSharp as default } +export default IconGradingSharp diff --git a/src/IconGradingSharpFilled.tsx b/src/IconGradingSharpFilled.tsx index 5f277e154..1beb3b43b 100644 --- a/src/IconGradingSharpFilled.tsx +++ b/src/IconGradingSharpFilled.tsx @@ -8,4 +8,4 @@ const IconGradingSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconGradingSharpFilled as default } +export default IconGradingSharpFilled diff --git a/src/IconGrainOutlined.tsx b/src/IconGrainOutlined.tsx index 1c5c93bd6..d97ff3377 100644 --- a/src/IconGrainOutlined.tsx +++ b/src/IconGrainOutlined.tsx @@ -8,4 +8,4 @@ const IconGrainOutlined: React.FC = ({ ...props }) => ( ) -export { IconGrainOutlined as default } +export default IconGrainOutlined diff --git a/src/IconGrainOutlinedFilled.tsx b/src/IconGrainOutlinedFilled.tsx index abc889613..51ecb5577 100644 --- a/src/IconGrainOutlinedFilled.tsx +++ b/src/IconGrainOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconGrainOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconGrainOutlinedFilled as default } +export default IconGrainOutlinedFilled diff --git a/src/IconGrainRounded.tsx b/src/IconGrainRounded.tsx index cbbdf3e22..24a0b3482 100644 --- a/src/IconGrainRounded.tsx +++ b/src/IconGrainRounded.tsx @@ -8,4 +8,4 @@ const IconGrainRounded: React.FC = ({ ...props }) => ( ) -export { IconGrainRounded as default } +export default IconGrainRounded diff --git a/src/IconGrainRoundedFilled.tsx b/src/IconGrainRoundedFilled.tsx index f380b9712..b5fce65cf 100644 --- a/src/IconGrainRoundedFilled.tsx +++ b/src/IconGrainRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconGrainRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconGrainRoundedFilled as default } +export default IconGrainRoundedFilled diff --git a/src/IconGrainSharp.tsx b/src/IconGrainSharp.tsx index 21864e29d..acb629cb1 100644 --- a/src/IconGrainSharp.tsx +++ b/src/IconGrainSharp.tsx @@ -8,4 +8,4 @@ const IconGrainSharp: React.FC = ({ ...props }) => ( ) -export { IconGrainSharp as default } +export default IconGrainSharp diff --git a/src/IconGrainSharpFilled.tsx b/src/IconGrainSharpFilled.tsx index e8bc330d1..c7ce3ff07 100644 --- a/src/IconGrainSharpFilled.tsx +++ b/src/IconGrainSharpFilled.tsx @@ -8,4 +8,4 @@ const IconGrainSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconGrainSharpFilled as default } +export default IconGrainSharpFilled diff --git a/src/IconGraphicEqOutlined.tsx b/src/IconGraphicEqOutlined.tsx index e38585e3b..9a3d98eee 100644 --- a/src/IconGraphicEqOutlined.tsx +++ b/src/IconGraphicEqOutlined.tsx @@ -8,4 +8,4 @@ const IconGraphicEqOutlined: React.FC = ({ ...props }) => ( ) -export { IconGraphicEqOutlined as default } +export default IconGraphicEqOutlined diff --git a/src/IconGraphicEqOutlinedFilled.tsx b/src/IconGraphicEqOutlinedFilled.tsx index f76823032..7acdf50f9 100644 --- a/src/IconGraphicEqOutlinedFilled.tsx +++ b/src/IconGraphicEqOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconGraphicEqOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconGraphicEqOutlinedFilled as default } +export default IconGraphicEqOutlinedFilled diff --git a/src/IconGraphicEqRounded.tsx b/src/IconGraphicEqRounded.tsx index fd21bbf06..183ff1518 100644 --- a/src/IconGraphicEqRounded.tsx +++ b/src/IconGraphicEqRounded.tsx @@ -8,4 +8,4 @@ const IconGraphicEqRounded: React.FC = ({ ...props }) => ( ) -export { IconGraphicEqRounded as default } +export default IconGraphicEqRounded diff --git a/src/IconGraphicEqRoundedFilled.tsx b/src/IconGraphicEqRoundedFilled.tsx index b73448cd9..4c376d793 100644 --- a/src/IconGraphicEqRoundedFilled.tsx +++ b/src/IconGraphicEqRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconGraphicEqRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconGraphicEqRoundedFilled as default } +export default IconGraphicEqRoundedFilled diff --git a/src/IconGraphicEqSharp.tsx b/src/IconGraphicEqSharp.tsx index 293c342da..86b752ba6 100644 --- a/src/IconGraphicEqSharp.tsx +++ b/src/IconGraphicEqSharp.tsx @@ -8,4 +8,4 @@ const IconGraphicEqSharp: React.FC = ({ ...props }) => ( ) -export { IconGraphicEqSharp as default } +export default IconGraphicEqSharp diff --git a/src/IconGraphicEqSharpFilled.tsx b/src/IconGraphicEqSharpFilled.tsx index a126689e3..c315d4933 100644 --- a/src/IconGraphicEqSharpFilled.tsx +++ b/src/IconGraphicEqSharpFilled.tsx @@ -8,4 +8,4 @@ const IconGraphicEqSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconGraphicEqSharpFilled as default } +export default IconGraphicEqSharpFilled diff --git a/src/IconGrassOutlined.tsx b/src/IconGrassOutlined.tsx index f3275160c..728460ee9 100644 --- a/src/IconGrassOutlined.tsx +++ b/src/IconGrassOutlined.tsx @@ -8,4 +8,4 @@ const IconGrassOutlined: React.FC = ({ ...props }) => ( ) -export { IconGrassOutlined as default } +export default IconGrassOutlined diff --git a/src/IconGrassOutlinedFilled.tsx b/src/IconGrassOutlinedFilled.tsx index bc084001f..f11f6d3c1 100644 --- a/src/IconGrassOutlinedFilled.tsx +++ b/src/IconGrassOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconGrassOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconGrassOutlinedFilled as default } +export default IconGrassOutlinedFilled diff --git a/src/IconGrassRounded.tsx b/src/IconGrassRounded.tsx index 1f8e45fa0..73bdadc15 100644 --- a/src/IconGrassRounded.tsx +++ b/src/IconGrassRounded.tsx @@ -8,4 +8,4 @@ const IconGrassRounded: React.FC = ({ ...props }) => ( ) -export { IconGrassRounded as default } +export default IconGrassRounded diff --git a/src/IconGrassRoundedFilled.tsx b/src/IconGrassRoundedFilled.tsx index 585358c77..c8b7e193e 100644 --- a/src/IconGrassRoundedFilled.tsx +++ b/src/IconGrassRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconGrassRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconGrassRoundedFilled as default } +export default IconGrassRoundedFilled diff --git a/src/IconGrassSharp.tsx b/src/IconGrassSharp.tsx index d61488cf0..43c91a922 100644 --- a/src/IconGrassSharp.tsx +++ b/src/IconGrassSharp.tsx @@ -8,4 +8,4 @@ const IconGrassSharp: React.FC = ({ ...props }) => ( ) -export { IconGrassSharp as default } +export default IconGrassSharp diff --git a/src/IconGrassSharpFilled.tsx b/src/IconGrassSharpFilled.tsx index 80dcbb3e7..981b489c7 100644 --- a/src/IconGrassSharpFilled.tsx +++ b/src/IconGrassSharpFilled.tsx @@ -8,4 +8,4 @@ const IconGrassSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconGrassSharpFilled as default } +export default IconGrassSharpFilled diff --git a/src/IconGrid3x3OffOutlined.tsx b/src/IconGrid3x3OffOutlined.tsx index 16d8d44f7..094d13f7c 100644 --- a/src/IconGrid3x3OffOutlined.tsx +++ b/src/IconGrid3x3OffOutlined.tsx @@ -8,4 +8,4 @@ const IconGrid3x3OffOutlined: React.FC = ({ ...props }) => ( ) -export { IconGrid3x3OffOutlined as default } +export default IconGrid3x3OffOutlined diff --git a/src/IconGrid3x3OffOutlinedFilled.tsx b/src/IconGrid3x3OffOutlinedFilled.tsx index 4e3af43c6..ef15febf8 100644 --- a/src/IconGrid3x3OffOutlinedFilled.tsx +++ b/src/IconGrid3x3OffOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconGrid3x3OffOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconGrid3x3OffOutlinedFilled as default } +export default IconGrid3x3OffOutlinedFilled diff --git a/src/IconGrid3x3OffRounded.tsx b/src/IconGrid3x3OffRounded.tsx index 9bb1a708a..579af9593 100644 --- a/src/IconGrid3x3OffRounded.tsx +++ b/src/IconGrid3x3OffRounded.tsx @@ -8,4 +8,4 @@ const IconGrid3x3OffRounded: React.FC = ({ ...props }) => ( ) -export { IconGrid3x3OffRounded as default } +export default IconGrid3x3OffRounded diff --git a/src/IconGrid3x3OffRoundedFilled.tsx b/src/IconGrid3x3OffRoundedFilled.tsx index c80b005a9..88ed0958c 100644 --- a/src/IconGrid3x3OffRoundedFilled.tsx +++ b/src/IconGrid3x3OffRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconGrid3x3OffRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconGrid3x3OffRoundedFilled as default } +export default IconGrid3x3OffRoundedFilled diff --git a/src/IconGrid3x3OffSharp.tsx b/src/IconGrid3x3OffSharp.tsx index c0c0666cd..02c26344a 100644 --- a/src/IconGrid3x3OffSharp.tsx +++ b/src/IconGrid3x3OffSharp.tsx @@ -8,4 +8,4 @@ const IconGrid3x3OffSharp: React.FC = ({ ...props }) => ( ) -export { IconGrid3x3OffSharp as default } +export default IconGrid3x3OffSharp diff --git a/src/IconGrid3x3OffSharpFilled.tsx b/src/IconGrid3x3OffSharpFilled.tsx index 7660e748e..41be7b670 100644 --- a/src/IconGrid3x3OffSharpFilled.tsx +++ b/src/IconGrid3x3OffSharpFilled.tsx @@ -8,4 +8,4 @@ const IconGrid3x3OffSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconGrid3x3OffSharpFilled as default } +export default IconGrid3x3OffSharpFilled diff --git a/src/IconGrid3x3Outlined.tsx b/src/IconGrid3x3Outlined.tsx index 946a4b9fc..62bd701a2 100644 --- a/src/IconGrid3x3Outlined.tsx +++ b/src/IconGrid3x3Outlined.tsx @@ -8,4 +8,4 @@ const IconGrid3x3Outlined: React.FC = ({ ...props }) => ( ) -export { IconGrid3x3Outlined as default } +export default IconGrid3x3Outlined diff --git a/src/IconGrid3x3OutlinedFilled.tsx b/src/IconGrid3x3OutlinedFilled.tsx index f42839c5d..8defb1724 100644 --- a/src/IconGrid3x3OutlinedFilled.tsx +++ b/src/IconGrid3x3OutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconGrid3x3OutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconGrid3x3OutlinedFilled as default } +export default IconGrid3x3OutlinedFilled diff --git a/src/IconGrid3x3Rounded.tsx b/src/IconGrid3x3Rounded.tsx index 874863fb3..0f7538ad0 100644 --- a/src/IconGrid3x3Rounded.tsx +++ b/src/IconGrid3x3Rounded.tsx @@ -8,4 +8,4 @@ const IconGrid3x3Rounded: React.FC = ({ ...props }) => ( ) -export { IconGrid3x3Rounded as default } +export default IconGrid3x3Rounded diff --git a/src/IconGrid3x3RoundedFilled.tsx b/src/IconGrid3x3RoundedFilled.tsx index 3c92361c2..5633636a0 100644 --- a/src/IconGrid3x3RoundedFilled.tsx +++ b/src/IconGrid3x3RoundedFilled.tsx @@ -8,4 +8,4 @@ const IconGrid3x3RoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconGrid3x3RoundedFilled as default } +export default IconGrid3x3RoundedFilled diff --git a/src/IconGrid3x3Sharp.tsx b/src/IconGrid3x3Sharp.tsx index d90cdc406..3ed3504a5 100644 --- a/src/IconGrid3x3Sharp.tsx +++ b/src/IconGrid3x3Sharp.tsx @@ -8,4 +8,4 @@ const IconGrid3x3Sharp: React.FC = ({ ...props }) => ( ) -export { IconGrid3x3Sharp as default } +export default IconGrid3x3Sharp diff --git a/src/IconGrid3x3SharpFilled.tsx b/src/IconGrid3x3SharpFilled.tsx index f934a75ac..8871751db 100644 --- a/src/IconGrid3x3SharpFilled.tsx +++ b/src/IconGrid3x3SharpFilled.tsx @@ -8,4 +8,4 @@ const IconGrid3x3SharpFilled: React.FC = ({ ...props }) => ( ) -export { IconGrid3x3SharpFilled as default } +export default IconGrid3x3SharpFilled diff --git a/src/IconGrid4x4Outlined.tsx b/src/IconGrid4x4Outlined.tsx index 5119b6b47..6fc831969 100644 --- a/src/IconGrid4x4Outlined.tsx +++ b/src/IconGrid4x4Outlined.tsx @@ -8,4 +8,4 @@ const IconGrid4x4Outlined: React.FC = ({ ...props }) => ( ) -export { IconGrid4x4Outlined as default } +export default IconGrid4x4Outlined diff --git a/src/IconGrid4x4OutlinedFilled.tsx b/src/IconGrid4x4OutlinedFilled.tsx index b1ec3c5f5..4dd8add1b 100644 --- a/src/IconGrid4x4OutlinedFilled.tsx +++ b/src/IconGrid4x4OutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconGrid4x4OutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconGrid4x4OutlinedFilled as default } +export default IconGrid4x4OutlinedFilled diff --git a/src/IconGrid4x4Rounded.tsx b/src/IconGrid4x4Rounded.tsx index 96fe48c1a..892b6fce0 100644 --- a/src/IconGrid4x4Rounded.tsx +++ b/src/IconGrid4x4Rounded.tsx @@ -8,4 +8,4 @@ const IconGrid4x4Rounded: React.FC = ({ ...props }) => ( ) -export { IconGrid4x4Rounded as default } +export default IconGrid4x4Rounded diff --git a/src/IconGrid4x4RoundedFilled.tsx b/src/IconGrid4x4RoundedFilled.tsx index dc52c2bb8..865f623de 100644 --- a/src/IconGrid4x4RoundedFilled.tsx +++ b/src/IconGrid4x4RoundedFilled.tsx @@ -8,4 +8,4 @@ const IconGrid4x4RoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconGrid4x4RoundedFilled as default } +export default IconGrid4x4RoundedFilled diff --git a/src/IconGrid4x4Sharp.tsx b/src/IconGrid4x4Sharp.tsx index 50f99e33c..c5ef715b6 100644 --- a/src/IconGrid4x4Sharp.tsx +++ b/src/IconGrid4x4Sharp.tsx @@ -8,4 +8,4 @@ const IconGrid4x4Sharp: React.FC = ({ ...props }) => ( ) -export { IconGrid4x4Sharp as default } +export default IconGrid4x4Sharp diff --git a/src/IconGrid4x4SharpFilled.tsx b/src/IconGrid4x4SharpFilled.tsx index f0d8ae71f..79ce2bbdc 100644 --- a/src/IconGrid4x4SharpFilled.tsx +++ b/src/IconGrid4x4SharpFilled.tsx @@ -8,4 +8,4 @@ const IconGrid4x4SharpFilled: React.FC = ({ ...props }) => ( ) -export { IconGrid4x4SharpFilled as default } +export default IconGrid4x4SharpFilled diff --git a/src/IconGridGoldenratioOutlined.tsx b/src/IconGridGoldenratioOutlined.tsx index 8882be28e..67970328b 100644 --- a/src/IconGridGoldenratioOutlined.tsx +++ b/src/IconGridGoldenratioOutlined.tsx @@ -8,4 +8,4 @@ const IconGridGoldenratioOutlined: React.FC = ({ ...props }) => ( ) -export { IconGridGoldenratioOutlined as default } +export default IconGridGoldenratioOutlined diff --git a/src/IconGridGoldenratioOutlinedFilled.tsx b/src/IconGridGoldenratioOutlinedFilled.tsx index 04ddb3ff8..94fef6a81 100644 --- a/src/IconGridGoldenratioOutlinedFilled.tsx +++ b/src/IconGridGoldenratioOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconGridGoldenratioOutlinedFilled: React.FC = ({ ) -export { IconGridGoldenratioOutlinedFilled as default } +export default IconGridGoldenratioOutlinedFilled diff --git a/src/IconGridGoldenratioRounded.tsx b/src/IconGridGoldenratioRounded.tsx index c9aeeb9ca..7a423b543 100644 --- a/src/IconGridGoldenratioRounded.tsx +++ b/src/IconGridGoldenratioRounded.tsx @@ -8,4 +8,4 @@ const IconGridGoldenratioRounded: React.FC = ({ ...props }) => ( ) -export { IconGridGoldenratioRounded as default } +export default IconGridGoldenratioRounded diff --git a/src/IconGridGoldenratioRoundedFilled.tsx b/src/IconGridGoldenratioRoundedFilled.tsx index fd09c1c76..fcdff548b 100644 --- a/src/IconGridGoldenratioRoundedFilled.tsx +++ b/src/IconGridGoldenratioRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconGridGoldenratioRoundedFilled: React.FC = ({ ) -export { IconGridGoldenratioRoundedFilled as default } +export default IconGridGoldenratioRoundedFilled diff --git a/src/IconGridGoldenratioSharp.tsx b/src/IconGridGoldenratioSharp.tsx index 0a1ee0eab..9906369f3 100644 --- a/src/IconGridGoldenratioSharp.tsx +++ b/src/IconGridGoldenratioSharp.tsx @@ -8,4 +8,4 @@ const IconGridGoldenratioSharp: React.FC = ({ ...props }) => ( ) -export { IconGridGoldenratioSharp as default } +export default IconGridGoldenratioSharp diff --git a/src/IconGridGoldenratioSharpFilled.tsx b/src/IconGridGoldenratioSharpFilled.tsx index 474e33be7..54c3b84a0 100644 --- a/src/IconGridGoldenratioSharpFilled.tsx +++ b/src/IconGridGoldenratioSharpFilled.tsx @@ -8,4 +8,4 @@ const IconGridGoldenratioSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconGridGoldenratioSharpFilled as default } +export default IconGridGoldenratioSharpFilled diff --git a/src/IconGridGuidesOutlined.tsx b/src/IconGridGuidesOutlined.tsx index 81a2e0c56..7d63b18d1 100644 --- a/src/IconGridGuidesOutlined.tsx +++ b/src/IconGridGuidesOutlined.tsx @@ -8,4 +8,4 @@ const IconGridGuidesOutlined: React.FC = ({ ...props }) => ( ) -export { IconGridGuidesOutlined as default } +export default IconGridGuidesOutlined diff --git a/src/IconGridGuidesOutlinedFilled.tsx b/src/IconGridGuidesOutlinedFilled.tsx index aded8e50e..a305faa46 100644 --- a/src/IconGridGuidesOutlinedFilled.tsx +++ b/src/IconGridGuidesOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconGridGuidesOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconGridGuidesOutlinedFilled as default } +export default IconGridGuidesOutlinedFilled diff --git a/src/IconGridGuidesRounded.tsx b/src/IconGridGuidesRounded.tsx index 8cf774c22..69a5a4358 100644 --- a/src/IconGridGuidesRounded.tsx +++ b/src/IconGridGuidesRounded.tsx @@ -8,4 +8,4 @@ const IconGridGuidesRounded: React.FC = ({ ...props }) => ( ) -export { IconGridGuidesRounded as default } +export default IconGridGuidesRounded diff --git a/src/IconGridGuidesRoundedFilled.tsx b/src/IconGridGuidesRoundedFilled.tsx index ecf94eeb1..f70ac6c47 100644 --- a/src/IconGridGuidesRoundedFilled.tsx +++ b/src/IconGridGuidesRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconGridGuidesRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconGridGuidesRoundedFilled as default } +export default IconGridGuidesRoundedFilled diff --git a/src/IconGridGuidesSharp.tsx b/src/IconGridGuidesSharp.tsx index 6006ab10e..ed27a0cc5 100644 --- a/src/IconGridGuidesSharp.tsx +++ b/src/IconGridGuidesSharp.tsx @@ -8,4 +8,4 @@ const IconGridGuidesSharp: React.FC = ({ ...props }) => ( ) -export { IconGridGuidesSharp as default } +export default IconGridGuidesSharp diff --git a/src/IconGridGuidesSharpFilled.tsx b/src/IconGridGuidesSharpFilled.tsx index 162b8c5ba..e3eb88ef2 100644 --- a/src/IconGridGuidesSharpFilled.tsx +++ b/src/IconGridGuidesSharpFilled.tsx @@ -8,4 +8,4 @@ const IconGridGuidesSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconGridGuidesSharpFilled as default } +export default IconGridGuidesSharpFilled diff --git a/src/IconGridOffOutlined.tsx b/src/IconGridOffOutlined.tsx index ff02520ab..516fbd079 100644 --- a/src/IconGridOffOutlined.tsx +++ b/src/IconGridOffOutlined.tsx @@ -8,4 +8,4 @@ const IconGridOffOutlined: React.FC = ({ ...props }) => ( ) -export { IconGridOffOutlined as default } +export default IconGridOffOutlined diff --git a/src/IconGridOffOutlinedFilled.tsx b/src/IconGridOffOutlinedFilled.tsx index 6b690b711..8fc3cc5ff 100644 --- a/src/IconGridOffOutlinedFilled.tsx +++ b/src/IconGridOffOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconGridOffOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconGridOffOutlinedFilled as default } +export default IconGridOffOutlinedFilled diff --git a/src/IconGridOffRounded.tsx b/src/IconGridOffRounded.tsx index 2b2107291..d18b75149 100644 --- a/src/IconGridOffRounded.tsx +++ b/src/IconGridOffRounded.tsx @@ -8,4 +8,4 @@ const IconGridOffRounded: React.FC = ({ ...props }) => ( ) -export { IconGridOffRounded as default } +export default IconGridOffRounded diff --git a/src/IconGridOffRoundedFilled.tsx b/src/IconGridOffRoundedFilled.tsx index 6a8c90b2f..b86ba0251 100644 --- a/src/IconGridOffRoundedFilled.tsx +++ b/src/IconGridOffRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconGridOffRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconGridOffRoundedFilled as default } +export default IconGridOffRoundedFilled diff --git a/src/IconGridOffSharp.tsx b/src/IconGridOffSharp.tsx index 096700838..0b69ebbb5 100644 --- a/src/IconGridOffSharp.tsx +++ b/src/IconGridOffSharp.tsx @@ -8,4 +8,4 @@ const IconGridOffSharp: React.FC = ({ ...props }) => ( ) -export { IconGridOffSharp as default } +export default IconGridOffSharp diff --git a/src/IconGridOffSharpFilled.tsx b/src/IconGridOffSharpFilled.tsx index aff53c38e..99ab3877c 100644 --- a/src/IconGridOffSharpFilled.tsx +++ b/src/IconGridOffSharpFilled.tsx @@ -8,4 +8,4 @@ const IconGridOffSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconGridOffSharpFilled as default } +export default IconGridOffSharpFilled diff --git a/src/IconGridOnOutlined.tsx b/src/IconGridOnOutlined.tsx index d9eb9f911..ab60064d1 100644 --- a/src/IconGridOnOutlined.tsx +++ b/src/IconGridOnOutlined.tsx @@ -8,4 +8,4 @@ const IconGridOnOutlined: React.FC = ({ ...props }) => ( ) -export { IconGridOnOutlined as default } +export default IconGridOnOutlined diff --git a/src/IconGridOnOutlinedFilled.tsx b/src/IconGridOnOutlinedFilled.tsx index 1eb818361..e3633c4fe 100644 --- a/src/IconGridOnOutlinedFilled.tsx +++ b/src/IconGridOnOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconGridOnOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconGridOnOutlinedFilled as default } +export default IconGridOnOutlinedFilled diff --git a/src/IconGridOnRounded.tsx b/src/IconGridOnRounded.tsx index 14ae290f2..0158ea0d6 100644 --- a/src/IconGridOnRounded.tsx +++ b/src/IconGridOnRounded.tsx @@ -8,4 +8,4 @@ const IconGridOnRounded: React.FC = ({ ...props }) => ( ) -export { IconGridOnRounded as default } +export default IconGridOnRounded diff --git a/src/IconGridOnRoundedFilled.tsx b/src/IconGridOnRoundedFilled.tsx index 7e9fc5ee6..0cd0158ac 100644 --- a/src/IconGridOnRoundedFilled.tsx +++ b/src/IconGridOnRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconGridOnRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconGridOnRoundedFilled as default } +export default IconGridOnRoundedFilled diff --git a/src/IconGridOnSharp.tsx b/src/IconGridOnSharp.tsx index e0e4e2d7a..8f72974d8 100644 --- a/src/IconGridOnSharp.tsx +++ b/src/IconGridOnSharp.tsx @@ -8,4 +8,4 @@ const IconGridOnSharp: React.FC = ({ ...props }) => ( ) -export { IconGridOnSharp as default } +export default IconGridOnSharp diff --git a/src/IconGridOnSharpFilled.tsx b/src/IconGridOnSharpFilled.tsx index 02b4d799d..b3310f53d 100644 --- a/src/IconGridOnSharpFilled.tsx +++ b/src/IconGridOnSharpFilled.tsx @@ -8,4 +8,4 @@ const IconGridOnSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconGridOnSharpFilled as default } +export default IconGridOnSharpFilled diff --git a/src/IconGridViewOutlined.tsx b/src/IconGridViewOutlined.tsx index ed0102313..a646f47d6 100644 --- a/src/IconGridViewOutlined.tsx +++ b/src/IconGridViewOutlined.tsx @@ -8,4 +8,4 @@ const IconGridViewOutlined: React.FC = ({ ...props }) => ( ) -export { IconGridViewOutlined as default } +export default IconGridViewOutlined diff --git a/src/IconGridViewOutlinedFilled.tsx b/src/IconGridViewOutlinedFilled.tsx index 76cb61d86..8d1d4e313 100644 --- a/src/IconGridViewOutlinedFilled.tsx +++ b/src/IconGridViewOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconGridViewOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconGridViewOutlinedFilled as default } +export default IconGridViewOutlinedFilled diff --git a/src/IconGridViewRounded.tsx b/src/IconGridViewRounded.tsx index 561c98a7b..e6d3f5314 100644 --- a/src/IconGridViewRounded.tsx +++ b/src/IconGridViewRounded.tsx @@ -8,4 +8,4 @@ const IconGridViewRounded: React.FC = ({ ...props }) => ( ) -export { IconGridViewRounded as default } +export default IconGridViewRounded diff --git a/src/IconGridViewRoundedFilled.tsx b/src/IconGridViewRoundedFilled.tsx index bffaa4a6e..8b71ce444 100644 --- a/src/IconGridViewRoundedFilled.tsx +++ b/src/IconGridViewRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconGridViewRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconGridViewRoundedFilled as default } +export default IconGridViewRoundedFilled diff --git a/src/IconGridViewSharp.tsx b/src/IconGridViewSharp.tsx index d81d6b7f2..53d9ec65f 100644 --- a/src/IconGridViewSharp.tsx +++ b/src/IconGridViewSharp.tsx @@ -8,4 +8,4 @@ const IconGridViewSharp: React.FC = ({ ...props }) => ( ) -export { IconGridViewSharp as default } +export default IconGridViewSharp diff --git a/src/IconGridViewSharpFilled.tsx b/src/IconGridViewSharpFilled.tsx index 9cbd85c3f..ed5549f06 100644 --- a/src/IconGridViewSharpFilled.tsx +++ b/src/IconGridViewSharpFilled.tsx @@ -8,4 +8,4 @@ const IconGridViewSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconGridViewSharpFilled as default } +export default IconGridViewSharpFilled diff --git a/src/IconGroceryOutlined.tsx b/src/IconGroceryOutlined.tsx index 365848f75..5a0971a45 100644 --- a/src/IconGroceryOutlined.tsx +++ b/src/IconGroceryOutlined.tsx @@ -8,4 +8,4 @@ const IconGroceryOutlined: React.FC = ({ ...props }) => ( ) -export { IconGroceryOutlined as default } +export default IconGroceryOutlined diff --git a/src/IconGroceryOutlinedFilled.tsx b/src/IconGroceryOutlinedFilled.tsx index 0878f57e5..0dce323a3 100644 --- a/src/IconGroceryOutlinedFilled.tsx +++ b/src/IconGroceryOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconGroceryOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconGroceryOutlinedFilled as default } +export default IconGroceryOutlinedFilled diff --git a/src/IconGroceryRounded.tsx b/src/IconGroceryRounded.tsx index d7ceb63e6..ff3b02a57 100644 --- a/src/IconGroceryRounded.tsx +++ b/src/IconGroceryRounded.tsx @@ -8,4 +8,4 @@ const IconGroceryRounded: React.FC = ({ ...props }) => ( ) -export { IconGroceryRounded as default } +export default IconGroceryRounded diff --git a/src/IconGroceryRoundedFilled.tsx b/src/IconGroceryRoundedFilled.tsx index e24a37867..b62b0d3c0 100644 --- a/src/IconGroceryRoundedFilled.tsx +++ b/src/IconGroceryRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconGroceryRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconGroceryRoundedFilled as default } +export default IconGroceryRoundedFilled diff --git a/src/IconGrocerySharp.tsx b/src/IconGrocerySharp.tsx index bc8e6e190..cb15a0de6 100644 --- a/src/IconGrocerySharp.tsx +++ b/src/IconGrocerySharp.tsx @@ -8,4 +8,4 @@ const IconGrocerySharp: React.FC = ({ ...props }) => ( ) -export { IconGrocerySharp as default } +export default IconGrocerySharp diff --git a/src/IconGrocerySharpFilled.tsx b/src/IconGrocerySharpFilled.tsx index b1e6cc4fa..d72fc673c 100644 --- a/src/IconGrocerySharpFilled.tsx +++ b/src/IconGrocerySharpFilled.tsx @@ -8,4 +8,4 @@ const IconGrocerySharpFilled: React.FC = ({ ...props }) => ( ) -export { IconGrocerySharpFilled as default } +export default IconGrocerySharpFilled diff --git a/src/IconGroupAddOutlined.tsx b/src/IconGroupAddOutlined.tsx index 1f55d7440..6f4de5f81 100644 --- a/src/IconGroupAddOutlined.tsx +++ b/src/IconGroupAddOutlined.tsx @@ -8,4 +8,4 @@ const IconGroupAddOutlined: React.FC = ({ ...props }) => ( ) -export { IconGroupAddOutlined as default } +export default IconGroupAddOutlined diff --git a/src/IconGroupAddOutlinedFilled.tsx b/src/IconGroupAddOutlinedFilled.tsx index 158648331..0cce3be66 100644 --- a/src/IconGroupAddOutlinedFilled.tsx +++ b/src/IconGroupAddOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconGroupAddOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconGroupAddOutlinedFilled as default } +export default IconGroupAddOutlinedFilled diff --git a/src/IconGroupAddRounded.tsx b/src/IconGroupAddRounded.tsx index b54ffe7b7..9c35bd386 100644 --- a/src/IconGroupAddRounded.tsx +++ b/src/IconGroupAddRounded.tsx @@ -8,4 +8,4 @@ const IconGroupAddRounded: React.FC = ({ ...props }) => ( ) -export { IconGroupAddRounded as default } +export default IconGroupAddRounded diff --git a/src/IconGroupAddRoundedFilled.tsx b/src/IconGroupAddRoundedFilled.tsx index 7e8276964..b9083c1f8 100644 --- a/src/IconGroupAddRoundedFilled.tsx +++ b/src/IconGroupAddRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconGroupAddRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconGroupAddRoundedFilled as default } +export default IconGroupAddRoundedFilled diff --git a/src/IconGroupAddSharp.tsx b/src/IconGroupAddSharp.tsx index 6ceca5fe1..c6ddd5fac 100644 --- a/src/IconGroupAddSharp.tsx +++ b/src/IconGroupAddSharp.tsx @@ -8,4 +8,4 @@ const IconGroupAddSharp: React.FC = ({ ...props }) => ( ) -export { IconGroupAddSharp as default } +export default IconGroupAddSharp diff --git a/src/IconGroupAddSharpFilled.tsx b/src/IconGroupAddSharpFilled.tsx index e8542efa5..443f1c440 100644 --- a/src/IconGroupAddSharpFilled.tsx +++ b/src/IconGroupAddSharpFilled.tsx @@ -8,4 +8,4 @@ const IconGroupAddSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconGroupAddSharpFilled as default } +export default IconGroupAddSharpFilled diff --git a/src/IconGroupOffOutlined.tsx b/src/IconGroupOffOutlined.tsx index 691b70b6e..79046c3a0 100644 --- a/src/IconGroupOffOutlined.tsx +++ b/src/IconGroupOffOutlined.tsx @@ -8,4 +8,4 @@ const IconGroupOffOutlined: React.FC = ({ ...props }) => ( ) -export { IconGroupOffOutlined as default } +export default IconGroupOffOutlined diff --git a/src/IconGroupOffOutlinedFilled.tsx b/src/IconGroupOffOutlinedFilled.tsx index a9443c70a..3201daf6e 100644 --- a/src/IconGroupOffOutlinedFilled.tsx +++ b/src/IconGroupOffOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconGroupOffOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconGroupOffOutlinedFilled as default } +export default IconGroupOffOutlinedFilled diff --git a/src/IconGroupOffRounded.tsx b/src/IconGroupOffRounded.tsx index 6e8ace5b7..bbdc68925 100644 --- a/src/IconGroupOffRounded.tsx +++ b/src/IconGroupOffRounded.tsx @@ -8,4 +8,4 @@ const IconGroupOffRounded: React.FC = ({ ...props }) => ( ) -export { IconGroupOffRounded as default } +export default IconGroupOffRounded diff --git a/src/IconGroupOffRoundedFilled.tsx b/src/IconGroupOffRoundedFilled.tsx index 7e5b03259..da2a74f30 100644 --- a/src/IconGroupOffRoundedFilled.tsx +++ b/src/IconGroupOffRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconGroupOffRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconGroupOffRoundedFilled as default } +export default IconGroupOffRoundedFilled diff --git a/src/IconGroupOffSharp.tsx b/src/IconGroupOffSharp.tsx index e6cb39d22..105cd15a8 100644 --- a/src/IconGroupOffSharp.tsx +++ b/src/IconGroupOffSharp.tsx @@ -8,4 +8,4 @@ const IconGroupOffSharp: React.FC = ({ ...props }) => ( ) -export { IconGroupOffSharp as default } +export default IconGroupOffSharp diff --git a/src/IconGroupOffSharpFilled.tsx b/src/IconGroupOffSharpFilled.tsx index 9acab4f07..db062e5b2 100644 --- a/src/IconGroupOffSharpFilled.tsx +++ b/src/IconGroupOffSharpFilled.tsx @@ -8,4 +8,4 @@ const IconGroupOffSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconGroupOffSharpFilled as default } +export default IconGroupOffSharpFilled diff --git a/src/IconGroupOutlined.tsx b/src/IconGroupOutlined.tsx index 58f404162..83023d4b0 100644 --- a/src/IconGroupOutlined.tsx +++ b/src/IconGroupOutlined.tsx @@ -8,4 +8,4 @@ const IconGroupOutlined: React.FC = ({ ...props }) => ( ) -export { IconGroupOutlined as default } +export default IconGroupOutlined diff --git a/src/IconGroupOutlinedFilled.tsx b/src/IconGroupOutlinedFilled.tsx index 5e3a96092..833db6b34 100644 --- a/src/IconGroupOutlinedFilled.tsx +++ b/src/IconGroupOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconGroupOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconGroupOutlinedFilled as default } +export default IconGroupOutlinedFilled diff --git a/src/IconGroupRemoveOutlined.tsx b/src/IconGroupRemoveOutlined.tsx index aacef8528..4fdeb6589 100644 --- a/src/IconGroupRemoveOutlined.tsx +++ b/src/IconGroupRemoveOutlined.tsx @@ -8,4 +8,4 @@ const IconGroupRemoveOutlined: React.FC = ({ ...props }) => ( ) -export { IconGroupRemoveOutlined as default } +export default IconGroupRemoveOutlined diff --git a/src/IconGroupRemoveOutlinedFilled.tsx b/src/IconGroupRemoveOutlinedFilled.tsx index f9353ab54..33a41d5c7 100644 --- a/src/IconGroupRemoveOutlinedFilled.tsx +++ b/src/IconGroupRemoveOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconGroupRemoveOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconGroupRemoveOutlinedFilled as default } +export default IconGroupRemoveOutlinedFilled diff --git a/src/IconGroupRemoveRounded.tsx b/src/IconGroupRemoveRounded.tsx index 7b86f0045..68c96722c 100644 --- a/src/IconGroupRemoveRounded.tsx +++ b/src/IconGroupRemoveRounded.tsx @@ -8,4 +8,4 @@ const IconGroupRemoveRounded: React.FC = ({ ...props }) => ( ) -export { IconGroupRemoveRounded as default } +export default IconGroupRemoveRounded diff --git a/src/IconGroupRemoveRoundedFilled.tsx b/src/IconGroupRemoveRoundedFilled.tsx index b7e9380dc..49e2a8b11 100644 --- a/src/IconGroupRemoveRoundedFilled.tsx +++ b/src/IconGroupRemoveRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconGroupRemoveRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconGroupRemoveRoundedFilled as default } +export default IconGroupRemoveRoundedFilled diff --git a/src/IconGroupRemoveSharp.tsx b/src/IconGroupRemoveSharp.tsx index 239324dd9..3d80c28b1 100644 --- a/src/IconGroupRemoveSharp.tsx +++ b/src/IconGroupRemoveSharp.tsx @@ -8,4 +8,4 @@ const IconGroupRemoveSharp: React.FC = ({ ...props }) => ( ) -export { IconGroupRemoveSharp as default } +export default IconGroupRemoveSharp diff --git a/src/IconGroupRemoveSharpFilled.tsx b/src/IconGroupRemoveSharpFilled.tsx index 871a12844..8c8ff1e86 100644 --- a/src/IconGroupRemoveSharpFilled.tsx +++ b/src/IconGroupRemoveSharpFilled.tsx @@ -8,4 +8,4 @@ const IconGroupRemoveSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconGroupRemoveSharpFilled as default } +export default IconGroupRemoveSharpFilled diff --git a/src/IconGroupRounded.tsx b/src/IconGroupRounded.tsx index c7c6b80e3..f9fc7a185 100644 --- a/src/IconGroupRounded.tsx +++ b/src/IconGroupRounded.tsx @@ -8,4 +8,4 @@ const IconGroupRounded: React.FC = ({ ...props }) => ( ) -export { IconGroupRounded as default } +export default IconGroupRounded diff --git a/src/IconGroupRoundedFilled.tsx b/src/IconGroupRoundedFilled.tsx index 0c5f63db1..e5406d244 100644 --- a/src/IconGroupRoundedFilled.tsx +++ b/src/IconGroupRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconGroupRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconGroupRoundedFilled as default } +export default IconGroupRoundedFilled diff --git a/src/IconGroupSharp.tsx b/src/IconGroupSharp.tsx index cb7554185..c44fdefe2 100644 --- a/src/IconGroupSharp.tsx +++ b/src/IconGroupSharp.tsx @@ -8,4 +8,4 @@ const IconGroupSharp: React.FC = ({ ...props }) => ( ) -export { IconGroupSharp as default } +export default IconGroupSharp diff --git a/src/IconGroupSharpFilled.tsx b/src/IconGroupSharpFilled.tsx index cebe67e20..752b3491d 100644 --- a/src/IconGroupSharpFilled.tsx +++ b/src/IconGroupSharpFilled.tsx @@ -8,4 +8,4 @@ const IconGroupSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconGroupSharpFilled as default } +export default IconGroupSharpFilled diff --git a/src/IconGroupWorkOutlined.tsx b/src/IconGroupWorkOutlined.tsx index 9fcf18c49..e36ba7b01 100644 --- a/src/IconGroupWorkOutlined.tsx +++ b/src/IconGroupWorkOutlined.tsx @@ -8,4 +8,4 @@ const IconGroupWorkOutlined: React.FC = ({ ...props }) => ( ) -export { IconGroupWorkOutlined as default } +export default IconGroupWorkOutlined diff --git a/src/IconGroupWorkOutlinedFilled.tsx b/src/IconGroupWorkOutlinedFilled.tsx index 5f8251cbc..3f20acc9c 100644 --- a/src/IconGroupWorkOutlinedFilled.tsx +++ b/src/IconGroupWorkOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconGroupWorkOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconGroupWorkOutlinedFilled as default } +export default IconGroupWorkOutlinedFilled diff --git a/src/IconGroupWorkRounded.tsx b/src/IconGroupWorkRounded.tsx index 806a4e685..f99dd4ef3 100644 --- a/src/IconGroupWorkRounded.tsx +++ b/src/IconGroupWorkRounded.tsx @@ -8,4 +8,4 @@ const IconGroupWorkRounded: React.FC = ({ ...props }) => ( ) -export { IconGroupWorkRounded as default } +export default IconGroupWorkRounded diff --git a/src/IconGroupWorkRoundedFilled.tsx b/src/IconGroupWorkRoundedFilled.tsx index 38669d243..27218798c 100644 --- a/src/IconGroupWorkRoundedFilled.tsx +++ b/src/IconGroupWorkRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconGroupWorkRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconGroupWorkRoundedFilled as default } +export default IconGroupWorkRoundedFilled diff --git a/src/IconGroupWorkSharp.tsx b/src/IconGroupWorkSharp.tsx index 92edcdf23..8376c4e1e 100644 --- a/src/IconGroupWorkSharp.tsx +++ b/src/IconGroupWorkSharp.tsx @@ -8,4 +8,4 @@ const IconGroupWorkSharp: React.FC = ({ ...props }) => ( ) -export { IconGroupWorkSharp as default } +export default IconGroupWorkSharp diff --git a/src/IconGroupWorkSharpFilled.tsx b/src/IconGroupWorkSharpFilled.tsx index 27e9c4ae7..0a7d913ad 100644 --- a/src/IconGroupWorkSharpFilled.tsx +++ b/src/IconGroupWorkSharpFilled.tsx @@ -8,4 +8,4 @@ const IconGroupWorkSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconGroupWorkSharpFilled as default } +export default IconGroupWorkSharpFilled diff --git a/src/IconGroupedBarChartOutlined.tsx b/src/IconGroupedBarChartOutlined.tsx index 707123175..19024267a 100644 --- a/src/IconGroupedBarChartOutlined.tsx +++ b/src/IconGroupedBarChartOutlined.tsx @@ -8,4 +8,4 @@ const IconGroupedBarChartOutlined: React.FC = ({ ...props }) => ( ) -export { IconGroupedBarChartOutlined as default } +export default IconGroupedBarChartOutlined diff --git a/src/IconGroupedBarChartOutlinedFilled.tsx b/src/IconGroupedBarChartOutlinedFilled.tsx index 01dc904c0..cb2a2128d 100644 --- a/src/IconGroupedBarChartOutlinedFilled.tsx +++ b/src/IconGroupedBarChartOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconGroupedBarChartOutlinedFilled: React.FC = ({ ) -export { IconGroupedBarChartOutlinedFilled as default } +export default IconGroupedBarChartOutlinedFilled diff --git a/src/IconGroupedBarChartRounded.tsx b/src/IconGroupedBarChartRounded.tsx index 5cc5b06c4..6074b1752 100644 --- a/src/IconGroupedBarChartRounded.tsx +++ b/src/IconGroupedBarChartRounded.tsx @@ -8,4 +8,4 @@ const IconGroupedBarChartRounded: React.FC = ({ ...props }) => ( ) -export { IconGroupedBarChartRounded as default } +export default IconGroupedBarChartRounded diff --git a/src/IconGroupedBarChartRoundedFilled.tsx b/src/IconGroupedBarChartRoundedFilled.tsx index 9ef704cbe..37b0ef50f 100644 --- a/src/IconGroupedBarChartRoundedFilled.tsx +++ b/src/IconGroupedBarChartRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconGroupedBarChartRoundedFilled: React.FC = ({ ) -export { IconGroupedBarChartRoundedFilled as default } +export default IconGroupedBarChartRoundedFilled diff --git a/src/IconGroupedBarChartSharp.tsx b/src/IconGroupedBarChartSharp.tsx index 45069e43e..f9910d9d2 100644 --- a/src/IconGroupedBarChartSharp.tsx +++ b/src/IconGroupedBarChartSharp.tsx @@ -8,4 +8,4 @@ const IconGroupedBarChartSharp: React.FC = ({ ...props }) => ( ) -export { IconGroupedBarChartSharp as default } +export default IconGroupedBarChartSharp diff --git a/src/IconGroupedBarChartSharpFilled.tsx b/src/IconGroupedBarChartSharpFilled.tsx index b6d6ebb08..01b6b8f77 100644 --- a/src/IconGroupedBarChartSharpFilled.tsx +++ b/src/IconGroupedBarChartSharpFilled.tsx @@ -8,4 +8,4 @@ const IconGroupedBarChartSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconGroupedBarChartSharpFilled as default } +export default IconGroupedBarChartSharpFilled diff --git a/src/IconGroups2Outlined.tsx b/src/IconGroups2Outlined.tsx index 1c9c32512..723af303e 100644 --- a/src/IconGroups2Outlined.tsx +++ b/src/IconGroups2Outlined.tsx @@ -8,4 +8,4 @@ const IconGroups2Outlined: React.FC = ({ ...props }) => ( ) -export { IconGroups2Outlined as default } +export default IconGroups2Outlined diff --git a/src/IconGroups2OutlinedFilled.tsx b/src/IconGroups2OutlinedFilled.tsx index 04a34f7c7..5f1b145f7 100644 --- a/src/IconGroups2OutlinedFilled.tsx +++ b/src/IconGroups2OutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconGroups2OutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconGroups2OutlinedFilled as default } +export default IconGroups2OutlinedFilled diff --git a/src/IconGroups2Rounded.tsx b/src/IconGroups2Rounded.tsx index 9f67e7f6f..1f30190d6 100644 --- a/src/IconGroups2Rounded.tsx +++ b/src/IconGroups2Rounded.tsx @@ -8,4 +8,4 @@ const IconGroups2Rounded: React.FC = ({ ...props }) => ( ) -export { IconGroups2Rounded as default } +export default IconGroups2Rounded diff --git a/src/IconGroups2RoundedFilled.tsx b/src/IconGroups2RoundedFilled.tsx index 214df9955..3476218fa 100644 --- a/src/IconGroups2RoundedFilled.tsx +++ b/src/IconGroups2RoundedFilled.tsx @@ -8,4 +8,4 @@ const IconGroups2RoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconGroups2RoundedFilled as default } +export default IconGroups2RoundedFilled diff --git a/src/IconGroups2Sharp.tsx b/src/IconGroups2Sharp.tsx index cd28b83c4..3f0a70924 100644 --- a/src/IconGroups2Sharp.tsx +++ b/src/IconGroups2Sharp.tsx @@ -8,4 +8,4 @@ const IconGroups2Sharp: React.FC = ({ ...props }) => ( ) -export { IconGroups2Sharp as default } +export default IconGroups2Sharp diff --git a/src/IconGroups2SharpFilled.tsx b/src/IconGroups2SharpFilled.tsx index 96fdd7c6e..3e73e1ead 100644 --- a/src/IconGroups2SharpFilled.tsx +++ b/src/IconGroups2SharpFilled.tsx @@ -8,4 +8,4 @@ const IconGroups2SharpFilled: React.FC = ({ ...props }) => ( ) -export { IconGroups2SharpFilled as default } +export default IconGroups2SharpFilled diff --git a/src/IconGroups3Outlined.tsx b/src/IconGroups3Outlined.tsx index 7d5a8b125..a54e1ec54 100644 --- a/src/IconGroups3Outlined.tsx +++ b/src/IconGroups3Outlined.tsx @@ -8,4 +8,4 @@ const IconGroups3Outlined: React.FC = ({ ...props }) => ( ) -export { IconGroups3Outlined as default } +export default IconGroups3Outlined diff --git a/src/IconGroups3OutlinedFilled.tsx b/src/IconGroups3OutlinedFilled.tsx index d4cc2e4c4..6f2011972 100644 --- a/src/IconGroups3OutlinedFilled.tsx +++ b/src/IconGroups3OutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconGroups3OutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconGroups3OutlinedFilled as default } +export default IconGroups3OutlinedFilled diff --git a/src/IconGroups3Rounded.tsx b/src/IconGroups3Rounded.tsx index e4d132328..878f35557 100644 --- a/src/IconGroups3Rounded.tsx +++ b/src/IconGroups3Rounded.tsx @@ -8,4 +8,4 @@ const IconGroups3Rounded: React.FC = ({ ...props }) => ( ) -export { IconGroups3Rounded as default } +export default IconGroups3Rounded diff --git a/src/IconGroups3RoundedFilled.tsx b/src/IconGroups3RoundedFilled.tsx index 71ee04953..f2e2420a9 100644 --- a/src/IconGroups3RoundedFilled.tsx +++ b/src/IconGroups3RoundedFilled.tsx @@ -8,4 +8,4 @@ const IconGroups3RoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconGroups3RoundedFilled as default } +export default IconGroups3RoundedFilled diff --git a/src/IconGroups3Sharp.tsx b/src/IconGroups3Sharp.tsx index cb841ff72..9ed8e0987 100644 --- a/src/IconGroups3Sharp.tsx +++ b/src/IconGroups3Sharp.tsx @@ -8,4 +8,4 @@ const IconGroups3Sharp: React.FC = ({ ...props }) => ( ) -export { IconGroups3Sharp as default } +export default IconGroups3Sharp diff --git a/src/IconGroups3SharpFilled.tsx b/src/IconGroups3SharpFilled.tsx index 4bb5dc5e7..2d752a6ae 100644 --- a/src/IconGroups3SharpFilled.tsx +++ b/src/IconGroups3SharpFilled.tsx @@ -8,4 +8,4 @@ const IconGroups3SharpFilled: React.FC = ({ ...props }) => ( ) -export { IconGroups3SharpFilled as default } +export default IconGroups3SharpFilled diff --git a/src/IconGroupsOutlined.tsx b/src/IconGroupsOutlined.tsx index 331597c48..eb15672ea 100644 --- a/src/IconGroupsOutlined.tsx +++ b/src/IconGroupsOutlined.tsx @@ -8,4 +8,4 @@ const IconGroupsOutlined: React.FC = ({ ...props }) => ( ) -export { IconGroupsOutlined as default } +export default IconGroupsOutlined diff --git a/src/IconGroupsOutlinedFilled.tsx b/src/IconGroupsOutlinedFilled.tsx index 709b9c65a..4a958e926 100644 --- a/src/IconGroupsOutlinedFilled.tsx +++ b/src/IconGroupsOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconGroupsOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconGroupsOutlinedFilled as default } +export default IconGroupsOutlinedFilled diff --git a/src/IconGroupsRounded.tsx b/src/IconGroupsRounded.tsx index 3ab7d57af..8c336b599 100644 --- a/src/IconGroupsRounded.tsx +++ b/src/IconGroupsRounded.tsx @@ -8,4 +8,4 @@ const IconGroupsRounded: React.FC = ({ ...props }) => ( ) -export { IconGroupsRounded as default } +export default IconGroupsRounded diff --git a/src/IconGroupsRoundedFilled.tsx b/src/IconGroupsRoundedFilled.tsx index 70225315c..bc735b9f6 100644 --- a/src/IconGroupsRoundedFilled.tsx +++ b/src/IconGroupsRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconGroupsRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconGroupsRoundedFilled as default } +export default IconGroupsRoundedFilled diff --git a/src/IconGroupsSharp.tsx b/src/IconGroupsSharp.tsx index db57c0c08..08b5dd3f4 100644 --- a/src/IconGroupsSharp.tsx +++ b/src/IconGroupsSharp.tsx @@ -8,4 +8,4 @@ const IconGroupsSharp: React.FC = ({ ...props }) => ( ) -export { IconGroupsSharp as default } +export default IconGroupsSharp diff --git a/src/IconGroupsSharpFilled.tsx b/src/IconGroupsSharpFilled.tsx index d5dbf8a6a..a7986bb77 100644 --- a/src/IconGroupsSharpFilled.tsx +++ b/src/IconGroupsSharpFilled.tsx @@ -8,4 +8,4 @@ const IconGroupsSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconGroupsSharpFilled as default } +export default IconGroupsSharpFilled diff --git a/src/IconGuardianOutlined.tsx b/src/IconGuardianOutlined.tsx index 2d1ccc9b5..8fefd2c0b 100644 --- a/src/IconGuardianOutlined.tsx +++ b/src/IconGuardianOutlined.tsx @@ -8,4 +8,4 @@ const IconGuardianOutlined: React.FC = ({ ...props }) => ( ) -export { IconGuardianOutlined as default } +export default IconGuardianOutlined diff --git a/src/IconGuardianOutlinedFilled.tsx b/src/IconGuardianOutlinedFilled.tsx index f6e050e2e..57873382b 100644 --- a/src/IconGuardianOutlinedFilled.tsx +++ b/src/IconGuardianOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconGuardianOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconGuardianOutlinedFilled as default } +export default IconGuardianOutlinedFilled diff --git a/src/IconGuardianRounded.tsx b/src/IconGuardianRounded.tsx index 738bbe890..940386837 100644 --- a/src/IconGuardianRounded.tsx +++ b/src/IconGuardianRounded.tsx @@ -8,4 +8,4 @@ const IconGuardianRounded: React.FC = ({ ...props }) => ( ) -export { IconGuardianRounded as default } +export default IconGuardianRounded diff --git a/src/IconGuardianRoundedFilled.tsx b/src/IconGuardianRoundedFilled.tsx index 8e2b77176..71e52b910 100644 --- a/src/IconGuardianRoundedFilled.tsx +++ b/src/IconGuardianRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconGuardianRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconGuardianRoundedFilled as default } +export default IconGuardianRoundedFilled diff --git a/src/IconGuardianSharp.tsx b/src/IconGuardianSharp.tsx index 2e8796d2b..738ae04a8 100644 --- a/src/IconGuardianSharp.tsx +++ b/src/IconGuardianSharp.tsx @@ -8,4 +8,4 @@ const IconGuardianSharp: React.FC = ({ ...props }) => ( ) -export { IconGuardianSharp as default } +export default IconGuardianSharp diff --git a/src/IconGuardianSharpFilled.tsx b/src/IconGuardianSharpFilled.tsx index c1e50fc04..a7dbe232b 100644 --- a/src/IconGuardianSharpFilled.tsx +++ b/src/IconGuardianSharpFilled.tsx @@ -8,4 +8,4 @@ const IconGuardianSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconGuardianSharpFilled as default } +export default IconGuardianSharpFilled diff --git a/src/IconGynecologyOutlined.tsx b/src/IconGynecologyOutlined.tsx index 3f93cf83c..38381e38a 100644 --- a/src/IconGynecologyOutlined.tsx +++ b/src/IconGynecologyOutlined.tsx @@ -8,4 +8,4 @@ const IconGynecologyOutlined: React.FC = ({ ...props }) => ( ) -export { IconGynecologyOutlined as default } +export default IconGynecologyOutlined diff --git a/src/IconGynecologyOutlinedFilled.tsx b/src/IconGynecologyOutlinedFilled.tsx index 15cc9aa0e..8f9ae8329 100644 --- a/src/IconGynecologyOutlinedFilled.tsx +++ b/src/IconGynecologyOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconGynecologyOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconGynecologyOutlinedFilled as default } +export default IconGynecologyOutlinedFilled diff --git a/src/IconGynecologyRounded.tsx b/src/IconGynecologyRounded.tsx index 05e8f08c1..647c21945 100644 --- a/src/IconGynecologyRounded.tsx +++ b/src/IconGynecologyRounded.tsx @@ -8,4 +8,4 @@ const IconGynecologyRounded: React.FC = ({ ...props }) => ( ) -export { IconGynecologyRounded as default } +export default IconGynecologyRounded diff --git a/src/IconGynecologyRoundedFilled.tsx b/src/IconGynecologyRoundedFilled.tsx index d475730a7..fc6e9e6cb 100644 --- a/src/IconGynecologyRoundedFilled.tsx +++ b/src/IconGynecologyRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconGynecologyRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconGynecologyRoundedFilled as default } +export default IconGynecologyRoundedFilled diff --git a/src/IconGynecologySharp.tsx b/src/IconGynecologySharp.tsx index dd9ae7558..9fec59c16 100644 --- a/src/IconGynecologySharp.tsx +++ b/src/IconGynecologySharp.tsx @@ -8,4 +8,4 @@ const IconGynecologySharp: React.FC = ({ ...props }) => ( ) -export { IconGynecologySharp as default } +export default IconGynecologySharp diff --git a/src/IconGynecologySharpFilled.tsx b/src/IconGynecologySharpFilled.tsx index 978c8f713..86cbca410 100644 --- a/src/IconGynecologySharpFilled.tsx +++ b/src/IconGynecologySharpFilled.tsx @@ -8,4 +8,4 @@ const IconGynecologySharpFilled: React.FC = ({ ...props }) => ( ) -export { IconGynecologySharpFilled as default } +export default IconGynecologySharpFilled diff --git a/src/IconHMobiledataBadgeOutlined.tsx b/src/IconHMobiledataBadgeOutlined.tsx index 4732c6b63..d0a85206d 100644 --- a/src/IconHMobiledataBadgeOutlined.tsx +++ b/src/IconHMobiledataBadgeOutlined.tsx @@ -8,4 +8,4 @@ const IconHMobiledataBadgeOutlined: React.FC = ({ ...props }) => ( ) -export { IconHMobiledataBadgeOutlined as default } +export default IconHMobiledataBadgeOutlined diff --git a/src/IconHMobiledataBadgeOutlinedFilled.tsx b/src/IconHMobiledataBadgeOutlinedFilled.tsx index efab6832a..14d362382 100644 --- a/src/IconHMobiledataBadgeOutlinedFilled.tsx +++ b/src/IconHMobiledataBadgeOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconHMobiledataBadgeOutlinedFilled: React.FC = ({ ) -export { IconHMobiledataBadgeOutlinedFilled as default } +export default IconHMobiledataBadgeOutlinedFilled diff --git a/src/IconHMobiledataBadgeRounded.tsx b/src/IconHMobiledataBadgeRounded.tsx index 465e90b2a..c109322a4 100644 --- a/src/IconHMobiledataBadgeRounded.tsx +++ b/src/IconHMobiledataBadgeRounded.tsx @@ -8,4 +8,4 @@ const IconHMobiledataBadgeRounded: React.FC = ({ ...props }) => ( ) -export { IconHMobiledataBadgeRounded as default } +export default IconHMobiledataBadgeRounded diff --git a/src/IconHMobiledataBadgeRoundedFilled.tsx b/src/IconHMobiledataBadgeRoundedFilled.tsx index cb58c7e8a..e5aef17fc 100644 --- a/src/IconHMobiledataBadgeRoundedFilled.tsx +++ b/src/IconHMobiledataBadgeRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconHMobiledataBadgeRoundedFilled: React.FC = ({ ) -export { IconHMobiledataBadgeRoundedFilled as default } +export default IconHMobiledataBadgeRoundedFilled diff --git a/src/IconHMobiledataBadgeSharp.tsx b/src/IconHMobiledataBadgeSharp.tsx index 406b4c675..1d1729b71 100644 --- a/src/IconHMobiledataBadgeSharp.tsx +++ b/src/IconHMobiledataBadgeSharp.tsx @@ -8,4 +8,4 @@ const IconHMobiledataBadgeSharp: React.FC = ({ ...props }) => ( ) -export { IconHMobiledataBadgeSharp as default } +export default IconHMobiledataBadgeSharp diff --git a/src/IconHMobiledataBadgeSharpFilled.tsx b/src/IconHMobiledataBadgeSharpFilled.tsx index 8e8ea9c03..c4c89dac7 100644 --- a/src/IconHMobiledataBadgeSharpFilled.tsx +++ b/src/IconHMobiledataBadgeSharpFilled.tsx @@ -8,4 +8,4 @@ const IconHMobiledataBadgeSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconHMobiledataBadgeSharpFilled as default } +export default IconHMobiledataBadgeSharpFilled diff --git a/src/IconHMobiledataOutlined.tsx b/src/IconHMobiledataOutlined.tsx index f6dffa8d8..c16ee566e 100644 --- a/src/IconHMobiledataOutlined.tsx +++ b/src/IconHMobiledataOutlined.tsx @@ -8,4 +8,4 @@ const IconHMobiledataOutlined: React.FC = ({ ...props }) => ( ) -export { IconHMobiledataOutlined as default } +export default IconHMobiledataOutlined diff --git a/src/IconHMobiledataOutlinedFilled.tsx b/src/IconHMobiledataOutlinedFilled.tsx index f57d4973c..f970f860a 100644 --- a/src/IconHMobiledataOutlinedFilled.tsx +++ b/src/IconHMobiledataOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconHMobiledataOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconHMobiledataOutlinedFilled as default } +export default IconHMobiledataOutlinedFilled diff --git a/src/IconHMobiledataRounded.tsx b/src/IconHMobiledataRounded.tsx index 6a31620fe..25b79a958 100644 --- a/src/IconHMobiledataRounded.tsx +++ b/src/IconHMobiledataRounded.tsx @@ -8,4 +8,4 @@ const IconHMobiledataRounded: React.FC = ({ ...props }) => ( ) -export { IconHMobiledataRounded as default } +export default IconHMobiledataRounded diff --git a/src/IconHMobiledataRoundedFilled.tsx b/src/IconHMobiledataRoundedFilled.tsx index 0e2325ad2..9987bd162 100644 --- a/src/IconHMobiledataRoundedFilled.tsx +++ b/src/IconHMobiledataRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconHMobiledataRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconHMobiledataRoundedFilled as default } +export default IconHMobiledataRoundedFilled diff --git a/src/IconHMobiledataSharp.tsx b/src/IconHMobiledataSharp.tsx index 75ab06b69..ede9440ce 100644 --- a/src/IconHMobiledataSharp.tsx +++ b/src/IconHMobiledataSharp.tsx @@ -8,4 +8,4 @@ const IconHMobiledataSharp: React.FC = ({ ...props }) => ( ) -export { IconHMobiledataSharp as default } +export default IconHMobiledataSharp diff --git a/src/IconHMobiledataSharpFilled.tsx b/src/IconHMobiledataSharpFilled.tsx index 53ec5a27c..169549fc4 100644 --- a/src/IconHMobiledataSharpFilled.tsx +++ b/src/IconHMobiledataSharpFilled.tsx @@ -8,4 +8,4 @@ const IconHMobiledataSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconHMobiledataSharpFilled as default } +export default IconHMobiledataSharpFilled diff --git a/src/IconHPlusMobiledataBadgeOutlined.tsx b/src/IconHPlusMobiledataBadgeOutlined.tsx index fcb28893e..c7fa4a817 100644 --- a/src/IconHPlusMobiledataBadgeOutlined.tsx +++ b/src/IconHPlusMobiledataBadgeOutlined.tsx @@ -10,4 +10,4 @@ const IconHPlusMobiledataBadgeOutlined: React.FC = ({ ) -export { IconHPlusMobiledataBadgeOutlined as default } +export default IconHPlusMobiledataBadgeOutlined diff --git a/src/IconHPlusMobiledataBadgeOutlinedFilled.tsx b/src/IconHPlusMobiledataBadgeOutlinedFilled.tsx index d91316562..c7da91e89 100644 --- a/src/IconHPlusMobiledataBadgeOutlinedFilled.tsx +++ b/src/IconHPlusMobiledataBadgeOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconHPlusMobiledataBadgeOutlinedFilled: React.FC = ({ ) -export { IconHPlusMobiledataBadgeOutlinedFilled as default } +export default IconHPlusMobiledataBadgeOutlinedFilled diff --git a/src/IconHPlusMobiledataBadgeRounded.tsx b/src/IconHPlusMobiledataBadgeRounded.tsx index b1b335b81..f1c6b99aa 100644 --- a/src/IconHPlusMobiledataBadgeRounded.tsx +++ b/src/IconHPlusMobiledataBadgeRounded.tsx @@ -8,4 +8,4 @@ const IconHPlusMobiledataBadgeRounded: React.FC = ({ ...props }) => ( ) -export { IconHPlusMobiledataBadgeRounded as default } +export default IconHPlusMobiledataBadgeRounded diff --git a/src/IconHPlusMobiledataBadgeRoundedFilled.tsx b/src/IconHPlusMobiledataBadgeRoundedFilled.tsx index 7d4616262..66640e198 100644 --- a/src/IconHPlusMobiledataBadgeRoundedFilled.tsx +++ b/src/IconHPlusMobiledataBadgeRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconHPlusMobiledataBadgeRoundedFilled: React.FC = ({ ) -export { IconHPlusMobiledataBadgeRoundedFilled as default } +export default IconHPlusMobiledataBadgeRoundedFilled diff --git a/src/IconHPlusMobiledataBadgeSharp.tsx b/src/IconHPlusMobiledataBadgeSharp.tsx index c03825c83..7f6c02d95 100644 --- a/src/IconHPlusMobiledataBadgeSharp.tsx +++ b/src/IconHPlusMobiledataBadgeSharp.tsx @@ -8,4 +8,4 @@ const IconHPlusMobiledataBadgeSharp: React.FC = ({ ...props }) => ( ) -export { IconHPlusMobiledataBadgeSharp as default } +export default IconHPlusMobiledataBadgeSharp diff --git a/src/IconHPlusMobiledataBadgeSharpFilled.tsx b/src/IconHPlusMobiledataBadgeSharpFilled.tsx index 2a391fef3..74e1d1e65 100644 --- a/src/IconHPlusMobiledataBadgeSharpFilled.tsx +++ b/src/IconHPlusMobiledataBadgeSharpFilled.tsx @@ -10,4 +10,4 @@ const IconHPlusMobiledataBadgeSharpFilled: React.FC = ({ ) -export { IconHPlusMobiledataBadgeSharpFilled as default } +export default IconHPlusMobiledataBadgeSharpFilled diff --git a/src/IconHPlusMobiledataOutlined.tsx b/src/IconHPlusMobiledataOutlined.tsx index 732175767..acf169db9 100644 --- a/src/IconHPlusMobiledataOutlined.tsx +++ b/src/IconHPlusMobiledataOutlined.tsx @@ -8,4 +8,4 @@ const IconHPlusMobiledataOutlined: React.FC = ({ ...props }) => ( ) -export { IconHPlusMobiledataOutlined as default } +export default IconHPlusMobiledataOutlined diff --git a/src/IconHPlusMobiledataOutlinedFilled.tsx b/src/IconHPlusMobiledataOutlinedFilled.tsx index 0d73a7aba..6c9a048c5 100644 --- a/src/IconHPlusMobiledataOutlinedFilled.tsx +++ b/src/IconHPlusMobiledataOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconHPlusMobiledataOutlinedFilled: React.FC = ({ ) -export { IconHPlusMobiledataOutlinedFilled as default } +export default IconHPlusMobiledataOutlinedFilled diff --git a/src/IconHPlusMobiledataRounded.tsx b/src/IconHPlusMobiledataRounded.tsx index 15e0c945e..5467cf04e 100644 --- a/src/IconHPlusMobiledataRounded.tsx +++ b/src/IconHPlusMobiledataRounded.tsx @@ -8,4 +8,4 @@ const IconHPlusMobiledataRounded: React.FC = ({ ...props }) => ( ) -export { IconHPlusMobiledataRounded as default } +export default IconHPlusMobiledataRounded diff --git a/src/IconHPlusMobiledataRoundedFilled.tsx b/src/IconHPlusMobiledataRoundedFilled.tsx index c21f6d0db..c947452e8 100644 --- a/src/IconHPlusMobiledataRoundedFilled.tsx +++ b/src/IconHPlusMobiledataRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconHPlusMobiledataRoundedFilled: React.FC = ({ ) -export { IconHPlusMobiledataRoundedFilled as default } +export default IconHPlusMobiledataRoundedFilled diff --git a/src/IconHPlusMobiledataSharp.tsx b/src/IconHPlusMobiledataSharp.tsx index c53dee425..9787c3047 100644 --- a/src/IconHPlusMobiledataSharp.tsx +++ b/src/IconHPlusMobiledataSharp.tsx @@ -8,4 +8,4 @@ const IconHPlusMobiledataSharp: React.FC = ({ ...props }) => ( ) -export { IconHPlusMobiledataSharp as default } +export default IconHPlusMobiledataSharp diff --git a/src/IconHPlusMobiledataSharpFilled.tsx b/src/IconHPlusMobiledataSharpFilled.tsx index 4a636d631..aa0ef76d9 100644 --- a/src/IconHPlusMobiledataSharpFilled.tsx +++ b/src/IconHPlusMobiledataSharpFilled.tsx @@ -8,4 +8,4 @@ const IconHPlusMobiledataSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconHPlusMobiledataSharpFilled as default } +export default IconHPlusMobiledataSharpFilled diff --git a/src/IconHailOutlined.tsx b/src/IconHailOutlined.tsx index ab90b4e13..5d19fc1e0 100644 --- a/src/IconHailOutlined.tsx +++ b/src/IconHailOutlined.tsx @@ -8,4 +8,4 @@ const IconHailOutlined: React.FC = ({ ...props }) => ( ) -export { IconHailOutlined as default } +export default IconHailOutlined diff --git a/src/IconHailOutlinedFilled.tsx b/src/IconHailOutlinedFilled.tsx index d60c8c2ab..12438eaa5 100644 --- a/src/IconHailOutlinedFilled.tsx +++ b/src/IconHailOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconHailOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconHailOutlinedFilled as default } +export default IconHailOutlinedFilled diff --git a/src/IconHailRounded.tsx b/src/IconHailRounded.tsx index fb8c2041c..d82bc0b84 100644 --- a/src/IconHailRounded.tsx +++ b/src/IconHailRounded.tsx @@ -8,4 +8,4 @@ const IconHailRounded: React.FC = ({ ...props }) => ( ) -export { IconHailRounded as default } +export default IconHailRounded diff --git a/src/IconHailRoundedFilled.tsx b/src/IconHailRoundedFilled.tsx index 92b934186..af74fbdb3 100644 --- a/src/IconHailRoundedFilled.tsx +++ b/src/IconHailRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconHailRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconHailRoundedFilled as default } +export default IconHailRoundedFilled diff --git a/src/IconHailSharp.tsx b/src/IconHailSharp.tsx index 6ac37f3cb..08c0393bc 100644 --- a/src/IconHailSharp.tsx +++ b/src/IconHailSharp.tsx @@ -8,4 +8,4 @@ const IconHailSharp: React.FC = ({ ...props }) => ( ) -export { IconHailSharp as default } +export default IconHailSharp diff --git a/src/IconHailSharpFilled.tsx b/src/IconHailSharpFilled.tsx index 690ca8653..79247fa25 100644 --- a/src/IconHailSharpFilled.tsx +++ b/src/IconHailSharpFilled.tsx @@ -8,4 +8,4 @@ const IconHailSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconHailSharpFilled as default } +export default IconHailSharpFilled diff --git a/src/IconHallwayOutlined.tsx b/src/IconHallwayOutlined.tsx index 5fe22ec73..e8b8867e2 100644 --- a/src/IconHallwayOutlined.tsx +++ b/src/IconHallwayOutlined.tsx @@ -8,4 +8,4 @@ const IconHallwayOutlined: React.FC = ({ ...props }) => ( ) -export { IconHallwayOutlined as default } +export default IconHallwayOutlined diff --git a/src/IconHallwayOutlinedFilled.tsx b/src/IconHallwayOutlinedFilled.tsx index 1ec34d3b3..056e03aab 100644 --- a/src/IconHallwayOutlinedFilled.tsx +++ b/src/IconHallwayOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconHallwayOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconHallwayOutlinedFilled as default } +export default IconHallwayOutlinedFilled diff --git a/src/IconHallwayRounded.tsx b/src/IconHallwayRounded.tsx index e4bc1785f..494b7a305 100644 --- a/src/IconHallwayRounded.tsx +++ b/src/IconHallwayRounded.tsx @@ -8,4 +8,4 @@ const IconHallwayRounded: React.FC = ({ ...props }) => ( ) -export { IconHallwayRounded as default } +export default IconHallwayRounded diff --git a/src/IconHallwayRoundedFilled.tsx b/src/IconHallwayRoundedFilled.tsx index 99f58988e..5cc31fb53 100644 --- a/src/IconHallwayRoundedFilled.tsx +++ b/src/IconHallwayRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconHallwayRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconHallwayRoundedFilled as default } +export default IconHallwayRoundedFilled diff --git a/src/IconHallwaySharp.tsx b/src/IconHallwaySharp.tsx index ce303d161..7edefc8e1 100644 --- a/src/IconHallwaySharp.tsx +++ b/src/IconHallwaySharp.tsx @@ -8,4 +8,4 @@ const IconHallwaySharp: React.FC = ({ ...props }) => ( ) -export { IconHallwaySharp as default } +export default IconHallwaySharp diff --git a/src/IconHallwaySharpFilled.tsx b/src/IconHallwaySharpFilled.tsx index 4861c198c..c30cbd49d 100644 --- a/src/IconHallwaySharpFilled.tsx +++ b/src/IconHallwaySharpFilled.tsx @@ -8,4 +8,4 @@ const IconHallwaySharpFilled: React.FC = ({ ...props }) => ( ) -export { IconHallwaySharpFilled as default } +export default IconHallwaySharpFilled diff --git a/src/IconHandBonesOutlined.tsx b/src/IconHandBonesOutlined.tsx index 09620dff3..1252f41dc 100644 --- a/src/IconHandBonesOutlined.tsx +++ b/src/IconHandBonesOutlined.tsx @@ -8,4 +8,4 @@ const IconHandBonesOutlined: React.FC = ({ ...props }) => ( ) -export { IconHandBonesOutlined as default } +export default IconHandBonesOutlined diff --git a/src/IconHandBonesOutlinedFilled.tsx b/src/IconHandBonesOutlinedFilled.tsx index c4c712fa6..45df30510 100644 --- a/src/IconHandBonesOutlinedFilled.tsx +++ b/src/IconHandBonesOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconHandBonesOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconHandBonesOutlinedFilled as default } +export default IconHandBonesOutlinedFilled diff --git a/src/IconHandBonesRounded.tsx b/src/IconHandBonesRounded.tsx index 699b15427..3ed6e2742 100644 --- a/src/IconHandBonesRounded.tsx +++ b/src/IconHandBonesRounded.tsx @@ -8,4 +8,4 @@ const IconHandBonesRounded: React.FC = ({ ...props }) => ( ) -export { IconHandBonesRounded as default } +export default IconHandBonesRounded diff --git a/src/IconHandBonesRoundedFilled.tsx b/src/IconHandBonesRoundedFilled.tsx index a4850000e..93138d8e1 100644 --- a/src/IconHandBonesRoundedFilled.tsx +++ b/src/IconHandBonesRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconHandBonesRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconHandBonesRoundedFilled as default } +export default IconHandBonesRoundedFilled diff --git a/src/IconHandBonesSharp.tsx b/src/IconHandBonesSharp.tsx index 5dccbfaf2..330e9a01f 100644 --- a/src/IconHandBonesSharp.tsx +++ b/src/IconHandBonesSharp.tsx @@ -8,4 +8,4 @@ const IconHandBonesSharp: React.FC = ({ ...props }) => ( ) -export { IconHandBonesSharp as default } +export default IconHandBonesSharp diff --git a/src/IconHandBonesSharpFilled.tsx b/src/IconHandBonesSharpFilled.tsx index a5b79f76c..732031d2e 100644 --- a/src/IconHandBonesSharpFilled.tsx +++ b/src/IconHandBonesSharpFilled.tsx @@ -8,4 +8,4 @@ const IconHandBonesSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconHandBonesSharpFilled as default } +export default IconHandBonesSharpFilled diff --git a/src/IconHandGestureOffOutlined.tsx b/src/IconHandGestureOffOutlined.tsx index 13c09008a..34418fd33 100644 --- a/src/IconHandGestureOffOutlined.tsx +++ b/src/IconHandGestureOffOutlined.tsx @@ -8,4 +8,4 @@ const IconHandGestureOffOutlined: React.FC = ({ ...props }) => ( ) -export { IconHandGestureOffOutlined as default } +export default IconHandGestureOffOutlined diff --git a/src/IconHandGestureOffOutlinedFilled.tsx b/src/IconHandGestureOffOutlinedFilled.tsx index 5fdcaf5ce..76058c9cc 100644 --- a/src/IconHandGestureOffOutlinedFilled.tsx +++ b/src/IconHandGestureOffOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconHandGestureOffOutlinedFilled: React.FC = ({ ) -export { IconHandGestureOffOutlinedFilled as default } +export default IconHandGestureOffOutlinedFilled diff --git a/src/IconHandGestureOffRounded.tsx b/src/IconHandGestureOffRounded.tsx index 0f3face6c..9235cd292 100644 --- a/src/IconHandGestureOffRounded.tsx +++ b/src/IconHandGestureOffRounded.tsx @@ -8,4 +8,4 @@ const IconHandGestureOffRounded: React.FC = ({ ...props }) => ( ) -export { IconHandGestureOffRounded as default } +export default IconHandGestureOffRounded diff --git a/src/IconHandGestureOffRoundedFilled.tsx b/src/IconHandGestureOffRoundedFilled.tsx index 8526a66a3..d42045e10 100644 --- a/src/IconHandGestureOffRoundedFilled.tsx +++ b/src/IconHandGestureOffRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconHandGestureOffRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconHandGestureOffRoundedFilled as default } +export default IconHandGestureOffRoundedFilled diff --git a/src/IconHandGestureOffSharp.tsx b/src/IconHandGestureOffSharp.tsx index 6e74d7c65..c36f81041 100644 --- a/src/IconHandGestureOffSharp.tsx +++ b/src/IconHandGestureOffSharp.tsx @@ -8,4 +8,4 @@ const IconHandGestureOffSharp: React.FC = ({ ...props }) => ( ) -export { IconHandGestureOffSharp as default } +export default IconHandGestureOffSharp diff --git a/src/IconHandGestureOffSharpFilled.tsx b/src/IconHandGestureOffSharpFilled.tsx index 10e61f13e..526de940e 100644 --- a/src/IconHandGestureOffSharpFilled.tsx +++ b/src/IconHandGestureOffSharpFilled.tsx @@ -8,4 +8,4 @@ const IconHandGestureOffSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconHandGestureOffSharpFilled as default } +export default IconHandGestureOffSharpFilled diff --git a/src/IconHandGestureOutlined.tsx b/src/IconHandGestureOutlined.tsx index cc4ad83e1..5a426fbdb 100644 --- a/src/IconHandGestureOutlined.tsx +++ b/src/IconHandGestureOutlined.tsx @@ -8,4 +8,4 @@ const IconHandGestureOutlined: React.FC = ({ ...props }) => ( ) -export { IconHandGestureOutlined as default } +export default IconHandGestureOutlined diff --git a/src/IconHandGestureOutlinedFilled.tsx b/src/IconHandGestureOutlinedFilled.tsx index 51fb1b0f8..f8aaa3058 100644 --- a/src/IconHandGestureOutlinedFilled.tsx +++ b/src/IconHandGestureOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconHandGestureOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconHandGestureOutlinedFilled as default } +export default IconHandGestureOutlinedFilled diff --git a/src/IconHandGestureRounded.tsx b/src/IconHandGestureRounded.tsx index c9801a175..333cade34 100644 --- a/src/IconHandGestureRounded.tsx +++ b/src/IconHandGestureRounded.tsx @@ -8,4 +8,4 @@ const IconHandGestureRounded: React.FC = ({ ...props }) => ( ) -export { IconHandGestureRounded as default } +export default IconHandGestureRounded diff --git a/src/IconHandGestureRoundedFilled.tsx b/src/IconHandGestureRoundedFilled.tsx index 57dad7523..b79b72747 100644 --- a/src/IconHandGestureRoundedFilled.tsx +++ b/src/IconHandGestureRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconHandGestureRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconHandGestureRoundedFilled as default } +export default IconHandGestureRoundedFilled diff --git a/src/IconHandGestureSharp.tsx b/src/IconHandGestureSharp.tsx index 69545c813..0f58a4d8f 100644 --- a/src/IconHandGestureSharp.tsx +++ b/src/IconHandGestureSharp.tsx @@ -8,4 +8,4 @@ const IconHandGestureSharp: React.FC = ({ ...props }) => ( ) -export { IconHandGestureSharp as default } +export default IconHandGestureSharp diff --git a/src/IconHandGestureSharpFilled.tsx b/src/IconHandGestureSharpFilled.tsx index 10c8cc1ae..0a3a0cdc5 100644 --- a/src/IconHandGestureSharpFilled.tsx +++ b/src/IconHandGestureSharpFilled.tsx @@ -8,4 +8,4 @@ const IconHandGestureSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconHandGestureSharpFilled as default } +export default IconHandGestureSharpFilled diff --git a/src/IconHandheldControllerOutlined.tsx b/src/IconHandheldControllerOutlined.tsx index 03bedb76f..8ed005ea0 100644 --- a/src/IconHandheldControllerOutlined.tsx +++ b/src/IconHandheldControllerOutlined.tsx @@ -8,4 +8,4 @@ const IconHandheldControllerOutlined: React.FC = ({ ...props }) => ( ) -export { IconHandheldControllerOutlined as default } +export default IconHandheldControllerOutlined diff --git a/src/IconHandheldControllerOutlinedFilled.tsx b/src/IconHandheldControllerOutlinedFilled.tsx index 8dfe8a005..3613a884a 100644 --- a/src/IconHandheldControllerOutlinedFilled.tsx +++ b/src/IconHandheldControllerOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconHandheldControllerOutlinedFilled: React.FC = ({ ) -export { IconHandheldControllerOutlinedFilled as default } +export default IconHandheldControllerOutlinedFilled diff --git a/src/IconHandheldControllerRounded.tsx b/src/IconHandheldControllerRounded.tsx index c9e1d1113..628f7b41d 100644 --- a/src/IconHandheldControllerRounded.tsx +++ b/src/IconHandheldControllerRounded.tsx @@ -8,4 +8,4 @@ const IconHandheldControllerRounded: React.FC = ({ ...props }) => ( ) -export { IconHandheldControllerRounded as default } +export default IconHandheldControllerRounded diff --git a/src/IconHandheldControllerRoundedFilled.tsx b/src/IconHandheldControllerRoundedFilled.tsx index 7f7a40490..61bf86c93 100644 --- a/src/IconHandheldControllerRoundedFilled.tsx +++ b/src/IconHandheldControllerRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconHandheldControllerRoundedFilled: React.FC = ({ ) -export { IconHandheldControllerRoundedFilled as default } +export default IconHandheldControllerRoundedFilled diff --git a/src/IconHandheldControllerSharp.tsx b/src/IconHandheldControllerSharp.tsx index 770350881..18acb91e2 100644 --- a/src/IconHandheldControllerSharp.tsx +++ b/src/IconHandheldControllerSharp.tsx @@ -8,4 +8,4 @@ const IconHandheldControllerSharp: React.FC = ({ ...props }) => ( ) -export { IconHandheldControllerSharp as default } +export default IconHandheldControllerSharp diff --git a/src/IconHandheldControllerSharpFilled.tsx b/src/IconHandheldControllerSharpFilled.tsx index 5a2953af5..365f5b751 100644 --- a/src/IconHandheldControllerSharpFilled.tsx +++ b/src/IconHandheldControllerSharpFilled.tsx @@ -10,4 +10,4 @@ const IconHandheldControllerSharpFilled: React.FC = ({ ) -export { IconHandheldControllerSharpFilled as default } +export default IconHandheldControllerSharpFilled diff --git a/src/IconHandshakeOutlined.tsx b/src/IconHandshakeOutlined.tsx index 508d8134f..be728dd4c 100644 --- a/src/IconHandshakeOutlined.tsx +++ b/src/IconHandshakeOutlined.tsx @@ -8,4 +8,4 @@ const IconHandshakeOutlined: React.FC = ({ ...props }) => ( ) -export { IconHandshakeOutlined as default } +export default IconHandshakeOutlined diff --git a/src/IconHandshakeOutlinedFilled.tsx b/src/IconHandshakeOutlinedFilled.tsx index 59d770ee8..9cfb33116 100644 --- a/src/IconHandshakeOutlinedFilled.tsx +++ b/src/IconHandshakeOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconHandshakeOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconHandshakeOutlinedFilled as default } +export default IconHandshakeOutlinedFilled diff --git a/src/IconHandshakeRounded.tsx b/src/IconHandshakeRounded.tsx index 0757db2c5..c165803cc 100644 --- a/src/IconHandshakeRounded.tsx +++ b/src/IconHandshakeRounded.tsx @@ -8,4 +8,4 @@ const IconHandshakeRounded: React.FC = ({ ...props }) => ( ) -export { IconHandshakeRounded as default } +export default IconHandshakeRounded diff --git a/src/IconHandshakeRoundedFilled.tsx b/src/IconHandshakeRoundedFilled.tsx index 596788916..d14184b29 100644 --- a/src/IconHandshakeRoundedFilled.tsx +++ b/src/IconHandshakeRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconHandshakeRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconHandshakeRoundedFilled as default } +export default IconHandshakeRoundedFilled diff --git a/src/IconHandshakeSharp.tsx b/src/IconHandshakeSharp.tsx index d3a1c3f5b..04a3f8fc0 100644 --- a/src/IconHandshakeSharp.tsx +++ b/src/IconHandshakeSharp.tsx @@ -8,4 +8,4 @@ const IconHandshakeSharp: React.FC = ({ ...props }) => ( ) -export { IconHandshakeSharp as default } +export default IconHandshakeSharp diff --git a/src/IconHandshakeSharpFilled.tsx b/src/IconHandshakeSharpFilled.tsx index 4a94ed52d..ee84fed1b 100644 --- a/src/IconHandshakeSharpFilled.tsx +++ b/src/IconHandshakeSharpFilled.tsx @@ -8,4 +8,4 @@ const IconHandshakeSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconHandshakeSharpFilled as default } +export default IconHandshakeSharpFilled diff --git a/src/IconHandymanOutlined.tsx b/src/IconHandymanOutlined.tsx index 46a7ff7cd..532f078ed 100644 --- a/src/IconHandymanOutlined.tsx +++ b/src/IconHandymanOutlined.tsx @@ -8,4 +8,4 @@ const IconHandymanOutlined: React.FC = ({ ...props }) => ( ) -export { IconHandymanOutlined as default } +export default IconHandymanOutlined diff --git a/src/IconHandymanOutlinedFilled.tsx b/src/IconHandymanOutlinedFilled.tsx index f870171f3..eb08bdfcb 100644 --- a/src/IconHandymanOutlinedFilled.tsx +++ b/src/IconHandymanOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconHandymanOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconHandymanOutlinedFilled as default } +export default IconHandymanOutlinedFilled diff --git a/src/IconHandymanRounded.tsx b/src/IconHandymanRounded.tsx index 268f12b5e..23eaab979 100644 --- a/src/IconHandymanRounded.tsx +++ b/src/IconHandymanRounded.tsx @@ -8,4 +8,4 @@ const IconHandymanRounded: React.FC = ({ ...props }) => ( ) -export { IconHandymanRounded as default } +export default IconHandymanRounded diff --git a/src/IconHandymanRoundedFilled.tsx b/src/IconHandymanRoundedFilled.tsx index fca2d829e..613344aad 100644 --- a/src/IconHandymanRoundedFilled.tsx +++ b/src/IconHandymanRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconHandymanRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconHandymanRoundedFilled as default } +export default IconHandymanRoundedFilled diff --git a/src/IconHandymanSharp.tsx b/src/IconHandymanSharp.tsx index 72eae7c31..cfa818122 100644 --- a/src/IconHandymanSharp.tsx +++ b/src/IconHandymanSharp.tsx @@ -8,4 +8,4 @@ const IconHandymanSharp: React.FC = ({ ...props }) => ( ) -export { IconHandymanSharp as default } +export default IconHandymanSharp diff --git a/src/IconHandymanSharpFilled.tsx b/src/IconHandymanSharpFilled.tsx index 3636fd3d2..37ce350dd 100644 --- a/src/IconHandymanSharpFilled.tsx +++ b/src/IconHandymanSharpFilled.tsx @@ -8,4 +8,4 @@ const IconHandymanSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconHandymanSharpFilled as default } +export default IconHandymanSharpFilled diff --git a/src/IconHangoutVideoOffOutlined.tsx b/src/IconHangoutVideoOffOutlined.tsx index 5c93a4ed8..cd103b0f9 100644 --- a/src/IconHangoutVideoOffOutlined.tsx +++ b/src/IconHangoutVideoOffOutlined.tsx @@ -8,4 +8,4 @@ const IconHangoutVideoOffOutlined: React.FC = ({ ...props }) => ( ) -export { IconHangoutVideoOffOutlined as default } +export default IconHangoutVideoOffOutlined diff --git a/src/IconHangoutVideoOffOutlinedFilled.tsx b/src/IconHangoutVideoOffOutlinedFilled.tsx index 585bd6a61..3c7306eb8 100644 --- a/src/IconHangoutVideoOffOutlinedFilled.tsx +++ b/src/IconHangoutVideoOffOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconHangoutVideoOffOutlinedFilled: React.FC = ({ ) -export { IconHangoutVideoOffOutlinedFilled as default } +export default IconHangoutVideoOffOutlinedFilled diff --git a/src/IconHangoutVideoOffRounded.tsx b/src/IconHangoutVideoOffRounded.tsx index 245ae64e2..3d264e0c4 100644 --- a/src/IconHangoutVideoOffRounded.tsx +++ b/src/IconHangoutVideoOffRounded.tsx @@ -8,4 +8,4 @@ const IconHangoutVideoOffRounded: React.FC = ({ ...props }) => ( ) -export { IconHangoutVideoOffRounded as default } +export default IconHangoutVideoOffRounded diff --git a/src/IconHangoutVideoOffRoundedFilled.tsx b/src/IconHangoutVideoOffRoundedFilled.tsx index dd07d451d..6130e316e 100644 --- a/src/IconHangoutVideoOffRoundedFilled.tsx +++ b/src/IconHangoutVideoOffRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconHangoutVideoOffRoundedFilled: React.FC = ({ ) -export { IconHangoutVideoOffRoundedFilled as default } +export default IconHangoutVideoOffRoundedFilled diff --git a/src/IconHangoutVideoOffSharp.tsx b/src/IconHangoutVideoOffSharp.tsx index 5e7ef331a..241236d0e 100644 --- a/src/IconHangoutVideoOffSharp.tsx +++ b/src/IconHangoutVideoOffSharp.tsx @@ -8,4 +8,4 @@ const IconHangoutVideoOffSharp: React.FC = ({ ...props }) => ( ) -export { IconHangoutVideoOffSharp as default } +export default IconHangoutVideoOffSharp diff --git a/src/IconHangoutVideoOffSharpFilled.tsx b/src/IconHangoutVideoOffSharpFilled.tsx index cac640e1c..c4958bb41 100644 --- a/src/IconHangoutVideoOffSharpFilled.tsx +++ b/src/IconHangoutVideoOffSharpFilled.tsx @@ -8,4 +8,4 @@ const IconHangoutVideoOffSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconHangoutVideoOffSharpFilled as default } +export default IconHangoutVideoOffSharpFilled diff --git a/src/IconHangoutVideoOutlined.tsx b/src/IconHangoutVideoOutlined.tsx index 919e4bb4c..a65ca5f9f 100644 --- a/src/IconHangoutVideoOutlined.tsx +++ b/src/IconHangoutVideoOutlined.tsx @@ -8,4 +8,4 @@ const IconHangoutVideoOutlined: React.FC = ({ ...props }) => ( ) -export { IconHangoutVideoOutlined as default } +export default IconHangoutVideoOutlined diff --git a/src/IconHangoutVideoOutlinedFilled.tsx b/src/IconHangoutVideoOutlinedFilled.tsx index f0eb96be7..2680c2a28 100644 --- a/src/IconHangoutVideoOutlinedFilled.tsx +++ b/src/IconHangoutVideoOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconHangoutVideoOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconHangoutVideoOutlinedFilled as default } +export default IconHangoutVideoOutlinedFilled diff --git a/src/IconHangoutVideoRounded.tsx b/src/IconHangoutVideoRounded.tsx index d2eda9d2d..69fbba493 100644 --- a/src/IconHangoutVideoRounded.tsx +++ b/src/IconHangoutVideoRounded.tsx @@ -8,4 +8,4 @@ const IconHangoutVideoRounded: React.FC = ({ ...props }) => ( ) -export { IconHangoutVideoRounded as default } +export default IconHangoutVideoRounded diff --git a/src/IconHangoutVideoRoundedFilled.tsx b/src/IconHangoutVideoRoundedFilled.tsx index 5119d565f..b7ebadd4d 100644 --- a/src/IconHangoutVideoRoundedFilled.tsx +++ b/src/IconHangoutVideoRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconHangoutVideoRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconHangoutVideoRoundedFilled as default } +export default IconHangoutVideoRoundedFilled diff --git a/src/IconHangoutVideoSharp.tsx b/src/IconHangoutVideoSharp.tsx index c871a07c3..550ee818f 100644 --- a/src/IconHangoutVideoSharp.tsx +++ b/src/IconHangoutVideoSharp.tsx @@ -8,4 +8,4 @@ const IconHangoutVideoSharp: React.FC = ({ ...props }) => ( ) -export { IconHangoutVideoSharp as default } +export default IconHangoutVideoSharp diff --git a/src/IconHangoutVideoSharpFilled.tsx b/src/IconHangoutVideoSharpFilled.tsx index f3d3fd05f..ef5325fb8 100644 --- a/src/IconHangoutVideoSharpFilled.tsx +++ b/src/IconHangoutVideoSharpFilled.tsx @@ -8,4 +8,4 @@ const IconHangoutVideoSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconHangoutVideoSharpFilled as default } +export default IconHangoutVideoSharpFilled diff --git a/src/IconHardDrive2Outlined.tsx b/src/IconHardDrive2Outlined.tsx index c964bf6a7..18509a655 100644 --- a/src/IconHardDrive2Outlined.tsx +++ b/src/IconHardDrive2Outlined.tsx @@ -8,4 +8,4 @@ const IconHardDrive2Outlined: React.FC = ({ ...props }) => ( ) -export { IconHardDrive2Outlined as default } +export default IconHardDrive2Outlined diff --git a/src/IconHardDrive2OutlinedFilled.tsx b/src/IconHardDrive2OutlinedFilled.tsx index 60f6dede8..2948508fb 100644 --- a/src/IconHardDrive2OutlinedFilled.tsx +++ b/src/IconHardDrive2OutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconHardDrive2OutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconHardDrive2OutlinedFilled as default } +export default IconHardDrive2OutlinedFilled diff --git a/src/IconHardDrive2Rounded.tsx b/src/IconHardDrive2Rounded.tsx index 440df2c03..081350aef 100644 --- a/src/IconHardDrive2Rounded.tsx +++ b/src/IconHardDrive2Rounded.tsx @@ -8,4 +8,4 @@ const IconHardDrive2Rounded: React.FC = ({ ...props }) => ( ) -export { IconHardDrive2Rounded as default } +export default IconHardDrive2Rounded diff --git a/src/IconHardDrive2RoundedFilled.tsx b/src/IconHardDrive2RoundedFilled.tsx index d70210e34..5a9ec1ada 100644 --- a/src/IconHardDrive2RoundedFilled.tsx +++ b/src/IconHardDrive2RoundedFilled.tsx @@ -8,4 +8,4 @@ const IconHardDrive2RoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconHardDrive2RoundedFilled as default } +export default IconHardDrive2RoundedFilled diff --git a/src/IconHardDrive2Sharp.tsx b/src/IconHardDrive2Sharp.tsx index b9d6aa510..59da7ef83 100644 --- a/src/IconHardDrive2Sharp.tsx +++ b/src/IconHardDrive2Sharp.tsx @@ -8,4 +8,4 @@ const IconHardDrive2Sharp: React.FC = ({ ...props }) => ( ) -export { IconHardDrive2Sharp as default } +export default IconHardDrive2Sharp diff --git a/src/IconHardDrive2SharpFilled.tsx b/src/IconHardDrive2SharpFilled.tsx index 71358b2af..5786a3395 100644 --- a/src/IconHardDrive2SharpFilled.tsx +++ b/src/IconHardDrive2SharpFilled.tsx @@ -8,4 +8,4 @@ const IconHardDrive2SharpFilled: React.FC = ({ ...props }) => ( ) -export { IconHardDrive2SharpFilled as default } +export default IconHardDrive2SharpFilled diff --git a/src/IconHardDriveOutlined.tsx b/src/IconHardDriveOutlined.tsx index bebfc4fe5..e2c23dc31 100644 --- a/src/IconHardDriveOutlined.tsx +++ b/src/IconHardDriveOutlined.tsx @@ -8,4 +8,4 @@ const IconHardDriveOutlined: React.FC = ({ ...props }) => ( ) -export { IconHardDriveOutlined as default } +export default IconHardDriveOutlined diff --git a/src/IconHardDriveOutlinedFilled.tsx b/src/IconHardDriveOutlinedFilled.tsx index 307217270..9ce9b09f7 100644 --- a/src/IconHardDriveOutlinedFilled.tsx +++ b/src/IconHardDriveOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconHardDriveOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconHardDriveOutlinedFilled as default } +export default IconHardDriveOutlinedFilled diff --git a/src/IconHardDriveRounded.tsx b/src/IconHardDriveRounded.tsx index 149c14893..5a51fd367 100644 --- a/src/IconHardDriveRounded.tsx +++ b/src/IconHardDriveRounded.tsx @@ -8,4 +8,4 @@ const IconHardDriveRounded: React.FC = ({ ...props }) => ( ) -export { IconHardDriveRounded as default } +export default IconHardDriveRounded diff --git a/src/IconHardDriveRoundedFilled.tsx b/src/IconHardDriveRoundedFilled.tsx index 6f55cda9e..cdd01230f 100644 --- a/src/IconHardDriveRoundedFilled.tsx +++ b/src/IconHardDriveRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconHardDriveRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconHardDriveRoundedFilled as default } +export default IconHardDriveRoundedFilled diff --git a/src/IconHardDriveSharp.tsx b/src/IconHardDriveSharp.tsx index 8e52f0249..d7661673d 100644 --- a/src/IconHardDriveSharp.tsx +++ b/src/IconHardDriveSharp.tsx @@ -8,4 +8,4 @@ const IconHardDriveSharp: React.FC = ({ ...props }) => ( ) -export { IconHardDriveSharp as default } +export default IconHardDriveSharp diff --git a/src/IconHardDriveSharpFilled.tsx b/src/IconHardDriveSharpFilled.tsx index 998dd8695..903c94b78 100644 --- a/src/IconHardDriveSharpFilled.tsx +++ b/src/IconHardDriveSharpFilled.tsx @@ -8,4 +8,4 @@ const IconHardDriveSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconHardDriveSharpFilled as default } +export default IconHardDriveSharpFilled diff --git a/src/IconHardwareOutlined.tsx b/src/IconHardwareOutlined.tsx index d21d6b124..1292ecb38 100644 --- a/src/IconHardwareOutlined.tsx +++ b/src/IconHardwareOutlined.tsx @@ -8,4 +8,4 @@ const IconHardwareOutlined: React.FC = ({ ...props }) => ( ) -export { IconHardwareOutlined as default } +export default IconHardwareOutlined diff --git a/src/IconHardwareOutlinedFilled.tsx b/src/IconHardwareOutlinedFilled.tsx index 4e443a8cc..b558aaefa 100644 --- a/src/IconHardwareOutlinedFilled.tsx +++ b/src/IconHardwareOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconHardwareOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconHardwareOutlinedFilled as default } +export default IconHardwareOutlinedFilled diff --git a/src/IconHardwareRounded.tsx b/src/IconHardwareRounded.tsx index 5e2c866e4..e49332ebb 100644 --- a/src/IconHardwareRounded.tsx +++ b/src/IconHardwareRounded.tsx @@ -8,4 +8,4 @@ const IconHardwareRounded: React.FC = ({ ...props }) => ( ) -export { IconHardwareRounded as default } +export default IconHardwareRounded diff --git a/src/IconHardwareRoundedFilled.tsx b/src/IconHardwareRoundedFilled.tsx index 4daf1ec64..2de79e28e 100644 --- a/src/IconHardwareRoundedFilled.tsx +++ b/src/IconHardwareRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconHardwareRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconHardwareRoundedFilled as default } +export default IconHardwareRoundedFilled diff --git a/src/IconHardwareSharp.tsx b/src/IconHardwareSharp.tsx index 0cb8a9af9..7610752a9 100644 --- a/src/IconHardwareSharp.tsx +++ b/src/IconHardwareSharp.tsx @@ -8,4 +8,4 @@ const IconHardwareSharp: React.FC = ({ ...props }) => ( ) -export { IconHardwareSharp as default } +export default IconHardwareSharp diff --git a/src/IconHardwareSharpFilled.tsx b/src/IconHardwareSharpFilled.tsx index 77d7db216..2f79c1038 100644 --- a/src/IconHardwareSharpFilled.tsx +++ b/src/IconHardwareSharpFilled.tsx @@ -8,4 +8,4 @@ const IconHardwareSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconHardwareSharpFilled as default } +export default IconHardwareSharpFilled diff --git a/src/IconHdOutlined.tsx b/src/IconHdOutlined.tsx index ebaedcdf5..13021fb78 100644 --- a/src/IconHdOutlined.tsx +++ b/src/IconHdOutlined.tsx @@ -8,4 +8,4 @@ const IconHdOutlined: React.FC = ({ ...props }) => ( ) -export { IconHdOutlined as default } +export default IconHdOutlined diff --git a/src/IconHdOutlinedFilled.tsx b/src/IconHdOutlinedFilled.tsx index 75ff43498..1af6dcf86 100644 --- a/src/IconHdOutlinedFilled.tsx +++ b/src/IconHdOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconHdOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconHdOutlinedFilled as default } +export default IconHdOutlinedFilled diff --git a/src/IconHdRounded.tsx b/src/IconHdRounded.tsx index 5b8e72b52..0bd56eeaf 100644 --- a/src/IconHdRounded.tsx +++ b/src/IconHdRounded.tsx @@ -8,4 +8,4 @@ const IconHdRounded: React.FC = ({ ...props }) => ( ) -export { IconHdRounded as default } +export default IconHdRounded diff --git a/src/IconHdRoundedFilled.tsx b/src/IconHdRoundedFilled.tsx index 19dcd2034..af5f2017b 100644 --- a/src/IconHdRoundedFilled.tsx +++ b/src/IconHdRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconHdRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconHdRoundedFilled as default } +export default IconHdRoundedFilled diff --git a/src/IconHdSharp.tsx b/src/IconHdSharp.tsx index 7dc2eea84..4975121fe 100644 --- a/src/IconHdSharp.tsx +++ b/src/IconHdSharp.tsx @@ -8,4 +8,4 @@ const IconHdSharp: React.FC = ({ ...props }) => ( ) -export { IconHdSharp as default } +export default IconHdSharp diff --git a/src/IconHdSharpFilled.tsx b/src/IconHdSharpFilled.tsx index 271a08ae5..4e8ed0c3d 100644 --- a/src/IconHdSharpFilled.tsx +++ b/src/IconHdSharpFilled.tsx @@ -8,4 +8,4 @@ const IconHdSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconHdSharpFilled as default } +export default IconHdSharpFilled diff --git a/src/IconHdrAutoOutlined.tsx b/src/IconHdrAutoOutlined.tsx index 80ce6cea7..2bad57cb8 100644 --- a/src/IconHdrAutoOutlined.tsx +++ b/src/IconHdrAutoOutlined.tsx @@ -8,4 +8,4 @@ const IconHdrAutoOutlined: React.FC = ({ ...props }) => ( ) -export { IconHdrAutoOutlined as default } +export default IconHdrAutoOutlined diff --git a/src/IconHdrAutoOutlinedFilled.tsx b/src/IconHdrAutoOutlinedFilled.tsx index 1c84aaa0e..af902aca4 100644 --- a/src/IconHdrAutoOutlinedFilled.tsx +++ b/src/IconHdrAutoOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconHdrAutoOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconHdrAutoOutlinedFilled as default } +export default IconHdrAutoOutlinedFilled diff --git a/src/IconHdrAutoRounded.tsx b/src/IconHdrAutoRounded.tsx index 1630baeeb..0c27f461f 100644 --- a/src/IconHdrAutoRounded.tsx +++ b/src/IconHdrAutoRounded.tsx @@ -8,4 +8,4 @@ const IconHdrAutoRounded: React.FC = ({ ...props }) => ( ) -export { IconHdrAutoRounded as default } +export default IconHdrAutoRounded diff --git a/src/IconHdrAutoRoundedFilled.tsx b/src/IconHdrAutoRoundedFilled.tsx index 6b8f255fa..0fe23b18b 100644 --- a/src/IconHdrAutoRoundedFilled.tsx +++ b/src/IconHdrAutoRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconHdrAutoRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconHdrAutoRoundedFilled as default } +export default IconHdrAutoRoundedFilled diff --git a/src/IconHdrAutoSelectOutlined.tsx b/src/IconHdrAutoSelectOutlined.tsx index 55ecdad5e..e06e11bd0 100644 --- a/src/IconHdrAutoSelectOutlined.tsx +++ b/src/IconHdrAutoSelectOutlined.tsx @@ -8,4 +8,4 @@ const IconHdrAutoSelectOutlined: React.FC = ({ ...props }) => ( ) -export { IconHdrAutoSelectOutlined as default } +export default IconHdrAutoSelectOutlined diff --git a/src/IconHdrAutoSelectOutlinedFilled.tsx b/src/IconHdrAutoSelectOutlinedFilled.tsx index 652484696..ad5a9ded3 100644 --- a/src/IconHdrAutoSelectOutlinedFilled.tsx +++ b/src/IconHdrAutoSelectOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconHdrAutoSelectOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconHdrAutoSelectOutlinedFilled as default } +export default IconHdrAutoSelectOutlinedFilled diff --git a/src/IconHdrAutoSelectRounded.tsx b/src/IconHdrAutoSelectRounded.tsx index 4265fea27..9f944fa10 100644 --- a/src/IconHdrAutoSelectRounded.tsx +++ b/src/IconHdrAutoSelectRounded.tsx @@ -8,4 +8,4 @@ const IconHdrAutoSelectRounded: React.FC = ({ ...props }) => ( ) -export { IconHdrAutoSelectRounded as default } +export default IconHdrAutoSelectRounded diff --git a/src/IconHdrAutoSelectRoundedFilled.tsx b/src/IconHdrAutoSelectRoundedFilled.tsx index b4e73be64..ba8ae0956 100644 --- a/src/IconHdrAutoSelectRoundedFilled.tsx +++ b/src/IconHdrAutoSelectRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconHdrAutoSelectRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconHdrAutoSelectRoundedFilled as default } +export default IconHdrAutoSelectRoundedFilled diff --git a/src/IconHdrAutoSelectSharp.tsx b/src/IconHdrAutoSelectSharp.tsx index 9207b335a..41af8aee6 100644 --- a/src/IconHdrAutoSelectSharp.tsx +++ b/src/IconHdrAutoSelectSharp.tsx @@ -8,4 +8,4 @@ const IconHdrAutoSelectSharp: React.FC = ({ ...props }) => ( ) -export { IconHdrAutoSelectSharp as default } +export default IconHdrAutoSelectSharp diff --git a/src/IconHdrAutoSelectSharpFilled.tsx b/src/IconHdrAutoSelectSharpFilled.tsx index 5f121db53..bd16a7aa5 100644 --- a/src/IconHdrAutoSelectSharpFilled.tsx +++ b/src/IconHdrAutoSelectSharpFilled.tsx @@ -8,4 +8,4 @@ const IconHdrAutoSelectSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconHdrAutoSelectSharpFilled as default } +export default IconHdrAutoSelectSharpFilled diff --git a/src/IconHdrAutoSharp.tsx b/src/IconHdrAutoSharp.tsx index 15ee83642..a4f4abd88 100644 --- a/src/IconHdrAutoSharp.tsx +++ b/src/IconHdrAutoSharp.tsx @@ -8,4 +8,4 @@ const IconHdrAutoSharp: React.FC = ({ ...props }) => ( ) -export { IconHdrAutoSharp as default } +export default IconHdrAutoSharp diff --git a/src/IconHdrAutoSharpFilled.tsx b/src/IconHdrAutoSharpFilled.tsx index 592bcbf82..16f06b912 100644 --- a/src/IconHdrAutoSharpFilled.tsx +++ b/src/IconHdrAutoSharpFilled.tsx @@ -8,4 +8,4 @@ const IconHdrAutoSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconHdrAutoSharpFilled as default } +export default IconHdrAutoSharpFilled diff --git a/src/IconHdrEnhancedSelectOutlined.tsx b/src/IconHdrEnhancedSelectOutlined.tsx index 33abc88c8..b5abeab86 100644 --- a/src/IconHdrEnhancedSelectOutlined.tsx +++ b/src/IconHdrEnhancedSelectOutlined.tsx @@ -8,4 +8,4 @@ const IconHdrEnhancedSelectOutlined: React.FC = ({ ...props }) => ( ) -export { IconHdrEnhancedSelectOutlined as default } +export default IconHdrEnhancedSelectOutlined diff --git a/src/IconHdrEnhancedSelectOutlinedFilled.tsx b/src/IconHdrEnhancedSelectOutlinedFilled.tsx index 349e6b890..5afce7363 100644 --- a/src/IconHdrEnhancedSelectOutlinedFilled.tsx +++ b/src/IconHdrEnhancedSelectOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconHdrEnhancedSelectOutlinedFilled: React.FC = ({ ) -export { IconHdrEnhancedSelectOutlinedFilled as default } +export default IconHdrEnhancedSelectOutlinedFilled diff --git a/src/IconHdrEnhancedSelectRounded.tsx b/src/IconHdrEnhancedSelectRounded.tsx index 1a8cfdd5c..c840d72fb 100644 --- a/src/IconHdrEnhancedSelectRounded.tsx +++ b/src/IconHdrEnhancedSelectRounded.tsx @@ -8,4 +8,4 @@ const IconHdrEnhancedSelectRounded: React.FC = ({ ...props }) => ( ) -export { IconHdrEnhancedSelectRounded as default } +export default IconHdrEnhancedSelectRounded diff --git a/src/IconHdrEnhancedSelectRoundedFilled.tsx b/src/IconHdrEnhancedSelectRoundedFilled.tsx index e13769ab4..2a9d91a72 100644 --- a/src/IconHdrEnhancedSelectRoundedFilled.tsx +++ b/src/IconHdrEnhancedSelectRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconHdrEnhancedSelectRoundedFilled: React.FC = ({ ) -export { IconHdrEnhancedSelectRoundedFilled as default } +export default IconHdrEnhancedSelectRoundedFilled diff --git a/src/IconHdrEnhancedSelectSharp.tsx b/src/IconHdrEnhancedSelectSharp.tsx index 272fbae3c..f45f33663 100644 --- a/src/IconHdrEnhancedSelectSharp.tsx +++ b/src/IconHdrEnhancedSelectSharp.tsx @@ -8,4 +8,4 @@ const IconHdrEnhancedSelectSharp: React.FC = ({ ...props }) => ( ) -export { IconHdrEnhancedSelectSharp as default } +export default IconHdrEnhancedSelectSharp diff --git a/src/IconHdrEnhancedSelectSharpFilled.tsx b/src/IconHdrEnhancedSelectSharpFilled.tsx index 5c5052b72..96e4996ec 100644 --- a/src/IconHdrEnhancedSelectSharpFilled.tsx +++ b/src/IconHdrEnhancedSelectSharpFilled.tsx @@ -10,4 +10,4 @@ const IconHdrEnhancedSelectSharpFilled: React.FC = ({ ) -export { IconHdrEnhancedSelectSharpFilled as default } +export default IconHdrEnhancedSelectSharpFilled diff --git a/src/IconHdrOffOutlined.tsx b/src/IconHdrOffOutlined.tsx index c042d4457..c0f99ec80 100644 --- a/src/IconHdrOffOutlined.tsx +++ b/src/IconHdrOffOutlined.tsx @@ -8,4 +8,4 @@ const IconHdrOffOutlined: React.FC = ({ ...props }) => ( ) -export { IconHdrOffOutlined as default } +export default IconHdrOffOutlined diff --git a/src/IconHdrOffOutlinedFilled.tsx b/src/IconHdrOffOutlinedFilled.tsx index 00b7686e5..5ab5947ca 100644 --- a/src/IconHdrOffOutlinedFilled.tsx +++ b/src/IconHdrOffOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconHdrOffOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconHdrOffOutlinedFilled as default } +export default IconHdrOffOutlinedFilled diff --git a/src/IconHdrOffRounded.tsx b/src/IconHdrOffRounded.tsx index 55822c5ec..42546a5a2 100644 --- a/src/IconHdrOffRounded.tsx +++ b/src/IconHdrOffRounded.tsx @@ -8,4 +8,4 @@ const IconHdrOffRounded: React.FC = ({ ...props }) => ( ) -export { IconHdrOffRounded as default } +export default IconHdrOffRounded diff --git a/src/IconHdrOffRoundedFilled.tsx b/src/IconHdrOffRoundedFilled.tsx index addeb60ae..9dd8dc556 100644 --- a/src/IconHdrOffRoundedFilled.tsx +++ b/src/IconHdrOffRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconHdrOffRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconHdrOffRoundedFilled as default } +export default IconHdrOffRoundedFilled diff --git a/src/IconHdrOffSelectOutlined.tsx b/src/IconHdrOffSelectOutlined.tsx index fefbed997..272672857 100644 --- a/src/IconHdrOffSelectOutlined.tsx +++ b/src/IconHdrOffSelectOutlined.tsx @@ -8,4 +8,4 @@ const IconHdrOffSelectOutlined: React.FC = ({ ...props }) => ( ) -export { IconHdrOffSelectOutlined as default } +export default IconHdrOffSelectOutlined diff --git a/src/IconHdrOffSelectOutlinedFilled.tsx b/src/IconHdrOffSelectOutlinedFilled.tsx index b83d02f13..120f7a71b 100644 --- a/src/IconHdrOffSelectOutlinedFilled.tsx +++ b/src/IconHdrOffSelectOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconHdrOffSelectOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconHdrOffSelectOutlinedFilled as default } +export default IconHdrOffSelectOutlinedFilled diff --git a/src/IconHdrOffSelectRounded.tsx b/src/IconHdrOffSelectRounded.tsx index 9bc45c24d..65708744e 100644 --- a/src/IconHdrOffSelectRounded.tsx +++ b/src/IconHdrOffSelectRounded.tsx @@ -8,4 +8,4 @@ const IconHdrOffSelectRounded: React.FC = ({ ...props }) => ( ) -export { IconHdrOffSelectRounded as default } +export default IconHdrOffSelectRounded diff --git a/src/IconHdrOffSelectRoundedFilled.tsx b/src/IconHdrOffSelectRoundedFilled.tsx index 830c376ba..4ebd99e07 100644 --- a/src/IconHdrOffSelectRoundedFilled.tsx +++ b/src/IconHdrOffSelectRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconHdrOffSelectRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconHdrOffSelectRoundedFilled as default } +export default IconHdrOffSelectRoundedFilled diff --git a/src/IconHdrOffSelectSharp.tsx b/src/IconHdrOffSelectSharp.tsx index 2556c984e..34f17f1d6 100644 --- a/src/IconHdrOffSelectSharp.tsx +++ b/src/IconHdrOffSelectSharp.tsx @@ -8,4 +8,4 @@ const IconHdrOffSelectSharp: React.FC = ({ ...props }) => ( ) -export { IconHdrOffSelectSharp as default } +export default IconHdrOffSelectSharp diff --git a/src/IconHdrOffSelectSharpFilled.tsx b/src/IconHdrOffSelectSharpFilled.tsx index e9c625a58..1863355e1 100644 --- a/src/IconHdrOffSelectSharpFilled.tsx +++ b/src/IconHdrOffSelectSharpFilled.tsx @@ -8,4 +8,4 @@ const IconHdrOffSelectSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconHdrOffSelectSharpFilled as default } +export default IconHdrOffSelectSharpFilled diff --git a/src/IconHdrOffSharp.tsx b/src/IconHdrOffSharp.tsx index 106897af9..ed210434c 100644 --- a/src/IconHdrOffSharp.tsx +++ b/src/IconHdrOffSharp.tsx @@ -8,4 +8,4 @@ const IconHdrOffSharp: React.FC = ({ ...props }) => ( ) -export { IconHdrOffSharp as default } +export default IconHdrOffSharp diff --git a/src/IconHdrOffSharpFilled.tsx b/src/IconHdrOffSharpFilled.tsx index a96e6aac3..9f46c573e 100644 --- a/src/IconHdrOffSharpFilled.tsx +++ b/src/IconHdrOffSharpFilled.tsx @@ -8,4 +8,4 @@ const IconHdrOffSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconHdrOffSharpFilled as default } +export default IconHdrOffSharpFilled diff --git a/src/IconHdrOnOutlined.tsx b/src/IconHdrOnOutlined.tsx index cb0455601..38354ba21 100644 --- a/src/IconHdrOnOutlined.tsx +++ b/src/IconHdrOnOutlined.tsx @@ -8,4 +8,4 @@ const IconHdrOnOutlined: React.FC = ({ ...props }) => ( ) -export { IconHdrOnOutlined as default } +export default IconHdrOnOutlined diff --git a/src/IconHdrOnOutlinedFilled.tsx b/src/IconHdrOnOutlinedFilled.tsx index 04959a1e6..d4d409ccf 100644 --- a/src/IconHdrOnOutlinedFilled.tsx +++ b/src/IconHdrOnOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconHdrOnOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconHdrOnOutlinedFilled as default } +export default IconHdrOnOutlinedFilled diff --git a/src/IconHdrOnRounded.tsx b/src/IconHdrOnRounded.tsx index 77317468f..dbb8ca1ba 100644 --- a/src/IconHdrOnRounded.tsx +++ b/src/IconHdrOnRounded.tsx @@ -8,4 +8,4 @@ const IconHdrOnRounded: React.FC = ({ ...props }) => ( ) -export { IconHdrOnRounded as default } +export default IconHdrOnRounded diff --git a/src/IconHdrOnRoundedFilled.tsx b/src/IconHdrOnRoundedFilled.tsx index d55ef125f..d76b8302c 100644 --- a/src/IconHdrOnRoundedFilled.tsx +++ b/src/IconHdrOnRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconHdrOnRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconHdrOnRoundedFilled as default } +export default IconHdrOnRoundedFilled diff --git a/src/IconHdrOnSelectOutlined.tsx b/src/IconHdrOnSelectOutlined.tsx index 1f8f13f2e..adf9e53da 100644 --- a/src/IconHdrOnSelectOutlined.tsx +++ b/src/IconHdrOnSelectOutlined.tsx @@ -8,4 +8,4 @@ const IconHdrOnSelectOutlined: React.FC = ({ ...props }) => ( ) -export { IconHdrOnSelectOutlined as default } +export default IconHdrOnSelectOutlined diff --git a/src/IconHdrOnSelectOutlinedFilled.tsx b/src/IconHdrOnSelectOutlinedFilled.tsx index b5d0b64ea..b2dc7f0f8 100644 --- a/src/IconHdrOnSelectOutlinedFilled.tsx +++ b/src/IconHdrOnSelectOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconHdrOnSelectOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconHdrOnSelectOutlinedFilled as default } +export default IconHdrOnSelectOutlinedFilled diff --git a/src/IconHdrOnSelectRounded.tsx b/src/IconHdrOnSelectRounded.tsx index 72f37ae64..0ae5597df 100644 --- a/src/IconHdrOnSelectRounded.tsx +++ b/src/IconHdrOnSelectRounded.tsx @@ -8,4 +8,4 @@ const IconHdrOnSelectRounded: React.FC = ({ ...props }) => ( ) -export { IconHdrOnSelectRounded as default } +export default IconHdrOnSelectRounded diff --git a/src/IconHdrOnSelectRoundedFilled.tsx b/src/IconHdrOnSelectRoundedFilled.tsx index d09fc08fa..350b211f7 100644 --- a/src/IconHdrOnSelectRoundedFilled.tsx +++ b/src/IconHdrOnSelectRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconHdrOnSelectRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconHdrOnSelectRoundedFilled as default } +export default IconHdrOnSelectRoundedFilled diff --git a/src/IconHdrOnSelectSharp.tsx b/src/IconHdrOnSelectSharp.tsx index 53c45468f..a5a60d736 100644 --- a/src/IconHdrOnSelectSharp.tsx +++ b/src/IconHdrOnSelectSharp.tsx @@ -8,4 +8,4 @@ const IconHdrOnSelectSharp: React.FC = ({ ...props }) => ( ) -export { IconHdrOnSelectSharp as default } +export default IconHdrOnSelectSharp diff --git a/src/IconHdrOnSelectSharpFilled.tsx b/src/IconHdrOnSelectSharpFilled.tsx index 4c23fd145..52ca1a147 100644 --- a/src/IconHdrOnSelectSharpFilled.tsx +++ b/src/IconHdrOnSelectSharpFilled.tsx @@ -8,4 +8,4 @@ const IconHdrOnSelectSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconHdrOnSelectSharpFilled as default } +export default IconHdrOnSelectSharpFilled diff --git a/src/IconHdrOnSharp.tsx b/src/IconHdrOnSharp.tsx index 5a6ea62a5..b72769615 100644 --- a/src/IconHdrOnSharp.tsx +++ b/src/IconHdrOnSharp.tsx @@ -8,4 +8,4 @@ const IconHdrOnSharp: React.FC = ({ ...props }) => ( ) -export { IconHdrOnSharp as default } +export default IconHdrOnSharp diff --git a/src/IconHdrOnSharpFilled.tsx b/src/IconHdrOnSharpFilled.tsx index f9c8afacd..2ff8e312e 100644 --- a/src/IconHdrOnSharpFilled.tsx +++ b/src/IconHdrOnSharpFilled.tsx @@ -8,4 +8,4 @@ const IconHdrOnSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconHdrOnSharpFilled as default } +export default IconHdrOnSharpFilled diff --git a/src/IconHdrPlusOffOutlined.tsx b/src/IconHdrPlusOffOutlined.tsx index 17bca6d7c..f9b32c331 100644 --- a/src/IconHdrPlusOffOutlined.tsx +++ b/src/IconHdrPlusOffOutlined.tsx @@ -8,4 +8,4 @@ const IconHdrPlusOffOutlined: React.FC = ({ ...props }) => ( ) -export { IconHdrPlusOffOutlined as default } +export default IconHdrPlusOffOutlined diff --git a/src/IconHdrPlusOffOutlinedFilled.tsx b/src/IconHdrPlusOffOutlinedFilled.tsx index 67fe72b1f..0155c262a 100644 --- a/src/IconHdrPlusOffOutlinedFilled.tsx +++ b/src/IconHdrPlusOffOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconHdrPlusOffOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconHdrPlusOffOutlinedFilled as default } +export default IconHdrPlusOffOutlinedFilled diff --git a/src/IconHdrPlusOffRounded.tsx b/src/IconHdrPlusOffRounded.tsx index 4300cf493..5d55899ea 100644 --- a/src/IconHdrPlusOffRounded.tsx +++ b/src/IconHdrPlusOffRounded.tsx @@ -8,4 +8,4 @@ const IconHdrPlusOffRounded: React.FC = ({ ...props }) => ( ) -export { IconHdrPlusOffRounded as default } +export default IconHdrPlusOffRounded diff --git a/src/IconHdrPlusOffRoundedFilled.tsx b/src/IconHdrPlusOffRoundedFilled.tsx index 4c12651c3..770216daa 100644 --- a/src/IconHdrPlusOffRoundedFilled.tsx +++ b/src/IconHdrPlusOffRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconHdrPlusOffRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconHdrPlusOffRoundedFilled as default } +export default IconHdrPlusOffRoundedFilled diff --git a/src/IconHdrPlusOffSharp.tsx b/src/IconHdrPlusOffSharp.tsx index f564d6c36..a4ef47a7e 100644 --- a/src/IconHdrPlusOffSharp.tsx +++ b/src/IconHdrPlusOffSharp.tsx @@ -8,4 +8,4 @@ const IconHdrPlusOffSharp: React.FC = ({ ...props }) => ( ) -export { IconHdrPlusOffSharp as default } +export default IconHdrPlusOffSharp diff --git a/src/IconHdrPlusOffSharpFilled.tsx b/src/IconHdrPlusOffSharpFilled.tsx index 52e7f9642..486a1e77a 100644 --- a/src/IconHdrPlusOffSharpFilled.tsx +++ b/src/IconHdrPlusOffSharpFilled.tsx @@ -8,4 +8,4 @@ const IconHdrPlusOffSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconHdrPlusOffSharpFilled as default } +export default IconHdrPlusOffSharpFilled diff --git a/src/IconHdrPlusOutlined.tsx b/src/IconHdrPlusOutlined.tsx index 26ea7ba71..8c66ae65d 100644 --- a/src/IconHdrPlusOutlined.tsx +++ b/src/IconHdrPlusOutlined.tsx @@ -8,4 +8,4 @@ const IconHdrPlusOutlined: React.FC = ({ ...props }) => ( ) -export { IconHdrPlusOutlined as default } +export default IconHdrPlusOutlined diff --git a/src/IconHdrPlusOutlinedFilled.tsx b/src/IconHdrPlusOutlinedFilled.tsx index 4e70578ed..06f9a640e 100644 --- a/src/IconHdrPlusOutlinedFilled.tsx +++ b/src/IconHdrPlusOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconHdrPlusOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconHdrPlusOutlinedFilled as default } +export default IconHdrPlusOutlinedFilled diff --git a/src/IconHdrPlusRounded.tsx b/src/IconHdrPlusRounded.tsx index 89ffe0a85..3cf015a6f 100644 --- a/src/IconHdrPlusRounded.tsx +++ b/src/IconHdrPlusRounded.tsx @@ -8,4 +8,4 @@ const IconHdrPlusRounded: React.FC = ({ ...props }) => ( ) -export { IconHdrPlusRounded as default } +export default IconHdrPlusRounded diff --git a/src/IconHdrPlusRoundedFilled.tsx b/src/IconHdrPlusRoundedFilled.tsx index e39377241..cd9ed8472 100644 --- a/src/IconHdrPlusRoundedFilled.tsx +++ b/src/IconHdrPlusRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconHdrPlusRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconHdrPlusRoundedFilled as default } +export default IconHdrPlusRoundedFilled diff --git a/src/IconHdrPlusSharp.tsx b/src/IconHdrPlusSharp.tsx index 0f4cf7005..8cd77518d 100644 --- a/src/IconHdrPlusSharp.tsx +++ b/src/IconHdrPlusSharp.tsx @@ -8,4 +8,4 @@ const IconHdrPlusSharp: React.FC = ({ ...props }) => ( ) -export { IconHdrPlusSharp as default } +export default IconHdrPlusSharp diff --git a/src/IconHdrPlusSharpFilled.tsx b/src/IconHdrPlusSharpFilled.tsx index 43d3357fc..fdbdafc28 100644 --- a/src/IconHdrPlusSharpFilled.tsx +++ b/src/IconHdrPlusSharpFilled.tsx @@ -8,4 +8,4 @@ const IconHdrPlusSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconHdrPlusSharpFilled as default } +export default IconHdrPlusSharpFilled diff --git a/src/IconHdrStrongOutlined.tsx b/src/IconHdrStrongOutlined.tsx index 8f8e14a98..73fb2c053 100644 --- a/src/IconHdrStrongOutlined.tsx +++ b/src/IconHdrStrongOutlined.tsx @@ -8,4 +8,4 @@ const IconHdrStrongOutlined: React.FC = ({ ...props }) => ( ) -export { IconHdrStrongOutlined as default } +export default IconHdrStrongOutlined diff --git a/src/IconHdrStrongOutlinedFilled.tsx b/src/IconHdrStrongOutlinedFilled.tsx index c0e37b334..a5bf89fd4 100644 --- a/src/IconHdrStrongOutlinedFilled.tsx +++ b/src/IconHdrStrongOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconHdrStrongOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconHdrStrongOutlinedFilled as default } +export default IconHdrStrongOutlinedFilled diff --git a/src/IconHdrStrongRounded.tsx b/src/IconHdrStrongRounded.tsx index 8ff465ba8..e480cfb58 100644 --- a/src/IconHdrStrongRounded.tsx +++ b/src/IconHdrStrongRounded.tsx @@ -8,4 +8,4 @@ const IconHdrStrongRounded: React.FC = ({ ...props }) => ( ) -export { IconHdrStrongRounded as default } +export default IconHdrStrongRounded diff --git a/src/IconHdrStrongRoundedFilled.tsx b/src/IconHdrStrongRoundedFilled.tsx index ff60a5772..fa954d317 100644 --- a/src/IconHdrStrongRoundedFilled.tsx +++ b/src/IconHdrStrongRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconHdrStrongRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconHdrStrongRoundedFilled as default } +export default IconHdrStrongRoundedFilled diff --git a/src/IconHdrStrongSharp.tsx b/src/IconHdrStrongSharp.tsx index ae0c86c9d..3f5d8cf6f 100644 --- a/src/IconHdrStrongSharp.tsx +++ b/src/IconHdrStrongSharp.tsx @@ -8,4 +8,4 @@ const IconHdrStrongSharp: React.FC = ({ ...props }) => ( ) -export { IconHdrStrongSharp as default } +export default IconHdrStrongSharp diff --git a/src/IconHdrStrongSharpFilled.tsx b/src/IconHdrStrongSharpFilled.tsx index eb1eecff8..07a10db5c 100644 --- a/src/IconHdrStrongSharpFilled.tsx +++ b/src/IconHdrStrongSharpFilled.tsx @@ -8,4 +8,4 @@ const IconHdrStrongSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconHdrStrongSharpFilled as default } +export default IconHdrStrongSharpFilled diff --git a/src/IconHdrWeakOutlined.tsx b/src/IconHdrWeakOutlined.tsx index 7fdafe518..046b03208 100644 --- a/src/IconHdrWeakOutlined.tsx +++ b/src/IconHdrWeakOutlined.tsx @@ -8,4 +8,4 @@ const IconHdrWeakOutlined: React.FC = ({ ...props }) => ( ) -export { IconHdrWeakOutlined as default } +export default IconHdrWeakOutlined diff --git a/src/IconHdrWeakOutlinedFilled.tsx b/src/IconHdrWeakOutlinedFilled.tsx index bb0c8ad0b..9c97dc05f 100644 --- a/src/IconHdrWeakOutlinedFilled.tsx +++ b/src/IconHdrWeakOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconHdrWeakOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconHdrWeakOutlinedFilled as default } +export default IconHdrWeakOutlinedFilled diff --git a/src/IconHdrWeakRounded.tsx b/src/IconHdrWeakRounded.tsx index e8beb1725..3e7106dee 100644 --- a/src/IconHdrWeakRounded.tsx +++ b/src/IconHdrWeakRounded.tsx @@ -8,4 +8,4 @@ const IconHdrWeakRounded: React.FC = ({ ...props }) => ( ) -export { IconHdrWeakRounded as default } +export default IconHdrWeakRounded diff --git a/src/IconHdrWeakRoundedFilled.tsx b/src/IconHdrWeakRoundedFilled.tsx index 2f33b0baa..56cf90620 100644 --- a/src/IconHdrWeakRoundedFilled.tsx +++ b/src/IconHdrWeakRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconHdrWeakRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconHdrWeakRoundedFilled as default } +export default IconHdrWeakRoundedFilled diff --git a/src/IconHdrWeakSharp.tsx b/src/IconHdrWeakSharp.tsx index 52c890b17..706932ec8 100644 --- a/src/IconHdrWeakSharp.tsx +++ b/src/IconHdrWeakSharp.tsx @@ -8,4 +8,4 @@ const IconHdrWeakSharp: React.FC = ({ ...props }) => ( ) -export { IconHdrWeakSharp as default } +export default IconHdrWeakSharp diff --git a/src/IconHdrWeakSharpFilled.tsx b/src/IconHdrWeakSharpFilled.tsx index 19336bcab..67eb163e8 100644 --- a/src/IconHdrWeakSharpFilled.tsx +++ b/src/IconHdrWeakSharpFilled.tsx @@ -8,4 +8,4 @@ const IconHdrWeakSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconHdrWeakSharpFilled as default } +export default IconHdrWeakSharpFilled diff --git a/src/IconHeadMountedDeviceOutlined.tsx b/src/IconHeadMountedDeviceOutlined.tsx index b871aa336..6ded821c9 100644 --- a/src/IconHeadMountedDeviceOutlined.tsx +++ b/src/IconHeadMountedDeviceOutlined.tsx @@ -8,4 +8,4 @@ const IconHeadMountedDeviceOutlined: React.FC = ({ ...props }) => ( ) -export { IconHeadMountedDeviceOutlined as default } +export default IconHeadMountedDeviceOutlined diff --git a/src/IconHeadMountedDeviceOutlinedFilled.tsx b/src/IconHeadMountedDeviceOutlinedFilled.tsx index a945f7717..758491f62 100644 --- a/src/IconHeadMountedDeviceOutlinedFilled.tsx +++ b/src/IconHeadMountedDeviceOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconHeadMountedDeviceOutlinedFilled: React.FC = ({ ) -export { IconHeadMountedDeviceOutlinedFilled as default } +export default IconHeadMountedDeviceOutlinedFilled diff --git a/src/IconHeadMountedDeviceRounded.tsx b/src/IconHeadMountedDeviceRounded.tsx index 1ba35b548..2387f3d89 100644 --- a/src/IconHeadMountedDeviceRounded.tsx +++ b/src/IconHeadMountedDeviceRounded.tsx @@ -8,4 +8,4 @@ const IconHeadMountedDeviceRounded: React.FC = ({ ...props }) => ( ) -export { IconHeadMountedDeviceRounded as default } +export default IconHeadMountedDeviceRounded diff --git a/src/IconHeadMountedDeviceRoundedFilled.tsx b/src/IconHeadMountedDeviceRoundedFilled.tsx index e847da8ba..fe965b1a0 100644 --- a/src/IconHeadMountedDeviceRoundedFilled.tsx +++ b/src/IconHeadMountedDeviceRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconHeadMountedDeviceRoundedFilled: React.FC = ({ ) -export { IconHeadMountedDeviceRoundedFilled as default } +export default IconHeadMountedDeviceRoundedFilled diff --git a/src/IconHeadMountedDeviceSharp.tsx b/src/IconHeadMountedDeviceSharp.tsx index cdbf6668e..ad3ba0214 100644 --- a/src/IconHeadMountedDeviceSharp.tsx +++ b/src/IconHeadMountedDeviceSharp.tsx @@ -8,4 +8,4 @@ const IconHeadMountedDeviceSharp: React.FC = ({ ...props }) => ( ) -export { IconHeadMountedDeviceSharp as default } +export default IconHeadMountedDeviceSharp diff --git a/src/IconHeadMountedDeviceSharpFilled.tsx b/src/IconHeadMountedDeviceSharpFilled.tsx index f686476ea..dd55dcfa1 100644 --- a/src/IconHeadMountedDeviceSharpFilled.tsx +++ b/src/IconHeadMountedDeviceSharpFilled.tsx @@ -10,4 +10,4 @@ const IconHeadMountedDeviceSharpFilled: React.FC = ({ ) -export { IconHeadMountedDeviceSharpFilled as default } +export default IconHeadMountedDeviceSharpFilled diff --git a/src/IconHeadphonesBatteryOutlined.tsx b/src/IconHeadphonesBatteryOutlined.tsx index 8a2bd8337..d1f5db835 100644 --- a/src/IconHeadphonesBatteryOutlined.tsx +++ b/src/IconHeadphonesBatteryOutlined.tsx @@ -8,4 +8,4 @@ const IconHeadphonesBatteryOutlined: React.FC = ({ ...props }) => ( ) -export { IconHeadphonesBatteryOutlined as default } +export default IconHeadphonesBatteryOutlined diff --git a/src/IconHeadphonesBatteryOutlinedFilled.tsx b/src/IconHeadphonesBatteryOutlinedFilled.tsx index 479ba1b62..4fd2e7414 100644 --- a/src/IconHeadphonesBatteryOutlinedFilled.tsx +++ b/src/IconHeadphonesBatteryOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconHeadphonesBatteryOutlinedFilled: React.FC = ({ ) -export { IconHeadphonesBatteryOutlinedFilled as default } +export default IconHeadphonesBatteryOutlinedFilled diff --git a/src/IconHeadphonesBatteryRounded.tsx b/src/IconHeadphonesBatteryRounded.tsx index f458679cd..c6d1d36d8 100644 --- a/src/IconHeadphonesBatteryRounded.tsx +++ b/src/IconHeadphonesBatteryRounded.tsx @@ -8,4 +8,4 @@ const IconHeadphonesBatteryRounded: React.FC = ({ ...props }) => ( ) -export { IconHeadphonesBatteryRounded as default } +export default IconHeadphonesBatteryRounded diff --git a/src/IconHeadphonesBatteryRoundedFilled.tsx b/src/IconHeadphonesBatteryRoundedFilled.tsx index 29401cc4d..61ae8bfa2 100644 --- a/src/IconHeadphonesBatteryRoundedFilled.tsx +++ b/src/IconHeadphonesBatteryRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconHeadphonesBatteryRoundedFilled: React.FC = ({ ) -export { IconHeadphonesBatteryRoundedFilled as default } +export default IconHeadphonesBatteryRoundedFilled diff --git a/src/IconHeadphonesBatterySharp.tsx b/src/IconHeadphonesBatterySharp.tsx index 67ea39393..56f3a54e7 100644 --- a/src/IconHeadphonesBatterySharp.tsx +++ b/src/IconHeadphonesBatterySharp.tsx @@ -8,4 +8,4 @@ const IconHeadphonesBatterySharp: React.FC = ({ ...props }) => ( ) -export { IconHeadphonesBatterySharp as default } +export default IconHeadphonesBatterySharp diff --git a/src/IconHeadphonesBatterySharpFilled.tsx b/src/IconHeadphonesBatterySharpFilled.tsx index 1d0b31015..c35ceb491 100644 --- a/src/IconHeadphonesBatterySharpFilled.tsx +++ b/src/IconHeadphonesBatterySharpFilled.tsx @@ -10,4 +10,4 @@ const IconHeadphonesBatterySharpFilled: React.FC = ({ ) -export { IconHeadphonesBatterySharpFilled as default } +export default IconHeadphonesBatterySharpFilled diff --git a/src/IconHeadphonesOutlined.tsx b/src/IconHeadphonesOutlined.tsx index 922fedea0..e8fc95c02 100644 --- a/src/IconHeadphonesOutlined.tsx +++ b/src/IconHeadphonesOutlined.tsx @@ -8,4 +8,4 @@ const IconHeadphonesOutlined: React.FC = ({ ...props }) => ( ) -export { IconHeadphonesOutlined as default } +export default IconHeadphonesOutlined diff --git a/src/IconHeadphonesOutlinedFilled.tsx b/src/IconHeadphonesOutlinedFilled.tsx index 7ebd9ac08..8c00a6f23 100644 --- a/src/IconHeadphonesOutlinedFilled.tsx +++ b/src/IconHeadphonesOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconHeadphonesOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconHeadphonesOutlinedFilled as default } +export default IconHeadphonesOutlinedFilled diff --git a/src/IconHeadphonesRounded.tsx b/src/IconHeadphonesRounded.tsx index 1692de7f8..d809919c3 100644 --- a/src/IconHeadphonesRounded.tsx +++ b/src/IconHeadphonesRounded.tsx @@ -8,4 +8,4 @@ const IconHeadphonesRounded: React.FC = ({ ...props }) => ( ) -export { IconHeadphonesRounded as default } +export default IconHeadphonesRounded diff --git a/src/IconHeadphonesRoundedFilled.tsx b/src/IconHeadphonesRoundedFilled.tsx index e82dac5ac..e5da187d7 100644 --- a/src/IconHeadphonesRoundedFilled.tsx +++ b/src/IconHeadphonesRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconHeadphonesRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconHeadphonesRoundedFilled as default } +export default IconHeadphonesRoundedFilled diff --git a/src/IconHeadphonesSharp.tsx b/src/IconHeadphonesSharp.tsx index 65d6719e1..b1c454b2e 100644 --- a/src/IconHeadphonesSharp.tsx +++ b/src/IconHeadphonesSharp.tsx @@ -8,4 +8,4 @@ const IconHeadphonesSharp: React.FC = ({ ...props }) => ( ) -export { IconHeadphonesSharp as default } +export default IconHeadphonesSharp diff --git a/src/IconHeadphonesSharpFilled.tsx b/src/IconHeadphonesSharpFilled.tsx index 9b9d506b6..8ba872337 100644 --- a/src/IconHeadphonesSharpFilled.tsx +++ b/src/IconHeadphonesSharpFilled.tsx @@ -8,4 +8,4 @@ const IconHeadphonesSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconHeadphonesSharpFilled as default } +export default IconHeadphonesSharpFilled diff --git a/src/IconHeadsetMicOutlined.tsx b/src/IconHeadsetMicOutlined.tsx index d560094b4..e1d5be8b4 100644 --- a/src/IconHeadsetMicOutlined.tsx +++ b/src/IconHeadsetMicOutlined.tsx @@ -8,4 +8,4 @@ const IconHeadsetMicOutlined: React.FC = ({ ...props }) => ( ) -export { IconHeadsetMicOutlined as default } +export default IconHeadsetMicOutlined diff --git a/src/IconHeadsetMicOutlinedFilled.tsx b/src/IconHeadsetMicOutlinedFilled.tsx index a06b4789f..cfeaaf88a 100644 --- a/src/IconHeadsetMicOutlinedFilled.tsx +++ b/src/IconHeadsetMicOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconHeadsetMicOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconHeadsetMicOutlinedFilled as default } +export default IconHeadsetMicOutlinedFilled diff --git a/src/IconHeadsetMicRounded.tsx b/src/IconHeadsetMicRounded.tsx index 4a271a8d6..6c755d62e 100644 --- a/src/IconHeadsetMicRounded.tsx +++ b/src/IconHeadsetMicRounded.tsx @@ -8,4 +8,4 @@ const IconHeadsetMicRounded: React.FC = ({ ...props }) => ( ) -export { IconHeadsetMicRounded as default } +export default IconHeadsetMicRounded diff --git a/src/IconHeadsetMicRoundedFilled.tsx b/src/IconHeadsetMicRoundedFilled.tsx index 419b1c683..723fd687c 100644 --- a/src/IconHeadsetMicRoundedFilled.tsx +++ b/src/IconHeadsetMicRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconHeadsetMicRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconHeadsetMicRoundedFilled as default } +export default IconHeadsetMicRoundedFilled diff --git a/src/IconHeadsetMicSharp.tsx b/src/IconHeadsetMicSharp.tsx index d6ec2ddcf..cbabbd51a 100644 --- a/src/IconHeadsetMicSharp.tsx +++ b/src/IconHeadsetMicSharp.tsx @@ -8,4 +8,4 @@ const IconHeadsetMicSharp: React.FC = ({ ...props }) => ( ) -export { IconHeadsetMicSharp as default } +export default IconHeadsetMicSharp diff --git a/src/IconHeadsetMicSharpFilled.tsx b/src/IconHeadsetMicSharpFilled.tsx index 1a17ebadb..845662577 100644 --- a/src/IconHeadsetMicSharpFilled.tsx +++ b/src/IconHeadsetMicSharpFilled.tsx @@ -8,4 +8,4 @@ const IconHeadsetMicSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconHeadsetMicSharpFilled as default } +export default IconHeadsetMicSharpFilled diff --git a/src/IconHeadsetOffOutlined.tsx b/src/IconHeadsetOffOutlined.tsx index 5bbe7a6ec..17fd8bd34 100644 --- a/src/IconHeadsetOffOutlined.tsx +++ b/src/IconHeadsetOffOutlined.tsx @@ -8,4 +8,4 @@ const IconHeadsetOffOutlined: React.FC = ({ ...props }) => ( ) -export { IconHeadsetOffOutlined as default } +export default IconHeadsetOffOutlined diff --git a/src/IconHeadsetOffOutlinedFilled.tsx b/src/IconHeadsetOffOutlinedFilled.tsx index 89a1f2acd..33f4bb827 100644 --- a/src/IconHeadsetOffOutlinedFilled.tsx +++ b/src/IconHeadsetOffOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconHeadsetOffOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconHeadsetOffOutlinedFilled as default } +export default IconHeadsetOffOutlinedFilled diff --git a/src/IconHeadsetOffRounded.tsx b/src/IconHeadsetOffRounded.tsx index 049112938..8d4f865e2 100644 --- a/src/IconHeadsetOffRounded.tsx +++ b/src/IconHeadsetOffRounded.tsx @@ -8,4 +8,4 @@ const IconHeadsetOffRounded: React.FC = ({ ...props }) => ( ) -export { IconHeadsetOffRounded as default } +export default IconHeadsetOffRounded diff --git a/src/IconHeadsetOffRoundedFilled.tsx b/src/IconHeadsetOffRoundedFilled.tsx index e67b28573..6d5b420c5 100644 --- a/src/IconHeadsetOffRoundedFilled.tsx +++ b/src/IconHeadsetOffRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconHeadsetOffRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconHeadsetOffRoundedFilled as default } +export default IconHeadsetOffRoundedFilled diff --git a/src/IconHeadsetOffSharp.tsx b/src/IconHeadsetOffSharp.tsx index a5167c3c6..14fc257a1 100644 --- a/src/IconHeadsetOffSharp.tsx +++ b/src/IconHeadsetOffSharp.tsx @@ -8,4 +8,4 @@ const IconHeadsetOffSharp: React.FC = ({ ...props }) => ( ) -export { IconHeadsetOffSharp as default } +export default IconHeadsetOffSharp diff --git a/src/IconHeadsetOffSharpFilled.tsx b/src/IconHeadsetOffSharpFilled.tsx index 29d2cd117..07bfea996 100644 --- a/src/IconHeadsetOffSharpFilled.tsx +++ b/src/IconHeadsetOffSharpFilled.tsx @@ -8,4 +8,4 @@ const IconHeadsetOffSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconHeadsetOffSharpFilled as default } +export default IconHeadsetOffSharpFilled diff --git a/src/IconHealingOutlined.tsx b/src/IconHealingOutlined.tsx index 501a32be3..6843f8716 100644 --- a/src/IconHealingOutlined.tsx +++ b/src/IconHealingOutlined.tsx @@ -8,4 +8,4 @@ const IconHealingOutlined: React.FC = ({ ...props }) => ( ) -export { IconHealingOutlined as default } +export default IconHealingOutlined diff --git a/src/IconHealingOutlinedFilled.tsx b/src/IconHealingOutlinedFilled.tsx index 10ccd5817..5626d0ead 100644 --- a/src/IconHealingOutlinedFilled.tsx +++ b/src/IconHealingOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconHealingOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconHealingOutlinedFilled as default } +export default IconHealingOutlinedFilled diff --git a/src/IconHealingRounded.tsx b/src/IconHealingRounded.tsx index f8761eb2d..b4a6755bc 100644 --- a/src/IconHealingRounded.tsx +++ b/src/IconHealingRounded.tsx @@ -8,4 +8,4 @@ const IconHealingRounded: React.FC = ({ ...props }) => ( ) -export { IconHealingRounded as default } +export default IconHealingRounded diff --git a/src/IconHealingRoundedFilled.tsx b/src/IconHealingRoundedFilled.tsx index 9af571726..a4852c7b7 100644 --- a/src/IconHealingRoundedFilled.tsx +++ b/src/IconHealingRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconHealingRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconHealingRoundedFilled as default } +export default IconHealingRoundedFilled diff --git a/src/IconHealingSharp.tsx b/src/IconHealingSharp.tsx index d5262e948..f822f680d 100644 --- a/src/IconHealingSharp.tsx +++ b/src/IconHealingSharp.tsx @@ -8,4 +8,4 @@ const IconHealingSharp: React.FC = ({ ...props }) => ( ) -export { IconHealingSharp as default } +export default IconHealingSharp diff --git a/src/IconHealingSharpFilled.tsx b/src/IconHealingSharpFilled.tsx index 1614215c9..050564413 100644 --- a/src/IconHealingSharpFilled.tsx +++ b/src/IconHealingSharpFilled.tsx @@ -8,4 +8,4 @@ const IconHealingSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconHealingSharpFilled as default } +export default IconHealingSharpFilled diff --git a/src/IconHealthAndBeautyOutlined.tsx b/src/IconHealthAndBeautyOutlined.tsx index c5076660e..0a1fa6e03 100644 --- a/src/IconHealthAndBeautyOutlined.tsx +++ b/src/IconHealthAndBeautyOutlined.tsx @@ -8,4 +8,4 @@ const IconHealthAndBeautyOutlined: React.FC = ({ ...props }) => ( ) -export { IconHealthAndBeautyOutlined as default } +export default IconHealthAndBeautyOutlined diff --git a/src/IconHealthAndBeautyOutlinedFilled.tsx b/src/IconHealthAndBeautyOutlinedFilled.tsx index dcf3b5509..3df78c116 100644 --- a/src/IconHealthAndBeautyOutlinedFilled.tsx +++ b/src/IconHealthAndBeautyOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconHealthAndBeautyOutlinedFilled: React.FC = ({ ) -export { IconHealthAndBeautyOutlinedFilled as default } +export default IconHealthAndBeautyOutlinedFilled diff --git a/src/IconHealthAndBeautyRounded.tsx b/src/IconHealthAndBeautyRounded.tsx index 867c2d33d..afd1edb59 100644 --- a/src/IconHealthAndBeautyRounded.tsx +++ b/src/IconHealthAndBeautyRounded.tsx @@ -8,4 +8,4 @@ const IconHealthAndBeautyRounded: React.FC = ({ ...props }) => ( ) -export { IconHealthAndBeautyRounded as default } +export default IconHealthAndBeautyRounded diff --git a/src/IconHealthAndBeautyRoundedFilled.tsx b/src/IconHealthAndBeautyRoundedFilled.tsx index 569572591..32a17920c 100644 --- a/src/IconHealthAndBeautyRoundedFilled.tsx +++ b/src/IconHealthAndBeautyRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconHealthAndBeautyRoundedFilled: React.FC = ({ ) -export { IconHealthAndBeautyRoundedFilled as default } +export default IconHealthAndBeautyRoundedFilled diff --git a/src/IconHealthAndBeautySharp.tsx b/src/IconHealthAndBeautySharp.tsx index 1b7f066a1..fe2f886c1 100644 --- a/src/IconHealthAndBeautySharp.tsx +++ b/src/IconHealthAndBeautySharp.tsx @@ -8,4 +8,4 @@ const IconHealthAndBeautySharp: React.FC = ({ ...props }) => ( ) -export { IconHealthAndBeautySharp as default } +export default IconHealthAndBeautySharp diff --git a/src/IconHealthAndBeautySharpFilled.tsx b/src/IconHealthAndBeautySharpFilled.tsx index 6a1b23c97..307224bca 100644 --- a/src/IconHealthAndBeautySharpFilled.tsx +++ b/src/IconHealthAndBeautySharpFilled.tsx @@ -8,4 +8,4 @@ const IconHealthAndBeautySharpFilled: React.FC = ({ ...props }) => ( ) -export { IconHealthAndBeautySharpFilled as default } +export default IconHealthAndBeautySharpFilled diff --git a/src/IconHealthAndSafetyOutlined.tsx b/src/IconHealthAndSafetyOutlined.tsx index 5dacc28a1..9d4a9246d 100644 --- a/src/IconHealthAndSafetyOutlined.tsx +++ b/src/IconHealthAndSafetyOutlined.tsx @@ -8,4 +8,4 @@ const IconHealthAndSafetyOutlined: React.FC = ({ ...props }) => ( ) -export { IconHealthAndSafetyOutlined as default } +export default IconHealthAndSafetyOutlined diff --git a/src/IconHealthAndSafetyOutlinedFilled.tsx b/src/IconHealthAndSafetyOutlinedFilled.tsx index 1169c8473..2c82c1da6 100644 --- a/src/IconHealthAndSafetyOutlinedFilled.tsx +++ b/src/IconHealthAndSafetyOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconHealthAndSafetyOutlinedFilled: React.FC = ({ ) -export { IconHealthAndSafetyOutlinedFilled as default } +export default IconHealthAndSafetyOutlinedFilled diff --git a/src/IconHealthAndSafetyRounded.tsx b/src/IconHealthAndSafetyRounded.tsx index 67ca46ce3..82e7e4dbc 100644 --- a/src/IconHealthAndSafetyRounded.tsx +++ b/src/IconHealthAndSafetyRounded.tsx @@ -8,4 +8,4 @@ const IconHealthAndSafetyRounded: React.FC = ({ ...props }) => ( ) -export { IconHealthAndSafetyRounded as default } +export default IconHealthAndSafetyRounded diff --git a/src/IconHealthAndSafetyRoundedFilled.tsx b/src/IconHealthAndSafetyRoundedFilled.tsx index f83089fa5..48e683859 100644 --- a/src/IconHealthAndSafetyRoundedFilled.tsx +++ b/src/IconHealthAndSafetyRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconHealthAndSafetyRoundedFilled: React.FC = ({ ) -export { IconHealthAndSafetyRoundedFilled as default } +export default IconHealthAndSafetyRoundedFilled diff --git a/src/IconHealthAndSafetySharp.tsx b/src/IconHealthAndSafetySharp.tsx index 02e77998f..4a980b608 100644 --- a/src/IconHealthAndSafetySharp.tsx +++ b/src/IconHealthAndSafetySharp.tsx @@ -8,4 +8,4 @@ const IconHealthAndSafetySharp: React.FC = ({ ...props }) => ( ) -export { IconHealthAndSafetySharp as default } +export default IconHealthAndSafetySharp diff --git a/src/IconHealthAndSafetySharpFilled.tsx b/src/IconHealthAndSafetySharpFilled.tsx index 7b747686d..1ba53190b 100644 --- a/src/IconHealthAndSafetySharpFilled.tsx +++ b/src/IconHealthAndSafetySharpFilled.tsx @@ -8,4 +8,4 @@ const IconHealthAndSafetySharpFilled: React.FC = ({ ...props }) => ( ) -export { IconHealthAndSafetySharpFilled as default } +export default IconHealthAndSafetySharpFilled diff --git a/src/IconHealthMetricsOutlined.tsx b/src/IconHealthMetricsOutlined.tsx index 530f868fe..ea3cd9e9e 100644 --- a/src/IconHealthMetricsOutlined.tsx +++ b/src/IconHealthMetricsOutlined.tsx @@ -8,4 +8,4 @@ const IconHealthMetricsOutlined: React.FC = ({ ...props }) => ( ) -export { IconHealthMetricsOutlined as default } +export default IconHealthMetricsOutlined diff --git a/src/IconHealthMetricsOutlinedFilled.tsx b/src/IconHealthMetricsOutlinedFilled.tsx index 57ab1e86c..ce6279e07 100644 --- a/src/IconHealthMetricsOutlinedFilled.tsx +++ b/src/IconHealthMetricsOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconHealthMetricsOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconHealthMetricsOutlinedFilled as default } +export default IconHealthMetricsOutlinedFilled diff --git a/src/IconHealthMetricsRounded.tsx b/src/IconHealthMetricsRounded.tsx index a9106c603..d9d762494 100644 --- a/src/IconHealthMetricsRounded.tsx +++ b/src/IconHealthMetricsRounded.tsx @@ -8,4 +8,4 @@ const IconHealthMetricsRounded: React.FC = ({ ...props }) => ( ) -export { IconHealthMetricsRounded as default } +export default IconHealthMetricsRounded diff --git a/src/IconHealthMetricsRoundedFilled.tsx b/src/IconHealthMetricsRoundedFilled.tsx index 54975d0cc..936576a96 100644 --- a/src/IconHealthMetricsRoundedFilled.tsx +++ b/src/IconHealthMetricsRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconHealthMetricsRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconHealthMetricsRoundedFilled as default } +export default IconHealthMetricsRoundedFilled diff --git a/src/IconHealthMetricsSharp.tsx b/src/IconHealthMetricsSharp.tsx index 65180876b..88ede1a1c 100644 --- a/src/IconHealthMetricsSharp.tsx +++ b/src/IconHealthMetricsSharp.tsx @@ -8,4 +8,4 @@ const IconHealthMetricsSharp: React.FC = ({ ...props }) => ( ) -export { IconHealthMetricsSharp as default } +export default IconHealthMetricsSharp diff --git a/src/IconHealthMetricsSharpFilled.tsx b/src/IconHealthMetricsSharpFilled.tsx index d9ed3ca29..17398e120 100644 --- a/src/IconHealthMetricsSharpFilled.tsx +++ b/src/IconHealthMetricsSharpFilled.tsx @@ -8,4 +8,4 @@ const IconHealthMetricsSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconHealthMetricsSharpFilled as default } +export default IconHealthMetricsSharpFilled diff --git a/src/IconHeapSnapshotLargeOutlined.tsx b/src/IconHeapSnapshotLargeOutlined.tsx index de753f214..1cb39199e 100644 --- a/src/IconHeapSnapshotLargeOutlined.tsx +++ b/src/IconHeapSnapshotLargeOutlined.tsx @@ -8,4 +8,4 @@ const IconHeapSnapshotLargeOutlined: React.FC = ({ ...props }) => ( ) -export { IconHeapSnapshotLargeOutlined as default } +export default IconHeapSnapshotLargeOutlined diff --git a/src/IconHeapSnapshotLargeOutlinedFilled.tsx b/src/IconHeapSnapshotLargeOutlinedFilled.tsx index 709fc22ed..2bebf754c 100644 --- a/src/IconHeapSnapshotLargeOutlinedFilled.tsx +++ b/src/IconHeapSnapshotLargeOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconHeapSnapshotLargeOutlinedFilled: React.FC = ({ ) -export { IconHeapSnapshotLargeOutlinedFilled as default } +export default IconHeapSnapshotLargeOutlinedFilled diff --git a/src/IconHeapSnapshotLargeRounded.tsx b/src/IconHeapSnapshotLargeRounded.tsx index 610f77bcc..3e80fb155 100644 --- a/src/IconHeapSnapshotLargeRounded.tsx +++ b/src/IconHeapSnapshotLargeRounded.tsx @@ -8,4 +8,4 @@ const IconHeapSnapshotLargeRounded: React.FC = ({ ...props }) => ( ) -export { IconHeapSnapshotLargeRounded as default } +export default IconHeapSnapshotLargeRounded diff --git a/src/IconHeapSnapshotLargeRoundedFilled.tsx b/src/IconHeapSnapshotLargeRoundedFilled.tsx index 2aa2e0a59..ec93a3078 100644 --- a/src/IconHeapSnapshotLargeRoundedFilled.tsx +++ b/src/IconHeapSnapshotLargeRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconHeapSnapshotLargeRoundedFilled: React.FC = ({ ) -export { IconHeapSnapshotLargeRoundedFilled as default } +export default IconHeapSnapshotLargeRoundedFilled diff --git a/src/IconHeapSnapshotLargeSharp.tsx b/src/IconHeapSnapshotLargeSharp.tsx index a71c31123..e0ea24575 100644 --- a/src/IconHeapSnapshotLargeSharp.tsx +++ b/src/IconHeapSnapshotLargeSharp.tsx @@ -8,4 +8,4 @@ const IconHeapSnapshotLargeSharp: React.FC = ({ ...props }) => ( ) -export { IconHeapSnapshotLargeSharp as default } +export default IconHeapSnapshotLargeSharp diff --git a/src/IconHeapSnapshotLargeSharpFilled.tsx b/src/IconHeapSnapshotLargeSharpFilled.tsx index c5196b7a2..3f7c3a891 100644 --- a/src/IconHeapSnapshotLargeSharpFilled.tsx +++ b/src/IconHeapSnapshotLargeSharpFilled.tsx @@ -10,4 +10,4 @@ const IconHeapSnapshotLargeSharpFilled: React.FC = ({ ) -export { IconHeapSnapshotLargeSharpFilled as default } +export default IconHeapSnapshotLargeSharpFilled diff --git a/src/IconHeapSnapshotMultipleOutlined.tsx b/src/IconHeapSnapshotMultipleOutlined.tsx index 1f0f69541..e11be92e2 100644 --- a/src/IconHeapSnapshotMultipleOutlined.tsx +++ b/src/IconHeapSnapshotMultipleOutlined.tsx @@ -10,4 +10,4 @@ const IconHeapSnapshotMultipleOutlined: React.FC = ({ ) -export { IconHeapSnapshotMultipleOutlined as default } +export default IconHeapSnapshotMultipleOutlined diff --git a/src/IconHeapSnapshotMultipleOutlinedFilled.tsx b/src/IconHeapSnapshotMultipleOutlinedFilled.tsx index 9e47d3278..3c3c3549d 100644 --- a/src/IconHeapSnapshotMultipleOutlinedFilled.tsx +++ b/src/IconHeapSnapshotMultipleOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconHeapSnapshotMultipleOutlinedFilled: React.FC = ({ ) -export { IconHeapSnapshotMultipleOutlinedFilled as default } +export default IconHeapSnapshotMultipleOutlinedFilled diff --git a/src/IconHeapSnapshotMultipleRounded.tsx b/src/IconHeapSnapshotMultipleRounded.tsx index 482c85c40..fefb34607 100644 --- a/src/IconHeapSnapshotMultipleRounded.tsx +++ b/src/IconHeapSnapshotMultipleRounded.tsx @@ -8,4 +8,4 @@ const IconHeapSnapshotMultipleRounded: React.FC = ({ ...props }) => ( ) -export { IconHeapSnapshotMultipleRounded as default } +export default IconHeapSnapshotMultipleRounded diff --git a/src/IconHeapSnapshotMultipleRoundedFilled.tsx b/src/IconHeapSnapshotMultipleRoundedFilled.tsx index 11864bcc1..a668bb434 100644 --- a/src/IconHeapSnapshotMultipleRoundedFilled.tsx +++ b/src/IconHeapSnapshotMultipleRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconHeapSnapshotMultipleRoundedFilled: React.FC = ({ ) -export { IconHeapSnapshotMultipleRoundedFilled as default } +export default IconHeapSnapshotMultipleRoundedFilled diff --git a/src/IconHeapSnapshotMultipleSharp.tsx b/src/IconHeapSnapshotMultipleSharp.tsx index c4b32147a..f697d076a 100644 --- a/src/IconHeapSnapshotMultipleSharp.tsx +++ b/src/IconHeapSnapshotMultipleSharp.tsx @@ -8,4 +8,4 @@ const IconHeapSnapshotMultipleSharp: React.FC = ({ ...props }) => ( ) -export { IconHeapSnapshotMultipleSharp as default } +export default IconHeapSnapshotMultipleSharp diff --git a/src/IconHeapSnapshotMultipleSharpFilled.tsx b/src/IconHeapSnapshotMultipleSharpFilled.tsx index a228bd127..60099d7d0 100644 --- a/src/IconHeapSnapshotMultipleSharpFilled.tsx +++ b/src/IconHeapSnapshotMultipleSharpFilled.tsx @@ -10,4 +10,4 @@ const IconHeapSnapshotMultipleSharpFilled: React.FC = ({ ) -export { IconHeapSnapshotMultipleSharpFilled as default } +export default IconHeapSnapshotMultipleSharpFilled diff --git a/src/IconHeapSnapshotThumbnailOutlined.tsx b/src/IconHeapSnapshotThumbnailOutlined.tsx index f8f669d1f..0c4c2df26 100644 --- a/src/IconHeapSnapshotThumbnailOutlined.tsx +++ b/src/IconHeapSnapshotThumbnailOutlined.tsx @@ -10,4 +10,4 @@ const IconHeapSnapshotThumbnailOutlined: React.FC = ({ ) -export { IconHeapSnapshotThumbnailOutlined as default } +export default IconHeapSnapshotThumbnailOutlined diff --git a/src/IconHeapSnapshotThumbnailOutlinedFilled.tsx b/src/IconHeapSnapshotThumbnailOutlinedFilled.tsx index 6f5aa2809..914a8a05a 100644 --- a/src/IconHeapSnapshotThumbnailOutlinedFilled.tsx +++ b/src/IconHeapSnapshotThumbnailOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconHeapSnapshotThumbnailOutlinedFilled: React.FC = ({ ) -export { IconHeapSnapshotThumbnailOutlinedFilled as default } +export default IconHeapSnapshotThumbnailOutlinedFilled diff --git a/src/IconHeapSnapshotThumbnailRounded.tsx b/src/IconHeapSnapshotThumbnailRounded.tsx index e70044d7f..0f3be5132 100644 --- a/src/IconHeapSnapshotThumbnailRounded.tsx +++ b/src/IconHeapSnapshotThumbnailRounded.tsx @@ -10,4 +10,4 @@ const IconHeapSnapshotThumbnailRounded: React.FC = ({ ) -export { IconHeapSnapshotThumbnailRounded as default } +export default IconHeapSnapshotThumbnailRounded diff --git a/src/IconHeapSnapshotThumbnailRoundedFilled.tsx b/src/IconHeapSnapshotThumbnailRoundedFilled.tsx index 535f70f8b..0d438a8f2 100644 --- a/src/IconHeapSnapshotThumbnailRoundedFilled.tsx +++ b/src/IconHeapSnapshotThumbnailRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconHeapSnapshotThumbnailRoundedFilled: React.FC = ({ ) -export { IconHeapSnapshotThumbnailRoundedFilled as default } +export default IconHeapSnapshotThumbnailRoundedFilled diff --git a/src/IconHeapSnapshotThumbnailSharp.tsx b/src/IconHeapSnapshotThumbnailSharp.tsx index be460f0df..55c5dcab7 100644 --- a/src/IconHeapSnapshotThumbnailSharp.tsx +++ b/src/IconHeapSnapshotThumbnailSharp.tsx @@ -8,4 +8,4 @@ const IconHeapSnapshotThumbnailSharp: React.FC = ({ ...props }) => ( ) -export { IconHeapSnapshotThumbnailSharp as default } +export default IconHeapSnapshotThumbnailSharp diff --git a/src/IconHeapSnapshotThumbnailSharpFilled.tsx b/src/IconHeapSnapshotThumbnailSharpFilled.tsx index bb817bb45..0a7a0f25b 100644 --- a/src/IconHeapSnapshotThumbnailSharpFilled.tsx +++ b/src/IconHeapSnapshotThumbnailSharpFilled.tsx @@ -10,4 +10,4 @@ const IconHeapSnapshotThumbnailSharpFilled: React.FC = ({ ) -export { IconHeapSnapshotThumbnailSharpFilled as default } +export default IconHeapSnapshotThumbnailSharpFilled diff --git a/src/IconHearingAidOutlined.tsx b/src/IconHearingAidOutlined.tsx index b8ec799c0..e7b16b021 100644 --- a/src/IconHearingAidOutlined.tsx +++ b/src/IconHearingAidOutlined.tsx @@ -8,4 +8,4 @@ const IconHearingAidOutlined: React.FC = ({ ...props }) => ( ) -export { IconHearingAidOutlined as default } +export default IconHearingAidOutlined diff --git a/src/IconHearingAidOutlinedFilled.tsx b/src/IconHearingAidOutlinedFilled.tsx index 9ba267d7a..579a92943 100644 --- a/src/IconHearingAidOutlinedFilled.tsx +++ b/src/IconHearingAidOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconHearingAidOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconHearingAidOutlinedFilled as default } +export default IconHearingAidOutlinedFilled diff --git a/src/IconHearingAidRounded.tsx b/src/IconHearingAidRounded.tsx index 3170306d5..0ee18f91e 100644 --- a/src/IconHearingAidRounded.tsx +++ b/src/IconHearingAidRounded.tsx @@ -8,4 +8,4 @@ const IconHearingAidRounded: React.FC = ({ ...props }) => ( ) -export { IconHearingAidRounded as default } +export default IconHearingAidRounded diff --git a/src/IconHearingAidRoundedFilled.tsx b/src/IconHearingAidRoundedFilled.tsx index f4e9a6bcf..ef0675c7e 100644 --- a/src/IconHearingAidRoundedFilled.tsx +++ b/src/IconHearingAidRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconHearingAidRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconHearingAidRoundedFilled as default } +export default IconHearingAidRoundedFilled diff --git a/src/IconHearingAidSharp.tsx b/src/IconHearingAidSharp.tsx index e6f3d8439..6bcc38680 100644 --- a/src/IconHearingAidSharp.tsx +++ b/src/IconHearingAidSharp.tsx @@ -8,4 +8,4 @@ const IconHearingAidSharp: React.FC = ({ ...props }) => ( ) -export { IconHearingAidSharp as default } +export default IconHearingAidSharp diff --git a/src/IconHearingAidSharpFilled.tsx b/src/IconHearingAidSharpFilled.tsx index 59cf14ecc..d26819189 100644 --- a/src/IconHearingAidSharpFilled.tsx +++ b/src/IconHearingAidSharpFilled.tsx @@ -8,4 +8,4 @@ const IconHearingAidSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconHearingAidSharpFilled as default } +export default IconHearingAidSharpFilled diff --git a/src/IconHearingDisabledOutlined.tsx b/src/IconHearingDisabledOutlined.tsx index 1d9844234..7f4ad65d0 100644 --- a/src/IconHearingDisabledOutlined.tsx +++ b/src/IconHearingDisabledOutlined.tsx @@ -8,4 +8,4 @@ const IconHearingDisabledOutlined: React.FC = ({ ...props }) => ( ) -export { IconHearingDisabledOutlined as default } +export default IconHearingDisabledOutlined diff --git a/src/IconHearingDisabledOutlinedFilled.tsx b/src/IconHearingDisabledOutlinedFilled.tsx index 4dea44dc9..fe239ad2a 100644 --- a/src/IconHearingDisabledOutlinedFilled.tsx +++ b/src/IconHearingDisabledOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconHearingDisabledOutlinedFilled: React.FC = ({ ) -export { IconHearingDisabledOutlinedFilled as default } +export default IconHearingDisabledOutlinedFilled diff --git a/src/IconHearingDisabledRounded.tsx b/src/IconHearingDisabledRounded.tsx index 8cf92ff97..fa41be774 100644 --- a/src/IconHearingDisabledRounded.tsx +++ b/src/IconHearingDisabledRounded.tsx @@ -8,4 +8,4 @@ const IconHearingDisabledRounded: React.FC = ({ ...props }) => ( ) -export { IconHearingDisabledRounded as default } +export default IconHearingDisabledRounded diff --git a/src/IconHearingDisabledRoundedFilled.tsx b/src/IconHearingDisabledRoundedFilled.tsx index 7cfc5260f..da06d92f6 100644 --- a/src/IconHearingDisabledRoundedFilled.tsx +++ b/src/IconHearingDisabledRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconHearingDisabledRoundedFilled: React.FC = ({ ) -export { IconHearingDisabledRoundedFilled as default } +export default IconHearingDisabledRoundedFilled diff --git a/src/IconHearingDisabledSharp.tsx b/src/IconHearingDisabledSharp.tsx index aa3681b78..e933c8e14 100644 --- a/src/IconHearingDisabledSharp.tsx +++ b/src/IconHearingDisabledSharp.tsx @@ -8,4 +8,4 @@ const IconHearingDisabledSharp: React.FC = ({ ...props }) => ( ) -export { IconHearingDisabledSharp as default } +export default IconHearingDisabledSharp diff --git a/src/IconHearingDisabledSharpFilled.tsx b/src/IconHearingDisabledSharpFilled.tsx index c6de8f8c6..3d48536a5 100644 --- a/src/IconHearingDisabledSharpFilled.tsx +++ b/src/IconHearingDisabledSharpFilled.tsx @@ -8,4 +8,4 @@ const IconHearingDisabledSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconHearingDisabledSharpFilled as default } +export default IconHearingDisabledSharpFilled diff --git a/src/IconHearingOutlined.tsx b/src/IconHearingOutlined.tsx index e8773234c..650460e87 100644 --- a/src/IconHearingOutlined.tsx +++ b/src/IconHearingOutlined.tsx @@ -8,4 +8,4 @@ const IconHearingOutlined: React.FC = ({ ...props }) => ( ) -export { IconHearingOutlined as default } +export default IconHearingOutlined diff --git a/src/IconHearingOutlinedFilled.tsx b/src/IconHearingOutlinedFilled.tsx index 73640c84a..318575c6d 100644 --- a/src/IconHearingOutlinedFilled.tsx +++ b/src/IconHearingOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconHearingOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconHearingOutlinedFilled as default } +export default IconHearingOutlinedFilled diff --git a/src/IconHearingRounded.tsx b/src/IconHearingRounded.tsx index c85274225..6d84405b4 100644 --- a/src/IconHearingRounded.tsx +++ b/src/IconHearingRounded.tsx @@ -8,4 +8,4 @@ const IconHearingRounded: React.FC = ({ ...props }) => ( ) -export { IconHearingRounded as default } +export default IconHearingRounded diff --git a/src/IconHearingRoundedFilled.tsx b/src/IconHearingRoundedFilled.tsx index aec715f84..19e7b4d74 100644 --- a/src/IconHearingRoundedFilled.tsx +++ b/src/IconHearingRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconHearingRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconHearingRoundedFilled as default } +export default IconHearingRoundedFilled diff --git a/src/IconHearingSharp.tsx b/src/IconHearingSharp.tsx index 7cba29f97..6c70252ef 100644 --- a/src/IconHearingSharp.tsx +++ b/src/IconHearingSharp.tsx @@ -8,4 +8,4 @@ const IconHearingSharp: React.FC = ({ ...props }) => ( ) -export { IconHearingSharp as default } +export default IconHearingSharp diff --git a/src/IconHearingSharpFilled.tsx b/src/IconHearingSharpFilled.tsx index 24b0f45ec..430520ac1 100644 --- a/src/IconHearingSharpFilled.tsx +++ b/src/IconHearingSharpFilled.tsx @@ -8,4 +8,4 @@ const IconHearingSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconHearingSharpFilled as default } +export default IconHearingSharpFilled diff --git a/src/IconHeartBrokenOutlined.tsx b/src/IconHeartBrokenOutlined.tsx index 45342d182..abfb7e6ba 100644 --- a/src/IconHeartBrokenOutlined.tsx +++ b/src/IconHeartBrokenOutlined.tsx @@ -8,4 +8,4 @@ const IconHeartBrokenOutlined: React.FC = ({ ...props }) => ( ) -export { IconHeartBrokenOutlined as default } +export default IconHeartBrokenOutlined diff --git a/src/IconHeartBrokenOutlinedFilled.tsx b/src/IconHeartBrokenOutlinedFilled.tsx index c8b8287e7..e67e5ffde 100644 --- a/src/IconHeartBrokenOutlinedFilled.tsx +++ b/src/IconHeartBrokenOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconHeartBrokenOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconHeartBrokenOutlinedFilled as default } +export default IconHeartBrokenOutlinedFilled diff --git a/src/IconHeartBrokenRounded.tsx b/src/IconHeartBrokenRounded.tsx index 357362190..00944d9b2 100644 --- a/src/IconHeartBrokenRounded.tsx +++ b/src/IconHeartBrokenRounded.tsx @@ -8,4 +8,4 @@ const IconHeartBrokenRounded: React.FC = ({ ...props }) => ( ) -export { IconHeartBrokenRounded as default } +export default IconHeartBrokenRounded diff --git a/src/IconHeartBrokenRoundedFilled.tsx b/src/IconHeartBrokenRoundedFilled.tsx index 17d43c5ea..a55664ba8 100644 --- a/src/IconHeartBrokenRoundedFilled.tsx +++ b/src/IconHeartBrokenRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconHeartBrokenRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconHeartBrokenRoundedFilled as default } +export default IconHeartBrokenRoundedFilled diff --git a/src/IconHeartBrokenSharp.tsx b/src/IconHeartBrokenSharp.tsx index da644150c..d924759c0 100644 --- a/src/IconHeartBrokenSharp.tsx +++ b/src/IconHeartBrokenSharp.tsx @@ -8,4 +8,4 @@ const IconHeartBrokenSharp: React.FC = ({ ...props }) => ( ) -export { IconHeartBrokenSharp as default } +export default IconHeartBrokenSharp diff --git a/src/IconHeartBrokenSharpFilled.tsx b/src/IconHeartBrokenSharpFilled.tsx index e6aa89122..0d2a238e7 100644 --- a/src/IconHeartBrokenSharpFilled.tsx +++ b/src/IconHeartBrokenSharpFilled.tsx @@ -8,4 +8,4 @@ const IconHeartBrokenSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconHeartBrokenSharpFilled as default } +export default IconHeartBrokenSharpFilled diff --git a/src/IconHeartCheckOutlined.tsx b/src/IconHeartCheckOutlined.tsx index 54a7cd5f2..b84aab363 100644 --- a/src/IconHeartCheckOutlined.tsx +++ b/src/IconHeartCheckOutlined.tsx @@ -8,4 +8,4 @@ const IconHeartCheckOutlined: React.FC = ({ ...props }) => ( ) -export { IconHeartCheckOutlined as default } +export default IconHeartCheckOutlined diff --git a/src/IconHeartCheckOutlinedFilled.tsx b/src/IconHeartCheckOutlinedFilled.tsx index 6be526c75..68b82fde7 100644 --- a/src/IconHeartCheckOutlinedFilled.tsx +++ b/src/IconHeartCheckOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconHeartCheckOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconHeartCheckOutlinedFilled as default } +export default IconHeartCheckOutlinedFilled diff --git a/src/IconHeartCheckRounded.tsx b/src/IconHeartCheckRounded.tsx index a3b82f508..d84ddb9ab 100644 --- a/src/IconHeartCheckRounded.tsx +++ b/src/IconHeartCheckRounded.tsx @@ -8,4 +8,4 @@ const IconHeartCheckRounded: React.FC = ({ ...props }) => ( ) -export { IconHeartCheckRounded as default } +export default IconHeartCheckRounded diff --git a/src/IconHeartCheckRoundedFilled.tsx b/src/IconHeartCheckRoundedFilled.tsx index 804671946..bfa17d176 100644 --- a/src/IconHeartCheckRoundedFilled.tsx +++ b/src/IconHeartCheckRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconHeartCheckRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconHeartCheckRoundedFilled as default } +export default IconHeartCheckRoundedFilled diff --git a/src/IconHeartCheckSharp.tsx b/src/IconHeartCheckSharp.tsx index e6097eb53..7b9c4ef56 100644 --- a/src/IconHeartCheckSharp.tsx +++ b/src/IconHeartCheckSharp.tsx @@ -8,4 +8,4 @@ const IconHeartCheckSharp: React.FC = ({ ...props }) => ( ) -export { IconHeartCheckSharp as default } +export default IconHeartCheckSharp diff --git a/src/IconHeartCheckSharpFilled.tsx b/src/IconHeartCheckSharpFilled.tsx index c483ed5a1..0c51c9cda 100644 --- a/src/IconHeartCheckSharpFilled.tsx +++ b/src/IconHeartCheckSharpFilled.tsx @@ -8,4 +8,4 @@ const IconHeartCheckSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconHeartCheckSharpFilled as default } +export default IconHeartCheckSharpFilled diff --git a/src/IconHeartMinusOutlined.tsx b/src/IconHeartMinusOutlined.tsx index efa745fd2..2103d9ff2 100644 --- a/src/IconHeartMinusOutlined.tsx +++ b/src/IconHeartMinusOutlined.tsx @@ -8,4 +8,4 @@ const IconHeartMinusOutlined: React.FC = ({ ...props }) => ( ) -export { IconHeartMinusOutlined as default } +export default IconHeartMinusOutlined diff --git a/src/IconHeartMinusOutlinedFilled.tsx b/src/IconHeartMinusOutlinedFilled.tsx index 3e57f71ea..31cc070f6 100644 --- a/src/IconHeartMinusOutlinedFilled.tsx +++ b/src/IconHeartMinusOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconHeartMinusOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconHeartMinusOutlinedFilled as default } +export default IconHeartMinusOutlinedFilled diff --git a/src/IconHeartMinusRounded.tsx b/src/IconHeartMinusRounded.tsx index f1dc6c900..6b43c9848 100644 --- a/src/IconHeartMinusRounded.tsx +++ b/src/IconHeartMinusRounded.tsx @@ -8,4 +8,4 @@ const IconHeartMinusRounded: React.FC = ({ ...props }) => ( ) -export { IconHeartMinusRounded as default } +export default IconHeartMinusRounded diff --git a/src/IconHeartMinusRoundedFilled.tsx b/src/IconHeartMinusRoundedFilled.tsx index 1a3370c67..ea5a011eb 100644 --- a/src/IconHeartMinusRoundedFilled.tsx +++ b/src/IconHeartMinusRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconHeartMinusRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconHeartMinusRoundedFilled as default } +export default IconHeartMinusRoundedFilled diff --git a/src/IconHeartMinusSharp.tsx b/src/IconHeartMinusSharp.tsx index eab5a85dd..4b88ed01a 100644 --- a/src/IconHeartMinusSharp.tsx +++ b/src/IconHeartMinusSharp.tsx @@ -8,4 +8,4 @@ const IconHeartMinusSharp: React.FC = ({ ...props }) => ( ) -export { IconHeartMinusSharp as default } +export default IconHeartMinusSharp diff --git a/src/IconHeartMinusSharpFilled.tsx b/src/IconHeartMinusSharpFilled.tsx index 7d0bc18de..a81d81d2c 100644 --- a/src/IconHeartMinusSharpFilled.tsx +++ b/src/IconHeartMinusSharpFilled.tsx @@ -8,4 +8,4 @@ const IconHeartMinusSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconHeartMinusSharpFilled as default } +export default IconHeartMinusSharpFilled diff --git a/src/IconHeartPlusOutlined.tsx b/src/IconHeartPlusOutlined.tsx index fb36b7871..96e80722c 100644 --- a/src/IconHeartPlusOutlined.tsx +++ b/src/IconHeartPlusOutlined.tsx @@ -8,4 +8,4 @@ const IconHeartPlusOutlined: React.FC = ({ ...props }) => ( ) -export { IconHeartPlusOutlined as default } +export default IconHeartPlusOutlined diff --git a/src/IconHeartPlusOutlinedFilled.tsx b/src/IconHeartPlusOutlinedFilled.tsx index 49a2d1e64..022222d64 100644 --- a/src/IconHeartPlusOutlinedFilled.tsx +++ b/src/IconHeartPlusOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconHeartPlusOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconHeartPlusOutlinedFilled as default } +export default IconHeartPlusOutlinedFilled diff --git a/src/IconHeartPlusRounded.tsx b/src/IconHeartPlusRounded.tsx index 7b9dc42fd..d88081a0e 100644 --- a/src/IconHeartPlusRounded.tsx +++ b/src/IconHeartPlusRounded.tsx @@ -8,4 +8,4 @@ const IconHeartPlusRounded: React.FC = ({ ...props }) => ( ) -export { IconHeartPlusRounded as default } +export default IconHeartPlusRounded diff --git a/src/IconHeartPlusRoundedFilled.tsx b/src/IconHeartPlusRoundedFilled.tsx index aa66974d6..b87339263 100644 --- a/src/IconHeartPlusRoundedFilled.tsx +++ b/src/IconHeartPlusRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconHeartPlusRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconHeartPlusRoundedFilled as default } +export default IconHeartPlusRoundedFilled diff --git a/src/IconHeartPlusSharp.tsx b/src/IconHeartPlusSharp.tsx index 877fbb502..2d9ad3e7e 100644 --- a/src/IconHeartPlusSharp.tsx +++ b/src/IconHeartPlusSharp.tsx @@ -8,4 +8,4 @@ const IconHeartPlusSharp: React.FC = ({ ...props }) => ( ) -export { IconHeartPlusSharp as default } +export default IconHeartPlusSharp diff --git a/src/IconHeartPlusSharpFilled.tsx b/src/IconHeartPlusSharpFilled.tsx index af8f365b5..92aabdf34 100644 --- a/src/IconHeartPlusSharpFilled.tsx +++ b/src/IconHeartPlusSharpFilled.tsx @@ -8,4 +8,4 @@ const IconHeartPlusSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconHeartPlusSharpFilled as default } +export default IconHeartPlusSharpFilled diff --git a/src/IconHeatOutlined.tsx b/src/IconHeatOutlined.tsx index 132d8c6e6..8a9f76bc9 100644 --- a/src/IconHeatOutlined.tsx +++ b/src/IconHeatOutlined.tsx @@ -8,4 +8,4 @@ const IconHeatOutlined: React.FC = ({ ...props }) => ( ) -export { IconHeatOutlined as default } +export default IconHeatOutlined diff --git a/src/IconHeatOutlinedFilled.tsx b/src/IconHeatOutlinedFilled.tsx index fe60baec1..e6d4403fa 100644 --- a/src/IconHeatOutlinedFilled.tsx +++ b/src/IconHeatOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconHeatOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconHeatOutlinedFilled as default } +export default IconHeatOutlinedFilled diff --git a/src/IconHeatPumpBalanceOutlined.tsx b/src/IconHeatPumpBalanceOutlined.tsx index 21e046227..01f5b27e6 100644 --- a/src/IconHeatPumpBalanceOutlined.tsx +++ b/src/IconHeatPumpBalanceOutlined.tsx @@ -8,4 +8,4 @@ const IconHeatPumpBalanceOutlined: React.FC = ({ ...props }) => ( ) -export { IconHeatPumpBalanceOutlined as default } +export default IconHeatPumpBalanceOutlined diff --git a/src/IconHeatPumpBalanceOutlinedFilled.tsx b/src/IconHeatPumpBalanceOutlinedFilled.tsx index d8a86c2fd..1e9de32ea 100644 --- a/src/IconHeatPumpBalanceOutlinedFilled.tsx +++ b/src/IconHeatPumpBalanceOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconHeatPumpBalanceOutlinedFilled: React.FC = ({ ) -export { IconHeatPumpBalanceOutlinedFilled as default } +export default IconHeatPumpBalanceOutlinedFilled diff --git a/src/IconHeatPumpBalanceRounded.tsx b/src/IconHeatPumpBalanceRounded.tsx index 644b8f0c7..d2531bd51 100644 --- a/src/IconHeatPumpBalanceRounded.tsx +++ b/src/IconHeatPumpBalanceRounded.tsx @@ -8,4 +8,4 @@ const IconHeatPumpBalanceRounded: React.FC = ({ ...props }) => ( ) -export { IconHeatPumpBalanceRounded as default } +export default IconHeatPumpBalanceRounded diff --git a/src/IconHeatPumpBalanceRoundedFilled.tsx b/src/IconHeatPumpBalanceRoundedFilled.tsx index 55640b896..4dfe6910f 100644 --- a/src/IconHeatPumpBalanceRoundedFilled.tsx +++ b/src/IconHeatPumpBalanceRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconHeatPumpBalanceRoundedFilled: React.FC = ({ ) -export { IconHeatPumpBalanceRoundedFilled as default } +export default IconHeatPumpBalanceRoundedFilled diff --git a/src/IconHeatPumpBalanceSharp.tsx b/src/IconHeatPumpBalanceSharp.tsx index 391ada158..99bea4022 100644 --- a/src/IconHeatPumpBalanceSharp.tsx +++ b/src/IconHeatPumpBalanceSharp.tsx @@ -8,4 +8,4 @@ const IconHeatPumpBalanceSharp: React.FC = ({ ...props }) => ( ) -export { IconHeatPumpBalanceSharp as default } +export default IconHeatPumpBalanceSharp diff --git a/src/IconHeatPumpBalanceSharpFilled.tsx b/src/IconHeatPumpBalanceSharpFilled.tsx index a1770456c..386d85575 100644 --- a/src/IconHeatPumpBalanceSharpFilled.tsx +++ b/src/IconHeatPumpBalanceSharpFilled.tsx @@ -8,4 +8,4 @@ const IconHeatPumpBalanceSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconHeatPumpBalanceSharpFilled as default } +export default IconHeatPumpBalanceSharpFilled diff --git a/src/IconHeatPumpOutlined.tsx b/src/IconHeatPumpOutlined.tsx index 5e4e6cb1e..fb3e0999d 100644 --- a/src/IconHeatPumpOutlined.tsx +++ b/src/IconHeatPumpOutlined.tsx @@ -8,4 +8,4 @@ const IconHeatPumpOutlined: React.FC = ({ ...props }) => ( ) -export { IconHeatPumpOutlined as default } +export default IconHeatPumpOutlined diff --git a/src/IconHeatPumpOutlinedFilled.tsx b/src/IconHeatPumpOutlinedFilled.tsx index 230662301..e6f4a82b8 100644 --- a/src/IconHeatPumpOutlinedFilled.tsx +++ b/src/IconHeatPumpOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconHeatPumpOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconHeatPumpOutlinedFilled as default } +export default IconHeatPumpOutlinedFilled diff --git a/src/IconHeatPumpRounded.tsx b/src/IconHeatPumpRounded.tsx index dddbf4f75..363e4fdac 100644 --- a/src/IconHeatPumpRounded.tsx +++ b/src/IconHeatPumpRounded.tsx @@ -8,4 +8,4 @@ const IconHeatPumpRounded: React.FC = ({ ...props }) => ( ) -export { IconHeatPumpRounded as default } +export default IconHeatPumpRounded diff --git a/src/IconHeatPumpRoundedFilled.tsx b/src/IconHeatPumpRoundedFilled.tsx index 38fd0c138..a375ec26c 100644 --- a/src/IconHeatPumpRoundedFilled.tsx +++ b/src/IconHeatPumpRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconHeatPumpRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconHeatPumpRoundedFilled as default } +export default IconHeatPumpRoundedFilled diff --git a/src/IconHeatPumpSharp.tsx b/src/IconHeatPumpSharp.tsx index 082bf499d..2b975b304 100644 --- a/src/IconHeatPumpSharp.tsx +++ b/src/IconHeatPumpSharp.tsx @@ -8,4 +8,4 @@ const IconHeatPumpSharp: React.FC = ({ ...props }) => ( ) -export { IconHeatPumpSharp as default } +export default IconHeatPumpSharp diff --git a/src/IconHeatPumpSharpFilled.tsx b/src/IconHeatPumpSharpFilled.tsx index 50f13c13b..9e3fa4e38 100644 --- a/src/IconHeatPumpSharpFilled.tsx +++ b/src/IconHeatPumpSharpFilled.tsx @@ -8,4 +8,4 @@ const IconHeatPumpSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconHeatPumpSharpFilled as default } +export default IconHeatPumpSharpFilled diff --git a/src/IconHeatRounded.tsx b/src/IconHeatRounded.tsx index 3b8c0bc2a..4ff2fa485 100644 --- a/src/IconHeatRounded.tsx +++ b/src/IconHeatRounded.tsx @@ -8,4 +8,4 @@ const IconHeatRounded: React.FC = ({ ...props }) => ( ) -export { IconHeatRounded as default } +export default IconHeatRounded diff --git a/src/IconHeatRoundedFilled.tsx b/src/IconHeatRoundedFilled.tsx index b7dc61cef..a66aa309f 100644 --- a/src/IconHeatRoundedFilled.tsx +++ b/src/IconHeatRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconHeatRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconHeatRoundedFilled as default } +export default IconHeatRoundedFilled diff --git a/src/IconHeatSharp.tsx b/src/IconHeatSharp.tsx index d259d9bca..8fac70870 100644 --- a/src/IconHeatSharp.tsx +++ b/src/IconHeatSharp.tsx @@ -8,4 +8,4 @@ const IconHeatSharp: React.FC = ({ ...props }) => ( ) -export { IconHeatSharp as default } +export default IconHeatSharp diff --git a/src/IconHeatSharpFilled.tsx b/src/IconHeatSharpFilled.tsx index 01a341ad8..807c2d1f3 100644 --- a/src/IconHeatSharpFilled.tsx +++ b/src/IconHeatSharpFilled.tsx @@ -8,4 +8,4 @@ const IconHeatSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconHeatSharpFilled as default } +export default IconHeatSharpFilled diff --git a/src/IconHeightOutlined.tsx b/src/IconHeightOutlined.tsx index 818d9dd4a..6e1d5411f 100644 --- a/src/IconHeightOutlined.tsx +++ b/src/IconHeightOutlined.tsx @@ -8,4 +8,4 @@ const IconHeightOutlined: React.FC = ({ ...props }) => ( ) -export { IconHeightOutlined as default } +export default IconHeightOutlined diff --git a/src/IconHeightOutlinedFilled.tsx b/src/IconHeightOutlinedFilled.tsx index c5d60a27d..b43777441 100644 --- a/src/IconHeightOutlinedFilled.tsx +++ b/src/IconHeightOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconHeightOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconHeightOutlinedFilled as default } +export default IconHeightOutlinedFilled diff --git a/src/IconHeightRounded.tsx b/src/IconHeightRounded.tsx index 529f22909..11dceb766 100644 --- a/src/IconHeightRounded.tsx +++ b/src/IconHeightRounded.tsx @@ -8,4 +8,4 @@ const IconHeightRounded: React.FC = ({ ...props }) => ( ) -export { IconHeightRounded as default } +export default IconHeightRounded diff --git a/src/IconHeightRoundedFilled.tsx b/src/IconHeightRoundedFilled.tsx index 433c82896..d81652e14 100644 --- a/src/IconHeightRoundedFilled.tsx +++ b/src/IconHeightRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconHeightRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconHeightRoundedFilled as default } +export default IconHeightRoundedFilled diff --git a/src/IconHeightSharp.tsx b/src/IconHeightSharp.tsx index 8571bf866..80e29571d 100644 --- a/src/IconHeightSharp.tsx +++ b/src/IconHeightSharp.tsx @@ -8,4 +8,4 @@ const IconHeightSharp: React.FC = ({ ...props }) => ( ) -export { IconHeightSharp as default } +export default IconHeightSharp diff --git a/src/IconHeightSharpFilled.tsx b/src/IconHeightSharpFilled.tsx index b5235028c..fd0b73b73 100644 --- a/src/IconHeightSharpFilled.tsx +++ b/src/IconHeightSharpFilled.tsx @@ -8,4 +8,4 @@ const IconHeightSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconHeightSharpFilled as default } +export default IconHeightSharpFilled diff --git a/src/IconHelicopterOutlined.tsx b/src/IconHelicopterOutlined.tsx index 62182450d..f60ae576b 100644 --- a/src/IconHelicopterOutlined.tsx +++ b/src/IconHelicopterOutlined.tsx @@ -8,4 +8,4 @@ const IconHelicopterOutlined: React.FC = ({ ...props }) => ( ) -export { IconHelicopterOutlined as default } +export default IconHelicopterOutlined diff --git a/src/IconHelicopterOutlinedFilled.tsx b/src/IconHelicopterOutlinedFilled.tsx index bc8f93cc0..bb12ee17a 100644 --- a/src/IconHelicopterOutlinedFilled.tsx +++ b/src/IconHelicopterOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconHelicopterOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconHelicopterOutlinedFilled as default } +export default IconHelicopterOutlinedFilled diff --git a/src/IconHelicopterRounded.tsx b/src/IconHelicopterRounded.tsx index 889a80d63..73fd95114 100644 --- a/src/IconHelicopterRounded.tsx +++ b/src/IconHelicopterRounded.tsx @@ -8,4 +8,4 @@ const IconHelicopterRounded: React.FC = ({ ...props }) => ( ) -export { IconHelicopterRounded as default } +export default IconHelicopterRounded diff --git a/src/IconHelicopterRoundedFilled.tsx b/src/IconHelicopterRoundedFilled.tsx index ba16a9727..151a48d82 100644 --- a/src/IconHelicopterRoundedFilled.tsx +++ b/src/IconHelicopterRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconHelicopterRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconHelicopterRoundedFilled as default } +export default IconHelicopterRoundedFilled diff --git a/src/IconHelicopterSharp.tsx b/src/IconHelicopterSharp.tsx index fbf286df5..4449ec210 100644 --- a/src/IconHelicopterSharp.tsx +++ b/src/IconHelicopterSharp.tsx @@ -8,4 +8,4 @@ const IconHelicopterSharp: React.FC = ({ ...props }) => ( ) -export { IconHelicopterSharp as default } +export default IconHelicopterSharp diff --git a/src/IconHelicopterSharpFilled.tsx b/src/IconHelicopterSharpFilled.tsx index 500cd2024..e3026d2ee 100644 --- a/src/IconHelicopterSharpFilled.tsx +++ b/src/IconHelicopterSharpFilled.tsx @@ -8,4 +8,4 @@ const IconHelicopterSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconHelicopterSharpFilled as default } +export default IconHelicopterSharpFilled diff --git a/src/IconHelpCenterOutlined.tsx b/src/IconHelpCenterOutlined.tsx index 6a75149be..b38338595 100644 --- a/src/IconHelpCenterOutlined.tsx +++ b/src/IconHelpCenterOutlined.tsx @@ -8,4 +8,4 @@ const IconHelpCenterOutlined: React.FC = ({ ...props }) => ( ) -export { IconHelpCenterOutlined as default } +export default IconHelpCenterOutlined diff --git a/src/IconHelpCenterOutlinedFilled.tsx b/src/IconHelpCenterOutlinedFilled.tsx index fea2af5d8..5f4aaae87 100644 --- a/src/IconHelpCenterOutlinedFilled.tsx +++ b/src/IconHelpCenterOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconHelpCenterOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconHelpCenterOutlinedFilled as default } +export default IconHelpCenterOutlinedFilled diff --git a/src/IconHelpCenterRounded.tsx b/src/IconHelpCenterRounded.tsx index 61a7ab10e..74444a3d4 100644 --- a/src/IconHelpCenterRounded.tsx +++ b/src/IconHelpCenterRounded.tsx @@ -8,4 +8,4 @@ const IconHelpCenterRounded: React.FC = ({ ...props }) => ( ) -export { IconHelpCenterRounded as default } +export default IconHelpCenterRounded diff --git a/src/IconHelpCenterRoundedFilled.tsx b/src/IconHelpCenterRoundedFilled.tsx index e3e5e5fac..207528737 100644 --- a/src/IconHelpCenterRoundedFilled.tsx +++ b/src/IconHelpCenterRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconHelpCenterRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconHelpCenterRoundedFilled as default } +export default IconHelpCenterRoundedFilled diff --git a/src/IconHelpCenterSharp.tsx b/src/IconHelpCenterSharp.tsx index 188b35425..5630cd7e8 100644 --- a/src/IconHelpCenterSharp.tsx +++ b/src/IconHelpCenterSharp.tsx @@ -8,4 +8,4 @@ const IconHelpCenterSharp: React.FC = ({ ...props }) => ( ) -export { IconHelpCenterSharp as default } +export default IconHelpCenterSharp diff --git a/src/IconHelpCenterSharpFilled.tsx b/src/IconHelpCenterSharpFilled.tsx index e729eb540..180ac859e 100644 --- a/src/IconHelpCenterSharpFilled.tsx +++ b/src/IconHelpCenterSharpFilled.tsx @@ -8,4 +8,4 @@ const IconHelpCenterSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconHelpCenterSharpFilled as default } +export default IconHelpCenterSharpFilled diff --git a/src/IconHelpClinicOutlined.tsx b/src/IconHelpClinicOutlined.tsx index ee2b9cbbb..93da4d581 100644 --- a/src/IconHelpClinicOutlined.tsx +++ b/src/IconHelpClinicOutlined.tsx @@ -8,4 +8,4 @@ const IconHelpClinicOutlined: React.FC = ({ ...props }) => ( ) -export { IconHelpClinicOutlined as default } +export default IconHelpClinicOutlined diff --git a/src/IconHelpClinicOutlinedFilled.tsx b/src/IconHelpClinicOutlinedFilled.tsx index 77737da19..10709fd25 100644 --- a/src/IconHelpClinicOutlinedFilled.tsx +++ b/src/IconHelpClinicOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconHelpClinicOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconHelpClinicOutlinedFilled as default } +export default IconHelpClinicOutlinedFilled diff --git a/src/IconHelpClinicRounded.tsx b/src/IconHelpClinicRounded.tsx index 0b0bda656..aa7782a21 100644 --- a/src/IconHelpClinicRounded.tsx +++ b/src/IconHelpClinicRounded.tsx @@ -8,4 +8,4 @@ const IconHelpClinicRounded: React.FC = ({ ...props }) => ( ) -export { IconHelpClinicRounded as default } +export default IconHelpClinicRounded diff --git a/src/IconHelpClinicRoundedFilled.tsx b/src/IconHelpClinicRoundedFilled.tsx index 68f2c4205..0daf68ac9 100644 --- a/src/IconHelpClinicRoundedFilled.tsx +++ b/src/IconHelpClinicRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconHelpClinicRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconHelpClinicRoundedFilled as default } +export default IconHelpClinicRoundedFilled diff --git a/src/IconHelpClinicSharp.tsx b/src/IconHelpClinicSharp.tsx index 5e0a721a5..34efe755b 100644 --- a/src/IconHelpClinicSharp.tsx +++ b/src/IconHelpClinicSharp.tsx @@ -8,4 +8,4 @@ const IconHelpClinicSharp: React.FC = ({ ...props }) => ( ) -export { IconHelpClinicSharp as default } +export default IconHelpClinicSharp diff --git a/src/IconHelpClinicSharpFilled.tsx b/src/IconHelpClinicSharpFilled.tsx index 6811598ac..c0f169936 100644 --- a/src/IconHelpClinicSharpFilled.tsx +++ b/src/IconHelpClinicSharpFilled.tsx @@ -8,4 +8,4 @@ const IconHelpClinicSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconHelpClinicSharpFilled as default } +export default IconHelpClinicSharpFilled diff --git a/src/IconHelpOutlined.tsx b/src/IconHelpOutlined.tsx index 9ef36c6cb..27d7f5eae 100644 --- a/src/IconHelpOutlined.tsx +++ b/src/IconHelpOutlined.tsx @@ -8,4 +8,4 @@ const IconHelpOutlined: React.FC = ({ ...props }) => ( ) -export { IconHelpOutlined as default } +export default IconHelpOutlined diff --git a/src/IconHelpOutlinedFilled.tsx b/src/IconHelpOutlinedFilled.tsx index 58adb3970..4712223c6 100644 --- a/src/IconHelpOutlinedFilled.tsx +++ b/src/IconHelpOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconHelpOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconHelpOutlinedFilled as default } +export default IconHelpOutlinedFilled diff --git a/src/IconHelpRounded.tsx b/src/IconHelpRounded.tsx index 3b198d208..4389928fe 100644 --- a/src/IconHelpRounded.tsx +++ b/src/IconHelpRounded.tsx @@ -8,4 +8,4 @@ const IconHelpRounded: React.FC = ({ ...props }) => ( ) -export { IconHelpRounded as default } +export default IconHelpRounded diff --git a/src/IconHelpRoundedFilled.tsx b/src/IconHelpRoundedFilled.tsx index f3b5a71e2..a73240c5c 100644 --- a/src/IconHelpRoundedFilled.tsx +++ b/src/IconHelpRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconHelpRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconHelpRoundedFilled as default } +export default IconHelpRoundedFilled diff --git a/src/IconHelpSharp.tsx b/src/IconHelpSharp.tsx index 55e72986d..adbb6b475 100644 --- a/src/IconHelpSharp.tsx +++ b/src/IconHelpSharp.tsx @@ -8,4 +8,4 @@ const IconHelpSharp: React.FC = ({ ...props }) => ( ) -export { IconHelpSharp as default } +export default IconHelpSharp diff --git a/src/IconHelpSharpFilled.tsx b/src/IconHelpSharpFilled.tsx index 30e7c3032..c091f24cf 100644 --- a/src/IconHelpSharpFilled.tsx +++ b/src/IconHelpSharpFilled.tsx @@ -8,4 +8,4 @@ const IconHelpSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconHelpSharpFilled as default } +export default IconHelpSharpFilled diff --git a/src/IconHematologyOutlined.tsx b/src/IconHematologyOutlined.tsx index 472611892..d3a93c23f 100644 --- a/src/IconHematologyOutlined.tsx +++ b/src/IconHematologyOutlined.tsx @@ -8,4 +8,4 @@ const IconHematologyOutlined: React.FC = ({ ...props }) => ( ) -export { IconHematologyOutlined as default } +export default IconHematologyOutlined diff --git a/src/IconHematologyOutlinedFilled.tsx b/src/IconHematologyOutlinedFilled.tsx index eac913dcb..d7756e78f 100644 --- a/src/IconHematologyOutlinedFilled.tsx +++ b/src/IconHematologyOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconHematologyOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconHematologyOutlinedFilled as default } +export default IconHematologyOutlinedFilled diff --git a/src/IconHematologyRounded.tsx b/src/IconHematologyRounded.tsx index 7e487f07d..a1101bbd8 100644 --- a/src/IconHematologyRounded.tsx +++ b/src/IconHematologyRounded.tsx @@ -8,4 +8,4 @@ const IconHematologyRounded: React.FC = ({ ...props }) => ( ) -export { IconHematologyRounded as default } +export default IconHematologyRounded diff --git a/src/IconHematologyRoundedFilled.tsx b/src/IconHematologyRoundedFilled.tsx index 8a77b2889..1dca3a737 100644 --- a/src/IconHematologyRoundedFilled.tsx +++ b/src/IconHematologyRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconHematologyRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconHematologyRoundedFilled as default } +export default IconHematologyRoundedFilled diff --git a/src/IconHematologySharp.tsx b/src/IconHematologySharp.tsx index dd46d02c2..7d06d0006 100644 --- a/src/IconHematologySharp.tsx +++ b/src/IconHematologySharp.tsx @@ -8,4 +8,4 @@ const IconHematologySharp: React.FC = ({ ...props }) => ( ) -export { IconHematologySharp as default } +export default IconHematologySharp diff --git a/src/IconHematologySharpFilled.tsx b/src/IconHematologySharpFilled.tsx index 8ac19d86c..4f0102447 100644 --- a/src/IconHematologySharpFilled.tsx +++ b/src/IconHematologySharpFilled.tsx @@ -8,4 +8,4 @@ const IconHematologySharpFilled: React.FC = ({ ...props }) => ( ) -export { IconHematologySharpFilled as default } +export default IconHematologySharpFilled diff --git a/src/IconHevcOutlined.tsx b/src/IconHevcOutlined.tsx index 44698aa59..28de99395 100644 --- a/src/IconHevcOutlined.tsx +++ b/src/IconHevcOutlined.tsx @@ -8,4 +8,4 @@ const IconHevcOutlined: React.FC = ({ ...props }) => ( ) -export { IconHevcOutlined as default } +export default IconHevcOutlined diff --git a/src/IconHevcOutlinedFilled.tsx b/src/IconHevcOutlinedFilled.tsx index 2f79c3d33..dc02512fe 100644 --- a/src/IconHevcOutlinedFilled.tsx +++ b/src/IconHevcOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconHevcOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconHevcOutlinedFilled as default } +export default IconHevcOutlinedFilled diff --git a/src/IconHevcRounded.tsx b/src/IconHevcRounded.tsx index 3da637388..3cae37b65 100644 --- a/src/IconHevcRounded.tsx +++ b/src/IconHevcRounded.tsx @@ -8,4 +8,4 @@ const IconHevcRounded: React.FC = ({ ...props }) => ( ) -export { IconHevcRounded as default } +export default IconHevcRounded diff --git a/src/IconHevcRoundedFilled.tsx b/src/IconHevcRoundedFilled.tsx index ea09e3536..1648a6bc8 100644 --- a/src/IconHevcRoundedFilled.tsx +++ b/src/IconHevcRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconHevcRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconHevcRoundedFilled as default } +export default IconHevcRoundedFilled diff --git a/src/IconHevcSharp.tsx b/src/IconHevcSharp.tsx index 123f175a5..d226028e5 100644 --- a/src/IconHevcSharp.tsx +++ b/src/IconHevcSharp.tsx @@ -8,4 +8,4 @@ const IconHevcSharp: React.FC = ({ ...props }) => ( ) -export { IconHevcSharp as default } +export default IconHevcSharp diff --git a/src/IconHevcSharpFilled.tsx b/src/IconHevcSharpFilled.tsx index 0638b5c08..3ac95b7a2 100644 --- a/src/IconHevcSharpFilled.tsx +++ b/src/IconHevcSharpFilled.tsx @@ -8,4 +8,4 @@ const IconHevcSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconHevcSharpFilled as default } +export default IconHevcSharpFilled diff --git a/src/IconHexagonOutlined.tsx b/src/IconHexagonOutlined.tsx index c9b172e9e..608e6725a 100644 --- a/src/IconHexagonOutlined.tsx +++ b/src/IconHexagonOutlined.tsx @@ -8,4 +8,4 @@ const IconHexagonOutlined: React.FC = ({ ...props }) => ( ) -export { IconHexagonOutlined as default } +export default IconHexagonOutlined diff --git a/src/IconHexagonOutlinedFilled.tsx b/src/IconHexagonOutlinedFilled.tsx index 29412f0df..6212c5008 100644 --- a/src/IconHexagonOutlinedFilled.tsx +++ b/src/IconHexagonOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconHexagonOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconHexagonOutlinedFilled as default } +export default IconHexagonOutlinedFilled diff --git a/src/IconHexagonRounded.tsx b/src/IconHexagonRounded.tsx index c0f54f0d3..9021fc280 100644 --- a/src/IconHexagonRounded.tsx +++ b/src/IconHexagonRounded.tsx @@ -8,4 +8,4 @@ const IconHexagonRounded: React.FC = ({ ...props }) => ( ) -export { IconHexagonRounded as default } +export default IconHexagonRounded diff --git a/src/IconHexagonRoundedFilled.tsx b/src/IconHexagonRoundedFilled.tsx index 697cfef0e..49434beac 100644 --- a/src/IconHexagonRoundedFilled.tsx +++ b/src/IconHexagonRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconHexagonRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconHexagonRoundedFilled as default } +export default IconHexagonRoundedFilled diff --git a/src/IconHexagonSharp.tsx b/src/IconHexagonSharp.tsx index 28e8e4a5f..e3855606e 100644 --- a/src/IconHexagonSharp.tsx +++ b/src/IconHexagonSharp.tsx @@ -8,4 +8,4 @@ const IconHexagonSharp: React.FC = ({ ...props }) => ( ) -export { IconHexagonSharp as default } +export default IconHexagonSharp diff --git a/src/IconHexagonSharpFilled.tsx b/src/IconHexagonSharpFilled.tsx index 7b26e4d62..56070ff8c 100644 --- a/src/IconHexagonSharpFilled.tsx +++ b/src/IconHexagonSharpFilled.tsx @@ -8,4 +8,4 @@ const IconHexagonSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconHexagonSharpFilled as default } +export default IconHexagonSharpFilled diff --git a/src/IconHideImageOutlined.tsx b/src/IconHideImageOutlined.tsx index 0e4cc240f..a2fa4d70d 100644 --- a/src/IconHideImageOutlined.tsx +++ b/src/IconHideImageOutlined.tsx @@ -8,4 +8,4 @@ const IconHideImageOutlined: React.FC = ({ ...props }) => ( ) -export { IconHideImageOutlined as default } +export default IconHideImageOutlined diff --git a/src/IconHideImageOutlinedFilled.tsx b/src/IconHideImageOutlinedFilled.tsx index 339722460..9ac82908c 100644 --- a/src/IconHideImageOutlinedFilled.tsx +++ b/src/IconHideImageOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconHideImageOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconHideImageOutlinedFilled as default } +export default IconHideImageOutlinedFilled diff --git a/src/IconHideImageRounded.tsx b/src/IconHideImageRounded.tsx index de83836af..e1184e2ae 100644 --- a/src/IconHideImageRounded.tsx +++ b/src/IconHideImageRounded.tsx @@ -8,4 +8,4 @@ const IconHideImageRounded: React.FC = ({ ...props }) => ( ) -export { IconHideImageRounded as default } +export default IconHideImageRounded diff --git a/src/IconHideImageRoundedFilled.tsx b/src/IconHideImageRoundedFilled.tsx index 634afa08c..df6594e56 100644 --- a/src/IconHideImageRoundedFilled.tsx +++ b/src/IconHideImageRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconHideImageRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconHideImageRoundedFilled as default } +export default IconHideImageRoundedFilled diff --git a/src/IconHideImageSharp.tsx b/src/IconHideImageSharp.tsx index d5a41a180..1d7b6b0ea 100644 --- a/src/IconHideImageSharp.tsx +++ b/src/IconHideImageSharp.tsx @@ -8,4 +8,4 @@ const IconHideImageSharp: React.FC = ({ ...props }) => ( ) -export { IconHideImageSharp as default } +export default IconHideImageSharp diff --git a/src/IconHideImageSharpFilled.tsx b/src/IconHideImageSharpFilled.tsx index a1cd33923..fbd8a5486 100644 --- a/src/IconHideImageSharpFilled.tsx +++ b/src/IconHideImageSharpFilled.tsx @@ -8,4 +8,4 @@ const IconHideImageSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconHideImageSharpFilled as default } +export default IconHideImageSharpFilled diff --git a/src/IconHideOutlined.tsx b/src/IconHideOutlined.tsx index 402133032..ee0d861bb 100644 --- a/src/IconHideOutlined.tsx +++ b/src/IconHideOutlined.tsx @@ -8,4 +8,4 @@ const IconHideOutlined: React.FC = ({ ...props }) => ( ) -export { IconHideOutlined as default } +export default IconHideOutlined diff --git a/src/IconHideOutlinedFilled.tsx b/src/IconHideOutlinedFilled.tsx index be65b074c..2dae69044 100644 --- a/src/IconHideOutlinedFilled.tsx +++ b/src/IconHideOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconHideOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconHideOutlinedFilled as default } +export default IconHideOutlinedFilled diff --git a/src/IconHideRounded.tsx b/src/IconHideRounded.tsx index 41cf392ab..b3e3a88f6 100644 --- a/src/IconHideRounded.tsx +++ b/src/IconHideRounded.tsx @@ -8,4 +8,4 @@ const IconHideRounded: React.FC = ({ ...props }) => ( ) -export { IconHideRounded as default } +export default IconHideRounded diff --git a/src/IconHideRoundedFilled.tsx b/src/IconHideRoundedFilled.tsx index 19a166247..a066179b6 100644 --- a/src/IconHideRoundedFilled.tsx +++ b/src/IconHideRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconHideRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconHideRoundedFilled as default } +export default IconHideRoundedFilled diff --git a/src/IconHideSharp.tsx b/src/IconHideSharp.tsx index 9155b755b..691a3f768 100644 --- a/src/IconHideSharp.tsx +++ b/src/IconHideSharp.tsx @@ -8,4 +8,4 @@ const IconHideSharp: React.FC = ({ ...props }) => ( ) -export { IconHideSharp as default } +export default IconHideSharp diff --git a/src/IconHideSharpFilled.tsx b/src/IconHideSharpFilled.tsx index 054dbfb51..010fa85dc 100644 --- a/src/IconHideSharpFilled.tsx +++ b/src/IconHideSharpFilled.tsx @@ -8,4 +8,4 @@ const IconHideSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconHideSharpFilled as default } +export default IconHideSharpFilled diff --git a/src/IconHideSourceOutlined.tsx b/src/IconHideSourceOutlined.tsx index ebf4aad46..2f46109d0 100644 --- a/src/IconHideSourceOutlined.tsx +++ b/src/IconHideSourceOutlined.tsx @@ -8,4 +8,4 @@ const IconHideSourceOutlined: React.FC = ({ ...props }) => ( ) -export { IconHideSourceOutlined as default } +export default IconHideSourceOutlined diff --git a/src/IconHideSourceOutlinedFilled.tsx b/src/IconHideSourceOutlinedFilled.tsx index 57320a4d7..74f889113 100644 --- a/src/IconHideSourceOutlinedFilled.tsx +++ b/src/IconHideSourceOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconHideSourceOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconHideSourceOutlinedFilled as default } +export default IconHideSourceOutlinedFilled diff --git a/src/IconHideSourceRounded.tsx b/src/IconHideSourceRounded.tsx index 554507f0b..3fb31aa8c 100644 --- a/src/IconHideSourceRounded.tsx +++ b/src/IconHideSourceRounded.tsx @@ -8,4 +8,4 @@ const IconHideSourceRounded: React.FC = ({ ...props }) => ( ) -export { IconHideSourceRounded as default } +export default IconHideSourceRounded diff --git a/src/IconHideSourceRoundedFilled.tsx b/src/IconHideSourceRoundedFilled.tsx index d57d174ec..e5a4a257c 100644 --- a/src/IconHideSourceRoundedFilled.tsx +++ b/src/IconHideSourceRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconHideSourceRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconHideSourceRoundedFilled as default } +export default IconHideSourceRoundedFilled diff --git a/src/IconHideSourceSharp.tsx b/src/IconHideSourceSharp.tsx index 5c41f54be..5ef54d7b8 100644 --- a/src/IconHideSourceSharp.tsx +++ b/src/IconHideSourceSharp.tsx @@ -8,4 +8,4 @@ const IconHideSourceSharp: React.FC = ({ ...props }) => ( ) -export { IconHideSourceSharp as default } +export default IconHideSourceSharp diff --git a/src/IconHideSourceSharpFilled.tsx b/src/IconHideSourceSharpFilled.tsx index 5890c30b5..55513e1a2 100644 --- a/src/IconHideSourceSharpFilled.tsx +++ b/src/IconHideSourceSharpFilled.tsx @@ -8,4 +8,4 @@ const IconHideSourceSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconHideSourceSharpFilled as default } +export default IconHideSourceSharpFilled diff --git a/src/IconHighDensityOutlined.tsx b/src/IconHighDensityOutlined.tsx index bf92527f4..b67d0a488 100644 --- a/src/IconHighDensityOutlined.tsx +++ b/src/IconHighDensityOutlined.tsx @@ -8,4 +8,4 @@ const IconHighDensityOutlined: React.FC = ({ ...props }) => ( ) -export { IconHighDensityOutlined as default } +export default IconHighDensityOutlined diff --git a/src/IconHighDensityOutlinedFilled.tsx b/src/IconHighDensityOutlinedFilled.tsx index 2169e27d8..660a508fe 100644 --- a/src/IconHighDensityOutlinedFilled.tsx +++ b/src/IconHighDensityOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconHighDensityOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconHighDensityOutlinedFilled as default } +export default IconHighDensityOutlinedFilled diff --git a/src/IconHighDensityRounded.tsx b/src/IconHighDensityRounded.tsx index ea4708a1d..22f1b399b 100644 --- a/src/IconHighDensityRounded.tsx +++ b/src/IconHighDensityRounded.tsx @@ -8,4 +8,4 @@ const IconHighDensityRounded: React.FC = ({ ...props }) => ( ) -export { IconHighDensityRounded as default } +export default IconHighDensityRounded diff --git a/src/IconHighDensityRoundedFilled.tsx b/src/IconHighDensityRoundedFilled.tsx index 3d9765d37..e9d87f08c 100644 --- a/src/IconHighDensityRoundedFilled.tsx +++ b/src/IconHighDensityRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconHighDensityRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconHighDensityRoundedFilled as default } +export default IconHighDensityRoundedFilled diff --git a/src/IconHighDensitySharp.tsx b/src/IconHighDensitySharp.tsx index 8e8614a64..8f84f57ce 100644 --- a/src/IconHighDensitySharp.tsx +++ b/src/IconHighDensitySharp.tsx @@ -8,4 +8,4 @@ const IconHighDensitySharp: React.FC = ({ ...props }) => ( ) -export { IconHighDensitySharp as default } +export default IconHighDensitySharp diff --git a/src/IconHighDensitySharpFilled.tsx b/src/IconHighDensitySharpFilled.tsx index 5ee79648b..8b4c81e4f 100644 --- a/src/IconHighDensitySharpFilled.tsx +++ b/src/IconHighDensitySharpFilled.tsx @@ -8,4 +8,4 @@ const IconHighDensitySharpFilled: React.FC = ({ ...props }) => ( ) -export { IconHighDensitySharpFilled as default } +export default IconHighDensitySharpFilled diff --git a/src/IconHighQualityOutlined.tsx b/src/IconHighQualityOutlined.tsx index 994327c20..29040c35b 100644 --- a/src/IconHighQualityOutlined.tsx +++ b/src/IconHighQualityOutlined.tsx @@ -8,4 +8,4 @@ const IconHighQualityOutlined: React.FC = ({ ...props }) => ( ) -export { IconHighQualityOutlined as default } +export default IconHighQualityOutlined diff --git a/src/IconHighQualityOutlinedFilled.tsx b/src/IconHighQualityOutlinedFilled.tsx index 7c687dfaf..a3f969d28 100644 --- a/src/IconHighQualityOutlinedFilled.tsx +++ b/src/IconHighQualityOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconHighQualityOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconHighQualityOutlinedFilled as default } +export default IconHighQualityOutlinedFilled diff --git a/src/IconHighQualityRounded.tsx b/src/IconHighQualityRounded.tsx index 836953fa3..a36d43ffa 100644 --- a/src/IconHighQualityRounded.tsx +++ b/src/IconHighQualityRounded.tsx @@ -8,4 +8,4 @@ const IconHighQualityRounded: React.FC = ({ ...props }) => ( ) -export { IconHighQualityRounded as default } +export default IconHighQualityRounded diff --git a/src/IconHighQualityRoundedFilled.tsx b/src/IconHighQualityRoundedFilled.tsx index 94d8c9e25..7ec51c7ff 100644 --- a/src/IconHighQualityRoundedFilled.tsx +++ b/src/IconHighQualityRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconHighQualityRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconHighQualityRoundedFilled as default } +export default IconHighQualityRoundedFilled diff --git a/src/IconHighQualitySharp.tsx b/src/IconHighQualitySharp.tsx index 049b4052d..b788bfe66 100644 --- a/src/IconHighQualitySharp.tsx +++ b/src/IconHighQualitySharp.tsx @@ -8,4 +8,4 @@ const IconHighQualitySharp: React.FC = ({ ...props }) => ( ) -export { IconHighQualitySharp as default } +export default IconHighQualitySharp diff --git a/src/IconHighQualitySharpFilled.tsx b/src/IconHighQualitySharpFilled.tsx index 47697681d..6ebe850ec 100644 --- a/src/IconHighQualitySharpFilled.tsx +++ b/src/IconHighQualitySharpFilled.tsx @@ -8,4 +8,4 @@ const IconHighQualitySharpFilled: React.FC = ({ ...props }) => ( ) -export { IconHighQualitySharpFilled as default } +export default IconHighQualitySharpFilled diff --git a/src/IconHighResOutlined.tsx b/src/IconHighResOutlined.tsx index bfeb298bd..7674dccf9 100644 --- a/src/IconHighResOutlined.tsx +++ b/src/IconHighResOutlined.tsx @@ -8,4 +8,4 @@ const IconHighResOutlined: React.FC = ({ ...props }) => ( ) -export { IconHighResOutlined as default } +export default IconHighResOutlined diff --git a/src/IconHighResOutlinedFilled.tsx b/src/IconHighResOutlinedFilled.tsx index 8aa912e52..c0be179a5 100644 --- a/src/IconHighResOutlinedFilled.tsx +++ b/src/IconHighResOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconHighResOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconHighResOutlinedFilled as default } +export default IconHighResOutlinedFilled diff --git a/src/IconHighResRounded.tsx b/src/IconHighResRounded.tsx index 41bfe05bd..d81a626be 100644 --- a/src/IconHighResRounded.tsx +++ b/src/IconHighResRounded.tsx @@ -8,4 +8,4 @@ const IconHighResRounded: React.FC = ({ ...props }) => ( ) -export { IconHighResRounded as default } +export default IconHighResRounded diff --git a/src/IconHighResRoundedFilled.tsx b/src/IconHighResRoundedFilled.tsx index 6d264fc9f..1d2686550 100644 --- a/src/IconHighResRoundedFilled.tsx +++ b/src/IconHighResRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconHighResRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconHighResRoundedFilled as default } +export default IconHighResRoundedFilled diff --git a/src/IconHighResSharp.tsx b/src/IconHighResSharp.tsx index d996a1ace..2f83e2fda 100644 --- a/src/IconHighResSharp.tsx +++ b/src/IconHighResSharp.tsx @@ -8,4 +8,4 @@ const IconHighResSharp: React.FC = ({ ...props }) => ( ) -export { IconHighResSharp as default } +export default IconHighResSharp diff --git a/src/IconHighResSharpFilled.tsx b/src/IconHighResSharpFilled.tsx index f97752434..4baabae21 100644 --- a/src/IconHighResSharpFilled.tsx +++ b/src/IconHighResSharpFilled.tsx @@ -8,4 +8,4 @@ const IconHighResSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconHighResSharpFilled as default } +export default IconHighResSharpFilled diff --git a/src/IconHighlightKeyboardFocusOutlined.tsx b/src/IconHighlightKeyboardFocusOutlined.tsx index f99906595..5d1bb8d97 100644 --- a/src/IconHighlightKeyboardFocusOutlined.tsx +++ b/src/IconHighlightKeyboardFocusOutlined.tsx @@ -10,4 +10,4 @@ const IconHighlightKeyboardFocusOutlined: React.FC = ({ ) -export { IconHighlightKeyboardFocusOutlined as default } +export default IconHighlightKeyboardFocusOutlined diff --git a/src/IconHighlightKeyboardFocusOutlinedFilled.tsx b/src/IconHighlightKeyboardFocusOutlinedFilled.tsx index 36bd87620..61e477c1a 100644 --- a/src/IconHighlightKeyboardFocusOutlinedFilled.tsx +++ b/src/IconHighlightKeyboardFocusOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconHighlightKeyboardFocusOutlinedFilled: React.FC = ({ ) -export { IconHighlightKeyboardFocusOutlinedFilled as default } +export default IconHighlightKeyboardFocusOutlinedFilled diff --git a/src/IconHighlightKeyboardFocusRounded.tsx b/src/IconHighlightKeyboardFocusRounded.tsx index 76df988b9..03096fa60 100644 --- a/src/IconHighlightKeyboardFocusRounded.tsx +++ b/src/IconHighlightKeyboardFocusRounded.tsx @@ -10,4 +10,4 @@ const IconHighlightKeyboardFocusRounded: React.FC = ({ ) -export { IconHighlightKeyboardFocusRounded as default } +export default IconHighlightKeyboardFocusRounded diff --git a/src/IconHighlightKeyboardFocusRoundedFilled.tsx b/src/IconHighlightKeyboardFocusRoundedFilled.tsx index 3dbe58ac7..4b5bd87f6 100644 --- a/src/IconHighlightKeyboardFocusRoundedFilled.tsx +++ b/src/IconHighlightKeyboardFocusRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconHighlightKeyboardFocusRoundedFilled: React.FC = ({ ) -export { IconHighlightKeyboardFocusRoundedFilled as default } +export default IconHighlightKeyboardFocusRoundedFilled diff --git a/src/IconHighlightKeyboardFocusSharp.tsx b/src/IconHighlightKeyboardFocusSharp.tsx index 4400cccf8..2b19eeba0 100644 --- a/src/IconHighlightKeyboardFocusSharp.tsx +++ b/src/IconHighlightKeyboardFocusSharp.tsx @@ -8,4 +8,4 @@ const IconHighlightKeyboardFocusSharp: React.FC = ({ ...props }) => ( ) -export { IconHighlightKeyboardFocusSharp as default } +export default IconHighlightKeyboardFocusSharp diff --git a/src/IconHighlightKeyboardFocusSharpFilled.tsx b/src/IconHighlightKeyboardFocusSharpFilled.tsx index 07eef18ca..e61d95992 100644 --- a/src/IconHighlightKeyboardFocusSharpFilled.tsx +++ b/src/IconHighlightKeyboardFocusSharpFilled.tsx @@ -10,4 +10,4 @@ const IconHighlightKeyboardFocusSharpFilled: React.FC = ({ ) -export { IconHighlightKeyboardFocusSharpFilled as default } +export default IconHighlightKeyboardFocusSharpFilled diff --git a/src/IconHighlightMouseCursorOutlined.tsx b/src/IconHighlightMouseCursorOutlined.tsx index 75bedf66c..09aeb93cc 100644 --- a/src/IconHighlightMouseCursorOutlined.tsx +++ b/src/IconHighlightMouseCursorOutlined.tsx @@ -10,4 +10,4 @@ const IconHighlightMouseCursorOutlined: React.FC = ({ ) -export { IconHighlightMouseCursorOutlined as default } +export default IconHighlightMouseCursorOutlined diff --git a/src/IconHighlightMouseCursorOutlinedFilled.tsx b/src/IconHighlightMouseCursorOutlinedFilled.tsx index 1e8673260..36bf06e9e 100644 --- a/src/IconHighlightMouseCursorOutlinedFilled.tsx +++ b/src/IconHighlightMouseCursorOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconHighlightMouseCursorOutlinedFilled: React.FC = ({ ) -export { IconHighlightMouseCursorOutlinedFilled as default } +export default IconHighlightMouseCursorOutlinedFilled diff --git a/src/IconHighlightMouseCursorRounded.tsx b/src/IconHighlightMouseCursorRounded.tsx index bdd952dae..3bb190395 100644 --- a/src/IconHighlightMouseCursorRounded.tsx +++ b/src/IconHighlightMouseCursorRounded.tsx @@ -8,4 +8,4 @@ const IconHighlightMouseCursorRounded: React.FC = ({ ...props }) => ( ) -export { IconHighlightMouseCursorRounded as default } +export default IconHighlightMouseCursorRounded diff --git a/src/IconHighlightMouseCursorRoundedFilled.tsx b/src/IconHighlightMouseCursorRoundedFilled.tsx index 8e403531d..19f0945e2 100644 --- a/src/IconHighlightMouseCursorRoundedFilled.tsx +++ b/src/IconHighlightMouseCursorRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconHighlightMouseCursorRoundedFilled: React.FC = ({ ) -export { IconHighlightMouseCursorRoundedFilled as default } +export default IconHighlightMouseCursorRoundedFilled diff --git a/src/IconHighlightMouseCursorSharp.tsx b/src/IconHighlightMouseCursorSharp.tsx index ab32fbdda..dca418cb5 100644 --- a/src/IconHighlightMouseCursorSharp.tsx +++ b/src/IconHighlightMouseCursorSharp.tsx @@ -8,4 +8,4 @@ const IconHighlightMouseCursorSharp: React.FC = ({ ...props }) => ( ) -export { IconHighlightMouseCursorSharp as default } +export default IconHighlightMouseCursorSharp diff --git a/src/IconHighlightMouseCursorSharpFilled.tsx b/src/IconHighlightMouseCursorSharpFilled.tsx index e24482501..d5f24fb39 100644 --- a/src/IconHighlightMouseCursorSharpFilled.tsx +++ b/src/IconHighlightMouseCursorSharpFilled.tsx @@ -10,4 +10,4 @@ const IconHighlightMouseCursorSharpFilled: React.FC = ({ ) -export { IconHighlightMouseCursorSharpFilled as default } +export default IconHighlightMouseCursorSharpFilled diff --git a/src/IconHighlightOutlined.tsx b/src/IconHighlightOutlined.tsx index 1791e9cd5..9d682b3b4 100644 --- a/src/IconHighlightOutlined.tsx +++ b/src/IconHighlightOutlined.tsx @@ -8,4 +8,4 @@ const IconHighlightOutlined: React.FC = ({ ...props }) => ( ) -export { IconHighlightOutlined as default } +export default IconHighlightOutlined diff --git a/src/IconHighlightOutlinedFilled.tsx b/src/IconHighlightOutlinedFilled.tsx index 689d610d3..5af1a64f4 100644 --- a/src/IconHighlightOutlinedFilled.tsx +++ b/src/IconHighlightOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconHighlightOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconHighlightOutlinedFilled as default } +export default IconHighlightOutlinedFilled diff --git a/src/IconHighlightRounded.tsx b/src/IconHighlightRounded.tsx index 826124806..a65fa5b30 100644 --- a/src/IconHighlightRounded.tsx +++ b/src/IconHighlightRounded.tsx @@ -8,4 +8,4 @@ const IconHighlightRounded: React.FC = ({ ...props }) => ( ) -export { IconHighlightRounded as default } +export default IconHighlightRounded diff --git a/src/IconHighlightRoundedFilled.tsx b/src/IconHighlightRoundedFilled.tsx index 593f032e6..92ee481fb 100644 --- a/src/IconHighlightRoundedFilled.tsx +++ b/src/IconHighlightRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconHighlightRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconHighlightRoundedFilled as default } +export default IconHighlightRoundedFilled diff --git a/src/IconHighlightSharp.tsx b/src/IconHighlightSharp.tsx index 318164fe4..ff672f8af 100644 --- a/src/IconHighlightSharp.tsx +++ b/src/IconHighlightSharp.tsx @@ -8,4 +8,4 @@ const IconHighlightSharp: React.FC = ({ ...props }) => ( ) -export { IconHighlightSharp as default } +export default IconHighlightSharp diff --git a/src/IconHighlightSharpFilled.tsx b/src/IconHighlightSharpFilled.tsx index a265e9cb5..7616b4a51 100644 --- a/src/IconHighlightSharpFilled.tsx +++ b/src/IconHighlightSharpFilled.tsx @@ -8,4 +8,4 @@ const IconHighlightSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconHighlightSharpFilled as default } +export default IconHighlightSharpFilled diff --git a/src/IconHighlightTextCursorOutlined.tsx b/src/IconHighlightTextCursorOutlined.tsx index b1d534677..694a9a915 100644 --- a/src/IconHighlightTextCursorOutlined.tsx +++ b/src/IconHighlightTextCursorOutlined.tsx @@ -8,4 +8,4 @@ const IconHighlightTextCursorOutlined: React.FC = ({ ...props }) => ( ) -export { IconHighlightTextCursorOutlined as default } +export default IconHighlightTextCursorOutlined diff --git a/src/IconHighlightTextCursorOutlinedFilled.tsx b/src/IconHighlightTextCursorOutlinedFilled.tsx index 355eecbf7..c7c9253a4 100644 --- a/src/IconHighlightTextCursorOutlinedFilled.tsx +++ b/src/IconHighlightTextCursorOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconHighlightTextCursorOutlinedFilled: React.FC = ({ ) -export { IconHighlightTextCursorOutlinedFilled as default } +export default IconHighlightTextCursorOutlinedFilled diff --git a/src/IconHighlightTextCursorRounded.tsx b/src/IconHighlightTextCursorRounded.tsx index f004bab6e..542530402 100644 --- a/src/IconHighlightTextCursorRounded.tsx +++ b/src/IconHighlightTextCursorRounded.tsx @@ -8,4 +8,4 @@ const IconHighlightTextCursorRounded: React.FC = ({ ...props }) => ( ) -export { IconHighlightTextCursorRounded as default } +export default IconHighlightTextCursorRounded diff --git a/src/IconHighlightTextCursorRoundedFilled.tsx b/src/IconHighlightTextCursorRoundedFilled.tsx index 31ccb4274..f0f4137ed 100644 --- a/src/IconHighlightTextCursorRoundedFilled.tsx +++ b/src/IconHighlightTextCursorRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconHighlightTextCursorRoundedFilled: React.FC = ({ ) -export { IconHighlightTextCursorRoundedFilled as default } +export default IconHighlightTextCursorRoundedFilled diff --git a/src/IconHighlightTextCursorSharp.tsx b/src/IconHighlightTextCursorSharp.tsx index cc2e3982f..90b2f3aac 100644 --- a/src/IconHighlightTextCursorSharp.tsx +++ b/src/IconHighlightTextCursorSharp.tsx @@ -8,4 +8,4 @@ const IconHighlightTextCursorSharp: React.FC = ({ ...props }) => ( ) -export { IconHighlightTextCursorSharp as default } +export default IconHighlightTextCursorSharp diff --git a/src/IconHighlightTextCursorSharpFilled.tsx b/src/IconHighlightTextCursorSharpFilled.tsx index 5f5c093ca..87f56e7f8 100644 --- a/src/IconHighlightTextCursorSharpFilled.tsx +++ b/src/IconHighlightTextCursorSharpFilled.tsx @@ -10,4 +10,4 @@ const IconHighlightTextCursorSharpFilled: React.FC = ({ ) -export { IconHighlightTextCursorSharpFilled as default } +export default IconHighlightTextCursorSharpFilled diff --git a/src/IconHighlighterSize1Outlined.tsx b/src/IconHighlighterSize1Outlined.tsx index 943a29642..c431b062c 100644 --- a/src/IconHighlighterSize1Outlined.tsx +++ b/src/IconHighlighterSize1Outlined.tsx @@ -8,4 +8,4 @@ const IconHighlighterSize1Outlined: React.FC = ({ ...props }) => ( ) -export { IconHighlighterSize1Outlined as default } +export default IconHighlighterSize1Outlined diff --git a/src/IconHighlighterSize1OutlinedFilled.tsx b/src/IconHighlighterSize1OutlinedFilled.tsx index 4271e9d38..df37a14f6 100644 --- a/src/IconHighlighterSize1OutlinedFilled.tsx +++ b/src/IconHighlighterSize1OutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconHighlighterSize1OutlinedFilled: React.FC = ({ ) -export { IconHighlighterSize1OutlinedFilled as default } +export default IconHighlighterSize1OutlinedFilled diff --git a/src/IconHighlighterSize1Rounded.tsx b/src/IconHighlighterSize1Rounded.tsx index 5122182ad..b5446ffea 100644 --- a/src/IconHighlighterSize1Rounded.tsx +++ b/src/IconHighlighterSize1Rounded.tsx @@ -8,4 +8,4 @@ const IconHighlighterSize1Rounded: React.FC = ({ ...props }) => ( ) -export { IconHighlighterSize1Rounded as default } +export default IconHighlighterSize1Rounded diff --git a/src/IconHighlighterSize1RoundedFilled.tsx b/src/IconHighlighterSize1RoundedFilled.tsx index 3c2ed6200..fcf4884f8 100644 --- a/src/IconHighlighterSize1RoundedFilled.tsx +++ b/src/IconHighlighterSize1RoundedFilled.tsx @@ -10,4 +10,4 @@ const IconHighlighterSize1RoundedFilled: React.FC = ({ ) -export { IconHighlighterSize1RoundedFilled as default } +export default IconHighlighterSize1RoundedFilled diff --git a/src/IconHighlighterSize1Sharp.tsx b/src/IconHighlighterSize1Sharp.tsx index 86f519732..5755b9820 100644 --- a/src/IconHighlighterSize1Sharp.tsx +++ b/src/IconHighlighterSize1Sharp.tsx @@ -8,4 +8,4 @@ const IconHighlighterSize1Sharp: React.FC = ({ ...props }) => ( ) -export { IconHighlighterSize1Sharp as default } +export default IconHighlighterSize1Sharp diff --git a/src/IconHighlighterSize1SharpFilled.tsx b/src/IconHighlighterSize1SharpFilled.tsx index 6f9f00c18..992c75619 100644 --- a/src/IconHighlighterSize1SharpFilled.tsx +++ b/src/IconHighlighterSize1SharpFilled.tsx @@ -8,4 +8,4 @@ const IconHighlighterSize1SharpFilled: React.FC = ({ ...props }) => ( ) -export { IconHighlighterSize1SharpFilled as default } +export default IconHighlighterSize1SharpFilled diff --git a/src/IconHighlighterSize2Outlined.tsx b/src/IconHighlighterSize2Outlined.tsx index c2bd6cc6b..85c2f2301 100644 --- a/src/IconHighlighterSize2Outlined.tsx +++ b/src/IconHighlighterSize2Outlined.tsx @@ -8,4 +8,4 @@ const IconHighlighterSize2Outlined: React.FC = ({ ...props }) => ( ) -export { IconHighlighterSize2Outlined as default } +export default IconHighlighterSize2Outlined diff --git a/src/IconHighlighterSize2OutlinedFilled.tsx b/src/IconHighlighterSize2OutlinedFilled.tsx index fe9de5137..1057f652a 100644 --- a/src/IconHighlighterSize2OutlinedFilled.tsx +++ b/src/IconHighlighterSize2OutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconHighlighterSize2OutlinedFilled: React.FC = ({ ) -export { IconHighlighterSize2OutlinedFilled as default } +export default IconHighlighterSize2OutlinedFilled diff --git a/src/IconHighlighterSize2Rounded.tsx b/src/IconHighlighterSize2Rounded.tsx index 368249e36..4d3eb496f 100644 --- a/src/IconHighlighterSize2Rounded.tsx +++ b/src/IconHighlighterSize2Rounded.tsx @@ -8,4 +8,4 @@ const IconHighlighterSize2Rounded: React.FC = ({ ...props }) => ( ) -export { IconHighlighterSize2Rounded as default } +export default IconHighlighterSize2Rounded diff --git a/src/IconHighlighterSize2RoundedFilled.tsx b/src/IconHighlighterSize2RoundedFilled.tsx index 328712cd4..77136316c 100644 --- a/src/IconHighlighterSize2RoundedFilled.tsx +++ b/src/IconHighlighterSize2RoundedFilled.tsx @@ -10,4 +10,4 @@ const IconHighlighterSize2RoundedFilled: React.FC = ({ ) -export { IconHighlighterSize2RoundedFilled as default } +export default IconHighlighterSize2RoundedFilled diff --git a/src/IconHighlighterSize2Sharp.tsx b/src/IconHighlighterSize2Sharp.tsx index 2ea001f75..5ebad91b5 100644 --- a/src/IconHighlighterSize2Sharp.tsx +++ b/src/IconHighlighterSize2Sharp.tsx @@ -8,4 +8,4 @@ const IconHighlighterSize2Sharp: React.FC = ({ ...props }) => ( ) -export { IconHighlighterSize2Sharp as default } +export default IconHighlighterSize2Sharp diff --git a/src/IconHighlighterSize2SharpFilled.tsx b/src/IconHighlighterSize2SharpFilled.tsx index bae1be24c..c8a13ded5 100644 --- a/src/IconHighlighterSize2SharpFilled.tsx +++ b/src/IconHighlighterSize2SharpFilled.tsx @@ -8,4 +8,4 @@ const IconHighlighterSize2SharpFilled: React.FC = ({ ...props }) => ( ) -export { IconHighlighterSize2SharpFilled as default } +export default IconHighlighterSize2SharpFilled diff --git a/src/IconHighlighterSize3Outlined.tsx b/src/IconHighlighterSize3Outlined.tsx index 3f02cdaa9..539b43346 100644 --- a/src/IconHighlighterSize3Outlined.tsx +++ b/src/IconHighlighterSize3Outlined.tsx @@ -8,4 +8,4 @@ const IconHighlighterSize3Outlined: React.FC = ({ ...props }) => ( ) -export { IconHighlighterSize3Outlined as default } +export default IconHighlighterSize3Outlined diff --git a/src/IconHighlighterSize3OutlinedFilled.tsx b/src/IconHighlighterSize3OutlinedFilled.tsx index 45b946b3e..41c8f0b01 100644 --- a/src/IconHighlighterSize3OutlinedFilled.tsx +++ b/src/IconHighlighterSize3OutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconHighlighterSize3OutlinedFilled: React.FC = ({ ) -export { IconHighlighterSize3OutlinedFilled as default } +export default IconHighlighterSize3OutlinedFilled diff --git a/src/IconHighlighterSize3Rounded.tsx b/src/IconHighlighterSize3Rounded.tsx index efbe8f742..3e56a1412 100644 --- a/src/IconHighlighterSize3Rounded.tsx +++ b/src/IconHighlighterSize3Rounded.tsx @@ -8,4 +8,4 @@ const IconHighlighterSize3Rounded: React.FC = ({ ...props }) => ( ) -export { IconHighlighterSize3Rounded as default } +export default IconHighlighterSize3Rounded diff --git a/src/IconHighlighterSize3RoundedFilled.tsx b/src/IconHighlighterSize3RoundedFilled.tsx index 056416204..97d3fd9c0 100644 --- a/src/IconHighlighterSize3RoundedFilled.tsx +++ b/src/IconHighlighterSize3RoundedFilled.tsx @@ -10,4 +10,4 @@ const IconHighlighterSize3RoundedFilled: React.FC = ({ ) -export { IconHighlighterSize3RoundedFilled as default } +export default IconHighlighterSize3RoundedFilled diff --git a/src/IconHighlighterSize3Sharp.tsx b/src/IconHighlighterSize3Sharp.tsx index f734725fb..21f99f68c 100644 --- a/src/IconHighlighterSize3Sharp.tsx +++ b/src/IconHighlighterSize3Sharp.tsx @@ -8,4 +8,4 @@ const IconHighlighterSize3Sharp: React.FC = ({ ...props }) => ( ) -export { IconHighlighterSize3Sharp as default } +export default IconHighlighterSize3Sharp diff --git a/src/IconHighlighterSize3SharpFilled.tsx b/src/IconHighlighterSize3SharpFilled.tsx index a036763a7..e742c56e4 100644 --- a/src/IconHighlighterSize3SharpFilled.tsx +++ b/src/IconHighlighterSize3SharpFilled.tsx @@ -8,4 +8,4 @@ const IconHighlighterSize3SharpFilled: React.FC = ({ ...props }) => ( ) -export { IconHighlighterSize3SharpFilled as default } +export default IconHighlighterSize3SharpFilled diff --git a/src/IconHighlighterSize4Outlined.tsx b/src/IconHighlighterSize4Outlined.tsx index 65b91a32b..6ca27269f 100644 --- a/src/IconHighlighterSize4Outlined.tsx +++ b/src/IconHighlighterSize4Outlined.tsx @@ -8,4 +8,4 @@ const IconHighlighterSize4Outlined: React.FC = ({ ...props }) => ( ) -export { IconHighlighterSize4Outlined as default } +export default IconHighlighterSize4Outlined diff --git a/src/IconHighlighterSize4OutlinedFilled.tsx b/src/IconHighlighterSize4OutlinedFilled.tsx index 28f48243c..6333976c8 100644 --- a/src/IconHighlighterSize4OutlinedFilled.tsx +++ b/src/IconHighlighterSize4OutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconHighlighterSize4OutlinedFilled: React.FC = ({ ) -export { IconHighlighterSize4OutlinedFilled as default } +export default IconHighlighterSize4OutlinedFilled diff --git a/src/IconHighlighterSize4Rounded.tsx b/src/IconHighlighterSize4Rounded.tsx index a4f537deb..1a7cdb14d 100644 --- a/src/IconHighlighterSize4Rounded.tsx +++ b/src/IconHighlighterSize4Rounded.tsx @@ -8,4 +8,4 @@ const IconHighlighterSize4Rounded: React.FC = ({ ...props }) => ( ) -export { IconHighlighterSize4Rounded as default } +export default IconHighlighterSize4Rounded diff --git a/src/IconHighlighterSize4RoundedFilled.tsx b/src/IconHighlighterSize4RoundedFilled.tsx index 6b2815b92..361d89cb2 100644 --- a/src/IconHighlighterSize4RoundedFilled.tsx +++ b/src/IconHighlighterSize4RoundedFilled.tsx @@ -10,4 +10,4 @@ const IconHighlighterSize4RoundedFilled: React.FC = ({ ) -export { IconHighlighterSize4RoundedFilled as default } +export default IconHighlighterSize4RoundedFilled diff --git a/src/IconHighlighterSize4Sharp.tsx b/src/IconHighlighterSize4Sharp.tsx index ace5279cf..d943b50af 100644 --- a/src/IconHighlighterSize4Sharp.tsx +++ b/src/IconHighlighterSize4Sharp.tsx @@ -8,4 +8,4 @@ const IconHighlighterSize4Sharp: React.FC = ({ ...props }) => ( ) -export { IconHighlighterSize4Sharp as default } +export default IconHighlighterSize4Sharp diff --git a/src/IconHighlighterSize4SharpFilled.tsx b/src/IconHighlighterSize4SharpFilled.tsx index 87bf5eefb..5e5f499e2 100644 --- a/src/IconHighlighterSize4SharpFilled.tsx +++ b/src/IconHighlighterSize4SharpFilled.tsx @@ -8,4 +8,4 @@ const IconHighlighterSize4SharpFilled: React.FC = ({ ...props }) => ( ) -export { IconHighlighterSize4SharpFilled as default } +export default IconHighlighterSize4SharpFilled diff --git a/src/IconHighlighterSize5Outlined.tsx b/src/IconHighlighterSize5Outlined.tsx index a0bb6d266..d6077946d 100644 --- a/src/IconHighlighterSize5Outlined.tsx +++ b/src/IconHighlighterSize5Outlined.tsx @@ -8,4 +8,4 @@ const IconHighlighterSize5Outlined: React.FC = ({ ...props }) => ( ) -export { IconHighlighterSize5Outlined as default } +export default IconHighlighterSize5Outlined diff --git a/src/IconHighlighterSize5OutlinedFilled.tsx b/src/IconHighlighterSize5OutlinedFilled.tsx index 44c129366..63f553950 100644 --- a/src/IconHighlighterSize5OutlinedFilled.tsx +++ b/src/IconHighlighterSize5OutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconHighlighterSize5OutlinedFilled: React.FC = ({ ) -export { IconHighlighterSize5OutlinedFilled as default } +export default IconHighlighterSize5OutlinedFilled diff --git a/src/IconHighlighterSize5Rounded.tsx b/src/IconHighlighterSize5Rounded.tsx index 3ed542e3a..05988cfcc 100644 --- a/src/IconHighlighterSize5Rounded.tsx +++ b/src/IconHighlighterSize5Rounded.tsx @@ -8,4 +8,4 @@ const IconHighlighterSize5Rounded: React.FC = ({ ...props }) => ( ) -export { IconHighlighterSize5Rounded as default } +export default IconHighlighterSize5Rounded diff --git a/src/IconHighlighterSize5RoundedFilled.tsx b/src/IconHighlighterSize5RoundedFilled.tsx index 9eb232263..e3fe81714 100644 --- a/src/IconHighlighterSize5RoundedFilled.tsx +++ b/src/IconHighlighterSize5RoundedFilled.tsx @@ -10,4 +10,4 @@ const IconHighlighterSize5RoundedFilled: React.FC = ({ ) -export { IconHighlighterSize5RoundedFilled as default } +export default IconHighlighterSize5RoundedFilled diff --git a/src/IconHighlighterSize5Sharp.tsx b/src/IconHighlighterSize5Sharp.tsx index 0c8268df2..e6e9edca8 100644 --- a/src/IconHighlighterSize5Sharp.tsx +++ b/src/IconHighlighterSize5Sharp.tsx @@ -8,4 +8,4 @@ const IconHighlighterSize5Sharp: React.FC = ({ ...props }) => ( ) -export { IconHighlighterSize5Sharp as default } +export default IconHighlighterSize5Sharp diff --git a/src/IconHighlighterSize5SharpFilled.tsx b/src/IconHighlighterSize5SharpFilled.tsx index 0b04deb62..ac5f56ef3 100644 --- a/src/IconHighlighterSize5SharpFilled.tsx +++ b/src/IconHighlighterSize5SharpFilled.tsx @@ -8,4 +8,4 @@ const IconHighlighterSize5SharpFilled: React.FC = ({ ...props }) => ( ) -export { IconHighlighterSize5SharpFilled as default } +export default IconHighlighterSize5SharpFilled diff --git a/src/IconHikingOutlined.tsx b/src/IconHikingOutlined.tsx index da252b9b5..8a3d572fc 100644 --- a/src/IconHikingOutlined.tsx +++ b/src/IconHikingOutlined.tsx @@ -8,4 +8,4 @@ const IconHikingOutlined: React.FC = ({ ...props }) => ( ) -export { IconHikingOutlined as default } +export default IconHikingOutlined diff --git a/src/IconHikingOutlinedFilled.tsx b/src/IconHikingOutlinedFilled.tsx index ed3b82c22..5b0fbc5c0 100644 --- a/src/IconHikingOutlinedFilled.tsx +++ b/src/IconHikingOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconHikingOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconHikingOutlinedFilled as default } +export default IconHikingOutlinedFilled diff --git a/src/IconHikingRounded.tsx b/src/IconHikingRounded.tsx index 171bca5c2..fd27886a4 100644 --- a/src/IconHikingRounded.tsx +++ b/src/IconHikingRounded.tsx @@ -8,4 +8,4 @@ const IconHikingRounded: React.FC = ({ ...props }) => ( ) -export { IconHikingRounded as default } +export default IconHikingRounded diff --git a/src/IconHikingRoundedFilled.tsx b/src/IconHikingRoundedFilled.tsx index c8f9f057e..9374cb022 100644 --- a/src/IconHikingRoundedFilled.tsx +++ b/src/IconHikingRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconHikingRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconHikingRoundedFilled as default } +export default IconHikingRoundedFilled diff --git a/src/IconHikingSharp.tsx b/src/IconHikingSharp.tsx index 0f1118186..d39f1da5b 100644 --- a/src/IconHikingSharp.tsx +++ b/src/IconHikingSharp.tsx @@ -8,4 +8,4 @@ const IconHikingSharp: React.FC = ({ ...props }) => ( ) -export { IconHikingSharp as default } +export default IconHikingSharp diff --git a/src/IconHikingSharpFilled.tsx b/src/IconHikingSharpFilled.tsx index f42faa0d8..f9e465f63 100644 --- a/src/IconHikingSharpFilled.tsx +++ b/src/IconHikingSharpFilled.tsx @@ -8,4 +8,4 @@ const IconHikingSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconHikingSharpFilled as default } +export default IconHikingSharpFilled diff --git a/src/IconHistoryEduOutlined.tsx b/src/IconHistoryEduOutlined.tsx index dcb9c68fc..3ebac9b42 100644 --- a/src/IconHistoryEduOutlined.tsx +++ b/src/IconHistoryEduOutlined.tsx @@ -8,4 +8,4 @@ const IconHistoryEduOutlined: React.FC = ({ ...props }) => ( ) -export { IconHistoryEduOutlined as default } +export default IconHistoryEduOutlined diff --git a/src/IconHistoryEduOutlinedFilled.tsx b/src/IconHistoryEduOutlinedFilled.tsx index b3b6e05b2..2490e58c6 100644 --- a/src/IconHistoryEduOutlinedFilled.tsx +++ b/src/IconHistoryEduOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconHistoryEduOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconHistoryEduOutlinedFilled as default } +export default IconHistoryEduOutlinedFilled diff --git a/src/IconHistoryEduRounded.tsx b/src/IconHistoryEduRounded.tsx index 3db67268e..b5be6e488 100644 --- a/src/IconHistoryEduRounded.tsx +++ b/src/IconHistoryEduRounded.tsx @@ -8,4 +8,4 @@ const IconHistoryEduRounded: React.FC = ({ ...props }) => ( ) -export { IconHistoryEduRounded as default } +export default IconHistoryEduRounded diff --git a/src/IconHistoryEduRoundedFilled.tsx b/src/IconHistoryEduRoundedFilled.tsx index 79726a8bb..97bcebd92 100644 --- a/src/IconHistoryEduRoundedFilled.tsx +++ b/src/IconHistoryEduRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconHistoryEduRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconHistoryEduRoundedFilled as default } +export default IconHistoryEduRoundedFilled diff --git a/src/IconHistoryEduSharp.tsx b/src/IconHistoryEduSharp.tsx index 00e6440aa..5f87d180c 100644 --- a/src/IconHistoryEduSharp.tsx +++ b/src/IconHistoryEduSharp.tsx @@ -8,4 +8,4 @@ const IconHistoryEduSharp: React.FC = ({ ...props }) => ( ) -export { IconHistoryEduSharp as default } +export default IconHistoryEduSharp diff --git a/src/IconHistoryEduSharpFilled.tsx b/src/IconHistoryEduSharpFilled.tsx index 3c136bc23..4155dc02f 100644 --- a/src/IconHistoryEduSharpFilled.tsx +++ b/src/IconHistoryEduSharpFilled.tsx @@ -8,4 +8,4 @@ const IconHistoryEduSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconHistoryEduSharpFilled as default } +export default IconHistoryEduSharpFilled diff --git a/src/IconHistoryOffOutlined.tsx b/src/IconHistoryOffOutlined.tsx index 2785f5f8c..351e3d82f 100644 --- a/src/IconHistoryOffOutlined.tsx +++ b/src/IconHistoryOffOutlined.tsx @@ -8,4 +8,4 @@ const IconHistoryOffOutlined: React.FC = ({ ...props }) => ( ) -export { IconHistoryOffOutlined as default } +export default IconHistoryOffOutlined diff --git a/src/IconHistoryOffOutlinedFilled.tsx b/src/IconHistoryOffOutlinedFilled.tsx index 327dd4f1b..3330b49d6 100644 --- a/src/IconHistoryOffOutlinedFilled.tsx +++ b/src/IconHistoryOffOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconHistoryOffOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconHistoryOffOutlinedFilled as default } +export default IconHistoryOffOutlinedFilled diff --git a/src/IconHistoryOffRounded.tsx b/src/IconHistoryOffRounded.tsx index a14ca8572..5451e3afb 100644 --- a/src/IconHistoryOffRounded.tsx +++ b/src/IconHistoryOffRounded.tsx @@ -8,4 +8,4 @@ const IconHistoryOffRounded: React.FC = ({ ...props }) => ( ) -export { IconHistoryOffRounded as default } +export default IconHistoryOffRounded diff --git a/src/IconHistoryOffRoundedFilled.tsx b/src/IconHistoryOffRoundedFilled.tsx index 38759b9ae..5d3ec714c 100644 --- a/src/IconHistoryOffRoundedFilled.tsx +++ b/src/IconHistoryOffRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconHistoryOffRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconHistoryOffRoundedFilled as default } +export default IconHistoryOffRoundedFilled diff --git a/src/IconHistoryOffSharp.tsx b/src/IconHistoryOffSharp.tsx index f94bfc8f5..4b763fa60 100644 --- a/src/IconHistoryOffSharp.tsx +++ b/src/IconHistoryOffSharp.tsx @@ -8,4 +8,4 @@ const IconHistoryOffSharp: React.FC = ({ ...props }) => ( ) -export { IconHistoryOffSharp as default } +export default IconHistoryOffSharp diff --git a/src/IconHistoryOffSharpFilled.tsx b/src/IconHistoryOffSharpFilled.tsx index 80fc3c79d..c460b80b4 100644 --- a/src/IconHistoryOffSharpFilled.tsx +++ b/src/IconHistoryOffSharpFilled.tsx @@ -8,4 +8,4 @@ const IconHistoryOffSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconHistoryOffSharpFilled as default } +export default IconHistoryOffSharpFilled diff --git a/src/IconHistoryOutlined.tsx b/src/IconHistoryOutlined.tsx index 3c8d65de5..840c6a23f 100644 --- a/src/IconHistoryOutlined.tsx +++ b/src/IconHistoryOutlined.tsx @@ -8,4 +8,4 @@ const IconHistoryOutlined: React.FC = ({ ...props }) => ( ) -export { IconHistoryOutlined as default } +export default IconHistoryOutlined diff --git a/src/IconHistoryOutlinedFilled.tsx b/src/IconHistoryOutlinedFilled.tsx index 8cc4d8405..cd630e532 100644 --- a/src/IconHistoryOutlinedFilled.tsx +++ b/src/IconHistoryOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconHistoryOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconHistoryOutlinedFilled as default } +export default IconHistoryOutlinedFilled diff --git a/src/IconHistoryRounded.tsx b/src/IconHistoryRounded.tsx index aeb7733ce..6dfbed146 100644 --- a/src/IconHistoryRounded.tsx +++ b/src/IconHistoryRounded.tsx @@ -8,4 +8,4 @@ const IconHistoryRounded: React.FC = ({ ...props }) => ( ) -export { IconHistoryRounded as default } +export default IconHistoryRounded diff --git a/src/IconHistoryRoundedFilled.tsx b/src/IconHistoryRoundedFilled.tsx index 7597bd28f..299ae0dad 100644 --- a/src/IconHistoryRoundedFilled.tsx +++ b/src/IconHistoryRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconHistoryRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconHistoryRoundedFilled as default } +export default IconHistoryRoundedFilled diff --git a/src/IconHistorySharp.tsx b/src/IconHistorySharp.tsx index bc2a0a96d..eeb5278e9 100644 --- a/src/IconHistorySharp.tsx +++ b/src/IconHistorySharp.tsx @@ -8,4 +8,4 @@ const IconHistorySharp: React.FC = ({ ...props }) => ( ) -export { IconHistorySharp as default } +export default IconHistorySharp diff --git a/src/IconHistorySharpFilled.tsx b/src/IconHistorySharpFilled.tsx index 8f41c75bd..ebc007201 100644 --- a/src/IconHistorySharpFilled.tsx +++ b/src/IconHistorySharpFilled.tsx @@ -8,4 +8,4 @@ const IconHistorySharpFilled: React.FC = ({ ...props }) => ( ) -export { IconHistorySharpFilled as default } +export default IconHistorySharpFilled diff --git a/src/IconHistoryToggleOffOutlined.tsx b/src/IconHistoryToggleOffOutlined.tsx index a285b4201..e92207a73 100644 --- a/src/IconHistoryToggleOffOutlined.tsx +++ b/src/IconHistoryToggleOffOutlined.tsx @@ -8,4 +8,4 @@ const IconHistoryToggleOffOutlined: React.FC = ({ ...props }) => ( ) -export { IconHistoryToggleOffOutlined as default } +export default IconHistoryToggleOffOutlined diff --git a/src/IconHistoryToggleOffOutlinedFilled.tsx b/src/IconHistoryToggleOffOutlinedFilled.tsx index 568bc3d40..fa24b5818 100644 --- a/src/IconHistoryToggleOffOutlinedFilled.tsx +++ b/src/IconHistoryToggleOffOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconHistoryToggleOffOutlinedFilled: React.FC = ({ ) -export { IconHistoryToggleOffOutlinedFilled as default } +export default IconHistoryToggleOffOutlinedFilled diff --git a/src/IconHistoryToggleOffRounded.tsx b/src/IconHistoryToggleOffRounded.tsx index f3cff18ea..1a52f41ce 100644 --- a/src/IconHistoryToggleOffRounded.tsx +++ b/src/IconHistoryToggleOffRounded.tsx @@ -8,4 +8,4 @@ const IconHistoryToggleOffRounded: React.FC = ({ ...props }) => ( ) -export { IconHistoryToggleOffRounded as default } +export default IconHistoryToggleOffRounded diff --git a/src/IconHistoryToggleOffRoundedFilled.tsx b/src/IconHistoryToggleOffRoundedFilled.tsx index a5182f249..434b84fb7 100644 --- a/src/IconHistoryToggleOffRoundedFilled.tsx +++ b/src/IconHistoryToggleOffRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconHistoryToggleOffRoundedFilled: React.FC = ({ ) -export { IconHistoryToggleOffRoundedFilled as default } +export default IconHistoryToggleOffRoundedFilled diff --git a/src/IconHistoryToggleOffSharp.tsx b/src/IconHistoryToggleOffSharp.tsx index 31189ee6f..6834008d8 100644 --- a/src/IconHistoryToggleOffSharp.tsx +++ b/src/IconHistoryToggleOffSharp.tsx @@ -8,4 +8,4 @@ const IconHistoryToggleOffSharp: React.FC = ({ ...props }) => ( ) -export { IconHistoryToggleOffSharp as default } +export default IconHistoryToggleOffSharp diff --git a/src/IconHistoryToggleOffSharpFilled.tsx b/src/IconHistoryToggleOffSharpFilled.tsx index 2ed5edb88..b68858492 100644 --- a/src/IconHistoryToggleOffSharpFilled.tsx +++ b/src/IconHistoryToggleOffSharpFilled.tsx @@ -8,4 +8,4 @@ const IconHistoryToggleOffSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconHistoryToggleOffSharpFilled as default } +export default IconHistoryToggleOffSharpFilled diff --git a/src/IconHiveOutlined.tsx b/src/IconHiveOutlined.tsx index c5ad59951..9d9599074 100644 --- a/src/IconHiveOutlined.tsx +++ b/src/IconHiveOutlined.tsx @@ -8,4 +8,4 @@ const IconHiveOutlined: React.FC = ({ ...props }) => ( ) -export { IconHiveOutlined as default } +export default IconHiveOutlined diff --git a/src/IconHiveOutlinedFilled.tsx b/src/IconHiveOutlinedFilled.tsx index a1c4daca4..3be30aaff 100644 --- a/src/IconHiveOutlinedFilled.tsx +++ b/src/IconHiveOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconHiveOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconHiveOutlinedFilled as default } +export default IconHiveOutlinedFilled diff --git a/src/IconHiveRounded.tsx b/src/IconHiveRounded.tsx index 63817c3e8..eb1960c97 100644 --- a/src/IconHiveRounded.tsx +++ b/src/IconHiveRounded.tsx @@ -8,4 +8,4 @@ const IconHiveRounded: React.FC = ({ ...props }) => ( ) -export { IconHiveRounded as default } +export default IconHiveRounded diff --git a/src/IconHiveRoundedFilled.tsx b/src/IconHiveRoundedFilled.tsx index 991e14d1c..8d6c4f1fe 100644 --- a/src/IconHiveRoundedFilled.tsx +++ b/src/IconHiveRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconHiveRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconHiveRoundedFilled as default } +export default IconHiveRoundedFilled diff --git a/src/IconHiveSharp.tsx b/src/IconHiveSharp.tsx index 2c1b96ca3..5b2fda7da 100644 --- a/src/IconHiveSharp.tsx +++ b/src/IconHiveSharp.tsx @@ -8,4 +8,4 @@ const IconHiveSharp: React.FC = ({ ...props }) => ( ) -export { IconHiveSharp as default } +export default IconHiveSharp diff --git a/src/IconHiveSharpFilled.tsx b/src/IconHiveSharpFilled.tsx index 0f459b73b..767795b82 100644 --- a/src/IconHiveSharpFilled.tsx +++ b/src/IconHiveSharpFilled.tsx @@ -8,4 +8,4 @@ const IconHiveSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconHiveSharpFilled as default } +export default IconHiveSharpFilled diff --git a/src/IconHlsOffOutlined.tsx b/src/IconHlsOffOutlined.tsx index 873168f03..fea5515a5 100644 --- a/src/IconHlsOffOutlined.tsx +++ b/src/IconHlsOffOutlined.tsx @@ -8,4 +8,4 @@ const IconHlsOffOutlined: React.FC = ({ ...props }) => ( ) -export { IconHlsOffOutlined as default } +export default IconHlsOffOutlined diff --git a/src/IconHlsOffOutlinedFilled.tsx b/src/IconHlsOffOutlinedFilled.tsx index ff52c307f..f23570d92 100644 --- a/src/IconHlsOffOutlinedFilled.tsx +++ b/src/IconHlsOffOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconHlsOffOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconHlsOffOutlinedFilled as default } +export default IconHlsOffOutlinedFilled diff --git a/src/IconHlsOffRounded.tsx b/src/IconHlsOffRounded.tsx index 8434c41e3..aa775f664 100644 --- a/src/IconHlsOffRounded.tsx +++ b/src/IconHlsOffRounded.tsx @@ -8,4 +8,4 @@ const IconHlsOffRounded: React.FC = ({ ...props }) => ( ) -export { IconHlsOffRounded as default } +export default IconHlsOffRounded diff --git a/src/IconHlsOffRoundedFilled.tsx b/src/IconHlsOffRoundedFilled.tsx index dfc9c77fa..93292e7ac 100644 --- a/src/IconHlsOffRoundedFilled.tsx +++ b/src/IconHlsOffRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconHlsOffRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconHlsOffRoundedFilled as default } +export default IconHlsOffRoundedFilled diff --git a/src/IconHlsOffSharp.tsx b/src/IconHlsOffSharp.tsx index c69e11672..d79489e33 100644 --- a/src/IconHlsOffSharp.tsx +++ b/src/IconHlsOffSharp.tsx @@ -8,4 +8,4 @@ const IconHlsOffSharp: React.FC = ({ ...props }) => ( ) -export { IconHlsOffSharp as default } +export default IconHlsOffSharp diff --git a/src/IconHlsOffSharpFilled.tsx b/src/IconHlsOffSharpFilled.tsx index 2b574734d..c7c7d6604 100644 --- a/src/IconHlsOffSharpFilled.tsx +++ b/src/IconHlsOffSharpFilled.tsx @@ -8,4 +8,4 @@ const IconHlsOffSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconHlsOffSharpFilled as default } +export default IconHlsOffSharpFilled diff --git a/src/IconHlsOutlined.tsx b/src/IconHlsOutlined.tsx index 2066d1926..566915c54 100644 --- a/src/IconHlsOutlined.tsx +++ b/src/IconHlsOutlined.tsx @@ -8,4 +8,4 @@ const IconHlsOutlined: React.FC = ({ ...props }) => ( ) -export { IconHlsOutlined as default } +export default IconHlsOutlined diff --git a/src/IconHlsOutlinedFilled.tsx b/src/IconHlsOutlinedFilled.tsx index c115d5fcf..af06ac8b0 100644 --- a/src/IconHlsOutlinedFilled.tsx +++ b/src/IconHlsOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconHlsOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconHlsOutlinedFilled as default } +export default IconHlsOutlinedFilled diff --git a/src/IconHlsRounded.tsx b/src/IconHlsRounded.tsx index 721ce5573..13725af34 100644 --- a/src/IconHlsRounded.tsx +++ b/src/IconHlsRounded.tsx @@ -8,4 +8,4 @@ const IconHlsRounded: React.FC = ({ ...props }) => ( ) -export { IconHlsRounded as default } +export default IconHlsRounded diff --git a/src/IconHlsRoundedFilled.tsx b/src/IconHlsRoundedFilled.tsx index 85949c027..93d70f638 100644 --- a/src/IconHlsRoundedFilled.tsx +++ b/src/IconHlsRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconHlsRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconHlsRoundedFilled as default } +export default IconHlsRoundedFilled diff --git a/src/IconHlsSharp.tsx b/src/IconHlsSharp.tsx index e3887d28b..d7024f44d 100644 --- a/src/IconHlsSharp.tsx +++ b/src/IconHlsSharp.tsx @@ -8,4 +8,4 @@ const IconHlsSharp: React.FC = ({ ...props }) => ( ) -export { IconHlsSharp as default } +export default IconHlsSharp diff --git a/src/IconHlsSharpFilled.tsx b/src/IconHlsSharpFilled.tsx index 1825bc567..b64ef8db1 100644 --- a/src/IconHlsSharpFilled.tsx +++ b/src/IconHlsSharpFilled.tsx @@ -8,4 +8,4 @@ const IconHlsSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconHlsSharpFilled as default } +export default IconHlsSharpFilled diff --git a/src/IconHolidayVillageOutlined.tsx b/src/IconHolidayVillageOutlined.tsx index 6fa12ae47..cfa10273b 100644 --- a/src/IconHolidayVillageOutlined.tsx +++ b/src/IconHolidayVillageOutlined.tsx @@ -8,4 +8,4 @@ const IconHolidayVillageOutlined: React.FC = ({ ...props }) => ( ) -export { IconHolidayVillageOutlined as default } +export default IconHolidayVillageOutlined diff --git a/src/IconHolidayVillageOutlinedFilled.tsx b/src/IconHolidayVillageOutlinedFilled.tsx index e6d062b62..df6d31a53 100644 --- a/src/IconHolidayVillageOutlinedFilled.tsx +++ b/src/IconHolidayVillageOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconHolidayVillageOutlinedFilled: React.FC = ({ ) -export { IconHolidayVillageOutlinedFilled as default } +export default IconHolidayVillageOutlinedFilled diff --git a/src/IconHolidayVillageRounded.tsx b/src/IconHolidayVillageRounded.tsx index fe8913574..21fde7cc7 100644 --- a/src/IconHolidayVillageRounded.tsx +++ b/src/IconHolidayVillageRounded.tsx @@ -8,4 +8,4 @@ const IconHolidayVillageRounded: React.FC = ({ ...props }) => ( ) -export { IconHolidayVillageRounded as default } +export default IconHolidayVillageRounded diff --git a/src/IconHolidayVillageRoundedFilled.tsx b/src/IconHolidayVillageRoundedFilled.tsx index 11056d1e5..c393fa94e 100644 --- a/src/IconHolidayVillageRoundedFilled.tsx +++ b/src/IconHolidayVillageRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconHolidayVillageRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconHolidayVillageRoundedFilled as default } +export default IconHolidayVillageRoundedFilled diff --git a/src/IconHolidayVillageSharp.tsx b/src/IconHolidayVillageSharp.tsx index 5964a0822..9bc2d6d01 100644 --- a/src/IconHolidayVillageSharp.tsx +++ b/src/IconHolidayVillageSharp.tsx @@ -8,4 +8,4 @@ const IconHolidayVillageSharp: React.FC = ({ ...props }) => ( ) -export { IconHolidayVillageSharp as default } +export default IconHolidayVillageSharp diff --git a/src/IconHolidayVillageSharpFilled.tsx b/src/IconHolidayVillageSharpFilled.tsx index 6cf567b21..153c15ad0 100644 --- a/src/IconHolidayVillageSharpFilled.tsx +++ b/src/IconHolidayVillageSharpFilled.tsx @@ -8,4 +8,4 @@ const IconHolidayVillageSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconHolidayVillageSharpFilled as default } +export default IconHolidayVillageSharpFilled diff --git a/src/IconHomeAndGardenOutlined.tsx b/src/IconHomeAndGardenOutlined.tsx index 9c57a8678..1960acc3d 100644 --- a/src/IconHomeAndGardenOutlined.tsx +++ b/src/IconHomeAndGardenOutlined.tsx @@ -8,4 +8,4 @@ const IconHomeAndGardenOutlined: React.FC = ({ ...props }) => ( ) -export { IconHomeAndGardenOutlined as default } +export default IconHomeAndGardenOutlined diff --git a/src/IconHomeAndGardenOutlinedFilled.tsx b/src/IconHomeAndGardenOutlinedFilled.tsx index b2bc8edb7..5263d6b65 100644 --- a/src/IconHomeAndGardenOutlinedFilled.tsx +++ b/src/IconHomeAndGardenOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconHomeAndGardenOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconHomeAndGardenOutlinedFilled as default } +export default IconHomeAndGardenOutlinedFilled diff --git a/src/IconHomeAndGardenRounded.tsx b/src/IconHomeAndGardenRounded.tsx index 031c63177..dd1760d6c 100644 --- a/src/IconHomeAndGardenRounded.tsx +++ b/src/IconHomeAndGardenRounded.tsx @@ -8,4 +8,4 @@ const IconHomeAndGardenRounded: React.FC = ({ ...props }) => ( ) -export { IconHomeAndGardenRounded as default } +export default IconHomeAndGardenRounded diff --git a/src/IconHomeAndGardenRoundedFilled.tsx b/src/IconHomeAndGardenRoundedFilled.tsx index 74d00a1a3..ec9b1be6b 100644 --- a/src/IconHomeAndGardenRoundedFilled.tsx +++ b/src/IconHomeAndGardenRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconHomeAndGardenRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconHomeAndGardenRoundedFilled as default } +export default IconHomeAndGardenRoundedFilled diff --git a/src/IconHomeAndGardenSharp.tsx b/src/IconHomeAndGardenSharp.tsx index 478d08289..23b420bb5 100644 --- a/src/IconHomeAndGardenSharp.tsx +++ b/src/IconHomeAndGardenSharp.tsx @@ -8,4 +8,4 @@ const IconHomeAndGardenSharp: React.FC = ({ ...props }) => ( ) -export { IconHomeAndGardenSharp as default } +export default IconHomeAndGardenSharp diff --git a/src/IconHomeAndGardenSharpFilled.tsx b/src/IconHomeAndGardenSharpFilled.tsx index 8062e384c..bf362466c 100644 --- a/src/IconHomeAndGardenSharpFilled.tsx +++ b/src/IconHomeAndGardenSharpFilled.tsx @@ -8,4 +8,4 @@ const IconHomeAndGardenSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconHomeAndGardenSharpFilled as default } +export default IconHomeAndGardenSharpFilled diff --git a/src/IconHomeAppLogoOutlined.tsx b/src/IconHomeAppLogoOutlined.tsx index 37bd69a7d..07001f971 100644 --- a/src/IconHomeAppLogoOutlined.tsx +++ b/src/IconHomeAppLogoOutlined.tsx @@ -8,4 +8,4 @@ const IconHomeAppLogoOutlined: React.FC = ({ ...props }) => ( ) -export { IconHomeAppLogoOutlined as default } +export default IconHomeAppLogoOutlined diff --git a/src/IconHomeAppLogoOutlinedFilled.tsx b/src/IconHomeAppLogoOutlinedFilled.tsx index 0138bdf4a..d11c32124 100644 --- a/src/IconHomeAppLogoOutlinedFilled.tsx +++ b/src/IconHomeAppLogoOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconHomeAppLogoOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconHomeAppLogoOutlinedFilled as default } +export default IconHomeAppLogoOutlinedFilled diff --git a/src/IconHomeAppLogoRounded.tsx b/src/IconHomeAppLogoRounded.tsx index 1df37ac54..6ac3e33e1 100644 --- a/src/IconHomeAppLogoRounded.tsx +++ b/src/IconHomeAppLogoRounded.tsx @@ -8,4 +8,4 @@ const IconHomeAppLogoRounded: React.FC = ({ ...props }) => ( ) -export { IconHomeAppLogoRounded as default } +export default IconHomeAppLogoRounded diff --git a/src/IconHomeAppLogoRoundedFilled.tsx b/src/IconHomeAppLogoRoundedFilled.tsx index 6b97453e2..b5e1887aa 100644 --- a/src/IconHomeAppLogoRoundedFilled.tsx +++ b/src/IconHomeAppLogoRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconHomeAppLogoRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconHomeAppLogoRoundedFilled as default } +export default IconHomeAppLogoRoundedFilled diff --git a/src/IconHomeAppLogoSharp.tsx b/src/IconHomeAppLogoSharp.tsx index 3fc0b3ee8..d12ee9b6f 100644 --- a/src/IconHomeAppLogoSharp.tsx +++ b/src/IconHomeAppLogoSharp.tsx @@ -8,4 +8,4 @@ const IconHomeAppLogoSharp: React.FC = ({ ...props }) => ( ) -export { IconHomeAppLogoSharp as default } +export default IconHomeAppLogoSharp diff --git a/src/IconHomeAppLogoSharpFilled.tsx b/src/IconHomeAppLogoSharpFilled.tsx index 3b7fbceaa..b6c5dd687 100644 --- a/src/IconHomeAppLogoSharpFilled.tsx +++ b/src/IconHomeAppLogoSharpFilled.tsx @@ -8,4 +8,4 @@ const IconHomeAppLogoSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconHomeAppLogoSharpFilled as default } +export default IconHomeAppLogoSharpFilled diff --git a/src/IconHomeHealthOutlined.tsx b/src/IconHomeHealthOutlined.tsx index f1ac2509c..6eb5a759a 100644 --- a/src/IconHomeHealthOutlined.tsx +++ b/src/IconHomeHealthOutlined.tsx @@ -8,4 +8,4 @@ const IconHomeHealthOutlined: React.FC = ({ ...props }) => ( ) -export { IconHomeHealthOutlined as default } +export default IconHomeHealthOutlined diff --git a/src/IconHomeHealthOutlinedFilled.tsx b/src/IconHomeHealthOutlinedFilled.tsx index 1b8c9e860..41f446271 100644 --- a/src/IconHomeHealthOutlinedFilled.tsx +++ b/src/IconHomeHealthOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconHomeHealthOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconHomeHealthOutlinedFilled as default } +export default IconHomeHealthOutlinedFilled diff --git a/src/IconHomeHealthRounded.tsx b/src/IconHomeHealthRounded.tsx index 760fea34c..6db7186b2 100644 --- a/src/IconHomeHealthRounded.tsx +++ b/src/IconHomeHealthRounded.tsx @@ -8,4 +8,4 @@ const IconHomeHealthRounded: React.FC = ({ ...props }) => ( ) -export { IconHomeHealthRounded as default } +export default IconHomeHealthRounded diff --git a/src/IconHomeHealthRoundedFilled.tsx b/src/IconHomeHealthRoundedFilled.tsx index fb0647a89..f617eaecc 100644 --- a/src/IconHomeHealthRoundedFilled.tsx +++ b/src/IconHomeHealthRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconHomeHealthRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconHomeHealthRoundedFilled as default } +export default IconHomeHealthRoundedFilled diff --git a/src/IconHomeHealthSharp.tsx b/src/IconHomeHealthSharp.tsx index 8e5eebe99..7e2ef4522 100644 --- a/src/IconHomeHealthSharp.tsx +++ b/src/IconHomeHealthSharp.tsx @@ -8,4 +8,4 @@ const IconHomeHealthSharp: React.FC = ({ ...props }) => ( ) -export { IconHomeHealthSharp as default } +export default IconHomeHealthSharp diff --git a/src/IconHomeHealthSharpFilled.tsx b/src/IconHomeHealthSharpFilled.tsx index 40fec8eef..cf14856cb 100644 --- a/src/IconHomeHealthSharpFilled.tsx +++ b/src/IconHomeHealthSharpFilled.tsx @@ -8,4 +8,4 @@ const IconHomeHealthSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconHomeHealthSharpFilled as default } +export default IconHomeHealthSharpFilled diff --git a/src/IconHomeImprovementAndToolsOutlined.tsx b/src/IconHomeImprovementAndToolsOutlined.tsx index 4a6cb1d39..d95cd9561 100644 --- a/src/IconHomeImprovementAndToolsOutlined.tsx +++ b/src/IconHomeImprovementAndToolsOutlined.tsx @@ -10,4 +10,4 @@ const IconHomeImprovementAndToolsOutlined: React.FC = ({ ) -export { IconHomeImprovementAndToolsOutlined as default } +export default IconHomeImprovementAndToolsOutlined diff --git a/src/IconHomeImprovementAndToolsOutlinedFilled.tsx b/src/IconHomeImprovementAndToolsOutlinedFilled.tsx index fbcc7cb71..8a132ed2c 100644 --- a/src/IconHomeImprovementAndToolsOutlinedFilled.tsx +++ b/src/IconHomeImprovementAndToolsOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconHomeImprovementAndToolsOutlinedFilled: React.FC = ({ ) -export { IconHomeImprovementAndToolsOutlinedFilled as default } +export default IconHomeImprovementAndToolsOutlinedFilled diff --git a/src/IconHomeImprovementAndToolsRounded.tsx b/src/IconHomeImprovementAndToolsRounded.tsx index 7380d7b01..930d4303e 100644 --- a/src/IconHomeImprovementAndToolsRounded.tsx +++ b/src/IconHomeImprovementAndToolsRounded.tsx @@ -10,4 +10,4 @@ const IconHomeImprovementAndToolsRounded: React.FC = ({ ) -export { IconHomeImprovementAndToolsRounded as default } +export default IconHomeImprovementAndToolsRounded diff --git a/src/IconHomeImprovementAndToolsRoundedFilled.tsx b/src/IconHomeImprovementAndToolsRoundedFilled.tsx index f395f0cd2..861d8f91c 100644 --- a/src/IconHomeImprovementAndToolsRoundedFilled.tsx +++ b/src/IconHomeImprovementAndToolsRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconHomeImprovementAndToolsRoundedFilled: React.FC = ({ ) -export { IconHomeImprovementAndToolsRoundedFilled as default } +export default IconHomeImprovementAndToolsRoundedFilled diff --git a/src/IconHomeImprovementAndToolsSharp.tsx b/src/IconHomeImprovementAndToolsSharp.tsx index 61f6c9ce4..8908a0497 100644 --- a/src/IconHomeImprovementAndToolsSharp.tsx +++ b/src/IconHomeImprovementAndToolsSharp.tsx @@ -10,4 +10,4 @@ const IconHomeImprovementAndToolsSharp: React.FC = ({ ) -export { IconHomeImprovementAndToolsSharp as default } +export default IconHomeImprovementAndToolsSharp diff --git a/src/IconHomeImprovementAndToolsSharpFilled.tsx b/src/IconHomeImprovementAndToolsSharpFilled.tsx index 7955eb68d..e97143b11 100644 --- a/src/IconHomeImprovementAndToolsSharpFilled.tsx +++ b/src/IconHomeImprovementAndToolsSharpFilled.tsx @@ -10,4 +10,4 @@ const IconHomeImprovementAndToolsSharpFilled: React.FC = ({ ) -export { IconHomeImprovementAndToolsSharpFilled as default } +export default IconHomeImprovementAndToolsSharpFilled diff --git a/src/IconHomeIotDeviceOutlined.tsx b/src/IconHomeIotDeviceOutlined.tsx index 031370712..f8a25a5cf 100644 --- a/src/IconHomeIotDeviceOutlined.tsx +++ b/src/IconHomeIotDeviceOutlined.tsx @@ -8,4 +8,4 @@ const IconHomeIotDeviceOutlined: React.FC = ({ ...props }) => ( ) -export { IconHomeIotDeviceOutlined as default } +export default IconHomeIotDeviceOutlined diff --git a/src/IconHomeIotDeviceOutlinedFilled.tsx b/src/IconHomeIotDeviceOutlinedFilled.tsx index 3e6839671..bf518fc6e 100644 --- a/src/IconHomeIotDeviceOutlinedFilled.tsx +++ b/src/IconHomeIotDeviceOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconHomeIotDeviceOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconHomeIotDeviceOutlinedFilled as default } +export default IconHomeIotDeviceOutlinedFilled diff --git a/src/IconHomeIotDeviceRounded.tsx b/src/IconHomeIotDeviceRounded.tsx index 430899689..87ed8f487 100644 --- a/src/IconHomeIotDeviceRounded.tsx +++ b/src/IconHomeIotDeviceRounded.tsx @@ -8,4 +8,4 @@ const IconHomeIotDeviceRounded: React.FC = ({ ...props }) => ( ) -export { IconHomeIotDeviceRounded as default } +export default IconHomeIotDeviceRounded diff --git a/src/IconHomeIotDeviceRoundedFilled.tsx b/src/IconHomeIotDeviceRoundedFilled.tsx index 48368f72e..dd808aab2 100644 --- a/src/IconHomeIotDeviceRoundedFilled.tsx +++ b/src/IconHomeIotDeviceRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconHomeIotDeviceRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconHomeIotDeviceRoundedFilled as default } +export default IconHomeIotDeviceRoundedFilled diff --git a/src/IconHomeIotDeviceSharp.tsx b/src/IconHomeIotDeviceSharp.tsx index 0b25deff5..f531fcb60 100644 --- a/src/IconHomeIotDeviceSharp.tsx +++ b/src/IconHomeIotDeviceSharp.tsx @@ -8,4 +8,4 @@ const IconHomeIotDeviceSharp: React.FC = ({ ...props }) => ( ) -export { IconHomeIotDeviceSharp as default } +export default IconHomeIotDeviceSharp diff --git a/src/IconHomeIotDeviceSharpFilled.tsx b/src/IconHomeIotDeviceSharpFilled.tsx index 12c4a4699..9606baec5 100644 --- a/src/IconHomeIotDeviceSharpFilled.tsx +++ b/src/IconHomeIotDeviceSharpFilled.tsx @@ -8,4 +8,4 @@ const IconHomeIotDeviceSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconHomeIotDeviceSharpFilled as default } +export default IconHomeIotDeviceSharpFilled diff --git a/src/IconHomeMaxDotsOutlined.tsx b/src/IconHomeMaxDotsOutlined.tsx index 518d5b345..cfb888cc3 100644 --- a/src/IconHomeMaxDotsOutlined.tsx +++ b/src/IconHomeMaxDotsOutlined.tsx @@ -8,4 +8,4 @@ const IconHomeMaxDotsOutlined: React.FC = ({ ...props }) => ( ) -export { IconHomeMaxDotsOutlined as default } +export default IconHomeMaxDotsOutlined diff --git a/src/IconHomeMaxDotsOutlinedFilled.tsx b/src/IconHomeMaxDotsOutlinedFilled.tsx index d122c4e89..1a3239376 100644 --- a/src/IconHomeMaxDotsOutlinedFilled.tsx +++ b/src/IconHomeMaxDotsOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconHomeMaxDotsOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconHomeMaxDotsOutlinedFilled as default } +export default IconHomeMaxDotsOutlinedFilled diff --git a/src/IconHomeMaxDotsRounded.tsx b/src/IconHomeMaxDotsRounded.tsx index ff62d3979..924c03c48 100644 --- a/src/IconHomeMaxDotsRounded.tsx +++ b/src/IconHomeMaxDotsRounded.tsx @@ -8,4 +8,4 @@ const IconHomeMaxDotsRounded: React.FC = ({ ...props }) => ( ) -export { IconHomeMaxDotsRounded as default } +export default IconHomeMaxDotsRounded diff --git a/src/IconHomeMaxDotsRoundedFilled.tsx b/src/IconHomeMaxDotsRoundedFilled.tsx index 797653414..49a67a941 100644 --- a/src/IconHomeMaxDotsRoundedFilled.tsx +++ b/src/IconHomeMaxDotsRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconHomeMaxDotsRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconHomeMaxDotsRoundedFilled as default } +export default IconHomeMaxDotsRoundedFilled diff --git a/src/IconHomeMaxDotsSharp.tsx b/src/IconHomeMaxDotsSharp.tsx index cac0cd4ee..7d3641fc4 100644 --- a/src/IconHomeMaxDotsSharp.tsx +++ b/src/IconHomeMaxDotsSharp.tsx @@ -8,4 +8,4 @@ const IconHomeMaxDotsSharp: React.FC = ({ ...props }) => ( ) -export { IconHomeMaxDotsSharp as default } +export default IconHomeMaxDotsSharp diff --git a/src/IconHomeMaxDotsSharpFilled.tsx b/src/IconHomeMaxDotsSharpFilled.tsx index e8092b81d..cf93908fe 100644 --- a/src/IconHomeMaxDotsSharpFilled.tsx +++ b/src/IconHomeMaxDotsSharpFilled.tsx @@ -8,4 +8,4 @@ const IconHomeMaxDotsSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconHomeMaxDotsSharpFilled as default } +export default IconHomeMaxDotsSharpFilled diff --git a/src/IconHomeMaxOutlined.tsx b/src/IconHomeMaxOutlined.tsx index bd0fe0961..c8163e75d 100644 --- a/src/IconHomeMaxOutlined.tsx +++ b/src/IconHomeMaxOutlined.tsx @@ -8,4 +8,4 @@ const IconHomeMaxOutlined: React.FC = ({ ...props }) => ( ) -export { IconHomeMaxOutlined as default } +export default IconHomeMaxOutlined diff --git a/src/IconHomeMaxOutlinedFilled.tsx b/src/IconHomeMaxOutlinedFilled.tsx index 848565597..90e9b5b7f 100644 --- a/src/IconHomeMaxOutlinedFilled.tsx +++ b/src/IconHomeMaxOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconHomeMaxOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconHomeMaxOutlinedFilled as default } +export default IconHomeMaxOutlinedFilled diff --git a/src/IconHomeMaxRounded.tsx b/src/IconHomeMaxRounded.tsx index 0e9da0d51..8c74f433c 100644 --- a/src/IconHomeMaxRounded.tsx +++ b/src/IconHomeMaxRounded.tsx @@ -8,4 +8,4 @@ const IconHomeMaxRounded: React.FC = ({ ...props }) => ( ) -export { IconHomeMaxRounded as default } +export default IconHomeMaxRounded diff --git a/src/IconHomeMaxRoundedFilled.tsx b/src/IconHomeMaxRoundedFilled.tsx index 4160edb99..19d4bba77 100644 --- a/src/IconHomeMaxRoundedFilled.tsx +++ b/src/IconHomeMaxRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconHomeMaxRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconHomeMaxRoundedFilled as default } +export default IconHomeMaxRoundedFilled diff --git a/src/IconHomeMaxSharp.tsx b/src/IconHomeMaxSharp.tsx index f5a3ccd1a..7a5c7e93e 100644 --- a/src/IconHomeMaxSharp.tsx +++ b/src/IconHomeMaxSharp.tsx @@ -8,4 +8,4 @@ const IconHomeMaxSharp: React.FC = ({ ...props }) => ( ) -export { IconHomeMaxSharp as default } +export default IconHomeMaxSharp diff --git a/src/IconHomeMaxSharpFilled.tsx b/src/IconHomeMaxSharpFilled.tsx index ddc4c3ea3..018b285f5 100644 --- a/src/IconHomeMaxSharpFilled.tsx +++ b/src/IconHomeMaxSharpFilled.tsx @@ -8,4 +8,4 @@ const IconHomeMaxSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconHomeMaxSharpFilled as default } +export default IconHomeMaxSharpFilled diff --git a/src/IconHomeMiniOutlined.tsx b/src/IconHomeMiniOutlined.tsx index d39ef4504..7b9340af6 100644 --- a/src/IconHomeMiniOutlined.tsx +++ b/src/IconHomeMiniOutlined.tsx @@ -8,4 +8,4 @@ const IconHomeMiniOutlined: React.FC = ({ ...props }) => ( ) -export { IconHomeMiniOutlined as default } +export default IconHomeMiniOutlined diff --git a/src/IconHomeMiniOutlinedFilled.tsx b/src/IconHomeMiniOutlinedFilled.tsx index 72681092d..cb89d19ab 100644 --- a/src/IconHomeMiniOutlinedFilled.tsx +++ b/src/IconHomeMiniOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconHomeMiniOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconHomeMiniOutlinedFilled as default } +export default IconHomeMiniOutlinedFilled diff --git a/src/IconHomeMiniRounded.tsx b/src/IconHomeMiniRounded.tsx index 20376ecdb..4b774ee90 100644 --- a/src/IconHomeMiniRounded.tsx +++ b/src/IconHomeMiniRounded.tsx @@ -8,4 +8,4 @@ const IconHomeMiniRounded: React.FC = ({ ...props }) => ( ) -export { IconHomeMiniRounded as default } +export default IconHomeMiniRounded diff --git a/src/IconHomeMiniRoundedFilled.tsx b/src/IconHomeMiniRoundedFilled.tsx index a2ac5ce26..44abf5266 100644 --- a/src/IconHomeMiniRoundedFilled.tsx +++ b/src/IconHomeMiniRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconHomeMiniRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconHomeMiniRoundedFilled as default } +export default IconHomeMiniRoundedFilled diff --git a/src/IconHomeMiniSharp.tsx b/src/IconHomeMiniSharp.tsx index b4ed2f28d..36e286c5b 100644 --- a/src/IconHomeMiniSharp.tsx +++ b/src/IconHomeMiniSharp.tsx @@ -8,4 +8,4 @@ const IconHomeMiniSharp: React.FC = ({ ...props }) => ( ) -export { IconHomeMiniSharp as default } +export default IconHomeMiniSharp diff --git a/src/IconHomeMiniSharpFilled.tsx b/src/IconHomeMiniSharpFilled.tsx index e83ef52d8..58d6cf784 100644 --- a/src/IconHomeMiniSharpFilled.tsx +++ b/src/IconHomeMiniSharpFilled.tsx @@ -8,4 +8,4 @@ const IconHomeMiniSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconHomeMiniSharpFilled as default } +export default IconHomeMiniSharpFilled diff --git a/src/IconHomeOutlined.tsx b/src/IconHomeOutlined.tsx index eb1871b86..1a78b36f1 100644 --- a/src/IconHomeOutlined.tsx +++ b/src/IconHomeOutlined.tsx @@ -8,4 +8,4 @@ const IconHomeOutlined: React.FC = ({ ...props }) => ( ) -export { IconHomeOutlined as default } +export default IconHomeOutlined diff --git a/src/IconHomeOutlinedFilled.tsx b/src/IconHomeOutlinedFilled.tsx index 9b31e90df..195f55bcd 100644 --- a/src/IconHomeOutlinedFilled.tsx +++ b/src/IconHomeOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconHomeOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconHomeOutlinedFilled as default } +export default IconHomeOutlinedFilled diff --git a/src/IconHomePinOutlined.tsx b/src/IconHomePinOutlined.tsx index 82e4be613..01e577f76 100644 --- a/src/IconHomePinOutlined.tsx +++ b/src/IconHomePinOutlined.tsx @@ -8,4 +8,4 @@ const IconHomePinOutlined: React.FC = ({ ...props }) => ( ) -export { IconHomePinOutlined as default } +export default IconHomePinOutlined diff --git a/src/IconHomePinOutlinedFilled.tsx b/src/IconHomePinOutlinedFilled.tsx index caa800a07..213afeac3 100644 --- a/src/IconHomePinOutlinedFilled.tsx +++ b/src/IconHomePinOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconHomePinOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconHomePinOutlinedFilled as default } +export default IconHomePinOutlinedFilled diff --git a/src/IconHomePinRounded.tsx b/src/IconHomePinRounded.tsx index 1d9c88332..2cf67d443 100644 --- a/src/IconHomePinRounded.tsx +++ b/src/IconHomePinRounded.tsx @@ -8,4 +8,4 @@ const IconHomePinRounded: React.FC = ({ ...props }) => ( ) -export { IconHomePinRounded as default } +export default IconHomePinRounded diff --git a/src/IconHomePinRoundedFilled.tsx b/src/IconHomePinRoundedFilled.tsx index 396c3e4cb..98bffca1c 100644 --- a/src/IconHomePinRoundedFilled.tsx +++ b/src/IconHomePinRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconHomePinRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconHomePinRoundedFilled as default } +export default IconHomePinRoundedFilled diff --git a/src/IconHomePinSharp.tsx b/src/IconHomePinSharp.tsx index 4aeda6d14..1b33a5a37 100644 --- a/src/IconHomePinSharp.tsx +++ b/src/IconHomePinSharp.tsx @@ -8,4 +8,4 @@ const IconHomePinSharp: React.FC = ({ ...props }) => ( ) -export { IconHomePinSharp as default } +export default IconHomePinSharp diff --git a/src/IconHomePinSharpFilled.tsx b/src/IconHomePinSharpFilled.tsx index 1ccbfb502..b716c062d 100644 --- a/src/IconHomePinSharpFilled.tsx +++ b/src/IconHomePinSharpFilled.tsx @@ -8,4 +8,4 @@ const IconHomePinSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconHomePinSharpFilled as default } +export default IconHomePinSharpFilled diff --git a/src/IconHomeRepairServiceOutlined.tsx b/src/IconHomeRepairServiceOutlined.tsx index e43213a8e..851d93d2c 100644 --- a/src/IconHomeRepairServiceOutlined.tsx +++ b/src/IconHomeRepairServiceOutlined.tsx @@ -8,4 +8,4 @@ const IconHomeRepairServiceOutlined: React.FC = ({ ...props }) => ( ) -export { IconHomeRepairServiceOutlined as default } +export default IconHomeRepairServiceOutlined diff --git a/src/IconHomeRepairServiceOutlinedFilled.tsx b/src/IconHomeRepairServiceOutlinedFilled.tsx index 72a74a2af..6c33899c5 100644 --- a/src/IconHomeRepairServiceOutlinedFilled.tsx +++ b/src/IconHomeRepairServiceOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconHomeRepairServiceOutlinedFilled: React.FC = ({ ) -export { IconHomeRepairServiceOutlinedFilled as default } +export default IconHomeRepairServiceOutlinedFilled diff --git a/src/IconHomeRepairServiceRounded.tsx b/src/IconHomeRepairServiceRounded.tsx index 65e51a55f..fcffa8172 100644 --- a/src/IconHomeRepairServiceRounded.tsx +++ b/src/IconHomeRepairServiceRounded.tsx @@ -8,4 +8,4 @@ const IconHomeRepairServiceRounded: React.FC = ({ ...props }) => ( ) -export { IconHomeRepairServiceRounded as default } +export default IconHomeRepairServiceRounded diff --git a/src/IconHomeRepairServiceRoundedFilled.tsx b/src/IconHomeRepairServiceRoundedFilled.tsx index d0747fbb1..8db7d102d 100644 --- a/src/IconHomeRepairServiceRoundedFilled.tsx +++ b/src/IconHomeRepairServiceRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconHomeRepairServiceRoundedFilled: React.FC = ({ ) -export { IconHomeRepairServiceRoundedFilled as default } +export default IconHomeRepairServiceRoundedFilled diff --git a/src/IconHomeRepairServiceSharp.tsx b/src/IconHomeRepairServiceSharp.tsx index 836b79a84..9159fd715 100644 --- a/src/IconHomeRepairServiceSharp.tsx +++ b/src/IconHomeRepairServiceSharp.tsx @@ -8,4 +8,4 @@ const IconHomeRepairServiceSharp: React.FC = ({ ...props }) => ( ) -export { IconHomeRepairServiceSharp as default } +export default IconHomeRepairServiceSharp diff --git a/src/IconHomeRepairServiceSharpFilled.tsx b/src/IconHomeRepairServiceSharpFilled.tsx index 57ca0bfd4..c2ed08539 100644 --- a/src/IconHomeRepairServiceSharpFilled.tsx +++ b/src/IconHomeRepairServiceSharpFilled.tsx @@ -10,4 +10,4 @@ const IconHomeRepairServiceSharpFilled: React.FC = ({ ) -export { IconHomeRepairServiceSharpFilled as default } +export default IconHomeRepairServiceSharpFilled diff --git a/src/IconHomeRounded.tsx b/src/IconHomeRounded.tsx index b724d408d..4499c299f 100644 --- a/src/IconHomeRounded.tsx +++ b/src/IconHomeRounded.tsx @@ -8,4 +8,4 @@ const IconHomeRounded: React.FC = ({ ...props }) => ( ) -export { IconHomeRounded as default } +export default IconHomeRounded diff --git a/src/IconHomeRoundedFilled.tsx b/src/IconHomeRoundedFilled.tsx index 17e9bef01..2c98e3cfa 100644 --- a/src/IconHomeRoundedFilled.tsx +++ b/src/IconHomeRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconHomeRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconHomeRoundedFilled as default } +export default IconHomeRoundedFilled diff --git a/src/IconHomeSharp.tsx b/src/IconHomeSharp.tsx index 200db7ef2..e77bea1b9 100644 --- a/src/IconHomeSharp.tsx +++ b/src/IconHomeSharp.tsx @@ -8,4 +8,4 @@ const IconHomeSharp: React.FC = ({ ...props }) => ( ) -export { IconHomeSharp as default } +export default IconHomeSharp diff --git a/src/IconHomeSharpFilled.tsx b/src/IconHomeSharpFilled.tsx index 03b3b2831..f77f39e3d 100644 --- a/src/IconHomeSharpFilled.tsx +++ b/src/IconHomeSharpFilled.tsx @@ -8,4 +8,4 @@ const IconHomeSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconHomeSharpFilled as default } +export default IconHomeSharpFilled diff --git a/src/IconHomeSpeakerOutlined.tsx b/src/IconHomeSpeakerOutlined.tsx index e54d1091b..d8ecad3ec 100644 --- a/src/IconHomeSpeakerOutlined.tsx +++ b/src/IconHomeSpeakerOutlined.tsx @@ -8,4 +8,4 @@ const IconHomeSpeakerOutlined: React.FC = ({ ...props }) => ( ) -export { IconHomeSpeakerOutlined as default } +export default IconHomeSpeakerOutlined diff --git a/src/IconHomeSpeakerOutlinedFilled.tsx b/src/IconHomeSpeakerOutlinedFilled.tsx index b6c5603f9..569bdb7b7 100644 --- a/src/IconHomeSpeakerOutlinedFilled.tsx +++ b/src/IconHomeSpeakerOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconHomeSpeakerOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconHomeSpeakerOutlinedFilled as default } +export default IconHomeSpeakerOutlinedFilled diff --git a/src/IconHomeSpeakerRounded.tsx b/src/IconHomeSpeakerRounded.tsx index d452e7151..579683607 100644 --- a/src/IconHomeSpeakerRounded.tsx +++ b/src/IconHomeSpeakerRounded.tsx @@ -8,4 +8,4 @@ const IconHomeSpeakerRounded: React.FC = ({ ...props }) => ( ) -export { IconHomeSpeakerRounded as default } +export default IconHomeSpeakerRounded diff --git a/src/IconHomeSpeakerRoundedFilled.tsx b/src/IconHomeSpeakerRoundedFilled.tsx index 71044f25e..800a0eddd 100644 --- a/src/IconHomeSpeakerRoundedFilled.tsx +++ b/src/IconHomeSpeakerRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconHomeSpeakerRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconHomeSpeakerRoundedFilled as default } +export default IconHomeSpeakerRoundedFilled diff --git a/src/IconHomeSpeakerSharp.tsx b/src/IconHomeSpeakerSharp.tsx index cfa6aeeb0..012170f91 100644 --- a/src/IconHomeSpeakerSharp.tsx +++ b/src/IconHomeSpeakerSharp.tsx @@ -8,4 +8,4 @@ const IconHomeSpeakerSharp: React.FC = ({ ...props }) => ( ) -export { IconHomeSpeakerSharp as default } +export default IconHomeSpeakerSharp diff --git a/src/IconHomeSpeakerSharpFilled.tsx b/src/IconHomeSpeakerSharpFilled.tsx index 8f733e6be..5c26af89a 100644 --- a/src/IconHomeSpeakerSharpFilled.tsx +++ b/src/IconHomeSpeakerSharpFilled.tsx @@ -8,4 +8,4 @@ const IconHomeSpeakerSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconHomeSpeakerSharpFilled as default } +export default IconHomeSpeakerSharpFilled diff --git a/src/IconHomeStorageOutlined.tsx b/src/IconHomeStorageOutlined.tsx index 7717b9eb1..88f4a53d7 100644 --- a/src/IconHomeStorageOutlined.tsx +++ b/src/IconHomeStorageOutlined.tsx @@ -8,4 +8,4 @@ const IconHomeStorageOutlined: React.FC = ({ ...props }) => ( ) -export { IconHomeStorageOutlined as default } +export default IconHomeStorageOutlined diff --git a/src/IconHomeStorageOutlinedFilled.tsx b/src/IconHomeStorageOutlinedFilled.tsx index 6c110de84..3e2361592 100644 --- a/src/IconHomeStorageOutlinedFilled.tsx +++ b/src/IconHomeStorageOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconHomeStorageOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconHomeStorageOutlinedFilled as default } +export default IconHomeStorageOutlinedFilled diff --git a/src/IconHomeStorageRounded.tsx b/src/IconHomeStorageRounded.tsx index 7f34ab89d..4afd50853 100644 --- a/src/IconHomeStorageRounded.tsx +++ b/src/IconHomeStorageRounded.tsx @@ -8,4 +8,4 @@ const IconHomeStorageRounded: React.FC = ({ ...props }) => ( ) -export { IconHomeStorageRounded as default } +export default IconHomeStorageRounded diff --git a/src/IconHomeStorageRoundedFilled.tsx b/src/IconHomeStorageRoundedFilled.tsx index 46ae3327e..750811bd9 100644 --- a/src/IconHomeStorageRoundedFilled.tsx +++ b/src/IconHomeStorageRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconHomeStorageRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconHomeStorageRoundedFilled as default } +export default IconHomeStorageRoundedFilled diff --git a/src/IconHomeStorageSharp.tsx b/src/IconHomeStorageSharp.tsx index 65fdc7016..812a03113 100644 --- a/src/IconHomeStorageSharp.tsx +++ b/src/IconHomeStorageSharp.tsx @@ -8,4 +8,4 @@ const IconHomeStorageSharp: React.FC = ({ ...props }) => ( ) -export { IconHomeStorageSharp as default } +export default IconHomeStorageSharp diff --git a/src/IconHomeStorageSharpFilled.tsx b/src/IconHomeStorageSharpFilled.tsx index 1eb6ae77d..7ac424b1a 100644 --- a/src/IconHomeStorageSharpFilled.tsx +++ b/src/IconHomeStorageSharpFilled.tsx @@ -8,4 +8,4 @@ const IconHomeStorageSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconHomeStorageSharpFilled as default } +export default IconHomeStorageSharpFilled diff --git a/src/IconHomeWorkOutlined.tsx b/src/IconHomeWorkOutlined.tsx index 0cae417e5..ad0e18d7c 100644 --- a/src/IconHomeWorkOutlined.tsx +++ b/src/IconHomeWorkOutlined.tsx @@ -8,4 +8,4 @@ const IconHomeWorkOutlined: React.FC = ({ ...props }) => ( ) -export { IconHomeWorkOutlined as default } +export default IconHomeWorkOutlined diff --git a/src/IconHomeWorkOutlinedFilled.tsx b/src/IconHomeWorkOutlinedFilled.tsx index 9a73f7625..d30f1d686 100644 --- a/src/IconHomeWorkOutlinedFilled.tsx +++ b/src/IconHomeWorkOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconHomeWorkOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconHomeWorkOutlinedFilled as default } +export default IconHomeWorkOutlinedFilled diff --git a/src/IconHomeWorkRounded.tsx b/src/IconHomeWorkRounded.tsx index d92009a1d..6298296da 100644 --- a/src/IconHomeWorkRounded.tsx +++ b/src/IconHomeWorkRounded.tsx @@ -8,4 +8,4 @@ const IconHomeWorkRounded: React.FC = ({ ...props }) => ( ) -export { IconHomeWorkRounded as default } +export default IconHomeWorkRounded diff --git a/src/IconHomeWorkRoundedFilled.tsx b/src/IconHomeWorkRoundedFilled.tsx index c8cf4f734..d6caf5195 100644 --- a/src/IconHomeWorkRoundedFilled.tsx +++ b/src/IconHomeWorkRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconHomeWorkRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconHomeWorkRoundedFilled as default } +export default IconHomeWorkRoundedFilled diff --git a/src/IconHomeWorkSharp.tsx b/src/IconHomeWorkSharp.tsx index 58dd22a2e..44b3d492a 100644 --- a/src/IconHomeWorkSharp.tsx +++ b/src/IconHomeWorkSharp.tsx @@ -8,4 +8,4 @@ const IconHomeWorkSharp: React.FC = ({ ...props }) => ( ) -export { IconHomeWorkSharp as default } +export default IconHomeWorkSharp diff --git a/src/IconHomeWorkSharpFilled.tsx b/src/IconHomeWorkSharpFilled.tsx index 368cefb42..45ae61281 100644 --- a/src/IconHomeWorkSharpFilled.tsx +++ b/src/IconHomeWorkSharpFilled.tsx @@ -8,4 +8,4 @@ const IconHomeWorkSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconHomeWorkSharpFilled as default } +export default IconHomeWorkSharpFilled diff --git a/src/IconHorizontalDistributeOutlined.tsx b/src/IconHorizontalDistributeOutlined.tsx index b61a412d8..76baacccf 100644 --- a/src/IconHorizontalDistributeOutlined.tsx +++ b/src/IconHorizontalDistributeOutlined.tsx @@ -10,4 +10,4 @@ const IconHorizontalDistributeOutlined: React.FC = ({ ) -export { IconHorizontalDistributeOutlined as default } +export default IconHorizontalDistributeOutlined diff --git a/src/IconHorizontalDistributeOutlinedFilled.tsx b/src/IconHorizontalDistributeOutlinedFilled.tsx index 25baef8f4..2aeb6adb9 100644 --- a/src/IconHorizontalDistributeOutlinedFilled.tsx +++ b/src/IconHorizontalDistributeOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconHorizontalDistributeOutlinedFilled: React.FC = ({ ) -export { IconHorizontalDistributeOutlinedFilled as default } +export default IconHorizontalDistributeOutlinedFilled diff --git a/src/IconHorizontalDistributeRounded.tsx b/src/IconHorizontalDistributeRounded.tsx index 60d94d800..c63e8c112 100644 --- a/src/IconHorizontalDistributeRounded.tsx +++ b/src/IconHorizontalDistributeRounded.tsx @@ -8,4 +8,4 @@ const IconHorizontalDistributeRounded: React.FC = ({ ...props }) => ( ) -export { IconHorizontalDistributeRounded as default } +export default IconHorizontalDistributeRounded diff --git a/src/IconHorizontalDistributeRoundedFilled.tsx b/src/IconHorizontalDistributeRoundedFilled.tsx index 9eba278d0..1aff76c72 100644 --- a/src/IconHorizontalDistributeRoundedFilled.tsx +++ b/src/IconHorizontalDistributeRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconHorizontalDistributeRoundedFilled: React.FC = ({ ) -export { IconHorizontalDistributeRoundedFilled as default } +export default IconHorizontalDistributeRoundedFilled diff --git a/src/IconHorizontalDistributeSharp.tsx b/src/IconHorizontalDistributeSharp.tsx index 1e64d7548..b7a413038 100644 --- a/src/IconHorizontalDistributeSharp.tsx +++ b/src/IconHorizontalDistributeSharp.tsx @@ -8,4 +8,4 @@ const IconHorizontalDistributeSharp: React.FC = ({ ...props }) => ( ) -export { IconHorizontalDistributeSharp as default } +export default IconHorizontalDistributeSharp diff --git a/src/IconHorizontalDistributeSharpFilled.tsx b/src/IconHorizontalDistributeSharpFilled.tsx index 965eef550..3908cfe01 100644 --- a/src/IconHorizontalDistributeSharpFilled.tsx +++ b/src/IconHorizontalDistributeSharpFilled.tsx @@ -10,4 +10,4 @@ const IconHorizontalDistributeSharpFilled: React.FC = ({ ) -export { IconHorizontalDistributeSharpFilled as default } +export default IconHorizontalDistributeSharpFilled diff --git a/src/IconHorizontalRuleOutlined.tsx b/src/IconHorizontalRuleOutlined.tsx index 9a68353f0..8bf04cd39 100644 --- a/src/IconHorizontalRuleOutlined.tsx +++ b/src/IconHorizontalRuleOutlined.tsx @@ -8,4 +8,4 @@ const IconHorizontalRuleOutlined: React.FC = ({ ...props }) => ( ) -export { IconHorizontalRuleOutlined as default } +export default IconHorizontalRuleOutlined diff --git a/src/IconHorizontalRuleOutlinedFilled.tsx b/src/IconHorizontalRuleOutlinedFilled.tsx index 106296134..f1771a13e 100644 --- a/src/IconHorizontalRuleOutlinedFilled.tsx +++ b/src/IconHorizontalRuleOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconHorizontalRuleOutlinedFilled: React.FC = ({ ) -export { IconHorizontalRuleOutlinedFilled as default } +export default IconHorizontalRuleOutlinedFilled diff --git a/src/IconHorizontalRuleRounded.tsx b/src/IconHorizontalRuleRounded.tsx index fc721eba2..9ea91f5f2 100644 --- a/src/IconHorizontalRuleRounded.tsx +++ b/src/IconHorizontalRuleRounded.tsx @@ -8,4 +8,4 @@ const IconHorizontalRuleRounded: React.FC = ({ ...props }) => ( ) -export { IconHorizontalRuleRounded as default } +export default IconHorizontalRuleRounded diff --git a/src/IconHorizontalRuleRoundedFilled.tsx b/src/IconHorizontalRuleRoundedFilled.tsx index a4e5ef335..c9682fc83 100644 --- a/src/IconHorizontalRuleRoundedFilled.tsx +++ b/src/IconHorizontalRuleRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconHorizontalRuleRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconHorizontalRuleRoundedFilled as default } +export default IconHorizontalRuleRoundedFilled diff --git a/src/IconHorizontalRuleSharp.tsx b/src/IconHorizontalRuleSharp.tsx index 3974310d5..ef7e43372 100644 --- a/src/IconHorizontalRuleSharp.tsx +++ b/src/IconHorizontalRuleSharp.tsx @@ -8,4 +8,4 @@ const IconHorizontalRuleSharp: React.FC = ({ ...props }) => ( ) -export { IconHorizontalRuleSharp as default } +export default IconHorizontalRuleSharp diff --git a/src/IconHorizontalRuleSharpFilled.tsx b/src/IconHorizontalRuleSharpFilled.tsx index 89456675c..c889f8dc1 100644 --- a/src/IconHorizontalRuleSharpFilled.tsx +++ b/src/IconHorizontalRuleSharpFilled.tsx @@ -8,4 +8,4 @@ const IconHorizontalRuleSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconHorizontalRuleSharpFilled as default } +export default IconHorizontalRuleSharpFilled diff --git a/src/IconHorizontalSplitOutlined.tsx b/src/IconHorizontalSplitOutlined.tsx index 73cd29433..fe6e0d442 100644 --- a/src/IconHorizontalSplitOutlined.tsx +++ b/src/IconHorizontalSplitOutlined.tsx @@ -8,4 +8,4 @@ const IconHorizontalSplitOutlined: React.FC = ({ ...props }) => ( ) -export { IconHorizontalSplitOutlined as default } +export default IconHorizontalSplitOutlined diff --git a/src/IconHorizontalSplitOutlinedFilled.tsx b/src/IconHorizontalSplitOutlinedFilled.tsx index 68da89fd8..37251930e 100644 --- a/src/IconHorizontalSplitOutlinedFilled.tsx +++ b/src/IconHorizontalSplitOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconHorizontalSplitOutlinedFilled: React.FC = ({ ) -export { IconHorizontalSplitOutlinedFilled as default } +export default IconHorizontalSplitOutlinedFilled diff --git a/src/IconHorizontalSplitRounded.tsx b/src/IconHorizontalSplitRounded.tsx index 1d7ee3ed6..fb7cb39c4 100644 --- a/src/IconHorizontalSplitRounded.tsx +++ b/src/IconHorizontalSplitRounded.tsx @@ -8,4 +8,4 @@ const IconHorizontalSplitRounded: React.FC = ({ ...props }) => ( ) -export { IconHorizontalSplitRounded as default } +export default IconHorizontalSplitRounded diff --git a/src/IconHorizontalSplitRoundedFilled.tsx b/src/IconHorizontalSplitRoundedFilled.tsx index d5df26fd9..c197196ac 100644 --- a/src/IconHorizontalSplitRoundedFilled.tsx +++ b/src/IconHorizontalSplitRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconHorizontalSplitRoundedFilled: React.FC = ({ ) -export { IconHorizontalSplitRoundedFilled as default } +export default IconHorizontalSplitRoundedFilled diff --git a/src/IconHorizontalSplitSharp.tsx b/src/IconHorizontalSplitSharp.tsx index b84131462..bf711ccae 100644 --- a/src/IconHorizontalSplitSharp.tsx +++ b/src/IconHorizontalSplitSharp.tsx @@ -8,4 +8,4 @@ const IconHorizontalSplitSharp: React.FC = ({ ...props }) => ( ) -export { IconHorizontalSplitSharp as default } +export default IconHorizontalSplitSharp diff --git a/src/IconHorizontalSplitSharpFilled.tsx b/src/IconHorizontalSplitSharpFilled.tsx index 5a5f143d9..2e7aef244 100644 --- a/src/IconHorizontalSplitSharpFilled.tsx +++ b/src/IconHorizontalSplitSharpFilled.tsx @@ -8,4 +8,4 @@ const IconHorizontalSplitSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconHorizontalSplitSharpFilled as default } +export default IconHorizontalSplitSharpFilled diff --git a/src/IconHotTubOutlined.tsx b/src/IconHotTubOutlined.tsx index de085d714..077051d09 100644 --- a/src/IconHotTubOutlined.tsx +++ b/src/IconHotTubOutlined.tsx @@ -8,4 +8,4 @@ const IconHotTubOutlined: React.FC = ({ ...props }) => ( ) -export { IconHotTubOutlined as default } +export default IconHotTubOutlined diff --git a/src/IconHotTubOutlinedFilled.tsx b/src/IconHotTubOutlinedFilled.tsx index 354b20163..d91ead57e 100644 --- a/src/IconHotTubOutlinedFilled.tsx +++ b/src/IconHotTubOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconHotTubOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconHotTubOutlinedFilled as default } +export default IconHotTubOutlinedFilled diff --git a/src/IconHotTubRounded.tsx b/src/IconHotTubRounded.tsx index f70c69059..f7b0de6ad 100644 --- a/src/IconHotTubRounded.tsx +++ b/src/IconHotTubRounded.tsx @@ -8,4 +8,4 @@ const IconHotTubRounded: React.FC = ({ ...props }) => ( ) -export { IconHotTubRounded as default } +export default IconHotTubRounded diff --git a/src/IconHotTubRoundedFilled.tsx b/src/IconHotTubRoundedFilled.tsx index 27a943a77..b6157338e 100644 --- a/src/IconHotTubRoundedFilled.tsx +++ b/src/IconHotTubRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconHotTubRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconHotTubRoundedFilled as default } +export default IconHotTubRoundedFilled diff --git a/src/IconHotTubSharp.tsx b/src/IconHotTubSharp.tsx index e148ee60f..97253aeca 100644 --- a/src/IconHotTubSharp.tsx +++ b/src/IconHotTubSharp.tsx @@ -8,4 +8,4 @@ const IconHotTubSharp: React.FC = ({ ...props }) => ( ) -export { IconHotTubSharp as default } +export default IconHotTubSharp diff --git a/src/IconHotTubSharpFilled.tsx b/src/IconHotTubSharpFilled.tsx index e231ea9ae..475e85afb 100644 --- a/src/IconHotTubSharpFilled.tsx +++ b/src/IconHotTubSharpFilled.tsx @@ -8,4 +8,4 @@ const IconHotTubSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconHotTubSharpFilled as default } +export default IconHotTubSharpFilled diff --git a/src/IconHotelClassOutlined.tsx b/src/IconHotelClassOutlined.tsx index eaf393d80..8a5e8903b 100644 --- a/src/IconHotelClassOutlined.tsx +++ b/src/IconHotelClassOutlined.tsx @@ -8,4 +8,4 @@ const IconHotelClassOutlined: React.FC = ({ ...props }) => ( ) -export { IconHotelClassOutlined as default } +export default IconHotelClassOutlined diff --git a/src/IconHotelClassOutlinedFilled.tsx b/src/IconHotelClassOutlinedFilled.tsx index 4d47d9f28..32788251b 100644 --- a/src/IconHotelClassOutlinedFilled.tsx +++ b/src/IconHotelClassOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconHotelClassOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconHotelClassOutlinedFilled as default } +export default IconHotelClassOutlinedFilled diff --git a/src/IconHotelClassRounded.tsx b/src/IconHotelClassRounded.tsx index 7e500c653..ff1875076 100644 --- a/src/IconHotelClassRounded.tsx +++ b/src/IconHotelClassRounded.tsx @@ -8,4 +8,4 @@ const IconHotelClassRounded: React.FC = ({ ...props }) => ( ) -export { IconHotelClassRounded as default } +export default IconHotelClassRounded diff --git a/src/IconHotelClassRoundedFilled.tsx b/src/IconHotelClassRoundedFilled.tsx index 95a5c42fb..92f33702b 100644 --- a/src/IconHotelClassRoundedFilled.tsx +++ b/src/IconHotelClassRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconHotelClassRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconHotelClassRoundedFilled as default } +export default IconHotelClassRoundedFilled diff --git a/src/IconHotelClassSharp.tsx b/src/IconHotelClassSharp.tsx index d78a2ac9e..7b9df3933 100644 --- a/src/IconHotelClassSharp.tsx +++ b/src/IconHotelClassSharp.tsx @@ -8,4 +8,4 @@ const IconHotelClassSharp: React.FC = ({ ...props }) => ( ) -export { IconHotelClassSharp as default } +export default IconHotelClassSharp diff --git a/src/IconHotelClassSharpFilled.tsx b/src/IconHotelClassSharpFilled.tsx index 6a7bb5855..d33f67727 100644 --- a/src/IconHotelClassSharpFilled.tsx +++ b/src/IconHotelClassSharpFilled.tsx @@ -8,4 +8,4 @@ const IconHotelClassSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconHotelClassSharpFilled as default } +export default IconHotelClassSharpFilled diff --git a/src/IconHotelOutlined.tsx b/src/IconHotelOutlined.tsx index 421cda1c3..1467a99fe 100644 --- a/src/IconHotelOutlined.tsx +++ b/src/IconHotelOutlined.tsx @@ -8,4 +8,4 @@ const IconHotelOutlined: React.FC = ({ ...props }) => ( ) -export { IconHotelOutlined as default } +export default IconHotelOutlined diff --git a/src/IconHotelOutlinedFilled.tsx b/src/IconHotelOutlinedFilled.tsx index f6a7eb504..1a289d0cb 100644 --- a/src/IconHotelOutlinedFilled.tsx +++ b/src/IconHotelOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconHotelOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconHotelOutlinedFilled as default } +export default IconHotelOutlinedFilled diff --git a/src/IconHotelRounded.tsx b/src/IconHotelRounded.tsx index 8bb2192a1..d511a09c5 100644 --- a/src/IconHotelRounded.tsx +++ b/src/IconHotelRounded.tsx @@ -8,4 +8,4 @@ const IconHotelRounded: React.FC = ({ ...props }) => ( ) -export { IconHotelRounded as default } +export default IconHotelRounded diff --git a/src/IconHotelRoundedFilled.tsx b/src/IconHotelRoundedFilled.tsx index f56cb1762..a56689996 100644 --- a/src/IconHotelRoundedFilled.tsx +++ b/src/IconHotelRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconHotelRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconHotelRoundedFilled as default } +export default IconHotelRoundedFilled diff --git a/src/IconHotelSharp.tsx b/src/IconHotelSharp.tsx index 955bf9a1d..4f1088f82 100644 --- a/src/IconHotelSharp.tsx +++ b/src/IconHotelSharp.tsx @@ -8,4 +8,4 @@ const IconHotelSharp: React.FC = ({ ...props }) => ( ) -export { IconHotelSharp as default } +export default IconHotelSharp diff --git a/src/IconHotelSharpFilled.tsx b/src/IconHotelSharpFilled.tsx index 84c5c69eb..c1672657a 100644 --- a/src/IconHotelSharpFilled.tsx +++ b/src/IconHotelSharpFilled.tsx @@ -8,4 +8,4 @@ const IconHotelSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconHotelSharpFilled as default } +export default IconHotelSharpFilled diff --git a/src/IconHourglassBottomOutlined.tsx b/src/IconHourglassBottomOutlined.tsx index 9d5b679bc..182210ed6 100644 --- a/src/IconHourglassBottomOutlined.tsx +++ b/src/IconHourglassBottomOutlined.tsx @@ -8,4 +8,4 @@ const IconHourglassBottomOutlined: React.FC = ({ ...props }) => ( ) -export { IconHourglassBottomOutlined as default } +export default IconHourglassBottomOutlined diff --git a/src/IconHourglassBottomOutlinedFilled.tsx b/src/IconHourglassBottomOutlinedFilled.tsx index c932b63e2..9e7e72f87 100644 --- a/src/IconHourglassBottomOutlinedFilled.tsx +++ b/src/IconHourglassBottomOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconHourglassBottomOutlinedFilled: React.FC = ({ ) -export { IconHourglassBottomOutlinedFilled as default } +export default IconHourglassBottomOutlinedFilled diff --git a/src/IconHourglassBottomRounded.tsx b/src/IconHourglassBottomRounded.tsx index bbab1bdee..3098426d0 100644 --- a/src/IconHourglassBottomRounded.tsx +++ b/src/IconHourglassBottomRounded.tsx @@ -8,4 +8,4 @@ const IconHourglassBottomRounded: React.FC = ({ ...props }) => ( ) -export { IconHourglassBottomRounded as default } +export default IconHourglassBottomRounded diff --git a/src/IconHourglassBottomRoundedFilled.tsx b/src/IconHourglassBottomRoundedFilled.tsx index f7a353f78..a0109314f 100644 --- a/src/IconHourglassBottomRoundedFilled.tsx +++ b/src/IconHourglassBottomRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconHourglassBottomRoundedFilled: React.FC = ({ ) -export { IconHourglassBottomRoundedFilled as default } +export default IconHourglassBottomRoundedFilled diff --git a/src/IconHourglassBottomSharp.tsx b/src/IconHourglassBottomSharp.tsx index a4cc72be8..5da54ae03 100644 --- a/src/IconHourglassBottomSharp.tsx +++ b/src/IconHourglassBottomSharp.tsx @@ -8,4 +8,4 @@ const IconHourglassBottomSharp: React.FC = ({ ...props }) => ( ) -export { IconHourglassBottomSharp as default } +export default IconHourglassBottomSharp diff --git a/src/IconHourglassBottomSharpFilled.tsx b/src/IconHourglassBottomSharpFilled.tsx index 2f8d412f9..34b21343f 100644 --- a/src/IconHourglassBottomSharpFilled.tsx +++ b/src/IconHourglassBottomSharpFilled.tsx @@ -8,4 +8,4 @@ const IconHourglassBottomSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconHourglassBottomSharpFilled as default } +export default IconHourglassBottomSharpFilled diff --git a/src/IconHourglassDisabledOutlined.tsx b/src/IconHourglassDisabledOutlined.tsx index ba2e54d49..38b046ce5 100644 --- a/src/IconHourglassDisabledOutlined.tsx +++ b/src/IconHourglassDisabledOutlined.tsx @@ -8,4 +8,4 @@ const IconHourglassDisabledOutlined: React.FC = ({ ...props }) => ( ) -export { IconHourglassDisabledOutlined as default } +export default IconHourglassDisabledOutlined diff --git a/src/IconHourglassDisabledOutlinedFilled.tsx b/src/IconHourglassDisabledOutlinedFilled.tsx index 336673c6c..817be6a2b 100644 --- a/src/IconHourglassDisabledOutlinedFilled.tsx +++ b/src/IconHourglassDisabledOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconHourglassDisabledOutlinedFilled: React.FC = ({ ) -export { IconHourglassDisabledOutlinedFilled as default } +export default IconHourglassDisabledOutlinedFilled diff --git a/src/IconHourglassDisabledRounded.tsx b/src/IconHourglassDisabledRounded.tsx index 27236f494..df9235757 100644 --- a/src/IconHourglassDisabledRounded.tsx +++ b/src/IconHourglassDisabledRounded.tsx @@ -8,4 +8,4 @@ const IconHourglassDisabledRounded: React.FC = ({ ...props }) => ( ) -export { IconHourglassDisabledRounded as default } +export default IconHourglassDisabledRounded diff --git a/src/IconHourglassDisabledRoundedFilled.tsx b/src/IconHourglassDisabledRoundedFilled.tsx index 40280b641..b587d0cc7 100644 --- a/src/IconHourglassDisabledRoundedFilled.tsx +++ b/src/IconHourglassDisabledRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconHourglassDisabledRoundedFilled: React.FC = ({ ) -export { IconHourglassDisabledRoundedFilled as default } +export default IconHourglassDisabledRoundedFilled diff --git a/src/IconHourglassDisabledSharp.tsx b/src/IconHourglassDisabledSharp.tsx index 69d9696d0..24c161529 100644 --- a/src/IconHourglassDisabledSharp.tsx +++ b/src/IconHourglassDisabledSharp.tsx @@ -8,4 +8,4 @@ const IconHourglassDisabledSharp: React.FC = ({ ...props }) => ( ) -export { IconHourglassDisabledSharp as default } +export default IconHourglassDisabledSharp diff --git a/src/IconHourglassDisabledSharpFilled.tsx b/src/IconHourglassDisabledSharpFilled.tsx index 01cab324a..ff073080b 100644 --- a/src/IconHourglassDisabledSharpFilled.tsx +++ b/src/IconHourglassDisabledSharpFilled.tsx @@ -10,4 +10,4 @@ const IconHourglassDisabledSharpFilled: React.FC = ({ ) -export { IconHourglassDisabledSharpFilled as default } +export default IconHourglassDisabledSharpFilled diff --git a/src/IconHourglassEmptyOutlined.tsx b/src/IconHourglassEmptyOutlined.tsx index c5ed042ee..06171d69c 100644 --- a/src/IconHourglassEmptyOutlined.tsx +++ b/src/IconHourglassEmptyOutlined.tsx @@ -8,4 +8,4 @@ const IconHourglassEmptyOutlined: React.FC = ({ ...props }) => ( ) -export { IconHourglassEmptyOutlined as default } +export default IconHourglassEmptyOutlined diff --git a/src/IconHourglassEmptyOutlinedFilled.tsx b/src/IconHourglassEmptyOutlinedFilled.tsx index 3cc31bda1..c9f9e676b 100644 --- a/src/IconHourglassEmptyOutlinedFilled.tsx +++ b/src/IconHourglassEmptyOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconHourglassEmptyOutlinedFilled: React.FC = ({ ) -export { IconHourglassEmptyOutlinedFilled as default } +export default IconHourglassEmptyOutlinedFilled diff --git a/src/IconHourglassEmptyRounded.tsx b/src/IconHourglassEmptyRounded.tsx index 69a4acedd..15a6ef787 100644 --- a/src/IconHourglassEmptyRounded.tsx +++ b/src/IconHourglassEmptyRounded.tsx @@ -8,4 +8,4 @@ const IconHourglassEmptyRounded: React.FC = ({ ...props }) => ( ) -export { IconHourglassEmptyRounded as default } +export default IconHourglassEmptyRounded diff --git a/src/IconHourglassEmptyRoundedFilled.tsx b/src/IconHourglassEmptyRoundedFilled.tsx index 187d58141..2992ad4e5 100644 --- a/src/IconHourglassEmptyRoundedFilled.tsx +++ b/src/IconHourglassEmptyRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconHourglassEmptyRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconHourglassEmptyRoundedFilled as default } +export default IconHourglassEmptyRoundedFilled diff --git a/src/IconHourglassEmptySharp.tsx b/src/IconHourglassEmptySharp.tsx index aca825c9f..b5a28ef1a 100644 --- a/src/IconHourglassEmptySharp.tsx +++ b/src/IconHourglassEmptySharp.tsx @@ -8,4 +8,4 @@ const IconHourglassEmptySharp: React.FC = ({ ...props }) => ( ) -export { IconHourglassEmptySharp as default } +export default IconHourglassEmptySharp diff --git a/src/IconHourglassEmptySharpFilled.tsx b/src/IconHourglassEmptySharpFilled.tsx index 2779c2ac8..a0cb6fb6f 100644 --- a/src/IconHourglassEmptySharpFilled.tsx +++ b/src/IconHourglassEmptySharpFilled.tsx @@ -8,4 +8,4 @@ const IconHourglassEmptySharpFilled: React.FC = ({ ...props }) => ( ) -export { IconHourglassEmptySharpFilled as default } +export default IconHourglassEmptySharpFilled diff --git a/src/IconHourglassOutlined.tsx b/src/IconHourglassOutlined.tsx index 5fc9fe5bf..bd555ca0f 100644 --- a/src/IconHourglassOutlined.tsx +++ b/src/IconHourglassOutlined.tsx @@ -8,4 +8,4 @@ const IconHourglassOutlined: React.FC = ({ ...props }) => ( ) -export { IconHourglassOutlined as default } +export default IconHourglassOutlined diff --git a/src/IconHourglassOutlinedFilled.tsx b/src/IconHourglassOutlinedFilled.tsx index fb0efec85..10f87bf35 100644 --- a/src/IconHourglassOutlinedFilled.tsx +++ b/src/IconHourglassOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconHourglassOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconHourglassOutlinedFilled as default } +export default IconHourglassOutlinedFilled diff --git a/src/IconHourglassRounded.tsx b/src/IconHourglassRounded.tsx index 969f1c79c..fc657395a 100644 --- a/src/IconHourglassRounded.tsx +++ b/src/IconHourglassRounded.tsx @@ -8,4 +8,4 @@ const IconHourglassRounded: React.FC = ({ ...props }) => ( ) -export { IconHourglassRounded as default } +export default IconHourglassRounded diff --git a/src/IconHourglassRoundedFilled.tsx b/src/IconHourglassRoundedFilled.tsx index ed83ce9a8..36881926e 100644 --- a/src/IconHourglassRoundedFilled.tsx +++ b/src/IconHourglassRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconHourglassRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconHourglassRoundedFilled as default } +export default IconHourglassRoundedFilled diff --git a/src/IconHourglassSharp.tsx b/src/IconHourglassSharp.tsx index 6f4d908e4..331d1b437 100644 --- a/src/IconHourglassSharp.tsx +++ b/src/IconHourglassSharp.tsx @@ -8,4 +8,4 @@ const IconHourglassSharp: React.FC = ({ ...props }) => ( ) -export { IconHourglassSharp as default } +export default IconHourglassSharp diff --git a/src/IconHourglassSharpFilled.tsx b/src/IconHourglassSharpFilled.tsx index 7c42a4d50..a948387a8 100644 --- a/src/IconHourglassSharpFilled.tsx +++ b/src/IconHourglassSharpFilled.tsx @@ -8,4 +8,4 @@ const IconHourglassSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconHourglassSharpFilled as default } +export default IconHourglassSharpFilled diff --git a/src/IconHourglassTopOutlined.tsx b/src/IconHourglassTopOutlined.tsx index 106b023fb..b68802be3 100644 --- a/src/IconHourglassTopOutlined.tsx +++ b/src/IconHourglassTopOutlined.tsx @@ -8,4 +8,4 @@ const IconHourglassTopOutlined: React.FC = ({ ...props }) => ( ) -export { IconHourglassTopOutlined as default } +export default IconHourglassTopOutlined diff --git a/src/IconHourglassTopOutlinedFilled.tsx b/src/IconHourglassTopOutlinedFilled.tsx index f673ff965..ac0149d1a 100644 --- a/src/IconHourglassTopOutlinedFilled.tsx +++ b/src/IconHourglassTopOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconHourglassTopOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconHourglassTopOutlinedFilled as default } +export default IconHourglassTopOutlinedFilled diff --git a/src/IconHourglassTopRounded.tsx b/src/IconHourglassTopRounded.tsx index 1d68f309a..17ff67254 100644 --- a/src/IconHourglassTopRounded.tsx +++ b/src/IconHourglassTopRounded.tsx @@ -8,4 +8,4 @@ const IconHourglassTopRounded: React.FC = ({ ...props }) => ( ) -export { IconHourglassTopRounded as default } +export default IconHourglassTopRounded diff --git a/src/IconHourglassTopRoundedFilled.tsx b/src/IconHourglassTopRoundedFilled.tsx index b4485228e..b7a75bf81 100644 --- a/src/IconHourglassTopRoundedFilled.tsx +++ b/src/IconHourglassTopRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconHourglassTopRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconHourglassTopRoundedFilled as default } +export default IconHourglassTopRoundedFilled diff --git a/src/IconHourglassTopSharp.tsx b/src/IconHourglassTopSharp.tsx index 13f596375..b6a3cc4fe 100644 --- a/src/IconHourglassTopSharp.tsx +++ b/src/IconHourglassTopSharp.tsx @@ -8,4 +8,4 @@ const IconHourglassTopSharp: React.FC = ({ ...props }) => ( ) -export { IconHourglassTopSharp as default } +export default IconHourglassTopSharp diff --git a/src/IconHourglassTopSharpFilled.tsx b/src/IconHourglassTopSharpFilled.tsx index f619174eb..429a694d4 100644 --- a/src/IconHourglassTopSharpFilled.tsx +++ b/src/IconHourglassTopSharpFilled.tsx @@ -8,4 +8,4 @@ const IconHourglassTopSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconHourglassTopSharpFilled as default } +export default IconHourglassTopSharpFilled diff --git a/src/IconHouseOutlined.tsx b/src/IconHouseOutlined.tsx index 0009748e8..68f448bdb 100644 --- a/src/IconHouseOutlined.tsx +++ b/src/IconHouseOutlined.tsx @@ -8,4 +8,4 @@ const IconHouseOutlined: React.FC = ({ ...props }) => ( ) -export { IconHouseOutlined as default } +export default IconHouseOutlined diff --git a/src/IconHouseOutlinedFilled.tsx b/src/IconHouseOutlinedFilled.tsx index 52305e561..5c4be779c 100644 --- a/src/IconHouseOutlinedFilled.tsx +++ b/src/IconHouseOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconHouseOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconHouseOutlinedFilled as default } +export default IconHouseOutlinedFilled diff --git a/src/IconHouseRounded.tsx b/src/IconHouseRounded.tsx index c4659b378..d5421506a 100644 --- a/src/IconHouseRounded.tsx +++ b/src/IconHouseRounded.tsx @@ -8,4 +8,4 @@ const IconHouseRounded: React.FC = ({ ...props }) => ( ) -export { IconHouseRounded as default } +export default IconHouseRounded diff --git a/src/IconHouseRoundedFilled.tsx b/src/IconHouseRoundedFilled.tsx index 08fb06806..76d3e517a 100644 --- a/src/IconHouseRoundedFilled.tsx +++ b/src/IconHouseRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconHouseRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconHouseRoundedFilled as default } +export default IconHouseRoundedFilled diff --git a/src/IconHouseSharp.tsx b/src/IconHouseSharp.tsx index 098ba72f6..de26c6fb6 100644 --- a/src/IconHouseSharp.tsx +++ b/src/IconHouseSharp.tsx @@ -8,4 +8,4 @@ const IconHouseSharp: React.FC = ({ ...props }) => ( ) -export { IconHouseSharp as default } +export default IconHouseSharp diff --git a/src/IconHouseSharpFilled.tsx b/src/IconHouseSharpFilled.tsx index 78914c788..44ae66511 100644 --- a/src/IconHouseSharpFilled.tsx +++ b/src/IconHouseSharpFilled.tsx @@ -8,4 +8,4 @@ const IconHouseSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconHouseSharpFilled as default } +export default IconHouseSharpFilled diff --git a/src/IconHouseSidingOutlined.tsx b/src/IconHouseSidingOutlined.tsx index 661772d6c..de43e3097 100644 --- a/src/IconHouseSidingOutlined.tsx +++ b/src/IconHouseSidingOutlined.tsx @@ -8,4 +8,4 @@ const IconHouseSidingOutlined: React.FC = ({ ...props }) => ( ) -export { IconHouseSidingOutlined as default } +export default IconHouseSidingOutlined diff --git a/src/IconHouseSidingOutlinedFilled.tsx b/src/IconHouseSidingOutlinedFilled.tsx index a7440fcfa..6c64242d8 100644 --- a/src/IconHouseSidingOutlinedFilled.tsx +++ b/src/IconHouseSidingOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconHouseSidingOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconHouseSidingOutlinedFilled as default } +export default IconHouseSidingOutlinedFilled diff --git a/src/IconHouseSidingRounded.tsx b/src/IconHouseSidingRounded.tsx index e108af695..25af44867 100644 --- a/src/IconHouseSidingRounded.tsx +++ b/src/IconHouseSidingRounded.tsx @@ -8,4 +8,4 @@ const IconHouseSidingRounded: React.FC = ({ ...props }) => ( ) -export { IconHouseSidingRounded as default } +export default IconHouseSidingRounded diff --git a/src/IconHouseSidingRoundedFilled.tsx b/src/IconHouseSidingRoundedFilled.tsx index c3b2a5124..063329c82 100644 --- a/src/IconHouseSidingRoundedFilled.tsx +++ b/src/IconHouseSidingRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconHouseSidingRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconHouseSidingRoundedFilled as default } +export default IconHouseSidingRoundedFilled diff --git a/src/IconHouseSidingSharp.tsx b/src/IconHouseSidingSharp.tsx index d34f5a0ec..2f802a310 100644 --- a/src/IconHouseSidingSharp.tsx +++ b/src/IconHouseSidingSharp.tsx @@ -8,4 +8,4 @@ const IconHouseSidingSharp: React.FC = ({ ...props }) => ( ) -export { IconHouseSidingSharp as default } +export default IconHouseSidingSharp diff --git a/src/IconHouseSidingSharpFilled.tsx b/src/IconHouseSidingSharpFilled.tsx index bd1730dab..900dd85f0 100644 --- a/src/IconHouseSidingSharpFilled.tsx +++ b/src/IconHouseSidingSharpFilled.tsx @@ -8,4 +8,4 @@ const IconHouseSidingSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconHouseSidingSharpFilled as default } +export default IconHouseSidingSharpFilled diff --git a/src/IconHouseWithShieldOutlined.tsx b/src/IconHouseWithShieldOutlined.tsx index ff86349bb..4d154da03 100644 --- a/src/IconHouseWithShieldOutlined.tsx +++ b/src/IconHouseWithShieldOutlined.tsx @@ -8,4 +8,4 @@ const IconHouseWithShieldOutlined: React.FC = ({ ...props }) => ( ) -export { IconHouseWithShieldOutlined as default } +export default IconHouseWithShieldOutlined diff --git a/src/IconHouseWithShieldOutlinedFilled.tsx b/src/IconHouseWithShieldOutlinedFilled.tsx index 15f4aff8f..100485711 100644 --- a/src/IconHouseWithShieldOutlinedFilled.tsx +++ b/src/IconHouseWithShieldOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconHouseWithShieldOutlinedFilled: React.FC = ({ ) -export { IconHouseWithShieldOutlinedFilled as default } +export default IconHouseWithShieldOutlinedFilled diff --git a/src/IconHouseWithShieldRounded.tsx b/src/IconHouseWithShieldRounded.tsx index 211f9d57c..05f7fe464 100644 --- a/src/IconHouseWithShieldRounded.tsx +++ b/src/IconHouseWithShieldRounded.tsx @@ -8,4 +8,4 @@ const IconHouseWithShieldRounded: React.FC = ({ ...props }) => ( ) -export { IconHouseWithShieldRounded as default } +export default IconHouseWithShieldRounded diff --git a/src/IconHouseWithShieldRoundedFilled.tsx b/src/IconHouseWithShieldRoundedFilled.tsx index f948584c4..48cacd0f4 100644 --- a/src/IconHouseWithShieldRoundedFilled.tsx +++ b/src/IconHouseWithShieldRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconHouseWithShieldRoundedFilled: React.FC = ({ ) -export { IconHouseWithShieldRoundedFilled as default } +export default IconHouseWithShieldRoundedFilled diff --git a/src/IconHouseWithShieldSharp.tsx b/src/IconHouseWithShieldSharp.tsx index b270a7d49..2219682a6 100644 --- a/src/IconHouseWithShieldSharp.tsx +++ b/src/IconHouseWithShieldSharp.tsx @@ -8,4 +8,4 @@ const IconHouseWithShieldSharp: React.FC = ({ ...props }) => ( ) -export { IconHouseWithShieldSharp as default } +export default IconHouseWithShieldSharp diff --git a/src/IconHouseWithShieldSharpFilled.tsx b/src/IconHouseWithShieldSharpFilled.tsx index aae78c7e8..a1c05768e 100644 --- a/src/IconHouseWithShieldSharpFilled.tsx +++ b/src/IconHouseWithShieldSharpFilled.tsx @@ -8,4 +8,4 @@ const IconHouseWithShieldSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconHouseWithShieldSharpFilled as default } +export default IconHouseWithShieldSharpFilled diff --git a/src/IconHouseboatOutlined.tsx b/src/IconHouseboatOutlined.tsx index c88eb861f..4de4113a9 100644 --- a/src/IconHouseboatOutlined.tsx +++ b/src/IconHouseboatOutlined.tsx @@ -8,4 +8,4 @@ const IconHouseboatOutlined: React.FC = ({ ...props }) => ( ) -export { IconHouseboatOutlined as default } +export default IconHouseboatOutlined diff --git a/src/IconHouseboatOutlinedFilled.tsx b/src/IconHouseboatOutlinedFilled.tsx index 472c41b20..e0707ed21 100644 --- a/src/IconHouseboatOutlinedFilled.tsx +++ b/src/IconHouseboatOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconHouseboatOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconHouseboatOutlinedFilled as default } +export default IconHouseboatOutlinedFilled diff --git a/src/IconHouseboatRounded.tsx b/src/IconHouseboatRounded.tsx index 93e3d5e69..5477d5e39 100644 --- a/src/IconHouseboatRounded.tsx +++ b/src/IconHouseboatRounded.tsx @@ -8,4 +8,4 @@ const IconHouseboatRounded: React.FC = ({ ...props }) => ( ) -export { IconHouseboatRounded as default } +export default IconHouseboatRounded diff --git a/src/IconHouseboatRoundedFilled.tsx b/src/IconHouseboatRoundedFilled.tsx index 12b2ab886..7ddbc0c5d 100644 --- a/src/IconHouseboatRoundedFilled.tsx +++ b/src/IconHouseboatRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconHouseboatRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconHouseboatRoundedFilled as default } +export default IconHouseboatRoundedFilled diff --git a/src/IconHouseboatSharp.tsx b/src/IconHouseboatSharp.tsx index b4a925e57..71008bf4a 100644 --- a/src/IconHouseboatSharp.tsx +++ b/src/IconHouseboatSharp.tsx @@ -8,4 +8,4 @@ const IconHouseboatSharp: React.FC = ({ ...props }) => ( ) -export { IconHouseboatSharp as default } +export default IconHouseboatSharp diff --git a/src/IconHouseboatSharpFilled.tsx b/src/IconHouseboatSharpFilled.tsx index 9cf569854..91c63434e 100644 --- a/src/IconHouseboatSharpFilled.tsx +++ b/src/IconHouseboatSharpFilled.tsx @@ -8,4 +8,4 @@ const IconHouseboatSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconHouseboatSharpFilled as default } +export default IconHouseboatSharpFilled diff --git a/src/IconHouseholdSuppliesOutlined.tsx b/src/IconHouseholdSuppliesOutlined.tsx index f4ec37bf3..323552a4a 100644 --- a/src/IconHouseholdSuppliesOutlined.tsx +++ b/src/IconHouseholdSuppliesOutlined.tsx @@ -8,4 +8,4 @@ const IconHouseholdSuppliesOutlined: React.FC = ({ ...props }) => ( ) -export { IconHouseholdSuppliesOutlined as default } +export default IconHouseholdSuppliesOutlined diff --git a/src/IconHouseholdSuppliesOutlinedFilled.tsx b/src/IconHouseholdSuppliesOutlinedFilled.tsx index 191eff52e..c2ba96692 100644 --- a/src/IconHouseholdSuppliesOutlinedFilled.tsx +++ b/src/IconHouseholdSuppliesOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconHouseholdSuppliesOutlinedFilled: React.FC = ({ ) -export { IconHouseholdSuppliesOutlinedFilled as default } +export default IconHouseholdSuppliesOutlinedFilled diff --git a/src/IconHouseholdSuppliesRounded.tsx b/src/IconHouseholdSuppliesRounded.tsx index 2e2cfd53e..9ea7b3fb2 100644 --- a/src/IconHouseholdSuppliesRounded.tsx +++ b/src/IconHouseholdSuppliesRounded.tsx @@ -8,4 +8,4 @@ const IconHouseholdSuppliesRounded: React.FC = ({ ...props }) => ( ) -export { IconHouseholdSuppliesRounded as default } +export default IconHouseholdSuppliesRounded diff --git a/src/IconHouseholdSuppliesRoundedFilled.tsx b/src/IconHouseholdSuppliesRoundedFilled.tsx index be02abace..a9fe76056 100644 --- a/src/IconHouseholdSuppliesRoundedFilled.tsx +++ b/src/IconHouseholdSuppliesRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconHouseholdSuppliesRoundedFilled: React.FC = ({ ) -export { IconHouseholdSuppliesRoundedFilled as default } +export default IconHouseholdSuppliesRoundedFilled diff --git a/src/IconHouseholdSuppliesSharp.tsx b/src/IconHouseholdSuppliesSharp.tsx index f0c4416f5..76cde47be 100644 --- a/src/IconHouseholdSuppliesSharp.tsx +++ b/src/IconHouseholdSuppliesSharp.tsx @@ -8,4 +8,4 @@ const IconHouseholdSuppliesSharp: React.FC = ({ ...props }) => ( ) -export { IconHouseholdSuppliesSharp as default } +export default IconHouseholdSuppliesSharp diff --git a/src/IconHouseholdSuppliesSharpFilled.tsx b/src/IconHouseholdSuppliesSharpFilled.tsx index b7cb93746..3d3accf67 100644 --- a/src/IconHouseholdSuppliesSharpFilled.tsx +++ b/src/IconHouseholdSuppliesSharpFilled.tsx @@ -10,4 +10,4 @@ const IconHouseholdSuppliesSharpFilled: React.FC = ({ ) -export { IconHouseholdSuppliesSharpFilled as default } +export default IconHouseholdSuppliesSharpFilled diff --git a/src/IconHovOutlined.tsx b/src/IconHovOutlined.tsx index 3cc487ec1..999c0b402 100644 --- a/src/IconHovOutlined.tsx +++ b/src/IconHovOutlined.tsx @@ -8,4 +8,4 @@ const IconHovOutlined: React.FC = ({ ...props }) => ( ) -export { IconHovOutlined as default } +export default IconHovOutlined diff --git a/src/IconHovOutlinedFilled.tsx b/src/IconHovOutlinedFilled.tsx index 2ba32d0fc..d03c8e26b 100644 --- a/src/IconHovOutlinedFilled.tsx +++ b/src/IconHovOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconHovOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconHovOutlinedFilled as default } +export default IconHovOutlinedFilled diff --git a/src/IconHovRounded.tsx b/src/IconHovRounded.tsx index 5bf7a5ef8..969ca5431 100644 --- a/src/IconHovRounded.tsx +++ b/src/IconHovRounded.tsx @@ -8,4 +8,4 @@ const IconHovRounded: React.FC = ({ ...props }) => ( ) -export { IconHovRounded as default } +export default IconHovRounded diff --git a/src/IconHovRoundedFilled.tsx b/src/IconHovRoundedFilled.tsx index 6500730d6..5b1dd236d 100644 --- a/src/IconHovRoundedFilled.tsx +++ b/src/IconHovRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconHovRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconHovRoundedFilled as default } +export default IconHovRoundedFilled diff --git a/src/IconHovSharp.tsx b/src/IconHovSharp.tsx index 06765fefd..d794eeca0 100644 --- a/src/IconHovSharp.tsx +++ b/src/IconHovSharp.tsx @@ -8,4 +8,4 @@ const IconHovSharp: React.FC = ({ ...props }) => ( ) -export { IconHovSharp as default } +export default IconHovSharp diff --git a/src/IconHovSharpFilled.tsx b/src/IconHovSharpFilled.tsx index 83675a1f5..77944a670 100644 --- a/src/IconHovSharpFilled.tsx +++ b/src/IconHovSharpFilled.tsx @@ -8,4 +8,4 @@ const IconHovSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconHovSharpFilled as default } +export default IconHovSharpFilled diff --git a/src/IconHowToRegOutlined.tsx b/src/IconHowToRegOutlined.tsx index 1675b24d3..c61cd00f1 100644 --- a/src/IconHowToRegOutlined.tsx +++ b/src/IconHowToRegOutlined.tsx @@ -8,4 +8,4 @@ const IconHowToRegOutlined: React.FC = ({ ...props }) => ( ) -export { IconHowToRegOutlined as default } +export default IconHowToRegOutlined diff --git a/src/IconHowToRegOutlinedFilled.tsx b/src/IconHowToRegOutlinedFilled.tsx index 58f79c620..27e8db299 100644 --- a/src/IconHowToRegOutlinedFilled.tsx +++ b/src/IconHowToRegOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconHowToRegOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconHowToRegOutlinedFilled as default } +export default IconHowToRegOutlinedFilled diff --git a/src/IconHowToRegRounded.tsx b/src/IconHowToRegRounded.tsx index f437c834f..a62cc1d7c 100644 --- a/src/IconHowToRegRounded.tsx +++ b/src/IconHowToRegRounded.tsx @@ -8,4 +8,4 @@ const IconHowToRegRounded: React.FC = ({ ...props }) => ( ) -export { IconHowToRegRounded as default } +export default IconHowToRegRounded diff --git a/src/IconHowToRegRoundedFilled.tsx b/src/IconHowToRegRoundedFilled.tsx index 03b30efe4..100f3ab86 100644 --- a/src/IconHowToRegRoundedFilled.tsx +++ b/src/IconHowToRegRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconHowToRegRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconHowToRegRoundedFilled as default } +export default IconHowToRegRoundedFilled diff --git a/src/IconHowToRegSharp.tsx b/src/IconHowToRegSharp.tsx index da67f1c74..3d9299b2b 100644 --- a/src/IconHowToRegSharp.tsx +++ b/src/IconHowToRegSharp.tsx @@ -8,4 +8,4 @@ const IconHowToRegSharp: React.FC = ({ ...props }) => ( ) -export { IconHowToRegSharp as default } +export default IconHowToRegSharp diff --git a/src/IconHowToRegSharpFilled.tsx b/src/IconHowToRegSharpFilled.tsx index ee9e422e2..dfa92b672 100644 --- a/src/IconHowToRegSharpFilled.tsx +++ b/src/IconHowToRegSharpFilled.tsx @@ -8,4 +8,4 @@ const IconHowToRegSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconHowToRegSharpFilled as default } +export default IconHowToRegSharpFilled diff --git a/src/IconHowToVoteOutlined.tsx b/src/IconHowToVoteOutlined.tsx index 940663181..178753855 100644 --- a/src/IconHowToVoteOutlined.tsx +++ b/src/IconHowToVoteOutlined.tsx @@ -8,4 +8,4 @@ const IconHowToVoteOutlined: React.FC = ({ ...props }) => ( ) -export { IconHowToVoteOutlined as default } +export default IconHowToVoteOutlined diff --git a/src/IconHowToVoteOutlinedFilled.tsx b/src/IconHowToVoteOutlinedFilled.tsx index 279ade57e..a03930c00 100644 --- a/src/IconHowToVoteOutlinedFilled.tsx +++ b/src/IconHowToVoteOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconHowToVoteOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconHowToVoteOutlinedFilled as default } +export default IconHowToVoteOutlinedFilled diff --git a/src/IconHowToVoteRounded.tsx b/src/IconHowToVoteRounded.tsx index 05d22d722..351d8cf87 100644 --- a/src/IconHowToVoteRounded.tsx +++ b/src/IconHowToVoteRounded.tsx @@ -8,4 +8,4 @@ const IconHowToVoteRounded: React.FC = ({ ...props }) => ( ) -export { IconHowToVoteRounded as default } +export default IconHowToVoteRounded diff --git a/src/IconHowToVoteRoundedFilled.tsx b/src/IconHowToVoteRoundedFilled.tsx index 878dc97dc..a329ccdd4 100644 --- a/src/IconHowToVoteRoundedFilled.tsx +++ b/src/IconHowToVoteRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconHowToVoteRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconHowToVoteRoundedFilled as default } +export default IconHowToVoteRoundedFilled diff --git a/src/IconHowToVoteSharp.tsx b/src/IconHowToVoteSharp.tsx index 5dadc19e2..38a7b0f1a 100644 --- a/src/IconHowToVoteSharp.tsx +++ b/src/IconHowToVoteSharp.tsx @@ -8,4 +8,4 @@ const IconHowToVoteSharp: React.FC = ({ ...props }) => ( ) -export { IconHowToVoteSharp as default } +export default IconHowToVoteSharp diff --git a/src/IconHowToVoteSharpFilled.tsx b/src/IconHowToVoteSharpFilled.tsx index dbea76abd..2f37b832c 100644 --- a/src/IconHowToVoteSharpFilled.tsx +++ b/src/IconHowToVoteSharpFilled.tsx @@ -8,4 +8,4 @@ const IconHowToVoteSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconHowToVoteSharpFilled as default } +export default IconHowToVoteSharpFilled diff --git a/src/IconHrRestingOutlined.tsx b/src/IconHrRestingOutlined.tsx index ae95129c6..6e4d6582b 100644 --- a/src/IconHrRestingOutlined.tsx +++ b/src/IconHrRestingOutlined.tsx @@ -8,4 +8,4 @@ const IconHrRestingOutlined: React.FC = ({ ...props }) => ( ) -export { IconHrRestingOutlined as default } +export default IconHrRestingOutlined diff --git a/src/IconHrRestingOutlinedFilled.tsx b/src/IconHrRestingOutlinedFilled.tsx index c2e23cdf8..a65da3a3c 100644 --- a/src/IconHrRestingOutlinedFilled.tsx +++ b/src/IconHrRestingOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconHrRestingOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconHrRestingOutlinedFilled as default } +export default IconHrRestingOutlinedFilled diff --git a/src/IconHrRestingRounded.tsx b/src/IconHrRestingRounded.tsx index 011471d7c..20d667fbc 100644 --- a/src/IconHrRestingRounded.tsx +++ b/src/IconHrRestingRounded.tsx @@ -8,4 +8,4 @@ const IconHrRestingRounded: React.FC = ({ ...props }) => ( ) -export { IconHrRestingRounded as default } +export default IconHrRestingRounded diff --git a/src/IconHrRestingRoundedFilled.tsx b/src/IconHrRestingRoundedFilled.tsx index 4cd41b2a1..c634e5083 100644 --- a/src/IconHrRestingRoundedFilled.tsx +++ b/src/IconHrRestingRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconHrRestingRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconHrRestingRoundedFilled as default } +export default IconHrRestingRoundedFilled diff --git a/src/IconHrRestingSharp.tsx b/src/IconHrRestingSharp.tsx index 15b789480..9ccba3823 100644 --- a/src/IconHrRestingSharp.tsx +++ b/src/IconHrRestingSharp.tsx @@ -8,4 +8,4 @@ const IconHrRestingSharp: React.FC = ({ ...props }) => ( ) -export { IconHrRestingSharp as default } +export default IconHrRestingSharp diff --git a/src/IconHrRestingSharpFilled.tsx b/src/IconHrRestingSharpFilled.tsx index 0d8e44d75..41f092b38 100644 --- a/src/IconHrRestingSharpFilled.tsx +++ b/src/IconHrRestingSharpFilled.tsx @@ -8,4 +8,4 @@ const IconHrRestingSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconHrRestingSharpFilled as default } +export default IconHrRestingSharpFilled diff --git a/src/IconHtmlOutlined.tsx b/src/IconHtmlOutlined.tsx index c5231e126..312c2609e 100644 --- a/src/IconHtmlOutlined.tsx +++ b/src/IconHtmlOutlined.tsx @@ -8,4 +8,4 @@ const IconHtmlOutlined: React.FC = ({ ...props }) => ( ) -export { IconHtmlOutlined as default } +export default IconHtmlOutlined diff --git a/src/IconHtmlOutlinedFilled.tsx b/src/IconHtmlOutlinedFilled.tsx index 9966c8be3..588ae18c3 100644 --- a/src/IconHtmlOutlinedFilled.tsx +++ b/src/IconHtmlOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconHtmlOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconHtmlOutlinedFilled as default } +export default IconHtmlOutlinedFilled diff --git a/src/IconHtmlRounded.tsx b/src/IconHtmlRounded.tsx index 97d9f83f7..c20505752 100644 --- a/src/IconHtmlRounded.tsx +++ b/src/IconHtmlRounded.tsx @@ -8,4 +8,4 @@ const IconHtmlRounded: React.FC = ({ ...props }) => ( ) -export { IconHtmlRounded as default } +export default IconHtmlRounded diff --git a/src/IconHtmlRoundedFilled.tsx b/src/IconHtmlRoundedFilled.tsx index 4f9a31248..c24727a55 100644 --- a/src/IconHtmlRoundedFilled.tsx +++ b/src/IconHtmlRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconHtmlRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconHtmlRoundedFilled as default } +export default IconHtmlRoundedFilled diff --git a/src/IconHtmlSharp.tsx b/src/IconHtmlSharp.tsx index 81b2fe945..ad0fda936 100644 --- a/src/IconHtmlSharp.tsx +++ b/src/IconHtmlSharp.tsx @@ -8,4 +8,4 @@ const IconHtmlSharp: React.FC = ({ ...props }) => ( ) -export { IconHtmlSharp as default } +export default IconHtmlSharp diff --git a/src/IconHtmlSharpFilled.tsx b/src/IconHtmlSharpFilled.tsx index 17eb906b7..8ed5fced2 100644 --- a/src/IconHtmlSharpFilled.tsx +++ b/src/IconHtmlSharpFilled.tsx @@ -8,4 +8,4 @@ const IconHtmlSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconHtmlSharpFilled as default } +export default IconHtmlSharpFilled diff --git a/src/IconHttpOutlined.tsx b/src/IconHttpOutlined.tsx index 7e7c92c10..14e6ecb18 100644 --- a/src/IconHttpOutlined.tsx +++ b/src/IconHttpOutlined.tsx @@ -8,4 +8,4 @@ const IconHttpOutlined: React.FC = ({ ...props }) => ( ) -export { IconHttpOutlined as default } +export default IconHttpOutlined diff --git a/src/IconHttpOutlinedFilled.tsx b/src/IconHttpOutlinedFilled.tsx index 3fdd688d5..abf373e0d 100644 --- a/src/IconHttpOutlinedFilled.tsx +++ b/src/IconHttpOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconHttpOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconHttpOutlinedFilled as default } +export default IconHttpOutlinedFilled diff --git a/src/IconHttpRounded.tsx b/src/IconHttpRounded.tsx index 229dc9844..053e071d8 100644 --- a/src/IconHttpRounded.tsx +++ b/src/IconHttpRounded.tsx @@ -8,4 +8,4 @@ const IconHttpRounded: React.FC = ({ ...props }) => ( ) -export { IconHttpRounded as default } +export default IconHttpRounded diff --git a/src/IconHttpRoundedFilled.tsx b/src/IconHttpRoundedFilled.tsx index ac7537679..b530a5097 100644 --- a/src/IconHttpRoundedFilled.tsx +++ b/src/IconHttpRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconHttpRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconHttpRoundedFilled as default } +export default IconHttpRoundedFilled diff --git a/src/IconHttpSharp.tsx b/src/IconHttpSharp.tsx index 9f737d86f..83f756b34 100644 --- a/src/IconHttpSharp.tsx +++ b/src/IconHttpSharp.tsx @@ -8,4 +8,4 @@ const IconHttpSharp: React.FC = ({ ...props }) => ( ) -export { IconHttpSharp as default } +export default IconHttpSharp diff --git a/src/IconHttpSharpFilled.tsx b/src/IconHttpSharpFilled.tsx index 8c00f3a9e..b78a26415 100644 --- a/src/IconHttpSharpFilled.tsx +++ b/src/IconHttpSharpFilled.tsx @@ -8,4 +8,4 @@ const IconHttpSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconHttpSharpFilled as default } +export default IconHttpSharpFilled diff --git a/src/IconHubOutlined.tsx b/src/IconHubOutlined.tsx index baa69edec..615595f84 100644 --- a/src/IconHubOutlined.tsx +++ b/src/IconHubOutlined.tsx @@ -8,4 +8,4 @@ const IconHubOutlined: React.FC = ({ ...props }) => ( ) -export { IconHubOutlined as default } +export default IconHubOutlined diff --git a/src/IconHubOutlinedFilled.tsx b/src/IconHubOutlinedFilled.tsx index 301d08a8b..7d5ab2bab 100644 --- a/src/IconHubOutlinedFilled.tsx +++ b/src/IconHubOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconHubOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconHubOutlinedFilled as default } +export default IconHubOutlinedFilled diff --git a/src/IconHubRounded.tsx b/src/IconHubRounded.tsx index 9be94bbb7..17c856000 100644 --- a/src/IconHubRounded.tsx +++ b/src/IconHubRounded.tsx @@ -8,4 +8,4 @@ const IconHubRounded: React.FC = ({ ...props }) => ( ) -export { IconHubRounded as default } +export default IconHubRounded diff --git a/src/IconHubRoundedFilled.tsx b/src/IconHubRoundedFilled.tsx index e11a0ff7e..9a91d7ee5 100644 --- a/src/IconHubRoundedFilled.tsx +++ b/src/IconHubRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconHubRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconHubRoundedFilled as default } +export default IconHubRoundedFilled diff --git a/src/IconHubSharp.tsx b/src/IconHubSharp.tsx index 1171994dd..884d13573 100644 --- a/src/IconHubSharp.tsx +++ b/src/IconHubSharp.tsx @@ -8,4 +8,4 @@ const IconHubSharp: React.FC = ({ ...props }) => ( ) -export { IconHubSharp as default } +export default IconHubSharp diff --git a/src/IconHubSharpFilled.tsx b/src/IconHubSharpFilled.tsx index d41eef32b..9562cb605 100644 --- a/src/IconHubSharpFilled.tsx +++ b/src/IconHubSharpFilled.tsx @@ -8,4 +8,4 @@ const IconHubSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconHubSharpFilled as default } +export default IconHubSharpFilled diff --git a/src/IconHumerusAltOutlined.tsx b/src/IconHumerusAltOutlined.tsx index 5a5a6e5c9..631ec89c7 100644 --- a/src/IconHumerusAltOutlined.tsx +++ b/src/IconHumerusAltOutlined.tsx @@ -8,4 +8,4 @@ const IconHumerusAltOutlined: React.FC = ({ ...props }) => ( ) -export { IconHumerusAltOutlined as default } +export default IconHumerusAltOutlined diff --git a/src/IconHumerusAltOutlinedFilled.tsx b/src/IconHumerusAltOutlinedFilled.tsx index 9a06c17ce..434be51b1 100644 --- a/src/IconHumerusAltOutlinedFilled.tsx +++ b/src/IconHumerusAltOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconHumerusAltOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconHumerusAltOutlinedFilled as default } +export default IconHumerusAltOutlinedFilled diff --git a/src/IconHumerusAltRounded.tsx b/src/IconHumerusAltRounded.tsx index 93067db89..9d6d12376 100644 --- a/src/IconHumerusAltRounded.tsx +++ b/src/IconHumerusAltRounded.tsx @@ -8,4 +8,4 @@ const IconHumerusAltRounded: React.FC = ({ ...props }) => ( ) -export { IconHumerusAltRounded as default } +export default IconHumerusAltRounded diff --git a/src/IconHumerusAltRoundedFilled.tsx b/src/IconHumerusAltRoundedFilled.tsx index a9af0e92d..e17e7da36 100644 --- a/src/IconHumerusAltRoundedFilled.tsx +++ b/src/IconHumerusAltRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconHumerusAltRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconHumerusAltRoundedFilled as default } +export default IconHumerusAltRoundedFilled diff --git a/src/IconHumerusAltSharp.tsx b/src/IconHumerusAltSharp.tsx index 004236587..a2b1a7a14 100644 --- a/src/IconHumerusAltSharp.tsx +++ b/src/IconHumerusAltSharp.tsx @@ -8,4 +8,4 @@ const IconHumerusAltSharp: React.FC = ({ ...props }) => ( ) -export { IconHumerusAltSharp as default } +export default IconHumerusAltSharp diff --git a/src/IconHumerusAltSharpFilled.tsx b/src/IconHumerusAltSharpFilled.tsx index 85115ff68..7aeab5441 100644 --- a/src/IconHumerusAltSharpFilled.tsx +++ b/src/IconHumerusAltSharpFilled.tsx @@ -8,4 +8,4 @@ const IconHumerusAltSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconHumerusAltSharpFilled as default } +export default IconHumerusAltSharpFilled diff --git a/src/IconHumerusOutlined.tsx b/src/IconHumerusOutlined.tsx index 5197be503..5b9480353 100644 --- a/src/IconHumerusOutlined.tsx +++ b/src/IconHumerusOutlined.tsx @@ -8,4 +8,4 @@ const IconHumerusOutlined: React.FC = ({ ...props }) => ( ) -export { IconHumerusOutlined as default } +export default IconHumerusOutlined diff --git a/src/IconHumerusOutlinedFilled.tsx b/src/IconHumerusOutlinedFilled.tsx index e830eb822..6b9148145 100644 --- a/src/IconHumerusOutlinedFilled.tsx +++ b/src/IconHumerusOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconHumerusOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconHumerusOutlinedFilled as default } +export default IconHumerusOutlinedFilled diff --git a/src/IconHumerusRounded.tsx b/src/IconHumerusRounded.tsx index 9471b2b27..b56302208 100644 --- a/src/IconHumerusRounded.tsx +++ b/src/IconHumerusRounded.tsx @@ -8,4 +8,4 @@ const IconHumerusRounded: React.FC = ({ ...props }) => ( ) -export { IconHumerusRounded as default } +export default IconHumerusRounded diff --git a/src/IconHumerusRoundedFilled.tsx b/src/IconHumerusRoundedFilled.tsx index 815a967fd..b97bfed51 100644 --- a/src/IconHumerusRoundedFilled.tsx +++ b/src/IconHumerusRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconHumerusRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconHumerusRoundedFilled as default } +export default IconHumerusRoundedFilled diff --git a/src/IconHumerusSharp.tsx b/src/IconHumerusSharp.tsx index a231bf69b..e854398af 100644 --- a/src/IconHumerusSharp.tsx +++ b/src/IconHumerusSharp.tsx @@ -8,4 +8,4 @@ const IconHumerusSharp: React.FC = ({ ...props }) => ( ) -export { IconHumerusSharp as default } +export default IconHumerusSharp diff --git a/src/IconHumerusSharpFilled.tsx b/src/IconHumerusSharpFilled.tsx index af9ccb867..a7b1520d9 100644 --- a/src/IconHumerusSharpFilled.tsx +++ b/src/IconHumerusSharpFilled.tsx @@ -8,4 +8,4 @@ const IconHumerusSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconHumerusSharpFilled as default } +export default IconHumerusSharpFilled diff --git a/src/IconHumidityHighOutlined.tsx b/src/IconHumidityHighOutlined.tsx index df48c8514..f7aacd78d 100644 --- a/src/IconHumidityHighOutlined.tsx +++ b/src/IconHumidityHighOutlined.tsx @@ -8,4 +8,4 @@ const IconHumidityHighOutlined: React.FC = ({ ...props }) => ( ) -export { IconHumidityHighOutlined as default } +export default IconHumidityHighOutlined diff --git a/src/IconHumidityHighOutlinedFilled.tsx b/src/IconHumidityHighOutlinedFilled.tsx index 76014c136..1c1dd29d5 100644 --- a/src/IconHumidityHighOutlinedFilled.tsx +++ b/src/IconHumidityHighOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconHumidityHighOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconHumidityHighOutlinedFilled as default } +export default IconHumidityHighOutlinedFilled diff --git a/src/IconHumidityHighRounded.tsx b/src/IconHumidityHighRounded.tsx index 8cabadf22..f61531170 100644 --- a/src/IconHumidityHighRounded.tsx +++ b/src/IconHumidityHighRounded.tsx @@ -8,4 +8,4 @@ const IconHumidityHighRounded: React.FC = ({ ...props }) => ( ) -export { IconHumidityHighRounded as default } +export default IconHumidityHighRounded diff --git a/src/IconHumidityHighRoundedFilled.tsx b/src/IconHumidityHighRoundedFilled.tsx index 1aca65114..a0bc583fd 100644 --- a/src/IconHumidityHighRoundedFilled.tsx +++ b/src/IconHumidityHighRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconHumidityHighRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconHumidityHighRoundedFilled as default } +export default IconHumidityHighRoundedFilled diff --git a/src/IconHumidityHighSharp.tsx b/src/IconHumidityHighSharp.tsx index e78f4abf8..0a912ba04 100644 --- a/src/IconHumidityHighSharp.tsx +++ b/src/IconHumidityHighSharp.tsx @@ -8,4 +8,4 @@ const IconHumidityHighSharp: React.FC = ({ ...props }) => ( ) -export { IconHumidityHighSharp as default } +export default IconHumidityHighSharp diff --git a/src/IconHumidityHighSharpFilled.tsx b/src/IconHumidityHighSharpFilled.tsx index 95a4614b0..b00504794 100644 --- a/src/IconHumidityHighSharpFilled.tsx +++ b/src/IconHumidityHighSharpFilled.tsx @@ -8,4 +8,4 @@ const IconHumidityHighSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconHumidityHighSharpFilled as default } +export default IconHumidityHighSharpFilled diff --git a/src/IconHumidityIndoorOutlined.tsx b/src/IconHumidityIndoorOutlined.tsx index a1b00c45f..34864f769 100644 --- a/src/IconHumidityIndoorOutlined.tsx +++ b/src/IconHumidityIndoorOutlined.tsx @@ -8,4 +8,4 @@ const IconHumidityIndoorOutlined: React.FC = ({ ...props }) => ( ) -export { IconHumidityIndoorOutlined as default } +export default IconHumidityIndoorOutlined diff --git a/src/IconHumidityIndoorOutlinedFilled.tsx b/src/IconHumidityIndoorOutlinedFilled.tsx index 7bde90c42..0f016eb14 100644 --- a/src/IconHumidityIndoorOutlinedFilled.tsx +++ b/src/IconHumidityIndoorOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconHumidityIndoorOutlinedFilled: React.FC = ({ ) -export { IconHumidityIndoorOutlinedFilled as default } +export default IconHumidityIndoorOutlinedFilled diff --git a/src/IconHumidityIndoorRounded.tsx b/src/IconHumidityIndoorRounded.tsx index dc99588d4..76cc71d78 100644 --- a/src/IconHumidityIndoorRounded.tsx +++ b/src/IconHumidityIndoorRounded.tsx @@ -8,4 +8,4 @@ const IconHumidityIndoorRounded: React.FC = ({ ...props }) => ( ) -export { IconHumidityIndoorRounded as default } +export default IconHumidityIndoorRounded diff --git a/src/IconHumidityIndoorRoundedFilled.tsx b/src/IconHumidityIndoorRoundedFilled.tsx index d0aecfbb3..3ac4d07f1 100644 --- a/src/IconHumidityIndoorRoundedFilled.tsx +++ b/src/IconHumidityIndoorRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconHumidityIndoorRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconHumidityIndoorRoundedFilled as default } +export default IconHumidityIndoorRoundedFilled diff --git a/src/IconHumidityIndoorSharp.tsx b/src/IconHumidityIndoorSharp.tsx index 2f781a673..55b926bbf 100644 --- a/src/IconHumidityIndoorSharp.tsx +++ b/src/IconHumidityIndoorSharp.tsx @@ -8,4 +8,4 @@ const IconHumidityIndoorSharp: React.FC = ({ ...props }) => ( ) -export { IconHumidityIndoorSharp as default } +export default IconHumidityIndoorSharp diff --git a/src/IconHumidityIndoorSharpFilled.tsx b/src/IconHumidityIndoorSharpFilled.tsx index 6941f8846..0c7ae2e01 100644 --- a/src/IconHumidityIndoorSharpFilled.tsx +++ b/src/IconHumidityIndoorSharpFilled.tsx @@ -8,4 +8,4 @@ const IconHumidityIndoorSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconHumidityIndoorSharpFilled as default } +export default IconHumidityIndoorSharpFilled diff --git a/src/IconHumidityLowOutlined.tsx b/src/IconHumidityLowOutlined.tsx index 842e6b135..5bbd2256b 100644 --- a/src/IconHumidityLowOutlined.tsx +++ b/src/IconHumidityLowOutlined.tsx @@ -8,4 +8,4 @@ const IconHumidityLowOutlined: React.FC = ({ ...props }) => ( ) -export { IconHumidityLowOutlined as default } +export default IconHumidityLowOutlined diff --git a/src/IconHumidityLowOutlinedFilled.tsx b/src/IconHumidityLowOutlinedFilled.tsx index 486eb4455..0babf5398 100644 --- a/src/IconHumidityLowOutlinedFilled.tsx +++ b/src/IconHumidityLowOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconHumidityLowOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconHumidityLowOutlinedFilled as default } +export default IconHumidityLowOutlinedFilled diff --git a/src/IconHumidityLowRounded.tsx b/src/IconHumidityLowRounded.tsx index 183568a49..ac439e957 100644 --- a/src/IconHumidityLowRounded.tsx +++ b/src/IconHumidityLowRounded.tsx @@ -8,4 +8,4 @@ const IconHumidityLowRounded: React.FC = ({ ...props }) => ( ) -export { IconHumidityLowRounded as default } +export default IconHumidityLowRounded diff --git a/src/IconHumidityLowRoundedFilled.tsx b/src/IconHumidityLowRoundedFilled.tsx index c396f76c5..9d194959f 100644 --- a/src/IconHumidityLowRoundedFilled.tsx +++ b/src/IconHumidityLowRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconHumidityLowRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconHumidityLowRoundedFilled as default } +export default IconHumidityLowRoundedFilled diff --git a/src/IconHumidityLowSharp.tsx b/src/IconHumidityLowSharp.tsx index 34f50d3ca..62a0eebf6 100644 --- a/src/IconHumidityLowSharp.tsx +++ b/src/IconHumidityLowSharp.tsx @@ -8,4 +8,4 @@ const IconHumidityLowSharp: React.FC = ({ ...props }) => ( ) -export { IconHumidityLowSharp as default } +export default IconHumidityLowSharp diff --git a/src/IconHumidityLowSharpFilled.tsx b/src/IconHumidityLowSharpFilled.tsx index 371cdf705..09f379dae 100644 --- a/src/IconHumidityLowSharpFilled.tsx +++ b/src/IconHumidityLowSharpFilled.tsx @@ -8,4 +8,4 @@ const IconHumidityLowSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconHumidityLowSharpFilled as default } +export default IconHumidityLowSharpFilled diff --git a/src/IconHumidityMidOutlined.tsx b/src/IconHumidityMidOutlined.tsx index 5f8a7c79e..baf2ed9cd 100644 --- a/src/IconHumidityMidOutlined.tsx +++ b/src/IconHumidityMidOutlined.tsx @@ -8,4 +8,4 @@ const IconHumidityMidOutlined: React.FC = ({ ...props }) => ( ) -export { IconHumidityMidOutlined as default } +export default IconHumidityMidOutlined diff --git a/src/IconHumidityMidOutlinedFilled.tsx b/src/IconHumidityMidOutlinedFilled.tsx index 34c274263..23507a9c4 100644 --- a/src/IconHumidityMidOutlinedFilled.tsx +++ b/src/IconHumidityMidOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconHumidityMidOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconHumidityMidOutlinedFilled as default } +export default IconHumidityMidOutlinedFilled diff --git a/src/IconHumidityMidRounded.tsx b/src/IconHumidityMidRounded.tsx index 7104f4bb2..0ad3ee4fa 100644 --- a/src/IconHumidityMidRounded.tsx +++ b/src/IconHumidityMidRounded.tsx @@ -8,4 +8,4 @@ const IconHumidityMidRounded: React.FC = ({ ...props }) => ( ) -export { IconHumidityMidRounded as default } +export default IconHumidityMidRounded diff --git a/src/IconHumidityMidRoundedFilled.tsx b/src/IconHumidityMidRoundedFilled.tsx index 07a4870ce..a3ef5c267 100644 --- a/src/IconHumidityMidRoundedFilled.tsx +++ b/src/IconHumidityMidRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconHumidityMidRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconHumidityMidRoundedFilled as default } +export default IconHumidityMidRoundedFilled diff --git a/src/IconHumidityMidSharp.tsx b/src/IconHumidityMidSharp.tsx index 7c6207b30..d82678510 100644 --- a/src/IconHumidityMidSharp.tsx +++ b/src/IconHumidityMidSharp.tsx @@ -8,4 +8,4 @@ const IconHumidityMidSharp: React.FC = ({ ...props }) => ( ) -export { IconHumidityMidSharp as default } +export default IconHumidityMidSharp diff --git a/src/IconHumidityMidSharpFilled.tsx b/src/IconHumidityMidSharpFilled.tsx index 654f7ddf1..dd4a3b9f5 100644 --- a/src/IconHumidityMidSharpFilled.tsx +++ b/src/IconHumidityMidSharpFilled.tsx @@ -8,4 +8,4 @@ const IconHumidityMidSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconHumidityMidSharpFilled as default } +export default IconHumidityMidSharpFilled diff --git a/src/IconHumidityPercentageOutlined.tsx b/src/IconHumidityPercentageOutlined.tsx index 6d6ac4e60..bb41d7e7b 100644 --- a/src/IconHumidityPercentageOutlined.tsx +++ b/src/IconHumidityPercentageOutlined.tsx @@ -8,4 +8,4 @@ const IconHumidityPercentageOutlined: React.FC = ({ ...props }) => ( ) -export { IconHumidityPercentageOutlined as default } +export default IconHumidityPercentageOutlined diff --git a/src/IconHumidityPercentageOutlinedFilled.tsx b/src/IconHumidityPercentageOutlinedFilled.tsx index e501b7f16..ae97479de 100644 --- a/src/IconHumidityPercentageOutlinedFilled.tsx +++ b/src/IconHumidityPercentageOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconHumidityPercentageOutlinedFilled: React.FC = ({ ) -export { IconHumidityPercentageOutlinedFilled as default } +export default IconHumidityPercentageOutlinedFilled diff --git a/src/IconHumidityPercentageRounded.tsx b/src/IconHumidityPercentageRounded.tsx index 376fc00c4..46489a9b8 100644 --- a/src/IconHumidityPercentageRounded.tsx +++ b/src/IconHumidityPercentageRounded.tsx @@ -8,4 +8,4 @@ const IconHumidityPercentageRounded: React.FC = ({ ...props }) => ( ) -export { IconHumidityPercentageRounded as default } +export default IconHumidityPercentageRounded diff --git a/src/IconHumidityPercentageRoundedFilled.tsx b/src/IconHumidityPercentageRoundedFilled.tsx index e50f222de..cbec47188 100644 --- a/src/IconHumidityPercentageRoundedFilled.tsx +++ b/src/IconHumidityPercentageRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconHumidityPercentageRoundedFilled: React.FC = ({ ) -export { IconHumidityPercentageRoundedFilled as default } +export default IconHumidityPercentageRoundedFilled diff --git a/src/IconHumidityPercentageSharp.tsx b/src/IconHumidityPercentageSharp.tsx index ff62be15c..0c5421126 100644 --- a/src/IconHumidityPercentageSharp.tsx +++ b/src/IconHumidityPercentageSharp.tsx @@ -8,4 +8,4 @@ const IconHumidityPercentageSharp: React.FC = ({ ...props }) => ( ) -export { IconHumidityPercentageSharp as default } +export default IconHumidityPercentageSharp diff --git a/src/IconHumidityPercentageSharpFilled.tsx b/src/IconHumidityPercentageSharpFilled.tsx index ffdec55dc..947be558d 100644 --- a/src/IconHumidityPercentageSharpFilled.tsx +++ b/src/IconHumidityPercentageSharpFilled.tsx @@ -10,4 +10,4 @@ const IconHumidityPercentageSharpFilled: React.FC = ({ ) -export { IconHumidityPercentageSharpFilled as default } +export default IconHumidityPercentageSharpFilled diff --git a/src/IconHvacOutlined.tsx b/src/IconHvacOutlined.tsx index 863ca7e22..4b01ffe1f 100644 --- a/src/IconHvacOutlined.tsx +++ b/src/IconHvacOutlined.tsx @@ -8,4 +8,4 @@ const IconHvacOutlined: React.FC = ({ ...props }) => ( ) -export { IconHvacOutlined as default } +export default IconHvacOutlined diff --git a/src/IconHvacOutlinedFilled.tsx b/src/IconHvacOutlinedFilled.tsx index 66714f5f0..89eb4a099 100644 --- a/src/IconHvacOutlinedFilled.tsx +++ b/src/IconHvacOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconHvacOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconHvacOutlinedFilled as default } +export default IconHvacOutlinedFilled diff --git a/src/IconHvacRounded.tsx b/src/IconHvacRounded.tsx index 1def1a6bf..2a2e110a5 100644 --- a/src/IconHvacRounded.tsx +++ b/src/IconHvacRounded.tsx @@ -8,4 +8,4 @@ const IconHvacRounded: React.FC = ({ ...props }) => ( ) -export { IconHvacRounded as default } +export default IconHvacRounded diff --git a/src/IconHvacRoundedFilled.tsx b/src/IconHvacRoundedFilled.tsx index 5a37da901..25649f975 100644 --- a/src/IconHvacRoundedFilled.tsx +++ b/src/IconHvacRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconHvacRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconHvacRoundedFilled as default } +export default IconHvacRoundedFilled diff --git a/src/IconHvacSharp.tsx b/src/IconHvacSharp.tsx index d0738d002..5de302a16 100644 --- a/src/IconHvacSharp.tsx +++ b/src/IconHvacSharp.tsx @@ -8,4 +8,4 @@ const IconHvacSharp: React.FC = ({ ...props }) => ( ) -export { IconHvacSharp as default } +export default IconHvacSharp diff --git a/src/IconHvacSharpFilled.tsx b/src/IconHvacSharpFilled.tsx index 7ac3d5f55..561d5a48f 100644 --- a/src/IconHvacSharpFilled.tsx +++ b/src/IconHvacSharpFilled.tsx @@ -8,4 +8,4 @@ const IconHvacSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconHvacSharpFilled as default } +export default IconHvacSharpFilled diff --git a/src/IconIceSkatingOutlined.tsx b/src/IconIceSkatingOutlined.tsx index 133f17a32..3452d9b22 100644 --- a/src/IconIceSkatingOutlined.tsx +++ b/src/IconIceSkatingOutlined.tsx @@ -8,4 +8,4 @@ const IconIceSkatingOutlined: React.FC = ({ ...props }) => ( ) -export { IconIceSkatingOutlined as default } +export default IconIceSkatingOutlined diff --git a/src/IconIceSkatingOutlinedFilled.tsx b/src/IconIceSkatingOutlinedFilled.tsx index b4ecbde31..a8f60d723 100644 --- a/src/IconIceSkatingOutlinedFilled.tsx +++ b/src/IconIceSkatingOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconIceSkatingOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconIceSkatingOutlinedFilled as default } +export default IconIceSkatingOutlinedFilled diff --git a/src/IconIceSkatingRounded.tsx b/src/IconIceSkatingRounded.tsx index 30e37184b..9a4fd3c3e 100644 --- a/src/IconIceSkatingRounded.tsx +++ b/src/IconIceSkatingRounded.tsx @@ -8,4 +8,4 @@ const IconIceSkatingRounded: React.FC = ({ ...props }) => ( ) -export { IconIceSkatingRounded as default } +export default IconIceSkatingRounded diff --git a/src/IconIceSkatingRoundedFilled.tsx b/src/IconIceSkatingRoundedFilled.tsx index 1b5c4eac5..6f750feb9 100644 --- a/src/IconIceSkatingRoundedFilled.tsx +++ b/src/IconIceSkatingRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconIceSkatingRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconIceSkatingRoundedFilled as default } +export default IconIceSkatingRoundedFilled diff --git a/src/IconIceSkatingSharp.tsx b/src/IconIceSkatingSharp.tsx index ccb158a8e..cff2b062e 100644 --- a/src/IconIceSkatingSharp.tsx +++ b/src/IconIceSkatingSharp.tsx @@ -8,4 +8,4 @@ const IconIceSkatingSharp: React.FC = ({ ...props }) => ( ) -export { IconIceSkatingSharp as default } +export default IconIceSkatingSharp diff --git a/src/IconIceSkatingSharpFilled.tsx b/src/IconIceSkatingSharpFilled.tsx index 3fab9bbfa..0ec36ead0 100644 --- a/src/IconIceSkatingSharpFilled.tsx +++ b/src/IconIceSkatingSharpFilled.tsx @@ -8,4 +8,4 @@ const IconIceSkatingSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconIceSkatingSharpFilled as default } +export default IconIceSkatingSharpFilled diff --git a/src/IconIcecreamOutlined.tsx b/src/IconIcecreamOutlined.tsx index c0c47a69f..9c76cd546 100644 --- a/src/IconIcecreamOutlined.tsx +++ b/src/IconIcecreamOutlined.tsx @@ -8,4 +8,4 @@ const IconIcecreamOutlined: React.FC = ({ ...props }) => ( ) -export { IconIcecreamOutlined as default } +export default IconIcecreamOutlined diff --git a/src/IconIcecreamOutlinedFilled.tsx b/src/IconIcecreamOutlinedFilled.tsx index 7d4933b6c..354adcd98 100644 --- a/src/IconIcecreamOutlinedFilled.tsx +++ b/src/IconIcecreamOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconIcecreamOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconIcecreamOutlinedFilled as default } +export default IconIcecreamOutlinedFilled diff --git a/src/IconIcecreamRounded.tsx b/src/IconIcecreamRounded.tsx index 3eb6eff4f..5c87cae06 100644 --- a/src/IconIcecreamRounded.tsx +++ b/src/IconIcecreamRounded.tsx @@ -8,4 +8,4 @@ const IconIcecreamRounded: React.FC = ({ ...props }) => ( ) -export { IconIcecreamRounded as default } +export default IconIcecreamRounded diff --git a/src/IconIcecreamRoundedFilled.tsx b/src/IconIcecreamRoundedFilled.tsx index 0d9ee4732..85f54e4ac 100644 --- a/src/IconIcecreamRoundedFilled.tsx +++ b/src/IconIcecreamRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconIcecreamRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconIcecreamRoundedFilled as default } +export default IconIcecreamRoundedFilled diff --git a/src/IconIcecreamSharp.tsx b/src/IconIcecreamSharp.tsx index 480daee19..bf691fe9e 100644 --- a/src/IconIcecreamSharp.tsx +++ b/src/IconIcecreamSharp.tsx @@ -8,4 +8,4 @@ const IconIcecreamSharp: React.FC = ({ ...props }) => ( ) -export { IconIcecreamSharp as default } +export default IconIcecreamSharp diff --git a/src/IconIcecreamSharpFilled.tsx b/src/IconIcecreamSharpFilled.tsx index 3cc74f72e..c59a83dbc 100644 --- a/src/IconIcecreamSharpFilled.tsx +++ b/src/IconIcecreamSharpFilled.tsx @@ -8,4 +8,4 @@ const IconIcecreamSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconIcecreamSharpFilled as default } +export default IconIcecreamSharpFilled diff --git a/src/IconIdCardOutlined.tsx b/src/IconIdCardOutlined.tsx index 4ff18f789..d1f589e78 100644 --- a/src/IconIdCardOutlined.tsx +++ b/src/IconIdCardOutlined.tsx @@ -8,4 +8,4 @@ const IconIdCardOutlined: React.FC = ({ ...props }) => ( ) -export { IconIdCardOutlined as default } +export default IconIdCardOutlined diff --git a/src/IconIdCardOutlinedFilled.tsx b/src/IconIdCardOutlinedFilled.tsx index 70b6458e6..14d64cda6 100644 --- a/src/IconIdCardOutlinedFilled.tsx +++ b/src/IconIdCardOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconIdCardOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconIdCardOutlinedFilled as default } +export default IconIdCardOutlinedFilled diff --git a/src/IconIdCardRounded.tsx b/src/IconIdCardRounded.tsx index 6911d1952..82339e27b 100644 --- a/src/IconIdCardRounded.tsx +++ b/src/IconIdCardRounded.tsx @@ -8,4 +8,4 @@ const IconIdCardRounded: React.FC = ({ ...props }) => ( ) -export { IconIdCardRounded as default } +export default IconIdCardRounded diff --git a/src/IconIdCardRoundedFilled.tsx b/src/IconIdCardRoundedFilled.tsx index 2bda16c20..4c31c09d4 100644 --- a/src/IconIdCardRoundedFilled.tsx +++ b/src/IconIdCardRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconIdCardRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconIdCardRoundedFilled as default } +export default IconIdCardRoundedFilled diff --git a/src/IconIdCardSharp.tsx b/src/IconIdCardSharp.tsx index a43b7acad..e675c420e 100644 --- a/src/IconIdCardSharp.tsx +++ b/src/IconIdCardSharp.tsx @@ -8,4 +8,4 @@ const IconIdCardSharp: React.FC = ({ ...props }) => ( ) -export { IconIdCardSharp as default } +export default IconIdCardSharp diff --git a/src/IconIdCardSharpFilled.tsx b/src/IconIdCardSharpFilled.tsx index 69f004ef1..0680301ba 100644 --- a/src/IconIdCardSharpFilled.tsx +++ b/src/IconIdCardSharpFilled.tsx @@ -8,4 +8,4 @@ const IconIdCardSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconIdCardSharpFilled as default } +export default IconIdCardSharpFilled diff --git a/src/IconIflOutlined.tsx b/src/IconIflOutlined.tsx index 8fc4f97b8..0314b0ed6 100644 --- a/src/IconIflOutlined.tsx +++ b/src/IconIflOutlined.tsx @@ -8,4 +8,4 @@ const IconIflOutlined: React.FC = ({ ...props }) => ( ) -export { IconIflOutlined as default } +export default IconIflOutlined diff --git a/src/IconIflOutlinedFilled.tsx b/src/IconIflOutlinedFilled.tsx index 1f89697d4..e4fc1e05d 100644 --- a/src/IconIflOutlinedFilled.tsx +++ b/src/IconIflOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconIflOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconIflOutlinedFilled as default } +export default IconIflOutlinedFilled diff --git a/src/IconIflRounded.tsx b/src/IconIflRounded.tsx index a1d4a19f7..64bc4b780 100644 --- a/src/IconIflRounded.tsx +++ b/src/IconIflRounded.tsx @@ -8,4 +8,4 @@ const IconIflRounded: React.FC = ({ ...props }) => ( ) -export { IconIflRounded as default } +export default IconIflRounded diff --git a/src/IconIflRoundedFilled.tsx b/src/IconIflRoundedFilled.tsx index 6443df0e8..147c33b90 100644 --- a/src/IconIflRoundedFilled.tsx +++ b/src/IconIflRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconIflRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconIflRoundedFilled as default } +export default IconIflRoundedFilled diff --git a/src/IconIflSharp.tsx b/src/IconIflSharp.tsx index 92bbb76c4..7b3f85084 100644 --- a/src/IconIflSharp.tsx +++ b/src/IconIflSharp.tsx @@ -8,4 +8,4 @@ const IconIflSharp: React.FC = ({ ...props }) => ( ) -export { IconIflSharp as default } +export default IconIflSharp diff --git a/src/IconIflSharpFilled.tsx b/src/IconIflSharpFilled.tsx index de22f3a3a..330800dd5 100644 --- a/src/IconIflSharpFilled.tsx +++ b/src/IconIflSharpFilled.tsx @@ -8,4 +8,4 @@ const IconIflSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconIflSharpFilled as default } +export default IconIflSharpFilled diff --git a/src/IconIframeOffOutlined.tsx b/src/IconIframeOffOutlined.tsx index 287aea5b7..f4cc4ceb3 100644 --- a/src/IconIframeOffOutlined.tsx +++ b/src/IconIframeOffOutlined.tsx @@ -8,4 +8,4 @@ const IconIframeOffOutlined: React.FC = ({ ...props }) => ( ) -export { IconIframeOffOutlined as default } +export default IconIframeOffOutlined diff --git a/src/IconIframeOffOutlinedFilled.tsx b/src/IconIframeOffOutlinedFilled.tsx index bd819c3f1..1a9119ff4 100644 --- a/src/IconIframeOffOutlinedFilled.tsx +++ b/src/IconIframeOffOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconIframeOffOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconIframeOffOutlinedFilled as default } +export default IconIframeOffOutlinedFilled diff --git a/src/IconIframeOffRounded.tsx b/src/IconIframeOffRounded.tsx index 1ca8b3a01..22349c717 100644 --- a/src/IconIframeOffRounded.tsx +++ b/src/IconIframeOffRounded.tsx @@ -8,4 +8,4 @@ const IconIframeOffRounded: React.FC = ({ ...props }) => ( ) -export { IconIframeOffRounded as default } +export default IconIframeOffRounded diff --git a/src/IconIframeOffRoundedFilled.tsx b/src/IconIframeOffRoundedFilled.tsx index 439e229c8..5cdf63d3e 100644 --- a/src/IconIframeOffRoundedFilled.tsx +++ b/src/IconIframeOffRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconIframeOffRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconIframeOffRoundedFilled as default } +export default IconIframeOffRoundedFilled diff --git a/src/IconIframeOffSharp.tsx b/src/IconIframeOffSharp.tsx index 894f67f9b..e58e35745 100644 --- a/src/IconIframeOffSharp.tsx +++ b/src/IconIframeOffSharp.tsx @@ -8,4 +8,4 @@ const IconIframeOffSharp: React.FC = ({ ...props }) => ( ) -export { IconIframeOffSharp as default } +export default IconIframeOffSharp diff --git a/src/IconIframeOffSharpFilled.tsx b/src/IconIframeOffSharpFilled.tsx index 50eaeed6d..7ed75e22d 100644 --- a/src/IconIframeOffSharpFilled.tsx +++ b/src/IconIframeOffSharpFilled.tsx @@ -8,4 +8,4 @@ const IconIframeOffSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconIframeOffSharpFilled as default } +export default IconIframeOffSharpFilled diff --git a/src/IconIframeOutlined.tsx b/src/IconIframeOutlined.tsx index 6c832e77d..9c9d8afd9 100644 --- a/src/IconIframeOutlined.tsx +++ b/src/IconIframeOutlined.tsx @@ -8,4 +8,4 @@ const IconIframeOutlined: React.FC = ({ ...props }) => ( ) -export { IconIframeOutlined as default } +export default IconIframeOutlined diff --git a/src/IconIframeOutlinedFilled.tsx b/src/IconIframeOutlinedFilled.tsx index f50943747..733758bea 100644 --- a/src/IconIframeOutlinedFilled.tsx +++ b/src/IconIframeOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconIframeOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconIframeOutlinedFilled as default } +export default IconIframeOutlinedFilled diff --git a/src/IconIframeRounded.tsx b/src/IconIframeRounded.tsx index 8527c91fb..4a6f12de0 100644 --- a/src/IconIframeRounded.tsx +++ b/src/IconIframeRounded.tsx @@ -8,4 +8,4 @@ const IconIframeRounded: React.FC = ({ ...props }) => ( ) -export { IconIframeRounded as default } +export default IconIframeRounded diff --git a/src/IconIframeRoundedFilled.tsx b/src/IconIframeRoundedFilled.tsx index a8c69884a..69f332d67 100644 --- a/src/IconIframeRoundedFilled.tsx +++ b/src/IconIframeRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconIframeRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconIframeRoundedFilled as default } +export default IconIframeRoundedFilled diff --git a/src/IconIframeSharp.tsx b/src/IconIframeSharp.tsx index 4d0b0b9c6..5656d99f3 100644 --- a/src/IconIframeSharp.tsx +++ b/src/IconIframeSharp.tsx @@ -8,4 +8,4 @@ const IconIframeSharp: React.FC = ({ ...props }) => ( ) -export { IconIframeSharp as default } +export default IconIframeSharp diff --git a/src/IconIframeSharpFilled.tsx b/src/IconIframeSharpFilled.tsx index 8b1cfc51a..7b95df341 100644 --- a/src/IconIframeSharpFilled.tsx +++ b/src/IconIframeSharpFilled.tsx @@ -8,4 +8,4 @@ const IconIframeSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconIframeSharpFilled as default } +export default IconIframeSharpFilled diff --git a/src/IconImageAspectRatioOutlined.tsx b/src/IconImageAspectRatioOutlined.tsx index 05e2733cb..384e13957 100644 --- a/src/IconImageAspectRatioOutlined.tsx +++ b/src/IconImageAspectRatioOutlined.tsx @@ -8,4 +8,4 @@ const IconImageAspectRatioOutlined: React.FC = ({ ...props }) => ( ) -export { IconImageAspectRatioOutlined as default } +export default IconImageAspectRatioOutlined diff --git a/src/IconImageAspectRatioOutlinedFilled.tsx b/src/IconImageAspectRatioOutlinedFilled.tsx index 8ba60c95b..5cf6290d9 100644 --- a/src/IconImageAspectRatioOutlinedFilled.tsx +++ b/src/IconImageAspectRatioOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconImageAspectRatioOutlinedFilled: React.FC = ({ ) -export { IconImageAspectRatioOutlinedFilled as default } +export default IconImageAspectRatioOutlinedFilled diff --git a/src/IconImageAspectRatioRounded.tsx b/src/IconImageAspectRatioRounded.tsx index 763c428f6..51601c7fb 100644 --- a/src/IconImageAspectRatioRounded.tsx +++ b/src/IconImageAspectRatioRounded.tsx @@ -8,4 +8,4 @@ const IconImageAspectRatioRounded: React.FC = ({ ...props }) => ( ) -export { IconImageAspectRatioRounded as default } +export default IconImageAspectRatioRounded diff --git a/src/IconImageAspectRatioRoundedFilled.tsx b/src/IconImageAspectRatioRoundedFilled.tsx index 0a4f71abe..4551f0f46 100644 --- a/src/IconImageAspectRatioRoundedFilled.tsx +++ b/src/IconImageAspectRatioRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconImageAspectRatioRoundedFilled: React.FC = ({ ) -export { IconImageAspectRatioRoundedFilled as default } +export default IconImageAspectRatioRoundedFilled diff --git a/src/IconImageAspectRatioSharp.tsx b/src/IconImageAspectRatioSharp.tsx index 4a86a68d4..586c84999 100644 --- a/src/IconImageAspectRatioSharp.tsx +++ b/src/IconImageAspectRatioSharp.tsx @@ -8,4 +8,4 @@ const IconImageAspectRatioSharp: React.FC = ({ ...props }) => ( ) -export { IconImageAspectRatioSharp as default } +export default IconImageAspectRatioSharp diff --git a/src/IconImageAspectRatioSharpFilled.tsx b/src/IconImageAspectRatioSharpFilled.tsx index 865d03f3b..78d81de0e 100644 --- a/src/IconImageAspectRatioSharpFilled.tsx +++ b/src/IconImageAspectRatioSharpFilled.tsx @@ -8,4 +8,4 @@ const IconImageAspectRatioSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconImageAspectRatioSharpFilled as default } +export default IconImageAspectRatioSharpFilled diff --git a/src/IconImageOutlined.tsx b/src/IconImageOutlined.tsx index d9b096eee..3f5c60ec9 100644 --- a/src/IconImageOutlined.tsx +++ b/src/IconImageOutlined.tsx @@ -8,4 +8,4 @@ const IconImageOutlined: React.FC = ({ ...props }) => ( ) -export { IconImageOutlined as default } +export default IconImageOutlined diff --git a/src/IconImageOutlinedFilled.tsx b/src/IconImageOutlinedFilled.tsx index b0e1a6cf7..482224c54 100644 --- a/src/IconImageOutlinedFilled.tsx +++ b/src/IconImageOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconImageOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconImageOutlinedFilled as default } +export default IconImageOutlinedFilled diff --git a/src/IconImageRounded.tsx b/src/IconImageRounded.tsx index e12b80744..fec83d29e 100644 --- a/src/IconImageRounded.tsx +++ b/src/IconImageRounded.tsx @@ -8,4 +8,4 @@ const IconImageRounded: React.FC = ({ ...props }) => ( ) -export { IconImageRounded as default } +export default IconImageRounded diff --git a/src/IconImageRoundedFilled.tsx b/src/IconImageRoundedFilled.tsx index 9fee828b3..2e8a1ec1d 100644 --- a/src/IconImageRoundedFilled.tsx +++ b/src/IconImageRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconImageRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconImageRoundedFilled as default } +export default IconImageRoundedFilled diff --git a/src/IconImageSearchOutlined.tsx b/src/IconImageSearchOutlined.tsx index e6ac74b62..80703cde1 100644 --- a/src/IconImageSearchOutlined.tsx +++ b/src/IconImageSearchOutlined.tsx @@ -8,4 +8,4 @@ const IconImageSearchOutlined: React.FC = ({ ...props }) => ( ) -export { IconImageSearchOutlined as default } +export default IconImageSearchOutlined diff --git a/src/IconImageSearchOutlinedFilled.tsx b/src/IconImageSearchOutlinedFilled.tsx index ae3ff6121..ac1a6453f 100644 --- a/src/IconImageSearchOutlinedFilled.tsx +++ b/src/IconImageSearchOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconImageSearchOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconImageSearchOutlinedFilled as default } +export default IconImageSearchOutlinedFilled diff --git a/src/IconImageSearchRounded.tsx b/src/IconImageSearchRounded.tsx index 349e060e2..d186822d4 100644 --- a/src/IconImageSearchRounded.tsx +++ b/src/IconImageSearchRounded.tsx @@ -8,4 +8,4 @@ const IconImageSearchRounded: React.FC = ({ ...props }) => ( ) -export { IconImageSearchRounded as default } +export default IconImageSearchRounded diff --git a/src/IconImageSearchRoundedFilled.tsx b/src/IconImageSearchRoundedFilled.tsx index 6d6b18629..77aab1629 100644 --- a/src/IconImageSearchRoundedFilled.tsx +++ b/src/IconImageSearchRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconImageSearchRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconImageSearchRoundedFilled as default } +export default IconImageSearchRoundedFilled diff --git a/src/IconImageSearchSharp.tsx b/src/IconImageSearchSharp.tsx index 698ca4e71..99d900cb6 100644 --- a/src/IconImageSearchSharp.tsx +++ b/src/IconImageSearchSharp.tsx @@ -8,4 +8,4 @@ const IconImageSearchSharp: React.FC = ({ ...props }) => ( ) -export { IconImageSearchSharp as default } +export default IconImageSearchSharp diff --git a/src/IconImageSearchSharpFilled.tsx b/src/IconImageSearchSharpFilled.tsx index 615912d7d..142a5cd00 100644 --- a/src/IconImageSearchSharpFilled.tsx +++ b/src/IconImageSearchSharpFilled.tsx @@ -8,4 +8,4 @@ const IconImageSearchSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconImageSearchSharpFilled as default } +export default IconImageSearchSharpFilled diff --git a/src/IconImageSharp.tsx b/src/IconImageSharp.tsx index ef4ef236b..0551a3b61 100644 --- a/src/IconImageSharp.tsx +++ b/src/IconImageSharp.tsx @@ -8,4 +8,4 @@ const IconImageSharp: React.FC = ({ ...props }) => ( ) -export { IconImageSharp as default } +export default IconImageSharp diff --git a/src/IconImageSharpFilled.tsx b/src/IconImageSharpFilled.tsx index 5c3f19429..1b42801e9 100644 --- a/src/IconImageSharpFilled.tsx +++ b/src/IconImageSharpFilled.tsx @@ -8,4 +8,4 @@ const IconImageSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconImageSharpFilled as default } +export default IconImageSharpFilled diff --git a/src/IconImagesearchRollerOutlined.tsx b/src/IconImagesearchRollerOutlined.tsx index 884e04cff..dce26e968 100644 --- a/src/IconImagesearchRollerOutlined.tsx +++ b/src/IconImagesearchRollerOutlined.tsx @@ -8,4 +8,4 @@ const IconImagesearchRollerOutlined: React.FC = ({ ...props }) => ( ) -export { IconImagesearchRollerOutlined as default } +export default IconImagesearchRollerOutlined diff --git a/src/IconImagesearchRollerOutlinedFilled.tsx b/src/IconImagesearchRollerOutlinedFilled.tsx index f55e47b75..cbb838f1f 100644 --- a/src/IconImagesearchRollerOutlinedFilled.tsx +++ b/src/IconImagesearchRollerOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconImagesearchRollerOutlinedFilled: React.FC = ({ ) -export { IconImagesearchRollerOutlinedFilled as default } +export default IconImagesearchRollerOutlinedFilled diff --git a/src/IconImagesearchRollerRounded.tsx b/src/IconImagesearchRollerRounded.tsx index 02d60d145..5016d8dd1 100644 --- a/src/IconImagesearchRollerRounded.tsx +++ b/src/IconImagesearchRollerRounded.tsx @@ -8,4 +8,4 @@ const IconImagesearchRollerRounded: React.FC = ({ ...props }) => ( ) -export { IconImagesearchRollerRounded as default } +export default IconImagesearchRollerRounded diff --git a/src/IconImagesearchRollerRoundedFilled.tsx b/src/IconImagesearchRollerRoundedFilled.tsx index 4e01eec14..cb9544a45 100644 --- a/src/IconImagesearchRollerRoundedFilled.tsx +++ b/src/IconImagesearchRollerRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconImagesearchRollerRoundedFilled: React.FC = ({ ) -export { IconImagesearchRollerRoundedFilled as default } +export default IconImagesearchRollerRoundedFilled diff --git a/src/IconImagesearchRollerSharp.tsx b/src/IconImagesearchRollerSharp.tsx index 22e9802b6..e11390cb9 100644 --- a/src/IconImagesearchRollerSharp.tsx +++ b/src/IconImagesearchRollerSharp.tsx @@ -8,4 +8,4 @@ const IconImagesearchRollerSharp: React.FC = ({ ...props }) => ( ) -export { IconImagesearchRollerSharp as default } +export default IconImagesearchRollerSharp diff --git a/src/IconImagesearchRollerSharpFilled.tsx b/src/IconImagesearchRollerSharpFilled.tsx index 3cbfef713..904f4b8e6 100644 --- a/src/IconImagesearchRollerSharpFilled.tsx +++ b/src/IconImagesearchRollerSharpFilled.tsx @@ -10,4 +10,4 @@ const IconImagesearchRollerSharpFilled: React.FC = ({ ) -export { IconImagesearchRollerSharpFilled as default } +export default IconImagesearchRollerSharpFilled diff --git a/src/IconImagesmodeOutlined.tsx b/src/IconImagesmodeOutlined.tsx index 5c04e4b9f..ed9c3c72c 100644 --- a/src/IconImagesmodeOutlined.tsx +++ b/src/IconImagesmodeOutlined.tsx @@ -8,4 +8,4 @@ const IconImagesmodeOutlined: React.FC = ({ ...props }) => ( ) -export { IconImagesmodeOutlined as default } +export default IconImagesmodeOutlined diff --git a/src/IconImagesmodeOutlinedFilled.tsx b/src/IconImagesmodeOutlinedFilled.tsx index 0338a992d..efb22770a 100644 --- a/src/IconImagesmodeOutlinedFilled.tsx +++ b/src/IconImagesmodeOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconImagesmodeOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconImagesmodeOutlinedFilled as default } +export default IconImagesmodeOutlinedFilled diff --git a/src/IconImagesmodeRounded.tsx b/src/IconImagesmodeRounded.tsx index 793e5e8c4..2d3275230 100644 --- a/src/IconImagesmodeRounded.tsx +++ b/src/IconImagesmodeRounded.tsx @@ -8,4 +8,4 @@ const IconImagesmodeRounded: React.FC = ({ ...props }) => ( ) -export { IconImagesmodeRounded as default } +export default IconImagesmodeRounded diff --git a/src/IconImagesmodeRoundedFilled.tsx b/src/IconImagesmodeRoundedFilled.tsx index f08ba52ad..088f5ec2b 100644 --- a/src/IconImagesmodeRoundedFilled.tsx +++ b/src/IconImagesmodeRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconImagesmodeRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconImagesmodeRoundedFilled as default } +export default IconImagesmodeRoundedFilled diff --git a/src/IconImagesmodeSharp.tsx b/src/IconImagesmodeSharp.tsx index c17e9090e..7751c2d02 100644 --- a/src/IconImagesmodeSharp.tsx +++ b/src/IconImagesmodeSharp.tsx @@ -8,4 +8,4 @@ const IconImagesmodeSharp: React.FC = ({ ...props }) => ( ) -export { IconImagesmodeSharp as default } +export default IconImagesmodeSharp diff --git a/src/IconImagesmodeSharpFilled.tsx b/src/IconImagesmodeSharpFilled.tsx index 4c1f5eaa5..78451db85 100644 --- a/src/IconImagesmodeSharpFilled.tsx +++ b/src/IconImagesmodeSharpFilled.tsx @@ -8,4 +8,4 @@ const IconImagesmodeSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconImagesmodeSharpFilled as default } +export default IconImagesmodeSharpFilled diff --git a/src/IconImmunologyOutlined.tsx b/src/IconImmunologyOutlined.tsx index dd21936dc..5d127cfd4 100644 --- a/src/IconImmunologyOutlined.tsx +++ b/src/IconImmunologyOutlined.tsx @@ -8,4 +8,4 @@ const IconImmunologyOutlined: React.FC = ({ ...props }) => ( ) -export { IconImmunologyOutlined as default } +export default IconImmunologyOutlined diff --git a/src/IconImmunologyOutlinedFilled.tsx b/src/IconImmunologyOutlinedFilled.tsx index 581564d5f..2c6cb6a5a 100644 --- a/src/IconImmunologyOutlinedFilled.tsx +++ b/src/IconImmunologyOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconImmunologyOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconImmunologyOutlinedFilled as default } +export default IconImmunologyOutlinedFilled diff --git a/src/IconImmunologyRounded.tsx b/src/IconImmunologyRounded.tsx index 03971b482..0c1e25b5f 100644 --- a/src/IconImmunologyRounded.tsx +++ b/src/IconImmunologyRounded.tsx @@ -8,4 +8,4 @@ const IconImmunologyRounded: React.FC = ({ ...props }) => ( ) -export { IconImmunologyRounded as default } +export default IconImmunologyRounded diff --git a/src/IconImmunologyRoundedFilled.tsx b/src/IconImmunologyRoundedFilled.tsx index da620d869..6260a357e 100644 --- a/src/IconImmunologyRoundedFilled.tsx +++ b/src/IconImmunologyRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconImmunologyRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconImmunologyRoundedFilled as default } +export default IconImmunologyRoundedFilled diff --git a/src/IconImmunologySharp.tsx b/src/IconImmunologySharp.tsx index 66f6f7261..9b6fae666 100644 --- a/src/IconImmunologySharp.tsx +++ b/src/IconImmunologySharp.tsx @@ -8,4 +8,4 @@ const IconImmunologySharp: React.FC = ({ ...props }) => ( ) -export { IconImmunologySharp as default } +export default IconImmunologySharp diff --git a/src/IconImmunologySharpFilled.tsx b/src/IconImmunologySharpFilled.tsx index 9335f7033..8f89698c8 100644 --- a/src/IconImmunologySharpFilled.tsx +++ b/src/IconImmunologySharpFilled.tsx @@ -8,4 +8,4 @@ const IconImmunologySharpFilled: React.FC = ({ ...props }) => ( ) -export { IconImmunologySharpFilled as default } +export default IconImmunologySharpFilled diff --git a/src/IconImportContactsOutlined.tsx b/src/IconImportContactsOutlined.tsx index 00e3a3619..4fddaff1e 100644 --- a/src/IconImportContactsOutlined.tsx +++ b/src/IconImportContactsOutlined.tsx @@ -8,4 +8,4 @@ const IconImportContactsOutlined: React.FC = ({ ...props }) => ( ) -export { IconImportContactsOutlined as default } +export default IconImportContactsOutlined diff --git a/src/IconImportContactsOutlinedFilled.tsx b/src/IconImportContactsOutlinedFilled.tsx index 2d90779e0..424c78c3a 100644 --- a/src/IconImportContactsOutlinedFilled.tsx +++ b/src/IconImportContactsOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconImportContactsOutlinedFilled: React.FC = ({ ) -export { IconImportContactsOutlinedFilled as default } +export default IconImportContactsOutlinedFilled diff --git a/src/IconImportContactsRounded.tsx b/src/IconImportContactsRounded.tsx index 14b058a33..dff6dc3d9 100644 --- a/src/IconImportContactsRounded.tsx +++ b/src/IconImportContactsRounded.tsx @@ -8,4 +8,4 @@ const IconImportContactsRounded: React.FC = ({ ...props }) => ( ) -export { IconImportContactsRounded as default } +export default IconImportContactsRounded diff --git a/src/IconImportContactsRoundedFilled.tsx b/src/IconImportContactsRoundedFilled.tsx index e14d0a9fe..b87fa3dde 100644 --- a/src/IconImportContactsRoundedFilled.tsx +++ b/src/IconImportContactsRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconImportContactsRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconImportContactsRoundedFilled as default } +export default IconImportContactsRoundedFilled diff --git a/src/IconImportContactsSharp.tsx b/src/IconImportContactsSharp.tsx index c55fc2fb4..424040b95 100644 --- a/src/IconImportContactsSharp.tsx +++ b/src/IconImportContactsSharp.tsx @@ -8,4 +8,4 @@ const IconImportContactsSharp: React.FC = ({ ...props }) => ( ) -export { IconImportContactsSharp as default } +export default IconImportContactsSharp diff --git a/src/IconImportContactsSharpFilled.tsx b/src/IconImportContactsSharpFilled.tsx index ba43e526c..e0d82f98a 100644 --- a/src/IconImportContactsSharpFilled.tsx +++ b/src/IconImportContactsSharpFilled.tsx @@ -8,4 +8,4 @@ const IconImportContactsSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconImportContactsSharpFilled as default } +export default IconImportContactsSharpFilled diff --git a/src/IconImportantDevicesOutlined.tsx b/src/IconImportantDevicesOutlined.tsx index b63685fa5..80a8b42f8 100644 --- a/src/IconImportantDevicesOutlined.tsx +++ b/src/IconImportantDevicesOutlined.tsx @@ -8,4 +8,4 @@ const IconImportantDevicesOutlined: React.FC = ({ ...props }) => ( ) -export { IconImportantDevicesOutlined as default } +export default IconImportantDevicesOutlined diff --git a/src/IconImportantDevicesOutlinedFilled.tsx b/src/IconImportantDevicesOutlinedFilled.tsx index dca88edfc..2ea9e7d3c 100644 --- a/src/IconImportantDevicesOutlinedFilled.tsx +++ b/src/IconImportantDevicesOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconImportantDevicesOutlinedFilled: React.FC = ({ ) -export { IconImportantDevicesOutlinedFilled as default } +export default IconImportantDevicesOutlinedFilled diff --git a/src/IconImportantDevicesRounded.tsx b/src/IconImportantDevicesRounded.tsx index b435ab9ea..06b31b747 100644 --- a/src/IconImportantDevicesRounded.tsx +++ b/src/IconImportantDevicesRounded.tsx @@ -8,4 +8,4 @@ const IconImportantDevicesRounded: React.FC = ({ ...props }) => ( ) -export { IconImportantDevicesRounded as default } +export default IconImportantDevicesRounded diff --git a/src/IconImportantDevicesRoundedFilled.tsx b/src/IconImportantDevicesRoundedFilled.tsx index f8622eb14..4cc6ac23b 100644 --- a/src/IconImportantDevicesRoundedFilled.tsx +++ b/src/IconImportantDevicesRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconImportantDevicesRoundedFilled: React.FC = ({ ) -export { IconImportantDevicesRoundedFilled as default } +export default IconImportantDevicesRoundedFilled diff --git a/src/IconImportantDevicesSharp.tsx b/src/IconImportantDevicesSharp.tsx index 3de1cdd74..f61b7a0db 100644 --- a/src/IconImportantDevicesSharp.tsx +++ b/src/IconImportantDevicesSharp.tsx @@ -8,4 +8,4 @@ const IconImportantDevicesSharp: React.FC = ({ ...props }) => ( ) -export { IconImportantDevicesSharp as default } +export default IconImportantDevicesSharp diff --git a/src/IconImportantDevicesSharpFilled.tsx b/src/IconImportantDevicesSharpFilled.tsx index 0284f8e11..ff683e0bf 100644 --- a/src/IconImportantDevicesSharpFilled.tsx +++ b/src/IconImportantDevicesSharpFilled.tsx @@ -8,4 +8,4 @@ const IconImportantDevicesSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconImportantDevicesSharpFilled as default } +export default IconImportantDevicesSharpFilled diff --git a/src/IconInHomeModeOutlined.tsx b/src/IconInHomeModeOutlined.tsx index 6b6866820..522518946 100644 --- a/src/IconInHomeModeOutlined.tsx +++ b/src/IconInHomeModeOutlined.tsx @@ -8,4 +8,4 @@ const IconInHomeModeOutlined: React.FC = ({ ...props }) => ( ) -export { IconInHomeModeOutlined as default } +export default IconInHomeModeOutlined diff --git a/src/IconInHomeModeOutlinedFilled.tsx b/src/IconInHomeModeOutlinedFilled.tsx index ab68083e1..81ca3affd 100644 --- a/src/IconInHomeModeOutlinedFilled.tsx +++ b/src/IconInHomeModeOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconInHomeModeOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconInHomeModeOutlinedFilled as default } +export default IconInHomeModeOutlinedFilled diff --git a/src/IconInHomeModeRounded.tsx b/src/IconInHomeModeRounded.tsx index 45a8cf57f..3208db667 100644 --- a/src/IconInHomeModeRounded.tsx +++ b/src/IconInHomeModeRounded.tsx @@ -8,4 +8,4 @@ const IconInHomeModeRounded: React.FC = ({ ...props }) => ( ) -export { IconInHomeModeRounded as default } +export default IconInHomeModeRounded diff --git a/src/IconInHomeModeRoundedFilled.tsx b/src/IconInHomeModeRoundedFilled.tsx index 70d02369b..71540d1f1 100644 --- a/src/IconInHomeModeRoundedFilled.tsx +++ b/src/IconInHomeModeRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconInHomeModeRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconInHomeModeRoundedFilled as default } +export default IconInHomeModeRoundedFilled diff --git a/src/IconInHomeModeSharp.tsx b/src/IconInHomeModeSharp.tsx index 0116ed2ee..eff6606f3 100644 --- a/src/IconInHomeModeSharp.tsx +++ b/src/IconInHomeModeSharp.tsx @@ -8,4 +8,4 @@ const IconInHomeModeSharp: React.FC = ({ ...props }) => ( ) -export { IconInHomeModeSharp as default } +export default IconInHomeModeSharp diff --git a/src/IconInHomeModeSharpFilled.tsx b/src/IconInHomeModeSharpFilled.tsx index 5ad21f432..83abd3cf6 100644 --- a/src/IconInHomeModeSharpFilled.tsx +++ b/src/IconInHomeModeSharpFilled.tsx @@ -8,4 +8,4 @@ const IconInHomeModeSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconInHomeModeSharpFilled as default } +export default IconInHomeModeSharpFilled diff --git a/src/IconInactiveOrderOutlined.tsx b/src/IconInactiveOrderOutlined.tsx index 72ad265e1..aa37ee988 100644 --- a/src/IconInactiveOrderOutlined.tsx +++ b/src/IconInactiveOrderOutlined.tsx @@ -8,4 +8,4 @@ const IconInactiveOrderOutlined: React.FC = ({ ...props }) => ( ) -export { IconInactiveOrderOutlined as default } +export default IconInactiveOrderOutlined diff --git a/src/IconInactiveOrderOutlinedFilled.tsx b/src/IconInactiveOrderOutlinedFilled.tsx index cb47589bf..aec733606 100644 --- a/src/IconInactiveOrderOutlinedFilled.tsx +++ b/src/IconInactiveOrderOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconInactiveOrderOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconInactiveOrderOutlinedFilled as default } +export default IconInactiveOrderOutlinedFilled diff --git a/src/IconInactiveOrderRounded.tsx b/src/IconInactiveOrderRounded.tsx index 2c3719102..1131cf47b 100644 --- a/src/IconInactiveOrderRounded.tsx +++ b/src/IconInactiveOrderRounded.tsx @@ -8,4 +8,4 @@ const IconInactiveOrderRounded: React.FC = ({ ...props }) => ( ) -export { IconInactiveOrderRounded as default } +export default IconInactiveOrderRounded diff --git a/src/IconInactiveOrderRoundedFilled.tsx b/src/IconInactiveOrderRoundedFilled.tsx index 11e18ea80..9ea7ea178 100644 --- a/src/IconInactiveOrderRoundedFilled.tsx +++ b/src/IconInactiveOrderRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconInactiveOrderRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconInactiveOrderRoundedFilled as default } +export default IconInactiveOrderRoundedFilled diff --git a/src/IconInactiveOrderSharp.tsx b/src/IconInactiveOrderSharp.tsx index f8838dd91..07177fd1d 100644 --- a/src/IconInactiveOrderSharp.tsx +++ b/src/IconInactiveOrderSharp.tsx @@ -8,4 +8,4 @@ const IconInactiveOrderSharp: React.FC = ({ ...props }) => ( ) -export { IconInactiveOrderSharp as default } +export default IconInactiveOrderSharp diff --git a/src/IconInactiveOrderSharpFilled.tsx b/src/IconInactiveOrderSharpFilled.tsx index f551a0823..8f6035da7 100644 --- a/src/IconInactiveOrderSharpFilled.tsx +++ b/src/IconInactiveOrderSharpFilled.tsx @@ -8,4 +8,4 @@ const IconInactiveOrderSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconInactiveOrderSharpFilled as default } +export default IconInactiveOrderSharpFilled diff --git a/src/IconInboxCustomizeOutlined.tsx b/src/IconInboxCustomizeOutlined.tsx index 740b498f0..48c3d953f 100644 --- a/src/IconInboxCustomizeOutlined.tsx +++ b/src/IconInboxCustomizeOutlined.tsx @@ -8,4 +8,4 @@ const IconInboxCustomizeOutlined: React.FC = ({ ...props }) => ( ) -export { IconInboxCustomizeOutlined as default } +export default IconInboxCustomizeOutlined diff --git a/src/IconInboxCustomizeOutlinedFilled.tsx b/src/IconInboxCustomizeOutlinedFilled.tsx index 11f02e5ee..b1bf29c3f 100644 --- a/src/IconInboxCustomizeOutlinedFilled.tsx +++ b/src/IconInboxCustomizeOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconInboxCustomizeOutlinedFilled: React.FC = ({ ) -export { IconInboxCustomizeOutlinedFilled as default } +export default IconInboxCustomizeOutlinedFilled diff --git a/src/IconInboxCustomizeRounded.tsx b/src/IconInboxCustomizeRounded.tsx index ed73f3559..91552a76a 100644 --- a/src/IconInboxCustomizeRounded.tsx +++ b/src/IconInboxCustomizeRounded.tsx @@ -8,4 +8,4 @@ const IconInboxCustomizeRounded: React.FC = ({ ...props }) => ( ) -export { IconInboxCustomizeRounded as default } +export default IconInboxCustomizeRounded diff --git a/src/IconInboxCustomizeRoundedFilled.tsx b/src/IconInboxCustomizeRoundedFilled.tsx index c075e6891..65f8d4d33 100644 --- a/src/IconInboxCustomizeRoundedFilled.tsx +++ b/src/IconInboxCustomizeRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconInboxCustomizeRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconInboxCustomizeRoundedFilled as default } +export default IconInboxCustomizeRoundedFilled diff --git a/src/IconInboxCustomizeSharp.tsx b/src/IconInboxCustomizeSharp.tsx index e19a47e4b..45d464503 100644 --- a/src/IconInboxCustomizeSharp.tsx +++ b/src/IconInboxCustomizeSharp.tsx @@ -8,4 +8,4 @@ const IconInboxCustomizeSharp: React.FC = ({ ...props }) => ( ) -export { IconInboxCustomizeSharp as default } +export default IconInboxCustomizeSharp diff --git a/src/IconInboxCustomizeSharpFilled.tsx b/src/IconInboxCustomizeSharpFilled.tsx index 12e76da38..cd0760636 100644 --- a/src/IconInboxCustomizeSharpFilled.tsx +++ b/src/IconInboxCustomizeSharpFilled.tsx @@ -8,4 +8,4 @@ const IconInboxCustomizeSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconInboxCustomizeSharpFilled as default } +export default IconInboxCustomizeSharpFilled diff --git a/src/IconInboxOutlined.tsx b/src/IconInboxOutlined.tsx index e647d1a8e..95205a439 100644 --- a/src/IconInboxOutlined.tsx +++ b/src/IconInboxOutlined.tsx @@ -8,4 +8,4 @@ const IconInboxOutlined: React.FC = ({ ...props }) => ( ) -export { IconInboxOutlined as default } +export default IconInboxOutlined diff --git a/src/IconInboxOutlinedFilled.tsx b/src/IconInboxOutlinedFilled.tsx index 6c81605f6..afd173101 100644 --- a/src/IconInboxOutlinedFilled.tsx +++ b/src/IconInboxOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconInboxOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconInboxOutlinedFilled as default } +export default IconInboxOutlinedFilled diff --git a/src/IconInboxRounded.tsx b/src/IconInboxRounded.tsx index 091a47703..cfa0676ef 100644 --- a/src/IconInboxRounded.tsx +++ b/src/IconInboxRounded.tsx @@ -8,4 +8,4 @@ const IconInboxRounded: React.FC = ({ ...props }) => ( ) -export { IconInboxRounded as default } +export default IconInboxRounded diff --git a/src/IconInboxRoundedFilled.tsx b/src/IconInboxRoundedFilled.tsx index a667781ed..22f23fb77 100644 --- a/src/IconInboxRoundedFilled.tsx +++ b/src/IconInboxRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconInboxRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconInboxRoundedFilled as default } +export default IconInboxRoundedFilled diff --git a/src/IconInboxSharp.tsx b/src/IconInboxSharp.tsx index 19ce9ecd3..35d022f8b 100644 --- a/src/IconInboxSharp.tsx +++ b/src/IconInboxSharp.tsx @@ -8,4 +8,4 @@ const IconInboxSharp: React.FC = ({ ...props }) => ( ) -export { IconInboxSharp as default } +export default IconInboxSharp diff --git a/src/IconInboxSharpFilled.tsx b/src/IconInboxSharpFilled.tsx index 0e816ec7f..f9f59a487 100644 --- a/src/IconInboxSharpFilled.tsx +++ b/src/IconInboxSharpFilled.tsx @@ -8,4 +8,4 @@ const IconInboxSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconInboxSharpFilled as default } +export default IconInboxSharpFilled diff --git a/src/IconIncompleteCircleOutlined.tsx b/src/IconIncompleteCircleOutlined.tsx index 103a75e62..7562b5b06 100644 --- a/src/IconIncompleteCircleOutlined.tsx +++ b/src/IconIncompleteCircleOutlined.tsx @@ -8,4 +8,4 @@ const IconIncompleteCircleOutlined: React.FC = ({ ...props }) => ( ) -export { IconIncompleteCircleOutlined as default } +export default IconIncompleteCircleOutlined diff --git a/src/IconIncompleteCircleOutlinedFilled.tsx b/src/IconIncompleteCircleOutlinedFilled.tsx index dd12aa171..97881e4e2 100644 --- a/src/IconIncompleteCircleOutlinedFilled.tsx +++ b/src/IconIncompleteCircleOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconIncompleteCircleOutlinedFilled: React.FC = ({ ) -export { IconIncompleteCircleOutlinedFilled as default } +export default IconIncompleteCircleOutlinedFilled diff --git a/src/IconIncompleteCircleRounded.tsx b/src/IconIncompleteCircleRounded.tsx index f376a48b9..6658c4c79 100644 --- a/src/IconIncompleteCircleRounded.tsx +++ b/src/IconIncompleteCircleRounded.tsx @@ -8,4 +8,4 @@ const IconIncompleteCircleRounded: React.FC = ({ ...props }) => ( ) -export { IconIncompleteCircleRounded as default } +export default IconIncompleteCircleRounded diff --git a/src/IconIncompleteCircleRoundedFilled.tsx b/src/IconIncompleteCircleRoundedFilled.tsx index 165981ef6..1482be029 100644 --- a/src/IconIncompleteCircleRoundedFilled.tsx +++ b/src/IconIncompleteCircleRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconIncompleteCircleRoundedFilled: React.FC = ({ ) -export { IconIncompleteCircleRoundedFilled as default } +export default IconIncompleteCircleRoundedFilled diff --git a/src/IconIncompleteCircleSharp.tsx b/src/IconIncompleteCircleSharp.tsx index 17aaf6363..27be20289 100644 --- a/src/IconIncompleteCircleSharp.tsx +++ b/src/IconIncompleteCircleSharp.tsx @@ -8,4 +8,4 @@ const IconIncompleteCircleSharp: React.FC = ({ ...props }) => ( ) -export { IconIncompleteCircleSharp as default } +export default IconIncompleteCircleSharp diff --git a/src/IconIncompleteCircleSharpFilled.tsx b/src/IconIncompleteCircleSharpFilled.tsx index c5ba8e074..00923071b 100644 --- a/src/IconIncompleteCircleSharpFilled.tsx +++ b/src/IconIncompleteCircleSharpFilled.tsx @@ -8,4 +8,4 @@ const IconIncompleteCircleSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconIncompleteCircleSharpFilled as default } +export default IconIncompleteCircleSharpFilled diff --git a/src/IconIndeterminateCheckBoxOutlined.tsx b/src/IconIndeterminateCheckBoxOutlined.tsx index d1a9e5b44..8b54f1e90 100644 --- a/src/IconIndeterminateCheckBoxOutlined.tsx +++ b/src/IconIndeterminateCheckBoxOutlined.tsx @@ -10,4 +10,4 @@ const IconIndeterminateCheckBoxOutlined: React.FC = ({ ) -export { IconIndeterminateCheckBoxOutlined as default } +export default IconIndeterminateCheckBoxOutlined diff --git a/src/IconIndeterminateCheckBoxOutlinedFilled.tsx b/src/IconIndeterminateCheckBoxOutlinedFilled.tsx index bc3dc8c3a..a2b6ea3f7 100644 --- a/src/IconIndeterminateCheckBoxOutlinedFilled.tsx +++ b/src/IconIndeterminateCheckBoxOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconIndeterminateCheckBoxOutlinedFilled: React.FC = ({ ) -export { IconIndeterminateCheckBoxOutlinedFilled as default } +export default IconIndeterminateCheckBoxOutlinedFilled diff --git a/src/IconIndeterminateCheckBoxRounded.tsx b/src/IconIndeterminateCheckBoxRounded.tsx index 1dd53a0eb..210a68a03 100644 --- a/src/IconIndeterminateCheckBoxRounded.tsx +++ b/src/IconIndeterminateCheckBoxRounded.tsx @@ -10,4 +10,4 @@ const IconIndeterminateCheckBoxRounded: React.FC = ({ ) -export { IconIndeterminateCheckBoxRounded as default } +export default IconIndeterminateCheckBoxRounded diff --git a/src/IconIndeterminateCheckBoxRoundedFilled.tsx b/src/IconIndeterminateCheckBoxRoundedFilled.tsx index c891f5af3..93a7a7480 100644 --- a/src/IconIndeterminateCheckBoxRoundedFilled.tsx +++ b/src/IconIndeterminateCheckBoxRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconIndeterminateCheckBoxRoundedFilled: React.FC = ({ ) -export { IconIndeterminateCheckBoxRoundedFilled as default } +export default IconIndeterminateCheckBoxRoundedFilled diff --git a/src/IconIndeterminateCheckBoxSharp.tsx b/src/IconIndeterminateCheckBoxSharp.tsx index 4aa2b9ac5..daf6d3ea2 100644 --- a/src/IconIndeterminateCheckBoxSharp.tsx +++ b/src/IconIndeterminateCheckBoxSharp.tsx @@ -8,4 +8,4 @@ const IconIndeterminateCheckBoxSharp: React.FC = ({ ...props }) => ( ) -export { IconIndeterminateCheckBoxSharp as default } +export default IconIndeterminateCheckBoxSharp diff --git a/src/IconIndeterminateCheckBoxSharpFilled.tsx b/src/IconIndeterminateCheckBoxSharpFilled.tsx index a2a3ff690..be5c5dab3 100644 --- a/src/IconIndeterminateCheckBoxSharpFilled.tsx +++ b/src/IconIndeterminateCheckBoxSharpFilled.tsx @@ -10,4 +10,4 @@ const IconIndeterminateCheckBoxSharpFilled: React.FC = ({ ) -export { IconIndeterminateCheckBoxSharpFilled as default } +export default IconIndeterminateCheckBoxSharpFilled diff --git a/src/IconIndeterminateQuestionBoxOutlined.tsx b/src/IconIndeterminateQuestionBoxOutlined.tsx index c8a697f57..1964fc73d 100644 --- a/src/IconIndeterminateQuestionBoxOutlined.tsx +++ b/src/IconIndeterminateQuestionBoxOutlined.tsx @@ -10,4 +10,4 @@ const IconIndeterminateQuestionBoxOutlined: React.FC = ({ ) -export { IconIndeterminateQuestionBoxOutlined as default } +export default IconIndeterminateQuestionBoxOutlined diff --git a/src/IconIndeterminateQuestionBoxOutlinedFilled.tsx b/src/IconIndeterminateQuestionBoxOutlinedFilled.tsx index 544d8135e..f77791c7b 100644 --- a/src/IconIndeterminateQuestionBoxOutlinedFilled.tsx +++ b/src/IconIndeterminateQuestionBoxOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconIndeterminateQuestionBoxOutlinedFilled: React.FC = ({ ) -export { IconIndeterminateQuestionBoxOutlinedFilled as default } +export default IconIndeterminateQuestionBoxOutlinedFilled diff --git a/src/IconIndeterminateQuestionBoxRounded.tsx b/src/IconIndeterminateQuestionBoxRounded.tsx index 0a958f7ee..bb001d702 100644 --- a/src/IconIndeterminateQuestionBoxRounded.tsx +++ b/src/IconIndeterminateQuestionBoxRounded.tsx @@ -10,4 +10,4 @@ const IconIndeterminateQuestionBoxRounded: React.FC = ({ ) -export { IconIndeterminateQuestionBoxRounded as default } +export default IconIndeterminateQuestionBoxRounded diff --git a/src/IconIndeterminateQuestionBoxRoundedFilled.tsx b/src/IconIndeterminateQuestionBoxRoundedFilled.tsx index e61bbe5bd..bd5cd944a 100644 --- a/src/IconIndeterminateQuestionBoxRoundedFilled.tsx +++ b/src/IconIndeterminateQuestionBoxRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconIndeterminateQuestionBoxRoundedFilled: React.FC = ({ ) -export { IconIndeterminateQuestionBoxRoundedFilled as default } +export default IconIndeterminateQuestionBoxRoundedFilled diff --git a/src/IconIndeterminateQuestionBoxSharp.tsx b/src/IconIndeterminateQuestionBoxSharp.tsx index fd4b751db..58fe0bc07 100644 --- a/src/IconIndeterminateQuestionBoxSharp.tsx +++ b/src/IconIndeterminateQuestionBoxSharp.tsx @@ -10,4 +10,4 @@ const IconIndeterminateQuestionBoxSharp: React.FC = ({ ) -export { IconIndeterminateQuestionBoxSharp as default } +export default IconIndeterminateQuestionBoxSharp diff --git a/src/IconIndeterminateQuestionBoxSharpFilled.tsx b/src/IconIndeterminateQuestionBoxSharpFilled.tsx index 14ecdac70..865841077 100644 --- a/src/IconIndeterminateQuestionBoxSharpFilled.tsx +++ b/src/IconIndeterminateQuestionBoxSharpFilled.tsx @@ -10,4 +10,4 @@ const IconIndeterminateQuestionBoxSharpFilled: React.FC = ({ ) -export { IconIndeterminateQuestionBoxSharpFilled as default } +export default IconIndeterminateQuestionBoxSharpFilled diff --git a/src/IconInfoIOutlined.tsx b/src/IconInfoIOutlined.tsx index 1eadfb1dd..9340e65c8 100644 --- a/src/IconInfoIOutlined.tsx +++ b/src/IconInfoIOutlined.tsx @@ -8,4 +8,4 @@ const IconInfoIOutlined: React.FC = ({ ...props }) => ( ) -export { IconInfoIOutlined as default } +export default IconInfoIOutlined diff --git a/src/IconInfoIOutlinedFilled.tsx b/src/IconInfoIOutlinedFilled.tsx index 1760959e5..b9f566786 100644 --- a/src/IconInfoIOutlinedFilled.tsx +++ b/src/IconInfoIOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconInfoIOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconInfoIOutlinedFilled as default } +export default IconInfoIOutlinedFilled diff --git a/src/IconInfoIRounded.tsx b/src/IconInfoIRounded.tsx index 1195a8e2e..0f20996c0 100644 --- a/src/IconInfoIRounded.tsx +++ b/src/IconInfoIRounded.tsx @@ -8,4 +8,4 @@ const IconInfoIRounded: React.FC = ({ ...props }) => ( ) -export { IconInfoIRounded as default } +export default IconInfoIRounded diff --git a/src/IconInfoIRoundedFilled.tsx b/src/IconInfoIRoundedFilled.tsx index a3d550aee..9938e05ba 100644 --- a/src/IconInfoIRoundedFilled.tsx +++ b/src/IconInfoIRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconInfoIRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconInfoIRoundedFilled as default } +export default IconInfoIRoundedFilled diff --git a/src/IconInfoISharp.tsx b/src/IconInfoISharp.tsx index 33b7f6845..990f4ebae 100644 --- a/src/IconInfoISharp.tsx +++ b/src/IconInfoISharp.tsx @@ -8,4 +8,4 @@ const IconInfoISharp: React.FC = ({ ...props }) => ( ) -export { IconInfoISharp as default } +export default IconInfoISharp diff --git a/src/IconInfoISharpFilled.tsx b/src/IconInfoISharpFilled.tsx index f94154b8e..e8d48572f 100644 --- a/src/IconInfoISharpFilled.tsx +++ b/src/IconInfoISharpFilled.tsx @@ -8,4 +8,4 @@ const IconInfoISharpFilled: React.FC = ({ ...props }) => ( ) -export { IconInfoISharpFilled as default } +export default IconInfoISharpFilled diff --git a/src/IconInfoOutlined.tsx b/src/IconInfoOutlined.tsx index 1c5b1334b..01b220bed 100644 --- a/src/IconInfoOutlined.tsx +++ b/src/IconInfoOutlined.tsx @@ -8,4 +8,4 @@ const IconInfoOutlined: React.FC = ({ ...props }) => ( ) -export { IconInfoOutlined as default } +export default IconInfoOutlined diff --git a/src/IconInfoOutlinedFilled.tsx b/src/IconInfoOutlinedFilled.tsx index e0e948498..500bc8806 100644 --- a/src/IconInfoOutlinedFilled.tsx +++ b/src/IconInfoOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconInfoOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconInfoOutlinedFilled as default } +export default IconInfoOutlinedFilled diff --git a/src/IconInfoRounded.tsx b/src/IconInfoRounded.tsx index 4fd339c66..ff6cac4df 100644 --- a/src/IconInfoRounded.tsx +++ b/src/IconInfoRounded.tsx @@ -8,4 +8,4 @@ const IconInfoRounded: React.FC = ({ ...props }) => ( ) -export { IconInfoRounded as default } +export default IconInfoRounded diff --git a/src/IconInfoRoundedFilled.tsx b/src/IconInfoRoundedFilled.tsx index f31c5ccdc..05fc3f53b 100644 --- a/src/IconInfoRoundedFilled.tsx +++ b/src/IconInfoRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconInfoRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconInfoRoundedFilled as default } +export default IconInfoRoundedFilled diff --git a/src/IconInfoSharp.tsx b/src/IconInfoSharp.tsx index fd6951dd8..c67294f41 100644 --- a/src/IconInfoSharp.tsx +++ b/src/IconInfoSharp.tsx @@ -8,4 +8,4 @@ const IconInfoSharp: React.FC = ({ ...props }) => ( ) -export { IconInfoSharp as default } +export default IconInfoSharp diff --git a/src/IconInfoSharpFilled.tsx b/src/IconInfoSharpFilled.tsx index 7407ebc35..aa82ee7d3 100644 --- a/src/IconInfoSharpFilled.tsx +++ b/src/IconInfoSharpFilled.tsx @@ -8,4 +8,4 @@ const IconInfoSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconInfoSharpFilled as default } +export default IconInfoSharpFilled diff --git a/src/IconInfraredOutlined.tsx b/src/IconInfraredOutlined.tsx index b16f1f090..67a595e0e 100644 --- a/src/IconInfraredOutlined.tsx +++ b/src/IconInfraredOutlined.tsx @@ -8,4 +8,4 @@ const IconInfraredOutlined: React.FC = ({ ...props }) => ( ) -export { IconInfraredOutlined as default } +export default IconInfraredOutlined diff --git a/src/IconInfraredOutlinedFilled.tsx b/src/IconInfraredOutlinedFilled.tsx index 54af210ed..5bc8a05ca 100644 --- a/src/IconInfraredOutlinedFilled.tsx +++ b/src/IconInfraredOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconInfraredOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconInfraredOutlinedFilled as default } +export default IconInfraredOutlinedFilled diff --git a/src/IconInfraredRounded.tsx b/src/IconInfraredRounded.tsx index 9f2aaba0b..43188c8af 100644 --- a/src/IconInfraredRounded.tsx +++ b/src/IconInfraredRounded.tsx @@ -8,4 +8,4 @@ const IconInfraredRounded: React.FC = ({ ...props }) => ( ) -export { IconInfraredRounded as default } +export default IconInfraredRounded diff --git a/src/IconInfraredRoundedFilled.tsx b/src/IconInfraredRoundedFilled.tsx index 0152453f7..ae6001524 100644 --- a/src/IconInfraredRoundedFilled.tsx +++ b/src/IconInfraredRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconInfraredRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconInfraredRoundedFilled as default } +export default IconInfraredRoundedFilled diff --git a/src/IconInfraredSharp.tsx b/src/IconInfraredSharp.tsx index 25ec0edbe..1c2e0d628 100644 --- a/src/IconInfraredSharp.tsx +++ b/src/IconInfraredSharp.tsx @@ -8,4 +8,4 @@ const IconInfraredSharp: React.FC = ({ ...props }) => ( ) -export { IconInfraredSharp as default } +export default IconInfraredSharp diff --git a/src/IconInfraredSharpFilled.tsx b/src/IconInfraredSharpFilled.tsx index 6e8eb7802..a25a50592 100644 --- a/src/IconInfraredSharpFilled.tsx +++ b/src/IconInfraredSharpFilled.tsx @@ -8,4 +8,4 @@ const IconInfraredSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconInfraredSharpFilled as default } +export default IconInfraredSharpFilled diff --git a/src/IconInkEraserOffOutlined.tsx b/src/IconInkEraserOffOutlined.tsx index 6ab1ce7b9..41799a10f 100644 --- a/src/IconInkEraserOffOutlined.tsx +++ b/src/IconInkEraserOffOutlined.tsx @@ -8,4 +8,4 @@ const IconInkEraserOffOutlined: React.FC = ({ ...props }) => ( ) -export { IconInkEraserOffOutlined as default } +export default IconInkEraserOffOutlined diff --git a/src/IconInkEraserOffOutlinedFilled.tsx b/src/IconInkEraserOffOutlinedFilled.tsx index 66910fbc9..4da925db6 100644 --- a/src/IconInkEraserOffOutlinedFilled.tsx +++ b/src/IconInkEraserOffOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconInkEraserOffOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconInkEraserOffOutlinedFilled as default } +export default IconInkEraserOffOutlinedFilled diff --git a/src/IconInkEraserOffRounded.tsx b/src/IconInkEraserOffRounded.tsx index 3b6d8fecc..3f13050ef 100644 --- a/src/IconInkEraserOffRounded.tsx +++ b/src/IconInkEraserOffRounded.tsx @@ -8,4 +8,4 @@ const IconInkEraserOffRounded: React.FC = ({ ...props }) => ( ) -export { IconInkEraserOffRounded as default } +export default IconInkEraserOffRounded diff --git a/src/IconInkEraserOffRoundedFilled.tsx b/src/IconInkEraserOffRoundedFilled.tsx index cd06e4895..aba58308b 100644 --- a/src/IconInkEraserOffRoundedFilled.tsx +++ b/src/IconInkEraserOffRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconInkEraserOffRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconInkEraserOffRoundedFilled as default } +export default IconInkEraserOffRoundedFilled diff --git a/src/IconInkEraserOffSharp.tsx b/src/IconInkEraserOffSharp.tsx index be829aa9d..f49ad1f07 100644 --- a/src/IconInkEraserOffSharp.tsx +++ b/src/IconInkEraserOffSharp.tsx @@ -8,4 +8,4 @@ const IconInkEraserOffSharp: React.FC = ({ ...props }) => ( ) -export { IconInkEraserOffSharp as default } +export default IconInkEraserOffSharp diff --git a/src/IconInkEraserOffSharpFilled.tsx b/src/IconInkEraserOffSharpFilled.tsx index b87865024..83b2eb03a 100644 --- a/src/IconInkEraserOffSharpFilled.tsx +++ b/src/IconInkEraserOffSharpFilled.tsx @@ -8,4 +8,4 @@ const IconInkEraserOffSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconInkEraserOffSharpFilled as default } +export default IconInkEraserOffSharpFilled diff --git a/src/IconInkEraserOutlined.tsx b/src/IconInkEraserOutlined.tsx index c14cbadfc..76fa24369 100644 --- a/src/IconInkEraserOutlined.tsx +++ b/src/IconInkEraserOutlined.tsx @@ -8,4 +8,4 @@ const IconInkEraserOutlined: React.FC = ({ ...props }) => ( ) -export { IconInkEraserOutlined as default } +export default IconInkEraserOutlined diff --git a/src/IconInkEraserOutlinedFilled.tsx b/src/IconInkEraserOutlinedFilled.tsx index 629746bcf..4468baf91 100644 --- a/src/IconInkEraserOutlinedFilled.tsx +++ b/src/IconInkEraserOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconInkEraserOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconInkEraserOutlinedFilled as default } +export default IconInkEraserOutlinedFilled diff --git a/src/IconInkEraserRounded.tsx b/src/IconInkEraserRounded.tsx index 791bd57d5..2cdb3070a 100644 --- a/src/IconInkEraserRounded.tsx +++ b/src/IconInkEraserRounded.tsx @@ -8,4 +8,4 @@ const IconInkEraserRounded: React.FC = ({ ...props }) => ( ) -export { IconInkEraserRounded as default } +export default IconInkEraserRounded diff --git a/src/IconInkEraserRoundedFilled.tsx b/src/IconInkEraserRoundedFilled.tsx index 356b0f0b4..2804e24b2 100644 --- a/src/IconInkEraserRoundedFilled.tsx +++ b/src/IconInkEraserRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconInkEraserRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconInkEraserRoundedFilled as default } +export default IconInkEraserRoundedFilled diff --git a/src/IconInkEraserSharp.tsx b/src/IconInkEraserSharp.tsx index 0d3458b2c..3f657b2b5 100644 --- a/src/IconInkEraserSharp.tsx +++ b/src/IconInkEraserSharp.tsx @@ -8,4 +8,4 @@ const IconInkEraserSharp: React.FC = ({ ...props }) => ( ) -export { IconInkEraserSharp as default } +export default IconInkEraserSharp diff --git a/src/IconInkEraserSharpFilled.tsx b/src/IconInkEraserSharpFilled.tsx index 2eec30a34..1041d7ad8 100644 --- a/src/IconInkEraserSharpFilled.tsx +++ b/src/IconInkEraserSharpFilled.tsx @@ -8,4 +8,4 @@ const IconInkEraserSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconInkEraserSharpFilled as default } +export default IconInkEraserSharpFilled diff --git a/src/IconInkHighlighterMoveOutlined.tsx b/src/IconInkHighlighterMoveOutlined.tsx index e08280681..afc40eb66 100644 --- a/src/IconInkHighlighterMoveOutlined.tsx +++ b/src/IconInkHighlighterMoveOutlined.tsx @@ -8,4 +8,4 @@ const IconInkHighlighterMoveOutlined: React.FC = ({ ...props }) => ( ) -export { IconInkHighlighterMoveOutlined as default } +export default IconInkHighlighterMoveOutlined diff --git a/src/IconInkHighlighterMoveOutlinedFilled.tsx b/src/IconInkHighlighterMoveOutlinedFilled.tsx index b1a47974d..be06cd710 100644 --- a/src/IconInkHighlighterMoveOutlinedFilled.tsx +++ b/src/IconInkHighlighterMoveOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconInkHighlighterMoveOutlinedFilled: React.FC = ({ ) -export { IconInkHighlighterMoveOutlinedFilled as default } +export default IconInkHighlighterMoveOutlinedFilled diff --git a/src/IconInkHighlighterMoveRounded.tsx b/src/IconInkHighlighterMoveRounded.tsx index 24f81cfba..12ad16f62 100644 --- a/src/IconInkHighlighterMoveRounded.tsx +++ b/src/IconInkHighlighterMoveRounded.tsx @@ -8,4 +8,4 @@ const IconInkHighlighterMoveRounded: React.FC = ({ ...props }) => ( ) -export { IconInkHighlighterMoveRounded as default } +export default IconInkHighlighterMoveRounded diff --git a/src/IconInkHighlighterMoveRoundedFilled.tsx b/src/IconInkHighlighterMoveRoundedFilled.tsx index 33d4531b1..3ed00f11f 100644 --- a/src/IconInkHighlighterMoveRoundedFilled.tsx +++ b/src/IconInkHighlighterMoveRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconInkHighlighterMoveRoundedFilled: React.FC = ({ ) -export { IconInkHighlighterMoveRoundedFilled as default } +export default IconInkHighlighterMoveRoundedFilled diff --git a/src/IconInkHighlighterMoveSharp.tsx b/src/IconInkHighlighterMoveSharp.tsx index 7ca9ba79a..ecbae267d 100644 --- a/src/IconInkHighlighterMoveSharp.tsx +++ b/src/IconInkHighlighterMoveSharp.tsx @@ -8,4 +8,4 @@ const IconInkHighlighterMoveSharp: React.FC = ({ ...props }) => ( ) -export { IconInkHighlighterMoveSharp as default } +export default IconInkHighlighterMoveSharp diff --git a/src/IconInkHighlighterMoveSharpFilled.tsx b/src/IconInkHighlighterMoveSharpFilled.tsx index 3ba29f1ed..c85d64ecf 100644 --- a/src/IconInkHighlighterMoveSharpFilled.tsx +++ b/src/IconInkHighlighterMoveSharpFilled.tsx @@ -10,4 +10,4 @@ const IconInkHighlighterMoveSharpFilled: React.FC = ({ ) -export { IconInkHighlighterMoveSharpFilled as default } +export default IconInkHighlighterMoveSharpFilled diff --git a/src/IconInkHighlighterOutlined.tsx b/src/IconInkHighlighterOutlined.tsx index 136f84871..afe4307d2 100644 --- a/src/IconInkHighlighterOutlined.tsx +++ b/src/IconInkHighlighterOutlined.tsx @@ -8,4 +8,4 @@ const IconInkHighlighterOutlined: React.FC = ({ ...props }) => ( ) -export { IconInkHighlighterOutlined as default } +export default IconInkHighlighterOutlined diff --git a/src/IconInkHighlighterOutlinedFilled.tsx b/src/IconInkHighlighterOutlinedFilled.tsx index c6aedc47e..380770a8f 100644 --- a/src/IconInkHighlighterOutlinedFilled.tsx +++ b/src/IconInkHighlighterOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconInkHighlighterOutlinedFilled: React.FC = ({ ) -export { IconInkHighlighterOutlinedFilled as default } +export default IconInkHighlighterOutlinedFilled diff --git a/src/IconInkHighlighterRounded.tsx b/src/IconInkHighlighterRounded.tsx index 3125d96dd..5792855dc 100644 --- a/src/IconInkHighlighterRounded.tsx +++ b/src/IconInkHighlighterRounded.tsx @@ -8,4 +8,4 @@ const IconInkHighlighterRounded: React.FC = ({ ...props }) => ( ) -export { IconInkHighlighterRounded as default } +export default IconInkHighlighterRounded diff --git a/src/IconInkHighlighterRoundedFilled.tsx b/src/IconInkHighlighterRoundedFilled.tsx index c298446af..c1b9d74af 100644 --- a/src/IconInkHighlighterRoundedFilled.tsx +++ b/src/IconInkHighlighterRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconInkHighlighterRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconInkHighlighterRoundedFilled as default } +export default IconInkHighlighterRoundedFilled diff --git a/src/IconInkHighlighterSharp.tsx b/src/IconInkHighlighterSharp.tsx index 0da210018..99ca57741 100644 --- a/src/IconInkHighlighterSharp.tsx +++ b/src/IconInkHighlighterSharp.tsx @@ -8,4 +8,4 @@ const IconInkHighlighterSharp: React.FC = ({ ...props }) => ( ) -export { IconInkHighlighterSharp as default } +export default IconInkHighlighterSharp diff --git a/src/IconInkHighlighterSharpFilled.tsx b/src/IconInkHighlighterSharpFilled.tsx index b48b6d3d9..101e1ecf0 100644 --- a/src/IconInkHighlighterSharpFilled.tsx +++ b/src/IconInkHighlighterSharpFilled.tsx @@ -8,4 +8,4 @@ const IconInkHighlighterSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconInkHighlighterSharpFilled as default } +export default IconInkHighlighterSharpFilled diff --git a/src/IconInkMarkerOutlined.tsx b/src/IconInkMarkerOutlined.tsx index d16748ce0..81eeda312 100644 --- a/src/IconInkMarkerOutlined.tsx +++ b/src/IconInkMarkerOutlined.tsx @@ -8,4 +8,4 @@ const IconInkMarkerOutlined: React.FC = ({ ...props }) => ( ) -export { IconInkMarkerOutlined as default } +export default IconInkMarkerOutlined diff --git a/src/IconInkMarkerOutlinedFilled.tsx b/src/IconInkMarkerOutlinedFilled.tsx index 24d0bde6c..acf270d7f 100644 --- a/src/IconInkMarkerOutlinedFilled.tsx +++ b/src/IconInkMarkerOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconInkMarkerOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconInkMarkerOutlinedFilled as default } +export default IconInkMarkerOutlinedFilled diff --git a/src/IconInkMarkerRounded.tsx b/src/IconInkMarkerRounded.tsx index 92d6f56aa..620a00db1 100644 --- a/src/IconInkMarkerRounded.tsx +++ b/src/IconInkMarkerRounded.tsx @@ -8,4 +8,4 @@ const IconInkMarkerRounded: React.FC = ({ ...props }) => ( ) -export { IconInkMarkerRounded as default } +export default IconInkMarkerRounded diff --git a/src/IconInkMarkerRoundedFilled.tsx b/src/IconInkMarkerRoundedFilled.tsx index c75ad95c4..d44e54eaa 100644 --- a/src/IconInkMarkerRoundedFilled.tsx +++ b/src/IconInkMarkerRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconInkMarkerRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconInkMarkerRoundedFilled as default } +export default IconInkMarkerRoundedFilled diff --git a/src/IconInkMarkerSharp.tsx b/src/IconInkMarkerSharp.tsx index de352e81e..31ccd4620 100644 --- a/src/IconInkMarkerSharp.tsx +++ b/src/IconInkMarkerSharp.tsx @@ -8,4 +8,4 @@ const IconInkMarkerSharp: React.FC = ({ ...props }) => ( ) -export { IconInkMarkerSharp as default } +export default IconInkMarkerSharp diff --git a/src/IconInkMarkerSharpFilled.tsx b/src/IconInkMarkerSharpFilled.tsx index b9031a747..a7a7b23a5 100644 --- a/src/IconInkMarkerSharpFilled.tsx +++ b/src/IconInkMarkerSharpFilled.tsx @@ -8,4 +8,4 @@ const IconInkMarkerSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconInkMarkerSharpFilled as default } +export default IconInkMarkerSharpFilled diff --git a/src/IconInkPenOutlined.tsx b/src/IconInkPenOutlined.tsx index 8b4078540..f5657e4a9 100644 --- a/src/IconInkPenOutlined.tsx +++ b/src/IconInkPenOutlined.tsx @@ -8,4 +8,4 @@ const IconInkPenOutlined: React.FC = ({ ...props }) => ( ) -export { IconInkPenOutlined as default } +export default IconInkPenOutlined diff --git a/src/IconInkPenOutlinedFilled.tsx b/src/IconInkPenOutlinedFilled.tsx index 08c193b2e..82777909b 100644 --- a/src/IconInkPenOutlinedFilled.tsx +++ b/src/IconInkPenOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconInkPenOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconInkPenOutlinedFilled as default } +export default IconInkPenOutlinedFilled diff --git a/src/IconInkPenRounded.tsx b/src/IconInkPenRounded.tsx index 9218fa42c..501dc69f8 100644 --- a/src/IconInkPenRounded.tsx +++ b/src/IconInkPenRounded.tsx @@ -8,4 +8,4 @@ const IconInkPenRounded: React.FC = ({ ...props }) => ( ) -export { IconInkPenRounded as default } +export default IconInkPenRounded diff --git a/src/IconInkPenRoundedFilled.tsx b/src/IconInkPenRoundedFilled.tsx index efc3b02f1..6961d0383 100644 --- a/src/IconInkPenRoundedFilled.tsx +++ b/src/IconInkPenRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconInkPenRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconInkPenRoundedFilled as default } +export default IconInkPenRoundedFilled diff --git a/src/IconInkPenSharp.tsx b/src/IconInkPenSharp.tsx index 9d47b8baa..25a2ec891 100644 --- a/src/IconInkPenSharp.tsx +++ b/src/IconInkPenSharp.tsx @@ -8,4 +8,4 @@ const IconInkPenSharp: React.FC = ({ ...props }) => ( ) -export { IconInkPenSharp as default } +export default IconInkPenSharp diff --git a/src/IconInkPenSharpFilled.tsx b/src/IconInkPenSharpFilled.tsx index 63bcdb943..9540cd6c5 100644 --- a/src/IconInkPenSharpFilled.tsx +++ b/src/IconInkPenSharpFilled.tsx @@ -8,4 +8,4 @@ const IconInkPenSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconInkPenSharpFilled as default } +export default IconInkPenSharpFilled diff --git a/src/IconInpatientOutlined.tsx b/src/IconInpatientOutlined.tsx index 2a2005c2b..0e8006076 100644 --- a/src/IconInpatientOutlined.tsx +++ b/src/IconInpatientOutlined.tsx @@ -8,4 +8,4 @@ const IconInpatientOutlined: React.FC = ({ ...props }) => ( ) -export { IconInpatientOutlined as default } +export default IconInpatientOutlined diff --git a/src/IconInpatientOutlinedFilled.tsx b/src/IconInpatientOutlinedFilled.tsx index c77afe883..829d3a633 100644 --- a/src/IconInpatientOutlinedFilled.tsx +++ b/src/IconInpatientOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconInpatientOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconInpatientOutlinedFilled as default } +export default IconInpatientOutlinedFilled diff --git a/src/IconInpatientRounded.tsx b/src/IconInpatientRounded.tsx index 51feba6ba..e52af7704 100644 --- a/src/IconInpatientRounded.tsx +++ b/src/IconInpatientRounded.tsx @@ -8,4 +8,4 @@ const IconInpatientRounded: React.FC = ({ ...props }) => ( ) -export { IconInpatientRounded as default } +export default IconInpatientRounded diff --git a/src/IconInpatientRoundedFilled.tsx b/src/IconInpatientRoundedFilled.tsx index e3d56f80c..2d3ad7933 100644 --- a/src/IconInpatientRoundedFilled.tsx +++ b/src/IconInpatientRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconInpatientRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconInpatientRoundedFilled as default } +export default IconInpatientRoundedFilled diff --git a/src/IconInpatientSharp.tsx b/src/IconInpatientSharp.tsx index 4102e283a..e705c1496 100644 --- a/src/IconInpatientSharp.tsx +++ b/src/IconInpatientSharp.tsx @@ -8,4 +8,4 @@ const IconInpatientSharp: React.FC = ({ ...props }) => ( ) -export { IconInpatientSharp as default } +export default IconInpatientSharp diff --git a/src/IconInpatientSharpFilled.tsx b/src/IconInpatientSharpFilled.tsx index 56aca6e1d..7c523f373 100644 --- a/src/IconInpatientSharpFilled.tsx +++ b/src/IconInpatientSharpFilled.tsx @@ -8,4 +8,4 @@ const IconInpatientSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconInpatientSharpFilled as default } +export default IconInpatientSharpFilled diff --git a/src/IconInputCircleOutlined.tsx b/src/IconInputCircleOutlined.tsx index 061975975..53b7645d1 100644 --- a/src/IconInputCircleOutlined.tsx +++ b/src/IconInputCircleOutlined.tsx @@ -8,4 +8,4 @@ const IconInputCircleOutlined: React.FC = ({ ...props }) => ( ) -export { IconInputCircleOutlined as default } +export default IconInputCircleOutlined diff --git a/src/IconInputCircleOutlinedFilled.tsx b/src/IconInputCircleOutlinedFilled.tsx index 15012fb0a..40ca4522c 100644 --- a/src/IconInputCircleOutlinedFilled.tsx +++ b/src/IconInputCircleOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconInputCircleOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconInputCircleOutlinedFilled as default } +export default IconInputCircleOutlinedFilled diff --git a/src/IconInputCircleRounded.tsx b/src/IconInputCircleRounded.tsx index f7dc184e6..513eb8e8a 100644 --- a/src/IconInputCircleRounded.tsx +++ b/src/IconInputCircleRounded.tsx @@ -8,4 +8,4 @@ const IconInputCircleRounded: React.FC = ({ ...props }) => ( ) -export { IconInputCircleRounded as default } +export default IconInputCircleRounded diff --git a/src/IconInputCircleRoundedFilled.tsx b/src/IconInputCircleRoundedFilled.tsx index ea28c1c21..b05528269 100644 --- a/src/IconInputCircleRoundedFilled.tsx +++ b/src/IconInputCircleRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconInputCircleRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconInputCircleRoundedFilled as default } +export default IconInputCircleRoundedFilled diff --git a/src/IconInputCircleSharp.tsx b/src/IconInputCircleSharp.tsx index 5d8ad6ec6..0a0f09926 100644 --- a/src/IconInputCircleSharp.tsx +++ b/src/IconInputCircleSharp.tsx @@ -8,4 +8,4 @@ const IconInputCircleSharp: React.FC = ({ ...props }) => ( ) -export { IconInputCircleSharp as default } +export default IconInputCircleSharp diff --git a/src/IconInputCircleSharpFilled.tsx b/src/IconInputCircleSharpFilled.tsx index 5f332c08b..886ad48c9 100644 --- a/src/IconInputCircleSharpFilled.tsx +++ b/src/IconInputCircleSharpFilled.tsx @@ -8,4 +8,4 @@ const IconInputCircleSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconInputCircleSharpFilled as default } +export default IconInputCircleSharpFilled diff --git a/src/IconInputOutlined.tsx b/src/IconInputOutlined.tsx index afedaf2f8..d80613fb2 100644 --- a/src/IconInputOutlined.tsx +++ b/src/IconInputOutlined.tsx @@ -8,4 +8,4 @@ const IconInputOutlined: React.FC = ({ ...props }) => ( ) -export { IconInputOutlined as default } +export default IconInputOutlined diff --git a/src/IconInputOutlinedFilled.tsx b/src/IconInputOutlinedFilled.tsx index 22b701013..486d7284d 100644 --- a/src/IconInputOutlinedFilled.tsx +++ b/src/IconInputOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconInputOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconInputOutlinedFilled as default } +export default IconInputOutlinedFilled diff --git a/src/IconInputRounded.tsx b/src/IconInputRounded.tsx index 2ca574f6b..ff8a1fa14 100644 --- a/src/IconInputRounded.tsx +++ b/src/IconInputRounded.tsx @@ -8,4 +8,4 @@ const IconInputRounded: React.FC = ({ ...props }) => ( ) -export { IconInputRounded as default } +export default IconInputRounded diff --git a/src/IconInputRoundedFilled.tsx b/src/IconInputRoundedFilled.tsx index 4e8b2fa90..bee21ea48 100644 --- a/src/IconInputRoundedFilled.tsx +++ b/src/IconInputRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconInputRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconInputRoundedFilled as default } +export default IconInputRoundedFilled diff --git a/src/IconInputSharp.tsx b/src/IconInputSharp.tsx index 7003f3d58..b77ea5135 100644 --- a/src/IconInputSharp.tsx +++ b/src/IconInputSharp.tsx @@ -8,4 +8,4 @@ const IconInputSharp: React.FC = ({ ...props }) => ( ) -export { IconInputSharp as default } +export default IconInputSharp diff --git a/src/IconInputSharpFilled.tsx b/src/IconInputSharpFilled.tsx index 97a4a2e77..f0324e3d0 100644 --- a/src/IconInputSharpFilled.tsx +++ b/src/IconInputSharpFilled.tsx @@ -8,4 +8,4 @@ const IconInputSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconInputSharpFilled as default } +export default IconInputSharpFilled diff --git a/src/IconInsertChartOutlined.tsx b/src/IconInsertChartOutlined.tsx index a5a6dc977..fdb139025 100644 --- a/src/IconInsertChartOutlined.tsx +++ b/src/IconInsertChartOutlined.tsx @@ -8,4 +8,4 @@ const IconInsertChartOutlined: React.FC = ({ ...props }) => ( ) -export { IconInsertChartOutlined as default } +export default IconInsertChartOutlined diff --git a/src/IconInsertChartOutlinedFilled.tsx b/src/IconInsertChartOutlinedFilled.tsx index 9d13cf57d..05c000148 100644 --- a/src/IconInsertChartOutlinedFilled.tsx +++ b/src/IconInsertChartOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconInsertChartOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconInsertChartOutlinedFilled as default } +export default IconInsertChartOutlinedFilled diff --git a/src/IconInsertChartRounded.tsx b/src/IconInsertChartRounded.tsx index 955d5e745..d032f72b1 100644 --- a/src/IconInsertChartRounded.tsx +++ b/src/IconInsertChartRounded.tsx @@ -8,4 +8,4 @@ const IconInsertChartRounded: React.FC = ({ ...props }) => ( ) -export { IconInsertChartRounded as default } +export default IconInsertChartRounded diff --git a/src/IconInsertChartRoundedFilled.tsx b/src/IconInsertChartRoundedFilled.tsx index e96cc451e..c47a036fd 100644 --- a/src/IconInsertChartRoundedFilled.tsx +++ b/src/IconInsertChartRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconInsertChartRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconInsertChartRoundedFilled as default } +export default IconInsertChartRoundedFilled diff --git a/src/IconInsertChartSharp.tsx b/src/IconInsertChartSharp.tsx index f48b520bd..db0d46183 100644 --- a/src/IconInsertChartSharp.tsx +++ b/src/IconInsertChartSharp.tsx @@ -8,4 +8,4 @@ const IconInsertChartSharp: React.FC = ({ ...props }) => ( ) -export { IconInsertChartSharp as default } +export default IconInsertChartSharp diff --git a/src/IconInsertChartSharpFilled.tsx b/src/IconInsertChartSharpFilled.tsx index fa2d51d39..b7f4f9c55 100644 --- a/src/IconInsertChartSharpFilled.tsx +++ b/src/IconInsertChartSharpFilled.tsx @@ -8,4 +8,4 @@ const IconInsertChartSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconInsertChartSharpFilled as default } +export default IconInsertChartSharpFilled diff --git a/src/IconInsertPageBreakOutlined.tsx b/src/IconInsertPageBreakOutlined.tsx index 60afbc961..44d944411 100644 --- a/src/IconInsertPageBreakOutlined.tsx +++ b/src/IconInsertPageBreakOutlined.tsx @@ -8,4 +8,4 @@ const IconInsertPageBreakOutlined: React.FC = ({ ...props }) => ( ) -export { IconInsertPageBreakOutlined as default } +export default IconInsertPageBreakOutlined diff --git a/src/IconInsertPageBreakOutlinedFilled.tsx b/src/IconInsertPageBreakOutlinedFilled.tsx index af881b6ab..dcf824335 100644 --- a/src/IconInsertPageBreakOutlinedFilled.tsx +++ b/src/IconInsertPageBreakOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconInsertPageBreakOutlinedFilled: React.FC = ({ ) -export { IconInsertPageBreakOutlinedFilled as default } +export default IconInsertPageBreakOutlinedFilled diff --git a/src/IconInsertPageBreakRounded.tsx b/src/IconInsertPageBreakRounded.tsx index 44b863126..ecc3188f8 100644 --- a/src/IconInsertPageBreakRounded.tsx +++ b/src/IconInsertPageBreakRounded.tsx @@ -8,4 +8,4 @@ const IconInsertPageBreakRounded: React.FC = ({ ...props }) => ( ) -export { IconInsertPageBreakRounded as default } +export default IconInsertPageBreakRounded diff --git a/src/IconInsertPageBreakRoundedFilled.tsx b/src/IconInsertPageBreakRoundedFilled.tsx index 82291a9ee..df14f2059 100644 --- a/src/IconInsertPageBreakRoundedFilled.tsx +++ b/src/IconInsertPageBreakRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconInsertPageBreakRoundedFilled: React.FC = ({ ) -export { IconInsertPageBreakRoundedFilled as default } +export default IconInsertPageBreakRoundedFilled diff --git a/src/IconInsertPageBreakSharp.tsx b/src/IconInsertPageBreakSharp.tsx index 4651ad99b..70b434784 100644 --- a/src/IconInsertPageBreakSharp.tsx +++ b/src/IconInsertPageBreakSharp.tsx @@ -8,4 +8,4 @@ const IconInsertPageBreakSharp: React.FC = ({ ...props }) => ( ) -export { IconInsertPageBreakSharp as default } +export default IconInsertPageBreakSharp diff --git a/src/IconInsertPageBreakSharpFilled.tsx b/src/IconInsertPageBreakSharpFilled.tsx index aa932256c..6eb02ee5b 100644 --- a/src/IconInsertPageBreakSharpFilled.tsx +++ b/src/IconInsertPageBreakSharpFilled.tsx @@ -8,4 +8,4 @@ const IconInsertPageBreakSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconInsertPageBreakSharpFilled as default } +export default IconInsertPageBreakSharpFilled diff --git a/src/IconInsertTextOutlined.tsx b/src/IconInsertTextOutlined.tsx index f8c9e063a..ecabe1c83 100644 --- a/src/IconInsertTextOutlined.tsx +++ b/src/IconInsertTextOutlined.tsx @@ -8,4 +8,4 @@ const IconInsertTextOutlined: React.FC = ({ ...props }) => ( ) -export { IconInsertTextOutlined as default } +export default IconInsertTextOutlined diff --git a/src/IconInsertTextOutlinedFilled.tsx b/src/IconInsertTextOutlinedFilled.tsx index 0c1bafec6..11198b8a8 100644 --- a/src/IconInsertTextOutlinedFilled.tsx +++ b/src/IconInsertTextOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconInsertTextOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconInsertTextOutlinedFilled as default } +export default IconInsertTextOutlinedFilled diff --git a/src/IconInsertTextRounded.tsx b/src/IconInsertTextRounded.tsx index 53d828f09..0acc04d13 100644 --- a/src/IconInsertTextRounded.tsx +++ b/src/IconInsertTextRounded.tsx @@ -8,4 +8,4 @@ const IconInsertTextRounded: React.FC = ({ ...props }) => ( ) -export { IconInsertTextRounded as default } +export default IconInsertTextRounded diff --git a/src/IconInsertTextRoundedFilled.tsx b/src/IconInsertTextRoundedFilled.tsx index 9e89b414d..4bff45052 100644 --- a/src/IconInsertTextRoundedFilled.tsx +++ b/src/IconInsertTextRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconInsertTextRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconInsertTextRoundedFilled as default } +export default IconInsertTextRoundedFilled diff --git a/src/IconInsertTextSharp.tsx b/src/IconInsertTextSharp.tsx index ef378abe3..999b7b205 100644 --- a/src/IconInsertTextSharp.tsx +++ b/src/IconInsertTextSharp.tsx @@ -8,4 +8,4 @@ const IconInsertTextSharp: React.FC = ({ ...props }) => ( ) -export { IconInsertTextSharp as default } +export default IconInsertTextSharp diff --git a/src/IconInsertTextSharpFilled.tsx b/src/IconInsertTextSharpFilled.tsx index 1029adde4..98d6fed08 100644 --- a/src/IconInsertTextSharpFilled.tsx +++ b/src/IconInsertTextSharpFilled.tsx @@ -8,4 +8,4 @@ const IconInsertTextSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconInsertTextSharpFilled as default } +export default IconInsertTextSharpFilled diff --git a/src/IconInstallDesktopOutlined.tsx b/src/IconInstallDesktopOutlined.tsx index e9d9d0937..bacedfaf6 100644 --- a/src/IconInstallDesktopOutlined.tsx +++ b/src/IconInstallDesktopOutlined.tsx @@ -8,4 +8,4 @@ const IconInstallDesktopOutlined: React.FC = ({ ...props }) => ( ) -export { IconInstallDesktopOutlined as default } +export default IconInstallDesktopOutlined diff --git a/src/IconInstallDesktopOutlinedFilled.tsx b/src/IconInstallDesktopOutlinedFilled.tsx index 863f055dd..78d61de8e 100644 --- a/src/IconInstallDesktopOutlinedFilled.tsx +++ b/src/IconInstallDesktopOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconInstallDesktopOutlinedFilled: React.FC = ({ ) -export { IconInstallDesktopOutlinedFilled as default } +export default IconInstallDesktopOutlinedFilled diff --git a/src/IconInstallDesktopRounded.tsx b/src/IconInstallDesktopRounded.tsx index cd6ac2c23..9f90b609d 100644 --- a/src/IconInstallDesktopRounded.tsx +++ b/src/IconInstallDesktopRounded.tsx @@ -8,4 +8,4 @@ const IconInstallDesktopRounded: React.FC = ({ ...props }) => ( ) -export { IconInstallDesktopRounded as default } +export default IconInstallDesktopRounded diff --git a/src/IconInstallDesktopRoundedFilled.tsx b/src/IconInstallDesktopRoundedFilled.tsx index 505c9cd54..bac0e8592 100644 --- a/src/IconInstallDesktopRoundedFilled.tsx +++ b/src/IconInstallDesktopRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconInstallDesktopRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconInstallDesktopRoundedFilled as default } +export default IconInstallDesktopRoundedFilled diff --git a/src/IconInstallDesktopSharp.tsx b/src/IconInstallDesktopSharp.tsx index 88342a7a5..a8ae22638 100644 --- a/src/IconInstallDesktopSharp.tsx +++ b/src/IconInstallDesktopSharp.tsx @@ -8,4 +8,4 @@ const IconInstallDesktopSharp: React.FC = ({ ...props }) => ( ) -export { IconInstallDesktopSharp as default } +export default IconInstallDesktopSharp diff --git a/src/IconInstallDesktopSharpFilled.tsx b/src/IconInstallDesktopSharpFilled.tsx index b4d9b1235..87290fb75 100644 --- a/src/IconInstallDesktopSharpFilled.tsx +++ b/src/IconInstallDesktopSharpFilled.tsx @@ -8,4 +8,4 @@ const IconInstallDesktopSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconInstallDesktopSharpFilled as default } +export default IconInstallDesktopSharpFilled diff --git a/src/IconInstallMobileOutlined.tsx b/src/IconInstallMobileOutlined.tsx index c0503edc5..19ebd02b4 100644 --- a/src/IconInstallMobileOutlined.tsx +++ b/src/IconInstallMobileOutlined.tsx @@ -8,4 +8,4 @@ const IconInstallMobileOutlined: React.FC = ({ ...props }) => ( ) -export { IconInstallMobileOutlined as default } +export default IconInstallMobileOutlined diff --git a/src/IconInstallMobileOutlinedFilled.tsx b/src/IconInstallMobileOutlinedFilled.tsx index f2bcc6978..eaf1cddf3 100644 --- a/src/IconInstallMobileOutlinedFilled.tsx +++ b/src/IconInstallMobileOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconInstallMobileOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconInstallMobileOutlinedFilled as default } +export default IconInstallMobileOutlinedFilled diff --git a/src/IconInstallMobileRounded.tsx b/src/IconInstallMobileRounded.tsx index 31712424e..98941de2c 100644 --- a/src/IconInstallMobileRounded.tsx +++ b/src/IconInstallMobileRounded.tsx @@ -8,4 +8,4 @@ const IconInstallMobileRounded: React.FC = ({ ...props }) => ( ) -export { IconInstallMobileRounded as default } +export default IconInstallMobileRounded diff --git a/src/IconInstallMobileRoundedFilled.tsx b/src/IconInstallMobileRoundedFilled.tsx index 72c52d72b..139d2a0fa 100644 --- a/src/IconInstallMobileRoundedFilled.tsx +++ b/src/IconInstallMobileRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconInstallMobileRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconInstallMobileRoundedFilled as default } +export default IconInstallMobileRoundedFilled diff --git a/src/IconInstallMobileSharp.tsx b/src/IconInstallMobileSharp.tsx index 0ff707392..76858f174 100644 --- a/src/IconInstallMobileSharp.tsx +++ b/src/IconInstallMobileSharp.tsx @@ -8,4 +8,4 @@ const IconInstallMobileSharp: React.FC = ({ ...props }) => ( ) -export { IconInstallMobileSharp as default } +export default IconInstallMobileSharp diff --git a/src/IconInstallMobileSharpFilled.tsx b/src/IconInstallMobileSharpFilled.tsx index d2e1226a6..778d54434 100644 --- a/src/IconInstallMobileSharpFilled.tsx +++ b/src/IconInstallMobileSharpFilled.tsx @@ -8,4 +8,4 @@ const IconInstallMobileSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconInstallMobileSharpFilled as default } +export default IconInstallMobileSharpFilled diff --git a/src/IconInstantMixOutlined.tsx b/src/IconInstantMixOutlined.tsx index e2f1dee83..976a32841 100644 --- a/src/IconInstantMixOutlined.tsx +++ b/src/IconInstantMixOutlined.tsx @@ -8,4 +8,4 @@ const IconInstantMixOutlined: React.FC = ({ ...props }) => ( ) -export { IconInstantMixOutlined as default } +export default IconInstantMixOutlined diff --git a/src/IconInstantMixOutlinedFilled.tsx b/src/IconInstantMixOutlinedFilled.tsx index ca6f84a35..3ad3babc5 100644 --- a/src/IconInstantMixOutlinedFilled.tsx +++ b/src/IconInstantMixOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconInstantMixOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconInstantMixOutlinedFilled as default } +export default IconInstantMixOutlinedFilled diff --git a/src/IconInstantMixRounded.tsx b/src/IconInstantMixRounded.tsx index bdf98d7fa..a3f6a4838 100644 --- a/src/IconInstantMixRounded.tsx +++ b/src/IconInstantMixRounded.tsx @@ -8,4 +8,4 @@ const IconInstantMixRounded: React.FC = ({ ...props }) => ( ) -export { IconInstantMixRounded as default } +export default IconInstantMixRounded diff --git a/src/IconInstantMixRoundedFilled.tsx b/src/IconInstantMixRoundedFilled.tsx index ab2aa3c2d..7ca64e758 100644 --- a/src/IconInstantMixRoundedFilled.tsx +++ b/src/IconInstantMixRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconInstantMixRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconInstantMixRoundedFilled as default } +export default IconInstantMixRoundedFilled diff --git a/src/IconInstantMixSharp.tsx b/src/IconInstantMixSharp.tsx index 4723a9eca..285cba659 100644 --- a/src/IconInstantMixSharp.tsx +++ b/src/IconInstantMixSharp.tsx @@ -8,4 +8,4 @@ const IconInstantMixSharp: React.FC = ({ ...props }) => ( ) -export { IconInstantMixSharp as default } +export default IconInstantMixSharp diff --git a/src/IconInstantMixSharpFilled.tsx b/src/IconInstantMixSharpFilled.tsx index 2466db5b8..d68e35fb8 100644 --- a/src/IconInstantMixSharpFilled.tsx +++ b/src/IconInstantMixSharpFilled.tsx @@ -8,4 +8,4 @@ const IconInstantMixSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconInstantMixSharpFilled as default } +export default IconInstantMixSharpFilled diff --git a/src/IconIntegrationInstructionsOutlined.tsx b/src/IconIntegrationInstructionsOutlined.tsx index daaef21de..7d8f9bea7 100644 --- a/src/IconIntegrationInstructionsOutlined.tsx +++ b/src/IconIntegrationInstructionsOutlined.tsx @@ -10,4 +10,4 @@ const IconIntegrationInstructionsOutlined: React.FC = ({ ) -export { IconIntegrationInstructionsOutlined as default } +export default IconIntegrationInstructionsOutlined diff --git a/src/IconIntegrationInstructionsOutlinedFilled.tsx b/src/IconIntegrationInstructionsOutlinedFilled.tsx index 4b7f946a9..f0a7b3d00 100644 --- a/src/IconIntegrationInstructionsOutlinedFilled.tsx +++ b/src/IconIntegrationInstructionsOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconIntegrationInstructionsOutlinedFilled: React.FC = ({ ) -export { IconIntegrationInstructionsOutlinedFilled as default } +export default IconIntegrationInstructionsOutlinedFilled diff --git a/src/IconIntegrationInstructionsRounded.tsx b/src/IconIntegrationInstructionsRounded.tsx index c193c6227..d7b1d3ac6 100644 --- a/src/IconIntegrationInstructionsRounded.tsx +++ b/src/IconIntegrationInstructionsRounded.tsx @@ -10,4 +10,4 @@ const IconIntegrationInstructionsRounded: React.FC = ({ ) -export { IconIntegrationInstructionsRounded as default } +export default IconIntegrationInstructionsRounded diff --git a/src/IconIntegrationInstructionsRoundedFilled.tsx b/src/IconIntegrationInstructionsRoundedFilled.tsx index 0c91350cb..0343ba80c 100644 --- a/src/IconIntegrationInstructionsRoundedFilled.tsx +++ b/src/IconIntegrationInstructionsRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconIntegrationInstructionsRoundedFilled: React.FC = ({ ) -export { IconIntegrationInstructionsRoundedFilled as default } +export default IconIntegrationInstructionsRoundedFilled diff --git a/src/IconIntegrationInstructionsSharp.tsx b/src/IconIntegrationInstructionsSharp.tsx index 690740dd0..faaa5ca12 100644 --- a/src/IconIntegrationInstructionsSharp.tsx +++ b/src/IconIntegrationInstructionsSharp.tsx @@ -10,4 +10,4 @@ const IconIntegrationInstructionsSharp: React.FC = ({ ) -export { IconIntegrationInstructionsSharp as default } +export default IconIntegrationInstructionsSharp diff --git a/src/IconIntegrationInstructionsSharpFilled.tsx b/src/IconIntegrationInstructionsSharpFilled.tsx index fe1f91fca..d9174e26b 100644 --- a/src/IconIntegrationInstructionsSharpFilled.tsx +++ b/src/IconIntegrationInstructionsSharpFilled.tsx @@ -10,4 +10,4 @@ const IconIntegrationInstructionsSharpFilled: React.FC = ({ ) -export { IconIntegrationInstructionsSharpFilled as default } +export default IconIntegrationInstructionsSharpFilled diff --git a/src/IconInteractiveSpaceOutlined.tsx b/src/IconInteractiveSpaceOutlined.tsx index 01e0a03a2..05ebe707d 100644 --- a/src/IconInteractiveSpaceOutlined.tsx +++ b/src/IconInteractiveSpaceOutlined.tsx @@ -8,4 +8,4 @@ const IconInteractiveSpaceOutlined: React.FC = ({ ...props }) => ( ) -export { IconInteractiveSpaceOutlined as default } +export default IconInteractiveSpaceOutlined diff --git a/src/IconInteractiveSpaceOutlinedFilled.tsx b/src/IconInteractiveSpaceOutlinedFilled.tsx index 1c2f71846..ccf398f81 100644 --- a/src/IconInteractiveSpaceOutlinedFilled.tsx +++ b/src/IconInteractiveSpaceOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconInteractiveSpaceOutlinedFilled: React.FC = ({ ) -export { IconInteractiveSpaceOutlinedFilled as default } +export default IconInteractiveSpaceOutlinedFilled diff --git a/src/IconInteractiveSpaceRounded.tsx b/src/IconInteractiveSpaceRounded.tsx index 12ed05458..b701b9c9c 100644 --- a/src/IconInteractiveSpaceRounded.tsx +++ b/src/IconInteractiveSpaceRounded.tsx @@ -8,4 +8,4 @@ const IconInteractiveSpaceRounded: React.FC = ({ ...props }) => ( ) -export { IconInteractiveSpaceRounded as default } +export default IconInteractiveSpaceRounded diff --git a/src/IconInteractiveSpaceRoundedFilled.tsx b/src/IconInteractiveSpaceRoundedFilled.tsx index 9ee3dba8b..6593d3f54 100644 --- a/src/IconInteractiveSpaceRoundedFilled.tsx +++ b/src/IconInteractiveSpaceRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconInteractiveSpaceRoundedFilled: React.FC = ({ ) -export { IconInteractiveSpaceRoundedFilled as default } +export default IconInteractiveSpaceRoundedFilled diff --git a/src/IconInteractiveSpaceSharp.tsx b/src/IconInteractiveSpaceSharp.tsx index 8239fa446..c15fdf613 100644 --- a/src/IconInteractiveSpaceSharp.tsx +++ b/src/IconInteractiveSpaceSharp.tsx @@ -8,4 +8,4 @@ const IconInteractiveSpaceSharp: React.FC = ({ ...props }) => ( ) -export { IconInteractiveSpaceSharp as default } +export default IconInteractiveSpaceSharp diff --git a/src/IconInteractiveSpaceSharpFilled.tsx b/src/IconInteractiveSpaceSharpFilled.tsx index 4e48a36a9..7f3ceb9b9 100644 --- a/src/IconInteractiveSpaceSharpFilled.tsx +++ b/src/IconInteractiveSpaceSharpFilled.tsx @@ -8,4 +8,4 @@ const IconInteractiveSpaceSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconInteractiveSpaceSharpFilled as default } +export default IconInteractiveSpaceSharpFilled diff --git a/src/IconInterestsOutlined.tsx b/src/IconInterestsOutlined.tsx index c723c9510..318ca1eb1 100644 --- a/src/IconInterestsOutlined.tsx +++ b/src/IconInterestsOutlined.tsx @@ -8,4 +8,4 @@ const IconInterestsOutlined: React.FC = ({ ...props }) => ( ) -export { IconInterestsOutlined as default } +export default IconInterestsOutlined diff --git a/src/IconInterestsOutlinedFilled.tsx b/src/IconInterestsOutlinedFilled.tsx index 47af41a20..c6d736193 100644 --- a/src/IconInterestsOutlinedFilled.tsx +++ b/src/IconInterestsOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconInterestsOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconInterestsOutlinedFilled as default } +export default IconInterestsOutlinedFilled diff --git a/src/IconInterestsRounded.tsx b/src/IconInterestsRounded.tsx index 6958cedb0..73c880a7d 100644 --- a/src/IconInterestsRounded.tsx +++ b/src/IconInterestsRounded.tsx @@ -8,4 +8,4 @@ const IconInterestsRounded: React.FC = ({ ...props }) => ( ) -export { IconInterestsRounded as default } +export default IconInterestsRounded diff --git a/src/IconInterestsRoundedFilled.tsx b/src/IconInterestsRoundedFilled.tsx index bb17f925d..86a2cfcd2 100644 --- a/src/IconInterestsRoundedFilled.tsx +++ b/src/IconInterestsRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconInterestsRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconInterestsRoundedFilled as default } +export default IconInterestsRoundedFilled diff --git a/src/IconInterestsSharp.tsx b/src/IconInterestsSharp.tsx index 8ee0e7b81..aeeb623d8 100644 --- a/src/IconInterestsSharp.tsx +++ b/src/IconInterestsSharp.tsx @@ -8,4 +8,4 @@ const IconInterestsSharp: React.FC = ({ ...props }) => ( ) -export { IconInterestsSharp as default } +export default IconInterestsSharp diff --git a/src/IconInterestsSharpFilled.tsx b/src/IconInterestsSharpFilled.tsx index b0ab8950b..192e23ed9 100644 --- a/src/IconInterestsSharpFilled.tsx +++ b/src/IconInterestsSharpFilled.tsx @@ -8,4 +8,4 @@ const IconInterestsSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconInterestsSharpFilled as default } +export default IconInterestsSharpFilled diff --git a/src/IconInterpreterModeOutlined.tsx b/src/IconInterpreterModeOutlined.tsx index dfb45aaa3..45ce8ba7b 100644 --- a/src/IconInterpreterModeOutlined.tsx +++ b/src/IconInterpreterModeOutlined.tsx @@ -8,4 +8,4 @@ const IconInterpreterModeOutlined: React.FC = ({ ...props }) => ( ) -export { IconInterpreterModeOutlined as default } +export default IconInterpreterModeOutlined diff --git a/src/IconInterpreterModeOutlinedFilled.tsx b/src/IconInterpreterModeOutlinedFilled.tsx index 80764ffbb..fdb4363e2 100644 --- a/src/IconInterpreterModeOutlinedFilled.tsx +++ b/src/IconInterpreterModeOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconInterpreterModeOutlinedFilled: React.FC = ({ ) -export { IconInterpreterModeOutlinedFilled as default } +export default IconInterpreterModeOutlinedFilled diff --git a/src/IconInterpreterModeRounded.tsx b/src/IconInterpreterModeRounded.tsx index 943d40692..d588b19d9 100644 --- a/src/IconInterpreterModeRounded.tsx +++ b/src/IconInterpreterModeRounded.tsx @@ -8,4 +8,4 @@ const IconInterpreterModeRounded: React.FC = ({ ...props }) => ( ) -export { IconInterpreterModeRounded as default } +export default IconInterpreterModeRounded diff --git a/src/IconInterpreterModeRoundedFilled.tsx b/src/IconInterpreterModeRoundedFilled.tsx index c4f8fcb6d..77d1340ff 100644 --- a/src/IconInterpreterModeRoundedFilled.tsx +++ b/src/IconInterpreterModeRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconInterpreterModeRoundedFilled: React.FC = ({ ) -export { IconInterpreterModeRoundedFilled as default } +export default IconInterpreterModeRoundedFilled diff --git a/src/IconInterpreterModeSharp.tsx b/src/IconInterpreterModeSharp.tsx index edcb57d59..123d87d1f 100644 --- a/src/IconInterpreterModeSharp.tsx +++ b/src/IconInterpreterModeSharp.tsx @@ -8,4 +8,4 @@ const IconInterpreterModeSharp: React.FC = ({ ...props }) => ( ) -export { IconInterpreterModeSharp as default } +export default IconInterpreterModeSharp diff --git a/src/IconInterpreterModeSharpFilled.tsx b/src/IconInterpreterModeSharpFilled.tsx index 13ed72e29..c299c2e56 100644 --- a/src/IconInterpreterModeSharpFilled.tsx +++ b/src/IconInterpreterModeSharpFilled.tsx @@ -8,4 +8,4 @@ const IconInterpreterModeSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconInterpreterModeSharpFilled as default } +export default IconInterpreterModeSharpFilled diff --git a/src/IconInventory2Outlined.tsx b/src/IconInventory2Outlined.tsx index 9f9143f53..87951a8cc 100644 --- a/src/IconInventory2Outlined.tsx +++ b/src/IconInventory2Outlined.tsx @@ -8,4 +8,4 @@ const IconInventory2Outlined: React.FC = ({ ...props }) => ( ) -export { IconInventory2Outlined as default } +export default IconInventory2Outlined diff --git a/src/IconInventory2OutlinedFilled.tsx b/src/IconInventory2OutlinedFilled.tsx index 06e4cef05..12fbbc4f5 100644 --- a/src/IconInventory2OutlinedFilled.tsx +++ b/src/IconInventory2OutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconInventory2OutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconInventory2OutlinedFilled as default } +export default IconInventory2OutlinedFilled diff --git a/src/IconInventory2Rounded.tsx b/src/IconInventory2Rounded.tsx index 808a3454e..7e87119d1 100644 --- a/src/IconInventory2Rounded.tsx +++ b/src/IconInventory2Rounded.tsx @@ -8,4 +8,4 @@ const IconInventory2Rounded: React.FC = ({ ...props }) => ( ) -export { IconInventory2Rounded as default } +export default IconInventory2Rounded diff --git a/src/IconInventory2RoundedFilled.tsx b/src/IconInventory2RoundedFilled.tsx index 48f08e15f..0099562bd 100644 --- a/src/IconInventory2RoundedFilled.tsx +++ b/src/IconInventory2RoundedFilled.tsx @@ -8,4 +8,4 @@ const IconInventory2RoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconInventory2RoundedFilled as default } +export default IconInventory2RoundedFilled diff --git a/src/IconInventory2Sharp.tsx b/src/IconInventory2Sharp.tsx index 1d28f90c6..998cc4d6a 100644 --- a/src/IconInventory2Sharp.tsx +++ b/src/IconInventory2Sharp.tsx @@ -8,4 +8,4 @@ const IconInventory2Sharp: React.FC = ({ ...props }) => ( ) -export { IconInventory2Sharp as default } +export default IconInventory2Sharp diff --git a/src/IconInventory2SharpFilled.tsx b/src/IconInventory2SharpFilled.tsx index a9d144a53..357fbbe49 100644 --- a/src/IconInventory2SharpFilled.tsx +++ b/src/IconInventory2SharpFilled.tsx @@ -8,4 +8,4 @@ const IconInventory2SharpFilled: React.FC = ({ ...props }) => ( ) -export { IconInventory2SharpFilled as default } +export default IconInventory2SharpFilled diff --git a/src/IconInventoryOutlined.tsx b/src/IconInventoryOutlined.tsx index 62c6bcdae..a3abe54da 100644 --- a/src/IconInventoryOutlined.tsx +++ b/src/IconInventoryOutlined.tsx @@ -8,4 +8,4 @@ const IconInventoryOutlined: React.FC = ({ ...props }) => ( ) -export { IconInventoryOutlined as default } +export default IconInventoryOutlined diff --git a/src/IconInventoryOutlinedFilled.tsx b/src/IconInventoryOutlinedFilled.tsx index d940bf337..8ff2a5ddd 100644 --- a/src/IconInventoryOutlinedFilled.tsx +++ b/src/IconInventoryOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconInventoryOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconInventoryOutlinedFilled as default } +export default IconInventoryOutlinedFilled diff --git a/src/IconInventoryRounded.tsx b/src/IconInventoryRounded.tsx index f639b6a0d..4dbadf5d5 100644 --- a/src/IconInventoryRounded.tsx +++ b/src/IconInventoryRounded.tsx @@ -8,4 +8,4 @@ const IconInventoryRounded: React.FC = ({ ...props }) => ( ) -export { IconInventoryRounded as default } +export default IconInventoryRounded diff --git a/src/IconInventoryRoundedFilled.tsx b/src/IconInventoryRoundedFilled.tsx index d6fc2006e..c817ef7f7 100644 --- a/src/IconInventoryRoundedFilled.tsx +++ b/src/IconInventoryRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconInventoryRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconInventoryRoundedFilled as default } +export default IconInventoryRoundedFilled diff --git a/src/IconInventorySharp.tsx b/src/IconInventorySharp.tsx index 57276ddca..fd2bba09a 100644 --- a/src/IconInventorySharp.tsx +++ b/src/IconInventorySharp.tsx @@ -8,4 +8,4 @@ const IconInventorySharp: React.FC = ({ ...props }) => ( ) -export { IconInventorySharp as default } +export default IconInventorySharp diff --git a/src/IconInventorySharpFilled.tsx b/src/IconInventorySharpFilled.tsx index 813c0fdcd..77cbbde20 100644 --- a/src/IconInventorySharpFilled.tsx +++ b/src/IconInventorySharpFilled.tsx @@ -8,4 +8,4 @@ const IconInventorySharpFilled: React.FC = ({ ...props }) => ( ) -export { IconInventorySharpFilled as default } +export default IconInventorySharpFilled diff --git a/src/IconInvertColorsOffOutlined.tsx b/src/IconInvertColorsOffOutlined.tsx index fdf7627e3..69766a12f 100644 --- a/src/IconInvertColorsOffOutlined.tsx +++ b/src/IconInvertColorsOffOutlined.tsx @@ -8,4 +8,4 @@ const IconInvertColorsOffOutlined: React.FC = ({ ...props }) => ( ) -export { IconInvertColorsOffOutlined as default } +export default IconInvertColorsOffOutlined diff --git a/src/IconInvertColorsOffOutlinedFilled.tsx b/src/IconInvertColorsOffOutlinedFilled.tsx index 45ce0954a..0a82eb3d4 100644 --- a/src/IconInvertColorsOffOutlinedFilled.tsx +++ b/src/IconInvertColorsOffOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconInvertColorsOffOutlinedFilled: React.FC = ({ ) -export { IconInvertColorsOffOutlinedFilled as default } +export default IconInvertColorsOffOutlinedFilled diff --git a/src/IconInvertColorsOffRounded.tsx b/src/IconInvertColorsOffRounded.tsx index 6c3e63e02..fc1bedac2 100644 --- a/src/IconInvertColorsOffRounded.tsx +++ b/src/IconInvertColorsOffRounded.tsx @@ -8,4 +8,4 @@ const IconInvertColorsOffRounded: React.FC = ({ ...props }) => ( ) -export { IconInvertColorsOffRounded as default } +export default IconInvertColorsOffRounded diff --git a/src/IconInvertColorsOffRoundedFilled.tsx b/src/IconInvertColorsOffRoundedFilled.tsx index c97fee019..51df263e1 100644 --- a/src/IconInvertColorsOffRoundedFilled.tsx +++ b/src/IconInvertColorsOffRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconInvertColorsOffRoundedFilled: React.FC = ({ ) -export { IconInvertColorsOffRoundedFilled as default } +export default IconInvertColorsOffRoundedFilled diff --git a/src/IconInvertColorsOffSharp.tsx b/src/IconInvertColorsOffSharp.tsx index 199ad7a4a..2f4cf5b37 100644 --- a/src/IconInvertColorsOffSharp.tsx +++ b/src/IconInvertColorsOffSharp.tsx @@ -8,4 +8,4 @@ const IconInvertColorsOffSharp: React.FC = ({ ...props }) => ( ) -export { IconInvertColorsOffSharp as default } +export default IconInvertColorsOffSharp diff --git a/src/IconInvertColorsOffSharpFilled.tsx b/src/IconInvertColorsOffSharpFilled.tsx index de363e31d..1bd6dfddf 100644 --- a/src/IconInvertColorsOffSharpFilled.tsx +++ b/src/IconInvertColorsOffSharpFilled.tsx @@ -8,4 +8,4 @@ const IconInvertColorsOffSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconInvertColorsOffSharpFilled as default } +export default IconInvertColorsOffSharpFilled diff --git a/src/IconInvertColorsOutlined.tsx b/src/IconInvertColorsOutlined.tsx index ab82cc4ac..b896acb75 100644 --- a/src/IconInvertColorsOutlined.tsx +++ b/src/IconInvertColorsOutlined.tsx @@ -8,4 +8,4 @@ const IconInvertColorsOutlined: React.FC = ({ ...props }) => ( ) -export { IconInvertColorsOutlined as default } +export default IconInvertColorsOutlined diff --git a/src/IconInvertColorsOutlinedFilled.tsx b/src/IconInvertColorsOutlinedFilled.tsx index e7cae6a67..2bd3e5ea0 100644 --- a/src/IconInvertColorsOutlinedFilled.tsx +++ b/src/IconInvertColorsOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconInvertColorsOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconInvertColorsOutlinedFilled as default } +export default IconInvertColorsOutlinedFilled diff --git a/src/IconInvertColorsRounded.tsx b/src/IconInvertColorsRounded.tsx index 686e0ed1a..b1e2dd6e3 100644 --- a/src/IconInvertColorsRounded.tsx +++ b/src/IconInvertColorsRounded.tsx @@ -8,4 +8,4 @@ const IconInvertColorsRounded: React.FC = ({ ...props }) => ( ) -export { IconInvertColorsRounded as default } +export default IconInvertColorsRounded diff --git a/src/IconInvertColorsRoundedFilled.tsx b/src/IconInvertColorsRoundedFilled.tsx index 0e45e7fe5..813353b14 100644 --- a/src/IconInvertColorsRoundedFilled.tsx +++ b/src/IconInvertColorsRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconInvertColorsRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconInvertColorsRoundedFilled as default } +export default IconInvertColorsRoundedFilled diff --git a/src/IconInvertColorsSharp.tsx b/src/IconInvertColorsSharp.tsx index 0317a9327..7dc6831e9 100644 --- a/src/IconInvertColorsSharp.tsx +++ b/src/IconInvertColorsSharp.tsx @@ -8,4 +8,4 @@ const IconInvertColorsSharp: React.FC = ({ ...props }) => ( ) -export { IconInvertColorsSharp as default } +export default IconInvertColorsSharp diff --git a/src/IconInvertColorsSharpFilled.tsx b/src/IconInvertColorsSharpFilled.tsx index e04777cec..083c57059 100644 --- a/src/IconInvertColorsSharpFilled.tsx +++ b/src/IconInvertColorsSharpFilled.tsx @@ -8,4 +8,4 @@ const IconInvertColorsSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconInvertColorsSharpFilled as default } +export default IconInvertColorsSharpFilled diff --git a/src/IconIosOutlined.tsx b/src/IconIosOutlined.tsx index 0ee7175b2..5c161d94c 100644 --- a/src/IconIosOutlined.tsx +++ b/src/IconIosOutlined.tsx @@ -8,4 +8,4 @@ const IconIosOutlined: React.FC = ({ ...props }) => ( ) -export { IconIosOutlined as default } +export default IconIosOutlined diff --git a/src/IconIosOutlinedFilled.tsx b/src/IconIosOutlinedFilled.tsx index cc30944c3..298620f65 100644 --- a/src/IconIosOutlinedFilled.tsx +++ b/src/IconIosOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconIosOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconIosOutlinedFilled as default } +export default IconIosOutlinedFilled diff --git a/src/IconIosRounded.tsx b/src/IconIosRounded.tsx index e929be1d4..d8243d59d 100644 --- a/src/IconIosRounded.tsx +++ b/src/IconIosRounded.tsx @@ -8,4 +8,4 @@ const IconIosRounded: React.FC = ({ ...props }) => ( ) -export { IconIosRounded as default } +export default IconIosRounded diff --git a/src/IconIosRoundedFilled.tsx b/src/IconIosRoundedFilled.tsx index 5e0e20f1c..d96182079 100644 --- a/src/IconIosRoundedFilled.tsx +++ b/src/IconIosRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconIosRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconIosRoundedFilled as default } +export default IconIosRoundedFilled diff --git a/src/IconIosShareOutlined.tsx b/src/IconIosShareOutlined.tsx index 004a7e4f0..de473b662 100644 --- a/src/IconIosShareOutlined.tsx +++ b/src/IconIosShareOutlined.tsx @@ -8,4 +8,4 @@ const IconIosShareOutlined: React.FC = ({ ...props }) => ( ) -export { IconIosShareOutlined as default } +export default IconIosShareOutlined diff --git a/src/IconIosShareOutlinedFilled.tsx b/src/IconIosShareOutlinedFilled.tsx index 458c28641..c1875537f 100644 --- a/src/IconIosShareOutlinedFilled.tsx +++ b/src/IconIosShareOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconIosShareOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconIosShareOutlinedFilled as default } +export default IconIosShareOutlinedFilled diff --git a/src/IconIosShareRounded.tsx b/src/IconIosShareRounded.tsx index bbd57b5b9..1fd7ac3f8 100644 --- a/src/IconIosShareRounded.tsx +++ b/src/IconIosShareRounded.tsx @@ -8,4 +8,4 @@ const IconIosShareRounded: React.FC = ({ ...props }) => ( ) -export { IconIosShareRounded as default } +export default IconIosShareRounded diff --git a/src/IconIosShareRoundedFilled.tsx b/src/IconIosShareRoundedFilled.tsx index 0aa8dba44..06bd9b770 100644 --- a/src/IconIosShareRoundedFilled.tsx +++ b/src/IconIosShareRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconIosShareRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconIosShareRoundedFilled as default } +export default IconIosShareRoundedFilled diff --git a/src/IconIosShareSharp.tsx b/src/IconIosShareSharp.tsx index 900876c63..eac7ceecf 100644 --- a/src/IconIosShareSharp.tsx +++ b/src/IconIosShareSharp.tsx @@ -8,4 +8,4 @@ const IconIosShareSharp: React.FC = ({ ...props }) => ( ) -export { IconIosShareSharp as default } +export default IconIosShareSharp diff --git a/src/IconIosShareSharpFilled.tsx b/src/IconIosShareSharpFilled.tsx index f0ac145a7..4e43692dd 100644 --- a/src/IconIosShareSharpFilled.tsx +++ b/src/IconIosShareSharpFilled.tsx @@ -8,4 +8,4 @@ const IconIosShareSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconIosShareSharpFilled as default } +export default IconIosShareSharpFilled diff --git a/src/IconIosSharp.tsx b/src/IconIosSharp.tsx index 310db41d1..1f70afcb2 100644 --- a/src/IconIosSharp.tsx +++ b/src/IconIosSharp.tsx @@ -8,4 +8,4 @@ const IconIosSharp: React.FC = ({ ...props }) => ( ) -export { IconIosSharp as default } +export default IconIosSharp diff --git a/src/IconIosSharpFilled.tsx b/src/IconIosSharpFilled.tsx index ee9cb80c7..a89baf4d9 100644 --- a/src/IconIosSharpFilled.tsx +++ b/src/IconIosSharpFilled.tsx @@ -8,4 +8,4 @@ const IconIosSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconIosSharpFilled as default } +export default IconIosSharpFilled diff --git a/src/IconIronOutlined.tsx b/src/IconIronOutlined.tsx index 60dbe6ebb..0bea0b080 100644 --- a/src/IconIronOutlined.tsx +++ b/src/IconIronOutlined.tsx @@ -8,4 +8,4 @@ const IconIronOutlined: React.FC = ({ ...props }) => ( ) -export { IconIronOutlined as default } +export default IconIronOutlined diff --git a/src/IconIronOutlinedFilled.tsx b/src/IconIronOutlinedFilled.tsx index 2c36c5f73..6cd612186 100644 --- a/src/IconIronOutlinedFilled.tsx +++ b/src/IconIronOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconIronOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconIronOutlinedFilled as default } +export default IconIronOutlinedFilled diff --git a/src/IconIronRounded.tsx b/src/IconIronRounded.tsx index 739f04b47..bdec8c118 100644 --- a/src/IconIronRounded.tsx +++ b/src/IconIronRounded.tsx @@ -8,4 +8,4 @@ const IconIronRounded: React.FC = ({ ...props }) => ( ) -export { IconIronRounded as default } +export default IconIronRounded diff --git a/src/IconIronRoundedFilled.tsx b/src/IconIronRoundedFilled.tsx index fd219c1a6..e19b9a445 100644 --- a/src/IconIronRoundedFilled.tsx +++ b/src/IconIronRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconIronRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconIronRoundedFilled as default } +export default IconIronRoundedFilled diff --git a/src/IconIronSharp.tsx b/src/IconIronSharp.tsx index 95cae6699..2a959d709 100644 --- a/src/IconIronSharp.tsx +++ b/src/IconIronSharp.tsx @@ -8,4 +8,4 @@ const IconIronSharp: React.FC = ({ ...props }) => ( ) -export { IconIronSharp as default } +export default IconIronSharp diff --git a/src/IconIronSharpFilled.tsx b/src/IconIronSharpFilled.tsx index 0f5037156..c70a95cbe 100644 --- a/src/IconIronSharpFilled.tsx +++ b/src/IconIronSharpFilled.tsx @@ -8,4 +8,4 @@ const IconIronSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconIronSharpFilled as default } +export default IconIronSharpFilled diff --git a/src/IconJamboardKioskOutlined.tsx b/src/IconJamboardKioskOutlined.tsx index 2ccd2ccc8..e84a437dc 100644 --- a/src/IconJamboardKioskOutlined.tsx +++ b/src/IconJamboardKioskOutlined.tsx @@ -8,4 +8,4 @@ const IconJamboardKioskOutlined: React.FC = ({ ...props }) => ( ) -export { IconJamboardKioskOutlined as default } +export default IconJamboardKioskOutlined diff --git a/src/IconJamboardKioskOutlinedFilled.tsx b/src/IconJamboardKioskOutlinedFilled.tsx index d32c7101e..bec1199a9 100644 --- a/src/IconJamboardKioskOutlinedFilled.tsx +++ b/src/IconJamboardKioskOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconJamboardKioskOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconJamboardKioskOutlinedFilled as default } +export default IconJamboardKioskOutlinedFilled diff --git a/src/IconJamboardKioskRounded.tsx b/src/IconJamboardKioskRounded.tsx index 35a6a092f..d3f9c0f33 100644 --- a/src/IconJamboardKioskRounded.tsx +++ b/src/IconJamboardKioskRounded.tsx @@ -8,4 +8,4 @@ const IconJamboardKioskRounded: React.FC = ({ ...props }) => ( ) -export { IconJamboardKioskRounded as default } +export default IconJamboardKioskRounded diff --git a/src/IconJamboardKioskRoundedFilled.tsx b/src/IconJamboardKioskRoundedFilled.tsx index 94dfee42c..79a23c039 100644 --- a/src/IconJamboardKioskRoundedFilled.tsx +++ b/src/IconJamboardKioskRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconJamboardKioskRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconJamboardKioskRoundedFilled as default } +export default IconJamboardKioskRoundedFilled diff --git a/src/IconJamboardKioskSharp.tsx b/src/IconJamboardKioskSharp.tsx index 6717eec2e..5a2423fd7 100644 --- a/src/IconJamboardKioskSharp.tsx +++ b/src/IconJamboardKioskSharp.tsx @@ -8,4 +8,4 @@ const IconJamboardKioskSharp: React.FC = ({ ...props }) => ( ) -export { IconJamboardKioskSharp as default } +export default IconJamboardKioskSharp diff --git a/src/IconJamboardKioskSharpFilled.tsx b/src/IconJamboardKioskSharpFilled.tsx index 669f0e83f..e6a46b834 100644 --- a/src/IconJamboardKioskSharpFilled.tsx +++ b/src/IconJamboardKioskSharpFilled.tsx @@ -8,4 +8,4 @@ const IconJamboardKioskSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconJamboardKioskSharpFilled as default } +export default IconJamboardKioskSharpFilled diff --git a/src/IconJavascriptOutlined.tsx b/src/IconJavascriptOutlined.tsx index dc8687c69..7c9bf781d 100644 --- a/src/IconJavascriptOutlined.tsx +++ b/src/IconJavascriptOutlined.tsx @@ -8,4 +8,4 @@ const IconJavascriptOutlined: React.FC = ({ ...props }) => ( ) -export { IconJavascriptOutlined as default } +export default IconJavascriptOutlined diff --git a/src/IconJavascriptOutlinedFilled.tsx b/src/IconJavascriptOutlinedFilled.tsx index f9b82563e..0b4a8d16c 100644 --- a/src/IconJavascriptOutlinedFilled.tsx +++ b/src/IconJavascriptOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconJavascriptOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconJavascriptOutlinedFilled as default } +export default IconJavascriptOutlinedFilled diff --git a/src/IconJavascriptRounded.tsx b/src/IconJavascriptRounded.tsx index b7fc51c1a..f40b1dd79 100644 --- a/src/IconJavascriptRounded.tsx +++ b/src/IconJavascriptRounded.tsx @@ -8,4 +8,4 @@ const IconJavascriptRounded: React.FC = ({ ...props }) => ( ) -export { IconJavascriptRounded as default } +export default IconJavascriptRounded diff --git a/src/IconJavascriptRoundedFilled.tsx b/src/IconJavascriptRoundedFilled.tsx index b47df9562..d0920bff2 100644 --- a/src/IconJavascriptRoundedFilled.tsx +++ b/src/IconJavascriptRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconJavascriptRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconJavascriptRoundedFilled as default } +export default IconJavascriptRoundedFilled diff --git a/src/IconJavascriptSharp.tsx b/src/IconJavascriptSharp.tsx index 883633b97..377792492 100644 --- a/src/IconJavascriptSharp.tsx +++ b/src/IconJavascriptSharp.tsx @@ -8,4 +8,4 @@ const IconJavascriptSharp: React.FC = ({ ...props }) => ( ) -export { IconJavascriptSharp as default } +export default IconJavascriptSharp diff --git a/src/IconJavascriptSharpFilled.tsx b/src/IconJavascriptSharpFilled.tsx index 32c577502..357af16b8 100644 --- a/src/IconJavascriptSharpFilled.tsx +++ b/src/IconJavascriptSharpFilled.tsx @@ -8,4 +8,4 @@ const IconJavascriptSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconJavascriptSharpFilled as default } +export default IconJavascriptSharpFilled diff --git a/src/IconJoinInnerOutlined.tsx b/src/IconJoinInnerOutlined.tsx index c618f33e8..781b71970 100644 --- a/src/IconJoinInnerOutlined.tsx +++ b/src/IconJoinInnerOutlined.tsx @@ -8,4 +8,4 @@ const IconJoinInnerOutlined: React.FC = ({ ...props }) => ( ) -export { IconJoinInnerOutlined as default } +export default IconJoinInnerOutlined diff --git a/src/IconJoinInnerOutlinedFilled.tsx b/src/IconJoinInnerOutlinedFilled.tsx index 4c7bc3ccc..9ae7d61da 100644 --- a/src/IconJoinInnerOutlinedFilled.tsx +++ b/src/IconJoinInnerOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconJoinInnerOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconJoinInnerOutlinedFilled as default } +export default IconJoinInnerOutlinedFilled diff --git a/src/IconJoinInnerRounded.tsx b/src/IconJoinInnerRounded.tsx index 7f7f9a10b..1b229ebde 100644 --- a/src/IconJoinInnerRounded.tsx +++ b/src/IconJoinInnerRounded.tsx @@ -8,4 +8,4 @@ const IconJoinInnerRounded: React.FC = ({ ...props }) => ( ) -export { IconJoinInnerRounded as default } +export default IconJoinInnerRounded diff --git a/src/IconJoinInnerRoundedFilled.tsx b/src/IconJoinInnerRoundedFilled.tsx index 9b26374b9..42d93becb 100644 --- a/src/IconJoinInnerRoundedFilled.tsx +++ b/src/IconJoinInnerRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconJoinInnerRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconJoinInnerRoundedFilled as default } +export default IconJoinInnerRoundedFilled diff --git a/src/IconJoinInnerSharp.tsx b/src/IconJoinInnerSharp.tsx index aece48929..65f6ef87e 100644 --- a/src/IconJoinInnerSharp.tsx +++ b/src/IconJoinInnerSharp.tsx @@ -8,4 +8,4 @@ const IconJoinInnerSharp: React.FC = ({ ...props }) => ( ) -export { IconJoinInnerSharp as default } +export default IconJoinInnerSharp diff --git a/src/IconJoinInnerSharpFilled.tsx b/src/IconJoinInnerSharpFilled.tsx index c1d1acbf2..4e7517400 100644 --- a/src/IconJoinInnerSharpFilled.tsx +++ b/src/IconJoinInnerSharpFilled.tsx @@ -8,4 +8,4 @@ const IconJoinInnerSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconJoinInnerSharpFilled as default } +export default IconJoinInnerSharpFilled diff --git a/src/IconJoinLeftOutlined.tsx b/src/IconJoinLeftOutlined.tsx index 0c3661c20..bb203c83c 100644 --- a/src/IconJoinLeftOutlined.tsx +++ b/src/IconJoinLeftOutlined.tsx @@ -8,4 +8,4 @@ const IconJoinLeftOutlined: React.FC = ({ ...props }) => ( ) -export { IconJoinLeftOutlined as default } +export default IconJoinLeftOutlined diff --git a/src/IconJoinLeftOutlinedFilled.tsx b/src/IconJoinLeftOutlinedFilled.tsx index 17a5c7417..fd56d8338 100644 --- a/src/IconJoinLeftOutlinedFilled.tsx +++ b/src/IconJoinLeftOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconJoinLeftOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconJoinLeftOutlinedFilled as default } +export default IconJoinLeftOutlinedFilled diff --git a/src/IconJoinLeftRounded.tsx b/src/IconJoinLeftRounded.tsx index 95b5eed35..aa8db3e37 100644 --- a/src/IconJoinLeftRounded.tsx +++ b/src/IconJoinLeftRounded.tsx @@ -8,4 +8,4 @@ const IconJoinLeftRounded: React.FC = ({ ...props }) => ( ) -export { IconJoinLeftRounded as default } +export default IconJoinLeftRounded diff --git a/src/IconJoinLeftRoundedFilled.tsx b/src/IconJoinLeftRoundedFilled.tsx index f65061524..a84299636 100644 --- a/src/IconJoinLeftRoundedFilled.tsx +++ b/src/IconJoinLeftRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconJoinLeftRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconJoinLeftRoundedFilled as default } +export default IconJoinLeftRoundedFilled diff --git a/src/IconJoinLeftSharp.tsx b/src/IconJoinLeftSharp.tsx index 8aa88483c..22dab439d 100644 --- a/src/IconJoinLeftSharp.tsx +++ b/src/IconJoinLeftSharp.tsx @@ -8,4 +8,4 @@ const IconJoinLeftSharp: React.FC = ({ ...props }) => ( ) -export { IconJoinLeftSharp as default } +export default IconJoinLeftSharp diff --git a/src/IconJoinLeftSharpFilled.tsx b/src/IconJoinLeftSharpFilled.tsx index 3b798392b..cd8b505e3 100644 --- a/src/IconJoinLeftSharpFilled.tsx +++ b/src/IconJoinLeftSharpFilled.tsx @@ -8,4 +8,4 @@ const IconJoinLeftSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconJoinLeftSharpFilled as default } +export default IconJoinLeftSharpFilled diff --git a/src/IconJoinOutlined.tsx b/src/IconJoinOutlined.tsx index 9540eb161..1712c1b88 100644 --- a/src/IconJoinOutlined.tsx +++ b/src/IconJoinOutlined.tsx @@ -8,4 +8,4 @@ const IconJoinOutlined: React.FC = ({ ...props }) => ( ) -export { IconJoinOutlined as default } +export default IconJoinOutlined diff --git a/src/IconJoinOutlinedFilled.tsx b/src/IconJoinOutlinedFilled.tsx index 935552390..428701b62 100644 --- a/src/IconJoinOutlinedFilled.tsx +++ b/src/IconJoinOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconJoinOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconJoinOutlinedFilled as default } +export default IconJoinOutlinedFilled diff --git a/src/IconJoinRightOutlined.tsx b/src/IconJoinRightOutlined.tsx index 837deeb10..842f6a1dd 100644 --- a/src/IconJoinRightOutlined.tsx +++ b/src/IconJoinRightOutlined.tsx @@ -8,4 +8,4 @@ const IconJoinRightOutlined: React.FC = ({ ...props }) => ( ) -export { IconJoinRightOutlined as default } +export default IconJoinRightOutlined diff --git a/src/IconJoinRightOutlinedFilled.tsx b/src/IconJoinRightOutlinedFilled.tsx index 70711ca66..171d64330 100644 --- a/src/IconJoinRightOutlinedFilled.tsx +++ b/src/IconJoinRightOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconJoinRightOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconJoinRightOutlinedFilled as default } +export default IconJoinRightOutlinedFilled diff --git a/src/IconJoinRightRounded.tsx b/src/IconJoinRightRounded.tsx index 2e2223ebe..7959f3b11 100644 --- a/src/IconJoinRightRounded.tsx +++ b/src/IconJoinRightRounded.tsx @@ -8,4 +8,4 @@ const IconJoinRightRounded: React.FC = ({ ...props }) => ( ) -export { IconJoinRightRounded as default } +export default IconJoinRightRounded diff --git a/src/IconJoinRightRoundedFilled.tsx b/src/IconJoinRightRoundedFilled.tsx index 37f186ab8..3a608e2f6 100644 --- a/src/IconJoinRightRoundedFilled.tsx +++ b/src/IconJoinRightRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconJoinRightRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconJoinRightRoundedFilled as default } +export default IconJoinRightRoundedFilled diff --git a/src/IconJoinRightSharp.tsx b/src/IconJoinRightSharp.tsx index bb0126492..6104ada02 100644 --- a/src/IconJoinRightSharp.tsx +++ b/src/IconJoinRightSharp.tsx @@ -8,4 +8,4 @@ const IconJoinRightSharp: React.FC = ({ ...props }) => ( ) -export { IconJoinRightSharp as default } +export default IconJoinRightSharp diff --git a/src/IconJoinRightSharpFilled.tsx b/src/IconJoinRightSharpFilled.tsx index c2b7a7ae2..765464685 100644 --- a/src/IconJoinRightSharpFilled.tsx +++ b/src/IconJoinRightSharpFilled.tsx @@ -8,4 +8,4 @@ const IconJoinRightSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconJoinRightSharpFilled as default } +export default IconJoinRightSharpFilled diff --git a/src/IconJoinRounded.tsx b/src/IconJoinRounded.tsx index 19cd57d16..e7f5c123b 100644 --- a/src/IconJoinRounded.tsx +++ b/src/IconJoinRounded.tsx @@ -8,4 +8,4 @@ const IconJoinRounded: React.FC = ({ ...props }) => ( ) -export { IconJoinRounded as default } +export default IconJoinRounded diff --git a/src/IconJoinRoundedFilled.tsx b/src/IconJoinRoundedFilled.tsx index a6c5544bb..37c1741e0 100644 --- a/src/IconJoinRoundedFilled.tsx +++ b/src/IconJoinRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconJoinRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconJoinRoundedFilled as default } +export default IconJoinRoundedFilled diff --git a/src/IconJoinSharp.tsx b/src/IconJoinSharp.tsx index 2d554c56b..41c21477c 100644 --- a/src/IconJoinSharp.tsx +++ b/src/IconJoinSharp.tsx @@ -8,4 +8,4 @@ const IconJoinSharp: React.FC = ({ ...props }) => ( ) -export { IconJoinSharp as default } +export default IconJoinSharp diff --git a/src/IconJoinSharpFilled.tsx b/src/IconJoinSharpFilled.tsx index aac98757a..d84c128ff 100644 --- a/src/IconJoinSharpFilled.tsx +++ b/src/IconJoinSharpFilled.tsx @@ -8,4 +8,4 @@ const IconJoinSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconJoinSharpFilled as default } +export default IconJoinSharpFilled diff --git a/src/IconJoystickOutlined.tsx b/src/IconJoystickOutlined.tsx index 0ef38ba8e..47d5ac93c 100644 --- a/src/IconJoystickOutlined.tsx +++ b/src/IconJoystickOutlined.tsx @@ -8,4 +8,4 @@ const IconJoystickOutlined: React.FC = ({ ...props }) => ( ) -export { IconJoystickOutlined as default } +export default IconJoystickOutlined diff --git a/src/IconJoystickOutlinedFilled.tsx b/src/IconJoystickOutlinedFilled.tsx index 6a71a5840..ce33b5031 100644 --- a/src/IconJoystickOutlinedFilled.tsx +++ b/src/IconJoystickOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconJoystickOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconJoystickOutlinedFilled as default } +export default IconJoystickOutlinedFilled diff --git a/src/IconJoystickRounded.tsx b/src/IconJoystickRounded.tsx index 941fae80f..bf78207fe 100644 --- a/src/IconJoystickRounded.tsx +++ b/src/IconJoystickRounded.tsx @@ -8,4 +8,4 @@ const IconJoystickRounded: React.FC = ({ ...props }) => ( ) -export { IconJoystickRounded as default } +export default IconJoystickRounded diff --git a/src/IconJoystickRoundedFilled.tsx b/src/IconJoystickRoundedFilled.tsx index cefb4c6c1..0072f1dfe 100644 --- a/src/IconJoystickRoundedFilled.tsx +++ b/src/IconJoystickRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconJoystickRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconJoystickRoundedFilled as default } +export default IconJoystickRoundedFilled diff --git a/src/IconJoystickSharp.tsx b/src/IconJoystickSharp.tsx index 4ac44f131..e0fb1773d 100644 --- a/src/IconJoystickSharp.tsx +++ b/src/IconJoystickSharp.tsx @@ -8,4 +8,4 @@ const IconJoystickSharp: React.FC = ({ ...props }) => ( ) -export { IconJoystickSharp as default } +export default IconJoystickSharp diff --git a/src/IconJoystickSharpFilled.tsx b/src/IconJoystickSharpFilled.tsx index ed0f5a9a8..109b33046 100644 --- a/src/IconJoystickSharpFilled.tsx +++ b/src/IconJoystickSharpFilled.tsx @@ -8,4 +8,4 @@ const IconJoystickSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconJoystickSharpFilled as default } +export default IconJoystickSharpFilled diff --git a/src/IconJumpToElementOutlined.tsx b/src/IconJumpToElementOutlined.tsx index 3db578424..267d68b3e 100644 --- a/src/IconJumpToElementOutlined.tsx +++ b/src/IconJumpToElementOutlined.tsx @@ -8,4 +8,4 @@ const IconJumpToElementOutlined: React.FC = ({ ...props }) => ( ) -export { IconJumpToElementOutlined as default } +export default IconJumpToElementOutlined diff --git a/src/IconJumpToElementOutlinedFilled.tsx b/src/IconJumpToElementOutlinedFilled.tsx index 531b0aace..1344c4de4 100644 --- a/src/IconJumpToElementOutlinedFilled.tsx +++ b/src/IconJumpToElementOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconJumpToElementOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconJumpToElementOutlinedFilled as default } +export default IconJumpToElementOutlinedFilled diff --git a/src/IconJumpToElementRounded.tsx b/src/IconJumpToElementRounded.tsx index 44b528239..1fc8f7970 100644 --- a/src/IconJumpToElementRounded.tsx +++ b/src/IconJumpToElementRounded.tsx @@ -8,4 +8,4 @@ const IconJumpToElementRounded: React.FC = ({ ...props }) => ( ) -export { IconJumpToElementRounded as default } +export default IconJumpToElementRounded diff --git a/src/IconJumpToElementRoundedFilled.tsx b/src/IconJumpToElementRoundedFilled.tsx index 76a5723cd..5d7f62252 100644 --- a/src/IconJumpToElementRoundedFilled.tsx +++ b/src/IconJumpToElementRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconJumpToElementRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconJumpToElementRoundedFilled as default } +export default IconJumpToElementRoundedFilled diff --git a/src/IconJumpToElementSharp.tsx b/src/IconJumpToElementSharp.tsx index 4cbd3143b..b17542af2 100644 --- a/src/IconJumpToElementSharp.tsx +++ b/src/IconJumpToElementSharp.tsx @@ -8,4 +8,4 @@ const IconJumpToElementSharp: React.FC = ({ ...props }) => ( ) -export { IconJumpToElementSharp as default } +export default IconJumpToElementSharp diff --git a/src/IconJumpToElementSharpFilled.tsx b/src/IconJumpToElementSharpFilled.tsx index 8b4557090..7398445ec 100644 --- a/src/IconJumpToElementSharpFilled.tsx +++ b/src/IconJumpToElementSharpFilled.tsx @@ -8,4 +8,4 @@ const IconJumpToElementSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconJumpToElementSharpFilled as default } +export default IconJumpToElementSharpFilled diff --git a/src/IconKayakingOutlined.tsx b/src/IconKayakingOutlined.tsx index 65726a1c6..a4ef8bf44 100644 --- a/src/IconKayakingOutlined.tsx +++ b/src/IconKayakingOutlined.tsx @@ -8,4 +8,4 @@ const IconKayakingOutlined: React.FC = ({ ...props }) => ( ) -export { IconKayakingOutlined as default } +export default IconKayakingOutlined diff --git a/src/IconKayakingOutlinedFilled.tsx b/src/IconKayakingOutlinedFilled.tsx index b4dbbfd39..255b3db9d 100644 --- a/src/IconKayakingOutlinedFilled.tsx +++ b/src/IconKayakingOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconKayakingOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconKayakingOutlinedFilled as default } +export default IconKayakingOutlinedFilled diff --git a/src/IconKayakingRounded.tsx b/src/IconKayakingRounded.tsx index 48d018b39..664378084 100644 --- a/src/IconKayakingRounded.tsx +++ b/src/IconKayakingRounded.tsx @@ -8,4 +8,4 @@ const IconKayakingRounded: React.FC = ({ ...props }) => ( ) -export { IconKayakingRounded as default } +export default IconKayakingRounded diff --git a/src/IconKayakingRoundedFilled.tsx b/src/IconKayakingRoundedFilled.tsx index 730705fe7..06ba6ae31 100644 --- a/src/IconKayakingRoundedFilled.tsx +++ b/src/IconKayakingRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconKayakingRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconKayakingRoundedFilled as default } +export default IconKayakingRoundedFilled diff --git a/src/IconKayakingSharp.tsx b/src/IconKayakingSharp.tsx index 9a25a38ee..7fa869932 100644 --- a/src/IconKayakingSharp.tsx +++ b/src/IconKayakingSharp.tsx @@ -8,4 +8,4 @@ const IconKayakingSharp: React.FC = ({ ...props }) => ( ) -export { IconKayakingSharp as default } +export default IconKayakingSharp diff --git a/src/IconKayakingSharpFilled.tsx b/src/IconKayakingSharpFilled.tsx index 849f3da95..d27a21e62 100644 --- a/src/IconKayakingSharpFilled.tsx +++ b/src/IconKayakingSharpFilled.tsx @@ -8,4 +8,4 @@ const IconKayakingSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconKayakingSharpFilled as default } +export default IconKayakingSharpFilled diff --git a/src/IconKebabDiningOutlined.tsx b/src/IconKebabDiningOutlined.tsx index a36371e6b..dc04c0e83 100644 --- a/src/IconKebabDiningOutlined.tsx +++ b/src/IconKebabDiningOutlined.tsx @@ -8,4 +8,4 @@ const IconKebabDiningOutlined: React.FC = ({ ...props }) => ( ) -export { IconKebabDiningOutlined as default } +export default IconKebabDiningOutlined diff --git a/src/IconKebabDiningOutlinedFilled.tsx b/src/IconKebabDiningOutlinedFilled.tsx index 25946d0f6..ef48db265 100644 --- a/src/IconKebabDiningOutlinedFilled.tsx +++ b/src/IconKebabDiningOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconKebabDiningOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconKebabDiningOutlinedFilled as default } +export default IconKebabDiningOutlinedFilled diff --git a/src/IconKebabDiningRounded.tsx b/src/IconKebabDiningRounded.tsx index 43ae572b9..a4f0b87e5 100644 --- a/src/IconKebabDiningRounded.tsx +++ b/src/IconKebabDiningRounded.tsx @@ -8,4 +8,4 @@ const IconKebabDiningRounded: React.FC = ({ ...props }) => ( ) -export { IconKebabDiningRounded as default } +export default IconKebabDiningRounded diff --git a/src/IconKebabDiningRoundedFilled.tsx b/src/IconKebabDiningRoundedFilled.tsx index c2528d6a6..5226c23bf 100644 --- a/src/IconKebabDiningRoundedFilled.tsx +++ b/src/IconKebabDiningRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconKebabDiningRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconKebabDiningRoundedFilled as default } +export default IconKebabDiningRoundedFilled diff --git a/src/IconKebabDiningSharp.tsx b/src/IconKebabDiningSharp.tsx index c65127a1c..aef1891c4 100644 --- a/src/IconKebabDiningSharp.tsx +++ b/src/IconKebabDiningSharp.tsx @@ -8,4 +8,4 @@ const IconKebabDiningSharp: React.FC = ({ ...props }) => ( ) -export { IconKebabDiningSharp as default } +export default IconKebabDiningSharp diff --git a/src/IconKebabDiningSharpFilled.tsx b/src/IconKebabDiningSharpFilled.tsx index 6dbec0587..6c32210c6 100644 --- a/src/IconKebabDiningSharpFilled.tsx +++ b/src/IconKebabDiningSharpFilled.tsx @@ -8,4 +8,4 @@ const IconKebabDiningSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconKebabDiningSharpFilled as default } +export default IconKebabDiningSharpFilled diff --git a/src/IconKeepOffOutlined.tsx b/src/IconKeepOffOutlined.tsx index f6f4ec732..acf984982 100644 --- a/src/IconKeepOffOutlined.tsx +++ b/src/IconKeepOffOutlined.tsx @@ -8,4 +8,4 @@ const IconKeepOffOutlined: React.FC = ({ ...props }) => ( ) -export { IconKeepOffOutlined as default } +export default IconKeepOffOutlined diff --git a/src/IconKeepOffOutlinedFilled.tsx b/src/IconKeepOffOutlinedFilled.tsx index 9ad6738b7..16f0ffa52 100644 --- a/src/IconKeepOffOutlinedFilled.tsx +++ b/src/IconKeepOffOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconKeepOffOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconKeepOffOutlinedFilled as default } +export default IconKeepOffOutlinedFilled diff --git a/src/IconKeepOffRounded.tsx b/src/IconKeepOffRounded.tsx index 1f48827e7..092ea69ae 100644 --- a/src/IconKeepOffRounded.tsx +++ b/src/IconKeepOffRounded.tsx @@ -8,4 +8,4 @@ const IconKeepOffRounded: React.FC = ({ ...props }) => ( ) -export { IconKeepOffRounded as default } +export default IconKeepOffRounded diff --git a/src/IconKeepOffRoundedFilled.tsx b/src/IconKeepOffRoundedFilled.tsx index 020801833..aeae9d6ca 100644 --- a/src/IconKeepOffRoundedFilled.tsx +++ b/src/IconKeepOffRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconKeepOffRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconKeepOffRoundedFilled as default } +export default IconKeepOffRoundedFilled diff --git a/src/IconKeepOffSharp.tsx b/src/IconKeepOffSharp.tsx index a6a0a77e7..494c5dd49 100644 --- a/src/IconKeepOffSharp.tsx +++ b/src/IconKeepOffSharp.tsx @@ -8,4 +8,4 @@ const IconKeepOffSharp: React.FC = ({ ...props }) => ( ) -export { IconKeepOffSharp as default } +export default IconKeepOffSharp diff --git a/src/IconKeepOffSharpFilled.tsx b/src/IconKeepOffSharpFilled.tsx index 3f962d473..36e8ddd5a 100644 --- a/src/IconKeepOffSharpFilled.tsx +++ b/src/IconKeepOffSharpFilled.tsx @@ -8,4 +8,4 @@ const IconKeepOffSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconKeepOffSharpFilled as default } +export default IconKeepOffSharpFilled diff --git a/src/IconKeepOutlined.tsx b/src/IconKeepOutlined.tsx index 6ec1c7cd6..925056601 100644 --- a/src/IconKeepOutlined.tsx +++ b/src/IconKeepOutlined.tsx @@ -8,4 +8,4 @@ const IconKeepOutlined: React.FC = ({ ...props }) => ( ) -export { IconKeepOutlined as default } +export default IconKeepOutlined diff --git a/src/IconKeepOutlinedFilled.tsx b/src/IconKeepOutlinedFilled.tsx index 568deba1d..84a4853c1 100644 --- a/src/IconKeepOutlinedFilled.tsx +++ b/src/IconKeepOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconKeepOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconKeepOutlinedFilled as default } +export default IconKeepOutlinedFilled diff --git a/src/IconKeepPublicOutlined.tsx b/src/IconKeepPublicOutlined.tsx index c5ea4c2ec..7e91db3f7 100644 --- a/src/IconKeepPublicOutlined.tsx +++ b/src/IconKeepPublicOutlined.tsx @@ -8,4 +8,4 @@ const IconKeepPublicOutlined: React.FC = ({ ...props }) => ( ) -export { IconKeepPublicOutlined as default } +export default IconKeepPublicOutlined diff --git a/src/IconKeepPublicOutlinedFilled.tsx b/src/IconKeepPublicOutlinedFilled.tsx index 911f3ee20..712273061 100644 --- a/src/IconKeepPublicOutlinedFilled.tsx +++ b/src/IconKeepPublicOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconKeepPublicOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconKeepPublicOutlinedFilled as default } +export default IconKeepPublicOutlinedFilled diff --git a/src/IconKeepPublicRounded.tsx b/src/IconKeepPublicRounded.tsx index 6f73ec05d..ca96a8f4d 100644 --- a/src/IconKeepPublicRounded.tsx +++ b/src/IconKeepPublicRounded.tsx @@ -8,4 +8,4 @@ const IconKeepPublicRounded: React.FC = ({ ...props }) => ( ) -export { IconKeepPublicRounded as default } +export default IconKeepPublicRounded diff --git a/src/IconKeepPublicRoundedFilled.tsx b/src/IconKeepPublicRoundedFilled.tsx index e2dc84911..b08696f36 100644 --- a/src/IconKeepPublicRoundedFilled.tsx +++ b/src/IconKeepPublicRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconKeepPublicRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconKeepPublicRoundedFilled as default } +export default IconKeepPublicRoundedFilled diff --git a/src/IconKeepPublicSharp.tsx b/src/IconKeepPublicSharp.tsx index d943e83b7..3d4ffce48 100644 --- a/src/IconKeepPublicSharp.tsx +++ b/src/IconKeepPublicSharp.tsx @@ -8,4 +8,4 @@ const IconKeepPublicSharp: React.FC = ({ ...props }) => ( ) -export { IconKeepPublicSharp as default } +export default IconKeepPublicSharp diff --git a/src/IconKeepPublicSharpFilled.tsx b/src/IconKeepPublicSharpFilled.tsx index d65a6c4e4..12d754730 100644 --- a/src/IconKeepPublicSharpFilled.tsx +++ b/src/IconKeepPublicSharpFilled.tsx @@ -8,4 +8,4 @@ const IconKeepPublicSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconKeepPublicSharpFilled as default } +export default IconKeepPublicSharpFilled diff --git a/src/IconKeepRounded.tsx b/src/IconKeepRounded.tsx index 0f3e84657..1a56e35ad 100644 --- a/src/IconKeepRounded.tsx +++ b/src/IconKeepRounded.tsx @@ -8,4 +8,4 @@ const IconKeepRounded: React.FC = ({ ...props }) => ( ) -export { IconKeepRounded as default } +export default IconKeepRounded diff --git a/src/IconKeepRoundedFilled.tsx b/src/IconKeepRoundedFilled.tsx index 051e6d767..0511eba71 100644 --- a/src/IconKeepRoundedFilled.tsx +++ b/src/IconKeepRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconKeepRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconKeepRoundedFilled as default } +export default IconKeepRoundedFilled diff --git a/src/IconKeepSharp.tsx b/src/IconKeepSharp.tsx index 65a441ab5..48d3eafa4 100644 --- a/src/IconKeepSharp.tsx +++ b/src/IconKeepSharp.tsx @@ -8,4 +8,4 @@ const IconKeepSharp: React.FC = ({ ...props }) => ( ) -export { IconKeepSharp as default } +export default IconKeepSharp diff --git a/src/IconKeepSharpFilled.tsx b/src/IconKeepSharpFilled.tsx index 5d6a9c9cb..484ae9c66 100644 --- a/src/IconKeepSharpFilled.tsx +++ b/src/IconKeepSharpFilled.tsx @@ -8,4 +8,4 @@ const IconKeepSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconKeepSharpFilled as default } +export default IconKeepSharpFilled diff --git a/src/IconKettleOutlined.tsx b/src/IconKettleOutlined.tsx index d57c735b8..a6e179e1c 100644 --- a/src/IconKettleOutlined.tsx +++ b/src/IconKettleOutlined.tsx @@ -8,4 +8,4 @@ const IconKettleOutlined: React.FC = ({ ...props }) => ( ) -export { IconKettleOutlined as default } +export default IconKettleOutlined diff --git a/src/IconKettleOutlinedFilled.tsx b/src/IconKettleOutlinedFilled.tsx index ed88bdead..7eebed6e6 100644 --- a/src/IconKettleOutlinedFilled.tsx +++ b/src/IconKettleOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconKettleOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconKettleOutlinedFilled as default } +export default IconKettleOutlinedFilled diff --git a/src/IconKettleRounded.tsx b/src/IconKettleRounded.tsx index 65a2f959c..fc1cf9d1d 100644 --- a/src/IconKettleRounded.tsx +++ b/src/IconKettleRounded.tsx @@ -8,4 +8,4 @@ const IconKettleRounded: React.FC = ({ ...props }) => ( ) -export { IconKettleRounded as default } +export default IconKettleRounded diff --git a/src/IconKettleRoundedFilled.tsx b/src/IconKettleRoundedFilled.tsx index 38d7e6dcd..cde8eb3e2 100644 --- a/src/IconKettleRoundedFilled.tsx +++ b/src/IconKettleRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconKettleRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconKettleRoundedFilled as default } +export default IconKettleRoundedFilled diff --git a/src/IconKettleSharp.tsx b/src/IconKettleSharp.tsx index 637227b50..66cb17a30 100644 --- a/src/IconKettleSharp.tsx +++ b/src/IconKettleSharp.tsx @@ -8,4 +8,4 @@ const IconKettleSharp: React.FC = ({ ...props }) => ( ) -export { IconKettleSharp as default } +export default IconKettleSharp diff --git a/src/IconKettleSharpFilled.tsx b/src/IconKettleSharpFilled.tsx index 9f8d771e7..5ae823eb6 100644 --- a/src/IconKettleSharpFilled.tsx +++ b/src/IconKettleSharpFilled.tsx @@ -8,4 +8,4 @@ const IconKettleSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconKettleSharpFilled as default } +export default IconKettleSharpFilled diff --git a/src/IconKeyOffOutlined.tsx b/src/IconKeyOffOutlined.tsx index 05d8b1521..3cbbef8f1 100644 --- a/src/IconKeyOffOutlined.tsx +++ b/src/IconKeyOffOutlined.tsx @@ -8,4 +8,4 @@ const IconKeyOffOutlined: React.FC = ({ ...props }) => ( ) -export { IconKeyOffOutlined as default } +export default IconKeyOffOutlined diff --git a/src/IconKeyOffOutlinedFilled.tsx b/src/IconKeyOffOutlinedFilled.tsx index b2bcc46c4..a24291f99 100644 --- a/src/IconKeyOffOutlinedFilled.tsx +++ b/src/IconKeyOffOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconKeyOffOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconKeyOffOutlinedFilled as default } +export default IconKeyOffOutlinedFilled diff --git a/src/IconKeyOffRounded.tsx b/src/IconKeyOffRounded.tsx index 7f312072b..22a022b56 100644 --- a/src/IconKeyOffRounded.tsx +++ b/src/IconKeyOffRounded.tsx @@ -8,4 +8,4 @@ const IconKeyOffRounded: React.FC = ({ ...props }) => ( ) -export { IconKeyOffRounded as default } +export default IconKeyOffRounded diff --git a/src/IconKeyOffRoundedFilled.tsx b/src/IconKeyOffRoundedFilled.tsx index d34494df1..54c2976b3 100644 --- a/src/IconKeyOffRoundedFilled.tsx +++ b/src/IconKeyOffRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconKeyOffRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconKeyOffRoundedFilled as default } +export default IconKeyOffRoundedFilled diff --git a/src/IconKeyOffSharp.tsx b/src/IconKeyOffSharp.tsx index dfa439417..c0096915b 100644 --- a/src/IconKeyOffSharp.tsx +++ b/src/IconKeyOffSharp.tsx @@ -8,4 +8,4 @@ const IconKeyOffSharp: React.FC = ({ ...props }) => ( ) -export { IconKeyOffSharp as default } +export default IconKeyOffSharp diff --git a/src/IconKeyOffSharpFilled.tsx b/src/IconKeyOffSharpFilled.tsx index 4246290f8..c4392f7a5 100644 --- a/src/IconKeyOffSharpFilled.tsx +++ b/src/IconKeyOffSharpFilled.tsx @@ -8,4 +8,4 @@ const IconKeyOffSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconKeyOffSharpFilled as default } +export default IconKeyOffSharpFilled diff --git a/src/IconKeyOutlined.tsx b/src/IconKeyOutlined.tsx index 12b123413..52bfcdcea 100644 --- a/src/IconKeyOutlined.tsx +++ b/src/IconKeyOutlined.tsx @@ -8,4 +8,4 @@ const IconKeyOutlined: React.FC = ({ ...props }) => ( ) -export { IconKeyOutlined as default } +export default IconKeyOutlined diff --git a/src/IconKeyOutlinedFilled.tsx b/src/IconKeyOutlinedFilled.tsx index 2e974348a..56a7ac2b8 100644 --- a/src/IconKeyOutlinedFilled.tsx +++ b/src/IconKeyOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconKeyOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconKeyOutlinedFilled as default } +export default IconKeyOutlinedFilled diff --git a/src/IconKeyRounded.tsx b/src/IconKeyRounded.tsx index 0dbf1fce5..feb3b4a0f 100644 --- a/src/IconKeyRounded.tsx +++ b/src/IconKeyRounded.tsx @@ -8,4 +8,4 @@ const IconKeyRounded: React.FC = ({ ...props }) => ( ) -export { IconKeyRounded as default } +export default IconKeyRounded diff --git a/src/IconKeyRoundedFilled.tsx b/src/IconKeyRoundedFilled.tsx index 2924cf1bf..842f6597e 100644 --- a/src/IconKeyRoundedFilled.tsx +++ b/src/IconKeyRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconKeyRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconKeyRoundedFilled as default } +export default IconKeyRoundedFilled diff --git a/src/IconKeySharp.tsx b/src/IconKeySharp.tsx index 48630dd2e..f8ae6054b 100644 --- a/src/IconKeySharp.tsx +++ b/src/IconKeySharp.tsx @@ -8,4 +8,4 @@ const IconKeySharp: React.FC = ({ ...props }) => ( ) -export { IconKeySharp as default } +export default IconKeySharp diff --git a/src/IconKeySharpFilled.tsx b/src/IconKeySharpFilled.tsx index 6840cc0c5..930f77d55 100644 --- a/src/IconKeySharpFilled.tsx +++ b/src/IconKeySharpFilled.tsx @@ -8,4 +8,4 @@ const IconKeySharpFilled: React.FC = ({ ...props }) => ( ) -export { IconKeySharpFilled as default } +export default IconKeySharpFilled diff --git a/src/IconKeyVerticalOutlined.tsx b/src/IconKeyVerticalOutlined.tsx index 4b3d599e0..58131854d 100644 --- a/src/IconKeyVerticalOutlined.tsx +++ b/src/IconKeyVerticalOutlined.tsx @@ -8,4 +8,4 @@ const IconKeyVerticalOutlined: React.FC = ({ ...props }) => ( ) -export { IconKeyVerticalOutlined as default } +export default IconKeyVerticalOutlined diff --git a/src/IconKeyVerticalOutlinedFilled.tsx b/src/IconKeyVerticalOutlinedFilled.tsx index 1bc5adf5e..9ffcc979b 100644 --- a/src/IconKeyVerticalOutlinedFilled.tsx +++ b/src/IconKeyVerticalOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconKeyVerticalOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconKeyVerticalOutlinedFilled as default } +export default IconKeyVerticalOutlinedFilled diff --git a/src/IconKeyVerticalRounded.tsx b/src/IconKeyVerticalRounded.tsx index fbc18f2a3..a03aa880a 100644 --- a/src/IconKeyVerticalRounded.tsx +++ b/src/IconKeyVerticalRounded.tsx @@ -8,4 +8,4 @@ const IconKeyVerticalRounded: React.FC = ({ ...props }) => ( ) -export { IconKeyVerticalRounded as default } +export default IconKeyVerticalRounded diff --git a/src/IconKeyVerticalRoundedFilled.tsx b/src/IconKeyVerticalRoundedFilled.tsx index a2a7f7c60..90a0f4997 100644 --- a/src/IconKeyVerticalRoundedFilled.tsx +++ b/src/IconKeyVerticalRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconKeyVerticalRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconKeyVerticalRoundedFilled as default } +export default IconKeyVerticalRoundedFilled diff --git a/src/IconKeyVerticalSharp.tsx b/src/IconKeyVerticalSharp.tsx index d1470c80b..dcd286646 100644 --- a/src/IconKeyVerticalSharp.tsx +++ b/src/IconKeyVerticalSharp.tsx @@ -8,4 +8,4 @@ const IconKeyVerticalSharp: React.FC = ({ ...props }) => ( ) -export { IconKeyVerticalSharp as default } +export default IconKeyVerticalSharp diff --git a/src/IconKeyVerticalSharpFilled.tsx b/src/IconKeyVerticalSharpFilled.tsx index 522d6fbf1..d33b6a54c 100644 --- a/src/IconKeyVerticalSharpFilled.tsx +++ b/src/IconKeyVerticalSharpFilled.tsx @@ -8,4 +8,4 @@ const IconKeyVerticalSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconKeyVerticalSharpFilled as default } +export default IconKeyVerticalSharpFilled diff --git a/src/IconKeyVisualizerOutlined.tsx b/src/IconKeyVisualizerOutlined.tsx index be1daf2c4..dc7d70897 100644 --- a/src/IconKeyVisualizerOutlined.tsx +++ b/src/IconKeyVisualizerOutlined.tsx @@ -8,4 +8,4 @@ const IconKeyVisualizerOutlined: React.FC = ({ ...props }) => ( ) -export { IconKeyVisualizerOutlined as default } +export default IconKeyVisualizerOutlined diff --git a/src/IconKeyVisualizerOutlinedFilled.tsx b/src/IconKeyVisualizerOutlinedFilled.tsx index 170b97c27..284982d7c 100644 --- a/src/IconKeyVisualizerOutlinedFilled.tsx +++ b/src/IconKeyVisualizerOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconKeyVisualizerOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconKeyVisualizerOutlinedFilled as default } +export default IconKeyVisualizerOutlinedFilled diff --git a/src/IconKeyVisualizerRounded.tsx b/src/IconKeyVisualizerRounded.tsx index 0ea43c2bf..c79389aea 100644 --- a/src/IconKeyVisualizerRounded.tsx +++ b/src/IconKeyVisualizerRounded.tsx @@ -8,4 +8,4 @@ const IconKeyVisualizerRounded: React.FC = ({ ...props }) => ( ) -export { IconKeyVisualizerRounded as default } +export default IconKeyVisualizerRounded diff --git a/src/IconKeyVisualizerRoundedFilled.tsx b/src/IconKeyVisualizerRoundedFilled.tsx index de34439ac..a225ce594 100644 --- a/src/IconKeyVisualizerRoundedFilled.tsx +++ b/src/IconKeyVisualizerRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconKeyVisualizerRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconKeyVisualizerRoundedFilled as default } +export default IconKeyVisualizerRoundedFilled diff --git a/src/IconKeyVisualizerSharp.tsx b/src/IconKeyVisualizerSharp.tsx index 601d8f966..0136b17d9 100644 --- a/src/IconKeyVisualizerSharp.tsx +++ b/src/IconKeyVisualizerSharp.tsx @@ -8,4 +8,4 @@ const IconKeyVisualizerSharp: React.FC = ({ ...props }) => ( ) -export { IconKeyVisualizerSharp as default } +export default IconKeyVisualizerSharp diff --git a/src/IconKeyVisualizerSharpFilled.tsx b/src/IconKeyVisualizerSharpFilled.tsx index 9396ad68f..17086476f 100644 --- a/src/IconKeyVisualizerSharpFilled.tsx +++ b/src/IconKeyVisualizerSharpFilled.tsx @@ -8,4 +8,4 @@ const IconKeyVisualizerSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconKeyVisualizerSharpFilled as default } +export default IconKeyVisualizerSharpFilled diff --git a/src/IconKeyboardAltOutlined.tsx b/src/IconKeyboardAltOutlined.tsx index 4f35e5883..702a0bf4b 100644 --- a/src/IconKeyboardAltOutlined.tsx +++ b/src/IconKeyboardAltOutlined.tsx @@ -8,4 +8,4 @@ const IconKeyboardAltOutlined: React.FC = ({ ...props }) => ( ) -export { IconKeyboardAltOutlined as default } +export default IconKeyboardAltOutlined diff --git a/src/IconKeyboardAltOutlinedFilled.tsx b/src/IconKeyboardAltOutlinedFilled.tsx index 79c6afc2c..b3385cffe 100644 --- a/src/IconKeyboardAltOutlinedFilled.tsx +++ b/src/IconKeyboardAltOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconKeyboardAltOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconKeyboardAltOutlinedFilled as default } +export default IconKeyboardAltOutlinedFilled diff --git a/src/IconKeyboardAltRounded.tsx b/src/IconKeyboardAltRounded.tsx index 2310f2855..722ecda3d 100644 --- a/src/IconKeyboardAltRounded.tsx +++ b/src/IconKeyboardAltRounded.tsx @@ -8,4 +8,4 @@ const IconKeyboardAltRounded: React.FC = ({ ...props }) => ( ) -export { IconKeyboardAltRounded as default } +export default IconKeyboardAltRounded diff --git a/src/IconKeyboardAltRoundedFilled.tsx b/src/IconKeyboardAltRoundedFilled.tsx index 956dc14d0..d80df00dc 100644 --- a/src/IconKeyboardAltRoundedFilled.tsx +++ b/src/IconKeyboardAltRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconKeyboardAltRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconKeyboardAltRoundedFilled as default } +export default IconKeyboardAltRoundedFilled diff --git a/src/IconKeyboardAltSharp.tsx b/src/IconKeyboardAltSharp.tsx index cae97c36c..f70608a11 100644 --- a/src/IconKeyboardAltSharp.tsx +++ b/src/IconKeyboardAltSharp.tsx @@ -8,4 +8,4 @@ const IconKeyboardAltSharp: React.FC = ({ ...props }) => ( ) -export { IconKeyboardAltSharp as default } +export default IconKeyboardAltSharp diff --git a/src/IconKeyboardAltSharpFilled.tsx b/src/IconKeyboardAltSharpFilled.tsx index eff2c71f9..8e02cc9ba 100644 --- a/src/IconKeyboardAltSharpFilled.tsx +++ b/src/IconKeyboardAltSharpFilled.tsx @@ -8,4 +8,4 @@ const IconKeyboardAltSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconKeyboardAltSharpFilled as default } +export default IconKeyboardAltSharpFilled diff --git a/src/IconKeyboardArrowDownOutlined.tsx b/src/IconKeyboardArrowDownOutlined.tsx index 85e7192f6..95c5cf2ca 100644 --- a/src/IconKeyboardArrowDownOutlined.tsx +++ b/src/IconKeyboardArrowDownOutlined.tsx @@ -8,4 +8,4 @@ const IconKeyboardArrowDownOutlined: React.FC = ({ ...props }) => ( ) -export { IconKeyboardArrowDownOutlined as default } +export default IconKeyboardArrowDownOutlined diff --git a/src/IconKeyboardArrowDownOutlinedFilled.tsx b/src/IconKeyboardArrowDownOutlinedFilled.tsx index 0e134a7bd..9798c9673 100644 --- a/src/IconKeyboardArrowDownOutlinedFilled.tsx +++ b/src/IconKeyboardArrowDownOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconKeyboardArrowDownOutlinedFilled: React.FC = ({ ) -export { IconKeyboardArrowDownOutlinedFilled as default } +export default IconKeyboardArrowDownOutlinedFilled diff --git a/src/IconKeyboardArrowDownRounded.tsx b/src/IconKeyboardArrowDownRounded.tsx index f822936fd..cff88cc74 100644 --- a/src/IconKeyboardArrowDownRounded.tsx +++ b/src/IconKeyboardArrowDownRounded.tsx @@ -8,4 +8,4 @@ const IconKeyboardArrowDownRounded: React.FC = ({ ...props }) => ( ) -export { IconKeyboardArrowDownRounded as default } +export default IconKeyboardArrowDownRounded diff --git a/src/IconKeyboardArrowDownRoundedFilled.tsx b/src/IconKeyboardArrowDownRoundedFilled.tsx index 4468093ab..97447735e 100644 --- a/src/IconKeyboardArrowDownRoundedFilled.tsx +++ b/src/IconKeyboardArrowDownRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconKeyboardArrowDownRoundedFilled: React.FC = ({ ) -export { IconKeyboardArrowDownRoundedFilled as default } +export default IconKeyboardArrowDownRoundedFilled diff --git a/src/IconKeyboardArrowDownSharp.tsx b/src/IconKeyboardArrowDownSharp.tsx index b514d12e1..674812cc4 100644 --- a/src/IconKeyboardArrowDownSharp.tsx +++ b/src/IconKeyboardArrowDownSharp.tsx @@ -8,4 +8,4 @@ const IconKeyboardArrowDownSharp: React.FC = ({ ...props }) => ( ) -export { IconKeyboardArrowDownSharp as default } +export default IconKeyboardArrowDownSharp diff --git a/src/IconKeyboardArrowDownSharpFilled.tsx b/src/IconKeyboardArrowDownSharpFilled.tsx index 7c4c9a7bd..31afc7720 100644 --- a/src/IconKeyboardArrowDownSharpFilled.tsx +++ b/src/IconKeyboardArrowDownSharpFilled.tsx @@ -10,4 +10,4 @@ const IconKeyboardArrowDownSharpFilled: React.FC = ({ ) -export { IconKeyboardArrowDownSharpFilled as default } +export default IconKeyboardArrowDownSharpFilled diff --git a/src/IconKeyboardArrowLeftOutlined.tsx b/src/IconKeyboardArrowLeftOutlined.tsx index 8a84ee898..a06b1763d 100644 --- a/src/IconKeyboardArrowLeftOutlined.tsx +++ b/src/IconKeyboardArrowLeftOutlined.tsx @@ -8,4 +8,4 @@ const IconKeyboardArrowLeftOutlined: React.FC = ({ ...props }) => ( ) -export { IconKeyboardArrowLeftOutlined as default } +export default IconKeyboardArrowLeftOutlined diff --git a/src/IconKeyboardArrowLeftOutlinedFilled.tsx b/src/IconKeyboardArrowLeftOutlinedFilled.tsx index 679d4f911..ad607992d 100644 --- a/src/IconKeyboardArrowLeftOutlinedFilled.tsx +++ b/src/IconKeyboardArrowLeftOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconKeyboardArrowLeftOutlinedFilled: React.FC = ({ ) -export { IconKeyboardArrowLeftOutlinedFilled as default } +export default IconKeyboardArrowLeftOutlinedFilled diff --git a/src/IconKeyboardArrowLeftRounded.tsx b/src/IconKeyboardArrowLeftRounded.tsx index cb5a6f7b2..c47d5b305 100644 --- a/src/IconKeyboardArrowLeftRounded.tsx +++ b/src/IconKeyboardArrowLeftRounded.tsx @@ -8,4 +8,4 @@ const IconKeyboardArrowLeftRounded: React.FC = ({ ...props }) => ( ) -export { IconKeyboardArrowLeftRounded as default } +export default IconKeyboardArrowLeftRounded diff --git a/src/IconKeyboardArrowLeftRoundedFilled.tsx b/src/IconKeyboardArrowLeftRoundedFilled.tsx index 5a9a4674c..19047a3d6 100644 --- a/src/IconKeyboardArrowLeftRoundedFilled.tsx +++ b/src/IconKeyboardArrowLeftRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconKeyboardArrowLeftRoundedFilled: React.FC = ({ ) -export { IconKeyboardArrowLeftRoundedFilled as default } +export default IconKeyboardArrowLeftRoundedFilled diff --git a/src/IconKeyboardArrowLeftSharp.tsx b/src/IconKeyboardArrowLeftSharp.tsx index 6ef078ac6..790c63536 100644 --- a/src/IconKeyboardArrowLeftSharp.tsx +++ b/src/IconKeyboardArrowLeftSharp.tsx @@ -8,4 +8,4 @@ const IconKeyboardArrowLeftSharp: React.FC = ({ ...props }) => ( ) -export { IconKeyboardArrowLeftSharp as default } +export default IconKeyboardArrowLeftSharp diff --git a/src/IconKeyboardArrowLeftSharpFilled.tsx b/src/IconKeyboardArrowLeftSharpFilled.tsx index 445a8230c..e7d57e949 100644 --- a/src/IconKeyboardArrowLeftSharpFilled.tsx +++ b/src/IconKeyboardArrowLeftSharpFilled.tsx @@ -10,4 +10,4 @@ const IconKeyboardArrowLeftSharpFilled: React.FC = ({ ) -export { IconKeyboardArrowLeftSharpFilled as default } +export default IconKeyboardArrowLeftSharpFilled diff --git a/src/IconKeyboardArrowRightOutlined.tsx b/src/IconKeyboardArrowRightOutlined.tsx index f4ca781a9..17ec155b5 100644 --- a/src/IconKeyboardArrowRightOutlined.tsx +++ b/src/IconKeyboardArrowRightOutlined.tsx @@ -8,4 +8,4 @@ const IconKeyboardArrowRightOutlined: React.FC = ({ ...props }) => ( ) -export { IconKeyboardArrowRightOutlined as default } +export default IconKeyboardArrowRightOutlined diff --git a/src/IconKeyboardArrowRightOutlinedFilled.tsx b/src/IconKeyboardArrowRightOutlinedFilled.tsx index 9af0a0663..8793e178b 100644 --- a/src/IconKeyboardArrowRightOutlinedFilled.tsx +++ b/src/IconKeyboardArrowRightOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconKeyboardArrowRightOutlinedFilled: React.FC = ({ ) -export { IconKeyboardArrowRightOutlinedFilled as default } +export default IconKeyboardArrowRightOutlinedFilled diff --git a/src/IconKeyboardArrowRightRounded.tsx b/src/IconKeyboardArrowRightRounded.tsx index 76484fc6d..8b4387387 100644 --- a/src/IconKeyboardArrowRightRounded.tsx +++ b/src/IconKeyboardArrowRightRounded.tsx @@ -8,4 +8,4 @@ const IconKeyboardArrowRightRounded: React.FC = ({ ...props }) => ( ) -export { IconKeyboardArrowRightRounded as default } +export default IconKeyboardArrowRightRounded diff --git a/src/IconKeyboardArrowRightRoundedFilled.tsx b/src/IconKeyboardArrowRightRoundedFilled.tsx index 1b0f47775..1d830165c 100644 --- a/src/IconKeyboardArrowRightRoundedFilled.tsx +++ b/src/IconKeyboardArrowRightRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconKeyboardArrowRightRoundedFilled: React.FC = ({ ) -export { IconKeyboardArrowRightRoundedFilled as default } +export default IconKeyboardArrowRightRoundedFilled diff --git a/src/IconKeyboardArrowRightSharp.tsx b/src/IconKeyboardArrowRightSharp.tsx index 53a2df6f7..c8754b6f4 100644 --- a/src/IconKeyboardArrowRightSharp.tsx +++ b/src/IconKeyboardArrowRightSharp.tsx @@ -8,4 +8,4 @@ const IconKeyboardArrowRightSharp: React.FC = ({ ...props }) => ( ) -export { IconKeyboardArrowRightSharp as default } +export default IconKeyboardArrowRightSharp diff --git a/src/IconKeyboardArrowRightSharpFilled.tsx b/src/IconKeyboardArrowRightSharpFilled.tsx index 888509d63..3b2d76fbf 100644 --- a/src/IconKeyboardArrowRightSharpFilled.tsx +++ b/src/IconKeyboardArrowRightSharpFilled.tsx @@ -10,4 +10,4 @@ const IconKeyboardArrowRightSharpFilled: React.FC = ({ ) -export { IconKeyboardArrowRightSharpFilled as default } +export default IconKeyboardArrowRightSharpFilled diff --git a/src/IconKeyboardArrowUpOutlined.tsx b/src/IconKeyboardArrowUpOutlined.tsx index dbb404afb..91c29a3f9 100644 --- a/src/IconKeyboardArrowUpOutlined.tsx +++ b/src/IconKeyboardArrowUpOutlined.tsx @@ -8,4 +8,4 @@ const IconKeyboardArrowUpOutlined: React.FC = ({ ...props }) => ( ) -export { IconKeyboardArrowUpOutlined as default } +export default IconKeyboardArrowUpOutlined diff --git a/src/IconKeyboardArrowUpOutlinedFilled.tsx b/src/IconKeyboardArrowUpOutlinedFilled.tsx index 48c20949b..a53f331f2 100644 --- a/src/IconKeyboardArrowUpOutlinedFilled.tsx +++ b/src/IconKeyboardArrowUpOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconKeyboardArrowUpOutlinedFilled: React.FC = ({ ) -export { IconKeyboardArrowUpOutlinedFilled as default } +export default IconKeyboardArrowUpOutlinedFilled diff --git a/src/IconKeyboardArrowUpRounded.tsx b/src/IconKeyboardArrowUpRounded.tsx index 7c0bdae58..a248578db 100644 --- a/src/IconKeyboardArrowUpRounded.tsx +++ b/src/IconKeyboardArrowUpRounded.tsx @@ -8,4 +8,4 @@ const IconKeyboardArrowUpRounded: React.FC = ({ ...props }) => ( ) -export { IconKeyboardArrowUpRounded as default } +export default IconKeyboardArrowUpRounded diff --git a/src/IconKeyboardArrowUpRoundedFilled.tsx b/src/IconKeyboardArrowUpRoundedFilled.tsx index 28aeb2ab5..d95e37a20 100644 --- a/src/IconKeyboardArrowUpRoundedFilled.tsx +++ b/src/IconKeyboardArrowUpRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconKeyboardArrowUpRoundedFilled: React.FC = ({ ) -export { IconKeyboardArrowUpRoundedFilled as default } +export default IconKeyboardArrowUpRoundedFilled diff --git a/src/IconKeyboardArrowUpSharp.tsx b/src/IconKeyboardArrowUpSharp.tsx index 62b1599d6..b02a2d4a8 100644 --- a/src/IconKeyboardArrowUpSharp.tsx +++ b/src/IconKeyboardArrowUpSharp.tsx @@ -8,4 +8,4 @@ const IconKeyboardArrowUpSharp: React.FC = ({ ...props }) => ( ) -export { IconKeyboardArrowUpSharp as default } +export default IconKeyboardArrowUpSharp diff --git a/src/IconKeyboardArrowUpSharpFilled.tsx b/src/IconKeyboardArrowUpSharpFilled.tsx index 447b0946b..542eeffa0 100644 --- a/src/IconKeyboardArrowUpSharpFilled.tsx +++ b/src/IconKeyboardArrowUpSharpFilled.tsx @@ -8,4 +8,4 @@ const IconKeyboardArrowUpSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconKeyboardArrowUpSharpFilled as default } +export default IconKeyboardArrowUpSharpFilled diff --git a/src/IconKeyboardBackspaceOutlined.tsx b/src/IconKeyboardBackspaceOutlined.tsx index fe05abf6c..f4457e66c 100644 --- a/src/IconKeyboardBackspaceOutlined.tsx +++ b/src/IconKeyboardBackspaceOutlined.tsx @@ -8,4 +8,4 @@ const IconKeyboardBackspaceOutlined: React.FC = ({ ...props }) => ( ) -export { IconKeyboardBackspaceOutlined as default } +export default IconKeyboardBackspaceOutlined diff --git a/src/IconKeyboardBackspaceOutlinedFilled.tsx b/src/IconKeyboardBackspaceOutlinedFilled.tsx index 4aaf737e5..a6910f126 100644 --- a/src/IconKeyboardBackspaceOutlinedFilled.tsx +++ b/src/IconKeyboardBackspaceOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconKeyboardBackspaceOutlinedFilled: React.FC = ({ ) -export { IconKeyboardBackspaceOutlinedFilled as default } +export default IconKeyboardBackspaceOutlinedFilled diff --git a/src/IconKeyboardBackspaceRounded.tsx b/src/IconKeyboardBackspaceRounded.tsx index 57b7cace8..6c85b9702 100644 --- a/src/IconKeyboardBackspaceRounded.tsx +++ b/src/IconKeyboardBackspaceRounded.tsx @@ -8,4 +8,4 @@ const IconKeyboardBackspaceRounded: React.FC = ({ ...props }) => ( ) -export { IconKeyboardBackspaceRounded as default } +export default IconKeyboardBackspaceRounded diff --git a/src/IconKeyboardBackspaceRoundedFilled.tsx b/src/IconKeyboardBackspaceRoundedFilled.tsx index d1a61aeb1..7cc093857 100644 --- a/src/IconKeyboardBackspaceRoundedFilled.tsx +++ b/src/IconKeyboardBackspaceRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconKeyboardBackspaceRoundedFilled: React.FC = ({ ) -export { IconKeyboardBackspaceRoundedFilled as default } +export default IconKeyboardBackspaceRoundedFilled diff --git a/src/IconKeyboardBackspaceSharp.tsx b/src/IconKeyboardBackspaceSharp.tsx index 1f9f9220d..47457d3c5 100644 --- a/src/IconKeyboardBackspaceSharp.tsx +++ b/src/IconKeyboardBackspaceSharp.tsx @@ -8,4 +8,4 @@ const IconKeyboardBackspaceSharp: React.FC = ({ ...props }) => ( ) -export { IconKeyboardBackspaceSharp as default } +export default IconKeyboardBackspaceSharp diff --git a/src/IconKeyboardBackspaceSharpFilled.tsx b/src/IconKeyboardBackspaceSharpFilled.tsx index e64af44ee..d9a79e73c 100644 --- a/src/IconKeyboardBackspaceSharpFilled.tsx +++ b/src/IconKeyboardBackspaceSharpFilled.tsx @@ -10,4 +10,4 @@ const IconKeyboardBackspaceSharpFilled: React.FC = ({ ) -export { IconKeyboardBackspaceSharpFilled as default } +export default IconKeyboardBackspaceSharpFilled diff --git a/src/IconKeyboardCapslockBadgeOutlined.tsx b/src/IconKeyboardCapslockBadgeOutlined.tsx index 1cc4f944e..822c111af 100644 --- a/src/IconKeyboardCapslockBadgeOutlined.tsx +++ b/src/IconKeyboardCapslockBadgeOutlined.tsx @@ -10,4 +10,4 @@ const IconKeyboardCapslockBadgeOutlined: React.FC = ({ ) -export { IconKeyboardCapslockBadgeOutlined as default } +export default IconKeyboardCapslockBadgeOutlined diff --git a/src/IconKeyboardCapslockBadgeOutlinedFilled.tsx b/src/IconKeyboardCapslockBadgeOutlinedFilled.tsx index 7bac3c604..d52df5b82 100644 --- a/src/IconKeyboardCapslockBadgeOutlinedFilled.tsx +++ b/src/IconKeyboardCapslockBadgeOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconKeyboardCapslockBadgeOutlinedFilled: React.FC = ({ ) -export { IconKeyboardCapslockBadgeOutlinedFilled as default } +export default IconKeyboardCapslockBadgeOutlinedFilled diff --git a/src/IconKeyboardCapslockBadgeRounded.tsx b/src/IconKeyboardCapslockBadgeRounded.tsx index 1fd949728..82540ae37 100644 --- a/src/IconKeyboardCapslockBadgeRounded.tsx +++ b/src/IconKeyboardCapslockBadgeRounded.tsx @@ -10,4 +10,4 @@ const IconKeyboardCapslockBadgeRounded: React.FC = ({ ) -export { IconKeyboardCapslockBadgeRounded as default } +export default IconKeyboardCapslockBadgeRounded diff --git a/src/IconKeyboardCapslockBadgeRoundedFilled.tsx b/src/IconKeyboardCapslockBadgeRoundedFilled.tsx index fd1264379..9a9092fd6 100644 --- a/src/IconKeyboardCapslockBadgeRoundedFilled.tsx +++ b/src/IconKeyboardCapslockBadgeRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconKeyboardCapslockBadgeRoundedFilled: React.FC = ({ ) -export { IconKeyboardCapslockBadgeRoundedFilled as default } +export default IconKeyboardCapslockBadgeRoundedFilled diff --git a/src/IconKeyboardCapslockBadgeSharp.tsx b/src/IconKeyboardCapslockBadgeSharp.tsx index c1acfa4c0..ec5d262ec 100644 --- a/src/IconKeyboardCapslockBadgeSharp.tsx +++ b/src/IconKeyboardCapslockBadgeSharp.tsx @@ -8,4 +8,4 @@ const IconKeyboardCapslockBadgeSharp: React.FC = ({ ...props }) => ( ) -export { IconKeyboardCapslockBadgeSharp as default } +export default IconKeyboardCapslockBadgeSharp diff --git a/src/IconKeyboardCapslockBadgeSharpFilled.tsx b/src/IconKeyboardCapslockBadgeSharpFilled.tsx index 52cc345a8..576393151 100644 --- a/src/IconKeyboardCapslockBadgeSharpFilled.tsx +++ b/src/IconKeyboardCapslockBadgeSharpFilled.tsx @@ -10,4 +10,4 @@ const IconKeyboardCapslockBadgeSharpFilled: React.FC = ({ ) -export { IconKeyboardCapslockBadgeSharpFilled as default } +export default IconKeyboardCapslockBadgeSharpFilled diff --git a/src/IconKeyboardCapslockOutlined.tsx b/src/IconKeyboardCapslockOutlined.tsx index a79d8564d..c8af5b2c5 100644 --- a/src/IconKeyboardCapslockOutlined.tsx +++ b/src/IconKeyboardCapslockOutlined.tsx @@ -8,4 +8,4 @@ const IconKeyboardCapslockOutlined: React.FC = ({ ...props }) => ( ) -export { IconKeyboardCapslockOutlined as default } +export default IconKeyboardCapslockOutlined diff --git a/src/IconKeyboardCapslockOutlinedFilled.tsx b/src/IconKeyboardCapslockOutlinedFilled.tsx index 90881b740..30ce97cd2 100644 --- a/src/IconKeyboardCapslockOutlinedFilled.tsx +++ b/src/IconKeyboardCapslockOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconKeyboardCapslockOutlinedFilled: React.FC = ({ ) -export { IconKeyboardCapslockOutlinedFilled as default } +export default IconKeyboardCapslockOutlinedFilled diff --git a/src/IconKeyboardCapslockRounded.tsx b/src/IconKeyboardCapslockRounded.tsx index 3f17157eb..df6e2be4b 100644 --- a/src/IconKeyboardCapslockRounded.tsx +++ b/src/IconKeyboardCapslockRounded.tsx @@ -8,4 +8,4 @@ const IconKeyboardCapslockRounded: React.FC = ({ ...props }) => ( ) -export { IconKeyboardCapslockRounded as default } +export default IconKeyboardCapslockRounded diff --git a/src/IconKeyboardCapslockRoundedFilled.tsx b/src/IconKeyboardCapslockRoundedFilled.tsx index fd0fe6695..f44fb86a2 100644 --- a/src/IconKeyboardCapslockRoundedFilled.tsx +++ b/src/IconKeyboardCapslockRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconKeyboardCapslockRoundedFilled: React.FC = ({ ) -export { IconKeyboardCapslockRoundedFilled as default } +export default IconKeyboardCapslockRoundedFilled diff --git a/src/IconKeyboardCapslockSharp.tsx b/src/IconKeyboardCapslockSharp.tsx index 20ab3f94c..e256b491f 100644 --- a/src/IconKeyboardCapslockSharp.tsx +++ b/src/IconKeyboardCapslockSharp.tsx @@ -8,4 +8,4 @@ const IconKeyboardCapslockSharp: React.FC = ({ ...props }) => ( ) -export { IconKeyboardCapslockSharp as default } +export default IconKeyboardCapslockSharp diff --git a/src/IconKeyboardCapslockSharpFilled.tsx b/src/IconKeyboardCapslockSharpFilled.tsx index 827dbd287..e6c551825 100644 --- a/src/IconKeyboardCapslockSharpFilled.tsx +++ b/src/IconKeyboardCapslockSharpFilled.tsx @@ -8,4 +8,4 @@ const IconKeyboardCapslockSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconKeyboardCapslockSharpFilled as default } +export default IconKeyboardCapslockSharpFilled diff --git a/src/IconKeyboardCommandKeyOutlined.tsx b/src/IconKeyboardCommandKeyOutlined.tsx index 15faac846..39b1adbae 100644 --- a/src/IconKeyboardCommandKeyOutlined.tsx +++ b/src/IconKeyboardCommandKeyOutlined.tsx @@ -8,4 +8,4 @@ const IconKeyboardCommandKeyOutlined: React.FC = ({ ...props }) => ( ) -export { IconKeyboardCommandKeyOutlined as default } +export default IconKeyboardCommandKeyOutlined diff --git a/src/IconKeyboardCommandKeyOutlinedFilled.tsx b/src/IconKeyboardCommandKeyOutlinedFilled.tsx index 26c8488d0..3482e7c6a 100644 --- a/src/IconKeyboardCommandKeyOutlinedFilled.tsx +++ b/src/IconKeyboardCommandKeyOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconKeyboardCommandKeyOutlinedFilled: React.FC = ({ ) -export { IconKeyboardCommandKeyOutlinedFilled as default } +export default IconKeyboardCommandKeyOutlinedFilled diff --git a/src/IconKeyboardCommandKeyRounded.tsx b/src/IconKeyboardCommandKeyRounded.tsx index 3e3154126..aef682227 100644 --- a/src/IconKeyboardCommandKeyRounded.tsx +++ b/src/IconKeyboardCommandKeyRounded.tsx @@ -8,4 +8,4 @@ const IconKeyboardCommandKeyRounded: React.FC = ({ ...props }) => ( ) -export { IconKeyboardCommandKeyRounded as default } +export default IconKeyboardCommandKeyRounded diff --git a/src/IconKeyboardCommandKeyRoundedFilled.tsx b/src/IconKeyboardCommandKeyRoundedFilled.tsx index ea1dd28b7..28f1189dd 100644 --- a/src/IconKeyboardCommandKeyRoundedFilled.tsx +++ b/src/IconKeyboardCommandKeyRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconKeyboardCommandKeyRoundedFilled: React.FC = ({ ) -export { IconKeyboardCommandKeyRoundedFilled as default } +export default IconKeyboardCommandKeyRoundedFilled diff --git a/src/IconKeyboardCommandKeySharp.tsx b/src/IconKeyboardCommandKeySharp.tsx index 0f2cb6193..3df37f1aa 100644 --- a/src/IconKeyboardCommandKeySharp.tsx +++ b/src/IconKeyboardCommandKeySharp.tsx @@ -8,4 +8,4 @@ const IconKeyboardCommandKeySharp: React.FC = ({ ...props }) => ( ) -export { IconKeyboardCommandKeySharp as default } +export default IconKeyboardCommandKeySharp diff --git a/src/IconKeyboardCommandKeySharpFilled.tsx b/src/IconKeyboardCommandKeySharpFilled.tsx index ab10320e3..67e412f11 100644 --- a/src/IconKeyboardCommandKeySharpFilled.tsx +++ b/src/IconKeyboardCommandKeySharpFilled.tsx @@ -10,4 +10,4 @@ const IconKeyboardCommandKeySharpFilled: React.FC = ({ ) -export { IconKeyboardCommandKeySharpFilled as default } +export default IconKeyboardCommandKeySharpFilled diff --git a/src/IconKeyboardControlKeyOutlined.tsx b/src/IconKeyboardControlKeyOutlined.tsx index 65bcfdced..17062eade 100644 --- a/src/IconKeyboardControlKeyOutlined.tsx +++ b/src/IconKeyboardControlKeyOutlined.tsx @@ -8,4 +8,4 @@ const IconKeyboardControlKeyOutlined: React.FC = ({ ...props }) => ( ) -export { IconKeyboardControlKeyOutlined as default } +export default IconKeyboardControlKeyOutlined diff --git a/src/IconKeyboardControlKeyOutlinedFilled.tsx b/src/IconKeyboardControlKeyOutlinedFilled.tsx index ac7ece6c6..074cd0467 100644 --- a/src/IconKeyboardControlKeyOutlinedFilled.tsx +++ b/src/IconKeyboardControlKeyOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconKeyboardControlKeyOutlinedFilled: React.FC = ({ ) -export { IconKeyboardControlKeyOutlinedFilled as default } +export default IconKeyboardControlKeyOutlinedFilled diff --git a/src/IconKeyboardControlKeyRounded.tsx b/src/IconKeyboardControlKeyRounded.tsx index 07a261fd8..dd0c454cd 100644 --- a/src/IconKeyboardControlKeyRounded.tsx +++ b/src/IconKeyboardControlKeyRounded.tsx @@ -8,4 +8,4 @@ const IconKeyboardControlKeyRounded: React.FC = ({ ...props }) => ( ) -export { IconKeyboardControlKeyRounded as default } +export default IconKeyboardControlKeyRounded diff --git a/src/IconKeyboardControlKeyRoundedFilled.tsx b/src/IconKeyboardControlKeyRoundedFilled.tsx index e4ded0a7b..685fc6482 100644 --- a/src/IconKeyboardControlKeyRoundedFilled.tsx +++ b/src/IconKeyboardControlKeyRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconKeyboardControlKeyRoundedFilled: React.FC = ({ ) -export { IconKeyboardControlKeyRoundedFilled as default } +export default IconKeyboardControlKeyRoundedFilled diff --git a/src/IconKeyboardControlKeySharp.tsx b/src/IconKeyboardControlKeySharp.tsx index bd341a09e..5baf0394e 100644 --- a/src/IconKeyboardControlKeySharp.tsx +++ b/src/IconKeyboardControlKeySharp.tsx @@ -8,4 +8,4 @@ const IconKeyboardControlKeySharp: React.FC = ({ ...props }) => ( ) -export { IconKeyboardControlKeySharp as default } +export default IconKeyboardControlKeySharp diff --git a/src/IconKeyboardControlKeySharpFilled.tsx b/src/IconKeyboardControlKeySharpFilled.tsx index 3746a5aaa..fc90fd1de 100644 --- a/src/IconKeyboardControlKeySharpFilled.tsx +++ b/src/IconKeyboardControlKeySharpFilled.tsx @@ -10,4 +10,4 @@ const IconKeyboardControlKeySharpFilled: React.FC = ({ ) -export { IconKeyboardControlKeySharpFilled as default } +export default IconKeyboardControlKeySharpFilled diff --git a/src/IconKeyboardDoubleArrowDownOutlined.tsx b/src/IconKeyboardDoubleArrowDownOutlined.tsx index 22fe97c0a..e9f2d4c3c 100644 --- a/src/IconKeyboardDoubleArrowDownOutlined.tsx +++ b/src/IconKeyboardDoubleArrowDownOutlined.tsx @@ -10,4 +10,4 @@ const IconKeyboardDoubleArrowDownOutlined: React.FC = ({ ) -export { IconKeyboardDoubleArrowDownOutlined as default } +export default IconKeyboardDoubleArrowDownOutlined diff --git a/src/IconKeyboardDoubleArrowDownOutlinedFilled.tsx b/src/IconKeyboardDoubleArrowDownOutlinedFilled.tsx index 424cfadaf..9525a7641 100644 --- a/src/IconKeyboardDoubleArrowDownOutlinedFilled.tsx +++ b/src/IconKeyboardDoubleArrowDownOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconKeyboardDoubleArrowDownOutlinedFilled: React.FC = ({ ) -export { IconKeyboardDoubleArrowDownOutlinedFilled as default } +export default IconKeyboardDoubleArrowDownOutlinedFilled diff --git a/src/IconKeyboardDoubleArrowDownRounded.tsx b/src/IconKeyboardDoubleArrowDownRounded.tsx index 01ada0f65..930ab8027 100644 --- a/src/IconKeyboardDoubleArrowDownRounded.tsx +++ b/src/IconKeyboardDoubleArrowDownRounded.tsx @@ -10,4 +10,4 @@ const IconKeyboardDoubleArrowDownRounded: React.FC = ({ ) -export { IconKeyboardDoubleArrowDownRounded as default } +export default IconKeyboardDoubleArrowDownRounded diff --git a/src/IconKeyboardDoubleArrowDownRoundedFilled.tsx b/src/IconKeyboardDoubleArrowDownRoundedFilled.tsx index 099035822..9222a89dc 100644 --- a/src/IconKeyboardDoubleArrowDownRoundedFilled.tsx +++ b/src/IconKeyboardDoubleArrowDownRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconKeyboardDoubleArrowDownRoundedFilled: React.FC = ({ ) -export { IconKeyboardDoubleArrowDownRoundedFilled as default } +export default IconKeyboardDoubleArrowDownRoundedFilled diff --git a/src/IconKeyboardDoubleArrowDownSharp.tsx b/src/IconKeyboardDoubleArrowDownSharp.tsx index 17b0b28aa..888f3a6db 100644 --- a/src/IconKeyboardDoubleArrowDownSharp.tsx +++ b/src/IconKeyboardDoubleArrowDownSharp.tsx @@ -10,4 +10,4 @@ const IconKeyboardDoubleArrowDownSharp: React.FC = ({ ) -export { IconKeyboardDoubleArrowDownSharp as default } +export default IconKeyboardDoubleArrowDownSharp diff --git a/src/IconKeyboardDoubleArrowDownSharpFilled.tsx b/src/IconKeyboardDoubleArrowDownSharpFilled.tsx index 6f403972f..56f229afb 100644 --- a/src/IconKeyboardDoubleArrowDownSharpFilled.tsx +++ b/src/IconKeyboardDoubleArrowDownSharpFilled.tsx @@ -10,4 +10,4 @@ const IconKeyboardDoubleArrowDownSharpFilled: React.FC = ({ ) -export { IconKeyboardDoubleArrowDownSharpFilled as default } +export default IconKeyboardDoubleArrowDownSharpFilled diff --git a/src/IconKeyboardDoubleArrowLeftOutlined.tsx b/src/IconKeyboardDoubleArrowLeftOutlined.tsx index 1db0dd591..3485c1d02 100644 --- a/src/IconKeyboardDoubleArrowLeftOutlined.tsx +++ b/src/IconKeyboardDoubleArrowLeftOutlined.tsx @@ -10,4 +10,4 @@ const IconKeyboardDoubleArrowLeftOutlined: React.FC = ({ ) -export { IconKeyboardDoubleArrowLeftOutlined as default } +export default IconKeyboardDoubleArrowLeftOutlined diff --git a/src/IconKeyboardDoubleArrowLeftOutlinedFilled.tsx b/src/IconKeyboardDoubleArrowLeftOutlinedFilled.tsx index 3a5361f90..262df4b90 100644 --- a/src/IconKeyboardDoubleArrowLeftOutlinedFilled.tsx +++ b/src/IconKeyboardDoubleArrowLeftOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconKeyboardDoubleArrowLeftOutlinedFilled: React.FC = ({ ) -export { IconKeyboardDoubleArrowLeftOutlinedFilled as default } +export default IconKeyboardDoubleArrowLeftOutlinedFilled diff --git a/src/IconKeyboardDoubleArrowLeftRounded.tsx b/src/IconKeyboardDoubleArrowLeftRounded.tsx index f4611d87e..f98f9ee18 100644 --- a/src/IconKeyboardDoubleArrowLeftRounded.tsx +++ b/src/IconKeyboardDoubleArrowLeftRounded.tsx @@ -10,4 +10,4 @@ const IconKeyboardDoubleArrowLeftRounded: React.FC = ({ ) -export { IconKeyboardDoubleArrowLeftRounded as default } +export default IconKeyboardDoubleArrowLeftRounded diff --git a/src/IconKeyboardDoubleArrowLeftRoundedFilled.tsx b/src/IconKeyboardDoubleArrowLeftRoundedFilled.tsx index 24d61bbe4..64738d950 100644 --- a/src/IconKeyboardDoubleArrowLeftRoundedFilled.tsx +++ b/src/IconKeyboardDoubleArrowLeftRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconKeyboardDoubleArrowLeftRoundedFilled: React.FC = ({ ) -export { IconKeyboardDoubleArrowLeftRoundedFilled as default } +export default IconKeyboardDoubleArrowLeftRoundedFilled diff --git a/src/IconKeyboardDoubleArrowLeftSharp.tsx b/src/IconKeyboardDoubleArrowLeftSharp.tsx index dc13de842..583d5294e 100644 --- a/src/IconKeyboardDoubleArrowLeftSharp.tsx +++ b/src/IconKeyboardDoubleArrowLeftSharp.tsx @@ -10,4 +10,4 @@ const IconKeyboardDoubleArrowLeftSharp: React.FC = ({ ) -export { IconKeyboardDoubleArrowLeftSharp as default } +export default IconKeyboardDoubleArrowLeftSharp diff --git a/src/IconKeyboardDoubleArrowLeftSharpFilled.tsx b/src/IconKeyboardDoubleArrowLeftSharpFilled.tsx index 093200bb8..80377004c 100644 --- a/src/IconKeyboardDoubleArrowLeftSharpFilled.tsx +++ b/src/IconKeyboardDoubleArrowLeftSharpFilled.tsx @@ -10,4 +10,4 @@ const IconKeyboardDoubleArrowLeftSharpFilled: React.FC = ({ ) -export { IconKeyboardDoubleArrowLeftSharpFilled as default } +export default IconKeyboardDoubleArrowLeftSharpFilled diff --git a/src/IconKeyboardDoubleArrowRightOutlined.tsx b/src/IconKeyboardDoubleArrowRightOutlined.tsx index a21102d93..d7facaa59 100644 --- a/src/IconKeyboardDoubleArrowRightOutlined.tsx +++ b/src/IconKeyboardDoubleArrowRightOutlined.tsx @@ -10,4 +10,4 @@ const IconKeyboardDoubleArrowRightOutlined: React.FC = ({ ) -export { IconKeyboardDoubleArrowRightOutlined as default } +export default IconKeyboardDoubleArrowRightOutlined diff --git a/src/IconKeyboardDoubleArrowRightOutlinedFilled.tsx b/src/IconKeyboardDoubleArrowRightOutlinedFilled.tsx index 05910844e..741bca31e 100644 --- a/src/IconKeyboardDoubleArrowRightOutlinedFilled.tsx +++ b/src/IconKeyboardDoubleArrowRightOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconKeyboardDoubleArrowRightOutlinedFilled: React.FC = ({ ) -export { IconKeyboardDoubleArrowRightOutlinedFilled as default } +export default IconKeyboardDoubleArrowRightOutlinedFilled diff --git a/src/IconKeyboardDoubleArrowRightRounded.tsx b/src/IconKeyboardDoubleArrowRightRounded.tsx index e98740875..6f1f96d5b 100644 --- a/src/IconKeyboardDoubleArrowRightRounded.tsx +++ b/src/IconKeyboardDoubleArrowRightRounded.tsx @@ -10,4 +10,4 @@ const IconKeyboardDoubleArrowRightRounded: React.FC = ({ ) -export { IconKeyboardDoubleArrowRightRounded as default } +export default IconKeyboardDoubleArrowRightRounded diff --git a/src/IconKeyboardDoubleArrowRightRoundedFilled.tsx b/src/IconKeyboardDoubleArrowRightRoundedFilled.tsx index c6a239bcf..010647358 100644 --- a/src/IconKeyboardDoubleArrowRightRoundedFilled.tsx +++ b/src/IconKeyboardDoubleArrowRightRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconKeyboardDoubleArrowRightRoundedFilled: React.FC = ({ ) -export { IconKeyboardDoubleArrowRightRoundedFilled as default } +export default IconKeyboardDoubleArrowRightRoundedFilled diff --git a/src/IconKeyboardDoubleArrowRightSharp.tsx b/src/IconKeyboardDoubleArrowRightSharp.tsx index 9e3b4c0b8..71dfa4b4a 100644 --- a/src/IconKeyboardDoubleArrowRightSharp.tsx +++ b/src/IconKeyboardDoubleArrowRightSharp.tsx @@ -10,4 +10,4 @@ const IconKeyboardDoubleArrowRightSharp: React.FC = ({ ) -export { IconKeyboardDoubleArrowRightSharp as default } +export default IconKeyboardDoubleArrowRightSharp diff --git a/src/IconKeyboardDoubleArrowRightSharpFilled.tsx b/src/IconKeyboardDoubleArrowRightSharpFilled.tsx index fa021e077..5ed2dcd3b 100644 --- a/src/IconKeyboardDoubleArrowRightSharpFilled.tsx +++ b/src/IconKeyboardDoubleArrowRightSharpFilled.tsx @@ -10,4 +10,4 @@ const IconKeyboardDoubleArrowRightSharpFilled: React.FC = ({ ) -export { IconKeyboardDoubleArrowRightSharpFilled as default } +export default IconKeyboardDoubleArrowRightSharpFilled diff --git a/src/IconKeyboardDoubleArrowUpOutlined.tsx b/src/IconKeyboardDoubleArrowUpOutlined.tsx index 7340e09e3..3a51d603f 100644 --- a/src/IconKeyboardDoubleArrowUpOutlined.tsx +++ b/src/IconKeyboardDoubleArrowUpOutlined.tsx @@ -10,4 +10,4 @@ const IconKeyboardDoubleArrowUpOutlined: React.FC = ({ ) -export { IconKeyboardDoubleArrowUpOutlined as default } +export default IconKeyboardDoubleArrowUpOutlined diff --git a/src/IconKeyboardDoubleArrowUpOutlinedFilled.tsx b/src/IconKeyboardDoubleArrowUpOutlinedFilled.tsx index bff107992..0fb90eae0 100644 --- a/src/IconKeyboardDoubleArrowUpOutlinedFilled.tsx +++ b/src/IconKeyboardDoubleArrowUpOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconKeyboardDoubleArrowUpOutlinedFilled: React.FC = ({ ) -export { IconKeyboardDoubleArrowUpOutlinedFilled as default } +export default IconKeyboardDoubleArrowUpOutlinedFilled diff --git a/src/IconKeyboardDoubleArrowUpRounded.tsx b/src/IconKeyboardDoubleArrowUpRounded.tsx index 87fc419a6..99ce09222 100644 --- a/src/IconKeyboardDoubleArrowUpRounded.tsx +++ b/src/IconKeyboardDoubleArrowUpRounded.tsx @@ -10,4 +10,4 @@ const IconKeyboardDoubleArrowUpRounded: React.FC = ({ ) -export { IconKeyboardDoubleArrowUpRounded as default } +export default IconKeyboardDoubleArrowUpRounded diff --git a/src/IconKeyboardDoubleArrowUpRoundedFilled.tsx b/src/IconKeyboardDoubleArrowUpRoundedFilled.tsx index 3a62d3a5d..d6809b865 100644 --- a/src/IconKeyboardDoubleArrowUpRoundedFilled.tsx +++ b/src/IconKeyboardDoubleArrowUpRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconKeyboardDoubleArrowUpRoundedFilled: React.FC = ({ ) -export { IconKeyboardDoubleArrowUpRoundedFilled as default } +export default IconKeyboardDoubleArrowUpRoundedFilled diff --git a/src/IconKeyboardDoubleArrowUpSharp.tsx b/src/IconKeyboardDoubleArrowUpSharp.tsx index 886b874ca..cdc927e42 100644 --- a/src/IconKeyboardDoubleArrowUpSharp.tsx +++ b/src/IconKeyboardDoubleArrowUpSharp.tsx @@ -8,4 +8,4 @@ const IconKeyboardDoubleArrowUpSharp: React.FC = ({ ...props }) => ( ) -export { IconKeyboardDoubleArrowUpSharp as default } +export default IconKeyboardDoubleArrowUpSharp diff --git a/src/IconKeyboardDoubleArrowUpSharpFilled.tsx b/src/IconKeyboardDoubleArrowUpSharpFilled.tsx index 5c87a828f..719c521d8 100644 --- a/src/IconKeyboardDoubleArrowUpSharpFilled.tsx +++ b/src/IconKeyboardDoubleArrowUpSharpFilled.tsx @@ -10,4 +10,4 @@ const IconKeyboardDoubleArrowUpSharpFilled: React.FC = ({ ) -export { IconKeyboardDoubleArrowUpSharpFilled as default } +export default IconKeyboardDoubleArrowUpSharpFilled diff --git a/src/IconKeyboardExternalInputOutlined.tsx b/src/IconKeyboardExternalInputOutlined.tsx index 53ff7bec8..cce89165a 100644 --- a/src/IconKeyboardExternalInputOutlined.tsx +++ b/src/IconKeyboardExternalInputOutlined.tsx @@ -10,4 +10,4 @@ const IconKeyboardExternalInputOutlined: React.FC = ({ ) -export { IconKeyboardExternalInputOutlined as default } +export default IconKeyboardExternalInputOutlined diff --git a/src/IconKeyboardExternalInputOutlinedFilled.tsx b/src/IconKeyboardExternalInputOutlinedFilled.tsx index 7a134d582..059b0d9f7 100644 --- a/src/IconKeyboardExternalInputOutlinedFilled.tsx +++ b/src/IconKeyboardExternalInputOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconKeyboardExternalInputOutlinedFilled: React.FC = ({ ) -export { IconKeyboardExternalInputOutlinedFilled as default } +export default IconKeyboardExternalInputOutlinedFilled diff --git a/src/IconKeyboardExternalInputRounded.tsx b/src/IconKeyboardExternalInputRounded.tsx index a95d80ac0..5a772cddf 100644 --- a/src/IconKeyboardExternalInputRounded.tsx +++ b/src/IconKeyboardExternalInputRounded.tsx @@ -10,4 +10,4 @@ const IconKeyboardExternalInputRounded: React.FC = ({ ) -export { IconKeyboardExternalInputRounded as default } +export default IconKeyboardExternalInputRounded diff --git a/src/IconKeyboardExternalInputRoundedFilled.tsx b/src/IconKeyboardExternalInputRoundedFilled.tsx index b28944fe1..ec450c10f 100644 --- a/src/IconKeyboardExternalInputRoundedFilled.tsx +++ b/src/IconKeyboardExternalInputRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconKeyboardExternalInputRoundedFilled: React.FC = ({ ) -export { IconKeyboardExternalInputRoundedFilled as default } +export default IconKeyboardExternalInputRoundedFilled diff --git a/src/IconKeyboardExternalInputSharp.tsx b/src/IconKeyboardExternalInputSharp.tsx index 7bb3c6109..d664b027c 100644 --- a/src/IconKeyboardExternalInputSharp.tsx +++ b/src/IconKeyboardExternalInputSharp.tsx @@ -8,4 +8,4 @@ const IconKeyboardExternalInputSharp: React.FC = ({ ...props }) => ( ) -export { IconKeyboardExternalInputSharp as default } +export default IconKeyboardExternalInputSharp diff --git a/src/IconKeyboardExternalInputSharpFilled.tsx b/src/IconKeyboardExternalInputSharpFilled.tsx index 2ffd2f5b0..567075805 100644 --- a/src/IconKeyboardExternalInputSharpFilled.tsx +++ b/src/IconKeyboardExternalInputSharpFilled.tsx @@ -10,4 +10,4 @@ const IconKeyboardExternalInputSharpFilled: React.FC = ({ ) -export { IconKeyboardExternalInputSharpFilled as default } +export default IconKeyboardExternalInputSharpFilled diff --git a/src/IconKeyboardFullOutlined.tsx b/src/IconKeyboardFullOutlined.tsx index f47433edd..470cc401a 100644 --- a/src/IconKeyboardFullOutlined.tsx +++ b/src/IconKeyboardFullOutlined.tsx @@ -8,4 +8,4 @@ const IconKeyboardFullOutlined: React.FC = ({ ...props }) => ( ) -export { IconKeyboardFullOutlined as default } +export default IconKeyboardFullOutlined diff --git a/src/IconKeyboardFullOutlinedFilled.tsx b/src/IconKeyboardFullOutlinedFilled.tsx index b624d6808..42253e8ad 100644 --- a/src/IconKeyboardFullOutlinedFilled.tsx +++ b/src/IconKeyboardFullOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconKeyboardFullOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconKeyboardFullOutlinedFilled as default } +export default IconKeyboardFullOutlinedFilled diff --git a/src/IconKeyboardFullRounded.tsx b/src/IconKeyboardFullRounded.tsx index 2973cfdc8..2caf8a720 100644 --- a/src/IconKeyboardFullRounded.tsx +++ b/src/IconKeyboardFullRounded.tsx @@ -8,4 +8,4 @@ const IconKeyboardFullRounded: React.FC = ({ ...props }) => ( ) -export { IconKeyboardFullRounded as default } +export default IconKeyboardFullRounded diff --git a/src/IconKeyboardFullRoundedFilled.tsx b/src/IconKeyboardFullRoundedFilled.tsx index 978c85708..d9a23001b 100644 --- a/src/IconKeyboardFullRoundedFilled.tsx +++ b/src/IconKeyboardFullRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconKeyboardFullRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconKeyboardFullRoundedFilled as default } +export default IconKeyboardFullRoundedFilled diff --git a/src/IconKeyboardFullSharp.tsx b/src/IconKeyboardFullSharp.tsx index ebc3108a7..2c84db922 100644 --- a/src/IconKeyboardFullSharp.tsx +++ b/src/IconKeyboardFullSharp.tsx @@ -8,4 +8,4 @@ const IconKeyboardFullSharp: React.FC = ({ ...props }) => ( ) -export { IconKeyboardFullSharp as default } +export default IconKeyboardFullSharp diff --git a/src/IconKeyboardFullSharpFilled.tsx b/src/IconKeyboardFullSharpFilled.tsx index 1b7d4bbb4..df9cb3ffd 100644 --- a/src/IconKeyboardFullSharpFilled.tsx +++ b/src/IconKeyboardFullSharpFilled.tsx @@ -8,4 +8,4 @@ const IconKeyboardFullSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconKeyboardFullSharpFilled as default } +export default IconKeyboardFullSharpFilled diff --git a/src/IconKeyboardHideOutlined.tsx b/src/IconKeyboardHideOutlined.tsx index 8188bf783..12314fc4f 100644 --- a/src/IconKeyboardHideOutlined.tsx +++ b/src/IconKeyboardHideOutlined.tsx @@ -8,4 +8,4 @@ const IconKeyboardHideOutlined: React.FC = ({ ...props }) => ( ) -export { IconKeyboardHideOutlined as default } +export default IconKeyboardHideOutlined diff --git a/src/IconKeyboardHideOutlinedFilled.tsx b/src/IconKeyboardHideOutlinedFilled.tsx index 5e11e1009..b2b4ef156 100644 --- a/src/IconKeyboardHideOutlinedFilled.tsx +++ b/src/IconKeyboardHideOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconKeyboardHideOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconKeyboardHideOutlinedFilled as default } +export default IconKeyboardHideOutlinedFilled diff --git a/src/IconKeyboardHideRounded.tsx b/src/IconKeyboardHideRounded.tsx index 9ad8d0b1a..a92c8246c 100644 --- a/src/IconKeyboardHideRounded.tsx +++ b/src/IconKeyboardHideRounded.tsx @@ -8,4 +8,4 @@ const IconKeyboardHideRounded: React.FC = ({ ...props }) => ( ) -export { IconKeyboardHideRounded as default } +export default IconKeyboardHideRounded diff --git a/src/IconKeyboardHideRoundedFilled.tsx b/src/IconKeyboardHideRoundedFilled.tsx index d9578c4cd..9dfad651c 100644 --- a/src/IconKeyboardHideRoundedFilled.tsx +++ b/src/IconKeyboardHideRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconKeyboardHideRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconKeyboardHideRoundedFilled as default } +export default IconKeyboardHideRoundedFilled diff --git a/src/IconKeyboardHideSharp.tsx b/src/IconKeyboardHideSharp.tsx index b8c6b0de6..e0016653a 100644 --- a/src/IconKeyboardHideSharp.tsx +++ b/src/IconKeyboardHideSharp.tsx @@ -8,4 +8,4 @@ const IconKeyboardHideSharp: React.FC = ({ ...props }) => ( ) -export { IconKeyboardHideSharp as default } +export default IconKeyboardHideSharp diff --git a/src/IconKeyboardHideSharpFilled.tsx b/src/IconKeyboardHideSharpFilled.tsx index a36b69864..ffe9fd39f 100644 --- a/src/IconKeyboardHideSharpFilled.tsx +++ b/src/IconKeyboardHideSharpFilled.tsx @@ -8,4 +8,4 @@ const IconKeyboardHideSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconKeyboardHideSharpFilled as default } +export default IconKeyboardHideSharpFilled diff --git a/src/IconKeyboardKeysOutlined.tsx b/src/IconKeyboardKeysOutlined.tsx index daa36491a..c25aef2b3 100644 --- a/src/IconKeyboardKeysOutlined.tsx +++ b/src/IconKeyboardKeysOutlined.tsx @@ -8,4 +8,4 @@ const IconKeyboardKeysOutlined: React.FC = ({ ...props }) => ( ) -export { IconKeyboardKeysOutlined as default } +export default IconKeyboardKeysOutlined diff --git a/src/IconKeyboardKeysOutlinedFilled.tsx b/src/IconKeyboardKeysOutlinedFilled.tsx index 5718887b8..fbe24ccc5 100644 --- a/src/IconKeyboardKeysOutlinedFilled.tsx +++ b/src/IconKeyboardKeysOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconKeyboardKeysOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconKeyboardKeysOutlinedFilled as default } +export default IconKeyboardKeysOutlinedFilled diff --git a/src/IconKeyboardKeysRounded.tsx b/src/IconKeyboardKeysRounded.tsx index 4bf7feb2c..b8312940a 100644 --- a/src/IconKeyboardKeysRounded.tsx +++ b/src/IconKeyboardKeysRounded.tsx @@ -8,4 +8,4 @@ const IconKeyboardKeysRounded: React.FC = ({ ...props }) => ( ) -export { IconKeyboardKeysRounded as default } +export default IconKeyboardKeysRounded diff --git a/src/IconKeyboardKeysRoundedFilled.tsx b/src/IconKeyboardKeysRoundedFilled.tsx index a15b9ba8f..293f4c641 100644 --- a/src/IconKeyboardKeysRoundedFilled.tsx +++ b/src/IconKeyboardKeysRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconKeyboardKeysRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconKeyboardKeysRoundedFilled as default } +export default IconKeyboardKeysRoundedFilled diff --git a/src/IconKeyboardKeysSharp.tsx b/src/IconKeyboardKeysSharp.tsx index 85a2450db..2a45cc402 100644 --- a/src/IconKeyboardKeysSharp.tsx +++ b/src/IconKeyboardKeysSharp.tsx @@ -8,4 +8,4 @@ const IconKeyboardKeysSharp: React.FC = ({ ...props }) => ( ) -export { IconKeyboardKeysSharp as default } +export default IconKeyboardKeysSharp diff --git a/src/IconKeyboardKeysSharpFilled.tsx b/src/IconKeyboardKeysSharpFilled.tsx index 9550af3e7..4529f0beb 100644 --- a/src/IconKeyboardKeysSharpFilled.tsx +++ b/src/IconKeyboardKeysSharpFilled.tsx @@ -8,4 +8,4 @@ const IconKeyboardKeysSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconKeyboardKeysSharpFilled as default } +export default IconKeyboardKeysSharpFilled diff --git a/src/IconKeyboardLockOffOutlined.tsx b/src/IconKeyboardLockOffOutlined.tsx index 8c576a6e4..b88f4fe8f 100644 --- a/src/IconKeyboardLockOffOutlined.tsx +++ b/src/IconKeyboardLockOffOutlined.tsx @@ -8,4 +8,4 @@ const IconKeyboardLockOffOutlined: React.FC = ({ ...props }) => ( ) -export { IconKeyboardLockOffOutlined as default } +export default IconKeyboardLockOffOutlined diff --git a/src/IconKeyboardLockOffOutlinedFilled.tsx b/src/IconKeyboardLockOffOutlinedFilled.tsx index 38d38b44f..17a68ead2 100644 --- a/src/IconKeyboardLockOffOutlinedFilled.tsx +++ b/src/IconKeyboardLockOffOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconKeyboardLockOffOutlinedFilled: React.FC = ({ ) -export { IconKeyboardLockOffOutlinedFilled as default } +export default IconKeyboardLockOffOutlinedFilled diff --git a/src/IconKeyboardLockOffRounded.tsx b/src/IconKeyboardLockOffRounded.tsx index 9148d200a..8655a04c4 100644 --- a/src/IconKeyboardLockOffRounded.tsx +++ b/src/IconKeyboardLockOffRounded.tsx @@ -8,4 +8,4 @@ const IconKeyboardLockOffRounded: React.FC = ({ ...props }) => ( ) -export { IconKeyboardLockOffRounded as default } +export default IconKeyboardLockOffRounded diff --git a/src/IconKeyboardLockOffRoundedFilled.tsx b/src/IconKeyboardLockOffRoundedFilled.tsx index 277e6a6b1..a3ccbc974 100644 --- a/src/IconKeyboardLockOffRoundedFilled.tsx +++ b/src/IconKeyboardLockOffRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconKeyboardLockOffRoundedFilled: React.FC = ({ ) -export { IconKeyboardLockOffRoundedFilled as default } +export default IconKeyboardLockOffRoundedFilled diff --git a/src/IconKeyboardLockOffSharp.tsx b/src/IconKeyboardLockOffSharp.tsx index 10240cf3f..0c098a4cf 100644 --- a/src/IconKeyboardLockOffSharp.tsx +++ b/src/IconKeyboardLockOffSharp.tsx @@ -8,4 +8,4 @@ const IconKeyboardLockOffSharp: React.FC = ({ ...props }) => ( ) -export { IconKeyboardLockOffSharp as default } +export default IconKeyboardLockOffSharp diff --git a/src/IconKeyboardLockOffSharpFilled.tsx b/src/IconKeyboardLockOffSharpFilled.tsx index c55398de7..f17efd284 100644 --- a/src/IconKeyboardLockOffSharpFilled.tsx +++ b/src/IconKeyboardLockOffSharpFilled.tsx @@ -8,4 +8,4 @@ const IconKeyboardLockOffSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconKeyboardLockOffSharpFilled as default } +export default IconKeyboardLockOffSharpFilled diff --git a/src/IconKeyboardLockOutlined.tsx b/src/IconKeyboardLockOutlined.tsx index b74b0c02d..b4a42a164 100644 --- a/src/IconKeyboardLockOutlined.tsx +++ b/src/IconKeyboardLockOutlined.tsx @@ -8,4 +8,4 @@ const IconKeyboardLockOutlined: React.FC = ({ ...props }) => ( ) -export { IconKeyboardLockOutlined as default } +export default IconKeyboardLockOutlined diff --git a/src/IconKeyboardLockOutlinedFilled.tsx b/src/IconKeyboardLockOutlinedFilled.tsx index 6520bac69..81ca80f44 100644 --- a/src/IconKeyboardLockOutlinedFilled.tsx +++ b/src/IconKeyboardLockOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconKeyboardLockOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconKeyboardLockOutlinedFilled as default } +export default IconKeyboardLockOutlinedFilled diff --git a/src/IconKeyboardLockRounded.tsx b/src/IconKeyboardLockRounded.tsx index 634ebc5b1..d859b7d97 100644 --- a/src/IconKeyboardLockRounded.tsx +++ b/src/IconKeyboardLockRounded.tsx @@ -8,4 +8,4 @@ const IconKeyboardLockRounded: React.FC = ({ ...props }) => ( ) -export { IconKeyboardLockRounded as default } +export default IconKeyboardLockRounded diff --git a/src/IconKeyboardLockRoundedFilled.tsx b/src/IconKeyboardLockRoundedFilled.tsx index c5d15f841..107880298 100644 --- a/src/IconKeyboardLockRoundedFilled.tsx +++ b/src/IconKeyboardLockRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconKeyboardLockRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconKeyboardLockRoundedFilled as default } +export default IconKeyboardLockRoundedFilled diff --git a/src/IconKeyboardLockSharp.tsx b/src/IconKeyboardLockSharp.tsx index 1235f0a31..04ff99c13 100644 --- a/src/IconKeyboardLockSharp.tsx +++ b/src/IconKeyboardLockSharp.tsx @@ -8,4 +8,4 @@ const IconKeyboardLockSharp: React.FC = ({ ...props }) => ( ) -export { IconKeyboardLockSharp as default } +export default IconKeyboardLockSharp diff --git a/src/IconKeyboardLockSharpFilled.tsx b/src/IconKeyboardLockSharpFilled.tsx index 7ef398c51..8cfcacb4e 100644 --- a/src/IconKeyboardLockSharpFilled.tsx +++ b/src/IconKeyboardLockSharpFilled.tsx @@ -8,4 +8,4 @@ const IconKeyboardLockSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconKeyboardLockSharpFilled as default } +export default IconKeyboardLockSharpFilled diff --git a/src/IconKeyboardOffOutlined.tsx b/src/IconKeyboardOffOutlined.tsx index fbe3e3550..00194489a 100644 --- a/src/IconKeyboardOffOutlined.tsx +++ b/src/IconKeyboardOffOutlined.tsx @@ -8,4 +8,4 @@ const IconKeyboardOffOutlined: React.FC = ({ ...props }) => ( ) -export { IconKeyboardOffOutlined as default } +export default IconKeyboardOffOutlined diff --git a/src/IconKeyboardOffOutlinedFilled.tsx b/src/IconKeyboardOffOutlinedFilled.tsx index 14097cabb..de2df6c59 100644 --- a/src/IconKeyboardOffOutlinedFilled.tsx +++ b/src/IconKeyboardOffOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconKeyboardOffOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconKeyboardOffOutlinedFilled as default } +export default IconKeyboardOffOutlinedFilled diff --git a/src/IconKeyboardOffRounded.tsx b/src/IconKeyboardOffRounded.tsx index b3372563a..8e8d1f471 100644 --- a/src/IconKeyboardOffRounded.tsx +++ b/src/IconKeyboardOffRounded.tsx @@ -8,4 +8,4 @@ const IconKeyboardOffRounded: React.FC = ({ ...props }) => ( ) -export { IconKeyboardOffRounded as default } +export default IconKeyboardOffRounded diff --git a/src/IconKeyboardOffRoundedFilled.tsx b/src/IconKeyboardOffRoundedFilled.tsx index 46d023d18..e0259df73 100644 --- a/src/IconKeyboardOffRoundedFilled.tsx +++ b/src/IconKeyboardOffRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconKeyboardOffRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconKeyboardOffRoundedFilled as default } +export default IconKeyboardOffRoundedFilled diff --git a/src/IconKeyboardOffSharp.tsx b/src/IconKeyboardOffSharp.tsx index 8a7184875..ad250389a 100644 --- a/src/IconKeyboardOffSharp.tsx +++ b/src/IconKeyboardOffSharp.tsx @@ -8,4 +8,4 @@ const IconKeyboardOffSharp: React.FC = ({ ...props }) => ( ) -export { IconKeyboardOffSharp as default } +export default IconKeyboardOffSharp diff --git a/src/IconKeyboardOffSharpFilled.tsx b/src/IconKeyboardOffSharpFilled.tsx index b1f153677..cf08ec50a 100644 --- a/src/IconKeyboardOffSharpFilled.tsx +++ b/src/IconKeyboardOffSharpFilled.tsx @@ -8,4 +8,4 @@ const IconKeyboardOffSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconKeyboardOffSharpFilled as default } +export default IconKeyboardOffSharpFilled diff --git a/src/IconKeyboardOnscreenOutlined.tsx b/src/IconKeyboardOnscreenOutlined.tsx index ef80d702f..d14a2c209 100644 --- a/src/IconKeyboardOnscreenOutlined.tsx +++ b/src/IconKeyboardOnscreenOutlined.tsx @@ -8,4 +8,4 @@ const IconKeyboardOnscreenOutlined: React.FC = ({ ...props }) => ( ) -export { IconKeyboardOnscreenOutlined as default } +export default IconKeyboardOnscreenOutlined diff --git a/src/IconKeyboardOnscreenOutlinedFilled.tsx b/src/IconKeyboardOnscreenOutlinedFilled.tsx index 611ba4bf6..5735f3975 100644 --- a/src/IconKeyboardOnscreenOutlinedFilled.tsx +++ b/src/IconKeyboardOnscreenOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconKeyboardOnscreenOutlinedFilled: React.FC = ({ ) -export { IconKeyboardOnscreenOutlinedFilled as default } +export default IconKeyboardOnscreenOutlinedFilled diff --git a/src/IconKeyboardOnscreenRounded.tsx b/src/IconKeyboardOnscreenRounded.tsx index 878052332..2318d0bc7 100644 --- a/src/IconKeyboardOnscreenRounded.tsx +++ b/src/IconKeyboardOnscreenRounded.tsx @@ -8,4 +8,4 @@ const IconKeyboardOnscreenRounded: React.FC = ({ ...props }) => ( ) -export { IconKeyboardOnscreenRounded as default } +export default IconKeyboardOnscreenRounded diff --git a/src/IconKeyboardOnscreenRoundedFilled.tsx b/src/IconKeyboardOnscreenRoundedFilled.tsx index 7c2e8d917..8221e18ea 100644 --- a/src/IconKeyboardOnscreenRoundedFilled.tsx +++ b/src/IconKeyboardOnscreenRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconKeyboardOnscreenRoundedFilled: React.FC = ({ ) -export { IconKeyboardOnscreenRoundedFilled as default } +export default IconKeyboardOnscreenRoundedFilled diff --git a/src/IconKeyboardOnscreenSharp.tsx b/src/IconKeyboardOnscreenSharp.tsx index f30b94d12..0bcb61b38 100644 --- a/src/IconKeyboardOnscreenSharp.tsx +++ b/src/IconKeyboardOnscreenSharp.tsx @@ -8,4 +8,4 @@ const IconKeyboardOnscreenSharp: React.FC = ({ ...props }) => ( ) -export { IconKeyboardOnscreenSharp as default } +export default IconKeyboardOnscreenSharp diff --git a/src/IconKeyboardOnscreenSharpFilled.tsx b/src/IconKeyboardOnscreenSharpFilled.tsx index 95be4abb8..d5c283c90 100644 --- a/src/IconKeyboardOnscreenSharpFilled.tsx +++ b/src/IconKeyboardOnscreenSharpFilled.tsx @@ -8,4 +8,4 @@ const IconKeyboardOnscreenSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconKeyboardOnscreenSharpFilled as default } +export default IconKeyboardOnscreenSharpFilled diff --git a/src/IconKeyboardOptionKeyOutlined.tsx b/src/IconKeyboardOptionKeyOutlined.tsx index 5809e212b..6cce4a236 100644 --- a/src/IconKeyboardOptionKeyOutlined.tsx +++ b/src/IconKeyboardOptionKeyOutlined.tsx @@ -8,4 +8,4 @@ const IconKeyboardOptionKeyOutlined: React.FC = ({ ...props }) => ( ) -export { IconKeyboardOptionKeyOutlined as default } +export default IconKeyboardOptionKeyOutlined diff --git a/src/IconKeyboardOptionKeyOutlinedFilled.tsx b/src/IconKeyboardOptionKeyOutlinedFilled.tsx index f0b8cfd89..f8bc7b1d3 100644 --- a/src/IconKeyboardOptionKeyOutlinedFilled.tsx +++ b/src/IconKeyboardOptionKeyOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconKeyboardOptionKeyOutlinedFilled: React.FC = ({ ) -export { IconKeyboardOptionKeyOutlinedFilled as default } +export default IconKeyboardOptionKeyOutlinedFilled diff --git a/src/IconKeyboardOptionKeyRounded.tsx b/src/IconKeyboardOptionKeyRounded.tsx index 13bc8321e..69940d518 100644 --- a/src/IconKeyboardOptionKeyRounded.tsx +++ b/src/IconKeyboardOptionKeyRounded.tsx @@ -8,4 +8,4 @@ const IconKeyboardOptionKeyRounded: React.FC = ({ ...props }) => ( ) -export { IconKeyboardOptionKeyRounded as default } +export default IconKeyboardOptionKeyRounded diff --git a/src/IconKeyboardOptionKeyRoundedFilled.tsx b/src/IconKeyboardOptionKeyRoundedFilled.tsx index 604f4f363..ceb82533a 100644 --- a/src/IconKeyboardOptionKeyRoundedFilled.tsx +++ b/src/IconKeyboardOptionKeyRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconKeyboardOptionKeyRoundedFilled: React.FC = ({ ) -export { IconKeyboardOptionKeyRoundedFilled as default } +export default IconKeyboardOptionKeyRoundedFilled diff --git a/src/IconKeyboardOptionKeySharp.tsx b/src/IconKeyboardOptionKeySharp.tsx index c1784bd2b..d061bb880 100644 --- a/src/IconKeyboardOptionKeySharp.tsx +++ b/src/IconKeyboardOptionKeySharp.tsx @@ -8,4 +8,4 @@ const IconKeyboardOptionKeySharp: React.FC = ({ ...props }) => ( ) -export { IconKeyboardOptionKeySharp as default } +export default IconKeyboardOptionKeySharp diff --git a/src/IconKeyboardOptionKeySharpFilled.tsx b/src/IconKeyboardOptionKeySharpFilled.tsx index 9a820f2dc..f8c9110ab 100644 --- a/src/IconKeyboardOptionKeySharpFilled.tsx +++ b/src/IconKeyboardOptionKeySharpFilled.tsx @@ -10,4 +10,4 @@ const IconKeyboardOptionKeySharpFilled: React.FC = ({ ) -export { IconKeyboardOptionKeySharpFilled as default } +export default IconKeyboardOptionKeySharpFilled diff --git a/src/IconKeyboardOutlined.tsx b/src/IconKeyboardOutlined.tsx index cb280880b..f4dbbc581 100644 --- a/src/IconKeyboardOutlined.tsx +++ b/src/IconKeyboardOutlined.tsx @@ -8,4 +8,4 @@ const IconKeyboardOutlined: React.FC = ({ ...props }) => ( ) -export { IconKeyboardOutlined as default } +export default IconKeyboardOutlined diff --git a/src/IconKeyboardOutlinedFilled.tsx b/src/IconKeyboardOutlinedFilled.tsx index 136318852..4ce3f91dc 100644 --- a/src/IconKeyboardOutlinedFilled.tsx +++ b/src/IconKeyboardOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconKeyboardOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconKeyboardOutlinedFilled as default } +export default IconKeyboardOutlinedFilled diff --git a/src/IconKeyboardPreviousLanguageOutlined.tsx b/src/IconKeyboardPreviousLanguageOutlined.tsx index 259093159..e27d5cb1b 100644 --- a/src/IconKeyboardPreviousLanguageOutlined.tsx +++ b/src/IconKeyboardPreviousLanguageOutlined.tsx @@ -10,4 +10,4 @@ const IconKeyboardPreviousLanguageOutlined: React.FC = ({ ) -export { IconKeyboardPreviousLanguageOutlined as default } +export default IconKeyboardPreviousLanguageOutlined diff --git a/src/IconKeyboardPreviousLanguageOutlinedFilled.tsx b/src/IconKeyboardPreviousLanguageOutlinedFilled.tsx index 6b3abd13f..5c034a010 100644 --- a/src/IconKeyboardPreviousLanguageOutlinedFilled.tsx +++ b/src/IconKeyboardPreviousLanguageOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconKeyboardPreviousLanguageOutlinedFilled: React.FC = ({ ) -export { IconKeyboardPreviousLanguageOutlinedFilled as default } +export default IconKeyboardPreviousLanguageOutlinedFilled diff --git a/src/IconKeyboardPreviousLanguageRounded.tsx b/src/IconKeyboardPreviousLanguageRounded.tsx index c8b8bd210..72871d846 100644 --- a/src/IconKeyboardPreviousLanguageRounded.tsx +++ b/src/IconKeyboardPreviousLanguageRounded.tsx @@ -10,4 +10,4 @@ const IconKeyboardPreviousLanguageRounded: React.FC = ({ ) -export { IconKeyboardPreviousLanguageRounded as default } +export default IconKeyboardPreviousLanguageRounded diff --git a/src/IconKeyboardPreviousLanguageRoundedFilled.tsx b/src/IconKeyboardPreviousLanguageRoundedFilled.tsx index e1f2ab4ba..9da68711a 100644 --- a/src/IconKeyboardPreviousLanguageRoundedFilled.tsx +++ b/src/IconKeyboardPreviousLanguageRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconKeyboardPreviousLanguageRoundedFilled: React.FC = ({ ) -export { IconKeyboardPreviousLanguageRoundedFilled as default } +export default IconKeyboardPreviousLanguageRoundedFilled diff --git a/src/IconKeyboardPreviousLanguageSharp.tsx b/src/IconKeyboardPreviousLanguageSharp.tsx index 7e86dbcaa..0bc8b87c9 100644 --- a/src/IconKeyboardPreviousLanguageSharp.tsx +++ b/src/IconKeyboardPreviousLanguageSharp.tsx @@ -10,4 +10,4 @@ const IconKeyboardPreviousLanguageSharp: React.FC = ({ ) -export { IconKeyboardPreviousLanguageSharp as default } +export default IconKeyboardPreviousLanguageSharp diff --git a/src/IconKeyboardPreviousLanguageSharpFilled.tsx b/src/IconKeyboardPreviousLanguageSharpFilled.tsx index 6fbbf26c9..9c2a7e291 100644 --- a/src/IconKeyboardPreviousLanguageSharpFilled.tsx +++ b/src/IconKeyboardPreviousLanguageSharpFilled.tsx @@ -10,4 +10,4 @@ const IconKeyboardPreviousLanguageSharpFilled: React.FC = ({ ) -export { IconKeyboardPreviousLanguageSharpFilled as default } +export default IconKeyboardPreviousLanguageSharpFilled diff --git a/src/IconKeyboardReturnOutlined.tsx b/src/IconKeyboardReturnOutlined.tsx index 708367410..9b9321bcf 100644 --- a/src/IconKeyboardReturnOutlined.tsx +++ b/src/IconKeyboardReturnOutlined.tsx @@ -8,4 +8,4 @@ const IconKeyboardReturnOutlined: React.FC = ({ ...props }) => ( ) -export { IconKeyboardReturnOutlined as default } +export default IconKeyboardReturnOutlined diff --git a/src/IconKeyboardReturnOutlinedFilled.tsx b/src/IconKeyboardReturnOutlinedFilled.tsx index 0f1d2a75f..e12a72c1b 100644 --- a/src/IconKeyboardReturnOutlinedFilled.tsx +++ b/src/IconKeyboardReturnOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconKeyboardReturnOutlinedFilled: React.FC = ({ ) -export { IconKeyboardReturnOutlinedFilled as default } +export default IconKeyboardReturnOutlinedFilled diff --git a/src/IconKeyboardReturnRounded.tsx b/src/IconKeyboardReturnRounded.tsx index cb6631d0e..48cc22577 100644 --- a/src/IconKeyboardReturnRounded.tsx +++ b/src/IconKeyboardReturnRounded.tsx @@ -8,4 +8,4 @@ const IconKeyboardReturnRounded: React.FC = ({ ...props }) => ( ) -export { IconKeyboardReturnRounded as default } +export default IconKeyboardReturnRounded diff --git a/src/IconKeyboardReturnRoundedFilled.tsx b/src/IconKeyboardReturnRoundedFilled.tsx index 8e3cb7f75..e03578e56 100644 --- a/src/IconKeyboardReturnRoundedFilled.tsx +++ b/src/IconKeyboardReturnRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconKeyboardReturnRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconKeyboardReturnRoundedFilled as default } +export default IconKeyboardReturnRoundedFilled diff --git a/src/IconKeyboardReturnSharp.tsx b/src/IconKeyboardReturnSharp.tsx index 77cf7264f..bb11e97cb 100644 --- a/src/IconKeyboardReturnSharp.tsx +++ b/src/IconKeyboardReturnSharp.tsx @@ -8,4 +8,4 @@ const IconKeyboardReturnSharp: React.FC = ({ ...props }) => ( ) -export { IconKeyboardReturnSharp as default } +export default IconKeyboardReturnSharp diff --git a/src/IconKeyboardReturnSharpFilled.tsx b/src/IconKeyboardReturnSharpFilled.tsx index 2fd2cb555..02e834cdf 100644 --- a/src/IconKeyboardReturnSharpFilled.tsx +++ b/src/IconKeyboardReturnSharpFilled.tsx @@ -8,4 +8,4 @@ const IconKeyboardReturnSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconKeyboardReturnSharpFilled as default } +export default IconKeyboardReturnSharpFilled diff --git a/src/IconKeyboardRounded.tsx b/src/IconKeyboardRounded.tsx index 6cfd1e9e4..61c9771b2 100644 --- a/src/IconKeyboardRounded.tsx +++ b/src/IconKeyboardRounded.tsx @@ -8,4 +8,4 @@ const IconKeyboardRounded: React.FC = ({ ...props }) => ( ) -export { IconKeyboardRounded as default } +export default IconKeyboardRounded diff --git a/src/IconKeyboardRoundedFilled.tsx b/src/IconKeyboardRoundedFilled.tsx index 35b9a1cfb..cecb0d8f4 100644 --- a/src/IconKeyboardRoundedFilled.tsx +++ b/src/IconKeyboardRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconKeyboardRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconKeyboardRoundedFilled as default } +export default IconKeyboardRoundedFilled diff --git a/src/IconKeyboardSharp.tsx b/src/IconKeyboardSharp.tsx index c7a340c90..041c4836a 100644 --- a/src/IconKeyboardSharp.tsx +++ b/src/IconKeyboardSharp.tsx @@ -8,4 +8,4 @@ const IconKeyboardSharp: React.FC = ({ ...props }) => ( ) -export { IconKeyboardSharp as default } +export default IconKeyboardSharp diff --git a/src/IconKeyboardSharpFilled.tsx b/src/IconKeyboardSharpFilled.tsx index a894cee60..440b6ba96 100644 --- a/src/IconKeyboardSharpFilled.tsx +++ b/src/IconKeyboardSharpFilled.tsx @@ -8,4 +8,4 @@ const IconKeyboardSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconKeyboardSharpFilled as default } +export default IconKeyboardSharpFilled diff --git a/src/IconKeyboardTabOutlined.tsx b/src/IconKeyboardTabOutlined.tsx index df1d245fd..458989962 100644 --- a/src/IconKeyboardTabOutlined.tsx +++ b/src/IconKeyboardTabOutlined.tsx @@ -8,4 +8,4 @@ const IconKeyboardTabOutlined: React.FC = ({ ...props }) => ( ) -export { IconKeyboardTabOutlined as default } +export default IconKeyboardTabOutlined diff --git a/src/IconKeyboardTabOutlinedFilled.tsx b/src/IconKeyboardTabOutlinedFilled.tsx index fc00e68d4..6d7c97ce1 100644 --- a/src/IconKeyboardTabOutlinedFilled.tsx +++ b/src/IconKeyboardTabOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconKeyboardTabOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconKeyboardTabOutlinedFilled as default } +export default IconKeyboardTabOutlinedFilled diff --git a/src/IconKeyboardTabRounded.tsx b/src/IconKeyboardTabRounded.tsx index 0a42c8674..65fff2ea3 100644 --- a/src/IconKeyboardTabRounded.tsx +++ b/src/IconKeyboardTabRounded.tsx @@ -8,4 +8,4 @@ const IconKeyboardTabRounded: React.FC = ({ ...props }) => ( ) -export { IconKeyboardTabRounded as default } +export default IconKeyboardTabRounded diff --git a/src/IconKeyboardTabRoundedFilled.tsx b/src/IconKeyboardTabRoundedFilled.tsx index ec8b6f0d4..3a50c722a 100644 --- a/src/IconKeyboardTabRoundedFilled.tsx +++ b/src/IconKeyboardTabRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconKeyboardTabRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconKeyboardTabRoundedFilled as default } +export default IconKeyboardTabRoundedFilled diff --git a/src/IconKeyboardTabRtlOutlined.tsx b/src/IconKeyboardTabRtlOutlined.tsx index 298f94817..ce465e738 100644 --- a/src/IconKeyboardTabRtlOutlined.tsx +++ b/src/IconKeyboardTabRtlOutlined.tsx @@ -8,4 +8,4 @@ const IconKeyboardTabRtlOutlined: React.FC = ({ ...props }) => ( ) -export { IconKeyboardTabRtlOutlined as default } +export default IconKeyboardTabRtlOutlined diff --git a/src/IconKeyboardTabRtlOutlinedFilled.tsx b/src/IconKeyboardTabRtlOutlinedFilled.tsx index 05d74c5b4..0011b4a0a 100644 --- a/src/IconKeyboardTabRtlOutlinedFilled.tsx +++ b/src/IconKeyboardTabRtlOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconKeyboardTabRtlOutlinedFilled: React.FC = ({ ) -export { IconKeyboardTabRtlOutlinedFilled as default } +export default IconKeyboardTabRtlOutlinedFilled diff --git a/src/IconKeyboardTabRtlRounded.tsx b/src/IconKeyboardTabRtlRounded.tsx index fca52fdf4..fa6559a6a 100644 --- a/src/IconKeyboardTabRtlRounded.tsx +++ b/src/IconKeyboardTabRtlRounded.tsx @@ -8,4 +8,4 @@ const IconKeyboardTabRtlRounded: React.FC = ({ ...props }) => ( ) -export { IconKeyboardTabRtlRounded as default } +export default IconKeyboardTabRtlRounded diff --git a/src/IconKeyboardTabRtlRoundedFilled.tsx b/src/IconKeyboardTabRtlRoundedFilled.tsx index d0a8fbaa5..e87bf4c19 100644 --- a/src/IconKeyboardTabRtlRoundedFilled.tsx +++ b/src/IconKeyboardTabRtlRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconKeyboardTabRtlRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconKeyboardTabRtlRoundedFilled as default } +export default IconKeyboardTabRtlRoundedFilled diff --git a/src/IconKeyboardTabRtlSharp.tsx b/src/IconKeyboardTabRtlSharp.tsx index 72ca0a8ae..273bcfda7 100644 --- a/src/IconKeyboardTabRtlSharp.tsx +++ b/src/IconKeyboardTabRtlSharp.tsx @@ -8,4 +8,4 @@ const IconKeyboardTabRtlSharp: React.FC = ({ ...props }) => ( ) -export { IconKeyboardTabRtlSharp as default } +export default IconKeyboardTabRtlSharp diff --git a/src/IconKeyboardTabRtlSharpFilled.tsx b/src/IconKeyboardTabRtlSharpFilled.tsx index 9baad261d..c86c16072 100644 --- a/src/IconKeyboardTabRtlSharpFilled.tsx +++ b/src/IconKeyboardTabRtlSharpFilled.tsx @@ -8,4 +8,4 @@ const IconKeyboardTabRtlSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconKeyboardTabRtlSharpFilled as default } +export default IconKeyboardTabRtlSharpFilled diff --git a/src/IconKeyboardTabSharp.tsx b/src/IconKeyboardTabSharp.tsx index 04ff725c3..0b9b2975d 100644 --- a/src/IconKeyboardTabSharp.tsx +++ b/src/IconKeyboardTabSharp.tsx @@ -8,4 +8,4 @@ const IconKeyboardTabSharp: React.FC = ({ ...props }) => ( ) -export { IconKeyboardTabSharp as default } +export default IconKeyboardTabSharp diff --git a/src/IconKeyboardTabSharpFilled.tsx b/src/IconKeyboardTabSharpFilled.tsx index 301599391..940e21b4d 100644 --- a/src/IconKeyboardTabSharpFilled.tsx +++ b/src/IconKeyboardTabSharpFilled.tsx @@ -8,4 +8,4 @@ const IconKeyboardTabSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconKeyboardTabSharpFilled as default } +export default IconKeyboardTabSharpFilled diff --git a/src/IconKidStarOutlined.tsx b/src/IconKidStarOutlined.tsx index 499fdee57..b01bee061 100644 --- a/src/IconKidStarOutlined.tsx +++ b/src/IconKidStarOutlined.tsx @@ -8,4 +8,4 @@ const IconKidStarOutlined: React.FC = ({ ...props }) => ( ) -export { IconKidStarOutlined as default } +export default IconKidStarOutlined diff --git a/src/IconKidStarOutlinedFilled.tsx b/src/IconKidStarOutlinedFilled.tsx index 18293db90..8e0fee933 100644 --- a/src/IconKidStarOutlinedFilled.tsx +++ b/src/IconKidStarOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconKidStarOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconKidStarOutlinedFilled as default } +export default IconKidStarOutlinedFilled diff --git a/src/IconKidStarRounded.tsx b/src/IconKidStarRounded.tsx index 680a09f00..db012d3db 100644 --- a/src/IconKidStarRounded.tsx +++ b/src/IconKidStarRounded.tsx @@ -8,4 +8,4 @@ const IconKidStarRounded: React.FC = ({ ...props }) => ( ) -export { IconKidStarRounded as default } +export default IconKidStarRounded diff --git a/src/IconKidStarRoundedFilled.tsx b/src/IconKidStarRoundedFilled.tsx index 69cfb3449..34221943e 100644 --- a/src/IconKidStarRoundedFilled.tsx +++ b/src/IconKidStarRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconKidStarRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconKidStarRoundedFilled as default } +export default IconKidStarRoundedFilled diff --git a/src/IconKidStarSharp.tsx b/src/IconKidStarSharp.tsx index 0ab378e79..513c451f1 100644 --- a/src/IconKidStarSharp.tsx +++ b/src/IconKidStarSharp.tsx @@ -8,4 +8,4 @@ const IconKidStarSharp: React.FC = ({ ...props }) => ( ) -export { IconKidStarSharp as default } +export default IconKidStarSharp diff --git a/src/IconKidStarSharpFilled.tsx b/src/IconKidStarSharpFilled.tsx index d5e7c8cc2..043ef0dd9 100644 --- a/src/IconKidStarSharpFilled.tsx +++ b/src/IconKidStarSharpFilled.tsx @@ -8,4 +8,4 @@ const IconKidStarSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconKidStarSharpFilled as default } +export default IconKidStarSharpFilled diff --git a/src/IconKingBedOutlined.tsx b/src/IconKingBedOutlined.tsx index 7ee17630c..dcbb3f235 100644 --- a/src/IconKingBedOutlined.tsx +++ b/src/IconKingBedOutlined.tsx @@ -8,4 +8,4 @@ const IconKingBedOutlined: React.FC = ({ ...props }) => ( ) -export { IconKingBedOutlined as default } +export default IconKingBedOutlined diff --git a/src/IconKingBedOutlinedFilled.tsx b/src/IconKingBedOutlinedFilled.tsx index e55194a10..350df8cfb 100644 --- a/src/IconKingBedOutlinedFilled.tsx +++ b/src/IconKingBedOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconKingBedOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconKingBedOutlinedFilled as default } +export default IconKingBedOutlinedFilled diff --git a/src/IconKingBedRounded.tsx b/src/IconKingBedRounded.tsx index 7d8f51f3c..b7bc6e25a 100644 --- a/src/IconKingBedRounded.tsx +++ b/src/IconKingBedRounded.tsx @@ -8,4 +8,4 @@ const IconKingBedRounded: React.FC = ({ ...props }) => ( ) -export { IconKingBedRounded as default } +export default IconKingBedRounded diff --git a/src/IconKingBedRoundedFilled.tsx b/src/IconKingBedRoundedFilled.tsx index 07849ee9c..c86082845 100644 --- a/src/IconKingBedRoundedFilled.tsx +++ b/src/IconKingBedRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconKingBedRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconKingBedRoundedFilled as default } +export default IconKingBedRoundedFilled diff --git a/src/IconKingBedSharp.tsx b/src/IconKingBedSharp.tsx index 50751b9db..03d016056 100644 --- a/src/IconKingBedSharp.tsx +++ b/src/IconKingBedSharp.tsx @@ -8,4 +8,4 @@ const IconKingBedSharp: React.FC = ({ ...props }) => ( ) -export { IconKingBedSharp as default } +export default IconKingBedSharp diff --git a/src/IconKingBedSharpFilled.tsx b/src/IconKingBedSharpFilled.tsx index 6f15cbf01..346ce0638 100644 --- a/src/IconKingBedSharpFilled.tsx +++ b/src/IconKingBedSharpFilled.tsx @@ -8,4 +8,4 @@ const IconKingBedSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconKingBedSharpFilled as default } +export default IconKingBedSharpFilled diff --git a/src/IconKitchenOutlined.tsx b/src/IconKitchenOutlined.tsx index df5ea011d..c19cd2632 100644 --- a/src/IconKitchenOutlined.tsx +++ b/src/IconKitchenOutlined.tsx @@ -8,4 +8,4 @@ const IconKitchenOutlined: React.FC = ({ ...props }) => ( ) -export { IconKitchenOutlined as default } +export default IconKitchenOutlined diff --git a/src/IconKitchenOutlinedFilled.tsx b/src/IconKitchenOutlinedFilled.tsx index 7e6544550..fd5631ee2 100644 --- a/src/IconKitchenOutlinedFilled.tsx +++ b/src/IconKitchenOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconKitchenOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconKitchenOutlinedFilled as default } +export default IconKitchenOutlinedFilled diff --git a/src/IconKitchenRounded.tsx b/src/IconKitchenRounded.tsx index d81a1fd4a..3aa44e08e 100644 --- a/src/IconKitchenRounded.tsx +++ b/src/IconKitchenRounded.tsx @@ -8,4 +8,4 @@ const IconKitchenRounded: React.FC = ({ ...props }) => ( ) -export { IconKitchenRounded as default } +export default IconKitchenRounded diff --git a/src/IconKitchenRoundedFilled.tsx b/src/IconKitchenRoundedFilled.tsx index 1bcef51af..d3ac86980 100644 --- a/src/IconKitchenRoundedFilled.tsx +++ b/src/IconKitchenRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconKitchenRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconKitchenRoundedFilled as default } +export default IconKitchenRoundedFilled diff --git a/src/IconKitchenSharp.tsx b/src/IconKitchenSharp.tsx index f8af08659..4b2b6e291 100644 --- a/src/IconKitchenSharp.tsx +++ b/src/IconKitchenSharp.tsx @@ -8,4 +8,4 @@ const IconKitchenSharp: React.FC = ({ ...props }) => ( ) -export { IconKitchenSharp as default } +export default IconKitchenSharp diff --git a/src/IconKitchenSharpFilled.tsx b/src/IconKitchenSharpFilled.tsx index 4bed532ad..661939442 100644 --- a/src/IconKitchenSharpFilled.tsx +++ b/src/IconKitchenSharpFilled.tsx @@ -8,4 +8,4 @@ const IconKitchenSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconKitchenSharpFilled as default } +export default IconKitchenSharpFilled diff --git a/src/IconKitesurfingOutlined.tsx b/src/IconKitesurfingOutlined.tsx index 0af90052a..3d4bf9fca 100644 --- a/src/IconKitesurfingOutlined.tsx +++ b/src/IconKitesurfingOutlined.tsx @@ -8,4 +8,4 @@ const IconKitesurfingOutlined: React.FC = ({ ...props }) => ( ) -export { IconKitesurfingOutlined as default } +export default IconKitesurfingOutlined diff --git a/src/IconKitesurfingOutlinedFilled.tsx b/src/IconKitesurfingOutlinedFilled.tsx index 5258f33ea..e36abe6aa 100644 --- a/src/IconKitesurfingOutlinedFilled.tsx +++ b/src/IconKitesurfingOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconKitesurfingOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconKitesurfingOutlinedFilled as default } +export default IconKitesurfingOutlinedFilled diff --git a/src/IconKitesurfingRounded.tsx b/src/IconKitesurfingRounded.tsx index a47389363..65929efc8 100644 --- a/src/IconKitesurfingRounded.tsx +++ b/src/IconKitesurfingRounded.tsx @@ -8,4 +8,4 @@ const IconKitesurfingRounded: React.FC = ({ ...props }) => ( ) -export { IconKitesurfingRounded as default } +export default IconKitesurfingRounded diff --git a/src/IconKitesurfingRoundedFilled.tsx b/src/IconKitesurfingRoundedFilled.tsx index 06fb8d41b..a347d890f 100644 --- a/src/IconKitesurfingRoundedFilled.tsx +++ b/src/IconKitesurfingRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconKitesurfingRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconKitesurfingRoundedFilled as default } +export default IconKitesurfingRoundedFilled diff --git a/src/IconKitesurfingSharp.tsx b/src/IconKitesurfingSharp.tsx index d30d0abbf..558ef413e 100644 --- a/src/IconKitesurfingSharp.tsx +++ b/src/IconKitesurfingSharp.tsx @@ -8,4 +8,4 @@ const IconKitesurfingSharp: React.FC = ({ ...props }) => ( ) -export { IconKitesurfingSharp as default } +export default IconKitesurfingSharp diff --git a/src/IconKitesurfingSharpFilled.tsx b/src/IconKitesurfingSharpFilled.tsx index 526411fe0..388fa9573 100644 --- a/src/IconKitesurfingSharpFilled.tsx +++ b/src/IconKitesurfingSharpFilled.tsx @@ -8,4 +8,4 @@ const IconKitesurfingSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconKitesurfingSharpFilled as default } +export default IconKitesurfingSharpFilled diff --git a/src/IconLabPanelOutlined.tsx b/src/IconLabPanelOutlined.tsx index 17f108f4b..bdff77126 100644 --- a/src/IconLabPanelOutlined.tsx +++ b/src/IconLabPanelOutlined.tsx @@ -8,4 +8,4 @@ const IconLabPanelOutlined: React.FC = ({ ...props }) => ( ) -export { IconLabPanelOutlined as default } +export default IconLabPanelOutlined diff --git a/src/IconLabPanelOutlinedFilled.tsx b/src/IconLabPanelOutlinedFilled.tsx index ae24948bf..3c9495ce0 100644 --- a/src/IconLabPanelOutlinedFilled.tsx +++ b/src/IconLabPanelOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconLabPanelOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconLabPanelOutlinedFilled as default } +export default IconLabPanelOutlinedFilled diff --git a/src/IconLabPanelRounded.tsx b/src/IconLabPanelRounded.tsx index 23c27f8eb..97ef95e95 100644 --- a/src/IconLabPanelRounded.tsx +++ b/src/IconLabPanelRounded.tsx @@ -8,4 +8,4 @@ const IconLabPanelRounded: React.FC = ({ ...props }) => ( ) -export { IconLabPanelRounded as default } +export default IconLabPanelRounded diff --git a/src/IconLabPanelRoundedFilled.tsx b/src/IconLabPanelRoundedFilled.tsx index 9ddc4abac..02bb5a3d5 100644 --- a/src/IconLabPanelRoundedFilled.tsx +++ b/src/IconLabPanelRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconLabPanelRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconLabPanelRoundedFilled as default } +export default IconLabPanelRoundedFilled diff --git a/src/IconLabPanelSharp.tsx b/src/IconLabPanelSharp.tsx index 7d80d9f58..39a6d6ce7 100644 --- a/src/IconLabPanelSharp.tsx +++ b/src/IconLabPanelSharp.tsx @@ -8,4 +8,4 @@ const IconLabPanelSharp: React.FC = ({ ...props }) => ( ) -export { IconLabPanelSharp as default } +export default IconLabPanelSharp diff --git a/src/IconLabPanelSharpFilled.tsx b/src/IconLabPanelSharpFilled.tsx index cb97913dd..6043b450b 100644 --- a/src/IconLabPanelSharpFilled.tsx +++ b/src/IconLabPanelSharpFilled.tsx @@ -8,4 +8,4 @@ const IconLabPanelSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconLabPanelSharpFilled as default } +export default IconLabPanelSharpFilled diff --git a/src/IconLabProfileOutlined.tsx b/src/IconLabProfileOutlined.tsx index d8f19dc6f..59e1a7db2 100644 --- a/src/IconLabProfileOutlined.tsx +++ b/src/IconLabProfileOutlined.tsx @@ -8,4 +8,4 @@ const IconLabProfileOutlined: React.FC = ({ ...props }) => ( ) -export { IconLabProfileOutlined as default } +export default IconLabProfileOutlined diff --git a/src/IconLabProfileOutlinedFilled.tsx b/src/IconLabProfileOutlinedFilled.tsx index 744cea08f..afed9402f 100644 --- a/src/IconLabProfileOutlinedFilled.tsx +++ b/src/IconLabProfileOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconLabProfileOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconLabProfileOutlinedFilled as default } +export default IconLabProfileOutlinedFilled diff --git a/src/IconLabProfileRounded.tsx b/src/IconLabProfileRounded.tsx index acb28a691..942660ba1 100644 --- a/src/IconLabProfileRounded.tsx +++ b/src/IconLabProfileRounded.tsx @@ -8,4 +8,4 @@ const IconLabProfileRounded: React.FC = ({ ...props }) => ( ) -export { IconLabProfileRounded as default } +export default IconLabProfileRounded diff --git a/src/IconLabProfileRoundedFilled.tsx b/src/IconLabProfileRoundedFilled.tsx index 36a6f9b88..35ee5c586 100644 --- a/src/IconLabProfileRoundedFilled.tsx +++ b/src/IconLabProfileRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconLabProfileRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconLabProfileRoundedFilled as default } +export default IconLabProfileRoundedFilled diff --git a/src/IconLabProfileSharp.tsx b/src/IconLabProfileSharp.tsx index 2095b3ea6..5d770682c 100644 --- a/src/IconLabProfileSharp.tsx +++ b/src/IconLabProfileSharp.tsx @@ -8,4 +8,4 @@ const IconLabProfileSharp: React.FC = ({ ...props }) => ( ) -export { IconLabProfileSharp as default } +export default IconLabProfileSharp diff --git a/src/IconLabProfileSharpFilled.tsx b/src/IconLabProfileSharpFilled.tsx index f5d89a63f..13ee0b2e9 100644 --- a/src/IconLabProfileSharpFilled.tsx +++ b/src/IconLabProfileSharpFilled.tsx @@ -8,4 +8,4 @@ const IconLabProfileSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconLabProfileSharpFilled as default } +export default IconLabProfileSharpFilled diff --git a/src/IconLabResearchOutlined.tsx b/src/IconLabResearchOutlined.tsx index e43f7031f..38e981232 100644 --- a/src/IconLabResearchOutlined.tsx +++ b/src/IconLabResearchOutlined.tsx @@ -8,4 +8,4 @@ const IconLabResearchOutlined: React.FC = ({ ...props }) => ( ) -export { IconLabResearchOutlined as default } +export default IconLabResearchOutlined diff --git a/src/IconLabResearchOutlinedFilled.tsx b/src/IconLabResearchOutlinedFilled.tsx index 24d3f8fc6..415de60c5 100644 --- a/src/IconLabResearchOutlinedFilled.tsx +++ b/src/IconLabResearchOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconLabResearchOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconLabResearchOutlinedFilled as default } +export default IconLabResearchOutlinedFilled diff --git a/src/IconLabResearchRounded.tsx b/src/IconLabResearchRounded.tsx index 018099955..fc3b774e6 100644 --- a/src/IconLabResearchRounded.tsx +++ b/src/IconLabResearchRounded.tsx @@ -8,4 +8,4 @@ const IconLabResearchRounded: React.FC = ({ ...props }) => ( ) -export { IconLabResearchRounded as default } +export default IconLabResearchRounded diff --git a/src/IconLabResearchRoundedFilled.tsx b/src/IconLabResearchRoundedFilled.tsx index fcd760ab5..eb83f0e0a 100644 --- a/src/IconLabResearchRoundedFilled.tsx +++ b/src/IconLabResearchRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconLabResearchRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconLabResearchRoundedFilled as default } +export default IconLabResearchRoundedFilled diff --git a/src/IconLabResearchSharp.tsx b/src/IconLabResearchSharp.tsx index f9fa5c8c8..d66d3ba08 100644 --- a/src/IconLabResearchSharp.tsx +++ b/src/IconLabResearchSharp.tsx @@ -8,4 +8,4 @@ const IconLabResearchSharp: React.FC = ({ ...props }) => ( ) -export { IconLabResearchSharp as default } +export default IconLabResearchSharp diff --git a/src/IconLabResearchSharpFilled.tsx b/src/IconLabResearchSharpFilled.tsx index a73b31ebf..1c349992f 100644 --- a/src/IconLabResearchSharpFilled.tsx +++ b/src/IconLabResearchSharpFilled.tsx @@ -8,4 +8,4 @@ const IconLabResearchSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconLabResearchSharpFilled as default } +export default IconLabResearchSharpFilled diff --git a/src/IconLabelImportantOutlined.tsx b/src/IconLabelImportantOutlined.tsx index a7e963c69..17e5a148b 100644 --- a/src/IconLabelImportantOutlined.tsx +++ b/src/IconLabelImportantOutlined.tsx @@ -8,4 +8,4 @@ const IconLabelImportantOutlined: React.FC = ({ ...props }) => ( ) -export { IconLabelImportantOutlined as default } +export default IconLabelImportantOutlined diff --git a/src/IconLabelImportantOutlinedFilled.tsx b/src/IconLabelImportantOutlinedFilled.tsx index bd6250221..9cc959d2f 100644 --- a/src/IconLabelImportantOutlinedFilled.tsx +++ b/src/IconLabelImportantOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconLabelImportantOutlinedFilled: React.FC = ({ ) -export { IconLabelImportantOutlinedFilled as default } +export default IconLabelImportantOutlinedFilled diff --git a/src/IconLabelImportantRounded.tsx b/src/IconLabelImportantRounded.tsx index dfb38a76b..a88c9df9d 100644 --- a/src/IconLabelImportantRounded.tsx +++ b/src/IconLabelImportantRounded.tsx @@ -8,4 +8,4 @@ const IconLabelImportantRounded: React.FC = ({ ...props }) => ( ) -export { IconLabelImportantRounded as default } +export default IconLabelImportantRounded diff --git a/src/IconLabelImportantRoundedFilled.tsx b/src/IconLabelImportantRoundedFilled.tsx index 0ca18ac46..9819f2c52 100644 --- a/src/IconLabelImportantRoundedFilled.tsx +++ b/src/IconLabelImportantRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconLabelImportantRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconLabelImportantRoundedFilled as default } +export default IconLabelImportantRoundedFilled diff --git a/src/IconLabelImportantSharp.tsx b/src/IconLabelImportantSharp.tsx index 48d53ec05..49057f98b 100644 --- a/src/IconLabelImportantSharp.tsx +++ b/src/IconLabelImportantSharp.tsx @@ -8,4 +8,4 @@ const IconLabelImportantSharp: React.FC = ({ ...props }) => ( ) -export { IconLabelImportantSharp as default } +export default IconLabelImportantSharp diff --git a/src/IconLabelImportantSharpFilled.tsx b/src/IconLabelImportantSharpFilled.tsx index cbdd6fa8a..31a30971a 100644 --- a/src/IconLabelImportantSharpFilled.tsx +++ b/src/IconLabelImportantSharpFilled.tsx @@ -8,4 +8,4 @@ const IconLabelImportantSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconLabelImportantSharpFilled as default } +export default IconLabelImportantSharpFilled diff --git a/src/IconLabelOffOutlined.tsx b/src/IconLabelOffOutlined.tsx index 53df9d41a..b9a4208eb 100644 --- a/src/IconLabelOffOutlined.tsx +++ b/src/IconLabelOffOutlined.tsx @@ -8,4 +8,4 @@ const IconLabelOffOutlined: React.FC = ({ ...props }) => ( ) -export { IconLabelOffOutlined as default } +export default IconLabelOffOutlined diff --git a/src/IconLabelOffOutlinedFilled.tsx b/src/IconLabelOffOutlinedFilled.tsx index 851b7624b..cba472eff 100644 --- a/src/IconLabelOffOutlinedFilled.tsx +++ b/src/IconLabelOffOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconLabelOffOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconLabelOffOutlinedFilled as default } +export default IconLabelOffOutlinedFilled diff --git a/src/IconLabelOffRounded.tsx b/src/IconLabelOffRounded.tsx index 358c9080f..8cf04c8ac 100644 --- a/src/IconLabelOffRounded.tsx +++ b/src/IconLabelOffRounded.tsx @@ -8,4 +8,4 @@ const IconLabelOffRounded: React.FC = ({ ...props }) => ( ) -export { IconLabelOffRounded as default } +export default IconLabelOffRounded diff --git a/src/IconLabelOffRoundedFilled.tsx b/src/IconLabelOffRoundedFilled.tsx index ae745870e..941435a60 100644 --- a/src/IconLabelOffRoundedFilled.tsx +++ b/src/IconLabelOffRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconLabelOffRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconLabelOffRoundedFilled as default } +export default IconLabelOffRoundedFilled diff --git a/src/IconLabelOffSharp.tsx b/src/IconLabelOffSharp.tsx index 6d9103ed4..7aa857dad 100644 --- a/src/IconLabelOffSharp.tsx +++ b/src/IconLabelOffSharp.tsx @@ -8,4 +8,4 @@ const IconLabelOffSharp: React.FC = ({ ...props }) => ( ) -export { IconLabelOffSharp as default } +export default IconLabelOffSharp diff --git a/src/IconLabelOffSharpFilled.tsx b/src/IconLabelOffSharpFilled.tsx index b4c4003be..218161a23 100644 --- a/src/IconLabelOffSharpFilled.tsx +++ b/src/IconLabelOffSharpFilled.tsx @@ -8,4 +8,4 @@ const IconLabelOffSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconLabelOffSharpFilled as default } +export default IconLabelOffSharpFilled diff --git a/src/IconLabelOutlined.tsx b/src/IconLabelOutlined.tsx index c96d37c9a..235d5f2ee 100644 --- a/src/IconLabelOutlined.tsx +++ b/src/IconLabelOutlined.tsx @@ -8,4 +8,4 @@ const IconLabelOutlined: React.FC = ({ ...props }) => ( ) -export { IconLabelOutlined as default } +export default IconLabelOutlined diff --git a/src/IconLabelOutlinedFilled.tsx b/src/IconLabelOutlinedFilled.tsx index 641694fb2..7b58653b8 100644 --- a/src/IconLabelOutlinedFilled.tsx +++ b/src/IconLabelOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconLabelOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconLabelOutlinedFilled as default } +export default IconLabelOutlinedFilled diff --git a/src/IconLabelRounded.tsx b/src/IconLabelRounded.tsx index fa2f9bc91..7572d6cf2 100644 --- a/src/IconLabelRounded.tsx +++ b/src/IconLabelRounded.tsx @@ -8,4 +8,4 @@ const IconLabelRounded: React.FC = ({ ...props }) => ( ) -export { IconLabelRounded as default } +export default IconLabelRounded diff --git a/src/IconLabelRoundedFilled.tsx b/src/IconLabelRoundedFilled.tsx index 762e47229..a498ae787 100644 --- a/src/IconLabelRoundedFilled.tsx +++ b/src/IconLabelRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconLabelRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconLabelRoundedFilled as default } +export default IconLabelRoundedFilled diff --git a/src/IconLabelSharp.tsx b/src/IconLabelSharp.tsx index c374f2f37..64db0f24f 100644 --- a/src/IconLabelSharp.tsx +++ b/src/IconLabelSharp.tsx @@ -8,4 +8,4 @@ const IconLabelSharp: React.FC = ({ ...props }) => ( ) -export { IconLabelSharp as default } +export default IconLabelSharp diff --git a/src/IconLabelSharpFilled.tsx b/src/IconLabelSharpFilled.tsx index 45752814c..89a7237c7 100644 --- a/src/IconLabelSharpFilled.tsx +++ b/src/IconLabelSharpFilled.tsx @@ -8,4 +8,4 @@ const IconLabelSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconLabelSharpFilled as default } +export default IconLabelSharpFilled diff --git a/src/IconLabsOutlined.tsx b/src/IconLabsOutlined.tsx index 52d84720e..bfb19b09d 100644 --- a/src/IconLabsOutlined.tsx +++ b/src/IconLabsOutlined.tsx @@ -8,4 +8,4 @@ const IconLabsOutlined: React.FC = ({ ...props }) => ( ) -export { IconLabsOutlined as default } +export default IconLabsOutlined diff --git a/src/IconLabsOutlinedFilled.tsx b/src/IconLabsOutlinedFilled.tsx index 9e858149b..99bf9c6da 100644 --- a/src/IconLabsOutlinedFilled.tsx +++ b/src/IconLabsOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconLabsOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconLabsOutlinedFilled as default } +export default IconLabsOutlinedFilled diff --git a/src/IconLabsRounded.tsx b/src/IconLabsRounded.tsx index b8bcbdcf1..e7be6ac75 100644 --- a/src/IconLabsRounded.tsx +++ b/src/IconLabsRounded.tsx @@ -8,4 +8,4 @@ const IconLabsRounded: React.FC = ({ ...props }) => ( ) -export { IconLabsRounded as default } +export default IconLabsRounded diff --git a/src/IconLabsRoundedFilled.tsx b/src/IconLabsRoundedFilled.tsx index f2937ec8b..1069ba36c 100644 --- a/src/IconLabsRoundedFilled.tsx +++ b/src/IconLabsRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconLabsRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconLabsRoundedFilled as default } +export default IconLabsRoundedFilled diff --git a/src/IconLabsSharp.tsx b/src/IconLabsSharp.tsx index f331dbcb3..bb5a64baf 100644 --- a/src/IconLabsSharp.tsx +++ b/src/IconLabsSharp.tsx @@ -8,4 +8,4 @@ const IconLabsSharp: React.FC = ({ ...props }) => ( ) -export { IconLabsSharp as default } +export default IconLabsSharp diff --git a/src/IconLabsSharpFilled.tsx b/src/IconLabsSharpFilled.tsx index 627bbd387..472cfc82a 100644 --- a/src/IconLabsSharpFilled.tsx +++ b/src/IconLabsSharpFilled.tsx @@ -8,4 +8,4 @@ const IconLabsSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconLabsSharpFilled as default } +export default IconLabsSharpFilled diff --git a/src/IconLanOutlined.tsx b/src/IconLanOutlined.tsx index cb97b69a6..c3b1826f6 100644 --- a/src/IconLanOutlined.tsx +++ b/src/IconLanOutlined.tsx @@ -8,4 +8,4 @@ const IconLanOutlined: React.FC = ({ ...props }) => ( ) -export { IconLanOutlined as default } +export default IconLanOutlined diff --git a/src/IconLanOutlinedFilled.tsx b/src/IconLanOutlinedFilled.tsx index 045768db3..a03ad7766 100644 --- a/src/IconLanOutlinedFilled.tsx +++ b/src/IconLanOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconLanOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconLanOutlinedFilled as default } +export default IconLanOutlinedFilled diff --git a/src/IconLanRounded.tsx b/src/IconLanRounded.tsx index 531508054..5295992ff 100644 --- a/src/IconLanRounded.tsx +++ b/src/IconLanRounded.tsx @@ -8,4 +8,4 @@ const IconLanRounded: React.FC = ({ ...props }) => ( ) -export { IconLanRounded as default } +export default IconLanRounded diff --git a/src/IconLanRoundedFilled.tsx b/src/IconLanRoundedFilled.tsx index 4dadfadf9..2f92fed0b 100644 --- a/src/IconLanRoundedFilled.tsx +++ b/src/IconLanRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconLanRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconLanRoundedFilled as default } +export default IconLanRoundedFilled diff --git a/src/IconLanSharp.tsx b/src/IconLanSharp.tsx index 736faaea3..d16a6e682 100644 --- a/src/IconLanSharp.tsx +++ b/src/IconLanSharp.tsx @@ -8,4 +8,4 @@ const IconLanSharp: React.FC = ({ ...props }) => ( ) -export { IconLanSharp as default } +export default IconLanSharp diff --git a/src/IconLanSharpFilled.tsx b/src/IconLanSharpFilled.tsx index eab50d3ca..af511bf64 100644 --- a/src/IconLanSharpFilled.tsx +++ b/src/IconLanSharpFilled.tsx @@ -8,4 +8,4 @@ const IconLanSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconLanSharpFilled as default } +export default IconLanSharpFilled diff --git a/src/IconLandscape2OffOutlined.tsx b/src/IconLandscape2OffOutlined.tsx index 4926b2c41..b4ae0556e 100644 --- a/src/IconLandscape2OffOutlined.tsx +++ b/src/IconLandscape2OffOutlined.tsx @@ -8,4 +8,4 @@ const IconLandscape2OffOutlined: React.FC = ({ ...props }) => ( ) -export { IconLandscape2OffOutlined as default } +export default IconLandscape2OffOutlined diff --git a/src/IconLandscape2OffOutlinedFilled.tsx b/src/IconLandscape2OffOutlinedFilled.tsx index b63c33b11..bbf894d23 100644 --- a/src/IconLandscape2OffOutlinedFilled.tsx +++ b/src/IconLandscape2OffOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconLandscape2OffOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconLandscape2OffOutlinedFilled as default } +export default IconLandscape2OffOutlinedFilled diff --git a/src/IconLandscape2OffRounded.tsx b/src/IconLandscape2OffRounded.tsx index c1e0130ed..ac22cdfab 100644 --- a/src/IconLandscape2OffRounded.tsx +++ b/src/IconLandscape2OffRounded.tsx @@ -8,4 +8,4 @@ const IconLandscape2OffRounded: React.FC = ({ ...props }) => ( ) -export { IconLandscape2OffRounded as default } +export default IconLandscape2OffRounded diff --git a/src/IconLandscape2OffRoundedFilled.tsx b/src/IconLandscape2OffRoundedFilled.tsx index 7b2e5fff6..491166ca3 100644 --- a/src/IconLandscape2OffRoundedFilled.tsx +++ b/src/IconLandscape2OffRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconLandscape2OffRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconLandscape2OffRoundedFilled as default } +export default IconLandscape2OffRoundedFilled diff --git a/src/IconLandscape2OffSharp.tsx b/src/IconLandscape2OffSharp.tsx index f5fb4dd41..2758e7b13 100644 --- a/src/IconLandscape2OffSharp.tsx +++ b/src/IconLandscape2OffSharp.tsx @@ -8,4 +8,4 @@ const IconLandscape2OffSharp: React.FC = ({ ...props }) => ( ) -export { IconLandscape2OffSharp as default } +export default IconLandscape2OffSharp diff --git a/src/IconLandscape2OffSharpFilled.tsx b/src/IconLandscape2OffSharpFilled.tsx index a7c9477a4..5fb7c8986 100644 --- a/src/IconLandscape2OffSharpFilled.tsx +++ b/src/IconLandscape2OffSharpFilled.tsx @@ -8,4 +8,4 @@ const IconLandscape2OffSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconLandscape2OffSharpFilled as default } +export default IconLandscape2OffSharpFilled diff --git a/src/IconLandscape2Outlined.tsx b/src/IconLandscape2Outlined.tsx index f73c10ecb..055cec4d4 100644 --- a/src/IconLandscape2Outlined.tsx +++ b/src/IconLandscape2Outlined.tsx @@ -8,4 +8,4 @@ const IconLandscape2Outlined: React.FC = ({ ...props }) => ( ) -export { IconLandscape2Outlined as default } +export default IconLandscape2Outlined diff --git a/src/IconLandscape2OutlinedFilled.tsx b/src/IconLandscape2OutlinedFilled.tsx index c8293784b..740eaf8af 100644 --- a/src/IconLandscape2OutlinedFilled.tsx +++ b/src/IconLandscape2OutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconLandscape2OutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconLandscape2OutlinedFilled as default } +export default IconLandscape2OutlinedFilled diff --git a/src/IconLandscape2Rounded.tsx b/src/IconLandscape2Rounded.tsx index 1e46170ee..67fd86afb 100644 --- a/src/IconLandscape2Rounded.tsx +++ b/src/IconLandscape2Rounded.tsx @@ -8,4 +8,4 @@ const IconLandscape2Rounded: React.FC = ({ ...props }) => ( ) -export { IconLandscape2Rounded as default } +export default IconLandscape2Rounded diff --git a/src/IconLandscape2RoundedFilled.tsx b/src/IconLandscape2RoundedFilled.tsx index 5e1e9f396..37dff244c 100644 --- a/src/IconLandscape2RoundedFilled.tsx +++ b/src/IconLandscape2RoundedFilled.tsx @@ -8,4 +8,4 @@ const IconLandscape2RoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconLandscape2RoundedFilled as default } +export default IconLandscape2RoundedFilled diff --git a/src/IconLandscape2Sharp.tsx b/src/IconLandscape2Sharp.tsx index 2f2c4cbc0..3bd8c445d 100644 --- a/src/IconLandscape2Sharp.tsx +++ b/src/IconLandscape2Sharp.tsx @@ -8,4 +8,4 @@ const IconLandscape2Sharp: React.FC = ({ ...props }) => ( ) -export { IconLandscape2Sharp as default } +export default IconLandscape2Sharp diff --git a/src/IconLandscape2SharpFilled.tsx b/src/IconLandscape2SharpFilled.tsx index ab2acb96a..1acf13f74 100644 --- a/src/IconLandscape2SharpFilled.tsx +++ b/src/IconLandscape2SharpFilled.tsx @@ -8,4 +8,4 @@ const IconLandscape2SharpFilled: React.FC = ({ ...props }) => ( ) -export { IconLandscape2SharpFilled as default } +export default IconLandscape2SharpFilled diff --git a/src/IconLandscapeOutlined.tsx b/src/IconLandscapeOutlined.tsx index 0c9e2f9bf..9c4af458d 100644 --- a/src/IconLandscapeOutlined.tsx +++ b/src/IconLandscapeOutlined.tsx @@ -8,4 +8,4 @@ const IconLandscapeOutlined: React.FC = ({ ...props }) => ( ) -export { IconLandscapeOutlined as default } +export default IconLandscapeOutlined diff --git a/src/IconLandscapeOutlinedFilled.tsx b/src/IconLandscapeOutlinedFilled.tsx index cf3a483ea..bffa1a6de 100644 --- a/src/IconLandscapeOutlinedFilled.tsx +++ b/src/IconLandscapeOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconLandscapeOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconLandscapeOutlinedFilled as default } +export default IconLandscapeOutlinedFilled diff --git a/src/IconLandscapeRounded.tsx b/src/IconLandscapeRounded.tsx index 3ed88cf49..e7c998d4f 100644 --- a/src/IconLandscapeRounded.tsx +++ b/src/IconLandscapeRounded.tsx @@ -8,4 +8,4 @@ const IconLandscapeRounded: React.FC = ({ ...props }) => ( ) -export { IconLandscapeRounded as default } +export default IconLandscapeRounded diff --git a/src/IconLandscapeRoundedFilled.tsx b/src/IconLandscapeRoundedFilled.tsx index 5ed6a3918..0a54533ef 100644 --- a/src/IconLandscapeRoundedFilled.tsx +++ b/src/IconLandscapeRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconLandscapeRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconLandscapeRoundedFilled as default } +export default IconLandscapeRoundedFilled diff --git a/src/IconLandscapeSharp.tsx b/src/IconLandscapeSharp.tsx index 3697826f3..49901bf22 100644 --- a/src/IconLandscapeSharp.tsx +++ b/src/IconLandscapeSharp.tsx @@ -8,4 +8,4 @@ const IconLandscapeSharp: React.FC = ({ ...props }) => ( ) -export { IconLandscapeSharp as default } +export default IconLandscapeSharp diff --git a/src/IconLandscapeSharpFilled.tsx b/src/IconLandscapeSharpFilled.tsx index cb1c7700b..29df9369a 100644 --- a/src/IconLandscapeSharpFilled.tsx +++ b/src/IconLandscapeSharpFilled.tsx @@ -8,4 +8,4 @@ const IconLandscapeSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconLandscapeSharpFilled as default } +export default IconLandscapeSharpFilled diff --git a/src/IconLandslideOutlined.tsx b/src/IconLandslideOutlined.tsx index 1b3780fed..90522b25a 100644 --- a/src/IconLandslideOutlined.tsx +++ b/src/IconLandslideOutlined.tsx @@ -8,4 +8,4 @@ const IconLandslideOutlined: React.FC = ({ ...props }) => ( ) -export { IconLandslideOutlined as default } +export default IconLandslideOutlined diff --git a/src/IconLandslideOutlinedFilled.tsx b/src/IconLandslideOutlinedFilled.tsx index b8448f91d..c1e75d4e9 100644 --- a/src/IconLandslideOutlinedFilled.tsx +++ b/src/IconLandslideOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconLandslideOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconLandslideOutlinedFilled as default } +export default IconLandslideOutlinedFilled diff --git a/src/IconLandslideRounded.tsx b/src/IconLandslideRounded.tsx index 945b37ff1..a38784ed2 100644 --- a/src/IconLandslideRounded.tsx +++ b/src/IconLandslideRounded.tsx @@ -8,4 +8,4 @@ const IconLandslideRounded: React.FC = ({ ...props }) => ( ) -export { IconLandslideRounded as default } +export default IconLandslideRounded diff --git a/src/IconLandslideRoundedFilled.tsx b/src/IconLandslideRoundedFilled.tsx index 8aa8cc8b1..1e44192b5 100644 --- a/src/IconLandslideRoundedFilled.tsx +++ b/src/IconLandslideRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconLandslideRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconLandslideRoundedFilled as default } +export default IconLandslideRoundedFilled diff --git a/src/IconLandslideSharp.tsx b/src/IconLandslideSharp.tsx index 761a0dba8..6172dfafd 100644 --- a/src/IconLandslideSharp.tsx +++ b/src/IconLandslideSharp.tsx @@ -8,4 +8,4 @@ const IconLandslideSharp: React.FC = ({ ...props }) => ( ) -export { IconLandslideSharp as default } +export default IconLandslideSharp diff --git a/src/IconLandslideSharpFilled.tsx b/src/IconLandslideSharpFilled.tsx index 000593072..7a45fd12d 100644 --- a/src/IconLandslideSharpFilled.tsx +++ b/src/IconLandslideSharpFilled.tsx @@ -8,4 +8,4 @@ const IconLandslideSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconLandslideSharpFilled as default } +export default IconLandslideSharpFilled diff --git a/src/IconLanguageChineseArrayOutlined.tsx b/src/IconLanguageChineseArrayOutlined.tsx index b20660f75..ee3f5279a 100644 --- a/src/IconLanguageChineseArrayOutlined.tsx +++ b/src/IconLanguageChineseArrayOutlined.tsx @@ -10,4 +10,4 @@ const IconLanguageChineseArrayOutlined: React.FC = ({ ) -export { IconLanguageChineseArrayOutlined as default } +export default IconLanguageChineseArrayOutlined diff --git a/src/IconLanguageChineseArrayOutlinedFilled.tsx b/src/IconLanguageChineseArrayOutlinedFilled.tsx index 449572512..55f281a96 100644 --- a/src/IconLanguageChineseArrayOutlinedFilled.tsx +++ b/src/IconLanguageChineseArrayOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconLanguageChineseArrayOutlinedFilled: React.FC = ({ ) -export { IconLanguageChineseArrayOutlinedFilled as default } +export default IconLanguageChineseArrayOutlinedFilled diff --git a/src/IconLanguageChineseArrayRounded.tsx b/src/IconLanguageChineseArrayRounded.tsx index 1187732d6..7606daa7c 100644 --- a/src/IconLanguageChineseArrayRounded.tsx +++ b/src/IconLanguageChineseArrayRounded.tsx @@ -8,4 +8,4 @@ const IconLanguageChineseArrayRounded: React.FC = ({ ...props }) => ( ) -export { IconLanguageChineseArrayRounded as default } +export default IconLanguageChineseArrayRounded diff --git a/src/IconLanguageChineseArrayRoundedFilled.tsx b/src/IconLanguageChineseArrayRoundedFilled.tsx index e7b2ea445..8f5e48393 100644 --- a/src/IconLanguageChineseArrayRoundedFilled.tsx +++ b/src/IconLanguageChineseArrayRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconLanguageChineseArrayRoundedFilled: React.FC = ({ ) -export { IconLanguageChineseArrayRoundedFilled as default } +export default IconLanguageChineseArrayRoundedFilled diff --git a/src/IconLanguageChineseArraySharp.tsx b/src/IconLanguageChineseArraySharp.tsx index 14ebd28b9..8eeeabed6 100644 --- a/src/IconLanguageChineseArraySharp.tsx +++ b/src/IconLanguageChineseArraySharp.tsx @@ -8,4 +8,4 @@ const IconLanguageChineseArraySharp: React.FC = ({ ...props }) => ( ) -export { IconLanguageChineseArraySharp as default } +export default IconLanguageChineseArraySharp diff --git a/src/IconLanguageChineseArraySharpFilled.tsx b/src/IconLanguageChineseArraySharpFilled.tsx index 319b29021..09d758fa9 100644 --- a/src/IconLanguageChineseArraySharpFilled.tsx +++ b/src/IconLanguageChineseArraySharpFilled.tsx @@ -10,4 +10,4 @@ const IconLanguageChineseArraySharpFilled: React.FC = ({ ) -export { IconLanguageChineseArraySharpFilled as default } +export default IconLanguageChineseArraySharpFilled diff --git a/src/IconLanguageChineseCangjieOutlined.tsx b/src/IconLanguageChineseCangjieOutlined.tsx index f777cef21..9cc9c4233 100644 --- a/src/IconLanguageChineseCangjieOutlined.tsx +++ b/src/IconLanguageChineseCangjieOutlined.tsx @@ -10,4 +10,4 @@ const IconLanguageChineseCangjieOutlined: React.FC = ({ ) -export { IconLanguageChineseCangjieOutlined as default } +export default IconLanguageChineseCangjieOutlined diff --git a/src/IconLanguageChineseCangjieOutlinedFilled.tsx b/src/IconLanguageChineseCangjieOutlinedFilled.tsx index 75e1ad0d7..628840753 100644 --- a/src/IconLanguageChineseCangjieOutlinedFilled.tsx +++ b/src/IconLanguageChineseCangjieOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconLanguageChineseCangjieOutlinedFilled: React.FC = ({ ) -export { IconLanguageChineseCangjieOutlinedFilled as default } +export default IconLanguageChineseCangjieOutlinedFilled diff --git a/src/IconLanguageChineseCangjieRounded.tsx b/src/IconLanguageChineseCangjieRounded.tsx index 44ad57de3..26f46ba23 100644 --- a/src/IconLanguageChineseCangjieRounded.tsx +++ b/src/IconLanguageChineseCangjieRounded.tsx @@ -10,4 +10,4 @@ const IconLanguageChineseCangjieRounded: React.FC = ({ ) -export { IconLanguageChineseCangjieRounded as default } +export default IconLanguageChineseCangjieRounded diff --git a/src/IconLanguageChineseCangjieRoundedFilled.tsx b/src/IconLanguageChineseCangjieRoundedFilled.tsx index 916668cc3..e2a9203bb 100644 --- a/src/IconLanguageChineseCangjieRoundedFilled.tsx +++ b/src/IconLanguageChineseCangjieRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconLanguageChineseCangjieRoundedFilled: React.FC = ({ ) -export { IconLanguageChineseCangjieRoundedFilled as default } +export default IconLanguageChineseCangjieRoundedFilled diff --git a/src/IconLanguageChineseCangjieSharp.tsx b/src/IconLanguageChineseCangjieSharp.tsx index cf6d7bd1b..7e8d47fae 100644 --- a/src/IconLanguageChineseCangjieSharp.tsx +++ b/src/IconLanguageChineseCangjieSharp.tsx @@ -8,4 +8,4 @@ const IconLanguageChineseCangjieSharp: React.FC = ({ ...props }) => ( ) -export { IconLanguageChineseCangjieSharp as default } +export default IconLanguageChineseCangjieSharp diff --git a/src/IconLanguageChineseCangjieSharpFilled.tsx b/src/IconLanguageChineseCangjieSharpFilled.tsx index af35bd2df..9df34adde 100644 --- a/src/IconLanguageChineseCangjieSharpFilled.tsx +++ b/src/IconLanguageChineseCangjieSharpFilled.tsx @@ -10,4 +10,4 @@ const IconLanguageChineseCangjieSharpFilled: React.FC = ({ ) -export { IconLanguageChineseCangjieSharpFilled as default } +export default IconLanguageChineseCangjieSharpFilled diff --git a/src/IconLanguageChineseDayiOutlined.tsx b/src/IconLanguageChineseDayiOutlined.tsx index 8aa394939..7efb7b0d0 100644 --- a/src/IconLanguageChineseDayiOutlined.tsx +++ b/src/IconLanguageChineseDayiOutlined.tsx @@ -8,4 +8,4 @@ const IconLanguageChineseDayiOutlined: React.FC = ({ ...props }) => ( ) -export { IconLanguageChineseDayiOutlined as default } +export default IconLanguageChineseDayiOutlined diff --git a/src/IconLanguageChineseDayiOutlinedFilled.tsx b/src/IconLanguageChineseDayiOutlinedFilled.tsx index 2d009d5e4..5f961ed28 100644 --- a/src/IconLanguageChineseDayiOutlinedFilled.tsx +++ b/src/IconLanguageChineseDayiOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconLanguageChineseDayiOutlinedFilled: React.FC = ({ ) -export { IconLanguageChineseDayiOutlinedFilled as default } +export default IconLanguageChineseDayiOutlinedFilled diff --git a/src/IconLanguageChineseDayiRounded.tsx b/src/IconLanguageChineseDayiRounded.tsx index d1b7ac2bb..5db78dab6 100644 --- a/src/IconLanguageChineseDayiRounded.tsx +++ b/src/IconLanguageChineseDayiRounded.tsx @@ -8,4 +8,4 @@ const IconLanguageChineseDayiRounded: React.FC = ({ ...props }) => ( ) -export { IconLanguageChineseDayiRounded as default } +export default IconLanguageChineseDayiRounded diff --git a/src/IconLanguageChineseDayiRoundedFilled.tsx b/src/IconLanguageChineseDayiRoundedFilled.tsx index 21301cdeb..9b9acd12c 100644 --- a/src/IconLanguageChineseDayiRoundedFilled.tsx +++ b/src/IconLanguageChineseDayiRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconLanguageChineseDayiRoundedFilled: React.FC = ({ ) -export { IconLanguageChineseDayiRoundedFilled as default } +export default IconLanguageChineseDayiRoundedFilled diff --git a/src/IconLanguageChineseDayiSharp.tsx b/src/IconLanguageChineseDayiSharp.tsx index b8fa2c59d..bae33bdf0 100644 --- a/src/IconLanguageChineseDayiSharp.tsx +++ b/src/IconLanguageChineseDayiSharp.tsx @@ -8,4 +8,4 @@ const IconLanguageChineseDayiSharp: React.FC = ({ ...props }) => ( ) -export { IconLanguageChineseDayiSharp as default } +export default IconLanguageChineseDayiSharp diff --git a/src/IconLanguageChineseDayiSharpFilled.tsx b/src/IconLanguageChineseDayiSharpFilled.tsx index da6a2090a..e2491e020 100644 --- a/src/IconLanguageChineseDayiSharpFilled.tsx +++ b/src/IconLanguageChineseDayiSharpFilled.tsx @@ -10,4 +10,4 @@ const IconLanguageChineseDayiSharpFilled: React.FC = ({ ) -export { IconLanguageChineseDayiSharpFilled as default } +export default IconLanguageChineseDayiSharpFilled diff --git a/src/IconLanguageChinesePinyinOutlined.tsx b/src/IconLanguageChinesePinyinOutlined.tsx index 52ab262d0..8a85f60ac 100644 --- a/src/IconLanguageChinesePinyinOutlined.tsx +++ b/src/IconLanguageChinesePinyinOutlined.tsx @@ -10,4 +10,4 @@ const IconLanguageChinesePinyinOutlined: React.FC = ({ ) -export { IconLanguageChinesePinyinOutlined as default } +export default IconLanguageChinesePinyinOutlined diff --git a/src/IconLanguageChinesePinyinOutlinedFilled.tsx b/src/IconLanguageChinesePinyinOutlinedFilled.tsx index afc111112..54bd6e99b 100644 --- a/src/IconLanguageChinesePinyinOutlinedFilled.tsx +++ b/src/IconLanguageChinesePinyinOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconLanguageChinesePinyinOutlinedFilled: React.FC = ({ ) -export { IconLanguageChinesePinyinOutlinedFilled as default } +export default IconLanguageChinesePinyinOutlinedFilled diff --git a/src/IconLanguageChinesePinyinRounded.tsx b/src/IconLanguageChinesePinyinRounded.tsx index befa25b81..be4242036 100644 --- a/src/IconLanguageChinesePinyinRounded.tsx +++ b/src/IconLanguageChinesePinyinRounded.tsx @@ -10,4 +10,4 @@ const IconLanguageChinesePinyinRounded: React.FC = ({ ) -export { IconLanguageChinesePinyinRounded as default } +export default IconLanguageChinesePinyinRounded diff --git a/src/IconLanguageChinesePinyinRoundedFilled.tsx b/src/IconLanguageChinesePinyinRoundedFilled.tsx index e2811b740..9da12409f 100644 --- a/src/IconLanguageChinesePinyinRoundedFilled.tsx +++ b/src/IconLanguageChinesePinyinRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconLanguageChinesePinyinRoundedFilled: React.FC = ({ ) -export { IconLanguageChinesePinyinRoundedFilled as default } +export default IconLanguageChinesePinyinRoundedFilled diff --git a/src/IconLanguageChinesePinyinSharp.tsx b/src/IconLanguageChinesePinyinSharp.tsx index f40d9b4e9..29fe85f13 100644 --- a/src/IconLanguageChinesePinyinSharp.tsx +++ b/src/IconLanguageChinesePinyinSharp.tsx @@ -8,4 +8,4 @@ const IconLanguageChinesePinyinSharp: React.FC = ({ ...props }) => ( ) -export { IconLanguageChinesePinyinSharp as default } +export default IconLanguageChinesePinyinSharp diff --git a/src/IconLanguageChinesePinyinSharpFilled.tsx b/src/IconLanguageChinesePinyinSharpFilled.tsx index 533678678..f88050878 100644 --- a/src/IconLanguageChinesePinyinSharpFilled.tsx +++ b/src/IconLanguageChinesePinyinSharpFilled.tsx @@ -10,4 +10,4 @@ const IconLanguageChinesePinyinSharpFilled: React.FC = ({ ) -export { IconLanguageChinesePinyinSharpFilled as default } +export default IconLanguageChinesePinyinSharpFilled diff --git a/src/IconLanguageChineseQuickOutlined.tsx b/src/IconLanguageChineseQuickOutlined.tsx index 550cc93c4..42d336cf9 100644 --- a/src/IconLanguageChineseQuickOutlined.tsx +++ b/src/IconLanguageChineseQuickOutlined.tsx @@ -10,4 +10,4 @@ const IconLanguageChineseQuickOutlined: React.FC = ({ ) -export { IconLanguageChineseQuickOutlined as default } +export default IconLanguageChineseQuickOutlined diff --git a/src/IconLanguageChineseQuickOutlinedFilled.tsx b/src/IconLanguageChineseQuickOutlinedFilled.tsx index 8ed1f6368..5a6b0343a 100644 --- a/src/IconLanguageChineseQuickOutlinedFilled.tsx +++ b/src/IconLanguageChineseQuickOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconLanguageChineseQuickOutlinedFilled: React.FC = ({ ) -export { IconLanguageChineseQuickOutlinedFilled as default } +export default IconLanguageChineseQuickOutlinedFilled diff --git a/src/IconLanguageChineseQuickRounded.tsx b/src/IconLanguageChineseQuickRounded.tsx index 3fafb2638..662e99b4c 100644 --- a/src/IconLanguageChineseQuickRounded.tsx +++ b/src/IconLanguageChineseQuickRounded.tsx @@ -8,4 +8,4 @@ const IconLanguageChineseQuickRounded: React.FC = ({ ...props }) => ( ) -export { IconLanguageChineseQuickRounded as default } +export default IconLanguageChineseQuickRounded diff --git a/src/IconLanguageChineseQuickRoundedFilled.tsx b/src/IconLanguageChineseQuickRoundedFilled.tsx index ff354548d..97483be3c 100644 --- a/src/IconLanguageChineseQuickRoundedFilled.tsx +++ b/src/IconLanguageChineseQuickRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconLanguageChineseQuickRoundedFilled: React.FC = ({ ) -export { IconLanguageChineseQuickRoundedFilled as default } +export default IconLanguageChineseQuickRoundedFilled diff --git a/src/IconLanguageChineseQuickSharp.tsx b/src/IconLanguageChineseQuickSharp.tsx index 0c7cf85fe..0b8ffa5af 100644 --- a/src/IconLanguageChineseQuickSharp.tsx +++ b/src/IconLanguageChineseQuickSharp.tsx @@ -8,4 +8,4 @@ const IconLanguageChineseQuickSharp: React.FC = ({ ...props }) => ( ) -export { IconLanguageChineseQuickSharp as default } +export default IconLanguageChineseQuickSharp diff --git a/src/IconLanguageChineseQuickSharpFilled.tsx b/src/IconLanguageChineseQuickSharpFilled.tsx index 4cbd5cb29..4332fc72b 100644 --- a/src/IconLanguageChineseQuickSharpFilled.tsx +++ b/src/IconLanguageChineseQuickSharpFilled.tsx @@ -10,4 +10,4 @@ const IconLanguageChineseQuickSharpFilled: React.FC = ({ ) -export { IconLanguageChineseQuickSharpFilled as default } +export default IconLanguageChineseQuickSharpFilled diff --git a/src/IconLanguageChineseWubiOutlined.tsx b/src/IconLanguageChineseWubiOutlined.tsx index c3c5b3686..e9e4e5e36 100644 --- a/src/IconLanguageChineseWubiOutlined.tsx +++ b/src/IconLanguageChineseWubiOutlined.tsx @@ -8,4 +8,4 @@ const IconLanguageChineseWubiOutlined: React.FC = ({ ...props }) => ( ) -export { IconLanguageChineseWubiOutlined as default } +export default IconLanguageChineseWubiOutlined diff --git a/src/IconLanguageChineseWubiOutlinedFilled.tsx b/src/IconLanguageChineseWubiOutlinedFilled.tsx index 6460f0477..fbeafea64 100644 --- a/src/IconLanguageChineseWubiOutlinedFilled.tsx +++ b/src/IconLanguageChineseWubiOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconLanguageChineseWubiOutlinedFilled: React.FC = ({ ) -export { IconLanguageChineseWubiOutlinedFilled as default } +export default IconLanguageChineseWubiOutlinedFilled diff --git a/src/IconLanguageChineseWubiRounded.tsx b/src/IconLanguageChineseWubiRounded.tsx index c8c9136c7..175bdc784 100644 --- a/src/IconLanguageChineseWubiRounded.tsx +++ b/src/IconLanguageChineseWubiRounded.tsx @@ -8,4 +8,4 @@ const IconLanguageChineseWubiRounded: React.FC = ({ ...props }) => ( ) -export { IconLanguageChineseWubiRounded as default } +export default IconLanguageChineseWubiRounded diff --git a/src/IconLanguageChineseWubiRoundedFilled.tsx b/src/IconLanguageChineseWubiRoundedFilled.tsx index 73eb49a38..d9355e7e4 100644 --- a/src/IconLanguageChineseWubiRoundedFilled.tsx +++ b/src/IconLanguageChineseWubiRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconLanguageChineseWubiRoundedFilled: React.FC = ({ ) -export { IconLanguageChineseWubiRoundedFilled as default } +export default IconLanguageChineseWubiRoundedFilled diff --git a/src/IconLanguageChineseWubiSharp.tsx b/src/IconLanguageChineseWubiSharp.tsx index 1d71bf580..a0a4cd8cb 100644 --- a/src/IconLanguageChineseWubiSharp.tsx +++ b/src/IconLanguageChineseWubiSharp.tsx @@ -8,4 +8,4 @@ const IconLanguageChineseWubiSharp: React.FC = ({ ...props }) => ( ) -export { IconLanguageChineseWubiSharp as default } +export default IconLanguageChineseWubiSharp diff --git a/src/IconLanguageChineseWubiSharpFilled.tsx b/src/IconLanguageChineseWubiSharpFilled.tsx index c13ad9e46..ecc323d17 100644 --- a/src/IconLanguageChineseWubiSharpFilled.tsx +++ b/src/IconLanguageChineseWubiSharpFilled.tsx @@ -10,4 +10,4 @@ const IconLanguageChineseWubiSharpFilled: React.FC = ({ ) -export { IconLanguageChineseWubiSharpFilled as default } +export default IconLanguageChineseWubiSharpFilled diff --git a/src/IconLanguageFrenchOutlined.tsx b/src/IconLanguageFrenchOutlined.tsx index 3c9ffd050..c386ad7d8 100644 --- a/src/IconLanguageFrenchOutlined.tsx +++ b/src/IconLanguageFrenchOutlined.tsx @@ -8,4 +8,4 @@ const IconLanguageFrenchOutlined: React.FC = ({ ...props }) => ( ) -export { IconLanguageFrenchOutlined as default } +export default IconLanguageFrenchOutlined diff --git a/src/IconLanguageFrenchOutlinedFilled.tsx b/src/IconLanguageFrenchOutlinedFilled.tsx index 84f570439..1183befe4 100644 --- a/src/IconLanguageFrenchOutlinedFilled.tsx +++ b/src/IconLanguageFrenchOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconLanguageFrenchOutlinedFilled: React.FC = ({ ) -export { IconLanguageFrenchOutlinedFilled as default } +export default IconLanguageFrenchOutlinedFilled diff --git a/src/IconLanguageFrenchRounded.tsx b/src/IconLanguageFrenchRounded.tsx index 97611341e..008d02e29 100644 --- a/src/IconLanguageFrenchRounded.tsx +++ b/src/IconLanguageFrenchRounded.tsx @@ -8,4 +8,4 @@ const IconLanguageFrenchRounded: React.FC = ({ ...props }) => ( ) -export { IconLanguageFrenchRounded as default } +export default IconLanguageFrenchRounded diff --git a/src/IconLanguageFrenchRoundedFilled.tsx b/src/IconLanguageFrenchRoundedFilled.tsx index c091b8963..59f9370cc 100644 --- a/src/IconLanguageFrenchRoundedFilled.tsx +++ b/src/IconLanguageFrenchRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconLanguageFrenchRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconLanguageFrenchRoundedFilled as default } +export default IconLanguageFrenchRoundedFilled diff --git a/src/IconLanguageFrenchSharp.tsx b/src/IconLanguageFrenchSharp.tsx index 09c021d40..4a9170d45 100644 --- a/src/IconLanguageFrenchSharp.tsx +++ b/src/IconLanguageFrenchSharp.tsx @@ -8,4 +8,4 @@ const IconLanguageFrenchSharp: React.FC = ({ ...props }) => ( ) -export { IconLanguageFrenchSharp as default } +export default IconLanguageFrenchSharp diff --git a/src/IconLanguageFrenchSharpFilled.tsx b/src/IconLanguageFrenchSharpFilled.tsx index aa65c9efa..72e477720 100644 --- a/src/IconLanguageFrenchSharpFilled.tsx +++ b/src/IconLanguageFrenchSharpFilled.tsx @@ -8,4 +8,4 @@ const IconLanguageFrenchSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconLanguageFrenchSharpFilled as default } +export default IconLanguageFrenchSharpFilled diff --git a/src/IconLanguageGbEnglishOutlined.tsx b/src/IconLanguageGbEnglishOutlined.tsx index 82bc0054e..f3e60ee11 100644 --- a/src/IconLanguageGbEnglishOutlined.tsx +++ b/src/IconLanguageGbEnglishOutlined.tsx @@ -8,4 +8,4 @@ const IconLanguageGbEnglishOutlined: React.FC = ({ ...props }) => ( ) -export { IconLanguageGbEnglishOutlined as default } +export default IconLanguageGbEnglishOutlined diff --git a/src/IconLanguageGbEnglishOutlinedFilled.tsx b/src/IconLanguageGbEnglishOutlinedFilled.tsx index 37e6aead4..f322e56ef 100644 --- a/src/IconLanguageGbEnglishOutlinedFilled.tsx +++ b/src/IconLanguageGbEnglishOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconLanguageGbEnglishOutlinedFilled: React.FC = ({ ) -export { IconLanguageGbEnglishOutlinedFilled as default } +export default IconLanguageGbEnglishOutlinedFilled diff --git a/src/IconLanguageGbEnglishRounded.tsx b/src/IconLanguageGbEnglishRounded.tsx index 87a320259..9724e71e2 100644 --- a/src/IconLanguageGbEnglishRounded.tsx +++ b/src/IconLanguageGbEnglishRounded.tsx @@ -8,4 +8,4 @@ const IconLanguageGbEnglishRounded: React.FC = ({ ...props }) => ( ) -export { IconLanguageGbEnglishRounded as default } +export default IconLanguageGbEnglishRounded diff --git a/src/IconLanguageGbEnglishRoundedFilled.tsx b/src/IconLanguageGbEnglishRoundedFilled.tsx index bfab61138..819503b9f 100644 --- a/src/IconLanguageGbEnglishRoundedFilled.tsx +++ b/src/IconLanguageGbEnglishRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconLanguageGbEnglishRoundedFilled: React.FC = ({ ) -export { IconLanguageGbEnglishRoundedFilled as default } +export default IconLanguageGbEnglishRoundedFilled diff --git a/src/IconLanguageGbEnglishSharp.tsx b/src/IconLanguageGbEnglishSharp.tsx index ad976fbfd..2a31a66b0 100644 --- a/src/IconLanguageGbEnglishSharp.tsx +++ b/src/IconLanguageGbEnglishSharp.tsx @@ -8,4 +8,4 @@ const IconLanguageGbEnglishSharp: React.FC = ({ ...props }) => ( ) -export { IconLanguageGbEnglishSharp as default } +export default IconLanguageGbEnglishSharp diff --git a/src/IconLanguageGbEnglishSharpFilled.tsx b/src/IconLanguageGbEnglishSharpFilled.tsx index bf143547e..62d59fd98 100644 --- a/src/IconLanguageGbEnglishSharpFilled.tsx +++ b/src/IconLanguageGbEnglishSharpFilled.tsx @@ -10,4 +10,4 @@ const IconLanguageGbEnglishSharpFilled: React.FC = ({ ) -export { IconLanguageGbEnglishSharpFilled as default } +export default IconLanguageGbEnglishSharpFilled diff --git a/src/IconLanguageInternationalOutlined.tsx b/src/IconLanguageInternationalOutlined.tsx index 26a6e7f79..395beea4c 100644 --- a/src/IconLanguageInternationalOutlined.tsx +++ b/src/IconLanguageInternationalOutlined.tsx @@ -10,4 +10,4 @@ const IconLanguageInternationalOutlined: React.FC = ({ ) -export { IconLanguageInternationalOutlined as default } +export default IconLanguageInternationalOutlined diff --git a/src/IconLanguageInternationalOutlinedFilled.tsx b/src/IconLanguageInternationalOutlinedFilled.tsx index 8777c1c0f..87e770088 100644 --- a/src/IconLanguageInternationalOutlinedFilled.tsx +++ b/src/IconLanguageInternationalOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconLanguageInternationalOutlinedFilled: React.FC = ({ ) -export { IconLanguageInternationalOutlinedFilled as default } +export default IconLanguageInternationalOutlinedFilled diff --git a/src/IconLanguageInternationalRounded.tsx b/src/IconLanguageInternationalRounded.tsx index 11f93f443..0c586a9fb 100644 --- a/src/IconLanguageInternationalRounded.tsx +++ b/src/IconLanguageInternationalRounded.tsx @@ -10,4 +10,4 @@ const IconLanguageInternationalRounded: React.FC = ({ ) -export { IconLanguageInternationalRounded as default } +export default IconLanguageInternationalRounded diff --git a/src/IconLanguageInternationalRoundedFilled.tsx b/src/IconLanguageInternationalRoundedFilled.tsx index a1b2a0f3e..394122cd7 100644 --- a/src/IconLanguageInternationalRoundedFilled.tsx +++ b/src/IconLanguageInternationalRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconLanguageInternationalRoundedFilled: React.FC = ({ ) -export { IconLanguageInternationalRoundedFilled as default } +export default IconLanguageInternationalRoundedFilled diff --git a/src/IconLanguageInternationalSharp.tsx b/src/IconLanguageInternationalSharp.tsx index 0ea769ce9..5f5c9df26 100644 --- a/src/IconLanguageInternationalSharp.tsx +++ b/src/IconLanguageInternationalSharp.tsx @@ -8,4 +8,4 @@ const IconLanguageInternationalSharp: React.FC = ({ ...props }) => ( ) -export { IconLanguageInternationalSharp as default } +export default IconLanguageInternationalSharp diff --git a/src/IconLanguageInternationalSharpFilled.tsx b/src/IconLanguageInternationalSharpFilled.tsx index e71df5351..47f8f8624 100644 --- a/src/IconLanguageInternationalSharpFilled.tsx +++ b/src/IconLanguageInternationalSharpFilled.tsx @@ -10,4 +10,4 @@ const IconLanguageInternationalSharpFilled: React.FC = ({ ) -export { IconLanguageInternationalSharpFilled as default } +export default IconLanguageInternationalSharpFilled diff --git a/src/IconLanguageJapaneseKanaOutlined.tsx b/src/IconLanguageJapaneseKanaOutlined.tsx index 757b5100d..ab8af984d 100644 --- a/src/IconLanguageJapaneseKanaOutlined.tsx +++ b/src/IconLanguageJapaneseKanaOutlined.tsx @@ -10,4 +10,4 @@ const IconLanguageJapaneseKanaOutlined: React.FC = ({ ) -export { IconLanguageJapaneseKanaOutlined as default } +export default IconLanguageJapaneseKanaOutlined diff --git a/src/IconLanguageJapaneseKanaOutlinedFilled.tsx b/src/IconLanguageJapaneseKanaOutlinedFilled.tsx index 3172a957c..7e3aaca30 100644 --- a/src/IconLanguageJapaneseKanaOutlinedFilled.tsx +++ b/src/IconLanguageJapaneseKanaOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconLanguageJapaneseKanaOutlinedFilled: React.FC = ({ ) -export { IconLanguageJapaneseKanaOutlinedFilled as default } +export default IconLanguageJapaneseKanaOutlinedFilled diff --git a/src/IconLanguageJapaneseKanaRounded.tsx b/src/IconLanguageJapaneseKanaRounded.tsx index 570b7c0d4..1dd56fdef 100644 --- a/src/IconLanguageJapaneseKanaRounded.tsx +++ b/src/IconLanguageJapaneseKanaRounded.tsx @@ -8,4 +8,4 @@ const IconLanguageJapaneseKanaRounded: React.FC = ({ ...props }) => ( ) -export { IconLanguageJapaneseKanaRounded as default } +export default IconLanguageJapaneseKanaRounded diff --git a/src/IconLanguageJapaneseKanaRoundedFilled.tsx b/src/IconLanguageJapaneseKanaRoundedFilled.tsx index 8ed193871..97e963690 100644 --- a/src/IconLanguageJapaneseKanaRoundedFilled.tsx +++ b/src/IconLanguageJapaneseKanaRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconLanguageJapaneseKanaRoundedFilled: React.FC = ({ ) -export { IconLanguageJapaneseKanaRoundedFilled as default } +export default IconLanguageJapaneseKanaRoundedFilled diff --git a/src/IconLanguageJapaneseKanaSharp.tsx b/src/IconLanguageJapaneseKanaSharp.tsx index 506f8df55..74276eec4 100644 --- a/src/IconLanguageJapaneseKanaSharp.tsx +++ b/src/IconLanguageJapaneseKanaSharp.tsx @@ -8,4 +8,4 @@ const IconLanguageJapaneseKanaSharp: React.FC = ({ ...props }) => ( ) -export { IconLanguageJapaneseKanaSharp as default } +export default IconLanguageJapaneseKanaSharp diff --git a/src/IconLanguageJapaneseKanaSharpFilled.tsx b/src/IconLanguageJapaneseKanaSharpFilled.tsx index 35006819f..3ed2d087a 100644 --- a/src/IconLanguageJapaneseKanaSharpFilled.tsx +++ b/src/IconLanguageJapaneseKanaSharpFilled.tsx @@ -10,4 +10,4 @@ const IconLanguageJapaneseKanaSharpFilled: React.FC = ({ ) -export { IconLanguageJapaneseKanaSharpFilled as default } +export default IconLanguageJapaneseKanaSharpFilled diff --git a/src/IconLanguageKoreanLatinOutlined.tsx b/src/IconLanguageKoreanLatinOutlined.tsx index d2122e46d..017b6dc47 100644 --- a/src/IconLanguageKoreanLatinOutlined.tsx +++ b/src/IconLanguageKoreanLatinOutlined.tsx @@ -8,4 +8,4 @@ const IconLanguageKoreanLatinOutlined: React.FC = ({ ...props }) => ( ) -export { IconLanguageKoreanLatinOutlined as default } +export default IconLanguageKoreanLatinOutlined diff --git a/src/IconLanguageKoreanLatinOutlinedFilled.tsx b/src/IconLanguageKoreanLatinOutlinedFilled.tsx index d28f9aa07..6286b2468 100644 --- a/src/IconLanguageKoreanLatinOutlinedFilled.tsx +++ b/src/IconLanguageKoreanLatinOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconLanguageKoreanLatinOutlinedFilled: React.FC = ({ ) -export { IconLanguageKoreanLatinOutlinedFilled as default } +export default IconLanguageKoreanLatinOutlinedFilled diff --git a/src/IconLanguageKoreanLatinRounded.tsx b/src/IconLanguageKoreanLatinRounded.tsx index 8a865e25e..f0f12581e 100644 --- a/src/IconLanguageKoreanLatinRounded.tsx +++ b/src/IconLanguageKoreanLatinRounded.tsx @@ -8,4 +8,4 @@ const IconLanguageKoreanLatinRounded: React.FC = ({ ...props }) => ( ) -export { IconLanguageKoreanLatinRounded as default } +export default IconLanguageKoreanLatinRounded diff --git a/src/IconLanguageKoreanLatinRoundedFilled.tsx b/src/IconLanguageKoreanLatinRoundedFilled.tsx index f9dde2c1d..fb37b0afc 100644 --- a/src/IconLanguageKoreanLatinRoundedFilled.tsx +++ b/src/IconLanguageKoreanLatinRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconLanguageKoreanLatinRoundedFilled: React.FC = ({ ) -export { IconLanguageKoreanLatinRoundedFilled as default } +export default IconLanguageKoreanLatinRoundedFilled diff --git a/src/IconLanguageKoreanLatinSharp.tsx b/src/IconLanguageKoreanLatinSharp.tsx index 79ae9c756..5080999be 100644 --- a/src/IconLanguageKoreanLatinSharp.tsx +++ b/src/IconLanguageKoreanLatinSharp.tsx @@ -8,4 +8,4 @@ const IconLanguageKoreanLatinSharp: React.FC = ({ ...props }) => ( ) -export { IconLanguageKoreanLatinSharp as default } +export default IconLanguageKoreanLatinSharp diff --git a/src/IconLanguageKoreanLatinSharpFilled.tsx b/src/IconLanguageKoreanLatinSharpFilled.tsx index befddfefd..b48e00f9f 100644 --- a/src/IconLanguageKoreanLatinSharpFilled.tsx +++ b/src/IconLanguageKoreanLatinSharpFilled.tsx @@ -10,4 +10,4 @@ const IconLanguageKoreanLatinSharpFilled: React.FC = ({ ) -export { IconLanguageKoreanLatinSharpFilled as default } +export default IconLanguageKoreanLatinSharpFilled diff --git a/src/IconLanguageOutlined.tsx b/src/IconLanguageOutlined.tsx index 4e241ca2a..f609b5f64 100644 --- a/src/IconLanguageOutlined.tsx +++ b/src/IconLanguageOutlined.tsx @@ -8,4 +8,4 @@ const IconLanguageOutlined: React.FC = ({ ...props }) => ( ) -export { IconLanguageOutlined as default } +export default IconLanguageOutlined diff --git a/src/IconLanguageOutlinedFilled.tsx b/src/IconLanguageOutlinedFilled.tsx index b98980fd7..8413651b0 100644 --- a/src/IconLanguageOutlinedFilled.tsx +++ b/src/IconLanguageOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconLanguageOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconLanguageOutlinedFilled as default } +export default IconLanguageOutlinedFilled diff --git a/src/IconLanguagePinyinOutlined.tsx b/src/IconLanguagePinyinOutlined.tsx index a71423d0a..e34004393 100644 --- a/src/IconLanguagePinyinOutlined.tsx +++ b/src/IconLanguagePinyinOutlined.tsx @@ -8,4 +8,4 @@ const IconLanguagePinyinOutlined: React.FC = ({ ...props }) => ( ) -export { IconLanguagePinyinOutlined as default } +export default IconLanguagePinyinOutlined diff --git a/src/IconLanguagePinyinOutlinedFilled.tsx b/src/IconLanguagePinyinOutlinedFilled.tsx index b07d5084d..d129a19c0 100644 --- a/src/IconLanguagePinyinOutlinedFilled.tsx +++ b/src/IconLanguagePinyinOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconLanguagePinyinOutlinedFilled: React.FC = ({ ) -export { IconLanguagePinyinOutlinedFilled as default } +export default IconLanguagePinyinOutlinedFilled diff --git a/src/IconLanguagePinyinRounded.tsx b/src/IconLanguagePinyinRounded.tsx index fde03efe5..aa2f10431 100644 --- a/src/IconLanguagePinyinRounded.tsx +++ b/src/IconLanguagePinyinRounded.tsx @@ -8,4 +8,4 @@ const IconLanguagePinyinRounded: React.FC = ({ ...props }) => ( ) -export { IconLanguagePinyinRounded as default } +export default IconLanguagePinyinRounded diff --git a/src/IconLanguagePinyinRoundedFilled.tsx b/src/IconLanguagePinyinRoundedFilled.tsx index 718f27500..6da4c02fd 100644 --- a/src/IconLanguagePinyinRoundedFilled.tsx +++ b/src/IconLanguagePinyinRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconLanguagePinyinRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconLanguagePinyinRoundedFilled as default } +export default IconLanguagePinyinRoundedFilled diff --git a/src/IconLanguagePinyinSharp.tsx b/src/IconLanguagePinyinSharp.tsx index 1ffbfe033..c04e31916 100644 --- a/src/IconLanguagePinyinSharp.tsx +++ b/src/IconLanguagePinyinSharp.tsx @@ -8,4 +8,4 @@ const IconLanguagePinyinSharp: React.FC = ({ ...props }) => ( ) -export { IconLanguagePinyinSharp as default } +export default IconLanguagePinyinSharp diff --git a/src/IconLanguagePinyinSharpFilled.tsx b/src/IconLanguagePinyinSharpFilled.tsx index 67b0222f9..8d0b905c6 100644 --- a/src/IconLanguagePinyinSharpFilled.tsx +++ b/src/IconLanguagePinyinSharpFilled.tsx @@ -8,4 +8,4 @@ const IconLanguagePinyinSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconLanguagePinyinSharpFilled as default } +export default IconLanguagePinyinSharpFilled diff --git a/src/IconLanguageRounded.tsx b/src/IconLanguageRounded.tsx index cb8e9a46b..7c1198af9 100644 --- a/src/IconLanguageRounded.tsx +++ b/src/IconLanguageRounded.tsx @@ -8,4 +8,4 @@ const IconLanguageRounded: React.FC = ({ ...props }) => ( ) -export { IconLanguageRounded as default } +export default IconLanguageRounded diff --git a/src/IconLanguageRoundedFilled.tsx b/src/IconLanguageRoundedFilled.tsx index 44ee6f24c..aace5711e 100644 --- a/src/IconLanguageRoundedFilled.tsx +++ b/src/IconLanguageRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconLanguageRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconLanguageRoundedFilled as default } +export default IconLanguageRoundedFilled diff --git a/src/IconLanguageSharp.tsx b/src/IconLanguageSharp.tsx index 9cc7080fe..01fc8ea94 100644 --- a/src/IconLanguageSharp.tsx +++ b/src/IconLanguageSharp.tsx @@ -8,4 +8,4 @@ const IconLanguageSharp: React.FC = ({ ...props }) => ( ) -export { IconLanguageSharp as default } +export default IconLanguageSharp diff --git a/src/IconLanguageSharpFilled.tsx b/src/IconLanguageSharpFilled.tsx index f139c0e21..daf9ee3d9 100644 --- a/src/IconLanguageSharpFilled.tsx +++ b/src/IconLanguageSharpFilled.tsx @@ -8,4 +8,4 @@ const IconLanguageSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconLanguageSharpFilled as default } +export default IconLanguageSharpFilled diff --git a/src/IconLanguageSpanishOutlined.tsx b/src/IconLanguageSpanishOutlined.tsx index c91f09207..a77e951fb 100644 --- a/src/IconLanguageSpanishOutlined.tsx +++ b/src/IconLanguageSpanishOutlined.tsx @@ -8,4 +8,4 @@ const IconLanguageSpanishOutlined: React.FC = ({ ...props }) => ( ) -export { IconLanguageSpanishOutlined as default } +export default IconLanguageSpanishOutlined diff --git a/src/IconLanguageSpanishOutlinedFilled.tsx b/src/IconLanguageSpanishOutlinedFilled.tsx index 72c0ffa35..c19fcc8c3 100644 --- a/src/IconLanguageSpanishOutlinedFilled.tsx +++ b/src/IconLanguageSpanishOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconLanguageSpanishOutlinedFilled: React.FC = ({ ) -export { IconLanguageSpanishOutlinedFilled as default } +export default IconLanguageSpanishOutlinedFilled diff --git a/src/IconLanguageSpanishRounded.tsx b/src/IconLanguageSpanishRounded.tsx index d08a54c81..87b121e64 100644 --- a/src/IconLanguageSpanishRounded.tsx +++ b/src/IconLanguageSpanishRounded.tsx @@ -8,4 +8,4 @@ const IconLanguageSpanishRounded: React.FC = ({ ...props }) => ( ) -export { IconLanguageSpanishRounded as default } +export default IconLanguageSpanishRounded diff --git a/src/IconLanguageSpanishRoundedFilled.tsx b/src/IconLanguageSpanishRoundedFilled.tsx index 2fb8dcf67..22562f31c 100644 --- a/src/IconLanguageSpanishRoundedFilled.tsx +++ b/src/IconLanguageSpanishRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconLanguageSpanishRoundedFilled: React.FC = ({ ) -export { IconLanguageSpanishRoundedFilled as default } +export default IconLanguageSpanishRoundedFilled diff --git a/src/IconLanguageSpanishSharp.tsx b/src/IconLanguageSpanishSharp.tsx index 748e862ab..cf9fc4f3c 100644 --- a/src/IconLanguageSpanishSharp.tsx +++ b/src/IconLanguageSpanishSharp.tsx @@ -8,4 +8,4 @@ const IconLanguageSpanishSharp: React.FC = ({ ...props }) => ( ) -export { IconLanguageSpanishSharp as default } +export default IconLanguageSpanishSharp diff --git a/src/IconLanguageSpanishSharpFilled.tsx b/src/IconLanguageSpanishSharpFilled.tsx index 8020677f5..dbd4a7621 100644 --- a/src/IconLanguageSpanishSharpFilled.tsx +++ b/src/IconLanguageSpanishSharpFilled.tsx @@ -8,4 +8,4 @@ const IconLanguageSpanishSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconLanguageSpanishSharpFilled as default } +export default IconLanguageSpanishSharpFilled diff --git a/src/IconLanguageUsColemakOutlined.tsx b/src/IconLanguageUsColemakOutlined.tsx index c9dfaf47a..d11960b68 100644 --- a/src/IconLanguageUsColemakOutlined.tsx +++ b/src/IconLanguageUsColemakOutlined.tsx @@ -8,4 +8,4 @@ const IconLanguageUsColemakOutlined: React.FC = ({ ...props }) => ( ) -export { IconLanguageUsColemakOutlined as default } +export default IconLanguageUsColemakOutlined diff --git a/src/IconLanguageUsColemakOutlinedFilled.tsx b/src/IconLanguageUsColemakOutlinedFilled.tsx index 8e6ad3324..cf7b610ec 100644 --- a/src/IconLanguageUsColemakOutlinedFilled.tsx +++ b/src/IconLanguageUsColemakOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconLanguageUsColemakOutlinedFilled: React.FC = ({ ) -export { IconLanguageUsColemakOutlinedFilled as default } +export default IconLanguageUsColemakOutlinedFilled diff --git a/src/IconLanguageUsColemakRounded.tsx b/src/IconLanguageUsColemakRounded.tsx index 87957f672..8b66ffa7d 100644 --- a/src/IconLanguageUsColemakRounded.tsx +++ b/src/IconLanguageUsColemakRounded.tsx @@ -8,4 +8,4 @@ const IconLanguageUsColemakRounded: React.FC = ({ ...props }) => ( ) -export { IconLanguageUsColemakRounded as default } +export default IconLanguageUsColemakRounded diff --git a/src/IconLanguageUsColemakRoundedFilled.tsx b/src/IconLanguageUsColemakRoundedFilled.tsx index 5057c33da..277c38fcd 100644 --- a/src/IconLanguageUsColemakRoundedFilled.tsx +++ b/src/IconLanguageUsColemakRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconLanguageUsColemakRoundedFilled: React.FC = ({ ) -export { IconLanguageUsColemakRoundedFilled as default } +export default IconLanguageUsColemakRoundedFilled diff --git a/src/IconLanguageUsColemakSharp.tsx b/src/IconLanguageUsColemakSharp.tsx index 651cb4568..14a1e5bd1 100644 --- a/src/IconLanguageUsColemakSharp.tsx +++ b/src/IconLanguageUsColemakSharp.tsx @@ -8,4 +8,4 @@ const IconLanguageUsColemakSharp: React.FC = ({ ...props }) => ( ) -export { IconLanguageUsColemakSharp as default } +export default IconLanguageUsColemakSharp diff --git a/src/IconLanguageUsColemakSharpFilled.tsx b/src/IconLanguageUsColemakSharpFilled.tsx index 6f0fb1258..a3b490cd3 100644 --- a/src/IconLanguageUsColemakSharpFilled.tsx +++ b/src/IconLanguageUsColemakSharpFilled.tsx @@ -10,4 +10,4 @@ const IconLanguageUsColemakSharpFilled: React.FC = ({ ) -export { IconLanguageUsColemakSharpFilled as default } +export default IconLanguageUsColemakSharpFilled diff --git a/src/IconLanguageUsDvorakOutlined.tsx b/src/IconLanguageUsDvorakOutlined.tsx index 217187197..d3c94af2f 100644 --- a/src/IconLanguageUsDvorakOutlined.tsx +++ b/src/IconLanguageUsDvorakOutlined.tsx @@ -8,4 +8,4 @@ const IconLanguageUsDvorakOutlined: React.FC = ({ ...props }) => ( ) -export { IconLanguageUsDvorakOutlined as default } +export default IconLanguageUsDvorakOutlined diff --git a/src/IconLanguageUsDvorakOutlinedFilled.tsx b/src/IconLanguageUsDvorakOutlinedFilled.tsx index 6cf3959cf..f8f161dcc 100644 --- a/src/IconLanguageUsDvorakOutlinedFilled.tsx +++ b/src/IconLanguageUsDvorakOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconLanguageUsDvorakOutlinedFilled: React.FC = ({ ) -export { IconLanguageUsDvorakOutlinedFilled as default } +export default IconLanguageUsDvorakOutlinedFilled diff --git a/src/IconLanguageUsDvorakRounded.tsx b/src/IconLanguageUsDvorakRounded.tsx index e6cd43528..be57874d3 100644 --- a/src/IconLanguageUsDvorakRounded.tsx +++ b/src/IconLanguageUsDvorakRounded.tsx @@ -8,4 +8,4 @@ const IconLanguageUsDvorakRounded: React.FC = ({ ...props }) => ( ) -export { IconLanguageUsDvorakRounded as default } +export default IconLanguageUsDvorakRounded diff --git a/src/IconLanguageUsDvorakRoundedFilled.tsx b/src/IconLanguageUsDvorakRoundedFilled.tsx index 9f36c0897..b68327d7f 100644 --- a/src/IconLanguageUsDvorakRoundedFilled.tsx +++ b/src/IconLanguageUsDvorakRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconLanguageUsDvorakRoundedFilled: React.FC = ({ ) -export { IconLanguageUsDvorakRoundedFilled as default } +export default IconLanguageUsDvorakRoundedFilled diff --git a/src/IconLanguageUsDvorakSharp.tsx b/src/IconLanguageUsDvorakSharp.tsx index 8e098b07a..f93766088 100644 --- a/src/IconLanguageUsDvorakSharp.tsx +++ b/src/IconLanguageUsDvorakSharp.tsx @@ -8,4 +8,4 @@ const IconLanguageUsDvorakSharp: React.FC = ({ ...props }) => ( ) -export { IconLanguageUsDvorakSharp as default } +export default IconLanguageUsDvorakSharp diff --git a/src/IconLanguageUsDvorakSharpFilled.tsx b/src/IconLanguageUsDvorakSharpFilled.tsx index 326f190c6..f3e68ba3f 100644 --- a/src/IconLanguageUsDvorakSharpFilled.tsx +++ b/src/IconLanguageUsDvorakSharpFilled.tsx @@ -8,4 +8,4 @@ const IconLanguageUsDvorakSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconLanguageUsDvorakSharpFilled as default } +export default IconLanguageUsDvorakSharpFilled diff --git a/src/IconLanguageUsOutlined.tsx b/src/IconLanguageUsOutlined.tsx index 86a1d318f..967cd2d15 100644 --- a/src/IconLanguageUsOutlined.tsx +++ b/src/IconLanguageUsOutlined.tsx @@ -8,4 +8,4 @@ const IconLanguageUsOutlined: React.FC = ({ ...props }) => ( ) -export { IconLanguageUsOutlined as default } +export default IconLanguageUsOutlined diff --git a/src/IconLanguageUsOutlinedFilled.tsx b/src/IconLanguageUsOutlinedFilled.tsx index f22ed76ac..1a305f1b1 100644 --- a/src/IconLanguageUsOutlinedFilled.tsx +++ b/src/IconLanguageUsOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconLanguageUsOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconLanguageUsOutlinedFilled as default } +export default IconLanguageUsOutlinedFilled diff --git a/src/IconLanguageUsRounded.tsx b/src/IconLanguageUsRounded.tsx index db07d6890..ce79c05ec 100644 --- a/src/IconLanguageUsRounded.tsx +++ b/src/IconLanguageUsRounded.tsx @@ -8,4 +8,4 @@ const IconLanguageUsRounded: React.FC = ({ ...props }) => ( ) -export { IconLanguageUsRounded as default } +export default IconLanguageUsRounded diff --git a/src/IconLanguageUsRoundedFilled.tsx b/src/IconLanguageUsRoundedFilled.tsx index 12a77783c..4ff9bcf95 100644 --- a/src/IconLanguageUsRoundedFilled.tsx +++ b/src/IconLanguageUsRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconLanguageUsRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconLanguageUsRoundedFilled as default } +export default IconLanguageUsRoundedFilled diff --git a/src/IconLanguageUsSharp.tsx b/src/IconLanguageUsSharp.tsx index b47fb9cd7..0b1f3df20 100644 --- a/src/IconLanguageUsSharp.tsx +++ b/src/IconLanguageUsSharp.tsx @@ -8,4 +8,4 @@ const IconLanguageUsSharp: React.FC = ({ ...props }) => ( ) -export { IconLanguageUsSharp as default } +export default IconLanguageUsSharp diff --git a/src/IconLanguageUsSharpFilled.tsx b/src/IconLanguageUsSharpFilled.tsx index 7437e95cc..54654f5a3 100644 --- a/src/IconLanguageUsSharpFilled.tsx +++ b/src/IconLanguageUsSharpFilled.tsx @@ -8,4 +8,4 @@ const IconLanguageUsSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconLanguageUsSharpFilled as default } +export default IconLanguageUsSharpFilled diff --git a/src/IconLapsOutlined.tsx b/src/IconLapsOutlined.tsx index 88d54bc21..5dad331a0 100644 --- a/src/IconLapsOutlined.tsx +++ b/src/IconLapsOutlined.tsx @@ -8,4 +8,4 @@ const IconLapsOutlined: React.FC = ({ ...props }) => ( ) -export { IconLapsOutlined as default } +export default IconLapsOutlined diff --git a/src/IconLapsOutlinedFilled.tsx b/src/IconLapsOutlinedFilled.tsx index a70294051..cd524f06c 100644 --- a/src/IconLapsOutlinedFilled.tsx +++ b/src/IconLapsOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconLapsOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconLapsOutlinedFilled as default } +export default IconLapsOutlinedFilled diff --git a/src/IconLapsRounded.tsx b/src/IconLapsRounded.tsx index 61bb386c5..bd5f2ea4a 100644 --- a/src/IconLapsRounded.tsx +++ b/src/IconLapsRounded.tsx @@ -8,4 +8,4 @@ const IconLapsRounded: React.FC = ({ ...props }) => ( ) -export { IconLapsRounded as default } +export default IconLapsRounded diff --git a/src/IconLapsRoundedFilled.tsx b/src/IconLapsRoundedFilled.tsx index 266318c48..b09b9fc6a 100644 --- a/src/IconLapsRoundedFilled.tsx +++ b/src/IconLapsRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconLapsRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconLapsRoundedFilled as default } +export default IconLapsRoundedFilled diff --git a/src/IconLapsSharp.tsx b/src/IconLapsSharp.tsx index aab0b6c0f..932fb5c40 100644 --- a/src/IconLapsSharp.tsx +++ b/src/IconLapsSharp.tsx @@ -8,4 +8,4 @@ const IconLapsSharp: React.FC = ({ ...props }) => ( ) -export { IconLapsSharp as default } +export default IconLapsSharp diff --git a/src/IconLapsSharpFilled.tsx b/src/IconLapsSharpFilled.tsx index c085e9fc3..d4c7644f7 100644 --- a/src/IconLapsSharpFilled.tsx +++ b/src/IconLapsSharpFilled.tsx @@ -8,4 +8,4 @@ const IconLapsSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconLapsSharpFilled as default } +export default IconLapsSharpFilled diff --git a/src/IconLaptopChromebookOutlined.tsx b/src/IconLaptopChromebookOutlined.tsx index 68ca09390..c802ca087 100644 --- a/src/IconLaptopChromebookOutlined.tsx +++ b/src/IconLaptopChromebookOutlined.tsx @@ -8,4 +8,4 @@ const IconLaptopChromebookOutlined: React.FC = ({ ...props }) => ( ) -export { IconLaptopChromebookOutlined as default } +export default IconLaptopChromebookOutlined diff --git a/src/IconLaptopChromebookOutlinedFilled.tsx b/src/IconLaptopChromebookOutlinedFilled.tsx index b2e8dd419..8b43ec72c 100644 --- a/src/IconLaptopChromebookOutlinedFilled.tsx +++ b/src/IconLaptopChromebookOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconLaptopChromebookOutlinedFilled: React.FC = ({ ) -export { IconLaptopChromebookOutlinedFilled as default } +export default IconLaptopChromebookOutlinedFilled diff --git a/src/IconLaptopChromebookRounded.tsx b/src/IconLaptopChromebookRounded.tsx index 56864a2cf..e0a8467cc 100644 --- a/src/IconLaptopChromebookRounded.tsx +++ b/src/IconLaptopChromebookRounded.tsx @@ -8,4 +8,4 @@ const IconLaptopChromebookRounded: React.FC = ({ ...props }) => ( ) -export { IconLaptopChromebookRounded as default } +export default IconLaptopChromebookRounded diff --git a/src/IconLaptopChromebookRoundedFilled.tsx b/src/IconLaptopChromebookRoundedFilled.tsx index 88aed2b93..16896ee74 100644 --- a/src/IconLaptopChromebookRoundedFilled.tsx +++ b/src/IconLaptopChromebookRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconLaptopChromebookRoundedFilled: React.FC = ({ ) -export { IconLaptopChromebookRoundedFilled as default } +export default IconLaptopChromebookRoundedFilled diff --git a/src/IconLaptopChromebookSharp.tsx b/src/IconLaptopChromebookSharp.tsx index ab6378f86..ad96bb76e 100644 --- a/src/IconLaptopChromebookSharp.tsx +++ b/src/IconLaptopChromebookSharp.tsx @@ -8,4 +8,4 @@ const IconLaptopChromebookSharp: React.FC = ({ ...props }) => ( ) -export { IconLaptopChromebookSharp as default } +export default IconLaptopChromebookSharp diff --git a/src/IconLaptopChromebookSharpFilled.tsx b/src/IconLaptopChromebookSharpFilled.tsx index c69e542dd..2a1274fcc 100644 --- a/src/IconLaptopChromebookSharpFilled.tsx +++ b/src/IconLaptopChromebookSharpFilled.tsx @@ -8,4 +8,4 @@ const IconLaptopChromebookSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconLaptopChromebookSharpFilled as default } +export default IconLaptopChromebookSharpFilled diff --git a/src/IconLaptopMacOutlined.tsx b/src/IconLaptopMacOutlined.tsx index 868efcdc1..649017a9b 100644 --- a/src/IconLaptopMacOutlined.tsx +++ b/src/IconLaptopMacOutlined.tsx @@ -8,4 +8,4 @@ const IconLaptopMacOutlined: React.FC = ({ ...props }) => ( ) -export { IconLaptopMacOutlined as default } +export default IconLaptopMacOutlined diff --git a/src/IconLaptopMacOutlinedFilled.tsx b/src/IconLaptopMacOutlinedFilled.tsx index 67b3ddd3f..73c4e3d4f 100644 --- a/src/IconLaptopMacOutlinedFilled.tsx +++ b/src/IconLaptopMacOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconLaptopMacOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconLaptopMacOutlinedFilled as default } +export default IconLaptopMacOutlinedFilled diff --git a/src/IconLaptopMacRounded.tsx b/src/IconLaptopMacRounded.tsx index 8fa938101..10002fb32 100644 --- a/src/IconLaptopMacRounded.tsx +++ b/src/IconLaptopMacRounded.tsx @@ -8,4 +8,4 @@ const IconLaptopMacRounded: React.FC = ({ ...props }) => ( ) -export { IconLaptopMacRounded as default } +export default IconLaptopMacRounded diff --git a/src/IconLaptopMacRoundedFilled.tsx b/src/IconLaptopMacRoundedFilled.tsx index a1b585c5d..2e623ccca 100644 --- a/src/IconLaptopMacRoundedFilled.tsx +++ b/src/IconLaptopMacRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconLaptopMacRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconLaptopMacRoundedFilled as default } +export default IconLaptopMacRoundedFilled diff --git a/src/IconLaptopMacSharp.tsx b/src/IconLaptopMacSharp.tsx index 56c26bea2..afa7d2ba1 100644 --- a/src/IconLaptopMacSharp.tsx +++ b/src/IconLaptopMacSharp.tsx @@ -8,4 +8,4 @@ const IconLaptopMacSharp: React.FC = ({ ...props }) => ( ) -export { IconLaptopMacSharp as default } +export default IconLaptopMacSharp diff --git a/src/IconLaptopMacSharpFilled.tsx b/src/IconLaptopMacSharpFilled.tsx index 1c336bff2..34a1f81f8 100644 --- a/src/IconLaptopMacSharpFilled.tsx +++ b/src/IconLaptopMacSharpFilled.tsx @@ -8,4 +8,4 @@ const IconLaptopMacSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconLaptopMacSharpFilled as default } +export default IconLaptopMacSharpFilled diff --git a/src/IconLaptopWindowsOutlined.tsx b/src/IconLaptopWindowsOutlined.tsx index c940a8526..10aae1a0e 100644 --- a/src/IconLaptopWindowsOutlined.tsx +++ b/src/IconLaptopWindowsOutlined.tsx @@ -8,4 +8,4 @@ const IconLaptopWindowsOutlined: React.FC = ({ ...props }) => ( ) -export { IconLaptopWindowsOutlined as default } +export default IconLaptopWindowsOutlined diff --git a/src/IconLaptopWindowsOutlinedFilled.tsx b/src/IconLaptopWindowsOutlinedFilled.tsx index e51a04fe3..cedbd24ae 100644 --- a/src/IconLaptopWindowsOutlinedFilled.tsx +++ b/src/IconLaptopWindowsOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconLaptopWindowsOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconLaptopWindowsOutlinedFilled as default } +export default IconLaptopWindowsOutlinedFilled diff --git a/src/IconLaptopWindowsRounded.tsx b/src/IconLaptopWindowsRounded.tsx index 9c4298d75..abd995b87 100644 --- a/src/IconLaptopWindowsRounded.tsx +++ b/src/IconLaptopWindowsRounded.tsx @@ -8,4 +8,4 @@ const IconLaptopWindowsRounded: React.FC = ({ ...props }) => ( ) -export { IconLaptopWindowsRounded as default } +export default IconLaptopWindowsRounded diff --git a/src/IconLaptopWindowsRoundedFilled.tsx b/src/IconLaptopWindowsRoundedFilled.tsx index 66bb0cebe..c856c6d8a 100644 --- a/src/IconLaptopWindowsRoundedFilled.tsx +++ b/src/IconLaptopWindowsRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconLaptopWindowsRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconLaptopWindowsRoundedFilled as default } +export default IconLaptopWindowsRoundedFilled diff --git a/src/IconLaptopWindowsSharp.tsx b/src/IconLaptopWindowsSharp.tsx index 61ec6f009..18abc3c8c 100644 --- a/src/IconLaptopWindowsSharp.tsx +++ b/src/IconLaptopWindowsSharp.tsx @@ -8,4 +8,4 @@ const IconLaptopWindowsSharp: React.FC = ({ ...props }) => ( ) -export { IconLaptopWindowsSharp as default } +export default IconLaptopWindowsSharp diff --git a/src/IconLaptopWindowsSharpFilled.tsx b/src/IconLaptopWindowsSharpFilled.tsx index d9302d827..23fc490c5 100644 --- a/src/IconLaptopWindowsSharpFilled.tsx +++ b/src/IconLaptopWindowsSharpFilled.tsx @@ -8,4 +8,4 @@ const IconLaptopWindowsSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconLaptopWindowsSharpFilled as default } +export default IconLaptopWindowsSharpFilled diff --git a/src/IconLassoSelectOutlined.tsx b/src/IconLassoSelectOutlined.tsx index 194c5aff9..21ba43741 100644 --- a/src/IconLassoSelectOutlined.tsx +++ b/src/IconLassoSelectOutlined.tsx @@ -8,4 +8,4 @@ const IconLassoSelectOutlined: React.FC = ({ ...props }) => ( ) -export { IconLassoSelectOutlined as default } +export default IconLassoSelectOutlined diff --git a/src/IconLassoSelectOutlinedFilled.tsx b/src/IconLassoSelectOutlinedFilled.tsx index 66460efe3..574a0da78 100644 --- a/src/IconLassoSelectOutlinedFilled.tsx +++ b/src/IconLassoSelectOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconLassoSelectOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconLassoSelectOutlinedFilled as default } +export default IconLassoSelectOutlinedFilled diff --git a/src/IconLassoSelectRounded.tsx b/src/IconLassoSelectRounded.tsx index e86fa0ead..9dfe3048c 100644 --- a/src/IconLassoSelectRounded.tsx +++ b/src/IconLassoSelectRounded.tsx @@ -8,4 +8,4 @@ const IconLassoSelectRounded: React.FC = ({ ...props }) => ( ) -export { IconLassoSelectRounded as default } +export default IconLassoSelectRounded diff --git a/src/IconLassoSelectRoundedFilled.tsx b/src/IconLassoSelectRoundedFilled.tsx index a80df1fea..dd81e8293 100644 --- a/src/IconLassoSelectRoundedFilled.tsx +++ b/src/IconLassoSelectRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconLassoSelectRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconLassoSelectRoundedFilled as default } +export default IconLassoSelectRoundedFilled diff --git a/src/IconLassoSelectSharp.tsx b/src/IconLassoSelectSharp.tsx index dc25b1efe..34d0f0cc3 100644 --- a/src/IconLassoSelectSharp.tsx +++ b/src/IconLassoSelectSharp.tsx @@ -8,4 +8,4 @@ const IconLassoSelectSharp: React.FC = ({ ...props }) => ( ) -export { IconLassoSelectSharp as default } +export default IconLassoSelectSharp diff --git a/src/IconLassoSelectSharpFilled.tsx b/src/IconLassoSelectSharpFilled.tsx index 3929d8b69..3e924faec 100644 --- a/src/IconLassoSelectSharpFilled.tsx +++ b/src/IconLassoSelectSharpFilled.tsx @@ -8,4 +8,4 @@ const IconLassoSelectSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconLassoSelectSharpFilled as default } +export default IconLassoSelectSharpFilled diff --git a/src/IconLastPageOutlined.tsx b/src/IconLastPageOutlined.tsx index eaed4b091..ca856544f 100644 --- a/src/IconLastPageOutlined.tsx +++ b/src/IconLastPageOutlined.tsx @@ -8,4 +8,4 @@ const IconLastPageOutlined: React.FC = ({ ...props }) => ( ) -export { IconLastPageOutlined as default } +export default IconLastPageOutlined diff --git a/src/IconLastPageOutlinedFilled.tsx b/src/IconLastPageOutlinedFilled.tsx index 745d521e3..3595977b1 100644 --- a/src/IconLastPageOutlinedFilled.tsx +++ b/src/IconLastPageOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconLastPageOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconLastPageOutlinedFilled as default } +export default IconLastPageOutlinedFilled diff --git a/src/IconLastPageRounded.tsx b/src/IconLastPageRounded.tsx index 00aaf3bb0..8c493bb20 100644 --- a/src/IconLastPageRounded.tsx +++ b/src/IconLastPageRounded.tsx @@ -8,4 +8,4 @@ const IconLastPageRounded: React.FC = ({ ...props }) => ( ) -export { IconLastPageRounded as default } +export default IconLastPageRounded diff --git a/src/IconLastPageRoundedFilled.tsx b/src/IconLastPageRoundedFilled.tsx index 323e21f76..5802a8db2 100644 --- a/src/IconLastPageRoundedFilled.tsx +++ b/src/IconLastPageRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconLastPageRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconLastPageRoundedFilled as default } +export default IconLastPageRoundedFilled diff --git a/src/IconLastPageSharp.tsx b/src/IconLastPageSharp.tsx index 1a0e2ac24..3c4dfd82f 100644 --- a/src/IconLastPageSharp.tsx +++ b/src/IconLastPageSharp.tsx @@ -8,4 +8,4 @@ const IconLastPageSharp: React.FC = ({ ...props }) => ( ) -export { IconLastPageSharp as default } +export default IconLastPageSharp diff --git a/src/IconLastPageSharpFilled.tsx b/src/IconLastPageSharpFilled.tsx index 357161e3a..c938d4df7 100644 --- a/src/IconLastPageSharpFilled.tsx +++ b/src/IconLastPageSharpFilled.tsx @@ -8,4 +8,4 @@ const IconLastPageSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconLastPageSharpFilled as default } +export default IconLastPageSharpFilled diff --git a/src/IconLaundryOutlined.tsx b/src/IconLaundryOutlined.tsx index d78e5a517..f8c41be28 100644 --- a/src/IconLaundryOutlined.tsx +++ b/src/IconLaundryOutlined.tsx @@ -8,4 +8,4 @@ const IconLaundryOutlined: React.FC = ({ ...props }) => ( ) -export { IconLaundryOutlined as default } +export default IconLaundryOutlined diff --git a/src/IconLaundryOutlinedFilled.tsx b/src/IconLaundryOutlinedFilled.tsx index 0d0814ae3..4024cd06c 100644 --- a/src/IconLaundryOutlinedFilled.tsx +++ b/src/IconLaundryOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconLaundryOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconLaundryOutlinedFilled as default } +export default IconLaundryOutlinedFilled diff --git a/src/IconLaundryRounded.tsx b/src/IconLaundryRounded.tsx index 404d583c4..d078b142b 100644 --- a/src/IconLaundryRounded.tsx +++ b/src/IconLaundryRounded.tsx @@ -8,4 +8,4 @@ const IconLaundryRounded: React.FC = ({ ...props }) => ( ) -export { IconLaundryRounded as default } +export default IconLaundryRounded diff --git a/src/IconLaundryRoundedFilled.tsx b/src/IconLaundryRoundedFilled.tsx index 2b35054e7..0c2ca509e 100644 --- a/src/IconLaundryRoundedFilled.tsx +++ b/src/IconLaundryRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconLaundryRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconLaundryRoundedFilled as default } +export default IconLaundryRoundedFilled diff --git a/src/IconLaundrySharp.tsx b/src/IconLaundrySharp.tsx index 543c2f9b7..3565448b7 100644 --- a/src/IconLaundrySharp.tsx +++ b/src/IconLaundrySharp.tsx @@ -8,4 +8,4 @@ const IconLaundrySharp: React.FC = ({ ...props }) => ( ) -export { IconLaundrySharp as default } +export default IconLaundrySharp diff --git a/src/IconLaundrySharpFilled.tsx b/src/IconLaundrySharpFilled.tsx index 2acc1e730..a8d5077c2 100644 --- a/src/IconLaundrySharpFilled.tsx +++ b/src/IconLaundrySharpFilled.tsx @@ -8,4 +8,4 @@ const IconLaundrySharpFilled: React.FC = ({ ...props }) => ( ) -export { IconLaundrySharpFilled as default } +export default IconLaundrySharpFilled diff --git a/src/IconLayersClearOutlined.tsx b/src/IconLayersClearOutlined.tsx index 835f64756..6b424f99b 100644 --- a/src/IconLayersClearOutlined.tsx +++ b/src/IconLayersClearOutlined.tsx @@ -8,4 +8,4 @@ const IconLayersClearOutlined: React.FC = ({ ...props }) => ( ) -export { IconLayersClearOutlined as default } +export default IconLayersClearOutlined diff --git a/src/IconLayersClearOutlinedFilled.tsx b/src/IconLayersClearOutlinedFilled.tsx index fa779dab4..f72ea20e0 100644 --- a/src/IconLayersClearOutlinedFilled.tsx +++ b/src/IconLayersClearOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconLayersClearOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconLayersClearOutlinedFilled as default } +export default IconLayersClearOutlinedFilled diff --git a/src/IconLayersClearRounded.tsx b/src/IconLayersClearRounded.tsx index 225434ec2..a9dc0736b 100644 --- a/src/IconLayersClearRounded.tsx +++ b/src/IconLayersClearRounded.tsx @@ -8,4 +8,4 @@ const IconLayersClearRounded: React.FC = ({ ...props }) => ( ) -export { IconLayersClearRounded as default } +export default IconLayersClearRounded diff --git a/src/IconLayersClearRoundedFilled.tsx b/src/IconLayersClearRoundedFilled.tsx index 7ab5072e2..451ba9593 100644 --- a/src/IconLayersClearRoundedFilled.tsx +++ b/src/IconLayersClearRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconLayersClearRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconLayersClearRoundedFilled as default } +export default IconLayersClearRoundedFilled diff --git a/src/IconLayersClearSharp.tsx b/src/IconLayersClearSharp.tsx index 25d77f2c7..d855a1230 100644 --- a/src/IconLayersClearSharp.tsx +++ b/src/IconLayersClearSharp.tsx @@ -8,4 +8,4 @@ const IconLayersClearSharp: React.FC = ({ ...props }) => ( ) -export { IconLayersClearSharp as default } +export default IconLayersClearSharp diff --git a/src/IconLayersClearSharpFilled.tsx b/src/IconLayersClearSharpFilled.tsx index 8138ea7d4..2084b773d 100644 --- a/src/IconLayersClearSharpFilled.tsx +++ b/src/IconLayersClearSharpFilled.tsx @@ -8,4 +8,4 @@ const IconLayersClearSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconLayersClearSharpFilled as default } +export default IconLayersClearSharpFilled diff --git a/src/IconLayersOutlined.tsx b/src/IconLayersOutlined.tsx index 38bd1894e..355c6d9bb 100644 --- a/src/IconLayersOutlined.tsx +++ b/src/IconLayersOutlined.tsx @@ -8,4 +8,4 @@ const IconLayersOutlined: React.FC = ({ ...props }) => ( ) -export { IconLayersOutlined as default } +export default IconLayersOutlined diff --git a/src/IconLayersOutlinedFilled.tsx b/src/IconLayersOutlinedFilled.tsx index 33db67aeb..7c6a8d92d 100644 --- a/src/IconLayersOutlinedFilled.tsx +++ b/src/IconLayersOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconLayersOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconLayersOutlinedFilled as default } +export default IconLayersOutlinedFilled diff --git a/src/IconLayersRounded.tsx b/src/IconLayersRounded.tsx index 87906dfe3..e46d46fe4 100644 --- a/src/IconLayersRounded.tsx +++ b/src/IconLayersRounded.tsx @@ -8,4 +8,4 @@ const IconLayersRounded: React.FC = ({ ...props }) => ( ) -export { IconLayersRounded as default } +export default IconLayersRounded diff --git a/src/IconLayersRoundedFilled.tsx b/src/IconLayersRoundedFilled.tsx index c508208ec..944872ae6 100644 --- a/src/IconLayersRoundedFilled.tsx +++ b/src/IconLayersRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconLayersRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconLayersRoundedFilled as default } +export default IconLayersRoundedFilled diff --git a/src/IconLayersSharp.tsx b/src/IconLayersSharp.tsx index 47a0b15e8..9bf08ec55 100644 --- a/src/IconLayersSharp.tsx +++ b/src/IconLayersSharp.tsx @@ -8,4 +8,4 @@ const IconLayersSharp: React.FC = ({ ...props }) => ( ) -export { IconLayersSharp as default } +export default IconLayersSharp diff --git a/src/IconLayersSharpFilled.tsx b/src/IconLayersSharpFilled.tsx index ff93d7a2a..a3175da8e 100644 --- a/src/IconLayersSharpFilled.tsx +++ b/src/IconLayersSharpFilled.tsx @@ -8,4 +8,4 @@ const IconLayersSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconLayersSharpFilled as default } +export default IconLayersSharpFilled diff --git a/src/IconLdaOutlined.tsx b/src/IconLdaOutlined.tsx index bfb1ac16e..0a0910687 100644 --- a/src/IconLdaOutlined.tsx +++ b/src/IconLdaOutlined.tsx @@ -8,4 +8,4 @@ const IconLdaOutlined: React.FC = ({ ...props }) => ( ) -export { IconLdaOutlined as default } +export default IconLdaOutlined diff --git a/src/IconLdaOutlinedFilled.tsx b/src/IconLdaOutlinedFilled.tsx index 1bf87c995..4c367d45b 100644 --- a/src/IconLdaOutlinedFilled.tsx +++ b/src/IconLdaOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconLdaOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconLdaOutlinedFilled as default } +export default IconLdaOutlinedFilled diff --git a/src/IconLdaRounded.tsx b/src/IconLdaRounded.tsx index 5978d1a52..71c8ab808 100644 --- a/src/IconLdaRounded.tsx +++ b/src/IconLdaRounded.tsx @@ -8,4 +8,4 @@ const IconLdaRounded: React.FC = ({ ...props }) => ( ) -export { IconLdaRounded as default } +export default IconLdaRounded diff --git a/src/IconLdaRoundedFilled.tsx b/src/IconLdaRoundedFilled.tsx index 532e6d7cb..fb80e569c 100644 --- a/src/IconLdaRoundedFilled.tsx +++ b/src/IconLdaRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconLdaRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconLdaRoundedFilled as default } +export default IconLdaRoundedFilled diff --git a/src/IconLdaSharp.tsx b/src/IconLdaSharp.tsx index 2c080ca15..9efd0e943 100644 --- a/src/IconLdaSharp.tsx +++ b/src/IconLdaSharp.tsx @@ -8,4 +8,4 @@ const IconLdaSharp: React.FC = ({ ...props }) => ( ) -export { IconLdaSharp as default } +export default IconLdaSharp diff --git a/src/IconLdaSharpFilled.tsx b/src/IconLdaSharpFilled.tsx index f2bd2bdba..7addc3f76 100644 --- a/src/IconLdaSharpFilled.tsx +++ b/src/IconLdaSharpFilled.tsx @@ -8,4 +8,4 @@ const IconLdaSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconLdaSharpFilled as default } +export default IconLdaSharpFilled diff --git a/src/IconLeaderboardOutlined.tsx b/src/IconLeaderboardOutlined.tsx index 309a76883..11f9c8868 100644 --- a/src/IconLeaderboardOutlined.tsx +++ b/src/IconLeaderboardOutlined.tsx @@ -8,4 +8,4 @@ const IconLeaderboardOutlined: React.FC = ({ ...props }) => ( ) -export { IconLeaderboardOutlined as default } +export default IconLeaderboardOutlined diff --git a/src/IconLeaderboardOutlinedFilled.tsx b/src/IconLeaderboardOutlinedFilled.tsx index dafebf204..8579266a4 100644 --- a/src/IconLeaderboardOutlinedFilled.tsx +++ b/src/IconLeaderboardOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconLeaderboardOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconLeaderboardOutlinedFilled as default } +export default IconLeaderboardOutlinedFilled diff --git a/src/IconLeaderboardRounded.tsx b/src/IconLeaderboardRounded.tsx index f111fcefa..2b82bad6b 100644 --- a/src/IconLeaderboardRounded.tsx +++ b/src/IconLeaderboardRounded.tsx @@ -8,4 +8,4 @@ const IconLeaderboardRounded: React.FC = ({ ...props }) => ( ) -export { IconLeaderboardRounded as default } +export default IconLeaderboardRounded diff --git a/src/IconLeaderboardRoundedFilled.tsx b/src/IconLeaderboardRoundedFilled.tsx index 1afbc2d24..ca4b6625d 100644 --- a/src/IconLeaderboardRoundedFilled.tsx +++ b/src/IconLeaderboardRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconLeaderboardRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconLeaderboardRoundedFilled as default } +export default IconLeaderboardRoundedFilled diff --git a/src/IconLeaderboardSharp.tsx b/src/IconLeaderboardSharp.tsx index 1a72ba818..a83548e30 100644 --- a/src/IconLeaderboardSharp.tsx +++ b/src/IconLeaderboardSharp.tsx @@ -8,4 +8,4 @@ const IconLeaderboardSharp: React.FC = ({ ...props }) => ( ) -export { IconLeaderboardSharp as default } +export default IconLeaderboardSharp diff --git a/src/IconLeaderboardSharpFilled.tsx b/src/IconLeaderboardSharpFilled.tsx index 67fcf95ff..a7258007c 100644 --- a/src/IconLeaderboardSharpFilled.tsx +++ b/src/IconLeaderboardSharpFilled.tsx @@ -8,4 +8,4 @@ const IconLeaderboardSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconLeaderboardSharpFilled as default } +export default IconLeaderboardSharpFilled diff --git a/src/IconLeakAddOutlined.tsx b/src/IconLeakAddOutlined.tsx index 8b3f48e10..3751c7755 100644 --- a/src/IconLeakAddOutlined.tsx +++ b/src/IconLeakAddOutlined.tsx @@ -8,4 +8,4 @@ const IconLeakAddOutlined: React.FC = ({ ...props }) => ( ) -export { IconLeakAddOutlined as default } +export default IconLeakAddOutlined diff --git a/src/IconLeakAddOutlinedFilled.tsx b/src/IconLeakAddOutlinedFilled.tsx index f9eed096e..bc2abc425 100644 --- a/src/IconLeakAddOutlinedFilled.tsx +++ b/src/IconLeakAddOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconLeakAddOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconLeakAddOutlinedFilled as default } +export default IconLeakAddOutlinedFilled diff --git a/src/IconLeakAddRounded.tsx b/src/IconLeakAddRounded.tsx index 9f86ada61..3ed771bc8 100644 --- a/src/IconLeakAddRounded.tsx +++ b/src/IconLeakAddRounded.tsx @@ -8,4 +8,4 @@ const IconLeakAddRounded: React.FC = ({ ...props }) => ( ) -export { IconLeakAddRounded as default } +export default IconLeakAddRounded diff --git a/src/IconLeakAddRoundedFilled.tsx b/src/IconLeakAddRoundedFilled.tsx index a54b8ce17..d98bc96a1 100644 --- a/src/IconLeakAddRoundedFilled.tsx +++ b/src/IconLeakAddRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconLeakAddRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconLeakAddRoundedFilled as default } +export default IconLeakAddRoundedFilled diff --git a/src/IconLeakAddSharp.tsx b/src/IconLeakAddSharp.tsx index f14132a17..b5ad87c1d 100644 --- a/src/IconLeakAddSharp.tsx +++ b/src/IconLeakAddSharp.tsx @@ -8,4 +8,4 @@ const IconLeakAddSharp: React.FC = ({ ...props }) => ( ) -export { IconLeakAddSharp as default } +export default IconLeakAddSharp diff --git a/src/IconLeakAddSharpFilled.tsx b/src/IconLeakAddSharpFilled.tsx index 25c1dc05d..311efc172 100644 --- a/src/IconLeakAddSharpFilled.tsx +++ b/src/IconLeakAddSharpFilled.tsx @@ -8,4 +8,4 @@ const IconLeakAddSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconLeakAddSharpFilled as default } +export default IconLeakAddSharpFilled diff --git a/src/IconLeakRemoveOutlined.tsx b/src/IconLeakRemoveOutlined.tsx index b139b8591..db2dd35ab 100644 --- a/src/IconLeakRemoveOutlined.tsx +++ b/src/IconLeakRemoveOutlined.tsx @@ -8,4 +8,4 @@ const IconLeakRemoveOutlined: React.FC = ({ ...props }) => ( ) -export { IconLeakRemoveOutlined as default } +export default IconLeakRemoveOutlined diff --git a/src/IconLeakRemoveOutlinedFilled.tsx b/src/IconLeakRemoveOutlinedFilled.tsx index 2543f90cd..86ad373fe 100644 --- a/src/IconLeakRemoveOutlinedFilled.tsx +++ b/src/IconLeakRemoveOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconLeakRemoveOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconLeakRemoveOutlinedFilled as default } +export default IconLeakRemoveOutlinedFilled diff --git a/src/IconLeakRemoveRounded.tsx b/src/IconLeakRemoveRounded.tsx index 9d32170d6..de5e59c2c 100644 --- a/src/IconLeakRemoveRounded.tsx +++ b/src/IconLeakRemoveRounded.tsx @@ -8,4 +8,4 @@ const IconLeakRemoveRounded: React.FC = ({ ...props }) => ( ) -export { IconLeakRemoveRounded as default } +export default IconLeakRemoveRounded diff --git a/src/IconLeakRemoveRoundedFilled.tsx b/src/IconLeakRemoveRoundedFilled.tsx index 344558899..0dc6ac660 100644 --- a/src/IconLeakRemoveRoundedFilled.tsx +++ b/src/IconLeakRemoveRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconLeakRemoveRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconLeakRemoveRoundedFilled as default } +export default IconLeakRemoveRoundedFilled diff --git a/src/IconLeakRemoveSharp.tsx b/src/IconLeakRemoveSharp.tsx index c73511455..536cab5c2 100644 --- a/src/IconLeakRemoveSharp.tsx +++ b/src/IconLeakRemoveSharp.tsx @@ -8,4 +8,4 @@ const IconLeakRemoveSharp: React.FC = ({ ...props }) => ( ) -export { IconLeakRemoveSharp as default } +export default IconLeakRemoveSharp diff --git a/src/IconLeakRemoveSharpFilled.tsx b/src/IconLeakRemoveSharpFilled.tsx index 597854b9e..75d76be86 100644 --- a/src/IconLeakRemoveSharpFilled.tsx +++ b/src/IconLeakRemoveSharpFilled.tsx @@ -8,4 +8,4 @@ const IconLeakRemoveSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconLeakRemoveSharpFilled as default } +export default IconLeakRemoveSharpFilled diff --git a/src/IconLeftClickOutlined.tsx b/src/IconLeftClickOutlined.tsx index a8e500901..6e74bf50f 100644 --- a/src/IconLeftClickOutlined.tsx +++ b/src/IconLeftClickOutlined.tsx @@ -8,4 +8,4 @@ const IconLeftClickOutlined: React.FC = ({ ...props }) => ( ) -export { IconLeftClickOutlined as default } +export default IconLeftClickOutlined diff --git a/src/IconLeftClickOutlinedFilled.tsx b/src/IconLeftClickOutlinedFilled.tsx index 6235dae24..4c63a96f3 100644 --- a/src/IconLeftClickOutlinedFilled.tsx +++ b/src/IconLeftClickOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconLeftClickOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconLeftClickOutlinedFilled as default } +export default IconLeftClickOutlinedFilled diff --git a/src/IconLeftClickRounded.tsx b/src/IconLeftClickRounded.tsx index ed698eb81..346dc3566 100644 --- a/src/IconLeftClickRounded.tsx +++ b/src/IconLeftClickRounded.tsx @@ -8,4 +8,4 @@ const IconLeftClickRounded: React.FC = ({ ...props }) => ( ) -export { IconLeftClickRounded as default } +export default IconLeftClickRounded diff --git a/src/IconLeftClickRoundedFilled.tsx b/src/IconLeftClickRoundedFilled.tsx index befc30d8c..4c5ba4517 100644 --- a/src/IconLeftClickRoundedFilled.tsx +++ b/src/IconLeftClickRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconLeftClickRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconLeftClickRoundedFilled as default } +export default IconLeftClickRoundedFilled diff --git a/src/IconLeftClickSharp.tsx b/src/IconLeftClickSharp.tsx index 36c9d12c7..b725d608c 100644 --- a/src/IconLeftClickSharp.tsx +++ b/src/IconLeftClickSharp.tsx @@ -8,4 +8,4 @@ const IconLeftClickSharp: React.FC = ({ ...props }) => ( ) -export { IconLeftClickSharp as default } +export default IconLeftClickSharp diff --git a/src/IconLeftClickSharpFilled.tsx b/src/IconLeftClickSharpFilled.tsx index d9c44c6f5..49c5305f6 100644 --- a/src/IconLeftClickSharpFilled.tsx +++ b/src/IconLeftClickSharpFilled.tsx @@ -8,4 +8,4 @@ const IconLeftClickSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconLeftClickSharpFilled as default } +export default IconLeftClickSharpFilled diff --git a/src/IconLeftPanelCloseOutlined.tsx b/src/IconLeftPanelCloseOutlined.tsx index 9becc4f61..4d9e2398a 100644 --- a/src/IconLeftPanelCloseOutlined.tsx +++ b/src/IconLeftPanelCloseOutlined.tsx @@ -8,4 +8,4 @@ const IconLeftPanelCloseOutlined: React.FC = ({ ...props }) => ( ) -export { IconLeftPanelCloseOutlined as default } +export default IconLeftPanelCloseOutlined diff --git a/src/IconLeftPanelCloseOutlinedFilled.tsx b/src/IconLeftPanelCloseOutlinedFilled.tsx index 6426a7b54..5df2991ae 100644 --- a/src/IconLeftPanelCloseOutlinedFilled.tsx +++ b/src/IconLeftPanelCloseOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconLeftPanelCloseOutlinedFilled: React.FC = ({ ) -export { IconLeftPanelCloseOutlinedFilled as default } +export default IconLeftPanelCloseOutlinedFilled diff --git a/src/IconLeftPanelCloseRounded.tsx b/src/IconLeftPanelCloseRounded.tsx index e62f1c7f0..21a024ba7 100644 --- a/src/IconLeftPanelCloseRounded.tsx +++ b/src/IconLeftPanelCloseRounded.tsx @@ -8,4 +8,4 @@ const IconLeftPanelCloseRounded: React.FC = ({ ...props }) => ( ) -export { IconLeftPanelCloseRounded as default } +export default IconLeftPanelCloseRounded diff --git a/src/IconLeftPanelCloseRoundedFilled.tsx b/src/IconLeftPanelCloseRoundedFilled.tsx index 13477ccf2..27bd861d0 100644 --- a/src/IconLeftPanelCloseRoundedFilled.tsx +++ b/src/IconLeftPanelCloseRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconLeftPanelCloseRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconLeftPanelCloseRoundedFilled as default } +export default IconLeftPanelCloseRoundedFilled diff --git a/src/IconLeftPanelCloseSharp.tsx b/src/IconLeftPanelCloseSharp.tsx index d8b1eb8d2..aef297dda 100644 --- a/src/IconLeftPanelCloseSharp.tsx +++ b/src/IconLeftPanelCloseSharp.tsx @@ -8,4 +8,4 @@ const IconLeftPanelCloseSharp: React.FC = ({ ...props }) => ( ) -export { IconLeftPanelCloseSharp as default } +export default IconLeftPanelCloseSharp diff --git a/src/IconLeftPanelCloseSharpFilled.tsx b/src/IconLeftPanelCloseSharpFilled.tsx index 3edf26ed6..c07356f69 100644 --- a/src/IconLeftPanelCloseSharpFilled.tsx +++ b/src/IconLeftPanelCloseSharpFilled.tsx @@ -8,4 +8,4 @@ const IconLeftPanelCloseSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconLeftPanelCloseSharpFilled as default } +export default IconLeftPanelCloseSharpFilled diff --git a/src/IconLeftPanelOpenOutlined.tsx b/src/IconLeftPanelOpenOutlined.tsx index e42ef1447..e7af0a0a1 100644 --- a/src/IconLeftPanelOpenOutlined.tsx +++ b/src/IconLeftPanelOpenOutlined.tsx @@ -8,4 +8,4 @@ const IconLeftPanelOpenOutlined: React.FC = ({ ...props }) => ( ) -export { IconLeftPanelOpenOutlined as default } +export default IconLeftPanelOpenOutlined diff --git a/src/IconLeftPanelOpenOutlinedFilled.tsx b/src/IconLeftPanelOpenOutlinedFilled.tsx index b301bca8f..0146e0b59 100644 --- a/src/IconLeftPanelOpenOutlinedFilled.tsx +++ b/src/IconLeftPanelOpenOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconLeftPanelOpenOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconLeftPanelOpenOutlinedFilled as default } +export default IconLeftPanelOpenOutlinedFilled diff --git a/src/IconLeftPanelOpenRounded.tsx b/src/IconLeftPanelOpenRounded.tsx index 3b4e17f33..9267f4ea0 100644 --- a/src/IconLeftPanelOpenRounded.tsx +++ b/src/IconLeftPanelOpenRounded.tsx @@ -8,4 +8,4 @@ const IconLeftPanelOpenRounded: React.FC = ({ ...props }) => ( ) -export { IconLeftPanelOpenRounded as default } +export default IconLeftPanelOpenRounded diff --git a/src/IconLeftPanelOpenRoundedFilled.tsx b/src/IconLeftPanelOpenRoundedFilled.tsx index d5470e497..73d75b57a 100644 --- a/src/IconLeftPanelOpenRoundedFilled.tsx +++ b/src/IconLeftPanelOpenRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconLeftPanelOpenRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconLeftPanelOpenRoundedFilled as default } +export default IconLeftPanelOpenRoundedFilled diff --git a/src/IconLeftPanelOpenSharp.tsx b/src/IconLeftPanelOpenSharp.tsx index 1873fc3cd..902f48e86 100644 --- a/src/IconLeftPanelOpenSharp.tsx +++ b/src/IconLeftPanelOpenSharp.tsx @@ -8,4 +8,4 @@ const IconLeftPanelOpenSharp: React.FC = ({ ...props }) => ( ) -export { IconLeftPanelOpenSharp as default } +export default IconLeftPanelOpenSharp diff --git a/src/IconLeftPanelOpenSharpFilled.tsx b/src/IconLeftPanelOpenSharpFilled.tsx index 3a4c65dcd..1d02c8a01 100644 --- a/src/IconLeftPanelOpenSharpFilled.tsx +++ b/src/IconLeftPanelOpenSharpFilled.tsx @@ -8,4 +8,4 @@ const IconLeftPanelOpenSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconLeftPanelOpenSharpFilled as default } +export default IconLeftPanelOpenSharpFilled diff --git a/src/IconLegendToggleOutlined.tsx b/src/IconLegendToggleOutlined.tsx index 3bde0d242..ce93066c6 100644 --- a/src/IconLegendToggleOutlined.tsx +++ b/src/IconLegendToggleOutlined.tsx @@ -8,4 +8,4 @@ const IconLegendToggleOutlined: React.FC = ({ ...props }) => ( ) -export { IconLegendToggleOutlined as default } +export default IconLegendToggleOutlined diff --git a/src/IconLegendToggleOutlinedFilled.tsx b/src/IconLegendToggleOutlinedFilled.tsx index 024e201d4..5a082d608 100644 --- a/src/IconLegendToggleOutlinedFilled.tsx +++ b/src/IconLegendToggleOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconLegendToggleOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconLegendToggleOutlinedFilled as default } +export default IconLegendToggleOutlinedFilled diff --git a/src/IconLegendToggleRounded.tsx b/src/IconLegendToggleRounded.tsx index 88d547c35..e2c6e8eda 100644 --- a/src/IconLegendToggleRounded.tsx +++ b/src/IconLegendToggleRounded.tsx @@ -8,4 +8,4 @@ const IconLegendToggleRounded: React.FC = ({ ...props }) => ( ) -export { IconLegendToggleRounded as default } +export default IconLegendToggleRounded diff --git a/src/IconLegendToggleRoundedFilled.tsx b/src/IconLegendToggleRoundedFilled.tsx index a5aa426e0..570c06020 100644 --- a/src/IconLegendToggleRoundedFilled.tsx +++ b/src/IconLegendToggleRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconLegendToggleRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconLegendToggleRoundedFilled as default } +export default IconLegendToggleRoundedFilled diff --git a/src/IconLegendToggleSharp.tsx b/src/IconLegendToggleSharp.tsx index da5c47aff..18d126637 100644 --- a/src/IconLegendToggleSharp.tsx +++ b/src/IconLegendToggleSharp.tsx @@ -8,4 +8,4 @@ const IconLegendToggleSharp: React.FC = ({ ...props }) => ( ) -export { IconLegendToggleSharp as default } +export default IconLegendToggleSharp diff --git a/src/IconLegendToggleSharpFilled.tsx b/src/IconLegendToggleSharpFilled.tsx index 999792ba2..44b8735a8 100644 --- a/src/IconLegendToggleSharpFilled.tsx +++ b/src/IconLegendToggleSharpFilled.tsx @@ -8,4 +8,4 @@ const IconLegendToggleSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconLegendToggleSharpFilled as default } +export default IconLegendToggleSharpFilled diff --git a/src/IconLensBlurOutlined.tsx b/src/IconLensBlurOutlined.tsx index ec6eebc09..fd6f3a863 100644 --- a/src/IconLensBlurOutlined.tsx +++ b/src/IconLensBlurOutlined.tsx @@ -8,4 +8,4 @@ const IconLensBlurOutlined: React.FC = ({ ...props }) => ( ) -export { IconLensBlurOutlined as default } +export default IconLensBlurOutlined diff --git a/src/IconLensBlurOutlinedFilled.tsx b/src/IconLensBlurOutlinedFilled.tsx index e293050cf..4556c6702 100644 --- a/src/IconLensBlurOutlinedFilled.tsx +++ b/src/IconLensBlurOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconLensBlurOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconLensBlurOutlinedFilled as default } +export default IconLensBlurOutlinedFilled diff --git a/src/IconLensBlurRounded.tsx b/src/IconLensBlurRounded.tsx index e0472ee0a..b4ed0af95 100644 --- a/src/IconLensBlurRounded.tsx +++ b/src/IconLensBlurRounded.tsx @@ -8,4 +8,4 @@ const IconLensBlurRounded: React.FC = ({ ...props }) => ( ) -export { IconLensBlurRounded as default } +export default IconLensBlurRounded diff --git a/src/IconLensBlurRoundedFilled.tsx b/src/IconLensBlurRoundedFilled.tsx index 6509b7ea2..44407a8dc 100644 --- a/src/IconLensBlurRoundedFilled.tsx +++ b/src/IconLensBlurRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconLensBlurRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconLensBlurRoundedFilled as default } +export default IconLensBlurRoundedFilled diff --git a/src/IconLensBlurSharp.tsx b/src/IconLensBlurSharp.tsx index 947f2faf2..c62fbe4df 100644 --- a/src/IconLensBlurSharp.tsx +++ b/src/IconLensBlurSharp.tsx @@ -8,4 +8,4 @@ const IconLensBlurSharp: React.FC = ({ ...props }) => ( ) -export { IconLensBlurSharp as default } +export default IconLensBlurSharp diff --git a/src/IconLensBlurSharpFilled.tsx b/src/IconLensBlurSharpFilled.tsx index 72278a376..f8938fbdb 100644 --- a/src/IconLensBlurSharpFilled.tsx +++ b/src/IconLensBlurSharpFilled.tsx @@ -8,4 +8,4 @@ const IconLensBlurSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconLensBlurSharpFilled as default } +export default IconLensBlurSharpFilled diff --git a/src/IconLetterSwitchOutlined.tsx b/src/IconLetterSwitchOutlined.tsx index d1d5e174f..fc9a31aee 100644 --- a/src/IconLetterSwitchOutlined.tsx +++ b/src/IconLetterSwitchOutlined.tsx @@ -8,4 +8,4 @@ const IconLetterSwitchOutlined: React.FC = ({ ...props }) => ( ) -export { IconLetterSwitchOutlined as default } +export default IconLetterSwitchOutlined diff --git a/src/IconLetterSwitchOutlinedFilled.tsx b/src/IconLetterSwitchOutlinedFilled.tsx index e471a8e01..74c2cc346 100644 --- a/src/IconLetterSwitchOutlinedFilled.tsx +++ b/src/IconLetterSwitchOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconLetterSwitchOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconLetterSwitchOutlinedFilled as default } +export default IconLetterSwitchOutlinedFilled diff --git a/src/IconLetterSwitchRounded.tsx b/src/IconLetterSwitchRounded.tsx index 7dca7509a..131691c51 100644 --- a/src/IconLetterSwitchRounded.tsx +++ b/src/IconLetterSwitchRounded.tsx @@ -8,4 +8,4 @@ const IconLetterSwitchRounded: React.FC = ({ ...props }) => ( ) -export { IconLetterSwitchRounded as default } +export default IconLetterSwitchRounded diff --git a/src/IconLetterSwitchRoundedFilled.tsx b/src/IconLetterSwitchRoundedFilled.tsx index 3afc80652..1b705be2b 100644 --- a/src/IconLetterSwitchRoundedFilled.tsx +++ b/src/IconLetterSwitchRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconLetterSwitchRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconLetterSwitchRoundedFilled as default } +export default IconLetterSwitchRoundedFilled diff --git a/src/IconLetterSwitchSharp.tsx b/src/IconLetterSwitchSharp.tsx index 220d1d523..265eae96d 100644 --- a/src/IconLetterSwitchSharp.tsx +++ b/src/IconLetterSwitchSharp.tsx @@ -8,4 +8,4 @@ const IconLetterSwitchSharp: React.FC = ({ ...props }) => ( ) -export { IconLetterSwitchSharp as default } +export default IconLetterSwitchSharp diff --git a/src/IconLetterSwitchSharpFilled.tsx b/src/IconLetterSwitchSharpFilled.tsx index 3c2de791a..f93220b19 100644 --- a/src/IconLetterSwitchSharpFilled.tsx +++ b/src/IconLetterSwitchSharpFilled.tsx @@ -8,4 +8,4 @@ const IconLetterSwitchSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconLetterSwitchSharpFilled as default } +export default IconLetterSwitchSharpFilled diff --git a/src/IconLibraryAddCheckOutlined.tsx b/src/IconLibraryAddCheckOutlined.tsx index a803f57f0..5790c70c7 100644 --- a/src/IconLibraryAddCheckOutlined.tsx +++ b/src/IconLibraryAddCheckOutlined.tsx @@ -8,4 +8,4 @@ const IconLibraryAddCheckOutlined: React.FC = ({ ...props }) => ( ) -export { IconLibraryAddCheckOutlined as default } +export default IconLibraryAddCheckOutlined diff --git a/src/IconLibraryAddCheckOutlinedFilled.tsx b/src/IconLibraryAddCheckOutlinedFilled.tsx index 7ea151d45..43e04e368 100644 --- a/src/IconLibraryAddCheckOutlinedFilled.tsx +++ b/src/IconLibraryAddCheckOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconLibraryAddCheckOutlinedFilled: React.FC = ({ ) -export { IconLibraryAddCheckOutlinedFilled as default } +export default IconLibraryAddCheckOutlinedFilled diff --git a/src/IconLibraryAddCheckRounded.tsx b/src/IconLibraryAddCheckRounded.tsx index a48a02579..50ee19037 100644 --- a/src/IconLibraryAddCheckRounded.tsx +++ b/src/IconLibraryAddCheckRounded.tsx @@ -8,4 +8,4 @@ const IconLibraryAddCheckRounded: React.FC = ({ ...props }) => ( ) -export { IconLibraryAddCheckRounded as default } +export default IconLibraryAddCheckRounded diff --git a/src/IconLibraryAddCheckRoundedFilled.tsx b/src/IconLibraryAddCheckRoundedFilled.tsx index cafaa9843..c1d940c9e 100644 --- a/src/IconLibraryAddCheckRoundedFilled.tsx +++ b/src/IconLibraryAddCheckRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconLibraryAddCheckRoundedFilled: React.FC = ({ ) -export { IconLibraryAddCheckRoundedFilled as default } +export default IconLibraryAddCheckRoundedFilled diff --git a/src/IconLibraryAddCheckSharp.tsx b/src/IconLibraryAddCheckSharp.tsx index 536db02a0..691b47e9e 100644 --- a/src/IconLibraryAddCheckSharp.tsx +++ b/src/IconLibraryAddCheckSharp.tsx @@ -8,4 +8,4 @@ const IconLibraryAddCheckSharp: React.FC = ({ ...props }) => ( ) -export { IconLibraryAddCheckSharp as default } +export default IconLibraryAddCheckSharp diff --git a/src/IconLibraryAddCheckSharpFilled.tsx b/src/IconLibraryAddCheckSharpFilled.tsx index c512f2c07..b6c7244fe 100644 --- a/src/IconLibraryAddCheckSharpFilled.tsx +++ b/src/IconLibraryAddCheckSharpFilled.tsx @@ -8,4 +8,4 @@ const IconLibraryAddCheckSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconLibraryAddCheckSharpFilled as default } +export default IconLibraryAddCheckSharpFilled diff --git a/src/IconLibraryAddOutlined.tsx b/src/IconLibraryAddOutlined.tsx index 79324ec24..a4e7f0404 100644 --- a/src/IconLibraryAddOutlined.tsx +++ b/src/IconLibraryAddOutlined.tsx @@ -8,4 +8,4 @@ const IconLibraryAddOutlined: React.FC = ({ ...props }) => ( ) -export { IconLibraryAddOutlined as default } +export default IconLibraryAddOutlined diff --git a/src/IconLibraryAddOutlinedFilled.tsx b/src/IconLibraryAddOutlinedFilled.tsx index 181c08038..a22208410 100644 --- a/src/IconLibraryAddOutlinedFilled.tsx +++ b/src/IconLibraryAddOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconLibraryAddOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconLibraryAddOutlinedFilled as default } +export default IconLibraryAddOutlinedFilled diff --git a/src/IconLibraryAddRounded.tsx b/src/IconLibraryAddRounded.tsx index 135d56fd6..06989ccf3 100644 --- a/src/IconLibraryAddRounded.tsx +++ b/src/IconLibraryAddRounded.tsx @@ -8,4 +8,4 @@ const IconLibraryAddRounded: React.FC = ({ ...props }) => ( ) -export { IconLibraryAddRounded as default } +export default IconLibraryAddRounded diff --git a/src/IconLibraryAddRoundedFilled.tsx b/src/IconLibraryAddRoundedFilled.tsx index a8efde00a..80bfdbfb3 100644 --- a/src/IconLibraryAddRoundedFilled.tsx +++ b/src/IconLibraryAddRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconLibraryAddRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconLibraryAddRoundedFilled as default } +export default IconLibraryAddRoundedFilled diff --git a/src/IconLibraryAddSharp.tsx b/src/IconLibraryAddSharp.tsx index e58880540..8a8a3ba43 100644 --- a/src/IconLibraryAddSharp.tsx +++ b/src/IconLibraryAddSharp.tsx @@ -8,4 +8,4 @@ const IconLibraryAddSharp: React.FC = ({ ...props }) => ( ) -export { IconLibraryAddSharp as default } +export default IconLibraryAddSharp diff --git a/src/IconLibraryAddSharpFilled.tsx b/src/IconLibraryAddSharpFilled.tsx index 795e087a8..236a9d5b8 100644 --- a/src/IconLibraryAddSharpFilled.tsx +++ b/src/IconLibraryAddSharpFilled.tsx @@ -8,4 +8,4 @@ const IconLibraryAddSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconLibraryAddSharpFilled as default } +export default IconLibraryAddSharpFilled diff --git a/src/IconLibraryBooksOutlined.tsx b/src/IconLibraryBooksOutlined.tsx index ad2920fce..bd7f43337 100644 --- a/src/IconLibraryBooksOutlined.tsx +++ b/src/IconLibraryBooksOutlined.tsx @@ -8,4 +8,4 @@ const IconLibraryBooksOutlined: React.FC = ({ ...props }) => ( ) -export { IconLibraryBooksOutlined as default } +export default IconLibraryBooksOutlined diff --git a/src/IconLibraryBooksOutlinedFilled.tsx b/src/IconLibraryBooksOutlinedFilled.tsx index bd155550c..d916c4764 100644 --- a/src/IconLibraryBooksOutlinedFilled.tsx +++ b/src/IconLibraryBooksOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconLibraryBooksOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconLibraryBooksOutlinedFilled as default } +export default IconLibraryBooksOutlinedFilled diff --git a/src/IconLibraryBooksRounded.tsx b/src/IconLibraryBooksRounded.tsx index 74b4192ef..5200abebd 100644 --- a/src/IconLibraryBooksRounded.tsx +++ b/src/IconLibraryBooksRounded.tsx @@ -8,4 +8,4 @@ const IconLibraryBooksRounded: React.FC = ({ ...props }) => ( ) -export { IconLibraryBooksRounded as default } +export default IconLibraryBooksRounded diff --git a/src/IconLibraryBooksRoundedFilled.tsx b/src/IconLibraryBooksRoundedFilled.tsx index a1f4b3bd9..158fdbf2f 100644 --- a/src/IconLibraryBooksRoundedFilled.tsx +++ b/src/IconLibraryBooksRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconLibraryBooksRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconLibraryBooksRoundedFilled as default } +export default IconLibraryBooksRoundedFilled diff --git a/src/IconLibraryBooksSharp.tsx b/src/IconLibraryBooksSharp.tsx index 51ce2a615..4227c687e 100644 --- a/src/IconLibraryBooksSharp.tsx +++ b/src/IconLibraryBooksSharp.tsx @@ -8,4 +8,4 @@ const IconLibraryBooksSharp: React.FC = ({ ...props }) => ( ) -export { IconLibraryBooksSharp as default } +export default IconLibraryBooksSharp diff --git a/src/IconLibraryBooksSharpFilled.tsx b/src/IconLibraryBooksSharpFilled.tsx index 5975f7c80..4025b177d 100644 --- a/src/IconLibraryBooksSharpFilled.tsx +++ b/src/IconLibraryBooksSharpFilled.tsx @@ -8,4 +8,4 @@ const IconLibraryBooksSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconLibraryBooksSharpFilled as default } +export default IconLibraryBooksSharpFilled diff --git a/src/IconLibraryMusicOutlined.tsx b/src/IconLibraryMusicOutlined.tsx index bd0538694..837fd50b1 100644 --- a/src/IconLibraryMusicOutlined.tsx +++ b/src/IconLibraryMusicOutlined.tsx @@ -8,4 +8,4 @@ const IconLibraryMusicOutlined: React.FC = ({ ...props }) => ( ) -export { IconLibraryMusicOutlined as default } +export default IconLibraryMusicOutlined diff --git a/src/IconLibraryMusicOutlinedFilled.tsx b/src/IconLibraryMusicOutlinedFilled.tsx index 2ef23768b..7bb26eecd 100644 --- a/src/IconLibraryMusicOutlinedFilled.tsx +++ b/src/IconLibraryMusicOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconLibraryMusicOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconLibraryMusicOutlinedFilled as default } +export default IconLibraryMusicOutlinedFilled diff --git a/src/IconLibraryMusicRounded.tsx b/src/IconLibraryMusicRounded.tsx index 09f1a7fb3..08a6eb745 100644 --- a/src/IconLibraryMusicRounded.tsx +++ b/src/IconLibraryMusicRounded.tsx @@ -8,4 +8,4 @@ const IconLibraryMusicRounded: React.FC = ({ ...props }) => ( ) -export { IconLibraryMusicRounded as default } +export default IconLibraryMusicRounded diff --git a/src/IconLibraryMusicRoundedFilled.tsx b/src/IconLibraryMusicRoundedFilled.tsx index 2a28c6aa5..e62f3b795 100644 --- a/src/IconLibraryMusicRoundedFilled.tsx +++ b/src/IconLibraryMusicRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconLibraryMusicRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconLibraryMusicRoundedFilled as default } +export default IconLibraryMusicRoundedFilled diff --git a/src/IconLibraryMusicSharp.tsx b/src/IconLibraryMusicSharp.tsx index 73c8b8bd1..379811306 100644 --- a/src/IconLibraryMusicSharp.tsx +++ b/src/IconLibraryMusicSharp.tsx @@ -8,4 +8,4 @@ const IconLibraryMusicSharp: React.FC = ({ ...props }) => ( ) -export { IconLibraryMusicSharp as default } +export default IconLibraryMusicSharp diff --git a/src/IconLibraryMusicSharpFilled.tsx b/src/IconLibraryMusicSharpFilled.tsx index f04ff261a..848f20e2a 100644 --- a/src/IconLibraryMusicSharpFilled.tsx +++ b/src/IconLibraryMusicSharpFilled.tsx @@ -8,4 +8,4 @@ const IconLibraryMusicSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconLibraryMusicSharpFilled as default } +export default IconLibraryMusicSharpFilled diff --git a/src/IconLicenseOutlined.tsx b/src/IconLicenseOutlined.tsx index 52c107c4a..a93db765f 100644 --- a/src/IconLicenseOutlined.tsx +++ b/src/IconLicenseOutlined.tsx @@ -8,4 +8,4 @@ const IconLicenseOutlined: React.FC = ({ ...props }) => ( ) -export { IconLicenseOutlined as default } +export default IconLicenseOutlined diff --git a/src/IconLicenseOutlinedFilled.tsx b/src/IconLicenseOutlinedFilled.tsx index a19d61434..79f270eed 100644 --- a/src/IconLicenseOutlinedFilled.tsx +++ b/src/IconLicenseOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconLicenseOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconLicenseOutlinedFilled as default } +export default IconLicenseOutlinedFilled diff --git a/src/IconLicenseRounded.tsx b/src/IconLicenseRounded.tsx index 6657c03e6..9a894a60b 100644 --- a/src/IconLicenseRounded.tsx +++ b/src/IconLicenseRounded.tsx @@ -8,4 +8,4 @@ const IconLicenseRounded: React.FC = ({ ...props }) => ( ) -export { IconLicenseRounded as default } +export default IconLicenseRounded diff --git a/src/IconLicenseRoundedFilled.tsx b/src/IconLicenseRoundedFilled.tsx index 4da22989c..b34c21e87 100644 --- a/src/IconLicenseRoundedFilled.tsx +++ b/src/IconLicenseRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconLicenseRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconLicenseRoundedFilled as default } +export default IconLicenseRoundedFilled diff --git a/src/IconLicenseSharp.tsx b/src/IconLicenseSharp.tsx index e63f289e8..46dee45d0 100644 --- a/src/IconLicenseSharp.tsx +++ b/src/IconLicenseSharp.tsx @@ -8,4 +8,4 @@ const IconLicenseSharp: React.FC = ({ ...props }) => ( ) -export { IconLicenseSharp as default } +export default IconLicenseSharp diff --git a/src/IconLicenseSharpFilled.tsx b/src/IconLicenseSharpFilled.tsx index b7b757b60..f239ca077 100644 --- a/src/IconLicenseSharpFilled.tsx +++ b/src/IconLicenseSharpFilled.tsx @@ -8,4 +8,4 @@ const IconLicenseSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconLicenseSharpFilled as default } +export default IconLicenseSharpFilled diff --git a/src/IconLiftToTalkOutlined.tsx b/src/IconLiftToTalkOutlined.tsx index 433a9fb93..ce37c1cdd 100644 --- a/src/IconLiftToTalkOutlined.tsx +++ b/src/IconLiftToTalkOutlined.tsx @@ -8,4 +8,4 @@ const IconLiftToTalkOutlined: React.FC = ({ ...props }) => ( ) -export { IconLiftToTalkOutlined as default } +export default IconLiftToTalkOutlined diff --git a/src/IconLiftToTalkOutlinedFilled.tsx b/src/IconLiftToTalkOutlinedFilled.tsx index d9fc59a96..d2dd0e963 100644 --- a/src/IconLiftToTalkOutlinedFilled.tsx +++ b/src/IconLiftToTalkOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconLiftToTalkOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconLiftToTalkOutlinedFilled as default } +export default IconLiftToTalkOutlinedFilled diff --git a/src/IconLiftToTalkRounded.tsx b/src/IconLiftToTalkRounded.tsx index 4ca994f64..7fe85794f 100644 --- a/src/IconLiftToTalkRounded.tsx +++ b/src/IconLiftToTalkRounded.tsx @@ -8,4 +8,4 @@ const IconLiftToTalkRounded: React.FC = ({ ...props }) => ( ) -export { IconLiftToTalkRounded as default } +export default IconLiftToTalkRounded diff --git a/src/IconLiftToTalkRoundedFilled.tsx b/src/IconLiftToTalkRoundedFilled.tsx index a0d023364..cfc56f4ae 100644 --- a/src/IconLiftToTalkRoundedFilled.tsx +++ b/src/IconLiftToTalkRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconLiftToTalkRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconLiftToTalkRoundedFilled as default } +export default IconLiftToTalkRoundedFilled diff --git a/src/IconLiftToTalkSharp.tsx b/src/IconLiftToTalkSharp.tsx index 66291bf29..bad8001d3 100644 --- a/src/IconLiftToTalkSharp.tsx +++ b/src/IconLiftToTalkSharp.tsx @@ -8,4 +8,4 @@ const IconLiftToTalkSharp: React.FC = ({ ...props }) => ( ) -export { IconLiftToTalkSharp as default } +export default IconLiftToTalkSharp diff --git a/src/IconLiftToTalkSharpFilled.tsx b/src/IconLiftToTalkSharpFilled.tsx index c6cc98b52..a74f92234 100644 --- a/src/IconLiftToTalkSharpFilled.tsx +++ b/src/IconLiftToTalkSharpFilled.tsx @@ -8,4 +8,4 @@ const IconLiftToTalkSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconLiftToTalkSharpFilled as default } +export default IconLiftToTalkSharpFilled diff --git a/src/IconLightGroupOutlined.tsx b/src/IconLightGroupOutlined.tsx index 15a5f8ae2..05f3c04b9 100644 --- a/src/IconLightGroupOutlined.tsx +++ b/src/IconLightGroupOutlined.tsx @@ -8,4 +8,4 @@ const IconLightGroupOutlined: React.FC = ({ ...props }) => ( ) -export { IconLightGroupOutlined as default } +export default IconLightGroupOutlined diff --git a/src/IconLightGroupOutlinedFilled.tsx b/src/IconLightGroupOutlinedFilled.tsx index 55558e0d9..edaf1b54d 100644 --- a/src/IconLightGroupOutlinedFilled.tsx +++ b/src/IconLightGroupOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconLightGroupOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconLightGroupOutlinedFilled as default } +export default IconLightGroupOutlinedFilled diff --git a/src/IconLightGroupRounded.tsx b/src/IconLightGroupRounded.tsx index 342e84697..718302087 100644 --- a/src/IconLightGroupRounded.tsx +++ b/src/IconLightGroupRounded.tsx @@ -8,4 +8,4 @@ const IconLightGroupRounded: React.FC = ({ ...props }) => ( ) -export { IconLightGroupRounded as default } +export default IconLightGroupRounded diff --git a/src/IconLightGroupRoundedFilled.tsx b/src/IconLightGroupRoundedFilled.tsx index edc6df6ee..dfe6f2318 100644 --- a/src/IconLightGroupRoundedFilled.tsx +++ b/src/IconLightGroupRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconLightGroupRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconLightGroupRoundedFilled as default } +export default IconLightGroupRoundedFilled diff --git a/src/IconLightGroupSharp.tsx b/src/IconLightGroupSharp.tsx index 24ec4dffb..2586a741c 100644 --- a/src/IconLightGroupSharp.tsx +++ b/src/IconLightGroupSharp.tsx @@ -8,4 +8,4 @@ const IconLightGroupSharp: React.FC = ({ ...props }) => ( ) -export { IconLightGroupSharp as default } +export default IconLightGroupSharp diff --git a/src/IconLightGroupSharpFilled.tsx b/src/IconLightGroupSharpFilled.tsx index 09d0262a4..4b4844a2d 100644 --- a/src/IconLightGroupSharpFilled.tsx +++ b/src/IconLightGroupSharpFilled.tsx @@ -8,4 +8,4 @@ const IconLightGroupSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconLightGroupSharpFilled as default } +export default IconLightGroupSharpFilled diff --git a/src/IconLightModeOutlined.tsx b/src/IconLightModeOutlined.tsx index 4a9e3206f..7a65f47f1 100644 --- a/src/IconLightModeOutlined.tsx +++ b/src/IconLightModeOutlined.tsx @@ -8,4 +8,4 @@ const IconLightModeOutlined: React.FC = ({ ...props }) => ( ) -export { IconLightModeOutlined as default } +export default IconLightModeOutlined diff --git a/src/IconLightModeOutlinedFilled.tsx b/src/IconLightModeOutlinedFilled.tsx index bee2923d2..04dceaa68 100644 --- a/src/IconLightModeOutlinedFilled.tsx +++ b/src/IconLightModeOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconLightModeOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconLightModeOutlinedFilled as default } +export default IconLightModeOutlinedFilled diff --git a/src/IconLightModeRounded.tsx b/src/IconLightModeRounded.tsx index 71a3e17b7..c01a42b3b 100644 --- a/src/IconLightModeRounded.tsx +++ b/src/IconLightModeRounded.tsx @@ -8,4 +8,4 @@ const IconLightModeRounded: React.FC = ({ ...props }) => ( ) -export { IconLightModeRounded as default } +export default IconLightModeRounded diff --git a/src/IconLightModeRoundedFilled.tsx b/src/IconLightModeRoundedFilled.tsx index 26d945287..d875e3c8b 100644 --- a/src/IconLightModeRoundedFilled.tsx +++ b/src/IconLightModeRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconLightModeRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconLightModeRoundedFilled as default } +export default IconLightModeRoundedFilled diff --git a/src/IconLightModeSharp.tsx b/src/IconLightModeSharp.tsx index d554ca430..ed9ad1dd3 100644 --- a/src/IconLightModeSharp.tsx +++ b/src/IconLightModeSharp.tsx @@ -8,4 +8,4 @@ const IconLightModeSharp: React.FC = ({ ...props }) => ( ) -export { IconLightModeSharp as default } +export default IconLightModeSharp diff --git a/src/IconLightModeSharpFilled.tsx b/src/IconLightModeSharpFilled.tsx index a7e0bbaa9..af70e182b 100644 --- a/src/IconLightModeSharpFilled.tsx +++ b/src/IconLightModeSharpFilled.tsx @@ -8,4 +8,4 @@ const IconLightModeSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconLightModeSharpFilled as default } +export default IconLightModeSharpFilled diff --git a/src/IconLightOffOutlined.tsx b/src/IconLightOffOutlined.tsx index 08cdde15e..83794a01f 100644 --- a/src/IconLightOffOutlined.tsx +++ b/src/IconLightOffOutlined.tsx @@ -8,4 +8,4 @@ const IconLightOffOutlined: React.FC = ({ ...props }) => ( ) -export { IconLightOffOutlined as default } +export default IconLightOffOutlined diff --git a/src/IconLightOffOutlinedFilled.tsx b/src/IconLightOffOutlinedFilled.tsx index 3963ce0e0..6fa0ed364 100644 --- a/src/IconLightOffOutlinedFilled.tsx +++ b/src/IconLightOffOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconLightOffOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconLightOffOutlinedFilled as default } +export default IconLightOffOutlinedFilled diff --git a/src/IconLightOffRounded.tsx b/src/IconLightOffRounded.tsx index 46149d6bd..b3008db6a 100644 --- a/src/IconLightOffRounded.tsx +++ b/src/IconLightOffRounded.tsx @@ -8,4 +8,4 @@ const IconLightOffRounded: React.FC = ({ ...props }) => ( ) -export { IconLightOffRounded as default } +export default IconLightOffRounded diff --git a/src/IconLightOffRoundedFilled.tsx b/src/IconLightOffRoundedFilled.tsx index 970f767eb..7bf201df9 100644 --- a/src/IconLightOffRoundedFilled.tsx +++ b/src/IconLightOffRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconLightOffRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconLightOffRoundedFilled as default } +export default IconLightOffRoundedFilled diff --git a/src/IconLightOffSharp.tsx b/src/IconLightOffSharp.tsx index 5aa40cea2..6ab03c008 100644 --- a/src/IconLightOffSharp.tsx +++ b/src/IconLightOffSharp.tsx @@ -8,4 +8,4 @@ const IconLightOffSharp: React.FC = ({ ...props }) => ( ) -export { IconLightOffSharp as default } +export default IconLightOffSharp diff --git a/src/IconLightOffSharpFilled.tsx b/src/IconLightOffSharpFilled.tsx index a840e597e..21deddbce 100644 --- a/src/IconLightOffSharpFilled.tsx +++ b/src/IconLightOffSharpFilled.tsx @@ -8,4 +8,4 @@ const IconLightOffSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconLightOffSharpFilled as default } +export default IconLightOffSharpFilled diff --git a/src/IconLightOutlined.tsx b/src/IconLightOutlined.tsx index 840734058..fbcf254ae 100644 --- a/src/IconLightOutlined.tsx +++ b/src/IconLightOutlined.tsx @@ -8,4 +8,4 @@ const IconLightOutlined: React.FC = ({ ...props }) => ( ) -export { IconLightOutlined as default } +export default IconLightOutlined diff --git a/src/IconLightOutlinedFilled.tsx b/src/IconLightOutlinedFilled.tsx index 74f3664bb..ad3e33628 100644 --- a/src/IconLightOutlinedFilled.tsx +++ b/src/IconLightOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconLightOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconLightOutlinedFilled as default } +export default IconLightOutlinedFilled diff --git a/src/IconLightRounded.tsx b/src/IconLightRounded.tsx index 769c9cb76..1aa46e4fb 100644 --- a/src/IconLightRounded.tsx +++ b/src/IconLightRounded.tsx @@ -8,4 +8,4 @@ const IconLightRounded: React.FC = ({ ...props }) => ( ) -export { IconLightRounded as default } +export default IconLightRounded diff --git a/src/IconLightRoundedFilled.tsx b/src/IconLightRoundedFilled.tsx index fb3fa16aa..1c2d1d054 100644 --- a/src/IconLightRoundedFilled.tsx +++ b/src/IconLightRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconLightRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconLightRoundedFilled as default } +export default IconLightRoundedFilled diff --git a/src/IconLightSharp.tsx b/src/IconLightSharp.tsx index 2a5c656b3..63b467431 100644 --- a/src/IconLightSharp.tsx +++ b/src/IconLightSharp.tsx @@ -8,4 +8,4 @@ const IconLightSharp: React.FC = ({ ...props }) => ( ) -export { IconLightSharp as default } +export default IconLightSharp diff --git a/src/IconLightSharpFilled.tsx b/src/IconLightSharpFilled.tsx index 25171a932..3a66e6388 100644 --- a/src/IconLightSharpFilled.tsx +++ b/src/IconLightSharpFilled.tsx @@ -8,4 +8,4 @@ const IconLightSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconLightSharpFilled as default } +export default IconLightSharpFilled diff --git a/src/IconLightbulbCircleOutlined.tsx b/src/IconLightbulbCircleOutlined.tsx index f1f71893d..22ccbfd6c 100644 --- a/src/IconLightbulbCircleOutlined.tsx +++ b/src/IconLightbulbCircleOutlined.tsx @@ -8,4 +8,4 @@ const IconLightbulbCircleOutlined: React.FC = ({ ...props }) => ( ) -export { IconLightbulbCircleOutlined as default } +export default IconLightbulbCircleOutlined diff --git a/src/IconLightbulbCircleOutlinedFilled.tsx b/src/IconLightbulbCircleOutlinedFilled.tsx index c9835bbd1..5f1308d20 100644 --- a/src/IconLightbulbCircleOutlinedFilled.tsx +++ b/src/IconLightbulbCircleOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconLightbulbCircleOutlinedFilled: React.FC = ({ ) -export { IconLightbulbCircleOutlinedFilled as default } +export default IconLightbulbCircleOutlinedFilled diff --git a/src/IconLightbulbCircleRounded.tsx b/src/IconLightbulbCircleRounded.tsx index 8c9d45003..81f08a73f 100644 --- a/src/IconLightbulbCircleRounded.tsx +++ b/src/IconLightbulbCircleRounded.tsx @@ -8,4 +8,4 @@ const IconLightbulbCircleRounded: React.FC = ({ ...props }) => ( ) -export { IconLightbulbCircleRounded as default } +export default IconLightbulbCircleRounded diff --git a/src/IconLightbulbCircleRoundedFilled.tsx b/src/IconLightbulbCircleRoundedFilled.tsx index bfb3eb0f8..0d2b97efe 100644 --- a/src/IconLightbulbCircleRoundedFilled.tsx +++ b/src/IconLightbulbCircleRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconLightbulbCircleRoundedFilled: React.FC = ({ ) -export { IconLightbulbCircleRoundedFilled as default } +export default IconLightbulbCircleRoundedFilled diff --git a/src/IconLightbulbCircleSharp.tsx b/src/IconLightbulbCircleSharp.tsx index 8cbf06452..fe0a50f63 100644 --- a/src/IconLightbulbCircleSharp.tsx +++ b/src/IconLightbulbCircleSharp.tsx @@ -8,4 +8,4 @@ const IconLightbulbCircleSharp: React.FC = ({ ...props }) => ( ) -export { IconLightbulbCircleSharp as default } +export default IconLightbulbCircleSharp diff --git a/src/IconLightbulbCircleSharpFilled.tsx b/src/IconLightbulbCircleSharpFilled.tsx index ee19871e0..c0582e1aa 100644 --- a/src/IconLightbulbCircleSharpFilled.tsx +++ b/src/IconLightbulbCircleSharpFilled.tsx @@ -8,4 +8,4 @@ const IconLightbulbCircleSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconLightbulbCircleSharpFilled as default } +export default IconLightbulbCircleSharpFilled diff --git a/src/IconLightbulbOutlined.tsx b/src/IconLightbulbOutlined.tsx index a9320b1f0..248d63ca6 100644 --- a/src/IconLightbulbOutlined.tsx +++ b/src/IconLightbulbOutlined.tsx @@ -8,4 +8,4 @@ const IconLightbulbOutlined: React.FC = ({ ...props }) => ( ) -export { IconLightbulbOutlined as default } +export default IconLightbulbOutlined diff --git a/src/IconLightbulbOutlinedFilled.tsx b/src/IconLightbulbOutlinedFilled.tsx index 986e2a9bf..bae88b242 100644 --- a/src/IconLightbulbOutlinedFilled.tsx +++ b/src/IconLightbulbOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconLightbulbOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconLightbulbOutlinedFilled as default } +export default IconLightbulbOutlinedFilled diff --git a/src/IconLightbulbRounded.tsx b/src/IconLightbulbRounded.tsx index cd0ecf6b9..64972659e 100644 --- a/src/IconLightbulbRounded.tsx +++ b/src/IconLightbulbRounded.tsx @@ -8,4 +8,4 @@ const IconLightbulbRounded: React.FC = ({ ...props }) => ( ) -export { IconLightbulbRounded as default } +export default IconLightbulbRounded diff --git a/src/IconLightbulbRoundedFilled.tsx b/src/IconLightbulbRoundedFilled.tsx index 441e7175a..0743c65a5 100644 --- a/src/IconLightbulbRoundedFilled.tsx +++ b/src/IconLightbulbRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconLightbulbRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconLightbulbRoundedFilled as default } +export default IconLightbulbRoundedFilled diff --git a/src/IconLightbulbSharp.tsx b/src/IconLightbulbSharp.tsx index 2834105d4..29860ef46 100644 --- a/src/IconLightbulbSharp.tsx +++ b/src/IconLightbulbSharp.tsx @@ -8,4 +8,4 @@ const IconLightbulbSharp: React.FC = ({ ...props }) => ( ) -export { IconLightbulbSharp as default } +export default IconLightbulbSharp diff --git a/src/IconLightbulbSharpFilled.tsx b/src/IconLightbulbSharpFilled.tsx index c1cb057f4..a664c8ac9 100644 --- a/src/IconLightbulbSharpFilled.tsx +++ b/src/IconLightbulbSharpFilled.tsx @@ -8,4 +8,4 @@ const IconLightbulbSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconLightbulbSharpFilled as default } +export default IconLightbulbSharpFilled diff --git a/src/IconLightningStandOutlined.tsx b/src/IconLightningStandOutlined.tsx index 7e12fb873..f3f320ec4 100644 --- a/src/IconLightningStandOutlined.tsx +++ b/src/IconLightningStandOutlined.tsx @@ -8,4 +8,4 @@ const IconLightningStandOutlined: React.FC = ({ ...props }) => ( ) -export { IconLightningStandOutlined as default } +export default IconLightningStandOutlined diff --git a/src/IconLightningStandOutlinedFilled.tsx b/src/IconLightningStandOutlinedFilled.tsx index 05d751637..a371ef54a 100644 --- a/src/IconLightningStandOutlinedFilled.tsx +++ b/src/IconLightningStandOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconLightningStandOutlinedFilled: React.FC = ({ ) -export { IconLightningStandOutlinedFilled as default } +export default IconLightningStandOutlinedFilled diff --git a/src/IconLightningStandRounded.tsx b/src/IconLightningStandRounded.tsx index fd31a7027..d9994e110 100644 --- a/src/IconLightningStandRounded.tsx +++ b/src/IconLightningStandRounded.tsx @@ -8,4 +8,4 @@ const IconLightningStandRounded: React.FC = ({ ...props }) => ( ) -export { IconLightningStandRounded as default } +export default IconLightningStandRounded diff --git a/src/IconLightningStandRoundedFilled.tsx b/src/IconLightningStandRoundedFilled.tsx index 40eba337c..35cce8aaa 100644 --- a/src/IconLightningStandRoundedFilled.tsx +++ b/src/IconLightningStandRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconLightningStandRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconLightningStandRoundedFilled as default } +export default IconLightningStandRoundedFilled diff --git a/src/IconLightningStandSharp.tsx b/src/IconLightningStandSharp.tsx index 8a569f662..fd27b5581 100644 --- a/src/IconLightningStandSharp.tsx +++ b/src/IconLightningStandSharp.tsx @@ -8,4 +8,4 @@ const IconLightningStandSharp: React.FC = ({ ...props }) => ( ) -export { IconLightningStandSharp as default } +export default IconLightningStandSharp diff --git a/src/IconLightningStandSharpFilled.tsx b/src/IconLightningStandSharpFilled.tsx index 6e28ad4ad..89d8c0edc 100644 --- a/src/IconLightningStandSharpFilled.tsx +++ b/src/IconLightningStandSharpFilled.tsx @@ -8,4 +8,4 @@ const IconLightningStandSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconLightningStandSharpFilled as default } +export default IconLightningStandSharpFilled diff --git a/src/IconLineAxisOutlined.tsx b/src/IconLineAxisOutlined.tsx index 01b6dd050..77dfa8492 100644 --- a/src/IconLineAxisOutlined.tsx +++ b/src/IconLineAxisOutlined.tsx @@ -8,4 +8,4 @@ const IconLineAxisOutlined: React.FC = ({ ...props }) => ( ) -export { IconLineAxisOutlined as default } +export default IconLineAxisOutlined diff --git a/src/IconLineAxisOutlinedFilled.tsx b/src/IconLineAxisOutlinedFilled.tsx index 9fb5fd85c..fdb7a6a7b 100644 --- a/src/IconLineAxisOutlinedFilled.tsx +++ b/src/IconLineAxisOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconLineAxisOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconLineAxisOutlinedFilled as default } +export default IconLineAxisOutlinedFilled diff --git a/src/IconLineAxisRounded.tsx b/src/IconLineAxisRounded.tsx index 7fdba8b77..6d309da8c 100644 --- a/src/IconLineAxisRounded.tsx +++ b/src/IconLineAxisRounded.tsx @@ -8,4 +8,4 @@ const IconLineAxisRounded: React.FC = ({ ...props }) => ( ) -export { IconLineAxisRounded as default } +export default IconLineAxisRounded diff --git a/src/IconLineAxisRoundedFilled.tsx b/src/IconLineAxisRoundedFilled.tsx index fda9d48ac..6701b543e 100644 --- a/src/IconLineAxisRoundedFilled.tsx +++ b/src/IconLineAxisRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconLineAxisRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconLineAxisRoundedFilled as default } +export default IconLineAxisRoundedFilled diff --git a/src/IconLineAxisSharp.tsx b/src/IconLineAxisSharp.tsx index 3f417652f..a9f4141a8 100644 --- a/src/IconLineAxisSharp.tsx +++ b/src/IconLineAxisSharp.tsx @@ -8,4 +8,4 @@ const IconLineAxisSharp: React.FC = ({ ...props }) => ( ) -export { IconLineAxisSharp as default } +export default IconLineAxisSharp diff --git a/src/IconLineAxisSharpFilled.tsx b/src/IconLineAxisSharpFilled.tsx index 210da9f63..30022d149 100644 --- a/src/IconLineAxisSharpFilled.tsx +++ b/src/IconLineAxisSharpFilled.tsx @@ -8,4 +8,4 @@ const IconLineAxisSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconLineAxisSharpFilled as default } +export default IconLineAxisSharpFilled diff --git a/src/IconLineCurveOutlined.tsx b/src/IconLineCurveOutlined.tsx index 8014fabee..d8193b7b1 100644 --- a/src/IconLineCurveOutlined.tsx +++ b/src/IconLineCurveOutlined.tsx @@ -8,4 +8,4 @@ const IconLineCurveOutlined: React.FC = ({ ...props }) => ( ) -export { IconLineCurveOutlined as default } +export default IconLineCurveOutlined diff --git a/src/IconLineCurveOutlinedFilled.tsx b/src/IconLineCurveOutlinedFilled.tsx index a8ca4a734..0c1b6fce3 100644 --- a/src/IconLineCurveOutlinedFilled.tsx +++ b/src/IconLineCurveOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconLineCurveOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconLineCurveOutlinedFilled as default } +export default IconLineCurveOutlinedFilled diff --git a/src/IconLineCurveRounded.tsx b/src/IconLineCurveRounded.tsx index f38920da5..4cd80f20a 100644 --- a/src/IconLineCurveRounded.tsx +++ b/src/IconLineCurveRounded.tsx @@ -8,4 +8,4 @@ const IconLineCurveRounded: React.FC = ({ ...props }) => ( ) -export { IconLineCurveRounded as default } +export default IconLineCurveRounded diff --git a/src/IconLineCurveRoundedFilled.tsx b/src/IconLineCurveRoundedFilled.tsx index b311af8da..e699e2c50 100644 --- a/src/IconLineCurveRoundedFilled.tsx +++ b/src/IconLineCurveRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconLineCurveRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconLineCurveRoundedFilled as default } +export default IconLineCurveRoundedFilled diff --git a/src/IconLineCurveSharp.tsx b/src/IconLineCurveSharp.tsx index d10e314e1..f4ee4df9f 100644 --- a/src/IconLineCurveSharp.tsx +++ b/src/IconLineCurveSharp.tsx @@ -8,4 +8,4 @@ const IconLineCurveSharp: React.FC = ({ ...props }) => ( ) -export { IconLineCurveSharp as default } +export default IconLineCurveSharp diff --git a/src/IconLineCurveSharpFilled.tsx b/src/IconLineCurveSharpFilled.tsx index 64057703a..0723670be 100644 --- a/src/IconLineCurveSharpFilled.tsx +++ b/src/IconLineCurveSharpFilled.tsx @@ -8,4 +8,4 @@ const IconLineCurveSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconLineCurveSharpFilled as default } +export default IconLineCurveSharpFilled diff --git a/src/IconLineEndArrowNotchOutlined.tsx b/src/IconLineEndArrowNotchOutlined.tsx index 61ad32f7c..a9742f2e2 100644 --- a/src/IconLineEndArrowNotchOutlined.tsx +++ b/src/IconLineEndArrowNotchOutlined.tsx @@ -8,4 +8,4 @@ const IconLineEndArrowNotchOutlined: React.FC = ({ ...props }) => ( ) -export { IconLineEndArrowNotchOutlined as default } +export default IconLineEndArrowNotchOutlined diff --git a/src/IconLineEndArrowNotchOutlinedFilled.tsx b/src/IconLineEndArrowNotchOutlinedFilled.tsx index f68e0a064..4c671cce0 100644 --- a/src/IconLineEndArrowNotchOutlinedFilled.tsx +++ b/src/IconLineEndArrowNotchOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconLineEndArrowNotchOutlinedFilled: React.FC = ({ ) -export { IconLineEndArrowNotchOutlinedFilled as default } +export default IconLineEndArrowNotchOutlinedFilled diff --git a/src/IconLineEndArrowNotchRounded.tsx b/src/IconLineEndArrowNotchRounded.tsx index 9fd165386..f12a2a47f 100644 --- a/src/IconLineEndArrowNotchRounded.tsx +++ b/src/IconLineEndArrowNotchRounded.tsx @@ -8,4 +8,4 @@ const IconLineEndArrowNotchRounded: React.FC = ({ ...props }) => ( ) -export { IconLineEndArrowNotchRounded as default } +export default IconLineEndArrowNotchRounded diff --git a/src/IconLineEndArrowNotchRoundedFilled.tsx b/src/IconLineEndArrowNotchRoundedFilled.tsx index 059d3f6df..274918aa2 100644 --- a/src/IconLineEndArrowNotchRoundedFilled.tsx +++ b/src/IconLineEndArrowNotchRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconLineEndArrowNotchRoundedFilled: React.FC = ({ ) -export { IconLineEndArrowNotchRoundedFilled as default } +export default IconLineEndArrowNotchRoundedFilled diff --git a/src/IconLineEndArrowNotchSharp.tsx b/src/IconLineEndArrowNotchSharp.tsx index a7ee5941d..0699567e3 100644 --- a/src/IconLineEndArrowNotchSharp.tsx +++ b/src/IconLineEndArrowNotchSharp.tsx @@ -8,4 +8,4 @@ const IconLineEndArrowNotchSharp: React.FC = ({ ...props }) => ( ) -export { IconLineEndArrowNotchSharp as default } +export default IconLineEndArrowNotchSharp diff --git a/src/IconLineEndArrowNotchSharpFilled.tsx b/src/IconLineEndArrowNotchSharpFilled.tsx index bcd69973a..b47ba3d7e 100644 --- a/src/IconLineEndArrowNotchSharpFilled.tsx +++ b/src/IconLineEndArrowNotchSharpFilled.tsx @@ -10,4 +10,4 @@ const IconLineEndArrowNotchSharpFilled: React.FC = ({ ) -export { IconLineEndArrowNotchSharpFilled as default } +export default IconLineEndArrowNotchSharpFilled diff --git a/src/IconLineEndArrowOutlined.tsx b/src/IconLineEndArrowOutlined.tsx index 9e8707914..f8cb3cc3e 100644 --- a/src/IconLineEndArrowOutlined.tsx +++ b/src/IconLineEndArrowOutlined.tsx @@ -8,4 +8,4 @@ const IconLineEndArrowOutlined: React.FC = ({ ...props }) => ( ) -export { IconLineEndArrowOutlined as default } +export default IconLineEndArrowOutlined diff --git a/src/IconLineEndArrowOutlinedFilled.tsx b/src/IconLineEndArrowOutlinedFilled.tsx index 81f7f8f09..035ce84aa 100644 --- a/src/IconLineEndArrowOutlinedFilled.tsx +++ b/src/IconLineEndArrowOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconLineEndArrowOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconLineEndArrowOutlinedFilled as default } +export default IconLineEndArrowOutlinedFilled diff --git a/src/IconLineEndArrowRounded.tsx b/src/IconLineEndArrowRounded.tsx index 81dace4b4..92cab0bf2 100644 --- a/src/IconLineEndArrowRounded.tsx +++ b/src/IconLineEndArrowRounded.tsx @@ -8,4 +8,4 @@ const IconLineEndArrowRounded: React.FC = ({ ...props }) => ( ) -export { IconLineEndArrowRounded as default } +export default IconLineEndArrowRounded diff --git a/src/IconLineEndArrowRoundedFilled.tsx b/src/IconLineEndArrowRoundedFilled.tsx index 3f4b73fd0..348aabba8 100644 --- a/src/IconLineEndArrowRoundedFilled.tsx +++ b/src/IconLineEndArrowRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconLineEndArrowRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconLineEndArrowRoundedFilled as default } +export default IconLineEndArrowRoundedFilled diff --git a/src/IconLineEndArrowSharp.tsx b/src/IconLineEndArrowSharp.tsx index e5960c90f..08462b941 100644 --- a/src/IconLineEndArrowSharp.tsx +++ b/src/IconLineEndArrowSharp.tsx @@ -8,4 +8,4 @@ const IconLineEndArrowSharp: React.FC = ({ ...props }) => ( ) -export { IconLineEndArrowSharp as default } +export default IconLineEndArrowSharp diff --git a/src/IconLineEndArrowSharpFilled.tsx b/src/IconLineEndArrowSharpFilled.tsx index 2b328c888..d24e5ca49 100644 --- a/src/IconLineEndArrowSharpFilled.tsx +++ b/src/IconLineEndArrowSharpFilled.tsx @@ -8,4 +8,4 @@ const IconLineEndArrowSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconLineEndArrowSharpFilled as default } +export default IconLineEndArrowSharpFilled diff --git a/src/IconLineEndCircleOutlined.tsx b/src/IconLineEndCircleOutlined.tsx index 88e9c9558..6e823af45 100644 --- a/src/IconLineEndCircleOutlined.tsx +++ b/src/IconLineEndCircleOutlined.tsx @@ -8,4 +8,4 @@ const IconLineEndCircleOutlined: React.FC = ({ ...props }) => ( ) -export { IconLineEndCircleOutlined as default } +export default IconLineEndCircleOutlined diff --git a/src/IconLineEndCircleOutlinedFilled.tsx b/src/IconLineEndCircleOutlinedFilled.tsx index a6e0fc635..4dd510ccb 100644 --- a/src/IconLineEndCircleOutlinedFilled.tsx +++ b/src/IconLineEndCircleOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconLineEndCircleOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconLineEndCircleOutlinedFilled as default } +export default IconLineEndCircleOutlinedFilled diff --git a/src/IconLineEndCircleRounded.tsx b/src/IconLineEndCircleRounded.tsx index beff32984..e822278dc 100644 --- a/src/IconLineEndCircleRounded.tsx +++ b/src/IconLineEndCircleRounded.tsx @@ -8,4 +8,4 @@ const IconLineEndCircleRounded: React.FC = ({ ...props }) => ( ) -export { IconLineEndCircleRounded as default } +export default IconLineEndCircleRounded diff --git a/src/IconLineEndCircleRoundedFilled.tsx b/src/IconLineEndCircleRoundedFilled.tsx index 47b367535..00882f27a 100644 --- a/src/IconLineEndCircleRoundedFilled.tsx +++ b/src/IconLineEndCircleRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconLineEndCircleRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconLineEndCircleRoundedFilled as default } +export default IconLineEndCircleRoundedFilled diff --git a/src/IconLineEndCircleSharp.tsx b/src/IconLineEndCircleSharp.tsx index 190a17923..4034730b7 100644 --- a/src/IconLineEndCircleSharp.tsx +++ b/src/IconLineEndCircleSharp.tsx @@ -8,4 +8,4 @@ const IconLineEndCircleSharp: React.FC = ({ ...props }) => ( ) -export { IconLineEndCircleSharp as default } +export default IconLineEndCircleSharp diff --git a/src/IconLineEndCircleSharpFilled.tsx b/src/IconLineEndCircleSharpFilled.tsx index 8cae5f363..0ac8bc0ae 100644 --- a/src/IconLineEndCircleSharpFilled.tsx +++ b/src/IconLineEndCircleSharpFilled.tsx @@ -8,4 +8,4 @@ const IconLineEndCircleSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconLineEndCircleSharpFilled as default } +export default IconLineEndCircleSharpFilled diff --git a/src/IconLineEndDiamondOutlined.tsx b/src/IconLineEndDiamondOutlined.tsx index c62d0d30b..f6824f524 100644 --- a/src/IconLineEndDiamondOutlined.tsx +++ b/src/IconLineEndDiamondOutlined.tsx @@ -8,4 +8,4 @@ const IconLineEndDiamondOutlined: React.FC = ({ ...props }) => ( ) -export { IconLineEndDiamondOutlined as default } +export default IconLineEndDiamondOutlined diff --git a/src/IconLineEndDiamondOutlinedFilled.tsx b/src/IconLineEndDiamondOutlinedFilled.tsx index 8217cee60..097afae8f 100644 --- a/src/IconLineEndDiamondOutlinedFilled.tsx +++ b/src/IconLineEndDiamondOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconLineEndDiamondOutlinedFilled: React.FC = ({ ) -export { IconLineEndDiamondOutlinedFilled as default } +export default IconLineEndDiamondOutlinedFilled diff --git a/src/IconLineEndDiamondRounded.tsx b/src/IconLineEndDiamondRounded.tsx index 8cacfa60c..ece3f4632 100644 --- a/src/IconLineEndDiamondRounded.tsx +++ b/src/IconLineEndDiamondRounded.tsx @@ -8,4 +8,4 @@ const IconLineEndDiamondRounded: React.FC = ({ ...props }) => ( ) -export { IconLineEndDiamondRounded as default } +export default IconLineEndDiamondRounded diff --git a/src/IconLineEndDiamondRoundedFilled.tsx b/src/IconLineEndDiamondRoundedFilled.tsx index cb32de917..1d6a44d1d 100644 --- a/src/IconLineEndDiamondRoundedFilled.tsx +++ b/src/IconLineEndDiamondRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconLineEndDiamondRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconLineEndDiamondRoundedFilled as default } +export default IconLineEndDiamondRoundedFilled diff --git a/src/IconLineEndDiamondSharp.tsx b/src/IconLineEndDiamondSharp.tsx index f2fcb4cd2..9780f41a6 100644 --- a/src/IconLineEndDiamondSharp.tsx +++ b/src/IconLineEndDiamondSharp.tsx @@ -8,4 +8,4 @@ const IconLineEndDiamondSharp: React.FC = ({ ...props }) => ( ) -export { IconLineEndDiamondSharp as default } +export default IconLineEndDiamondSharp diff --git a/src/IconLineEndDiamondSharpFilled.tsx b/src/IconLineEndDiamondSharpFilled.tsx index 2f0cbd5d3..ddd703785 100644 --- a/src/IconLineEndDiamondSharpFilled.tsx +++ b/src/IconLineEndDiamondSharpFilled.tsx @@ -8,4 +8,4 @@ const IconLineEndDiamondSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconLineEndDiamondSharpFilled as default } +export default IconLineEndDiamondSharpFilled diff --git a/src/IconLineEndOutlined.tsx b/src/IconLineEndOutlined.tsx index 536b2b766..e495fe3b9 100644 --- a/src/IconLineEndOutlined.tsx +++ b/src/IconLineEndOutlined.tsx @@ -8,4 +8,4 @@ const IconLineEndOutlined: React.FC = ({ ...props }) => ( ) -export { IconLineEndOutlined as default } +export default IconLineEndOutlined diff --git a/src/IconLineEndOutlinedFilled.tsx b/src/IconLineEndOutlinedFilled.tsx index 91452238c..7836072b0 100644 --- a/src/IconLineEndOutlinedFilled.tsx +++ b/src/IconLineEndOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconLineEndOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconLineEndOutlinedFilled as default } +export default IconLineEndOutlinedFilled diff --git a/src/IconLineEndRounded.tsx b/src/IconLineEndRounded.tsx index 30352057b..a7f9c9dbf 100644 --- a/src/IconLineEndRounded.tsx +++ b/src/IconLineEndRounded.tsx @@ -8,4 +8,4 @@ const IconLineEndRounded: React.FC = ({ ...props }) => ( ) -export { IconLineEndRounded as default } +export default IconLineEndRounded diff --git a/src/IconLineEndRoundedFilled.tsx b/src/IconLineEndRoundedFilled.tsx index 99a604562..257f8d7fe 100644 --- a/src/IconLineEndRoundedFilled.tsx +++ b/src/IconLineEndRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconLineEndRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconLineEndRoundedFilled as default } +export default IconLineEndRoundedFilled diff --git a/src/IconLineEndSharp.tsx b/src/IconLineEndSharp.tsx index cce69f544..f588fc29c 100644 --- a/src/IconLineEndSharp.tsx +++ b/src/IconLineEndSharp.tsx @@ -8,4 +8,4 @@ const IconLineEndSharp: React.FC = ({ ...props }) => ( ) -export { IconLineEndSharp as default } +export default IconLineEndSharp diff --git a/src/IconLineEndSharpFilled.tsx b/src/IconLineEndSharpFilled.tsx index edee030c1..395eea202 100644 --- a/src/IconLineEndSharpFilled.tsx +++ b/src/IconLineEndSharpFilled.tsx @@ -8,4 +8,4 @@ const IconLineEndSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconLineEndSharpFilled as default } +export default IconLineEndSharpFilled diff --git a/src/IconLineEndSquareOutlined.tsx b/src/IconLineEndSquareOutlined.tsx index 8ef9c8470..3baadc28e 100644 --- a/src/IconLineEndSquareOutlined.tsx +++ b/src/IconLineEndSquareOutlined.tsx @@ -8,4 +8,4 @@ const IconLineEndSquareOutlined: React.FC = ({ ...props }) => ( ) -export { IconLineEndSquareOutlined as default } +export default IconLineEndSquareOutlined diff --git a/src/IconLineEndSquareOutlinedFilled.tsx b/src/IconLineEndSquareOutlinedFilled.tsx index bb05a2ffd..7bd7e5c57 100644 --- a/src/IconLineEndSquareOutlinedFilled.tsx +++ b/src/IconLineEndSquareOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconLineEndSquareOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconLineEndSquareOutlinedFilled as default } +export default IconLineEndSquareOutlinedFilled diff --git a/src/IconLineEndSquareRounded.tsx b/src/IconLineEndSquareRounded.tsx index cd339b46f..90440c55d 100644 --- a/src/IconLineEndSquareRounded.tsx +++ b/src/IconLineEndSquareRounded.tsx @@ -8,4 +8,4 @@ const IconLineEndSquareRounded: React.FC = ({ ...props }) => ( ) -export { IconLineEndSquareRounded as default } +export default IconLineEndSquareRounded diff --git a/src/IconLineEndSquareRoundedFilled.tsx b/src/IconLineEndSquareRoundedFilled.tsx index 1bdfcbafe..27367c6aa 100644 --- a/src/IconLineEndSquareRoundedFilled.tsx +++ b/src/IconLineEndSquareRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconLineEndSquareRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconLineEndSquareRoundedFilled as default } +export default IconLineEndSquareRoundedFilled diff --git a/src/IconLineEndSquareSharp.tsx b/src/IconLineEndSquareSharp.tsx index 9cf44f8fd..1cca3c636 100644 --- a/src/IconLineEndSquareSharp.tsx +++ b/src/IconLineEndSquareSharp.tsx @@ -8,4 +8,4 @@ const IconLineEndSquareSharp: React.FC = ({ ...props }) => ( ) -export { IconLineEndSquareSharp as default } +export default IconLineEndSquareSharp diff --git a/src/IconLineEndSquareSharpFilled.tsx b/src/IconLineEndSquareSharpFilled.tsx index 366d649b7..2a0de60fc 100644 --- a/src/IconLineEndSquareSharpFilled.tsx +++ b/src/IconLineEndSquareSharpFilled.tsx @@ -8,4 +8,4 @@ const IconLineEndSquareSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconLineEndSquareSharpFilled as default } +export default IconLineEndSquareSharpFilled diff --git a/src/IconLineStartArrowNotchOutlined.tsx b/src/IconLineStartArrowNotchOutlined.tsx index 96ae58b26..11017bede 100644 --- a/src/IconLineStartArrowNotchOutlined.tsx +++ b/src/IconLineStartArrowNotchOutlined.tsx @@ -8,4 +8,4 @@ const IconLineStartArrowNotchOutlined: React.FC = ({ ...props }) => ( ) -export { IconLineStartArrowNotchOutlined as default } +export default IconLineStartArrowNotchOutlined diff --git a/src/IconLineStartArrowNotchOutlinedFilled.tsx b/src/IconLineStartArrowNotchOutlinedFilled.tsx index e1be7dc9f..71758098a 100644 --- a/src/IconLineStartArrowNotchOutlinedFilled.tsx +++ b/src/IconLineStartArrowNotchOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconLineStartArrowNotchOutlinedFilled: React.FC = ({ ) -export { IconLineStartArrowNotchOutlinedFilled as default } +export default IconLineStartArrowNotchOutlinedFilled diff --git a/src/IconLineStartArrowNotchRounded.tsx b/src/IconLineStartArrowNotchRounded.tsx index 82bbbbc06..376c43edd 100644 --- a/src/IconLineStartArrowNotchRounded.tsx +++ b/src/IconLineStartArrowNotchRounded.tsx @@ -8,4 +8,4 @@ const IconLineStartArrowNotchRounded: React.FC = ({ ...props }) => ( ) -export { IconLineStartArrowNotchRounded as default } +export default IconLineStartArrowNotchRounded diff --git a/src/IconLineStartArrowNotchRoundedFilled.tsx b/src/IconLineStartArrowNotchRoundedFilled.tsx index 902a29fff..bed5d02d8 100644 --- a/src/IconLineStartArrowNotchRoundedFilled.tsx +++ b/src/IconLineStartArrowNotchRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconLineStartArrowNotchRoundedFilled: React.FC = ({ ) -export { IconLineStartArrowNotchRoundedFilled as default } +export default IconLineStartArrowNotchRoundedFilled diff --git a/src/IconLineStartArrowNotchSharp.tsx b/src/IconLineStartArrowNotchSharp.tsx index 4b0f827d2..e47469067 100644 --- a/src/IconLineStartArrowNotchSharp.tsx +++ b/src/IconLineStartArrowNotchSharp.tsx @@ -8,4 +8,4 @@ const IconLineStartArrowNotchSharp: React.FC = ({ ...props }) => ( ) -export { IconLineStartArrowNotchSharp as default } +export default IconLineStartArrowNotchSharp diff --git a/src/IconLineStartArrowNotchSharpFilled.tsx b/src/IconLineStartArrowNotchSharpFilled.tsx index 0b08fc295..db4c3ac3d 100644 --- a/src/IconLineStartArrowNotchSharpFilled.tsx +++ b/src/IconLineStartArrowNotchSharpFilled.tsx @@ -10,4 +10,4 @@ const IconLineStartArrowNotchSharpFilled: React.FC = ({ ) -export { IconLineStartArrowNotchSharpFilled as default } +export default IconLineStartArrowNotchSharpFilled diff --git a/src/IconLineStartArrowOutlined.tsx b/src/IconLineStartArrowOutlined.tsx index 7298bcb0c..6d1fb28af 100644 --- a/src/IconLineStartArrowOutlined.tsx +++ b/src/IconLineStartArrowOutlined.tsx @@ -8,4 +8,4 @@ const IconLineStartArrowOutlined: React.FC = ({ ...props }) => ( ) -export { IconLineStartArrowOutlined as default } +export default IconLineStartArrowOutlined diff --git a/src/IconLineStartArrowOutlinedFilled.tsx b/src/IconLineStartArrowOutlinedFilled.tsx index cde1de4af..9d39faf29 100644 --- a/src/IconLineStartArrowOutlinedFilled.tsx +++ b/src/IconLineStartArrowOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconLineStartArrowOutlinedFilled: React.FC = ({ ) -export { IconLineStartArrowOutlinedFilled as default } +export default IconLineStartArrowOutlinedFilled diff --git a/src/IconLineStartArrowRounded.tsx b/src/IconLineStartArrowRounded.tsx index 968cd605a..ec2870fd6 100644 --- a/src/IconLineStartArrowRounded.tsx +++ b/src/IconLineStartArrowRounded.tsx @@ -8,4 +8,4 @@ const IconLineStartArrowRounded: React.FC = ({ ...props }) => ( ) -export { IconLineStartArrowRounded as default } +export default IconLineStartArrowRounded diff --git a/src/IconLineStartArrowRoundedFilled.tsx b/src/IconLineStartArrowRoundedFilled.tsx index afe2e99e9..ac04a0dd9 100644 --- a/src/IconLineStartArrowRoundedFilled.tsx +++ b/src/IconLineStartArrowRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconLineStartArrowRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconLineStartArrowRoundedFilled as default } +export default IconLineStartArrowRoundedFilled diff --git a/src/IconLineStartArrowSharp.tsx b/src/IconLineStartArrowSharp.tsx index 47ff191e5..4c8f45303 100644 --- a/src/IconLineStartArrowSharp.tsx +++ b/src/IconLineStartArrowSharp.tsx @@ -8,4 +8,4 @@ const IconLineStartArrowSharp: React.FC = ({ ...props }) => ( ) -export { IconLineStartArrowSharp as default } +export default IconLineStartArrowSharp diff --git a/src/IconLineStartArrowSharpFilled.tsx b/src/IconLineStartArrowSharpFilled.tsx index bd8e7272a..c65bcffba 100644 --- a/src/IconLineStartArrowSharpFilled.tsx +++ b/src/IconLineStartArrowSharpFilled.tsx @@ -8,4 +8,4 @@ const IconLineStartArrowSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconLineStartArrowSharpFilled as default } +export default IconLineStartArrowSharpFilled diff --git a/src/IconLineStartCircleOutlined.tsx b/src/IconLineStartCircleOutlined.tsx index d56fbaaa9..a5970f8a8 100644 --- a/src/IconLineStartCircleOutlined.tsx +++ b/src/IconLineStartCircleOutlined.tsx @@ -8,4 +8,4 @@ const IconLineStartCircleOutlined: React.FC = ({ ...props }) => ( ) -export { IconLineStartCircleOutlined as default } +export default IconLineStartCircleOutlined diff --git a/src/IconLineStartCircleOutlinedFilled.tsx b/src/IconLineStartCircleOutlinedFilled.tsx index a88320e44..d8599d670 100644 --- a/src/IconLineStartCircleOutlinedFilled.tsx +++ b/src/IconLineStartCircleOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconLineStartCircleOutlinedFilled: React.FC = ({ ) -export { IconLineStartCircleOutlinedFilled as default } +export default IconLineStartCircleOutlinedFilled diff --git a/src/IconLineStartCircleRounded.tsx b/src/IconLineStartCircleRounded.tsx index 8e91d2a0d..f8c48d82d 100644 --- a/src/IconLineStartCircleRounded.tsx +++ b/src/IconLineStartCircleRounded.tsx @@ -8,4 +8,4 @@ const IconLineStartCircleRounded: React.FC = ({ ...props }) => ( ) -export { IconLineStartCircleRounded as default } +export default IconLineStartCircleRounded diff --git a/src/IconLineStartCircleRoundedFilled.tsx b/src/IconLineStartCircleRoundedFilled.tsx index afd0751bb..4000d22d3 100644 --- a/src/IconLineStartCircleRoundedFilled.tsx +++ b/src/IconLineStartCircleRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconLineStartCircleRoundedFilled: React.FC = ({ ) -export { IconLineStartCircleRoundedFilled as default } +export default IconLineStartCircleRoundedFilled diff --git a/src/IconLineStartCircleSharp.tsx b/src/IconLineStartCircleSharp.tsx index 1bf28a430..201c82e29 100644 --- a/src/IconLineStartCircleSharp.tsx +++ b/src/IconLineStartCircleSharp.tsx @@ -8,4 +8,4 @@ const IconLineStartCircleSharp: React.FC = ({ ...props }) => ( ) -export { IconLineStartCircleSharp as default } +export default IconLineStartCircleSharp diff --git a/src/IconLineStartCircleSharpFilled.tsx b/src/IconLineStartCircleSharpFilled.tsx index b60c36bb6..fa9aa7dfc 100644 --- a/src/IconLineStartCircleSharpFilled.tsx +++ b/src/IconLineStartCircleSharpFilled.tsx @@ -8,4 +8,4 @@ const IconLineStartCircleSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconLineStartCircleSharpFilled as default } +export default IconLineStartCircleSharpFilled diff --git a/src/IconLineStartDiamondOutlined.tsx b/src/IconLineStartDiamondOutlined.tsx index 2b1bfaf9c..2d6ad646c 100644 --- a/src/IconLineStartDiamondOutlined.tsx +++ b/src/IconLineStartDiamondOutlined.tsx @@ -8,4 +8,4 @@ const IconLineStartDiamondOutlined: React.FC = ({ ...props }) => ( ) -export { IconLineStartDiamondOutlined as default } +export default IconLineStartDiamondOutlined diff --git a/src/IconLineStartDiamondOutlinedFilled.tsx b/src/IconLineStartDiamondOutlinedFilled.tsx index 1f65e5f67..787779a8a 100644 --- a/src/IconLineStartDiamondOutlinedFilled.tsx +++ b/src/IconLineStartDiamondOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconLineStartDiamondOutlinedFilled: React.FC = ({ ) -export { IconLineStartDiamondOutlinedFilled as default } +export default IconLineStartDiamondOutlinedFilled diff --git a/src/IconLineStartDiamondRounded.tsx b/src/IconLineStartDiamondRounded.tsx index 587380e56..c1a3dba77 100644 --- a/src/IconLineStartDiamondRounded.tsx +++ b/src/IconLineStartDiamondRounded.tsx @@ -8,4 +8,4 @@ const IconLineStartDiamondRounded: React.FC = ({ ...props }) => ( ) -export { IconLineStartDiamondRounded as default } +export default IconLineStartDiamondRounded diff --git a/src/IconLineStartDiamondRoundedFilled.tsx b/src/IconLineStartDiamondRoundedFilled.tsx index 35a757d1d..d6bc6401c 100644 --- a/src/IconLineStartDiamondRoundedFilled.tsx +++ b/src/IconLineStartDiamondRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconLineStartDiamondRoundedFilled: React.FC = ({ ) -export { IconLineStartDiamondRoundedFilled as default } +export default IconLineStartDiamondRoundedFilled diff --git a/src/IconLineStartDiamondSharp.tsx b/src/IconLineStartDiamondSharp.tsx index a29ce754a..05978f2e9 100644 --- a/src/IconLineStartDiamondSharp.tsx +++ b/src/IconLineStartDiamondSharp.tsx @@ -8,4 +8,4 @@ const IconLineStartDiamondSharp: React.FC = ({ ...props }) => ( ) -export { IconLineStartDiamondSharp as default } +export default IconLineStartDiamondSharp diff --git a/src/IconLineStartDiamondSharpFilled.tsx b/src/IconLineStartDiamondSharpFilled.tsx index 6931336a2..e440a0581 100644 --- a/src/IconLineStartDiamondSharpFilled.tsx +++ b/src/IconLineStartDiamondSharpFilled.tsx @@ -8,4 +8,4 @@ const IconLineStartDiamondSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconLineStartDiamondSharpFilled as default } +export default IconLineStartDiamondSharpFilled diff --git a/src/IconLineStartOutlined.tsx b/src/IconLineStartOutlined.tsx index ea1f93ebf..43483a8f6 100644 --- a/src/IconLineStartOutlined.tsx +++ b/src/IconLineStartOutlined.tsx @@ -8,4 +8,4 @@ const IconLineStartOutlined: React.FC = ({ ...props }) => ( ) -export { IconLineStartOutlined as default } +export default IconLineStartOutlined diff --git a/src/IconLineStartOutlinedFilled.tsx b/src/IconLineStartOutlinedFilled.tsx index e6da016c9..cb7f72a0e 100644 --- a/src/IconLineStartOutlinedFilled.tsx +++ b/src/IconLineStartOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconLineStartOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconLineStartOutlinedFilled as default } +export default IconLineStartOutlinedFilled diff --git a/src/IconLineStartRounded.tsx b/src/IconLineStartRounded.tsx index 95b4b097d..15b351043 100644 --- a/src/IconLineStartRounded.tsx +++ b/src/IconLineStartRounded.tsx @@ -8,4 +8,4 @@ const IconLineStartRounded: React.FC = ({ ...props }) => ( ) -export { IconLineStartRounded as default } +export default IconLineStartRounded diff --git a/src/IconLineStartRoundedFilled.tsx b/src/IconLineStartRoundedFilled.tsx index 343dee20d..ad4448e09 100644 --- a/src/IconLineStartRoundedFilled.tsx +++ b/src/IconLineStartRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconLineStartRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconLineStartRoundedFilled as default } +export default IconLineStartRoundedFilled diff --git a/src/IconLineStartSharp.tsx b/src/IconLineStartSharp.tsx index eb99ad2ce..c7219a8b3 100644 --- a/src/IconLineStartSharp.tsx +++ b/src/IconLineStartSharp.tsx @@ -8,4 +8,4 @@ const IconLineStartSharp: React.FC = ({ ...props }) => ( ) -export { IconLineStartSharp as default } +export default IconLineStartSharp diff --git a/src/IconLineStartSharpFilled.tsx b/src/IconLineStartSharpFilled.tsx index 73886eede..a81e34052 100644 --- a/src/IconLineStartSharpFilled.tsx +++ b/src/IconLineStartSharpFilled.tsx @@ -8,4 +8,4 @@ const IconLineStartSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconLineStartSharpFilled as default } +export default IconLineStartSharpFilled diff --git a/src/IconLineStartSquareOutlined.tsx b/src/IconLineStartSquareOutlined.tsx index b395fc022..3ceaf8066 100644 --- a/src/IconLineStartSquareOutlined.tsx +++ b/src/IconLineStartSquareOutlined.tsx @@ -8,4 +8,4 @@ const IconLineStartSquareOutlined: React.FC = ({ ...props }) => ( ) -export { IconLineStartSquareOutlined as default } +export default IconLineStartSquareOutlined diff --git a/src/IconLineStartSquareOutlinedFilled.tsx b/src/IconLineStartSquareOutlinedFilled.tsx index 78d49911a..084b484cf 100644 --- a/src/IconLineStartSquareOutlinedFilled.tsx +++ b/src/IconLineStartSquareOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconLineStartSquareOutlinedFilled: React.FC = ({ ) -export { IconLineStartSquareOutlinedFilled as default } +export default IconLineStartSquareOutlinedFilled diff --git a/src/IconLineStartSquareRounded.tsx b/src/IconLineStartSquareRounded.tsx index d57effecc..eb8b2b34b 100644 --- a/src/IconLineStartSquareRounded.tsx +++ b/src/IconLineStartSquareRounded.tsx @@ -8,4 +8,4 @@ const IconLineStartSquareRounded: React.FC = ({ ...props }) => ( ) -export { IconLineStartSquareRounded as default } +export default IconLineStartSquareRounded diff --git a/src/IconLineStartSquareRoundedFilled.tsx b/src/IconLineStartSquareRoundedFilled.tsx index 20ffe6043..b4b168d32 100644 --- a/src/IconLineStartSquareRoundedFilled.tsx +++ b/src/IconLineStartSquareRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconLineStartSquareRoundedFilled: React.FC = ({ ) -export { IconLineStartSquareRoundedFilled as default } +export default IconLineStartSquareRoundedFilled diff --git a/src/IconLineStartSquareSharp.tsx b/src/IconLineStartSquareSharp.tsx index b9ca60859..497756164 100644 --- a/src/IconLineStartSquareSharp.tsx +++ b/src/IconLineStartSquareSharp.tsx @@ -8,4 +8,4 @@ const IconLineStartSquareSharp: React.FC = ({ ...props }) => ( ) -export { IconLineStartSquareSharp as default } +export default IconLineStartSquareSharp diff --git a/src/IconLineStartSquareSharpFilled.tsx b/src/IconLineStartSquareSharpFilled.tsx index 46ac2ceae..500e23c3b 100644 --- a/src/IconLineStartSquareSharpFilled.tsx +++ b/src/IconLineStartSquareSharpFilled.tsx @@ -8,4 +8,4 @@ const IconLineStartSquareSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconLineStartSquareSharpFilled as default } +export default IconLineStartSquareSharpFilled diff --git a/src/IconLineStyleOutlined.tsx b/src/IconLineStyleOutlined.tsx index f6fdf0ead..4db14eebf 100644 --- a/src/IconLineStyleOutlined.tsx +++ b/src/IconLineStyleOutlined.tsx @@ -8,4 +8,4 @@ const IconLineStyleOutlined: React.FC = ({ ...props }) => ( ) -export { IconLineStyleOutlined as default } +export default IconLineStyleOutlined diff --git a/src/IconLineStyleOutlinedFilled.tsx b/src/IconLineStyleOutlinedFilled.tsx index a28a5b46c..910873fce 100644 --- a/src/IconLineStyleOutlinedFilled.tsx +++ b/src/IconLineStyleOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconLineStyleOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconLineStyleOutlinedFilled as default } +export default IconLineStyleOutlinedFilled diff --git a/src/IconLineStyleRounded.tsx b/src/IconLineStyleRounded.tsx index 010d52efa..f1a5fde1d 100644 --- a/src/IconLineStyleRounded.tsx +++ b/src/IconLineStyleRounded.tsx @@ -8,4 +8,4 @@ const IconLineStyleRounded: React.FC = ({ ...props }) => ( ) -export { IconLineStyleRounded as default } +export default IconLineStyleRounded diff --git a/src/IconLineStyleRoundedFilled.tsx b/src/IconLineStyleRoundedFilled.tsx index c1606fbad..78f94a949 100644 --- a/src/IconLineStyleRoundedFilled.tsx +++ b/src/IconLineStyleRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconLineStyleRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconLineStyleRoundedFilled as default } +export default IconLineStyleRoundedFilled diff --git a/src/IconLineStyleSharp.tsx b/src/IconLineStyleSharp.tsx index 4526352d2..ca63f0aa3 100644 --- a/src/IconLineStyleSharp.tsx +++ b/src/IconLineStyleSharp.tsx @@ -8,4 +8,4 @@ const IconLineStyleSharp: React.FC = ({ ...props }) => ( ) -export { IconLineStyleSharp as default } +export default IconLineStyleSharp diff --git a/src/IconLineStyleSharpFilled.tsx b/src/IconLineStyleSharpFilled.tsx index 48f8897da..48dfc4a01 100644 --- a/src/IconLineStyleSharpFilled.tsx +++ b/src/IconLineStyleSharpFilled.tsx @@ -8,4 +8,4 @@ const IconLineStyleSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconLineStyleSharpFilled as default } +export default IconLineStyleSharpFilled diff --git a/src/IconLineWeightOutlined.tsx b/src/IconLineWeightOutlined.tsx index 83c5db02c..8a9f1aa37 100644 --- a/src/IconLineWeightOutlined.tsx +++ b/src/IconLineWeightOutlined.tsx @@ -8,4 +8,4 @@ const IconLineWeightOutlined: React.FC = ({ ...props }) => ( ) -export { IconLineWeightOutlined as default } +export default IconLineWeightOutlined diff --git a/src/IconLineWeightOutlinedFilled.tsx b/src/IconLineWeightOutlinedFilled.tsx index fadc6f4a3..4b7ff0cba 100644 --- a/src/IconLineWeightOutlinedFilled.tsx +++ b/src/IconLineWeightOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconLineWeightOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconLineWeightOutlinedFilled as default } +export default IconLineWeightOutlinedFilled diff --git a/src/IconLineWeightRounded.tsx b/src/IconLineWeightRounded.tsx index f63fd508b..c355e10a5 100644 --- a/src/IconLineWeightRounded.tsx +++ b/src/IconLineWeightRounded.tsx @@ -8,4 +8,4 @@ const IconLineWeightRounded: React.FC = ({ ...props }) => ( ) -export { IconLineWeightRounded as default } +export default IconLineWeightRounded diff --git a/src/IconLineWeightRoundedFilled.tsx b/src/IconLineWeightRoundedFilled.tsx index 2338ecf68..fc4056948 100644 --- a/src/IconLineWeightRoundedFilled.tsx +++ b/src/IconLineWeightRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconLineWeightRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconLineWeightRoundedFilled as default } +export default IconLineWeightRoundedFilled diff --git a/src/IconLineWeightSharp.tsx b/src/IconLineWeightSharp.tsx index 74cda2ca4..5bd7c9ec5 100644 --- a/src/IconLineWeightSharp.tsx +++ b/src/IconLineWeightSharp.tsx @@ -8,4 +8,4 @@ const IconLineWeightSharp: React.FC = ({ ...props }) => ( ) -export { IconLineWeightSharp as default } +export default IconLineWeightSharp diff --git a/src/IconLineWeightSharpFilled.tsx b/src/IconLineWeightSharpFilled.tsx index ab3dc7370..88afc47c3 100644 --- a/src/IconLineWeightSharpFilled.tsx +++ b/src/IconLineWeightSharpFilled.tsx @@ -8,4 +8,4 @@ const IconLineWeightSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconLineWeightSharpFilled as default } +export default IconLineWeightSharpFilled diff --git a/src/IconLinearScaleOutlined.tsx b/src/IconLinearScaleOutlined.tsx index 77a390a8f..21410e1a8 100644 --- a/src/IconLinearScaleOutlined.tsx +++ b/src/IconLinearScaleOutlined.tsx @@ -8,4 +8,4 @@ const IconLinearScaleOutlined: React.FC = ({ ...props }) => ( ) -export { IconLinearScaleOutlined as default } +export default IconLinearScaleOutlined diff --git a/src/IconLinearScaleOutlinedFilled.tsx b/src/IconLinearScaleOutlinedFilled.tsx index 146d60f2e..883ba71ea 100644 --- a/src/IconLinearScaleOutlinedFilled.tsx +++ b/src/IconLinearScaleOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconLinearScaleOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconLinearScaleOutlinedFilled as default } +export default IconLinearScaleOutlinedFilled diff --git a/src/IconLinearScaleRounded.tsx b/src/IconLinearScaleRounded.tsx index 82c754efb..5d8277956 100644 --- a/src/IconLinearScaleRounded.tsx +++ b/src/IconLinearScaleRounded.tsx @@ -8,4 +8,4 @@ const IconLinearScaleRounded: React.FC = ({ ...props }) => ( ) -export { IconLinearScaleRounded as default } +export default IconLinearScaleRounded diff --git a/src/IconLinearScaleRoundedFilled.tsx b/src/IconLinearScaleRoundedFilled.tsx index 4ff67fa7b..dfe464f8c 100644 --- a/src/IconLinearScaleRoundedFilled.tsx +++ b/src/IconLinearScaleRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconLinearScaleRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconLinearScaleRoundedFilled as default } +export default IconLinearScaleRoundedFilled diff --git a/src/IconLinearScaleSharp.tsx b/src/IconLinearScaleSharp.tsx index 854fdbb14..d9cc70f10 100644 --- a/src/IconLinearScaleSharp.tsx +++ b/src/IconLinearScaleSharp.tsx @@ -8,4 +8,4 @@ const IconLinearScaleSharp: React.FC = ({ ...props }) => ( ) -export { IconLinearScaleSharp as default } +export default IconLinearScaleSharp diff --git a/src/IconLinearScaleSharpFilled.tsx b/src/IconLinearScaleSharpFilled.tsx index 94e4ffbe9..fd16100dd 100644 --- a/src/IconLinearScaleSharpFilled.tsx +++ b/src/IconLinearScaleSharpFilled.tsx @@ -8,4 +8,4 @@ const IconLinearScaleSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconLinearScaleSharpFilled as default } +export default IconLinearScaleSharpFilled diff --git a/src/IconLinkOffOutlined.tsx b/src/IconLinkOffOutlined.tsx index f00c2e059..19f1451ff 100644 --- a/src/IconLinkOffOutlined.tsx +++ b/src/IconLinkOffOutlined.tsx @@ -8,4 +8,4 @@ const IconLinkOffOutlined: React.FC = ({ ...props }) => ( ) -export { IconLinkOffOutlined as default } +export default IconLinkOffOutlined diff --git a/src/IconLinkOffOutlinedFilled.tsx b/src/IconLinkOffOutlinedFilled.tsx index 0b4f828ae..c75f3e370 100644 --- a/src/IconLinkOffOutlinedFilled.tsx +++ b/src/IconLinkOffOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconLinkOffOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconLinkOffOutlinedFilled as default } +export default IconLinkOffOutlinedFilled diff --git a/src/IconLinkOffRounded.tsx b/src/IconLinkOffRounded.tsx index 1758834b0..ac5470eda 100644 --- a/src/IconLinkOffRounded.tsx +++ b/src/IconLinkOffRounded.tsx @@ -8,4 +8,4 @@ const IconLinkOffRounded: React.FC = ({ ...props }) => ( ) -export { IconLinkOffRounded as default } +export default IconLinkOffRounded diff --git a/src/IconLinkOffRoundedFilled.tsx b/src/IconLinkOffRoundedFilled.tsx index 660f313da..49ba61be4 100644 --- a/src/IconLinkOffRoundedFilled.tsx +++ b/src/IconLinkOffRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconLinkOffRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconLinkOffRoundedFilled as default } +export default IconLinkOffRoundedFilled diff --git a/src/IconLinkOffSharp.tsx b/src/IconLinkOffSharp.tsx index 779b8ea8d..a93e1f922 100644 --- a/src/IconLinkOffSharp.tsx +++ b/src/IconLinkOffSharp.tsx @@ -8,4 +8,4 @@ const IconLinkOffSharp: React.FC = ({ ...props }) => ( ) -export { IconLinkOffSharp as default } +export default IconLinkOffSharp diff --git a/src/IconLinkOffSharpFilled.tsx b/src/IconLinkOffSharpFilled.tsx index 8e7cc1bcd..f24412295 100644 --- a/src/IconLinkOffSharpFilled.tsx +++ b/src/IconLinkOffSharpFilled.tsx @@ -8,4 +8,4 @@ const IconLinkOffSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconLinkOffSharpFilled as default } +export default IconLinkOffSharpFilled diff --git a/src/IconLinkOutlined.tsx b/src/IconLinkOutlined.tsx index 1934a0889..34a4994d5 100644 --- a/src/IconLinkOutlined.tsx +++ b/src/IconLinkOutlined.tsx @@ -8,4 +8,4 @@ const IconLinkOutlined: React.FC = ({ ...props }) => ( ) -export { IconLinkOutlined as default } +export default IconLinkOutlined diff --git a/src/IconLinkOutlinedFilled.tsx b/src/IconLinkOutlinedFilled.tsx index 17255794f..76573b6e1 100644 --- a/src/IconLinkOutlinedFilled.tsx +++ b/src/IconLinkOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconLinkOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconLinkOutlinedFilled as default } +export default IconLinkOutlinedFilled diff --git a/src/IconLinkRounded.tsx b/src/IconLinkRounded.tsx index 8d3c42127..86f085162 100644 --- a/src/IconLinkRounded.tsx +++ b/src/IconLinkRounded.tsx @@ -8,4 +8,4 @@ const IconLinkRounded: React.FC = ({ ...props }) => ( ) -export { IconLinkRounded as default } +export default IconLinkRounded diff --git a/src/IconLinkRoundedFilled.tsx b/src/IconLinkRoundedFilled.tsx index f0f181e58..48657e6a1 100644 --- a/src/IconLinkRoundedFilled.tsx +++ b/src/IconLinkRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconLinkRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconLinkRoundedFilled as default } +export default IconLinkRoundedFilled diff --git a/src/IconLinkSharp.tsx b/src/IconLinkSharp.tsx index f1a8eaf40..86069dc92 100644 --- a/src/IconLinkSharp.tsx +++ b/src/IconLinkSharp.tsx @@ -8,4 +8,4 @@ const IconLinkSharp: React.FC = ({ ...props }) => ( ) -export { IconLinkSharp as default } +export default IconLinkSharp diff --git a/src/IconLinkSharpFilled.tsx b/src/IconLinkSharpFilled.tsx index a572f17c4..74a228d3d 100644 --- a/src/IconLinkSharpFilled.tsx +++ b/src/IconLinkSharpFilled.tsx @@ -8,4 +8,4 @@ const IconLinkSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconLinkSharpFilled as default } +export default IconLinkSharpFilled diff --git a/src/IconLinkedCameraOutlined.tsx b/src/IconLinkedCameraOutlined.tsx index faf5eaf7e..364b41662 100644 --- a/src/IconLinkedCameraOutlined.tsx +++ b/src/IconLinkedCameraOutlined.tsx @@ -8,4 +8,4 @@ const IconLinkedCameraOutlined: React.FC = ({ ...props }) => ( ) -export { IconLinkedCameraOutlined as default } +export default IconLinkedCameraOutlined diff --git a/src/IconLinkedCameraOutlinedFilled.tsx b/src/IconLinkedCameraOutlinedFilled.tsx index bedaa2d0c..bc5df4ffc 100644 --- a/src/IconLinkedCameraOutlinedFilled.tsx +++ b/src/IconLinkedCameraOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconLinkedCameraOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconLinkedCameraOutlinedFilled as default } +export default IconLinkedCameraOutlinedFilled diff --git a/src/IconLinkedCameraRounded.tsx b/src/IconLinkedCameraRounded.tsx index 3ff34864f..063c64349 100644 --- a/src/IconLinkedCameraRounded.tsx +++ b/src/IconLinkedCameraRounded.tsx @@ -8,4 +8,4 @@ const IconLinkedCameraRounded: React.FC = ({ ...props }) => ( ) -export { IconLinkedCameraRounded as default } +export default IconLinkedCameraRounded diff --git a/src/IconLinkedCameraRoundedFilled.tsx b/src/IconLinkedCameraRoundedFilled.tsx index 111b99123..6a4bc094c 100644 --- a/src/IconLinkedCameraRoundedFilled.tsx +++ b/src/IconLinkedCameraRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconLinkedCameraRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconLinkedCameraRoundedFilled as default } +export default IconLinkedCameraRoundedFilled diff --git a/src/IconLinkedCameraSharp.tsx b/src/IconLinkedCameraSharp.tsx index dc6523610..891e8e34b 100644 --- a/src/IconLinkedCameraSharp.tsx +++ b/src/IconLinkedCameraSharp.tsx @@ -8,4 +8,4 @@ const IconLinkedCameraSharp: React.FC = ({ ...props }) => ( ) -export { IconLinkedCameraSharp as default } +export default IconLinkedCameraSharp diff --git a/src/IconLinkedCameraSharpFilled.tsx b/src/IconLinkedCameraSharpFilled.tsx index 790cb7de9..2017b2dff 100644 --- a/src/IconLinkedCameraSharpFilled.tsx +++ b/src/IconLinkedCameraSharpFilled.tsx @@ -8,4 +8,4 @@ const IconLinkedCameraSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconLinkedCameraSharpFilled as default } +export default IconLinkedCameraSharpFilled diff --git a/src/IconLinkedServicesOutlined.tsx b/src/IconLinkedServicesOutlined.tsx index 46036889f..8aea180a7 100644 --- a/src/IconLinkedServicesOutlined.tsx +++ b/src/IconLinkedServicesOutlined.tsx @@ -8,4 +8,4 @@ const IconLinkedServicesOutlined: React.FC = ({ ...props }) => ( ) -export { IconLinkedServicesOutlined as default } +export default IconLinkedServicesOutlined diff --git a/src/IconLinkedServicesOutlinedFilled.tsx b/src/IconLinkedServicesOutlinedFilled.tsx index be1800ba9..79f4beb09 100644 --- a/src/IconLinkedServicesOutlinedFilled.tsx +++ b/src/IconLinkedServicesOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconLinkedServicesOutlinedFilled: React.FC = ({ ) -export { IconLinkedServicesOutlinedFilled as default } +export default IconLinkedServicesOutlinedFilled diff --git a/src/IconLinkedServicesRounded.tsx b/src/IconLinkedServicesRounded.tsx index 33cae010c..4e7f29b1a 100644 --- a/src/IconLinkedServicesRounded.tsx +++ b/src/IconLinkedServicesRounded.tsx @@ -8,4 +8,4 @@ const IconLinkedServicesRounded: React.FC = ({ ...props }) => ( ) -export { IconLinkedServicesRounded as default } +export default IconLinkedServicesRounded diff --git a/src/IconLinkedServicesRoundedFilled.tsx b/src/IconLinkedServicesRoundedFilled.tsx index 02cf6b18c..bbb4a72ad 100644 --- a/src/IconLinkedServicesRoundedFilled.tsx +++ b/src/IconLinkedServicesRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconLinkedServicesRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconLinkedServicesRoundedFilled as default } +export default IconLinkedServicesRoundedFilled diff --git a/src/IconLinkedServicesSharp.tsx b/src/IconLinkedServicesSharp.tsx index 9a36d6c29..30a54629c 100644 --- a/src/IconLinkedServicesSharp.tsx +++ b/src/IconLinkedServicesSharp.tsx @@ -8,4 +8,4 @@ const IconLinkedServicesSharp: React.FC = ({ ...props }) => ( ) -export { IconLinkedServicesSharp as default } +export default IconLinkedServicesSharp diff --git a/src/IconLinkedServicesSharpFilled.tsx b/src/IconLinkedServicesSharpFilled.tsx index f41087873..78b41b78a 100644 --- a/src/IconLinkedServicesSharpFilled.tsx +++ b/src/IconLinkedServicesSharpFilled.tsx @@ -8,4 +8,4 @@ const IconLinkedServicesSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconLinkedServicesSharpFilled as default } +export default IconLinkedServicesSharpFilled diff --git a/src/IconLiquorOutlined.tsx b/src/IconLiquorOutlined.tsx index 7e2578350..96dcac24b 100644 --- a/src/IconLiquorOutlined.tsx +++ b/src/IconLiquorOutlined.tsx @@ -8,4 +8,4 @@ const IconLiquorOutlined: React.FC = ({ ...props }) => ( ) -export { IconLiquorOutlined as default } +export default IconLiquorOutlined diff --git a/src/IconLiquorOutlinedFilled.tsx b/src/IconLiquorOutlinedFilled.tsx index 57342b0cc..3e852c8d7 100644 --- a/src/IconLiquorOutlinedFilled.tsx +++ b/src/IconLiquorOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconLiquorOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconLiquorOutlinedFilled as default } +export default IconLiquorOutlinedFilled diff --git a/src/IconLiquorRounded.tsx b/src/IconLiquorRounded.tsx index 18c4f771d..ee9314672 100644 --- a/src/IconLiquorRounded.tsx +++ b/src/IconLiquorRounded.tsx @@ -8,4 +8,4 @@ const IconLiquorRounded: React.FC = ({ ...props }) => ( ) -export { IconLiquorRounded as default } +export default IconLiquorRounded diff --git a/src/IconLiquorRoundedFilled.tsx b/src/IconLiquorRoundedFilled.tsx index 13298e579..28adda2d7 100644 --- a/src/IconLiquorRoundedFilled.tsx +++ b/src/IconLiquorRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconLiquorRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconLiquorRoundedFilled as default } +export default IconLiquorRoundedFilled diff --git a/src/IconLiquorSharp.tsx b/src/IconLiquorSharp.tsx index 5e39a2611..b0aec9bb2 100644 --- a/src/IconLiquorSharp.tsx +++ b/src/IconLiquorSharp.tsx @@ -8,4 +8,4 @@ const IconLiquorSharp: React.FC = ({ ...props }) => ( ) -export { IconLiquorSharp as default } +export default IconLiquorSharp diff --git a/src/IconLiquorSharpFilled.tsx b/src/IconLiquorSharpFilled.tsx index 9966b1f44..86522b93f 100644 --- a/src/IconLiquorSharpFilled.tsx +++ b/src/IconLiquorSharpFilled.tsx @@ -8,4 +8,4 @@ const IconLiquorSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconLiquorSharpFilled as default } +export default IconLiquorSharpFilled diff --git a/src/IconListAltAddOutlined.tsx b/src/IconListAltAddOutlined.tsx index a3f3e74fd..6c90cc2c6 100644 --- a/src/IconListAltAddOutlined.tsx +++ b/src/IconListAltAddOutlined.tsx @@ -8,4 +8,4 @@ const IconListAltAddOutlined: React.FC = ({ ...props }) => ( ) -export { IconListAltAddOutlined as default } +export default IconListAltAddOutlined diff --git a/src/IconListAltAddOutlinedFilled.tsx b/src/IconListAltAddOutlinedFilled.tsx index d59df72e9..cd810ad73 100644 --- a/src/IconListAltAddOutlinedFilled.tsx +++ b/src/IconListAltAddOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconListAltAddOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconListAltAddOutlinedFilled as default } +export default IconListAltAddOutlinedFilled diff --git a/src/IconListAltAddRounded.tsx b/src/IconListAltAddRounded.tsx index fd5c103e1..0e5fae726 100644 --- a/src/IconListAltAddRounded.tsx +++ b/src/IconListAltAddRounded.tsx @@ -8,4 +8,4 @@ const IconListAltAddRounded: React.FC = ({ ...props }) => ( ) -export { IconListAltAddRounded as default } +export default IconListAltAddRounded diff --git a/src/IconListAltAddRoundedFilled.tsx b/src/IconListAltAddRoundedFilled.tsx index 8c2eba333..52617495f 100644 --- a/src/IconListAltAddRoundedFilled.tsx +++ b/src/IconListAltAddRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconListAltAddRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconListAltAddRoundedFilled as default } +export default IconListAltAddRoundedFilled diff --git a/src/IconListAltAddSharp.tsx b/src/IconListAltAddSharp.tsx index ca2de4fff..107ff7438 100644 --- a/src/IconListAltAddSharp.tsx +++ b/src/IconListAltAddSharp.tsx @@ -8,4 +8,4 @@ const IconListAltAddSharp: React.FC = ({ ...props }) => ( ) -export { IconListAltAddSharp as default } +export default IconListAltAddSharp diff --git a/src/IconListAltAddSharpFilled.tsx b/src/IconListAltAddSharpFilled.tsx index 5c68e6131..e36f15af9 100644 --- a/src/IconListAltAddSharpFilled.tsx +++ b/src/IconListAltAddSharpFilled.tsx @@ -8,4 +8,4 @@ const IconListAltAddSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconListAltAddSharpFilled as default } +export default IconListAltAddSharpFilled diff --git a/src/IconListAltOutlined.tsx b/src/IconListAltOutlined.tsx index d855d4db4..b00d263a5 100644 --- a/src/IconListAltOutlined.tsx +++ b/src/IconListAltOutlined.tsx @@ -8,4 +8,4 @@ const IconListAltOutlined: React.FC = ({ ...props }) => ( ) -export { IconListAltOutlined as default } +export default IconListAltOutlined diff --git a/src/IconListAltOutlinedFilled.tsx b/src/IconListAltOutlinedFilled.tsx index 115723cfa..3819bee8d 100644 --- a/src/IconListAltOutlinedFilled.tsx +++ b/src/IconListAltOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconListAltOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconListAltOutlinedFilled as default } +export default IconListAltOutlinedFilled diff --git a/src/IconListAltRounded.tsx b/src/IconListAltRounded.tsx index 3a6ad4352..0844139b5 100644 --- a/src/IconListAltRounded.tsx +++ b/src/IconListAltRounded.tsx @@ -8,4 +8,4 @@ const IconListAltRounded: React.FC = ({ ...props }) => ( ) -export { IconListAltRounded as default } +export default IconListAltRounded diff --git a/src/IconListAltRoundedFilled.tsx b/src/IconListAltRoundedFilled.tsx index 681b91e5a..daf3d59b0 100644 --- a/src/IconListAltRoundedFilled.tsx +++ b/src/IconListAltRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconListAltRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconListAltRoundedFilled as default } +export default IconListAltRoundedFilled diff --git a/src/IconListAltSharp.tsx b/src/IconListAltSharp.tsx index f60b495d6..42c127059 100644 --- a/src/IconListAltSharp.tsx +++ b/src/IconListAltSharp.tsx @@ -8,4 +8,4 @@ const IconListAltSharp: React.FC = ({ ...props }) => ( ) -export { IconListAltSharp as default } +export default IconListAltSharp diff --git a/src/IconListAltSharpFilled.tsx b/src/IconListAltSharpFilled.tsx index fe5bbd0e2..689338db0 100644 --- a/src/IconListAltSharpFilled.tsx +++ b/src/IconListAltSharpFilled.tsx @@ -8,4 +8,4 @@ const IconListAltSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconListAltSharpFilled as default } +export default IconListAltSharpFilled diff --git a/src/IconListOutlined.tsx b/src/IconListOutlined.tsx index a772f0daf..518616d61 100644 --- a/src/IconListOutlined.tsx +++ b/src/IconListOutlined.tsx @@ -8,4 +8,4 @@ const IconListOutlined: React.FC = ({ ...props }) => ( ) -export { IconListOutlined as default } +export default IconListOutlined diff --git a/src/IconListOutlinedFilled.tsx b/src/IconListOutlinedFilled.tsx index a47b5a889..4e9c7bdb5 100644 --- a/src/IconListOutlinedFilled.tsx +++ b/src/IconListOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconListOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconListOutlinedFilled as default } +export default IconListOutlinedFilled diff --git a/src/IconListRounded.tsx b/src/IconListRounded.tsx index 0185dc4a3..d693535a2 100644 --- a/src/IconListRounded.tsx +++ b/src/IconListRounded.tsx @@ -8,4 +8,4 @@ const IconListRounded: React.FC = ({ ...props }) => ( ) -export { IconListRounded as default } +export default IconListRounded diff --git a/src/IconListRoundedFilled.tsx b/src/IconListRoundedFilled.tsx index 7ea18337c..1366efd19 100644 --- a/src/IconListRoundedFilled.tsx +++ b/src/IconListRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconListRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconListRoundedFilled as default } +export default IconListRoundedFilled diff --git a/src/IconListSharp.tsx b/src/IconListSharp.tsx index 612aeeef0..3be4e56c8 100644 --- a/src/IconListSharp.tsx +++ b/src/IconListSharp.tsx @@ -8,4 +8,4 @@ const IconListSharp: React.FC = ({ ...props }) => ( ) -export { IconListSharp as default } +export default IconListSharp diff --git a/src/IconListSharpFilled.tsx b/src/IconListSharpFilled.tsx index 4110cf651..4929cdda2 100644 --- a/src/IconListSharpFilled.tsx +++ b/src/IconListSharpFilled.tsx @@ -8,4 +8,4 @@ const IconListSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconListSharpFilled as default } +export default IconListSharpFilled diff --git a/src/IconListsOutlined.tsx b/src/IconListsOutlined.tsx index 40b0888f5..403bf7aba 100644 --- a/src/IconListsOutlined.tsx +++ b/src/IconListsOutlined.tsx @@ -8,4 +8,4 @@ const IconListsOutlined: React.FC = ({ ...props }) => ( ) -export { IconListsOutlined as default } +export default IconListsOutlined diff --git a/src/IconListsOutlinedFilled.tsx b/src/IconListsOutlinedFilled.tsx index 22d9df965..473d4a803 100644 --- a/src/IconListsOutlinedFilled.tsx +++ b/src/IconListsOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconListsOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconListsOutlinedFilled as default } +export default IconListsOutlinedFilled diff --git a/src/IconListsRounded.tsx b/src/IconListsRounded.tsx index f46169ac4..7eff6d773 100644 --- a/src/IconListsRounded.tsx +++ b/src/IconListsRounded.tsx @@ -8,4 +8,4 @@ const IconListsRounded: React.FC = ({ ...props }) => ( ) -export { IconListsRounded as default } +export default IconListsRounded diff --git a/src/IconListsRoundedFilled.tsx b/src/IconListsRoundedFilled.tsx index 93ade72c2..2e3b579d9 100644 --- a/src/IconListsRoundedFilled.tsx +++ b/src/IconListsRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconListsRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconListsRoundedFilled as default } +export default IconListsRoundedFilled diff --git a/src/IconListsSharp.tsx b/src/IconListsSharp.tsx index ce702a87d..70267f071 100644 --- a/src/IconListsSharp.tsx +++ b/src/IconListsSharp.tsx @@ -8,4 +8,4 @@ const IconListsSharp: React.FC = ({ ...props }) => ( ) -export { IconListsSharp as default } +export default IconListsSharp diff --git a/src/IconListsSharpFilled.tsx b/src/IconListsSharpFilled.tsx index a50afa056..758acd283 100644 --- a/src/IconListsSharpFilled.tsx +++ b/src/IconListsSharpFilled.tsx @@ -8,4 +8,4 @@ const IconListsSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconListsSharpFilled as default } +export default IconListsSharpFilled diff --git a/src/IconLiveHelpOutlined.tsx b/src/IconLiveHelpOutlined.tsx index 2ce80bda0..f87b6ea4b 100644 --- a/src/IconLiveHelpOutlined.tsx +++ b/src/IconLiveHelpOutlined.tsx @@ -8,4 +8,4 @@ const IconLiveHelpOutlined: React.FC = ({ ...props }) => ( ) -export { IconLiveHelpOutlined as default } +export default IconLiveHelpOutlined diff --git a/src/IconLiveHelpOutlinedFilled.tsx b/src/IconLiveHelpOutlinedFilled.tsx index 8e2d87a5c..49cf31495 100644 --- a/src/IconLiveHelpOutlinedFilled.tsx +++ b/src/IconLiveHelpOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconLiveHelpOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconLiveHelpOutlinedFilled as default } +export default IconLiveHelpOutlinedFilled diff --git a/src/IconLiveHelpRounded.tsx b/src/IconLiveHelpRounded.tsx index d368ee6b0..fdea31aae 100644 --- a/src/IconLiveHelpRounded.tsx +++ b/src/IconLiveHelpRounded.tsx @@ -8,4 +8,4 @@ const IconLiveHelpRounded: React.FC = ({ ...props }) => ( ) -export { IconLiveHelpRounded as default } +export default IconLiveHelpRounded diff --git a/src/IconLiveHelpRoundedFilled.tsx b/src/IconLiveHelpRoundedFilled.tsx index af1b7c61c..c9558ac5b 100644 --- a/src/IconLiveHelpRoundedFilled.tsx +++ b/src/IconLiveHelpRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconLiveHelpRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconLiveHelpRoundedFilled as default } +export default IconLiveHelpRoundedFilled diff --git a/src/IconLiveHelpSharp.tsx b/src/IconLiveHelpSharp.tsx index 782d492fb..9cb41b51d 100644 --- a/src/IconLiveHelpSharp.tsx +++ b/src/IconLiveHelpSharp.tsx @@ -8,4 +8,4 @@ const IconLiveHelpSharp: React.FC = ({ ...props }) => ( ) -export { IconLiveHelpSharp as default } +export default IconLiveHelpSharp diff --git a/src/IconLiveHelpSharpFilled.tsx b/src/IconLiveHelpSharpFilled.tsx index f3fc42d15..b8610821a 100644 --- a/src/IconLiveHelpSharpFilled.tsx +++ b/src/IconLiveHelpSharpFilled.tsx @@ -8,4 +8,4 @@ const IconLiveHelpSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconLiveHelpSharpFilled as default } +export default IconLiveHelpSharpFilled diff --git a/src/IconLiveTvOutlined.tsx b/src/IconLiveTvOutlined.tsx index 81e64b09a..fabb90345 100644 --- a/src/IconLiveTvOutlined.tsx +++ b/src/IconLiveTvOutlined.tsx @@ -8,4 +8,4 @@ const IconLiveTvOutlined: React.FC = ({ ...props }) => ( ) -export { IconLiveTvOutlined as default } +export default IconLiveTvOutlined diff --git a/src/IconLiveTvOutlinedFilled.tsx b/src/IconLiveTvOutlinedFilled.tsx index 8b3a7d289..e37941c0d 100644 --- a/src/IconLiveTvOutlinedFilled.tsx +++ b/src/IconLiveTvOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconLiveTvOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconLiveTvOutlinedFilled as default } +export default IconLiveTvOutlinedFilled diff --git a/src/IconLiveTvRounded.tsx b/src/IconLiveTvRounded.tsx index 41ce8babc..cd5b9a674 100644 --- a/src/IconLiveTvRounded.tsx +++ b/src/IconLiveTvRounded.tsx @@ -8,4 +8,4 @@ const IconLiveTvRounded: React.FC = ({ ...props }) => ( ) -export { IconLiveTvRounded as default } +export default IconLiveTvRounded diff --git a/src/IconLiveTvRoundedFilled.tsx b/src/IconLiveTvRoundedFilled.tsx index 933cfb327..70e9b4046 100644 --- a/src/IconLiveTvRoundedFilled.tsx +++ b/src/IconLiveTvRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconLiveTvRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconLiveTvRoundedFilled as default } +export default IconLiveTvRoundedFilled diff --git a/src/IconLiveTvSharp.tsx b/src/IconLiveTvSharp.tsx index 90667a954..9484b81f1 100644 --- a/src/IconLiveTvSharp.tsx +++ b/src/IconLiveTvSharp.tsx @@ -8,4 +8,4 @@ const IconLiveTvSharp: React.FC = ({ ...props }) => ( ) -export { IconLiveTvSharp as default } +export default IconLiveTvSharp diff --git a/src/IconLiveTvSharpFilled.tsx b/src/IconLiveTvSharpFilled.tsx index 74c53366b..0ae4dc8ef 100644 --- a/src/IconLiveTvSharpFilled.tsx +++ b/src/IconLiveTvSharpFilled.tsx @@ -8,4 +8,4 @@ const IconLiveTvSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconLiveTvSharpFilled as default } +export default IconLiveTvSharpFilled diff --git a/src/IconLivingOutlined.tsx b/src/IconLivingOutlined.tsx index bcd85ac14..1116305f6 100644 --- a/src/IconLivingOutlined.tsx +++ b/src/IconLivingOutlined.tsx @@ -8,4 +8,4 @@ const IconLivingOutlined: React.FC = ({ ...props }) => ( ) -export { IconLivingOutlined as default } +export default IconLivingOutlined diff --git a/src/IconLivingOutlinedFilled.tsx b/src/IconLivingOutlinedFilled.tsx index 6c919827a..d945b25e1 100644 --- a/src/IconLivingOutlinedFilled.tsx +++ b/src/IconLivingOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconLivingOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconLivingOutlinedFilled as default } +export default IconLivingOutlinedFilled diff --git a/src/IconLivingRounded.tsx b/src/IconLivingRounded.tsx index 059d7c425..118f9be56 100644 --- a/src/IconLivingRounded.tsx +++ b/src/IconLivingRounded.tsx @@ -8,4 +8,4 @@ const IconLivingRounded: React.FC = ({ ...props }) => ( ) -export { IconLivingRounded as default } +export default IconLivingRounded diff --git a/src/IconLivingRoundedFilled.tsx b/src/IconLivingRoundedFilled.tsx index a6071e422..2c8e1e643 100644 --- a/src/IconLivingRoundedFilled.tsx +++ b/src/IconLivingRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconLivingRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconLivingRoundedFilled as default } +export default IconLivingRoundedFilled diff --git a/src/IconLivingSharp.tsx b/src/IconLivingSharp.tsx index 3a31903e9..c79777f25 100644 --- a/src/IconLivingSharp.tsx +++ b/src/IconLivingSharp.tsx @@ -8,4 +8,4 @@ const IconLivingSharp: React.FC = ({ ...props }) => ( ) -export { IconLivingSharp as default } +export default IconLivingSharp diff --git a/src/IconLivingSharpFilled.tsx b/src/IconLivingSharpFilled.tsx index f7ee45585..92d0d02d0 100644 --- a/src/IconLivingSharpFilled.tsx +++ b/src/IconLivingSharpFilled.tsx @@ -8,4 +8,4 @@ const IconLivingSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconLivingSharpFilled as default } +export default IconLivingSharpFilled diff --git a/src/IconLocalActivityOutlined.tsx b/src/IconLocalActivityOutlined.tsx index 7b1e715ef..ede16da4e 100644 --- a/src/IconLocalActivityOutlined.tsx +++ b/src/IconLocalActivityOutlined.tsx @@ -8,4 +8,4 @@ const IconLocalActivityOutlined: React.FC = ({ ...props }) => ( ) -export { IconLocalActivityOutlined as default } +export default IconLocalActivityOutlined diff --git a/src/IconLocalActivityOutlinedFilled.tsx b/src/IconLocalActivityOutlinedFilled.tsx index 4753903d7..b55c759e5 100644 --- a/src/IconLocalActivityOutlinedFilled.tsx +++ b/src/IconLocalActivityOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconLocalActivityOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconLocalActivityOutlinedFilled as default } +export default IconLocalActivityOutlinedFilled diff --git a/src/IconLocalActivityRounded.tsx b/src/IconLocalActivityRounded.tsx index 18feb9629..7c071bdac 100644 --- a/src/IconLocalActivityRounded.tsx +++ b/src/IconLocalActivityRounded.tsx @@ -8,4 +8,4 @@ const IconLocalActivityRounded: React.FC = ({ ...props }) => ( ) -export { IconLocalActivityRounded as default } +export default IconLocalActivityRounded diff --git a/src/IconLocalActivityRoundedFilled.tsx b/src/IconLocalActivityRoundedFilled.tsx index 0a99b17e1..10415a038 100644 --- a/src/IconLocalActivityRoundedFilled.tsx +++ b/src/IconLocalActivityRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconLocalActivityRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconLocalActivityRoundedFilled as default } +export default IconLocalActivityRoundedFilled diff --git a/src/IconLocalActivitySharp.tsx b/src/IconLocalActivitySharp.tsx index 58c372628..cf8c16bb9 100644 --- a/src/IconLocalActivitySharp.tsx +++ b/src/IconLocalActivitySharp.tsx @@ -8,4 +8,4 @@ const IconLocalActivitySharp: React.FC = ({ ...props }) => ( ) -export { IconLocalActivitySharp as default } +export default IconLocalActivitySharp diff --git a/src/IconLocalActivitySharpFilled.tsx b/src/IconLocalActivitySharpFilled.tsx index d6c85a486..8dd8b38a4 100644 --- a/src/IconLocalActivitySharpFilled.tsx +++ b/src/IconLocalActivitySharpFilled.tsx @@ -8,4 +8,4 @@ const IconLocalActivitySharpFilled: React.FC = ({ ...props }) => ( ) -export { IconLocalActivitySharpFilled as default } +export default IconLocalActivitySharpFilled diff --git a/src/IconLocalAtmOutlined.tsx b/src/IconLocalAtmOutlined.tsx index 2cff9d46b..e13ffd8e8 100644 --- a/src/IconLocalAtmOutlined.tsx +++ b/src/IconLocalAtmOutlined.tsx @@ -8,4 +8,4 @@ const IconLocalAtmOutlined: React.FC = ({ ...props }) => ( ) -export { IconLocalAtmOutlined as default } +export default IconLocalAtmOutlined diff --git a/src/IconLocalAtmOutlinedFilled.tsx b/src/IconLocalAtmOutlinedFilled.tsx index ca0cec9c9..1983f06e3 100644 --- a/src/IconLocalAtmOutlinedFilled.tsx +++ b/src/IconLocalAtmOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconLocalAtmOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconLocalAtmOutlinedFilled as default } +export default IconLocalAtmOutlinedFilled diff --git a/src/IconLocalAtmRounded.tsx b/src/IconLocalAtmRounded.tsx index 2dddc0881..dcb7b5d6f 100644 --- a/src/IconLocalAtmRounded.tsx +++ b/src/IconLocalAtmRounded.tsx @@ -8,4 +8,4 @@ const IconLocalAtmRounded: React.FC = ({ ...props }) => ( ) -export { IconLocalAtmRounded as default } +export default IconLocalAtmRounded diff --git a/src/IconLocalAtmRoundedFilled.tsx b/src/IconLocalAtmRoundedFilled.tsx index 34b723262..01515866f 100644 --- a/src/IconLocalAtmRoundedFilled.tsx +++ b/src/IconLocalAtmRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconLocalAtmRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconLocalAtmRoundedFilled as default } +export default IconLocalAtmRoundedFilled diff --git a/src/IconLocalAtmSharp.tsx b/src/IconLocalAtmSharp.tsx index cd74cb95e..e16561594 100644 --- a/src/IconLocalAtmSharp.tsx +++ b/src/IconLocalAtmSharp.tsx @@ -8,4 +8,4 @@ const IconLocalAtmSharp: React.FC = ({ ...props }) => ( ) -export { IconLocalAtmSharp as default } +export default IconLocalAtmSharp diff --git a/src/IconLocalAtmSharpFilled.tsx b/src/IconLocalAtmSharpFilled.tsx index 31f3df167..860f5af79 100644 --- a/src/IconLocalAtmSharpFilled.tsx +++ b/src/IconLocalAtmSharpFilled.tsx @@ -8,4 +8,4 @@ const IconLocalAtmSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconLocalAtmSharpFilled as default } +export default IconLocalAtmSharpFilled diff --git a/src/IconLocalBarOutlined.tsx b/src/IconLocalBarOutlined.tsx index d578addc4..89760a211 100644 --- a/src/IconLocalBarOutlined.tsx +++ b/src/IconLocalBarOutlined.tsx @@ -8,4 +8,4 @@ const IconLocalBarOutlined: React.FC = ({ ...props }) => ( ) -export { IconLocalBarOutlined as default } +export default IconLocalBarOutlined diff --git a/src/IconLocalBarOutlinedFilled.tsx b/src/IconLocalBarOutlinedFilled.tsx index 8806ff94d..bcad97aba 100644 --- a/src/IconLocalBarOutlinedFilled.tsx +++ b/src/IconLocalBarOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconLocalBarOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconLocalBarOutlinedFilled as default } +export default IconLocalBarOutlinedFilled diff --git a/src/IconLocalBarRounded.tsx b/src/IconLocalBarRounded.tsx index 7af46087f..e3590a0df 100644 --- a/src/IconLocalBarRounded.tsx +++ b/src/IconLocalBarRounded.tsx @@ -8,4 +8,4 @@ const IconLocalBarRounded: React.FC = ({ ...props }) => ( ) -export { IconLocalBarRounded as default } +export default IconLocalBarRounded diff --git a/src/IconLocalBarRoundedFilled.tsx b/src/IconLocalBarRoundedFilled.tsx index 34da885e4..ca5c975ee 100644 --- a/src/IconLocalBarRoundedFilled.tsx +++ b/src/IconLocalBarRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconLocalBarRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconLocalBarRoundedFilled as default } +export default IconLocalBarRoundedFilled diff --git a/src/IconLocalBarSharp.tsx b/src/IconLocalBarSharp.tsx index db37a883a..ed06891e5 100644 --- a/src/IconLocalBarSharp.tsx +++ b/src/IconLocalBarSharp.tsx @@ -8,4 +8,4 @@ const IconLocalBarSharp: React.FC = ({ ...props }) => ( ) -export { IconLocalBarSharp as default } +export default IconLocalBarSharp diff --git a/src/IconLocalBarSharpFilled.tsx b/src/IconLocalBarSharpFilled.tsx index 6b7861c43..37d068cb5 100644 --- a/src/IconLocalBarSharpFilled.tsx +++ b/src/IconLocalBarSharpFilled.tsx @@ -8,4 +8,4 @@ const IconLocalBarSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconLocalBarSharpFilled as default } +export default IconLocalBarSharpFilled diff --git a/src/IconLocalCafeOutlined.tsx b/src/IconLocalCafeOutlined.tsx index 8a8ea6ccc..d0e2812b4 100644 --- a/src/IconLocalCafeOutlined.tsx +++ b/src/IconLocalCafeOutlined.tsx @@ -8,4 +8,4 @@ const IconLocalCafeOutlined: React.FC = ({ ...props }) => ( ) -export { IconLocalCafeOutlined as default } +export default IconLocalCafeOutlined diff --git a/src/IconLocalCafeOutlinedFilled.tsx b/src/IconLocalCafeOutlinedFilled.tsx index e4dce6b66..2ddfb7d86 100644 --- a/src/IconLocalCafeOutlinedFilled.tsx +++ b/src/IconLocalCafeOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconLocalCafeOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconLocalCafeOutlinedFilled as default } +export default IconLocalCafeOutlinedFilled diff --git a/src/IconLocalCafeRounded.tsx b/src/IconLocalCafeRounded.tsx index c21d21fda..5a7a2496d 100644 --- a/src/IconLocalCafeRounded.tsx +++ b/src/IconLocalCafeRounded.tsx @@ -8,4 +8,4 @@ const IconLocalCafeRounded: React.FC = ({ ...props }) => ( ) -export { IconLocalCafeRounded as default } +export default IconLocalCafeRounded diff --git a/src/IconLocalCafeRoundedFilled.tsx b/src/IconLocalCafeRoundedFilled.tsx index 62f7e2703..e9a6db0ea 100644 --- a/src/IconLocalCafeRoundedFilled.tsx +++ b/src/IconLocalCafeRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconLocalCafeRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconLocalCafeRoundedFilled as default } +export default IconLocalCafeRoundedFilled diff --git a/src/IconLocalCafeSharp.tsx b/src/IconLocalCafeSharp.tsx index bd8485ac8..d7c817b41 100644 --- a/src/IconLocalCafeSharp.tsx +++ b/src/IconLocalCafeSharp.tsx @@ -8,4 +8,4 @@ const IconLocalCafeSharp: React.FC = ({ ...props }) => ( ) -export { IconLocalCafeSharp as default } +export default IconLocalCafeSharp diff --git a/src/IconLocalCafeSharpFilled.tsx b/src/IconLocalCafeSharpFilled.tsx index d8f4eb162..9ddba1fa4 100644 --- a/src/IconLocalCafeSharpFilled.tsx +++ b/src/IconLocalCafeSharpFilled.tsx @@ -8,4 +8,4 @@ const IconLocalCafeSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconLocalCafeSharpFilled as default } +export default IconLocalCafeSharpFilled diff --git a/src/IconLocalCarWashOutlined.tsx b/src/IconLocalCarWashOutlined.tsx index e1192c5cd..2379ebf8f 100644 --- a/src/IconLocalCarWashOutlined.tsx +++ b/src/IconLocalCarWashOutlined.tsx @@ -8,4 +8,4 @@ const IconLocalCarWashOutlined: React.FC = ({ ...props }) => ( ) -export { IconLocalCarWashOutlined as default } +export default IconLocalCarWashOutlined diff --git a/src/IconLocalCarWashOutlinedFilled.tsx b/src/IconLocalCarWashOutlinedFilled.tsx index 144018e26..3051c06be 100644 --- a/src/IconLocalCarWashOutlinedFilled.tsx +++ b/src/IconLocalCarWashOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconLocalCarWashOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconLocalCarWashOutlinedFilled as default } +export default IconLocalCarWashOutlinedFilled diff --git a/src/IconLocalCarWashRounded.tsx b/src/IconLocalCarWashRounded.tsx index 9cb38910a..bf4830944 100644 --- a/src/IconLocalCarWashRounded.tsx +++ b/src/IconLocalCarWashRounded.tsx @@ -8,4 +8,4 @@ const IconLocalCarWashRounded: React.FC = ({ ...props }) => ( ) -export { IconLocalCarWashRounded as default } +export default IconLocalCarWashRounded diff --git a/src/IconLocalCarWashRoundedFilled.tsx b/src/IconLocalCarWashRoundedFilled.tsx index eb39e46d2..b5520158a 100644 --- a/src/IconLocalCarWashRoundedFilled.tsx +++ b/src/IconLocalCarWashRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconLocalCarWashRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconLocalCarWashRoundedFilled as default } +export default IconLocalCarWashRoundedFilled diff --git a/src/IconLocalCarWashSharp.tsx b/src/IconLocalCarWashSharp.tsx index 60fe9b7e4..26b457b17 100644 --- a/src/IconLocalCarWashSharp.tsx +++ b/src/IconLocalCarWashSharp.tsx @@ -8,4 +8,4 @@ const IconLocalCarWashSharp: React.FC = ({ ...props }) => ( ) -export { IconLocalCarWashSharp as default } +export default IconLocalCarWashSharp diff --git a/src/IconLocalCarWashSharpFilled.tsx b/src/IconLocalCarWashSharpFilled.tsx index d180d6b62..2f13a4679 100644 --- a/src/IconLocalCarWashSharpFilled.tsx +++ b/src/IconLocalCarWashSharpFilled.tsx @@ -8,4 +8,4 @@ const IconLocalCarWashSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconLocalCarWashSharpFilled as default } +export default IconLocalCarWashSharpFilled diff --git a/src/IconLocalConvenienceStoreOutlined.tsx b/src/IconLocalConvenienceStoreOutlined.tsx index b8870b8f6..15b658a74 100644 --- a/src/IconLocalConvenienceStoreOutlined.tsx +++ b/src/IconLocalConvenienceStoreOutlined.tsx @@ -10,4 +10,4 @@ const IconLocalConvenienceStoreOutlined: React.FC = ({ ) -export { IconLocalConvenienceStoreOutlined as default } +export default IconLocalConvenienceStoreOutlined diff --git a/src/IconLocalConvenienceStoreOutlinedFilled.tsx b/src/IconLocalConvenienceStoreOutlinedFilled.tsx index 0a4657bf5..7a49c2788 100644 --- a/src/IconLocalConvenienceStoreOutlinedFilled.tsx +++ b/src/IconLocalConvenienceStoreOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconLocalConvenienceStoreOutlinedFilled: React.FC = ({ ) -export { IconLocalConvenienceStoreOutlinedFilled as default } +export default IconLocalConvenienceStoreOutlinedFilled diff --git a/src/IconLocalConvenienceStoreRounded.tsx b/src/IconLocalConvenienceStoreRounded.tsx index a00aa112c..ede305379 100644 --- a/src/IconLocalConvenienceStoreRounded.tsx +++ b/src/IconLocalConvenienceStoreRounded.tsx @@ -10,4 +10,4 @@ const IconLocalConvenienceStoreRounded: React.FC = ({ ) -export { IconLocalConvenienceStoreRounded as default } +export default IconLocalConvenienceStoreRounded diff --git a/src/IconLocalConvenienceStoreRoundedFilled.tsx b/src/IconLocalConvenienceStoreRoundedFilled.tsx index a74dba51d..e25d499a1 100644 --- a/src/IconLocalConvenienceStoreRoundedFilled.tsx +++ b/src/IconLocalConvenienceStoreRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconLocalConvenienceStoreRoundedFilled: React.FC = ({ ) -export { IconLocalConvenienceStoreRoundedFilled as default } +export default IconLocalConvenienceStoreRoundedFilled diff --git a/src/IconLocalConvenienceStoreSharp.tsx b/src/IconLocalConvenienceStoreSharp.tsx index f8c469876..1cddf1585 100644 --- a/src/IconLocalConvenienceStoreSharp.tsx +++ b/src/IconLocalConvenienceStoreSharp.tsx @@ -8,4 +8,4 @@ const IconLocalConvenienceStoreSharp: React.FC = ({ ...props }) => ( ) -export { IconLocalConvenienceStoreSharp as default } +export default IconLocalConvenienceStoreSharp diff --git a/src/IconLocalConvenienceStoreSharpFilled.tsx b/src/IconLocalConvenienceStoreSharpFilled.tsx index c4adf688e..a9f32c304 100644 --- a/src/IconLocalConvenienceStoreSharpFilled.tsx +++ b/src/IconLocalConvenienceStoreSharpFilled.tsx @@ -10,4 +10,4 @@ const IconLocalConvenienceStoreSharpFilled: React.FC = ({ ) -export { IconLocalConvenienceStoreSharpFilled as default } +export default IconLocalConvenienceStoreSharpFilled diff --git a/src/IconLocalDiningOutlined.tsx b/src/IconLocalDiningOutlined.tsx index ae8cbec74..27a2674e6 100644 --- a/src/IconLocalDiningOutlined.tsx +++ b/src/IconLocalDiningOutlined.tsx @@ -8,4 +8,4 @@ const IconLocalDiningOutlined: React.FC = ({ ...props }) => ( ) -export { IconLocalDiningOutlined as default } +export default IconLocalDiningOutlined diff --git a/src/IconLocalDiningOutlinedFilled.tsx b/src/IconLocalDiningOutlinedFilled.tsx index d5dc7d739..e50f3b815 100644 --- a/src/IconLocalDiningOutlinedFilled.tsx +++ b/src/IconLocalDiningOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconLocalDiningOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconLocalDiningOutlinedFilled as default } +export default IconLocalDiningOutlinedFilled diff --git a/src/IconLocalDiningRounded.tsx b/src/IconLocalDiningRounded.tsx index 20f3de1e3..0609acf06 100644 --- a/src/IconLocalDiningRounded.tsx +++ b/src/IconLocalDiningRounded.tsx @@ -8,4 +8,4 @@ const IconLocalDiningRounded: React.FC = ({ ...props }) => ( ) -export { IconLocalDiningRounded as default } +export default IconLocalDiningRounded diff --git a/src/IconLocalDiningRoundedFilled.tsx b/src/IconLocalDiningRoundedFilled.tsx index 3ca9df034..d6200afad 100644 --- a/src/IconLocalDiningRoundedFilled.tsx +++ b/src/IconLocalDiningRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconLocalDiningRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconLocalDiningRoundedFilled as default } +export default IconLocalDiningRoundedFilled diff --git a/src/IconLocalDiningSharp.tsx b/src/IconLocalDiningSharp.tsx index 4b0641cc7..df89cd6b0 100644 --- a/src/IconLocalDiningSharp.tsx +++ b/src/IconLocalDiningSharp.tsx @@ -8,4 +8,4 @@ const IconLocalDiningSharp: React.FC = ({ ...props }) => ( ) -export { IconLocalDiningSharp as default } +export default IconLocalDiningSharp diff --git a/src/IconLocalDiningSharpFilled.tsx b/src/IconLocalDiningSharpFilled.tsx index b25ae026e..2f101b7a9 100644 --- a/src/IconLocalDiningSharpFilled.tsx +++ b/src/IconLocalDiningSharpFilled.tsx @@ -8,4 +8,4 @@ const IconLocalDiningSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconLocalDiningSharpFilled as default } +export default IconLocalDiningSharpFilled diff --git a/src/IconLocalDrinkOutlined.tsx b/src/IconLocalDrinkOutlined.tsx index 9d52a8368..358c7765c 100644 --- a/src/IconLocalDrinkOutlined.tsx +++ b/src/IconLocalDrinkOutlined.tsx @@ -8,4 +8,4 @@ const IconLocalDrinkOutlined: React.FC = ({ ...props }) => ( ) -export { IconLocalDrinkOutlined as default } +export default IconLocalDrinkOutlined diff --git a/src/IconLocalDrinkOutlinedFilled.tsx b/src/IconLocalDrinkOutlinedFilled.tsx index 819ee9c2a..121a22c53 100644 --- a/src/IconLocalDrinkOutlinedFilled.tsx +++ b/src/IconLocalDrinkOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconLocalDrinkOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconLocalDrinkOutlinedFilled as default } +export default IconLocalDrinkOutlinedFilled diff --git a/src/IconLocalDrinkRounded.tsx b/src/IconLocalDrinkRounded.tsx index b4cdefb42..d41282642 100644 --- a/src/IconLocalDrinkRounded.tsx +++ b/src/IconLocalDrinkRounded.tsx @@ -8,4 +8,4 @@ const IconLocalDrinkRounded: React.FC = ({ ...props }) => ( ) -export { IconLocalDrinkRounded as default } +export default IconLocalDrinkRounded diff --git a/src/IconLocalDrinkRoundedFilled.tsx b/src/IconLocalDrinkRoundedFilled.tsx index d34f56232..37d8d99d4 100644 --- a/src/IconLocalDrinkRoundedFilled.tsx +++ b/src/IconLocalDrinkRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconLocalDrinkRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconLocalDrinkRoundedFilled as default } +export default IconLocalDrinkRoundedFilled diff --git a/src/IconLocalDrinkSharp.tsx b/src/IconLocalDrinkSharp.tsx index 5e9b6ddb2..e8e918596 100644 --- a/src/IconLocalDrinkSharp.tsx +++ b/src/IconLocalDrinkSharp.tsx @@ -8,4 +8,4 @@ const IconLocalDrinkSharp: React.FC = ({ ...props }) => ( ) -export { IconLocalDrinkSharp as default } +export default IconLocalDrinkSharp diff --git a/src/IconLocalDrinkSharpFilled.tsx b/src/IconLocalDrinkSharpFilled.tsx index bef991506..2de8f3f7d 100644 --- a/src/IconLocalDrinkSharpFilled.tsx +++ b/src/IconLocalDrinkSharpFilled.tsx @@ -8,4 +8,4 @@ const IconLocalDrinkSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconLocalDrinkSharpFilled as default } +export default IconLocalDrinkSharpFilled diff --git a/src/IconLocalFireDepartmentOutlined.tsx b/src/IconLocalFireDepartmentOutlined.tsx index b625a0890..1a1b25ad7 100644 --- a/src/IconLocalFireDepartmentOutlined.tsx +++ b/src/IconLocalFireDepartmentOutlined.tsx @@ -8,4 +8,4 @@ const IconLocalFireDepartmentOutlined: React.FC = ({ ...props }) => ( ) -export { IconLocalFireDepartmentOutlined as default } +export default IconLocalFireDepartmentOutlined diff --git a/src/IconLocalFireDepartmentOutlinedFilled.tsx b/src/IconLocalFireDepartmentOutlinedFilled.tsx index c367a40d2..8f5b0eb73 100644 --- a/src/IconLocalFireDepartmentOutlinedFilled.tsx +++ b/src/IconLocalFireDepartmentOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconLocalFireDepartmentOutlinedFilled: React.FC = ({ ) -export { IconLocalFireDepartmentOutlinedFilled as default } +export default IconLocalFireDepartmentOutlinedFilled diff --git a/src/IconLocalFireDepartmentRounded.tsx b/src/IconLocalFireDepartmentRounded.tsx index c1e0ab3eb..874d14fba 100644 --- a/src/IconLocalFireDepartmentRounded.tsx +++ b/src/IconLocalFireDepartmentRounded.tsx @@ -8,4 +8,4 @@ const IconLocalFireDepartmentRounded: React.FC = ({ ...props }) => ( ) -export { IconLocalFireDepartmentRounded as default } +export default IconLocalFireDepartmentRounded diff --git a/src/IconLocalFireDepartmentRoundedFilled.tsx b/src/IconLocalFireDepartmentRoundedFilled.tsx index b607fd974..b9d580184 100644 --- a/src/IconLocalFireDepartmentRoundedFilled.tsx +++ b/src/IconLocalFireDepartmentRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconLocalFireDepartmentRoundedFilled: React.FC = ({ ) -export { IconLocalFireDepartmentRoundedFilled as default } +export default IconLocalFireDepartmentRoundedFilled diff --git a/src/IconLocalFireDepartmentSharp.tsx b/src/IconLocalFireDepartmentSharp.tsx index 74cc947ba..659827ef5 100644 --- a/src/IconLocalFireDepartmentSharp.tsx +++ b/src/IconLocalFireDepartmentSharp.tsx @@ -8,4 +8,4 @@ const IconLocalFireDepartmentSharp: React.FC = ({ ...props }) => ( ) -export { IconLocalFireDepartmentSharp as default } +export default IconLocalFireDepartmentSharp diff --git a/src/IconLocalFireDepartmentSharpFilled.tsx b/src/IconLocalFireDepartmentSharpFilled.tsx index 6ec5c89c9..5403a150f 100644 --- a/src/IconLocalFireDepartmentSharpFilled.tsx +++ b/src/IconLocalFireDepartmentSharpFilled.tsx @@ -10,4 +10,4 @@ const IconLocalFireDepartmentSharpFilled: React.FC = ({ ) -export { IconLocalFireDepartmentSharpFilled as default } +export default IconLocalFireDepartmentSharpFilled diff --git a/src/IconLocalFloristOutlined.tsx b/src/IconLocalFloristOutlined.tsx index 3022b9236..fac7b8af3 100644 --- a/src/IconLocalFloristOutlined.tsx +++ b/src/IconLocalFloristOutlined.tsx @@ -8,4 +8,4 @@ const IconLocalFloristOutlined: React.FC = ({ ...props }) => ( ) -export { IconLocalFloristOutlined as default } +export default IconLocalFloristOutlined diff --git a/src/IconLocalFloristOutlinedFilled.tsx b/src/IconLocalFloristOutlinedFilled.tsx index 31ae8279e..51c06356d 100644 --- a/src/IconLocalFloristOutlinedFilled.tsx +++ b/src/IconLocalFloristOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconLocalFloristOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconLocalFloristOutlinedFilled as default } +export default IconLocalFloristOutlinedFilled diff --git a/src/IconLocalFloristRounded.tsx b/src/IconLocalFloristRounded.tsx index 7bce93f51..9ff9948da 100644 --- a/src/IconLocalFloristRounded.tsx +++ b/src/IconLocalFloristRounded.tsx @@ -8,4 +8,4 @@ const IconLocalFloristRounded: React.FC = ({ ...props }) => ( ) -export { IconLocalFloristRounded as default } +export default IconLocalFloristRounded diff --git a/src/IconLocalFloristRoundedFilled.tsx b/src/IconLocalFloristRoundedFilled.tsx index 5842da6a6..16ca50906 100644 --- a/src/IconLocalFloristRoundedFilled.tsx +++ b/src/IconLocalFloristRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconLocalFloristRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconLocalFloristRoundedFilled as default } +export default IconLocalFloristRoundedFilled diff --git a/src/IconLocalFloristSharp.tsx b/src/IconLocalFloristSharp.tsx index 1b469e13c..376a02228 100644 --- a/src/IconLocalFloristSharp.tsx +++ b/src/IconLocalFloristSharp.tsx @@ -8,4 +8,4 @@ const IconLocalFloristSharp: React.FC = ({ ...props }) => ( ) -export { IconLocalFloristSharp as default } +export default IconLocalFloristSharp diff --git a/src/IconLocalFloristSharpFilled.tsx b/src/IconLocalFloristSharpFilled.tsx index 63e2d0fb6..1751dd647 100644 --- a/src/IconLocalFloristSharpFilled.tsx +++ b/src/IconLocalFloristSharpFilled.tsx @@ -8,4 +8,4 @@ const IconLocalFloristSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconLocalFloristSharpFilled as default } +export default IconLocalFloristSharpFilled diff --git a/src/IconLocalGasStationOutlined.tsx b/src/IconLocalGasStationOutlined.tsx index 02e667df8..7f59db8d7 100644 --- a/src/IconLocalGasStationOutlined.tsx +++ b/src/IconLocalGasStationOutlined.tsx @@ -8,4 +8,4 @@ const IconLocalGasStationOutlined: React.FC = ({ ...props }) => ( ) -export { IconLocalGasStationOutlined as default } +export default IconLocalGasStationOutlined diff --git a/src/IconLocalGasStationOutlinedFilled.tsx b/src/IconLocalGasStationOutlinedFilled.tsx index ee911f2c4..0e8197fe1 100644 --- a/src/IconLocalGasStationOutlinedFilled.tsx +++ b/src/IconLocalGasStationOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconLocalGasStationOutlinedFilled: React.FC = ({ ) -export { IconLocalGasStationOutlinedFilled as default } +export default IconLocalGasStationOutlinedFilled diff --git a/src/IconLocalGasStationRounded.tsx b/src/IconLocalGasStationRounded.tsx index 5d78e72d2..497f840bb 100644 --- a/src/IconLocalGasStationRounded.tsx +++ b/src/IconLocalGasStationRounded.tsx @@ -8,4 +8,4 @@ const IconLocalGasStationRounded: React.FC = ({ ...props }) => ( ) -export { IconLocalGasStationRounded as default } +export default IconLocalGasStationRounded diff --git a/src/IconLocalGasStationRoundedFilled.tsx b/src/IconLocalGasStationRoundedFilled.tsx index 53e1f54d8..c910e2031 100644 --- a/src/IconLocalGasStationRoundedFilled.tsx +++ b/src/IconLocalGasStationRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconLocalGasStationRoundedFilled: React.FC = ({ ) -export { IconLocalGasStationRoundedFilled as default } +export default IconLocalGasStationRoundedFilled diff --git a/src/IconLocalGasStationSharp.tsx b/src/IconLocalGasStationSharp.tsx index f9ee9270b..b53979a81 100644 --- a/src/IconLocalGasStationSharp.tsx +++ b/src/IconLocalGasStationSharp.tsx @@ -8,4 +8,4 @@ const IconLocalGasStationSharp: React.FC = ({ ...props }) => ( ) -export { IconLocalGasStationSharp as default } +export default IconLocalGasStationSharp diff --git a/src/IconLocalGasStationSharpFilled.tsx b/src/IconLocalGasStationSharpFilled.tsx index f81a07015..1b06418af 100644 --- a/src/IconLocalGasStationSharpFilled.tsx +++ b/src/IconLocalGasStationSharpFilled.tsx @@ -8,4 +8,4 @@ const IconLocalGasStationSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconLocalGasStationSharpFilled as default } +export default IconLocalGasStationSharpFilled diff --git a/src/IconLocalHospitalOutlined.tsx b/src/IconLocalHospitalOutlined.tsx index 4cb1a1702..ea34a0be6 100644 --- a/src/IconLocalHospitalOutlined.tsx +++ b/src/IconLocalHospitalOutlined.tsx @@ -8,4 +8,4 @@ const IconLocalHospitalOutlined: React.FC = ({ ...props }) => ( ) -export { IconLocalHospitalOutlined as default } +export default IconLocalHospitalOutlined diff --git a/src/IconLocalHospitalOutlinedFilled.tsx b/src/IconLocalHospitalOutlinedFilled.tsx index 5aa439b45..1e1f831a4 100644 --- a/src/IconLocalHospitalOutlinedFilled.tsx +++ b/src/IconLocalHospitalOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconLocalHospitalOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconLocalHospitalOutlinedFilled as default } +export default IconLocalHospitalOutlinedFilled diff --git a/src/IconLocalHospitalRounded.tsx b/src/IconLocalHospitalRounded.tsx index a0937f7fc..4eb6c554a 100644 --- a/src/IconLocalHospitalRounded.tsx +++ b/src/IconLocalHospitalRounded.tsx @@ -8,4 +8,4 @@ const IconLocalHospitalRounded: React.FC = ({ ...props }) => ( ) -export { IconLocalHospitalRounded as default } +export default IconLocalHospitalRounded diff --git a/src/IconLocalHospitalRoundedFilled.tsx b/src/IconLocalHospitalRoundedFilled.tsx index 579217d97..3f9d10025 100644 --- a/src/IconLocalHospitalRoundedFilled.tsx +++ b/src/IconLocalHospitalRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconLocalHospitalRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconLocalHospitalRoundedFilled as default } +export default IconLocalHospitalRoundedFilled diff --git a/src/IconLocalHospitalSharp.tsx b/src/IconLocalHospitalSharp.tsx index 5f8f8b525..712d03cbc 100644 --- a/src/IconLocalHospitalSharp.tsx +++ b/src/IconLocalHospitalSharp.tsx @@ -8,4 +8,4 @@ const IconLocalHospitalSharp: React.FC = ({ ...props }) => ( ) -export { IconLocalHospitalSharp as default } +export default IconLocalHospitalSharp diff --git a/src/IconLocalHospitalSharpFilled.tsx b/src/IconLocalHospitalSharpFilled.tsx index 07ffd7f58..5992f2845 100644 --- a/src/IconLocalHospitalSharpFilled.tsx +++ b/src/IconLocalHospitalSharpFilled.tsx @@ -8,4 +8,4 @@ const IconLocalHospitalSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconLocalHospitalSharpFilled as default } +export default IconLocalHospitalSharpFilled diff --git a/src/IconLocalLaundryServiceOutlined.tsx b/src/IconLocalLaundryServiceOutlined.tsx index 2c1e42d4d..4e21a7c3f 100644 --- a/src/IconLocalLaundryServiceOutlined.tsx +++ b/src/IconLocalLaundryServiceOutlined.tsx @@ -8,4 +8,4 @@ const IconLocalLaundryServiceOutlined: React.FC = ({ ...props }) => ( ) -export { IconLocalLaundryServiceOutlined as default } +export default IconLocalLaundryServiceOutlined diff --git a/src/IconLocalLaundryServiceOutlinedFilled.tsx b/src/IconLocalLaundryServiceOutlinedFilled.tsx index f01bc8b1b..c07844909 100644 --- a/src/IconLocalLaundryServiceOutlinedFilled.tsx +++ b/src/IconLocalLaundryServiceOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconLocalLaundryServiceOutlinedFilled: React.FC = ({ ) -export { IconLocalLaundryServiceOutlinedFilled as default } +export default IconLocalLaundryServiceOutlinedFilled diff --git a/src/IconLocalLaundryServiceRounded.tsx b/src/IconLocalLaundryServiceRounded.tsx index a58d48e0a..7a0dbed63 100644 --- a/src/IconLocalLaundryServiceRounded.tsx +++ b/src/IconLocalLaundryServiceRounded.tsx @@ -8,4 +8,4 @@ const IconLocalLaundryServiceRounded: React.FC = ({ ...props }) => ( ) -export { IconLocalLaundryServiceRounded as default } +export default IconLocalLaundryServiceRounded diff --git a/src/IconLocalLaundryServiceRoundedFilled.tsx b/src/IconLocalLaundryServiceRoundedFilled.tsx index 857789d42..1d6187b4d 100644 --- a/src/IconLocalLaundryServiceRoundedFilled.tsx +++ b/src/IconLocalLaundryServiceRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconLocalLaundryServiceRoundedFilled: React.FC = ({ ) -export { IconLocalLaundryServiceRoundedFilled as default } +export default IconLocalLaundryServiceRoundedFilled diff --git a/src/IconLocalLaundryServiceSharp.tsx b/src/IconLocalLaundryServiceSharp.tsx index b5692c296..1641cd200 100644 --- a/src/IconLocalLaundryServiceSharp.tsx +++ b/src/IconLocalLaundryServiceSharp.tsx @@ -8,4 +8,4 @@ const IconLocalLaundryServiceSharp: React.FC = ({ ...props }) => ( ) -export { IconLocalLaundryServiceSharp as default } +export default IconLocalLaundryServiceSharp diff --git a/src/IconLocalLaundryServiceSharpFilled.tsx b/src/IconLocalLaundryServiceSharpFilled.tsx index 6027b216b..6db694b50 100644 --- a/src/IconLocalLaundryServiceSharpFilled.tsx +++ b/src/IconLocalLaundryServiceSharpFilled.tsx @@ -10,4 +10,4 @@ const IconLocalLaundryServiceSharpFilled: React.FC = ({ ) -export { IconLocalLaundryServiceSharpFilled as default } +export default IconLocalLaundryServiceSharpFilled diff --git a/src/IconLocalLibraryOutlined.tsx b/src/IconLocalLibraryOutlined.tsx index 46f82c388..739279803 100644 --- a/src/IconLocalLibraryOutlined.tsx +++ b/src/IconLocalLibraryOutlined.tsx @@ -8,4 +8,4 @@ const IconLocalLibraryOutlined: React.FC = ({ ...props }) => ( ) -export { IconLocalLibraryOutlined as default } +export default IconLocalLibraryOutlined diff --git a/src/IconLocalLibraryOutlinedFilled.tsx b/src/IconLocalLibraryOutlinedFilled.tsx index 48f8427d1..b1f9c8ae3 100644 --- a/src/IconLocalLibraryOutlinedFilled.tsx +++ b/src/IconLocalLibraryOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconLocalLibraryOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconLocalLibraryOutlinedFilled as default } +export default IconLocalLibraryOutlinedFilled diff --git a/src/IconLocalLibraryRounded.tsx b/src/IconLocalLibraryRounded.tsx index 72c220fb1..2dc59e896 100644 --- a/src/IconLocalLibraryRounded.tsx +++ b/src/IconLocalLibraryRounded.tsx @@ -8,4 +8,4 @@ const IconLocalLibraryRounded: React.FC = ({ ...props }) => ( ) -export { IconLocalLibraryRounded as default } +export default IconLocalLibraryRounded diff --git a/src/IconLocalLibraryRoundedFilled.tsx b/src/IconLocalLibraryRoundedFilled.tsx index 1bcf1e953..df70f9e0c 100644 --- a/src/IconLocalLibraryRoundedFilled.tsx +++ b/src/IconLocalLibraryRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconLocalLibraryRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconLocalLibraryRoundedFilled as default } +export default IconLocalLibraryRoundedFilled diff --git a/src/IconLocalLibrarySharp.tsx b/src/IconLocalLibrarySharp.tsx index 648f20f0b..f0d33e295 100644 --- a/src/IconLocalLibrarySharp.tsx +++ b/src/IconLocalLibrarySharp.tsx @@ -8,4 +8,4 @@ const IconLocalLibrarySharp: React.FC = ({ ...props }) => ( ) -export { IconLocalLibrarySharp as default } +export default IconLocalLibrarySharp diff --git a/src/IconLocalLibrarySharpFilled.tsx b/src/IconLocalLibrarySharpFilled.tsx index 63eba256a..e45c19035 100644 --- a/src/IconLocalLibrarySharpFilled.tsx +++ b/src/IconLocalLibrarySharpFilled.tsx @@ -8,4 +8,4 @@ const IconLocalLibrarySharpFilled: React.FC = ({ ...props }) => ( ) -export { IconLocalLibrarySharpFilled as default } +export default IconLocalLibrarySharpFilled diff --git a/src/IconLocalMallOutlined.tsx b/src/IconLocalMallOutlined.tsx index 1757887c2..4778feda5 100644 --- a/src/IconLocalMallOutlined.tsx +++ b/src/IconLocalMallOutlined.tsx @@ -8,4 +8,4 @@ const IconLocalMallOutlined: React.FC = ({ ...props }) => ( ) -export { IconLocalMallOutlined as default } +export default IconLocalMallOutlined diff --git a/src/IconLocalMallOutlinedFilled.tsx b/src/IconLocalMallOutlinedFilled.tsx index 5a4c528f4..4d249bbfb 100644 --- a/src/IconLocalMallOutlinedFilled.tsx +++ b/src/IconLocalMallOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconLocalMallOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconLocalMallOutlinedFilled as default } +export default IconLocalMallOutlinedFilled diff --git a/src/IconLocalMallRounded.tsx b/src/IconLocalMallRounded.tsx index 16236d381..d77244efd 100644 --- a/src/IconLocalMallRounded.tsx +++ b/src/IconLocalMallRounded.tsx @@ -8,4 +8,4 @@ const IconLocalMallRounded: React.FC = ({ ...props }) => ( ) -export { IconLocalMallRounded as default } +export default IconLocalMallRounded diff --git a/src/IconLocalMallRoundedFilled.tsx b/src/IconLocalMallRoundedFilled.tsx index ee015a742..fab203427 100644 --- a/src/IconLocalMallRoundedFilled.tsx +++ b/src/IconLocalMallRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconLocalMallRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconLocalMallRoundedFilled as default } +export default IconLocalMallRoundedFilled diff --git a/src/IconLocalMallSharp.tsx b/src/IconLocalMallSharp.tsx index cf354878b..38794d5f4 100644 --- a/src/IconLocalMallSharp.tsx +++ b/src/IconLocalMallSharp.tsx @@ -8,4 +8,4 @@ const IconLocalMallSharp: React.FC = ({ ...props }) => ( ) -export { IconLocalMallSharp as default } +export default IconLocalMallSharp diff --git a/src/IconLocalMallSharpFilled.tsx b/src/IconLocalMallSharpFilled.tsx index 239f19c7d..65c593398 100644 --- a/src/IconLocalMallSharpFilled.tsx +++ b/src/IconLocalMallSharpFilled.tsx @@ -8,4 +8,4 @@ const IconLocalMallSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconLocalMallSharpFilled as default } +export default IconLocalMallSharpFilled diff --git a/src/IconLocalParkingOutlined.tsx b/src/IconLocalParkingOutlined.tsx index 6808266b6..c60b2db9e 100644 --- a/src/IconLocalParkingOutlined.tsx +++ b/src/IconLocalParkingOutlined.tsx @@ -8,4 +8,4 @@ const IconLocalParkingOutlined: React.FC = ({ ...props }) => ( ) -export { IconLocalParkingOutlined as default } +export default IconLocalParkingOutlined diff --git a/src/IconLocalParkingOutlinedFilled.tsx b/src/IconLocalParkingOutlinedFilled.tsx index 57d90ce5e..07fac890b 100644 --- a/src/IconLocalParkingOutlinedFilled.tsx +++ b/src/IconLocalParkingOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconLocalParkingOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconLocalParkingOutlinedFilled as default } +export default IconLocalParkingOutlinedFilled diff --git a/src/IconLocalParkingRounded.tsx b/src/IconLocalParkingRounded.tsx index 3b78495c3..4ca3b8d52 100644 --- a/src/IconLocalParkingRounded.tsx +++ b/src/IconLocalParkingRounded.tsx @@ -8,4 +8,4 @@ const IconLocalParkingRounded: React.FC = ({ ...props }) => ( ) -export { IconLocalParkingRounded as default } +export default IconLocalParkingRounded diff --git a/src/IconLocalParkingRoundedFilled.tsx b/src/IconLocalParkingRoundedFilled.tsx index fc980f099..35690f1d7 100644 --- a/src/IconLocalParkingRoundedFilled.tsx +++ b/src/IconLocalParkingRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconLocalParkingRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconLocalParkingRoundedFilled as default } +export default IconLocalParkingRoundedFilled diff --git a/src/IconLocalParkingSharp.tsx b/src/IconLocalParkingSharp.tsx index 3e82d0ed1..74a2dd48f 100644 --- a/src/IconLocalParkingSharp.tsx +++ b/src/IconLocalParkingSharp.tsx @@ -8,4 +8,4 @@ const IconLocalParkingSharp: React.FC = ({ ...props }) => ( ) -export { IconLocalParkingSharp as default } +export default IconLocalParkingSharp diff --git a/src/IconLocalParkingSharpFilled.tsx b/src/IconLocalParkingSharpFilled.tsx index 056136621..2666edff2 100644 --- a/src/IconLocalParkingSharpFilled.tsx +++ b/src/IconLocalParkingSharpFilled.tsx @@ -8,4 +8,4 @@ const IconLocalParkingSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconLocalParkingSharpFilled as default } +export default IconLocalParkingSharpFilled diff --git a/src/IconLocalPharmacyOutlined.tsx b/src/IconLocalPharmacyOutlined.tsx index c3528f509..ab46b3127 100644 --- a/src/IconLocalPharmacyOutlined.tsx +++ b/src/IconLocalPharmacyOutlined.tsx @@ -8,4 +8,4 @@ const IconLocalPharmacyOutlined: React.FC = ({ ...props }) => ( ) -export { IconLocalPharmacyOutlined as default } +export default IconLocalPharmacyOutlined diff --git a/src/IconLocalPharmacyOutlinedFilled.tsx b/src/IconLocalPharmacyOutlinedFilled.tsx index 3c72993bf..8e1034074 100644 --- a/src/IconLocalPharmacyOutlinedFilled.tsx +++ b/src/IconLocalPharmacyOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconLocalPharmacyOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconLocalPharmacyOutlinedFilled as default } +export default IconLocalPharmacyOutlinedFilled diff --git a/src/IconLocalPharmacyRounded.tsx b/src/IconLocalPharmacyRounded.tsx index d3847dc6f..bafc425b6 100644 --- a/src/IconLocalPharmacyRounded.tsx +++ b/src/IconLocalPharmacyRounded.tsx @@ -8,4 +8,4 @@ const IconLocalPharmacyRounded: React.FC = ({ ...props }) => ( ) -export { IconLocalPharmacyRounded as default } +export default IconLocalPharmacyRounded diff --git a/src/IconLocalPharmacyRoundedFilled.tsx b/src/IconLocalPharmacyRoundedFilled.tsx index 64eb9db48..a69de60d8 100644 --- a/src/IconLocalPharmacyRoundedFilled.tsx +++ b/src/IconLocalPharmacyRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconLocalPharmacyRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconLocalPharmacyRoundedFilled as default } +export default IconLocalPharmacyRoundedFilled diff --git a/src/IconLocalPharmacySharp.tsx b/src/IconLocalPharmacySharp.tsx index aeb86650c..c52efa314 100644 --- a/src/IconLocalPharmacySharp.tsx +++ b/src/IconLocalPharmacySharp.tsx @@ -8,4 +8,4 @@ const IconLocalPharmacySharp: React.FC = ({ ...props }) => ( ) -export { IconLocalPharmacySharp as default } +export default IconLocalPharmacySharp diff --git a/src/IconLocalPharmacySharpFilled.tsx b/src/IconLocalPharmacySharpFilled.tsx index 4ac731d04..7c1647dcd 100644 --- a/src/IconLocalPharmacySharpFilled.tsx +++ b/src/IconLocalPharmacySharpFilled.tsx @@ -8,4 +8,4 @@ const IconLocalPharmacySharpFilled: React.FC = ({ ...props }) => ( ) -export { IconLocalPharmacySharpFilled as default } +export default IconLocalPharmacySharpFilled diff --git a/src/IconLocalPizzaOutlined.tsx b/src/IconLocalPizzaOutlined.tsx index dc55993f4..88282473e 100644 --- a/src/IconLocalPizzaOutlined.tsx +++ b/src/IconLocalPizzaOutlined.tsx @@ -8,4 +8,4 @@ const IconLocalPizzaOutlined: React.FC = ({ ...props }) => ( ) -export { IconLocalPizzaOutlined as default } +export default IconLocalPizzaOutlined diff --git a/src/IconLocalPizzaOutlinedFilled.tsx b/src/IconLocalPizzaOutlinedFilled.tsx index 3c382a948..0c3587e8d 100644 --- a/src/IconLocalPizzaOutlinedFilled.tsx +++ b/src/IconLocalPizzaOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconLocalPizzaOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconLocalPizzaOutlinedFilled as default } +export default IconLocalPizzaOutlinedFilled diff --git a/src/IconLocalPizzaRounded.tsx b/src/IconLocalPizzaRounded.tsx index 95d63f4c3..8b9b58c6f 100644 --- a/src/IconLocalPizzaRounded.tsx +++ b/src/IconLocalPizzaRounded.tsx @@ -8,4 +8,4 @@ const IconLocalPizzaRounded: React.FC = ({ ...props }) => ( ) -export { IconLocalPizzaRounded as default } +export default IconLocalPizzaRounded diff --git a/src/IconLocalPizzaRoundedFilled.tsx b/src/IconLocalPizzaRoundedFilled.tsx index 6697ee02a..d3ba4cfca 100644 --- a/src/IconLocalPizzaRoundedFilled.tsx +++ b/src/IconLocalPizzaRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconLocalPizzaRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconLocalPizzaRoundedFilled as default } +export default IconLocalPizzaRoundedFilled diff --git a/src/IconLocalPizzaSharp.tsx b/src/IconLocalPizzaSharp.tsx index 3fc67b2ae..bc51c9853 100644 --- a/src/IconLocalPizzaSharp.tsx +++ b/src/IconLocalPizzaSharp.tsx @@ -8,4 +8,4 @@ const IconLocalPizzaSharp: React.FC = ({ ...props }) => ( ) -export { IconLocalPizzaSharp as default } +export default IconLocalPizzaSharp diff --git a/src/IconLocalPizzaSharpFilled.tsx b/src/IconLocalPizzaSharpFilled.tsx index 09766ab5d..f433a2472 100644 --- a/src/IconLocalPizzaSharpFilled.tsx +++ b/src/IconLocalPizzaSharpFilled.tsx @@ -8,4 +8,4 @@ const IconLocalPizzaSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconLocalPizzaSharpFilled as default } +export default IconLocalPizzaSharpFilled diff --git a/src/IconLocalPoliceOutlined.tsx b/src/IconLocalPoliceOutlined.tsx index 409724818..3797818ba 100644 --- a/src/IconLocalPoliceOutlined.tsx +++ b/src/IconLocalPoliceOutlined.tsx @@ -8,4 +8,4 @@ const IconLocalPoliceOutlined: React.FC = ({ ...props }) => ( ) -export { IconLocalPoliceOutlined as default } +export default IconLocalPoliceOutlined diff --git a/src/IconLocalPoliceOutlinedFilled.tsx b/src/IconLocalPoliceOutlinedFilled.tsx index b820e9d95..d64060818 100644 --- a/src/IconLocalPoliceOutlinedFilled.tsx +++ b/src/IconLocalPoliceOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconLocalPoliceOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconLocalPoliceOutlinedFilled as default } +export default IconLocalPoliceOutlinedFilled diff --git a/src/IconLocalPoliceRounded.tsx b/src/IconLocalPoliceRounded.tsx index 329f37968..635f199c6 100644 --- a/src/IconLocalPoliceRounded.tsx +++ b/src/IconLocalPoliceRounded.tsx @@ -8,4 +8,4 @@ const IconLocalPoliceRounded: React.FC = ({ ...props }) => ( ) -export { IconLocalPoliceRounded as default } +export default IconLocalPoliceRounded diff --git a/src/IconLocalPoliceRoundedFilled.tsx b/src/IconLocalPoliceRoundedFilled.tsx index 4d9d294bd..51e331ac9 100644 --- a/src/IconLocalPoliceRoundedFilled.tsx +++ b/src/IconLocalPoliceRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconLocalPoliceRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconLocalPoliceRoundedFilled as default } +export default IconLocalPoliceRoundedFilled diff --git a/src/IconLocalPoliceSharp.tsx b/src/IconLocalPoliceSharp.tsx index d2203f604..20b32631e 100644 --- a/src/IconLocalPoliceSharp.tsx +++ b/src/IconLocalPoliceSharp.tsx @@ -8,4 +8,4 @@ const IconLocalPoliceSharp: React.FC = ({ ...props }) => ( ) -export { IconLocalPoliceSharp as default } +export default IconLocalPoliceSharp diff --git a/src/IconLocalPoliceSharpFilled.tsx b/src/IconLocalPoliceSharpFilled.tsx index cf186b00b..76ebcdde0 100644 --- a/src/IconLocalPoliceSharpFilled.tsx +++ b/src/IconLocalPoliceSharpFilled.tsx @@ -8,4 +8,4 @@ const IconLocalPoliceSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconLocalPoliceSharpFilled as default } +export default IconLocalPoliceSharpFilled diff --git a/src/IconLocalPostOfficeOutlined.tsx b/src/IconLocalPostOfficeOutlined.tsx index c06cc9e0b..49a475278 100644 --- a/src/IconLocalPostOfficeOutlined.tsx +++ b/src/IconLocalPostOfficeOutlined.tsx @@ -8,4 +8,4 @@ const IconLocalPostOfficeOutlined: React.FC = ({ ...props }) => ( ) -export { IconLocalPostOfficeOutlined as default } +export default IconLocalPostOfficeOutlined diff --git a/src/IconLocalPostOfficeOutlinedFilled.tsx b/src/IconLocalPostOfficeOutlinedFilled.tsx index 7d2c87637..b1967b30d 100644 --- a/src/IconLocalPostOfficeOutlinedFilled.tsx +++ b/src/IconLocalPostOfficeOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconLocalPostOfficeOutlinedFilled: React.FC = ({ ) -export { IconLocalPostOfficeOutlinedFilled as default } +export default IconLocalPostOfficeOutlinedFilled diff --git a/src/IconLocalPostOfficeRounded.tsx b/src/IconLocalPostOfficeRounded.tsx index 64ffc98a4..2ddc0bfec 100644 --- a/src/IconLocalPostOfficeRounded.tsx +++ b/src/IconLocalPostOfficeRounded.tsx @@ -8,4 +8,4 @@ const IconLocalPostOfficeRounded: React.FC = ({ ...props }) => ( ) -export { IconLocalPostOfficeRounded as default } +export default IconLocalPostOfficeRounded diff --git a/src/IconLocalPostOfficeRoundedFilled.tsx b/src/IconLocalPostOfficeRoundedFilled.tsx index 0f7b1f322..b5c478698 100644 --- a/src/IconLocalPostOfficeRoundedFilled.tsx +++ b/src/IconLocalPostOfficeRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconLocalPostOfficeRoundedFilled: React.FC = ({ ) -export { IconLocalPostOfficeRoundedFilled as default } +export default IconLocalPostOfficeRoundedFilled diff --git a/src/IconLocalPostOfficeSharp.tsx b/src/IconLocalPostOfficeSharp.tsx index c8a1b9fdf..cc1d5766a 100644 --- a/src/IconLocalPostOfficeSharp.tsx +++ b/src/IconLocalPostOfficeSharp.tsx @@ -8,4 +8,4 @@ const IconLocalPostOfficeSharp: React.FC = ({ ...props }) => ( ) -export { IconLocalPostOfficeSharp as default } +export default IconLocalPostOfficeSharp diff --git a/src/IconLocalPostOfficeSharpFilled.tsx b/src/IconLocalPostOfficeSharpFilled.tsx index d71db4e5a..bdfc19e8b 100644 --- a/src/IconLocalPostOfficeSharpFilled.tsx +++ b/src/IconLocalPostOfficeSharpFilled.tsx @@ -8,4 +8,4 @@ const IconLocalPostOfficeSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconLocalPostOfficeSharpFilled as default } +export default IconLocalPostOfficeSharpFilled diff --git a/src/IconLocalSeeOutlined.tsx b/src/IconLocalSeeOutlined.tsx index 9538b8f88..de3d59556 100644 --- a/src/IconLocalSeeOutlined.tsx +++ b/src/IconLocalSeeOutlined.tsx @@ -8,4 +8,4 @@ const IconLocalSeeOutlined: React.FC = ({ ...props }) => ( ) -export { IconLocalSeeOutlined as default } +export default IconLocalSeeOutlined diff --git a/src/IconLocalSeeOutlinedFilled.tsx b/src/IconLocalSeeOutlinedFilled.tsx index 98fc2b294..468b2418d 100644 --- a/src/IconLocalSeeOutlinedFilled.tsx +++ b/src/IconLocalSeeOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconLocalSeeOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconLocalSeeOutlinedFilled as default } +export default IconLocalSeeOutlinedFilled diff --git a/src/IconLocalSeeRounded.tsx b/src/IconLocalSeeRounded.tsx index 6e359ddc4..c69c51e4a 100644 --- a/src/IconLocalSeeRounded.tsx +++ b/src/IconLocalSeeRounded.tsx @@ -8,4 +8,4 @@ const IconLocalSeeRounded: React.FC = ({ ...props }) => ( ) -export { IconLocalSeeRounded as default } +export default IconLocalSeeRounded diff --git a/src/IconLocalSeeRoundedFilled.tsx b/src/IconLocalSeeRoundedFilled.tsx index b4fb33cef..2c00b4670 100644 --- a/src/IconLocalSeeRoundedFilled.tsx +++ b/src/IconLocalSeeRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconLocalSeeRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconLocalSeeRoundedFilled as default } +export default IconLocalSeeRoundedFilled diff --git a/src/IconLocalSeeSharp.tsx b/src/IconLocalSeeSharp.tsx index c0effcc24..08d0e9dcb 100644 --- a/src/IconLocalSeeSharp.tsx +++ b/src/IconLocalSeeSharp.tsx @@ -8,4 +8,4 @@ const IconLocalSeeSharp: React.FC = ({ ...props }) => ( ) -export { IconLocalSeeSharp as default } +export default IconLocalSeeSharp diff --git a/src/IconLocalSeeSharpFilled.tsx b/src/IconLocalSeeSharpFilled.tsx index 94fa8a092..94eae8fe7 100644 --- a/src/IconLocalSeeSharpFilled.tsx +++ b/src/IconLocalSeeSharpFilled.tsx @@ -8,4 +8,4 @@ const IconLocalSeeSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconLocalSeeSharpFilled as default } +export default IconLocalSeeSharpFilled diff --git a/src/IconLocalShippingOutlined.tsx b/src/IconLocalShippingOutlined.tsx index 1b45918c9..7b1c829cd 100644 --- a/src/IconLocalShippingOutlined.tsx +++ b/src/IconLocalShippingOutlined.tsx @@ -8,4 +8,4 @@ const IconLocalShippingOutlined: React.FC = ({ ...props }) => ( ) -export { IconLocalShippingOutlined as default } +export default IconLocalShippingOutlined diff --git a/src/IconLocalShippingOutlinedFilled.tsx b/src/IconLocalShippingOutlinedFilled.tsx index d932c0a15..59e861bb3 100644 --- a/src/IconLocalShippingOutlinedFilled.tsx +++ b/src/IconLocalShippingOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconLocalShippingOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconLocalShippingOutlinedFilled as default } +export default IconLocalShippingOutlinedFilled diff --git a/src/IconLocalShippingRounded.tsx b/src/IconLocalShippingRounded.tsx index 60bf60502..b9db4dacb 100644 --- a/src/IconLocalShippingRounded.tsx +++ b/src/IconLocalShippingRounded.tsx @@ -8,4 +8,4 @@ const IconLocalShippingRounded: React.FC = ({ ...props }) => ( ) -export { IconLocalShippingRounded as default } +export default IconLocalShippingRounded diff --git a/src/IconLocalShippingRoundedFilled.tsx b/src/IconLocalShippingRoundedFilled.tsx index ac5e0902b..9eaf7a79f 100644 --- a/src/IconLocalShippingRoundedFilled.tsx +++ b/src/IconLocalShippingRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconLocalShippingRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconLocalShippingRoundedFilled as default } +export default IconLocalShippingRoundedFilled diff --git a/src/IconLocalShippingSharp.tsx b/src/IconLocalShippingSharp.tsx index 43ad1a509..0b4f26164 100644 --- a/src/IconLocalShippingSharp.tsx +++ b/src/IconLocalShippingSharp.tsx @@ -8,4 +8,4 @@ const IconLocalShippingSharp: React.FC = ({ ...props }) => ( ) -export { IconLocalShippingSharp as default } +export default IconLocalShippingSharp diff --git a/src/IconLocalShippingSharpFilled.tsx b/src/IconLocalShippingSharpFilled.tsx index 5943524cf..f458987cd 100644 --- a/src/IconLocalShippingSharpFilled.tsx +++ b/src/IconLocalShippingSharpFilled.tsx @@ -8,4 +8,4 @@ const IconLocalShippingSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconLocalShippingSharpFilled as default } +export default IconLocalShippingSharpFilled diff --git a/src/IconLocalTaxiOutlined.tsx b/src/IconLocalTaxiOutlined.tsx index 7e97105bc..50cff2975 100644 --- a/src/IconLocalTaxiOutlined.tsx +++ b/src/IconLocalTaxiOutlined.tsx @@ -8,4 +8,4 @@ const IconLocalTaxiOutlined: React.FC = ({ ...props }) => ( ) -export { IconLocalTaxiOutlined as default } +export default IconLocalTaxiOutlined diff --git a/src/IconLocalTaxiOutlinedFilled.tsx b/src/IconLocalTaxiOutlinedFilled.tsx index a03e34205..89214d711 100644 --- a/src/IconLocalTaxiOutlinedFilled.tsx +++ b/src/IconLocalTaxiOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconLocalTaxiOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconLocalTaxiOutlinedFilled as default } +export default IconLocalTaxiOutlinedFilled diff --git a/src/IconLocalTaxiRounded.tsx b/src/IconLocalTaxiRounded.tsx index 33cc56a60..5d430bcb8 100644 --- a/src/IconLocalTaxiRounded.tsx +++ b/src/IconLocalTaxiRounded.tsx @@ -8,4 +8,4 @@ const IconLocalTaxiRounded: React.FC = ({ ...props }) => ( ) -export { IconLocalTaxiRounded as default } +export default IconLocalTaxiRounded diff --git a/src/IconLocalTaxiRoundedFilled.tsx b/src/IconLocalTaxiRoundedFilled.tsx index b8c92452c..2431f6535 100644 --- a/src/IconLocalTaxiRoundedFilled.tsx +++ b/src/IconLocalTaxiRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconLocalTaxiRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconLocalTaxiRoundedFilled as default } +export default IconLocalTaxiRoundedFilled diff --git a/src/IconLocalTaxiSharp.tsx b/src/IconLocalTaxiSharp.tsx index be1042065..7530de150 100644 --- a/src/IconLocalTaxiSharp.tsx +++ b/src/IconLocalTaxiSharp.tsx @@ -8,4 +8,4 @@ const IconLocalTaxiSharp: React.FC = ({ ...props }) => ( ) -export { IconLocalTaxiSharp as default } +export default IconLocalTaxiSharp diff --git a/src/IconLocalTaxiSharpFilled.tsx b/src/IconLocalTaxiSharpFilled.tsx index 380cb6093..bfc196058 100644 --- a/src/IconLocalTaxiSharpFilled.tsx +++ b/src/IconLocalTaxiSharpFilled.tsx @@ -8,4 +8,4 @@ const IconLocalTaxiSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconLocalTaxiSharpFilled as default } +export default IconLocalTaxiSharpFilled diff --git a/src/IconLocationAwayOutlined.tsx b/src/IconLocationAwayOutlined.tsx index ead625bf0..f0f2134f5 100644 --- a/src/IconLocationAwayOutlined.tsx +++ b/src/IconLocationAwayOutlined.tsx @@ -8,4 +8,4 @@ const IconLocationAwayOutlined: React.FC = ({ ...props }) => ( ) -export { IconLocationAwayOutlined as default } +export default IconLocationAwayOutlined diff --git a/src/IconLocationAwayOutlinedFilled.tsx b/src/IconLocationAwayOutlinedFilled.tsx index aac3796f1..9a800ea0a 100644 --- a/src/IconLocationAwayOutlinedFilled.tsx +++ b/src/IconLocationAwayOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconLocationAwayOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconLocationAwayOutlinedFilled as default } +export default IconLocationAwayOutlinedFilled diff --git a/src/IconLocationAwayRounded.tsx b/src/IconLocationAwayRounded.tsx index 730d8d10d..a68bba39b 100644 --- a/src/IconLocationAwayRounded.tsx +++ b/src/IconLocationAwayRounded.tsx @@ -8,4 +8,4 @@ const IconLocationAwayRounded: React.FC = ({ ...props }) => ( ) -export { IconLocationAwayRounded as default } +export default IconLocationAwayRounded diff --git a/src/IconLocationAwayRoundedFilled.tsx b/src/IconLocationAwayRoundedFilled.tsx index 58ebe1d95..7453b6fbd 100644 --- a/src/IconLocationAwayRoundedFilled.tsx +++ b/src/IconLocationAwayRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconLocationAwayRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconLocationAwayRoundedFilled as default } +export default IconLocationAwayRoundedFilled diff --git a/src/IconLocationAwaySharp.tsx b/src/IconLocationAwaySharp.tsx index edbca5eae..2c2d21449 100644 --- a/src/IconLocationAwaySharp.tsx +++ b/src/IconLocationAwaySharp.tsx @@ -8,4 +8,4 @@ const IconLocationAwaySharp: React.FC = ({ ...props }) => ( ) -export { IconLocationAwaySharp as default } +export default IconLocationAwaySharp diff --git a/src/IconLocationAwaySharpFilled.tsx b/src/IconLocationAwaySharpFilled.tsx index df0e0337a..7ff08bb6a 100644 --- a/src/IconLocationAwaySharpFilled.tsx +++ b/src/IconLocationAwaySharpFilled.tsx @@ -8,4 +8,4 @@ const IconLocationAwaySharpFilled: React.FC = ({ ...props }) => ( ) -export { IconLocationAwaySharpFilled as default } +export default IconLocationAwaySharpFilled diff --git a/src/IconLocationChipOutlined.tsx b/src/IconLocationChipOutlined.tsx index b57d4f519..3387d1771 100644 --- a/src/IconLocationChipOutlined.tsx +++ b/src/IconLocationChipOutlined.tsx @@ -8,4 +8,4 @@ const IconLocationChipOutlined: React.FC = ({ ...props }) => ( ) -export { IconLocationChipOutlined as default } +export default IconLocationChipOutlined diff --git a/src/IconLocationChipOutlinedFilled.tsx b/src/IconLocationChipOutlinedFilled.tsx index ee839a011..dcee599bb 100644 --- a/src/IconLocationChipOutlinedFilled.tsx +++ b/src/IconLocationChipOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconLocationChipOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconLocationChipOutlinedFilled as default } +export default IconLocationChipOutlinedFilled diff --git a/src/IconLocationChipRounded.tsx b/src/IconLocationChipRounded.tsx index c87dc586a..40c0e891b 100644 --- a/src/IconLocationChipRounded.tsx +++ b/src/IconLocationChipRounded.tsx @@ -8,4 +8,4 @@ const IconLocationChipRounded: React.FC = ({ ...props }) => ( ) -export { IconLocationChipRounded as default } +export default IconLocationChipRounded diff --git a/src/IconLocationChipRoundedFilled.tsx b/src/IconLocationChipRoundedFilled.tsx index d4269876d..94bfc8ea4 100644 --- a/src/IconLocationChipRoundedFilled.tsx +++ b/src/IconLocationChipRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconLocationChipRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconLocationChipRoundedFilled as default } +export default IconLocationChipRoundedFilled diff --git a/src/IconLocationChipSharp.tsx b/src/IconLocationChipSharp.tsx index 8ff6ef3e9..8202da4db 100644 --- a/src/IconLocationChipSharp.tsx +++ b/src/IconLocationChipSharp.tsx @@ -8,4 +8,4 @@ const IconLocationChipSharp: React.FC = ({ ...props }) => ( ) -export { IconLocationChipSharp as default } +export default IconLocationChipSharp diff --git a/src/IconLocationChipSharpFilled.tsx b/src/IconLocationChipSharpFilled.tsx index 7bcebb52f..f9db3b3ae 100644 --- a/src/IconLocationChipSharpFilled.tsx +++ b/src/IconLocationChipSharpFilled.tsx @@ -8,4 +8,4 @@ const IconLocationChipSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconLocationChipSharpFilled as default } +export default IconLocationChipSharpFilled diff --git a/src/IconLocationCityOutlined.tsx b/src/IconLocationCityOutlined.tsx index 01528b58d..0c5a0ee91 100644 --- a/src/IconLocationCityOutlined.tsx +++ b/src/IconLocationCityOutlined.tsx @@ -8,4 +8,4 @@ const IconLocationCityOutlined: React.FC = ({ ...props }) => ( ) -export { IconLocationCityOutlined as default } +export default IconLocationCityOutlined diff --git a/src/IconLocationCityOutlinedFilled.tsx b/src/IconLocationCityOutlinedFilled.tsx index e1453fdd9..916c6886e 100644 --- a/src/IconLocationCityOutlinedFilled.tsx +++ b/src/IconLocationCityOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconLocationCityOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconLocationCityOutlinedFilled as default } +export default IconLocationCityOutlinedFilled diff --git a/src/IconLocationCityRounded.tsx b/src/IconLocationCityRounded.tsx index ad87cc18b..e0a2f932e 100644 --- a/src/IconLocationCityRounded.tsx +++ b/src/IconLocationCityRounded.tsx @@ -8,4 +8,4 @@ const IconLocationCityRounded: React.FC = ({ ...props }) => ( ) -export { IconLocationCityRounded as default } +export default IconLocationCityRounded diff --git a/src/IconLocationCityRoundedFilled.tsx b/src/IconLocationCityRoundedFilled.tsx index a799b50fb..2fc4013c2 100644 --- a/src/IconLocationCityRoundedFilled.tsx +++ b/src/IconLocationCityRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconLocationCityRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconLocationCityRoundedFilled as default } +export default IconLocationCityRoundedFilled diff --git a/src/IconLocationCitySharp.tsx b/src/IconLocationCitySharp.tsx index 5c83a130e..88154e091 100644 --- a/src/IconLocationCitySharp.tsx +++ b/src/IconLocationCitySharp.tsx @@ -8,4 +8,4 @@ const IconLocationCitySharp: React.FC = ({ ...props }) => ( ) -export { IconLocationCitySharp as default } +export default IconLocationCitySharp diff --git a/src/IconLocationCitySharpFilled.tsx b/src/IconLocationCitySharpFilled.tsx index 1e6e612be..f3dc36234 100644 --- a/src/IconLocationCitySharpFilled.tsx +++ b/src/IconLocationCitySharpFilled.tsx @@ -8,4 +8,4 @@ const IconLocationCitySharpFilled: React.FC = ({ ...props }) => ( ) -export { IconLocationCitySharpFilled as default } +export default IconLocationCitySharpFilled diff --git a/src/IconLocationDisabledOutlined.tsx b/src/IconLocationDisabledOutlined.tsx index 9b1b7ec4e..d54d84b0b 100644 --- a/src/IconLocationDisabledOutlined.tsx +++ b/src/IconLocationDisabledOutlined.tsx @@ -8,4 +8,4 @@ const IconLocationDisabledOutlined: React.FC = ({ ...props }) => ( ) -export { IconLocationDisabledOutlined as default } +export default IconLocationDisabledOutlined diff --git a/src/IconLocationDisabledOutlinedFilled.tsx b/src/IconLocationDisabledOutlinedFilled.tsx index 653010e79..0645096d3 100644 --- a/src/IconLocationDisabledOutlinedFilled.tsx +++ b/src/IconLocationDisabledOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconLocationDisabledOutlinedFilled: React.FC = ({ ) -export { IconLocationDisabledOutlinedFilled as default } +export default IconLocationDisabledOutlinedFilled diff --git a/src/IconLocationDisabledRounded.tsx b/src/IconLocationDisabledRounded.tsx index 51849c236..8f483fef4 100644 --- a/src/IconLocationDisabledRounded.tsx +++ b/src/IconLocationDisabledRounded.tsx @@ -8,4 +8,4 @@ const IconLocationDisabledRounded: React.FC = ({ ...props }) => ( ) -export { IconLocationDisabledRounded as default } +export default IconLocationDisabledRounded diff --git a/src/IconLocationDisabledRoundedFilled.tsx b/src/IconLocationDisabledRoundedFilled.tsx index 29aaafff5..5218dc628 100644 --- a/src/IconLocationDisabledRoundedFilled.tsx +++ b/src/IconLocationDisabledRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconLocationDisabledRoundedFilled: React.FC = ({ ) -export { IconLocationDisabledRoundedFilled as default } +export default IconLocationDisabledRoundedFilled diff --git a/src/IconLocationDisabledSharp.tsx b/src/IconLocationDisabledSharp.tsx index 97224c46f..e0a837e01 100644 --- a/src/IconLocationDisabledSharp.tsx +++ b/src/IconLocationDisabledSharp.tsx @@ -8,4 +8,4 @@ const IconLocationDisabledSharp: React.FC = ({ ...props }) => ( ) -export { IconLocationDisabledSharp as default } +export default IconLocationDisabledSharp diff --git a/src/IconLocationDisabledSharpFilled.tsx b/src/IconLocationDisabledSharpFilled.tsx index 138ade993..6772fc8e8 100644 --- a/src/IconLocationDisabledSharpFilled.tsx +++ b/src/IconLocationDisabledSharpFilled.tsx @@ -8,4 +8,4 @@ const IconLocationDisabledSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconLocationDisabledSharpFilled as default } +export default IconLocationDisabledSharpFilled diff --git a/src/IconLocationHomeOutlined.tsx b/src/IconLocationHomeOutlined.tsx index 6ed4e854c..d6c89214f 100644 --- a/src/IconLocationHomeOutlined.tsx +++ b/src/IconLocationHomeOutlined.tsx @@ -8,4 +8,4 @@ const IconLocationHomeOutlined: React.FC = ({ ...props }) => ( ) -export { IconLocationHomeOutlined as default } +export default IconLocationHomeOutlined diff --git a/src/IconLocationHomeOutlinedFilled.tsx b/src/IconLocationHomeOutlinedFilled.tsx index d20a40526..acd337434 100644 --- a/src/IconLocationHomeOutlinedFilled.tsx +++ b/src/IconLocationHomeOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconLocationHomeOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconLocationHomeOutlinedFilled as default } +export default IconLocationHomeOutlinedFilled diff --git a/src/IconLocationHomeRounded.tsx b/src/IconLocationHomeRounded.tsx index d3e22472c..4dfd63c4b 100644 --- a/src/IconLocationHomeRounded.tsx +++ b/src/IconLocationHomeRounded.tsx @@ -8,4 +8,4 @@ const IconLocationHomeRounded: React.FC = ({ ...props }) => ( ) -export { IconLocationHomeRounded as default } +export default IconLocationHomeRounded diff --git a/src/IconLocationHomeRoundedFilled.tsx b/src/IconLocationHomeRoundedFilled.tsx index 8c0892fe0..2c347ab66 100644 --- a/src/IconLocationHomeRoundedFilled.tsx +++ b/src/IconLocationHomeRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconLocationHomeRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconLocationHomeRoundedFilled as default } +export default IconLocationHomeRoundedFilled diff --git a/src/IconLocationHomeSharp.tsx b/src/IconLocationHomeSharp.tsx index 526f77b51..e05d6c354 100644 --- a/src/IconLocationHomeSharp.tsx +++ b/src/IconLocationHomeSharp.tsx @@ -8,4 +8,4 @@ const IconLocationHomeSharp: React.FC = ({ ...props }) => ( ) -export { IconLocationHomeSharp as default } +export default IconLocationHomeSharp diff --git a/src/IconLocationHomeSharpFilled.tsx b/src/IconLocationHomeSharpFilled.tsx index afdc98c95..110c0a2da 100644 --- a/src/IconLocationHomeSharpFilled.tsx +++ b/src/IconLocationHomeSharpFilled.tsx @@ -8,4 +8,4 @@ const IconLocationHomeSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconLocationHomeSharpFilled as default } +export default IconLocationHomeSharpFilled diff --git a/src/IconLocationOffOutlined.tsx b/src/IconLocationOffOutlined.tsx index 47d44be08..080451ad3 100644 --- a/src/IconLocationOffOutlined.tsx +++ b/src/IconLocationOffOutlined.tsx @@ -8,4 +8,4 @@ const IconLocationOffOutlined: React.FC = ({ ...props }) => ( ) -export { IconLocationOffOutlined as default } +export default IconLocationOffOutlined diff --git a/src/IconLocationOffOutlinedFilled.tsx b/src/IconLocationOffOutlinedFilled.tsx index 3d9089abf..2047ded64 100644 --- a/src/IconLocationOffOutlinedFilled.tsx +++ b/src/IconLocationOffOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconLocationOffOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconLocationOffOutlinedFilled as default } +export default IconLocationOffOutlinedFilled diff --git a/src/IconLocationOffRounded.tsx b/src/IconLocationOffRounded.tsx index 05b56452e..d3bb522ed 100644 --- a/src/IconLocationOffRounded.tsx +++ b/src/IconLocationOffRounded.tsx @@ -8,4 +8,4 @@ const IconLocationOffRounded: React.FC = ({ ...props }) => ( ) -export { IconLocationOffRounded as default } +export default IconLocationOffRounded diff --git a/src/IconLocationOffRoundedFilled.tsx b/src/IconLocationOffRoundedFilled.tsx index f2b93c158..9acef9808 100644 --- a/src/IconLocationOffRoundedFilled.tsx +++ b/src/IconLocationOffRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconLocationOffRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconLocationOffRoundedFilled as default } +export default IconLocationOffRoundedFilled diff --git a/src/IconLocationOffSharp.tsx b/src/IconLocationOffSharp.tsx index 042a41ffd..f9a11e280 100644 --- a/src/IconLocationOffSharp.tsx +++ b/src/IconLocationOffSharp.tsx @@ -8,4 +8,4 @@ const IconLocationOffSharp: React.FC = ({ ...props }) => ( ) -export { IconLocationOffSharp as default } +export default IconLocationOffSharp diff --git a/src/IconLocationOffSharpFilled.tsx b/src/IconLocationOffSharpFilled.tsx index 34f6dbc2b..a776d4da8 100644 --- a/src/IconLocationOffSharpFilled.tsx +++ b/src/IconLocationOffSharpFilled.tsx @@ -8,4 +8,4 @@ const IconLocationOffSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconLocationOffSharpFilled as default } +export default IconLocationOffSharpFilled diff --git a/src/IconLocationOnOutlined.tsx b/src/IconLocationOnOutlined.tsx index 4469c8e6e..8bb4032e3 100644 --- a/src/IconLocationOnOutlined.tsx +++ b/src/IconLocationOnOutlined.tsx @@ -8,4 +8,4 @@ const IconLocationOnOutlined: React.FC = ({ ...props }) => ( ) -export { IconLocationOnOutlined as default } +export default IconLocationOnOutlined diff --git a/src/IconLocationOnOutlinedFilled.tsx b/src/IconLocationOnOutlinedFilled.tsx index ca9806cae..ecdab6f59 100644 --- a/src/IconLocationOnOutlinedFilled.tsx +++ b/src/IconLocationOnOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconLocationOnOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconLocationOnOutlinedFilled as default } +export default IconLocationOnOutlinedFilled diff --git a/src/IconLocationOnRounded.tsx b/src/IconLocationOnRounded.tsx index f9c4fd4a8..d4a4a9ec4 100644 --- a/src/IconLocationOnRounded.tsx +++ b/src/IconLocationOnRounded.tsx @@ -8,4 +8,4 @@ const IconLocationOnRounded: React.FC = ({ ...props }) => ( ) -export { IconLocationOnRounded as default } +export default IconLocationOnRounded diff --git a/src/IconLocationOnRoundedFilled.tsx b/src/IconLocationOnRoundedFilled.tsx index 840f54284..5117c5a48 100644 --- a/src/IconLocationOnRoundedFilled.tsx +++ b/src/IconLocationOnRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconLocationOnRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconLocationOnRoundedFilled as default } +export default IconLocationOnRoundedFilled diff --git a/src/IconLocationOnSharp.tsx b/src/IconLocationOnSharp.tsx index 577911fad..86763b989 100644 --- a/src/IconLocationOnSharp.tsx +++ b/src/IconLocationOnSharp.tsx @@ -8,4 +8,4 @@ const IconLocationOnSharp: React.FC = ({ ...props }) => ( ) -export { IconLocationOnSharp as default } +export default IconLocationOnSharp diff --git a/src/IconLocationOnSharpFilled.tsx b/src/IconLocationOnSharpFilled.tsx index 1d68c94b8..ad68675c7 100644 --- a/src/IconLocationOnSharpFilled.tsx +++ b/src/IconLocationOnSharpFilled.tsx @@ -8,4 +8,4 @@ const IconLocationOnSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconLocationOnSharpFilled as default } +export default IconLocationOnSharpFilled diff --git a/src/IconLocationSearchingOutlined.tsx b/src/IconLocationSearchingOutlined.tsx index b90afd462..69740cd2f 100644 --- a/src/IconLocationSearchingOutlined.tsx +++ b/src/IconLocationSearchingOutlined.tsx @@ -8,4 +8,4 @@ const IconLocationSearchingOutlined: React.FC = ({ ...props }) => ( ) -export { IconLocationSearchingOutlined as default } +export default IconLocationSearchingOutlined diff --git a/src/IconLocationSearchingOutlinedFilled.tsx b/src/IconLocationSearchingOutlinedFilled.tsx index 2ea6cd6bc..486c17067 100644 --- a/src/IconLocationSearchingOutlinedFilled.tsx +++ b/src/IconLocationSearchingOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconLocationSearchingOutlinedFilled: React.FC = ({ ) -export { IconLocationSearchingOutlinedFilled as default } +export default IconLocationSearchingOutlinedFilled diff --git a/src/IconLocationSearchingRounded.tsx b/src/IconLocationSearchingRounded.tsx index 41403167f..94987a9c5 100644 --- a/src/IconLocationSearchingRounded.tsx +++ b/src/IconLocationSearchingRounded.tsx @@ -8,4 +8,4 @@ const IconLocationSearchingRounded: React.FC = ({ ...props }) => ( ) -export { IconLocationSearchingRounded as default } +export default IconLocationSearchingRounded diff --git a/src/IconLocationSearchingRoundedFilled.tsx b/src/IconLocationSearchingRoundedFilled.tsx index e09389e84..fda1142d7 100644 --- a/src/IconLocationSearchingRoundedFilled.tsx +++ b/src/IconLocationSearchingRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconLocationSearchingRoundedFilled: React.FC = ({ ) -export { IconLocationSearchingRoundedFilled as default } +export default IconLocationSearchingRoundedFilled diff --git a/src/IconLocationSearchingSharp.tsx b/src/IconLocationSearchingSharp.tsx index df35c8399..b6dcd8b02 100644 --- a/src/IconLocationSearchingSharp.tsx +++ b/src/IconLocationSearchingSharp.tsx @@ -8,4 +8,4 @@ const IconLocationSearchingSharp: React.FC = ({ ...props }) => ( ) -export { IconLocationSearchingSharp as default } +export default IconLocationSearchingSharp diff --git a/src/IconLocationSearchingSharpFilled.tsx b/src/IconLocationSearchingSharpFilled.tsx index e5db4ae3f..ab4fb989b 100644 --- a/src/IconLocationSearchingSharpFilled.tsx +++ b/src/IconLocationSearchingSharpFilled.tsx @@ -10,4 +10,4 @@ const IconLocationSearchingSharpFilled: React.FC = ({ ) -export { IconLocationSearchingSharpFilled as default } +export default IconLocationSearchingSharpFilled diff --git a/src/IconLockClockOutlined.tsx b/src/IconLockClockOutlined.tsx index 7edb33f04..e9be9d9dc 100644 --- a/src/IconLockClockOutlined.tsx +++ b/src/IconLockClockOutlined.tsx @@ -8,4 +8,4 @@ const IconLockClockOutlined: React.FC = ({ ...props }) => ( ) -export { IconLockClockOutlined as default } +export default IconLockClockOutlined diff --git a/src/IconLockClockOutlinedFilled.tsx b/src/IconLockClockOutlinedFilled.tsx index 7e84e1d4a..74889fefb 100644 --- a/src/IconLockClockOutlinedFilled.tsx +++ b/src/IconLockClockOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconLockClockOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconLockClockOutlinedFilled as default } +export default IconLockClockOutlinedFilled diff --git a/src/IconLockClockRounded.tsx b/src/IconLockClockRounded.tsx index ecbced37a..16d47d9fa 100644 --- a/src/IconLockClockRounded.tsx +++ b/src/IconLockClockRounded.tsx @@ -8,4 +8,4 @@ const IconLockClockRounded: React.FC = ({ ...props }) => ( ) -export { IconLockClockRounded as default } +export default IconLockClockRounded diff --git a/src/IconLockClockRoundedFilled.tsx b/src/IconLockClockRoundedFilled.tsx index 909fc6549..e648d9603 100644 --- a/src/IconLockClockRoundedFilled.tsx +++ b/src/IconLockClockRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconLockClockRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconLockClockRoundedFilled as default } +export default IconLockClockRoundedFilled diff --git a/src/IconLockClockSharp.tsx b/src/IconLockClockSharp.tsx index 2e670fc21..f2756ad72 100644 --- a/src/IconLockClockSharp.tsx +++ b/src/IconLockClockSharp.tsx @@ -8,4 +8,4 @@ const IconLockClockSharp: React.FC = ({ ...props }) => ( ) -export { IconLockClockSharp as default } +export default IconLockClockSharp diff --git a/src/IconLockClockSharpFilled.tsx b/src/IconLockClockSharpFilled.tsx index f06a15dff..4abdaf123 100644 --- a/src/IconLockClockSharpFilled.tsx +++ b/src/IconLockClockSharpFilled.tsx @@ -8,4 +8,4 @@ const IconLockClockSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconLockClockSharpFilled as default } +export default IconLockClockSharpFilled diff --git a/src/IconLockOpenOutlined.tsx b/src/IconLockOpenOutlined.tsx index 716bf001a..99e4e4465 100644 --- a/src/IconLockOpenOutlined.tsx +++ b/src/IconLockOpenOutlined.tsx @@ -8,4 +8,4 @@ const IconLockOpenOutlined: React.FC = ({ ...props }) => ( ) -export { IconLockOpenOutlined as default } +export default IconLockOpenOutlined diff --git a/src/IconLockOpenOutlinedFilled.tsx b/src/IconLockOpenOutlinedFilled.tsx index 31abb66f2..5ad935342 100644 --- a/src/IconLockOpenOutlinedFilled.tsx +++ b/src/IconLockOpenOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconLockOpenOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconLockOpenOutlinedFilled as default } +export default IconLockOpenOutlinedFilled diff --git a/src/IconLockOpenRightOutlined.tsx b/src/IconLockOpenRightOutlined.tsx index 31fc79077..b5a88e027 100644 --- a/src/IconLockOpenRightOutlined.tsx +++ b/src/IconLockOpenRightOutlined.tsx @@ -8,4 +8,4 @@ const IconLockOpenRightOutlined: React.FC = ({ ...props }) => ( ) -export { IconLockOpenRightOutlined as default } +export default IconLockOpenRightOutlined diff --git a/src/IconLockOpenRightOutlinedFilled.tsx b/src/IconLockOpenRightOutlinedFilled.tsx index 7b9bcc05f..98c7719b0 100644 --- a/src/IconLockOpenRightOutlinedFilled.tsx +++ b/src/IconLockOpenRightOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconLockOpenRightOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconLockOpenRightOutlinedFilled as default } +export default IconLockOpenRightOutlinedFilled diff --git a/src/IconLockOpenRightRounded.tsx b/src/IconLockOpenRightRounded.tsx index 461bb5d90..79264fb87 100644 --- a/src/IconLockOpenRightRounded.tsx +++ b/src/IconLockOpenRightRounded.tsx @@ -8,4 +8,4 @@ const IconLockOpenRightRounded: React.FC = ({ ...props }) => ( ) -export { IconLockOpenRightRounded as default } +export default IconLockOpenRightRounded diff --git a/src/IconLockOpenRightRoundedFilled.tsx b/src/IconLockOpenRightRoundedFilled.tsx index 9b906142b..bdd311b02 100644 --- a/src/IconLockOpenRightRoundedFilled.tsx +++ b/src/IconLockOpenRightRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconLockOpenRightRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconLockOpenRightRoundedFilled as default } +export default IconLockOpenRightRoundedFilled diff --git a/src/IconLockOpenRightSharp.tsx b/src/IconLockOpenRightSharp.tsx index 7e358c146..19d4fe8eb 100644 --- a/src/IconLockOpenRightSharp.tsx +++ b/src/IconLockOpenRightSharp.tsx @@ -8,4 +8,4 @@ const IconLockOpenRightSharp: React.FC = ({ ...props }) => ( ) -export { IconLockOpenRightSharp as default } +export default IconLockOpenRightSharp diff --git a/src/IconLockOpenRightSharpFilled.tsx b/src/IconLockOpenRightSharpFilled.tsx index 86568d5e1..35004fd8c 100644 --- a/src/IconLockOpenRightSharpFilled.tsx +++ b/src/IconLockOpenRightSharpFilled.tsx @@ -8,4 +8,4 @@ const IconLockOpenRightSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconLockOpenRightSharpFilled as default } +export default IconLockOpenRightSharpFilled diff --git a/src/IconLockOpenRounded.tsx b/src/IconLockOpenRounded.tsx index 92879a30d..bbc8be126 100644 --- a/src/IconLockOpenRounded.tsx +++ b/src/IconLockOpenRounded.tsx @@ -8,4 +8,4 @@ const IconLockOpenRounded: React.FC = ({ ...props }) => ( ) -export { IconLockOpenRounded as default } +export default IconLockOpenRounded diff --git a/src/IconLockOpenRoundedFilled.tsx b/src/IconLockOpenRoundedFilled.tsx index 028aecc31..8b2127e7d 100644 --- a/src/IconLockOpenRoundedFilled.tsx +++ b/src/IconLockOpenRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconLockOpenRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconLockOpenRoundedFilled as default } +export default IconLockOpenRoundedFilled diff --git a/src/IconLockOpenSharp.tsx b/src/IconLockOpenSharp.tsx index ed810b42c..e7c09dcf4 100644 --- a/src/IconLockOpenSharp.tsx +++ b/src/IconLockOpenSharp.tsx @@ -8,4 +8,4 @@ const IconLockOpenSharp: React.FC = ({ ...props }) => ( ) -export { IconLockOpenSharp as default } +export default IconLockOpenSharp diff --git a/src/IconLockOpenSharpFilled.tsx b/src/IconLockOpenSharpFilled.tsx index 759dff3d7..d247ee423 100644 --- a/src/IconLockOpenSharpFilled.tsx +++ b/src/IconLockOpenSharpFilled.tsx @@ -8,4 +8,4 @@ const IconLockOpenSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconLockOpenSharpFilled as default } +export default IconLockOpenSharpFilled diff --git a/src/IconLockOutlined.tsx b/src/IconLockOutlined.tsx index 53fd5b595..83591690a 100644 --- a/src/IconLockOutlined.tsx +++ b/src/IconLockOutlined.tsx @@ -8,4 +8,4 @@ const IconLockOutlined: React.FC = ({ ...props }) => ( ) -export { IconLockOutlined as default } +export default IconLockOutlined diff --git a/src/IconLockOutlinedFilled.tsx b/src/IconLockOutlinedFilled.tsx index c8fb7b439..10a47ce8b 100644 --- a/src/IconLockOutlinedFilled.tsx +++ b/src/IconLockOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconLockOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconLockOutlinedFilled as default } +export default IconLockOutlinedFilled diff --git a/src/IconLockPersonOutlined.tsx b/src/IconLockPersonOutlined.tsx index c58d35a9d..c33761189 100644 --- a/src/IconLockPersonOutlined.tsx +++ b/src/IconLockPersonOutlined.tsx @@ -8,4 +8,4 @@ const IconLockPersonOutlined: React.FC = ({ ...props }) => ( ) -export { IconLockPersonOutlined as default } +export default IconLockPersonOutlined diff --git a/src/IconLockPersonOutlinedFilled.tsx b/src/IconLockPersonOutlinedFilled.tsx index 013d70ebd..f219a6904 100644 --- a/src/IconLockPersonOutlinedFilled.tsx +++ b/src/IconLockPersonOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconLockPersonOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconLockPersonOutlinedFilled as default } +export default IconLockPersonOutlinedFilled diff --git a/src/IconLockPersonRounded.tsx b/src/IconLockPersonRounded.tsx index 1544d4561..5d9b92dce 100644 --- a/src/IconLockPersonRounded.tsx +++ b/src/IconLockPersonRounded.tsx @@ -8,4 +8,4 @@ const IconLockPersonRounded: React.FC = ({ ...props }) => ( ) -export { IconLockPersonRounded as default } +export default IconLockPersonRounded diff --git a/src/IconLockPersonRoundedFilled.tsx b/src/IconLockPersonRoundedFilled.tsx index 85a0e3fc3..b1b4331ba 100644 --- a/src/IconLockPersonRoundedFilled.tsx +++ b/src/IconLockPersonRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconLockPersonRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconLockPersonRoundedFilled as default } +export default IconLockPersonRoundedFilled diff --git a/src/IconLockPersonSharp.tsx b/src/IconLockPersonSharp.tsx index 8fd54212b..ec964785c 100644 --- a/src/IconLockPersonSharp.tsx +++ b/src/IconLockPersonSharp.tsx @@ -8,4 +8,4 @@ const IconLockPersonSharp: React.FC = ({ ...props }) => ( ) -export { IconLockPersonSharp as default } +export default IconLockPersonSharp diff --git a/src/IconLockPersonSharpFilled.tsx b/src/IconLockPersonSharpFilled.tsx index d3a83ce76..baa16b552 100644 --- a/src/IconLockPersonSharpFilled.tsx +++ b/src/IconLockPersonSharpFilled.tsx @@ -8,4 +8,4 @@ const IconLockPersonSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconLockPersonSharpFilled as default } +export default IconLockPersonSharpFilled diff --git a/src/IconLockResetOutlined.tsx b/src/IconLockResetOutlined.tsx index 181167db0..18f696ea9 100644 --- a/src/IconLockResetOutlined.tsx +++ b/src/IconLockResetOutlined.tsx @@ -8,4 +8,4 @@ const IconLockResetOutlined: React.FC = ({ ...props }) => ( ) -export { IconLockResetOutlined as default } +export default IconLockResetOutlined diff --git a/src/IconLockResetOutlinedFilled.tsx b/src/IconLockResetOutlinedFilled.tsx index e52d14e89..32daeb513 100644 --- a/src/IconLockResetOutlinedFilled.tsx +++ b/src/IconLockResetOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconLockResetOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconLockResetOutlinedFilled as default } +export default IconLockResetOutlinedFilled diff --git a/src/IconLockResetRounded.tsx b/src/IconLockResetRounded.tsx index 6bff67642..0fa1c92f1 100644 --- a/src/IconLockResetRounded.tsx +++ b/src/IconLockResetRounded.tsx @@ -8,4 +8,4 @@ const IconLockResetRounded: React.FC = ({ ...props }) => ( ) -export { IconLockResetRounded as default } +export default IconLockResetRounded diff --git a/src/IconLockResetRoundedFilled.tsx b/src/IconLockResetRoundedFilled.tsx index e05135808..e9adffdc5 100644 --- a/src/IconLockResetRoundedFilled.tsx +++ b/src/IconLockResetRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconLockResetRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconLockResetRoundedFilled as default } +export default IconLockResetRoundedFilled diff --git a/src/IconLockResetSharp.tsx b/src/IconLockResetSharp.tsx index 0e0391a9c..08c12a950 100644 --- a/src/IconLockResetSharp.tsx +++ b/src/IconLockResetSharp.tsx @@ -8,4 +8,4 @@ const IconLockResetSharp: React.FC = ({ ...props }) => ( ) -export { IconLockResetSharp as default } +export default IconLockResetSharp diff --git a/src/IconLockResetSharpFilled.tsx b/src/IconLockResetSharpFilled.tsx index 70bb8ffb0..bd65596fb 100644 --- a/src/IconLockResetSharpFilled.tsx +++ b/src/IconLockResetSharpFilled.tsx @@ -8,4 +8,4 @@ const IconLockResetSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconLockResetSharpFilled as default } +export default IconLockResetSharpFilled diff --git a/src/IconLockRounded.tsx b/src/IconLockRounded.tsx index c14311a95..9ca926818 100644 --- a/src/IconLockRounded.tsx +++ b/src/IconLockRounded.tsx @@ -8,4 +8,4 @@ const IconLockRounded: React.FC = ({ ...props }) => ( ) -export { IconLockRounded as default } +export default IconLockRounded diff --git a/src/IconLockRoundedFilled.tsx b/src/IconLockRoundedFilled.tsx index a74a22338..5b3ff4a48 100644 --- a/src/IconLockRoundedFilled.tsx +++ b/src/IconLockRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconLockRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconLockRoundedFilled as default } +export default IconLockRoundedFilled diff --git a/src/IconLockSharp.tsx b/src/IconLockSharp.tsx index 87dae7d73..2cf46fac7 100644 --- a/src/IconLockSharp.tsx +++ b/src/IconLockSharp.tsx @@ -8,4 +8,4 @@ const IconLockSharp: React.FC = ({ ...props }) => ( ) -export { IconLockSharp as default } +export default IconLockSharp diff --git a/src/IconLockSharpFilled.tsx b/src/IconLockSharpFilled.tsx index 787f7cfcc..23596e621 100644 --- a/src/IconLockSharpFilled.tsx +++ b/src/IconLockSharpFilled.tsx @@ -8,4 +8,4 @@ const IconLockSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconLockSharpFilled as default } +export default IconLockSharpFilled diff --git a/src/IconLoginOutlined.tsx b/src/IconLoginOutlined.tsx index 1db244543..a8dd2a78e 100644 --- a/src/IconLoginOutlined.tsx +++ b/src/IconLoginOutlined.tsx @@ -8,4 +8,4 @@ const IconLoginOutlined: React.FC = ({ ...props }) => ( ) -export { IconLoginOutlined as default } +export default IconLoginOutlined diff --git a/src/IconLoginOutlinedFilled.tsx b/src/IconLoginOutlinedFilled.tsx index 390bc00ed..9db4f7f33 100644 --- a/src/IconLoginOutlinedFilled.tsx +++ b/src/IconLoginOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconLoginOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconLoginOutlinedFilled as default } +export default IconLoginOutlinedFilled diff --git a/src/IconLoginRounded.tsx b/src/IconLoginRounded.tsx index 7fafe4f96..ecbd13f4c 100644 --- a/src/IconLoginRounded.tsx +++ b/src/IconLoginRounded.tsx @@ -8,4 +8,4 @@ const IconLoginRounded: React.FC = ({ ...props }) => ( ) -export { IconLoginRounded as default } +export default IconLoginRounded diff --git a/src/IconLoginRoundedFilled.tsx b/src/IconLoginRoundedFilled.tsx index 87c441b5c..ecf7c91f7 100644 --- a/src/IconLoginRoundedFilled.tsx +++ b/src/IconLoginRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconLoginRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconLoginRoundedFilled as default } +export default IconLoginRoundedFilled diff --git a/src/IconLoginSharp.tsx b/src/IconLoginSharp.tsx index e8d0e6ffc..9e8e230fb 100644 --- a/src/IconLoginSharp.tsx +++ b/src/IconLoginSharp.tsx @@ -8,4 +8,4 @@ const IconLoginSharp: React.FC = ({ ...props }) => ( ) -export { IconLoginSharp as default } +export default IconLoginSharp diff --git a/src/IconLoginSharpFilled.tsx b/src/IconLoginSharpFilled.tsx index a6e816560..6bfe4bfc0 100644 --- a/src/IconLoginSharpFilled.tsx +++ b/src/IconLoginSharpFilled.tsx @@ -8,4 +8,4 @@ const IconLoginSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconLoginSharpFilled as default } +export default IconLoginSharpFilled diff --git a/src/IconLogoDevOutlined.tsx b/src/IconLogoDevOutlined.tsx index 0354a4dd8..333915057 100644 --- a/src/IconLogoDevOutlined.tsx +++ b/src/IconLogoDevOutlined.tsx @@ -8,4 +8,4 @@ const IconLogoDevOutlined: React.FC = ({ ...props }) => ( ) -export { IconLogoDevOutlined as default } +export default IconLogoDevOutlined diff --git a/src/IconLogoDevOutlinedFilled.tsx b/src/IconLogoDevOutlinedFilled.tsx index a29b5d4b1..5a5329dcc 100644 --- a/src/IconLogoDevOutlinedFilled.tsx +++ b/src/IconLogoDevOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconLogoDevOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconLogoDevOutlinedFilled as default } +export default IconLogoDevOutlinedFilled diff --git a/src/IconLogoDevRounded.tsx b/src/IconLogoDevRounded.tsx index 95877a291..9ac788ae0 100644 --- a/src/IconLogoDevRounded.tsx +++ b/src/IconLogoDevRounded.tsx @@ -8,4 +8,4 @@ const IconLogoDevRounded: React.FC = ({ ...props }) => ( ) -export { IconLogoDevRounded as default } +export default IconLogoDevRounded diff --git a/src/IconLogoDevRoundedFilled.tsx b/src/IconLogoDevRoundedFilled.tsx index 83d9b5489..6fd00dce1 100644 --- a/src/IconLogoDevRoundedFilled.tsx +++ b/src/IconLogoDevRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconLogoDevRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconLogoDevRoundedFilled as default } +export default IconLogoDevRoundedFilled diff --git a/src/IconLogoDevSharp.tsx b/src/IconLogoDevSharp.tsx index 92b7e5375..f1b90ab10 100644 --- a/src/IconLogoDevSharp.tsx +++ b/src/IconLogoDevSharp.tsx @@ -8,4 +8,4 @@ const IconLogoDevSharp: React.FC = ({ ...props }) => ( ) -export { IconLogoDevSharp as default } +export default IconLogoDevSharp diff --git a/src/IconLogoDevSharpFilled.tsx b/src/IconLogoDevSharpFilled.tsx index d5164fa3f..0f395b177 100644 --- a/src/IconLogoDevSharpFilled.tsx +++ b/src/IconLogoDevSharpFilled.tsx @@ -8,4 +8,4 @@ const IconLogoDevSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconLogoDevSharpFilled as default } +export default IconLogoDevSharpFilled diff --git a/src/IconLogoutOutlined.tsx b/src/IconLogoutOutlined.tsx index 0e1d62eea..f82aacbac 100644 --- a/src/IconLogoutOutlined.tsx +++ b/src/IconLogoutOutlined.tsx @@ -8,4 +8,4 @@ const IconLogoutOutlined: React.FC = ({ ...props }) => ( ) -export { IconLogoutOutlined as default } +export default IconLogoutOutlined diff --git a/src/IconLogoutOutlinedFilled.tsx b/src/IconLogoutOutlinedFilled.tsx index ee2bbc11c..8f05fa069 100644 --- a/src/IconLogoutOutlinedFilled.tsx +++ b/src/IconLogoutOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconLogoutOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconLogoutOutlinedFilled as default } +export default IconLogoutOutlinedFilled diff --git a/src/IconLogoutRounded.tsx b/src/IconLogoutRounded.tsx index 690defea4..672104de3 100644 --- a/src/IconLogoutRounded.tsx +++ b/src/IconLogoutRounded.tsx @@ -8,4 +8,4 @@ const IconLogoutRounded: React.FC = ({ ...props }) => ( ) -export { IconLogoutRounded as default } +export default IconLogoutRounded diff --git a/src/IconLogoutRoundedFilled.tsx b/src/IconLogoutRoundedFilled.tsx index bd33b21be..09177e883 100644 --- a/src/IconLogoutRoundedFilled.tsx +++ b/src/IconLogoutRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconLogoutRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconLogoutRoundedFilled as default } +export default IconLogoutRoundedFilled diff --git a/src/IconLogoutSharp.tsx b/src/IconLogoutSharp.tsx index 0bcc50249..92b3b16b9 100644 --- a/src/IconLogoutSharp.tsx +++ b/src/IconLogoutSharp.tsx @@ -8,4 +8,4 @@ const IconLogoutSharp: React.FC = ({ ...props }) => ( ) -export { IconLogoutSharp as default } +export default IconLogoutSharp diff --git a/src/IconLogoutSharpFilled.tsx b/src/IconLogoutSharpFilled.tsx index d5a14979a..c56f1ab7d 100644 --- a/src/IconLogoutSharpFilled.tsx +++ b/src/IconLogoutSharpFilled.tsx @@ -8,4 +8,4 @@ const IconLogoutSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconLogoutSharpFilled as default } +export default IconLogoutSharpFilled diff --git a/src/IconLooks3Outlined.tsx b/src/IconLooks3Outlined.tsx index c215ce24f..eabec9d67 100644 --- a/src/IconLooks3Outlined.tsx +++ b/src/IconLooks3Outlined.tsx @@ -8,4 +8,4 @@ const IconLooks3Outlined: React.FC = ({ ...props }) => ( ) -export { IconLooks3Outlined as default } +export default IconLooks3Outlined diff --git a/src/IconLooks3OutlinedFilled.tsx b/src/IconLooks3OutlinedFilled.tsx index d80401017..a2fa6842c 100644 --- a/src/IconLooks3OutlinedFilled.tsx +++ b/src/IconLooks3OutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconLooks3OutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconLooks3OutlinedFilled as default } +export default IconLooks3OutlinedFilled diff --git a/src/IconLooks3Rounded.tsx b/src/IconLooks3Rounded.tsx index b5aafa488..37fe6d77e 100644 --- a/src/IconLooks3Rounded.tsx +++ b/src/IconLooks3Rounded.tsx @@ -8,4 +8,4 @@ const IconLooks3Rounded: React.FC = ({ ...props }) => ( ) -export { IconLooks3Rounded as default } +export default IconLooks3Rounded diff --git a/src/IconLooks3RoundedFilled.tsx b/src/IconLooks3RoundedFilled.tsx index 48928b181..ecc253293 100644 --- a/src/IconLooks3RoundedFilled.tsx +++ b/src/IconLooks3RoundedFilled.tsx @@ -8,4 +8,4 @@ const IconLooks3RoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconLooks3RoundedFilled as default } +export default IconLooks3RoundedFilled diff --git a/src/IconLooks3Sharp.tsx b/src/IconLooks3Sharp.tsx index c23b7dc60..8645ed3ef 100644 --- a/src/IconLooks3Sharp.tsx +++ b/src/IconLooks3Sharp.tsx @@ -8,4 +8,4 @@ const IconLooks3Sharp: React.FC = ({ ...props }) => ( ) -export { IconLooks3Sharp as default } +export default IconLooks3Sharp diff --git a/src/IconLooks3SharpFilled.tsx b/src/IconLooks3SharpFilled.tsx index 7c1d54785..46ececf6a 100644 --- a/src/IconLooks3SharpFilled.tsx +++ b/src/IconLooks3SharpFilled.tsx @@ -8,4 +8,4 @@ const IconLooks3SharpFilled: React.FC = ({ ...props }) => ( ) -export { IconLooks3SharpFilled as default } +export default IconLooks3SharpFilled diff --git a/src/IconLooks4Outlined.tsx b/src/IconLooks4Outlined.tsx index 26e563d93..f4d8588e2 100644 --- a/src/IconLooks4Outlined.tsx +++ b/src/IconLooks4Outlined.tsx @@ -8,4 +8,4 @@ const IconLooks4Outlined: React.FC = ({ ...props }) => ( ) -export { IconLooks4Outlined as default } +export default IconLooks4Outlined diff --git a/src/IconLooks4OutlinedFilled.tsx b/src/IconLooks4OutlinedFilled.tsx index 8513e74b5..ae08fde68 100644 --- a/src/IconLooks4OutlinedFilled.tsx +++ b/src/IconLooks4OutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconLooks4OutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconLooks4OutlinedFilled as default } +export default IconLooks4OutlinedFilled diff --git a/src/IconLooks4Rounded.tsx b/src/IconLooks4Rounded.tsx index 357cd3050..46790aaaa 100644 --- a/src/IconLooks4Rounded.tsx +++ b/src/IconLooks4Rounded.tsx @@ -8,4 +8,4 @@ const IconLooks4Rounded: React.FC = ({ ...props }) => ( ) -export { IconLooks4Rounded as default } +export default IconLooks4Rounded diff --git a/src/IconLooks4RoundedFilled.tsx b/src/IconLooks4RoundedFilled.tsx index c0779b463..c1d6a7580 100644 --- a/src/IconLooks4RoundedFilled.tsx +++ b/src/IconLooks4RoundedFilled.tsx @@ -8,4 +8,4 @@ const IconLooks4RoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconLooks4RoundedFilled as default } +export default IconLooks4RoundedFilled diff --git a/src/IconLooks4Sharp.tsx b/src/IconLooks4Sharp.tsx index 5422538d9..cda8aff9d 100644 --- a/src/IconLooks4Sharp.tsx +++ b/src/IconLooks4Sharp.tsx @@ -8,4 +8,4 @@ const IconLooks4Sharp: React.FC = ({ ...props }) => ( ) -export { IconLooks4Sharp as default } +export default IconLooks4Sharp diff --git a/src/IconLooks4SharpFilled.tsx b/src/IconLooks4SharpFilled.tsx index c7f5d2373..0a3be67c4 100644 --- a/src/IconLooks4SharpFilled.tsx +++ b/src/IconLooks4SharpFilled.tsx @@ -8,4 +8,4 @@ const IconLooks4SharpFilled: React.FC = ({ ...props }) => ( ) -export { IconLooks4SharpFilled as default } +export default IconLooks4SharpFilled diff --git a/src/IconLooks5Outlined.tsx b/src/IconLooks5Outlined.tsx index 37e5e7b39..977ce4356 100644 --- a/src/IconLooks5Outlined.tsx +++ b/src/IconLooks5Outlined.tsx @@ -8,4 +8,4 @@ const IconLooks5Outlined: React.FC = ({ ...props }) => ( ) -export { IconLooks5Outlined as default } +export default IconLooks5Outlined diff --git a/src/IconLooks5OutlinedFilled.tsx b/src/IconLooks5OutlinedFilled.tsx index 05e8b53ce..fe7242bee 100644 --- a/src/IconLooks5OutlinedFilled.tsx +++ b/src/IconLooks5OutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconLooks5OutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconLooks5OutlinedFilled as default } +export default IconLooks5OutlinedFilled diff --git a/src/IconLooks5Rounded.tsx b/src/IconLooks5Rounded.tsx index 6a54164a4..3e4f9864f 100644 --- a/src/IconLooks5Rounded.tsx +++ b/src/IconLooks5Rounded.tsx @@ -8,4 +8,4 @@ const IconLooks5Rounded: React.FC = ({ ...props }) => ( ) -export { IconLooks5Rounded as default } +export default IconLooks5Rounded diff --git a/src/IconLooks5RoundedFilled.tsx b/src/IconLooks5RoundedFilled.tsx index c5cb56cc1..4f3b94767 100644 --- a/src/IconLooks5RoundedFilled.tsx +++ b/src/IconLooks5RoundedFilled.tsx @@ -8,4 +8,4 @@ const IconLooks5RoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconLooks5RoundedFilled as default } +export default IconLooks5RoundedFilled diff --git a/src/IconLooks5Sharp.tsx b/src/IconLooks5Sharp.tsx index 98bf46f89..0aff1c849 100644 --- a/src/IconLooks5Sharp.tsx +++ b/src/IconLooks5Sharp.tsx @@ -8,4 +8,4 @@ const IconLooks5Sharp: React.FC = ({ ...props }) => ( ) -export { IconLooks5Sharp as default } +export default IconLooks5Sharp diff --git a/src/IconLooks5SharpFilled.tsx b/src/IconLooks5SharpFilled.tsx index 3bbb3830f..49a5b91c5 100644 --- a/src/IconLooks5SharpFilled.tsx +++ b/src/IconLooks5SharpFilled.tsx @@ -8,4 +8,4 @@ const IconLooks5SharpFilled: React.FC = ({ ...props }) => ( ) -export { IconLooks5SharpFilled as default } +export default IconLooks5SharpFilled diff --git a/src/IconLooks6Outlined.tsx b/src/IconLooks6Outlined.tsx index f505c5c40..3f280e107 100644 --- a/src/IconLooks6Outlined.tsx +++ b/src/IconLooks6Outlined.tsx @@ -8,4 +8,4 @@ const IconLooks6Outlined: React.FC = ({ ...props }) => ( ) -export { IconLooks6Outlined as default } +export default IconLooks6Outlined diff --git a/src/IconLooks6OutlinedFilled.tsx b/src/IconLooks6OutlinedFilled.tsx index 2d25459cf..bbaf75433 100644 --- a/src/IconLooks6OutlinedFilled.tsx +++ b/src/IconLooks6OutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconLooks6OutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconLooks6OutlinedFilled as default } +export default IconLooks6OutlinedFilled diff --git a/src/IconLooks6Rounded.tsx b/src/IconLooks6Rounded.tsx index 48b54ea4f..d020c2334 100644 --- a/src/IconLooks6Rounded.tsx +++ b/src/IconLooks6Rounded.tsx @@ -8,4 +8,4 @@ const IconLooks6Rounded: React.FC = ({ ...props }) => ( ) -export { IconLooks6Rounded as default } +export default IconLooks6Rounded diff --git a/src/IconLooks6RoundedFilled.tsx b/src/IconLooks6RoundedFilled.tsx index 33084b07c..b6488c887 100644 --- a/src/IconLooks6RoundedFilled.tsx +++ b/src/IconLooks6RoundedFilled.tsx @@ -8,4 +8,4 @@ const IconLooks6RoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconLooks6RoundedFilled as default } +export default IconLooks6RoundedFilled diff --git a/src/IconLooks6Sharp.tsx b/src/IconLooks6Sharp.tsx index eba720fe4..741fc3989 100644 --- a/src/IconLooks6Sharp.tsx +++ b/src/IconLooks6Sharp.tsx @@ -8,4 +8,4 @@ const IconLooks6Sharp: React.FC = ({ ...props }) => ( ) -export { IconLooks6Sharp as default } +export default IconLooks6Sharp diff --git a/src/IconLooks6SharpFilled.tsx b/src/IconLooks6SharpFilled.tsx index 989548bff..56406fbe7 100644 --- a/src/IconLooks6SharpFilled.tsx +++ b/src/IconLooks6SharpFilled.tsx @@ -8,4 +8,4 @@ const IconLooks6SharpFilled: React.FC = ({ ...props }) => ( ) -export { IconLooks6SharpFilled as default } +export default IconLooks6SharpFilled diff --git a/src/IconLooksOneOutlined.tsx b/src/IconLooksOneOutlined.tsx index baced6285..0aaba0f77 100644 --- a/src/IconLooksOneOutlined.tsx +++ b/src/IconLooksOneOutlined.tsx @@ -8,4 +8,4 @@ const IconLooksOneOutlined: React.FC = ({ ...props }) => ( ) -export { IconLooksOneOutlined as default } +export default IconLooksOneOutlined diff --git a/src/IconLooksOneOutlinedFilled.tsx b/src/IconLooksOneOutlinedFilled.tsx index 247a86672..29b9ef42f 100644 --- a/src/IconLooksOneOutlinedFilled.tsx +++ b/src/IconLooksOneOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconLooksOneOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconLooksOneOutlinedFilled as default } +export default IconLooksOneOutlinedFilled diff --git a/src/IconLooksOneRounded.tsx b/src/IconLooksOneRounded.tsx index 2e1984c7a..3730d505e 100644 --- a/src/IconLooksOneRounded.tsx +++ b/src/IconLooksOneRounded.tsx @@ -8,4 +8,4 @@ const IconLooksOneRounded: React.FC = ({ ...props }) => ( ) -export { IconLooksOneRounded as default } +export default IconLooksOneRounded diff --git a/src/IconLooksOneRoundedFilled.tsx b/src/IconLooksOneRoundedFilled.tsx index f7cba1cb0..9a716ca4e 100644 --- a/src/IconLooksOneRoundedFilled.tsx +++ b/src/IconLooksOneRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconLooksOneRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconLooksOneRoundedFilled as default } +export default IconLooksOneRoundedFilled diff --git a/src/IconLooksOneSharp.tsx b/src/IconLooksOneSharp.tsx index 456b856e3..3ae80f340 100644 --- a/src/IconLooksOneSharp.tsx +++ b/src/IconLooksOneSharp.tsx @@ -8,4 +8,4 @@ const IconLooksOneSharp: React.FC = ({ ...props }) => ( ) -export { IconLooksOneSharp as default } +export default IconLooksOneSharp diff --git a/src/IconLooksOneSharpFilled.tsx b/src/IconLooksOneSharpFilled.tsx index 1273e90b6..62bfa0eab 100644 --- a/src/IconLooksOneSharpFilled.tsx +++ b/src/IconLooksOneSharpFilled.tsx @@ -8,4 +8,4 @@ const IconLooksOneSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconLooksOneSharpFilled as default } +export default IconLooksOneSharpFilled diff --git a/src/IconLooksOutlined.tsx b/src/IconLooksOutlined.tsx index 28c809749..8222960c8 100644 --- a/src/IconLooksOutlined.tsx +++ b/src/IconLooksOutlined.tsx @@ -8,4 +8,4 @@ const IconLooksOutlined: React.FC = ({ ...props }) => ( ) -export { IconLooksOutlined as default } +export default IconLooksOutlined diff --git a/src/IconLooksOutlinedFilled.tsx b/src/IconLooksOutlinedFilled.tsx index b68f4bf7c..d71275044 100644 --- a/src/IconLooksOutlinedFilled.tsx +++ b/src/IconLooksOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconLooksOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconLooksOutlinedFilled as default } +export default IconLooksOutlinedFilled diff --git a/src/IconLooksRounded.tsx b/src/IconLooksRounded.tsx index 918a54255..be5551753 100644 --- a/src/IconLooksRounded.tsx +++ b/src/IconLooksRounded.tsx @@ -8,4 +8,4 @@ const IconLooksRounded: React.FC = ({ ...props }) => ( ) -export { IconLooksRounded as default } +export default IconLooksRounded diff --git a/src/IconLooksRoundedFilled.tsx b/src/IconLooksRoundedFilled.tsx index fbe17caef..91414cd1e 100644 --- a/src/IconLooksRoundedFilled.tsx +++ b/src/IconLooksRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconLooksRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconLooksRoundedFilled as default } +export default IconLooksRoundedFilled diff --git a/src/IconLooksSharp.tsx b/src/IconLooksSharp.tsx index 84beb6159..d7904335f 100644 --- a/src/IconLooksSharp.tsx +++ b/src/IconLooksSharp.tsx @@ -8,4 +8,4 @@ const IconLooksSharp: React.FC = ({ ...props }) => ( ) -export { IconLooksSharp as default } +export default IconLooksSharp diff --git a/src/IconLooksSharpFilled.tsx b/src/IconLooksSharpFilled.tsx index bbc33dc4b..b5d7d5bcd 100644 --- a/src/IconLooksSharpFilled.tsx +++ b/src/IconLooksSharpFilled.tsx @@ -8,4 +8,4 @@ const IconLooksSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconLooksSharpFilled as default } +export default IconLooksSharpFilled diff --git a/src/IconLooksTwoOutlined.tsx b/src/IconLooksTwoOutlined.tsx index 41659b462..b7d378942 100644 --- a/src/IconLooksTwoOutlined.tsx +++ b/src/IconLooksTwoOutlined.tsx @@ -8,4 +8,4 @@ const IconLooksTwoOutlined: React.FC = ({ ...props }) => ( ) -export { IconLooksTwoOutlined as default } +export default IconLooksTwoOutlined diff --git a/src/IconLooksTwoOutlinedFilled.tsx b/src/IconLooksTwoOutlinedFilled.tsx index 9ff2fd851..e2c543701 100644 --- a/src/IconLooksTwoOutlinedFilled.tsx +++ b/src/IconLooksTwoOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconLooksTwoOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconLooksTwoOutlinedFilled as default } +export default IconLooksTwoOutlinedFilled diff --git a/src/IconLooksTwoRounded.tsx b/src/IconLooksTwoRounded.tsx index 81ce73274..a9213cde1 100644 --- a/src/IconLooksTwoRounded.tsx +++ b/src/IconLooksTwoRounded.tsx @@ -8,4 +8,4 @@ const IconLooksTwoRounded: React.FC = ({ ...props }) => ( ) -export { IconLooksTwoRounded as default } +export default IconLooksTwoRounded diff --git a/src/IconLooksTwoRoundedFilled.tsx b/src/IconLooksTwoRoundedFilled.tsx index 09c53e59f..569ffdec6 100644 --- a/src/IconLooksTwoRoundedFilled.tsx +++ b/src/IconLooksTwoRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconLooksTwoRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconLooksTwoRoundedFilled as default } +export default IconLooksTwoRoundedFilled diff --git a/src/IconLooksTwoSharp.tsx b/src/IconLooksTwoSharp.tsx index 288e5e1da..bb04a3e3c 100644 --- a/src/IconLooksTwoSharp.tsx +++ b/src/IconLooksTwoSharp.tsx @@ -8,4 +8,4 @@ const IconLooksTwoSharp: React.FC = ({ ...props }) => ( ) -export { IconLooksTwoSharp as default } +export default IconLooksTwoSharp diff --git a/src/IconLooksTwoSharpFilled.tsx b/src/IconLooksTwoSharpFilled.tsx index f1d7d37f5..dcc85be6e 100644 --- a/src/IconLooksTwoSharpFilled.tsx +++ b/src/IconLooksTwoSharpFilled.tsx @@ -8,4 +8,4 @@ const IconLooksTwoSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconLooksTwoSharpFilled as default } +export default IconLooksTwoSharpFilled diff --git a/src/IconLoupeOutlined.tsx b/src/IconLoupeOutlined.tsx index 833e236d4..d580f0d98 100644 --- a/src/IconLoupeOutlined.tsx +++ b/src/IconLoupeOutlined.tsx @@ -8,4 +8,4 @@ const IconLoupeOutlined: React.FC = ({ ...props }) => ( ) -export { IconLoupeOutlined as default } +export default IconLoupeOutlined diff --git a/src/IconLoupeOutlinedFilled.tsx b/src/IconLoupeOutlinedFilled.tsx index 437a73a49..a4ff3d264 100644 --- a/src/IconLoupeOutlinedFilled.tsx +++ b/src/IconLoupeOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconLoupeOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconLoupeOutlinedFilled as default } +export default IconLoupeOutlinedFilled diff --git a/src/IconLoupeRounded.tsx b/src/IconLoupeRounded.tsx index 93cba37c0..51c7992f0 100644 --- a/src/IconLoupeRounded.tsx +++ b/src/IconLoupeRounded.tsx @@ -8,4 +8,4 @@ const IconLoupeRounded: React.FC = ({ ...props }) => ( ) -export { IconLoupeRounded as default } +export default IconLoupeRounded diff --git a/src/IconLoupeRoundedFilled.tsx b/src/IconLoupeRoundedFilled.tsx index a898bce02..74fb54255 100644 --- a/src/IconLoupeRoundedFilled.tsx +++ b/src/IconLoupeRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconLoupeRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconLoupeRoundedFilled as default } +export default IconLoupeRoundedFilled diff --git a/src/IconLoupeSharp.tsx b/src/IconLoupeSharp.tsx index b21823194..f674d1b96 100644 --- a/src/IconLoupeSharp.tsx +++ b/src/IconLoupeSharp.tsx @@ -8,4 +8,4 @@ const IconLoupeSharp: React.FC = ({ ...props }) => ( ) -export { IconLoupeSharp as default } +export default IconLoupeSharp diff --git a/src/IconLoupeSharpFilled.tsx b/src/IconLoupeSharpFilled.tsx index 75816cd7d..266e01b5a 100644 --- a/src/IconLoupeSharpFilled.tsx +++ b/src/IconLoupeSharpFilled.tsx @@ -8,4 +8,4 @@ const IconLoupeSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconLoupeSharpFilled as default } +export default IconLoupeSharpFilled diff --git a/src/IconLowDensityOutlined.tsx b/src/IconLowDensityOutlined.tsx index f27336814..b6516734a 100644 --- a/src/IconLowDensityOutlined.tsx +++ b/src/IconLowDensityOutlined.tsx @@ -8,4 +8,4 @@ const IconLowDensityOutlined: React.FC = ({ ...props }) => ( ) -export { IconLowDensityOutlined as default } +export default IconLowDensityOutlined diff --git a/src/IconLowDensityOutlinedFilled.tsx b/src/IconLowDensityOutlinedFilled.tsx index 201eb8877..2e4dd883e 100644 --- a/src/IconLowDensityOutlinedFilled.tsx +++ b/src/IconLowDensityOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconLowDensityOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconLowDensityOutlinedFilled as default } +export default IconLowDensityOutlinedFilled diff --git a/src/IconLowDensityRounded.tsx b/src/IconLowDensityRounded.tsx index c1a56364b..07b2bf164 100644 --- a/src/IconLowDensityRounded.tsx +++ b/src/IconLowDensityRounded.tsx @@ -8,4 +8,4 @@ const IconLowDensityRounded: React.FC = ({ ...props }) => ( ) -export { IconLowDensityRounded as default } +export default IconLowDensityRounded diff --git a/src/IconLowDensityRoundedFilled.tsx b/src/IconLowDensityRoundedFilled.tsx index a18585b4f..08d54f690 100644 --- a/src/IconLowDensityRoundedFilled.tsx +++ b/src/IconLowDensityRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconLowDensityRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconLowDensityRoundedFilled as default } +export default IconLowDensityRoundedFilled diff --git a/src/IconLowDensitySharp.tsx b/src/IconLowDensitySharp.tsx index 7897cad02..198fde36c 100644 --- a/src/IconLowDensitySharp.tsx +++ b/src/IconLowDensitySharp.tsx @@ -8,4 +8,4 @@ const IconLowDensitySharp: React.FC = ({ ...props }) => ( ) -export { IconLowDensitySharp as default } +export default IconLowDensitySharp diff --git a/src/IconLowDensitySharpFilled.tsx b/src/IconLowDensitySharpFilled.tsx index b58cf13eb..b94e4f47f 100644 --- a/src/IconLowDensitySharpFilled.tsx +++ b/src/IconLowDensitySharpFilled.tsx @@ -8,4 +8,4 @@ const IconLowDensitySharpFilled: React.FC = ({ ...props }) => ( ) -export { IconLowDensitySharpFilled as default } +export default IconLowDensitySharpFilled diff --git a/src/IconLowPriorityOutlined.tsx b/src/IconLowPriorityOutlined.tsx index e6250f658..b2ea17196 100644 --- a/src/IconLowPriorityOutlined.tsx +++ b/src/IconLowPriorityOutlined.tsx @@ -8,4 +8,4 @@ const IconLowPriorityOutlined: React.FC = ({ ...props }) => ( ) -export { IconLowPriorityOutlined as default } +export default IconLowPriorityOutlined diff --git a/src/IconLowPriorityOutlinedFilled.tsx b/src/IconLowPriorityOutlinedFilled.tsx index 66b3121a5..24aaebbbe 100644 --- a/src/IconLowPriorityOutlinedFilled.tsx +++ b/src/IconLowPriorityOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconLowPriorityOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconLowPriorityOutlinedFilled as default } +export default IconLowPriorityOutlinedFilled diff --git a/src/IconLowPriorityRounded.tsx b/src/IconLowPriorityRounded.tsx index 10aec8d4a..b6e525dc3 100644 --- a/src/IconLowPriorityRounded.tsx +++ b/src/IconLowPriorityRounded.tsx @@ -8,4 +8,4 @@ const IconLowPriorityRounded: React.FC = ({ ...props }) => ( ) -export { IconLowPriorityRounded as default } +export default IconLowPriorityRounded diff --git a/src/IconLowPriorityRoundedFilled.tsx b/src/IconLowPriorityRoundedFilled.tsx index 391f80fe1..c8c9674f9 100644 --- a/src/IconLowPriorityRoundedFilled.tsx +++ b/src/IconLowPriorityRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconLowPriorityRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconLowPriorityRoundedFilled as default } +export default IconLowPriorityRoundedFilled diff --git a/src/IconLowPrioritySharp.tsx b/src/IconLowPrioritySharp.tsx index 95c3a046c..811db6a66 100644 --- a/src/IconLowPrioritySharp.tsx +++ b/src/IconLowPrioritySharp.tsx @@ -8,4 +8,4 @@ const IconLowPrioritySharp: React.FC = ({ ...props }) => ( ) -export { IconLowPrioritySharp as default } +export default IconLowPrioritySharp diff --git a/src/IconLowPrioritySharpFilled.tsx b/src/IconLowPrioritySharpFilled.tsx index 2cbe0d0f1..455c6cade 100644 --- a/src/IconLowPrioritySharpFilled.tsx +++ b/src/IconLowPrioritySharpFilled.tsx @@ -8,4 +8,4 @@ const IconLowPrioritySharpFilled: React.FC = ({ ...props }) => ( ) -export { IconLowPrioritySharpFilled as default } +export default IconLowPrioritySharpFilled diff --git a/src/IconLowercaseOutlined.tsx b/src/IconLowercaseOutlined.tsx index 5e5821ae7..9936aca1a 100644 --- a/src/IconLowercaseOutlined.tsx +++ b/src/IconLowercaseOutlined.tsx @@ -8,4 +8,4 @@ const IconLowercaseOutlined: React.FC = ({ ...props }) => ( ) -export { IconLowercaseOutlined as default } +export default IconLowercaseOutlined diff --git a/src/IconLowercaseOutlinedFilled.tsx b/src/IconLowercaseOutlinedFilled.tsx index 6c8700caf..b596b2f53 100644 --- a/src/IconLowercaseOutlinedFilled.tsx +++ b/src/IconLowercaseOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconLowercaseOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconLowercaseOutlinedFilled as default } +export default IconLowercaseOutlinedFilled diff --git a/src/IconLowercaseRounded.tsx b/src/IconLowercaseRounded.tsx index 69b7b08ff..b168ba819 100644 --- a/src/IconLowercaseRounded.tsx +++ b/src/IconLowercaseRounded.tsx @@ -8,4 +8,4 @@ const IconLowercaseRounded: React.FC = ({ ...props }) => ( ) -export { IconLowercaseRounded as default } +export default IconLowercaseRounded diff --git a/src/IconLowercaseRoundedFilled.tsx b/src/IconLowercaseRoundedFilled.tsx index 48d745a17..c76e25e80 100644 --- a/src/IconLowercaseRoundedFilled.tsx +++ b/src/IconLowercaseRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconLowercaseRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconLowercaseRoundedFilled as default } +export default IconLowercaseRoundedFilled diff --git a/src/IconLowercaseSharp.tsx b/src/IconLowercaseSharp.tsx index a0207475f..e484822af 100644 --- a/src/IconLowercaseSharp.tsx +++ b/src/IconLowercaseSharp.tsx @@ -8,4 +8,4 @@ const IconLowercaseSharp: React.FC = ({ ...props }) => ( ) -export { IconLowercaseSharp as default } +export default IconLowercaseSharp diff --git a/src/IconLowercaseSharpFilled.tsx b/src/IconLowercaseSharpFilled.tsx index 96791bf29..a07fb8972 100644 --- a/src/IconLowercaseSharpFilled.tsx +++ b/src/IconLowercaseSharpFilled.tsx @@ -8,4 +8,4 @@ const IconLowercaseSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconLowercaseSharpFilled as default } +export default IconLowercaseSharpFilled diff --git a/src/IconLoyaltyOutlined.tsx b/src/IconLoyaltyOutlined.tsx index 13372244b..d99b0aa19 100644 --- a/src/IconLoyaltyOutlined.tsx +++ b/src/IconLoyaltyOutlined.tsx @@ -8,4 +8,4 @@ const IconLoyaltyOutlined: React.FC = ({ ...props }) => ( ) -export { IconLoyaltyOutlined as default } +export default IconLoyaltyOutlined diff --git a/src/IconLoyaltyOutlinedFilled.tsx b/src/IconLoyaltyOutlinedFilled.tsx index f22d77da6..0b0a261b8 100644 --- a/src/IconLoyaltyOutlinedFilled.tsx +++ b/src/IconLoyaltyOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconLoyaltyOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconLoyaltyOutlinedFilled as default } +export default IconLoyaltyOutlinedFilled diff --git a/src/IconLoyaltyRounded.tsx b/src/IconLoyaltyRounded.tsx index 81d9a7f01..eddae352a 100644 --- a/src/IconLoyaltyRounded.tsx +++ b/src/IconLoyaltyRounded.tsx @@ -8,4 +8,4 @@ const IconLoyaltyRounded: React.FC = ({ ...props }) => ( ) -export { IconLoyaltyRounded as default } +export default IconLoyaltyRounded diff --git a/src/IconLoyaltyRoundedFilled.tsx b/src/IconLoyaltyRoundedFilled.tsx index c711e8afc..b41f90e0d 100644 --- a/src/IconLoyaltyRoundedFilled.tsx +++ b/src/IconLoyaltyRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconLoyaltyRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconLoyaltyRoundedFilled as default } +export default IconLoyaltyRoundedFilled diff --git a/src/IconLoyaltySharp.tsx b/src/IconLoyaltySharp.tsx index 51e22a7d2..60af9edf7 100644 --- a/src/IconLoyaltySharp.tsx +++ b/src/IconLoyaltySharp.tsx @@ -8,4 +8,4 @@ const IconLoyaltySharp: React.FC = ({ ...props }) => ( ) -export { IconLoyaltySharp as default } +export default IconLoyaltySharp diff --git a/src/IconLoyaltySharpFilled.tsx b/src/IconLoyaltySharpFilled.tsx index 18c4ac96b..36e58f32a 100644 --- a/src/IconLoyaltySharpFilled.tsx +++ b/src/IconLoyaltySharpFilled.tsx @@ -8,4 +8,4 @@ const IconLoyaltySharpFilled: React.FC = ({ ...props }) => ( ) -export { IconLoyaltySharpFilled as default } +export default IconLoyaltySharpFilled diff --git a/src/IconLteMobiledataBadgeOutlined.tsx b/src/IconLteMobiledataBadgeOutlined.tsx index 284e11f92..c27443463 100644 --- a/src/IconLteMobiledataBadgeOutlined.tsx +++ b/src/IconLteMobiledataBadgeOutlined.tsx @@ -8,4 +8,4 @@ const IconLteMobiledataBadgeOutlined: React.FC = ({ ...props }) => ( ) -export { IconLteMobiledataBadgeOutlined as default } +export default IconLteMobiledataBadgeOutlined diff --git a/src/IconLteMobiledataBadgeOutlinedFilled.tsx b/src/IconLteMobiledataBadgeOutlinedFilled.tsx index 2435650fd..5f20bff5f 100644 --- a/src/IconLteMobiledataBadgeOutlinedFilled.tsx +++ b/src/IconLteMobiledataBadgeOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconLteMobiledataBadgeOutlinedFilled: React.FC = ({ ) -export { IconLteMobiledataBadgeOutlinedFilled as default } +export default IconLteMobiledataBadgeOutlinedFilled diff --git a/src/IconLteMobiledataBadgeRounded.tsx b/src/IconLteMobiledataBadgeRounded.tsx index 11fa762a7..fb02e3803 100644 --- a/src/IconLteMobiledataBadgeRounded.tsx +++ b/src/IconLteMobiledataBadgeRounded.tsx @@ -8,4 +8,4 @@ const IconLteMobiledataBadgeRounded: React.FC = ({ ...props }) => ( ) -export { IconLteMobiledataBadgeRounded as default } +export default IconLteMobiledataBadgeRounded diff --git a/src/IconLteMobiledataBadgeRoundedFilled.tsx b/src/IconLteMobiledataBadgeRoundedFilled.tsx index af945f9b5..dd8444b38 100644 --- a/src/IconLteMobiledataBadgeRoundedFilled.tsx +++ b/src/IconLteMobiledataBadgeRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconLteMobiledataBadgeRoundedFilled: React.FC = ({ ) -export { IconLteMobiledataBadgeRoundedFilled as default } +export default IconLteMobiledataBadgeRoundedFilled diff --git a/src/IconLteMobiledataBadgeSharp.tsx b/src/IconLteMobiledataBadgeSharp.tsx index 61c231db4..a7ae10d26 100644 --- a/src/IconLteMobiledataBadgeSharp.tsx +++ b/src/IconLteMobiledataBadgeSharp.tsx @@ -8,4 +8,4 @@ const IconLteMobiledataBadgeSharp: React.FC = ({ ...props }) => ( ) -export { IconLteMobiledataBadgeSharp as default } +export default IconLteMobiledataBadgeSharp diff --git a/src/IconLteMobiledataBadgeSharpFilled.tsx b/src/IconLteMobiledataBadgeSharpFilled.tsx index 31f859389..c5fae8b2f 100644 --- a/src/IconLteMobiledataBadgeSharpFilled.tsx +++ b/src/IconLteMobiledataBadgeSharpFilled.tsx @@ -10,4 +10,4 @@ const IconLteMobiledataBadgeSharpFilled: React.FC = ({ ) -export { IconLteMobiledataBadgeSharpFilled as default } +export default IconLteMobiledataBadgeSharpFilled diff --git a/src/IconLteMobiledataOutlined.tsx b/src/IconLteMobiledataOutlined.tsx index 2eeeeb398..360c74668 100644 --- a/src/IconLteMobiledataOutlined.tsx +++ b/src/IconLteMobiledataOutlined.tsx @@ -8,4 +8,4 @@ const IconLteMobiledataOutlined: React.FC = ({ ...props }) => ( ) -export { IconLteMobiledataOutlined as default } +export default IconLteMobiledataOutlined diff --git a/src/IconLteMobiledataOutlinedFilled.tsx b/src/IconLteMobiledataOutlinedFilled.tsx index 0ebe0072a..5a38afcbe 100644 --- a/src/IconLteMobiledataOutlinedFilled.tsx +++ b/src/IconLteMobiledataOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconLteMobiledataOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconLteMobiledataOutlinedFilled as default } +export default IconLteMobiledataOutlinedFilled diff --git a/src/IconLteMobiledataRounded.tsx b/src/IconLteMobiledataRounded.tsx index 01ab6b04f..95b84612c 100644 --- a/src/IconLteMobiledataRounded.tsx +++ b/src/IconLteMobiledataRounded.tsx @@ -8,4 +8,4 @@ const IconLteMobiledataRounded: React.FC = ({ ...props }) => ( ) -export { IconLteMobiledataRounded as default } +export default IconLteMobiledataRounded diff --git a/src/IconLteMobiledataRoundedFilled.tsx b/src/IconLteMobiledataRoundedFilled.tsx index 64edd6dc6..9c6981419 100644 --- a/src/IconLteMobiledataRoundedFilled.tsx +++ b/src/IconLteMobiledataRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconLteMobiledataRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconLteMobiledataRoundedFilled as default } +export default IconLteMobiledataRoundedFilled diff --git a/src/IconLteMobiledataSharp.tsx b/src/IconLteMobiledataSharp.tsx index 999c0eb00..3003665ce 100644 --- a/src/IconLteMobiledataSharp.tsx +++ b/src/IconLteMobiledataSharp.tsx @@ -8,4 +8,4 @@ const IconLteMobiledataSharp: React.FC = ({ ...props }) => ( ) -export { IconLteMobiledataSharp as default } +export default IconLteMobiledataSharp diff --git a/src/IconLteMobiledataSharpFilled.tsx b/src/IconLteMobiledataSharpFilled.tsx index 641d5807f..a6eb7cdf6 100644 --- a/src/IconLteMobiledataSharpFilled.tsx +++ b/src/IconLteMobiledataSharpFilled.tsx @@ -8,4 +8,4 @@ const IconLteMobiledataSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconLteMobiledataSharpFilled as default } +export default IconLteMobiledataSharpFilled diff --git a/src/IconLtePlusMobiledataBadgeOutlined.tsx b/src/IconLtePlusMobiledataBadgeOutlined.tsx index 3bdbf297f..d3a167804 100644 --- a/src/IconLtePlusMobiledataBadgeOutlined.tsx +++ b/src/IconLtePlusMobiledataBadgeOutlined.tsx @@ -10,4 +10,4 @@ const IconLtePlusMobiledataBadgeOutlined: React.FC = ({ ) -export { IconLtePlusMobiledataBadgeOutlined as default } +export default IconLtePlusMobiledataBadgeOutlined diff --git a/src/IconLtePlusMobiledataBadgeOutlinedFilled.tsx b/src/IconLtePlusMobiledataBadgeOutlinedFilled.tsx index 2f53669d0..83391ef22 100644 --- a/src/IconLtePlusMobiledataBadgeOutlinedFilled.tsx +++ b/src/IconLtePlusMobiledataBadgeOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconLtePlusMobiledataBadgeOutlinedFilled: React.FC = ({ ) -export { IconLtePlusMobiledataBadgeOutlinedFilled as default } +export default IconLtePlusMobiledataBadgeOutlinedFilled diff --git a/src/IconLtePlusMobiledataBadgeRounded.tsx b/src/IconLtePlusMobiledataBadgeRounded.tsx index 66c6dea77..b7982d26b 100644 --- a/src/IconLtePlusMobiledataBadgeRounded.tsx +++ b/src/IconLtePlusMobiledataBadgeRounded.tsx @@ -10,4 +10,4 @@ const IconLtePlusMobiledataBadgeRounded: React.FC = ({ ) -export { IconLtePlusMobiledataBadgeRounded as default } +export default IconLtePlusMobiledataBadgeRounded diff --git a/src/IconLtePlusMobiledataBadgeRoundedFilled.tsx b/src/IconLtePlusMobiledataBadgeRoundedFilled.tsx index 0272b4d06..22be95eea 100644 --- a/src/IconLtePlusMobiledataBadgeRoundedFilled.tsx +++ b/src/IconLtePlusMobiledataBadgeRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconLtePlusMobiledataBadgeRoundedFilled: React.FC = ({ ) -export { IconLtePlusMobiledataBadgeRoundedFilled as default } +export default IconLtePlusMobiledataBadgeRoundedFilled diff --git a/src/IconLtePlusMobiledataBadgeSharp.tsx b/src/IconLtePlusMobiledataBadgeSharp.tsx index d87b365cd..2c9c08ede 100644 --- a/src/IconLtePlusMobiledataBadgeSharp.tsx +++ b/src/IconLtePlusMobiledataBadgeSharp.tsx @@ -8,4 +8,4 @@ const IconLtePlusMobiledataBadgeSharp: React.FC = ({ ...props }) => ( ) -export { IconLtePlusMobiledataBadgeSharp as default } +export default IconLtePlusMobiledataBadgeSharp diff --git a/src/IconLtePlusMobiledataBadgeSharpFilled.tsx b/src/IconLtePlusMobiledataBadgeSharpFilled.tsx index 7cac103ce..8e40bd3de 100644 --- a/src/IconLtePlusMobiledataBadgeSharpFilled.tsx +++ b/src/IconLtePlusMobiledataBadgeSharpFilled.tsx @@ -10,4 +10,4 @@ const IconLtePlusMobiledataBadgeSharpFilled: React.FC = ({ ) -export { IconLtePlusMobiledataBadgeSharpFilled as default } +export default IconLtePlusMobiledataBadgeSharpFilled diff --git a/src/IconLtePlusMobiledataOutlined.tsx b/src/IconLtePlusMobiledataOutlined.tsx index 60df3ed05..97f0b882b 100644 --- a/src/IconLtePlusMobiledataOutlined.tsx +++ b/src/IconLtePlusMobiledataOutlined.tsx @@ -8,4 +8,4 @@ const IconLtePlusMobiledataOutlined: React.FC = ({ ...props }) => ( ) -export { IconLtePlusMobiledataOutlined as default } +export default IconLtePlusMobiledataOutlined diff --git a/src/IconLtePlusMobiledataOutlinedFilled.tsx b/src/IconLtePlusMobiledataOutlinedFilled.tsx index 0928e7274..bd6a92605 100644 --- a/src/IconLtePlusMobiledataOutlinedFilled.tsx +++ b/src/IconLtePlusMobiledataOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconLtePlusMobiledataOutlinedFilled: React.FC = ({ ) -export { IconLtePlusMobiledataOutlinedFilled as default } +export default IconLtePlusMobiledataOutlinedFilled diff --git a/src/IconLtePlusMobiledataRounded.tsx b/src/IconLtePlusMobiledataRounded.tsx index e3934746a..e3dfae807 100644 --- a/src/IconLtePlusMobiledataRounded.tsx +++ b/src/IconLtePlusMobiledataRounded.tsx @@ -8,4 +8,4 @@ const IconLtePlusMobiledataRounded: React.FC = ({ ...props }) => ( ) -export { IconLtePlusMobiledataRounded as default } +export default IconLtePlusMobiledataRounded diff --git a/src/IconLtePlusMobiledataRoundedFilled.tsx b/src/IconLtePlusMobiledataRoundedFilled.tsx index 8fd928f49..7fd33ab61 100644 --- a/src/IconLtePlusMobiledataRoundedFilled.tsx +++ b/src/IconLtePlusMobiledataRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconLtePlusMobiledataRoundedFilled: React.FC = ({ ) -export { IconLtePlusMobiledataRoundedFilled as default } +export default IconLtePlusMobiledataRoundedFilled diff --git a/src/IconLtePlusMobiledataSharp.tsx b/src/IconLtePlusMobiledataSharp.tsx index 4713bcc4e..6135933ee 100644 --- a/src/IconLtePlusMobiledataSharp.tsx +++ b/src/IconLtePlusMobiledataSharp.tsx @@ -8,4 +8,4 @@ const IconLtePlusMobiledataSharp: React.FC = ({ ...props }) => ( ) -export { IconLtePlusMobiledataSharp as default } +export default IconLtePlusMobiledataSharp diff --git a/src/IconLtePlusMobiledataSharpFilled.tsx b/src/IconLtePlusMobiledataSharpFilled.tsx index 3f2a77c29..90ac74f53 100644 --- a/src/IconLtePlusMobiledataSharpFilled.tsx +++ b/src/IconLtePlusMobiledataSharpFilled.tsx @@ -10,4 +10,4 @@ const IconLtePlusMobiledataSharpFilled: React.FC = ({ ) -export { IconLtePlusMobiledataSharpFilled as default } +export default IconLtePlusMobiledataSharpFilled diff --git a/src/IconLuggageOutlined.tsx b/src/IconLuggageOutlined.tsx index 46289af41..286398d48 100644 --- a/src/IconLuggageOutlined.tsx +++ b/src/IconLuggageOutlined.tsx @@ -8,4 +8,4 @@ const IconLuggageOutlined: React.FC = ({ ...props }) => ( ) -export { IconLuggageOutlined as default } +export default IconLuggageOutlined diff --git a/src/IconLuggageOutlinedFilled.tsx b/src/IconLuggageOutlinedFilled.tsx index b94f70258..14b1ea355 100644 --- a/src/IconLuggageOutlinedFilled.tsx +++ b/src/IconLuggageOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconLuggageOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconLuggageOutlinedFilled as default } +export default IconLuggageOutlinedFilled diff --git a/src/IconLuggageRounded.tsx b/src/IconLuggageRounded.tsx index a8ff8b65f..40966b267 100644 --- a/src/IconLuggageRounded.tsx +++ b/src/IconLuggageRounded.tsx @@ -8,4 +8,4 @@ const IconLuggageRounded: React.FC = ({ ...props }) => ( ) -export { IconLuggageRounded as default } +export default IconLuggageRounded diff --git a/src/IconLuggageRoundedFilled.tsx b/src/IconLuggageRoundedFilled.tsx index 673314f66..b206483ee 100644 --- a/src/IconLuggageRoundedFilled.tsx +++ b/src/IconLuggageRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconLuggageRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconLuggageRoundedFilled as default } +export default IconLuggageRoundedFilled diff --git a/src/IconLuggageSharp.tsx b/src/IconLuggageSharp.tsx index d5d0aa2f0..74b611614 100644 --- a/src/IconLuggageSharp.tsx +++ b/src/IconLuggageSharp.tsx @@ -8,4 +8,4 @@ const IconLuggageSharp: React.FC = ({ ...props }) => ( ) -export { IconLuggageSharp as default } +export default IconLuggageSharp diff --git a/src/IconLuggageSharpFilled.tsx b/src/IconLuggageSharpFilled.tsx index ad929dc1d..c8707bcd2 100644 --- a/src/IconLuggageSharpFilled.tsx +++ b/src/IconLuggageSharpFilled.tsx @@ -8,4 +8,4 @@ const IconLuggageSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconLuggageSharpFilled as default } +export default IconLuggageSharpFilled diff --git a/src/IconLunchDiningOutlined.tsx b/src/IconLunchDiningOutlined.tsx index 70537b7ca..83df66417 100644 --- a/src/IconLunchDiningOutlined.tsx +++ b/src/IconLunchDiningOutlined.tsx @@ -8,4 +8,4 @@ const IconLunchDiningOutlined: React.FC = ({ ...props }) => ( ) -export { IconLunchDiningOutlined as default } +export default IconLunchDiningOutlined diff --git a/src/IconLunchDiningOutlinedFilled.tsx b/src/IconLunchDiningOutlinedFilled.tsx index 17da62ddd..1976ef1a2 100644 --- a/src/IconLunchDiningOutlinedFilled.tsx +++ b/src/IconLunchDiningOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconLunchDiningOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconLunchDiningOutlinedFilled as default } +export default IconLunchDiningOutlinedFilled diff --git a/src/IconLunchDiningRounded.tsx b/src/IconLunchDiningRounded.tsx index 9f34a7097..71443b3b1 100644 --- a/src/IconLunchDiningRounded.tsx +++ b/src/IconLunchDiningRounded.tsx @@ -8,4 +8,4 @@ const IconLunchDiningRounded: React.FC = ({ ...props }) => ( ) -export { IconLunchDiningRounded as default } +export default IconLunchDiningRounded diff --git a/src/IconLunchDiningRoundedFilled.tsx b/src/IconLunchDiningRoundedFilled.tsx index e63818587..7dd849789 100644 --- a/src/IconLunchDiningRoundedFilled.tsx +++ b/src/IconLunchDiningRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconLunchDiningRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconLunchDiningRoundedFilled as default } +export default IconLunchDiningRoundedFilled diff --git a/src/IconLunchDiningSharp.tsx b/src/IconLunchDiningSharp.tsx index 2d03bd918..11ddbd8c1 100644 --- a/src/IconLunchDiningSharp.tsx +++ b/src/IconLunchDiningSharp.tsx @@ -8,4 +8,4 @@ const IconLunchDiningSharp: React.FC = ({ ...props }) => ( ) -export { IconLunchDiningSharp as default } +export default IconLunchDiningSharp diff --git a/src/IconLunchDiningSharpFilled.tsx b/src/IconLunchDiningSharpFilled.tsx index b28c40e62..0c6dbb1cc 100644 --- a/src/IconLunchDiningSharpFilled.tsx +++ b/src/IconLunchDiningSharpFilled.tsx @@ -8,4 +8,4 @@ const IconLunchDiningSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconLunchDiningSharpFilled as default } +export default IconLunchDiningSharpFilled diff --git a/src/IconLyricsOutlined.tsx b/src/IconLyricsOutlined.tsx index 439289746..8b7201b8d 100644 --- a/src/IconLyricsOutlined.tsx +++ b/src/IconLyricsOutlined.tsx @@ -8,4 +8,4 @@ const IconLyricsOutlined: React.FC = ({ ...props }) => ( ) -export { IconLyricsOutlined as default } +export default IconLyricsOutlined diff --git a/src/IconLyricsOutlinedFilled.tsx b/src/IconLyricsOutlinedFilled.tsx index 5289a9b95..0e6fb211d 100644 --- a/src/IconLyricsOutlinedFilled.tsx +++ b/src/IconLyricsOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconLyricsOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconLyricsOutlinedFilled as default } +export default IconLyricsOutlinedFilled diff --git a/src/IconLyricsRounded.tsx b/src/IconLyricsRounded.tsx index b01082f54..e194aa98f 100644 --- a/src/IconLyricsRounded.tsx +++ b/src/IconLyricsRounded.tsx @@ -8,4 +8,4 @@ const IconLyricsRounded: React.FC = ({ ...props }) => ( ) -export { IconLyricsRounded as default } +export default IconLyricsRounded diff --git a/src/IconLyricsRoundedFilled.tsx b/src/IconLyricsRoundedFilled.tsx index 2556622ff..dcb18e9ce 100644 --- a/src/IconLyricsRoundedFilled.tsx +++ b/src/IconLyricsRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconLyricsRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconLyricsRoundedFilled as default } +export default IconLyricsRoundedFilled diff --git a/src/IconLyricsSharp.tsx b/src/IconLyricsSharp.tsx index 0bdd91f90..45a6d6ad6 100644 --- a/src/IconLyricsSharp.tsx +++ b/src/IconLyricsSharp.tsx @@ -8,4 +8,4 @@ const IconLyricsSharp: React.FC = ({ ...props }) => ( ) -export { IconLyricsSharp as default } +export default IconLyricsSharp diff --git a/src/IconLyricsSharpFilled.tsx b/src/IconLyricsSharpFilled.tsx index faa14b57b..53804c1c5 100644 --- a/src/IconLyricsSharpFilled.tsx +++ b/src/IconLyricsSharpFilled.tsx @@ -8,4 +8,4 @@ const IconLyricsSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconLyricsSharpFilled as default } +export default IconLyricsSharpFilled diff --git a/src/IconMacroAutoOutlined.tsx b/src/IconMacroAutoOutlined.tsx index 9b9f201a9..ba015358b 100644 --- a/src/IconMacroAutoOutlined.tsx +++ b/src/IconMacroAutoOutlined.tsx @@ -8,4 +8,4 @@ const IconMacroAutoOutlined: React.FC = ({ ...props }) => ( ) -export { IconMacroAutoOutlined as default } +export default IconMacroAutoOutlined diff --git a/src/IconMacroAutoOutlinedFilled.tsx b/src/IconMacroAutoOutlinedFilled.tsx index d78f4aafe..508101c86 100644 --- a/src/IconMacroAutoOutlinedFilled.tsx +++ b/src/IconMacroAutoOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconMacroAutoOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconMacroAutoOutlinedFilled as default } +export default IconMacroAutoOutlinedFilled diff --git a/src/IconMacroAutoRounded.tsx b/src/IconMacroAutoRounded.tsx index 7b6c89f0f..aa596f96b 100644 --- a/src/IconMacroAutoRounded.tsx +++ b/src/IconMacroAutoRounded.tsx @@ -8,4 +8,4 @@ const IconMacroAutoRounded: React.FC = ({ ...props }) => ( ) -export { IconMacroAutoRounded as default } +export default IconMacroAutoRounded diff --git a/src/IconMacroAutoRoundedFilled.tsx b/src/IconMacroAutoRoundedFilled.tsx index 1946218e2..7ddfeafbb 100644 --- a/src/IconMacroAutoRoundedFilled.tsx +++ b/src/IconMacroAutoRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconMacroAutoRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconMacroAutoRoundedFilled as default } +export default IconMacroAutoRoundedFilled diff --git a/src/IconMacroAutoSharp.tsx b/src/IconMacroAutoSharp.tsx index d15b3b15b..6f2d58219 100644 --- a/src/IconMacroAutoSharp.tsx +++ b/src/IconMacroAutoSharp.tsx @@ -8,4 +8,4 @@ const IconMacroAutoSharp: React.FC = ({ ...props }) => ( ) -export { IconMacroAutoSharp as default } +export default IconMacroAutoSharp diff --git a/src/IconMacroAutoSharpFilled.tsx b/src/IconMacroAutoSharpFilled.tsx index 533ac19ca..a78cea187 100644 --- a/src/IconMacroAutoSharpFilled.tsx +++ b/src/IconMacroAutoSharpFilled.tsx @@ -8,4 +8,4 @@ const IconMacroAutoSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconMacroAutoSharpFilled as default } +export default IconMacroAutoSharpFilled diff --git a/src/IconMacroOffOutlined.tsx b/src/IconMacroOffOutlined.tsx index ddde8ec19..50105c672 100644 --- a/src/IconMacroOffOutlined.tsx +++ b/src/IconMacroOffOutlined.tsx @@ -8,4 +8,4 @@ const IconMacroOffOutlined: React.FC = ({ ...props }) => ( ) -export { IconMacroOffOutlined as default } +export default IconMacroOffOutlined diff --git a/src/IconMacroOffOutlinedFilled.tsx b/src/IconMacroOffOutlinedFilled.tsx index 505cb5be0..f9ee8fa7f 100644 --- a/src/IconMacroOffOutlinedFilled.tsx +++ b/src/IconMacroOffOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconMacroOffOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconMacroOffOutlinedFilled as default } +export default IconMacroOffOutlinedFilled diff --git a/src/IconMacroOffRounded.tsx b/src/IconMacroOffRounded.tsx index 2c9e55ed2..fa68219b9 100644 --- a/src/IconMacroOffRounded.tsx +++ b/src/IconMacroOffRounded.tsx @@ -8,4 +8,4 @@ const IconMacroOffRounded: React.FC = ({ ...props }) => ( ) -export { IconMacroOffRounded as default } +export default IconMacroOffRounded diff --git a/src/IconMacroOffRoundedFilled.tsx b/src/IconMacroOffRoundedFilled.tsx index 2da795db8..20730480d 100644 --- a/src/IconMacroOffRoundedFilled.tsx +++ b/src/IconMacroOffRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconMacroOffRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconMacroOffRoundedFilled as default } +export default IconMacroOffRoundedFilled diff --git a/src/IconMacroOffSharp.tsx b/src/IconMacroOffSharp.tsx index 2d2bb5b83..bd11c06a5 100644 --- a/src/IconMacroOffSharp.tsx +++ b/src/IconMacroOffSharp.tsx @@ -8,4 +8,4 @@ const IconMacroOffSharp: React.FC = ({ ...props }) => ( ) -export { IconMacroOffSharp as default } +export default IconMacroOffSharp diff --git a/src/IconMacroOffSharpFilled.tsx b/src/IconMacroOffSharpFilled.tsx index 180d1e78c..0f73319b5 100644 --- a/src/IconMacroOffSharpFilled.tsx +++ b/src/IconMacroOffSharpFilled.tsx @@ -8,4 +8,4 @@ const IconMacroOffSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconMacroOffSharpFilled as default } +export default IconMacroOffSharpFilled diff --git a/src/IconMagnificationLargeOutlined.tsx b/src/IconMagnificationLargeOutlined.tsx index c3472a522..e8a5c5385 100644 --- a/src/IconMagnificationLargeOutlined.tsx +++ b/src/IconMagnificationLargeOutlined.tsx @@ -8,4 +8,4 @@ const IconMagnificationLargeOutlined: React.FC = ({ ...props }) => ( ) -export { IconMagnificationLargeOutlined as default } +export default IconMagnificationLargeOutlined diff --git a/src/IconMagnificationLargeOutlinedFilled.tsx b/src/IconMagnificationLargeOutlinedFilled.tsx index ea3ded265..f0f554b21 100644 --- a/src/IconMagnificationLargeOutlinedFilled.tsx +++ b/src/IconMagnificationLargeOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconMagnificationLargeOutlinedFilled: React.FC = ({ ) -export { IconMagnificationLargeOutlinedFilled as default } +export default IconMagnificationLargeOutlinedFilled diff --git a/src/IconMagnificationLargeRounded.tsx b/src/IconMagnificationLargeRounded.tsx index 549eb82b9..c2bd9576c 100644 --- a/src/IconMagnificationLargeRounded.tsx +++ b/src/IconMagnificationLargeRounded.tsx @@ -8,4 +8,4 @@ const IconMagnificationLargeRounded: React.FC = ({ ...props }) => ( ) -export { IconMagnificationLargeRounded as default } +export default IconMagnificationLargeRounded diff --git a/src/IconMagnificationLargeRoundedFilled.tsx b/src/IconMagnificationLargeRoundedFilled.tsx index 361ad52d7..1153f01c3 100644 --- a/src/IconMagnificationLargeRoundedFilled.tsx +++ b/src/IconMagnificationLargeRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconMagnificationLargeRoundedFilled: React.FC = ({ ) -export { IconMagnificationLargeRoundedFilled as default } +export default IconMagnificationLargeRoundedFilled diff --git a/src/IconMagnificationLargeSharp.tsx b/src/IconMagnificationLargeSharp.tsx index d49ba179e..0a037fc45 100644 --- a/src/IconMagnificationLargeSharp.tsx +++ b/src/IconMagnificationLargeSharp.tsx @@ -8,4 +8,4 @@ const IconMagnificationLargeSharp: React.FC = ({ ...props }) => ( ) -export { IconMagnificationLargeSharp as default } +export default IconMagnificationLargeSharp diff --git a/src/IconMagnificationLargeSharpFilled.tsx b/src/IconMagnificationLargeSharpFilled.tsx index 9cece3d2f..62ccac2f7 100644 --- a/src/IconMagnificationLargeSharpFilled.tsx +++ b/src/IconMagnificationLargeSharpFilled.tsx @@ -10,4 +10,4 @@ const IconMagnificationLargeSharpFilled: React.FC = ({ ) -export { IconMagnificationLargeSharpFilled as default } +export default IconMagnificationLargeSharpFilled diff --git a/src/IconMagnificationSmallOutlined.tsx b/src/IconMagnificationSmallOutlined.tsx index 482a631e8..43a2cb395 100644 --- a/src/IconMagnificationSmallOutlined.tsx +++ b/src/IconMagnificationSmallOutlined.tsx @@ -8,4 +8,4 @@ const IconMagnificationSmallOutlined: React.FC = ({ ...props }) => ( ) -export { IconMagnificationSmallOutlined as default } +export default IconMagnificationSmallOutlined diff --git a/src/IconMagnificationSmallOutlinedFilled.tsx b/src/IconMagnificationSmallOutlinedFilled.tsx index b26b9c69a..49c63dda0 100644 --- a/src/IconMagnificationSmallOutlinedFilled.tsx +++ b/src/IconMagnificationSmallOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconMagnificationSmallOutlinedFilled: React.FC = ({ ) -export { IconMagnificationSmallOutlinedFilled as default } +export default IconMagnificationSmallOutlinedFilled diff --git a/src/IconMagnificationSmallRounded.tsx b/src/IconMagnificationSmallRounded.tsx index 6f08b9b16..1323cc29e 100644 --- a/src/IconMagnificationSmallRounded.tsx +++ b/src/IconMagnificationSmallRounded.tsx @@ -8,4 +8,4 @@ const IconMagnificationSmallRounded: React.FC = ({ ...props }) => ( ) -export { IconMagnificationSmallRounded as default } +export default IconMagnificationSmallRounded diff --git a/src/IconMagnificationSmallRoundedFilled.tsx b/src/IconMagnificationSmallRoundedFilled.tsx index 1b2b6effd..ae0498b99 100644 --- a/src/IconMagnificationSmallRoundedFilled.tsx +++ b/src/IconMagnificationSmallRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconMagnificationSmallRoundedFilled: React.FC = ({ ) -export { IconMagnificationSmallRoundedFilled as default } +export default IconMagnificationSmallRoundedFilled diff --git a/src/IconMagnificationSmallSharp.tsx b/src/IconMagnificationSmallSharp.tsx index ed589d3a5..3bdfff67c 100644 --- a/src/IconMagnificationSmallSharp.tsx +++ b/src/IconMagnificationSmallSharp.tsx @@ -8,4 +8,4 @@ const IconMagnificationSmallSharp: React.FC = ({ ...props }) => ( ) -export { IconMagnificationSmallSharp as default } +export default IconMagnificationSmallSharp diff --git a/src/IconMagnificationSmallSharpFilled.tsx b/src/IconMagnificationSmallSharpFilled.tsx index a443563ea..4f1f17acc 100644 --- a/src/IconMagnificationSmallSharpFilled.tsx +++ b/src/IconMagnificationSmallSharpFilled.tsx @@ -10,4 +10,4 @@ const IconMagnificationSmallSharpFilled: React.FC = ({ ) -export { IconMagnificationSmallSharpFilled as default } +export default IconMagnificationSmallSharpFilled diff --git a/src/IconMagnifyDockedOutlined.tsx b/src/IconMagnifyDockedOutlined.tsx index 2b8aa146d..ceaf1c3c1 100644 --- a/src/IconMagnifyDockedOutlined.tsx +++ b/src/IconMagnifyDockedOutlined.tsx @@ -8,4 +8,4 @@ const IconMagnifyDockedOutlined: React.FC = ({ ...props }) => ( ) -export { IconMagnifyDockedOutlined as default } +export default IconMagnifyDockedOutlined diff --git a/src/IconMagnifyDockedOutlinedFilled.tsx b/src/IconMagnifyDockedOutlinedFilled.tsx index 7ed305c28..01aa4e18b 100644 --- a/src/IconMagnifyDockedOutlinedFilled.tsx +++ b/src/IconMagnifyDockedOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconMagnifyDockedOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconMagnifyDockedOutlinedFilled as default } +export default IconMagnifyDockedOutlinedFilled diff --git a/src/IconMagnifyDockedRounded.tsx b/src/IconMagnifyDockedRounded.tsx index 2a6301618..3f791c65f 100644 --- a/src/IconMagnifyDockedRounded.tsx +++ b/src/IconMagnifyDockedRounded.tsx @@ -8,4 +8,4 @@ const IconMagnifyDockedRounded: React.FC = ({ ...props }) => ( ) -export { IconMagnifyDockedRounded as default } +export default IconMagnifyDockedRounded diff --git a/src/IconMagnifyDockedRoundedFilled.tsx b/src/IconMagnifyDockedRoundedFilled.tsx index 19a91e288..cb4650303 100644 --- a/src/IconMagnifyDockedRoundedFilled.tsx +++ b/src/IconMagnifyDockedRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconMagnifyDockedRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconMagnifyDockedRoundedFilled as default } +export default IconMagnifyDockedRoundedFilled diff --git a/src/IconMagnifyDockedSharp.tsx b/src/IconMagnifyDockedSharp.tsx index dbb76e3b9..b7cd764bf 100644 --- a/src/IconMagnifyDockedSharp.tsx +++ b/src/IconMagnifyDockedSharp.tsx @@ -8,4 +8,4 @@ const IconMagnifyDockedSharp: React.FC = ({ ...props }) => ( ) -export { IconMagnifyDockedSharp as default } +export default IconMagnifyDockedSharp diff --git a/src/IconMagnifyDockedSharpFilled.tsx b/src/IconMagnifyDockedSharpFilled.tsx index a6d9a9808..47590bf8a 100644 --- a/src/IconMagnifyDockedSharpFilled.tsx +++ b/src/IconMagnifyDockedSharpFilled.tsx @@ -8,4 +8,4 @@ const IconMagnifyDockedSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconMagnifyDockedSharpFilled as default } +export default IconMagnifyDockedSharpFilled diff --git a/src/IconMagnifyFullscreenOutlined.tsx b/src/IconMagnifyFullscreenOutlined.tsx index 2f1cf13d0..036495ad3 100644 --- a/src/IconMagnifyFullscreenOutlined.tsx +++ b/src/IconMagnifyFullscreenOutlined.tsx @@ -8,4 +8,4 @@ const IconMagnifyFullscreenOutlined: React.FC = ({ ...props }) => ( ) -export { IconMagnifyFullscreenOutlined as default } +export default IconMagnifyFullscreenOutlined diff --git a/src/IconMagnifyFullscreenOutlinedFilled.tsx b/src/IconMagnifyFullscreenOutlinedFilled.tsx index 6b6e44d37..2b24947a9 100644 --- a/src/IconMagnifyFullscreenOutlinedFilled.tsx +++ b/src/IconMagnifyFullscreenOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconMagnifyFullscreenOutlinedFilled: React.FC = ({ ) -export { IconMagnifyFullscreenOutlinedFilled as default } +export default IconMagnifyFullscreenOutlinedFilled diff --git a/src/IconMagnifyFullscreenRounded.tsx b/src/IconMagnifyFullscreenRounded.tsx index db63ee398..263006adc 100644 --- a/src/IconMagnifyFullscreenRounded.tsx +++ b/src/IconMagnifyFullscreenRounded.tsx @@ -8,4 +8,4 @@ const IconMagnifyFullscreenRounded: React.FC = ({ ...props }) => ( ) -export { IconMagnifyFullscreenRounded as default } +export default IconMagnifyFullscreenRounded diff --git a/src/IconMagnifyFullscreenRoundedFilled.tsx b/src/IconMagnifyFullscreenRoundedFilled.tsx index c1b37e752..76b1b6c1d 100644 --- a/src/IconMagnifyFullscreenRoundedFilled.tsx +++ b/src/IconMagnifyFullscreenRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconMagnifyFullscreenRoundedFilled: React.FC = ({ ) -export { IconMagnifyFullscreenRoundedFilled as default } +export default IconMagnifyFullscreenRoundedFilled diff --git a/src/IconMagnifyFullscreenSharp.tsx b/src/IconMagnifyFullscreenSharp.tsx index 2cbf8efd9..126a9658c 100644 --- a/src/IconMagnifyFullscreenSharp.tsx +++ b/src/IconMagnifyFullscreenSharp.tsx @@ -8,4 +8,4 @@ const IconMagnifyFullscreenSharp: React.FC = ({ ...props }) => ( ) -export { IconMagnifyFullscreenSharp as default } +export default IconMagnifyFullscreenSharp diff --git a/src/IconMagnifyFullscreenSharpFilled.tsx b/src/IconMagnifyFullscreenSharpFilled.tsx index 17740babe..5214bc681 100644 --- a/src/IconMagnifyFullscreenSharpFilled.tsx +++ b/src/IconMagnifyFullscreenSharpFilled.tsx @@ -10,4 +10,4 @@ const IconMagnifyFullscreenSharpFilled: React.FC = ({ ) -export { IconMagnifyFullscreenSharpFilled as default } +export default IconMagnifyFullscreenSharpFilled diff --git a/src/IconMailLockOutlined.tsx b/src/IconMailLockOutlined.tsx index c41d3a9e5..e23e0ca70 100644 --- a/src/IconMailLockOutlined.tsx +++ b/src/IconMailLockOutlined.tsx @@ -8,4 +8,4 @@ const IconMailLockOutlined: React.FC = ({ ...props }) => ( ) -export { IconMailLockOutlined as default } +export default IconMailLockOutlined diff --git a/src/IconMailLockOutlinedFilled.tsx b/src/IconMailLockOutlinedFilled.tsx index 999fbade7..e4cef0187 100644 --- a/src/IconMailLockOutlinedFilled.tsx +++ b/src/IconMailLockOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconMailLockOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconMailLockOutlinedFilled as default } +export default IconMailLockOutlinedFilled diff --git a/src/IconMailLockRounded.tsx b/src/IconMailLockRounded.tsx index 5f9d39811..d65229e1a 100644 --- a/src/IconMailLockRounded.tsx +++ b/src/IconMailLockRounded.tsx @@ -8,4 +8,4 @@ const IconMailLockRounded: React.FC = ({ ...props }) => ( ) -export { IconMailLockRounded as default } +export default IconMailLockRounded diff --git a/src/IconMailLockRoundedFilled.tsx b/src/IconMailLockRoundedFilled.tsx index 32d9451dd..af39bad2a 100644 --- a/src/IconMailLockRoundedFilled.tsx +++ b/src/IconMailLockRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconMailLockRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconMailLockRoundedFilled as default } +export default IconMailLockRoundedFilled diff --git a/src/IconMailLockSharp.tsx b/src/IconMailLockSharp.tsx index 8f3047a73..c1369aa98 100644 --- a/src/IconMailLockSharp.tsx +++ b/src/IconMailLockSharp.tsx @@ -8,4 +8,4 @@ const IconMailLockSharp: React.FC = ({ ...props }) => ( ) -export { IconMailLockSharp as default } +export default IconMailLockSharp diff --git a/src/IconMailLockSharpFilled.tsx b/src/IconMailLockSharpFilled.tsx index 3a858ad9f..20e145fd8 100644 --- a/src/IconMailLockSharpFilled.tsx +++ b/src/IconMailLockSharpFilled.tsx @@ -8,4 +8,4 @@ const IconMailLockSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconMailLockSharpFilled as default } +export default IconMailLockSharpFilled diff --git a/src/IconMailOffOutlined.tsx b/src/IconMailOffOutlined.tsx index 8f1b8c11d..bd72b97f9 100644 --- a/src/IconMailOffOutlined.tsx +++ b/src/IconMailOffOutlined.tsx @@ -8,4 +8,4 @@ const IconMailOffOutlined: React.FC = ({ ...props }) => ( ) -export { IconMailOffOutlined as default } +export default IconMailOffOutlined diff --git a/src/IconMailOffOutlinedFilled.tsx b/src/IconMailOffOutlinedFilled.tsx index 45dde4862..3fcfb59c4 100644 --- a/src/IconMailOffOutlinedFilled.tsx +++ b/src/IconMailOffOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconMailOffOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconMailOffOutlinedFilled as default } +export default IconMailOffOutlinedFilled diff --git a/src/IconMailOffRounded.tsx b/src/IconMailOffRounded.tsx index 629ada576..7c6fad3b1 100644 --- a/src/IconMailOffRounded.tsx +++ b/src/IconMailOffRounded.tsx @@ -8,4 +8,4 @@ const IconMailOffRounded: React.FC = ({ ...props }) => ( ) -export { IconMailOffRounded as default } +export default IconMailOffRounded diff --git a/src/IconMailOffRoundedFilled.tsx b/src/IconMailOffRoundedFilled.tsx index 7efadf5a4..beea67f3c 100644 --- a/src/IconMailOffRoundedFilled.tsx +++ b/src/IconMailOffRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconMailOffRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconMailOffRoundedFilled as default } +export default IconMailOffRoundedFilled diff --git a/src/IconMailOffSharp.tsx b/src/IconMailOffSharp.tsx index 1b9456c5c..1d78be100 100644 --- a/src/IconMailOffSharp.tsx +++ b/src/IconMailOffSharp.tsx @@ -8,4 +8,4 @@ const IconMailOffSharp: React.FC = ({ ...props }) => ( ) -export { IconMailOffSharp as default } +export default IconMailOffSharp diff --git a/src/IconMailOffSharpFilled.tsx b/src/IconMailOffSharpFilled.tsx index 290cf1297..3c8b67154 100644 --- a/src/IconMailOffSharpFilled.tsx +++ b/src/IconMailOffSharpFilled.tsx @@ -8,4 +8,4 @@ const IconMailOffSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconMailOffSharpFilled as default } +export default IconMailOffSharpFilled diff --git a/src/IconMailOutlined.tsx b/src/IconMailOutlined.tsx index 1db0ce2df..6e05b745d 100644 --- a/src/IconMailOutlined.tsx +++ b/src/IconMailOutlined.tsx @@ -8,4 +8,4 @@ const IconMailOutlined: React.FC = ({ ...props }) => ( ) -export { IconMailOutlined as default } +export default IconMailOutlined diff --git a/src/IconMailOutlinedFilled.tsx b/src/IconMailOutlinedFilled.tsx index 97afcf6e2..b72db7aa0 100644 --- a/src/IconMailOutlinedFilled.tsx +++ b/src/IconMailOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconMailOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconMailOutlinedFilled as default } +export default IconMailOutlinedFilled diff --git a/src/IconMailRounded.tsx b/src/IconMailRounded.tsx index 70f7c77c9..510b74bbe 100644 --- a/src/IconMailRounded.tsx +++ b/src/IconMailRounded.tsx @@ -8,4 +8,4 @@ const IconMailRounded: React.FC = ({ ...props }) => ( ) -export { IconMailRounded as default } +export default IconMailRounded diff --git a/src/IconMailRoundedFilled.tsx b/src/IconMailRoundedFilled.tsx index fdfcba9df..80f3cca50 100644 --- a/src/IconMailRoundedFilled.tsx +++ b/src/IconMailRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconMailRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconMailRoundedFilled as default } +export default IconMailRoundedFilled diff --git a/src/IconMailSharp.tsx b/src/IconMailSharp.tsx index 7e2d3ca5a..8b7b36639 100644 --- a/src/IconMailSharp.tsx +++ b/src/IconMailSharp.tsx @@ -8,4 +8,4 @@ const IconMailSharp: React.FC = ({ ...props }) => ( ) -export { IconMailSharp as default } +export default IconMailSharp diff --git a/src/IconMailSharpFilled.tsx b/src/IconMailSharpFilled.tsx index 49a38965a..e04f2185c 100644 --- a/src/IconMailSharpFilled.tsx +++ b/src/IconMailSharpFilled.tsx @@ -8,4 +8,4 @@ const IconMailSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconMailSharpFilled as default } +export default IconMailSharpFilled diff --git a/src/IconMaleOutlined.tsx b/src/IconMaleOutlined.tsx index 30cd90d9d..6e4794b68 100644 --- a/src/IconMaleOutlined.tsx +++ b/src/IconMaleOutlined.tsx @@ -8,4 +8,4 @@ const IconMaleOutlined: React.FC = ({ ...props }) => ( ) -export { IconMaleOutlined as default } +export default IconMaleOutlined diff --git a/src/IconMaleOutlinedFilled.tsx b/src/IconMaleOutlinedFilled.tsx index a2f79af5e..cd95b5860 100644 --- a/src/IconMaleOutlinedFilled.tsx +++ b/src/IconMaleOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconMaleOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconMaleOutlinedFilled as default } +export default IconMaleOutlinedFilled diff --git a/src/IconMaleRounded.tsx b/src/IconMaleRounded.tsx index a76d1423a..00bcadbe3 100644 --- a/src/IconMaleRounded.tsx +++ b/src/IconMaleRounded.tsx @@ -8,4 +8,4 @@ const IconMaleRounded: React.FC = ({ ...props }) => ( ) -export { IconMaleRounded as default } +export default IconMaleRounded diff --git a/src/IconMaleRoundedFilled.tsx b/src/IconMaleRoundedFilled.tsx index 8926c732a..cc77302ce 100644 --- a/src/IconMaleRoundedFilled.tsx +++ b/src/IconMaleRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconMaleRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconMaleRoundedFilled as default } +export default IconMaleRoundedFilled diff --git a/src/IconMaleSharp.tsx b/src/IconMaleSharp.tsx index fd3e600f2..de170b00a 100644 --- a/src/IconMaleSharp.tsx +++ b/src/IconMaleSharp.tsx @@ -8,4 +8,4 @@ const IconMaleSharp: React.FC = ({ ...props }) => ( ) -export { IconMaleSharp as default } +export default IconMaleSharp diff --git a/src/IconMaleSharpFilled.tsx b/src/IconMaleSharpFilled.tsx index a7c1a64ae..713058dad 100644 --- a/src/IconMaleSharpFilled.tsx +++ b/src/IconMaleSharpFilled.tsx @@ -8,4 +8,4 @@ const IconMaleSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconMaleSharpFilled as default } +export default IconMaleSharpFilled diff --git a/src/IconMan2Outlined.tsx b/src/IconMan2Outlined.tsx index 52d24b602..63636fc9b 100644 --- a/src/IconMan2Outlined.tsx +++ b/src/IconMan2Outlined.tsx @@ -8,4 +8,4 @@ const IconMan2Outlined: React.FC = ({ ...props }) => ( ) -export { IconMan2Outlined as default } +export default IconMan2Outlined diff --git a/src/IconMan2OutlinedFilled.tsx b/src/IconMan2OutlinedFilled.tsx index cab83cadb..bef2f9383 100644 --- a/src/IconMan2OutlinedFilled.tsx +++ b/src/IconMan2OutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconMan2OutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconMan2OutlinedFilled as default } +export default IconMan2OutlinedFilled diff --git a/src/IconMan2Rounded.tsx b/src/IconMan2Rounded.tsx index 2c10c6497..6dba9a685 100644 --- a/src/IconMan2Rounded.tsx +++ b/src/IconMan2Rounded.tsx @@ -8,4 +8,4 @@ const IconMan2Rounded: React.FC = ({ ...props }) => ( ) -export { IconMan2Rounded as default } +export default IconMan2Rounded diff --git a/src/IconMan2RoundedFilled.tsx b/src/IconMan2RoundedFilled.tsx index 02b96532d..bfac5f127 100644 --- a/src/IconMan2RoundedFilled.tsx +++ b/src/IconMan2RoundedFilled.tsx @@ -8,4 +8,4 @@ const IconMan2RoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconMan2RoundedFilled as default } +export default IconMan2RoundedFilled diff --git a/src/IconMan2Sharp.tsx b/src/IconMan2Sharp.tsx index caca77f3d..952ea935c 100644 --- a/src/IconMan2Sharp.tsx +++ b/src/IconMan2Sharp.tsx @@ -8,4 +8,4 @@ const IconMan2Sharp: React.FC = ({ ...props }) => ( ) -export { IconMan2Sharp as default } +export default IconMan2Sharp diff --git a/src/IconMan2SharpFilled.tsx b/src/IconMan2SharpFilled.tsx index 6686dacf0..454721f53 100644 --- a/src/IconMan2SharpFilled.tsx +++ b/src/IconMan2SharpFilled.tsx @@ -8,4 +8,4 @@ const IconMan2SharpFilled: React.FC = ({ ...props }) => ( ) -export { IconMan2SharpFilled as default } +export default IconMan2SharpFilled diff --git a/src/IconMan3Outlined.tsx b/src/IconMan3Outlined.tsx index a1b32b49a..f93b66be7 100644 --- a/src/IconMan3Outlined.tsx +++ b/src/IconMan3Outlined.tsx @@ -8,4 +8,4 @@ const IconMan3Outlined: React.FC = ({ ...props }) => ( ) -export { IconMan3Outlined as default } +export default IconMan3Outlined diff --git a/src/IconMan3OutlinedFilled.tsx b/src/IconMan3OutlinedFilled.tsx index d77f142f1..ce7a42ced 100644 --- a/src/IconMan3OutlinedFilled.tsx +++ b/src/IconMan3OutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconMan3OutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconMan3OutlinedFilled as default } +export default IconMan3OutlinedFilled diff --git a/src/IconMan3Rounded.tsx b/src/IconMan3Rounded.tsx index cc66c4026..05d2ec13b 100644 --- a/src/IconMan3Rounded.tsx +++ b/src/IconMan3Rounded.tsx @@ -8,4 +8,4 @@ const IconMan3Rounded: React.FC = ({ ...props }) => ( ) -export { IconMan3Rounded as default } +export default IconMan3Rounded diff --git a/src/IconMan3RoundedFilled.tsx b/src/IconMan3RoundedFilled.tsx index 58f8a3d31..75668f968 100644 --- a/src/IconMan3RoundedFilled.tsx +++ b/src/IconMan3RoundedFilled.tsx @@ -8,4 +8,4 @@ const IconMan3RoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconMan3RoundedFilled as default } +export default IconMan3RoundedFilled diff --git a/src/IconMan3Sharp.tsx b/src/IconMan3Sharp.tsx index a5826718f..476ddd4ab 100644 --- a/src/IconMan3Sharp.tsx +++ b/src/IconMan3Sharp.tsx @@ -8,4 +8,4 @@ const IconMan3Sharp: React.FC = ({ ...props }) => ( ) -export { IconMan3Sharp as default } +export default IconMan3Sharp diff --git a/src/IconMan3SharpFilled.tsx b/src/IconMan3SharpFilled.tsx index 78a37716a..029c5ede8 100644 --- a/src/IconMan3SharpFilled.tsx +++ b/src/IconMan3SharpFilled.tsx @@ -8,4 +8,4 @@ const IconMan3SharpFilled: React.FC = ({ ...props }) => ( ) -export { IconMan3SharpFilled as default } +export default IconMan3SharpFilled diff --git a/src/IconMan4Outlined.tsx b/src/IconMan4Outlined.tsx index ac1bcf499..d5b543bf3 100644 --- a/src/IconMan4Outlined.tsx +++ b/src/IconMan4Outlined.tsx @@ -8,4 +8,4 @@ const IconMan4Outlined: React.FC = ({ ...props }) => ( ) -export { IconMan4Outlined as default } +export default IconMan4Outlined diff --git a/src/IconMan4OutlinedFilled.tsx b/src/IconMan4OutlinedFilled.tsx index 353ee9116..5ba1068cb 100644 --- a/src/IconMan4OutlinedFilled.tsx +++ b/src/IconMan4OutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconMan4OutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconMan4OutlinedFilled as default } +export default IconMan4OutlinedFilled diff --git a/src/IconMan4Rounded.tsx b/src/IconMan4Rounded.tsx index fb36e8366..e32a1ad82 100644 --- a/src/IconMan4Rounded.tsx +++ b/src/IconMan4Rounded.tsx @@ -8,4 +8,4 @@ const IconMan4Rounded: React.FC = ({ ...props }) => ( ) -export { IconMan4Rounded as default } +export default IconMan4Rounded diff --git a/src/IconMan4RoundedFilled.tsx b/src/IconMan4RoundedFilled.tsx index 31ea08ade..92642e6f7 100644 --- a/src/IconMan4RoundedFilled.tsx +++ b/src/IconMan4RoundedFilled.tsx @@ -8,4 +8,4 @@ const IconMan4RoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconMan4RoundedFilled as default } +export default IconMan4RoundedFilled diff --git a/src/IconMan4Sharp.tsx b/src/IconMan4Sharp.tsx index 94493a4c7..1c4fd9781 100644 --- a/src/IconMan4Sharp.tsx +++ b/src/IconMan4Sharp.tsx @@ -8,4 +8,4 @@ const IconMan4Sharp: React.FC = ({ ...props }) => ( ) -export { IconMan4Sharp as default } +export default IconMan4Sharp diff --git a/src/IconMan4SharpFilled.tsx b/src/IconMan4SharpFilled.tsx index d7b6648fe..52bfaff34 100644 --- a/src/IconMan4SharpFilled.tsx +++ b/src/IconMan4SharpFilled.tsx @@ -8,4 +8,4 @@ const IconMan4SharpFilled: React.FC = ({ ...props }) => ( ) -export { IconMan4SharpFilled as default } +export default IconMan4SharpFilled diff --git a/src/IconManOutlined.tsx b/src/IconManOutlined.tsx index 79efafb14..2596c6f99 100644 --- a/src/IconManOutlined.tsx +++ b/src/IconManOutlined.tsx @@ -8,4 +8,4 @@ const IconManOutlined: React.FC = ({ ...props }) => ( ) -export { IconManOutlined as default } +export default IconManOutlined diff --git a/src/IconManOutlinedFilled.tsx b/src/IconManOutlinedFilled.tsx index aff248bdd..a21e4ffb6 100644 --- a/src/IconManOutlinedFilled.tsx +++ b/src/IconManOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconManOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconManOutlinedFilled as default } +export default IconManOutlinedFilled diff --git a/src/IconManRounded.tsx b/src/IconManRounded.tsx index 8ebc40c9f..b06c10d6e 100644 --- a/src/IconManRounded.tsx +++ b/src/IconManRounded.tsx @@ -8,4 +8,4 @@ const IconManRounded: React.FC = ({ ...props }) => ( ) -export { IconManRounded as default } +export default IconManRounded diff --git a/src/IconManRoundedFilled.tsx b/src/IconManRoundedFilled.tsx index acbe02866..71481f238 100644 --- a/src/IconManRoundedFilled.tsx +++ b/src/IconManRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconManRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconManRoundedFilled as default } +export default IconManRoundedFilled diff --git a/src/IconManSharp.tsx b/src/IconManSharp.tsx index 7e3b2b81e..e61b0a65a 100644 --- a/src/IconManSharp.tsx +++ b/src/IconManSharp.tsx @@ -8,4 +8,4 @@ const IconManSharp: React.FC = ({ ...props }) => ( ) -export { IconManSharp as default } +export default IconManSharp diff --git a/src/IconManSharpFilled.tsx b/src/IconManSharpFilled.tsx index f0dbc44e0..45f891d9f 100644 --- a/src/IconManSharpFilled.tsx +++ b/src/IconManSharpFilled.tsx @@ -8,4 +8,4 @@ const IconManSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconManSharpFilled as default } +export default IconManSharpFilled diff --git a/src/IconManageAccountsOutlined.tsx b/src/IconManageAccountsOutlined.tsx index 9ccda09fb..9f0ab2afb 100644 --- a/src/IconManageAccountsOutlined.tsx +++ b/src/IconManageAccountsOutlined.tsx @@ -8,4 +8,4 @@ const IconManageAccountsOutlined: React.FC = ({ ...props }) => ( ) -export { IconManageAccountsOutlined as default } +export default IconManageAccountsOutlined diff --git a/src/IconManageAccountsOutlinedFilled.tsx b/src/IconManageAccountsOutlinedFilled.tsx index b955fe4d6..d652185e2 100644 --- a/src/IconManageAccountsOutlinedFilled.tsx +++ b/src/IconManageAccountsOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconManageAccountsOutlinedFilled: React.FC = ({ ) -export { IconManageAccountsOutlinedFilled as default } +export default IconManageAccountsOutlinedFilled diff --git a/src/IconManageAccountsRounded.tsx b/src/IconManageAccountsRounded.tsx index b2d361e9b..8283c29a3 100644 --- a/src/IconManageAccountsRounded.tsx +++ b/src/IconManageAccountsRounded.tsx @@ -8,4 +8,4 @@ const IconManageAccountsRounded: React.FC = ({ ...props }) => ( ) -export { IconManageAccountsRounded as default } +export default IconManageAccountsRounded diff --git a/src/IconManageAccountsRoundedFilled.tsx b/src/IconManageAccountsRoundedFilled.tsx index 60e945365..930702e4f 100644 --- a/src/IconManageAccountsRoundedFilled.tsx +++ b/src/IconManageAccountsRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconManageAccountsRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconManageAccountsRoundedFilled as default } +export default IconManageAccountsRoundedFilled diff --git a/src/IconManageAccountsSharp.tsx b/src/IconManageAccountsSharp.tsx index dc94b3a50..6aa6643f7 100644 --- a/src/IconManageAccountsSharp.tsx +++ b/src/IconManageAccountsSharp.tsx @@ -8,4 +8,4 @@ const IconManageAccountsSharp: React.FC = ({ ...props }) => ( ) -export { IconManageAccountsSharp as default } +export default IconManageAccountsSharp diff --git a/src/IconManageAccountsSharpFilled.tsx b/src/IconManageAccountsSharpFilled.tsx index 4e64ea3d9..2f292315d 100644 --- a/src/IconManageAccountsSharpFilled.tsx +++ b/src/IconManageAccountsSharpFilled.tsx @@ -8,4 +8,4 @@ const IconManageAccountsSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconManageAccountsSharpFilled as default } +export default IconManageAccountsSharpFilled diff --git a/src/IconManageHistoryOutlined.tsx b/src/IconManageHistoryOutlined.tsx index 445c7b1d1..89a5140d6 100644 --- a/src/IconManageHistoryOutlined.tsx +++ b/src/IconManageHistoryOutlined.tsx @@ -8,4 +8,4 @@ const IconManageHistoryOutlined: React.FC = ({ ...props }) => ( ) -export { IconManageHistoryOutlined as default } +export default IconManageHistoryOutlined diff --git a/src/IconManageHistoryOutlinedFilled.tsx b/src/IconManageHistoryOutlinedFilled.tsx index 7f8c499d4..feb32f94b 100644 --- a/src/IconManageHistoryOutlinedFilled.tsx +++ b/src/IconManageHistoryOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconManageHistoryOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconManageHistoryOutlinedFilled as default } +export default IconManageHistoryOutlinedFilled diff --git a/src/IconManageHistoryRounded.tsx b/src/IconManageHistoryRounded.tsx index baca28533..9205acdee 100644 --- a/src/IconManageHistoryRounded.tsx +++ b/src/IconManageHistoryRounded.tsx @@ -8,4 +8,4 @@ const IconManageHistoryRounded: React.FC = ({ ...props }) => ( ) -export { IconManageHistoryRounded as default } +export default IconManageHistoryRounded diff --git a/src/IconManageHistoryRoundedFilled.tsx b/src/IconManageHistoryRoundedFilled.tsx index 397c72ed4..191bd6ff7 100644 --- a/src/IconManageHistoryRoundedFilled.tsx +++ b/src/IconManageHistoryRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconManageHistoryRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconManageHistoryRoundedFilled as default } +export default IconManageHistoryRoundedFilled diff --git a/src/IconManageHistorySharp.tsx b/src/IconManageHistorySharp.tsx index 0f083f3f6..64dd3681a 100644 --- a/src/IconManageHistorySharp.tsx +++ b/src/IconManageHistorySharp.tsx @@ -8,4 +8,4 @@ const IconManageHistorySharp: React.FC = ({ ...props }) => ( ) -export { IconManageHistorySharp as default } +export default IconManageHistorySharp diff --git a/src/IconManageHistorySharpFilled.tsx b/src/IconManageHistorySharpFilled.tsx index 2c7c3320d..136c404bf 100644 --- a/src/IconManageHistorySharpFilled.tsx +++ b/src/IconManageHistorySharpFilled.tsx @@ -8,4 +8,4 @@ const IconManageHistorySharpFilled: React.FC = ({ ...props }) => ( ) -export { IconManageHistorySharpFilled as default } +export default IconManageHistorySharpFilled diff --git a/src/IconManageSearchOutlined.tsx b/src/IconManageSearchOutlined.tsx index d09e4e93f..182121a51 100644 --- a/src/IconManageSearchOutlined.tsx +++ b/src/IconManageSearchOutlined.tsx @@ -8,4 +8,4 @@ const IconManageSearchOutlined: React.FC = ({ ...props }) => ( ) -export { IconManageSearchOutlined as default } +export default IconManageSearchOutlined diff --git a/src/IconManageSearchOutlinedFilled.tsx b/src/IconManageSearchOutlinedFilled.tsx index 5cc20be8e..aa11eee62 100644 --- a/src/IconManageSearchOutlinedFilled.tsx +++ b/src/IconManageSearchOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconManageSearchOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconManageSearchOutlinedFilled as default } +export default IconManageSearchOutlinedFilled diff --git a/src/IconManageSearchRounded.tsx b/src/IconManageSearchRounded.tsx index 2ab388308..9fbff5aef 100644 --- a/src/IconManageSearchRounded.tsx +++ b/src/IconManageSearchRounded.tsx @@ -8,4 +8,4 @@ const IconManageSearchRounded: React.FC = ({ ...props }) => ( ) -export { IconManageSearchRounded as default } +export default IconManageSearchRounded diff --git a/src/IconManageSearchRoundedFilled.tsx b/src/IconManageSearchRoundedFilled.tsx index 5c76b3151..6193e30e4 100644 --- a/src/IconManageSearchRoundedFilled.tsx +++ b/src/IconManageSearchRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconManageSearchRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconManageSearchRoundedFilled as default } +export default IconManageSearchRoundedFilled diff --git a/src/IconManageSearchSharp.tsx b/src/IconManageSearchSharp.tsx index 5da10ad95..d8467126f 100644 --- a/src/IconManageSearchSharp.tsx +++ b/src/IconManageSearchSharp.tsx @@ -8,4 +8,4 @@ const IconManageSearchSharp: React.FC = ({ ...props }) => ( ) -export { IconManageSearchSharp as default } +export default IconManageSearchSharp diff --git a/src/IconManageSearchSharpFilled.tsx b/src/IconManageSearchSharpFilled.tsx index 960eb0520..f8cc39174 100644 --- a/src/IconManageSearchSharpFilled.tsx +++ b/src/IconManageSearchSharpFilled.tsx @@ -8,4 +8,4 @@ const IconManageSearchSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconManageSearchSharpFilled as default } +export default IconManageSearchSharpFilled diff --git a/src/IconMangaOutlined.tsx b/src/IconMangaOutlined.tsx index f1efb693f..936040fe3 100644 --- a/src/IconMangaOutlined.tsx +++ b/src/IconMangaOutlined.tsx @@ -8,4 +8,4 @@ const IconMangaOutlined: React.FC = ({ ...props }) => ( ) -export { IconMangaOutlined as default } +export default IconMangaOutlined diff --git a/src/IconMangaOutlinedFilled.tsx b/src/IconMangaOutlinedFilled.tsx index 020f4e75c..dde5ccaae 100644 --- a/src/IconMangaOutlinedFilled.tsx +++ b/src/IconMangaOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconMangaOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconMangaOutlinedFilled as default } +export default IconMangaOutlinedFilled diff --git a/src/IconMangaRounded.tsx b/src/IconMangaRounded.tsx index b9de99ab5..fcf98e03c 100644 --- a/src/IconMangaRounded.tsx +++ b/src/IconMangaRounded.tsx @@ -8,4 +8,4 @@ const IconMangaRounded: React.FC = ({ ...props }) => ( ) -export { IconMangaRounded as default } +export default IconMangaRounded diff --git a/src/IconMangaRoundedFilled.tsx b/src/IconMangaRoundedFilled.tsx index 0acc8b313..0b0ace50c 100644 --- a/src/IconMangaRoundedFilled.tsx +++ b/src/IconMangaRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconMangaRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconMangaRoundedFilled as default } +export default IconMangaRoundedFilled diff --git a/src/IconMangaSharp.tsx b/src/IconMangaSharp.tsx index 7cb334037..4fda6e36e 100644 --- a/src/IconMangaSharp.tsx +++ b/src/IconMangaSharp.tsx @@ -8,4 +8,4 @@ const IconMangaSharp: React.FC = ({ ...props }) => ( ) -export { IconMangaSharp as default } +export default IconMangaSharp diff --git a/src/IconMangaSharpFilled.tsx b/src/IconMangaSharpFilled.tsx index 83a7aed86..90b7c1178 100644 --- a/src/IconMangaSharpFilled.tsx +++ b/src/IconMangaSharpFilled.tsx @@ -8,4 +8,4 @@ const IconMangaSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconMangaSharpFilled as default } +export default IconMangaSharpFilled diff --git a/src/IconManufacturingOutlined.tsx b/src/IconManufacturingOutlined.tsx index f184a8f2d..e00275d3e 100644 --- a/src/IconManufacturingOutlined.tsx +++ b/src/IconManufacturingOutlined.tsx @@ -8,4 +8,4 @@ const IconManufacturingOutlined: React.FC = ({ ...props }) => ( ) -export { IconManufacturingOutlined as default } +export default IconManufacturingOutlined diff --git a/src/IconManufacturingOutlinedFilled.tsx b/src/IconManufacturingOutlinedFilled.tsx index 3adc54d92..1afb52c57 100644 --- a/src/IconManufacturingOutlinedFilled.tsx +++ b/src/IconManufacturingOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconManufacturingOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconManufacturingOutlinedFilled as default } +export default IconManufacturingOutlinedFilled diff --git a/src/IconManufacturingRounded.tsx b/src/IconManufacturingRounded.tsx index fc91544c6..17bb312f4 100644 --- a/src/IconManufacturingRounded.tsx +++ b/src/IconManufacturingRounded.tsx @@ -8,4 +8,4 @@ const IconManufacturingRounded: React.FC = ({ ...props }) => ( ) -export { IconManufacturingRounded as default } +export default IconManufacturingRounded diff --git a/src/IconManufacturingRoundedFilled.tsx b/src/IconManufacturingRoundedFilled.tsx index 9f99ec398..ac8b2164e 100644 --- a/src/IconManufacturingRoundedFilled.tsx +++ b/src/IconManufacturingRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconManufacturingRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconManufacturingRoundedFilled as default } +export default IconManufacturingRoundedFilled diff --git a/src/IconManufacturingSharp.tsx b/src/IconManufacturingSharp.tsx index 23879a018..37f65522d 100644 --- a/src/IconManufacturingSharp.tsx +++ b/src/IconManufacturingSharp.tsx @@ -8,4 +8,4 @@ const IconManufacturingSharp: React.FC = ({ ...props }) => ( ) -export { IconManufacturingSharp as default } +export default IconManufacturingSharp diff --git a/src/IconManufacturingSharpFilled.tsx b/src/IconManufacturingSharpFilled.tsx index d246eb12f..7c59463e1 100644 --- a/src/IconManufacturingSharpFilled.tsx +++ b/src/IconManufacturingSharpFilled.tsx @@ -8,4 +8,4 @@ const IconManufacturingSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconManufacturingSharpFilled as default } +export default IconManufacturingSharpFilled diff --git a/src/IconMapOutlined.tsx b/src/IconMapOutlined.tsx index 81d430c77..e67890de1 100644 --- a/src/IconMapOutlined.tsx +++ b/src/IconMapOutlined.tsx @@ -8,4 +8,4 @@ const IconMapOutlined: React.FC = ({ ...props }) => ( ) -export { IconMapOutlined as default } +export default IconMapOutlined diff --git a/src/IconMapOutlinedFilled.tsx b/src/IconMapOutlinedFilled.tsx index 2daa61215..e573b7f23 100644 --- a/src/IconMapOutlinedFilled.tsx +++ b/src/IconMapOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconMapOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconMapOutlinedFilled as default } +export default IconMapOutlinedFilled diff --git a/src/IconMapRounded.tsx b/src/IconMapRounded.tsx index 465bcc228..668dfde1f 100644 --- a/src/IconMapRounded.tsx +++ b/src/IconMapRounded.tsx @@ -8,4 +8,4 @@ const IconMapRounded: React.FC = ({ ...props }) => ( ) -export { IconMapRounded as default } +export default IconMapRounded diff --git a/src/IconMapRoundedFilled.tsx b/src/IconMapRoundedFilled.tsx index 8be78ad41..4ed5b0648 100644 --- a/src/IconMapRoundedFilled.tsx +++ b/src/IconMapRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconMapRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconMapRoundedFilled as default } +export default IconMapRoundedFilled diff --git a/src/IconMapSharp.tsx b/src/IconMapSharp.tsx index 81942ff27..297e93fad 100644 --- a/src/IconMapSharp.tsx +++ b/src/IconMapSharp.tsx @@ -8,4 +8,4 @@ const IconMapSharp: React.FC = ({ ...props }) => ( ) -export { IconMapSharp as default } +export default IconMapSharp diff --git a/src/IconMapSharpFilled.tsx b/src/IconMapSharpFilled.tsx index 6b5c6b9bc..def9fe5c7 100644 --- a/src/IconMapSharpFilled.tsx +++ b/src/IconMapSharpFilled.tsx @@ -8,4 +8,4 @@ const IconMapSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconMapSharpFilled as default } +export default IconMapSharpFilled diff --git a/src/IconMapsUgcOutlined.tsx b/src/IconMapsUgcOutlined.tsx index ad36b1a80..e49d6d68b 100644 --- a/src/IconMapsUgcOutlined.tsx +++ b/src/IconMapsUgcOutlined.tsx @@ -8,4 +8,4 @@ const IconMapsUgcOutlined: React.FC = ({ ...props }) => ( ) -export { IconMapsUgcOutlined as default } +export default IconMapsUgcOutlined diff --git a/src/IconMapsUgcOutlinedFilled.tsx b/src/IconMapsUgcOutlinedFilled.tsx index b74f0ae8b..4e54ea9f2 100644 --- a/src/IconMapsUgcOutlinedFilled.tsx +++ b/src/IconMapsUgcOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconMapsUgcOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconMapsUgcOutlinedFilled as default } +export default IconMapsUgcOutlinedFilled diff --git a/src/IconMapsUgcRounded.tsx b/src/IconMapsUgcRounded.tsx index a5a064153..88d84586c 100644 --- a/src/IconMapsUgcRounded.tsx +++ b/src/IconMapsUgcRounded.tsx @@ -8,4 +8,4 @@ const IconMapsUgcRounded: React.FC = ({ ...props }) => ( ) -export { IconMapsUgcRounded as default } +export default IconMapsUgcRounded diff --git a/src/IconMapsUgcRoundedFilled.tsx b/src/IconMapsUgcRoundedFilled.tsx index 8f24ef6e7..806fdbc50 100644 --- a/src/IconMapsUgcRoundedFilled.tsx +++ b/src/IconMapsUgcRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconMapsUgcRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconMapsUgcRoundedFilled as default } +export default IconMapsUgcRoundedFilled diff --git a/src/IconMapsUgcSharp.tsx b/src/IconMapsUgcSharp.tsx index cd1f00703..1d5c84eaf 100644 --- a/src/IconMapsUgcSharp.tsx +++ b/src/IconMapsUgcSharp.tsx @@ -8,4 +8,4 @@ const IconMapsUgcSharp: React.FC = ({ ...props }) => ( ) -export { IconMapsUgcSharp as default } +export default IconMapsUgcSharp diff --git a/src/IconMapsUgcSharpFilled.tsx b/src/IconMapsUgcSharpFilled.tsx index 6f4f7b992..4b52c4796 100644 --- a/src/IconMapsUgcSharpFilled.tsx +++ b/src/IconMapsUgcSharpFilled.tsx @@ -8,4 +8,4 @@ const IconMapsUgcSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconMapsUgcSharpFilled as default } +export default IconMapsUgcSharpFilled diff --git a/src/IconMarginOutlined.tsx b/src/IconMarginOutlined.tsx index e3299998c..d7f587509 100644 --- a/src/IconMarginOutlined.tsx +++ b/src/IconMarginOutlined.tsx @@ -8,4 +8,4 @@ const IconMarginOutlined: React.FC = ({ ...props }) => ( ) -export { IconMarginOutlined as default } +export default IconMarginOutlined diff --git a/src/IconMarginOutlinedFilled.tsx b/src/IconMarginOutlinedFilled.tsx index d70fba9fc..04fde1fa0 100644 --- a/src/IconMarginOutlinedFilled.tsx +++ b/src/IconMarginOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconMarginOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconMarginOutlinedFilled as default } +export default IconMarginOutlinedFilled diff --git a/src/IconMarginRounded.tsx b/src/IconMarginRounded.tsx index fc182f749..b6a7dd07c 100644 --- a/src/IconMarginRounded.tsx +++ b/src/IconMarginRounded.tsx @@ -8,4 +8,4 @@ const IconMarginRounded: React.FC = ({ ...props }) => ( ) -export { IconMarginRounded as default } +export default IconMarginRounded diff --git a/src/IconMarginRoundedFilled.tsx b/src/IconMarginRoundedFilled.tsx index 1eecbb813..e026fc833 100644 --- a/src/IconMarginRoundedFilled.tsx +++ b/src/IconMarginRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconMarginRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconMarginRoundedFilled as default } +export default IconMarginRoundedFilled diff --git a/src/IconMarginSharp.tsx b/src/IconMarginSharp.tsx index 14fd13726..4b1d1da4b 100644 --- a/src/IconMarginSharp.tsx +++ b/src/IconMarginSharp.tsx @@ -8,4 +8,4 @@ const IconMarginSharp: React.FC = ({ ...props }) => ( ) -export { IconMarginSharp as default } +export default IconMarginSharp diff --git a/src/IconMarginSharpFilled.tsx b/src/IconMarginSharpFilled.tsx index 7c0414b30..026b79ed6 100644 --- a/src/IconMarginSharpFilled.tsx +++ b/src/IconMarginSharpFilled.tsx @@ -8,4 +8,4 @@ const IconMarginSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconMarginSharpFilled as default } +export default IconMarginSharpFilled diff --git a/src/IconMarkAsUnreadOutlined.tsx b/src/IconMarkAsUnreadOutlined.tsx index f69040a07..0fe624dad 100644 --- a/src/IconMarkAsUnreadOutlined.tsx +++ b/src/IconMarkAsUnreadOutlined.tsx @@ -8,4 +8,4 @@ const IconMarkAsUnreadOutlined: React.FC = ({ ...props }) => ( ) -export { IconMarkAsUnreadOutlined as default } +export default IconMarkAsUnreadOutlined diff --git a/src/IconMarkAsUnreadOutlinedFilled.tsx b/src/IconMarkAsUnreadOutlinedFilled.tsx index 56272781d..46e88544c 100644 --- a/src/IconMarkAsUnreadOutlinedFilled.tsx +++ b/src/IconMarkAsUnreadOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconMarkAsUnreadOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconMarkAsUnreadOutlinedFilled as default } +export default IconMarkAsUnreadOutlinedFilled diff --git a/src/IconMarkAsUnreadRounded.tsx b/src/IconMarkAsUnreadRounded.tsx index 4baef27b5..0c947f6a4 100644 --- a/src/IconMarkAsUnreadRounded.tsx +++ b/src/IconMarkAsUnreadRounded.tsx @@ -8,4 +8,4 @@ const IconMarkAsUnreadRounded: React.FC = ({ ...props }) => ( ) -export { IconMarkAsUnreadRounded as default } +export default IconMarkAsUnreadRounded diff --git a/src/IconMarkAsUnreadRoundedFilled.tsx b/src/IconMarkAsUnreadRoundedFilled.tsx index 1982f0766..0de5ae398 100644 --- a/src/IconMarkAsUnreadRoundedFilled.tsx +++ b/src/IconMarkAsUnreadRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconMarkAsUnreadRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconMarkAsUnreadRoundedFilled as default } +export default IconMarkAsUnreadRoundedFilled diff --git a/src/IconMarkAsUnreadSharp.tsx b/src/IconMarkAsUnreadSharp.tsx index e486c7218..892d0a7b6 100644 --- a/src/IconMarkAsUnreadSharp.tsx +++ b/src/IconMarkAsUnreadSharp.tsx @@ -8,4 +8,4 @@ const IconMarkAsUnreadSharp: React.FC = ({ ...props }) => ( ) -export { IconMarkAsUnreadSharp as default } +export default IconMarkAsUnreadSharp diff --git a/src/IconMarkAsUnreadSharpFilled.tsx b/src/IconMarkAsUnreadSharpFilled.tsx index e45d3e8d1..be7406d59 100644 --- a/src/IconMarkAsUnreadSharpFilled.tsx +++ b/src/IconMarkAsUnreadSharpFilled.tsx @@ -8,4 +8,4 @@ const IconMarkAsUnreadSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconMarkAsUnreadSharpFilled as default } +export default IconMarkAsUnreadSharpFilled diff --git a/src/IconMarkChatReadOutlined.tsx b/src/IconMarkChatReadOutlined.tsx index 1e1917535..eb72cbd8b 100644 --- a/src/IconMarkChatReadOutlined.tsx +++ b/src/IconMarkChatReadOutlined.tsx @@ -8,4 +8,4 @@ const IconMarkChatReadOutlined: React.FC = ({ ...props }) => ( ) -export { IconMarkChatReadOutlined as default } +export default IconMarkChatReadOutlined diff --git a/src/IconMarkChatReadOutlinedFilled.tsx b/src/IconMarkChatReadOutlinedFilled.tsx index 34a7ca739..71107dd31 100644 --- a/src/IconMarkChatReadOutlinedFilled.tsx +++ b/src/IconMarkChatReadOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconMarkChatReadOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconMarkChatReadOutlinedFilled as default } +export default IconMarkChatReadOutlinedFilled diff --git a/src/IconMarkChatReadRounded.tsx b/src/IconMarkChatReadRounded.tsx index bdf267b3d..3507c4c6c 100644 --- a/src/IconMarkChatReadRounded.tsx +++ b/src/IconMarkChatReadRounded.tsx @@ -8,4 +8,4 @@ const IconMarkChatReadRounded: React.FC = ({ ...props }) => ( ) -export { IconMarkChatReadRounded as default } +export default IconMarkChatReadRounded diff --git a/src/IconMarkChatReadRoundedFilled.tsx b/src/IconMarkChatReadRoundedFilled.tsx index 702ef053a..e4a714246 100644 --- a/src/IconMarkChatReadRoundedFilled.tsx +++ b/src/IconMarkChatReadRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconMarkChatReadRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconMarkChatReadRoundedFilled as default } +export default IconMarkChatReadRoundedFilled diff --git a/src/IconMarkChatReadSharp.tsx b/src/IconMarkChatReadSharp.tsx index e0e6c9126..c2b43dfb6 100644 --- a/src/IconMarkChatReadSharp.tsx +++ b/src/IconMarkChatReadSharp.tsx @@ -8,4 +8,4 @@ const IconMarkChatReadSharp: React.FC = ({ ...props }) => ( ) -export { IconMarkChatReadSharp as default } +export default IconMarkChatReadSharp diff --git a/src/IconMarkChatReadSharpFilled.tsx b/src/IconMarkChatReadSharpFilled.tsx index 73fee134c..a03089d8e 100644 --- a/src/IconMarkChatReadSharpFilled.tsx +++ b/src/IconMarkChatReadSharpFilled.tsx @@ -8,4 +8,4 @@ const IconMarkChatReadSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconMarkChatReadSharpFilled as default } +export default IconMarkChatReadSharpFilled diff --git a/src/IconMarkChatUnreadOutlined.tsx b/src/IconMarkChatUnreadOutlined.tsx index 8315085f7..99f46e028 100644 --- a/src/IconMarkChatUnreadOutlined.tsx +++ b/src/IconMarkChatUnreadOutlined.tsx @@ -8,4 +8,4 @@ const IconMarkChatUnreadOutlined: React.FC = ({ ...props }) => ( ) -export { IconMarkChatUnreadOutlined as default } +export default IconMarkChatUnreadOutlined diff --git a/src/IconMarkChatUnreadOutlinedFilled.tsx b/src/IconMarkChatUnreadOutlinedFilled.tsx index cd40b29a2..fae56618e 100644 --- a/src/IconMarkChatUnreadOutlinedFilled.tsx +++ b/src/IconMarkChatUnreadOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconMarkChatUnreadOutlinedFilled: React.FC = ({ ) -export { IconMarkChatUnreadOutlinedFilled as default } +export default IconMarkChatUnreadOutlinedFilled diff --git a/src/IconMarkChatUnreadRounded.tsx b/src/IconMarkChatUnreadRounded.tsx index 99ad6a179..90aff8881 100644 --- a/src/IconMarkChatUnreadRounded.tsx +++ b/src/IconMarkChatUnreadRounded.tsx @@ -8,4 +8,4 @@ const IconMarkChatUnreadRounded: React.FC = ({ ...props }) => ( ) -export { IconMarkChatUnreadRounded as default } +export default IconMarkChatUnreadRounded diff --git a/src/IconMarkChatUnreadRoundedFilled.tsx b/src/IconMarkChatUnreadRoundedFilled.tsx index fcd39060e..c6b7814ee 100644 --- a/src/IconMarkChatUnreadRoundedFilled.tsx +++ b/src/IconMarkChatUnreadRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconMarkChatUnreadRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconMarkChatUnreadRoundedFilled as default } +export default IconMarkChatUnreadRoundedFilled diff --git a/src/IconMarkChatUnreadSharp.tsx b/src/IconMarkChatUnreadSharp.tsx index d022ac6c6..f203b621c 100644 --- a/src/IconMarkChatUnreadSharp.tsx +++ b/src/IconMarkChatUnreadSharp.tsx @@ -8,4 +8,4 @@ const IconMarkChatUnreadSharp: React.FC = ({ ...props }) => ( ) -export { IconMarkChatUnreadSharp as default } +export default IconMarkChatUnreadSharp diff --git a/src/IconMarkChatUnreadSharpFilled.tsx b/src/IconMarkChatUnreadSharpFilled.tsx index 262eb0aac..2e502080b 100644 --- a/src/IconMarkChatUnreadSharpFilled.tsx +++ b/src/IconMarkChatUnreadSharpFilled.tsx @@ -8,4 +8,4 @@ const IconMarkChatUnreadSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconMarkChatUnreadSharpFilled as default } +export default IconMarkChatUnreadSharpFilled diff --git a/src/IconMarkEmailReadOutlined.tsx b/src/IconMarkEmailReadOutlined.tsx index e01e50bce..badfdfe23 100644 --- a/src/IconMarkEmailReadOutlined.tsx +++ b/src/IconMarkEmailReadOutlined.tsx @@ -8,4 +8,4 @@ const IconMarkEmailReadOutlined: React.FC = ({ ...props }) => ( ) -export { IconMarkEmailReadOutlined as default } +export default IconMarkEmailReadOutlined diff --git a/src/IconMarkEmailReadOutlinedFilled.tsx b/src/IconMarkEmailReadOutlinedFilled.tsx index bd2b3da0a..1ff6d5c0b 100644 --- a/src/IconMarkEmailReadOutlinedFilled.tsx +++ b/src/IconMarkEmailReadOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconMarkEmailReadOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconMarkEmailReadOutlinedFilled as default } +export default IconMarkEmailReadOutlinedFilled diff --git a/src/IconMarkEmailReadRounded.tsx b/src/IconMarkEmailReadRounded.tsx index 4ac3c8bf9..8ec840997 100644 --- a/src/IconMarkEmailReadRounded.tsx +++ b/src/IconMarkEmailReadRounded.tsx @@ -8,4 +8,4 @@ const IconMarkEmailReadRounded: React.FC = ({ ...props }) => ( ) -export { IconMarkEmailReadRounded as default } +export default IconMarkEmailReadRounded diff --git a/src/IconMarkEmailReadRoundedFilled.tsx b/src/IconMarkEmailReadRoundedFilled.tsx index 922c66a2e..141310027 100644 --- a/src/IconMarkEmailReadRoundedFilled.tsx +++ b/src/IconMarkEmailReadRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconMarkEmailReadRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconMarkEmailReadRoundedFilled as default } +export default IconMarkEmailReadRoundedFilled diff --git a/src/IconMarkEmailReadSharp.tsx b/src/IconMarkEmailReadSharp.tsx index 5c3eec21d..3e805491b 100644 --- a/src/IconMarkEmailReadSharp.tsx +++ b/src/IconMarkEmailReadSharp.tsx @@ -8,4 +8,4 @@ const IconMarkEmailReadSharp: React.FC = ({ ...props }) => ( ) -export { IconMarkEmailReadSharp as default } +export default IconMarkEmailReadSharp diff --git a/src/IconMarkEmailReadSharpFilled.tsx b/src/IconMarkEmailReadSharpFilled.tsx index f1d796557..bf2769b7d 100644 --- a/src/IconMarkEmailReadSharpFilled.tsx +++ b/src/IconMarkEmailReadSharpFilled.tsx @@ -8,4 +8,4 @@ const IconMarkEmailReadSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconMarkEmailReadSharpFilled as default } +export default IconMarkEmailReadSharpFilled diff --git a/src/IconMarkEmailUnreadOutlined.tsx b/src/IconMarkEmailUnreadOutlined.tsx index ed9201213..57d179e10 100644 --- a/src/IconMarkEmailUnreadOutlined.tsx +++ b/src/IconMarkEmailUnreadOutlined.tsx @@ -8,4 +8,4 @@ const IconMarkEmailUnreadOutlined: React.FC = ({ ...props }) => ( ) -export { IconMarkEmailUnreadOutlined as default } +export default IconMarkEmailUnreadOutlined diff --git a/src/IconMarkEmailUnreadOutlinedFilled.tsx b/src/IconMarkEmailUnreadOutlinedFilled.tsx index b3b00ff9b..f629ecd49 100644 --- a/src/IconMarkEmailUnreadOutlinedFilled.tsx +++ b/src/IconMarkEmailUnreadOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconMarkEmailUnreadOutlinedFilled: React.FC = ({ ) -export { IconMarkEmailUnreadOutlinedFilled as default } +export default IconMarkEmailUnreadOutlinedFilled diff --git a/src/IconMarkEmailUnreadRounded.tsx b/src/IconMarkEmailUnreadRounded.tsx index 6eda54746..13fceb20d 100644 --- a/src/IconMarkEmailUnreadRounded.tsx +++ b/src/IconMarkEmailUnreadRounded.tsx @@ -8,4 +8,4 @@ const IconMarkEmailUnreadRounded: React.FC = ({ ...props }) => ( ) -export { IconMarkEmailUnreadRounded as default } +export default IconMarkEmailUnreadRounded diff --git a/src/IconMarkEmailUnreadRoundedFilled.tsx b/src/IconMarkEmailUnreadRoundedFilled.tsx index ea3580924..60a94748f 100644 --- a/src/IconMarkEmailUnreadRoundedFilled.tsx +++ b/src/IconMarkEmailUnreadRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconMarkEmailUnreadRoundedFilled: React.FC = ({ ) -export { IconMarkEmailUnreadRoundedFilled as default } +export default IconMarkEmailUnreadRoundedFilled diff --git a/src/IconMarkEmailUnreadSharp.tsx b/src/IconMarkEmailUnreadSharp.tsx index afb129d83..c6285a3c3 100644 --- a/src/IconMarkEmailUnreadSharp.tsx +++ b/src/IconMarkEmailUnreadSharp.tsx @@ -8,4 +8,4 @@ const IconMarkEmailUnreadSharp: React.FC = ({ ...props }) => ( ) -export { IconMarkEmailUnreadSharp as default } +export default IconMarkEmailUnreadSharp diff --git a/src/IconMarkEmailUnreadSharpFilled.tsx b/src/IconMarkEmailUnreadSharpFilled.tsx index 3992f7146..30a33026d 100644 --- a/src/IconMarkEmailUnreadSharpFilled.tsx +++ b/src/IconMarkEmailUnreadSharpFilled.tsx @@ -8,4 +8,4 @@ const IconMarkEmailUnreadSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconMarkEmailUnreadSharpFilled as default } +export default IconMarkEmailUnreadSharpFilled diff --git a/src/IconMarkUnreadChatAltOutlined.tsx b/src/IconMarkUnreadChatAltOutlined.tsx index 6a19d2bf4..426b57b4e 100644 --- a/src/IconMarkUnreadChatAltOutlined.tsx +++ b/src/IconMarkUnreadChatAltOutlined.tsx @@ -8,4 +8,4 @@ const IconMarkUnreadChatAltOutlined: React.FC = ({ ...props }) => ( ) -export { IconMarkUnreadChatAltOutlined as default } +export default IconMarkUnreadChatAltOutlined diff --git a/src/IconMarkUnreadChatAltOutlinedFilled.tsx b/src/IconMarkUnreadChatAltOutlinedFilled.tsx index fc2f0bf72..333e11cd3 100644 --- a/src/IconMarkUnreadChatAltOutlinedFilled.tsx +++ b/src/IconMarkUnreadChatAltOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconMarkUnreadChatAltOutlinedFilled: React.FC = ({ ) -export { IconMarkUnreadChatAltOutlinedFilled as default } +export default IconMarkUnreadChatAltOutlinedFilled diff --git a/src/IconMarkUnreadChatAltRounded.tsx b/src/IconMarkUnreadChatAltRounded.tsx index 5ab9010ae..112ebda29 100644 --- a/src/IconMarkUnreadChatAltRounded.tsx +++ b/src/IconMarkUnreadChatAltRounded.tsx @@ -8,4 +8,4 @@ const IconMarkUnreadChatAltRounded: React.FC = ({ ...props }) => ( ) -export { IconMarkUnreadChatAltRounded as default } +export default IconMarkUnreadChatAltRounded diff --git a/src/IconMarkUnreadChatAltRoundedFilled.tsx b/src/IconMarkUnreadChatAltRoundedFilled.tsx index 44f84a97d..ef7d61062 100644 --- a/src/IconMarkUnreadChatAltRoundedFilled.tsx +++ b/src/IconMarkUnreadChatAltRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconMarkUnreadChatAltRoundedFilled: React.FC = ({ ) -export { IconMarkUnreadChatAltRoundedFilled as default } +export default IconMarkUnreadChatAltRoundedFilled diff --git a/src/IconMarkUnreadChatAltSharp.tsx b/src/IconMarkUnreadChatAltSharp.tsx index 719da8a1e..a969bde19 100644 --- a/src/IconMarkUnreadChatAltSharp.tsx +++ b/src/IconMarkUnreadChatAltSharp.tsx @@ -8,4 +8,4 @@ const IconMarkUnreadChatAltSharp: React.FC = ({ ...props }) => ( ) -export { IconMarkUnreadChatAltSharp as default } +export default IconMarkUnreadChatAltSharp diff --git a/src/IconMarkUnreadChatAltSharpFilled.tsx b/src/IconMarkUnreadChatAltSharpFilled.tsx index 04828f129..a92e594c9 100644 --- a/src/IconMarkUnreadChatAltSharpFilled.tsx +++ b/src/IconMarkUnreadChatAltSharpFilled.tsx @@ -10,4 +10,4 @@ const IconMarkUnreadChatAltSharpFilled: React.FC = ({ ) -export { IconMarkUnreadChatAltSharpFilled as default } +export default IconMarkUnreadChatAltSharpFilled diff --git a/src/IconMarkdownCopyOutlined.tsx b/src/IconMarkdownCopyOutlined.tsx index 776c860fe..1002518e8 100644 --- a/src/IconMarkdownCopyOutlined.tsx +++ b/src/IconMarkdownCopyOutlined.tsx @@ -8,4 +8,4 @@ const IconMarkdownCopyOutlined: React.FC = ({ ...props }) => ( ) -export { IconMarkdownCopyOutlined as default } +export default IconMarkdownCopyOutlined diff --git a/src/IconMarkdownCopyOutlinedFilled.tsx b/src/IconMarkdownCopyOutlinedFilled.tsx index 28530212a..f9cacd3c1 100644 --- a/src/IconMarkdownCopyOutlinedFilled.tsx +++ b/src/IconMarkdownCopyOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconMarkdownCopyOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconMarkdownCopyOutlinedFilled as default } +export default IconMarkdownCopyOutlinedFilled diff --git a/src/IconMarkdownCopyRounded.tsx b/src/IconMarkdownCopyRounded.tsx index 3b07063c2..d8d75f176 100644 --- a/src/IconMarkdownCopyRounded.tsx +++ b/src/IconMarkdownCopyRounded.tsx @@ -8,4 +8,4 @@ const IconMarkdownCopyRounded: React.FC = ({ ...props }) => ( ) -export { IconMarkdownCopyRounded as default } +export default IconMarkdownCopyRounded diff --git a/src/IconMarkdownCopyRoundedFilled.tsx b/src/IconMarkdownCopyRoundedFilled.tsx index e57b23d7b..ec5240aab 100644 --- a/src/IconMarkdownCopyRoundedFilled.tsx +++ b/src/IconMarkdownCopyRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconMarkdownCopyRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconMarkdownCopyRoundedFilled as default } +export default IconMarkdownCopyRoundedFilled diff --git a/src/IconMarkdownCopySharp.tsx b/src/IconMarkdownCopySharp.tsx index 4bfcae3ad..6f15bfb93 100644 --- a/src/IconMarkdownCopySharp.tsx +++ b/src/IconMarkdownCopySharp.tsx @@ -8,4 +8,4 @@ const IconMarkdownCopySharp: React.FC = ({ ...props }) => ( ) -export { IconMarkdownCopySharp as default } +export default IconMarkdownCopySharp diff --git a/src/IconMarkdownCopySharpFilled.tsx b/src/IconMarkdownCopySharpFilled.tsx index cb9cc997c..9a40bd701 100644 --- a/src/IconMarkdownCopySharpFilled.tsx +++ b/src/IconMarkdownCopySharpFilled.tsx @@ -8,4 +8,4 @@ const IconMarkdownCopySharpFilled: React.FC = ({ ...props }) => ( ) -export { IconMarkdownCopySharpFilled as default } +export default IconMarkdownCopySharpFilled diff --git a/src/IconMarkdownOutlined.tsx b/src/IconMarkdownOutlined.tsx index 789679742..047f281ce 100644 --- a/src/IconMarkdownOutlined.tsx +++ b/src/IconMarkdownOutlined.tsx @@ -8,4 +8,4 @@ const IconMarkdownOutlined: React.FC = ({ ...props }) => ( ) -export { IconMarkdownOutlined as default } +export default IconMarkdownOutlined diff --git a/src/IconMarkdownOutlinedFilled.tsx b/src/IconMarkdownOutlinedFilled.tsx index cd3b48cc5..5728f95ff 100644 --- a/src/IconMarkdownOutlinedFilled.tsx +++ b/src/IconMarkdownOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconMarkdownOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconMarkdownOutlinedFilled as default } +export default IconMarkdownOutlinedFilled diff --git a/src/IconMarkdownPasteOutlined.tsx b/src/IconMarkdownPasteOutlined.tsx index 210c2c793..93e88b084 100644 --- a/src/IconMarkdownPasteOutlined.tsx +++ b/src/IconMarkdownPasteOutlined.tsx @@ -8,4 +8,4 @@ const IconMarkdownPasteOutlined: React.FC = ({ ...props }) => ( ) -export { IconMarkdownPasteOutlined as default } +export default IconMarkdownPasteOutlined diff --git a/src/IconMarkdownPasteOutlinedFilled.tsx b/src/IconMarkdownPasteOutlinedFilled.tsx index fb9ad2070..66de4b50e 100644 --- a/src/IconMarkdownPasteOutlinedFilled.tsx +++ b/src/IconMarkdownPasteOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconMarkdownPasteOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconMarkdownPasteOutlinedFilled as default } +export default IconMarkdownPasteOutlinedFilled diff --git a/src/IconMarkdownPasteRounded.tsx b/src/IconMarkdownPasteRounded.tsx index 27d558f0c..f338ceb43 100644 --- a/src/IconMarkdownPasteRounded.tsx +++ b/src/IconMarkdownPasteRounded.tsx @@ -8,4 +8,4 @@ const IconMarkdownPasteRounded: React.FC = ({ ...props }) => ( ) -export { IconMarkdownPasteRounded as default } +export default IconMarkdownPasteRounded diff --git a/src/IconMarkdownPasteRoundedFilled.tsx b/src/IconMarkdownPasteRoundedFilled.tsx index 7f21cd4ae..63bc91f86 100644 --- a/src/IconMarkdownPasteRoundedFilled.tsx +++ b/src/IconMarkdownPasteRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconMarkdownPasteRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconMarkdownPasteRoundedFilled as default } +export default IconMarkdownPasteRoundedFilled diff --git a/src/IconMarkdownPasteSharp.tsx b/src/IconMarkdownPasteSharp.tsx index 189ab3b33..881e0982b 100644 --- a/src/IconMarkdownPasteSharp.tsx +++ b/src/IconMarkdownPasteSharp.tsx @@ -8,4 +8,4 @@ const IconMarkdownPasteSharp: React.FC = ({ ...props }) => ( ) -export { IconMarkdownPasteSharp as default } +export default IconMarkdownPasteSharp diff --git a/src/IconMarkdownPasteSharpFilled.tsx b/src/IconMarkdownPasteSharpFilled.tsx index 465dca21a..c98f74f24 100644 --- a/src/IconMarkdownPasteSharpFilled.tsx +++ b/src/IconMarkdownPasteSharpFilled.tsx @@ -8,4 +8,4 @@ const IconMarkdownPasteSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconMarkdownPasteSharpFilled as default } +export default IconMarkdownPasteSharpFilled diff --git a/src/IconMarkdownRounded.tsx b/src/IconMarkdownRounded.tsx index 938a03c6d..3bf0bcb64 100644 --- a/src/IconMarkdownRounded.tsx +++ b/src/IconMarkdownRounded.tsx @@ -8,4 +8,4 @@ const IconMarkdownRounded: React.FC = ({ ...props }) => ( ) -export { IconMarkdownRounded as default } +export default IconMarkdownRounded diff --git a/src/IconMarkdownRoundedFilled.tsx b/src/IconMarkdownRoundedFilled.tsx index 4104241e9..335f3e6e3 100644 --- a/src/IconMarkdownRoundedFilled.tsx +++ b/src/IconMarkdownRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconMarkdownRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconMarkdownRoundedFilled as default } +export default IconMarkdownRoundedFilled diff --git a/src/IconMarkdownSharp.tsx b/src/IconMarkdownSharp.tsx index b23aaaa14..b7070ba34 100644 --- a/src/IconMarkdownSharp.tsx +++ b/src/IconMarkdownSharp.tsx @@ -8,4 +8,4 @@ const IconMarkdownSharp: React.FC = ({ ...props }) => ( ) -export { IconMarkdownSharp as default } +export default IconMarkdownSharp diff --git a/src/IconMarkdownSharpFilled.tsx b/src/IconMarkdownSharpFilled.tsx index 381368ece..fd5bc4773 100644 --- a/src/IconMarkdownSharpFilled.tsx +++ b/src/IconMarkdownSharpFilled.tsx @@ -8,4 +8,4 @@ const IconMarkdownSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconMarkdownSharpFilled as default } +export default IconMarkdownSharpFilled diff --git a/src/IconMarkunreadMailboxOutlined.tsx b/src/IconMarkunreadMailboxOutlined.tsx index 822fba6e9..4f6b78145 100644 --- a/src/IconMarkunreadMailboxOutlined.tsx +++ b/src/IconMarkunreadMailboxOutlined.tsx @@ -8,4 +8,4 @@ const IconMarkunreadMailboxOutlined: React.FC = ({ ...props }) => ( ) -export { IconMarkunreadMailboxOutlined as default } +export default IconMarkunreadMailboxOutlined diff --git a/src/IconMarkunreadMailboxOutlinedFilled.tsx b/src/IconMarkunreadMailboxOutlinedFilled.tsx index b5758cb55..bb90532a9 100644 --- a/src/IconMarkunreadMailboxOutlinedFilled.tsx +++ b/src/IconMarkunreadMailboxOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconMarkunreadMailboxOutlinedFilled: React.FC = ({ ) -export { IconMarkunreadMailboxOutlinedFilled as default } +export default IconMarkunreadMailboxOutlinedFilled diff --git a/src/IconMarkunreadMailboxRounded.tsx b/src/IconMarkunreadMailboxRounded.tsx index cb6510fd8..59aca8470 100644 --- a/src/IconMarkunreadMailboxRounded.tsx +++ b/src/IconMarkunreadMailboxRounded.tsx @@ -8,4 +8,4 @@ const IconMarkunreadMailboxRounded: React.FC = ({ ...props }) => ( ) -export { IconMarkunreadMailboxRounded as default } +export default IconMarkunreadMailboxRounded diff --git a/src/IconMarkunreadMailboxRoundedFilled.tsx b/src/IconMarkunreadMailboxRoundedFilled.tsx index fb65223c7..ac9969195 100644 --- a/src/IconMarkunreadMailboxRoundedFilled.tsx +++ b/src/IconMarkunreadMailboxRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconMarkunreadMailboxRoundedFilled: React.FC = ({ ) -export { IconMarkunreadMailboxRoundedFilled as default } +export default IconMarkunreadMailboxRoundedFilled diff --git a/src/IconMarkunreadMailboxSharp.tsx b/src/IconMarkunreadMailboxSharp.tsx index 8a2770632..645e2a712 100644 --- a/src/IconMarkunreadMailboxSharp.tsx +++ b/src/IconMarkunreadMailboxSharp.tsx @@ -8,4 +8,4 @@ const IconMarkunreadMailboxSharp: React.FC = ({ ...props }) => ( ) -export { IconMarkunreadMailboxSharp as default } +export default IconMarkunreadMailboxSharp diff --git a/src/IconMarkunreadMailboxSharpFilled.tsx b/src/IconMarkunreadMailboxSharpFilled.tsx index 5fde5eeec..1a52e22bc 100644 --- a/src/IconMarkunreadMailboxSharpFilled.tsx +++ b/src/IconMarkunreadMailboxSharpFilled.tsx @@ -10,4 +10,4 @@ const IconMarkunreadMailboxSharpFilled: React.FC = ({ ) -export { IconMarkunreadMailboxSharpFilled as default } +export default IconMarkunreadMailboxSharpFilled diff --git a/src/IconMaskedTransitionsAddOutlined.tsx b/src/IconMaskedTransitionsAddOutlined.tsx index d4e0437f2..1526d77be 100644 --- a/src/IconMaskedTransitionsAddOutlined.tsx +++ b/src/IconMaskedTransitionsAddOutlined.tsx @@ -10,4 +10,4 @@ const IconMaskedTransitionsAddOutlined: React.FC = ({ ) -export { IconMaskedTransitionsAddOutlined as default } +export default IconMaskedTransitionsAddOutlined diff --git a/src/IconMaskedTransitionsAddOutlinedFilled.tsx b/src/IconMaskedTransitionsAddOutlinedFilled.tsx index cca96920e..7829a8cf4 100644 --- a/src/IconMaskedTransitionsAddOutlinedFilled.tsx +++ b/src/IconMaskedTransitionsAddOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconMaskedTransitionsAddOutlinedFilled: React.FC = ({ ) -export { IconMaskedTransitionsAddOutlinedFilled as default } +export default IconMaskedTransitionsAddOutlinedFilled diff --git a/src/IconMaskedTransitionsAddRounded.tsx b/src/IconMaskedTransitionsAddRounded.tsx index b4be1ef83..c9fc4f447 100644 --- a/src/IconMaskedTransitionsAddRounded.tsx +++ b/src/IconMaskedTransitionsAddRounded.tsx @@ -8,4 +8,4 @@ const IconMaskedTransitionsAddRounded: React.FC = ({ ...props }) => ( ) -export { IconMaskedTransitionsAddRounded as default } +export default IconMaskedTransitionsAddRounded diff --git a/src/IconMaskedTransitionsAddRoundedFilled.tsx b/src/IconMaskedTransitionsAddRoundedFilled.tsx index 13a88a5b8..95fa8e30d 100644 --- a/src/IconMaskedTransitionsAddRoundedFilled.tsx +++ b/src/IconMaskedTransitionsAddRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconMaskedTransitionsAddRoundedFilled: React.FC = ({ ) -export { IconMaskedTransitionsAddRoundedFilled as default } +export default IconMaskedTransitionsAddRoundedFilled diff --git a/src/IconMaskedTransitionsAddSharp.tsx b/src/IconMaskedTransitionsAddSharp.tsx index 707d355a5..b435e7eb4 100644 --- a/src/IconMaskedTransitionsAddSharp.tsx +++ b/src/IconMaskedTransitionsAddSharp.tsx @@ -8,4 +8,4 @@ const IconMaskedTransitionsAddSharp: React.FC = ({ ...props }) => ( ) -export { IconMaskedTransitionsAddSharp as default } +export default IconMaskedTransitionsAddSharp diff --git a/src/IconMaskedTransitionsAddSharpFilled.tsx b/src/IconMaskedTransitionsAddSharpFilled.tsx index 115fecf2f..f645bbd61 100644 --- a/src/IconMaskedTransitionsAddSharpFilled.tsx +++ b/src/IconMaskedTransitionsAddSharpFilled.tsx @@ -10,4 +10,4 @@ const IconMaskedTransitionsAddSharpFilled: React.FC = ({ ) -export { IconMaskedTransitionsAddSharpFilled as default } +export default IconMaskedTransitionsAddSharpFilled diff --git a/src/IconMaskedTransitionsOutlined.tsx b/src/IconMaskedTransitionsOutlined.tsx index 5967a836b..5e3056bd8 100644 --- a/src/IconMaskedTransitionsOutlined.tsx +++ b/src/IconMaskedTransitionsOutlined.tsx @@ -8,4 +8,4 @@ const IconMaskedTransitionsOutlined: React.FC = ({ ...props }) => ( ) -export { IconMaskedTransitionsOutlined as default } +export default IconMaskedTransitionsOutlined diff --git a/src/IconMaskedTransitionsOutlinedFilled.tsx b/src/IconMaskedTransitionsOutlinedFilled.tsx index f017cd734..ee66bc3ab 100644 --- a/src/IconMaskedTransitionsOutlinedFilled.tsx +++ b/src/IconMaskedTransitionsOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconMaskedTransitionsOutlinedFilled: React.FC = ({ ) -export { IconMaskedTransitionsOutlinedFilled as default } +export default IconMaskedTransitionsOutlinedFilled diff --git a/src/IconMaskedTransitionsRounded.tsx b/src/IconMaskedTransitionsRounded.tsx index 4edcf9b43..710ef01ce 100644 --- a/src/IconMaskedTransitionsRounded.tsx +++ b/src/IconMaskedTransitionsRounded.tsx @@ -8,4 +8,4 @@ const IconMaskedTransitionsRounded: React.FC = ({ ...props }) => ( ) -export { IconMaskedTransitionsRounded as default } +export default IconMaskedTransitionsRounded diff --git a/src/IconMaskedTransitionsRoundedFilled.tsx b/src/IconMaskedTransitionsRoundedFilled.tsx index 196ce7d81..ee9d7e48a 100644 --- a/src/IconMaskedTransitionsRoundedFilled.tsx +++ b/src/IconMaskedTransitionsRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconMaskedTransitionsRoundedFilled: React.FC = ({ ) -export { IconMaskedTransitionsRoundedFilled as default } +export default IconMaskedTransitionsRoundedFilled diff --git a/src/IconMaskedTransitionsSharp.tsx b/src/IconMaskedTransitionsSharp.tsx index e74ec3b8b..ce4112cd9 100644 --- a/src/IconMaskedTransitionsSharp.tsx +++ b/src/IconMaskedTransitionsSharp.tsx @@ -8,4 +8,4 @@ const IconMaskedTransitionsSharp: React.FC = ({ ...props }) => ( ) -export { IconMaskedTransitionsSharp as default } +export default IconMaskedTransitionsSharp diff --git a/src/IconMaskedTransitionsSharpFilled.tsx b/src/IconMaskedTransitionsSharpFilled.tsx index 732b9d2fc..13e8b6c71 100644 --- a/src/IconMaskedTransitionsSharpFilled.tsx +++ b/src/IconMaskedTransitionsSharpFilled.tsx @@ -10,4 +10,4 @@ const IconMaskedTransitionsSharpFilled: React.FC = ({ ) -export { IconMaskedTransitionsSharpFilled as default } +export default IconMaskedTransitionsSharpFilled diff --git a/src/IconMasksOutlined.tsx b/src/IconMasksOutlined.tsx index 321afe737..cea78676b 100644 --- a/src/IconMasksOutlined.tsx +++ b/src/IconMasksOutlined.tsx @@ -8,4 +8,4 @@ const IconMasksOutlined: React.FC = ({ ...props }) => ( ) -export { IconMasksOutlined as default } +export default IconMasksOutlined diff --git a/src/IconMasksOutlinedFilled.tsx b/src/IconMasksOutlinedFilled.tsx index 4c36c326e..1c8719d3e 100644 --- a/src/IconMasksOutlinedFilled.tsx +++ b/src/IconMasksOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconMasksOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconMasksOutlinedFilled as default } +export default IconMasksOutlinedFilled diff --git a/src/IconMasksRounded.tsx b/src/IconMasksRounded.tsx index 3f32533eb..ebc6ed425 100644 --- a/src/IconMasksRounded.tsx +++ b/src/IconMasksRounded.tsx @@ -8,4 +8,4 @@ const IconMasksRounded: React.FC = ({ ...props }) => ( ) -export { IconMasksRounded as default } +export default IconMasksRounded diff --git a/src/IconMasksRoundedFilled.tsx b/src/IconMasksRoundedFilled.tsx index dc8e833eb..0ba09e873 100644 --- a/src/IconMasksRoundedFilled.tsx +++ b/src/IconMasksRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconMasksRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconMasksRoundedFilled as default } +export default IconMasksRoundedFilled diff --git a/src/IconMasksSharp.tsx b/src/IconMasksSharp.tsx index f4ee12319..01412c5a6 100644 --- a/src/IconMasksSharp.tsx +++ b/src/IconMasksSharp.tsx @@ -8,4 +8,4 @@ const IconMasksSharp: React.FC = ({ ...props }) => ( ) -export { IconMasksSharp as default } +export default IconMasksSharp diff --git a/src/IconMasksSharpFilled.tsx b/src/IconMasksSharpFilled.tsx index 3d1aa5039..150a94c3e 100644 --- a/src/IconMasksSharpFilled.tsx +++ b/src/IconMasksSharpFilled.tsx @@ -8,4 +8,4 @@ const IconMasksSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconMasksSharpFilled as default } +export default IconMasksSharpFilled diff --git a/src/IconMatchCaseOutlined.tsx b/src/IconMatchCaseOutlined.tsx index 7fa6ad28b..0046c439e 100644 --- a/src/IconMatchCaseOutlined.tsx +++ b/src/IconMatchCaseOutlined.tsx @@ -8,4 +8,4 @@ const IconMatchCaseOutlined: React.FC = ({ ...props }) => ( ) -export { IconMatchCaseOutlined as default } +export default IconMatchCaseOutlined diff --git a/src/IconMatchCaseOutlinedFilled.tsx b/src/IconMatchCaseOutlinedFilled.tsx index 7cdc62e2c..1f648eac7 100644 --- a/src/IconMatchCaseOutlinedFilled.tsx +++ b/src/IconMatchCaseOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconMatchCaseOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconMatchCaseOutlinedFilled as default } +export default IconMatchCaseOutlinedFilled diff --git a/src/IconMatchCaseRounded.tsx b/src/IconMatchCaseRounded.tsx index 0fffd0d5f..359bc7083 100644 --- a/src/IconMatchCaseRounded.tsx +++ b/src/IconMatchCaseRounded.tsx @@ -8,4 +8,4 @@ const IconMatchCaseRounded: React.FC = ({ ...props }) => ( ) -export { IconMatchCaseRounded as default } +export default IconMatchCaseRounded diff --git a/src/IconMatchCaseRoundedFilled.tsx b/src/IconMatchCaseRoundedFilled.tsx index 3251de9c0..624ea4ed7 100644 --- a/src/IconMatchCaseRoundedFilled.tsx +++ b/src/IconMatchCaseRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconMatchCaseRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconMatchCaseRoundedFilled as default } +export default IconMatchCaseRoundedFilled diff --git a/src/IconMatchCaseSharp.tsx b/src/IconMatchCaseSharp.tsx index 428ca6ea0..b1313b19f 100644 --- a/src/IconMatchCaseSharp.tsx +++ b/src/IconMatchCaseSharp.tsx @@ -8,4 +8,4 @@ const IconMatchCaseSharp: React.FC = ({ ...props }) => ( ) -export { IconMatchCaseSharp as default } +export default IconMatchCaseSharp diff --git a/src/IconMatchCaseSharpFilled.tsx b/src/IconMatchCaseSharpFilled.tsx index 2d5876d91..f2e03ce5a 100644 --- a/src/IconMatchCaseSharpFilled.tsx +++ b/src/IconMatchCaseSharpFilled.tsx @@ -8,4 +8,4 @@ const IconMatchCaseSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconMatchCaseSharpFilled as default } +export default IconMatchCaseSharpFilled diff --git a/src/IconMatchWordOutlined.tsx b/src/IconMatchWordOutlined.tsx index bb2c45370..53d9798f4 100644 --- a/src/IconMatchWordOutlined.tsx +++ b/src/IconMatchWordOutlined.tsx @@ -8,4 +8,4 @@ const IconMatchWordOutlined: React.FC = ({ ...props }) => ( ) -export { IconMatchWordOutlined as default } +export default IconMatchWordOutlined diff --git a/src/IconMatchWordOutlinedFilled.tsx b/src/IconMatchWordOutlinedFilled.tsx index 99b5bd9dc..4d324d6fd 100644 --- a/src/IconMatchWordOutlinedFilled.tsx +++ b/src/IconMatchWordOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconMatchWordOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconMatchWordOutlinedFilled as default } +export default IconMatchWordOutlinedFilled diff --git a/src/IconMatchWordRounded.tsx b/src/IconMatchWordRounded.tsx index 7f8e8f9af..f03d1197c 100644 --- a/src/IconMatchWordRounded.tsx +++ b/src/IconMatchWordRounded.tsx @@ -8,4 +8,4 @@ const IconMatchWordRounded: React.FC = ({ ...props }) => ( ) -export { IconMatchWordRounded as default } +export default IconMatchWordRounded diff --git a/src/IconMatchWordRoundedFilled.tsx b/src/IconMatchWordRoundedFilled.tsx index af1506717..a167c3bc9 100644 --- a/src/IconMatchWordRoundedFilled.tsx +++ b/src/IconMatchWordRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconMatchWordRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconMatchWordRoundedFilled as default } +export default IconMatchWordRoundedFilled diff --git a/src/IconMatchWordSharp.tsx b/src/IconMatchWordSharp.tsx index 8f27244b2..d2fdd5f35 100644 --- a/src/IconMatchWordSharp.tsx +++ b/src/IconMatchWordSharp.tsx @@ -8,4 +8,4 @@ const IconMatchWordSharp: React.FC = ({ ...props }) => ( ) -export { IconMatchWordSharp as default } +export default IconMatchWordSharp diff --git a/src/IconMatchWordSharpFilled.tsx b/src/IconMatchWordSharpFilled.tsx index f6dadb8a4..76b3ad7b7 100644 --- a/src/IconMatchWordSharpFilled.tsx +++ b/src/IconMatchWordSharpFilled.tsx @@ -8,4 +8,4 @@ const IconMatchWordSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconMatchWordSharpFilled as default } +export default IconMatchWordSharpFilled diff --git a/src/IconMatterOutlined.tsx b/src/IconMatterOutlined.tsx index 8a7d9f4f4..328061774 100644 --- a/src/IconMatterOutlined.tsx +++ b/src/IconMatterOutlined.tsx @@ -8,4 +8,4 @@ const IconMatterOutlined: React.FC = ({ ...props }) => ( ) -export { IconMatterOutlined as default } +export default IconMatterOutlined diff --git a/src/IconMatterOutlinedFilled.tsx b/src/IconMatterOutlinedFilled.tsx index 84fa25ab2..132731e97 100644 --- a/src/IconMatterOutlinedFilled.tsx +++ b/src/IconMatterOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconMatterOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconMatterOutlinedFilled as default } +export default IconMatterOutlinedFilled diff --git a/src/IconMatterRounded.tsx b/src/IconMatterRounded.tsx index 6fcb0e6e5..72519dfa9 100644 --- a/src/IconMatterRounded.tsx +++ b/src/IconMatterRounded.tsx @@ -8,4 +8,4 @@ const IconMatterRounded: React.FC = ({ ...props }) => ( ) -export { IconMatterRounded as default } +export default IconMatterRounded diff --git a/src/IconMatterRoundedFilled.tsx b/src/IconMatterRoundedFilled.tsx index 1f76d13b4..cb6efefc6 100644 --- a/src/IconMatterRoundedFilled.tsx +++ b/src/IconMatterRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconMatterRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconMatterRoundedFilled as default } +export default IconMatterRoundedFilled diff --git a/src/IconMatterSharp.tsx b/src/IconMatterSharp.tsx index 671f120bb..368db3cd5 100644 --- a/src/IconMatterSharp.tsx +++ b/src/IconMatterSharp.tsx @@ -8,4 +8,4 @@ const IconMatterSharp: React.FC = ({ ...props }) => ( ) -export { IconMatterSharp as default } +export default IconMatterSharp diff --git a/src/IconMatterSharpFilled.tsx b/src/IconMatterSharpFilled.tsx index 291d08ac3..1f68a94f0 100644 --- a/src/IconMatterSharpFilled.tsx +++ b/src/IconMatterSharpFilled.tsx @@ -8,4 +8,4 @@ const IconMatterSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconMatterSharpFilled as default } +export default IconMatterSharpFilled diff --git a/src/IconMaximizeOutlined.tsx b/src/IconMaximizeOutlined.tsx index 745528f25..e86a512c6 100644 --- a/src/IconMaximizeOutlined.tsx +++ b/src/IconMaximizeOutlined.tsx @@ -8,4 +8,4 @@ const IconMaximizeOutlined: React.FC = ({ ...props }) => ( ) -export { IconMaximizeOutlined as default } +export default IconMaximizeOutlined diff --git a/src/IconMaximizeOutlinedFilled.tsx b/src/IconMaximizeOutlinedFilled.tsx index 6c3a9c99d..591e68c9f 100644 --- a/src/IconMaximizeOutlinedFilled.tsx +++ b/src/IconMaximizeOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconMaximizeOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconMaximizeOutlinedFilled as default } +export default IconMaximizeOutlinedFilled diff --git a/src/IconMaximizeRounded.tsx b/src/IconMaximizeRounded.tsx index e544c4ca5..bd42b513e 100644 --- a/src/IconMaximizeRounded.tsx +++ b/src/IconMaximizeRounded.tsx @@ -8,4 +8,4 @@ const IconMaximizeRounded: React.FC = ({ ...props }) => ( ) -export { IconMaximizeRounded as default } +export default IconMaximizeRounded diff --git a/src/IconMaximizeRoundedFilled.tsx b/src/IconMaximizeRoundedFilled.tsx index 09f52f631..fb8322eb5 100644 --- a/src/IconMaximizeRoundedFilled.tsx +++ b/src/IconMaximizeRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconMaximizeRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconMaximizeRoundedFilled as default } +export default IconMaximizeRoundedFilled diff --git a/src/IconMaximizeSharp.tsx b/src/IconMaximizeSharp.tsx index b39a482c9..3dfcdcc6f 100644 --- a/src/IconMaximizeSharp.tsx +++ b/src/IconMaximizeSharp.tsx @@ -8,4 +8,4 @@ const IconMaximizeSharp: React.FC = ({ ...props }) => ( ) -export { IconMaximizeSharp as default } +export default IconMaximizeSharp diff --git a/src/IconMaximizeSharpFilled.tsx b/src/IconMaximizeSharpFilled.tsx index e2ad95b49..e2f35d09b 100644 --- a/src/IconMaximizeSharpFilled.tsx +++ b/src/IconMaximizeSharpFilled.tsx @@ -8,4 +8,4 @@ const IconMaximizeSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconMaximizeSharpFilled as default } +export default IconMaximizeSharpFilled diff --git a/src/IconMeasuringTapeOutlined.tsx b/src/IconMeasuringTapeOutlined.tsx index 3673230b9..541faacfa 100644 --- a/src/IconMeasuringTapeOutlined.tsx +++ b/src/IconMeasuringTapeOutlined.tsx @@ -8,4 +8,4 @@ const IconMeasuringTapeOutlined: React.FC = ({ ...props }) => ( ) -export { IconMeasuringTapeOutlined as default } +export default IconMeasuringTapeOutlined diff --git a/src/IconMeasuringTapeOutlinedFilled.tsx b/src/IconMeasuringTapeOutlinedFilled.tsx index ce6b77a15..db1eba775 100644 --- a/src/IconMeasuringTapeOutlinedFilled.tsx +++ b/src/IconMeasuringTapeOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconMeasuringTapeOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconMeasuringTapeOutlinedFilled as default } +export default IconMeasuringTapeOutlinedFilled diff --git a/src/IconMeasuringTapeRounded.tsx b/src/IconMeasuringTapeRounded.tsx index 7680754e5..7957050b8 100644 --- a/src/IconMeasuringTapeRounded.tsx +++ b/src/IconMeasuringTapeRounded.tsx @@ -8,4 +8,4 @@ const IconMeasuringTapeRounded: React.FC = ({ ...props }) => ( ) -export { IconMeasuringTapeRounded as default } +export default IconMeasuringTapeRounded diff --git a/src/IconMeasuringTapeRoundedFilled.tsx b/src/IconMeasuringTapeRoundedFilled.tsx index 2eb422df1..f82999d12 100644 --- a/src/IconMeasuringTapeRoundedFilled.tsx +++ b/src/IconMeasuringTapeRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconMeasuringTapeRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconMeasuringTapeRoundedFilled as default } +export default IconMeasuringTapeRoundedFilled diff --git a/src/IconMeasuringTapeSharp.tsx b/src/IconMeasuringTapeSharp.tsx index c60880bf9..58f1cce23 100644 --- a/src/IconMeasuringTapeSharp.tsx +++ b/src/IconMeasuringTapeSharp.tsx @@ -8,4 +8,4 @@ const IconMeasuringTapeSharp: React.FC = ({ ...props }) => ( ) -export { IconMeasuringTapeSharp as default } +export default IconMeasuringTapeSharp diff --git a/src/IconMeasuringTapeSharpFilled.tsx b/src/IconMeasuringTapeSharpFilled.tsx index 792798d2f..0dd8d19c7 100644 --- a/src/IconMeasuringTapeSharpFilled.tsx +++ b/src/IconMeasuringTapeSharpFilled.tsx @@ -8,4 +8,4 @@ const IconMeasuringTapeSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconMeasuringTapeSharpFilled as default } +export default IconMeasuringTapeSharpFilled diff --git a/src/IconMediaBluetoothOffOutlined.tsx b/src/IconMediaBluetoothOffOutlined.tsx index 02941e41e..e65e89f8b 100644 --- a/src/IconMediaBluetoothOffOutlined.tsx +++ b/src/IconMediaBluetoothOffOutlined.tsx @@ -8,4 +8,4 @@ const IconMediaBluetoothOffOutlined: React.FC = ({ ...props }) => ( ) -export { IconMediaBluetoothOffOutlined as default } +export default IconMediaBluetoothOffOutlined diff --git a/src/IconMediaBluetoothOffOutlinedFilled.tsx b/src/IconMediaBluetoothOffOutlinedFilled.tsx index d8d7f2160..259705b9c 100644 --- a/src/IconMediaBluetoothOffOutlinedFilled.tsx +++ b/src/IconMediaBluetoothOffOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconMediaBluetoothOffOutlinedFilled: React.FC = ({ ) -export { IconMediaBluetoothOffOutlinedFilled as default } +export default IconMediaBluetoothOffOutlinedFilled diff --git a/src/IconMediaBluetoothOffRounded.tsx b/src/IconMediaBluetoothOffRounded.tsx index e05ce061c..076940582 100644 --- a/src/IconMediaBluetoothOffRounded.tsx +++ b/src/IconMediaBluetoothOffRounded.tsx @@ -8,4 +8,4 @@ const IconMediaBluetoothOffRounded: React.FC = ({ ...props }) => ( ) -export { IconMediaBluetoothOffRounded as default } +export default IconMediaBluetoothOffRounded diff --git a/src/IconMediaBluetoothOffRoundedFilled.tsx b/src/IconMediaBluetoothOffRoundedFilled.tsx index 58c40a9be..6fa1db76a 100644 --- a/src/IconMediaBluetoothOffRoundedFilled.tsx +++ b/src/IconMediaBluetoothOffRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconMediaBluetoothOffRoundedFilled: React.FC = ({ ) -export { IconMediaBluetoothOffRoundedFilled as default } +export default IconMediaBluetoothOffRoundedFilled diff --git a/src/IconMediaBluetoothOffSharp.tsx b/src/IconMediaBluetoothOffSharp.tsx index 813bdc636..0db7b92a2 100644 --- a/src/IconMediaBluetoothOffSharp.tsx +++ b/src/IconMediaBluetoothOffSharp.tsx @@ -8,4 +8,4 @@ const IconMediaBluetoothOffSharp: React.FC = ({ ...props }) => ( ) -export { IconMediaBluetoothOffSharp as default } +export default IconMediaBluetoothOffSharp diff --git a/src/IconMediaBluetoothOffSharpFilled.tsx b/src/IconMediaBluetoothOffSharpFilled.tsx index 5f6dfce41..5cb41fc19 100644 --- a/src/IconMediaBluetoothOffSharpFilled.tsx +++ b/src/IconMediaBluetoothOffSharpFilled.tsx @@ -10,4 +10,4 @@ const IconMediaBluetoothOffSharpFilled: React.FC = ({ ) -export { IconMediaBluetoothOffSharpFilled as default } +export default IconMediaBluetoothOffSharpFilled diff --git a/src/IconMediaBluetoothOnOutlined.tsx b/src/IconMediaBluetoothOnOutlined.tsx index 0de56911a..cc386ae1d 100644 --- a/src/IconMediaBluetoothOnOutlined.tsx +++ b/src/IconMediaBluetoothOnOutlined.tsx @@ -8,4 +8,4 @@ const IconMediaBluetoothOnOutlined: React.FC = ({ ...props }) => ( ) -export { IconMediaBluetoothOnOutlined as default } +export default IconMediaBluetoothOnOutlined diff --git a/src/IconMediaBluetoothOnOutlinedFilled.tsx b/src/IconMediaBluetoothOnOutlinedFilled.tsx index c9e843c23..7494af5b9 100644 --- a/src/IconMediaBluetoothOnOutlinedFilled.tsx +++ b/src/IconMediaBluetoothOnOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconMediaBluetoothOnOutlinedFilled: React.FC = ({ ) -export { IconMediaBluetoothOnOutlinedFilled as default } +export default IconMediaBluetoothOnOutlinedFilled diff --git a/src/IconMediaBluetoothOnRounded.tsx b/src/IconMediaBluetoothOnRounded.tsx index dba16ca20..73b6cefbd 100644 --- a/src/IconMediaBluetoothOnRounded.tsx +++ b/src/IconMediaBluetoothOnRounded.tsx @@ -8,4 +8,4 @@ const IconMediaBluetoothOnRounded: React.FC = ({ ...props }) => ( ) -export { IconMediaBluetoothOnRounded as default } +export default IconMediaBluetoothOnRounded diff --git a/src/IconMediaBluetoothOnRoundedFilled.tsx b/src/IconMediaBluetoothOnRoundedFilled.tsx index 78966d357..5d5b6f708 100644 --- a/src/IconMediaBluetoothOnRoundedFilled.tsx +++ b/src/IconMediaBluetoothOnRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconMediaBluetoothOnRoundedFilled: React.FC = ({ ) -export { IconMediaBluetoothOnRoundedFilled as default } +export default IconMediaBluetoothOnRoundedFilled diff --git a/src/IconMediaBluetoothOnSharp.tsx b/src/IconMediaBluetoothOnSharp.tsx index f8d084151..28c62213c 100644 --- a/src/IconMediaBluetoothOnSharp.tsx +++ b/src/IconMediaBluetoothOnSharp.tsx @@ -8,4 +8,4 @@ const IconMediaBluetoothOnSharp: React.FC = ({ ...props }) => ( ) -export { IconMediaBluetoothOnSharp as default } +export default IconMediaBluetoothOnSharp diff --git a/src/IconMediaBluetoothOnSharpFilled.tsx b/src/IconMediaBluetoothOnSharpFilled.tsx index ae112b537..e5d04ce9a 100644 --- a/src/IconMediaBluetoothOnSharpFilled.tsx +++ b/src/IconMediaBluetoothOnSharpFilled.tsx @@ -8,4 +8,4 @@ const IconMediaBluetoothOnSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconMediaBluetoothOnSharpFilled as default } +export default IconMediaBluetoothOnSharpFilled diff --git a/src/IconMediaLinkOutlined.tsx b/src/IconMediaLinkOutlined.tsx index 3531884b5..b53dc02a6 100644 --- a/src/IconMediaLinkOutlined.tsx +++ b/src/IconMediaLinkOutlined.tsx @@ -8,4 +8,4 @@ const IconMediaLinkOutlined: React.FC = ({ ...props }) => ( ) -export { IconMediaLinkOutlined as default } +export default IconMediaLinkOutlined diff --git a/src/IconMediaLinkOutlinedFilled.tsx b/src/IconMediaLinkOutlinedFilled.tsx index 3cd0027eb..a43b0ba85 100644 --- a/src/IconMediaLinkOutlinedFilled.tsx +++ b/src/IconMediaLinkOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconMediaLinkOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconMediaLinkOutlinedFilled as default } +export default IconMediaLinkOutlinedFilled diff --git a/src/IconMediaLinkRounded.tsx b/src/IconMediaLinkRounded.tsx index 903823db8..aecf81216 100644 --- a/src/IconMediaLinkRounded.tsx +++ b/src/IconMediaLinkRounded.tsx @@ -8,4 +8,4 @@ const IconMediaLinkRounded: React.FC = ({ ...props }) => ( ) -export { IconMediaLinkRounded as default } +export default IconMediaLinkRounded diff --git a/src/IconMediaLinkRoundedFilled.tsx b/src/IconMediaLinkRoundedFilled.tsx index 707016443..a80ecc324 100644 --- a/src/IconMediaLinkRoundedFilled.tsx +++ b/src/IconMediaLinkRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconMediaLinkRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconMediaLinkRoundedFilled as default } +export default IconMediaLinkRoundedFilled diff --git a/src/IconMediaLinkSharp.tsx b/src/IconMediaLinkSharp.tsx index 2edd3f28f..a6cb74a5e 100644 --- a/src/IconMediaLinkSharp.tsx +++ b/src/IconMediaLinkSharp.tsx @@ -8,4 +8,4 @@ const IconMediaLinkSharp: React.FC = ({ ...props }) => ( ) -export { IconMediaLinkSharp as default } +export default IconMediaLinkSharp diff --git a/src/IconMediaLinkSharpFilled.tsx b/src/IconMediaLinkSharpFilled.tsx index 1e520cb21..fd57801df 100644 --- a/src/IconMediaLinkSharpFilled.tsx +++ b/src/IconMediaLinkSharpFilled.tsx @@ -8,4 +8,4 @@ const IconMediaLinkSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconMediaLinkSharpFilled as default } +export default IconMediaLinkSharpFilled diff --git a/src/IconMediaOutputOffOutlined.tsx b/src/IconMediaOutputOffOutlined.tsx index 8877026e9..adb19373e 100644 --- a/src/IconMediaOutputOffOutlined.tsx +++ b/src/IconMediaOutputOffOutlined.tsx @@ -8,4 +8,4 @@ const IconMediaOutputOffOutlined: React.FC = ({ ...props }) => ( ) -export { IconMediaOutputOffOutlined as default } +export default IconMediaOutputOffOutlined diff --git a/src/IconMediaOutputOffOutlinedFilled.tsx b/src/IconMediaOutputOffOutlinedFilled.tsx index 44e8ff571..156ba16f3 100644 --- a/src/IconMediaOutputOffOutlinedFilled.tsx +++ b/src/IconMediaOutputOffOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconMediaOutputOffOutlinedFilled: React.FC = ({ ) -export { IconMediaOutputOffOutlinedFilled as default } +export default IconMediaOutputOffOutlinedFilled diff --git a/src/IconMediaOutputOffRounded.tsx b/src/IconMediaOutputOffRounded.tsx index 90d57bb80..ccd58d6f0 100644 --- a/src/IconMediaOutputOffRounded.tsx +++ b/src/IconMediaOutputOffRounded.tsx @@ -8,4 +8,4 @@ const IconMediaOutputOffRounded: React.FC = ({ ...props }) => ( ) -export { IconMediaOutputOffRounded as default } +export default IconMediaOutputOffRounded diff --git a/src/IconMediaOutputOffRoundedFilled.tsx b/src/IconMediaOutputOffRoundedFilled.tsx index 89be2a4ed..4fb6ef669 100644 --- a/src/IconMediaOutputOffRoundedFilled.tsx +++ b/src/IconMediaOutputOffRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconMediaOutputOffRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconMediaOutputOffRoundedFilled as default } +export default IconMediaOutputOffRoundedFilled diff --git a/src/IconMediaOutputOffSharp.tsx b/src/IconMediaOutputOffSharp.tsx index afae0a772..efc904f9a 100644 --- a/src/IconMediaOutputOffSharp.tsx +++ b/src/IconMediaOutputOffSharp.tsx @@ -8,4 +8,4 @@ const IconMediaOutputOffSharp: React.FC = ({ ...props }) => ( ) -export { IconMediaOutputOffSharp as default } +export default IconMediaOutputOffSharp diff --git a/src/IconMediaOutputOffSharpFilled.tsx b/src/IconMediaOutputOffSharpFilled.tsx index 3dd3ad378..bcae0058c 100644 --- a/src/IconMediaOutputOffSharpFilled.tsx +++ b/src/IconMediaOutputOffSharpFilled.tsx @@ -8,4 +8,4 @@ const IconMediaOutputOffSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconMediaOutputOffSharpFilled as default } +export default IconMediaOutputOffSharpFilled diff --git a/src/IconMediaOutputOutlined.tsx b/src/IconMediaOutputOutlined.tsx index 228a0adaa..ef9759ea1 100644 --- a/src/IconMediaOutputOutlined.tsx +++ b/src/IconMediaOutputOutlined.tsx @@ -8,4 +8,4 @@ const IconMediaOutputOutlined: React.FC = ({ ...props }) => ( ) -export { IconMediaOutputOutlined as default } +export default IconMediaOutputOutlined diff --git a/src/IconMediaOutputOutlinedFilled.tsx b/src/IconMediaOutputOutlinedFilled.tsx index 7c862bf9a..d658e2b24 100644 --- a/src/IconMediaOutputOutlinedFilled.tsx +++ b/src/IconMediaOutputOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconMediaOutputOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconMediaOutputOutlinedFilled as default } +export default IconMediaOutputOutlinedFilled diff --git a/src/IconMediaOutputRounded.tsx b/src/IconMediaOutputRounded.tsx index 8f5648650..8985e4323 100644 --- a/src/IconMediaOutputRounded.tsx +++ b/src/IconMediaOutputRounded.tsx @@ -8,4 +8,4 @@ const IconMediaOutputRounded: React.FC = ({ ...props }) => ( ) -export { IconMediaOutputRounded as default } +export default IconMediaOutputRounded diff --git a/src/IconMediaOutputRoundedFilled.tsx b/src/IconMediaOutputRoundedFilled.tsx index 35c9f1898..35bb5dc3b 100644 --- a/src/IconMediaOutputRoundedFilled.tsx +++ b/src/IconMediaOutputRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconMediaOutputRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconMediaOutputRoundedFilled as default } +export default IconMediaOutputRoundedFilled diff --git a/src/IconMediaOutputSharp.tsx b/src/IconMediaOutputSharp.tsx index 820bcbc5d..db8440424 100644 --- a/src/IconMediaOutputSharp.tsx +++ b/src/IconMediaOutputSharp.tsx @@ -8,4 +8,4 @@ const IconMediaOutputSharp: React.FC = ({ ...props }) => ( ) -export { IconMediaOutputSharp as default } +export default IconMediaOutputSharp diff --git a/src/IconMediaOutputSharpFilled.tsx b/src/IconMediaOutputSharpFilled.tsx index 8dc9f2a0b..1131c8a46 100644 --- a/src/IconMediaOutputSharpFilled.tsx +++ b/src/IconMediaOutputSharpFilled.tsx @@ -8,4 +8,4 @@ const IconMediaOutputSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconMediaOutputSharpFilled as default } +export default IconMediaOutputSharpFilled diff --git a/src/IconMediationOutlined.tsx b/src/IconMediationOutlined.tsx index 07ffea590..4c2b40c37 100644 --- a/src/IconMediationOutlined.tsx +++ b/src/IconMediationOutlined.tsx @@ -8,4 +8,4 @@ const IconMediationOutlined: React.FC = ({ ...props }) => ( ) -export { IconMediationOutlined as default } +export default IconMediationOutlined diff --git a/src/IconMediationOutlinedFilled.tsx b/src/IconMediationOutlinedFilled.tsx index 9b6000cb8..07c870561 100644 --- a/src/IconMediationOutlinedFilled.tsx +++ b/src/IconMediationOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconMediationOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconMediationOutlinedFilled as default } +export default IconMediationOutlinedFilled diff --git a/src/IconMediationRounded.tsx b/src/IconMediationRounded.tsx index 7ff5b0714..9c852bb27 100644 --- a/src/IconMediationRounded.tsx +++ b/src/IconMediationRounded.tsx @@ -8,4 +8,4 @@ const IconMediationRounded: React.FC = ({ ...props }) => ( ) -export { IconMediationRounded as default } +export default IconMediationRounded diff --git a/src/IconMediationRoundedFilled.tsx b/src/IconMediationRoundedFilled.tsx index 6f6f4e9a8..1ec9078e5 100644 --- a/src/IconMediationRoundedFilled.tsx +++ b/src/IconMediationRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconMediationRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconMediationRoundedFilled as default } +export default IconMediationRoundedFilled diff --git a/src/IconMediationSharp.tsx b/src/IconMediationSharp.tsx index 277263798..97b6bd111 100644 --- a/src/IconMediationSharp.tsx +++ b/src/IconMediationSharp.tsx @@ -8,4 +8,4 @@ const IconMediationSharp: React.FC = ({ ...props }) => ( ) -export { IconMediationSharp as default } +export default IconMediationSharp diff --git a/src/IconMediationSharpFilled.tsx b/src/IconMediationSharpFilled.tsx index 63029d553..f7aa9f5fd 100644 --- a/src/IconMediationSharpFilled.tsx +++ b/src/IconMediationSharpFilled.tsx @@ -8,4 +8,4 @@ const IconMediationSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconMediationSharpFilled as default } +export default IconMediationSharpFilled diff --git a/src/IconMedicalInformationOutlined.tsx b/src/IconMedicalInformationOutlined.tsx index ef678478b..877a9ab8b 100644 --- a/src/IconMedicalInformationOutlined.tsx +++ b/src/IconMedicalInformationOutlined.tsx @@ -8,4 +8,4 @@ const IconMedicalInformationOutlined: React.FC = ({ ...props }) => ( ) -export { IconMedicalInformationOutlined as default } +export default IconMedicalInformationOutlined diff --git a/src/IconMedicalInformationOutlinedFilled.tsx b/src/IconMedicalInformationOutlinedFilled.tsx index 41dfc3125..6ae1cc6ca 100644 --- a/src/IconMedicalInformationOutlinedFilled.tsx +++ b/src/IconMedicalInformationOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconMedicalInformationOutlinedFilled: React.FC = ({ ) -export { IconMedicalInformationOutlinedFilled as default } +export default IconMedicalInformationOutlinedFilled diff --git a/src/IconMedicalInformationRounded.tsx b/src/IconMedicalInformationRounded.tsx index d0441dd73..686b20fb2 100644 --- a/src/IconMedicalInformationRounded.tsx +++ b/src/IconMedicalInformationRounded.tsx @@ -8,4 +8,4 @@ const IconMedicalInformationRounded: React.FC = ({ ...props }) => ( ) -export { IconMedicalInformationRounded as default } +export default IconMedicalInformationRounded diff --git a/src/IconMedicalInformationRoundedFilled.tsx b/src/IconMedicalInformationRoundedFilled.tsx index 763d46b45..42d5af026 100644 --- a/src/IconMedicalInformationRoundedFilled.tsx +++ b/src/IconMedicalInformationRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconMedicalInformationRoundedFilled: React.FC = ({ ) -export { IconMedicalInformationRoundedFilled as default } +export default IconMedicalInformationRoundedFilled diff --git a/src/IconMedicalInformationSharp.tsx b/src/IconMedicalInformationSharp.tsx index 8c9e0e1ef..eeda0d144 100644 --- a/src/IconMedicalInformationSharp.tsx +++ b/src/IconMedicalInformationSharp.tsx @@ -8,4 +8,4 @@ const IconMedicalInformationSharp: React.FC = ({ ...props }) => ( ) -export { IconMedicalInformationSharp as default } +export default IconMedicalInformationSharp diff --git a/src/IconMedicalInformationSharpFilled.tsx b/src/IconMedicalInformationSharpFilled.tsx index 360689f38..d13c391ba 100644 --- a/src/IconMedicalInformationSharpFilled.tsx +++ b/src/IconMedicalInformationSharpFilled.tsx @@ -10,4 +10,4 @@ const IconMedicalInformationSharpFilled: React.FC = ({ ) -export { IconMedicalInformationSharpFilled as default } +export default IconMedicalInformationSharpFilled diff --git a/src/IconMedicalMaskOutlined.tsx b/src/IconMedicalMaskOutlined.tsx index 819b8d099..c450c7458 100644 --- a/src/IconMedicalMaskOutlined.tsx +++ b/src/IconMedicalMaskOutlined.tsx @@ -8,4 +8,4 @@ const IconMedicalMaskOutlined: React.FC = ({ ...props }) => ( ) -export { IconMedicalMaskOutlined as default } +export default IconMedicalMaskOutlined diff --git a/src/IconMedicalMaskOutlinedFilled.tsx b/src/IconMedicalMaskOutlinedFilled.tsx index 1e0a9ea0e..d50244d8f 100644 --- a/src/IconMedicalMaskOutlinedFilled.tsx +++ b/src/IconMedicalMaskOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconMedicalMaskOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconMedicalMaskOutlinedFilled as default } +export default IconMedicalMaskOutlinedFilled diff --git a/src/IconMedicalMaskRounded.tsx b/src/IconMedicalMaskRounded.tsx index ffe62a8d6..6ac562561 100644 --- a/src/IconMedicalMaskRounded.tsx +++ b/src/IconMedicalMaskRounded.tsx @@ -8,4 +8,4 @@ const IconMedicalMaskRounded: React.FC = ({ ...props }) => ( ) -export { IconMedicalMaskRounded as default } +export default IconMedicalMaskRounded diff --git a/src/IconMedicalMaskRoundedFilled.tsx b/src/IconMedicalMaskRoundedFilled.tsx index 8c6cff942..521fdc011 100644 --- a/src/IconMedicalMaskRoundedFilled.tsx +++ b/src/IconMedicalMaskRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconMedicalMaskRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconMedicalMaskRoundedFilled as default } +export default IconMedicalMaskRoundedFilled diff --git a/src/IconMedicalMaskSharp.tsx b/src/IconMedicalMaskSharp.tsx index 8f8995a36..33bad3019 100644 --- a/src/IconMedicalMaskSharp.tsx +++ b/src/IconMedicalMaskSharp.tsx @@ -8,4 +8,4 @@ const IconMedicalMaskSharp: React.FC = ({ ...props }) => ( ) -export { IconMedicalMaskSharp as default } +export default IconMedicalMaskSharp diff --git a/src/IconMedicalMaskSharpFilled.tsx b/src/IconMedicalMaskSharpFilled.tsx index d338ba91f..3235819b2 100644 --- a/src/IconMedicalMaskSharpFilled.tsx +++ b/src/IconMedicalMaskSharpFilled.tsx @@ -8,4 +8,4 @@ const IconMedicalMaskSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconMedicalMaskSharpFilled as default } +export default IconMedicalMaskSharpFilled diff --git a/src/IconMedicalServicesOutlined.tsx b/src/IconMedicalServicesOutlined.tsx index 3c2c138a7..8bbc5a04d 100644 --- a/src/IconMedicalServicesOutlined.tsx +++ b/src/IconMedicalServicesOutlined.tsx @@ -8,4 +8,4 @@ const IconMedicalServicesOutlined: React.FC = ({ ...props }) => ( ) -export { IconMedicalServicesOutlined as default } +export default IconMedicalServicesOutlined diff --git a/src/IconMedicalServicesOutlinedFilled.tsx b/src/IconMedicalServicesOutlinedFilled.tsx index 101553d3b..6e403f333 100644 --- a/src/IconMedicalServicesOutlinedFilled.tsx +++ b/src/IconMedicalServicesOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconMedicalServicesOutlinedFilled: React.FC = ({ ) -export { IconMedicalServicesOutlinedFilled as default } +export default IconMedicalServicesOutlinedFilled diff --git a/src/IconMedicalServicesRounded.tsx b/src/IconMedicalServicesRounded.tsx index bf4a7c006..dded044ba 100644 --- a/src/IconMedicalServicesRounded.tsx +++ b/src/IconMedicalServicesRounded.tsx @@ -8,4 +8,4 @@ const IconMedicalServicesRounded: React.FC = ({ ...props }) => ( ) -export { IconMedicalServicesRounded as default } +export default IconMedicalServicesRounded diff --git a/src/IconMedicalServicesRoundedFilled.tsx b/src/IconMedicalServicesRoundedFilled.tsx index a3f54827f..c523f408d 100644 --- a/src/IconMedicalServicesRoundedFilled.tsx +++ b/src/IconMedicalServicesRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconMedicalServicesRoundedFilled: React.FC = ({ ) -export { IconMedicalServicesRoundedFilled as default } +export default IconMedicalServicesRoundedFilled diff --git a/src/IconMedicalServicesSharp.tsx b/src/IconMedicalServicesSharp.tsx index 04caae050..e970d72f9 100644 --- a/src/IconMedicalServicesSharp.tsx +++ b/src/IconMedicalServicesSharp.tsx @@ -8,4 +8,4 @@ const IconMedicalServicesSharp: React.FC = ({ ...props }) => ( ) -export { IconMedicalServicesSharp as default } +export default IconMedicalServicesSharp diff --git a/src/IconMedicalServicesSharpFilled.tsx b/src/IconMedicalServicesSharpFilled.tsx index 1aac866bc..8312ba33e 100644 --- a/src/IconMedicalServicesSharpFilled.tsx +++ b/src/IconMedicalServicesSharpFilled.tsx @@ -8,4 +8,4 @@ const IconMedicalServicesSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconMedicalServicesSharpFilled as default } +export default IconMedicalServicesSharpFilled diff --git a/src/IconMedicationLiquidOutlined.tsx b/src/IconMedicationLiquidOutlined.tsx index 683b344d0..7b75ecf68 100644 --- a/src/IconMedicationLiquidOutlined.tsx +++ b/src/IconMedicationLiquidOutlined.tsx @@ -8,4 +8,4 @@ const IconMedicationLiquidOutlined: React.FC = ({ ...props }) => ( ) -export { IconMedicationLiquidOutlined as default } +export default IconMedicationLiquidOutlined diff --git a/src/IconMedicationLiquidOutlinedFilled.tsx b/src/IconMedicationLiquidOutlinedFilled.tsx index 1c0429d78..589e3c4d8 100644 --- a/src/IconMedicationLiquidOutlinedFilled.tsx +++ b/src/IconMedicationLiquidOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconMedicationLiquidOutlinedFilled: React.FC = ({ ) -export { IconMedicationLiquidOutlinedFilled as default } +export default IconMedicationLiquidOutlinedFilled diff --git a/src/IconMedicationLiquidRounded.tsx b/src/IconMedicationLiquidRounded.tsx index 256e58c67..8882d74cf 100644 --- a/src/IconMedicationLiquidRounded.tsx +++ b/src/IconMedicationLiquidRounded.tsx @@ -8,4 +8,4 @@ const IconMedicationLiquidRounded: React.FC = ({ ...props }) => ( ) -export { IconMedicationLiquidRounded as default } +export default IconMedicationLiquidRounded diff --git a/src/IconMedicationLiquidRoundedFilled.tsx b/src/IconMedicationLiquidRoundedFilled.tsx index d3e11c8eb..5cd24ee89 100644 --- a/src/IconMedicationLiquidRoundedFilled.tsx +++ b/src/IconMedicationLiquidRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconMedicationLiquidRoundedFilled: React.FC = ({ ) -export { IconMedicationLiquidRoundedFilled as default } +export default IconMedicationLiquidRoundedFilled diff --git a/src/IconMedicationLiquidSharp.tsx b/src/IconMedicationLiquidSharp.tsx index bdf4a4a1a..4ffb8d931 100644 --- a/src/IconMedicationLiquidSharp.tsx +++ b/src/IconMedicationLiquidSharp.tsx @@ -8,4 +8,4 @@ const IconMedicationLiquidSharp: React.FC = ({ ...props }) => ( ) -export { IconMedicationLiquidSharp as default } +export default IconMedicationLiquidSharp diff --git a/src/IconMedicationLiquidSharpFilled.tsx b/src/IconMedicationLiquidSharpFilled.tsx index 63ef34677..11dc51f3f 100644 --- a/src/IconMedicationLiquidSharpFilled.tsx +++ b/src/IconMedicationLiquidSharpFilled.tsx @@ -8,4 +8,4 @@ const IconMedicationLiquidSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconMedicationLiquidSharpFilled as default } +export default IconMedicationLiquidSharpFilled diff --git a/src/IconMedicationOutlined.tsx b/src/IconMedicationOutlined.tsx index 4d27d9a96..b32f14770 100644 --- a/src/IconMedicationOutlined.tsx +++ b/src/IconMedicationOutlined.tsx @@ -8,4 +8,4 @@ const IconMedicationOutlined: React.FC = ({ ...props }) => ( ) -export { IconMedicationOutlined as default } +export default IconMedicationOutlined diff --git a/src/IconMedicationOutlinedFilled.tsx b/src/IconMedicationOutlinedFilled.tsx index b18310e3e..279c543d3 100644 --- a/src/IconMedicationOutlinedFilled.tsx +++ b/src/IconMedicationOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconMedicationOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconMedicationOutlinedFilled as default } +export default IconMedicationOutlinedFilled diff --git a/src/IconMedicationRounded.tsx b/src/IconMedicationRounded.tsx index 8ad2d2aa2..312f23244 100644 --- a/src/IconMedicationRounded.tsx +++ b/src/IconMedicationRounded.tsx @@ -8,4 +8,4 @@ const IconMedicationRounded: React.FC = ({ ...props }) => ( ) -export { IconMedicationRounded as default } +export default IconMedicationRounded diff --git a/src/IconMedicationRoundedFilled.tsx b/src/IconMedicationRoundedFilled.tsx index 3e2f213cb..aba5f8a65 100644 --- a/src/IconMedicationRoundedFilled.tsx +++ b/src/IconMedicationRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconMedicationRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconMedicationRoundedFilled as default } +export default IconMedicationRoundedFilled diff --git a/src/IconMedicationSharp.tsx b/src/IconMedicationSharp.tsx index a9e3c668c..b66abb185 100644 --- a/src/IconMedicationSharp.tsx +++ b/src/IconMedicationSharp.tsx @@ -8,4 +8,4 @@ const IconMedicationSharp: React.FC = ({ ...props }) => ( ) -export { IconMedicationSharp as default } +export default IconMedicationSharp diff --git a/src/IconMedicationSharpFilled.tsx b/src/IconMedicationSharpFilled.tsx index 1a53e6d54..ff41cf1b7 100644 --- a/src/IconMedicationSharpFilled.tsx +++ b/src/IconMedicationSharpFilled.tsx @@ -8,4 +8,4 @@ const IconMedicationSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconMedicationSharpFilled as default } +export default IconMedicationSharpFilled diff --git a/src/IconMeetingRoomOutlined.tsx b/src/IconMeetingRoomOutlined.tsx index e0f2d0478..73261d80a 100644 --- a/src/IconMeetingRoomOutlined.tsx +++ b/src/IconMeetingRoomOutlined.tsx @@ -8,4 +8,4 @@ const IconMeetingRoomOutlined: React.FC = ({ ...props }) => ( ) -export { IconMeetingRoomOutlined as default } +export default IconMeetingRoomOutlined diff --git a/src/IconMeetingRoomOutlinedFilled.tsx b/src/IconMeetingRoomOutlinedFilled.tsx index ff50e765e..7b130d099 100644 --- a/src/IconMeetingRoomOutlinedFilled.tsx +++ b/src/IconMeetingRoomOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconMeetingRoomOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconMeetingRoomOutlinedFilled as default } +export default IconMeetingRoomOutlinedFilled diff --git a/src/IconMeetingRoomRounded.tsx b/src/IconMeetingRoomRounded.tsx index 925dc0948..839595f6a 100644 --- a/src/IconMeetingRoomRounded.tsx +++ b/src/IconMeetingRoomRounded.tsx @@ -8,4 +8,4 @@ const IconMeetingRoomRounded: React.FC = ({ ...props }) => ( ) -export { IconMeetingRoomRounded as default } +export default IconMeetingRoomRounded diff --git a/src/IconMeetingRoomRoundedFilled.tsx b/src/IconMeetingRoomRoundedFilled.tsx index 3ee37a1cf..7723046e8 100644 --- a/src/IconMeetingRoomRoundedFilled.tsx +++ b/src/IconMeetingRoomRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconMeetingRoomRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconMeetingRoomRoundedFilled as default } +export default IconMeetingRoomRoundedFilled diff --git a/src/IconMeetingRoomSharp.tsx b/src/IconMeetingRoomSharp.tsx index 5b38522e3..8bea7a49d 100644 --- a/src/IconMeetingRoomSharp.tsx +++ b/src/IconMeetingRoomSharp.tsx @@ -8,4 +8,4 @@ const IconMeetingRoomSharp: React.FC = ({ ...props }) => ( ) -export { IconMeetingRoomSharp as default } +export default IconMeetingRoomSharp diff --git a/src/IconMeetingRoomSharpFilled.tsx b/src/IconMeetingRoomSharpFilled.tsx index 27908b52b..cedf2d78a 100644 --- a/src/IconMeetingRoomSharpFilled.tsx +++ b/src/IconMeetingRoomSharpFilled.tsx @@ -8,4 +8,4 @@ const IconMeetingRoomSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconMeetingRoomSharpFilled as default } +export default IconMeetingRoomSharpFilled diff --git a/src/IconMemoryAltOutlined.tsx b/src/IconMemoryAltOutlined.tsx index 21c6ca7be..56ddfea21 100644 --- a/src/IconMemoryAltOutlined.tsx +++ b/src/IconMemoryAltOutlined.tsx @@ -8,4 +8,4 @@ const IconMemoryAltOutlined: React.FC = ({ ...props }) => ( ) -export { IconMemoryAltOutlined as default } +export default IconMemoryAltOutlined diff --git a/src/IconMemoryAltOutlinedFilled.tsx b/src/IconMemoryAltOutlinedFilled.tsx index 33dc38f49..d2c10158b 100644 --- a/src/IconMemoryAltOutlinedFilled.tsx +++ b/src/IconMemoryAltOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconMemoryAltOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconMemoryAltOutlinedFilled as default } +export default IconMemoryAltOutlinedFilled diff --git a/src/IconMemoryAltRounded.tsx b/src/IconMemoryAltRounded.tsx index d029b8638..cb86d3642 100644 --- a/src/IconMemoryAltRounded.tsx +++ b/src/IconMemoryAltRounded.tsx @@ -8,4 +8,4 @@ const IconMemoryAltRounded: React.FC = ({ ...props }) => ( ) -export { IconMemoryAltRounded as default } +export default IconMemoryAltRounded diff --git a/src/IconMemoryAltRoundedFilled.tsx b/src/IconMemoryAltRoundedFilled.tsx index 173869269..88200a5cc 100644 --- a/src/IconMemoryAltRoundedFilled.tsx +++ b/src/IconMemoryAltRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconMemoryAltRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconMemoryAltRoundedFilled as default } +export default IconMemoryAltRoundedFilled diff --git a/src/IconMemoryAltSharp.tsx b/src/IconMemoryAltSharp.tsx index 14d86099e..6e4532ee7 100644 --- a/src/IconMemoryAltSharp.tsx +++ b/src/IconMemoryAltSharp.tsx @@ -8,4 +8,4 @@ const IconMemoryAltSharp: React.FC = ({ ...props }) => ( ) -export { IconMemoryAltSharp as default } +export default IconMemoryAltSharp diff --git a/src/IconMemoryAltSharpFilled.tsx b/src/IconMemoryAltSharpFilled.tsx index f174963cc..abcfa1ec9 100644 --- a/src/IconMemoryAltSharpFilled.tsx +++ b/src/IconMemoryAltSharpFilled.tsx @@ -8,4 +8,4 @@ const IconMemoryAltSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconMemoryAltSharpFilled as default } +export default IconMemoryAltSharpFilled diff --git a/src/IconMemoryOutlined.tsx b/src/IconMemoryOutlined.tsx index ad45a8518..44df91add 100644 --- a/src/IconMemoryOutlined.tsx +++ b/src/IconMemoryOutlined.tsx @@ -8,4 +8,4 @@ const IconMemoryOutlined: React.FC = ({ ...props }) => ( ) -export { IconMemoryOutlined as default } +export default IconMemoryOutlined diff --git a/src/IconMemoryOutlinedFilled.tsx b/src/IconMemoryOutlinedFilled.tsx index 2ee3e15cb..30dd60f3e 100644 --- a/src/IconMemoryOutlinedFilled.tsx +++ b/src/IconMemoryOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconMemoryOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconMemoryOutlinedFilled as default } +export default IconMemoryOutlinedFilled diff --git a/src/IconMemoryRounded.tsx b/src/IconMemoryRounded.tsx index cec517cd4..c26513be6 100644 --- a/src/IconMemoryRounded.tsx +++ b/src/IconMemoryRounded.tsx @@ -8,4 +8,4 @@ const IconMemoryRounded: React.FC = ({ ...props }) => ( ) -export { IconMemoryRounded as default } +export default IconMemoryRounded diff --git a/src/IconMemoryRoundedFilled.tsx b/src/IconMemoryRoundedFilled.tsx index 489e2042d..438b795e2 100644 --- a/src/IconMemoryRoundedFilled.tsx +++ b/src/IconMemoryRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconMemoryRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconMemoryRoundedFilled as default } +export default IconMemoryRoundedFilled diff --git a/src/IconMemorySharp.tsx b/src/IconMemorySharp.tsx index 2a1c6a611..e81d16fff 100644 --- a/src/IconMemorySharp.tsx +++ b/src/IconMemorySharp.tsx @@ -8,4 +8,4 @@ const IconMemorySharp: React.FC = ({ ...props }) => ( ) -export { IconMemorySharp as default } +export default IconMemorySharp diff --git a/src/IconMemorySharpFilled.tsx b/src/IconMemorySharpFilled.tsx index c7261d08a..4b71be97f 100644 --- a/src/IconMemorySharpFilled.tsx +++ b/src/IconMemorySharpFilled.tsx @@ -8,4 +8,4 @@ const IconMemorySharpFilled: React.FC = ({ ...props }) => ( ) -export { IconMemorySharpFilled as default } +export default IconMemorySharpFilled diff --git a/src/IconMenstrualHealthOutlined.tsx b/src/IconMenstrualHealthOutlined.tsx index 0ef50fbe6..f6f548951 100644 --- a/src/IconMenstrualHealthOutlined.tsx +++ b/src/IconMenstrualHealthOutlined.tsx @@ -8,4 +8,4 @@ const IconMenstrualHealthOutlined: React.FC = ({ ...props }) => ( ) -export { IconMenstrualHealthOutlined as default } +export default IconMenstrualHealthOutlined diff --git a/src/IconMenstrualHealthOutlinedFilled.tsx b/src/IconMenstrualHealthOutlinedFilled.tsx index 5901e9ab8..8d2013f09 100644 --- a/src/IconMenstrualHealthOutlinedFilled.tsx +++ b/src/IconMenstrualHealthOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconMenstrualHealthOutlinedFilled: React.FC = ({ ) -export { IconMenstrualHealthOutlinedFilled as default } +export default IconMenstrualHealthOutlinedFilled diff --git a/src/IconMenstrualHealthRounded.tsx b/src/IconMenstrualHealthRounded.tsx index 5535e7c07..4899ea7a0 100644 --- a/src/IconMenstrualHealthRounded.tsx +++ b/src/IconMenstrualHealthRounded.tsx @@ -8,4 +8,4 @@ const IconMenstrualHealthRounded: React.FC = ({ ...props }) => ( ) -export { IconMenstrualHealthRounded as default } +export default IconMenstrualHealthRounded diff --git a/src/IconMenstrualHealthRoundedFilled.tsx b/src/IconMenstrualHealthRoundedFilled.tsx index 3ba4ae2c9..c66a4d8c0 100644 --- a/src/IconMenstrualHealthRoundedFilled.tsx +++ b/src/IconMenstrualHealthRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconMenstrualHealthRoundedFilled: React.FC = ({ ) -export { IconMenstrualHealthRoundedFilled as default } +export default IconMenstrualHealthRoundedFilled diff --git a/src/IconMenstrualHealthSharp.tsx b/src/IconMenstrualHealthSharp.tsx index 90761fb45..7a7a9c583 100644 --- a/src/IconMenstrualHealthSharp.tsx +++ b/src/IconMenstrualHealthSharp.tsx @@ -8,4 +8,4 @@ const IconMenstrualHealthSharp: React.FC = ({ ...props }) => ( ) -export { IconMenstrualHealthSharp as default } +export default IconMenstrualHealthSharp diff --git a/src/IconMenstrualHealthSharpFilled.tsx b/src/IconMenstrualHealthSharpFilled.tsx index 4bd538c59..1d295e447 100644 --- a/src/IconMenstrualHealthSharpFilled.tsx +++ b/src/IconMenstrualHealthSharpFilled.tsx @@ -8,4 +8,4 @@ const IconMenstrualHealthSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconMenstrualHealthSharpFilled as default } +export default IconMenstrualHealthSharpFilled diff --git a/src/IconMenuBookOutlined.tsx b/src/IconMenuBookOutlined.tsx index 2b8f8d8c4..821452ea7 100644 --- a/src/IconMenuBookOutlined.tsx +++ b/src/IconMenuBookOutlined.tsx @@ -8,4 +8,4 @@ const IconMenuBookOutlined: React.FC = ({ ...props }) => ( ) -export { IconMenuBookOutlined as default } +export default IconMenuBookOutlined diff --git a/src/IconMenuBookOutlinedFilled.tsx b/src/IconMenuBookOutlinedFilled.tsx index 88c1a6035..687e14326 100644 --- a/src/IconMenuBookOutlinedFilled.tsx +++ b/src/IconMenuBookOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconMenuBookOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconMenuBookOutlinedFilled as default } +export default IconMenuBookOutlinedFilled diff --git a/src/IconMenuBookRounded.tsx b/src/IconMenuBookRounded.tsx index a99e0c9de..a1cc3fefc 100644 --- a/src/IconMenuBookRounded.tsx +++ b/src/IconMenuBookRounded.tsx @@ -8,4 +8,4 @@ const IconMenuBookRounded: React.FC = ({ ...props }) => ( ) -export { IconMenuBookRounded as default } +export default IconMenuBookRounded diff --git a/src/IconMenuBookRoundedFilled.tsx b/src/IconMenuBookRoundedFilled.tsx index 68200e1fc..d597eb5b4 100644 --- a/src/IconMenuBookRoundedFilled.tsx +++ b/src/IconMenuBookRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconMenuBookRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconMenuBookRoundedFilled as default } +export default IconMenuBookRoundedFilled diff --git a/src/IconMenuBookSharp.tsx b/src/IconMenuBookSharp.tsx index 52cbcee41..d99756899 100644 --- a/src/IconMenuBookSharp.tsx +++ b/src/IconMenuBookSharp.tsx @@ -8,4 +8,4 @@ const IconMenuBookSharp: React.FC = ({ ...props }) => ( ) -export { IconMenuBookSharp as default } +export default IconMenuBookSharp diff --git a/src/IconMenuBookSharpFilled.tsx b/src/IconMenuBookSharpFilled.tsx index 33eb618bf..edc74aa6e 100644 --- a/src/IconMenuBookSharpFilled.tsx +++ b/src/IconMenuBookSharpFilled.tsx @@ -8,4 +8,4 @@ const IconMenuBookSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconMenuBookSharpFilled as default } +export default IconMenuBookSharpFilled diff --git a/src/IconMenuOpenOutlined.tsx b/src/IconMenuOpenOutlined.tsx index 3addf9249..b2fc3bf15 100644 --- a/src/IconMenuOpenOutlined.tsx +++ b/src/IconMenuOpenOutlined.tsx @@ -8,4 +8,4 @@ const IconMenuOpenOutlined: React.FC = ({ ...props }) => ( ) -export { IconMenuOpenOutlined as default } +export default IconMenuOpenOutlined diff --git a/src/IconMenuOpenOutlinedFilled.tsx b/src/IconMenuOpenOutlinedFilled.tsx index 96723d07f..0cc43a3e3 100644 --- a/src/IconMenuOpenOutlinedFilled.tsx +++ b/src/IconMenuOpenOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconMenuOpenOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconMenuOpenOutlinedFilled as default } +export default IconMenuOpenOutlinedFilled diff --git a/src/IconMenuOpenRounded.tsx b/src/IconMenuOpenRounded.tsx index 55036df1e..69ff064c7 100644 --- a/src/IconMenuOpenRounded.tsx +++ b/src/IconMenuOpenRounded.tsx @@ -8,4 +8,4 @@ const IconMenuOpenRounded: React.FC = ({ ...props }) => ( ) -export { IconMenuOpenRounded as default } +export default IconMenuOpenRounded diff --git a/src/IconMenuOpenRoundedFilled.tsx b/src/IconMenuOpenRoundedFilled.tsx index 4fd2e036a..eaf1c6e46 100644 --- a/src/IconMenuOpenRoundedFilled.tsx +++ b/src/IconMenuOpenRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconMenuOpenRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconMenuOpenRoundedFilled as default } +export default IconMenuOpenRoundedFilled diff --git a/src/IconMenuOpenSharp.tsx b/src/IconMenuOpenSharp.tsx index f7d3232b9..1eb0496d4 100644 --- a/src/IconMenuOpenSharp.tsx +++ b/src/IconMenuOpenSharp.tsx @@ -8,4 +8,4 @@ const IconMenuOpenSharp: React.FC = ({ ...props }) => ( ) -export { IconMenuOpenSharp as default } +export default IconMenuOpenSharp diff --git a/src/IconMenuOpenSharpFilled.tsx b/src/IconMenuOpenSharpFilled.tsx index ebcb3d05a..b8c86011b 100644 --- a/src/IconMenuOpenSharpFilled.tsx +++ b/src/IconMenuOpenSharpFilled.tsx @@ -8,4 +8,4 @@ const IconMenuOpenSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconMenuOpenSharpFilled as default } +export default IconMenuOpenSharpFilled diff --git a/src/IconMenuOutlined.tsx b/src/IconMenuOutlined.tsx index f081225c9..da3a98a6c 100644 --- a/src/IconMenuOutlined.tsx +++ b/src/IconMenuOutlined.tsx @@ -8,4 +8,4 @@ const IconMenuOutlined: React.FC = ({ ...props }) => ( ) -export { IconMenuOutlined as default } +export default IconMenuOutlined diff --git a/src/IconMenuOutlinedFilled.tsx b/src/IconMenuOutlinedFilled.tsx index f5f708028..acfc2e8c1 100644 --- a/src/IconMenuOutlinedFilled.tsx +++ b/src/IconMenuOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconMenuOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconMenuOutlinedFilled as default } +export default IconMenuOutlinedFilled diff --git a/src/IconMenuRounded.tsx b/src/IconMenuRounded.tsx index f5363161f..543506d3d 100644 --- a/src/IconMenuRounded.tsx +++ b/src/IconMenuRounded.tsx @@ -8,4 +8,4 @@ const IconMenuRounded: React.FC = ({ ...props }) => ( ) -export { IconMenuRounded as default } +export default IconMenuRounded diff --git a/src/IconMenuRoundedFilled.tsx b/src/IconMenuRoundedFilled.tsx index 2b81bdd32..f635b5c8f 100644 --- a/src/IconMenuRoundedFilled.tsx +++ b/src/IconMenuRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconMenuRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconMenuRoundedFilled as default } +export default IconMenuRoundedFilled diff --git a/src/IconMenuSharp.tsx b/src/IconMenuSharp.tsx index fa90231c6..af860abf9 100644 --- a/src/IconMenuSharp.tsx +++ b/src/IconMenuSharp.tsx @@ -8,4 +8,4 @@ const IconMenuSharp: React.FC = ({ ...props }) => ( ) -export { IconMenuSharp as default } +export default IconMenuSharp diff --git a/src/IconMenuSharpFilled.tsx b/src/IconMenuSharpFilled.tsx index 64f9f0727..db656678e 100644 --- a/src/IconMenuSharpFilled.tsx +++ b/src/IconMenuSharpFilled.tsx @@ -8,4 +8,4 @@ const IconMenuSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconMenuSharpFilled as default } +export default IconMenuSharpFilled diff --git a/src/IconMergeOutlined.tsx b/src/IconMergeOutlined.tsx index 1310a60b3..8f899376e 100644 --- a/src/IconMergeOutlined.tsx +++ b/src/IconMergeOutlined.tsx @@ -8,4 +8,4 @@ const IconMergeOutlined: React.FC = ({ ...props }) => ( ) -export { IconMergeOutlined as default } +export default IconMergeOutlined diff --git a/src/IconMergeOutlinedFilled.tsx b/src/IconMergeOutlinedFilled.tsx index 077f1fccf..f7e05bd53 100644 --- a/src/IconMergeOutlinedFilled.tsx +++ b/src/IconMergeOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconMergeOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconMergeOutlinedFilled as default } +export default IconMergeOutlinedFilled diff --git a/src/IconMergeRounded.tsx b/src/IconMergeRounded.tsx index 2fff7ca13..126097137 100644 --- a/src/IconMergeRounded.tsx +++ b/src/IconMergeRounded.tsx @@ -8,4 +8,4 @@ const IconMergeRounded: React.FC = ({ ...props }) => ( ) -export { IconMergeRounded as default } +export default IconMergeRounded diff --git a/src/IconMergeRoundedFilled.tsx b/src/IconMergeRoundedFilled.tsx index 9bac6ad57..3dad05c69 100644 --- a/src/IconMergeRoundedFilled.tsx +++ b/src/IconMergeRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconMergeRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconMergeRoundedFilled as default } +export default IconMergeRoundedFilled diff --git a/src/IconMergeSharp.tsx b/src/IconMergeSharp.tsx index 8997162a9..1db93c8ad 100644 --- a/src/IconMergeSharp.tsx +++ b/src/IconMergeSharp.tsx @@ -8,4 +8,4 @@ const IconMergeSharp: React.FC = ({ ...props }) => ( ) -export { IconMergeSharp as default } +export default IconMergeSharp diff --git a/src/IconMergeSharpFilled.tsx b/src/IconMergeSharpFilled.tsx index bd2eab63b..236d6d212 100644 --- a/src/IconMergeSharpFilled.tsx +++ b/src/IconMergeSharpFilled.tsx @@ -8,4 +8,4 @@ const IconMergeSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconMergeSharpFilled as default } +export default IconMergeSharpFilled diff --git a/src/IconMergeTypeOutlined.tsx b/src/IconMergeTypeOutlined.tsx index 57ead0845..e3a12e962 100644 --- a/src/IconMergeTypeOutlined.tsx +++ b/src/IconMergeTypeOutlined.tsx @@ -8,4 +8,4 @@ const IconMergeTypeOutlined: React.FC = ({ ...props }) => ( ) -export { IconMergeTypeOutlined as default } +export default IconMergeTypeOutlined diff --git a/src/IconMergeTypeOutlinedFilled.tsx b/src/IconMergeTypeOutlinedFilled.tsx index cb50500f9..81b81f47e 100644 --- a/src/IconMergeTypeOutlinedFilled.tsx +++ b/src/IconMergeTypeOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconMergeTypeOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconMergeTypeOutlinedFilled as default } +export default IconMergeTypeOutlinedFilled diff --git a/src/IconMergeTypeRounded.tsx b/src/IconMergeTypeRounded.tsx index 44bcda112..c5d8c406c 100644 --- a/src/IconMergeTypeRounded.tsx +++ b/src/IconMergeTypeRounded.tsx @@ -8,4 +8,4 @@ const IconMergeTypeRounded: React.FC = ({ ...props }) => ( ) -export { IconMergeTypeRounded as default } +export default IconMergeTypeRounded diff --git a/src/IconMergeTypeRoundedFilled.tsx b/src/IconMergeTypeRoundedFilled.tsx index 3a13e41c3..d14b52e46 100644 --- a/src/IconMergeTypeRoundedFilled.tsx +++ b/src/IconMergeTypeRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconMergeTypeRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconMergeTypeRoundedFilled as default } +export default IconMergeTypeRoundedFilled diff --git a/src/IconMergeTypeSharp.tsx b/src/IconMergeTypeSharp.tsx index 4e93f6fbb..17b246742 100644 --- a/src/IconMergeTypeSharp.tsx +++ b/src/IconMergeTypeSharp.tsx @@ -8,4 +8,4 @@ const IconMergeTypeSharp: React.FC = ({ ...props }) => ( ) -export { IconMergeTypeSharp as default } +export default IconMergeTypeSharp diff --git a/src/IconMergeTypeSharpFilled.tsx b/src/IconMergeTypeSharpFilled.tsx index 7b4b11244..71d215bb5 100644 --- a/src/IconMergeTypeSharpFilled.tsx +++ b/src/IconMergeTypeSharpFilled.tsx @@ -8,4 +8,4 @@ const IconMergeTypeSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconMergeTypeSharpFilled as default } +export default IconMergeTypeSharpFilled diff --git a/src/IconMetabolismOutlined.tsx b/src/IconMetabolismOutlined.tsx index b7112a9c3..66d622c05 100644 --- a/src/IconMetabolismOutlined.tsx +++ b/src/IconMetabolismOutlined.tsx @@ -8,4 +8,4 @@ const IconMetabolismOutlined: React.FC = ({ ...props }) => ( ) -export { IconMetabolismOutlined as default } +export default IconMetabolismOutlined diff --git a/src/IconMetabolismOutlinedFilled.tsx b/src/IconMetabolismOutlinedFilled.tsx index f1a833e74..2afe6c8e4 100644 --- a/src/IconMetabolismOutlinedFilled.tsx +++ b/src/IconMetabolismOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconMetabolismOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconMetabolismOutlinedFilled as default } +export default IconMetabolismOutlinedFilled diff --git a/src/IconMetabolismRounded.tsx b/src/IconMetabolismRounded.tsx index 45d6294be..37f1a0b8a 100644 --- a/src/IconMetabolismRounded.tsx +++ b/src/IconMetabolismRounded.tsx @@ -8,4 +8,4 @@ const IconMetabolismRounded: React.FC = ({ ...props }) => ( ) -export { IconMetabolismRounded as default } +export default IconMetabolismRounded diff --git a/src/IconMetabolismRoundedFilled.tsx b/src/IconMetabolismRoundedFilled.tsx index ec1afe4cc..89bea08a6 100644 --- a/src/IconMetabolismRoundedFilled.tsx +++ b/src/IconMetabolismRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconMetabolismRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconMetabolismRoundedFilled as default } +export default IconMetabolismRoundedFilled diff --git a/src/IconMetabolismSharp.tsx b/src/IconMetabolismSharp.tsx index e75cf63f3..5c19fd394 100644 --- a/src/IconMetabolismSharp.tsx +++ b/src/IconMetabolismSharp.tsx @@ -8,4 +8,4 @@ const IconMetabolismSharp: React.FC = ({ ...props }) => ( ) -export { IconMetabolismSharp as default } +export default IconMetabolismSharp diff --git a/src/IconMetabolismSharpFilled.tsx b/src/IconMetabolismSharpFilled.tsx index 27d41077a..2d1570220 100644 --- a/src/IconMetabolismSharpFilled.tsx +++ b/src/IconMetabolismSharpFilled.tsx @@ -8,4 +8,4 @@ const IconMetabolismSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconMetabolismSharpFilled as default } +export default IconMetabolismSharpFilled diff --git a/src/IconMetroOutlined.tsx b/src/IconMetroOutlined.tsx index 65f5038ec..6886694b8 100644 --- a/src/IconMetroOutlined.tsx +++ b/src/IconMetroOutlined.tsx @@ -8,4 +8,4 @@ const IconMetroOutlined: React.FC = ({ ...props }) => ( ) -export { IconMetroOutlined as default } +export default IconMetroOutlined diff --git a/src/IconMetroOutlinedFilled.tsx b/src/IconMetroOutlinedFilled.tsx index 122bc8ab7..c7c81ca2d 100644 --- a/src/IconMetroOutlinedFilled.tsx +++ b/src/IconMetroOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconMetroOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconMetroOutlinedFilled as default } +export default IconMetroOutlinedFilled diff --git a/src/IconMetroRounded.tsx b/src/IconMetroRounded.tsx index b36997b83..a4c63438f 100644 --- a/src/IconMetroRounded.tsx +++ b/src/IconMetroRounded.tsx @@ -8,4 +8,4 @@ const IconMetroRounded: React.FC = ({ ...props }) => ( ) -export { IconMetroRounded as default } +export default IconMetroRounded diff --git a/src/IconMetroRoundedFilled.tsx b/src/IconMetroRoundedFilled.tsx index 12c51c25e..7ab2def0e 100644 --- a/src/IconMetroRoundedFilled.tsx +++ b/src/IconMetroRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconMetroRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconMetroRoundedFilled as default } +export default IconMetroRoundedFilled diff --git a/src/IconMetroSharp.tsx b/src/IconMetroSharp.tsx index d456a18a6..290d871e3 100644 --- a/src/IconMetroSharp.tsx +++ b/src/IconMetroSharp.tsx @@ -8,4 +8,4 @@ const IconMetroSharp: React.FC = ({ ...props }) => ( ) -export { IconMetroSharp as default } +export default IconMetroSharp diff --git a/src/IconMetroSharpFilled.tsx b/src/IconMetroSharpFilled.tsx index 1da2ae363..9e9eef1c4 100644 --- a/src/IconMetroSharpFilled.tsx +++ b/src/IconMetroSharpFilled.tsx @@ -8,4 +8,4 @@ const IconMetroSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconMetroSharpFilled as default } +export default IconMetroSharpFilled diff --git a/src/IconMfgNestYaleLockOutlined.tsx b/src/IconMfgNestYaleLockOutlined.tsx index 9585a1622..95e32e5dc 100644 --- a/src/IconMfgNestYaleLockOutlined.tsx +++ b/src/IconMfgNestYaleLockOutlined.tsx @@ -8,4 +8,4 @@ const IconMfgNestYaleLockOutlined: React.FC = ({ ...props }) => ( ) -export { IconMfgNestYaleLockOutlined as default } +export default IconMfgNestYaleLockOutlined diff --git a/src/IconMfgNestYaleLockOutlinedFilled.tsx b/src/IconMfgNestYaleLockOutlinedFilled.tsx index 08e0fd53f..fb43302da 100644 --- a/src/IconMfgNestYaleLockOutlinedFilled.tsx +++ b/src/IconMfgNestYaleLockOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconMfgNestYaleLockOutlinedFilled: React.FC = ({ ) -export { IconMfgNestYaleLockOutlinedFilled as default } +export default IconMfgNestYaleLockOutlinedFilled diff --git a/src/IconMfgNestYaleLockRounded.tsx b/src/IconMfgNestYaleLockRounded.tsx index 6a6e56ab4..b87ad9dc1 100644 --- a/src/IconMfgNestYaleLockRounded.tsx +++ b/src/IconMfgNestYaleLockRounded.tsx @@ -8,4 +8,4 @@ const IconMfgNestYaleLockRounded: React.FC = ({ ...props }) => ( ) -export { IconMfgNestYaleLockRounded as default } +export default IconMfgNestYaleLockRounded diff --git a/src/IconMfgNestYaleLockRoundedFilled.tsx b/src/IconMfgNestYaleLockRoundedFilled.tsx index 42288a091..ff1f780a1 100644 --- a/src/IconMfgNestYaleLockRoundedFilled.tsx +++ b/src/IconMfgNestYaleLockRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconMfgNestYaleLockRoundedFilled: React.FC = ({ ) -export { IconMfgNestYaleLockRoundedFilled as default } +export default IconMfgNestYaleLockRoundedFilled diff --git a/src/IconMfgNestYaleLockSharp.tsx b/src/IconMfgNestYaleLockSharp.tsx index 4dd5186ac..67f17987c 100644 --- a/src/IconMfgNestYaleLockSharp.tsx +++ b/src/IconMfgNestYaleLockSharp.tsx @@ -8,4 +8,4 @@ const IconMfgNestYaleLockSharp: React.FC = ({ ...props }) => ( ) -export { IconMfgNestYaleLockSharp as default } +export default IconMfgNestYaleLockSharp diff --git a/src/IconMfgNestYaleLockSharpFilled.tsx b/src/IconMfgNestYaleLockSharpFilled.tsx index 598ae54f3..95a785082 100644 --- a/src/IconMfgNestYaleLockSharpFilled.tsx +++ b/src/IconMfgNestYaleLockSharpFilled.tsx @@ -8,4 +8,4 @@ const IconMfgNestYaleLockSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconMfgNestYaleLockSharpFilled as default } +export default IconMfgNestYaleLockSharpFilled diff --git a/src/IconMicDoubleOutlined.tsx b/src/IconMicDoubleOutlined.tsx index 50ae4fc48..9781e5619 100644 --- a/src/IconMicDoubleOutlined.tsx +++ b/src/IconMicDoubleOutlined.tsx @@ -8,4 +8,4 @@ const IconMicDoubleOutlined: React.FC = ({ ...props }) => ( ) -export { IconMicDoubleOutlined as default } +export default IconMicDoubleOutlined diff --git a/src/IconMicDoubleOutlinedFilled.tsx b/src/IconMicDoubleOutlinedFilled.tsx index 3e0b38e3f..91d5289b6 100644 --- a/src/IconMicDoubleOutlinedFilled.tsx +++ b/src/IconMicDoubleOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconMicDoubleOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconMicDoubleOutlinedFilled as default } +export default IconMicDoubleOutlinedFilled diff --git a/src/IconMicDoubleRounded.tsx b/src/IconMicDoubleRounded.tsx index 8fe860c9b..fdee32dfd 100644 --- a/src/IconMicDoubleRounded.tsx +++ b/src/IconMicDoubleRounded.tsx @@ -8,4 +8,4 @@ const IconMicDoubleRounded: React.FC = ({ ...props }) => ( ) -export { IconMicDoubleRounded as default } +export default IconMicDoubleRounded diff --git a/src/IconMicDoubleRoundedFilled.tsx b/src/IconMicDoubleRoundedFilled.tsx index 6f90cbde2..8027aed1b 100644 --- a/src/IconMicDoubleRoundedFilled.tsx +++ b/src/IconMicDoubleRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconMicDoubleRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconMicDoubleRoundedFilled as default } +export default IconMicDoubleRoundedFilled diff --git a/src/IconMicDoubleSharp.tsx b/src/IconMicDoubleSharp.tsx index c42ba31a3..7101efbac 100644 --- a/src/IconMicDoubleSharp.tsx +++ b/src/IconMicDoubleSharp.tsx @@ -8,4 +8,4 @@ const IconMicDoubleSharp: React.FC = ({ ...props }) => ( ) -export { IconMicDoubleSharp as default } +export default IconMicDoubleSharp diff --git a/src/IconMicDoubleSharpFilled.tsx b/src/IconMicDoubleSharpFilled.tsx index c63be13e0..9e071d485 100644 --- a/src/IconMicDoubleSharpFilled.tsx +++ b/src/IconMicDoubleSharpFilled.tsx @@ -8,4 +8,4 @@ const IconMicDoubleSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconMicDoubleSharpFilled as default } +export default IconMicDoubleSharpFilled diff --git a/src/IconMicExternalOffOutlined.tsx b/src/IconMicExternalOffOutlined.tsx index 3e530b786..793ad4678 100644 --- a/src/IconMicExternalOffOutlined.tsx +++ b/src/IconMicExternalOffOutlined.tsx @@ -8,4 +8,4 @@ const IconMicExternalOffOutlined: React.FC = ({ ...props }) => ( ) -export { IconMicExternalOffOutlined as default } +export default IconMicExternalOffOutlined diff --git a/src/IconMicExternalOffOutlinedFilled.tsx b/src/IconMicExternalOffOutlinedFilled.tsx index 0327d1768..9ed7cacb4 100644 --- a/src/IconMicExternalOffOutlinedFilled.tsx +++ b/src/IconMicExternalOffOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconMicExternalOffOutlinedFilled: React.FC = ({ ) -export { IconMicExternalOffOutlinedFilled as default } +export default IconMicExternalOffOutlinedFilled diff --git a/src/IconMicExternalOffRounded.tsx b/src/IconMicExternalOffRounded.tsx index f3e0577c7..991273347 100644 --- a/src/IconMicExternalOffRounded.tsx +++ b/src/IconMicExternalOffRounded.tsx @@ -8,4 +8,4 @@ const IconMicExternalOffRounded: React.FC = ({ ...props }) => ( ) -export { IconMicExternalOffRounded as default } +export default IconMicExternalOffRounded diff --git a/src/IconMicExternalOffRoundedFilled.tsx b/src/IconMicExternalOffRoundedFilled.tsx index 977b0a9fe..28be91934 100644 --- a/src/IconMicExternalOffRoundedFilled.tsx +++ b/src/IconMicExternalOffRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconMicExternalOffRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconMicExternalOffRoundedFilled as default } +export default IconMicExternalOffRoundedFilled diff --git a/src/IconMicExternalOffSharp.tsx b/src/IconMicExternalOffSharp.tsx index 46f2d11ff..b8184a4ad 100644 --- a/src/IconMicExternalOffSharp.tsx +++ b/src/IconMicExternalOffSharp.tsx @@ -8,4 +8,4 @@ const IconMicExternalOffSharp: React.FC = ({ ...props }) => ( ) -export { IconMicExternalOffSharp as default } +export default IconMicExternalOffSharp diff --git a/src/IconMicExternalOffSharpFilled.tsx b/src/IconMicExternalOffSharpFilled.tsx index 4499e6538..e86cb11a6 100644 --- a/src/IconMicExternalOffSharpFilled.tsx +++ b/src/IconMicExternalOffSharpFilled.tsx @@ -8,4 +8,4 @@ const IconMicExternalOffSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconMicExternalOffSharpFilled as default } +export default IconMicExternalOffSharpFilled diff --git a/src/IconMicExternalOnOutlined.tsx b/src/IconMicExternalOnOutlined.tsx index 81002c0cd..ec7b2fc23 100644 --- a/src/IconMicExternalOnOutlined.tsx +++ b/src/IconMicExternalOnOutlined.tsx @@ -8,4 +8,4 @@ const IconMicExternalOnOutlined: React.FC = ({ ...props }) => ( ) -export { IconMicExternalOnOutlined as default } +export default IconMicExternalOnOutlined diff --git a/src/IconMicExternalOnOutlinedFilled.tsx b/src/IconMicExternalOnOutlinedFilled.tsx index 56abba491..d93aa1eed 100644 --- a/src/IconMicExternalOnOutlinedFilled.tsx +++ b/src/IconMicExternalOnOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconMicExternalOnOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconMicExternalOnOutlinedFilled as default } +export default IconMicExternalOnOutlinedFilled diff --git a/src/IconMicExternalOnRounded.tsx b/src/IconMicExternalOnRounded.tsx index 7b20de19e..96af10347 100644 --- a/src/IconMicExternalOnRounded.tsx +++ b/src/IconMicExternalOnRounded.tsx @@ -8,4 +8,4 @@ const IconMicExternalOnRounded: React.FC = ({ ...props }) => ( ) -export { IconMicExternalOnRounded as default } +export default IconMicExternalOnRounded diff --git a/src/IconMicExternalOnRoundedFilled.tsx b/src/IconMicExternalOnRoundedFilled.tsx index 0b13cdb40..1a772059a 100644 --- a/src/IconMicExternalOnRoundedFilled.tsx +++ b/src/IconMicExternalOnRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconMicExternalOnRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconMicExternalOnRoundedFilled as default } +export default IconMicExternalOnRoundedFilled diff --git a/src/IconMicExternalOnSharp.tsx b/src/IconMicExternalOnSharp.tsx index 84c026686..c831b7b7e 100644 --- a/src/IconMicExternalOnSharp.tsx +++ b/src/IconMicExternalOnSharp.tsx @@ -8,4 +8,4 @@ const IconMicExternalOnSharp: React.FC = ({ ...props }) => ( ) -export { IconMicExternalOnSharp as default } +export default IconMicExternalOnSharp diff --git a/src/IconMicExternalOnSharpFilled.tsx b/src/IconMicExternalOnSharpFilled.tsx index 9d1a35404..009b7316b 100644 --- a/src/IconMicExternalOnSharpFilled.tsx +++ b/src/IconMicExternalOnSharpFilled.tsx @@ -8,4 +8,4 @@ const IconMicExternalOnSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconMicExternalOnSharpFilled as default } +export default IconMicExternalOnSharpFilled diff --git a/src/IconMicOffOutlined.tsx b/src/IconMicOffOutlined.tsx index fa1672ede..12235dae4 100644 --- a/src/IconMicOffOutlined.tsx +++ b/src/IconMicOffOutlined.tsx @@ -8,4 +8,4 @@ const IconMicOffOutlined: React.FC = ({ ...props }) => ( ) -export { IconMicOffOutlined as default } +export default IconMicOffOutlined diff --git a/src/IconMicOffOutlinedFilled.tsx b/src/IconMicOffOutlinedFilled.tsx index d5a791197..422214c26 100644 --- a/src/IconMicOffOutlinedFilled.tsx +++ b/src/IconMicOffOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconMicOffOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconMicOffOutlinedFilled as default } +export default IconMicOffOutlinedFilled diff --git a/src/IconMicOffRounded.tsx b/src/IconMicOffRounded.tsx index 09476e54f..d9f9045ef 100644 --- a/src/IconMicOffRounded.tsx +++ b/src/IconMicOffRounded.tsx @@ -8,4 +8,4 @@ const IconMicOffRounded: React.FC = ({ ...props }) => ( ) -export { IconMicOffRounded as default } +export default IconMicOffRounded diff --git a/src/IconMicOffRoundedFilled.tsx b/src/IconMicOffRoundedFilled.tsx index 8719b009b..b0301a8f7 100644 --- a/src/IconMicOffRoundedFilled.tsx +++ b/src/IconMicOffRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconMicOffRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconMicOffRoundedFilled as default } +export default IconMicOffRoundedFilled diff --git a/src/IconMicOffSharp.tsx b/src/IconMicOffSharp.tsx index 532849cf6..3c2164e73 100644 --- a/src/IconMicOffSharp.tsx +++ b/src/IconMicOffSharp.tsx @@ -8,4 +8,4 @@ const IconMicOffSharp: React.FC = ({ ...props }) => ( ) -export { IconMicOffSharp as default } +export default IconMicOffSharp diff --git a/src/IconMicOffSharpFilled.tsx b/src/IconMicOffSharpFilled.tsx index 53b581c9e..91664b0a2 100644 --- a/src/IconMicOffSharpFilled.tsx +++ b/src/IconMicOffSharpFilled.tsx @@ -8,4 +8,4 @@ const IconMicOffSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconMicOffSharpFilled as default } +export default IconMicOffSharpFilled diff --git a/src/IconMicOutlined.tsx b/src/IconMicOutlined.tsx index 7aea50846..e8be2b343 100644 --- a/src/IconMicOutlined.tsx +++ b/src/IconMicOutlined.tsx @@ -8,4 +8,4 @@ const IconMicOutlined: React.FC = ({ ...props }) => ( ) -export { IconMicOutlined as default } +export default IconMicOutlined diff --git a/src/IconMicOutlinedFilled.tsx b/src/IconMicOutlinedFilled.tsx index b5398b715..717df0dfe 100644 --- a/src/IconMicOutlinedFilled.tsx +++ b/src/IconMicOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconMicOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconMicOutlinedFilled as default } +export default IconMicOutlinedFilled diff --git a/src/IconMicRounded.tsx b/src/IconMicRounded.tsx index 2a57a2b93..5aa2fdea0 100644 --- a/src/IconMicRounded.tsx +++ b/src/IconMicRounded.tsx @@ -8,4 +8,4 @@ const IconMicRounded: React.FC = ({ ...props }) => ( ) -export { IconMicRounded as default } +export default IconMicRounded diff --git a/src/IconMicRoundedFilled.tsx b/src/IconMicRoundedFilled.tsx index f2ac30e3a..6084965da 100644 --- a/src/IconMicRoundedFilled.tsx +++ b/src/IconMicRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconMicRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconMicRoundedFilled as default } +export default IconMicRoundedFilled diff --git a/src/IconMicSharp.tsx b/src/IconMicSharp.tsx index 703f3b8d1..b0cb8c2ae 100644 --- a/src/IconMicSharp.tsx +++ b/src/IconMicSharp.tsx @@ -8,4 +8,4 @@ const IconMicSharp: React.FC = ({ ...props }) => ( ) -export { IconMicSharp as default } +export default IconMicSharp diff --git a/src/IconMicSharpFilled.tsx b/src/IconMicSharpFilled.tsx index 0322e0218..b5aaaaf95 100644 --- a/src/IconMicSharpFilled.tsx +++ b/src/IconMicSharpFilled.tsx @@ -8,4 +8,4 @@ const IconMicSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconMicSharpFilled as default } +export default IconMicSharpFilled diff --git a/src/IconMicrobiologyOutlined.tsx b/src/IconMicrobiologyOutlined.tsx index a8af06eca..0f2eccb8c 100644 --- a/src/IconMicrobiologyOutlined.tsx +++ b/src/IconMicrobiologyOutlined.tsx @@ -8,4 +8,4 @@ const IconMicrobiologyOutlined: React.FC = ({ ...props }) => ( ) -export { IconMicrobiologyOutlined as default } +export default IconMicrobiologyOutlined diff --git a/src/IconMicrobiologyOutlinedFilled.tsx b/src/IconMicrobiologyOutlinedFilled.tsx index b3036dc80..3c1ba5299 100644 --- a/src/IconMicrobiologyOutlinedFilled.tsx +++ b/src/IconMicrobiologyOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconMicrobiologyOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconMicrobiologyOutlinedFilled as default } +export default IconMicrobiologyOutlinedFilled diff --git a/src/IconMicrobiologyRounded.tsx b/src/IconMicrobiologyRounded.tsx index 95bb8ec7f..c5710c610 100644 --- a/src/IconMicrobiologyRounded.tsx +++ b/src/IconMicrobiologyRounded.tsx @@ -8,4 +8,4 @@ const IconMicrobiologyRounded: React.FC = ({ ...props }) => ( ) -export { IconMicrobiologyRounded as default } +export default IconMicrobiologyRounded diff --git a/src/IconMicrobiologyRoundedFilled.tsx b/src/IconMicrobiologyRoundedFilled.tsx index 56b857009..2ac577238 100644 --- a/src/IconMicrobiologyRoundedFilled.tsx +++ b/src/IconMicrobiologyRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconMicrobiologyRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconMicrobiologyRoundedFilled as default } +export default IconMicrobiologyRoundedFilled diff --git a/src/IconMicrobiologySharp.tsx b/src/IconMicrobiologySharp.tsx index 1f2d4aa21..69bd5b27f 100644 --- a/src/IconMicrobiologySharp.tsx +++ b/src/IconMicrobiologySharp.tsx @@ -8,4 +8,4 @@ const IconMicrobiologySharp: React.FC = ({ ...props }) => ( ) -export { IconMicrobiologySharp as default } +export default IconMicrobiologySharp diff --git a/src/IconMicrobiologySharpFilled.tsx b/src/IconMicrobiologySharpFilled.tsx index 03ff4fc19..8f1c3ff29 100644 --- a/src/IconMicrobiologySharpFilled.tsx +++ b/src/IconMicrobiologySharpFilled.tsx @@ -8,4 +8,4 @@ const IconMicrobiologySharpFilled: React.FC = ({ ...props }) => ( ) -export { IconMicrobiologySharpFilled as default } +export default IconMicrobiologySharpFilled diff --git a/src/IconMicrowaveGenOutlined.tsx b/src/IconMicrowaveGenOutlined.tsx index 58c9983d8..3a135d36a 100644 --- a/src/IconMicrowaveGenOutlined.tsx +++ b/src/IconMicrowaveGenOutlined.tsx @@ -8,4 +8,4 @@ const IconMicrowaveGenOutlined: React.FC = ({ ...props }) => ( ) -export { IconMicrowaveGenOutlined as default } +export default IconMicrowaveGenOutlined diff --git a/src/IconMicrowaveGenOutlinedFilled.tsx b/src/IconMicrowaveGenOutlinedFilled.tsx index 14f3b182b..50ae9fff3 100644 --- a/src/IconMicrowaveGenOutlinedFilled.tsx +++ b/src/IconMicrowaveGenOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconMicrowaveGenOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconMicrowaveGenOutlinedFilled as default } +export default IconMicrowaveGenOutlinedFilled diff --git a/src/IconMicrowaveGenRounded.tsx b/src/IconMicrowaveGenRounded.tsx index 0818944e1..a29c94fae 100644 --- a/src/IconMicrowaveGenRounded.tsx +++ b/src/IconMicrowaveGenRounded.tsx @@ -8,4 +8,4 @@ const IconMicrowaveGenRounded: React.FC = ({ ...props }) => ( ) -export { IconMicrowaveGenRounded as default } +export default IconMicrowaveGenRounded diff --git a/src/IconMicrowaveGenRoundedFilled.tsx b/src/IconMicrowaveGenRoundedFilled.tsx index 95f728319..a849ce75d 100644 --- a/src/IconMicrowaveGenRoundedFilled.tsx +++ b/src/IconMicrowaveGenRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconMicrowaveGenRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconMicrowaveGenRoundedFilled as default } +export default IconMicrowaveGenRoundedFilled diff --git a/src/IconMicrowaveGenSharp.tsx b/src/IconMicrowaveGenSharp.tsx index 258f846ce..f520e688a 100644 --- a/src/IconMicrowaveGenSharp.tsx +++ b/src/IconMicrowaveGenSharp.tsx @@ -8,4 +8,4 @@ const IconMicrowaveGenSharp: React.FC = ({ ...props }) => ( ) -export { IconMicrowaveGenSharp as default } +export default IconMicrowaveGenSharp diff --git a/src/IconMicrowaveGenSharpFilled.tsx b/src/IconMicrowaveGenSharpFilled.tsx index a1cc2034f..4472c7cfc 100644 --- a/src/IconMicrowaveGenSharpFilled.tsx +++ b/src/IconMicrowaveGenSharpFilled.tsx @@ -8,4 +8,4 @@ const IconMicrowaveGenSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconMicrowaveGenSharpFilled as default } +export default IconMicrowaveGenSharpFilled diff --git a/src/IconMicrowaveOutlined.tsx b/src/IconMicrowaveOutlined.tsx index 8aa8c63c0..8651b8e56 100644 --- a/src/IconMicrowaveOutlined.tsx +++ b/src/IconMicrowaveOutlined.tsx @@ -8,4 +8,4 @@ const IconMicrowaveOutlined: React.FC = ({ ...props }) => ( ) -export { IconMicrowaveOutlined as default } +export default IconMicrowaveOutlined diff --git a/src/IconMicrowaveOutlinedFilled.tsx b/src/IconMicrowaveOutlinedFilled.tsx index e7976d16d..5eaaabc94 100644 --- a/src/IconMicrowaveOutlinedFilled.tsx +++ b/src/IconMicrowaveOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconMicrowaveOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconMicrowaveOutlinedFilled as default } +export default IconMicrowaveOutlinedFilled diff --git a/src/IconMicrowaveRounded.tsx b/src/IconMicrowaveRounded.tsx index 231e4bcf6..f18085615 100644 --- a/src/IconMicrowaveRounded.tsx +++ b/src/IconMicrowaveRounded.tsx @@ -8,4 +8,4 @@ const IconMicrowaveRounded: React.FC = ({ ...props }) => ( ) -export { IconMicrowaveRounded as default } +export default IconMicrowaveRounded diff --git a/src/IconMicrowaveRoundedFilled.tsx b/src/IconMicrowaveRoundedFilled.tsx index 4885d7f16..cac23ca56 100644 --- a/src/IconMicrowaveRoundedFilled.tsx +++ b/src/IconMicrowaveRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconMicrowaveRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconMicrowaveRoundedFilled as default } +export default IconMicrowaveRoundedFilled diff --git a/src/IconMicrowaveSharp.tsx b/src/IconMicrowaveSharp.tsx index e8c5934a9..a7026c679 100644 --- a/src/IconMicrowaveSharp.tsx +++ b/src/IconMicrowaveSharp.tsx @@ -8,4 +8,4 @@ const IconMicrowaveSharp: React.FC = ({ ...props }) => ( ) -export { IconMicrowaveSharp as default } +export default IconMicrowaveSharp diff --git a/src/IconMicrowaveSharpFilled.tsx b/src/IconMicrowaveSharpFilled.tsx index cffecce53..bfe16af10 100644 --- a/src/IconMicrowaveSharpFilled.tsx +++ b/src/IconMicrowaveSharpFilled.tsx @@ -8,4 +8,4 @@ const IconMicrowaveSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconMicrowaveSharpFilled as default } +export default IconMicrowaveSharpFilled diff --git a/src/IconMilitaryTechOutlined.tsx b/src/IconMilitaryTechOutlined.tsx index 36c580eb0..69b187510 100644 --- a/src/IconMilitaryTechOutlined.tsx +++ b/src/IconMilitaryTechOutlined.tsx @@ -8,4 +8,4 @@ const IconMilitaryTechOutlined: React.FC = ({ ...props }) => ( ) -export { IconMilitaryTechOutlined as default } +export default IconMilitaryTechOutlined diff --git a/src/IconMilitaryTechOutlinedFilled.tsx b/src/IconMilitaryTechOutlinedFilled.tsx index 172acc01a..b5a72af62 100644 --- a/src/IconMilitaryTechOutlinedFilled.tsx +++ b/src/IconMilitaryTechOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconMilitaryTechOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconMilitaryTechOutlinedFilled as default } +export default IconMilitaryTechOutlinedFilled diff --git a/src/IconMilitaryTechRounded.tsx b/src/IconMilitaryTechRounded.tsx index f672fb954..ea4d9e767 100644 --- a/src/IconMilitaryTechRounded.tsx +++ b/src/IconMilitaryTechRounded.tsx @@ -8,4 +8,4 @@ const IconMilitaryTechRounded: React.FC = ({ ...props }) => ( ) -export { IconMilitaryTechRounded as default } +export default IconMilitaryTechRounded diff --git a/src/IconMilitaryTechRoundedFilled.tsx b/src/IconMilitaryTechRoundedFilled.tsx index 09936b1b6..3aacdae9a 100644 --- a/src/IconMilitaryTechRoundedFilled.tsx +++ b/src/IconMilitaryTechRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconMilitaryTechRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconMilitaryTechRoundedFilled as default } +export default IconMilitaryTechRoundedFilled diff --git a/src/IconMilitaryTechSharp.tsx b/src/IconMilitaryTechSharp.tsx index 66529486a..824c2ef11 100644 --- a/src/IconMilitaryTechSharp.tsx +++ b/src/IconMilitaryTechSharp.tsx @@ -8,4 +8,4 @@ const IconMilitaryTechSharp: React.FC = ({ ...props }) => ( ) -export { IconMilitaryTechSharp as default } +export default IconMilitaryTechSharp diff --git a/src/IconMilitaryTechSharpFilled.tsx b/src/IconMilitaryTechSharpFilled.tsx index 9de1e4c94..ab297fd06 100644 --- a/src/IconMilitaryTechSharpFilled.tsx +++ b/src/IconMilitaryTechSharpFilled.tsx @@ -8,4 +8,4 @@ const IconMilitaryTechSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconMilitaryTechSharpFilled as default } +export default IconMilitaryTechSharpFilled diff --git a/src/IconMimoDisconnectOutlined.tsx b/src/IconMimoDisconnectOutlined.tsx index c4eb6d036..bee4be338 100644 --- a/src/IconMimoDisconnectOutlined.tsx +++ b/src/IconMimoDisconnectOutlined.tsx @@ -8,4 +8,4 @@ const IconMimoDisconnectOutlined: React.FC = ({ ...props }) => ( ) -export { IconMimoDisconnectOutlined as default } +export default IconMimoDisconnectOutlined diff --git a/src/IconMimoDisconnectOutlinedFilled.tsx b/src/IconMimoDisconnectOutlinedFilled.tsx index 5b0a3c66c..c86eafec0 100644 --- a/src/IconMimoDisconnectOutlinedFilled.tsx +++ b/src/IconMimoDisconnectOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconMimoDisconnectOutlinedFilled: React.FC = ({ ) -export { IconMimoDisconnectOutlinedFilled as default } +export default IconMimoDisconnectOutlinedFilled diff --git a/src/IconMimoDisconnectRounded.tsx b/src/IconMimoDisconnectRounded.tsx index 1ded7fbba..4c555ea47 100644 --- a/src/IconMimoDisconnectRounded.tsx +++ b/src/IconMimoDisconnectRounded.tsx @@ -8,4 +8,4 @@ const IconMimoDisconnectRounded: React.FC = ({ ...props }) => ( ) -export { IconMimoDisconnectRounded as default } +export default IconMimoDisconnectRounded diff --git a/src/IconMimoDisconnectRoundedFilled.tsx b/src/IconMimoDisconnectRoundedFilled.tsx index cfafd7e12..ac056d6b9 100644 --- a/src/IconMimoDisconnectRoundedFilled.tsx +++ b/src/IconMimoDisconnectRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconMimoDisconnectRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconMimoDisconnectRoundedFilled as default } +export default IconMimoDisconnectRoundedFilled diff --git a/src/IconMimoDisconnectSharp.tsx b/src/IconMimoDisconnectSharp.tsx index cdd78a800..8beb2f016 100644 --- a/src/IconMimoDisconnectSharp.tsx +++ b/src/IconMimoDisconnectSharp.tsx @@ -8,4 +8,4 @@ const IconMimoDisconnectSharp: React.FC = ({ ...props }) => ( ) -export { IconMimoDisconnectSharp as default } +export default IconMimoDisconnectSharp diff --git a/src/IconMimoDisconnectSharpFilled.tsx b/src/IconMimoDisconnectSharpFilled.tsx index fb298b180..c48260fe6 100644 --- a/src/IconMimoDisconnectSharpFilled.tsx +++ b/src/IconMimoDisconnectSharpFilled.tsx @@ -8,4 +8,4 @@ const IconMimoDisconnectSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconMimoDisconnectSharpFilled as default } +export default IconMimoDisconnectSharpFilled diff --git a/src/IconMimoOutlined.tsx b/src/IconMimoOutlined.tsx index bfbc27226..d0c34d483 100644 --- a/src/IconMimoOutlined.tsx +++ b/src/IconMimoOutlined.tsx @@ -8,4 +8,4 @@ const IconMimoOutlined: React.FC = ({ ...props }) => ( ) -export { IconMimoOutlined as default } +export default IconMimoOutlined diff --git a/src/IconMimoOutlinedFilled.tsx b/src/IconMimoOutlinedFilled.tsx index 545598062..77f5825d6 100644 --- a/src/IconMimoOutlinedFilled.tsx +++ b/src/IconMimoOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconMimoOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconMimoOutlinedFilled as default } +export default IconMimoOutlinedFilled diff --git a/src/IconMimoRounded.tsx b/src/IconMimoRounded.tsx index 39be33c47..29253a18c 100644 --- a/src/IconMimoRounded.tsx +++ b/src/IconMimoRounded.tsx @@ -8,4 +8,4 @@ const IconMimoRounded: React.FC = ({ ...props }) => ( ) -export { IconMimoRounded as default } +export default IconMimoRounded diff --git a/src/IconMimoRoundedFilled.tsx b/src/IconMimoRoundedFilled.tsx index c530f688b..9fcac5e2e 100644 --- a/src/IconMimoRoundedFilled.tsx +++ b/src/IconMimoRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconMimoRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconMimoRoundedFilled as default } +export default IconMimoRoundedFilled diff --git a/src/IconMimoSharp.tsx b/src/IconMimoSharp.tsx index bbb10941c..7e1e01efb 100644 --- a/src/IconMimoSharp.tsx +++ b/src/IconMimoSharp.tsx @@ -8,4 +8,4 @@ const IconMimoSharp: React.FC = ({ ...props }) => ( ) -export { IconMimoSharp as default } +export default IconMimoSharp diff --git a/src/IconMimoSharpFilled.tsx b/src/IconMimoSharpFilled.tsx index 8410ddb7c..f9d23fa95 100644 --- a/src/IconMimoSharpFilled.tsx +++ b/src/IconMimoSharpFilled.tsx @@ -8,4 +8,4 @@ const IconMimoSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconMimoSharpFilled as default } +export default IconMimoSharpFilled diff --git a/src/IconMindfulnessOutlined.tsx b/src/IconMindfulnessOutlined.tsx index d445a6862..ce87a1402 100644 --- a/src/IconMindfulnessOutlined.tsx +++ b/src/IconMindfulnessOutlined.tsx @@ -8,4 +8,4 @@ const IconMindfulnessOutlined: React.FC = ({ ...props }) => ( ) -export { IconMindfulnessOutlined as default } +export default IconMindfulnessOutlined diff --git a/src/IconMindfulnessOutlinedFilled.tsx b/src/IconMindfulnessOutlinedFilled.tsx index d452ac20a..c64ba6051 100644 --- a/src/IconMindfulnessOutlinedFilled.tsx +++ b/src/IconMindfulnessOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconMindfulnessOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconMindfulnessOutlinedFilled as default } +export default IconMindfulnessOutlinedFilled diff --git a/src/IconMindfulnessRounded.tsx b/src/IconMindfulnessRounded.tsx index 36120d3b5..a05bb0030 100644 --- a/src/IconMindfulnessRounded.tsx +++ b/src/IconMindfulnessRounded.tsx @@ -8,4 +8,4 @@ const IconMindfulnessRounded: React.FC = ({ ...props }) => ( ) -export { IconMindfulnessRounded as default } +export default IconMindfulnessRounded diff --git a/src/IconMindfulnessRoundedFilled.tsx b/src/IconMindfulnessRoundedFilled.tsx index 11cebb6c6..5ba372d9a 100644 --- a/src/IconMindfulnessRoundedFilled.tsx +++ b/src/IconMindfulnessRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconMindfulnessRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconMindfulnessRoundedFilled as default } +export default IconMindfulnessRoundedFilled diff --git a/src/IconMindfulnessSharp.tsx b/src/IconMindfulnessSharp.tsx index 81a2e2c70..70f224d53 100644 --- a/src/IconMindfulnessSharp.tsx +++ b/src/IconMindfulnessSharp.tsx @@ -8,4 +8,4 @@ const IconMindfulnessSharp: React.FC = ({ ...props }) => ( ) -export { IconMindfulnessSharp as default } +export default IconMindfulnessSharp diff --git a/src/IconMindfulnessSharpFilled.tsx b/src/IconMindfulnessSharpFilled.tsx index 746cf69fd..49af00fb4 100644 --- a/src/IconMindfulnessSharpFilled.tsx +++ b/src/IconMindfulnessSharpFilled.tsx @@ -8,4 +8,4 @@ const IconMindfulnessSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconMindfulnessSharpFilled as default } +export default IconMindfulnessSharpFilled diff --git a/src/IconMinimizeOutlined.tsx b/src/IconMinimizeOutlined.tsx index 81d95ab8c..bfa715ee3 100644 --- a/src/IconMinimizeOutlined.tsx +++ b/src/IconMinimizeOutlined.tsx @@ -8,4 +8,4 @@ const IconMinimizeOutlined: React.FC = ({ ...props }) => ( ) -export { IconMinimizeOutlined as default } +export default IconMinimizeOutlined diff --git a/src/IconMinimizeOutlinedFilled.tsx b/src/IconMinimizeOutlinedFilled.tsx index db2068aba..7569dbc7e 100644 --- a/src/IconMinimizeOutlinedFilled.tsx +++ b/src/IconMinimizeOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconMinimizeOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconMinimizeOutlinedFilled as default } +export default IconMinimizeOutlinedFilled diff --git a/src/IconMinimizeRounded.tsx b/src/IconMinimizeRounded.tsx index cbc2e87f7..bfa1e209f 100644 --- a/src/IconMinimizeRounded.tsx +++ b/src/IconMinimizeRounded.tsx @@ -8,4 +8,4 @@ const IconMinimizeRounded: React.FC = ({ ...props }) => ( ) -export { IconMinimizeRounded as default } +export default IconMinimizeRounded diff --git a/src/IconMinimizeRoundedFilled.tsx b/src/IconMinimizeRoundedFilled.tsx index ba43f1afc..394481c1d 100644 --- a/src/IconMinimizeRoundedFilled.tsx +++ b/src/IconMinimizeRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconMinimizeRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconMinimizeRoundedFilled as default } +export default IconMinimizeRoundedFilled diff --git a/src/IconMinimizeSharp.tsx b/src/IconMinimizeSharp.tsx index 232b2eead..225385075 100644 --- a/src/IconMinimizeSharp.tsx +++ b/src/IconMinimizeSharp.tsx @@ -8,4 +8,4 @@ const IconMinimizeSharp: React.FC = ({ ...props }) => ( ) -export { IconMinimizeSharp as default } +export default IconMinimizeSharp diff --git a/src/IconMinimizeSharpFilled.tsx b/src/IconMinimizeSharpFilled.tsx index b4fae2c8d..8e967a571 100644 --- a/src/IconMinimizeSharpFilled.tsx +++ b/src/IconMinimizeSharpFilled.tsx @@ -8,4 +8,4 @@ const IconMinimizeSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconMinimizeSharpFilled as default } +export default IconMinimizeSharpFilled diff --git a/src/IconMinorCrashOutlined.tsx b/src/IconMinorCrashOutlined.tsx index 9dd9af8c6..9be719be3 100644 --- a/src/IconMinorCrashOutlined.tsx +++ b/src/IconMinorCrashOutlined.tsx @@ -8,4 +8,4 @@ const IconMinorCrashOutlined: React.FC = ({ ...props }) => ( ) -export { IconMinorCrashOutlined as default } +export default IconMinorCrashOutlined diff --git a/src/IconMinorCrashOutlinedFilled.tsx b/src/IconMinorCrashOutlinedFilled.tsx index 0cccd9a36..5bb5e6f80 100644 --- a/src/IconMinorCrashOutlinedFilled.tsx +++ b/src/IconMinorCrashOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconMinorCrashOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconMinorCrashOutlinedFilled as default } +export default IconMinorCrashOutlinedFilled diff --git a/src/IconMinorCrashRounded.tsx b/src/IconMinorCrashRounded.tsx index 10219d0e8..df8bb24ff 100644 --- a/src/IconMinorCrashRounded.tsx +++ b/src/IconMinorCrashRounded.tsx @@ -8,4 +8,4 @@ const IconMinorCrashRounded: React.FC = ({ ...props }) => ( ) -export { IconMinorCrashRounded as default } +export default IconMinorCrashRounded diff --git a/src/IconMinorCrashRoundedFilled.tsx b/src/IconMinorCrashRoundedFilled.tsx index 046c0bc0a..ed5a3e7cb 100644 --- a/src/IconMinorCrashRoundedFilled.tsx +++ b/src/IconMinorCrashRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconMinorCrashRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconMinorCrashRoundedFilled as default } +export default IconMinorCrashRoundedFilled diff --git a/src/IconMinorCrashSharp.tsx b/src/IconMinorCrashSharp.tsx index 656eee183..4c733b5da 100644 --- a/src/IconMinorCrashSharp.tsx +++ b/src/IconMinorCrashSharp.tsx @@ -8,4 +8,4 @@ const IconMinorCrashSharp: React.FC = ({ ...props }) => ( ) -export { IconMinorCrashSharp as default } +export default IconMinorCrashSharp diff --git a/src/IconMinorCrashSharpFilled.tsx b/src/IconMinorCrashSharpFilled.tsx index e2da23b75..9b50d8ca8 100644 --- a/src/IconMinorCrashSharpFilled.tsx +++ b/src/IconMinorCrashSharpFilled.tsx @@ -8,4 +8,4 @@ const IconMinorCrashSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconMinorCrashSharpFilled as default } +export default IconMinorCrashSharpFilled diff --git a/src/IconMintmarkOutlined.tsx b/src/IconMintmarkOutlined.tsx index a4c9f9f92..52b5c15d1 100644 --- a/src/IconMintmarkOutlined.tsx +++ b/src/IconMintmarkOutlined.tsx @@ -8,4 +8,4 @@ const IconMintmarkOutlined: React.FC = ({ ...props }) => ( ) -export { IconMintmarkOutlined as default } +export default IconMintmarkOutlined diff --git a/src/IconMintmarkOutlinedFilled.tsx b/src/IconMintmarkOutlinedFilled.tsx index e93f33295..4b13757db 100644 --- a/src/IconMintmarkOutlinedFilled.tsx +++ b/src/IconMintmarkOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconMintmarkOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconMintmarkOutlinedFilled as default } +export default IconMintmarkOutlinedFilled diff --git a/src/IconMintmarkRounded.tsx b/src/IconMintmarkRounded.tsx index 03bb6db2d..d44db2fb1 100644 --- a/src/IconMintmarkRounded.tsx +++ b/src/IconMintmarkRounded.tsx @@ -8,4 +8,4 @@ const IconMintmarkRounded: React.FC = ({ ...props }) => ( ) -export { IconMintmarkRounded as default } +export default IconMintmarkRounded diff --git a/src/IconMintmarkRoundedFilled.tsx b/src/IconMintmarkRoundedFilled.tsx index aa297d538..d1bdb138d 100644 --- a/src/IconMintmarkRoundedFilled.tsx +++ b/src/IconMintmarkRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconMintmarkRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconMintmarkRoundedFilled as default } +export default IconMintmarkRoundedFilled diff --git a/src/IconMintmarkSharp.tsx b/src/IconMintmarkSharp.tsx index 91f757fb9..8781a8d78 100644 --- a/src/IconMintmarkSharp.tsx +++ b/src/IconMintmarkSharp.tsx @@ -8,4 +8,4 @@ const IconMintmarkSharp: React.FC = ({ ...props }) => ( ) -export { IconMintmarkSharp as default } +export default IconMintmarkSharp diff --git a/src/IconMintmarkSharpFilled.tsx b/src/IconMintmarkSharpFilled.tsx index 66dcac0e7..627294f60 100644 --- a/src/IconMintmarkSharpFilled.tsx +++ b/src/IconMintmarkSharpFilled.tsx @@ -8,4 +8,4 @@ const IconMintmarkSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconMintmarkSharpFilled as default } +export default IconMintmarkSharpFilled diff --git a/src/IconMissedVideoCallOutlined.tsx b/src/IconMissedVideoCallOutlined.tsx index 2c9645d0b..4e8793815 100644 --- a/src/IconMissedVideoCallOutlined.tsx +++ b/src/IconMissedVideoCallOutlined.tsx @@ -8,4 +8,4 @@ const IconMissedVideoCallOutlined: React.FC = ({ ...props }) => ( ) -export { IconMissedVideoCallOutlined as default } +export default IconMissedVideoCallOutlined diff --git a/src/IconMissedVideoCallOutlinedFilled.tsx b/src/IconMissedVideoCallOutlinedFilled.tsx index 7737a1a4c..32b6fdcf2 100644 --- a/src/IconMissedVideoCallOutlinedFilled.tsx +++ b/src/IconMissedVideoCallOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconMissedVideoCallOutlinedFilled: React.FC = ({ ) -export { IconMissedVideoCallOutlinedFilled as default } +export default IconMissedVideoCallOutlinedFilled diff --git a/src/IconMissedVideoCallRounded.tsx b/src/IconMissedVideoCallRounded.tsx index c2c72de96..574e32de5 100644 --- a/src/IconMissedVideoCallRounded.tsx +++ b/src/IconMissedVideoCallRounded.tsx @@ -8,4 +8,4 @@ const IconMissedVideoCallRounded: React.FC = ({ ...props }) => ( ) -export { IconMissedVideoCallRounded as default } +export default IconMissedVideoCallRounded diff --git a/src/IconMissedVideoCallRoundedFilled.tsx b/src/IconMissedVideoCallRoundedFilled.tsx index debbcf4bc..a27137770 100644 --- a/src/IconMissedVideoCallRoundedFilled.tsx +++ b/src/IconMissedVideoCallRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconMissedVideoCallRoundedFilled: React.FC = ({ ) -export { IconMissedVideoCallRoundedFilled as default } +export default IconMissedVideoCallRoundedFilled diff --git a/src/IconMissedVideoCallSharp.tsx b/src/IconMissedVideoCallSharp.tsx index f8d7d9b92..cf0536175 100644 --- a/src/IconMissedVideoCallSharp.tsx +++ b/src/IconMissedVideoCallSharp.tsx @@ -8,4 +8,4 @@ const IconMissedVideoCallSharp: React.FC = ({ ...props }) => ( ) -export { IconMissedVideoCallSharp as default } +export default IconMissedVideoCallSharp diff --git a/src/IconMissedVideoCallSharpFilled.tsx b/src/IconMissedVideoCallSharpFilled.tsx index 8bf12c5f2..5aefe6809 100644 --- a/src/IconMissedVideoCallSharpFilled.tsx +++ b/src/IconMissedVideoCallSharpFilled.tsx @@ -8,4 +8,4 @@ const IconMissedVideoCallSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconMissedVideoCallSharpFilled as default } +export default IconMissedVideoCallSharpFilled diff --git a/src/IconMissingControllerOutlined.tsx b/src/IconMissingControllerOutlined.tsx index bc6959297..afaee0e60 100644 --- a/src/IconMissingControllerOutlined.tsx +++ b/src/IconMissingControllerOutlined.tsx @@ -8,4 +8,4 @@ const IconMissingControllerOutlined: React.FC = ({ ...props }) => ( ) -export { IconMissingControllerOutlined as default } +export default IconMissingControllerOutlined diff --git a/src/IconMissingControllerOutlinedFilled.tsx b/src/IconMissingControllerOutlinedFilled.tsx index a334fb0fd..268332c02 100644 --- a/src/IconMissingControllerOutlinedFilled.tsx +++ b/src/IconMissingControllerOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconMissingControllerOutlinedFilled: React.FC = ({ ) -export { IconMissingControllerOutlinedFilled as default } +export default IconMissingControllerOutlinedFilled diff --git a/src/IconMissingControllerRounded.tsx b/src/IconMissingControllerRounded.tsx index 3c21734cf..4b0950ea0 100644 --- a/src/IconMissingControllerRounded.tsx +++ b/src/IconMissingControllerRounded.tsx @@ -8,4 +8,4 @@ const IconMissingControllerRounded: React.FC = ({ ...props }) => ( ) -export { IconMissingControllerRounded as default } +export default IconMissingControllerRounded diff --git a/src/IconMissingControllerRoundedFilled.tsx b/src/IconMissingControllerRoundedFilled.tsx index 482e6df4c..562c5fdd1 100644 --- a/src/IconMissingControllerRoundedFilled.tsx +++ b/src/IconMissingControllerRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconMissingControllerRoundedFilled: React.FC = ({ ) -export { IconMissingControllerRoundedFilled as default } +export default IconMissingControllerRoundedFilled diff --git a/src/IconMissingControllerSharp.tsx b/src/IconMissingControllerSharp.tsx index 9625c076b..df1ef7980 100644 --- a/src/IconMissingControllerSharp.tsx +++ b/src/IconMissingControllerSharp.tsx @@ -8,4 +8,4 @@ const IconMissingControllerSharp: React.FC = ({ ...props }) => ( ) -export { IconMissingControllerSharp as default } +export default IconMissingControllerSharp diff --git a/src/IconMissingControllerSharpFilled.tsx b/src/IconMissingControllerSharpFilled.tsx index 050b73bd9..2756a778f 100644 --- a/src/IconMissingControllerSharpFilled.tsx +++ b/src/IconMissingControllerSharpFilled.tsx @@ -10,4 +10,4 @@ const IconMissingControllerSharpFilled: React.FC = ({ ) -export { IconMissingControllerSharpFilled as default } +export default IconMissingControllerSharpFilled diff --git a/src/IconMistOutlined.tsx b/src/IconMistOutlined.tsx index a656a21b9..027cadd0c 100644 --- a/src/IconMistOutlined.tsx +++ b/src/IconMistOutlined.tsx @@ -8,4 +8,4 @@ const IconMistOutlined: React.FC = ({ ...props }) => ( ) -export { IconMistOutlined as default } +export default IconMistOutlined diff --git a/src/IconMistOutlinedFilled.tsx b/src/IconMistOutlinedFilled.tsx index 4d5333ed6..f364e8b10 100644 --- a/src/IconMistOutlinedFilled.tsx +++ b/src/IconMistOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconMistOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconMistOutlinedFilled as default } +export default IconMistOutlinedFilled diff --git a/src/IconMistRounded.tsx b/src/IconMistRounded.tsx index b5427658e..79eb59b4d 100644 --- a/src/IconMistRounded.tsx +++ b/src/IconMistRounded.tsx @@ -8,4 +8,4 @@ const IconMistRounded: React.FC = ({ ...props }) => ( ) -export { IconMistRounded as default } +export default IconMistRounded diff --git a/src/IconMistRoundedFilled.tsx b/src/IconMistRoundedFilled.tsx index 847871d97..4aa80f570 100644 --- a/src/IconMistRoundedFilled.tsx +++ b/src/IconMistRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconMistRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconMistRoundedFilled as default } +export default IconMistRoundedFilled diff --git a/src/IconMistSharp.tsx b/src/IconMistSharp.tsx index a1c3eb0cf..719f45f71 100644 --- a/src/IconMistSharp.tsx +++ b/src/IconMistSharp.tsx @@ -8,4 +8,4 @@ const IconMistSharp: React.FC = ({ ...props }) => ( ) -export { IconMistSharp as default } +export default IconMistSharp diff --git a/src/IconMistSharpFilled.tsx b/src/IconMistSharpFilled.tsx index 4258fe797..8a71b8cc6 100644 --- a/src/IconMistSharpFilled.tsx +++ b/src/IconMistSharpFilled.tsx @@ -8,4 +8,4 @@ const IconMistSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconMistSharpFilled as default } +export default IconMistSharpFilled diff --git a/src/IconMitreOutlined.tsx b/src/IconMitreOutlined.tsx index 5764a1d3a..318aa69f6 100644 --- a/src/IconMitreOutlined.tsx +++ b/src/IconMitreOutlined.tsx @@ -8,4 +8,4 @@ const IconMitreOutlined: React.FC = ({ ...props }) => ( ) -export { IconMitreOutlined as default } +export default IconMitreOutlined diff --git a/src/IconMitreOutlinedFilled.tsx b/src/IconMitreOutlinedFilled.tsx index 1e307d3a2..cc923afaf 100644 --- a/src/IconMitreOutlinedFilled.tsx +++ b/src/IconMitreOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconMitreOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconMitreOutlinedFilled as default } +export default IconMitreOutlinedFilled diff --git a/src/IconMitreRounded.tsx b/src/IconMitreRounded.tsx index d926dc5e3..623297d7c 100644 --- a/src/IconMitreRounded.tsx +++ b/src/IconMitreRounded.tsx @@ -8,4 +8,4 @@ const IconMitreRounded: React.FC = ({ ...props }) => ( ) -export { IconMitreRounded as default } +export default IconMitreRounded diff --git a/src/IconMitreRoundedFilled.tsx b/src/IconMitreRoundedFilled.tsx index 3d7373d27..a9837b10c 100644 --- a/src/IconMitreRoundedFilled.tsx +++ b/src/IconMitreRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconMitreRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconMitreRoundedFilled as default } +export default IconMitreRoundedFilled diff --git a/src/IconMitreSharp.tsx b/src/IconMitreSharp.tsx index 71c9e1938..b5226968f 100644 --- a/src/IconMitreSharp.tsx +++ b/src/IconMitreSharp.tsx @@ -8,4 +8,4 @@ const IconMitreSharp: React.FC = ({ ...props }) => ( ) -export { IconMitreSharp as default } +export default IconMitreSharp diff --git a/src/IconMitreSharpFilled.tsx b/src/IconMitreSharpFilled.tsx index 87c752b1c..d10a8924e 100644 --- a/src/IconMitreSharpFilled.tsx +++ b/src/IconMitreSharpFilled.tsx @@ -8,4 +8,4 @@ const IconMitreSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconMitreSharpFilled as default } +export default IconMitreSharpFilled diff --git a/src/IconMixtureMedOutlined.tsx b/src/IconMixtureMedOutlined.tsx index 47cc073b7..1c97f1429 100644 --- a/src/IconMixtureMedOutlined.tsx +++ b/src/IconMixtureMedOutlined.tsx @@ -8,4 +8,4 @@ const IconMixtureMedOutlined: React.FC = ({ ...props }) => ( ) -export { IconMixtureMedOutlined as default } +export default IconMixtureMedOutlined diff --git a/src/IconMixtureMedOutlinedFilled.tsx b/src/IconMixtureMedOutlinedFilled.tsx index edaf2818f..6631915ee 100644 --- a/src/IconMixtureMedOutlinedFilled.tsx +++ b/src/IconMixtureMedOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconMixtureMedOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconMixtureMedOutlinedFilled as default } +export default IconMixtureMedOutlinedFilled diff --git a/src/IconMixtureMedRounded.tsx b/src/IconMixtureMedRounded.tsx index 501369623..038530faa 100644 --- a/src/IconMixtureMedRounded.tsx +++ b/src/IconMixtureMedRounded.tsx @@ -8,4 +8,4 @@ const IconMixtureMedRounded: React.FC = ({ ...props }) => ( ) -export { IconMixtureMedRounded as default } +export default IconMixtureMedRounded diff --git a/src/IconMixtureMedRoundedFilled.tsx b/src/IconMixtureMedRoundedFilled.tsx index 9571e2f2a..afa3f37fd 100644 --- a/src/IconMixtureMedRoundedFilled.tsx +++ b/src/IconMixtureMedRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconMixtureMedRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconMixtureMedRoundedFilled as default } +export default IconMixtureMedRoundedFilled diff --git a/src/IconMixtureMedSharp.tsx b/src/IconMixtureMedSharp.tsx index 56e514b75..e96778434 100644 --- a/src/IconMixtureMedSharp.tsx +++ b/src/IconMixtureMedSharp.tsx @@ -8,4 +8,4 @@ const IconMixtureMedSharp: React.FC = ({ ...props }) => ( ) -export { IconMixtureMedSharp as default } +export default IconMixtureMedSharp diff --git a/src/IconMixtureMedSharpFilled.tsx b/src/IconMixtureMedSharpFilled.tsx index d0f580955..fd016e57e 100644 --- a/src/IconMixtureMedSharpFilled.tsx +++ b/src/IconMixtureMedSharpFilled.tsx @@ -8,4 +8,4 @@ const IconMixtureMedSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconMixtureMedSharpFilled as default } +export default IconMixtureMedSharpFilled diff --git a/src/IconMmsOutlined.tsx b/src/IconMmsOutlined.tsx index 2f1cd7d86..cf2c34d99 100644 --- a/src/IconMmsOutlined.tsx +++ b/src/IconMmsOutlined.tsx @@ -8,4 +8,4 @@ const IconMmsOutlined: React.FC = ({ ...props }) => ( ) -export { IconMmsOutlined as default } +export default IconMmsOutlined diff --git a/src/IconMmsOutlinedFilled.tsx b/src/IconMmsOutlinedFilled.tsx index ae07512b6..d6fb9ce9b 100644 --- a/src/IconMmsOutlinedFilled.tsx +++ b/src/IconMmsOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconMmsOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconMmsOutlinedFilled as default } +export default IconMmsOutlinedFilled diff --git a/src/IconMmsRounded.tsx b/src/IconMmsRounded.tsx index 69a53b3f4..28fb80897 100644 --- a/src/IconMmsRounded.tsx +++ b/src/IconMmsRounded.tsx @@ -8,4 +8,4 @@ const IconMmsRounded: React.FC = ({ ...props }) => ( ) -export { IconMmsRounded as default } +export default IconMmsRounded diff --git a/src/IconMmsRoundedFilled.tsx b/src/IconMmsRoundedFilled.tsx index 9abf40c1d..79756eac8 100644 --- a/src/IconMmsRoundedFilled.tsx +++ b/src/IconMmsRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconMmsRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconMmsRoundedFilled as default } +export default IconMmsRoundedFilled diff --git a/src/IconMmsSharp.tsx b/src/IconMmsSharp.tsx index edc74e155..fe9aeaa98 100644 --- a/src/IconMmsSharp.tsx +++ b/src/IconMmsSharp.tsx @@ -8,4 +8,4 @@ const IconMmsSharp: React.FC = ({ ...props }) => ( ) -export { IconMmsSharp as default } +export default IconMmsSharp diff --git a/src/IconMmsSharpFilled.tsx b/src/IconMmsSharpFilled.tsx index f5d0207cd..146e2227a 100644 --- a/src/IconMmsSharpFilled.tsx +++ b/src/IconMmsSharpFilled.tsx @@ -8,4 +8,4 @@ const IconMmsSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconMmsSharpFilled as default } +export default IconMmsSharpFilled diff --git a/src/IconMobileFriendlyOutlined.tsx b/src/IconMobileFriendlyOutlined.tsx index 67a308f0a..a11a4b275 100644 --- a/src/IconMobileFriendlyOutlined.tsx +++ b/src/IconMobileFriendlyOutlined.tsx @@ -8,4 +8,4 @@ const IconMobileFriendlyOutlined: React.FC = ({ ...props }) => ( ) -export { IconMobileFriendlyOutlined as default } +export default IconMobileFriendlyOutlined diff --git a/src/IconMobileFriendlyOutlinedFilled.tsx b/src/IconMobileFriendlyOutlinedFilled.tsx index c182b6c50..9d36807e7 100644 --- a/src/IconMobileFriendlyOutlinedFilled.tsx +++ b/src/IconMobileFriendlyOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconMobileFriendlyOutlinedFilled: React.FC = ({ ) -export { IconMobileFriendlyOutlinedFilled as default } +export default IconMobileFriendlyOutlinedFilled diff --git a/src/IconMobileFriendlyRounded.tsx b/src/IconMobileFriendlyRounded.tsx index 573fa517b..f6273dede 100644 --- a/src/IconMobileFriendlyRounded.tsx +++ b/src/IconMobileFriendlyRounded.tsx @@ -8,4 +8,4 @@ const IconMobileFriendlyRounded: React.FC = ({ ...props }) => ( ) -export { IconMobileFriendlyRounded as default } +export default IconMobileFriendlyRounded diff --git a/src/IconMobileFriendlyRoundedFilled.tsx b/src/IconMobileFriendlyRoundedFilled.tsx index 8d62d1d15..4b8055af7 100644 --- a/src/IconMobileFriendlyRoundedFilled.tsx +++ b/src/IconMobileFriendlyRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconMobileFriendlyRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconMobileFriendlyRoundedFilled as default } +export default IconMobileFriendlyRoundedFilled diff --git a/src/IconMobileFriendlySharp.tsx b/src/IconMobileFriendlySharp.tsx index 51d930dda..250ea933f 100644 --- a/src/IconMobileFriendlySharp.tsx +++ b/src/IconMobileFriendlySharp.tsx @@ -8,4 +8,4 @@ const IconMobileFriendlySharp: React.FC = ({ ...props }) => ( ) -export { IconMobileFriendlySharp as default } +export default IconMobileFriendlySharp diff --git a/src/IconMobileFriendlySharpFilled.tsx b/src/IconMobileFriendlySharpFilled.tsx index e01ffb5ee..8f81a6193 100644 --- a/src/IconMobileFriendlySharpFilled.tsx +++ b/src/IconMobileFriendlySharpFilled.tsx @@ -8,4 +8,4 @@ const IconMobileFriendlySharpFilled: React.FC = ({ ...props }) => ( ) -export { IconMobileFriendlySharpFilled as default } +export default IconMobileFriendlySharpFilled diff --git a/src/IconMobileOffOutlined.tsx b/src/IconMobileOffOutlined.tsx index 1a07acb08..30dafaf8c 100644 --- a/src/IconMobileOffOutlined.tsx +++ b/src/IconMobileOffOutlined.tsx @@ -8,4 +8,4 @@ const IconMobileOffOutlined: React.FC = ({ ...props }) => ( ) -export { IconMobileOffOutlined as default } +export default IconMobileOffOutlined diff --git a/src/IconMobileOffOutlinedFilled.tsx b/src/IconMobileOffOutlinedFilled.tsx index 16f864896..cbdaf4663 100644 --- a/src/IconMobileOffOutlinedFilled.tsx +++ b/src/IconMobileOffOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconMobileOffOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconMobileOffOutlinedFilled as default } +export default IconMobileOffOutlinedFilled diff --git a/src/IconMobileOffRounded.tsx b/src/IconMobileOffRounded.tsx index 281cc6e73..1acb2ae80 100644 --- a/src/IconMobileOffRounded.tsx +++ b/src/IconMobileOffRounded.tsx @@ -8,4 +8,4 @@ const IconMobileOffRounded: React.FC = ({ ...props }) => ( ) -export { IconMobileOffRounded as default } +export default IconMobileOffRounded diff --git a/src/IconMobileOffRoundedFilled.tsx b/src/IconMobileOffRoundedFilled.tsx index a834a9557..669b9b6b5 100644 --- a/src/IconMobileOffRoundedFilled.tsx +++ b/src/IconMobileOffRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconMobileOffRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconMobileOffRoundedFilled as default } +export default IconMobileOffRoundedFilled diff --git a/src/IconMobileOffSharp.tsx b/src/IconMobileOffSharp.tsx index c50c428d9..bf92e438c 100644 --- a/src/IconMobileOffSharp.tsx +++ b/src/IconMobileOffSharp.tsx @@ -8,4 +8,4 @@ const IconMobileOffSharp: React.FC = ({ ...props }) => ( ) -export { IconMobileOffSharp as default } +export default IconMobileOffSharp diff --git a/src/IconMobileOffSharpFilled.tsx b/src/IconMobileOffSharpFilled.tsx index a717a7a93..dd6cc77d5 100644 --- a/src/IconMobileOffSharpFilled.tsx +++ b/src/IconMobileOffSharpFilled.tsx @@ -8,4 +8,4 @@ const IconMobileOffSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconMobileOffSharpFilled as default } +export default IconMobileOffSharpFilled diff --git a/src/IconMobileScreenShareOutlined.tsx b/src/IconMobileScreenShareOutlined.tsx index b3c8879ec..9cd9669e1 100644 --- a/src/IconMobileScreenShareOutlined.tsx +++ b/src/IconMobileScreenShareOutlined.tsx @@ -8,4 +8,4 @@ const IconMobileScreenShareOutlined: React.FC = ({ ...props }) => ( ) -export { IconMobileScreenShareOutlined as default } +export default IconMobileScreenShareOutlined diff --git a/src/IconMobileScreenShareOutlinedFilled.tsx b/src/IconMobileScreenShareOutlinedFilled.tsx index 11068d1e8..a6bf0198b 100644 --- a/src/IconMobileScreenShareOutlinedFilled.tsx +++ b/src/IconMobileScreenShareOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconMobileScreenShareOutlinedFilled: React.FC = ({ ) -export { IconMobileScreenShareOutlinedFilled as default } +export default IconMobileScreenShareOutlinedFilled diff --git a/src/IconMobileScreenShareRounded.tsx b/src/IconMobileScreenShareRounded.tsx index 190021b56..371442467 100644 --- a/src/IconMobileScreenShareRounded.tsx +++ b/src/IconMobileScreenShareRounded.tsx @@ -8,4 +8,4 @@ const IconMobileScreenShareRounded: React.FC = ({ ...props }) => ( ) -export { IconMobileScreenShareRounded as default } +export default IconMobileScreenShareRounded diff --git a/src/IconMobileScreenShareRoundedFilled.tsx b/src/IconMobileScreenShareRoundedFilled.tsx index 5b31da449..3e75b6798 100644 --- a/src/IconMobileScreenShareRoundedFilled.tsx +++ b/src/IconMobileScreenShareRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconMobileScreenShareRoundedFilled: React.FC = ({ ) -export { IconMobileScreenShareRoundedFilled as default } +export default IconMobileScreenShareRoundedFilled diff --git a/src/IconMobileScreenShareSharp.tsx b/src/IconMobileScreenShareSharp.tsx index d67568095..32badf549 100644 --- a/src/IconMobileScreenShareSharp.tsx +++ b/src/IconMobileScreenShareSharp.tsx @@ -8,4 +8,4 @@ const IconMobileScreenShareSharp: React.FC = ({ ...props }) => ( ) -export { IconMobileScreenShareSharp as default } +export default IconMobileScreenShareSharp diff --git a/src/IconMobileScreenShareSharpFilled.tsx b/src/IconMobileScreenShareSharpFilled.tsx index becb2ec8a..e43aa0572 100644 --- a/src/IconMobileScreenShareSharpFilled.tsx +++ b/src/IconMobileScreenShareSharpFilled.tsx @@ -10,4 +10,4 @@ const IconMobileScreenShareSharpFilled: React.FC = ({ ) -export { IconMobileScreenShareSharpFilled as default } +export default IconMobileScreenShareSharpFilled diff --git a/src/IconMobiledataOffOutlined.tsx b/src/IconMobiledataOffOutlined.tsx index 08d224e8a..205242004 100644 --- a/src/IconMobiledataOffOutlined.tsx +++ b/src/IconMobiledataOffOutlined.tsx @@ -8,4 +8,4 @@ const IconMobiledataOffOutlined: React.FC = ({ ...props }) => ( ) -export { IconMobiledataOffOutlined as default } +export default IconMobiledataOffOutlined diff --git a/src/IconMobiledataOffOutlinedFilled.tsx b/src/IconMobiledataOffOutlinedFilled.tsx index 4352c566b..46ccbb9cd 100644 --- a/src/IconMobiledataOffOutlinedFilled.tsx +++ b/src/IconMobiledataOffOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconMobiledataOffOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconMobiledataOffOutlinedFilled as default } +export default IconMobiledataOffOutlinedFilled diff --git a/src/IconMobiledataOffRounded.tsx b/src/IconMobiledataOffRounded.tsx index 02d4c1fe3..a4b1a37dc 100644 --- a/src/IconMobiledataOffRounded.tsx +++ b/src/IconMobiledataOffRounded.tsx @@ -8,4 +8,4 @@ const IconMobiledataOffRounded: React.FC = ({ ...props }) => ( ) -export { IconMobiledataOffRounded as default } +export default IconMobiledataOffRounded diff --git a/src/IconMobiledataOffRoundedFilled.tsx b/src/IconMobiledataOffRoundedFilled.tsx index 9dc6baadd..e352a4661 100644 --- a/src/IconMobiledataOffRoundedFilled.tsx +++ b/src/IconMobiledataOffRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconMobiledataOffRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconMobiledataOffRoundedFilled as default } +export default IconMobiledataOffRoundedFilled diff --git a/src/IconMobiledataOffSharp.tsx b/src/IconMobiledataOffSharp.tsx index 228961fa9..46c03fc4d 100644 --- a/src/IconMobiledataOffSharp.tsx +++ b/src/IconMobiledataOffSharp.tsx @@ -8,4 +8,4 @@ const IconMobiledataOffSharp: React.FC = ({ ...props }) => ( ) -export { IconMobiledataOffSharp as default } +export default IconMobiledataOffSharp diff --git a/src/IconMobiledataOffSharpFilled.tsx b/src/IconMobiledataOffSharpFilled.tsx index e965eabc0..918a10d38 100644 --- a/src/IconMobiledataOffSharpFilled.tsx +++ b/src/IconMobiledataOffSharpFilled.tsx @@ -8,4 +8,4 @@ const IconMobiledataOffSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconMobiledataOffSharpFilled as default } +export default IconMobiledataOffSharpFilled diff --git a/src/IconModeCommentOutlined.tsx b/src/IconModeCommentOutlined.tsx index 8b1ea5bb7..647adc730 100644 --- a/src/IconModeCommentOutlined.tsx +++ b/src/IconModeCommentOutlined.tsx @@ -8,4 +8,4 @@ const IconModeCommentOutlined: React.FC = ({ ...props }) => ( ) -export { IconModeCommentOutlined as default } +export default IconModeCommentOutlined diff --git a/src/IconModeCommentOutlinedFilled.tsx b/src/IconModeCommentOutlinedFilled.tsx index b6512c608..c1a3accc0 100644 --- a/src/IconModeCommentOutlinedFilled.tsx +++ b/src/IconModeCommentOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconModeCommentOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconModeCommentOutlinedFilled as default } +export default IconModeCommentOutlinedFilled diff --git a/src/IconModeCommentRounded.tsx b/src/IconModeCommentRounded.tsx index 855d7c8a4..cad116704 100644 --- a/src/IconModeCommentRounded.tsx +++ b/src/IconModeCommentRounded.tsx @@ -8,4 +8,4 @@ const IconModeCommentRounded: React.FC = ({ ...props }) => ( ) -export { IconModeCommentRounded as default } +export default IconModeCommentRounded diff --git a/src/IconModeCommentRoundedFilled.tsx b/src/IconModeCommentRoundedFilled.tsx index 7fa58d884..91f419bf2 100644 --- a/src/IconModeCommentRoundedFilled.tsx +++ b/src/IconModeCommentRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconModeCommentRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconModeCommentRoundedFilled as default } +export default IconModeCommentRoundedFilled diff --git a/src/IconModeCommentSharp.tsx b/src/IconModeCommentSharp.tsx index 6b0100a20..69c4a5668 100644 --- a/src/IconModeCommentSharp.tsx +++ b/src/IconModeCommentSharp.tsx @@ -8,4 +8,4 @@ const IconModeCommentSharp: React.FC = ({ ...props }) => ( ) -export { IconModeCommentSharp as default } +export default IconModeCommentSharp diff --git a/src/IconModeCommentSharpFilled.tsx b/src/IconModeCommentSharpFilled.tsx index c08cbb321..ed6eb3230 100644 --- a/src/IconModeCommentSharpFilled.tsx +++ b/src/IconModeCommentSharpFilled.tsx @@ -8,4 +8,4 @@ const IconModeCommentSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconModeCommentSharpFilled as default } +export default IconModeCommentSharpFilled diff --git a/src/IconModeCoolOffOutlined.tsx b/src/IconModeCoolOffOutlined.tsx index 56074ccdd..6728906da 100644 --- a/src/IconModeCoolOffOutlined.tsx +++ b/src/IconModeCoolOffOutlined.tsx @@ -8,4 +8,4 @@ const IconModeCoolOffOutlined: React.FC = ({ ...props }) => ( ) -export { IconModeCoolOffOutlined as default } +export default IconModeCoolOffOutlined diff --git a/src/IconModeCoolOffOutlinedFilled.tsx b/src/IconModeCoolOffOutlinedFilled.tsx index ba3ff1eaa..ec80f69e8 100644 --- a/src/IconModeCoolOffOutlinedFilled.tsx +++ b/src/IconModeCoolOffOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconModeCoolOffOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconModeCoolOffOutlinedFilled as default } +export default IconModeCoolOffOutlinedFilled diff --git a/src/IconModeCoolOffRounded.tsx b/src/IconModeCoolOffRounded.tsx index 1b3e7183e..931f724fa 100644 --- a/src/IconModeCoolOffRounded.tsx +++ b/src/IconModeCoolOffRounded.tsx @@ -8,4 +8,4 @@ const IconModeCoolOffRounded: React.FC = ({ ...props }) => ( ) -export { IconModeCoolOffRounded as default } +export default IconModeCoolOffRounded diff --git a/src/IconModeCoolOffRoundedFilled.tsx b/src/IconModeCoolOffRoundedFilled.tsx index f91b62252..3f77baca5 100644 --- a/src/IconModeCoolOffRoundedFilled.tsx +++ b/src/IconModeCoolOffRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconModeCoolOffRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconModeCoolOffRoundedFilled as default } +export default IconModeCoolOffRoundedFilled diff --git a/src/IconModeCoolOffSharp.tsx b/src/IconModeCoolOffSharp.tsx index 4e78351f1..c85831e3f 100644 --- a/src/IconModeCoolOffSharp.tsx +++ b/src/IconModeCoolOffSharp.tsx @@ -8,4 +8,4 @@ const IconModeCoolOffSharp: React.FC = ({ ...props }) => ( ) -export { IconModeCoolOffSharp as default } +export default IconModeCoolOffSharp diff --git a/src/IconModeCoolOffSharpFilled.tsx b/src/IconModeCoolOffSharpFilled.tsx index f5258b8b6..9b2760796 100644 --- a/src/IconModeCoolOffSharpFilled.tsx +++ b/src/IconModeCoolOffSharpFilled.tsx @@ -8,4 +8,4 @@ const IconModeCoolOffSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconModeCoolOffSharpFilled as default } +export default IconModeCoolOffSharpFilled diff --git a/src/IconModeCoolOutlined.tsx b/src/IconModeCoolOutlined.tsx index 23836655e..4351b1cb1 100644 --- a/src/IconModeCoolOutlined.tsx +++ b/src/IconModeCoolOutlined.tsx @@ -8,4 +8,4 @@ const IconModeCoolOutlined: React.FC = ({ ...props }) => ( ) -export { IconModeCoolOutlined as default } +export default IconModeCoolOutlined diff --git a/src/IconModeCoolOutlinedFilled.tsx b/src/IconModeCoolOutlinedFilled.tsx index bf1bb4598..2c5450a47 100644 --- a/src/IconModeCoolOutlinedFilled.tsx +++ b/src/IconModeCoolOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconModeCoolOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconModeCoolOutlinedFilled as default } +export default IconModeCoolOutlinedFilled diff --git a/src/IconModeCoolRounded.tsx b/src/IconModeCoolRounded.tsx index f203366d0..9b30e8035 100644 --- a/src/IconModeCoolRounded.tsx +++ b/src/IconModeCoolRounded.tsx @@ -8,4 +8,4 @@ const IconModeCoolRounded: React.FC = ({ ...props }) => ( ) -export { IconModeCoolRounded as default } +export default IconModeCoolRounded diff --git a/src/IconModeCoolRoundedFilled.tsx b/src/IconModeCoolRoundedFilled.tsx index 08529786b..5720b724a 100644 --- a/src/IconModeCoolRoundedFilled.tsx +++ b/src/IconModeCoolRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconModeCoolRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconModeCoolRoundedFilled as default } +export default IconModeCoolRoundedFilled diff --git a/src/IconModeCoolSharp.tsx b/src/IconModeCoolSharp.tsx index 26662d68e..fef8142f5 100644 --- a/src/IconModeCoolSharp.tsx +++ b/src/IconModeCoolSharp.tsx @@ -8,4 +8,4 @@ const IconModeCoolSharp: React.FC = ({ ...props }) => ( ) -export { IconModeCoolSharp as default } +export default IconModeCoolSharp diff --git a/src/IconModeCoolSharpFilled.tsx b/src/IconModeCoolSharpFilled.tsx index 9789a536e..f78c64c75 100644 --- a/src/IconModeCoolSharpFilled.tsx +++ b/src/IconModeCoolSharpFilled.tsx @@ -8,4 +8,4 @@ const IconModeCoolSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconModeCoolSharpFilled as default } +export default IconModeCoolSharpFilled diff --git a/src/IconModeDualOutlined.tsx b/src/IconModeDualOutlined.tsx index 90c46fcb0..9610c7ee3 100644 --- a/src/IconModeDualOutlined.tsx +++ b/src/IconModeDualOutlined.tsx @@ -8,4 +8,4 @@ const IconModeDualOutlined: React.FC = ({ ...props }) => ( ) -export { IconModeDualOutlined as default } +export default IconModeDualOutlined diff --git a/src/IconModeDualOutlinedFilled.tsx b/src/IconModeDualOutlinedFilled.tsx index b3428ab70..d43a9a001 100644 --- a/src/IconModeDualOutlinedFilled.tsx +++ b/src/IconModeDualOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconModeDualOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconModeDualOutlinedFilled as default } +export default IconModeDualOutlinedFilled diff --git a/src/IconModeDualRounded.tsx b/src/IconModeDualRounded.tsx index b1c3d8276..0254f4c2b 100644 --- a/src/IconModeDualRounded.tsx +++ b/src/IconModeDualRounded.tsx @@ -8,4 +8,4 @@ const IconModeDualRounded: React.FC = ({ ...props }) => ( ) -export { IconModeDualRounded as default } +export default IconModeDualRounded diff --git a/src/IconModeDualRoundedFilled.tsx b/src/IconModeDualRoundedFilled.tsx index b626a8ed1..d7f25bd40 100644 --- a/src/IconModeDualRoundedFilled.tsx +++ b/src/IconModeDualRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconModeDualRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconModeDualRoundedFilled as default } +export default IconModeDualRoundedFilled diff --git a/src/IconModeDualSharp.tsx b/src/IconModeDualSharp.tsx index 985d0510d..46a08f61c 100644 --- a/src/IconModeDualSharp.tsx +++ b/src/IconModeDualSharp.tsx @@ -8,4 +8,4 @@ const IconModeDualSharp: React.FC = ({ ...props }) => ( ) -export { IconModeDualSharp as default } +export default IconModeDualSharp diff --git a/src/IconModeDualSharpFilled.tsx b/src/IconModeDualSharpFilled.tsx index 7e1ad4436..4df2124bb 100644 --- a/src/IconModeDualSharpFilled.tsx +++ b/src/IconModeDualSharpFilled.tsx @@ -8,4 +8,4 @@ const IconModeDualSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconModeDualSharpFilled as default } +export default IconModeDualSharpFilled diff --git a/src/IconModeFanOffOutlined.tsx b/src/IconModeFanOffOutlined.tsx index eccbd8ac0..effc2ef99 100644 --- a/src/IconModeFanOffOutlined.tsx +++ b/src/IconModeFanOffOutlined.tsx @@ -8,4 +8,4 @@ const IconModeFanOffOutlined: React.FC = ({ ...props }) => ( ) -export { IconModeFanOffOutlined as default } +export default IconModeFanOffOutlined diff --git a/src/IconModeFanOffOutlinedFilled.tsx b/src/IconModeFanOffOutlinedFilled.tsx index 7c3460b8c..3f83f57f6 100644 --- a/src/IconModeFanOffOutlinedFilled.tsx +++ b/src/IconModeFanOffOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconModeFanOffOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconModeFanOffOutlinedFilled as default } +export default IconModeFanOffOutlinedFilled diff --git a/src/IconModeFanOffRounded.tsx b/src/IconModeFanOffRounded.tsx index e8acb1d44..bd0b20ce6 100644 --- a/src/IconModeFanOffRounded.tsx +++ b/src/IconModeFanOffRounded.tsx @@ -8,4 +8,4 @@ const IconModeFanOffRounded: React.FC = ({ ...props }) => ( ) -export { IconModeFanOffRounded as default } +export default IconModeFanOffRounded diff --git a/src/IconModeFanOffRoundedFilled.tsx b/src/IconModeFanOffRoundedFilled.tsx index 49f6ebdf9..8e3c285d9 100644 --- a/src/IconModeFanOffRoundedFilled.tsx +++ b/src/IconModeFanOffRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconModeFanOffRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconModeFanOffRoundedFilled as default } +export default IconModeFanOffRoundedFilled diff --git a/src/IconModeFanOffSharp.tsx b/src/IconModeFanOffSharp.tsx index f06527c75..cb4752521 100644 --- a/src/IconModeFanOffSharp.tsx +++ b/src/IconModeFanOffSharp.tsx @@ -8,4 +8,4 @@ const IconModeFanOffSharp: React.FC = ({ ...props }) => ( ) -export { IconModeFanOffSharp as default } +export default IconModeFanOffSharp diff --git a/src/IconModeFanOffSharpFilled.tsx b/src/IconModeFanOffSharpFilled.tsx index e093a1272..7126b1c99 100644 --- a/src/IconModeFanOffSharpFilled.tsx +++ b/src/IconModeFanOffSharpFilled.tsx @@ -8,4 +8,4 @@ const IconModeFanOffSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconModeFanOffSharpFilled as default } +export default IconModeFanOffSharpFilled diff --git a/src/IconModeFanOutlined.tsx b/src/IconModeFanOutlined.tsx index 2503dac69..f7a475db8 100644 --- a/src/IconModeFanOutlined.tsx +++ b/src/IconModeFanOutlined.tsx @@ -8,4 +8,4 @@ const IconModeFanOutlined: React.FC = ({ ...props }) => ( ) -export { IconModeFanOutlined as default } +export default IconModeFanOutlined diff --git a/src/IconModeFanOutlinedFilled.tsx b/src/IconModeFanOutlinedFilled.tsx index ae4385599..855b8010d 100644 --- a/src/IconModeFanOutlinedFilled.tsx +++ b/src/IconModeFanOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconModeFanOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconModeFanOutlinedFilled as default } +export default IconModeFanOutlinedFilled diff --git a/src/IconModeFanRounded.tsx b/src/IconModeFanRounded.tsx index 8fb3e1f17..ecbc8ed41 100644 --- a/src/IconModeFanRounded.tsx +++ b/src/IconModeFanRounded.tsx @@ -8,4 +8,4 @@ const IconModeFanRounded: React.FC = ({ ...props }) => ( ) -export { IconModeFanRounded as default } +export default IconModeFanRounded diff --git a/src/IconModeFanRoundedFilled.tsx b/src/IconModeFanRoundedFilled.tsx index 69594a0ce..5bab0f6d6 100644 --- a/src/IconModeFanRoundedFilled.tsx +++ b/src/IconModeFanRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconModeFanRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconModeFanRoundedFilled as default } +export default IconModeFanRoundedFilled diff --git a/src/IconModeFanSharp.tsx b/src/IconModeFanSharp.tsx index 755a50373..ad910d657 100644 --- a/src/IconModeFanSharp.tsx +++ b/src/IconModeFanSharp.tsx @@ -8,4 +8,4 @@ const IconModeFanSharp: React.FC = ({ ...props }) => ( ) -export { IconModeFanSharp as default } +export default IconModeFanSharp diff --git a/src/IconModeFanSharpFilled.tsx b/src/IconModeFanSharpFilled.tsx index cbbc740a4..2f585a6d2 100644 --- a/src/IconModeFanSharpFilled.tsx +++ b/src/IconModeFanSharpFilled.tsx @@ -8,4 +8,4 @@ const IconModeFanSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconModeFanSharpFilled as default } +export default IconModeFanSharpFilled diff --git a/src/IconModeHeatCoolOutlined.tsx b/src/IconModeHeatCoolOutlined.tsx index 87547bb79..0f782b78c 100644 --- a/src/IconModeHeatCoolOutlined.tsx +++ b/src/IconModeHeatCoolOutlined.tsx @@ -8,4 +8,4 @@ const IconModeHeatCoolOutlined: React.FC = ({ ...props }) => ( ) -export { IconModeHeatCoolOutlined as default } +export default IconModeHeatCoolOutlined diff --git a/src/IconModeHeatCoolOutlinedFilled.tsx b/src/IconModeHeatCoolOutlinedFilled.tsx index 59a255886..88797ea39 100644 --- a/src/IconModeHeatCoolOutlinedFilled.tsx +++ b/src/IconModeHeatCoolOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconModeHeatCoolOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconModeHeatCoolOutlinedFilled as default } +export default IconModeHeatCoolOutlinedFilled diff --git a/src/IconModeHeatCoolRounded.tsx b/src/IconModeHeatCoolRounded.tsx index b3f14a1cc..e0a8c742d 100644 --- a/src/IconModeHeatCoolRounded.tsx +++ b/src/IconModeHeatCoolRounded.tsx @@ -8,4 +8,4 @@ const IconModeHeatCoolRounded: React.FC = ({ ...props }) => ( ) -export { IconModeHeatCoolRounded as default } +export default IconModeHeatCoolRounded diff --git a/src/IconModeHeatCoolRoundedFilled.tsx b/src/IconModeHeatCoolRoundedFilled.tsx index 260f0b3a9..c2315fad8 100644 --- a/src/IconModeHeatCoolRoundedFilled.tsx +++ b/src/IconModeHeatCoolRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconModeHeatCoolRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconModeHeatCoolRoundedFilled as default } +export default IconModeHeatCoolRoundedFilled diff --git a/src/IconModeHeatCoolSharp.tsx b/src/IconModeHeatCoolSharp.tsx index 4bf24f439..ac5c93701 100644 --- a/src/IconModeHeatCoolSharp.tsx +++ b/src/IconModeHeatCoolSharp.tsx @@ -8,4 +8,4 @@ const IconModeHeatCoolSharp: React.FC = ({ ...props }) => ( ) -export { IconModeHeatCoolSharp as default } +export default IconModeHeatCoolSharp diff --git a/src/IconModeHeatCoolSharpFilled.tsx b/src/IconModeHeatCoolSharpFilled.tsx index 20b3ed02d..90d902f7b 100644 --- a/src/IconModeHeatCoolSharpFilled.tsx +++ b/src/IconModeHeatCoolSharpFilled.tsx @@ -8,4 +8,4 @@ const IconModeHeatCoolSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconModeHeatCoolSharpFilled as default } +export default IconModeHeatCoolSharpFilled diff --git a/src/IconModeHeatOffOutlined.tsx b/src/IconModeHeatOffOutlined.tsx index e5a9006c2..0f1e3d386 100644 --- a/src/IconModeHeatOffOutlined.tsx +++ b/src/IconModeHeatOffOutlined.tsx @@ -8,4 +8,4 @@ const IconModeHeatOffOutlined: React.FC = ({ ...props }) => ( ) -export { IconModeHeatOffOutlined as default } +export default IconModeHeatOffOutlined diff --git a/src/IconModeHeatOffOutlinedFilled.tsx b/src/IconModeHeatOffOutlinedFilled.tsx index cc00409b3..b68f3ae2d 100644 --- a/src/IconModeHeatOffOutlinedFilled.tsx +++ b/src/IconModeHeatOffOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconModeHeatOffOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconModeHeatOffOutlinedFilled as default } +export default IconModeHeatOffOutlinedFilled diff --git a/src/IconModeHeatOffRounded.tsx b/src/IconModeHeatOffRounded.tsx index bb2f9f8b7..d4b2f0de9 100644 --- a/src/IconModeHeatOffRounded.tsx +++ b/src/IconModeHeatOffRounded.tsx @@ -8,4 +8,4 @@ const IconModeHeatOffRounded: React.FC = ({ ...props }) => ( ) -export { IconModeHeatOffRounded as default } +export default IconModeHeatOffRounded diff --git a/src/IconModeHeatOffRoundedFilled.tsx b/src/IconModeHeatOffRoundedFilled.tsx index dc9ee7318..d88946979 100644 --- a/src/IconModeHeatOffRoundedFilled.tsx +++ b/src/IconModeHeatOffRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconModeHeatOffRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconModeHeatOffRoundedFilled as default } +export default IconModeHeatOffRoundedFilled diff --git a/src/IconModeHeatOffSharp.tsx b/src/IconModeHeatOffSharp.tsx index 85d3342b0..d55e108e8 100644 --- a/src/IconModeHeatOffSharp.tsx +++ b/src/IconModeHeatOffSharp.tsx @@ -8,4 +8,4 @@ const IconModeHeatOffSharp: React.FC = ({ ...props }) => ( ) -export { IconModeHeatOffSharp as default } +export default IconModeHeatOffSharp diff --git a/src/IconModeHeatOffSharpFilled.tsx b/src/IconModeHeatOffSharpFilled.tsx index f669434f6..8cbf71aaf 100644 --- a/src/IconModeHeatOffSharpFilled.tsx +++ b/src/IconModeHeatOffSharpFilled.tsx @@ -8,4 +8,4 @@ const IconModeHeatOffSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconModeHeatOffSharpFilled as default } +export default IconModeHeatOffSharpFilled diff --git a/src/IconModeHeatOutlined.tsx b/src/IconModeHeatOutlined.tsx index e0d9a9648..68bf8acc0 100644 --- a/src/IconModeHeatOutlined.tsx +++ b/src/IconModeHeatOutlined.tsx @@ -8,4 +8,4 @@ const IconModeHeatOutlined: React.FC = ({ ...props }) => ( ) -export { IconModeHeatOutlined as default } +export default IconModeHeatOutlined diff --git a/src/IconModeHeatOutlinedFilled.tsx b/src/IconModeHeatOutlinedFilled.tsx index ad176b3ba..5bafd1d77 100644 --- a/src/IconModeHeatOutlinedFilled.tsx +++ b/src/IconModeHeatOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconModeHeatOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconModeHeatOutlinedFilled as default } +export default IconModeHeatOutlinedFilled diff --git a/src/IconModeHeatRounded.tsx b/src/IconModeHeatRounded.tsx index a9219f0d1..531cbdcd3 100644 --- a/src/IconModeHeatRounded.tsx +++ b/src/IconModeHeatRounded.tsx @@ -8,4 +8,4 @@ const IconModeHeatRounded: React.FC = ({ ...props }) => ( ) -export { IconModeHeatRounded as default } +export default IconModeHeatRounded diff --git a/src/IconModeHeatRoundedFilled.tsx b/src/IconModeHeatRoundedFilled.tsx index c5183f552..556f8ca7d 100644 --- a/src/IconModeHeatRoundedFilled.tsx +++ b/src/IconModeHeatRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconModeHeatRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconModeHeatRoundedFilled as default } +export default IconModeHeatRoundedFilled diff --git a/src/IconModeHeatSharp.tsx b/src/IconModeHeatSharp.tsx index 8525abebb..37f9db040 100644 --- a/src/IconModeHeatSharp.tsx +++ b/src/IconModeHeatSharp.tsx @@ -8,4 +8,4 @@ const IconModeHeatSharp: React.FC = ({ ...props }) => ( ) -export { IconModeHeatSharp as default } +export default IconModeHeatSharp diff --git a/src/IconModeHeatSharpFilled.tsx b/src/IconModeHeatSharpFilled.tsx index f1005dbb2..aee326d03 100644 --- a/src/IconModeHeatSharpFilled.tsx +++ b/src/IconModeHeatSharpFilled.tsx @@ -8,4 +8,4 @@ const IconModeHeatSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconModeHeatSharpFilled as default } +export default IconModeHeatSharpFilled diff --git a/src/IconModeNightOutlined.tsx b/src/IconModeNightOutlined.tsx index b3a7fc58f..c24dab261 100644 --- a/src/IconModeNightOutlined.tsx +++ b/src/IconModeNightOutlined.tsx @@ -8,4 +8,4 @@ const IconModeNightOutlined: React.FC = ({ ...props }) => ( ) -export { IconModeNightOutlined as default } +export default IconModeNightOutlined diff --git a/src/IconModeNightOutlinedFilled.tsx b/src/IconModeNightOutlinedFilled.tsx index 5629054a9..2dbfe7bf5 100644 --- a/src/IconModeNightOutlinedFilled.tsx +++ b/src/IconModeNightOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconModeNightOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconModeNightOutlinedFilled as default } +export default IconModeNightOutlinedFilled diff --git a/src/IconModeNightRounded.tsx b/src/IconModeNightRounded.tsx index bc966ba40..2a32c5e31 100644 --- a/src/IconModeNightRounded.tsx +++ b/src/IconModeNightRounded.tsx @@ -8,4 +8,4 @@ const IconModeNightRounded: React.FC = ({ ...props }) => ( ) -export { IconModeNightRounded as default } +export default IconModeNightRounded diff --git a/src/IconModeNightRoundedFilled.tsx b/src/IconModeNightRoundedFilled.tsx index 4754a554b..061feea43 100644 --- a/src/IconModeNightRoundedFilled.tsx +++ b/src/IconModeNightRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconModeNightRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconModeNightRoundedFilled as default } +export default IconModeNightRoundedFilled diff --git a/src/IconModeNightSharp.tsx b/src/IconModeNightSharp.tsx index aeac40e7f..825e048bd 100644 --- a/src/IconModeNightSharp.tsx +++ b/src/IconModeNightSharp.tsx @@ -8,4 +8,4 @@ const IconModeNightSharp: React.FC = ({ ...props }) => ( ) -export { IconModeNightSharp as default } +export default IconModeNightSharp diff --git a/src/IconModeNightSharpFilled.tsx b/src/IconModeNightSharpFilled.tsx index b79fbe359..974f42cf9 100644 --- a/src/IconModeNightSharpFilled.tsx +++ b/src/IconModeNightSharpFilled.tsx @@ -8,4 +8,4 @@ const IconModeNightSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconModeNightSharpFilled as default } +export default IconModeNightSharpFilled diff --git a/src/IconModeOfTravelOutlined.tsx b/src/IconModeOfTravelOutlined.tsx index 03fe505c6..589c09050 100644 --- a/src/IconModeOfTravelOutlined.tsx +++ b/src/IconModeOfTravelOutlined.tsx @@ -8,4 +8,4 @@ const IconModeOfTravelOutlined: React.FC = ({ ...props }) => ( ) -export { IconModeOfTravelOutlined as default } +export default IconModeOfTravelOutlined diff --git a/src/IconModeOfTravelOutlinedFilled.tsx b/src/IconModeOfTravelOutlinedFilled.tsx index 9a6202e54..9f4742fe5 100644 --- a/src/IconModeOfTravelOutlinedFilled.tsx +++ b/src/IconModeOfTravelOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconModeOfTravelOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconModeOfTravelOutlinedFilled as default } +export default IconModeOfTravelOutlinedFilled diff --git a/src/IconModeOfTravelRounded.tsx b/src/IconModeOfTravelRounded.tsx index 875b9acbd..1e570b286 100644 --- a/src/IconModeOfTravelRounded.tsx +++ b/src/IconModeOfTravelRounded.tsx @@ -8,4 +8,4 @@ const IconModeOfTravelRounded: React.FC = ({ ...props }) => ( ) -export { IconModeOfTravelRounded as default } +export default IconModeOfTravelRounded diff --git a/src/IconModeOfTravelRoundedFilled.tsx b/src/IconModeOfTravelRoundedFilled.tsx index b9f3b0e09..4e5bbf6e1 100644 --- a/src/IconModeOfTravelRoundedFilled.tsx +++ b/src/IconModeOfTravelRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconModeOfTravelRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconModeOfTravelRoundedFilled as default } +export default IconModeOfTravelRoundedFilled diff --git a/src/IconModeOfTravelSharp.tsx b/src/IconModeOfTravelSharp.tsx index 1743fde87..41d61694a 100644 --- a/src/IconModeOfTravelSharp.tsx +++ b/src/IconModeOfTravelSharp.tsx @@ -8,4 +8,4 @@ const IconModeOfTravelSharp: React.FC = ({ ...props }) => ( ) -export { IconModeOfTravelSharp as default } +export default IconModeOfTravelSharp diff --git a/src/IconModeOfTravelSharpFilled.tsx b/src/IconModeOfTravelSharpFilled.tsx index 7dbea6d8c..382976844 100644 --- a/src/IconModeOfTravelSharpFilled.tsx +++ b/src/IconModeOfTravelSharpFilled.tsx @@ -8,4 +8,4 @@ const IconModeOfTravelSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconModeOfTravelSharpFilled as default } +export default IconModeOfTravelSharpFilled diff --git a/src/IconModeOffOnOutlined.tsx b/src/IconModeOffOnOutlined.tsx index 49862429f..551b0e431 100644 --- a/src/IconModeOffOnOutlined.tsx +++ b/src/IconModeOffOnOutlined.tsx @@ -8,4 +8,4 @@ const IconModeOffOnOutlined: React.FC = ({ ...props }) => ( ) -export { IconModeOffOnOutlined as default } +export default IconModeOffOnOutlined diff --git a/src/IconModeOffOnOutlinedFilled.tsx b/src/IconModeOffOnOutlinedFilled.tsx index c94a761af..62bc9f674 100644 --- a/src/IconModeOffOnOutlinedFilled.tsx +++ b/src/IconModeOffOnOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconModeOffOnOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconModeOffOnOutlinedFilled as default } +export default IconModeOffOnOutlinedFilled diff --git a/src/IconModeOffOnRounded.tsx b/src/IconModeOffOnRounded.tsx index 6de04050c..3c91c24a5 100644 --- a/src/IconModeOffOnRounded.tsx +++ b/src/IconModeOffOnRounded.tsx @@ -8,4 +8,4 @@ const IconModeOffOnRounded: React.FC = ({ ...props }) => ( ) -export { IconModeOffOnRounded as default } +export default IconModeOffOnRounded diff --git a/src/IconModeOffOnRoundedFilled.tsx b/src/IconModeOffOnRoundedFilled.tsx index d700dba08..c16d346f5 100644 --- a/src/IconModeOffOnRoundedFilled.tsx +++ b/src/IconModeOffOnRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconModeOffOnRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconModeOffOnRoundedFilled as default } +export default IconModeOffOnRoundedFilled diff --git a/src/IconModeOffOnSharp.tsx b/src/IconModeOffOnSharp.tsx index c072ccbca..b5810235b 100644 --- a/src/IconModeOffOnSharp.tsx +++ b/src/IconModeOffOnSharp.tsx @@ -8,4 +8,4 @@ const IconModeOffOnSharp: React.FC = ({ ...props }) => ( ) -export { IconModeOffOnSharp as default } +export default IconModeOffOnSharp diff --git a/src/IconModeOffOnSharpFilled.tsx b/src/IconModeOffOnSharpFilled.tsx index 1ba0bb870..3be4fcca2 100644 --- a/src/IconModeOffOnSharpFilled.tsx +++ b/src/IconModeOffOnSharpFilled.tsx @@ -8,4 +8,4 @@ const IconModeOffOnSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconModeOffOnSharpFilled as default } +export default IconModeOffOnSharpFilled diff --git a/src/IconModeStandbyOutlined.tsx b/src/IconModeStandbyOutlined.tsx index c563f80fc..2292f9ebc 100644 --- a/src/IconModeStandbyOutlined.tsx +++ b/src/IconModeStandbyOutlined.tsx @@ -8,4 +8,4 @@ const IconModeStandbyOutlined: React.FC = ({ ...props }) => ( ) -export { IconModeStandbyOutlined as default } +export default IconModeStandbyOutlined diff --git a/src/IconModeStandbyOutlinedFilled.tsx b/src/IconModeStandbyOutlinedFilled.tsx index 662b317cf..58553dee5 100644 --- a/src/IconModeStandbyOutlinedFilled.tsx +++ b/src/IconModeStandbyOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconModeStandbyOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconModeStandbyOutlinedFilled as default } +export default IconModeStandbyOutlinedFilled diff --git a/src/IconModeStandbyRounded.tsx b/src/IconModeStandbyRounded.tsx index db7913a6f..a0a3c3007 100644 --- a/src/IconModeStandbyRounded.tsx +++ b/src/IconModeStandbyRounded.tsx @@ -8,4 +8,4 @@ const IconModeStandbyRounded: React.FC = ({ ...props }) => ( ) -export { IconModeStandbyRounded as default } +export default IconModeStandbyRounded diff --git a/src/IconModeStandbyRoundedFilled.tsx b/src/IconModeStandbyRoundedFilled.tsx index 8c6beb583..5f0d2abbc 100644 --- a/src/IconModeStandbyRoundedFilled.tsx +++ b/src/IconModeStandbyRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconModeStandbyRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconModeStandbyRoundedFilled as default } +export default IconModeStandbyRoundedFilled diff --git a/src/IconModeStandbySharp.tsx b/src/IconModeStandbySharp.tsx index dae47bb0c..873c2edf8 100644 --- a/src/IconModeStandbySharp.tsx +++ b/src/IconModeStandbySharp.tsx @@ -8,4 +8,4 @@ const IconModeStandbySharp: React.FC = ({ ...props }) => ( ) -export { IconModeStandbySharp as default } +export default IconModeStandbySharp diff --git a/src/IconModeStandbySharpFilled.tsx b/src/IconModeStandbySharpFilled.tsx index 8b8fadd2f..f1b75ee50 100644 --- a/src/IconModeStandbySharpFilled.tsx +++ b/src/IconModeStandbySharpFilled.tsx @@ -8,4 +8,4 @@ const IconModeStandbySharpFilled: React.FC = ({ ...props }) => ( ) -export { IconModeStandbySharpFilled as default } +export default IconModeStandbySharpFilled diff --git a/src/IconModelTrainingOutlined.tsx b/src/IconModelTrainingOutlined.tsx index 46cd5d936..a54ce1c8b 100644 --- a/src/IconModelTrainingOutlined.tsx +++ b/src/IconModelTrainingOutlined.tsx @@ -8,4 +8,4 @@ const IconModelTrainingOutlined: React.FC = ({ ...props }) => ( ) -export { IconModelTrainingOutlined as default } +export default IconModelTrainingOutlined diff --git a/src/IconModelTrainingOutlinedFilled.tsx b/src/IconModelTrainingOutlinedFilled.tsx index 20f04999b..fcd49f3b0 100644 --- a/src/IconModelTrainingOutlinedFilled.tsx +++ b/src/IconModelTrainingOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconModelTrainingOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconModelTrainingOutlinedFilled as default } +export default IconModelTrainingOutlinedFilled diff --git a/src/IconModelTrainingRounded.tsx b/src/IconModelTrainingRounded.tsx index 0c8e6e032..b88ea270c 100644 --- a/src/IconModelTrainingRounded.tsx +++ b/src/IconModelTrainingRounded.tsx @@ -8,4 +8,4 @@ const IconModelTrainingRounded: React.FC = ({ ...props }) => ( ) -export { IconModelTrainingRounded as default } +export default IconModelTrainingRounded diff --git a/src/IconModelTrainingRoundedFilled.tsx b/src/IconModelTrainingRoundedFilled.tsx index 8044a4f1d..e49c8783e 100644 --- a/src/IconModelTrainingRoundedFilled.tsx +++ b/src/IconModelTrainingRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconModelTrainingRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconModelTrainingRoundedFilled as default } +export default IconModelTrainingRoundedFilled diff --git a/src/IconModelTrainingSharp.tsx b/src/IconModelTrainingSharp.tsx index ce9c58d04..29751cf98 100644 --- a/src/IconModelTrainingSharp.tsx +++ b/src/IconModelTrainingSharp.tsx @@ -8,4 +8,4 @@ const IconModelTrainingSharp: React.FC = ({ ...props }) => ( ) -export { IconModelTrainingSharp as default } +export default IconModelTrainingSharp diff --git a/src/IconModelTrainingSharpFilled.tsx b/src/IconModelTrainingSharpFilled.tsx index cf4bd786b..b625cd7ed 100644 --- a/src/IconModelTrainingSharpFilled.tsx +++ b/src/IconModelTrainingSharpFilled.tsx @@ -8,4 +8,4 @@ const IconModelTrainingSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconModelTrainingSharpFilled as default } +export default IconModelTrainingSharpFilled diff --git a/src/IconMoneyOffOutlined.tsx b/src/IconMoneyOffOutlined.tsx index b15d8e1eb..ea2d5375f 100644 --- a/src/IconMoneyOffOutlined.tsx +++ b/src/IconMoneyOffOutlined.tsx @@ -8,4 +8,4 @@ const IconMoneyOffOutlined: React.FC = ({ ...props }) => ( ) -export { IconMoneyOffOutlined as default } +export default IconMoneyOffOutlined diff --git a/src/IconMoneyOffOutlinedFilled.tsx b/src/IconMoneyOffOutlinedFilled.tsx index 2d34e830a..04f6e0869 100644 --- a/src/IconMoneyOffOutlinedFilled.tsx +++ b/src/IconMoneyOffOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconMoneyOffOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconMoneyOffOutlinedFilled as default } +export default IconMoneyOffOutlinedFilled diff --git a/src/IconMoneyOffRounded.tsx b/src/IconMoneyOffRounded.tsx index f2f093526..6d8594ebd 100644 --- a/src/IconMoneyOffRounded.tsx +++ b/src/IconMoneyOffRounded.tsx @@ -8,4 +8,4 @@ const IconMoneyOffRounded: React.FC = ({ ...props }) => ( ) -export { IconMoneyOffRounded as default } +export default IconMoneyOffRounded diff --git a/src/IconMoneyOffRoundedFilled.tsx b/src/IconMoneyOffRoundedFilled.tsx index ba37a31dd..e75129015 100644 --- a/src/IconMoneyOffRoundedFilled.tsx +++ b/src/IconMoneyOffRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconMoneyOffRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconMoneyOffRoundedFilled as default } +export default IconMoneyOffRoundedFilled diff --git a/src/IconMoneyOffSharp.tsx b/src/IconMoneyOffSharp.tsx index f682a0a41..3ae97140d 100644 --- a/src/IconMoneyOffSharp.tsx +++ b/src/IconMoneyOffSharp.tsx @@ -8,4 +8,4 @@ const IconMoneyOffSharp: React.FC = ({ ...props }) => ( ) -export { IconMoneyOffSharp as default } +export default IconMoneyOffSharp diff --git a/src/IconMoneyOffSharpFilled.tsx b/src/IconMoneyOffSharpFilled.tsx index 4c0df8585..8e95e6e40 100644 --- a/src/IconMoneyOffSharpFilled.tsx +++ b/src/IconMoneyOffSharpFilled.tsx @@ -8,4 +8,4 @@ const IconMoneyOffSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconMoneyOffSharpFilled as default } +export default IconMoneyOffSharpFilled diff --git a/src/IconMoneyOutlined.tsx b/src/IconMoneyOutlined.tsx index 242bafaf6..fff419c02 100644 --- a/src/IconMoneyOutlined.tsx +++ b/src/IconMoneyOutlined.tsx @@ -8,4 +8,4 @@ const IconMoneyOutlined: React.FC = ({ ...props }) => ( ) -export { IconMoneyOutlined as default } +export default IconMoneyOutlined diff --git a/src/IconMoneyOutlinedFilled.tsx b/src/IconMoneyOutlinedFilled.tsx index c80cce9e7..dc4717e74 100644 --- a/src/IconMoneyOutlinedFilled.tsx +++ b/src/IconMoneyOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconMoneyOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconMoneyOutlinedFilled as default } +export default IconMoneyOutlinedFilled diff --git a/src/IconMoneyRounded.tsx b/src/IconMoneyRounded.tsx index 4d17c5269..990e483da 100644 --- a/src/IconMoneyRounded.tsx +++ b/src/IconMoneyRounded.tsx @@ -8,4 +8,4 @@ const IconMoneyRounded: React.FC = ({ ...props }) => ( ) -export { IconMoneyRounded as default } +export default IconMoneyRounded diff --git a/src/IconMoneyRoundedFilled.tsx b/src/IconMoneyRoundedFilled.tsx index 7daacecbd..c27d0a89d 100644 --- a/src/IconMoneyRoundedFilled.tsx +++ b/src/IconMoneyRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconMoneyRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconMoneyRoundedFilled as default } +export default IconMoneyRoundedFilled diff --git a/src/IconMoneySharp.tsx b/src/IconMoneySharp.tsx index eca78cd6b..6c02bb668 100644 --- a/src/IconMoneySharp.tsx +++ b/src/IconMoneySharp.tsx @@ -8,4 +8,4 @@ const IconMoneySharp: React.FC = ({ ...props }) => ( ) -export { IconMoneySharp as default } +export default IconMoneySharp diff --git a/src/IconMoneySharpFilled.tsx b/src/IconMoneySharpFilled.tsx index c85341475..cf2889df4 100644 --- a/src/IconMoneySharpFilled.tsx +++ b/src/IconMoneySharpFilled.tsx @@ -8,4 +8,4 @@ const IconMoneySharpFilled: React.FC = ({ ...props }) => ( ) -export { IconMoneySharpFilled as default } +export default IconMoneySharpFilled diff --git a/src/IconMonitorHeartOutlined.tsx b/src/IconMonitorHeartOutlined.tsx index 6409fdc65..79bdacef3 100644 --- a/src/IconMonitorHeartOutlined.tsx +++ b/src/IconMonitorHeartOutlined.tsx @@ -8,4 +8,4 @@ const IconMonitorHeartOutlined: React.FC = ({ ...props }) => ( ) -export { IconMonitorHeartOutlined as default } +export default IconMonitorHeartOutlined diff --git a/src/IconMonitorHeartOutlinedFilled.tsx b/src/IconMonitorHeartOutlinedFilled.tsx index 9ab91d084..09200cf57 100644 --- a/src/IconMonitorHeartOutlinedFilled.tsx +++ b/src/IconMonitorHeartOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconMonitorHeartOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconMonitorHeartOutlinedFilled as default } +export default IconMonitorHeartOutlinedFilled diff --git a/src/IconMonitorHeartRounded.tsx b/src/IconMonitorHeartRounded.tsx index 86cff87cc..d1c763990 100644 --- a/src/IconMonitorHeartRounded.tsx +++ b/src/IconMonitorHeartRounded.tsx @@ -8,4 +8,4 @@ const IconMonitorHeartRounded: React.FC = ({ ...props }) => ( ) -export { IconMonitorHeartRounded as default } +export default IconMonitorHeartRounded diff --git a/src/IconMonitorHeartRoundedFilled.tsx b/src/IconMonitorHeartRoundedFilled.tsx index 709a08e35..a215c656d 100644 --- a/src/IconMonitorHeartRoundedFilled.tsx +++ b/src/IconMonitorHeartRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconMonitorHeartRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconMonitorHeartRoundedFilled as default } +export default IconMonitorHeartRoundedFilled diff --git a/src/IconMonitorHeartSharp.tsx b/src/IconMonitorHeartSharp.tsx index 81671d727..7f6f98a89 100644 --- a/src/IconMonitorHeartSharp.tsx +++ b/src/IconMonitorHeartSharp.tsx @@ -8,4 +8,4 @@ const IconMonitorHeartSharp: React.FC = ({ ...props }) => ( ) -export { IconMonitorHeartSharp as default } +export default IconMonitorHeartSharp diff --git a/src/IconMonitorHeartSharpFilled.tsx b/src/IconMonitorHeartSharpFilled.tsx index 3746747a7..19d5d0a30 100644 --- a/src/IconMonitorHeartSharpFilled.tsx +++ b/src/IconMonitorHeartSharpFilled.tsx @@ -8,4 +8,4 @@ const IconMonitorHeartSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconMonitorHeartSharpFilled as default } +export default IconMonitorHeartSharpFilled diff --git a/src/IconMonitorOutlined.tsx b/src/IconMonitorOutlined.tsx index 28f9dea66..8eb230df4 100644 --- a/src/IconMonitorOutlined.tsx +++ b/src/IconMonitorOutlined.tsx @@ -8,4 +8,4 @@ const IconMonitorOutlined: React.FC = ({ ...props }) => ( ) -export { IconMonitorOutlined as default } +export default IconMonitorOutlined diff --git a/src/IconMonitorOutlinedFilled.tsx b/src/IconMonitorOutlinedFilled.tsx index 4f203b0d2..f01bcdaa5 100644 --- a/src/IconMonitorOutlinedFilled.tsx +++ b/src/IconMonitorOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconMonitorOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconMonitorOutlinedFilled as default } +export default IconMonitorOutlinedFilled diff --git a/src/IconMonitorRounded.tsx b/src/IconMonitorRounded.tsx index 7e2e25aff..0bc6f89e0 100644 --- a/src/IconMonitorRounded.tsx +++ b/src/IconMonitorRounded.tsx @@ -8,4 +8,4 @@ const IconMonitorRounded: React.FC = ({ ...props }) => ( ) -export { IconMonitorRounded as default } +export default IconMonitorRounded diff --git a/src/IconMonitorRoundedFilled.tsx b/src/IconMonitorRoundedFilled.tsx index 3d889ba86..5b8f4a29d 100644 --- a/src/IconMonitorRoundedFilled.tsx +++ b/src/IconMonitorRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconMonitorRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconMonitorRoundedFilled as default } +export default IconMonitorRoundedFilled diff --git a/src/IconMonitorSharp.tsx b/src/IconMonitorSharp.tsx index 51373e7ca..061eb6a97 100644 --- a/src/IconMonitorSharp.tsx +++ b/src/IconMonitorSharp.tsx @@ -8,4 +8,4 @@ const IconMonitorSharp: React.FC = ({ ...props }) => ( ) -export { IconMonitorSharp as default } +export default IconMonitorSharp diff --git a/src/IconMonitorSharpFilled.tsx b/src/IconMonitorSharpFilled.tsx index 9d177c479..44a9cdebc 100644 --- a/src/IconMonitorSharpFilled.tsx +++ b/src/IconMonitorSharpFilled.tsx @@ -8,4 +8,4 @@ const IconMonitorSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconMonitorSharpFilled as default } +export default IconMonitorSharpFilled diff --git a/src/IconMonitorWeightGainOutlined.tsx b/src/IconMonitorWeightGainOutlined.tsx index 04e43eea2..08d2fe697 100644 --- a/src/IconMonitorWeightGainOutlined.tsx +++ b/src/IconMonitorWeightGainOutlined.tsx @@ -8,4 +8,4 @@ const IconMonitorWeightGainOutlined: React.FC = ({ ...props }) => ( ) -export { IconMonitorWeightGainOutlined as default } +export default IconMonitorWeightGainOutlined diff --git a/src/IconMonitorWeightGainOutlinedFilled.tsx b/src/IconMonitorWeightGainOutlinedFilled.tsx index 3dceb5b4d..4ccaf6cdf 100644 --- a/src/IconMonitorWeightGainOutlinedFilled.tsx +++ b/src/IconMonitorWeightGainOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconMonitorWeightGainOutlinedFilled: React.FC = ({ ) -export { IconMonitorWeightGainOutlinedFilled as default } +export default IconMonitorWeightGainOutlinedFilled diff --git a/src/IconMonitorWeightGainRounded.tsx b/src/IconMonitorWeightGainRounded.tsx index c926ce930..bdea68540 100644 --- a/src/IconMonitorWeightGainRounded.tsx +++ b/src/IconMonitorWeightGainRounded.tsx @@ -8,4 +8,4 @@ const IconMonitorWeightGainRounded: React.FC = ({ ...props }) => ( ) -export { IconMonitorWeightGainRounded as default } +export default IconMonitorWeightGainRounded diff --git a/src/IconMonitorWeightGainRoundedFilled.tsx b/src/IconMonitorWeightGainRoundedFilled.tsx index 1e1429769..ffbbe069d 100644 --- a/src/IconMonitorWeightGainRoundedFilled.tsx +++ b/src/IconMonitorWeightGainRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconMonitorWeightGainRoundedFilled: React.FC = ({ ) -export { IconMonitorWeightGainRoundedFilled as default } +export default IconMonitorWeightGainRoundedFilled diff --git a/src/IconMonitorWeightGainSharp.tsx b/src/IconMonitorWeightGainSharp.tsx index 1b8916f55..63e254914 100644 --- a/src/IconMonitorWeightGainSharp.tsx +++ b/src/IconMonitorWeightGainSharp.tsx @@ -8,4 +8,4 @@ const IconMonitorWeightGainSharp: React.FC = ({ ...props }) => ( ) -export { IconMonitorWeightGainSharp as default } +export default IconMonitorWeightGainSharp diff --git a/src/IconMonitorWeightGainSharpFilled.tsx b/src/IconMonitorWeightGainSharpFilled.tsx index 4c593ce3b..4015a66ea 100644 --- a/src/IconMonitorWeightGainSharpFilled.tsx +++ b/src/IconMonitorWeightGainSharpFilled.tsx @@ -10,4 +10,4 @@ const IconMonitorWeightGainSharpFilled: React.FC = ({ ) -export { IconMonitorWeightGainSharpFilled as default } +export default IconMonitorWeightGainSharpFilled diff --git a/src/IconMonitorWeightLossOutlined.tsx b/src/IconMonitorWeightLossOutlined.tsx index af13a07a5..44a637014 100644 --- a/src/IconMonitorWeightLossOutlined.tsx +++ b/src/IconMonitorWeightLossOutlined.tsx @@ -8,4 +8,4 @@ const IconMonitorWeightLossOutlined: React.FC = ({ ...props }) => ( ) -export { IconMonitorWeightLossOutlined as default } +export default IconMonitorWeightLossOutlined diff --git a/src/IconMonitorWeightLossOutlinedFilled.tsx b/src/IconMonitorWeightLossOutlinedFilled.tsx index 5dfe97a79..3454d699e 100644 --- a/src/IconMonitorWeightLossOutlinedFilled.tsx +++ b/src/IconMonitorWeightLossOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconMonitorWeightLossOutlinedFilled: React.FC = ({ ) -export { IconMonitorWeightLossOutlinedFilled as default } +export default IconMonitorWeightLossOutlinedFilled diff --git a/src/IconMonitorWeightLossRounded.tsx b/src/IconMonitorWeightLossRounded.tsx index eb49e04bf..ea0418b8e 100644 --- a/src/IconMonitorWeightLossRounded.tsx +++ b/src/IconMonitorWeightLossRounded.tsx @@ -8,4 +8,4 @@ const IconMonitorWeightLossRounded: React.FC = ({ ...props }) => ( ) -export { IconMonitorWeightLossRounded as default } +export default IconMonitorWeightLossRounded diff --git a/src/IconMonitorWeightLossRoundedFilled.tsx b/src/IconMonitorWeightLossRoundedFilled.tsx index 0e101adc6..37fc79a04 100644 --- a/src/IconMonitorWeightLossRoundedFilled.tsx +++ b/src/IconMonitorWeightLossRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconMonitorWeightLossRoundedFilled: React.FC = ({ ) -export { IconMonitorWeightLossRoundedFilled as default } +export default IconMonitorWeightLossRoundedFilled diff --git a/src/IconMonitorWeightLossSharp.tsx b/src/IconMonitorWeightLossSharp.tsx index 968f87acb..6b39b9f4f 100644 --- a/src/IconMonitorWeightLossSharp.tsx +++ b/src/IconMonitorWeightLossSharp.tsx @@ -8,4 +8,4 @@ const IconMonitorWeightLossSharp: React.FC = ({ ...props }) => ( ) -export { IconMonitorWeightLossSharp as default } +export default IconMonitorWeightLossSharp diff --git a/src/IconMonitorWeightLossSharpFilled.tsx b/src/IconMonitorWeightLossSharpFilled.tsx index 34cced669..bfaa0e8ac 100644 --- a/src/IconMonitorWeightLossSharpFilled.tsx +++ b/src/IconMonitorWeightLossSharpFilled.tsx @@ -10,4 +10,4 @@ const IconMonitorWeightLossSharpFilled: React.FC = ({ ) -export { IconMonitorWeightLossSharpFilled as default } +export default IconMonitorWeightLossSharpFilled diff --git a/src/IconMonitorWeightOutlined.tsx b/src/IconMonitorWeightOutlined.tsx index 599c4ff23..08e80b7b2 100644 --- a/src/IconMonitorWeightOutlined.tsx +++ b/src/IconMonitorWeightOutlined.tsx @@ -8,4 +8,4 @@ const IconMonitorWeightOutlined: React.FC = ({ ...props }) => ( ) -export { IconMonitorWeightOutlined as default } +export default IconMonitorWeightOutlined diff --git a/src/IconMonitorWeightOutlinedFilled.tsx b/src/IconMonitorWeightOutlinedFilled.tsx index e8d92dc24..b46a67570 100644 --- a/src/IconMonitorWeightOutlinedFilled.tsx +++ b/src/IconMonitorWeightOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconMonitorWeightOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconMonitorWeightOutlinedFilled as default } +export default IconMonitorWeightOutlinedFilled diff --git a/src/IconMonitorWeightRounded.tsx b/src/IconMonitorWeightRounded.tsx index 420aab2ee..673c49a0a 100644 --- a/src/IconMonitorWeightRounded.tsx +++ b/src/IconMonitorWeightRounded.tsx @@ -8,4 +8,4 @@ const IconMonitorWeightRounded: React.FC = ({ ...props }) => ( ) -export { IconMonitorWeightRounded as default } +export default IconMonitorWeightRounded diff --git a/src/IconMonitorWeightRoundedFilled.tsx b/src/IconMonitorWeightRoundedFilled.tsx index 10fbde238..b5f31bd11 100644 --- a/src/IconMonitorWeightRoundedFilled.tsx +++ b/src/IconMonitorWeightRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconMonitorWeightRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconMonitorWeightRoundedFilled as default } +export default IconMonitorWeightRoundedFilled diff --git a/src/IconMonitorWeightSharp.tsx b/src/IconMonitorWeightSharp.tsx index d8ce3c6a7..2f6c50bcb 100644 --- a/src/IconMonitorWeightSharp.tsx +++ b/src/IconMonitorWeightSharp.tsx @@ -8,4 +8,4 @@ const IconMonitorWeightSharp: React.FC = ({ ...props }) => ( ) -export { IconMonitorWeightSharp as default } +export default IconMonitorWeightSharp diff --git a/src/IconMonitorWeightSharpFilled.tsx b/src/IconMonitorWeightSharpFilled.tsx index ff530865c..743bbaf9b 100644 --- a/src/IconMonitorWeightSharpFilled.tsx +++ b/src/IconMonitorWeightSharpFilled.tsx @@ -8,4 +8,4 @@ const IconMonitorWeightSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconMonitorWeightSharpFilled as default } +export default IconMonitorWeightSharpFilled diff --git a/src/IconMonitoringOutlined.tsx b/src/IconMonitoringOutlined.tsx index e3e1529d3..cc0a40f7c 100644 --- a/src/IconMonitoringOutlined.tsx +++ b/src/IconMonitoringOutlined.tsx @@ -8,4 +8,4 @@ const IconMonitoringOutlined: React.FC = ({ ...props }) => ( ) -export { IconMonitoringOutlined as default } +export default IconMonitoringOutlined diff --git a/src/IconMonitoringOutlinedFilled.tsx b/src/IconMonitoringOutlinedFilled.tsx index e765eb8f8..d64be930e 100644 --- a/src/IconMonitoringOutlinedFilled.tsx +++ b/src/IconMonitoringOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconMonitoringOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconMonitoringOutlinedFilled as default } +export default IconMonitoringOutlinedFilled diff --git a/src/IconMonitoringRounded.tsx b/src/IconMonitoringRounded.tsx index 8c8cfdb8a..d16e2cd12 100644 --- a/src/IconMonitoringRounded.tsx +++ b/src/IconMonitoringRounded.tsx @@ -8,4 +8,4 @@ const IconMonitoringRounded: React.FC = ({ ...props }) => ( ) -export { IconMonitoringRounded as default } +export default IconMonitoringRounded diff --git a/src/IconMonitoringRoundedFilled.tsx b/src/IconMonitoringRoundedFilled.tsx index 934685299..4beef4806 100644 --- a/src/IconMonitoringRoundedFilled.tsx +++ b/src/IconMonitoringRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconMonitoringRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconMonitoringRoundedFilled as default } +export default IconMonitoringRoundedFilled diff --git a/src/IconMonitoringSharp.tsx b/src/IconMonitoringSharp.tsx index d6ced3482..b2e3d6a38 100644 --- a/src/IconMonitoringSharp.tsx +++ b/src/IconMonitoringSharp.tsx @@ -8,4 +8,4 @@ const IconMonitoringSharp: React.FC = ({ ...props }) => ( ) -export { IconMonitoringSharp as default } +export default IconMonitoringSharp diff --git a/src/IconMonitoringSharpFilled.tsx b/src/IconMonitoringSharpFilled.tsx index 7ef274927..c8361b671 100644 --- a/src/IconMonitoringSharpFilled.tsx +++ b/src/IconMonitoringSharpFilled.tsx @@ -8,4 +8,4 @@ const IconMonitoringSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconMonitoringSharpFilled as default } +export default IconMonitoringSharpFilled diff --git a/src/IconMonochromePhotosOutlined.tsx b/src/IconMonochromePhotosOutlined.tsx index 37d02e2b4..4377ff8e8 100644 --- a/src/IconMonochromePhotosOutlined.tsx +++ b/src/IconMonochromePhotosOutlined.tsx @@ -8,4 +8,4 @@ const IconMonochromePhotosOutlined: React.FC = ({ ...props }) => ( ) -export { IconMonochromePhotosOutlined as default } +export default IconMonochromePhotosOutlined diff --git a/src/IconMonochromePhotosOutlinedFilled.tsx b/src/IconMonochromePhotosOutlinedFilled.tsx index 18e949b31..e6a40293a 100644 --- a/src/IconMonochromePhotosOutlinedFilled.tsx +++ b/src/IconMonochromePhotosOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconMonochromePhotosOutlinedFilled: React.FC = ({ ) -export { IconMonochromePhotosOutlinedFilled as default } +export default IconMonochromePhotosOutlinedFilled diff --git a/src/IconMonochromePhotosRounded.tsx b/src/IconMonochromePhotosRounded.tsx index ddf068fe1..e3263d417 100644 --- a/src/IconMonochromePhotosRounded.tsx +++ b/src/IconMonochromePhotosRounded.tsx @@ -8,4 +8,4 @@ const IconMonochromePhotosRounded: React.FC = ({ ...props }) => ( ) -export { IconMonochromePhotosRounded as default } +export default IconMonochromePhotosRounded diff --git a/src/IconMonochromePhotosRoundedFilled.tsx b/src/IconMonochromePhotosRoundedFilled.tsx index a3d6858bd..759fee84b 100644 --- a/src/IconMonochromePhotosRoundedFilled.tsx +++ b/src/IconMonochromePhotosRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconMonochromePhotosRoundedFilled: React.FC = ({ ) -export { IconMonochromePhotosRoundedFilled as default } +export default IconMonochromePhotosRoundedFilled diff --git a/src/IconMonochromePhotosSharp.tsx b/src/IconMonochromePhotosSharp.tsx index 6b240131a..0ff237d1d 100644 --- a/src/IconMonochromePhotosSharp.tsx +++ b/src/IconMonochromePhotosSharp.tsx @@ -8,4 +8,4 @@ const IconMonochromePhotosSharp: React.FC = ({ ...props }) => ( ) -export { IconMonochromePhotosSharp as default } +export default IconMonochromePhotosSharp diff --git a/src/IconMonochromePhotosSharpFilled.tsx b/src/IconMonochromePhotosSharpFilled.tsx index cfa4637f3..512297a6f 100644 --- a/src/IconMonochromePhotosSharpFilled.tsx +++ b/src/IconMonochromePhotosSharpFilled.tsx @@ -8,4 +8,4 @@ const IconMonochromePhotosSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconMonochromePhotosSharpFilled as default } +export default IconMonochromePhotosSharpFilled diff --git a/src/IconMonorailOutlined.tsx b/src/IconMonorailOutlined.tsx index 4e8582258..1a0999681 100644 --- a/src/IconMonorailOutlined.tsx +++ b/src/IconMonorailOutlined.tsx @@ -8,4 +8,4 @@ const IconMonorailOutlined: React.FC = ({ ...props }) => ( ) -export { IconMonorailOutlined as default } +export default IconMonorailOutlined diff --git a/src/IconMonorailOutlinedFilled.tsx b/src/IconMonorailOutlinedFilled.tsx index b0c56d795..a62c06b3a 100644 --- a/src/IconMonorailOutlinedFilled.tsx +++ b/src/IconMonorailOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconMonorailOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconMonorailOutlinedFilled as default } +export default IconMonorailOutlinedFilled diff --git a/src/IconMonorailRounded.tsx b/src/IconMonorailRounded.tsx index 9091ee30a..0d2c84670 100644 --- a/src/IconMonorailRounded.tsx +++ b/src/IconMonorailRounded.tsx @@ -8,4 +8,4 @@ const IconMonorailRounded: React.FC = ({ ...props }) => ( ) -export { IconMonorailRounded as default } +export default IconMonorailRounded diff --git a/src/IconMonorailRoundedFilled.tsx b/src/IconMonorailRoundedFilled.tsx index 65ca106b5..8a7efeea2 100644 --- a/src/IconMonorailRoundedFilled.tsx +++ b/src/IconMonorailRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconMonorailRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconMonorailRoundedFilled as default } +export default IconMonorailRoundedFilled diff --git a/src/IconMonorailSharp.tsx b/src/IconMonorailSharp.tsx index e9cc93b44..4b2b616d6 100644 --- a/src/IconMonorailSharp.tsx +++ b/src/IconMonorailSharp.tsx @@ -8,4 +8,4 @@ const IconMonorailSharp: React.FC = ({ ...props }) => ( ) -export { IconMonorailSharp as default } +export default IconMonorailSharp diff --git a/src/IconMonorailSharpFilled.tsx b/src/IconMonorailSharpFilled.tsx index f33ce22ed..b69ab59f1 100644 --- a/src/IconMonorailSharpFilled.tsx +++ b/src/IconMonorailSharpFilled.tsx @@ -8,4 +8,4 @@ const IconMonorailSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconMonorailSharpFilled as default } +export default IconMonorailSharpFilled diff --git a/src/IconMoodBadOutlined.tsx b/src/IconMoodBadOutlined.tsx index dc2b13bdf..a1ad4f924 100644 --- a/src/IconMoodBadOutlined.tsx +++ b/src/IconMoodBadOutlined.tsx @@ -8,4 +8,4 @@ const IconMoodBadOutlined: React.FC = ({ ...props }) => ( ) -export { IconMoodBadOutlined as default } +export default IconMoodBadOutlined diff --git a/src/IconMoodBadOutlinedFilled.tsx b/src/IconMoodBadOutlinedFilled.tsx index bf6c2e1a3..bad158a96 100644 --- a/src/IconMoodBadOutlinedFilled.tsx +++ b/src/IconMoodBadOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconMoodBadOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconMoodBadOutlinedFilled as default } +export default IconMoodBadOutlinedFilled diff --git a/src/IconMoodBadRounded.tsx b/src/IconMoodBadRounded.tsx index 3e3efa312..5dc396adc 100644 --- a/src/IconMoodBadRounded.tsx +++ b/src/IconMoodBadRounded.tsx @@ -8,4 +8,4 @@ const IconMoodBadRounded: React.FC = ({ ...props }) => ( ) -export { IconMoodBadRounded as default } +export default IconMoodBadRounded diff --git a/src/IconMoodBadRoundedFilled.tsx b/src/IconMoodBadRoundedFilled.tsx index 8ee9c95d4..84aaaa03a 100644 --- a/src/IconMoodBadRoundedFilled.tsx +++ b/src/IconMoodBadRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconMoodBadRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconMoodBadRoundedFilled as default } +export default IconMoodBadRoundedFilled diff --git a/src/IconMoodBadSharp.tsx b/src/IconMoodBadSharp.tsx index cc5331f92..7b47a0b46 100644 --- a/src/IconMoodBadSharp.tsx +++ b/src/IconMoodBadSharp.tsx @@ -8,4 +8,4 @@ const IconMoodBadSharp: React.FC = ({ ...props }) => ( ) -export { IconMoodBadSharp as default } +export default IconMoodBadSharp diff --git a/src/IconMoodBadSharpFilled.tsx b/src/IconMoodBadSharpFilled.tsx index 196e4b1fe..05c1be3fc 100644 --- a/src/IconMoodBadSharpFilled.tsx +++ b/src/IconMoodBadSharpFilled.tsx @@ -8,4 +8,4 @@ const IconMoodBadSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconMoodBadSharpFilled as default } +export default IconMoodBadSharpFilled diff --git a/src/IconMoodOutlined.tsx b/src/IconMoodOutlined.tsx index d47de9b3d..3f288c655 100644 --- a/src/IconMoodOutlined.tsx +++ b/src/IconMoodOutlined.tsx @@ -8,4 +8,4 @@ const IconMoodOutlined: React.FC = ({ ...props }) => ( ) -export { IconMoodOutlined as default } +export default IconMoodOutlined diff --git a/src/IconMoodOutlinedFilled.tsx b/src/IconMoodOutlinedFilled.tsx index 01116b9f6..4740a223e 100644 --- a/src/IconMoodOutlinedFilled.tsx +++ b/src/IconMoodOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconMoodOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconMoodOutlinedFilled as default } +export default IconMoodOutlinedFilled diff --git a/src/IconMoodRounded.tsx b/src/IconMoodRounded.tsx index 9417e86ee..209d8a715 100644 --- a/src/IconMoodRounded.tsx +++ b/src/IconMoodRounded.tsx @@ -8,4 +8,4 @@ const IconMoodRounded: React.FC = ({ ...props }) => ( ) -export { IconMoodRounded as default } +export default IconMoodRounded diff --git a/src/IconMoodRoundedFilled.tsx b/src/IconMoodRoundedFilled.tsx index 442ec5c54..e14f89fab 100644 --- a/src/IconMoodRoundedFilled.tsx +++ b/src/IconMoodRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconMoodRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconMoodRoundedFilled as default } +export default IconMoodRoundedFilled diff --git a/src/IconMoodSharp.tsx b/src/IconMoodSharp.tsx index 65204a04f..bb7ef5f02 100644 --- a/src/IconMoodSharp.tsx +++ b/src/IconMoodSharp.tsx @@ -8,4 +8,4 @@ const IconMoodSharp: React.FC = ({ ...props }) => ( ) -export { IconMoodSharp as default } +export default IconMoodSharp diff --git a/src/IconMoodSharpFilled.tsx b/src/IconMoodSharpFilled.tsx index 9ad0f6d1d..d38e8306a 100644 --- a/src/IconMoodSharpFilled.tsx +++ b/src/IconMoodSharpFilled.tsx @@ -8,4 +8,4 @@ const IconMoodSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconMoodSharpFilled as default } +export default IconMoodSharpFilled diff --git a/src/IconMopOutlined.tsx b/src/IconMopOutlined.tsx index 3e0c4621b..bfa32f6a3 100644 --- a/src/IconMopOutlined.tsx +++ b/src/IconMopOutlined.tsx @@ -8,4 +8,4 @@ const IconMopOutlined: React.FC = ({ ...props }) => ( ) -export { IconMopOutlined as default } +export default IconMopOutlined diff --git a/src/IconMopOutlinedFilled.tsx b/src/IconMopOutlinedFilled.tsx index bbb4fb418..e8dc4de38 100644 --- a/src/IconMopOutlinedFilled.tsx +++ b/src/IconMopOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconMopOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconMopOutlinedFilled as default } +export default IconMopOutlinedFilled diff --git a/src/IconMopRounded.tsx b/src/IconMopRounded.tsx index 8539e61e5..947cc670d 100644 --- a/src/IconMopRounded.tsx +++ b/src/IconMopRounded.tsx @@ -8,4 +8,4 @@ const IconMopRounded: React.FC = ({ ...props }) => ( ) -export { IconMopRounded as default } +export default IconMopRounded diff --git a/src/IconMopRoundedFilled.tsx b/src/IconMopRoundedFilled.tsx index 55cc3c1e6..f3f8ef6f9 100644 --- a/src/IconMopRoundedFilled.tsx +++ b/src/IconMopRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconMopRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconMopRoundedFilled as default } +export default IconMopRoundedFilled diff --git a/src/IconMopSharp.tsx b/src/IconMopSharp.tsx index 343923021..383ddf9aa 100644 --- a/src/IconMopSharp.tsx +++ b/src/IconMopSharp.tsx @@ -8,4 +8,4 @@ const IconMopSharp: React.FC = ({ ...props }) => ( ) -export { IconMopSharp as default } +export default IconMopSharp diff --git a/src/IconMopSharpFilled.tsx b/src/IconMopSharpFilled.tsx index 218094f7a..1595d874b 100644 --- a/src/IconMopSharpFilled.tsx +++ b/src/IconMopSharpFilled.tsx @@ -8,4 +8,4 @@ const IconMopSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconMopSharpFilled as default } +export default IconMopSharpFilled diff --git a/src/IconMoreDownOutlined.tsx b/src/IconMoreDownOutlined.tsx index 2d7df57fb..24d319f18 100644 --- a/src/IconMoreDownOutlined.tsx +++ b/src/IconMoreDownOutlined.tsx @@ -8,4 +8,4 @@ const IconMoreDownOutlined: React.FC = ({ ...props }) => ( ) -export { IconMoreDownOutlined as default } +export default IconMoreDownOutlined diff --git a/src/IconMoreDownOutlinedFilled.tsx b/src/IconMoreDownOutlinedFilled.tsx index dbc4bfbdc..5724047fe 100644 --- a/src/IconMoreDownOutlinedFilled.tsx +++ b/src/IconMoreDownOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconMoreDownOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconMoreDownOutlinedFilled as default } +export default IconMoreDownOutlinedFilled diff --git a/src/IconMoreDownRounded.tsx b/src/IconMoreDownRounded.tsx index ca43e430c..bee9c0e84 100644 --- a/src/IconMoreDownRounded.tsx +++ b/src/IconMoreDownRounded.tsx @@ -8,4 +8,4 @@ const IconMoreDownRounded: React.FC = ({ ...props }) => ( ) -export { IconMoreDownRounded as default } +export default IconMoreDownRounded diff --git a/src/IconMoreDownRoundedFilled.tsx b/src/IconMoreDownRoundedFilled.tsx index 7b84b2a03..d05807e59 100644 --- a/src/IconMoreDownRoundedFilled.tsx +++ b/src/IconMoreDownRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconMoreDownRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconMoreDownRoundedFilled as default } +export default IconMoreDownRoundedFilled diff --git a/src/IconMoreDownSharp.tsx b/src/IconMoreDownSharp.tsx index 20a17badd..9755291c1 100644 --- a/src/IconMoreDownSharp.tsx +++ b/src/IconMoreDownSharp.tsx @@ -8,4 +8,4 @@ const IconMoreDownSharp: React.FC = ({ ...props }) => ( ) -export { IconMoreDownSharp as default } +export default IconMoreDownSharp diff --git a/src/IconMoreDownSharpFilled.tsx b/src/IconMoreDownSharpFilled.tsx index 3b7f033aa..6577b154d 100644 --- a/src/IconMoreDownSharpFilled.tsx +++ b/src/IconMoreDownSharpFilled.tsx @@ -8,4 +8,4 @@ const IconMoreDownSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconMoreDownSharpFilled as default } +export default IconMoreDownSharpFilled diff --git a/src/IconMoreHorizOutlined.tsx b/src/IconMoreHorizOutlined.tsx index 5c3a9744c..567d0da23 100644 --- a/src/IconMoreHorizOutlined.tsx +++ b/src/IconMoreHorizOutlined.tsx @@ -8,4 +8,4 @@ const IconMoreHorizOutlined: React.FC = ({ ...props }) => ( ) -export { IconMoreHorizOutlined as default } +export default IconMoreHorizOutlined diff --git a/src/IconMoreHorizOutlinedFilled.tsx b/src/IconMoreHorizOutlinedFilled.tsx index 57845318a..e3cba7df7 100644 --- a/src/IconMoreHorizOutlinedFilled.tsx +++ b/src/IconMoreHorizOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconMoreHorizOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconMoreHorizOutlinedFilled as default } +export default IconMoreHorizOutlinedFilled diff --git a/src/IconMoreHorizRounded.tsx b/src/IconMoreHorizRounded.tsx index 72a9352d8..67308c905 100644 --- a/src/IconMoreHorizRounded.tsx +++ b/src/IconMoreHorizRounded.tsx @@ -8,4 +8,4 @@ const IconMoreHorizRounded: React.FC = ({ ...props }) => ( ) -export { IconMoreHorizRounded as default } +export default IconMoreHorizRounded diff --git a/src/IconMoreHorizRoundedFilled.tsx b/src/IconMoreHorizRoundedFilled.tsx index 3d1838688..071bc44a3 100644 --- a/src/IconMoreHorizRoundedFilled.tsx +++ b/src/IconMoreHorizRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconMoreHorizRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconMoreHorizRoundedFilled as default } +export default IconMoreHorizRoundedFilled diff --git a/src/IconMoreHorizSharp.tsx b/src/IconMoreHorizSharp.tsx index f883afcd5..4957a3875 100644 --- a/src/IconMoreHorizSharp.tsx +++ b/src/IconMoreHorizSharp.tsx @@ -8,4 +8,4 @@ const IconMoreHorizSharp: React.FC = ({ ...props }) => ( ) -export { IconMoreHorizSharp as default } +export default IconMoreHorizSharp diff --git a/src/IconMoreHorizSharpFilled.tsx b/src/IconMoreHorizSharpFilled.tsx index fb919721d..dac1fe7d7 100644 --- a/src/IconMoreHorizSharpFilled.tsx +++ b/src/IconMoreHorizSharpFilled.tsx @@ -8,4 +8,4 @@ const IconMoreHorizSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconMoreHorizSharpFilled as default } +export default IconMoreHorizSharpFilled diff --git a/src/IconMoreOutlined.tsx b/src/IconMoreOutlined.tsx index 62c6f1638..fa555cfc5 100644 --- a/src/IconMoreOutlined.tsx +++ b/src/IconMoreOutlined.tsx @@ -8,4 +8,4 @@ const IconMoreOutlined: React.FC = ({ ...props }) => ( ) -export { IconMoreOutlined as default } +export default IconMoreOutlined diff --git a/src/IconMoreOutlinedFilled.tsx b/src/IconMoreOutlinedFilled.tsx index cb51a1cbc..356e812e6 100644 --- a/src/IconMoreOutlinedFilled.tsx +++ b/src/IconMoreOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconMoreOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconMoreOutlinedFilled as default } +export default IconMoreOutlinedFilled diff --git a/src/IconMoreRounded.tsx b/src/IconMoreRounded.tsx index 5085f13ec..6c5a5ebbc 100644 --- a/src/IconMoreRounded.tsx +++ b/src/IconMoreRounded.tsx @@ -8,4 +8,4 @@ const IconMoreRounded: React.FC = ({ ...props }) => ( ) -export { IconMoreRounded as default } +export default IconMoreRounded diff --git a/src/IconMoreRoundedFilled.tsx b/src/IconMoreRoundedFilled.tsx index 7e9321b74..b4d789538 100644 --- a/src/IconMoreRoundedFilled.tsx +++ b/src/IconMoreRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconMoreRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconMoreRoundedFilled as default } +export default IconMoreRoundedFilled diff --git a/src/IconMoreSharp.tsx b/src/IconMoreSharp.tsx index 758dc1ba9..a98372b85 100644 --- a/src/IconMoreSharp.tsx +++ b/src/IconMoreSharp.tsx @@ -8,4 +8,4 @@ const IconMoreSharp: React.FC = ({ ...props }) => ( ) -export { IconMoreSharp as default } +export default IconMoreSharp diff --git a/src/IconMoreSharpFilled.tsx b/src/IconMoreSharpFilled.tsx index 543c222db..21644ca00 100644 --- a/src/IconMoreSharpFilled.tsx +++ b/src/IconMoreSharpFilled.tsx @@ -8,4 +8,4 @@ const IconMoreSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconMoreSharpFilled as default } +export default IconMoreSharpFilled diff --git a/src/IconMoreTimeOutlined.tsx b/src/IconMoreTimeOutlined.tsx index aa8760732..d4f337b50 100644 --- a/src/IconMoreTimeOutlined.tsx +++ b/src/IconMoreTimeOutlined.tsx @@ -8,4 +8,4 @@ const IconMoreTimeOutlined: React.FC = ({ ...props }) => ( ) -export { IconMoreTimeOutlined as default } +export default IconMoreTimeOutlined diff --git a/src/IconMoreTimeOutlinedFilled.tsx b/src/IconMoreTimeOutlinedFilled.tsx index 279c49a59..7ba19be26 100644 --- a/src/IconMoreTimeOutlinedFilled.tsx +++ b/src/IconMoreTimeOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconMoreTimeOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconMoreTimeOutlinedFilled as default } +export default IconMoreTimeOutlinedFilled diff --git a/src/IconMoreTimeRounded.tsx b/src/IconMoreTimeRounded.tsx index de470cfa0..158cc5be7 100644 --- a/src/IconMoreTimeRounded.tsx +++ b/src/IconMoreTimeRounded.tsx @@ -8,4 +8,4 @@ const IconMoreTimeRounded: React.FC = ({ ...props }) => ( ) -export { IconMoreTimeRounded as default } +export default IconMoreTimeRounded diff --git a/src/IconMoreTimeRoundedFilled.tsx b/src/IconMoreTimeRoundedFilled.tsx index d08ac0eee..45c1689c3 100644 --- a/src/IconMoreTimeRoundedFilled.tsx +++ b/src/IconMoreTimeRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconMoreTimeRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconMoreTimeRoundedFilled as default } +export default IconMoreTimeRoundedFilled diff --git a/src/IconMoreTimeSharp.tsx b/src/IconMoreTimeSharp.tsx index d9f4b5f03..ffcd07d7f 100644 --- a/src/IconMoreTimeSharp.tsx +++ b/src/IconMoreTimeSharp.tsx @@ -8,4 +8,4 @@ const IconMoreTimeSharp: React.FC = ({ ...props }) => ( ) -export { IconMoreTimeSharp as default } +export default IconMoreTimeSharp diff --git a/src/IconMoreTimeSharpFilled.tsx b/src/IconMoreTimeSharpFilled.tsx index 87ebcb8d4..c6005de8d 100644 --- a/src/IconMoreTimeSharpFilled.tsx +++ b/src/IconMoreTimeSharpFilled.tsx @@ -8,4 +8,4 @@ const IconMoreTimeSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconMoreTimeSharpFilled as default } +export default IconMoreTimeSharpFilled diff --git a/src/IconMoreUpOutlined.tsx b/src/IconMoreUpOutlined.tsx index 4192ce195..347d80fe7 100644 --- a/src/IconMoreUpOutlined.tsx +++ b/src/IconMoreUpOutlined.tsx @@ -8,4 +8,4 @@ const IconMoreUpOutlined: React.FC = ({ ...props }) => ( ) -export { IconMoreUpOutlined as default } +export default IconMoreUpOutlined diff --git a/src/IconMoreUpOutlinedFilled.tsx b/src/IconMoreUpOutlinedFilled.tsx index d69a5fe60..e357dbe7e 100644 --- a/src/IconMoreUpOutlinedFilled.tsx +++ b/src/IconMoreUpOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconMoreUpOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconMoreUpOutlinedFilled as default } +export default IconMoreUpOutlinedFilled diff --git a/src/IconMoreUpRounded.tsx b/src/IconMoreUpRounded.tsx index 56c064823..adb520364 100644 --- a/src/IconMoreUpRounded.tsx +++ b/src/IconMoreUpRounded.tsx @@ -8,4 +8,4 @@ const IconMoreUpRounded: React.FC = ({ ...props }) => ( ) -export { IconMoreUpRounded as default } +export default IconMoreUpRounded diff --git a/src/IconMoreUpRoundedFilled.tsx b/src/IconMoreUpRoundedFilled.tsx index ed79ff237..c0e73caef 100644 --- a/src/IconMoreUpRoundedFilled.tsx +++ b/src/IconMoreUpRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconMoreUpRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconMoreUpRoundedFilled as default } +export default IconMoreUpRoundedFilled diff --git a/src/IconMoreUpSharp.tsx b/src/IconMoreUpSharp.tsx index 290600c9b..2b3140116 100644 --- a/src/IconMoreUpSharp.tsx +++ b/src/IconMoreUpSharp.tsx @@ -8,4 +8,4 @@ const IconMoreUpSharp: React.FC = ({ ...props }) => ( ) -export { IconMoreUpSharp as default } +export default IconMoreUpSharp diff --git a/src/IconMoreUpSharpFilled.tsx b/src/IconMoreUpSharpFilled.tsx index bb931f0fe..4a5171b44 100644 --- a/src/IconMoreUpSharpFilled.tsx +++ b/src/IconMoreUpSharpFilled.tsx @@ -8,4 +8,4 @@ const IconMoreUpSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconMoreUpSharpFilled as default } +export default IconMoreUpSharpFilled diff --git a/src/IconMoreVertOutlined.tsx b/src/IconMoreVertOutlined.tsx index a08452563..c2dac5178 100644 --- a/src/IconMoreVertOutlined.tsx +++ b/src/IconMoreVertOutlined.tsx @@ -8,4 +8,4 @@ const IconMoreVertOutlined: React.FC = ({ ...props }) => ( ) -export { IconMoreVertOutlined as default } +export default IconMoreVertOutlined diff --git a/src/IconMoreVertOutlinedFilled.tsx b/src/IconMoreVertOutlinedFilled.tsx index d2055021d..aa8ea72e1 100644 --- a/src/IconMoreVertOutlinedFilled.tsx +++ b/src/IconMoreVertOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconMoreVertOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconMoreVertOutlinedFilled as default } +export default IconMoreVertOutlinedFilled diff --git a/src/IconMoreVertRounded.tsx b/src/IconMoreVertRounded.tsx index 8c12039d2..e13b36410 100644 --- a/src/IconMoreVertRounded.tsx +++ b/src/IconMoreVertRounded.tsx @@ -8,4 +8,4 @@ const IconMoreVertRounded: React.FC = ({ ...props }) => ( ) -export { IconMoreVertRounded as default } +export default IconMoreVertRounded diff --git a/src/IconMoreVertRoundedFilled.tsx b/src/IconMoreVertRoundedFilled.tsx index c7b01aba0..4799c861c 100644 --- a/src/IconMoreVertRoundedFilled.tsx +++ b/src/IconMoreVertRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconMoreVertRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconMoreVertRoundedFilled as default } +export default IconMoreVertRoundedFilled diff --git a/src/IconMoreVertSharp.tsx b/src/IconMoreVertSharp.tsx index 053948f79..c1fe47ea1 100644 --- a/src/IconMoreVertSharp.tsx +++ b/src/IconMoreVertSharp.tsx @@ -8,4 +8,4 @@ const IconMoreVertSharp: React.FC = ({ ...props }) => ( ) -export { IconMoreVertSharp as default } +export default IconMoreVertSharp diff --git a/src/IconMoreVertSharpFilled.tsx b/src/IconMoreVertSharpFilled.tsx index e4c0aa51a..461c4838b 100644 --- a/src/IconMoreVertSharpFilled.tsx +++ b/src/IconMoreVertSharpFilled.tsx @@ -8,4 +8,4 @@ const IconMoreVertSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconMoreVertSharpFilled as default } +export default IconMoreVertSharpFilled diff --git a/src/IconMosqueOutlined.tsx b/src/IconMosqueOutlined.tsx index 3f81929ec..d2b512716 100644 --- a/src/IconMosqueOutlined.tsx +++ b/src/IconMosqueOutlined.tsx @@ -8,4 +8,4 @@ const IconMosqueOutlined: React.FC = ({ ...props }) => ( ) -export { IconMosqueOutlined as default } +export default IconMosqueOutlined diff --git a/src/IconMosqueOutlinedFilled.tsx b/src/IconMosqueOutlinedFilled.tsx index fdb82df34..1305ac4cc 100644 --- a/src/IconMosqueOutlinedFilled.tsx +++ b/src/IconMosqueOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconMosqueOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconMosqueOutlinedFilled as default } +export default IconMosqueOutlinedFilled diff --git a/src/IconMosqueRounded.tsx b/src/IconMosqueRounded.tsx index 084d4dabb..d751934df 100644 --- a/src/IconMosqueRounded.tsx +++ b/src/IconMosqueRounded.tsx @@ -8,4 +8,4 @@ const IconMosqueRounded: React.FC = ({ ...props }) => ( ) -export { IconMosqueRounded as default } +export default IconMosqueRounded diff --git a/src/IconMosqueRoundedFilled.tsx b/src/IconMosqueRoundedFilled.tsx index 0d5438e42..df2daf4a3 100644 --- a/src/IconMosqueRoundedFilled.tsx +++ b/src/IconMosqueRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconMosqueRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconMosqueRoundedFilled as default } +export default IconMosqueRoundedFilled diff --git a/src/IconMosqueSharp.tsx b/src/IconMosqueSharp.tsx index e3984ed83..0d077eb2f 100644 --- a/src/IconMosqueSharp.tsx +++ b/src/IconMosqueSharp.tsx @@ -8,4 +8,4 @@ const IconMosqueSharp: React.FC = ({ ...props }) => ( ) -export { IconMosqueSharp as default } +export default IconMosqueSharp diff --git a/src/IconMosqueSharpFilled.tsx b/src/IconMosqueSharpFilled.tsx index 29c83900c..07a1752d3 100644 --- a/src/IconMosqueSharpFilled.tsx +++ b/src/IconMosqueSharpFilled.tsx @@ -8,4 +8,4 @@ const IconMosqueSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconMosqueSharpFilled as default } +export default IconMosqueSharpFilled diff --git a/src/IconMotionBlurOutlined.tsx b/src/IconMotionBlurOutlined.tsx index fbe64ec50..127ea134e 100644 --- a/src/IconMotionBlurOutlined.tsx +++ b/src/IconMotionBlurOutlined.tsx @@ -8,4 +8,4 @@ const IconMotionBlurOutlined: React.FC = ({ ...props }) => ( ) -export { IconMotionBlurOutlined as default } +export default IconMotionBlurOutlined diff --git a/src/IconMotionBlurOutlinedFilled.tsx b/src/IconMotionBlurOutlinedFilled.tsx index 7413694c5..650466bba 100644 --- a/src/IconMotionBlurOutlinedFilled.tsx +++ b/src/IconMotionBlurOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconMotionBlurOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconMotionBlurOutlinedFilled as default } +export default IconMotionBlurOutlinedFilled diff --git a/src/IconMotionBlurRounded.tsx b/src/IconMotionBlurRounded.tsx index 9fcce3f10..02d65dfdb 100644 --- a/src/IconMotionBlurRounded.tsx +++ b/src/IconMotionBlurRounded.tsx @@ -8,4 +8,4 @@ const IconMotionBlurRounded: React.FC = ({ ...props }) => ( ) -export { IconMotionBlurRounded as default } +export default IconMotionBlurRounded diff --git a/src/IconMotionBlurRoundedFilled.tsx b/src/IconMotionBlurRoundedFilled.tsx index ea6e133f3..acaaa4c0d 100644 --- a/src/IconMotionBlurRoundedFilled.tsx +++ b/src/IconMotionBlurRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconMotionBlurRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconMotionBlurRoundedFilled as default } +export default IconMotionBlurRoundedFilled diff --git a/src/IconMotionBlurSharp.tsx b/src/IconMotionBlurSharp.tsx index e146a9b66..32c82e434 100644 --- a/src/IconMotionBlurSharp.tsx +++ b/src/IconMotionBlurSharp.tsx @@ -8,4 +8,4 @@ const IconMotionBlurSharp: React.FC = ({ ...props }) => ( ) -export { IconMotionBlurSharp as default } +export default IconMotionBlurSharp diff --git a/src/IconMotionBlurSharpFilled.tsx b/src/IconMotionBlurSharpFilled.tsx index 744e24fef..6e0267cc5 100644 --- a/src/IconMotionBlurSharpFilled.tsx +++ b/src/IconMotionBlurSharpFilled.tsx @@ -8,4 +8,4 @@ const IconMotionBlurSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconMotionBlurSharpFilled as default } +export default IconMotionBlurSharpFilled diff --git a/src/IconMotionModeOutlined.tsx b/src/IconMotionModeOutlined.tsx index 9f1e07401..e8dd1d738 100644 --- a/src/IconMotionModeOutlined.tsx +++ b/src/IconMotionModeOutlined.tsx @@ -8,4 +8,4 @@ const IconMotionModeOutlined: React.FC = ({ ...props }) => ( ) -export { IconMotionModeOutlined as default } +export default IconMotionModeOutlined diff --git a/src/IconMotionModeOutlinedFilled.tsx b/src/IconMotionModeOutlinedFilled.tsx index 8b4ffc4e8..686ed73d6 100644 --- a/src/IconMotionModeOutlinedFilled.tsx +++ b/src/IconMotionModeOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconMotionModeOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconMotionModeOutlinedFilled as default } +export default IconMotionModeOutlinedFilled diff --git a/src/IconMotionModeRounded.tsx b/src/IconMotionModeRounded.tsx index 4b34f5da7..017784f97 100644 --- a/src/IconMotionModeRounded.tsx +++ b/src/IconMotionModeRounded.tsx @@ -8,4 +8,4 @@ const IconMotionModeRounded: React.FC = ({ ...props }) => ( ) -export { IconMotionModeRounded as default } +export default IconMotionModeRounded diff --git a/src/IconMotionModeRoundedFilled.tsx b/src/IconMotionModeRoundedFilled.tsx index a47a121d9..a97bc7f83 100644 --- a/src/IconMotionModeRoundedFilled.tsx +++ b/src/IconMotionModeRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconMotionModeRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconMotionModeRoundedFilled as default } +export default IconMotionModeRoundedFilled diff --git a/src/IconMotionModeSharp.tsx b/src/IconMotionModeSharp.tsx index c77c8da46..d2e0de69f 100644 --- a/src/IconMotionModeSharp.tsx +++ b/src/IconMotionModeSharp.tsx @@ -8,4 +8,4 @@ const IconMotionModeSharp: React.FC = ({ ...props }) => ( ) -export { IconMotionModeSharp as default } +export default IconMotionModeSharp diff --git a/src/IconMotionModeSharpFilled.tsx b/src/IconMotionModeSharpFilled.tsx index 10702da6a..f60e6f2ac 100644 --- a/src/IconMotionModeSharpFilled.tsx +++ b/src/IconMotionModeSharpFilled.tsx @@ -8,4 +8,4 @@ const IconMotionModeSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconMotionModeSharpFilled as default } +export default IconMotionModeSharpFilled diff --git a/src/IconMotionPhotosAutoOutlined.tsx b/src/IconMotionPhotosAutoOutlined.tsx index 5c3a8ce42..9ecc88142 100644 --- a/src/IconMotionPhotosAutoOutlined.tsx +++ b/src/IconMotionPhotosAutoOutlined.tsx @@ -8,4 +8,4 @@ const IconMotionPhotosAutoOutlined: React.FC = ({ ...props }) => ( ) -export { IconMotionPhotosAutoOutlined as default } +export default IconMotionPhotosAutoOutlined diff --git a/src/IconMotionPhotosAutoOutlinedFilled.tsx b/src/IconMotionPhotosAutoOutlinedFilled.tsx index ba2af0c16..d516f76d4 100644 --- a/src/IconMotionPhotosAutoOutlinedFilled.tsx +++ b/src/IconMotionPhotosAutoOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconMotionPhotosAutoOutlinedFilled: React.FC = ({ ) -export { IconMotionPhotosAutoOutlinedFilled as default } +export default IconMotionPhotosAutoOutlinedFilled diff --git a/src/IconMotionPhotosAutoRounded.tsx b/src/IconMotionPhotosAutoRounded.tsx index e2898c4b6..14ebb0fba 100644 --- a/src/IconMotionPhotosAutoRounded.tsx +++ b/src/IconMotionPhotosAutoRounded.tsx @@ -8,4 +8,4 @@ const IconMotionPhotosAutoRounded: React.FC = ({ ...props }) => ( ) -export { IconMotionPhotosAutoRounded as default } +export default IconMotionPhotosAutoRounded diff --git a/src/IconMotionPhotosAutoRoundedFilled.tsx b/src/IconMotionPhotosAutoRoundedFilled.tsx index 5b7b8ae15..acfdca5d3 100644 --- a/src/IconMotionPhotosAutoRoundedFilled.tsx +++ b/src/IconMotionPhotosAutoRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconMotionPhotosAutoRoundedFilled: React.FC = ({ ) -export { IconMotionPhotosAutoRoundedFilled as default } +export default IconMotionPhotosAutoRoundedFilled diff --git a/src/IconMotionPhotosAutoSharp.tsx b/src/IconMotionPhotosAutoSharp.tsx index 471b3e86c..90cdf7943 100644 --- a/src/IconMotionPhotosAutoSharp.tsx +++ b/src/IconMotionPhotosAutoSharp.tsx @@ -8,4 +8,4 @@ const IconMotionPhotosAutoSharp: React.FC = ({ ...props }) => ( ) -export { IconMotionPhotosAutoSharp as default } +export default IconMotionPhotosAutoSharp diff --git a/src/IconMotionPhotosAutoSharpFilled.tsx b/src/IconMotionPhotosAutoSharpFilled.tsx index 2afb747a6..65004b598 100644 --- a/src/IconMotionPhotosAutoSharpFilled.tsx +++ b/src/IconMotionPhotosAutoSharpFilled.tsx @@ -8,4 +8,4 @@ const IconMotionPhotosAutoSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconMotionPhotosAutoSharpFilled as default } +export default IconMotionPhotosAutoSharpFilled diff --git a/src/IconMotionPhotosOffOutlined.tsx b/src/IconMotionPhotosOffOutlined.tsx index 55cf9a126..6bf70bbe7 100644 --- a/src/IconMotionPhotosOffOutlined.tsx +++ b/src/IconMotionPhotosOffOutlined.tsx @@ -8,4 +8,4 @@ const IconMotionPhotosOffOutlined: React.FC = ({ ...props }) => ( ) -export { IconMotionPhotosOffOutlined as default } +export default IconMotionPhotosOffOutlined diff --git a/src/IconMotionPhotosOffOutlinedFilled.tsx b/src/IconMotionPhotosOffOutlinedFilled.tsx index dd76a744d..873623dc7 100644 --- a/src/IconMotionPhotosOffOutlinedFilled.tsx +++ b/src/IconMotionPhotosOffOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconMotionPhotosOffOutlinedFilled: React.FC = ({ ) -export { IconMotionPhotosOffOutlinedFilled as default } +export default IconMotionPhotosOffOutlinedFilled diff --git a/src/IconMotionPhotosOffRounded.tsx b/src/IconMotionPhotosOffRounded.tsx index 00434e9cd..c35e8f61d 100644 --- a/src/IconMotionPhotosOffRounded.tsx +++ b/src/IconMotionPhotosOffRounded.tsx @@ -8,4 +8,4 @@ const IconMotionPhotosOffRounded: React.FC = ({ ...props }) => ( ) -export { IconMotionPhotosOffRounded as default } +export default IconMotionPhotosOffRounded diff --git a/src/IconMotionPhotosOffRoundedFilled.tsx b/src/IconMotionPhotosOffRoundedFilled.tsx index e42c7a502..3fdd03920 100644 --- a/src/IconMotionPhotosOffRoundedFilled.tsx +++ b/src/IconMotionPhotosOffRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconMotionPhotosOffRoundedFilled: React.FC = ({ ) -export { IconMotionPhotosOffRoundedFilled as default } +export default IconMotionPhotosOffRoundedFilled diff --git a/src/IconMotionPhotosOffSharp.tsx b/src/IconMotionPhotosOffSharp.tsx index b3fda605f..07ea21200 100644 --- a/src/IconMotionPhotosOffSharp.tsx +++ b/src/IconMotionPhotosOffSharp.tsx @@ -8,4 +8,4 @@ const IconMotionPhotosOffSharp: React.FC = ({ ...props }) => ( ) -export { IconMotionPhotosOffSharp as default } +export default IconMotionPhotosOffSharp diff --git a/src/IconMotionPhotosOffSharpFilled.tsx b/src/IconMotionPhotosOffSharpFilled.tsx index 0e23ee0f6..d4b30f649 100644 --- a/src/IconMotionPhotosOffSharpFilled.tsx +++ b/src/IconMotionPhotosOffSharpFilled.tsx @@ -8,4 +8,4 @@ const IconMotionPhotosOffSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconMotionPhotosOffSharpFilled as default } +export default IconMotionPhotosOffSharpFilled diff --git a/src/IconMotionPhotosOnOutlined.tsx b/src/IconMotionPhotosOnOutlined.tsx index 9557a938d..f7fe0bf55 100644 --- a/src/IconMotionPhotosOnOutlined.tsx +++ b/src/IconMotionPhotosOnOutlined.tsx @@ -8,4 +8,4 @@ const IconMotionPhotosOnOutlined: React.FC = ({ ...props }) => ( ) -export { IconMotionPhotosOnOutlined as default } +export default IconMotionPhotosOnOutlined diff --git a/src/IconMotionPhotosOnOutlinedFilled.tsx b/src/IconMotionPhotosOnOutlinedFilled.tsx index dbb9cab61..244fb2463 100644 --- a/src/IconMotionPhotosOnOutlinedFilled.tsx +++ b/src/IconMotionPhotosOnOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconMotionPhotosOnOutlinedFilled: React.FC = ({ ) -export { IconMotionPhotosOnOutlinedFilled as default } +export default IconMotionPhotosOnOutlinedFilled diff --git a/src/IconMotionPhotosOnRounded.tsx b/src/IconMotionPhotosOnRounded.tsx index 86657ff21..3d4bd4c2b 100644 --- a/src/IconMotionPhotosOnRounded.tsx +++ b/src/IconMotionPhotosOnRounded.tsx @@ -8,4 +8,4 @@ const IconMotionPhotosOnRounded: React.FC = ({ ...props }) => ( ) -export { IconMotionPhotosOnRounded as default } +export default IconMotionPhotosOnRounded diff --git a/src/IconMotionPhotosOnRoundedFilled.tsx b/src/IconMotionPhotosOnRoundedFilled.tsx index ab4b47b33..cf1960c45 100644 --- a/src/IconMotionPhotosOnRoundedFilled.tsx +++ b/src/IconMotionPhotosOnRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconMotionPhotosOnRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconMotionPhotosOnRoundedFilled as default } +export default IconMotionPhotosOnRoundedFilled diff --git a/src/IconMotionPhotosOnSharp.tsx b/src/IconMotionPhotosOnSharp.tsx index df4ac0caf..4c259e3e2 100644 --- a/src/IconMotionPhotosOnSharp.tsx +++ b/src/IconMotionPhotosOnSharp.tsx @@ -8,4 +8,4 @@ const IconMotionPhotosOnSharp: React.FC = ({ ...props }) => ( ) -export { IconMotionPhotosOnSharp as default } +export default IconMotionPhotosOnSharp diff --git a/src/IconMotionPhotosOnSharpFilled.tsx b/src/IconMotionPhotosOnSharpFilled.tsx index ea0d20dbb..8338aa768 100644 --- a/src/IconMotionPhotosOnSharpFilled.tsx +++ b/src/IconMotionPhotosOnSharpFilled.tsx @@ -8,4 +8,4 @@ const IconMotionPhotosOnSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconMotionPhotosOnSharpFilled as default } +export default IconMotionPhotosOnSharpFilled diff --git a/src/IconMotionPhotosPausedOutlined.tsx b/src/IconMotionPhotosPausedOutlined.tsx index 8781d9478..329b807b5 100644 --- a/src/IconMotionPhotosPausedOutlined.tsx +++ b/src/IconMotionPhotosPausedOutlined.tsx @@ -8,4 +8,4 @@ const IconMotionPhotosPausedOutlined: React.FC = ({ ...props }) => ( ) -export { IconMotionPhotosPausedOutlined as default } +export default IconMotionPhotosPausedOutlined diff --git a/src/IconMotionPhotosPausedOutlinedFilled.tsx b/src/IconMotionPhotosPausedOutlinedFilled.tsx index ba2cd9929..bdfbda458 100644 --- a/src/IconMotionPhotosPausedOutlinedFilled.tsx +++ b/src/IconMotionPhotosPausedOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconMotionPhotosPausedOutlinedFilled: React.FC = ({ ) -export { IconMotionPhotosPausedOutlinedFilled as default } +export default IconMotionPhotosPausedOutlinedFilled diff --git a/src/IconMotionPhotosPausedRounded.tsx b/src/IconMotionPhotosPausedRounded.tsx index c9ab8738c..eb75f40fd 100644 --- a/src/IconMotionPhotosPausedRounded.tsx +++ b/src/IconMotionPhotosPausedRounded.tsx @@ -8,4 +8,4 @@ const IconMotionPhotosPausedRounded: React.FC = ({ ...props }) => ( ) -export { IconMotionPhotosPausedRounded as default } +export default IconMotionPhotosPausedRounded diff --git a/src/IconMotionPhotosPausedRoundedFilled.tsx b/src/IconMotionPhotosPausedRoundedFilled.tsx index c2233ec36..d2a470715 100644 --- a/src/IconMotionPhotosPausedRoundedFilled.tsx +++ b/src/IconMotionPhotosPausedRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconMotionPhotosPausedRoundedFilled: React.FC = ({ ) -export { IconMotionPhotosPausedRoundedFilled as default } +export default IconMotionPhotosPausedRoundedFilled diff --git a/src/IconMotionPhotosPausedSharp.tsx b/src/IconMotionPhotosPausedSharp.tsx index 676e43b30..332971c56 100644 --- a/src/IconMotionPhotosPausedSharp.tsx +++ b/src/IconMotionPhotosPausedSharp.tsx @@ -8,4 +8,4 @@ const IconMotionPhotosPausedSharp: React.FC = ({ ...props }) => ( ) -export { IconMotionPhotosPausedSharp as default } +export default IconMotionPhotosPausedSharp diff --git a/src/IconMotionPhotosPausedSharpFilled.tsx b/src/IconMotionPhotosPausedSharpFilled.tsx index 3e45712a1..7adcaea90 100644 --- a/src/IconMotionPhotosPausedSharpFilled.tsx +++ b/src/IconMotionPhotosPausedSharpFilled.tsx @@ -10,4 +10,4 @@ const IconMotionPhotosPausedSharpFilled: React.FC = ({ ) -export { IconMotionPhotosPausedSharpFilled as default } +export default IconMotionPhotosPausedSharpFilled diff --git a/src/IconMotionPlayOutlined.tsx b/src/IconMotionPlayOutlined.tsx index d2cdda9e2..a34560492 100644 --- a/src/IconMotionPlayOutlined.tsx +++ b/src/IconMotionPlayOutlined.tsx @@ -8,4 +8,4 @@ const IconMotionPlayOutlined: React.FC = ({ ...props }) => ( ) -export { IconMotionPlayOutlined as default } +export default IconMotionPlayOutlined diff --git a/src/IconMotionPlayOutlinedFilled.tsx b/src/IconMotionPlayOutlinedFilled.tsx index b4a17e4b2..2da8a04c5 100644 --- a/src/IconMotionPlayOutlinedFilled.tsx +++ b/src/IconMotionPlayOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconMotionPlayOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconMotionPlayOutlinedFilled as default } +export default IconMotionPlayOutlinedFilled diff --git a/src/IconMotionPlayRounded.tsx b/src/IconMotionPlayRounded.tsx index a7fdc38fc..4fb21926a 100644 --- a/src/IconMotionPlayRounded.tsx +++ b/src/IconMotionPlayRounded.tsx @@ -8,4 +8,4 @@ const IconMotionPlayRounded: React.FC = ({ ...props }) => ( ) -export { IconMotionPlayRounded as default } +export default IconMotionPlayRounded diff --git a/src/IconMotionPlayRoundedFilled.tsx b/src/IconMotionPlayRoundedFilled.tsx index 0b99af0b8..78be07446 100644 --- a/src/IconMotionPlayRoundedFilled.tsx +++ b/src/IconMotionPlayRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconMotionPlayRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconMotionPlayRoundedFilled as default } +export default IconMotionPlayRoundedFilled diff --git a/src/IconMotionPlaySharp.tsx b/src/IconMotionPlaySharp.tsx index 38e0a415b..aff6faa0a 100644 --- a/src/IconMotionPlaySharp.tsx +++ b/src/IconMotionPlaySharp.tsx @@ -8,4 +8,4 @@ const IconMotionPlaySharp: React.FC = ({ ...props }) => ( ) -export { IconMotionPlaySharp as default } +export default IconMotionPlaySharp diff --git a/src/IconMotionPlaySharpFilled.tsx b/src/IconMotionPlaySharpFilled.tsx index 9e507d0fd..91dd84c39 100644 --- a/src/IconMotionPlaySharpFilled.tsx +++ b/src/IconMotionPlaySharpFilled.tsx @@ -8,4 +8,4 @@ const IconMotionPlaySharpFilled: React.FC = ({ ...props }) => ( ) -export { IconMotionPlaySharpFilled as default } +export default IconMotionPlaySharpFilled diff --git a/src/IconMotionSensorActiveOutlined.tsx b/src/IconMotionSensorActiveOutlined.tsx index 9017157c7..e0bcfa93b 100644 --- a/src/IconMotionSensorActiveOutlined.tsx +++ b/src/IconMotionSensorActiveOutlined.tsx @@ -8,4 +8,4 @@ const IconMotionSensorActiveOutlined: React.FC = ({ ...props }) => ( ) -export { IconMotionSensorActiveOutlined as default } +export default IconMotionSensorActiveOutlined diff --git a/src/IconMotionSensorActiveOutlinedFilled.tsx b/src/IconMotionSensorActiveOutlinedFilled.tsx index ec7662d18..304ac762f 100644 --- a/src/IconMotionSensorActiveOutlinedFilled.tsx +++ b/src/IconMotionSensorActiveOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconMotionSensorActiveOutlinedFilled: React.FC = ({ ) -export { IconMotionSensorActiveOutlinedFilled as default } +export default IconMotionSensorActiveOutlinedFilled diff --git a/src/IconMotionSensorActiveRounded.tsx b/src/IconMotionSensorActiveRounded.tsx index 90aa0a371..c890a250c 100644 --- a/src/IconMotionSensorActiveRounded.tsx +++ b/src/IconMotionSensorActiveRounded.tsx @@ -8,4 +8,4 @@ const IconMotionSensorActiveRounded: React.FC = ({ ...props }) => ( ) -export { IconMotionSensorActiveRounded as default } +export default IconMotionSensorActiveRounded diff --git a/src/IconMotionSensorActiveRoundedFilled.tsx b/src/IconMotionSensorActiveRoundedFilled.tsx index abec83641..f352f2505 100644 --- a/src/IconMotionSensorActiveRoundedFilled.tsx +++ b/src/IconMotionSensorActiveRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconMotionSensorActiveRoundedFilled: React.FC = ({ ) -export { IconMotionSensorActiveRoundedFilled as default } +export default IconMotionSensorActiveRoundedFilled diff --git a/src/IconMotionSensorActiveSharp.tsx b/src/IconMotionSensorActiveSharp.tsx index fb7f21345..4967016e7 100644 --- a/src/IconMotionSensorActiveSharp.tsx +++ b/src/IconMotionSensorActiveSharp.tsx @@ -8,4 +8,4 @@ const IconMotionSensorActiveSharp: React.FC = ({ ...props }) => ( ) -export { IconMotionSensorActiveSharp as default } +export default IconMotionSensorActiveSharp diff --git a/src/IconMotionSensorActiveSharpFilled.tsx b/src/IconMotionSensorActiveSharpFilled.tsx index 027cc3844..1e99ec081 100644 --- a/src/IconMotionSensorActiveSharpFilled.tsx +++ b/src/IconMotionSensorActiveSharpFilled.tsx @@ -10,4 +10,4 @@ const IconMotionSensorActiveSharpFilled: React.FC = ({ ) -export { IconMotionSensorActiveSharpFilled as default } +export default IconMotionSensorActiveSharpFilled diff --git a/src/IconMotionSensorAlertOutlined.tsx b/src/IconMotionSensorAlertOutlined.tsx index 41da63f68..1f65f0944 100644 --- a/src/IconMotionSensorAlertOutlined.tsx +++ b/src/IconMotionSensorAlertOutlined.tsx @@ -8,4 +8,4 @@ const IconMotionSensorAlertOutlined: React.FC = ({ ...props }) => ( ) -export { IconMotionSensorAlertOutlined as default } +export default IconMotionSensorAlertOutlined diff --git a/src/IconMotionSensorAlertOutlinedFilled.tsx b/src/IconMotionSensorAlertOutlinedFilled.tsx index 00ea82504..f89f3ebe9 100644 --- a/src/IconMotionSensorAlertOutlinedFilled.tsx +++ b/src/IconMotionSensorAlertOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconMotionSensorAlertOutlinedFilled: React.FC = ({ ) -export { IconMotionSensorAlertOutlinedFilled as default } +export default IconMotionSensorAlertOutlinedFilled diff --git a/src/IconMotionSensorAlertRounded.tsx b/src/IconMotionSensorAlertRounded.tsx index ad7d12c7a..c0f60eb03 100644 --- a/src/IconMotionSensorAlertRounded.tsx +++ b/src/IconMotionSensorAlertRounded.tsx @@ -8,4 +8,4 @@ const IconMotionSensorAlertRounded: React.FC = ({ ...props }) => ( ) -export { IconMotionSensorAlertRounded as default } +export default IconMotionSensorAlertRounded diff --git a/src/IconMotionSensorAlertRoundedFilled.tsx b/src/IconMotionSensorAlertRoundedFilled.tsx index e7b1a151a..b24e45774 100644 --- a/src/IconMotionSensorAlertRoundedFilled.tsx +++ b/src/IconMotionSensorAlertRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconMotionSensorAlertRoundedFilled: React.FC = ({ ) -export { IconMotionSensorAlertRoundedFilled as default } +export default IconMotionSensorAlertRoundedFilled diff --git a/src/IconMotionSensorAlertSharp.tsx b/src/IconMotionSensorAlertSharp.tsx index 86214b842..964877220 100644 --- a/src/IconMotionSensorAlertSharp.tsx +++ b/src/IconMotionSensorAlertSharp.tsx @@ -8,4 +8,4 @@ const IconMotionSensorAlertSharp: React.FC = ({ ...props }) => ( ) -export { IconMotionSensorAlertSharp as default } +export default IconMotionSensorAlertSharp diff --git a/src/IconMotionSensorAlertSharpFilled.tsx b/src/IconMotionSensorAlertSharpFilled.tsx index 7651d228d..0bddb4ff2 100644 --- a/src/IconMotionSensorAlertSharpFilled.tsx +++ b/src/IconMotionSensorAlertSharpFilled.tsx @@ -10,4 +10,4 @@ const IconMotionSensorAlertSharpFilled: React.FC = ({ ) -export { IconMotionSensorAlertSharpFilled as default } +export default IconMotionSensorAlertSharpFilled diff --git a/src/IconMotionSensorIdleOutlined.tsx b/src/IconMotionSensorIdleOutlined.tsx index fa0b4b4a8..11a56ef2c 100644 --- a/src/IconMotionSensorIdleOutlined.tsx +++ b/src/IconMotionSensorIdleOutlined.tsx @@ -8,4 +8,4 @@ const IconMotionSensorIdleOutlined: React.FC = ({ ...props }) => ( ) -export { IconMotionSensorIdleOutlined as default } +export default IconMotionSensorIdleOutlined diff --git a/src/IconMotionSensorIdleOutlinedFilled.tsx b/src/IconMotionSensorIdleOutlinedFilled.tsx index 0bf519a11..e2e82074b 100644 --- a/src/IconMotionSensorIdleOutlinedFilled.tsx +++ b/src/IconMotionSensorIdleOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconMotionSensorIdleOutlinedFilled: React.FC = ({ ) -export { IconMotionSensorIdleOutlinedFilled as default } +export default IconMotionSensorIdleOutlinedFilled diff --git a/src/IconMotionSensorIdleRounded.tsx b/src/IconMotionSensorIdleRounded.tsx index 6a135e037..5e33e213d 100644 --- a/src/IconMotionSensorIdleRounded.tsx +++ b/src/IconMotionSensorIdleRounded.tsx @@ -8,4 +8,4 @@ const IconMotionSensorIdleRounded: React.FC = ({ ...props }) => ( ) -export { IconMotionSensorIdleRounded as default } +export default IconMotionSensorIdleRounded diff --git a/src/IconMotionSensorIdleRoundedFilled.tsx b/src/IconMotionSensorIdleRoundedFilled.tsx index d5bcf66e5..48b3d4b0a 100644 --- a/src/IconMotionSensorIdleRoundedFilled.tsx +++ b/src/IconMotionSensorIdleRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconMotionSensorIdleRoundedFilled: React.FC = ({ ) -export { IconMotionSensorIdleRoundedFilled as default } +export default IconMotionSensorIdleRoundedFilled diff --git a/src/IconMotionSensorIdleSharp.tsx b/src/IconMotionSensorIdleSharp.tsx index 37467aa83..52bc981be 100644 --- a/src/IconMotionSensorIdleSharp.tsx +++ b/src/IconMotionSensorIdleSharp.tsx @@ -8,4 +8,4 @@ const IconMotionSensorIdleSharp: React.FC = ({ ...props }) => ( ) -export { IconMotionSensorIdleSharp as default } +export default IconMotionSensorIdleSharp diff --git a/src/IconMotionSensorIdleSharpFilled.tsx b/src/IconMotionSensorIdleSharpFilled.tsx index 2e5dd5a73..705c0e395 100644 --- a/src/IconMotionSensorIdleSharpFilled.tsx +++ b/src/IconMotionSensorIdleSharpFilled.tsx @@ -8,4 +8,4 @@ const IconMotionSensorIdleSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconMotionSensorIdleSharpFilled as default } +export default IconMotionSensorIdleSharpFilled diff --git a/src/IconMotionSensorUrgentOutlined.tsx b/src/IconMotionSensorUrgentOutlined.tsx index c9f1cd7e6..7d15e1949 100644 --- a/src/IconMotionSensorUrgentOutlined.tsx +++ b/src/IconMotionSensorUrgentOutlined.tsx @@ -8,4 +8,4 @@ const IconMotionSensorUrgentOutlined: React.FC = ({ ...props }) => ( ) -export { IconMotionSensorUrgentOutlined as default } +export default IconMotionSensorUrgentOutlined diff --git a/src/IconMotionSensorUrgentOutlinedFilled.tsx b/src/IconMotionSensorUrgentOutlinedFilled.tsx index 34c65c094..a1037d86e 100644 --- a/src/IconMotionSensorUrgentOutlinedFilled.tsx +++ b/src/IconMotionSensorUrgentOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconMotionSensorUrgentOutlinedFilled: React.FC = ({ ) -export { IconMotionSensorUrgentOutlinedFilled as default } +export default IconMotionSensorUrgentOutlinedFilled diff --git a/src/IconMotionSensorUrgentRounded.tsx b/src/IconMotionSensorUrgentRounded.tsx index 350bd4585..bc3afae8e 100644 --- a/src/IconMotionSensorUrgentRounded.tsx +++ b/src/IconMotionSensorUrgentRounded.tsx @@ -8,4 +8,4 @@ const IconMotionSensorUrgentRounded: React.FC = ({ ...props }) => ( ) -export { IconMotionSensorUrgentRounded as default } +export default IconMotionSensorUrgentRounded diff --git a/src/IconMotionSensorUrgentRoundedFilled.tsx b/src/IconMotionSensorUrgentRoundedFilled.tsx index d57fa16c9..068f70a6c 100644 --- a/src/IconMotionSensorUrgentRoundedFilled.tsx +++ b/src/IconMotionSensorUrgentRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconMotionSensorUrgentRoundedFilled: React.FC = ({ ) -export { IconMotionSensorUrgentRoundedFilled as default } +export default IconMotionSensorUrgentRoundedFilled diff --git a/src/IconMotionSensorUrgentSharp.tsx b/src/IconMotionSensorUrgentSharp.tsx index 577a3b4d9..2246a7974 100644 --- a/src/IconMotionSensorUrgentSharp.tsx +++ b/src/IconMotionSensorUrgentSharp.tsx @@ -8,4 +8,4 @@ const IconMotionSensorUrgentSharp: React.FC = ({ ...props }) => ( ) -export { IconMotionSensorUrgentSharp as default } +export default IconMotionSensorUrgentSharp diff --git a/src/IconMotionSensorUrgentSharpFilled.tsx b/src/IconMotionSensorUrgentSharpFilled.tsx index cab8a8695..f71141982 100644 --- a/src/IconMotionSensorUrgentSharpFilled.tsx +++ b/src/IconMotionSensorUrgentSharpFilled.tsx @@ -10,4 +10,4 @@ const IconMotionSensorUrgentSharpFilled: React.FC = ({ ) -export { IconMotionSensorUrgentSharpFilled as default } +export default IconMotionSensorUrgentSharpFilled diff --git a/src/IconMotorcycleOutlined.tsx b/src/IconMotorcycleOutlined.tsx index 37965f901..4129af603 100644 --- a/src/IconMotorcycleOutlined.tsx +++ b/src/IconMotorcycleOutlined.tsx @@ -8,4 +8,4 @@ const IconMotorcycleOutlined: React.FC = ({ ...props }) => ( ) -export { IconMotorcycleOutlined as default } +export default IconMotorcycleOutlined diff --git a/src/IconMotorcycleOutlinedFilled.tsx b/src/IconMotorcycleOutlinedFilled.tsx index 5d48e764c..2eac7c5ba 100644 --- a/src/IconMotorcycleOutlinedFilled.tsx +++ b/src/IconMotorcycleOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconMotorcycleOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconMotorcycleOutlinedFilled as default } +export default IconMotorcycleOutlinedFilled diff --git a/src/IconMotorcycleRounded.tsx b/src/IconMotorcycleRounded.tsx index a17d059ed..4bab80e46 100644 --- a/src/IconMotorcycleRounded.tsx +++ b/src/IconMotorcycleRounded.tsx @@ -8,4 +8,4 @@ const IconMotorcycleRounded: React.FC = ({ ...props }) => ( ) -export { IconMotorcycleRounded as default } +export default IconMotorcycleRounded diff --git a/src/IconMotorcycleRoundedFilled.tsx b/src/IconMotorcycleRoundedFilled.tsx index 08e9f0f0f..c43a2c638 100644 --- a/src/IconMotorcycleRoundedFilled.tsx +++ b/src/IconMotorcycleRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconMotorcycleRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconMotorcycleRoundedFilled as default } +export default IconMotorcycleRoundedFilled diff --git a/src/IconMotorcycleSharp.tsx b/src/IconMotorcycleSharp.tsx index c390e84c7..bf4adb19a 100644 --- a/src/IconMotorcycleSharp.tsx +++ b/src/IconMotorcycleSharp.tsx @@ -8,4 +8,4 @@ const IconMotorcycleSharp: React.FC = ({ ...props }) => ( ) -export { IconMotorcycleSharp as default } +export default IconMotorcycleSharp diff --git a/src/IconMotorcycleSharpFilled.tsx b/src/IconMotorcycleSharpFilled.tsx index aa05bb241..026fca867 100644 --- a/src/IconMotorcycleSharpFilled.tsx +++ b/src/IconMotorcycleSharpFilled.tsx @@ -8,4 +8,4 @@ const IconMotorcycleSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconMotorcycleSharpFilled as default } +export default IconMotorcycleSharpFilled diff --git a/src/IconMountainFlagOutlined.tsx b/src/IconMountainFlagOutlined.tsx index b2624634a..7427db20d 100644 --- a/src/IconMountainFlagOutlined.tsx +++ b/src/IconMountainFlagOutlined.tsx @@ -8,4 +8,4 @@ const IconMountainFlagOutlined: React.FC = ({ ...props }) => ( ) -export { IconMountainFlagOutlined as default } +export default IconMountainFlagOutlined diff --git a/src/IconMountainFlagOutlinedFilled.tsx b/src/IconMountainFlagOutlinedFilled.tsx index 456c00a6e..71642bd60 100644 --- a/src/IconMountainFlagOutlinedFilled.tsx +++ b/src/IconMountainFlagOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconMountainFlagOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconMountainFlagOutlinedFilled as default } +export default IconMountainFlagOutlinedFilled diff --git a/src/IconMountainFlagRounded.tsx b/src/IconMountainFlagRounded.tsx index fd975b11d..249471efa 100644 --- a/src/IconMountainFlagRounded.tsx +++ b/src/IconMountainFlagRounded.tsx @@ -8,4 +8,4 @@ const IconMountainFlagRounded: React.FC = ({ ...props }) => ( ) -export { IconMountainFlagRounded as default } +export default IconMountainFlagRounded diff --git a/src/IconMountainFlagRoundedFilled.tsx b/src/IconMountainFlagRoundedFilled.tsx index 1380544a9..b902e096c 100644 --- a/src/IconMountainFlagRoundedFilled.tsx +++ b/src/IconMountainFlagRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconMountainFlagRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconMountainFlagRoundedFilled as default } +export default IconMountainFlagRoundedFilled diff --git a/src/IconMountainFlagSharp.tsx b/src/IconMountainFlagSharp.tsx index 6fb594026..50b724975 100644 --- a/src/IconMountainFlagSharp.tsx +++ b/src/IconMountainFlagSharp.tsx @@ -8,4 +8,4 @@ const IconMountainFlagSharp: React.FC = ({ ...props }) => ( ) -export { IconMountainFlagSharp as default } +export default IconMountainFlagSharp diff --git a/src/IconMountainFlagSharpFilled.tsx b/src/IconMountainFlagSharpFilled.tsx index a1b64e7bf..c72f82017 100644 --- a/src/IconMountainFlagSharpFilled.tsx +++ b/src/IconMountainFlagSharpFilled.tsx @@ -8,4 +8,4 @@ const IconMountainFlagSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconMountainFlagSharpFilled as default } +export default IconMountainFlagSharpFilled diff --git a/src/IconMouseLockOffOutlined.tsx b/src/IconMouseLockOffOutlined.tsx index a9d769e26..b46f2d23d 100644 --- a/src/IconMouseLockOffOutlined.tsx +++ b/src/IconMouseLockOffOutlined.tsx @@ -8,4 +8,4 @@ const IconMouseLockOffOutlined: React.FC = ({ ...props }) => ( ) -export { IconMouseLockOffOutlined as default } +export default IconMouseLockOffOutlined diff --git a/src/IconMouseLockOffOutlinedFilled.tsx b/src/IconMouseLockOffOutlinedFilled.tsx index 5d2d38eb1..5f187a361 100644 --- a/src/IconMouseLockOffOutlinedFilled.tsx +++ b/src/IconMouseLockOffOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconMouseLockOffOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconMouseLockOffOutlinedFilled as default } +export default IconMouseLockOffOutlinedFilled diff --git a/src/IconMouseLockOffRounded.tsx b/src/IconMouseLockOffRounded.tsx index eb5348c36..e7a6e9804 100644 --- a/src/IconMouseLockOffRounded.tsx +++ b/src/IconMouseLockOffRounded.tsx @@ -8,4 +8,4 @@ const IconMouseLockOffRounded: React.FC = ({ ...props }) => ( ) -export { IconMouseLockOffRounded as default } +export default IconMouseLockOffRounded diff --git a/src/IconMouseLockOffRoundedFilled.tsx b/src/IconMouseLockOffRoundedFilled.tsx index 7e6baf164..e59b32b47 100644 --- a/src/IconMouseLockOffRoundedFilled.tsx +++ b/src/IconMouseLockOffRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconMouseLockOffRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconMouseLockOffRoundedFilled as default } +export default IconMouseLockOffRoundedFilled diff --git a/src/IconMouseLockOffSharp.tsx b/src/IconMouseLockOffSharp.tsx index 2246c337d..06357794b 100644 --- a/src/IconMouseLockOffSharp.tsx +++ b/src/IconMouseLockOffSharp.tsx @@ -8,4 +8,4 @@ const IconMouseLockOffSharp: React.FC = ({ ...props }) => ( ) -export { IconMouseLockOffSharp as default } +export default IconMouseLockOffSharp diff --git a/src/IconMouseLockOffSharpFilled.tsx b/src/IconMouseLockOffSharpFilled.tsx index 78324d1bb..e540fa2d1 100644 --- a/src/IconMouseLockOffSharpFilled.tsx +++ b/src/IconMouseLockOffSharpFilled.tsx @@ -8,4 +8,4 @@ const IconMouseLockOffSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconMouseLockOffSharpFilled as default } +export default IconMouseLockOffSharpFilled diff --git a/src/IconMouseLockOutlined.tsx b/src/IconMouseLockOutlined.tsx index 2f59ae4b4..724afbb47 100644 --- a/src/IconMouseLockOutlined.tsx +++ b/src/IconMouseLockOutlined.tsx @@ -8,4 +8,4 @@ const IconMouseLockOutlined: React.FC = ({ ...props }) => ( ) -export { IconMouseLockOutlined as default } +export default IconMouseLockOutlined diff --git a/src/IconMouseLockOutlinedFilled.tsx b/src/IconMouseLockOutlinedFilled.tsx index 3fe273200..abdb0b194 100644 --- a/src/IconMouseLockOutlinedFilled.tsx +++ b/src/IconMouseLockOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconMouseLockOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconMouseLockOutlinedFilled as default } +export default IconMouseLockOutlinedFilled diff --git a/src/IconMouseLockRounded.tsx b/src/IconMouseLockRounded.tsx index 4302a4031..ec87e4331 100644 --- a/src/IconMouseLockRounded.tsx +++ b/src/IconMouseLockRounded.tsx @@ -8,4 +8,4 @@ const IconMouseLockRounded: React.FC = ({ ...props }) => ( ) -export { IconMouseLockRounded as default } +export default IconMouseLockRounded diff --git a/src/IconMouseLockRoundedFilled.tsx b/src/IconMouseLockRoundedFilled.tsx index 09ec160d0..e7640c083 100644 --- a/src/IconMouseLockRoundedFilled.tsx +++ b/src/IconMouseLockRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconMouseLockRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconMouseLockRoundedFilled as default } +export default IconMouseLockRoundedFilled diff --git a/src/IconMouseLockSharp.tsx b/src/IconMouseLockSharp.tsx index ae8806984..3a8c99454 100644 --- a/src/IconMouseLockSharp.tsx +++ b/src/IconMouseLockSharp.tsx @@ -8,4 +8,4 @@ const IconMouseLockSharp: React.FC = ({ ...props }) => ( ) -export { IconMouseLockSharp as default } +export default IconMouseLockSharp diff --git a/src/IconMouseLockSharpFilled.tsx b/src/IconMouseLockSharpFilled.tsx index d77614d41..e778e2f95 100644 --- a/src/IconMouseLockSharpFilled.tsx +++ b/src/IconMouseLockSharpFilled.tsx @@ -8,4 +8,4 @@ const IconMouseLockSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconMouseLockSharpFilled as default } +export default IconMouseLockSharpFilled diff --git a/src/IconMouseOutlined.tsx b/src/IconMouseOutlined.tsx index b3afbbd1e..e5d9001e4 100644 --- a/src/IconMouseOutlined.tsx +++ b/src/IconMouseOutlined.tsx @@ -8,4 +8,4 @@ const IconMouseOutlined: React.FC = ({ ...props }) => ( ) -export { IconMouseOutlined as default } +export default IconMouseOutlined diff --git a/src/IconMouseOutlinedFilled.tsx b/src/IconMouseOutlinedFilled.tsx index a9ff34e12..fafb8f0bf 100644 --- a/src/IconMouseOutlinedFilled.tsx +++ b/src/IconMouseOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconMouseOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconMouseOutlinedFilled as default } +export default IconMouseOutlinedFilled diff --git a/src/IconMouseRounded.tsx b/src/IconMouseRounded.tsx index 71ee8b0ae..6cea6cddb 100644 --- a/src/IconMouseRounded.tsx +++ b/src/IconMouseRounded.tsx @@ -8,4 +8,4 @@ const IconMouseRounded: React.FC = ({ ...props }) => ( ) -export { IconMouseRounded as default } +export default IconMouseRounded diff --git a/src/IconMouseRoundedFilled.tsx b/src/IconMouseRoundedFilled.tsx index 127ce7d55..7f8ebc020 100644 --- a/src/IconMouseRoundedFilled.tsx +++ b/src/IconMouseRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconMouseRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconMouseRoundedFilled as default } +export default IconMouseRoundedFilled diff --git a/src/IconMouseSharp.tsx b/src/IconMouseSharp.tsx index fa0d66cc5..ec6aefa97 100644 --- a/src/IconMouseSharp.tsx +++ b/src/IconMouseSharp.tsx @@ -8,4 +8,4 @@ const IconMouseSharp: React.FC = ({ ...props }) => ( ) -export { IconMouseSharp as default } +export default IconMouseSharp diff --git a/src/IconMouseSharpFilled.tsx b/src/IconMouseSharpFilled.tsx index 5337ad227..48610150a 100644 --- a/src/IconMouseSharpFilled.tsx +++ b/src/IconMouseSharpFilled.tsx @@ -8,4 +8,4 @@ const IconMouseSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconMouseSharpFilled as default } +export default IconMouseSharpFilled diff --git a/src/IconMoveDownOutlined.tsx b/src/IconMoveDownOutlined.tsx index a4552e4b7..b6c72e366 100644 --- a/src/IconMoveDownOutlined.tsx +++ b/src/IconMoveDownOutlined.tsx @@ -8,4 +8,4 @@ const IconMoveDownOutlined: React.FC = ({ ...props }) => ( ) -export { IconMoveDownOutlined as default } +export default IconMoveDownOutlined diff --git a/src/IconMoveDownOutlinedFilled.tsx b/src/IconMoveDownOutlinedFilled.tsx index bedb74053..8b08dea90 100644 --- a/src/IconMoveDownOutlinedFilled.tsx +++ b/src/IconMoveDownOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconMoveDownOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconMoveDownOutlinedFilled as default } +export default IconMoveDownOutlinedFilled diff --git a/src/IconMoveDownRounded.tsx b/src/IconMoveDownRounded.tsx index 156cff7a1..83a699241 100644 --- a/src/IconMoveDownRounded.tsx +++ b/src/IconMoveDownRounded.tsx @@ -8,4 +8,4 @@ const IconMoveDownRounded: React.FC = ({ ...props }) => ( ) -export { IconMoveDownRounded as default } +export default IconMoveDownRounded diff --git a/src/IconMoveDownRoundedFilled.tsx b/src/IconMoveDownRoundedFilled.tsx index ae40dbe68..b11a6a346 100644 --- a/src/IconMoveDownRoundedFilled.tsx +++ b/src/IconMoveDownRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconMoveDownRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconMoveDownRoundedFilled as default } +export default IconMoveDownRoundedFilled diff --git a/src/IconMoveDownSharp.tsx b/src/IconMoveDownSharp.tsx index 0aad7d8df..d90def311 100644 --- a/src/IconMoveDownSharp.tsx +++ b/src/IconMoveDownSharp.tsx @@ -8,4 +8,4 @@ const IconMoveDownSharp: React.FC = ({ ...props }) => ( ) -export { IconMoveDownSharp as default } +export default IconMoveDownSharp diff --git a/src/IconMoveDownSharpFilled.tsx b/src/IconMoveDownSharpFilled.tsx index e2da8e948..14ebedf0d 100644 --- a/src/IconMoveDownSharpFilled.tsx +++ b/src/IconMoveDownSharpFilled.tsx @@ -8,4 +8,4 @@ const IconMoveDownSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconMoveDownSharpFilled as default } +export default IconMoveDownSharpFilled diff --git a/src/IconMoveGroupOutlined.tsx b/src/IconMoveGroupOutlined.tsx index cbed9a472..51bd0df47 100644 --- a/src/IconMoveGroupOutlined.tsx +++ b/src/IconMoveGroupOutlined.tsx @@ -8,4 +8,4 @@ const IconMoveGroupOutlined: React.FC = ({ ...props }) => ( ) -export { IconMoveGroupOutlined as default } +export default IconMoveGroupOutlined diff --git a/src/IconMoveGroupOutlinedFilled.tsx b/src/IconMoveGroupOutlinedFilled.tsx index 5bd9c71c7..d6ac426b5 100644 --- a/src/IconMoveGroupOutlinedFilled.tsx +++ b/src/IconMoveGroupOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconMoveGroupOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconMoveGroupOutlinedFilled as default } +export default IconMoveGroupOutlinedFilled diff --git a/src/IconMoveGroupRounded.tsx b/src/IconMoveGroupRounded.tsx index 832a6387e..e164ea324 100644 --- a/src/IconMoveGroupRounded.tsx +++ b/src/IconMoveGroupRounded.tsx @@ -8,4 +8,4 @@ const IconMoveGroupRounded: React.FC = ({ ...props }) => ( ) -export { IconMoveGroupRounded as default } +export default IconMoveGroupRounded diff --git a/src/IconMoveGroupRoundedFilled.tsx b/src/IconMoveGroupRoundedFilled.tsx index 280997caf..73236c064 100644 --- a/src/IconMoveGroupRoundedFilled.tsx +++ b/src/IconMoveGroupRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconMoveGroupRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconMoveGroupRoundedFilled as default } +export default IconMoveGroupRoundedFilled diff --git a/src/IconMoveGroupSharp.tsx b/src/IconMoveGroupSharp.tsx index 6ea21f232..e57cab6d8 100644 --- a/src/IconMoveGroupSharp.tsx +++ b/src/IconMoveGroupSharp.tsx @@ -8,4 +8,4 @@ const IconMoveGroupSharp: React.FC = ({ ...props }) => ( ) -export { IconMoveGroupSharp as default } +export default IconMoveGroupSharp diff --git a/src/IconMoveGroupSharpFilled.tsx b/src/IconMoveGroupSharpFilled.tsx index 2c9b69991..b45fd7ba5 100644 --- a/src/IconMoveGroupSharpFilled.tsx +++ b/src/IconMoveGroupSharpFilled.tsx @@ -8,4 +8,4 @@ const IconMoveGroupSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconMoveGroupSharpFilled as default } +export default IconMoveGroupSharpFilled diff --git a/src/IconMoveItemOutlined.tsx b/src/IconMoveItemOutlined.tsx index fecab5cd5..ae15af823 100644 --- a/src/IconMoveItemOutlined.tsx +++ b/src/IconMoveItemOutlined.tsx @@ -8,4 +8,4 @@ const IconMoveItemOutlined: React.FC = ({ ...props }) => ( ) -export { IconMoveItemOutlined as default } +export default IconMoveItemOutlined diff --git a/src/IconMoveItemOutlinedFilled.tsx b/src/IconMoveItemOutlinedFilled.tsx index c7ce3fc71..9ceb78e46 100644 --- a/src/IconMoveItemOutlinedFilled.tsx +++ b/src/IconMoveItemOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconMoveItemOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconMoveItemOutlinedFilled as default } +export default IconMoveItemOutlinedFilled diff --git a/src/IconMoveItemRounded.tsx b/src/IconMoveItemRounded.tsx index bb7e48212..b95b480e4 100644 --- a/src/IconMoveItemRounded.tsx +++ b/src/IconMoveItemRounded.tsx @@ -8,4 +8,4 @@ const IconMoveItemRounded: React.FC = ({ ...props }) => ( ) -export { IconMoveItemRounded as default } +export default IconMoveItemRounded diff --git a/src/IconMoveItemRoundedFilled.tsx b/src/IconMoveItemRoundedFilled.tsx index 764c739e6..6ecef7ee0 100644 --- a/src/IconMoveItemRoundedFilled.tsx +++ b/src/IconMoveItemRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconMoveItemRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconMoveItemRoundedFilled as default } +export default IconMoveItemRoundedFilled diff --git a/src/IconMoveItemSharp.tsx b/src/IconMoveItemSharp.tsx index c1db99d2d..32870f0d5 100644 --- a/src/IconMoveItemSharp.tsx +++ b/src/IconMoveItemSharp.tsx @@ -8,4 +8,4 @@ const IconMoveItemSharp: React.FC = ({ ...props }) => ( ) -export { IconMoveItemSharp as default } +export default IconMoveItemSharp diff --git a/src/IconMoveItemSharpFilled.tsx b/src/IconMoveItemSharpFilled.tsx index d2f4de450..53d5846c5 100644 --- a/src/IconMoveItemSharpFilled.tsx +++ b/src/IconMoveItemSharpFilled.tsx @@ -8,4 +8,4 @@ const IconMoveItemSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconMoveItemSharpFilled as default } +export default IconMoveItemSharpFilled diff --git a/src/IconMoveLocationOutlined.tsx b/src/IconMoveLocationOutlined.tsx index 812e1045d..0a9281e0a 100644 --- a/src/IconMoveLocationOutlined.tsx +++ b/src/IconMoveLocationOutlined.tsx @@ -8,4 +8,4 @@ const IconMoveLocationOutlined: React.FC = ({ ...props }) => ( ) -export { IconMoveLocationOutlined as default } +export default IconMoveLocationOutlined diff --git a/src/IconMoveLocationOutlinedFilled.tsx b/src/IconMoveLocationOutlinedFilled.tsx index dc25d40a0..ba8b8eb12 100644 --- a/src/IconMoveLocationOutlinedFilled.tsx +++ b/src/IconMoveLocationOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconMoveLocationOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconMoveLocationOutlinedFilled as default } +export default IconMoveLocationOutlinedFilled diff --git a/src/IconMoveLocationRounded.tsx b/src/IconMoveLocationRounded.tsx index edf8caaec..97fa2845e 100644 --- a/src/IconMoveLocationRounded.tsx +++ b/src/IconMoveLocationRounded.tsx @@ -8,4 +8,4 @@ const IconMoveLocationRounded: React.FC = ({ ...props }) => ( ) -export { IconMoveLocationRounded as default } +export default IconMoveLocationRounded diff --git a/src/IconMoveLocationRoundedFilled.tsx b/src/IconMoveLocationRoundedFilled.tsx index 6bcdb6e43..fba69b989 100644 --- a/src/IconMoveLocationRoundedFilled.tsx +++ b/src/IconMoveLocationRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconMoveLocationRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconMoveLocationRoundedFilled as default } +export default IconMoveLocationRoundedFilled diff --git a/src/IconMoveLocationSharp.tsx b/src/IconMoveLocationSharp.tsx index 03a5bea9f..c358f0833 100644 --- a/src/IconMoveLocationSharp.tsx +++ b/src/IconMoveLocationSharp.tsx @@ -8,4 +8,4 @@ const IconMoveLocationSharp: React.FC = ({ ...props }) => ( ) -export { IconMoveLocationSharp as default } +export default IconMoveLocationSharp diff --git a/src/IconMoveLocationSharpFilled.tsx b/src/IconMoveLocationSharpFilled.tsx index 144344d7a..87df08f95 100644 --- a/src/IconMoveLocationSharpFilled.tsx +++ b/src/IconMoveLocationSharpFilled.tsx @@ -8,4 +8,4 @@ const IconMoveLocationSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconMoveLocationSharpFilled as default } +export default IconMoveLocationSharpFilled diff --git a/src/IconMoveOutlined.tsx b/src/IconMoveOutlined.tsx index 6c0e97d25..b1763361a 100644 --- a/src/IconMoveOutlined.tsx +++ b/src/IconMoveOutlined.tsx @@ -8,4 +8,4 @@ const IconMoveOutlined: React.FC = ({ ...props }) => ( ) -export { IconMoveOutlined as default } +export default IconMoveOutlined diff --git a/src/IconMoveOutlinedFilled.tsx b/src/IconMoveOutlinedFilled.tsx index 7cae8f96c..266ea5053 100644 --- a/src/IconMoveOutlinedFilled.tsx +++ b/src/IconMoveOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconMoveOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconMoveOutlinedFilled as default } +export default IconMoveOutlinedFilled diff --git a/src/IconMoveRounded.tsx b/src/IconMoveRounded.tsx index 398034748..5c0cc92f4 100644 --- a/src/IconMoveRounded.tsx +++ b/src/IconMoveRounded.tsx @@ -8,4 +8,4 @@ const IconMoveRounded: React.FC = ({ ...props }) => ( ) -export { IconMoveRounded as default } +export default IconMoveRounded diff --git a/src/IconMoveRoundedFilled.tsx b/src/IconMoveRoundedFilled.tsx index e90defca5..454df3b84 100644 --- a/src/IconMoveRoundedFilled.tsx +++ b/src/IconMoveRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconMoveRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconMoveRoundedFilled as default } +export default IconMoveRoundedFilled diff --git a/src/IconMoveSelectionDownOutlined.tsx b/src/IconMoveSelectionDownOutlined.tsx index 5480f78f8..fc07757d4 100644 --- a/src/IconMoveSelectionDownOutlined.tsx +++ b/src/IconMoveSelectionDownOutlined.tsx @@ -8,4 +8,4 @@ const IconMoveSelectionDownOutlined: React.FC = ({ ...props }) => ( ) -export { IconMoveSelectionDownOutlined as default } +export default IconMoveSelectionDownOutlined diff --git a/src/IconMoveSelectionDownOutlinedFilled.tsx b/src/IconMoveSelectionDownOutlinedFilled.tsx index eed0abf0a..713f1eb77 100644 --- a/src/IconMoveSelectionDownOutlinedFilled.tsx +++ b/src/IconMoveSelectionDownOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconMoveSelectionDownOutlinedFilled: React.FC = ({ ) -export { IconMoveSelectionDownOutlinedFilled as default } +export default IconMoveSelectionDownOutlinedFilled diff --git a/src/IconMoveSelectionDownRounded.tsx b/src/IconMoveSelectionDownRounded.tsx index e8bd988db..f2ec0236b 100644 --- a/src/IconMoveSelectionDownRounded.tsx +++ b/src/IconMoveSelectionDownRounded.tsx @@ -8,4 +8,4 @@ const IconMoveSelectionDownRounded: React.FC = ({ ...props }) => ( ) -export { IconMoveSelectionDownRounded as default } +export default IconMoveSelectionDownRounded diff --git a/src/IconMoveSelectionDownRoundedFilled.tsx b/src/IconMoveSelectionDownRoundedFilled.tsx index 1a134c6e5..c7ba2a5e3 100644 --- a/src/IconMoveSelectionDownRoundedFilled.tsx +++ b/src/IconMoveSelectionDownRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconMoveSelectionDownRoundedFilled: React.FC = ({ ) -export { IconMoveSelectionDownRoundedFilled as default } +export default IconMoveSelectionDownRoundedFilled diff --git a/src/IconMoveSelectionDownSharp.tsx b/src/IconMoveSelectionDownSharp.tsx index 2f040af45..5150775b4 100644 --- a/src/IconMoveSelectionDownSharp.tsx +++ b/src/IconMoveSelectionDownSharp.tsx @@ -8,4 +8,4 @@ const IconMoveSelectionDownSharp: React.FC = ({ ...props }) => ( ) -export { IconMoveSelectionDownSharp as default } +export default IconMoveSelectionDownSharp diff --git a/src/IconMoveSelectionDownSharpFilled.tsx b/src/IconMoveSelectionDownSharpFilled.tsx index 87231072e..82f6ebe2b 100644 --- a/src/IconMoveSelectionDownSharpFilled.tsx +++ b/src/IconMoveSelectionDownSharpFilled.tsx @@ -10,4 +10,4 @@ const IconMoveSelectionDownSharpFilled: React.FC = ({ ) -export { IconMoveSelectionDownSharpFilled as default } +export default IconMoveSelectionDownSharpFilled diff --git a/src/IconMoveSelectionLeftOutlined.tsx b/src/IconMoveSelectionLeftOutlined.tsx index 6f9aece29..172a5e795 100644 --- a/src/IconMoveSelectionLeftOutlined.tsx +++ b/src/IconMoveSelectionLeftOutlined.tsx @@ -8,4 +8,4 @@ const IconMoveSelectionLeftOutlined: React.FC = ({ ...props }) => ( ) -export { IconMoveSelectionLeftOutlined as default } +export default IconMoveSelectionLeftOutlined diff --git a/src/IconMoveSelectionLeftOutlinedFilled.tsx b/src/IconMoveSelectionLeftOutlinedFilled.tsx index ced10e41e..b9793f492 100644 --- a/src/IconMoveSelectionLeftOutlinedFilled.tsx +++ b/src/IconMoveSelectionLeftOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconMoveSelectionLeftOutlinedFilled: React.FC = ({ ) -export { IconMoveSelectionLeftOutlinedFilled as default } +export default IconMoveSelectionLeftOutlinedFilled diff --git a/src/IconMoveSelectionLeftRounded.tsx b/src/IconMoveSelectionLeftRounded.tsx index 1b9a52a75..c475bd7f2 100644 --- a/src/IconMoveSelectionLeftRounded.tsx +++ b/src/IconMoveSelectionLeftRounded.tsx @@ -8,4 +8,4 @@ const IconMoveSelectionLeftRounded: React.FC = ({ ...props }) => ( ) -export { IconMoveSelectionLeftRounded as default } +export default IconMoveSelectionLeftRounded diff --git a/src/IconMoveSelectionLeftRoundedFilled.tsx b/src/IconMoveSelectionLeftRoundedFilled.tsx index 2b110963c..b6020fa49 100644 --- a/src/IconMoveSelectionLeftRoundedFilled.tsx +++ b/src/IconMoveSelectionLeftRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconMoveSelectionLeftRoundedFilled: React.FC = ({ ) -export { IconMoveSelectionLeftRoundedFilled as default } +export default IconMoveSelectionLeftRoundedFilled diff --git a/src/IconMoveSelectionLeftSharp.tsx b/src/IconMoveSelectionLeftSharp.tsx index bb17b89a6..1f5facc65 100644 --- a/src/IconMoveSelectionLeftSharp.tsx +++ b/src/IconMoveSelectionLeftSharp.tsx @@ -8,4 +8,4 @@ const IconMoveSelectionLeftSharp: React.FC = ({ ...props }) => ( ) -export { IconMoveSelectionLeftSharp as default } +export default IconMoveSelectionLeftSharp diff --git a/src/IconMoveSelectionLeftSharpFilled.tsx b/src/IconMoveSelectionLeftSharpFilled.tsx index 509d6babb..ffe4446e7 100644 --- a/src/IconMoveSelectionLeftSharpFilled.tsx +++ b/src/IconMoveSelectionLeftSharpFilled.tsx @@ -10,4 +10,4 @@ const IconMoveSelectionLeftSharpFilled: React.FC = ({ ) -export { IconMoveSelectionLeftSharpFilled as default } +export default IconMoveSelectionLeftSharpFilled diff --git a/src/IconMoveSelectionRightOutlined.tsx b/src/IconMoveSelectionRightOutlined.tsx index 3c1a8c05d..7e6354bcb 100644 --- a/src/IconMoveSelectionRightOutlined.tsx +++ b/src/IconMoveSelectionRightOutlined.tsx @@ -8,4 +8,4 @@ const IconMoveSelectionRightOutlined: React.FC = ({ ...props }) => ( ) -export { IconMoveSelectionRightOutlined as default } +export default IconMoveSelectionRightOutlined diff --git a/src/IconMoveSelectionRightOutlinedFilled.tsx b/src/IconMoveSelectionRightOutlinedFilled.tsx index a89fe8e89..cc0ba5104 100644 --- a/src/IconMoveSelectionRightOutlinedFilled.tsx +++ b/src/IconMoveSelectionRightOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconMoveSelectionRightOutlinedFilled: React.FC = ({ ) -export { IconMoveSelectionRightOutlinedFilled as default } +export default IconMoveSelectionRightOutlinedFilled diff --git a/src/IconMoveSelectionRightRounded.tsx b/src/IconMoveSelectionRightRounded.tsx index 9b451cd7a..58888ccb7 100644 --- a/src/IconMoveSelectionRightRounded.tsx +++ b/src/IconMoveSelectionRightRounded.tsx @@ -8,4 +8,4 @@ const IconMoveSelectionRightRounded: React.FC = ({ ...props }) => ( ) -export { IconMoveSelectionRightRounded as default } +export default IconMoveSelectionRightRounded diff --git a/src/IconMoveSelectionRightRoundedFilled.tsx b/src/IconMoveSelectionRightRoundedFilled.tsx index c5cc77663..f948de1b7 100644 --- a/src/IconMoveSelectionRightRoundedFilled.tsx +++ b/src/IconMoveSelectionRightRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconMoveSelectionRightRoundedFilled: React.FC = ({ ) -export { IconMoveSelectionRightRoundedFilled as default } +export default IconMoveSelectionRightRoundedFilled diff --git a/src/IconMoveSelectionRightSharp.tsx b/src/IconMoveSelectionRightSharp.tsx index 0c9706e33..2996d4cec 100644 --- a/src/IconMoveSelectionRightSharp.tsx +++ b/src/IconMoveSelectionRightSharp.tsx @@ -8,4 +8,4 @@ const IconMoveSelectionRightSharp: React.FC = ({ ...props }) => ( ) -export { IconMoveSelectionRightSharp as default } +export default IconMoveSelectionRightSharp diff --git a/src/IconMoveSelectionRightSharpFilled.tsx b/src/IconMoveSelectionRightSharpFilled.tsx index 97ef1500a..242e66e97 100644 --- a/src/IconMoveSelectionRightSharpFilled.tsx +++ b/src/IconMoveSelectionRightSharpFilled.tsx @@ -10,4 +10,4 @@ const IconMoveSelectionRightSharpFilled: React.FC = ({ ) -export { IconMoveSelectionRightSharpFilled as default } +export default IconMoveSelectionRightSharpFilled diff --git a/src/IconMoveSelectionUpOutlined.tsx b/src/IconMoveSelectionUpOutlined.tsx index ad7c9f158..4edbce9d5 100644 --- a/src/IconMoveSelectionUpOutlined.tsx +++ b/src/IconMoveSelectionUpOutlined.tsx @@ -8,4 +8,4 @@ const IconMoveSelectionUpOutlined: React.FC = ({ ...props }) => ( ) -export { IconMoveSelectionUpOutlined as default } +export default IconMoveSelectionUpOutlined diff --git a/src/IconMoveSelectionUpOutlinedFilled.tsx b/src/IconMoveSelectionUpOutlinedFilled.tsx index d6d095f89..a8b79da13 100644 --- a/src/IconMoveSelectionUpOutlinedFilled.tsx +++ b/src/IconMoveSelectionUpOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconMoveSelectionUpOutlinedFilled: React.FC = ({ ) -export { IconMoveSelectionUpOutlinedFilled as default } +export default IconMoveSelectionUpOutlinedFilled diff --git a/src/IconMoveSelectionUpRounded.tsx b/src/IconMoveSelectionUpRounded.tsx index 735471c73..18f1de440 100644 --- a/src/IconMoveSelectionUpRounded.tsx +++ b/src/IconMoveSelectionUpRounded.tsx @@ -8,4 +8,4 @@ const IconMoveSelectionUpRounded: React.FC = ({ ...props }) => ( ) -export { IconMoveSelectionUpRounded as default } +export default IconMoveSelectionUpRounded diff --git a/src/IconMoveSelectionUpRoundedFilled.tsx b/src/IconMoveSelectionUpRoundedFilled.tsx index 264e8c26a..45e750361 100644 --- a/src/IconMoveSelectionUpRoundedFilled.tsx +++ b/src/IconMoveSelectionUpRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconMoveSelectionUpRoundedFilled: React.FC = ({ ) -export { IconMoveSelectionUpRoundedFilled as default } +export default IconMoveSelectionUpRoundedFilled diff --git a/src/IconMoveSelectionUpSharp.tsx b/src/IconMoveSelectionUpSharp.tsx index 430ab2665..2c69d81e9 100644 --- a/src/IconMoveSelectionUpSharp.tsx +++ b/src/IconMoveSelectionUpSharp.tsx @@ -8,4 +8,4 @@ const IconMoveSelectionUpSharp: React.FC = ({ ...props }) => ( ) -export { IconMoveSelectionUpSharp as default } +export default IconMoveSelectionUpSharp diff --git a/src/IconMoveSelectionUpSharpFilled.tsx b/src/IconMoveSelectionUpSharpFilled.tsx index f4aba2c2f..c246a2b0a 100644 --- a/src/IconMoveSelectionUpSharpFilled.tsx +++ b/src/IconMoveSelectionUpSharpFilled.tsx @@ -8,4 +8,4 @@ const IconMoveSelectionUpSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconMoveSelectionUpSharpFilled as default } +export default IconMoveSelectionUpSharpFilled diff --git a/src/IconMoveSharp.tsx b/src/IconMoveSharp.tsx index 8b1d17e4c..c887033d4 100644 --- a/src/IconMoveSharp.tsx +++ b/src/IconMoveSharp.tsx @@ -8,4 +8,4 @@ const IconMoveSharp: React.FC = ({ ...props }) => ( ) -export { IconMoveSharp as default } +export default IconMoveSharp diff --git a/src/IconMoveSharpFilled.tsx b/src/IconMoveSharpFilled.tsx index d870bd5b6..877ff15f1 100644 --- a/src/IconMoveSharpFilled.tsx +++ b/src/IconMoveSharpFilled.tsx @@ -8,4 +8,4 @@ const IconMoveSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconMoveSharpFilled as default } +export default IconMoveSharpFilled diff --git a/src/IconMoveToInboxOutlined.tsx b/src/IconMoveToInboxOutlined.tsx index acb20d6c4..46f4a7a75 100644 --- a/src/IconMoveToInboxOutlined.tsx +++ b/src/IconMoveToInboxOutlined.tsx @@ -8,4 +8,4 @@ const IconMoveToInboxOutlined: React.FC = ({ ...props }) => ( ) -export { IconMoveToInboxOutlined as default } +export default IconMoveToInboxOutlined diff --git a/src/IconMoveToInboxOutlinedFilled.tsx b/src/IconMoveToInboxOutlinedFilled.tsx index b284afe14..f51674107 100644 --- a/src/IconMoveToInboxOutlinedFilled.tsx +++ b/src/IconMoveToInboxOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconMoveToInboxOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconMoveToInboxOutlinedFilled as default } +export default IconMoveToInboxOutlinedFilled diff --git a/src/IconMoveToInboxRounded.tsx b/src/IconMoveToInboxRounded.tsx index 87b406473..13a56b382 100644 --- a/src/IconMoveToInboxRounded.tsx +++ b/src/IconMoveToInboxRounded.tsx @@ -8,4 +8,4 @@ const IconMoveToInboxRounded: React.FC = ({ ...props }) => ( ) -export { IconMoveToInboxRounded as default } +export default IconMoveToInboxRounded diff --git a/src/IconMoveToInboxRoundedFilled.tsx b/src/IconMoveToInboxRoundedFilled.tsx index 8c42fb3a4..ea64db57c 100644 --- a/src/IconMoveToInboxRoundedFilled.tsx +++ b/src/IconMoveToInboxRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconMoveToInboxRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconMoveToInboxRoundedFilled as default } +export default IconMoveToInboxRoundedFilled diff --git a/src/IconMoveToInboxSharp.tsx b/src/IconMoveToInboxSharp.tsx index 5b105215e..49912a6dd 100644 --- a/src/IconMoveToInboxSharp.tsx +++ b/src/IconMoveToInboxSharp.tsx @@ -8,4 +8,4 @@ const IconMoveToInboxSharp: React.FC = ({ ...props }) => ( ) -export { IconMoveToInboxSharp as default } +export default IconMoveToInboxSharp diff --git a/src/IconMoveToInboxSharpFilled.tsx b/src/IconMoveToInboxSharpFilled.tsx index 39a1ce388..de448b05f 100644 --- a/src/IconMoveToInboxSharpFilled.tsx +++ b/src/IconMoveToInboxSharpFilled.tsx @@ -8,4 +8,4 @@ const IconMoveToInboxSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconMoveToInboxSharpFilled as default } +export default IconMoveToInboxSharpFilled diff --git a/src/IconMoveUpOutlined.tsx b/src/IconMoveUpOutlined.tsx index f6dccafc2..32e514eb5 100644 --- a/src/IconMoveUpOutlined.tsx +++ b/src/IconMoveUpOutlined.tsx @@ -8,4 +8,4 @@ const IconMoveUpOutlined: React.FC = ({ ...props }) => ( ) -export { IconMoveUpOutlined as default } +export default IconMoveUpOutlined diff --git a/src/IconMoveUpOutlinedFilled.tsx b/src/IconMoveUpOutlinedFilled.tsx index 21e5cc25f..025101c2c 100644 --- a/src/IconMoveUpOutlinedFilled.tsx +++ b/src/IconMoveUpOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconMoveUpOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconMoveUpOutlinedFilled as default } +export default IconMoveUpOutlinedFilled diff --git a/src/IconMoveUpRounded.tsx b/src/IconMoveUpRounded.tsx index 8cfbfd772..a2a732ff3 100644 --- a/src/IconMoveUpRounded.tsx +++ b/src/IconMoveUpRounded.tsx @@ -8,4 +8,4 @@ const IconMoveUpRounded: React.FC = ({ ...props }) => ( ) -export { IconMoveUpRounded as default } +export default IconMoveUpRounded diff --git a/src/IconMoveUpRoundedFilled.tsx b/src/IconMoveUpRoundedFilled.tsx index 9fa099b9a..4a479b8e2 100644 --- a/src/IconMoveUpRoundedFilled.tsx +++ b/src/IconMoveUpRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconMoveUpRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconMoveUpRoundedFilled as default } +export default IconMoveUpRoundedFilled diff --git a/src/IconMoveUpSharp.tsx b/src/IconMoveUpSharp.tsx index d6671b3d2..93f588711 100644 --- a/src/IconMoveUpSharp.tsx +++ b/src/IconMoveUpSharp.tsx @@ -8,4 +8,4 @@ const IconMoveUpSharp: React.FC = ({ ...props }) => ( ) -export { IconMoveUpSharp as default } +export default IconMoveUpSharp diff --git a/src/IconMoveUpSharpFilled.tsx b/src/IconMoveUpSharpFilled.tsx index 7129bc0b6..60ba2706b 100644 --- a/src/IconMoveUpSharpFilled.tsx +++ b/src/IconMoveUpSharpFilled.tsx @@ -8,4 +8,4 @@ const IconMoveUpSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconMoveUpSharpFilled as default } +export default IconMoveUpSharpFilled diff --git a/src/IconMovedLocationOutlined.tsx b/src/IconMovedLocationOutlined.tsx index 3f4db3280..e45480c46 100644 --- a/src/IconMovedLocationOutlined.tsx +++ b/src/IconMovedLocationOutlined.tsx @@ -8,4 +8,4 @@ const IconMovedLocationOutlined: React.FC = ({ ...props }) => ( ) -export { IconMovedLocationOutlined as default } +export default IconMovedLocationOutlined diff --git a/src/IconMovedLocationOutlinedFilled.tsx b/src/IconMovedLocationOutlinedFilled.tsx index d357cb571..911afb97d 100644 --- a/src/IconMovedLocationOutlinedFilled.tsx +++ b/src/IconMovedLocationOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconMovedLocationOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconMovedLocationOutlinedFilled as default } +export default IconMovedLocationOutlinedFilled diff --git a/src/IconMovedLocationRounded.tsx b/src/IconMovedLocationRounded.tsx index 580f7993f..72fe380af 100644 --- a/src/IconMovedLocationRounded.tsx +++ b/src/IconMovedLocationRounded.tsx @@ -8,4 +8,4 @@ const IconMovedLocationRounded: React.FC = ({ ...props }) => ( ) -export { IconMovedLocationRounded as default } +export default IconMovedLocationRounded diff --git a/src/IconMovedLocationRoundedFilled.tsx b/src/IconMovedLocationRoundedFilled.tsx index a1b595178..ee21f73f7 100644 --- a/src/IconMovedLocationRoundedFilled.tsx +++ b/src/IconMovedLocationRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconMovedLocationRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconMovedLocationRoundedFilled as default } +export default IconMovedLocationRoundedFilled diff --git a/src/IconMovedLocationSharp.tsx b/src/IconMovedLocationSharp.tsx index fcd76ffd2..046fd5406 100644 --- a/src/IconMovedLocationSharp.tsx +++ b/src/IconMovedLocationSharp.tsx @@ -8,4 +8,4 @@ const IconMovedLocationSharp: React.FC = ({ ...props }) => ( ) -export { IconMovedLocationSharp as default } +export default IconMovedLocationSharp diff --git a/src/IconMovedLocationSharpFilled.tsx b/src/IconMovedLocationSharpFilled.tsx index 4d3b34096..11de741f0 100644 --- a/src/IconMovedLocationSharpFilled.tsx +++ b/src/IconMovedLocationSharpFilled.tsx @@ -8,4 +8,4 @@ const IconMovedLocationSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconMovedLocationSharpFilled as default } +export default IconMovedLocationSharpFilled diff --git a/src/IconMovieEditOutlined.tsx b/src/IconMovieEditOutlined.tsx index d6e3b9e7d..e5fb26116 100644 --- a/src/IconMovieEditOutlined.tsx +++ b/src/IconMovieEditOutlined.tsx @@ -8,4 +8,4 @@ const IconMovieEditOutlined: React.FC = ({ ...props }) => ( ) -export { IconMovieEditOutlined as default } +export default IconMovieEditOutlined diff --git a/src/IconMovieEditOutlinedFilled.tsx b/src/IconMovieEditOutlinedFilled.tsx index 21443175d..78a3c16e0 100644 --- a/src/IconMovieEditOutlinedFilled.tsx +++ b/src/IconMovieEditOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconMovieEditOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconMovieEditOutlinedFilled as default } +export default IconMovieEditOutlinedFilled diff --git a/src/IconMovieEditRounded.tsx b/src/IconMovieEditRounded.tsx index fd988dbb5..d342cca97 100644 --- a/src/IconMovieEditRounded.tsx +++ b/src/IconMovieEditRounded.tsx @@ -8,4 +8,4 @@ const IconMovieEditRounded: React.FC = ({ ...props }) => ( ) -export { IconMovieEditRounded as default } +export default IconMovieEditRounded diff --git a/src/IconMovieEditRoundedFilled.tsx b/src/IconMovieEditRoundedFilled.tsx index 04ec5b3fc..8113914e4 100644 --- a/src/IconMovieEditRoundedFilled.tsx +++ b/src/IconMovieEditRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconMovieEditRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconMovieEditRoundedFilled as default } +export default IconMovieEditRoundedFilled diff --git a/src/IconMovieEditSharp.tsx b/src/IconMovieEditSharp.tsx index 406eb8f29..94898dbac 100644 --- a/src/IconMovieEditSharp.tsx +++ b/src/IconMovieEditSharp.tsx @@ -8,4 +8,4 @@ const IconMovieEditSharp: React.FC = ({ ...props }) => ( ) -export { IconMovieEditSharp as default } +export default IconMovieEditSharp diff --git a/src/IconMovieEditSharpFilled.tsx b/src/IconMovieEditSharpFilled.tsx index 4d840ec05..ff1841dec 100644 --- a/src/IconMovieEditSharpFilled.tsx +++ b/src/IconMovieEditSharpFilled.tsx @@ -8,4 +8,4 @@ const IconMovieEditSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconMovieEditSharpFilled as default } +export default IconMovieEditSharpFilled diff --git a/src/IconMovieInfoOutlined.tsx b/src/IconMovieInfoOutlined.tsx index 578ab47ee..007dde67b 100644 --- a/src/IconMovieInfoOutlined.tsx +++ b/src/IconMovieInfoOutlined.tsx @@ -8,4 +8,4 @@ const IconMovieInfoOutlined: React.FC = ({ ...props }) => ( ) -export { IconMovieInfoOutlined as default } +export default IconMovieInfoOutlined diff --git a/src/IconMovieInfoOutlinedFilled.tsx b/src/IconMovieInfoOutlinedFilled.tsx index 1a5b04db8..04712a961 100644 --- a/src/IconMovieInfoOutlinedFilled.tsx +++ b/src/IconMovieInfoOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconMovieInfoOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconMovieInfoOutlinedFilled as default } +export default IconMovieInfoOutlinedFilled diff --git a/src/IconMovieInfoRounded.tsx b/src/IconMovieInfoRounded.tsx index e07d97c97..64e05f247 100644 --- a/src/IconMovieInfoRounded.tsx +++ b/src/IconMovieInfoRounded.tsx @@ -8,4 +8,4 @@ const IconMovieInfoRounded: React.FC = ({ ...props }) => ( ) -export { IconMovieInfoRounded as default } +export default IconMovieInfoRounded diff --git a/src/IconMovieInfoRoundedFilled.tsx b/src/IconMovieInfoRoundedFilled.tsx index 5ae8bf22b..d5b7723fe 100644 --- a/src/IconMovieInfoRoundedFilled.tsx +++ b/src/IconMovieInfoRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconMovieInfoRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconMovieInfoRoundedFilled as default } +export default IconMovieInfoRoundedFilled diff --git a/src/IconMovieInfoSharp.tsx b/src/IconMovieInfoSharp.tsx index 389fbec60..c1a3a66cc 100644 --- a/src/IconMovieInfoSharp.tsx +++ b/src/IconMovieInfoSharp.tsx @@ -8,4 +8,4 @@ const IconMovieInfoSharp: React.FC = ({ ...props }) => ( ) -export { IconMovieInfoSharp as default } +export default IconMovieInfoSharp diff --git a/src/IconMovieInfoSharpFilled.tsx b/src/IconMovieInfoSharpFilled.tsx index 02d2ae1be..ed3430d1a 100644 --- a/src/IconMovieInfoSharpFilled.tsx +++ b/src/IconMovieInfoSharpFilled.tsx @@ -8,4 +8,4 @@ const IconMovieInfoSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconMovieInfoSharpFilled as default } +export default IconMovieInfoSharpFilled diff --git a/src/IconMovieOffOutlined.tsx b/src/IconMovieOffOutlined.tsx index eb6107b56..c79758126 100644 --- a/src/IconMovieOffOutlined.tsx +++ b/src/IconMovieOffOutlined.tsx @@ -8,4 +8,4 @@ const IconMovieOffOutlined: React.FC = ({ ...props }) => ( ) -export { IconMovieOffOutlined as default } +export default IconMovieOffOutlined diff --git a/src/IconMovieOffOutlinedFilled.tsx b/src/IconMovieOffOutlinedFilled.tsx index d2f172734..7da9c8d63 100644 --- a/src/IconMovieOffOutlinedFilled.tsx +++ b/src/IconMovieOffOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconMovieOffOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconMovieOffOutlinedFilled as default } +export default IconMovieOffOutlinedFilled diff --git a/src/IconMovieOffRounded.tsx b/src/IconMovieOffRounded.tsx index acf8e540d..8291b29a5 100644 --- a/src/IconMovieOffRounded.tsx +++ b/src/IconMovieOffRounded.tsx @@ -8,4 +8,4 @@ const IconMovieOffRounded: React.FC = ({ ...props }) => ( ) -export { IconMovieOffRounded as default } +export default IconMovieOffRounded diff --git a/src/IconMovieOffRoundedFilled.tsx b/src/IconMovieOffRoundedFilled.tsx index 56f1fe87b..d7cd836ae 100644 --- a/src/IconMovieOffRoundedFilled.tsx +++ b/src/IconMovieOffRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconMovieOffRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconMovieOffRoundedFilled as default } +export default IconMovieOffRoundedFilled diff --git a/src/IconMovieOffSharp.tsx b/src/IconMovieOffSharp.tsx index 30206ed7a..4e6e1e6d7 100644 --- a/src/IconMovieOffSharp.tsx +++ b/src/IconMovieOffSharp.tsx @@ -8,4 +8,4 @@ const IconMovieOffSharp: React.FC = ({ ...props }) => ( ) -export { IconMovieOffSharp as default } +export default IconMovieOffSharp diff --git a/src/IconMovieOffSharpFilled.tsx b/src/IconMovieOffSharpFilled.tsx index ef15c143a..8a5b39945 100644 --- a/src/IconMovieOffSharpFilled.tsx +++ b/src/IconMovieOffSharpFilled.tsx @@ -8,4 +8,4 @@ const IconMovieOffSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconMovieOffSharpFilled as default } +export default IconMovieOffSharpFilled diff --git a/src/IconMovieOutlined.tsx b/src/IconMovieOutlined.tsx index a4b994366..8b79606a8 100644 --- a/src/IconMovieOutlined.tsx +++ b/src/IconMovieOutlined.tsx @@ -8,4 +8,4 @@ const IconMovieOutlined: React.FC = ({ ...props }) => ( ) -export { IconMovieOutlined as default } +export default IconMovieOutlined diff --git a/src/IconMovieOutlinedFilled.tsx b/src/IconMovieOutlinedFilled.tsx index af26ff429..66f26aea9 100644 --- a/src/IconMovieOutlinedFilled.tsx +++ b/src/IconMovieOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconMovieOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconMovieOutlinedFilled as default } +export default IconMovieOutlinedFilled diff --git a/src/IconMovieRounded.tsx b/src/IconMovieRounded.tsx index 7b57fb904..f503e1a46 100644 --- a/src/IconMovieRounded.tsx +++ b/src/IconMovieRounded.tsx @@ -8,4 +8,4 @@ const IconMovieRounded: React.FC = ({ ...props }) => ( ) -export { IconMovieRounded as default } +export default IconMovieRounded diff --git a/src/IconMovieRoundedFilled.tsx b/src/IconMovieRoundedFilled.tsx index 32249443e..a899deaf9 100644 --- a/src/IconMovieRoundedFilled.tsx +++ b/src/IconMovieRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconMovieRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconMovieRoundedFilled as default } +export default IconMovieRoundedFilled diff --git a/src/IconMovieSharp.tsx b/src/IconMovieSharp.tsx index 4ef174831..8afa2f0de 100644 --- a/src/IconMovieSharp.tsx +++ b/src/IconMovieSharp.tsx @@ -8,4 +8,4 @@ const IconMovieSharp: React.FC = ({ ...props }) => ( ) -export { IconMovieSharp as default } +export default IconMovieSharp diff --git a/src/IconMovieSharpFilled.tsx b/src/IconMovieSharpFilled.tsx index 74f5dca45..04e59da2d 100644 --- a/src/IconMovieSharpFilled.tsx +++ b/src/IconMovieSharpFilled.tsx @@ -8,4 +8,4 @@ const IconMovieSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconMovieSharpFilled as default } +export default IconMovieSharpFilled diff --git a/src/IconMovingBedsOutlined.tsx b/src/IconMovingBedsOutlined.tsx index 4c73ec34a..6331ce78b 100644 --- a/src/IconMovingBedsOutlined.tsx +++ b/src/IconMovingBedsOutlined.tsx @@ -8,4 +8,4 @@ const IconMovingBedsOutlined: React.FC = ({ ...props }) => ( ) -export { IconMovingBedsOutlined as default } +export default IconMovingBedsOutlined diff --git a/src/IconMovingBedsOutlinedFilled.tsx b/src/IconMovingBedsOutlinedFilled.tsx index 100a9ca3e..95e458355 100644 --- a/src/IconMovingBedsOutlinedFilled.tsx +++ b/src/IconMovingBedsOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconMovingBedsOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconMovingBedsOutlinedFilled as default } +export default IconMovingBedsOutlinedFilled diff --git a/src/IconMovingBedsRounded.tsx b/src/IconMovingBedsRounded.tsx index a7d495c5c..b877a2642 100644 --- a/src/IconMovingBedsRounded.tsx +++ b/src/IconMovingBedsRounded.tsx @@ -8,4 +8,4 @@ const IconMovingBedsRounded: React.FC = ({ ...props }) => ( ) -export { IconMovingBedsRounded as default } +export default IconMovingBedsRounded diff --git a/src/IconMovingBedsRoundedFilled.tsx b/src/IconMovingBedsRoundedFilled.tsx index 85d2dc3ba..1b61912f4 100644 --- a/src/IconMovingBedsRoundedFilled.tsx +++ b/src/IconMovingBedsRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconMovingBedsRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconMovingBedsRoundedFilled as default } +export default IconMovingBedsRoundedFilled diff --git a/src/IconMovingBedsSharp.tsx b/src/IconMovingBedsSharp.tsx index 47db8344c..fd8501e7a 100644 --- a/src/IconMovingBedsSharp.tsx +++ b/src/IconMovingBedsSharp.tsx @@ -8,4 +8,4 @@ const IconMovingBedsSharp: React.FC = ({ ...props }) => ( ) -export { IconMovingBedsSharp as default } +export default IconMovingBedsSharp diff --git a/src/IconMovingBedsSharpFilled.tsx b/src/IconMovingBedsSharpFilled.tsx index 4d1657b18..46a195136 100644 --- a/src/IconMovingBedsSharpFilled.tsx +++ b/src/IconMovingBedsSharpFilled.tsx @@ -8,4 +8,4 @@ const IconMovingBedsSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconMovingBedsSharpFilled as default } +export default IconMovingBedsSharpFilled diff --git a/src/IconMovingMinistryOutlined.tsx b/src/IconMovingMinistryOutlined.tsx index 2566f0b72..1b2606ca1 100644 --- a/src/IconMovingMinistryOutlined.tsx +++ b/src/IconMovingMinistryOutlined.tsx @@ -8,4 +8,4 @@ const IconMovingMinistryOutlined: React.FC = ({ ...props }) => ( ) -export { IconMovingMinistryOutlined as default } +export default IconMovingMinistryOutlined diff --git a/src/IconMovingMinistryOutlinedFilled.tsx b/src/IconMovingMinistryOutlinedFilled.tsx index 23f1c3c59..f59197cf5 100644 --- a/src/IconMovingMinistryOutlinedFilled.tsx +++ b/src/IconMovingMinistryOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconMovingMinistryOutlinedFilled: React.FC = ({ ) -export { IconMovingMinistryOutlinedFilled as default } +export default IconMovingMinistryOutlinedFilled diff --git a/src/IconMovingMinistryRounded.tsx b/src/IconMovingMinistryRounded.tsx index 6b1c2810a..ef1c01817 100644 --- a/src/IconMovingMinistryRounded.tsx +++ b/src/IconMovingMinistryRounded.tsx @@ -8,4 +8,4 @@ const IconMovingMinistryRounded: React.FC = ({ ...props }) => ( ) -export { IconMovingMinistryRounded as default } +export default IconMovingMinistryRounded diff --git a/src/IconMovingMinistryRoundedFilled.tsx b/src/IconMovingMinistryRoundedFilled.tsx index bf95c5de5..5774071d0 100644 --- a/src/IconMovingMinistryRoundedFilled.tsx +++ b/src/IconMovingMinistryRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconMovingMinistryRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconMovingMinistryRoundedFilled as default } +export default IconMovingMinistryRoundedFilled diff --git a/src/IconMovingMinistrySharp.tsx b/src/IconMovingMinistrySharp.tsx index 8cab7c72f..d58b0f9b1 100644 --- a/src/IconMovingMinistrySharp.tsx +++ b/src/IconMovingMinistrySharp.tsx @@ -8,4 +8,4 @@ const IconMovingMinistrySharp: React.FC = ({ ...props }) => ( ) -export { IconMovingMinistrySharp as default } +export default IconMovingMinistrySharp diff --git a/src/IconMovingMinistrySharpFilled.tsx b/src/IconMovingMinistrySharpFilled.tsx index 77c6cb068..b981adca3 100644 --- a/src/IconMovingMinistrySharpFilled.tsx +++ b/src/IconMovingMinistrySharpFilled.tsx @@ -8,4 +8,4 @@ const IconMovingMinistrySharpFilled: React.FC = ({ ...props }) => ( ) -export { IconMovingMinistrySharpFilled as default } +export default IconMovingMinistrySharpFilled diff --git a/src/IconMovingOutlined.tsx b/src/IconMovingOutlined.tsx index 61e325bd5..61a95b06c 100644 --- a/src/IconMovingOutlined.tsx +++ b/src/IconMovingOutlined.tsx @@ -8,4 +8,4 @@ const IconMovingOutlined: React.FC = ({ ...props }) => ( ) -export { IconMovingOutlined as default } +export default IconMovingOutlined diff --git a/src/IconMovingOutlinedFilled.tsx b/src/IconMovingOutlinedFilled.tsx index 46f2728bc..7398fa976 100644 --- a/src/IconMovingOutlinedFilled.tsx +++ b/src/IconMovingOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconMovingOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconMovingOutlinedFilled as default } +export default IconMovingOutlinedFilled diff --git a/src/IconMovingRounded.tsx b/src/IconMovingRounded.tsx index 19b1fa9f5..6908a7af4 100644 --- a/src/IconMovingRounded.tsx +++ b/src/IconMovingRounded.tsx @@ -8,4 +8,4 @@ const IconMovingRounded: React.FC = ({ ...props }) => ( ) -export { IconMovingRounded as default } +export default IconMovingRounded diff --git a/src/IconMovingRoundedFilled.tsx b/src/IconMovingRoundedFilled.tsx index 81322b567..52d7a5e39 100644 --- a/src/IconMovingRoundedFilled.tsx +++ b/src/IconMovingRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconMovingRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconMovingRoundedFilled as default } +export default IconMovingRoundedFilled diff --git a/src/IconMovingSharp.tsx b/src/IconMovingSharp.tsx index da3f6de58..6527c3429 100644 --- a/src/IconMovingSharp.tsx +++ b/src/IconMovingSharp.tsx @@ -8,4 +8,4 @@ const IconMovingSharp: React.FC = ({ ...props }) => ( ) -export { IconMovingSharp as default } +export default IconMovingSharp diff --git a/src/IconMovingSharpFilled.tsx b/src/IconMovingSharpFilled.tsx index c6f8a46b5..933779aa6 100644 --- a/src/IconMovingSharpFilled.tsx +++ b/src/IconMovingSharpFilled.tsx @@ -8,4 +8,4 @@ const IconMovingSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconMovingSharpFilled as default } +export default IconMovingSharpFilled diff --git a/src/IconMpOutlined.tsx b/src/IconMpOutlined.tsx index c81927fe1..986fa027d 100644 --- a/src/IconMpOutlined.tsx +++ b/src/IconMpOutlined.tsx @@ -8,4 +8,4 @@ const IconMpOutlined: React.FC = ({ ...props }) => ( ) -export { IconMpOutlined as default } +export default IconMpOutlined diff --git a/src/IconMpOutlinedFilled.tsx b/src/IconMpOutlinedFilled.tsx index a7997d9c0..bdcd1095b 100644 --- a/src/IconMpOutlinedFilled.tsx +++ b/src/IconMpOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconMpOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconMpOutlinedFilled as default } +export default IconMpOutlinedFilled diff --git a/src/IconMpRounded.tsx b/src/IconMpRounded.tsx index 17774f5f6..e004eac34 100644 --- a/src/IconMpRounded.tsx +++ b/src/IconMpRounded.tsx @@ -8,4 +8,4 @@ const IconMpRounded: React.FC = ({ ...props }) => ( ) -export { IconMpRounded as default } +export default IconMpRounded diff --git a/src/IconMpRoundedFilled.tsx b/src/IconMpRoundedFilled.tsx index 657c994a3..fc5f9fc64 100644 --- a/src/IconMpRoundedFilled.tsx +++ b/src/IconMpRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconMpRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconMpRoundedFilled as default } +export default IconMpRoundedFilled diff --git a/src/IconMpSharp.tsx b/src/IconMpSharp.tsx index 6cd4720cb..14bd7e460 100644 --- a/src/IconMpSharp.tsx +++ b/src/IconMpSharp.tsx @@ -8,4 +8,4 @@ const IconMpSharp: React.FC = ({ ...props }) => ( ) -export { IconMpSharp as default } +export default IconMpSharp diff --git a/src/IconMpSharpFilled.tsx b/src/IconMpSharpFilled.tsx index b7e86d2e5..587df644b 100644 --- a/src/IconMpSharpFilled.tsx +++ b/src/IconMpSharpFilled.tsx @@ -8,4 +8,4 @@ const IconMpSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconMpSharpFilled as default } +export default IconMpSharpFilled diff --git a/src/IconMulticookerOutlined.tsx b/src/IconMulticookerOutlined.tsx index 49e06c2d5..62e150dbf 100644 --- a/src/IconMulticookerOutlined.tsx +++ b/src/IconMulticookerOutlined.tsx @@ -8,4 +8,4 @@ const IconMulticookerOutlined: React.FC = ({ ...props }) => ( ) -export { IconMulticookerOutlined as default } +export default IconMulticookerOutlined diff --git a/src/IconMulticookerOutlinedFilled.tsx b/src/IconMulticookerOutlinedFilled.tsx index e0c741ad1..0863d8124 100644 --- a/src/IconMulticookerOutlinedFilled.tsx +++ b/src/IconMulticookerOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconMulticookerOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconMulticookerOutlinedFilled as default } +export default IconMulticookerOutlinedFilled diff --git a/src/IconMulticookerRounded.tsx b/src/IconMulticookerRounded.tsx index 296bf88b0..e56c86d98 100644 --- a/src/IconMulticookerRounded.tsx +++ b/src/IconMulticookerRounded.tsx @@ -8,4 +8,4 @@ const IconMulticookerRounded: React.FC = ({ ...props }) => ( ) -export { IconMulticookerRounded as default } +export default IconMulticookerRounded diff --git a/src/IconMulticookerRoundedFilled.tsx b/src/IconMulticookerRoundedFilled.tsx index 3e48a2dd6..7848eac88 100644 --- a/src/IconMulticookerRoundedFilled.tsx +++ b/src/IconMulticookerRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconMulticookerRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconMulticookerRoundedFilled as default } +export default IconMulticookerRoundedFilled diff --git a/src/IconMulticookerSharp.tsx b/src/IconMulticookerSharp.tsx index 5a961f4b5..d2e490fae 100644 --- a/src/IconMulticookerSharp.tsx +++ b/src/IconMulticookerSharp.tsx @@ -8,4 +8,4 @@ const IconMulticookerSharp: React.FC = ({ ...props }) => ( ) -export { IconMulticookerSharp as default } +export default IconMulticookerSharp diff --git a/src/IconMulticookerSharpFilled.tsx b/src/IconMulticookerSharpFilled.tsx index 316668d8c..9de9cf004 100644 --- a/src/IconMulticookerSharpFilled.tsx +++ b/src/IconMulticookerSharpFilled.tsx @@ -8,4 +8,4 @@ const IconMulticookerSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconMulticookerSharpFilled as default } +export default IconMulticookerSharpFilled diff --git a/src/IconMultilineChartOutlined.tsx b/src/IconMultilineChartOutlined.tsx index 3d60c6022..4f421ad24 100644 --- a/src/IconMultilineChartOutlined.tsx +++ b/src/IconMultilineChartOutlined.tsx @@ -8,4 +8,4 @@ const IconMultilineChartOutlined: React.FC = ({ ...props }) => ( ) -export { IconMultilineChartOutlined as default } +export default IconMultilineChartOutlined diff --git a/src/IconMultilineChartOutlinedFilled.tsx b/src/IconMultilineChartOutlinedFilled.tsx index 641314cf1..93b6b9e8b 100644 --- a/src/IconMultilineChartOutlinedFilled.tsx +++ b/src/IconMultilineChartOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconMultilineChartOutlinedFilled: React.FC = ({ ) -export { IconMultilineChartOutlinedFilled as default } +export default IconMultilineChartOutlinedFilled diff --git a/src/IconMultilineChartRounded.tsx b/src/IconMultilineChartRounded.tsx index 38e8c79d4..0733e3da6 100644 --- a/src/IconMultilineChartRounded.tsx +++ b/src/IconMultilineChartRounded.tsx @@ -8,4 +8,4 @@ const IconMultilineChartRounded: React.FC = ({ ...props }) => ( ) -export { IconMultilineChartRounded as default } +export default IconMultilineChartRounded diff --git a/src/IconMultilineChartRoundedFilled.tsx b/src/IconMultilineChartRoundedFilled.tsx index 9c4dde392..e4ff6a631 100644 --- a/src/IconMultilineChartRoundedFilled.tsx +++ b/src/IconMultilineChartRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconMultilineChartRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconMultilineChartRoundedFilled as default } +export default IconMultilineChartRoundedFilled diff --git a/src/IconMultilineChartSharp.tsx b/src/IconMultilineChartSharp.tsx index 66cc9409d..27b39ffbf 100644 --- a/src/IconMultilineChartSharp.tsx +++ b/src/IconMultilineChartSharp.tsx @@ -8,4 +8,4 @@ const IconMultilineChartSharp: React.FC = ({ ...props }) => ( ) -export { IconMultilineChartSharp as default } +export default IconMultilineChartSharp diff --git a/src/IconMultilineChartSharpFilled.tsx b/src/IconMultilineChartSharpFilled.tsx index ba4ab098d..ea2f5438d 100644 --- a/src/IconMultilineChartSharpFilled.tsx +++ b/src/IconMultilineChartSharpFilled.tsx @@ -8,4 +8,4 @@ const IconMultilineChartSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconMultilineChartSharpFilled as default } +export default IconMultilineChartSharpFilled diff --git a/src/IconMultimodalHandEyeOutlined.tsx b/src/IconMultimodalHandEyeOutlined.tsx index a17f0c8ea..b4945564a 100644 --- a/src/IconMultimodalHandEyeOutlined.tsx +++ b/src/IconMultimodalHandEyeOutlined.tsx @@ -8,4 +8,4 @@ const IconMultimodalHandEyeOutlined: React.FC = ({ ...props }) => ( ) -export { IconMultimodalHandEyeOutlined as default } +export default IconMultimodalHandEyeOutlined diff --git a/src/IconMultimodalHandEyeOutlinedFilled.tsx b/src/IconMultimodalHandEyeOutlinedFilled.tsx index 10e54c65a..660336828 100644 --- a/src/IconMultimodalHandEyeOutlinedFilled.tsx +++ b/src/IconMultimodalHandEyeOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconMultimodalHandEyeOutlinedFilled: React.FC = ({ ) -export { IconMultimodalHandEyeOutlinedFilled as default } +export default IconMultimodalHandEyeOutlinedFilled diff --git a/src/IconMultimodalHandEyeRounded.tsx b/src/IconMultimodalHandEyeRounded.tsx index e948d74c0..227d75a13 100644 --- a/src/IconMultimodalHandEyeRounded.tsx +++ b/src/IconMultimodalHandEyeRounded.tsx @@ -8,4 +8,4 @@ const IconMultimodalHandEyeRounded: React.FC = ({ ...props }) => ( ) -export { IconMultimodalHandEyeRounded as default } +export default IconMultimodalHandEyeRounded diff --git a/src/IconMultimodalHandEyeRoundedFilled.tsx b/src/IconMultimodalHandEyeRoundedFilled.tsx index 9e1d27e2b..0983a3b33 100644 --- a/src/IconMultimodalHandEyeRoundedFilled.tsx +++ b/src/IconMultimodalHandEyeRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconMultimodalHandEyeRoundedFilled: React.FC = ({ ) -export { IconMultimodalHandEyeRoundedFilled as default } +export default IconMultimodalHandEyeRoundedFilled diff --git a/src/IconMultimodalHandEyeSharp.tsx b/src/IconMultimodalHandEyeSharp.tsx index 34db9b9bb..5889b9f1f 100644 --- a/src/IconMultimodalHandEyeSharp.tsx +++ b/src/IconMultimodalHandEyeSharp.tsx @@ -8,4 +8,4 @@ const IconMultimodalHandEyeSharp: React.FC = ({ ...props }) => ( ) -export { IconMultimodalHandEyeSharp as default } +export default IconMultimodalHandEyeSharp diff --git a/src/IconMultimodalHandEyeSharpFilled.tsx b/src/IconMultimodalHandEyeSharpFilled.tsx index 4568d24d4..2c614950d 100644 --- a/src/IconMultimodalHandEyeSharpFilled.tsx +++ b/src/IconMultimodalHandEyeSharpFilled.tsx @@ -10,4 +10,4 @@ const IconMultimodalHandEyeSharpFilled: React.FC = ({ ) -export { IconMultimodalHandEyeSharpFilled as default } +export default IconMultimodalHandEyeSharpFilled diff --git a/src/IconMultipleStopOutlined.tsx b/src/IconMultipleStopOutlined.tsx index 64e3c0f22..9f6b394c1 100644 --- a/src/IconMultipleStopOutlined.tsx +++ b/src/IconMultipleStopOutlined.tsx @@ -8,4 +8,4 @@ const IconMultipleStopOutlined: React.FC = ({ ...props }) => ( ) -export { IconMultipleStopOutlined as default } +export default IconMultipleStopOutlined diff --git a/src/IconMultipleStopOutlinedFilled.tsx b/src/IconMultipleStopOutlinedFilled.tsx index 105f6f9bf..c4f33dc0a 100644 --- a/src/IconMultipleStopOutlinedFilled.tsx +++ b/src/IconMultipleStopOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconMultipleStopOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconMultipleStopOutlinedFilled as default } +export default IconMultipleStopOutlinedFilled diff --git a/src/IconMultipleStopRounded.tsx b/src/IconMultipleStopRounded.tsx index 7b45d53a0..3b48baa7f 100644 --- a/src/IconMultipleStopRounded.tsx +++ b/src/IconMultipleStopRounded.tsx @@ -8,4 +8,4 @@ const IconMultipleStopRounded: React.FC = ({ ...props }) => ( ) -export { IconMultipleStopRounded as default } +export default IconMultipleStopRounded diff --git a/src/IconMultipleStopRoundedFilled.tsx b/src/IconMultipleStopRoundedFilled.tsx index 943d1c042..438b228e8 100644 --- a/src/IconMultipleStopRoundedFilled.tsx +++ b/src/IconMultipleStopRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconMultipleStopRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconMultipleStopRoundedFilled as default } +export default IconMultipleStopRoundedFilled diff --git a/src/IconMultipleStopSharp.tsx b/src/IconMultipleStopSharp.tsx index 95b800b3b..88fd92902 100644 --- a/src/IconMultipleStopSharp.tsx +++ b/src/IconMultipleStopSharp.tsx @@ -8,4 +8,4 @@ const IconMultipleStopSharp: React.FC = ({ ...props }) => ( ) -export { IconMultipleStopSharp as default } +export default IconMultipleStopSharp diff --git a/src/IconMultipleStopSharpFilled.tsx b/src/IconMultipleStopSharpFilled.tsx index 92b2c3a0d..130fa9e5b 100644 --- a/src/IconMultipleStopSharpFilled.tsx +++ b/src/IconMultipleStopSharpFilled.tsx @@ -8,4 +8,4 @@ const IconMultipleStopSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconMultipleStopSharpFilled as default } +export default IconMultipleStopSharpFilled diff --git a/src/IconMuseumOutlined.tsx b/src/IconMuseumOutlined.tsx index 4ba6d62c4..8db17239d 100644 --- a/src/IconMuseumOutlined.tsx +++ b/src/IconMuseumOutlined.tsx @@ -8,4 +8,4 @@ const IconMuseumOutlined: React.FC = ({ ...props }) => ( ) -export { IconMuseumOutlined as default } +export default IconMuseumOutlined diff --git a/src/IconMuseumOutlinedFilled.tsx b/src/IconMuseumOutlinedFilled.tsx index 6374170af..3867d3026 100644 --- a/src/IconMuseumOutlinedFilled.tsx +++ b/src/IconMuseumOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconMuseumOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconMuseumOutlinedFilled as default } +export default IconMuseumOutlinedFilled diff --git a/src/IconMuseumRounded.tsx b/src/IconMuseumRounded.tsx index 822f8a178..fcbfde214 100644 --- a/src/IconMuseumRounded.tsx +++ b/src/IconMuseumRounded.tsx @@ -8,4 +8,4 @@ const IconMuseumRounded: React.FC = ({ ...props }) => ( ) -export { IconMuseumRounded as default } +export default IconMuseumRounded diff --git a/src/IconMuseumRoundedFilled.tsx b/src/IconMuseumRoundedFilled.tsx index 56aa40fd4..5df21c0a8 100644 --- a/src/IconMuseumRoundedFilled.tsx +++ b/src/IconMuseumRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconMuseumRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconMuseumRoundedFilled as default } +export default IconMuseumRoundedFilled diff --git a/src/IconMuseumSharp.tsx b/src/IconMuseumSharp.tsx index b86d87ea5..bd52a0f4f 100644 --- a/src/IconMuseumSharp.tsx +++ b/src/IconMuseumSharp.tsx @@ -8,4 +8,4 @@ const IconMuseumSharp: React.FC = ({ ...props }) => ( ) -export { IconMuseumSharp as default } +export default IconMuseumSharp diff --git a/src/IconMuseumSharpFilled.tsx b/src/IconMuseumSharpFilled.tsx index 5d1b6ec8b..90c433d95 100644 --- a/src/IconMuseumSharpFilled.tsx +++ b/src/IconMuseumSharpFilled.tsx @@ -8,4 +8,4 @@ const IconMuseumSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconMuseumSharpFilled as default } +export default IconMuseumSharpFilled diff --git a/src/IconMusicCastOutlined.tsx b/src/IconMusicCastOutlined.tsx index 9d8253d71..4f451340e 100644 --- a/src/IconMusicCastOutlined.tsx +++ b/src/IconMusicCastOutlined.tsx @@ -8,4 +8,4 @@ const IconMusicCastOutlined: React.FC = ({ ...props }) => ( ) -export { IconMusicCastOutlined as default } +export default IconMusicCastOutlined diff --git a/src/IconMusicCastOutlinedFilled.tsx b/src/IconMusicCastOutlinedFilled.tsx index b1e618d42..b75accc5e 100644 --- a/src/IconMusicCastOutlinedFilled.tsx +++ b/src/IconMusicCastOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconMusicCastOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconMusicCastOutlinedFilled as default } +export default IconMusicCastOutlinedFilled diff --git a/src/IconMusicCastRounded.tsx b/src/IconMusicCastRounded.tsx index cd2ca784c..bbe0fda0e 100644 --- a/src/IconMusicCastRounded.tsx +++ b/src/IconMusicCastRounded.tsx @@ -8,4 +8,4 @@ const IconMusicCastRounded: React.FC = ({ ...props }) => ( ) -export { IconMusicCastRounded as default } +export default IconMusicCastRounded diff --git a/src/IconMusicCastRoundedFilled.tsx b/src/IconMusicCastRoundedFilled.tsx index 3d6047562..7d235c2b2 100644 --- a/src/IconMusicCastRoundedFilled.tsx +++ b/src/IconMusicCastRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconMusicCastRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconMusicCastRoundedFilled as default } +export default IconMusicCastRoundedFilled diff --git a/src/IconMusicCastSharp.tsx b/src/IconMusicCastSharp.tsx index 3d46e66cb..4f3a610af 100644 --- a/src/IconMusicCastSharp.tsx +++ b/src/IconMusicCastSharp.tsx @@ -8,4 +8,4 @@ const IconMusicCastSharp: React.FC = ({ ...props }) => ( ) -export { IconMusicCastSharp as default } +export default IconMusicCastSharp diff --git a/src/IconMusicCastSharpFilled.tsx b/src/IconMusicCastSharpFilled.tsx index 07d6ffc49..b9305cbec 100644 --- a/src/IconMusicCastSharpFilled.tsx +++ b/src/IconMusicCastSharpFilled.tsx @@ -8,4 +8,4 @@ const IconMusicCastSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconMusicCastSharpFilled as default } +export default IconMusicCastSharpFilled diff --git a/src/IconMusicNoteOutlined.tsx b/src/IconMusicNoteOutlined.tsx index d8670165f..17a02bf02 100644 --- a/src/IconMusicNoteOutlined.tsx +++ b/src/IconMusicNoteOutlined.tsx @@ -8,4 +8,4 @@ const IconMusicNoteOutlined: React.FC = ({ ...props }) => ( ) -export { IconMusicNoteOutlined as default } +export default IconMusicNoteOutlined diff --git a/src/IconMusicNoteOutlinedFilled.tsx b/src/IconMusicNoteOutlinedFilled.tsx index ffd86f775..0918f3880 100644 --- a/src/IconMusicNoteOutlinedFilled.tsx +++ b/src/IconMusicNoteOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconMusicNoteOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconMusicNoteOutlinedFilled as default } +export default IconMusicNoteOutlinedFilled diff --git a/src/IconMusicNoteRounded.tsx b/src/IconMusicNoteRounded.tsx index ef3d85147..f6410ee4c 100644 --- a/src/IconMusicNoteRounded.tsx +++ b/src/IconMusicNoteRounded.tsx @@ -8,4 +8,4 @@ const IconMusicNoteRounded: React.FC = ({ ...props }) => ( ) -export { IconMusicNoteRounded as default } +export default IconMusicNoteRounded diff --git a/src/IconMusicNoteRoundedFilled.tsx b/src/IconMusicNoteRoundedFilled.tsx index f37c48a77..2db1dc4aa 100644 --- a/src/IconMusicNoteRoundedFilled.tsx +++ b/src/IconMusicNoteRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconMusicNoteRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconMusicNoteRoundedFilled as default } +export default IconMusicNoteRoundedFilled diff --git a/src/IconMusicNoteSharp.tsx b/src/IconMusicNoteSharp.tsx index d0953b5be..8d1cdd0e9 100644 --- a/src/IconMusicNoteSharp.tsx +++ b/src/IconMusicNoteSharp.tsx @@ -8,4 +8,4 @@ const IconMusicNoteSharp: React.FC = ({ ...props }) => ( ) -export { IconMusicNoteSharp as default } +export default IconMusicNoteSharp diff --git a/src/IconMusicNoteSharpFilled.tsx b/src/IconMusicNoteSharpFilled.tsx index a600245d9..9a66cbc78 100644 --- a/src/IconMusicNoteSharpFilled.tsx +++ b/src/IconMusicNoteSharpFilled.tsx @@ -8,4 +8,4 @@ const IconMusicNoteSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconMusicNoteSharpFilled as default } +export default IconMusicNoteSharpFilled diff --git a/src/IconMusicOffOutlined.tsx b/src/IconMusicOffOutlined.tsx index 456a6d588..25e4536fb 100644 --- a/src/IconMusicOffOutlined.tsx +++ b/src/IconMusicOffOutlined.tsx @@ -8,4 +8,4 @@ const IconMusicOffOutlined: React.FC = ({ ...props }) => ( ) -export { IconMusicOffOutlined as default } +export default IconMusicOffOutlined diff --git a/src/IconMusicOffOutlinedFilled.tsx b/src/IconMusicOffOutlinedFilled.tsx index bb842e5e2..2a7ac0dc1 100644 --- a/src/IconMusicOffOutlinedFilled.tsx +++ b/src/IconMusicOffOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconMusicOffOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconMusicOffOutlinedFilled as default } +export default IconMusicOffOutlinedFilled diff --git a/src/IconMusicOffRounded.tsx b/src/IconMusicOffRounded.tsx index f8c520a49..e940a5a1b 100644 --- a/src/IconMusicOffRounded.tsx +++ b/src/IconMusicOffRounded.tsx @@ -8,4 +8,4 @@ const IconMusicOffRounded: React.FC = ({ ...props }) => ( ) -export { IconMusicOffRounded as default } +export default IconMusicOffRounded diff --git a/src/IconMusicOffRoundedFilled.tsx b/src/IconMusicOffRoundedFilled.tsx index fd9476826..073636cd4 100644 --- a/src/IconMusicOffRoundedFilled.tsx +++ b/src/IconMusicOffRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconMusicOffRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconMusicOffRoundedFilled as default } +export default IconMusicOffRoundedFilled diff --git a/src/IconMusicOffSharp.tsx b/src/IconMusicOffSharp.tsx index b657b4c38..d1be99a09 100644 --- a/src/IconMusicOffSharp.tsx +++ b/src/IconMusicOffSharp.tsx @@ -8,4 +8,4 @@ const IconMusicOffSharp: React.FC = ({ ...props }) => ( ) -export { IconMusicOffSharp as default } +export default IconMusicOffSharp diff --git a/src/IconMusicOffSharpFilled.tsx b/src/IconMusicOffSharpFilled.tsx index 271086324..2f4811aae 100644 --- a/src/IconMusicOffSharpFilled.tsx +++ b/src/IconMusicOffSharpFilled.tsx @@ -8,4 +8,4 @@ const IconMusicOffSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconMusicOffSharpFilled as default } +export default IconMusicOffSharpFilled diff --git a/src/IconMusicVideoOutlined.tsx b/src/IconMusicVideoOutlined.tsx index c29bbe795..2512e0504 100644 --- a/src/IconMusicVideoOutlined.tsx +++ b/src/IconMusicVideoOutlined.tsx @@ -8,4 +8,4 @@ const IconMusicVideoOutlined: React.FC = ({ ...props }) => ( ) -export { IconMusicVideoOutlined as default } +export default IconMusicVideoOutlined diff --git a/src/IconMusicVideoOutlinedFilled.tsx b/src/IconMusicVideoOutlinedFilled.tsx index 2dbfadd44..b1fde23d2 100644 --- a/src/IconMusicVideoOutlinedFilled.tsx +++ b/src/IconMusicVideoOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconMusicVideoOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconMusicVideoOutlinedFilled as default } +export default IconMusicVideoOutlinedFilled diff --git a/src/IconMusicVideoRounded.tsx b/src/IconMusicVideoRounded.tsx index c523023db..06f035d6e 100644 --- a/src/IconMusicVideoRounded.tsx +++ b/src/IconMusicVideoRounded.tsx @@ -8,4 +8,4 @@ const IconMusicVideoRounded: React.FC = ({ ...props }) => ( ) -export { IconMusicVideoRounded as default } +export default IconMusicVideoRounded diff --git a/src/IconMusicVideoRoundedFilled.tsx b/src/IconMusicVideoRoundedFilled.tsx index c36c8ca9b..4ccac5854 100644 --- a/src/IconMusicVideoRoundedFilled.tsx +++ b/src/IconMusicVideoRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconMusicVideoRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconMusicVideoRoundedFilled as default } +export default IconMusicVideoRoundedFilled diff --git a/src/IconMusicVideoSharp.tsx b/src/IconMusicVideoSharp.tsx index 862282e5f..7484e40d0 100644 --- a/src/IconMusicVideoSharp.tsx +++ b/src/IconMusicVideoSharp.tsx @@ -8,4 +8,4 @@ const IconMusicVideoSharp: React.FC = ({ ...props }) => ( ) -export { IconMusicVideoSharp as default } +export default IconMusicVideoSharp diff --git a/src/IconMusicVideoSharpFilled.tsx b/src/IconMusicVideoSharpFilled.tsx index 6276e77d6..3e7fbc86a 100644 --- a/src/IconMusicVideoSharpFilled.tsx +++ b/src/IconMusicVideoSharpFilled.tsx @@ -8,4 +8,4 @@ const IconMusicVideoSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconMusicVideoSharpFilled as default } +export default IconMusicVideoSharpFilled diff --git a/src/IconMyLocationOutlined.tsx b/src/IconMyLocationOutlined.tsx index 808cdbcb4..968f48bcb 100644 --- a/src/IconMyLocationOutlined.tsx +++ b/src/IconMyLocationOutlined.tsx @@ -8,4 +8,4 @@ const IconMyLocationOutlined: React.FC = ({ ...props }) => ( ) -export { IconMyLocationOutlined as default } +export default IconMyLocationOutlined diff --git a/src/IconMyLocationOutlinedFilled.tsx b/src/IconMyLocationOutlinedFilled.tsx index 5a7f22386..c2f7df847 100644 --- a/src/IconMyLocationOutlinedFilled.tsx +++ b/src/IconMyLocationOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconMyLocationOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconMyLocationOutlinedFilled as default } +export default IconMyLocationOutlinedFilled diff --git a/src/IconMyLocationRounded.tsx b/src/IconMyLocationRounded.tsx index 801e0b762..4081a8c40 100644 --- a/src/IconMyLocationRounded.tsx +++ b/src/IconMyLocationRounded.tsx @@ -8,4 +8,4 @@ const IconMyLocationRounded: React.FC = ({ ...props }) => ( ) -export { IconMyLocationRounded as default } +export default IconMyLocationRounded diff --git a/src/IconMyLocationRoundedFilled.tsx b/src/IconMyLocationRoundedFilled.tsx index f15e16fa2..85d5abc64 100644 --- a/src/IconMyLocationRoundedFilled.tsx +++ b/src/IconMyLocationRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconMyLocationRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconMyLocationRoundedFilled as default } +export default IconMyLocationRoundedFilled diff --git a/src/IconMyLocationSharp.tsx b/src/IconMyLocationSharp.tsx index 06fd7ae3a..c60a12c26 100644 --- a/src/IconMyLocationSharp.tsx +++ b/src/IconMyLocationSharp.tsx @@ -8,4 +8,4 @@ const IconMyLocationSharp: React.FC = ({ ...props }) => ( ) -export { IconMyLocationSharp as default } +export default IconMyLocationSharp diff --git a/src/IconMyLocationSharpFilled.tsx b/src/IconMyLocationSharpFilled.tsx index cf1656312..f0a064b61 100644 --- a/src/IconMyLocationSharpFilled.tsx +++ b/src/IconMyLocationSharpFilled.tsx @@ -8,4 +8,4 @@ const IconMyLocationSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconMyLocationSharpFilled as default } +export default IconMyLocationSharpFilled diff --git a/src/IconMysteryOutlined.tsx b/src/IconMysteryOutlined.tsx index b7968a2d2..f0c09ca0b 100644 --- a/src/IconMysteryOutlined.tsx +++ b/src/IconMysteryOutlined.tsx @@ -8,4 +8,4 @@ const IconMysteryOutlined: React.FC = ({ ...props }) => ( ) -export { IconMysteryOutlined as default } +export default IconMysteryOutlined diff --git a/src/IconMysteryOutlinedFilled.tsx b/src/IconMysteryOutlinedFilled.tsx index 28106f23a..e05d6b6ef 100644 --- a/src/IconMysteryOutlinedFilled.tsx +++ b/src/IconMysteryOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconMysteryOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconMysteryOutlinedFilled as default } +export default IconMysteryOutlinedFilled diff --git a/src/IconMysteryRounded.tsx b/src/IconMysteryRounded.tsx index b85a36aba..0b4a7eeca 100644 --- a/src/IconMysteryRounded.tsx +++ b/src/IconMysteryRounded.tsx @@ -8,4 +8,4 @@ const IconMysteryRounded: React.FC = ({ ...props }) => ( ) -export { IconMysteryRounded as default } +export default IconMysteryRounded diff --git a/src/IconMysteryRoundedFilled.tsx b/src/IconMysteryRoundedFilled.tsx index 99b10d084..3be17ebb6 100644 --- a/src/IconMysteryRoundedFilled.tsx +++ b/src/IconMysteryRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconMysteryRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconMysteryRoundedFilled as default } +export default IconMysteryRoundedFilled diff --git a/src/IconMysterySharp.tsx b/src/IconMysterySharp.tsx index 1e7cadd3a..46c8e3086 100644 --- a/src/IconMysterySharp.tsx +++ b/src/IconMysterySharp.tsx @@ -8,4 +8,4 @@ const IconMysterySharp: React.FC = ({ ...props }) => ( ) -export { IconMysterySharp as default } +export default IconMysterySharp diff --git a/src/IconMysterySharpFilled.tsx b/src/IconMysterySharpFilled.tsx index 57e13f3d8..b4d6375bd 100644 --- a/src/IconMysterySharpFilled.tsx +++ b/src/IconMysterySharpFilled.tsx @@ -8,4 +8,4 @@ const IconMysterySharpFilled: React.FC = ({ ...props }) => ( ) -export { IconMysterySharpFilled as default } +export default IconMysterySharpFilled diff --git a/src/IconNatOutlined.tsx b/src/IconNatOutlined.tsx index 29884fe8b..61a0717d8 100644 --- a/src/IconNatOutlined.tsx +++ b/src/IconNatOutlined.tsx @@ -8,4 +8,4 @@ const IconNatOutlined: React.FC = ({ ...props }) => ( ) -export { IconNatOutlined as default } +export default IconNatOutlined diff --git a/src/IconNatOutlinedFilled.tsx b/src/IconNatOutlinedFilled.tsx index e99daf15f..c84d9adaa 100644 --- a/src/IconNatOutlinedFilled.tsx +++ b/src/IconNatOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconNatOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconNatOutlinedFilled as default } +export default IconNatOutlinedFilled diff --git a/src/IconNatRounded.tsx b/src/IconNatRounded.tsx index b0f2fa664..5f5850778 100644 --- a/src/IconNatRounded.tsx +++ b/src/IconNatRounded.tsx @@ -8,4 +8,4 @@ const IconNatRounded: React.FC = ({ ...props }) => ( ) -export { IconNatRounded as default } +export default IconNatRounded diff --git a/src/IconNatRoundedFilled.tsx b/src/IconNatRoundedFilled.tsx index 2a47c2314..461338713 100644 --- a/src/IconNatRoundedFilled.tsx +++ b/src/IconNatRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconNatRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconNatRoundedFilled as default } +export default IconNatRoundedFilled diff --git a/src/IconNatSharp.tsx b/src/IconNatSharp.tsx index adc0a27ee..8a34b9be8 100644 --- a/src/IconNatSharp.tsx +++ b/src/IconNatSharp.tsx @@ -8,4 +8,4 @@ const IconNatSharp: React.FC = ({ ...props }) => ( ) -export { IconNatSharp as default } +export default IconNatSharp diff --git a/src/IconNatSharpFilled.tsx b/src/IconNatSharpFilled.tsx index 3dfd41a5a..cfb785c13 100644 --- a/src/IconNatSharpFilled.tsx +++ b/src/IconNatSharpFilled.tsx @@ -8,4 +8,4 @@ const IconNatSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconNatSharpFilled as default } +export default IconNatSharpFilled diff --git a/src/IconNatureOutlined.tsx b/src/IconNatureOutlined.tsx index 1f99b1c2e..e16641942 100644 --- a/src/IconNatureOutlined.tsx +++ b/src/IconNatureOutlined.tsx @@ -8,4 +8,4 @@ const IconNatureOutlined: React.FC = ({ ...props }) => ( ) -export { IconNatureOutlined as default } +export default IconNatureOutlined diff --git a/src/IconNatureOutlinedFilled.tsx b/src/IconNatureOutlinedFilled.tsx index 96dc8a1f9..7b79ee335 100644 --- a/src/IconNatureOutlinedFilled.tsx +++ b/src/IconNatureOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconNatureOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconNatureOutlinedFilled as default } +export default IconNatureOutlinedFilled diff --git a/src/IconNaturePeopleOutlined.tsx b/src/IconNaturePeopleOutlined.tsx index af4bfa725..363aa6b46 100644 --- a/src/IconNaturePeopleOutlined.tsx +++ b/src/IconNaturePeopleOutlined.tsx @@ -8,4 +8,4 @@ const IconNaturePeopleOutlined: React.FC = ({ ...props }) => ( ) -export { IconNaturePeopleOutlined as default } +export default IconNaturePeopleOutlined diff --git a/src/IconNaturePeopleOutlinedFilled.tsx b/src/IconNaturePeopleOutlinedFilled.tsx index a0edb5e99..82e4be9da 100644 --- a/src/IconNaturePeopleOutlinedFilled.tsx +++ b/src/IconNaturePeopleOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconNaturePeopleOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconNaturePeopleOutlinedFilled as default } +export default IconNaturePeopleOutlinedFilled diff --git a/src/IconNaturePeopleRounded.tsx b/src/IconNaturePeopleRounded.tsx index d8551b815..044292ace 100644 --- a/src/IconNaturePeopleRounded.tsx +++ b/src/IconNaturePeopleRounded.tsx @@ -8,4 +8,4 @@ const IconNaturePeopleRounded: React.FC = ({ ...props }) => ( ) -export { IconNaturePeopleRounded as default } +export default IconNaturePeopleRounded diff --git a/src/IconNaturePeopleRoundedFilled.tsx b/src/IconNaturePeopleRoundedFilled.tsx index facb9e222..28cae2449 100644 --- a/src/IconNaturePeopleRoundedFilled.tsx +++ b/src/IconNaturePeopleRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconNaturePeopleRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconNaturePeopleRoundedFilled as default } +export default IconNaturePeopleRoundedFilled diff --git a/src/IconNaturePeopleSharp.tsx b/src/IconNaturePeopleSharp.tsx index d0fcc643f..a779e8915 100644 --- a/src/IconNaturePeopleSharp.tsx +++ b/src/IconNaturePeopleSharp.tsx @@ -8,4 +8,4 @@ const IconNaturePeopleSharp: React.FC = ({ ...props }) => ( ) -export { IconNaturePeopleSharp as default } +export default IconNaturePeopleSharp diff --git a/src/IconNaturePeopleSharpFilled.tsx b/src/IconNaturePeopleSharpFilled.tsx index 84af4fe5b..ab11e99e9 100644 --- a/src/IconNaturePeopleSharpFilled.tsx +++ b/src/IconNaturePeopleSharpFilled.tsx @@ -8,4 +8,4 @@ const IconNaturePeopleSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconNaturePeopleSharpFilled as default } +export default IconNaturePeopleSharpFilled diff --git a/src/IconNatureRounded.tsx b/src/IconNatureRounded.tsx index 8ba5a9dcc..e1a19a660 100644 --- a/src/IconNatureRounded.tsx +++ b/src/IconNatureRounded.tsx @@ -8,4 +8,4 @@ const IconNatureRounded: React.FC = ({ ...props }) => ( ) -export { IconNatureRounded as default } +export default IconNatureRounded diff --git a/src/IconNatureRoundedFilled.tsx b/src/IconNatureRoundedFilled.tsx index 7dddff9fa..1f423af8a 100644 --- a/src/IconNatureRoundedFilled.tsx +++ b/src/IconNatureRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconNatureRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconNatureRoundedFilled as default } +export default IconNatureRoundedFilled diff --git a/src/IconNatureSharp.tsx b/src/IconNatureSharp.tsx index 232df252d..18c14098a 100644 --- a/src/IconNatureSharp.tsx +++ b/src/IconNatureSharp.tsx @@ -8,4 +8,4 @@ const IconNatureSharp: React.FC = ({ ...props }) => ( ) -export { IconNatureSharp as default } +export default IconNatureSharp diff --git a/src/IconNatureSharpFilled.tsx b/src/IconNatureSharpFilled.tsx index 930b137c7..f1c7fc3d9 100644 --- a/src/IconNatureSharpFilled.tsx +++ b/src/IconNatureSharpFilled.tsx @@ -8,4 +8,4 @@ const IconNatureSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconNatureSharpFilled as default } +export default IconNatureSharpFilled diff --git a/src/IconNavigationOutlined.tsx b/src/IconNavigationOutlined.tsx index 926d910db..9c4764976 100644 --- a/src/IconNavigationOutlined.tsx +++ b/src/IconNavigationOutlined.tsx @@ -8,4 +8,4 @@ const IconNavigationOutlined: React.FC = ({ ...props }) => ( ) -export { IconNavigationOutlined as default } +export default IconNavigationOutlined diff --git a/src/IconNavigationOutlinedFilled.tsx b/src/IconNavigationOutlinedFilled.tsx index 4816892e4..d286c7677 100644 --- a/src/IconNavigationOutlinedFilled.tsx +++ b/src/IconNavigationOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconNavigationOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconNavigationOutlinedFilled as default } +export default IconNavigationOutlinedFilled diff --git a/src/IconNavigationRounded.tsx b/src/IconNavigationRounded.tsx index 010431790..7aadd33f6 100644 --- a/src/IconNavigationRounded.tsx +++ b/src/IconNavigationRounded.tsx @@ -8,4 +8,4 @@ const IconNavigationRounded: React.FC = ({ ...props }) => ( ) -export { IconNavigationRounded as default } +export default IconNavigationRounded diff --git a/src/IconNavigationRoundedFilled.tsx b/src/IconNavigationRoundedFilled.tsx index e63f3b664..1d767f12f 100644 --- a/src/IconNavigationRoundedFilled.tsx +++ b/src/IconNavigationRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconNavigationRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconNavigationRoundedFilled as default } +export default IconNavigationRoundedFilled diff --git a/src/IconNavigationSharp.tsx b/src/IconNavigationSharp.tsx index 046870291..2348b0f98 100644 --- a/src/IconNavigationSharp.tsx +++ b/src/IconNavigationSharp.tsx @@ -8,4 +8,4 @@ const IconNavigationSharp: React.FC = ({ ...props }) => ( ) -export { IconNavigationSharp as default } +export default IconNavigationSharp diff --git a/src/IconNavigationSharpFilled.tsx b/src/IconNavigationSharpFilled.tsx index e5dbacd3e..23d3c6360 100644 --- a/src/IconNavigationSharpFilled.tsx +++ b/src/IconNavigationSharpFilled.tsx @@ -8,4 +8,4 @@ const IconNavigationSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconNavigationSharpFilled as default } +export default IconNavigationSharpFilled diff --git a/src/IconNearMeDisabledOutlined.tsx b/src/IconNearMeDisabledOutlined.tsx index 17d23c546..7299b9c80 100644 --- a/src/IconNearMeDisabledOutlined.tsx +++ b/src/IconNearMeDisabledOutlined.tsx @@ -8,4 +8,4 @@ const IconNearMeDisabledOutlined: React.FC = ({ ...props }) => ( ) -export { IconNearMeDisabledOutlined as default } +export default IconNearMeDisabledOutlined diff --git a/src/IconNearMeDisabledOutlinedFilled.tsx b/src/IconNearMeDisabledOutlinedFilled.tsx index a9efbf07c..54aa37e84 100644 --- a/src/IconNearMeDisabledOutlinedFilled.tsx +++ b/src/IconNearMeDisabledOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconNearMeDisabledOutlinedFilled: React.FC = ({ ) -export { IconNearMeDisabledOutlinedFilled as default } +export default IconNearMeDisabledOutlinedFilled diff --git a/src/IconNearMeDisabledRounded.tsx b/src/IconNearMeDisabledRounded.tsx index 872f5e2c8..513599812 100644 --- a/src/IconNearMeDisabledRounded.tsx +++ b/src/IconNearMeDisabledRounded.tsx @@ -8,4 +8,4 @@ const IconNearMeDisabledRounded: React.FC = ({ ...props }) => ( ) -export { IconNearMeDisabledRounded as default } +export default IconNearMeDisabledRounded diff --git a/src/IconNearMeDisabledRoundedFilled.tsx b/src/IconNearMeDisabledRoundedFilled.tsx index 2842d441e..052055843 100644 --- a/src/IconNearMeDisabledRoundedFilled.tsx +++ b/src/IconNearMeDisabledRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconNearMeDisabledRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconNearMeDisabledRoundedFilled as default } +export default IconNearMeDisabledRoundedFilled diff --git a/src/IconNearMeDisabledSharp.tsx b/src/IconNearMeDisabledSharp.tsx index be9c0bed7..7a1ae0dce 100644 --- a/src/IconNearMeDisabledSharp.tsx +++ b/src/IconNearMeDisabledSharp.tsx @@ -8,4 +8,4 @@ const IconNearMeDisabledSharp: React.FC = ({ ...props }) => ( ) -export { IconNearMeDisabledSharp as default } +export default IconNearMeDisabledSharp diff --git a/src/IconNearMeDisabledSharpFilled.tsx b/src/IconNearMeDisabledSharpFilled.tsx index f77dfd6ca..3975b5247 100644 --- a/src/IconNearMeDisabledSharpFilled.tsx +++ b/src/IconNearMeDisabledSharpFilled.tsx @@ -8,4 +8,4 @@ const IconNearMeDisabledSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconNearMeDisabledSharpFilled as default } +export default IconNearMeDisabledSharpFilled diff --git a/src/IconNearMeOutlined.tsx b/src/IconNearMeOutlined.tsx index e676f5fb8..3038b561a 100644 --- a/src/IconNearMeOutlined.tsx +++ b/src/IconNearMeOutlined.tsx @@ -8,4 +8,4 @@ const IconNearMeOutlined: React.FC = ({ ...props }) => ( ) -export { IconNearMeOutlined as default } +export default IconNearMeOutlined diff --git a/src/IconNearMeOutlinedFilled.tsx b/src/IconNearMeOutlinedFilled.tsx index 8a27b3734..e0ff1cf2c 100644 --- a/src/IconNearMeOutlinedFilled.tsx +++ b/src/IconNearMeOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconNearMeOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconNearMeOutlinedFilled as default } +export default IconNearMeOutlinedFilled diff --git a/src/IconNearMeRounded.tsx b/src/IconNearMeRounded.tsx index 718c58a9a..68229dd3e 100644 --- a/src/IconNearMeRounded.tsx +++ b/src/IconNearMeRounded.tsx @@ -8,4 +8,4 @@ const IconNearMeRounded: React.FC = ({ ...props }) => ( ) -export { IconNearMeRounded as default } +export default IconNearMeRounded diff --git a/src/IconNearMeRoundedFilled.tsx b/src/IconNearMeRoundedFilled.tsx index 7c57c6ba1..a5f451c9e 100644 --- a/src/IconNearMeRoundedFilled.tsx +++ b/src/IconNearMeRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconNearMeRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconNearMeRoundedFilled as default } +export default IconNearMeRoundedFilled diff --git a/src/IconNearMeSharp.tsx b/src/IconNearMeSharp.tsx index 25cb75de1..643f97cb6 100644 --- a/src/IconNearMeSharp.tsx +++ b/src/IconNearMeSharp.tsx @@ -8,4 +8,4 @@ const IconNearMeSharp: React.FC = ({ ...props }) => ( ) -export { IconNearMeSharp as default } +export default IconNearMeSharp diff --git a/src/IconNearMeSharpFilled.tsx b/src/IconNearMeSharpFilled.tsx index 02dbb5e01..980146fc2 100644 --- a/src/IconNearMeSharpFilled.tsx +++ b/src/IconNearMeSharpFilled.tsx @@ -8,4 +8,4 @@ const IconNearMeSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconNearMeSharpFilled as default } +export default IconNearMeSharpFilled diff --git a/src/IconNearbyErrorOutlined.tsx b/src/IconNearbyErrorOutlined.tsx index e3ad93d80..9207d3fe8 100644 --- a/src/IconNearbyErrorOutlined.tsx +++ b/src/IconNearbyErrorOutlined.tsx @@ -8,4 +8,4 @@ const IconNearbyErrorOutlined: React.FC = ({ ...props }) => ( ) -export { IconNearbyErrorOutlined as default } +export default IconNearbyErrorOutlined diff --git a/src/IconNearbyErrorOutlinedFilled.tsx b/src/IconNearbyErrorOutlinedFilled.tsx index 533ff6e03..d77070b35 100644 --- a/src/IconNearbyErrorOutlinedFilled.tsx +++ b/src/IconNearbyErrorOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconNearbyErrorOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconNearbyErrorOutlinedFilled as default } +export default IconNearbyErrorOutlinedFilled diff --git a/src/IconNearbyErrorRounded.tsx b/src/IconNearbyErrorRounded.tsx index 3cd899d53..7e3e3deef 100644 --- a/src/IconNearbyErrorRounded.tsx +++ b/src/IconNearbyErrorRounded.tsx @@ -8,4 +8,4 @@ const IconNearbyErrorRounded: React.FC = ({ ...props }) => ( ) -export { IconNearbyErrorRounded as default } +export default IconNearbyErrorRounded diff --git a/src/IconNearbyErrorRoundedFilled.tsx b/src/IconNearbyErrorRoundedFilled.tsx index 37cbbac08..9f740fa1b 100644 --- a/src/IconNearbyErrorRoundedFilled.tsx +++ b/src/IconNearbyErrorRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconNearbyErrorRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconNearbyErrorRoundedFilled as default } +export default IconNearbyErrorRoundedFilled diff --git a/src/IconNearbyErrorSharp.tsx b/src/IconNearbyErrorSharp.tsx index c1be39ec5..a3286c257 100644 --- a/src/IconNearbyErrorSharp.tsx +++ b/src/IconNearbyErrorSharp.tsx @@ -8,4 +8,4 @@ const IconNearbyErrorSharp: React.FC = ({ ...props }) => ( ) -export { IconNearbyErrorSharp as default } +export default IconNearbyErrorSharp diff --git a/src/IconNearbyErrorSharpFilled.tsx b/src/IconNearbyErrorSharpFilled.tsx index 5b15eb36e..44897ef0e 100644 --- a/src/IconNearbyErrorSharpFilled.tsx +++ b/src/IconNearbyErrorSharpFilled.tsx @@ -8,4 +8,4 @@ const IconNearbyErrorSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconNearbyErrorSharpFilled as default } +export default IconNearbyErrorSharpFilled diff --git a/src/IconNearbyOffOutlined.tsx b/src/IconNearbyOffOutlined.tsx index 45dbeb93f..d628a96b2 100644 --- a/src/IconNearbyOffOutlined.tsx +++ b/src/IconNearbyOffOutlined.tsx @@ -8,4 +8,4 @@ const IconNearbyOffOutlined: React.FC = ({ ...props }) => ( ) -export { IconNearbyOffOutlined as default } +export default IconNearbyOffOutlined diff --git a/src/IconNearbyOffOutlinedFilled.tsx b/src/IconNearbyOffOutlinedFilled.tsx index 864acd09e..70d9e48e0 100644 --- a/src/IconNearbyOffOutlinedFilled.tsx +++ b/src/IconNearbyOffOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconNearbyOffOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconNearbyOffOutlinedFilled as default } +export default IconNearbyOffOutlinedFilled diff --git a/src/IconNearbyOffRounded.tsx b/src/IconNearbyOffRounded.tsx index 67c29a8e7..fecfd0956 100644 --- a/src/IconNearbyOffRounded.tsx +++ b/src/IconNearbyOffRounded.tsx @@ -8,4 +8,4 @@ const IconNearbyOffRounded: React.FC = ({ ...props }) => ( ) -export { IconNearbyOffRounded as default } +export default IconNearbyOffRounded diff --git a/src/IconNearbyOffRoundedFilled.tsx b/src/IconNearbyOffRoundedFilled.tsx index 9823989f8..c4fd4e2bc 100644 --- a/src/IconNearbyOffRoundedFilled.tsx +++ b/src/IconNearbyOffRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconNearbyOffRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconNearbyOffRoundedFilled as default } +export default IconNearbyOffRoundedFilled diff --git a/src/IconNearbyOffSharp.tsx b/src/IconNearbyOffSharp.tsx index 875b6218a..7e90f65fa 100644 --- a/src/IconNearbyOffSharp.tsx +++ b/src/IconNearbyOffSharp.tsx @@ -8,4 +8,4 @@ const IconNearbyOffSharp: React.FC = ({ ...props }) => ( ) -export { IconNearbyOffSharp as default } +export default IconNearbyOffSharp diff --git a/src/IconNearbyOffSharpFilled.tsx b/src/IconNearbyOffSharpFilled.tsx index be453efb6..9ff6fde7c 100644 --- a/src/IconNearbyOffSharpFilled.tsx +++ b/src/IconNearbyOffSharpFilled.tsx @@ -8,4 +8,4 @@ const IconNearbyOffSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconNearbyOffSharpFilled as default } +export default IconNearbyOffSharpFilled diff --git a/src/IconNearbyOutlined.tsx b/src/IconNearbyOutlined.tsx index e2378d338..80448922b 100644 --- a/src/IconNearbyOutlined.tsx +++ b/src/IconNearbyOutlined.tsx @@ -8,4 +8,4 @@ const IconNearbyOutlined: React.FC = ({ ...props }) => ( ) -export { IconNearbyOutlined as default } +export default IconNearbyOutlined diff --git a/src/IconNearbyOutlinedFilled.tsx b/src/IconNearbyOutlinedFilled.tsx index 7aa457e19..3ee485be0 100644 --- a/src/IconNearbyOutlinedFilled.tsx +++ b/src/IconNearbyOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconNearbyOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconNearbyOutlinedFilled as default } +export default IconNearbyOutlinedFilled diff --git a/src/IconNearbyRounded.tsx b/src/IconNearbyRounded.tsx index a242a1c5d..e5d974022 100644 --- a/src/IconNearbyRounded.tsx +++ b/src/IconNearbyRounded.tsx @@ -8,4 +8,4 @@ const IconNearbyRounded: React.FC = ({ ...props }) => ( ) -export { IconNearbyRounded as default } +export default IconNearbyRounded diff --git a/src/IconNearbyRoundedFilled.tsx b/src/IconNearbyRoundedFilled.tsx index d6cbb12d6..987b92ac0 100644 --- a/src/IconNearbyRoundedFilled.tsx +++ b/src/IconNearbyRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconNearbyRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconNearbyRoundedFilled as default } +export default IconNearbyRoundedFilled diff --git a/src/IconNearbySharp.tsx b/src/IconNearbySharp.tsx index 2f2dd9c92..cf59e0a94 100644 --- a/src/IconNearbySharp.tsx +++ b/src/IconNearbySharp.tsx @@ -8,4 +8,4 @@ const IconNearbySharp: React.FC = ({ ...props }) => ( ) -export { IconNearbySharp as default } +export default IconNearbySharp diff --git a/src/IconNearbySharpFilled.tsx b/src/IconNearbySharpFilled.tsx index f582cad4b..28b6c9594 100644 --- a/src/IconNearbySharpFilled.tsx +++ b/src/IconNearbySharpFilled.tsx @@ -8,4 +8,4 @@ const IconNearbySharpFilled: React.FC = ({ ...props }) => ( ) -export { IconNearbySharpFilled as default } +export default IconNearbySharpFilled diff --git a/src/IconNephrologyOutlined.tsx b/src/IconNephrologyOutlined.tsx index 713ce876d..db07e4bdf 100644 --- a/src/IconNephrologyOutlined.tsx +++ b/src/IconNephrologyOutlined.tsx @@ -8,4 +8,4 @@ const IconNephrologyOutlined: React.FC = ({ ...props }) => ( ) -export { IconNephrologyOutlined as default } +export default IconNephrologyOutlined diff --git a/src/IconNephrologyOutlinedFilled.tsx b/src/IconNephrologyOutlinedFilled.tsx index 9d37a66db..07cfd4e11 100644 --- a/src/IconNephrologyOutlinedFilled.tsx +++ b/src/IconNephrologyOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconNephrologyOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconNephrologyOutlinedFilled as default } +export default IconNephrologyOutlinedFilled diff --git a/src/IconNephrologyRounded.tsx b/src/IconNephrologyRounded.tsx index d5ea7e010..9fde626ca 100644 --- a/src/IconNephrologyRounded.tsx +++ b/src/IconNephrologyRounded.tsx @@ -8,4 +8,4 @@ const IconNephrologyRounded: React.FC = ({ ...props }) => ( ) -export { IconNephrologyRounded as default } +export default IconNephrologyRounded diff --git a/src/IconNephrologyRoundedFilled.tsx b/src/IconNephrologyRoundedFilled.tsx index 405386628..5d7a03cdb 100644 --- a/src/IconNephrologyRoundedFilled.tsx +++ b/src/IconNephrologyRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconNephrologyRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconNephrologyRoundedFilled as default } +export default IconNephrologyRoundedFilled diff --git a/src/IconNephrologySharp.tsx b/src/IconNephrologySharp.tsx index c9f7a20d5..411a0f23c 100644 --- a/src/IconNephrologySharp.tsx +++ b/src/IconNephrologySharp.tsx @@ -8,4 +8,4 @@ const IconNephrologySharp: React.FC = ({ ...props }) => ( ) -export { IconNephrologySharp as default } +export default IconNephrologySharp diff --git a/src/IconNephrologySharpFilled.tsx b/src/IconNephrologySharpFilled.tsx index eac7d5a06..d244de38a 100644 --- a/src/IconNephrologySharpFilled.tsx +++ b/src/IconNephrologySharpFilled.tsx @@ -8,4 +8,4 @@ const IconNephrologySharpFilled: React.FC = ({ ...props }) => ( ) -export { IconNephrologySharpFilled as default } +export default IconNephrologySharpFilled diff --git a/src/IconNestAudioOutlined.tsx b/src/IconNestAudioOutlined.tsx index e4c9fb1d6..87027ed4d 100644 --- a/src/IconNestAudioOutlined.tsx +++ b/src/IconNestAudioOutlined.tsx @@ -8,4 +8,4 @@ const IconNestAudioOutlined: React.FC = ({ ...props }) => ( ) -export { IconNestAudioOutlined as default } +export default IconNestAudioOutlined diff --git a/src/IconNestAudioOutlinedFilled.tsx b/src/IconNestAudioOutlinedFilled.tsx index 742d1bfd8..5a062e652 100644 --- a/src/IconNestAudioOutlinedFilled.tsx +++ b/src/IconNestAudioOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconNestAudioOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconNestAudioOutlinedFilled as default } +export default IconNestAudioOutlinedFilled diff --git a/src/IconNestAudioRounded.tsx b/src/IconNestAudioRounded.tsx index c54ada221..489d7df9a 100644 --- a/src/IconNestAudioRounded.tsx +++ b/src/IconNestAudioRounded.tsx @@ -8,4 +8,4 @@ const IconNestAudioRounded: React.FC = ({ ...props }) => ( ) -export { IconNestAudioRounded as default } +export default IconNestAudioRounded diff --git a/src/IconNestAudioRoundedFilled.tsx b/src/IconNestAudioRoundedFilled.tsx index 81852509a..e34e0b68d 100644 --- a/src/IconNestAudioRoundedFilled.tsx +++ b/src/IconNestAudioRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconNestAudioRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconNestAudioRoundedFilled as default } +export default IconNestAudioRoundedFilled diff --git a/src/IconNestAudioSharp.tsx b/src/IconNestAudioSharp.tsx index 79e26cc5f..32ce27434 100644 --- a/src/IconNestAudioSharp.tsx +++ b/src/IconNestAudioSharp.tsx @@ -8,4 +8,4 @@ const IconNestAudioSharp: React.FC = ({ ...props }) => ( ) -export { IconNestAudioSharp as default } +export default IconNestAudioSharp diff --git a/src/IconNestAudioSharpFilled.tsx b/src/IconNestAudioSharpFilled.tsx index e125c279a..8b6150fa4 100644 --- a/src/IconNestAudioSharpFilled.tsx +++ b/src/IconNestAudioSharpFilled.tsx @@ -8,4 +8,4 @@ const IconNestAudioSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconNestAudioSharpFilled as default } +export default IconNestAudioSharpFilled diff --git a/src/IconNestCamFloodlightOutlined.tsx b/src/IconNestCamFloodlightOutlined.tsx index a9e3f62d4..59a7accc2 100644 --- a/src/IconNestCamFloodlightOutlined.tsx +++ b/src/IconNestCamFloodlightOutlined.tsx @@ -8,4 +8,4 @@ const IconNestCamFloodlightOutlined: React.FC = ({ ...props }) => ( ) -export { IconNestCamFloodlightOutlined as default } +export default IconNestCamFloodlightOutlined diff --git a/src/IconNestCamFloodlightOutlinedFilled.tsx b/src/IconNestCamFloodlightOutlinedFilled.tsx index eda29ac0e..28bb9f4c2 100644 --- a/src/IconNestCamFloodlightOutlinedFilled.tsx +++ b/src/IconNestCamFloodlightOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconNestCamFloodlightOutlinedFilled: React.FC = ({ ) -export { IconNestCamFloodlightOutlinedFilled as default } +export default IconNestCamFloodlightOutlinedFilled diff --git a/src/IconNestCamFloodlightRounded.tsx b/src/IconNestCamFloodlightRounded.tsx index 7eba8f2ae..ad4f29020 100644 --- a/src/IconNestCamFloodlightRounded.tsx +++ b/src/IconNestCamFloodlightRounded.tsx @@ -8,4 +8,4 @@ const IconNestCamFloodlightRounded: React.FC = ({ ...props }) => ( ) -export { IconNestCamFloodlightRounded as default } +export default IconNestCamFloodlightRounded diff --git a/src/IconNestCamFloodlightRoundedFilled.tsx b/src/IconNestCamFloodlightRoundedFilled.tsx index 8a1530b51..3deb40b4f 100644 --- a/src/IconNestCamFloodlightRoundedFilled.tsx +++ b/src/IconNestCamFloodlightRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconNestCamFloodlightRoundedFilled: React.FC = ({ ) -export { IconNestCamFloodlightRoundedFilled as default } +export default IconNestCamFloodlightRoundedFilled diff --git a/src/IconNestCamFloodlightSharp.tsx b/src/IconNestCamFloodlightSharp.tsx index 9ea992aa8..7fc7f9390 100644 --- a/src/IconNestCamFloodlightSharp.tsx +++ b/src/IconNestCamFloodlightSharp.tsx @@ -8,4 +8,4 @@ const IconNestCamFloodlightSharp: React.FC = ({ ...props }) => ( ) -export { IconNestCamFloodlightSharp as default } +export default IconNestCamFloodlightSharp diff --git a/src/IconNestCamFloodlightSharpFilled.tsx b/src/IconNestCamFloodlightSharpFilled.tsx index a3b0bbfa3..30b1db5a4 100644 --- a/src/IconNestCamFloodlightSharpFilled.tsx +++ b/src/IconNestCamFloodlightSharpFilled.tsx @@ -10,4 +10,4 @@ const IconNestCamFloodlightSharpFilled: React.FC = ({ ) -export { IconNestCamFloodlightSharpFilled as default } +export default IconNestCamFloodlightSharpFilled diff --git a/src/IconNestCamIndoorOutlined.tsx b/src/IconNestCamIndoorOutlined.tsx index 582393419..8ea6ce047 100644 --- a/src/IconNestCamIndoorOutlined.tsx +++ b/src/IconNestCamIndoorOutlined.tsx @@ -8,4 +8,4 @@ const IconNestCamIndoorOutlined: React.FC = ({ ...props }) => ( ) -export { IconNestCamIndoorOutlined as default } +export default IconNestCamIndoorOutlined diff --git a/src/IconNestCamIndoorOutlinedFilled.tsx b/src/IconNestCamIndoorOutlinedFilled.tsx index 2c2d4270f..b1d6c411d 100644 --- a/src/IconNestCamIndoorOutlinedFilled.tsx +++ b/src/IconNestCamIndoorOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconNestCamIndoorOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconNestCamIndoorOutlinedFilled as default } +export default IconNestCamIndoorOutlinedFilled diff --git a/src/IconNestCamIndoorRounded.tsx b/src/IconNestCamIndoorRounded.tsx index d9e5bfa9d..d54e9d20f 100644 --- a/src/IconNestCamIndoorRounded.tsx +++ b/src/IconNestCamIndoorRounded.tsx @@ -8,4 +8,4 @@ const IconNestCamIndoorRounded: React.FC = ({ ...props }) => ( ) -export { IconNestCamIndoorRounded as default } +export default IconNestCamIndoorRounded diff --git a/src/IconNestCamIndoorRoundedFilled.tsx b/src/IconNestCamIndoorRoundedFilled.tsx index fa8da861f..afc9080b5 100644 --- a/src/IconNestCamIndoorRoundedFilled.tsx +++ b/src/IconNestCamIndoorRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconNestCamIndoorRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconNestCamIndoorRoundedFilled as default } +export default IconNestCamIndoorRoundedFilled diff --git a/src/IconNestCamIndoorSharp.tsx b/src/IconNestCamIndoorSharp.tsx index 4bb695fc0..61b0b507c 100644 --- a/src/IconNestCamIndoorSharp.tsx +++ b/src/IconNestCamIndoorSharp.tsx @@ -8,4 +8,4 @@ const IconNestCamIndoorSharp: React.FC = ({ ...props }) => ( ) -export { IconNestCamIndoorSharp as default } +export default IconNestCamIndoorSharp diff --git a/src/IconNestCamIndoorSharpFilled.tsx b/src/IconNestCamIndoorSharpFilled.tsx index d69963294..06bd35c6b 100644 --- a/src/IconNestCamIndoorSharpFilled.tsx +++ b/src/IconNestCamIndoorSharpFilled.tsx @@ -8,4 +8,4 @@ const IconNestCamIndoorSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconNestCamIndoorSharpFilled as default } +export default IconNestCamIndoorSharpFilled diff --git a/src/IconNestCamIqOutdoorOutlined.tsx b/src/IconNestCamIqOutdoorOutlined.tsx index 4b8d03607..3c870382f 100644 --- a/src/IconNestCamIqOutdoorOutlined.tsx +++ b/src/IconNestCamIqOutdoorOutlined.tsx @@ -8,4 +8,4 @@ const IconNestCamIqOutdoorOutlined: React.FC = ({ ...props }) => ( ) -export { IconNestCamIqOutdoorOutlined as default } +export default IconNestCamIqOutdoorOutlined diff --git a/src/IconNestCamIqOutdoorOutlinedFilled.tsx b/src/IconNestCamIqOutdoorOutlinedFilled.tsx index 661b202d0..17899151c 100644 --- a/src/IconNestCamIqOutdoorOutlinedFilled.tsx +++ b/src/IconNestCamIqOutdoorOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconNestCamIqOutdoorOutlinedFilled: React.FC = ({ ) -export { IconNestCamIqOutdoorOutlinedFilled as default } +export default IconNestCamIqOutdoorOutlinedFilled diff --git a/src/IconNestCamIqOutdoorRounded.tsx b/src/IconNestCamIqOutdoorRounded.tsx index 7d9f2d652..2848c6551 100644 --- a/src/IconNestCamIqOutdoorRounded.tsx +++ b/src/IconNestCamIqOutdoorRounded.tsx @@ -8,4 +8,4 @@ const IconNestCamIqOutdoorRounded: React.FC = ({ ...props }) => ( ) -export { IconNestCamIqOutdoorRounded as default } +export default IconNestCamIqOutdoorRounded diff --git a/src/IconNestCamIqOutdoorRoundedFilled.tsx b/src/IconNestCamIqOutdoorRoundedFilled.tsx index b25b56cbe..57b13b5ae 100644 --- a/src/IconNestCamIqOutdoorRoundedFilled.tsx +++ b/src/IconNestCamIqOutdoorRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconNestCamIqOutdoorRoundedFilled: React.FC = ({ ) -export { IconNestCamIqOutdoorRoundedFilled as default } +export default IconNestCamIqOutdoorRoundedFilled diff --git a/src/IconNestCamIqOutdoorSharp.tsx b/src/IconNestCamIqOutdoorSharp.tsx index 3739a5438..f53829f8f 100644 --- a/src/IconNestCamIqOutdoorSharp.tsx +++ b/src/IconNestCamIqOutdoorSharp.tsx @@ -8,4 +8,4 @@ const IconNestCamIqOutdoorSharp: React.FC = ({ ...props }) => ( ) -export { IconNestCamIqOutdoorSharp as default } +export default IconNestCamIqOutdoorSharp diff --git a/src/IconNestCamIqOutdoorSharpFilled.tsx b/src/IconNestCamIqOutdoorSharpFilled.tsx index 40602fc05..dbeb7e543 100644 --- a/src/IconNestCamIqOutdoorSharpFilled.tsx +++ b/src/IconNestCamIqOutdoorSharpFilled.tsx @@ -8,4 +8,4 @@ const IconNestCamIqOutdoorSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconNestCamIqOutdoorSharpFilled as default } +export default IconNestCamIqOutdoorSharpFilled diff --git a/src/IconNestCamIqOutlined.tsx b/src/IconNestCamIqOutlined.tsx index be16c1258..0c71038f1 100644 --- a/src/IconNestCamIqOutlined.tsx +++ b/src/IconNestCamIqOutlined.tsx @@ -8,4 +8,4 @@ const IconNestCamIqOutlined: React.FC = ({ ...props }) => ( ) -export { IconNestCamIqOutlined as default } +export default IconNestCamIqOutlined diff --git a/src/IconNestCamIqOutlinedFilled.tsx b/src/IconNestCamIqOutlinedFilled.tsx index 1f2fb3792..3ad7205c9 100644 --- a/src/IconNestCamIqOutlinedFilled.tsx +++ b/src/IconNestCamIqOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconNestCamIqOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconNestCamIqOutlinedFilled as default } +export default IconNestCamIqOutlinedFilled diff --git a/src/IconNestCamIqRounded.tsx b/src/IconNestCamIqRounded.tsx index b716b8dff..93b15a8c6 100644 --- a/src/IconNestCamIqRounded.tsx +++ b/src/IconNestCamIqRounded.tsx @@ -8,4 +8,4 @@ const IconNestCamIqRounded: React.FC = ({ ...props }) => ( ) -export { IconNestCamIqRounded as default } +export default IconNestCamIqRounded diff --git a/src/IconNestCamIqRoundedFilled.tsx b/src/IconNestCamIqRoundedFilled.tsx index 2abc88fc2..1218c15b5 100644 --- a/src/IconNestCamIqRoundedFilled.tsx +++ b/src/IconNestCamIqRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconNestCamIqRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconNestCamIqRoundedFilled as default } +export default IconNestCamIqRoundedFilled diff --git a/src/IconNestCamIqSharp.tsx b/src/IconNestCamIqSharp.tsx index 651c88a71..e74c6b0aa 100644 --- a/src/IconNestCamIqSharp.tsx +++ b/src/IconNestCamIqSharp.tsx @@ -8,4 +8,4 @@ const IconNestCamIqSharp: React.FC = ({ ...props }) => ( ) -export { IconNestCamIqSharp as default } +export default IconNestCamIqSharp diff --git a/src/IconNestCamIqSharpFilled.tsx b/src/IconNestCamIqSharpFilled.tsx index 894ff6da4..f6d3db432 100644 --- a/src/IconNestCamIqSharpFilled.tsx +++ b/src/IconNestCamIqSharpFilled.tsx @@ -8,4 +8,4 @@ const IconNestCamIqSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconNestCamIqSharpFilled as default } +export default IconNestCamIqSharpFilled diff --git a/src/IconNestCamMagnetMountOutlined.tsx b/src/IconNestCamMagnetMountOutlined.tsx index 71e0c21ad..b87656f37 100644 --- a/src/IconNestCamMagnetMountOutlined.tsx +++ b/src/IconNestCamMagnetMountOutlined.tsx @@ -8,4 +8,4 @@ const IconNestCamMagnetMountOutlined: React.FC = ({ ...props }) => ( ) -export { IconNestCamMagnetMountOutlined as default } +export default IconNestCamMagnetMountOutlined diff --git a/src/IconNestCamMagnetMountOutlinedFilled.tsx b/src/IconNestCamMagnetMountOutlinedFilled.tsx index d414f45be..f025584c9 100644 --- a/src/IconNestCamMagnetMountOutlinedFilled.tsx +++ b/src/IconNestCamMagnetMountOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconNestCamMagnetMountOutlinedFilled: React.FC = ({ ) -export { IconNestCamMagnetMountOutlinedFilled as default } +export default IconNestCamMagnetMountOutlinedFilled diff --git a/src/IconNestCamMagnetMountRounded.tsx b/src/IconNestCamMagnetMountRounded.tsx index 11bc75cf0..1cb0cb089 100644 --- a/src/IconNestCamMagnetMountRounded.tsx +++ b/src/IconNestCamMagnetMountRounded.tsx @@ -8,4 +8,4 @@ const IconNestCamMagnetMountRounded: React.FC = ({ ...props }) => ( ) -export { IconNestCamMagnetMountRounded as default } +export default IconNestCamMagnetMountRounded diff --git a/src/IconNestCamMagnetMountRoundedFilled.tsx b/src/IconNestCamMagnetMountRoundedFilled.tsx index 68b133560..5e9d84a78 100644 --- a/src/IconNestCamMagnetMountRoundedFilled.tsx +++ b/src/IconNestCamMagnetMountRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconNestCamMagnetMountRoundedFilled: React.FC = ({ ) -export { IconNestCamMagnetMountRoundedFilled as default } +export default IconNestCamMagnetMountRoundedFilled diff --git a/src/IconNestCamMagnetMountSharp.tsx b/src/IconNestCamMagnetMountSharp.tsx index fc436e0b6..dc38a6f91 100644 --- a/src/IconNestCamMagnetMountSharp.tsx +++ b/src/IconNestCamMagnetMountSharp.tsx @@ -8,4 +8,4 @@ const IconNestCamMagnetMountSharp: React.FC = ({ ...props }) => ( ) -export { IconNestCamMagnetMountSharp as default } +export default IconNestCamMagnetMountSharp diff --git a/src/IconNestCamMagnetMountSharpFilled.tsx b/src/IconNestCamMagnetMountSharpFilled.tsx index 5f0ff8165..0d562ba10 100644 --- a/src/IconNestCamMagnetMountSharpFilled.tsx +++ b/src/IconNestCamMagnetMountSharpFilled.tsx @@ -10,4 +10,4 @@ const IconNestCamMagnetMountSharpFilled: React.FC = ({ ) -export { IconNestCamMagnetMountSharpFilled as default } +export default IconNestCamMagnetMountSharpFilled diff --git a/src/IconNestCamOutdoorOutlined.tsx b/src/IconNestCamOutdoorOutlined.tsx index 11cc8ff9e..59351798a 100644 --- a/src/IconNestCamOutdoorOutlined.tsx +++ b/src/IconNestCamOutdoorOutlined.tsx @@ -8,4 +8,4 @@ const IconNestCamOutdoorOutlined: React.FC = ({ ...props }) => ( ) -export { IconNestCamOutdoorOutlined as default } +export default IconNestCamOutdoorOutlined diff --git a/src/IconNestCamOutdoorOutlinedFilled.tsx b/src/IconNestCamOutdoorOutlinedFilled.tsx index c223ae3c1..cedff28b8 100644 --- a/src/IconNestCamOutdoorOutlinedFilled.tsx +++ b/src/IconNestCamOutdoorOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconNestCamOutdoorOutlinedFilled: React.FC = ({ ) -export { IconNestCamOutdoorOutlinedFilled as default } +export default IconNestCamOutdoorOutlinedFilled diff --git a/src/IconNestCamOutdoorRounded.tsx b/src/IconNestCamOutdoorRounded.tsx index 652272178..70ae4f8b9 100644 --- a/src/IconNestCamOutdoorRounded.tsx +++ b/src/IconNestCamOutdoorRounded.tsx @@ -8,4 +8,4 @@ const IconNestCamOutdoorRounded: React.FC = ({ ...props }) => ( ) -export { IconNestCamOutdoorRounded as default } +export default IconNestCamOutdoorRounded diff --git a/src/IconNestCamOutdoorRoundedFilled.tsx b/src/IconNestCamOutdoorRoundedFilled.tsx index 5e8a3302d..6bab2a101 100644 --- a/src/IconNestCamOutdoorRoundedFilled.tsx +++ b/src/IconNestCamOutdoorRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconNestCamOutdoorRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconNestCamOutdoorRoundedFilled as default } +export default IconNestCamOutdoorRoundedFilled diff --git a/src/IconNestCamOutdoorSharp.tsx b/src/IconNestCamOutdoorSharp.tsx index 25eb2ffb3..6d00a93dd 100644 --- a/src/IconNestCamOutdoorSharp.tsx +++ b/src/IconNestCamOutdoorSharp.tsx @@ -8,4 +8,4 @@ const IconNestCamOutdoorSharp: React.FC = ({ ...props }) => ( ) -export { IconNestCamOutdoorSharp as default } +export default IconNestCamOutdoorSharp diff --git a/src/IconNestCamOutdoorSharpFilled.tsx b/src/IconNestCamOutdoorSharpFilled.tsx index 591a40915..ef602689c 100644 --- a/src/IconNestCamOutdoorSharpFilled.tsx +++ b/src/IconNestCamOutdoorSharpFilled.tsx @@ -8,4 +8,4 @@ const IconNestCamOutdoorSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconNestCamOutdoorSharpFilled as default } +export default IconNestCamOutdoorSharpFilled diff --git a/src/IconNestCamStandOutlined.tsx b/src/IconNestCamStandOutlined.tsx index f682e8272..54991520b 100644 --- a/src/IconNestCamStandOutlined.tsx +++ b/src/IconNestCamStandOutlined.tsx @@ -8,4 +8,4 @@ const IconNestCamStandOutlined: React.FC = ({ ...props }) => ( ) -export { IconNestCamStandOutlined as default } +export default IconNestCamStandOutlined diff --git a/src/IconNestCamStandOutlinedFilled.tsx b/src/IconNestCamStandOutlinedFilled.tsx index 5a96798b0..6cf28bb2f 100644 --- a/src/IconNestCamStandOutlinedFilled.tsx +++ b/src/IconNestCamStandOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconNestCamStandOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconNestCamStandOutlinedFilled as default } +export default IconNestCamStandOutlinedFilled diff --git a/src/IconNestCamStandRounded.tsx b/src/IconNestCamStandRounded.tsx index 6139318ac..3fa9c2ef5 100644 --- a/src/IconNestCamStandRounded.tsx +++ b/src/IconNestCamStandRounded.tsx @@ -8,4 +8,4 @@ const IconNestCamStandRounded: React.FC = ({ ...props }) => ( ) -export { IconNestCamStandRounded as default } +export default IconNestCamStandRounded diff --git a/src/IconNestCamStandRoundedFilled.tsx b/src/IconNestCamStandRoundedFilled.tsx index c81354288..9637de205 100644 --- a/src/IconNestCamStandRoundedFilled.tsx +++ b/src/IconNestCamStandRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconNestCamStandRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconNestCamStandRoundedFilled as default } +export default IconNestCamStandRoundedFilled diff --git a/src/IconNestCamStandSharp.tsx b/src/IconNestCamStandSharp.tsx index a3b71f5de..42683d01d 100644 --- a/src/IconNestCamStandSharp.tsx +++ b/src/IconNestCamStandSharp.tsx @@ -8,4 +8,4 @@ const IconNestCamStandSharp: React.FC = ({ ...props }) => ( ) -export { IconNestCamStandSharp as default } +export default IconNestCamStandSharp diff --git a/src/IconNestCamStandSharpFilled.tsx b/src/IconNestCamStandSharpFilled.tsx index 51c1e62df..2f44add87 100644 --- a/src/IconNestCamStandSharpFilled.tsx +++ b/src/IconNestCamStandSharpFilled.tsx @@ -8,4 +8,4 @@ const IconNestCamStandSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconNestCamStandSharpFilled as default } +export default IconNestCamStandSharpFilled diff --git a/src/IconNestCamWallMountOutlined.tsx b/src/IconNestCamWallMountOutlined.tsx index ef61fa01c..999eafb41 100644 --- a/src/IconNestCamWallMountOutlined.tsx +++ b/src/IconNestCamWallMountOutlined.tsx @@ -8,4 +8,4 @@ const IconNestCamWallMountOutlined: React.FC = ({ ...props }) => ( ) -export { IconNestCamWallMountOutlined as default } +export default IconNestCamWallMountOutlined diff --git a/src/IconNestCamWallMountOutlinedFilled.tsx b/src/IconNestCamWallMountOutlinedFilled.tsx index 4411b1bc0..a643368eb 100644 --- a/src/IconNestCamWallMountOutlinedFilled.tsx +++ b/src/IconNestCamWallMountOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconNestCamWallMountOutlinedFilled: React.FC = ({ ) -export { IconNestCamWallMountOutlinedFilled as default } +export default IconNestCamWallMountOutlinedFilled diff --git a/src/IconNestCamWallMountRounded.tsx b/src/IconNestCamWallMountRounded.tsx index 588acaab8..da22eb9fd 100644 --- a/src/IconNestCamWallMountRounded.tsx +++ b/src/IconNestCamWallMountRounded.tsx @@ -8,4 +8,4 @@ const IconNestCamWallMountRounded: React.FC = ({ ...props }) => ( ) -export { IconNestCamWallMountRounded as default } +export default IconNestCamWallMountRounded diff --git a/src/IconNestCamWallMountRoundedFilled.tsx b/src/IconNestCamWallMountRoundedFilled.tsx index 18c96b559..1386d39da 100644 --- a/src/IconNestCamWallMountRoundedFilled.tsx +++ b/src/IconNestCamWallMountRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconNestCamWallMountRoundedFilled: React.FC = ({ ) -export { IconNestCamWallMountRoundedFilled as default } +export default IconNestCamWallMountRoundedFilled diff --git a/src/IconNestCamWallMountSharp.tsx b/src/IconNestCamWallMountSharp.tsx index 4a1357a28..2334cac0a 100644 --- a/src/IconNestCamWallMountSharp.tsx +++ b/src/IconNestCamWallMountSharp.tsx @@ -8,4 +8,4 @@ const IconNestCamWallMountSharp: React.FC = ({ ...props }) => ( ) -export { IconNestCamWallMountSharp as default } +export default IconNestCamWallMountSharp diff --git a/src/IconNestCamWallMountSharpFilled.tsx b/src/IconNestCamWallMountSharpFilled.tsx index 185684ac0..f3f4ef814 100644 --- a/src/IconNestCamWallMountSharpFilled.tsx +++ b/src/IconNestCamWallMountSharpFilled.tsx @@ -8,4 +8,4 @@ const IconNestCamWallMountSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconNestCamWallMountSharpFilled as default } +export default IconNestCamWallMountSharpFilled diff --git a/src/IconNestCamWiredStandOutlined.tsx b/src/IconNestCamWiredStandOutlined.tsx index 36f5afc16..ed3c95d4c 100644 --- a/src/IconNestCamWiredStandOutlined.tsx +++ b/src/IconNestCamWiredStandOutlined.tsx @@ -8,4 +8,4 @@ const IconNestCamWiredStandOutlined: React.FC = ({ ...props }) => ( ) -export { IconNestCamWiredStandOutlined as default } +export default IconNestCamWiredStandOutlined diff --git a/src/IconNestCamWiredStandOutlinedFilled.tsx b/src/IconNestCamWiredStandOutlinedFilled.tsx index f91bcbeb7..ed8864f8a 100644 --- a/src/IconNestCamWiredStandOutlinedFilled.tsx +++ b/src/IconNestCamWiredStandOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconNestCamWiredStandOutlinedFilled: React.FC = ({ ) -export { IconNestCamWiredStandOutlinedFilled as default } +export default IconNestCamWiredStandOutlinedFilled diff --git a/src/IconNestCamWiredStandRounded.tsx b/src/IconNestCamWiredStandRounded.tsx index e06c5f913..6f1b91274 100644 --- a/src/IconNestCamWiredStandRounded.tsx +++ b/src/IconNestCamWiredStandRounded.tsx @@ -8,4 +8,4 @@ const IconNestCamWiredStandRounded: React.FC = ({ ...props }) => ( ) -export { IconNestCamWiredStandRounded as default } +export default IconNestCamWiredStandRounded diff --git a/src/IconNestCamWiredStandRoundedFilled.tsx b/src/IconNestCamWiredStandRoundedFilled.tsx index 3bf6c0d7f..cdccc7a0c 100644 --- a/src/IconNestCamWiredStandRoundedFilled.tsx +++ b/src/IconNestCamWiredStandRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconNestCamWiredStandRoundedFilled: React.FC = ({ ) -export { IconNestCamWiredStandRoundedFilled as default } +export default IconNestCamWiredStandRoundedFilled diff --git a/src/IconNestCamWiredStandSharp.tsx b/src/IconNestCamWiredStandSharp.tsx index ac03ec66b..86f1c9f41 100644 --- a/src/IconNestCamWiredStandSharp.tsx +++ b/src/IconNestCamWiredStandSharp.tsx @@ -8,4 +8,4 @@ const IconNestCamWiredStandSharp: React.FC = ({ ...props }) => ( ) -export { IconNestCamWiredStandSharp as default } +export default IconNestCamWiredStandSharp diff --git a/src/IconNestCamWiredStandSharpFilled.tsx b/src/IconNestCamWiredStandSharpFilled.tsx index 6beb69a33..a40264696 100644 --- a/src/IconNestCamWiredStandSharpFilled.tsx +++ b/src/IconNestCamWiredStandSharpFilled.tsx @@ -10,4 +10,4 @@ const IconNestCamWiredStandSharpFilled: React.FC = ({ ) -export { IconNestCamWiredStandSharpFilled as default } +export default IconNestCamWiredStandSharpFilled diff --git a/src/IconNestClockFarsightAnalogOutlined.tsx b/src/IconNestClockFarsightAnalogOutlined.tsx index 26c54ca74..4746ed247 100644 --- a/src/IconNestClockFarsightAnalogOutlined.tsx +++ b/src/IconNestClockFarsightAnalogOutlined.tsx @@ -10,4 +10,4 @@ const IconNestClockFarsightAnalogOutlined: React.FC = ({ ) -export { IconNestClockFarsightAnalogOutlined as default } +export default IconNestClockFarsightAnalogOutlined diff --git a/src/IconNestClockFarsightAnalogOutlinedFilled.tsx b/src/IconNestClockFarsightAnalogOutlinedFilled.tsx index 67fde4744..ce59a0218 100644 --- a/src/IconNestClockFarsightAnalogOutlinedFilled.tsx +++ b/src/IconNestClockFarsightAnalogOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconNestClockFarsightAnalogOutlinedFilled: React.FC = ({ ) -export { IconNestClockFarsightAnalogOutlinedFilled as default } +export default IconNestClockFarsightAnalogOutlinedFilled diff --git a/src/IconNestClockFarsightAnalogRounded.tsx b/src/IconNestClockFarsightAnalogRounded.tsx index 988c4995c..62fa07a4e 100644 --- a/src/IconNestClockFarsightAnalogRounded.tsx +++ b/src/IconNestClockFarsightAnalogRounded.tsx @@ -10,4 +10,4 @@ const IconNestClockFarsightAnalogRounded: React.FC = ({ ) -export { IconNestClockFarsightAnalogRounded as default } +export default IconNestClockFarsightAnalogRounded diff --git a/src/IconNestClockFarsightAnalogRoundedFilled.tsx b/src/IconNestClockFarsightAnalogRoundedFilled.tsx index bd92d7bf5..2283c9a29 100644 --- a/src/IconNestClockFarsightAnalogRoundedFilled.tsx +++ b/src/IconNestClockFarsightAnalogRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconNestClockFarsightAnalogRoundedFilled: React.FC = ({ ) -export { IconNestClockFarsightAnalogRoundedFilled as default } +export default IconNestClockFarsightAnalogRoundedFilled diff --git a/src/IconNestClockFarsightAnalogSharp.tsx b/src/IconNestClockFarsightAnalogSharp.tsx index ea5f371a7..fa2a01b43 100644 --- a/src/IconNestClockFarsightAnalogSharp.tsx +++ b/src/IconNestClockFarsightAnalogSharp.tsx @@ -10,4 +10,4 @@ const IconNestClockFarsightAnalogSharp: React.FC = ({ ) -export { IconNestClockFarsightAnalogSharp as default } +export default IconNestClockFarsightAnalogSharp diff --git a/src/IconNestClockFarsightAnalogSharpFilled.tsx b/src/IconNestClockFarsightAnalogSharpFilled.tsx index 65cb3542a..bdd2a52fd 100644 --- a/src/IconNestClockFarsightAnalogSharpFilled.tsx +++ b/src/IconNestClockFarsightAnalogSharpFilled.tsx @@ -10,4 +10,4 @@ const IconNestClockFarsightAnalogSharpFilled: React.FC = ({ ) -export { IconNestClockFarsightAnalogSharpFilled as default } +export default IconNestClockFarsightAnalogSharpFilled diff --git a/src/IconNestClockFarsightDigitalOutlined.tsx b/src/IconNestClockFarsightDigitalOutlined.tsx index 6046e9f2d..de59b9958 100644 --- a/src/IconNestClockFarsightDigitalOutlined.tsx +++ b/src/IconNestClockFarsightDigitalOutlined.tsx @@ -10,4 +10,4 @@ const IconNestClockFarsightDigitalOutlined: React.FC = ({ ) -export { IconNestClockFarsightDigitalOutlined as default } +export default IconNestClockFarsightDigitalOutlined diff --git a/src/IconNestClockFarsightDigitalOutlinedFilled.tsx b/src/IconNestClockFarsightDigitalOutlinedFilled.tsx index 2706adb62..fa115968b 100644 --- a/src/IconNestClockFarsightDigitalOutlinedFilled.tsx +++ b/src/IconNestClockFarsightDigitalOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconNestClockFarsightDigitalOutlinedFilled: React.FC = ({ ) -export { IconNestClockFarsightDigitalOutlinedFilled as default } +export default IconNestClockFarsightDigitalOutlinedFilled diff --git a/src/IconNestClockFarsightDigitalRounded.tsx b/src/IconNestClockFarsightDigitalRounded.tsx index efa7158ff..bdd0c8e4c 100644 --- a/src/IconNestClockFarsightDigitalRounded.tsx +++ b/src/IconNestClockFarsightDigitalRounded.tsx @@ -10,4 +10,4 @@ const IconNestClockFarsightDigitalRounded: React.FC = ({ ) -export { IconNestClockFarsightDigitalRounded as default } +export default IconNestClockFarsightDigitalRounded diff --git a/src/IconNestClockFarsightDigitalRoundedFilled.tsx b/src/IconNestClockFarsightDigitalRoundedFilled.tsx index 162ecee2b..e6153b1b9 100644 --- a/src/IconNestClockFarsightDigitalRoundedFilled.tsx +++ b/src/IconNestClockFarsightDigitalRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconNestClockFarsightDigitalRoundedFilled: React.FC = ({ ) -export { IconNestClockFarsightDigitalRoundedFilled as default } +export default IconNestClockFarsightDigitalRoundedFilled diff --git a/src/IconNestClockFarsightDigitalSharp.tsx b/src/IconNestClockFarsightDigitalSharp.tsx index b5300a83c..b7415c933 100644 --- a/src/IconNestClockFarsightDigitalSharp.tsx +++ b/src/IconNestClockFarsightDigitalSharp.tsx @@ -10,4 +10,4 @@ const IconNestClockFarsightDigitalSharp: React.FC = ({ ) -export { IconNestClockFarsightDigitalSharp as default } +export default IconNestClockFarsightDigitalSharp diff --git a/src/IconNestClockFarsightDigitalSharpFilled.tsx b/src/IconNestClockFarsightDigitalSharpFilled.tsx index b73ca4113..07b954be5 100644 --- a/src/IconNestClockFarsightDigitalSharpFilled.tsx +++ b/src/IconNestClockFarsightDigitalSharpFilled.tsx @@ -10,4 +10,4 @@ const IconNestClockFarsightDigitalSharpFilled: React.FC = ({ ) -export { IconNestClockFarsightDigitalSharpFilled as default } +export default IconNestClockFarsightDigitalSharpFilled diff --git a/src/IconNestConnectOutlined.tsx b/src/IconNestConnectOutlined.tsx index 63e4cbb14..a87a9b24b 100644 --- a/src/IconNestConnectOutlined.tsx +++ b/src/IconNestConnectOutlined.tsx @@ -8,4 +8,4 @@ const IconNestConnectOutlined: React.FC = ({ ...props }) => ( ) -export { IconNestConnectOutlined as default } +export default IconNestConnectOutlined diff --git a/src/IconNestConnectOutlinedFilled.tsx b/src/IconNestConnectOutlinedFilled.tsx index dd9fc65b6..14b2074b6 100644 --- a/src/IconNestConnectOutlinedFilled.tsx +++ b/src/IconNestConnectOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconNestConnectOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconNestConnectOutlinedFilled as default } +export default IconNestConnectOutlinedFilled diff --git a/src/IconNestConnectRounded.tsx b/src/IconNestConnectRounded.tsx index 341394804..5ded250d2 100644 --- a/src/IconNestConnectRounded.tsx +++ b/src/IconNestConnectRounded.tsx @@ -8,4 +8,4 @@ const IconNestConnectRounded: React.FC = ({ ...props }) => ( ) -export { IconNestConnectRounded as default } +export default IconNestConnectRounded diff --git a/src/IconNestConnectRoundedFilled.tsx b/src/IconNestConnectRoundedFilled.tsx index 007c5c0c4..581a8b8af 100644 --- a/src/IconNestConnectRoundedFilled.tsx +++ b/src/IconNestConnectRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconNestConnectRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconNestConnectRoundedFilled as default } +export default IconNestConnectRoundedFilled diff --git a/src/IconNestConnectSharp.tsx b/src/IconNestConnectSharp.tsx index 25c5c2e70..8ed5b8c29 100644 --- a/src/IconNestConnectSharp.tsx +++ b/src/IconNestConnectSharp.tsx @@ -8,4 +8,4 @@ const IconNestConnectSharp: React.FC = ({ ...props }) => ( ) -export { IconNestConnectSharp as default } +export default IconNestConnectSharp diff --git a/src/IconNestConnectSharpFilled.tsx b/src/IconNestConnectSharpFilled.tsx index dedcaa3ff..49f3526ac 100644 --- a/src/IconNestConnectSharpFilled.tsx +++ b/src/IconNestConnectSharpFilled.tsx @@ -8,4 +8,4 @@ const IconNestConnectSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconNestConnectSharpFilled as default } +export default IconNestConnectSharpFilled diff --git a/src/IconNestDetectOutlined.tsx b/src/IconNestDetectOutlined.tsx index c218c262f..9e0ddbf07 100644 --- a/src/IconNestDetectOutlined.tsx +++ b/src/IconNestDetectOutlined.tsx @@ -8,4 +8,4 @@ const IconNestDetectOutlined: React.FC = ({ ...props }) => ( ) -export { IconNestDetectOutlined as default } +export default IconNestDetectOutlined diff --git a/src/IconNestDetectOutlinedFilled.tsx b/src/IconNestDetectOutlinedFilled.tsx index 524e92070..526c945dd 100644 --- a/src/IconNestDetectOutlinedFilled.tsx +++ b/src/IconNestDetectOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconNestDetectOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconNestDetectOutlinedFilled as default } +export default IconNestDetectOutlinedFilled diff --git a/src/IconNestDetectRounded.tsx b/src/IconNestDetectRounded.tsx index 135e6b6aa..3c85773b5 100644 --- a/src/IconNestDetectRounded.tsx +++ b/src/IconNestDetectRounded.tsx @@ -8,4 +8,4 @@ const IconNestDetectRounded: React.FC = ({ ...props }) => ( ) -export { IconNestDetectRounded as default } +export default IconNestDetectRounded diff --git a/src/IconNestDetectRoundedFilled.tsx b/src/IconNestDetectRoundedFilled.tsx index b5f24431b..83c7ce45e 100644 --- a/src/IconNestDetectRoundedFilled.tsx +++ b/src/IconNestDetectRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconNestDetectRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconNestDetectRoundedFilled as default } +export default IconNestDetectRoundedFilled diff --git a/src/IconNestDetectSharp.tsx b/src/IconNestDetectSharp.tsx index 197f03cc4..6781e4735 100644 --- a/src/IconNestDetectSharp.tsx +++ b/src/IconNestDetectSharp.tsx @@ -8,4 +8,4 @@ const IconNestDetectSharp: React.FC = ({ ...props }) => ( ) -export { IconNestDetectSharp as default } +export default IconNestDetectSharp diff --git a/src/IconNestDetectSharpFilled.tsx b/src/IconNestDetectSharpFilled.tsx index 8222bceb8..f0399d13a 100644 --- a/src/IconNestDetectSharpFilled.tsx +++ b/src/IconNestDetectSharpFilled.tsx @@ -8,4 +8,4 @@ const IconNestDetectSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconNestDetectSharpFilled as default } +export default IconNestDetectSharpFilled diff --git a/src/IconNestDisplayMaxOutlined.tsx b/src/IconNestDisplayMaxOutlined.tsx index f97e4ac2d..d4ed5acb1 100644 --- a/src/IconNestDisplayMaxOutlined.tsx +++ b/src/IconNestDisplayMaxOutlined.tsx @@ -8,4 +8,4 @@ const IconNestDisplayMaxOutlined: React.FC = ({ ...props }) => ( ) -export { IconNestDisplayMaxOutlined as default } +export default IconNestDisplayMaxOutlined diff --git a/src/IconNestDisplayMaxOutlinedFilled.tsx b/src/IconNestDisplayMaxOutlinedFilled.tsx index 620e33d9a..06ac84bb9 100644 --- a/src/IconNestDisplayMaxOutlinedFilled.tsx +++ b/src/IconNestDisplayMaxOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconNestDisplayMaxOutlinedFilled: React.FC = ({ ) -export { IconNestDisplayMaxOutlinedFilled as default } +export default IconNestDisplayMaxOutlinedFilled diff --git a/src/IconNestDisplayMaxRounded.tsx b/src/IconNestDisplayMaxRounded.tsx index 60f023077..148d2d924 100644 --- a/src/IconNestDisplayMaxRounded.tsx +++ b/src/IconNestDisplayMaxRounded.tsx @@ -8,4 +8,4 @@ const IconNestDisplayMaxRounded: React.FC = ({ ...props }) => ( ) -export { IconNestDisplayMaxRounded as default } +export default IconNestDisplayMaxRounded diff --git a/src/IconNestDisplayMaxRoundedFilled.tsx b/src/IconNestDisplayMaxRoundedFilled.tsx index f534dec29..2f26bfb47 100644 --- a/src/IconNestDisplayMaxRoundedFilled.tsx +++ b/src/IconNestDisplayMaxRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconNestDisplayMaxRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconNestDisplayMaxRoundedFilled as default } +export default IconNestDisplayMaxRoundedFilled diff --git a/src/IconNestDisplayMaxSharp.tsx b/src/IconNestDisplayMaxSharp.tsx index 557e3619f..19083c862 100644 --- a/src/IconNestDisplayMaxSharp.tsx +++ b/src/IconNestDisplayMaxSharp.tsx @@ -8,4 +8,4 @@ const IconNestDisplayMaxSharp: React.FC = ({ ...props }) => ( ) -export { IconNestDisplayMaxSharp as default } +export default IconNestDisplayMaxSharp diff --git a/src/IconNestDisplayMaxSharpFilled.tsx b/src/IconNestDisplayMaxSharpFilled.tsx index e4dcde37a..2b4a96da4 100644 --- a/src/IconNestDisplayMaxSharpFilled.tsx +++ b/src/IconNestDisplayMaxSharpFilled.tsx @@ -8,4 +8,4 @@ const IconNestDisplayMaxSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconNestDisplayMaxSharpFilled as default } +export default IconNestDisplayMaxSharpFilled diff --git a/src/IconNestDisplayOutlined.tsx b/src/IconNestDisplayOutlined.tsx index cbf6b7100..afcedf0f9 100644 --- a/src/IconNestDisplayOutlined.tsx +++ b/src/IconNestDisplayOutlined.tsx @@ -8,4 +8,4 @@ const IconNestDisplayOutlined: React.FC = ({ ...props }) => ( ) -export { IconNestDisplayOutlined as default } +export default IconNestDisplayOutlined diff --git a/src/IconNestDisplayOutlinedFilled.tsx b/src/IconNestDisplayOutlinedFilled.tsx index 12621cecf..83754da2d 100644 --- a/src/IconNestDisplayOutlinedFilled.tsx +++ b/src/IconNestDisplayOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconNestDisplayOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconNestDisplayOutlinedFilled as default } +export default IconNestDisplayOutlinedFilled diff --git a/src/IconNestDisplayRounded.tsx b/src/IconNestDisplayRounded.tsx index 05841d939..a3a3d3d1b 100644 --- a/src/IconNestDisplayRounded.tsx +++ b/src/IconNestDisplayRounded.tsx @@ -8,4 +8,4 @@ const IconNestDisplayRounded: React.FC = ({ ...props }) => ( ) -export { IconNestDisplayRounded as default } +export default IconNestDisplayRounded diff --git a/src/IconNestDisplayRoundedFilled.tsx b/src/IconNestDisplayRoundedFilled.tsx index 35fdf2241..637e39732 100644 --- a/src/IconNestDisplayRoundedFilled.tsx +++ b/src/IconNestDisplayRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconNestDisplayRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconNestDisplayRoundedFilled as default } +export default IconNestDisplayRoundedFilled diff --git a/src/IconNestDisplaySharp.tsx b/src/IconNestDisplaySharp.tsx index aad0e6401..7548fefc4 100644 --- a/src/IconNestDisplaySharp.tsx +++ b/src/IconNestDisplaySharp.tsx @@ -8,4 +8,4 @@ const IconNestDisplaySharp: React.FC = ({ ...props }) => ( ) -export { IconNestDisplaySharp as default } +export default IconNestDisplaySharp diff --git a/src/IconNestDisplaySharpFilled.tsx b/src/IconNestDisplaySharpFilled.tsx index 1fdadcde3..562a2fbde 100644 --- a/src/IconNestDisplaySharpFilled.tsx +++ b/src/IconNestDisplaySharpFilled.tsx @@ -8,4 +8,4 @@ const IconNestDisplaySharpFilled: React.FC = ({ ...props }) => ( ) -export { IconNestDisplaySharpFilled as default } +export default IconNestDisplaySharpFilled diff --git a/src/IconNestDoorbellVisitorOutlined.tsx b/src/IconNestDoorbellVisitorOutlined.tsx index a0f2ca7c5..cfb8909eb 100644 --- a/src/IconNestDoorbellVisitorOutlined.tsx +++ b/src/IconNestDoorbellVisitorOutlined.tsx @@ -8,4 +8,4 @@ const IconNestDoorbellVisitorOutlined: React.FC = ({ ...props }) => ( ) -export { IconNestDoorbellVisitorOutlined as default } +export default IconNestDoorbellVisitorOutlined diff --git a/src/IconNestDoorbellVisitorOutlinedFilled.tsx b/src/IconNestDoorbellVisitorOutlinedFilled.tsx index c3e3754b3..1e1f1b8aa 100644 --- a/src/IconNestDoorbellVisitorOutlinedFilled.tsx +++ b/src/IconNestDoorbellVisitorOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconNestDoorbellVisitorOutlinedFilled: React.FC = ({ ) -export { IconNestDoorbellVisitorOutlinedFilled as default } +export default IconNestDoorbellVisitorOutlinedFilled diff --git a/src/IconNestDoorbellVisitorRounded.tsx b/src/IconNestDoorbellVisitorRounded.tsx index 884eca580..03d41f316 100644 --- a/src/IconNestDoorbellVisitorRounded.tsx +++ b/src/IconNestDoorbellVisitorRounded.tsx @@ -8,4 +8,4 @@ const IconNestDoorbellVisitorRounded: React.FC = ({ ...props }) => ( ) -export { IconNestDoorbellVisitorRounded as default } +export default IconNestDoorbellVisitorRounded diff --git a/src/IconNestDoorbellVisitorRoundedFilled.tsx b/src/IconNestDoorbellVisitorRoundedFilled.tsx index 48566bffa..3bc8081ed 100644 --- a/src/IconNestDoorbellVisitorRoundedFilled.tsx +++ b/src/IconNestDoorbellVisitorRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconNestDoorbellVisitorRoundedFilled: React.FC = ({ ) -export { IconNestDoorbellVisitorRoundedFilled as default } +export default IconNestDoorbellVisitorRoundedFilled diff --git a/src/IconNestDoorbellVisitorSharp.tsx b/src/IconNestDoorbellVisitorSharp.tsx index caca44c71..f7ecf8235 100644 --- a/src/IconNestDoorbellVisitorSharp.tsx +++ b/src/IconNestDoorbellVisitorSharp.tsx @@ -8,4 +8,4 @@ const IconNestDoorbellVisitorSharp: React.FC = ({ ...props }) => ( ) -export { IconNestDoorbellVisitorSharp as default } +export default IconNestDoorbellVisitorSharp diff --git a/src/IconNestDoorbellVisitorSharpFilled.tsx b/src/IconNestDoorbellVisitorSharpFilled.tsx index c48bb34ae..37bfc94a7 100644 --- a/src/IconNestDoorbellVisitorSharpFilled.tsx +++ b/src/IconNestDoorbellVisitorSharpFilled.tsx @@ -10,4 +10,4 @@ const IconNestDoorbellVisitorSharpFilled: React.FC = ({ ) -export { IconNestDoorbellVisitorSharpFilled as default } +export default IconNestDoorbellVisitorSharpFilled diff --git a/src/IconNestEcoLeafOutlined.tsx b/src/IconNestEcoLeafOutlined.tsx index 8ab86b130..058050603 100644 --- a/src/IconNestEcoLeafOutlined.tsx +++ b/src/IconNestEcoLeafOutlined.tsx @@ -8,4 +8,4 @@ const IconNestEcoLeafOutlined: React.FC = ({ ...props }) => ( ) -export { IconNestEcoLeafOutlined as default } +export default IconNestEcoLeafOutlined diff --git a/src/IconNestEcoLeafOutlinedFilled.tsx b/src/IconNestEcoLeafOutlinedFilled.tsx index 90faa7392..40b51e766 100644 --- a/src/IconNestEcoLeafOutlinedFilled.tsx +++ b/src/IconNestEcoLeafOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconNestEcoLeafOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconNestEcoLeafOutlinedFilled as default } +export default IconNestEcoLeafOutlinedFilled diff --git a/src/IconNestEcoLeafRounded.tsx b/src/IconNestEcoLeafRounded.tsx index b6bb8f7c0..e369e7871 100644 --- a/src/IconNestEcoLeafRounded.tsx +++ b/src/IconNestEcoLeafRounded.tsx @@ -8,4 +8,4 @@ const IconNestEcoLeafRounded: React.FC = ({ ...props }) => ( ) -export { IconNestEcoLeafRounded as default } +export default IconNestEcoLeafRounded diff --git a/src/IconNestEcoLeafRoundedFilled.tsx b/src/IconNestEcoLeafRoundedFilled.tsx index 5370dbdd3..31404d461 100644 --- a/src/IconNestEcoLeafRoundedFilled.tsx +++ b/src/IconNestEcoLeafRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconNestEcoLeafRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconNestEcoLeafRoundedFilled as default } +export default IconNestEcoLeafRoundedFilled diff --git a/src/IconNestEcoLeafSharp.tsx b/src/IconNestEcoLeafSharp.tsx index a10183b3e..1c97da9a6 100644 --- a/src/IconNestEcoLeafSharp.tsx +++ b/src/IconNestEcoLeafSharp.tsx @@ -8,4 +8,4 @@ const IconNestEcoLeafSharp: React.FC = ({ ...props }) => ( ) -export { IconNestEcoLeafSharp as default } +export default IconNestEcoLeafSharp diff --git a/src/IconNestEcoLeafSharpFilled.tsx b/src/IconNestEcoLeafSharpFilled.tsx index 0b26a12d0..bb241cca3 100644 --- a/src/IconNestEcoLeafSharpFilled.tsx +++ b/src/IconNestEcoLeafSharpFilled.tsx @@ -8,4 +8,4 @@ const IconNestEcoLeafSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconNestEcoLeafSharpFilled as default } +export default IconNestEcoLeafSharpFilled diff --git a/src/IconNestFarsightWeatherOutlined.tsx b/src/IconNestFarsightWeatherOutlined.tsx index e57072c21..bea778ff2 100644 --- a/src/IconNestFarsightWeatherOutlined.tsx +++ b/src/IconNestFarsightWeatherOutlined.tsx @@ -8,4 +8,4 @@ const IconNestFarsightWeatherOutlined: React.FC = ({ ...props }) => ( ) -export { IconNestFarsightWeatherOutlined as default } +export default IconNestFarsightWeatherOutlined diff --git a/src/IconNestFarsightWeatherOutlinedFilled.tsx b/src/IconNestFarsightWeatherOutlinedFilled.tsx index 663e2ef5d..1eea5b159 100644 --- a/src/IconNestFarsightWeatherOutlinedFilled.tsx +++ b/src/IconNestFarsightWeatherOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconNestFarsightWeatherOutlinedFilled: React.FC = ({ ) -export { IconNestFarsightWeatherOutlinedFilled as default } +export default IconNestFarsightWeatherOutlinedFilled diff --git a/src/IconNestFarsightWeatherRounded.tsx b/src/IconNestFarsightWeatherRounded.tsx index 02e6e499d..7492e68ee 100644 --- a/src/IconNestFarsightWeatherRounded.tsx +++ b/src/IconNestFarsightWeatherRounded.tsx @@ -8,4 +8,4 @@ const IconNestFarsightWeatherRounded: React.FC = ({ ...props }) => ( ) -export { IconNestFarsightWeatherRounded as default } +export default IconNestFarsightWeatherRounded diff --git a/src/IconNestFarsightWeatherRoundedFilled.tsx b/src/IconNestFarsightWeatherRoundedFilled.tsx index b93277b0b..300c0039e 100644 --- a/src/IconNestFarsightWeatherRoundedFilled.tsx +++ b/src/IconNestFarsightWeatherRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconNestFarsightWeatherRoundedFilled: React.FC = ({ ) -export { IconNestFarsightWeatherRoundedFilled as default } +export default IconNestFarsightWeatherRoundedFilled diff --git a/src/IconNestFarsightWeatherSharp.tsx b/src/IconNestFarsightWeatherSharp.tsx index 1149d5468..b8d07f215 100644 --- a/src/IconNestFarsightWeatherSharp.tsx +++ b/src/IconNestFarsightWeatherSharp.tsx @@ -8,4 +8,4 @@ const IconNestFarsightWeatherSharp: React.FC = ({ ...props }) => ( ) -export { IconNestFarsightWeatherSharp as default } +export default IconNestFarsightWeatherSharp diff --git a/src/IconNestFarsightWeatherSharpFilled.tsx b/src/IconNestFarsightWeatherSharpFilled.tsx index 24c78c45e..5ab73849b 100644 --- a/src/IconNestFarsightWeatherSharpFilled.tsx +++ b/src/IconNestFarsightWeatherSharpFilled.tsx @@ -10,4 +10,4 @@ const IconNestFarsightWeatherSharpFilled: React.FC = ({ ) -export { IconNestFarsightWeatherSharpFilled as default } +export default IconNestFarsightWeatherSharpFilled diff --git a/src/IconNestFoundSavingsOutlined.tsx b/src/IconNestFoundSavingsOutlined.tsx index 8c1495b50..1f00be21f 100644 --- a/src/IconNestFoundSavingsOutlined.tsx +++ b/src/IconNestFoundSavingsOutlined.tsx @@ -8,4 +8,4 @@ const IconNestFoundSavingsOutlined: React.FC = ({ ...props }) => ( ) -export { IconNestFoundSavingsOutlined as default } +export default IconNestFoundSavingsOutlined diff --git a/src/IconNestFoundSavingsOutlinedFilled.tsx b/src/IconNestFoundSavingsOutlinedFilled.tsx index e6554b13b..b0ddea6d0 100644 --- a/src/IconNestFoundSavingsOutlinedFilled.tsx +++ b/src/IconNestFoundSavingsOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconNestFoundSavingsOutlinedFilled: React.FC = ({ ) -export { IconNestFoundSavingsOutlinedFilled as default } +export default IconNestFoundSavingsOutlinedFilled diff --git a/src/IconNestFoundSavingsRounded.tsx b/src/IconNestFoundSavingsRounded.tsx index 8c6a20f62..02961822b 100644 --- a/src/IconNestFoundSavingsRounded.tsx +++ b/src/IconNestFoundSavingsRounded.tsx @@ -8,4 +8,4 @@ const IconNestFoundSavingsRounded: React.FC = ({ ...props }) => ( ) -export { IconNestFoundSavingsRounded as default } +export default IconNestFoundSavingsRounded diff --git a/src/IconNestFoundSavingsRoundedFilled.tsx b/src/IconNestFoundSavingsRoundedFilled.tsx index 23855c8a5..24fca4a0d 100644 --- a/src/IconNestFoundSavingsRoundedFilled.tsx +++ b/src/IconNestFoundSavingsRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconNestFoundSavingsRoundedFilled: React.FC = ({ ) -export { IconNestFoundSavingsRoundedFilled as default } +export default IconNestFoundSavingsRoundedFilled diff --git a/src/IconNestFoundSavingsSharp.tsx b/src/IconNestFoundSavingsSharp.tsx index d9d6ff824..a607662f7 100644 --- a/src/IconNestFoundSavingsSharp.tsx +++ b/src/IconNestFoundSavingsSharp.tsx @@ -8,4 +8,4 @@ const IconNestFoundSavingsSharp: React.FC = ({ ...props }) => ( ) -export { IconNestFoundSavingsSharp as default } +export default IconNestFoundSavingsSharp diff --git a/src/IconNestFoundSavingsSharpFilled.tsx b/src/IconNestFoundSavingsSharpFilled.tsx index 1456b10c5..e01bd6475 100644 --- a/src/IconNestFoundSavingsSharpFilled.tsx +++ b/src/IconNestFoundSavingsSharpFilled.tsx @@ -8,4 +8,4 @@ const IconNestFoundSavingsSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconNestFoundSavingsSharpFilled as default } +export default IconNestFoundSavingsSharpFilled diff --git a/src/IconNestGaleWifiOutlined.tsx b/src/IconNestGaleWifiOutlined.tsx index b051cd29a..5d1cceebf 100644 --- a/src/IconNestGaleWifiOutlined.tsx +++ b/src/IconNestGaleWifiOutlined.tsx @@ -8,4 +8,4 @@ const IconNestGaleWifiOutlined: React.FC = ({ ...props }) => ( ) -export { IconNestGaleWifiOutlined as default } +export default IconNestGaleWifiOutlined diff --git a/src/IconNestGaleWifiOutlinedFilled.tsx b/src/IconNestGaleWifiOutlinedFilled.tsx index 8b6a7bccb..f5242b5dd 100644 --- a/src/IconNestGaleWifiOutlinedFilled.tsx +++ b/src/IconNestGaleWifiOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconNestGaleWifiOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconNestGaleWifiOutlinedFilled as default } +export default IconNestGaleWifiOutlinedFilled diff --git a/src/IconNestGaleWifiRounded.tsx b/src/IconNestGaleWifiRounded.tsx index 5bf9eced7..4b3142ec2 100644 --- a/src/IconNestGaleWifiRounded.tsx +++ b/src/IconNestGaleWifiRounded.tsx @@ -8,4 +8,4 @@ const IconNestGaleWifiRounded: React.FC = ({ ...props }) => ( ) -export { IconNestGaleWifiRounded as default } +export default IconNestGaleWifiRounded diff --git a/src/IconNestGaleWifiRoundedFilled.tsx b/src/IconNestGaleWifiRoundedFilled.tsx index 68b442b49..cd001650a 100644 --- a/src/IconNestGaleWifiRoundedFilled.tsx +++ b/src/IconNestGaleWifiRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconNestGaleWifiRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconNestGaleWifiRoundedFilled as default } +export default IconNestGaleWifiRoundedFilled diff --git a/src/IconNestGaleWifiSharp.tsx b/src/IconNestGaleWifiSharp.tsx index 719995389..a5310d828 100644 --- a/src/IconNestGaleWifiSharp.tsx +++ b/src/IconNestGaleWifiSharp.tsx @@ -8,4 +8,4 @@ const IconNestGaleWifiSharp: React.FC = ({ ...props }) => ( ) -export { IconNestGaleWifiSharp as default } +export default IconNestGaleWifiSharp diff --git a/src/IconNestGaleWifiSharpFilled.tsx b/src/IconNestGaleWifiSharpFilled.tsx index 9003a9926..029f33205 100644 --- a/src/IconNestGaleWifiSharpFilled.tsx +++ b/src/IconNestGaleWifiSharpFilled.tsx @@ -8,4 +8,4 @@ const IconNestGaleWifiSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconNestGaleWifiSharpFilled as default } +export default IconNestGaleWifiSharpFilled diff --git a/src/IconNestHeatLinkEOutlined.tsx b/src/IconNestHeatLinkEOutlined.tsx index 40686f539..1b45ac572 100644 --- a/src/IconNestHeatLinkEOutlined.tsx +++ b/src/IconNestHeatLinkEOutlined.tsx @@ -8,4 +8,4 @@ const IconNestHeatLinkEOutlined: React.FC = ({ ...props }) => ( ) -export { IconNestHeatLinkEOutlined as default } +export default IconNestHeatLinkEOutlined diff --git a/src/IconNestHeatLinkEOutlinedFilled.tsx b/src/IconNestHeatLinkEOutlinedFilled.tsx index 7049583ff..efd8ad315 100644 --- a/src/IconNestHeatLinkEOutlinedFilled.tsx +++ b/src/IconNestHeatLinkEOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconNestHeatLinkEOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconNestHeatLinkEOutlinedFilled as default } +export default IconNestHeatLinkEOutlinedFilled diff --git a/src/IconNestHeatLinkERounded.tsx b/src/IconNestHeatLinkERounded.tsx index 2dbb4f199..b9924a118 100644 --- a/src/IconNestHeatLinkERounded.tsx +++ b/src/IconNestHeatLinkERounded.tsx @@ -8,4 +8,4 @@ const IconNestHeatLinkERounded: React.FC = ({ ...props }) => ( ) -export { IconNestHeatLinkERounded as default } +export default IconNestHeatLinkERounded diff --git a/src/IconNestHeatLinkERoundedFilled.tsx b/src/IconNestHeatLinkERoundedFilled.tsx index 783c788ac..35a243e74 100644 --- a/src/IconNestHeatLinkERoundedFilled.tsx +++ b/src/IconNestHeatLinkERoundedFilled.tsx @@ -8,4 +8,4 @@ const IconNestHeatLinkERoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconNestHeatLinkERoundedFilled as default } +export default IconNestHeatLinkERoundedFilled diff --git a/src/IconNestHeatLinkESharp.tsx b/src/IconNestHeatLinkESharp.tsx index 85325104b..5aca743e9 100644 --- a/src/IconNestHeatLinkESharp.tsx +++ b/src/IconNestHeatLinkESharp.tsx @@ -8,4 +8,4 @@ const IconNestHeatLinkESharp: React.FC = ({ ...props }) => ( ) -export { IconNestHeatLinkESharp as default } +export default IconNestHeatLinkESharp diff --git a/src/IconNestHeatLinkESharpFilled.tsx b/src/IconNestHeatLinkESharpFilled.tsx index 1d6f2c497..034d505aa 100644 --- a/src/IconNestHeatLinkESharpFilled.tsx +++ b/src/IconNestHeatLinkESharpFilled.tsx @@ -8,4 +8,4 @@ const IconNestHeatLinkESharpFilled: React.FC = ({ ...props }) => ( ) -export { IconNestHeatLinkESharpFilled as default } +export default IconNestHeatLinkESharpFilled diff --git a/src/IconNestHeatLinkGen3Outlined.tsx b/src/IconNestHeatLinkGen3Outlined.tsx index 1e6f52f7b..32b9b0d2d 100644 --- a/src/IconNestHeatLinkGen3Outlined.tsx +++ b/src/IconNestHeatLinkGen3Outlined.tsx @@ -8,4 +8,4 @@ const IconNestHeatLinkGen3Outlined: React.FC = ({ ...props }) => ( ) -export { IconNestHeatLinkGen3Outlined as default } +export default IconNestHeatLinkGen3Outlined diff --git a/src/IconNestHeatLinkGen3OutlinedFilled.tsx b/src/IconNestHeatLinkGen3OutlinedFilled.tsx index b5455d8ff..ebeae67bd 100644 --- a/src/IconNestHeatLinkGen3OutlinedFilled.tsx +++ b/src/IconNestHeatLinkGen3OutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconNestHeatLinkGen3OutlinedFilled: React.FC = ({ ) -export { IconNestHeatLinkGen3OutlinedFilled as default } +export default IconNestHeatLinkGen3OutlinedFilled diff --git a/src/IconNestHeatLinkGen3Rounded.tsx b/src/IconNestHeatLinkGen3Rounded.tsx index 3f4d88864..294c870f0 100644 --- a/src/IconNestHeatLinkGen3Rounded.tsx +++ b/src/IconNestHeatLinkGen3Rounded.tsx @@ -8,4 +8,4 @@ const IconNestHeatLinkGen3Rounded: React.FC = ({ ...props }) => ( ) -export { IconNestHeatLinkGen3Rounded as default } +export default IconNestHeatLinkGen3Rounded diff --git a/src/IconNestHeatLinkGen3RoundedFilled.tsx b/src/IconNestHeatLinkGen3RoundedFilled.tsx index ade5ad5fa..fc1ed5873 100644 --- a/src/IconNestHeatLinkGen3RoundedFilled.tsx +++ b/src/IconNestHeatLinkGen3RoundedFilled.tsx @@ -10,4 +10,4 @@ const IconNestHeatLinkGen3RoundedFilled: React.FC = ({ ) -export { IconNestHeatLinkGen3RoundedFilled as default } +export default IconNestHeatLinkGen3RoundedFilled diff --git a/src/IconNestHeatLinkGen3Sharp.tsx b/src/IconNestHeatLinkGen3Sharp.tsx index 5fb48d15f..c9ebe5515 100644 --- a/src/IconNestHeatLinkGen3Sharp.tsx +++ b/src/IconNestHeatLinkGen3Sharp.tsx @@ -8,4 +8,4 @@ const IconNestHeatLinkGen3Sharp: React.FC = ({ ...props }) => ( ) -export { IconNestHeatLinkGen3Sharp as default } +export default IconNestHeatLinkGen3Sharp diff --git a/src/IconNestHeatLinkGen3SharpFilled.tsx b/src/IconNestHeatLinkGen3SharpFilled.tsx index f6c075bdb..3e6cb49bc 100644 --- a/src/IconNestHeatLinkGen3SharpFilled.tsx +++ b/src/IconNestHeatLinkGen3SharpFilled.tsx @@ -8,4 +8,4 @@ const IconNestHeatLinkGen3SharpFilled: React.FC = ({ ...props }) => ( ) -export { IconNestHeatLinkGen3SharpFilled as default } +export default IconNestHeatLinkGen3SharpFilled diff --git a/src/IconNestHelloDoorbellOutlined.tsx b/src/IconNestHelloDoorbellOutlined.tsx index 9c3f74972..fb860079d 100644 --- a/src/IconNestHelloDoorbellOutlined.tsx +++ b/src/IconNestHelloDoorbellOutlined.tsx @@ -8,4 +8,4 @@ const IconNestHelloDoorbellOutlined: React.FC = ({ ...props }) => ( ) -export { IconNestHelloDoorbellOutlined as default } +export default IconNestHelloDoorbellOutlined diff --git a/src/IconNestHelloDoorbellOutlinedFilled.tsx b/src/IconNestHelloDoorbellOutlinedFilled.tsx index 0676e08e8..e53578544 100644 --- a/src/IconNestHelloDoorbellOutlinedFilled.tsx +++ b/src/IconNestHelloDoorbellOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconNestHelloDoorbellOutlinedFilled: React.FC = ({ ) -export { IconNestHelloDoorbellOutlinedFilled as default } +export default IconNestHelloDoorbellOutlinedFilled diff --git a/src/IconNestHelloDoorbellRounded.tsx b/src/IconNestHelloDoorbellRounded.tsx index 828dd9c2c..1ac87dcc1 100644 --- a/src/IconNestHelloDoorbellRounded.tsx +++ b/src/IconNestHelloDoorbellRounded.tsx @@ -8,4 +8,4 @@ const IconNestHelloDoorbellRounded: React.FC = ({ ...props }) => ( ) -export { IconNestHelloDoorbellRounded as default } +export default IconNestHelloDoorbellRounded diff --git a/src/IconNestHelloDoorbellRoundedFilled.tsx b/src/IconNestHelloDoorbellRoundedFilled.tsx index 41cc7894b..191a2c5b9 100644 --- a/src/IconNestHelloDoorbellRoundedFilled.tsx +++ b/src/IconNestHelloDoorbellRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconNestHelloDoorbellRoundedFilled: React.FC = ({ ) -export { IconNestHelloDoorbellRoundedFilled as default } +export default IconNestHelloDoorbellRoundedFilled diff --git a/src/IconNestHelloDoorbellSharp.tsx b/src/IconNestHelloDoorbellSharp.tsx index d16d5d791..23aa0e05f 100644 --- a/src/IconNestHelloDoorbellSharp.tsx +++ b/src/IconNestHelloDoorbellSharp.tsx @@ -8,4 +8,4 @@ const IconNestHelloDoorbellSharp: React.FC = ({ ...props }) => ( ) -export { IconNestHelloDoorbellSharp as default } +export default IconNestHelloDoorbellSharp diff --git a/src/IconNestHelloDoorbellSharpFilled.tsx b/src/IconNestHelloDoorbellSharpFilled.tsx index e28f9a4cf..d50c0d52f 100644 --- a/src/IconNestHelloDoorbellSharpFilled.tsx +++ b/src/IconNestHelloDoorbellSharpFilled.tsx @@ -10,4 +10,4 @@ const IconNestHelloDoorbellSharpFilled: React.FC = ({ ) -export { IconNestHelloDoorbellSharpFilled as default } +export default IconNestHelloDoorbellSharpFilled diff --git a/src/IconNestMiniOutlined.tsx b/src/IconNestMiniOutlined.tsx index a81c66196..dd6b10222 100644 --- a/src/IconNestMiniOutlined.tsx +++ b/src/IconNestMiniOutlined.tsx @@ -8,4 +8,4 @@ const IconNestMiniOutlined: React.FC = ({ ...props }) => ( ) -export { IconNestMiniOutlined as default } +export default IconNestMiniOutlined diff --git a/src/IconNestMiniOutlinedFilled.tsx b/src/IconNestMiniOutlinedFilled.tsx index 7b3607142..6dce5be58 100644 --- a/src/IconNestMiniOutlinedFilled.tsx +++ b/src/IconNestMiniOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconNestMiniOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconNestMiniOutlinedFilled as default } +export default IconNestMiniOutlinedFilled diff --git a/src/IconNestMiniRounded.tsx b/src/IconNestMiniRounded.tsx index 80a49b5c1..baebd8111 100644 --- a/src/IconNestMiniRounded.tsx +++ b/src/IconNestMiniRounded.tsx @@ -8,4 +8,4 @@ const IconNestMiniRounded: React.FC = ({ ...props }) => ( ) -export { IconNestMiniRounded as default } +export default IconNestMiniRounded diff --git a/src/IconNestMiniRoundedFilled.tsx b/src/IconNestMiniRoundedFilled.tsx index 25e278212..e9c537de4 100644 --- a/src/IconNestMiniRoundedFilled.tsx +++ b/src/IconNestMiniRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconNestMiniRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconNestMiniRoundedFilled as default } +export default IconNestMiniRoundedFilled diff --git a/src/IconNestMiniSharp.tsx b/src/IconNestMiniSharp.tsx index 1abce4734..0b52328c6 100644 --- a/src/IconNestMiniSharp.tsx +++ b/src/IconNestMiniSharp.tsx @@ -8,4 +8,4 @@ const IconNestMiniSharp: React.FC = ({ ...props }) => ( ) -export { IconNestMiniSharp as default } +export default IconNestMiniSharp diff --git a/src/IconNestMiniSharpFilled.tsx b/src/IconNestMiniSharpFilled.tsx index 408822b57..96e54d4fa 100644 --- a/src/IconNestMiniSharpFilled.tsx +++ b/src/IconNestMiniSharpFilled.tsx @@ -8,4 +8,4 @@ const IconNestMiniSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconNestMiniSharpFilled as default } +export default IconNestMiniSharpFilled diff --git a/src/IconNestMultiRoomOutlined.tsx b/src/IconNestMultiRoomOutlined.tsx index 9fc709784..4f49fff21 100644 --- a/src/IconNestMultiRoomOutlined.tsx +++ b/src/IconNestMultiRoomOutlined.tsx @@ -8,4 +8,4 @@ const IconNestMultiRoomOutlined: React.FC = ({ ...props }) => ( ) -export { IconNestMultiRoomOutlined as default } +export default IconNestMultiRoomOutlined diff --git a/src/IconNestMultiRoomOutlinedFilled.tsx b/src/IconNestMultiRoomOutlinedFilled.tsx index 7f11a05af..2960ab282 100644 --- a/src/IconNestMultiRoomOutlinedFilled.tsx +++ b/src/IconNestMultiRoomOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconNestMultiRoomOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconNestMultiRoomOutlinedFilled as default } +export default IconNestMultiRoomOutlinedFilled diff --git a/src/IconNestMultiRoomRounded.tsx b/src/IconNestMultiRoomRounded.tsx index 45f753fb8..85c0a5fe9 100644 --- a/src/IconNestMultiRoomRounded.tsx +++ b/src/IconNestMultiRoomRounded.tsx @@ -8,4 +8,4 @@ const IconNestMultiRoomRounded: React.FC = ({ ...props }) => ( ) -export { IconNestMultiRoomRounded as default } +export default IconNestMultiRoomRounded diff --git a/src/IconNestMultiRoomRoundedFilled.tsx b/src/IconNestMultiRoomRoundedFilled.tsx index 62e5057d2..8285f52e4 100644 --- a/src/IconNestMultiRoomRoundedFilled.tsx +++ b/src/IconNestMultiRoomRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconNestMultiRoomRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconNestMultiRoomRoundedFilled as default } +export default IconNestMultiRoomRoundedFilled diff --git a/src/IconNestMultiRoomSharp.tsx b/src/IconNestMultiRoomSharp.tsx index 2fd2a7705..5b01d41db 100644 --- a/src/IconNestMultiRoomSharp.tsx +++ b/src/IconNestMultiRoomSharp.tsx @@ -8,4 +8,4 @@ const IconNestMultiRoomSharp: React.FC = ({ ...props }) => ( ) -export { IconNestMultiRoomSharp as default } +export default IconNestMultiRoomSharp diff --git a/src/IconNestMultiRoomSharpFilled.tsx b/src/IconNestMultiRoomSharpFilled.tsx index bfdcfba1d..4cf68b98f 100644 --- a/src/IconNestMultiRoomSharpFilled.tsx +++ b/src/IconNestMultiRoomSharpFilled.tsx @@ -8,4 +8,4 @@ const IconNestMultiRoomSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconNestMultiRoomSharpFilled as default } +export default IconNestMultiRoomSharpFilled diff --git a/src/IconNestProtectOutlined.tsx b/src/IconNestProtectOutlined.tsx index b35b4931a..63d2f7872 100644 --- a/src/IconNestProtectOutlined.tsx +++ b/src/IconNestProtectOutlined.tsx @@ -8,4 +8,4 @@ const IconNestProtectOutlined: React.FC = ({ ...props }) => ( ) -export { IconNestProtectOutlined as default } +export default IconNestProtectOutlined diff --git a/src/IconNestProtectOutlinedFilled.tsx b/src/IconNestProtectOutlinedFilled.tsx index 37adaaec2..803e97865 100644 --- a/src/IconNestProtectOutlinedFilled.tsx +++ b/src/IconNestProtectOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconNestProtectOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconNestProtectOutlinedFilled as default } +export default IconNestProtectOutlinedFilled diff --git a/src/IconNestProtectRounded.tsx b/src/IconNestProtectRounded.tsx index e3f66c7ed..a71e1d20e 100644 --- a/src/IconNestProtectRounded.tsx +++ b/src/IconNestProtectRounded.tsx @@ -8,4 +8,4 @@ const IconNestProtectRounded: React.FC = ({ ...props }) => ( ) -export { IconNestProtectRounded as default } +export default IconNestProtectRounded diff --git a/src/IconNestProtectRoundedFilled.tsx b/src/IconNestProtectRoundedFilled.tsx index f6efadb33..ea34f406c 100644 --- a/src/IconNestProtectRoundedFilled.tsx +++ b/src/IconNestProtectRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconNestProtectRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconNestProtectRoundedFilled as default } +export default IconNestProtectRoundedFilled diff --git a/src/IconNestProtectSharp.tsx b/src/IconNestProtectSharp.tsx index ee9ee5fc5..8f81f76d1 100644 --- a/src/IconNestProtectSharp.tsx +++ b/src/IconNestProtectSharp.tsx @@ -8,4 +8,4 @@ const IconNestProtectSharp: React.FC = ({ ...props }) => ( ) -export { IconNestProtectSharp as default } +export default IconNestProtectSharp diff --git a/src/IconNestProtectSharpFilled.tsx b/src/IconNestProtectSharpFilled.tsx index 71d780310..640c601f4 100644 --- a/src/IconNestProtectSharpFilled.tsx +++ b/src/IconNestProtectSharpFilled.tsx @@ -8,4 +8,4 @@ const IconNestProtectSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconNestProtectSharpFilled as default } +export default IconNestProtectSharpFilled diff --git a/src/IconNestRemoteComfortSensorOutlined.tsx b/src/IconNestRemoteComfortSensorOutlined.tsx index 17a926782..31c11b1c1 100644 --- a/src/IconNestRemoteComfortSensorOutlined.tsx +++ b/src/IconNestRemoteComfortSensorOutlined.tsx @@ -10,4 +10,4 @@ const IconNestRemoteComfortSensorOutlined: React.FC = ({ ) -export { IconNestRemoteComfortSensorOutlined as default } +export default IconNestRemoteComfortSensorOutlined diff --git a/src/IconNestRemoteComfortSensorOutlinedFilled.tsx b/src/IconNestRemoteComfortSensorOutlinedFilled.tsx index bb60923fa..0c205032d 100644 --- a/src/IconNestRemoteComfortSensorOutlinedFilled.tsx +++ b/src/IconNestRemoteComfortSensorOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconNestRemoteComfortSensorOutlinedFilled: React.FC = ({ ) -export { IconNestRemoteComfortSensorOutlinedFilled as default } +export default IconNestRemoteComfortSensorOutlinedFilled diff --git a/src/IconNestRemoteComfortSensorRounded.tsx b/src/IconNestRemoteComfortSensorRounded.tsx index c2904005e..18c30fe76 100644 --- a/src/IconNestRemoteComfortSensorRounded.tsx +++ b/src/IconNestRemoteComfortSensorRounded.tsx @@ -10,4 +10,4 @@ const IconNestRemoteComfortSensorRounded: React.FC = ({ ) -export { IconNestRemoteComfortSensorRounded as default } +export default IconNestRemoteComfortSensorRounded diff --git a/src/IconNestRemoteComfortSensorRoundedFilled.tsx b/src/IconNestRemoteComfortSensorRoundedFilled.tsx index 4cb944128..aea7c04d5 100644 --- a/src/IconNestRemoteComfortSensorRoundedFilled.tsx +++ b/src/IconNestRemoteComfortSensorRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconNestRemoteComfortSensorRoundedFilled: React.FC = ({ ) -export { IconNestRemoteComfortSensorRoundedFilled as default } +export default IconNestRemoteComfortSensorRoundedFilled diff --git a/src/IconNestRemoteComfortSensorSharp.tsx b/src/IconNestRemoteComfortSensorSharp.tsx index 8cbd05131..a687370c7 100644 --- a/src/IconNestRemoteComfortSensorSharp.tsx +++ b/src/IconNestRemoteComfortSensorSharp.tsx @@ -10,4 +10,4 @@ const IconNestRemoteComfortSensorSharp: React.FC = ({ ) -export { IconNestRemoteComfortSensorSharp as default } +export default IconNestRemoteComfortSensorSharp diff --git a/src/IconNestRemoteComfortSensorSharpFilled.tsx b/src/IconNestRemoteComfortSensorSharpFilled.tsx index 2f1886408..4c247c90c 100644 --- a/src/IconNestRemoteComfortSensorSharpFilled.tsx +++ b/src/IconNestRemoteComfortSensorSharpFilled.tsx @@ -10,4 +10,4 @@ const IconNestRemoteComfortSensorSharpFilled: React.FC = ({ ) -export { IconNestRemoteComfortSensorSharpFilled as default } +export default IconNestRemoteComfortSensorSharpFilled diff --git a/src/IconNestRemoteOutlined.tsx b/src/IconNestRemoteOutlined.tsx index 21594eb0e..7f7423bd9 100644 --- a/src/IconNestRemoteOutlined.tsx +++ b/src/IconNestRemoteOutlined.tsx @@ -8,4 +8,4 @@ const IconNestRemoteOutlined: React.FC = ({ ...props }) => ( ) -export { IconNestRemoteOutlined as default } +export default IconNestRemoteOutlined diff --git a/src/IconNestRemoteOutlinedFilled.tsx b/src/IconNestRemoteOutlinedFilled.tsx index 6306c2314..432b7d89d 100644 --- a/src/IconNestRemoteOutlinedFilled.tsx +++ b/src/IconNestRemoteOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconNestRemoteOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconNestRemoteOutlinedFilled as default } +export default IconNestRemoteOutlinedFilled diff --git a/src/IconNestRemoteRounded.tsx b/src/IconNestRemoteRounded.tsx index 3003169f1..990b2ec33 100644 --- a/src/IconNestRemoteRounded.tsx +++ b/src/IconNestRemoteRounded.tsx @@ -8,4 +8,4 @@ const IconNestRemoteRounded: React.FC = ({ ...props }) => ( ) -export { IconNestRemoteRounded as default } +export default IconNestRemoteRounded diff --git a/src/IconNestRemoteRoundedFilled.tsx b/src/IconNestRemoteRoundedFilled.tsx index 82420df19..de9ffb42f 100644 --- a/src/IconNestRemoteRoundedFilled.tsx +++ b/src/IconNestRemoteRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconNestRemoteRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconNestRemoteRoundedFilled as default } +export default IconNestRemoteRoundedFilled diff --git a/src/IconNestRemoteSharp.tsx b/src/IconNestRemoteSharp.tsx index cc983cd7e..2eea8fefb 100644 --- a/src/IconNestRemoteSharp.tsx +++ b/src/IconNestRemoteSharp.tsx @@ -8,4 +8,4 @@ const IconNestRemoteSharp: React.FC = ({ ...props }) => ( ) -export { IconNestRemoteSharp as default } +export default IconNestRemoteSharp diff --git a/src/IconNestRemoteSharpFilled.tsx b/src/IconNestRemoteSharpFilled.tsx index a1c3d6bdf..ac55ce3e2 100644 --- a/src/IconNestRemoteSharpFilled.tsx +++ b/src/IconNestRemoteSharpFilled.tsx @@ -8,4 +8,4 @@ const IconNestRemoteSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconNestRemoteSharpFilled as default } +export default IconNestRemoteSharpFilled diff --git a/src/IconNestSecureAlarmOutlined.tsx b/src/IconNestSecureAlarmOutlined.tsx index bc28d596a..e1533a142 100644 --- a/src/IconNestSecureAlarmOutlined.tsx +++ b/src/IconNestSecureAlarmOutlined.tsx @@ -8,4 +8,4 @@ const IconNestSecureAlarmOutlined: React.FC = ({ ...props }) => ( ) -export { IconNestSecureAlarmOutlined as default } +export default IconNestSecureAlarmOutlined diff --git a/src/IconNestSecureAlarmOutlinedFilled.tsx b/src/IconNestSecureAlarmOutlinedFilled.tsx index 6a3126715..54308a382 100644 --- a/src/IconNestSecureAlarmOutlinedFilled.tsx +++ b/src/IconNestSecureAlarmOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconNestSecureAlarmOutlinedFilled: React.FC = ({ ) -export { IconNestSecureAlarmOutlinedFilled as default } +export default IconNestSecureAlarmOutlinedFilled diff --git a/src/IconNestSecureAlarmRounded.tsx b/src/IconNestSecureAlarmRounded.tsx index 595aabeac..0cafbc4c5 100644 --- a/src/IconNestSecureAlarmRounded.tsx +++ b/src/IconNestSecureAlarmRounded.tsx @@ -8,4 +8,4 @@ const IconNestSecureAlarmRounded: React.FC = ({ ...props }) => ( ) -export { IconNestSecureAlarmRounded as default } +export default IconNestSecureAlarmRounded diff --git a/src/IconNestSecureAlarmRoundedFilled.tsx b/src/IconNestSecureAlarmRoundedFilled.tsx index 4cb81f486..c15015b92 100644 --- a/src/IconNestSecureAlarmRoundedFilled.tsx +++ b/src/IconNestSecureAlarmRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconNestSecureAlarmRoundedFilled: React.FC = ({ ) -export { IconNestSecureAlarmRoundedFilled as default } +export default IconNestSecureAlarmRoundedFilled diff --git a/src/IconNestSecureAlarmSharp.tsx b/src/IconNestSecureAlarmSharp.tsx index 1268f1b86..3273cfc44 100644 --- a/src/IconNestSecureAlarmSharp.tsx +++ b/src/IconNestSecureAlarmSharp.tsx @@ -8,4 +8,4 @@ const IconNestSecureAlarmSharp: React.FC = ({ ...props }) => ( ) -export { IconNestSecureAlarmSharp as default } +export default IconNestSecureAlarmSharp diff --git a/src/IconNestSecureAlarmSharpFilled.tsx b/src/IconNestSecureAlarmSharpFilled.tsx index 6e51dc0db..117afc21f 100644 --- a/src/IconNestSecureAlarmSharpFilled.tsx +++ b/src/IconNestSecureAlarmSharpFilled.tsx @@ -8,4 +8,4 @@ const IconNestSecureAlarmSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconNestSecureAlarmSharpFilled as default } +export default IconNestSecureAlarmSharpFilled diff --git a/src/IconNestSunblockOutlined.tsx b/src/IconNestSunblockOutlined.tsx index f221f6560..28b7a9559 100644 --- a/src/IconNestSunblockOutlined.tsx +++ b/src/IconNestSunblockOutlined.tsx @@ -8,4 +8,4 @@ const IconNestSunblockOutlined: React.FC = ({ ...props }) => ( ) -export { IconNestSunblockOutlined as default } +export default IconNestSunblockOutlined diff --git a/src/IconNestSunblockOutlinedFilled.tsx b/src/IconNestSunblockOutlinedFilled.tsx index d3b443681..9ea9ecd0b 100644 --- a/src/IconNestSunblockOutlinedFilled.tsx +++ b/src/IconNestSunblockOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconNestSunblockOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconNestSunblockOutlinedFilled as default } +export default IconNestSunblockOutlinedFilled diff --git a/src/IconNestSunblockRounded.tsx b/src/IconNestSunblockRounded.tsx index a2bd11ca2..7ffbd44d1 100644 --- a/src/IconNestSunblockRounded.tsx +++ b/src/IconNestSunblockRounded.tsx @@ -8,4 +8,4 @@ const IconNestSunblockRounded: React.FC = ({ ...props }) => ( ) -export { IconNestSunblockRounded as default } +export default IconNestSunblockRounded diff --git a/src/IconNestSunblockRoundedFilled.tsx b/src/IconNestSunblockRoundedFilled.tsx index 7dd3021dd..8db05336d 100644 --- a/src/IconNestSunblockRoundedFilled.tsx +++ b/src/IconNestSunblockRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconNestSunblockRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconNestSunblockRoundedFilled as default } +export default IconNestSunblockRoundedFilled diff --git a/src/IconNestSunblockSharp.tsx b/src/IconNestSunblockSharp.tsx index b5c78113f..edda75769 100644 --- a/src/IconNestSunblockSharp.tsx +++ b/src/IconNestSunblockSharp.tsx @@ -8,4 +8,4 @@ const IconNestSunblockSharp: React.FC = ({ ...props }) => ( ) -export { IconNestSunblockSharp as default } +export default IconNestSunblockSharp diff --git a/src/IconNestSunblockSharpFilled.tsx b/src/IconNestSunblockSharpFilled.tsx index 3bf3571c6..893f843d1 100644 --- a/src/IconNestSunblockSharpFilled.tsx +++ b/src/IconNestSunblockSharpFilled.tsx @@ -8,4 +8,4 @@ const IconNestSunblockSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconNestSunblockSharpFilled as default } +export default IconNestSunblockSharpFilled diff --git a/src/IconNestTagOutlined.tsx b/src/IconNestTagOutlined.tsx index 0905c88fb..d44e3670e 100644 --- a/src/IconNestTagOutlined.tsx +++ b/src/IconNestTagOutlined.tsx @@ -8,4 +8,4 @@ const IconNestTagOutlined: React.FC = ({ ...props }) => ( ) -export { IconNestTagOutlined as default } +export default IconNestTagOutlined diff --git a/src/IconNestTagOutlinedFilled.tsx b/src/IconNestTagOutlinedFilled.tsx index f003e83a4..1cc350295 100644 --- a/src/IconNestTagOutlinedFilled.tsx +++ b/src/IconNestTagOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconNestTagOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconNestTagOutlinedFilled as default } +export default IconNestTagOutlinedFilled diff --git a/src/IconNestTagRounded.tsx b/src/IconNestTagRounded.tsx index 4334d34ce..f42ab007b 100644 --- a/src/IconNestTagRounded.tsx +++ b/src/IconNestTagRounded.tsx @@ -8,4 +8,4 @@ const IconNestTagRounded: React.FC = ({ ...props }) => ( ) -export { IconNestTagRounded as default } +export default IconNestTagRounded diff --git a/src/IconNestTagRoundedFilled.tsx b/src/IconNestTagRoundedFilled.tsx index f16882eb6..cc62fd9f3 100644 --- a/src/IconNestTagRoundedFilled.tsx +++ b/src/IconNestTagRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconNestTagRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconNestTagRoundedFilled as default } +export default IconNestTagRoundedFilled diff --git a/src/IconNestTagSharp.tsx b/src/IconNestTagSharp.tsx index 5ea401f0e..69eaa5112 100644 --- a/src/IconNestTagSharp.tsx +++ b/src/IconNestTagSharp.tsx @@ -8,4 +8,4 @@ const IconNestTagSharp: React.FC = ({ ...props }) => ( ) -export { IconNestTagSharp as default } +export default IconNestTagSharp diff --git a/src/IconNestTagSharpFilled.tsx b/src/IconNestTagSharpFilled.tsx index 2171d8995..c29d9640c 100644 --- a/src/IconNestTagSharpFilled.tsx +++ b/src/IconNestTagSharpFilled.tsx @@ -8,4 +8,4 @@ const IconNestTagSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconNestTagSharpFilled as default } +export default IconNestTagSharpFilled diff --git a/src/IconNestThermostatEEuOutlined.tsx b/src/IconNestThermostatEEuOutlined.tsx index 3525f0d74..b0c845e27 100644 --- a/src/IconNestThermostatEEuOutlined.tsx +++ b/src/IconNestThermostatEEuOutlined.tsx @@ -8,4 +8,4 @@ const IconNestThermostatEEuOutlined: React.FC = ({ ...props }) => ( ) -export { IconNestThermostatEEuOutlined as default } +export default IconNestThermostatEEuOutlined diff --git a/src/IconNestThermostatEEuOutlinedFilled.tsx b/src/IconNestThermostatEEuOutlinedFilled.tsx index 193e62b0b..daf9fa17f 100644 --- a/src/IconNestThermostatEEuOutlinedFilled.tsx +++ b/src/IconNestThermostatEEuOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconNestThermostatEEuOutlinedFilled: React.FC = ({ ) -export { IconNestThermostatEEuOutlinedFilled as default } +export default IconNestThermostatEEuOutlinedFilled diff --git a/src/IconNestThermostatEEuRounded.tsx b/src/IconNestThermostatEEuRounded.tsx index c0f78732c..3fb7be7bf 100644 --- a/src/IconNestThermostatEEuRounded.tsx +++ b/src/IconNestThermostatEEuRounded.tsx @@ -8,4 +8,4 @@ const IconNestThermostatEEuRounded: React.FC = ({ ...props }) => ( ) -export { IconNestThermostatEEuRounded as default } +export default IconNestThermostatEEuRounded diff --git a/src/IconNestThermostatEEuRoundedFilled.tsx b/src/IconNestThermostatEEuRoundedFilled.tsx index 2fe993adb..706926a70 100644 --- a/src/IconNestThermostatEEuRoundedFilled.tsx +++ b/src/IconNestThermostatEEuRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconNestThermostatEEuRoundedFilled: React.FC = ({ ) -export { IconNestThermostatEEuRoundedFilled as default } +export default IconNestThermostatEEuRoundedFilled diff --git a/src/IconNestThermostatEEuSharp.tsx b/src/IconNestThermostatEEuSharp.tsx index ae20b0897..895f1c358 100644 --- a/src/IconNestThermostatEEuSharp.tsx +++ b/src/IconNestThermostatEEuSharp.tsx @@ -8,4 +8,4 @@ const IconNestThermostatEEuSharp: React.FC = ({ ...props }) => ( ) -export { IconNestThermostatEEuSharp as default } +export default IconNestThermostatEEuSharp diff --git a/src/IconNestThermostatEEuSharpFilled.tsx b/src/IconNestThermostatEEuSharpFilled.tsx index 663d760c2..2e38ea87d 100644 --- a/src/IconNestThermostatEEuSharpFilled.tsx +++ b/src/IconNestThermostatEEuSharpFilled.tsx @@ -10,4 +10,4 @@ const IconNestThermostatEEuSharpFilled: React.FC = ({ ) -export { IconNestThermostatEEuSharpFilled as default } +export default IconNestThermostatEEuSharpFilled diff --git a/src/IconNestThermostatGen3Outlined.tsx b/src/IconNestThermostatGen3Outlined.tsx index 527d310be..0fe41d6b3 100644 --- a/src/IconNestThermostatGen3Outlined.tsx +++ b/src/IconNestThermostatGen3Outlined.tsx @@ -8,4 +8,4 @@ const IconNestThermostatGen3Outlined: React.FC = ({ ...props }) => ( ) -export { IconNestThermostatGen3Outlined as default } +export default IconNestThermostatGen3Outlined diff --git a/src/IconNestThermostatGen3OutlinedFilled.tsx b/src/IconNestThermostatGen3OutlinedFilled.tsx index 6f00289c1..66ec26a04 100644 --- a/src/IconNestThermostatGen3OutlinedFilled.tsx +++ b/src/IconNestThermostatGen3OutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconNestThermostatGen3OutlinedFilled: React.FC = ({ ) -export { IconNestThermostatGen3OutlinedFilled as default } +export default IconNestThermostatGen3OutlinedFilled diff --git a/src/IconNestThermostatGen3Rounded.tsx b/src/IconNestThermostatGen3Rounded.tsx index 9da859067..f6cc59899 100644 --- a/src/IconNestThermostatGen3Rounded.tsx +++ b/src/IconNestThermostatGen3Rounded.tsx @@ -8,4 +8,4 @@ const IconNestThermostatGen3Rounded: React.FC = ({ ...props }) => ( ) -export { IconNestThermostatGen3Rounded as default } +export default IconNestThermostatGen3Rounded diff --git a/src/IconNestThermostatGen3RoundedFilled.tsx b/src/IconNestThermostatGen3RoundedFilled.tsx index 3a436772e..ef1ada019 100644 --- a/src/IconNestThermostatGen3RoundedFilled.tsx +++ b/src/IconNestThermostatGen3RoundedFilled.tsx @@ -10,4 +10,4 @@ const IconNestThermostatGen3RoundedFilled: React.FC = ({ ) -export { IconNestThermostatGen3RoundedFilled as default } +export default IconNestThermostatGen3RoundedFilled diff --git a/src/IconNestThermostatGen3Sharp.tsx b/src/IconNestThermostatGen3Sharp.tsx index 9e18dae6d..66f775653 100644 --- a/src/IconNestThermostatGen3Sharp.tsx +++ b/src/IconNestThermostatGen3Sharp.tsx @@ -8,4 +8,4 @@ const IconNestThermostatGen3Sharp: React.FC = ({ ...props }) => ( ) -export { IconNestThermostatGen3Sharp as default } +export default IconNestThermostatGen3Sharp diff --git a/src/IconNestThermostatGen3SharpFilled.tsx b/src/IconNestThermostatGen3SharpFilled.tsx index bcc9f663e..e525d22d2 100644 --- a/src/IconNestThermostatGen3SharpFilled.tsx +++ b/src/IconNestThermostatGen3SharpFilled.tsx @@ -10,4 +10,4 @@ const IconNestThermostatGen3SharpFilled: React.FC = ({ ) -export { IconNestThermostatGen3SharpFilled as default } +export default IconNestThermostatGen3SharpFilled diff --git a/src/IconNestThermostatOutlined.tsx b/src/IconNestThermostatOutlined.tsx index 873012b90..91ef0241a 100644 --- a/src/IconNestThermostatOutlined.tsx +++ b/src/IconNestThermostatOutlined.tsx @@ -8,4 +8,4 @@ const IconNestThermostatOutlined: React.FC = ({ ...props }) => ( ) -export { IconNestThermostatOutlined as default } +export default IconNestThermostatOutlined diff --git a/src/IconNestThermostatOutlinedFilled.tsx b/src/IconNestThermostatOutlinedFilled.tsx index c24f9977a..7f9e508ac 100644 --- a/src/IconNestThermostatOutlinedFilled.tsx +++ b/src/IconNestThermostatOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconNestThermostatOutlinedFilled: React.FC = ({ ) -export { IconNestThermostatOutlinedFilled as default } +export default IconNestThermostatOutlinedFilled diff --git a/src/IconNestThermostatRounded.tsx b/src/IconNestThermostatRounded.tsx index 9c73eaa39..096a74022 100644 --- a/src/IconNestThermostatRounded.tsx +++ b/src/IconNestThermostatRounded.tsx @@ -8,4 +8,4 @@ const IconNestThermostatRounded: React.FC = ({ ...props }) => ( ) -export { IconNestThermostatRounded as default } +export default IconNestThermostatRounded diff --git a/src/IconNestThermostatRoundedFilled.tsx b/src/IconNestThermostatRoundedFilled.tsx index 14eb46749..8e68d375f 100644 --- a/src/IconNestThermostatRoundedFilled.tsx +++ b/src/IconNestThermostatRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconNestThermostatRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconNestThermostatRoundedFilled as default } +export default IconNestThermostatRoundedFilled diff --git a/src/IconNestThermostatSensorEuOutlined.tsx b/src/IconNestThermostatSensorEuOutlined.tsx index 980eef4ba..272e8d089 100644 --- a/src/IconNestThermostatSensorEuOutlined.tsx +++ b/src/IconNestThermostatSensorEuOutlined.tsx @@ -10,4 +10,4 @@ const IconNestThermostatSensorEuOutlined: React.FC = ({ ) -export { IconNestThermostatSensorEuOutlined as default } +export default IconNestThermostatSensorEuOutlined diff --git a/src/IconNestThermostatSensorEuOutlinedFilled.tsx b/src/IconNestThermostatSensorEuOutlinedFilled.tsx index 3c1ef36e9..d1c8a3c6e 100644 --- a/src/IconNestThermostatSensorEuOutlinedFilled.tsx +++ b/src/IconNestThermostatSensorEuOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconNestThermostatSensorEuOutlinedFilled: React.FC = ({ ) -export { IconNestThermostatSensorEuOutlinedFilled as default } +export default IconNestThermostatSensorEuOutlinedFilled diff --git a/src/IconNestThermostatSensorEuRounded.tsx b/src/IconNestThermostatSensorEuRounded.tsx index 79da42df4..78902ffe8 100644 --- a/src/IconNestThermostatSensorEuRounded.tsx +++ b/src/IconNestThermostatSensorEuRounded.tsx @@ -10,4 +10,4 @@ const IconNestThermostatSensorEuRounded: React.FC = ({ ) -export { IconNestThermostatSensorEuRounded as default } +export default IconNestThermostatSensorEuRounded diff --git a/src/IconNestThermostatSensorEuRoundedFilled.tsx b/src/IconNestThermostatSensorEuRoundedFilled.tsx index 3a4771a64..4cf05980c 100644 --- a/src/IconNestThermostatSensorEuRoundedFilled.tsx +++ b/src/IconNestThermostatSensorEuRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconNestThermostatSensorEuRoundedFilled: React.FC = ({ ) -export { IconNestThermostatSensorEuRoundedFilled as default } +export default IconNestThermostatSensorEuRoundedFilled diff --git a/src/IconNestThermostatSensorEuSharp.tsx b/src/IconNestThermostatSensorEuSharp.tsx index 2b5a2fd0c..72b2882c2 100644 --- a/src/IconNestThermostatSensorEuSharp.tsx +++ b/src/IconNestThermostatSensorEuSharp.tsx @@ -8,4 +8,4 @@ const IconNestThermostatSensorEuSharp: React.FC = ({ ...props }) => ( ) -export { IconNestThermostatSensorEuSharp as default } +export default IconNestThermostatSensorEuSharp diff --git a/src/IconNestThermostatSensorEuSharpFilled.tsx b/src/IconNestThermostatSensorEuSharpFilled.tsx index 176542ec5..d0550bf6c 100644 --- a/src/IconNestThermostatSensorEuSharpFilled.tsx +++ b/src/IconNestThermostatSensorEuSharpFilled.tsx @@ -10,4 +10,4 @@ const IconNestThermostatSensorEuSharpFilled: React.FC = ({ ) -export { IconNestThermostatSensorEuSharpFilled as default } +export default IconNestThermostatSensorEuSharpFilled diff --git a/src/IconNestThermostatSensorOutlined.tsx b/src/IconNestThermostatSensorOutlined.tsx index 5d3b8dc05..51765b9ed 100644 --- a/src/IconNestThermostatSensorOutlined.tsx +++ b/src/IconNestThermostatSensorOutlined.tsx @@ -10,4 +10,4 @@ const IconNestThermostatSensorOutlined: React.FC = ({ ) -export { IconNestThermostatSensorOutlined as default } +export default IconNestThermostatSensorOutlined diff --git a/src/IconNestThermostatSensorOutlinedFilled.tsx b/src/IconNestThermostatSensorOutlinedFilled.tsx index 43b563e3a..f0289a056 100644 --- a/src/IconNestThermostatSensorOutlinedFilled.tsx +++ b/src/IconNestThermostatSensorOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconNestThermostatSensorOutlinedFilled: React.FC = ({ ) -export { IconNestThermostatSensorOutlinedFilled as default } +export default IconNestThermostatSensorOutlinedFilled diff --git a/src/IconNestThermostatSensorRounded.tsx b/src/IconNestThermostatSensorRounded.tsx index 646386bff..c25db1c0e 100644 --- a/src/IconNestThermostatSensorRounded.tsx +++ b/src/IconNestThermostatSensorRounded.tsx @@ -8,4 +8,4 @@ const IconNestThermostatSensorRounded: React.FC = ({ ...props }) => ( ) -export { IconNestThermostatSensorRounded as default } +export default IconNestThermostatSensorRounded diff --git a/src/IconNestThermostatSensorRoundedFilled.tsx b/src/IconNestThermostatSensorRoundedFilled.tsx index cf98ad013..c3ad7298f 100644 --- a/src/IconNestThermostatSensorRoundedFilled.tsx +++ b/src/IconNestThermostatSensorRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconNestThermostatSensorRoundedFilled: React.FC = ({ ) -export { IconNestThermostatSensorRoundedFilled as default } +export default IconNestThermostatSensorRoundedFilled diff --git a/src/IconNestThermostatSensorSharp.tsx b/src/IconNestThermostatSensorSharp.tsx index dcfa9c3b4..aa6695307 100644 --- a/src/IconNestThermostatSensorSharp.tsx +++ b/src/IconNestThermostatSensorSharp.tsx @@ -8,4 +8,4 @@ const IconNestThermostatSensorSharp: React.FC = ({ ...props }) => ( ) -export { IconNestThermostatSensorSharp as default } +export default IconNestThermostatSensorSharp diff --git a/src/IconNestThermostatSensorSharpFilled.tsx b/src/IconNestThermostatSensorSharpFilled.tsx index b91bdf069..f08ce330f 100644 --- a/src/IconNestThermostatSensorSharpFilled.tsx +++ b/src/IconNestThermostatSensorSharpFilled.tsx @@ -10,4 +10,4 @@ const IconNestThermostatSensorSharpFilled: React.FC = ({ ) -export { IconNestThermostatSensorSharpFilled as default } +export default IconNestThermostatSensorSharpFilled diff --git a/src/IconNestThermostatSharp.tsx b/src/IconNestThermostatSharp.tsx index 2f0b562c9..36d7d5e15 100644 --- a/src/IconNestThermostatSharp.tsx +++ b/src/IconNestThermostatSharp.tsx @@ -8,4 +8,4 @@ const IconNestThermostatSharp: React.FC = ({ ...props }) => ( ) -export { IconNestThermostatSharp as default } +export default IconNestThermostatSharp diff --git a/src/IconNestThermostatSharpFilled.tsx b/src/IconNestThermostatSharpFilled.tsx index b43e15cc4..4eed7f946 100644 --- a/src/IconNestThermostatSharpFilled.tsx +++ b/src/IconNestThermostatSharpFilled.tsx @@ -8,4 +8,4 @@ const IconNestThermostatSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconNestThermostatSharpFilled as default } +export default IconNestThermostatSharpFilled diff --git a/src/IconNestThermostatZirconiumEuOutlined.tsx b/src/IconNestThermostatZirconiumEuOutlined.tsx index a18cc2e77..7c9051b97 100644 --- a/src/IconNestThermostatZirconiumEuOutlined.tsx +++ b/src/IconNestThermostatZirconiumEuOutlined.tsx @@ -10,4 +10,4 @@ const IconNestThermostatZirconiumEuOutlined: React.FC = ({ ) -export { IconNestThermostatZirconiumEuOutlined as default } +export default IconNestThermostatZirconiumEuOutlined diff --git a/src/IconNestThermostatZirconiumEuOutlinedFilled.tsx b/src/IconNestThermostatZirconiumEuOutlinedFilled.tsx index c6d167ac0..95f9d93fb 100644 --- a/src/IconNestThermostatZirconiumEuOutlinedFilled.tsx +++ b/src/IconNestThermostatZirconiumEuOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconNestThermostatZirconiumEuOutlinedFilled: React.FC = ({ ) -export { IconNestThermostatZirconiumEuOutlinedFilled as default } +export default IconNestThermostatZirconiumEuOutlinedFilled diff --git a/src/IconNestThermostatZirconiumEuRounded.tsx b/src/IconNestThermostatZirconiumEuRounded.tsx index 1db987511..97abbd999 100644 --- a/src/IconNestThermostatZirconiumEuRounded.tsx +++ b/src/IconNestThermostatZirconiumEuRounded.tsx @@ -10,4 +10,4 @@ const IconNestThermostatZirconiumEuRounded: React.FC = ({ ) -export { IconNestThermostatZirconiumEuRounded as default } +export default IconNestThermostatZirconiumEuRounded diff --git a/src/IconNestThermostatZirconiumEuRoundedFilled.tsx b/src/IconNestThermostatZirconiumEuRoundedFilled.tsx index dddc33203..ba6e1184f 100644 --- a/src/IconNestThermostatZirconiumEuRoundedFilled.tsx +++ b/src/IconNestThermostatZirconiumEuRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconNestThermostatZirconiumEuRoundedFilled: React.FC = ({ ) -export { IconNestThermostatZirconiumEuRoundedFilled as default } +export default IconNestThermostatZirconiumEuRoundedFilled diff --git a/src/IconNestThermostatZirconiumEuSharp.tsx b/src/IconNestThermostatZirconiumEuSharp.tsx index 49df0e75c..358a7983b 100644 --- a/src/IconNestThermostatZirconiumEuSharp.tsx +++ b/src/IconNestThermostatZirconiumEuSharp.tsx @@ -10,4 +10,4 @@ const IconNestThermostatZirconiumEuSharp: React.FC = ({ ) -export { IconNestThermostatZirconiumEuSharp as default } +export default IconNestThermostatZirconiumEuSharp diff --git a/src/IconNestThermostatZirconiumEuSharpFilled.tsx b/src/IconNestThermostatZirconiumEuSharpFilled.tsx index c5c6ad7a4..2cecc33e0 100644 --- a/src/IconNestThermostatZirconiumEuSharpFilled.tsx +++ b/src/IconNestThermostatZirconiumEuSharpFilled.tsx @@ -10,4 +10,4 @@ const IconNestThermostatZirconiumEuSharpFilled: React.FC = ({ ) -export { IconNestThermostatZirconiumEuSharpFilled as default } +export default IconNestThermostatZirconiumEuSharpFilled diff --git a/src/IconNestTrueRadiantOutlined.tsx b/src/IconNestTrueRadiantOutlined.tsx index e77d766dc..3eba33526 100644 --- a/src/IconNestTrueRadiantOutlined.tsx +++ b/src/IconNestTrueRadiantOutlined.tsx @@ -8,4 +8,4 @@ const IconNestTrueRadiantOutlined: React.FC = ({ ...props }) => ( ) -export { IconNestTrueRadiantOutlined as default } +export default IconNestTrueRadiantOutlined diff --git a/src/IconNestTrueRadiantOutlinedFilled.tsx b/src/IconNestTrueRadiantOutlinedFilled.tsx index 1809d0e37..33e0d4297 100644 --- a/src/IconNestTrueRadiantOutlinedFilled.tsx +++ b/src/IconNestTrueRadiantOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconNestTrueRadiantOutlinedFilled: React.FC = ({ ) -export { IconNestTrueRadiantOutlinedFilled as default } +export default IconNestTrueRadiantOutlinedFilled diff --git a/src/IconNestTrueRadiantRounded.tsx b/src/IconNestTrueRadiantRounded.tsx index 5d945763c..1e29de218 100644 --- a/src/IconNestTrueRadiantRounded.tsx +++ b/src/IconNestTrueRadiantRounded.tsx @@ -8,4 +8,4 @@ const IconNestTrueRadiantRounded: React.FC = ({ ...props }) => ( ) -export { IconNestTrueRadiantRounded as default } +export default IconNestTrueRadiantRounded diff --git a/src/IconNestTrueRadiantRoundedFilled.tsx b/src/IconNestTrueRadiantRoundedFilled.tsx index 654dc778b..cdac69292 100644 --- a/src/IconNestTrueRadiantRoundedFilled.tsx +++ b/src/IconNestTrueRadiantRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconNestTrueRadiantRoundedFilled: React.FC = ({ ) -export { IconNestTrueRadiantRoundedFilled as default } +export default IconNestTrueRadiantRoundedFilled diff --git a/src/IconNestTrueRadiantSharp.tsx b/src/IconNestTrueRadiantSharp.tsx index 4dbc7ba20..71618f59b 100644 --- a/src/IconNestTrueRadiantSharp.tsx +++ b/src/IconNestTrueRadiantSharp.tsx @@ -8,4 +8,4 @@ const IconNestTrueRadiantSharp: React.FC = ({ ...props }) => ( ) -export { IconNestTrueRadiantSharp as default } +export default IconNestTrueRadiantSharp diff --git a/src/IconNestTrueRadiantSharpFilled.tsx b/src/IconNestTrueRadiantSharpFilled.tsx index 928c0e670..367dea5b6 100644 --- a/src/IconNestTrueRadiantSharpFilled.tsx +++ b/src/IconNestTrueRadiantSharpFilled.tsx @@ -8,4 +8,4 @@ const IconNestTrueRadiantSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconNestTrueRadiantSharpFilled as default } +export default IconNestTrueRadiantSharpFilled diff --git a/src/IconNestWakeOnApproachOutlined.tsx b/src/IconNestWakeOnApproachOutlined.tsx index 89496e9e8..73248d460 100644 --- a/src/IconNestWakeOnApproachOutlined.tsx +++ b/src/IconNestWakeOnApproachOutlined.tsx @@ -8,4 +8,4 @@ const IconNestWakeOnApproachOutlined: React.FC = ({ ...props }) => ( ) -export { IconNestWakeOnApproachOutlined as default } +export default IconNestWakeOnApproachOutlined diff --git a/src/IconNestWakeOnApproachOutlinedFilled.tsx b/src/IconNestWakeOnApproachOutlinedFilled.tsx index 435c49c3c..528f0e9f8 100644 --- a/src/IconNestWakeOnApproachOutlinedFilled.tsx +++ b/src/IconNestWakeOnApproachOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconNestWakeOnApproachOutlinedFilled: React.FC = ({ ) -export { IconNestWakeOnApproachOutlinedFilled as default } +export default IconNestWakeOnApproachOutlinedFilled diff --git a/src/IconNestWakeOnApproachRounded.tsx b/src/IconNestWakeOnApproachRounded.tsx index 9a933f489..78fa321e9 100644 --- a/src/IconNestWakeOnApproachRounded.tsx +++ b/src/IconNestWakeOnApproachRounded.tsx @@ -8,4 +8,4 @@ const IconNestWakeOnApproachRounded: React.FC = ({ ...props }) => ( ) -export { IconNestWakeOnApproachRounded as default } +export default IconNestWakeOnApproachRounded diff --git a/src/IconNestWakeOnApproachRoundedFilled.tsx b/src/IconNestWakeOnApproachRoundedFilled.tsx index 1a7865833..707f0ac10 100644 --- a/src/IconNestWakeOnApproachRoundedFilled.tsx +++ b/src/IconNestWakeOnApproachRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconNestWakeOnApproachRoundedFilled: React.FC = ({ ) -export { IconNestWakeOnApproachRoundedFilled as default } +export default IconNestWakeOnApproachRoundedFilled diff --git a/src/IconNestWakeOnApproachSharp.tsx b/src/IconNestWakeOnApproachSharp.tsx index 1433440c0..37357ae9e 100644 --- a/src/IconNestWakeOnApproachSharp.tsx +++ b/src/IconNestWakeOnApproachSharp.tsx @@ -8,4 +8,4 @@ const IconNestWakeOnApproachSharp: React.FC = ({ ...props }) => ( ) -export { IconNestWakeOnApproachSharp as default } +export default IconNestWakeOnApproachSharp diff --git a/src/IconNestWakeOnApproachSharpFilled.tsx b/src/IconNestWakeOnApproachSharpFilled.tsx index 313291c64..80f336777 100644 --- a/src/IconNestWakeOnApproachSharpFilled.tsx +++ b/src/IconNestWakeOnApproachSharpFilled.tsx @@ -10,4 +10,4 @@ const IconNestWakeOnApproachSharpFilled: React.FC = ({ ) -export { IconNestWakeOnApproachSharpFilled as default } +export default IconNestWakeOnApproachSharpFilled diff --git a/src/IconNestWakeOnPressOutlined.tsx b/src/IconNestWakeOnPressOutlined.tsx index 171a6e8fb..ccd0fb883 100644 --- a/src/IconNestWakeOnPressOutlined.tsx +++ b/src/IconNestWakeOnPressOutlined.tsx @@ -8,4 +8,4 @@ const IconNestWakeOnPressOutlined: React.FC = ({ ...props }) => ( ) -export { IconNestWakeOnPressOutlined as default } +export default IconNestWakeOnPressOutlined diff --git a/src/IconNestWakeOnPressOutlinedFilled.tsx b/src/IconNestWakeOnPressOutlinedFilled.tsx index 419ead9fd..6f37df6d0 100644 --- a/src/IconNestWakeOnPressOutlinedFilled.tsx +++ b/src/IconNestWakeOnPressOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconNestWakeOnPressOutlinedFilled: React.FC = ({ ) -export { IconNestWakeOnPressOutlinedFilled as default } +export default IconNestWakeOnPressOutlinedFilled diff --git a/src/IconNestWakeOnPressRounded.tsx b/src/IconNestWakeOnPressRounded.tsx index 8edb127ee..a5856f23b 100644 --- a/src/IconNestWakeOnPressRounded.tsx +++ b/src/IconNestWakeOnPressRounded.tsx @@ -8,4 +8,4 @@ const IconNestWakeOnPressRounded: React.FC = ({ ...props }) => ( ) -export { IconNestWakeOnPressRounded as default } +export default IconNestWakeOnPressRounded diff --git a/src/IconNestWakeOnPressRoundedFilled.tsx b/src/IconNestWakeOnPressRoundedFilled.tsx index ffcf6c113..d5d353a7a 100644 --- a/src/IconNestWakeOnPressRoundedFilled.tsx +++ b/src/IconNestWakeOnPressRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconNestWakeOnPressRoundedFilled: React.FC = ({ ) -export { IconNestWakeOnPressRoundedFilled as default } +export default IconNestWakeOnPressRoundedFilled diff --git a/src/IconNestWakeOnPressSharp.tsx b/src/IconNestWakeOnPressSharp.tsx index 863869411..10484fbbd 100644 --- a/src/IconNestWakeOnPressSharp.tsx +++ b/src/IconNestWakeOnPressSharp.tsx @@ -8,4 +8,4 @@ const IconNestWakeOnPressSharp: React.FC = ({ ...props }) => ( ) -export { IconNestWakeOnPressSharp as default } +export default IconNestWakeOnPressSharp diff --git a/src/IconNestWakeOnPressSharpFilled.tsx b/src/IconNestWakeOnPressSharpFilled.tsx index 1bfc32cca..319105638 100644 --- a/src/IconNestWakeOnPressSharpFilled.tsx +++ b/src/IconNestWakeOnPressSharpFilled.tsx @@ -8,4 +8,4 @@ const IconNestWakeOnPressSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconNestWakeOnPressSharpFilled as default } +export default IconNestWakeOnPressSharpFilled diff --git a/src/IconNestWifiPointOutlined.tsx b/src/IconNestWifiPointOutlined.tsx index 8dab053f5..ca046895f 100644 --- a/src/IconNestWifiPointOutlined.tsx +++ b/src/IconNestWifiPointOutlined.tsx @@ -8,4 +8,4 @@ const IconNestWifiPointOutlined: React.FC = ({ ...props }) => ( ) -export { IconNestWifiPointOutlined as default } +export default IconNestWifiPointOutlined diff --git a/src/IconNestWifiPointOutlinedFilled.tsx b/src/IconNestWifiPointOutlinedFilled.tsx index 7e0deaae2..e91ebe13c 100644 --- a/src/IconNestWifiPointOutlinedFilled.tsx +++ b/src/IconNestWifiPointOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconNestWifiPointOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconNestWifiPointOutlinedFilled as default } +export default IconNestWifiPointOutlinedFilled diff --git a/src/IconNestWifiPointRounded.tsx b/src/IconNestWifiPointRounded.tsx index da4a54926..6bed1ac53 100644 --- a/src/IconNestWifiPointRounded.tsx +++ b/src/IconNestWifiPointRounded.tsx @@ -8,4 +8,4 @@ const IconNestWifiPointRounded: React.FC = ({ ...props }) => ( ) -export { IconNestWifiPointRounded as default } +export default IconNestWifiPointRounded diff --git a/src/IconNestWifiPointRoundedFilled.tsx b/src/IconNestWifiPointRoundedFilled.tsx index 691efc8cc..ebaad0261 100644 --- a/src/IconNestWifiPointRoundedFilled.tsx +++ b/src/IconNestWifiPointRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconNestWifiPointRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconNestWifiPointRoundedFilled as default } +export default IconNestWifiPointRoundedFilled diff --git a/src/IconNestWifiPointSharp.tsx b/src/IconNestWifiPointSharp.tsx index dc3fd157e..69ae1a8ba 100644 --- a/src/IconNestWifiPointSharp.tsx +++ b/src/IconNestWifiPointSharp.tsx @@ -8,4 +8,4 @@ const IconNestWifiPointSharp: React.FC = ({ ...props }) => ( ) -export { IconNestWifiPointSharp as default } +export default IconNestWifiPointSharp diff --git a/src/IconNestWifiPointSharpFilled.tsx b/src/IconNestWifiPointSharpFilled.tsx index 93fafe025..6dae0f67f 100644 --- a/src/IconNestWifiPointSharpFilled.tsx +++ b/src/IconNestWifiPointSharpFilled.tsx @@ -8,4 +8,4 @@ const IconNestWifiPointSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconNestWifiPointSharpFilled as default } +export default IconNestWifiPointSharpFilled diff --git a/src/IconNestWifiPro2Outlined.tsx b/src/IconNestWifiPro2Outlined.tsx index 2460ba46e..59a20d659 100644 --- a/src/IconNestWifiPro2Outlined.tsx +++ b/src/IconNestWifiPro2Outlined.tsx @@ -8,4 +8,4 @@ const IconNestWifiPro2Outlined: React.FC = ({ ...props }) => ( ) -export { IconNestWifiPro2Outlined as default } +export default IconNestWifiPro2Outlined diff --git a/src/IconNestWifiPro2OutlinedFilled.tsx b/src/IconNestWifiPro2OutlinedFilled.tsx index 6ada87a3f..29f0c133d 100644 --- a/src/IconNestWifiPro2OutlinedFilled.tsx +++ b/src/IconNestWifiPro2OutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconNestWifiPro2OutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconNestWifiPro2OutlinedFilled as default } +export default IconNestWifiPro2OutlinedFilled diff --git a/src/IconNestWifiPro2Rounded.tsx b/src/IconNestWifiPro2Rounded.tsx index 0a74b8bfc..265662ba7 100644 --- a/src/IconNestWifiPro2Rounded.tsx +++ b/src/IconNestWifiPro2Rounded.tsx @@ -8,4 +8,4 @@ const IconNestWifiPro2Rounded: React.FC = ({ ...props }) => ( ) -export { IconNestWifiPro2Rounded as default } +export default IconNestWifiPro2Rounded diff --git a/src/IconNestWifiPro2RoundedFilled.tsx b/src/IconNestWifiPro2RoundedFilled.tsx index c28e3de89..245128904 100644 --- a/src/IconNestWifiPro2RoundedFilled.tsx +++ b/src/IconNestWifiPro2RoundedFilled.tsx @@ -8,4 +8,4 @@ const IconNestWifiPro2RoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconNestWifiPro2RoundedFilled as default } +export default IconNestWifiPro2RoundedFilled diff --git a/src/IconNestWifiPro2Sharp.tsx b/src/IconNestWifiPro2Sharp.tsx index 2aab0a2c1..359d7e046 100644 --- a/src/IconNestWifiPro2Sharp.tsx +++ b/src/IconNestWifiPro2Sharp.tsx @@ -8,4 +8,4 @@ const IconNestWifiPro2Sharp: React.FC = ({ ...props }) => ( ) -export { IconNestWifiPro2Sharp as default } +export default IconNestWifiPro2Sharp diff --git a/src/IconNestWifiPro2SharpFilled.tsx b/src/IconNestWifiPro2SharpFilled.tsx index bcc1f0ee8..741591a8f 100644 --- a/src/IconNestWifiPro2SharpFilled.tsx +++ b/src/IconNestWifiPro2SharpFilled.tsx @@ -8,4 +8,4 @@ const IconNestWifiPro2SharpFilled: React.FC = ({ ...props }) => ( ) -export { IconNestWifiPro2SharpFilled as default } +export default IconNestWifiPro2SharpFilled diff --git a/src/IconNestWifiProOutlined.tsx b/src/IconNestWifiProOutlined.tsx index dce22fc4e..d67637ed8 100644 --- a/src/IconNestWifiProOutlined.tsx +++ b/src/IconNestWifiProOutlined.tsx @@ -8,4 +8,4 @@ const IconNestWifiProOutlined: React.FC = ({ ...props }) => ( ) -export { IconNestWifiProOutlined as default } +export default IconNestWifiProOutlined diff --git a/src/IconNestWifiProOutlinedFilled.tsx b/src/IconNestWifiProOutlinedFilled.tsx index da2101bb5..bccce53e8 100644 --- a/src/IconNestWifiProOutlinedFilled.tsx +++ b/src/IconNestWifiProOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconNestWifiProOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconNestWifiProOutlinedFilled as default } +export default IconNestWifiProOutlinedFilled diff --git a/src/IconNestWifiProRounded.tsx b/src/IconNestWifiProRounded.tsx index 5a88c8d2b..e05b587df 100644 --- a/src/IconNestWifiProRounded.tsx +++ b/src/IconNestWifiProRounded.tsx @@ -8,4 +8,4 @@ const IconNestWifiProRounded: React.FC = ({ ...props }) => ( ) -export { IconNestWifiProRounded as default } +export default IconNestWifiProRounded diff --git a/src/IconNestWifiProRoundedFilled.tsx b/src/IconNestWifiProRoundedFilled.tsx index 071524ef7..d2ebdda7e 100644 --- a/src/IconNestWifiProRoundedFilled.tsx +++ b/src/IconNestWifiProRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconNestWifiProRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconNestWifiProRoundedFilled as default } +export default IconNestWifiProRoundedFilled diff --git a/src/IconNestWifiProSharp.tsx b/src/IconNestWifiProSharp.tsx index b3abe9ebb..3b7eaae80 100644 --- a/src/IconNestWifiProSharp.tsx +++ b/src/IconNestWifiProSharp.tsx @@ -8,4 +8,4 @@ const IconNestWifiProSharp: React.FC = ({ ...props }) => ( ) -export { IconNestWifiProSharp as default } +export default IconNestWifiProSharp diff --git a/src/IconNestWifiProSharpFilled.tsx b/src/IconNestWifiProSharpFilled.tsx index 235a43a07..1be90c918 100644 --- a/src/IconNestWifiProSharpFilled.tsx +++ b/src/IconNestWifiProSharpFilled.tsx @@ -8,4 +8,4 @@ const IconNestWifiProSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconNestWifiProSharpFilled as default } +export default IconNestWifiProSharpFilled diff --git a/src/IconNestWifiRouterOutlined.tsx b/src/IconNestWifiRouterOutlined.tsx index 9b1f0af24..97697b390 100644 --- a/src/IconNestWifiRouterOutlined.tsx +++ b/src/IconNestWifiRouterOutlined.tsx @@ -8,4 +8,4 @@ const IconNestWifiRouterOutlined: React.FC = ({ ...props }) => ( ) -export { IconNestWifiRouterOutlined as default } +export default IconNestWifiRouterOutlined diff --git a/src/IconNestWifiRouterOutlinedFilled.tsx b/src/IconNestWifiRouterOutlinedFilled.tsx index 95f38fe5e..6168fd04b 100644 --- a/src/IconNestWifiRouterOutlinedFilled.tsx +++ b/src/IconNestWifiRouterOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconNestWifiRouterOutlinedFilled: React.FC = ({ ) -export { IconNestWifiRouterOutlinedFilled as default } +export default IconNestWifiRouterOutlinedFilled diff --git a/src/IconNestWifiRouterRounded.tsx b/src/IconNestWifiRouterRounded.tsx index 6aa5ed6b9..6812b3995 100644 --- a/src/IconNestWifiRouterRounded.tsx +++ b/src/IconNestWifiRouterRounded.tsx @@ -8,4 +8,4 @@ const IconNestWifiRouterRounded: React.FC = ({ ...props }) => ( ) -export { IconNestWifiRouterRounded as default } +export default IconNestWifiRouterRounded diff --git a/src/IconNestWifiRouterRoundedFilled.tsx b/src/IconNestWifiRouterRoundedFilled.tsx index 3f9f11318..1483cbb4b 100644 --- a/src/IconNestWifiRouterRoundedFilled.tsx +++ b/src/IconNestWifiRouterRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconNestWifiRouterRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconNestWifiRouterRoundedFilled as default } +export default IconNestWifiRouterRoundedFilled diff --git a/src/IconNestWifiRouterSharp.tsx b/src/IconNestWifiRouterSharp.tsx index 782910ef2..ca378df29 100644 --- a/src/IconNestWifiRouterSharp.tsx +++ b/src/IconNestWifiRouterSharp.tsx @@ -8,4 +8,4 @@ const IconNestWifiRouterSharp: React.FC = ({ ...props }) => ( ) -export { IconNestWifiRouterSharp as default } +export default IconNestWifiRouterSharp diff --git a/src/IconNestWifiRouterSharpFilled.tsx b/src/IconNestWifiRouterSharpFilled.tsx index 3fca97710..c2b59559b 100644 --- a/src/IconNestWifiRouterSharpFilled.tsx +++ b/src/IconNestWifiRouterSharpFilled.tsx @@ -8,4 +8,4 @@ const IconNestWifiRouterSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconNestWifiRouterSharpFilled as default } +export default IconNestWifiRouterSharpFilled diff --git a/src/IconNetworkCellOutlined.tsx b/src/IconNetworkCellOutlined.tsx index 26259ff1d..e0da62722 100644 --- a/src/IconNetworkCellOutlined.tsx +++ b/src/IconNetworkCellOutlined.tsx @@ -8,4 +8,4 @@ const IconNetworkCellOutlined: React.FC = ({ ...props }) => ( ) -export { IconNetworkCellOutlined as default } +export default IconNetworkCellOutlined diff --git a/src/IconNetworkCellOutlinedFilled.tsx b/src/IconNetworkCellOutlinedFilled.tsx index 1549dfcb4..73e8428e2 100644 --- a/src/IconNetworkCellOutlinedFilled.tsx +++ b/src/IconNetworkCellOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconNetworkCellOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconNetworkCellOutlinedFilled as default } +export default IconNetworkCellOutlinedFilled diff --git a/src/IconNetworkCellRounded.tsx b/src/IconNetworkCellRounded.tsx index 8c4857bff..8ac26dde8 100644 --- a/src/IconNetworkCellRounded.tsx +++ b/src/IconNetworkCellRounded.tsx @@ -8,4 +8,4 @@ const IconNetworkCellRounded: React.FC = ({ ...props }) => ( ) -export { IconNetworkCellRounded as default } +export default IconNetworkCellRounded diff --git a/src/IconNetworkCellRoundedFilled.tsx b/src/IconNetworkCellRoundedFilled.tsx index 140ec593f..bd91222fa 100644 --- a/src/IconNetworkCellRoundedFilled.tsx +++ b/src/IconNetworkCellRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconNetworkCellRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconNetworkCellRoundedFilled as default } +export default IconNetworkCellRoundedFilled diff --git a/src/IconNetworkCellSharp.tsx b/src/IconNetworkCellSharp.tsx index 41636fa23..e8aeb0322 100644 --- a/src/IconNetworkCellSharp.tsx +++ b/src/IconNetworkCellSharp.tsx @@ -8,4 +8,4 @@ const IconNetworkCellSharp: React.FC = ({ ...props }) => ( ) -export { IconNetworkCellSharp as default } +export default IconNetworkCellSharp diff --git a/src/IconNetworkCellSharpFilled.tsx b/src/IconNetworkCellSharpFilled.tsx index e496d40b8..fa1ad7849 100644 --- a/src/IconNetworkCellSharpFilled.tsx +++ b/src/IconNetworkCellSharpFilled.tsx @@ -8,4 +8,4 @@ const IconNetworkCellSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconNetworkCellSharpFilled as default } +export default IconNetworkCellSharpFilled diff --git a/src/IconNetworkCheckOutlined.tsx b/src/IconNetworkCheckOutlined.tsx index a7805d890..f1eb02795 100644 --- a/src/IconNetworkCheckOutlined.tsx +++ b/src/IconNetworkCheckOutlined.tsx @@ -8,4 +8,4 @@ const IconNetworkCheckOutlined: React.FC = ({ ...props }) => ( ) -export { IconNetworkCheckOutlined as default } +export default IconNetworkCheckOutlined diff --git a/src/IconNetworkCheckOutlinedFilled.tsx b/src/IconNetworkCheckOutlinedFilled.tsx index 090fe3703..672de25e9 100644 --- a/src/IconNetworkCheckOutlinedFilled.tsx +++ b/src/IconNetworkCheckOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconNetworkCheckOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconNetworkCheckOutlinedFilled as default } +export default IconNetworkCheckOutlinedFilled diff --git a/src/IconNetworkCheckRounded.tsx b/src/IconNetworkCheckRounded.tsx index 09dc3df2a..3df6d864b 100644 --- a/src/IconNetworkCheckRounded.tsx +++ b/src/IconNetworkCheckRounded.tsx @@ -8,4 +8,4 @@ const IconNetworkCheckRounded: React.FC = ({ ...props }) => ( ) -export { IconNetworkCheckRounded as default } +export default IconNetworkCheckRounded diff --git a/src/IconNetworkCheckRoundedFilled.tsx b/src/IconNetworkCheckRoundedFilled.tsx index f2cd11bda..a74880671 100644 --- a/src/IconNetworkCheckRoundedFilled.tsx +++ b/src/IconNetworkCheckRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconNetworkCheckRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconNetworkCheckRoundedFilled as default } +export default IconNetworkCheckRoundedFilled diff --git a/src/IconNetworkCheckSharp.tsx b/src/IconNetworkCheckSharp.tsx index e7e8ba8e7..a273c7e08 100644 --- a/src/IconNetworkCheckSharp.tsx +++ b/src/IconNetworkCheckSharp.tsx @@ -8,4 +8,4 @@ const IconNetworkCheckSharp: React.FC = ({ ...props }) => ( ) -export { IconNetworkCheckSharp as default } +export default IconNetworkCheckSharp diff --git a/src/IconNetworkCheckSharpFilled.tsx b/src/IconNetworkCheckSharpFilled.tsx index bd2416f85..4b6793570 100644 --- a/src/IconNetworkCheckSharpFilled.tsx +++ b/src/IconNetworkCheckSharpFilled.tsx @@ -8,4 +8,4 @@ const IconNetworkCheckSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconNetworkCheckSharpFilled as default } +export default IconNetworkCheckSharpFilled diff --git a/src/IconNetworkIntelligenceHistoryOutlined.tsx b/src/IconNetworkIntelligenceHistoryOutlined.tsx index 95e7b6c6e..c29602261 100644 --- a/src/IconNetworkIntelligenceHistoryOutlined.tsx +++ b/src/IconNetworkIntelligenceHistoryOutlined.tsx @@ -10,4 +10,4 @@ const IconNetworkIntelligenceHistoryOutlined: React.FC = ({ ) -export { IconNetworkIntelligenceHistoryOutlined as default } +export default IconNetworkIntelligenceHistoryOutlined diff --git a/src/IconNetworkIntelligenceHistoryOutlinedFilled.tsx b/src/IconNetworkIntelligenceHistoryOutlinedFilled.tsx index 4b3b8ad59..f55832d93 100644 --- a/src/IconNetworkIntelligenceHistoryOutlinedFilled.tsx +++ b/src/IconNetworkIntelligenceHistoryOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconNetworkIntelligenceHistoryOutlinedFilled: React.FC = ({ ) -export { IconNetworkIntelligenceHistoryOutlinedFilled as default } +export default IconNetworkIntelligenceHistoryOutlinedFilled diff --git a/src/IconNetworkIntelligenceHistoryRounded.tsx b/src/IconNetworkIntelligenceHistoryRounded.tsx index 4e8c3d3cf..f05f7be2b 100644 --- a/src/IconNetworkIntelligenceHistoryRounded.tsx +++ b/src/IconNetworkIntelligenceHistoryRounded.tsx @@ -10,4 +10,4 @@ const IconNetworkIntelligenceHistoryRounded: React.FC = ({ ) -export { IconNetworkIntelligenceHistoryRounded as default } +export default IconNetworkIntelligenceHistoryRounded diff --git a/src/IconNetworkIntelligenceHistoryRoundedFilled.tsx b/src/IconNetworkIntelligenceHistoryRoundedFilled.tsx index 53f4c3af3..2eaa3df70 100644 --- a/src/IconNetworkIntelligenceHistoryRoundedFilled.tsx +++ b/src/IconNetworkIntelligenceHistoryRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconNetworkIntelligenceHistoryRoundedFilled: React.FC = ({ ) -export { IconNetworkIntelligenceHistoryRoundedFilled as default } +export default IconNetworkIntelligenceHistoryRoundedFilled diff --git a/src/IconNetworkIntelligenceHistorySharp.tsx b/src/IconNetworkIntelligenceHistorySharp.tsx index 3eef5ba51..44cd2f091 100644 --- a/src/IconNetworkIntelligenceHistorySharp.tsx +++ b/src/IconNetworkIntelligenceHistorySharp.tsx @@ -10,4 +10,4 @@ const IconNetworkIntelligenceHistorySharp: React.FC = ({ ) -export { IconNetworkIntelligenceHistorySharp as default } +export default IconNetworkIntelligenceHistorySharp diff --git a/src/IconNetworkIntelligenceHistorySharpFilled.tsx b/src/IconNetworkIntelligenceHistorySharpFilled.tsx index 2d97209ca..7d3542736 100644 --- a/src/IconNetworkIntelligenceHistorySharpFilled.tsx +++ b/src/IconNetworkIntelligenceHistorySharpFilled.tsx @@ -10,4 +10,4 @@ const IconNetworkIntelligenceHistorySharpFilled: React.FC = ({ ) -export { IconNetworkIntelligenceHistorySharpFilled as default } +export default IconNetworkIntelligenceHistorySharpFilled diff --git a/src/IconNetworkIntelligenceUpdateOutlined.tsx b/src/IconNetworkIntelligenceUpdateOutlined.tsx index c1b6cc324..0494daee3 100644 --- a/src/IconNetworkIntelligenceUpdateOutlined.tsx +++ b/src/IconNetworkIntelligenceUpdateOutlined.tsx @@ -10,4 +10,4 @@ const IconNetworkIntelligenceUpdateOutlined: React.FC = ({ ) -export { IconNetworkIntelligenceUpdateOutlined as default } +export default IconNetworkIntelligenceUpdateOutlined diff --git a/src/IconNetworkIntelligenceUpdateOutlinedFilled.tsx b/src/IconNetworkIntelligenceUpdateOutlinedFilled.tsx index b79c00404..09b596da2 100644 --- a/src/IconNetworkIntelligenceUpdateOutlinedFilled.tsx +++ b/src/IconNetworkIntelligenceUpdateOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconNetworkIntelligenceUpdateOutlinedFilled: React.FC = ({ ) -export { IconNetworkIntelligenceUpdateOutlinedFilled as default } +export default IconNetworkIntelligenceUpdateOutlinedFilled diff --git a/src/IconNetworkIntelligenceUpdateRounded.tsx b/src/IconNetworkIntelligenceUpdateRounded.tsx index 514469d24..96ef253c9 100644 --- a/src/IconNetworkIntelligenceUpdateRounded.tsx +++ b/src/IconNetworkIntelligenceUpdateRounded.tsx @@ -10,4 +10,4 @@ const IconNetworkIntelligenceUpdateRounded: React.FC = ({ ) -export { IconNetworkIntelligenceUpdateRounded as default } +export default IconNetworkIntelligenceUpdateRounded diff --git a/src/IconNetworkIntelligenceUpdateRoundedFilled.tsx b/src/IconNetworkIntelligenceUpdateRoundedFilled.tsx index 0d148344d..5027cbc3d 100644 --- a/src/IconNetworkIntelligenceUpdateRoundedFilled.tsx +++ b/src/IconNetworkIntelligenceUpdateRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconNetworkIntelligenceUpdateRoundedFilled: React.FC = ({ ) -export { IconNetworkIntelligenceUpdateRoundedFilled as default } +export default IconNetworkIntelligenceUpdateRoundedFilled diff --git a/src/IconNetworkIntelligenceUpdateSharp.tsx b/src/IconNetworkIntelligenceUpdateSharp.tsx index a2951740f..0cbdf4526 100644 --- a/src/IconNetworkIntelligenceUpdateSharp.tsx +++ b/src/IconNetworkIntelligenceUpdateSharp.tsx @@ -10,4 +10,4 @@ const IconNetworkIntelligenceUpdateSharp: React.FC = ({ ) -export { IconNetworkIntelligenceUpdateSharp as default } +export default IconNetworkIntelligenceUpdateSharp diff --git a/src/IconNetworkIntelligenceUpdateSharpFilled.tsx b/src/IconNetworkIntelligenceUpdateSharpFilled.tsx index e59757ae6..96f742c38 100644 --- a/src/IconNetworkIntelligenceUpdateSharpFilled.tsx +++ b/src/IconNetworkIntelligenceUpdateSharpFilled.tsx @@ -10,4 +10,4 @@ const IconNetworkIntelligenceUpdateSharpFilled: React.FC = ({ ) -export { IconNetworkIntelligenceUpdateSharpFilled as default } +export default IconNetworkIntelligenceUpdateSharpFilled diff --git a/src/IconNetworkLockedOutlined.tsx b/src/IconNetworkLockedOutlined.tsx index 0dcd88d2a..874f9dce3 100644 --- a/src/IconNetworkLockedOutlined.tsx +++ b/src/IconNetworkLockedOutlined.tsx @@ -8,4 +8,4 @@ const IconNetworkLockedOutlined: React.FC = ({ ...props }) => ( ) -export { IconNetworkLockedOutlined as default } +export default IconNetworkLockedOutlined diff --git a/src/IconNetworkLockedOutlinedFilled.tsx b/src/IconNetworkLockedOutlinedFilled.tsx index a2a64cf05..4fc502fdd 100644 --- a/src/IconNetworkLockedOutlinedFilled.tsx +++ b/src/IconNetworkLockedOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconNetworkLockedOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconNetworkLockedOutlinedFilled as default } +export default IconNetworkLockedOutlinedFilled diff --git a/src/IconNetworkLockedRounded.tsx b/src/IconNetworkLockedRounded.tsx index 81667d1ee..3e00e0b2f 100644 --- a/src/IconNetworkLockedRounded.tsx +++ b/src/IconNetworkLockedRounded.tsx @@ -8,4 +8,4 @@ const IconNetworkLockedRounded: React.FC = ({ ...props }) => ( ) -export { IconNetworkLockedRounded as default } +export default IconNetworkLockedRounded diff --git a/src/IconNetworkLockedRoundedFilled.tsx b/src/IconNetworkLockedRoundedFilled.tsx index e1667dd53..29de3f5ef 100644 --- a/src/IconNetworkLockedRoundedFilled.tsx +++ b/src/IconNetworkLockedRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconNetworkLockedRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconNetworkLockedRoundedFilled as default } +export default IconNetworkLockedRoundedFilled diff --git a/src/IconNetworkLockedSharp.tsx b/src/IconNetworkLockedSharp.tsx index d7a4d392e..7f3823e83 100644 --- a/src/IconNetworkLockedSharp.tsx +++ b/src/IconNetworkLockedSharp.tsx @@ -8,4 +8,4 @@ const IconNetworkLockedSharp: React.FC = ({ ...props }) => ( ) -export { IconNetworkLockedSharp as default } +export default IconNetworkLockedSharp diff --git a/src/IconNetworkLockedSharpFilled.tsx b/src/IconNetworkLockedSharpFilled.tsx index d2e0a1d95..6f245bcf0 100644 --- a/src/IconNetworkLockedSharpFilled.tsx +++ b/src/IconNetworkLockedSharpFilled.tsx @@ -8,4 +8,4 @@ const IconNetworkLockedSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconNetworkLockedSharpFilled as default } +export default IconNetworkLockedSharpFilled diff --git a/src/IconNetworkManageOutlined.tsx b/src/IconNetworkManageOutlined.tsx index 2e1387d01..2eea6a46c 100644 --- a/src/IconNetworkManageOutlined.tsx +++ b/src/IconNetworkManageOutlined.tsx @@ -8,4 +8,4 @@ const IconNetworkManageOutlined: React.FC = ({ ...props }) => ( ) -export { IconNetworkManageOutlined as default } +export default IconNetworkManageOutlined diff --git a/src/IconNetworkManageOutlinedFilled.tsx b/src/IconNetworkManageOutlinedFilled.tsx index c314c6054..46816447a 100644 --- a/src/IconNetworkManageOutlinedFilled.tsx +++ b/src/IconNetworkManageOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconNetworkManageOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconNetworkManageOutlinedFilled as default } +export default IconNetworkManageOutlinedFilled diff --git a/src/IconNetworkManageRounded.tsx b/src/IconNetworkManageRounded.tsx index 02dfa9f00..d6dc4b460 100644 --- a/src/IconNetworkManageRounded.tsx +++ b/src/IconNetworkManageRounded.tsx @@ -8,4 +8,4 @@ const IconNetworkManageRounded: React.FC = ({ ...props }) => ( ) -export { IconNetworkManageRounded as default } +export default IconNetworkManageRounded diff --git a/src/IconNetworkManageRoundedFilled.tsx b/src/IconNetworkManageRoundedFilled.tsx index 3fa6d2e84..1e0fdf33c 100644 --- a/src/IconNetworkManageRoundedFilled.tsx +++ b/src/IconNetworkManageRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconNetworkManageRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconNetworkManageRoundedFilled as default } +export default IconNetworkManageRoundedFilled diff --git a/src/IconNetworkManageSharp.tsx b/src/IconNetworkManageSharp.tsx index 9a616a7f5..0eb368671 100644 --- a/src/IconNetworkManageSharp.tsx +++ b/src/IconNetworkManageSharp.tsx @@ -8,4 +8,4 @@ const IconNetworkManageSharp: React.FC = ({ ...props }) => ( ) -export { IconNetworkManageSharp as default } +export default IconNetworkManageSharp diff --git a/src/IconNetworkManageSharpFilled.tsx b/src/IconNetworkManageSharpFilled.tsx index fbdb79483..adbbae5d1 100644 --- a/src/IconNetworkManageSharpFilled.tsx +++ b/src/IconNetworkManageSharpFilled.tsx @@ -8,4 +8,4 @@ const IconNetworkManageSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconNetworkManageSharpFilled as default } +export default IconNetworkManageSharpFilled diff --git a/src/IconNetworkNodeOutlined.tsx b/src/IconNetworkNodeOutlined.tsx index e438ec513..601f54ff2 100644 --- a/src/IconNetworkNodeOutlined.tsx +++ b/src/IconNetworkNodeOutlined.tsx @@ -8,4 +8,4 @@ const IconNetworkNodeOutlined: React.FC = ({ ...props }) => ( ) -export { IconNetworkNodeOutlined as default } +export default IconNetworkNodeOutlined diff --git a/src/IconNetworkNodeOutlinedFilled.tsx b/src/IconNetworkNodeOutlinedFilled.tsx index 3bfdb78a5..a941dd974 100644 --- a/src/IconNetworkNodeOutlinedFilled.tsx +++ b/src/IconNetworkNodeOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconNetworkNodeOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconNetworkNodeOutlinedFilled as default } +export default IconNetworkNodeOutlinedFilled diff --git a/src/IconNetworkNodeRounded.tsx b/src/IconNetworkNodeRounded.tsx index 105969644..3d710433a 100644 --- a/src/IconNetworkNodeRounded.tsx +++ b/src/IconNetworkNodeRounded.tsx @@ -8,4 +8,4 @@ const IconNetworkNodeRounded: React.FC = ({ ...props }) => ( ) -export { IconNetworkNodeRounded as default } +export default IconNetworkNodeRounded diff --git a/src/IconNetworkNodeRoundedFilled.tsx b/src/IconNetworkNodeRoundedFilled.tsx index 5d21558be..4907f8cfd 100644 --- a/src/IconNetworkNodeRoundedFilled.tsx +++ b/src/IconNetworkNodeRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconNetworkNodeRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconNetworkNodeRoundedFilled as default } +export default IconNetworkNodeRoundedFilled diff --git a/src/IconNetworkNodeSharp.tsx b/src/IconNetworkNodeSharp.tsx index 02658ac1c..1072e9b02 100644 --- a/src/IconNetworkNodeSharp.tsx +++ b/src/IconNetworkNodeSharp.tsx @@ -8,4 +8,4 @@ const IconNetworkNodeSharp: React.FC = ({ ...props }) => ( ) -export { IconNetworkNodeSharp as default } +export default IconNetworkNodeSharp diff --git a/src/IconNetworkNodeSharpFilled.tsx b/src/IconNetworkNodeSharpFilled.tsx index 404856284..242848267 100644 --- a/src/IconNetworkNodeSharpFilled.tsx +++ b/src/IconNetworkNodeSharpFilled.tsx @@ -8,4 +8,4 @@ const IconNetworkNodeSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconNetworkNodeSharpFilled as default } +export default IconNetworkNodeSharpFilled diff --git a/src/IconNetworkPingOutlined.tsx b/src/IconNetworkPingOutlined.tsx index caad95e17..6a957c070 100644 --- a/src/IconNetworkPingOutlined.tsx +++ b/src/IconNetworkPingOutlined.tsx @@ -8,4 +8,4 @@ const IconNetworkPingOutlined: React.FC = ({ ...props }) => ( ) -export { IconNetworkPingOutlined as default } +export default IconNetworkPingOutlined diff --git a/src/IconNetworkPingOutlinedFilled.tsx b/src/IconNetworkPingOutlinedFilled.tsx index d347266ad..1234e51bc 100644 --- a/src/IconNetworkPingOutlinedFilled.tsx +++ b/src/IconNetworkPingOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconNetworkPingOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconNetworkPingOutlinedFilled as default } +export default IconNetworkPingOutlinedFilled diff --git a/src/IconNetworkPingRounded.tsx b/src/IconNetworkPingRounded.tsx index 8282a383a..e007439a5 100644 --- a/src/IconNetworkPingRounded.tsx +++ b/src/IconNetworkPingRounded.tsx @@ -8,4 +8,4 @@ const IconNetworkPingRounded: React.FC = ({ ...props }) => ( ) -export { IconNetworkPingRounded as default } +export default IconNetworkPingRounded diff --git a/src/IconNetworkPingRoundedFilled.tsx b/src/IconNetworkPingRoundedFilled.tsx index 3eda17809..a5b86d74d 100644 --- a/src/IconNetworkPingRoundedFilled.tsx +++ b/src/IconNetworkPingRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconNetworkPingRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconNetworkPingRoundedFilled as default } +export default IconNetworkPingRoundedFilled diff --git a/src/IconNetworkPingSharp.tsx b/src/IconNetworkPingSharp.tsx index a9428f32c..d01869aae 100644 --- a/src/IconNetworkPingSharp.tsx +++ b/src/IconNetworkPingSharp.tsx @@ -8,4 +8,4 @@ const IconNetworkPingSharp: React.FC = ({ ...props }) => ( ) -export { IconNetworkPingSharp as default } +export default IconNetworkPingSharp diff --git a/src/IconNetworkPingSharpFilled.tsx b/src/IconNetworkPingSharpFilled.tsx index 578746bcd..02000ed1b 100644 --- a/src/IconNetworkPingSharpFilled.tsx +++ b/src/IconNetworkPingSharpFilled.tsx @@ -8,4 +8,4 @@ const IconNetworkPingSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconNetworkPingSharpFilled as default } +export default IconNetworkPingSharpFilled diff --git a/src/IconNetworkWifi1BarLockedOutlined.tsx b/src/IconNetworkWifi1BarLockedOutlined.tsx index 4a027a2b1..ccba952aa 100644 --- a/src/IconNetworkWifi1BarLockedOutlined.tsx +++ b/src/IconNetworkWifi1BarLockedOutlined.tsx @@ -10,4 +10,4 @@ const IconNetworkWifi1BarLockedOutlined: React.FC = ({ ) -export { IconNetworkWifi1BarLockedOutlined as default } +export default IconNetworkWifi1BarLockedOutlined diff --git a/src/IconNetworkWifi1BarLockedOutlinedFilled.tsx b/src/IconNetworkWifi1BarLockedOutlinedFilled.tsx index 84416a5e1..0bc461895 100644 --- a/src/IconNetworkWifi1BarLockedOutlinedFilled.tsx +++ b/src/IconNetworkWifi1BarLockedOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconNetworkWifi1BarLockedOutlinedFilled: React.FC = ({ ) -export { IconNetworkWifi1BarLockedOutlinedFilled as default } +export default IconNetworkWifi1BarLockedOutlinedFilled diff --git a/src/IconNetworkWifi1BarLockedRounded.tsx b/src/IconNetworkWifi1BarLockedRounded.tsx index 1a28d5b76..901d873e0 100644 --- a/src/IconNetworkWifi1BarLockedRounded.tsx +++ b/src/IconNetworkWifi1BarLockedRounded.tsx @@ -10,4 +10,4 @@ const IconNetworkWifi1BarLockedRounded: React.FC = ({ ) -export { IconNetworkWifi1BarLockedRounded as default } +export default IconNetworkWifi1BarLockedRounded diff --git a/src/IconNetworkWifi1BarLockedRoundedFilled.tsx b/src/IconNetworkWifi1BarLockedRoundedFilled.tsx index 7033fced6..65b3507b8 100644 --- a/src/IconNetworkWifi1BarLockedRoundedFilled.tsx +++ b/src/IconNetworkWifi1BarLockedRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconNetworkWifi1BarLockedRoundedFilled: React.FC = ({ ) -export { IconNetworkWifi1BarLockedRoundedFilled as default } +export default IconNetworkWifi1BarLockedRoundedFilled diff --git a/src/IconNetworkWifi1BarLockedSharp.tsx b/src/IconNetworkWifi1BarLockedSharp.tsx index 5953aa9a2..43e466d47 100644 --- a/src/IconNetworkWifi1BarLockedSharp.tsx +++ b/src/IconNetworkWifi1BarLockedSharp.tsx @@ -8,4 +8,4 @@ const IconNetworkWifi1BarLockedSharp: React.FC = ({ ...props }) => ( ) -export { IconNetworkWifi1BarLockedSharp as default } +export default IconNetworkWifi1BarLockedSharp diff --git a/src/IconNetworkWifi1BarLockedSharpFilled.tsx b/src/IconNetworkWifi1BarLockedSharpFilled.tsx index 0123f4457..76ff4dcb5 100644 --- a/src/IconNetworkWifi1BarLockedSharpFilled.tsx +++ b/src/IconNetworkWifi1BarLockedSharpFilled.tsx @@ -10,4 +10,4 @@ const IconNetworkWifi1BarLockedSharpFilled: React.FC = ({ ) -export { IconNetworkWifi1BarLockedSharpFilled as default } +export default IconNetworkWifi1BarLockedSharpFilled diff --git a/src/IconNetworkWifi1BarOutlined.tsx b/src/IconNetworkWifi1BarOutlined.tsx index 9b67d7566..6e4231b74 100644 --- a/src/IconNetworkWifi1BarOutlined.tsx +++ b/src/IconNetworkWifi1BarOutlined.tsx @@ -8,4 +8,4 @@ const IconNetworkWifi1BarOutlined: React.FC = ({ ...props }) => ( ) -export { IconNetworkWifi1BarOutlined as default } +export default IconNetworkWifi1BarOutlined diff --git a/src/IconNetworkWifi1BarOutlinedFilled.tsx b/src/IconNetworkWifi1BarOutlinedFilled.tsx index a5fafb00d..dec30dd53 100644 --- a/src/IconNetworkWifi1BarOutlinedFilled.tsx +++ b/src/IconNetworkWifi1BarOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconNetworkWifi1BarOutlinedFilled: React.FC = ({ ) -export { IconNetworkWifi1BarOutlinedFilled as default } +export default IconNetworkWifi1BarOutlinedFilled diff --git a/src/IconNetworkWifi1BarRounded.tsx b/src/IconNetworkWifi1BarRounded.tsx index 5879734c3..0a9b25acd 100644 --- a/src/IconNetworkWifi1BarRounded.tsx +++ b/src/IconNetworkWifi1BarRounded.tsx @@ -8,4 +8,4 @@ const IconNetworkWifi1BarRounded: React.FC = ({ ...props }) => ( ) -export { IconNetworkWifi1BarRounded as default } +export default IconNetworkWifi1BarRounded diff --git a/src/IconNetworkWifi1BarRoundedFilled.tsx b/src/IconNetworkWifi1BarRoundedFilled.tsx index e9505a09c..23e1c34d2 100644 --- a/src/IconNetworkWifi1BarRoundedFilled.tsx +++ b/src/IconNetworkWifi1BarRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconNetworkWifi1BarRoundedFilled: React.FC = ({ ) -export { IconNetworkWifi1BarRoundedFilled as default } +export default IconNetworkWifi1BarRoundedFilled diff --git a/src/IconNetworkWifi1BarSharp.tsx b/src/IconNetworkWifi1BarSharp.tsx index c03054ad1..5a01115ff 100644 --- a/src/IconNetworkWifi1BarSharp.tsx +++ b/src/IconNetworkWifi1BarSharp.tsx @@ -8,4 +8,4 @@ const IconNetworkWifi1BarSharp: React.FC = ({ ...props }) => ( ) -export { IconNetworkWifi1BarSharp as default } +export default IconNetworkWifi1BarSharp diff --git a/src/IconNetworkWifi1BarSharpFilled.tsx b/src/IconNetworkWifi1BarSharpFilled.tsx index bb938edf7..01ec1fcd4 100644 --- a/src/IconNetworkWifi1BarSharpFilled.tsx +++ b/src/IconNetworkWifi1BarSharpFilled.tsx @@ -8,4 +8,4 @@ const IconNetworkWifi1BarSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconNetworkWifi1BarSharpFilled as default } +export default IconNetworkWifi1BarSharpFilled diff --git a/src/IconNetworkWifi2BarLockedOutlined.tsx b/src/IconNetworkWifi2BarLockedOutlined.tsx index 4f7eb88bd..46a42fab5 100644 --- a/src/IconNetworkWifi2BarLockedOutlined.tsx +++ b/src/IconNetworkWifi2BarLockedOutlined.tsx @@ -10,4 +10,4 @@ const IconNetworkWifi2BarLockedOutlined: React.FC = ({ ) -export { IconNetworkWifi2BarLockedOutlined as default } +export default IconNetworkWifi2BarLockedOutlined diff --git a/src/IconNetworkWifi2BarLockedOutlinedFilled.tsx b/src/IconNetworkWifi2BarLockedOutlinedFilled.tsx index 5f6b2342d..f5f149b54 100644 --- a/src/IconNetworkWifi2BarLockedOutlinedFilled.tsx +++ b/src/IconNetworkWifi2BarLockedOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconNetworkWifi2BarLockedOutlinedFilled: React.FC = ({ ) -export { IconNetworkWifi2BarLockedOutlinedFilled as default } +export default IconNetworkWifi2BarLockedOutlinedFilled diff --git a/src/IconNetworkWifi2BarLockedRounded.tsx b/src/IconNetworkWifi2BarLockedRounded.tsx index 67e5027b5..d717cfadf 100644 --- a/src/IconNetworkWifi2BarLockedRounded.tsx +++ b/src/IconNetworkWifi2BarLockedRounded.tsx @@ -10,4 +10,4 @@ const IconNetworkWifi2BarLockedRounded: React.FC = ({ ) -export { IconNetworkWifi2BarLockedRounded as default } +export default IconNetworkWifi2BarLockedRounded diff --git a/src/IconNetworkWifi2BarLockedRoundedFilled.tsx b/src/IconNetworkWifi2BarLockedRoundedFilled.tsx index 1ed9a85fc..be3a037c3 100644 --- a/src/IconNetworkWifi2BarLockedRoundedFilled.tsx +++ b/src/IconNetworkWifi2BarLockedRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconNetworkWifi2BarLockedRoundedFilled: React.FC = ({ ) -export { IconNetworkWifi2BarLockedRoundedFilled as default } +export default IconNetworkWifi2BarLockedRoundedFilled diff --git a/src/IconNetworkWifi2BarLockedSharp.tsx b/src/IconNetworkWifi2BarLockedSharp.tsx index cd4834f2d..edea6b64d 100644 --- a/src/IconNetworkWifi2BarLockedSharp.tsx +++ b/src/IconNetworkWifi2BarLockedSharp.tsx @@ -8,4 +8,4 @@ const IconNetworkWifi2BarLockedSharp: React.FC = ({ ...props }) => ( ) -export { IconNetworkWifi2BarLockedSharp as default } +export default IconNetworkWifi2BarLockedSharp diff --git a/src/IconNetworkWifi2BarLockedSharpFilled.tsx b/src/IconNetworkWifi2BarLockedSharpFilled.tsx index 0f73f2026..b76774cd2 100644 --- a/src/IconNetworkWifi2BarLockedSharpFilled.tsx +++ b/src/IconNetworkWifi2BarLockedSharpFilled.tsx @@ -10,4 +10,4 @@ const IconNetworkWifi2BarLockedSharpFilled: React.FC = ({ ) -export { IconNetworkWifi2BarLockedSharpFilled as default } +export default IconNetworkWifi2BarLockedSharpFilled diff --git a/src/IconNetworkWifi2BarOutlined.tsx b/src/IconNetworkWifi2BarOutlined.tsx index 7e43422ea..358990d7d 100644 --- a/src/IconNetworkWifi2BarOutlined.tsx +++ b/src/IconNetworkWifi2BarOutlined.tsx @@ -8,4 +8,4 @@ const IconNetworkWifi2BarOutlined: React.FC = ({ ...props }) => ( ) -export { IconNetworkWifi2BarOutlined as default } +export default IconNetworkWifi2BarOutlined diff --git a/src/IconNetworkWifi2BarOutlinedFilled.tsx b/src/IconNetworkWifi2BarOutlinedFilled.tsx index 425a0ee49..0f78090f4 100644 --- a/src/IconNetworkWifi2BarOutlinedFilled.tsx +++ b/src/IconNetworkWifi2BarOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconNetworkWifi2BarOutlinedFilled: React.FC = ({ ) -export { IconNetworkWifi2BarOutlinedFilled as default } +export default IconNetworkWifi2BarOutlinedFilled diff --git a/src/IconNetworkWifi2BarRounded.tsx b/src/IconNetworkWifi2BarRounded.tsx index feed99b3d..583fbe55e 100644 --- a/src/IconNetworkWifi2BarRounded.tsx +++ b/src/IconNetworkWifi2BarRounded.tsx @@ -8,4 +8,4 @@ const IconNetworkWifi2BarRounded: React.FC = ({ ...props }) => ( ) -export { IconNetworkWifi2BarRounded as default } +export default IconNetworkWifi2BarRounded diff --git a/src/IconNetworkWifi2BarRoundedFilled.tsx b/src/IconNetworkWifi2BarRoundedFilled.tsx index 414924476..d6271a35e 100644 --- a/src/IconNetworkWifi2BarRoundedFilled.tsx +++ b/src/IconNetworkWifi2BarRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconNetworkWifi2BarRoundedFilled: React.FC = ({ ) -export { IconNetworkWifi2BarRoundedFilled as default } +export default IconNetworkWifi2BarRoundedFilled diff --git a/src/IconNetworkWifi2BarSharp.tsx b/src/IconNetworkWifi2BarSharp.tsx index 566a58522..b710f696f 100644 --- a/src/IconNetworkWifi2BarSharp.tsx +++ b/src/IconNetworkWifi2BarSharp.tsx @@ -8,4 +8,4 @@ const IconNetworkWifi2BarSharp: React.FC = ({ ...props }) => ( ) -export { IconNetworkWifi2BarSharp as default } +export default IconNetworkWifi2BarSharp diff --git a/src/IconNetworkWifi2BarSharpFilled.tsx b/src/IconNetworkWifi2BarSharpFilled.tsx index c3d8fd1db..148012274 100644 --- a/src/IconNetworkWifi2BarSharpFilled.tsx +++ b/src/IconNetworkWifi2BarSharpFilled.tsx @@ -8,4 +8,4 @@ const IconNetworkWifi2BarSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconNetworkWifi2BarSharpFilled as default } +export default IconNetworkWifi2BarSharpFilled diff --git a/src/IconNetworkWifi3BarLockedOutlined.tsx b/src/IconNetworkWifi3BarLockedOutlined.tsx index 6e6851b14..80a45d90b 100644 --- a/src/IconNetworkWifi3BarLockedOutlined.tsx +++ b/src/IconNetworkWifi3BarLockedOutlined.tsx @@ -10,4 +10,4 @@ const IconNetworkWifi3BarLockedOutlined: React.FC = ({ ) -export { IconNetworkWifi3BarLockedOutlined as default } +export default IconNetworkWifi3BarLockedOutlined diff --git a/src/IconNetworkWifi3BarLockedOutlinedFilled.tsx b/src/IconNetworkWifi3BarLockedOutlinedFilled.tsx index 97666ebc8..36a32f935 100644 --- a/src/IconNetworkWifi3BarLockedOutlinedFilled.tsx +++ b/src/IconNetworkWifi3BarLockedOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconNetworkWifi3BarLockedOutlinedFilled: React.FC = ({ ) -export { IconNetworkWifi3BarLockedOutlinedFilled as default } +export default IconNetworkWifi3BarLockedOutlinedFilled diff --git a/src/IconNetworkWifi3BarLockedRounded.tsx b/src/IconNetworkWifi3BarLockedRounded.tsx index 83ce352eb..0320eb62b 100644 --- a/src/IconNetworkWifi3BarLockedRounded.tsx +++ b/src/IconNetworkWifi3BarLockedRounded.tsx @@ -10,4 +10,4 @@ const IconNetworkWifi3BarLockedRounded: React.FC = ({ ) -export { IconNetworkWifi3BarLockedRounded as default } +export default IconNetworkWifi3BarLockedRounded diff --git a/src/IconNetworkWifi3BarLockedRoundedFilled.tsx b/src/IconNetworkWifi3BarLockedRoundedFilled.tsx index 1da6bb082..26995a07b 100644 --- a/src/IconNetworkWifi3BarLockedRoundedFilled.tsx +++ b/src/IconNetworkWifi3BarLockedRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconNetworkWifi3BarLockedRoundedFilled: React.FC = ({ ) -export { IconNetworkWifi3BarLockedRoundedFilled as default } +export default IconNetworkWifi3BarLockedRoundedFilled diff --git a/src/IconNetworkWifi3BarLockedSharp.tsx b/src/IconNetworkWifi3BarLockedSharp.tsx index 89a6cfe4e..ff53404f8 100644 --- a/src/IconNetworkWifi3BarLockedSharp.tsx +++ b/src/IconNetworkWifi3BarLockedSharp.tsx @@ -8,4 +8,4 @@ const IconNetworkWifi3BarLockedSharp: React.FC = ({ ...props }) => ( ) -export { IconNetworkWifi3BarLockedSharp as default } +export default IconNetworkWifi3BarLockedSharp diff --git a/src/IconNetworkWifi3BarLockedSharpFilled.tsx b/src/IconNetworkWifi3BarLockedSharpFilled.tsx index d09202ff6..b02fa6abb 100644 --- a/src/IconNetworkWifi3BarLockedSharpFilled.tsx +++ b/src/IconNetworkWifi3BarLockedSharpFilled.tsx @@ -10,4 +10,4 @@ const IconNetworkWifi3BarLockedSharpFilled: React.FC = ({ ) -export { IconNetworkWifi3BarLockedSharpFilled as default } +export default IconNetworkWifi3BarLockedSharpFilled diff --git a/src/IconNetworkWifi3BarOutlined.tsx b/src/IconNetworkWifi3BarOutlined.tsx index 3259b8893..b66375404 100644 --- a/src/IconNetworkWifi3BarOutlined.tsx +++ b/src/IconNetworkWifi3BarOutlined.tsx @@ -8,4 +8,4 @@ const IconNetworkWifi3BarOutlined: React.FC = ({ ...props }) => ( ) -export { IconNetworkWifi3BarOutlined as default } +export default IconNetworkWifi3BarOutlined diff --git a/src/IconNetworkWifi3BarOutlinedFilled.tsx b/src/IconNetworkWifi3BarOutlinedFilled.tsx index a4b491de1..5c5e2397e 100644 --- a/src/IconNetworkWifi3BarOutlinedFilled.tsx +++ b/src/IconNetworkWifi3BarOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconNetworkWifi3BarOutlinedFilled: React.FC = ({ ) -export { IconNetworkWifi3BarOutlinedFilled as default } +export default IconNetworkWifi3BarOutlinedFilled diff --git a/src/IconNetworkWifi3BarRounded.tsx b/src/IconNetworkWifi3BarRounded.tsx index f25bdaad9..632940464 100644 --- a/src/IconNetworkWifi3BarRounded.tsx +++ b/src/IconNetworkWifi3BarRounded.tsx @@ -8,4 +8,4 @@ const IconNetworkWifi3BarRounded: React.FC = ({ ...props }) => ( ) -export { IconNetworkWifi3BarRounded as default } +export default IconNetworkWifi3BarRounded diff --git a/src/IconNetworkWifi3BarRoundedFilled.tsx b/src/IconNetworkWifi3BarRoundedFilled.tsx index 269f073d6..87de28354 100644 --- a/src/IconNetworkWifi3BarRoundedFilled.tsx +++ b/src/IconNetworkWifi3BarRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconNetworkWifi3BarRoundedFilled: React.FC = ({ ) -export { IconNetworkWifi3BarRoundedFilled as default } +export default IconNetworkWifi3BarRoundedFilled diff --git a/src/IconNetworkWifi3BarSharp.tsx b/src/IconNetworkWifi3BarSharp.tsx index 3e11922b6..258d39d69 100644 --- a/src/IconNetworkWifi3BarSharp.tsx +++ b/src/IconNetworkWifi3BarSharp.tsx @@ -8,4 +8,4 @@ const IconNetworkWifi3BarSharp: React.FC = ({ ...props }) => ( ) -export { IconNetworkWifi3BarSharp as default } +export default IconNetworkWifi3BarSharp diff --git a/src/IconNetworkWifi3BarSharpFilled.tsx b/src/IconNetworkWifi3BarSharpFilled.tsx index 4f4c80f5c..90b3ef03b 100644 --- a/src/IconNetworkWifi3BarSharpFilled.tsx +++ b/src/IconNetworkWifi3BarSharpFilled.tsx @@ -8,4 +8,4 @@ const IconNetworkWifi3BarSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconNetworkWifi3BarSharpFilled as default } +export default IconNetworkWifi3BarSharpFilled diff --git a/src/IconNetworkWifiLockedOutlined.tsx b/src/IconNetworkWifiLockedOutlined.tsx index 56892a69c..80edd4a81 100644 --- a/src/IconNetworkWifiLockedOutlined.tsx +++ b/src/IconNetworkWifiLockedOutlined.tsx @@ -8,4 +8,4 @@ const IconNetworkWifiLockedOutlined: React.FC = ({ ...props }) => ( ) -export { IconNetworkWifiLockedOutlined as default } +export default IconNetworkWifiLockedOutlined diff --git a/src/IconNetworkWifiLockedOutlinedFilled.tsx b/src/IconNetworkWifiLockedOutlinedFilled.tsx index b640c43b5..6ba68b486 100644 --- a/src/IconNetworkWifiLockedOutlinedFilled.tsx +++ b/src/IconNetworkWifiLockedOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconNetworkWifiLockedOutlinedFilled: React.FC = ({ ) -export { IconNetworkWifiLockedOutlinedFilled as default } +export default IconNetworkWifiLockedOutlinedFilled diff --git a/src/IconNetworkWifiLockedRounded.tsx b/src/IconNetworkWifiLockedRounded.tsx index 8073dab86..37900f3dd 100644 --- a/src/IconNetworkWifiLockedRounded.tsx +++ b/src/IconNetworkWifiLockedRounded.tsx @@ -8,4 +8,4 @@ const IconNetworkWifiLockedRounded: React.FC = ({ ...props }) => ( ) -export { IconNetworkWifiLockedRounded as default } +export default IconNetworkWifiLockedRounded diff --git a/src/IconNetworkWifiLockedRoundedFilled.tsx b/src/IconNetworkWifiLockedRoundedFilled.tsx index de91be9f6..200847374 100644 --- a/src/IconNetworkWifiLockedRoundedFilled.tsx +++ b/src/IconNetworkWifiLockedRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconNetworkWifiLockedRoundedFilled: React.FC = ({ ) -export { IconNetworkWifiLockedRoundedFilled as default } +export default IconNetworkWifiLockedRoundedFilled diff --git a/src/IconNetworkWifiLockedSharp.tsx b/src/IconNetworkWifiLockedSharp.tsx index 441d2a35b..9022ba6a6 100644 --- a/src/IconNetworkWifiLockedSharp.tsx +++ b/src/IconNetworkWifiLockedSharp.tsx @@ -8,4 +8,4 @@ const IconNetworkWifiLockedSharp: React.FC = ({ ...props }) => ( ) -export { IconNetworkWifiLockedSharp as default } +export default IconNetworkWifiLockedSharp diff --git a/src/IconNetworkWifiLockedSharpFilled.tsx b/src/IconNetworkWifiLockedSharpFilled.tsx index e28cd4200..db93735db 100644 --- a/src/IconNetworkWifiLockedSharpFilled.tsx +++ b/src/IconNetworkWifiLockedSharpFilled.tsx @@ -10,4 +10,4 @@ const IconNetworkWifiLockedSharpFilled: React.FC = ({ ) -export { IconNetworkWifiLockedSharpFilled as default } +export default IconNetworkWifiLockedSharpFilled diff --git a/src/IconNetworkWifiOutlined.tsx b/src/IconNetworkWifiOutlined.tsx index e5204b89d..70f3df79e 100644 --- a/src/IconNetworkWifiOutlined.tsx +++ b/src/IconNetworkWifiOutlined.tsx @@ -8,4 +8,4 @@ const IconNetworkWifiOutlined: React.FC = ({ ...props }) => ( ) -export { IconNetworkWifiOutlined as default } +export default IconNetworkWifiOutlined diff --git a/src/IconNetworkWifiOutlinedFilled.tsx b/src/IconNetworkWifiOutlinedFilled.tsx index b6fbdbd39..34631a2d9 100644 --- a/src/IconNetworkWifiOutlinedFilled.tsx +++ b/src/IconNetworkWifiOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconNetworkWifiOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconNetworkWifiOutlinedFilled as default } +export default IconNetworkWifiOutlinedFilled diff --git a/src/IconNetworkWifiRounded.tsx b/src/IconNetworkWifiRounded.tsx index fd2d62b02..cc6182a51 100644 --- a/src/IconNetworkWifiRounded.tsx +++ b/src/IconNetworkWifiRounded.tsx @@ -8,4 +8,4 @@ const IconNetworkWifiRounded: React.FC = ({ ...props }) => ( ) -export { IconNetworkWifiRounded as default } +export default IconNetworkWifiRounded diff --git a/src/IconNetworkWifiRoundedFilled.tsx b/src/IconNetworkWifiRoundedFilled.tsx index 22261531d..6ec0bab28 100644 --- a/src/IconNetworkWifiRoundedFilled.tsx +++ b/src/IconNetworkWifiRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconNetworkWifiRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconNetworkWifiRoundedFilled as default } +export default IconNetworkWifiRoundedFilled diff --git a/src/IconNetworkWifiSharp.tsx b/src/IconNetworkWifiSharp.tsx index d628eafba..c6aec7f95 100644 --- a/src/IconNetworkWifiSharp.tsx +++ b/src/IconNetworkWifiSharp.tsx @@ -8,4 +8,4 @@ const IconNetworkWifiSharp: React.FC = ({ ...props }) => ( ) -export { IconNetworkWifiSharp as default } +export default IconNetworkWifiSharp diff --git a/src/IconNetworkWifiSharpFilled.tsx b/src/IconNetworkWifiSharpFilled.tsx index 010f7b731..80cc6b4d1 100644 --- a/src/IconNetworkWifiSharpFilled.tsx +++ b/src/IconNetworkWifiSharpFilled.tsx @@ -8,4 +8,4 @@ const IconNetworkWifiSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconNetworkWifiSharpFilled as default } +export default IconNetworkWifiSharpFilled diff --git a/src/IconNeurologyOutlined.tsx b/src/IconNeurologyOutlined.tsx index 74f44da6e..5045109da 100644 --- a/src/IconNeurologyOutlined.tsx +++ b/src/IconNeurologyOutlined.tsx @@ -8,4 +8,4 @@ const IconNeurologyOutlined: React.FC = ({ ...props }) => ( ) -export { IconNeurologyOutlined as default } +export default IconNeurologyOutlined diff --git a/src/IconNeurologyOutlinedFilled.tsx b/src/IconNeurologyOutlinedFilled.tsx index 9321d9fdd..a6bccaf67 100644 --- a/src/IconNeurologyOutlinedFilled.tsx +++ b/src/IconNeurologyOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconNeurologyOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconNeurologyOutlinedFilled as default } +export default IconNeurologyOutlinedFilled diff --git a/src/IconNeurologyRounded.tsx b/src/IconNeurologyRounded.tsx index 6c69b79e2..a6200a790 100644 --- a/src/IconNeurologyRounded.tsx +++ b/src/IconNeurologyRounded.tsx @@ -8,4 +8,4 @@ const IconNeurologyRounded: React.FC = ({ ...props }) => ( ) -export { IconNeurologyRounded as default } +export default IconNeurologyRounded diff --git a/src/IconNeurologyRoundedFilled.tsx b/src/IconNeurologyRoundedFilled.tsx index a04375cd9..79d6e5be5 100644 --- a/src/IconNeurologyRoundedFilled.tsx +++ b/src/IconNeurologyRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconNeurologyRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconNeurologyRoundedFilled as default } +export default IconNeurologyRoundedFilled diff --git a/src/IconNeurologySharp.tsx b/src/IconNeurologySharp.tsx index 80905bebe..c737b0819 100644 --- a/src/IconNeurologySharp.tsx +++ b/src/IconNeurologySharp.tsx @@ -8,4 +8,4 @@ const IconNeurologySharp: React.FC = ({ ...props }) => ( ) -export { IconNeurologySharp as default } +export default IconNeurologySharp diff --git a/src/IconNeurologySharpFilled.tsx b/src/IconNeurologySharpFilled.tsx index 184f5095f..9482d4b60 100644 --- a/src/IconNeurologySharpFilled.tsx +++ b/src/IconNeurologySharpFilled.tsx @@ -8,4 +8,4 @@ const IconNeurologySharpFilled: React.FC = ({ ...props }) => ( ) -export { IconNeurologySharpFilled as default } +export default IconNeurologySharpFilled diff --git a/src/IconNewLabelOutlined.tsx b/src/IconNewLabelOutlined.tsx index c0137f67f..51277a650 100644 --- a/src/IconNewLabelOutlined.tsx +++ b/src/IconNewLabelOutlined.tsx @@ -8,4 +8,4 @@ const IconNewLabelOutlined: React.FC = ({ ...props }) => ( ) -export { IconNewLabelOutlined as default } +export default IconNewLabelOutlined diff --git a/src/IconNewLabelOutlinedFilled.tsx b/src/IconNewLabelOutlinedFilled.tsx index 60f88442a..b71568fbf 100644 --- a/src/IconNewLabelOutlinedFilled.tsx +++ b/src/IconNewLabelOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconNewLabelOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconNewLabelOutlinedFilled as default } +export default IconNewLabelOutlinedFilled diff --git a/src/IconNewLabelRounded.tsx b/src/IconNewLabelRounded.tsx index 09f033797..3c287d07d 100644 --- a/src/IconNewLabelRounded.tsx +++ b/src/IconNewLabelRounded.tsx @@ -8,4 +8,4 @@ const IconNewLabelRounded: React.FC = ({ ...props }) => ( ) -export { IconNewLabelRounded as default } +export default IconNewLabelRounded diff --git a/src/IconNewLabelRoundedFilled.tsx b/src/IconNewLabelRoundedFilled.tsx index f5c6ffdcc..3b08c4564 100644 --- a/src/IconNewLabelRoundedFilled.tsx +++ b/src/IconNewLabelRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconNewLabelRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconNewLabelRoundedFilled as default } +export default IconNewLabelRoundedFilled diff --git a/src/IconNewLabelSharp.tsx b/src/IconNewLabelSharp.tsx index 807dab224..9e0355bab 100644 --- a/src/IconNewLabelSharp.tsx +++ b/src/IconNewLabelSharp.tsx @@ -8,4 +8,4 @@ const IconNewLabelSharp: React.FC = ({ ...props }) => ( ) -export { IconNewLabelSharp as default } +export default IconNewLabelSharp diff --git a/src/IconNewLabelSharpFilled.tsx b/src/IconNewLabelSharpFilled.tsx index cb997bb17..ee17ae8e6 100644 --- a/src/IconNewLabelSharpFilled.tsx +++ b/src/IconNewLabelSharpFilled.tsx @@ -8,4 +8,4 @@ const IconNewLabelSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconNewLabelSharpFilled as default } +export default IconNewLabelSharpFilled diff --git a/src/IconNewReleasesOutlined.tsx b/src/IconNewReleasesOutlined.tsx index 46c144fef..412d4a6fc 100644 --- a/src/IconNewReleasesOutlined.tsx +++ b/src/IconNewReleasesOutlined.tsx @@ -8,4 +8,4 @@ const IconNewReleasesOutlined: React.FC = ({ ...props }) => ( ) -export { IconNewReleasesOutlined as default } +export default IconNewReleasesOutlined diff --git a/src/IconNewReleasesOutlinedFilled.tsx b/src/IconNewReleasesOutlinedFilled.tsx index 518cc9510..b4fab58f2 100644 --- a/src/IconNewReleasesOutlinedFilled.tsx +++ b/src/IconNewReleasesOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconNewReleasesOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconNewReleasesOutlinedFilled as default } +export default IconNewReleasesOutlinedFilled diff --git a/src/IconNewReleasesRounded.tsx b/src/IconNewReleasesRounded.tsx index 310a26f7b..3554d6b53 100644 --- a/src/IconNewReleasesRounded.tsx +++ b/src/IconNewReleasesRounded.tsx @@ -8,4 +8,4 @@ const IconNewReleasesRounded: React.FC = ({ ...props }) => ( ) -export { IconNewReleasesRounded as default } +export default IconNewReleasesRounded diff --git a/src/IconNewReleasesRoundedFilled.tsx b/src/IconNewReleasesRoundedFilled.tsx index 5ffffc936..047b19256 100644 --- a/src/IconNewReleasesRoundedFilled.tsx +++ b/src/IconNewReleasesRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconNewReleasesRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconNewReleasesRoundedFilled as default } +export default IconNewReleasesRoundedFilled diff --git a/src/IconNewReleasesSharp.tsx b/src/IconNewReleasesSharp.tsx index 74c063c63..54bf9ca71 100644 --- a/src/IconNewReleasesSharp.tsx +++ b/src/IconNewReleasesSharp.tsx @@ -8,4 +8,4 @@ const IconNewReleasesSharp: React.FC = ({ ...props }) => ( ) -export { IconNewReleasesSharp as default } +export default IconNewReleasesSharp diff --git a/src/IconNewReleasesSharpFilled.tsx b/src/IconNewReleasesSharpFilled.tsx index 7b960a197..c7caa0954 100644 --- a/src/IconNewReleasesSharpFilled.tsx +++ b/src/IconNewReleasesSharpFilled.tsx @@ -8,4 +8,4 @@ const IconNewReleasesSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconNewReleasesSharpFilled as default } +export default IconNewReleasesSharpFilled diff --git a/src/IconNewWindowOutlined.tsx b/src/IconNewWindowOutlined.tsx index 2db28b60a..add8dc917 100644 --- a/src/IconNewWindowOutlined.tsx +++ b/src/IconNewWindowOutlined.tsx @@ -8,4 +8,4 @@ const IconNewWindowOutlined: React.FC = ({ ...props }) => ( ) -export { IconNewWindowOutlined as default } +export default IconNewWindowOutlined diff --git a/src/IconNewWindowOutlinedFilled.tsx b/src/IconNewWindowOutlinedFilled.tsx index 1d752d70a..14b31c1e5 100644 --- a/src/IconNewWindowOutlinedFilled.tsx +++ b/src/IconNewWindowOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconNewWindowOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconNewWindowOutlinedFilled as default } +export default IconNewWindowOutlinedFilled diff --git a/src/IconNewWindowRounded.tsx b/src/IconNewWindowRounded.tsx index 6d4f1466d..a7be65764 100644 --- a/src/IconNewWindowRounded.tsx +++ b/src/IconNewWindowRounded.tsx @@ -8,4 +8,4 @@ const IconNewWindowRounded: React.FC = ({ ...props }) => ( ) -export { IconNewWindowRounded as default } +export default IconNewWindowRounded diff --git a/src/IconNewWindowRoundedFilled.tsx b/src/IconNewWindowRoundedFilled.tsx index 313ce4e6f..5668a701b 100644 --- a/src/IconNewWindowRoundedFilled.tsx +++ b/src/IconNewWindowRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconNewWindowRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconNewWindowRoundedFilled as default } +export default IconNewWindowRoundedFilled diff --git a/src/IconNewWindowSharp.tsx b/src/IconNewWindowSharp.tsx index 97af62317..0c97c0818 100644 --- a/src/IconNewWindowSharp.tsx +++ b/src/IconNewWindowSharp.tsx @@ -8,4 +8,4 @@ const IconNewWindowSharp: React.FC = ({ ...props }) => ( ) -export { IconNewWindowSharp as default } +export default IconNewWindowSharp diff --git a/src/IconNewWindowSharpFilled.tsx b/src/IconNewWindowSharpFilled.tsx index e6a4927bc..1d0f09412 100644 --- a/src/IconNewWindowSharpFilled.tsx +++ b/src/IconNewWindowSharpFilled.tsx @@ -8,4 +8,4 @@ const IconNewWindowSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconNewWindowSharpFilled as default } +export default IconNewWindowSharpFilled diff --git a/src/IconNewsOutlined.tsx b/src/IconNewsOutlined.tsx index 5b4512339..7a7477405 100644 --- a/src/IconNewsOutlined.tsx +++ b/src/IconNewsOutlined.tsx @@ -8,4 +8,4 @@ const IconNewsOutlined: React.FC = ({ ...props }) => ( ) -export { IconNewsOutlined as default } +export default IconNewsOutlined diff --git a/src/IconNewsOutlinedFilled.tsx b/src/IconNewsOutlinedFilled.tsx index 7661081e2..934c4dca7 100644 --- a/src/IconNewsOutlinedFilled.tsx +++ b/src/IconNewsOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconNewsOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconNewsOutlinedFilled as default } +export default IconNewsOutlinedFilled diff --git a/src/IconNewsRounded.tsx b/src/IconNewsRounded.tsx index b3d42d487..37562e5d2 100644 --- a/src/IconNewsRounded.tsx +++ b/src/IconNewsRounded.tsx @@ -8,4 +8,4 @@ const IconNewsRounded: React.FC = ({ ...props }) => ( ) -export { IconNewsRounded as default } +export default IconNewsRounded diff --git a/src/IconNewsRoundedFilled.tsx b/src/IconNewsRoundedFilled.tsx index 76f40ece3..b71bb3bc8 100644 --- a/src/IconNewsRoundedFilled.tsx +++ b/src/IconNewsRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconNewsRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconNewsRoundedFilled as default } +export default IconNewsRoundedFilled diff --git a/src/IconNewsSharp.tsx b/src/IconNewsSharp.tsx index 404d7e0cf..0f6183715 100644 --- a/src/IconNewsSharp.tsx +++ b/src/IconNewsSharp.tsx @@ -8,4 +8,4 @@ const IconNewsSharp: React.FC = ({ ...props }) => ( ) -export { IconNewsSharp as default } +export default IconNewsSharp diff --git a/src/IconNewsSharpFilled.tsx b/src/IconNewsSharpFilled.tsx index 4c261a85f..b52233d78 100644 --- a/src/IconNewsSharpFilled.tsx +++ b/src/IconNewsSharpFilled.tsx @@ -8,4 +8,4 @@ const IconNewsSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconNewsSharpFilled as default } +export default IconNewsSharpFilled diff --git a/src/IconNewsmodeOutlined.tsx b/src/IconNewsmodeOutlined.tsx index eec6e5931..3c14b55d2 100644 --- a/src/IconNewsmodeOutlined.tsx +++ b/src/IconNewsmodeOutlined.tsx @@ -8,4 +8,4 @@ const IconNewsmodeOutlined: React.FC = ({ ...props }) => ( ) -export { IconNewsmodeOutlined as default } +export default IconNewsmodeOutlined diff --git a/src/IconNewsmodeOutlinedFilled.tsx b/src/IconNewsmodeOutlinedFilled.tsx index 186767e3f..c2749666b 100644 --- a/src/IconNewsmodeOutlinedFilled.tsx +++ b/src/IconNewsmodeOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconNewsmodeOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconNewsmodeOutlinedFilled as default } +export default IconNewsmodeOutlinedFilled diff --git a/src/IconNewsmodeRounded.tsx b/src/IconNewsmodeRounded.tsx index 1a3222bac..1b5400a1d 100644 --- a/src/IconNewsmodeRounded.tsx +++ b/src/IconNewsmodeRounded.tsx @@ -8,4 +8,4 @@ const IconNewsmodeRounded: React.FC = ({ ...props }) => ( ) -export { IconNewsmodeRounded as default } +export default IconNewsmodeRounded diff --git a/src/IconNewsmodeRoundedFilled.tsx b/src/IconNewsmodeRoundedFilled.tsx index b0b154528..f04004c4b 100644 --- a/src/IconNewsmodeRoundedFilled.tsx +++ b/src/IconNewsmodeRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconNewsmodeRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconNewsmodeRoundedFilled as default } +export default IconNewsmodeRoundedFilled diff --git a/src/IconNewsmodeSharp.tsx b/src/IconNewsmodeSharp.tsx index 65970353d..3642a15f3 100644 --- a/src/IconNewsmodeSharp.tsx +++ b/src/IconNewsmodeSharp.tsx @@ -8,4 +8,4 @@ const IconNewsmodeSharp: React.FC = ({ ...props }) => ( ) -export { IconNewsmodeSharp as default } +export default IconNewsmodeSharp diff --git a/src/IconNewsmodeSharpFilled.tsx b/src/IconNewsmodeSharpFilled.tsx index 12128cb69..765b640ca 100644 --- a/src/IconNewsmodeSharpFilled.tsx +++ b/src/IconNewsmodeSharpFilled.tsx @@ -8,4 +8,4 @@ const IconNewsmodeSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconNewsmodeSharpFilled as default } +export default IconNewsmodeSharpFilled diff --git a/src/IconNewspaperOutlined.tsx b/src/IconNewspaperOutlined.tsx index a4647f6ee..f5fa20856 100644 --- a/src/IconNewspaperOutlined.tsx +++ b/src/IconNewspaperOutlined.tsx @@ -8,4 +8,4 @@ const IconNewspaperOutlined: React.FC = ({ ...props }) => ( ) -export { IconNewspaperOutlined as default } +export default IconNewspaperOutlined diff --git a/src/IconNewspaperOutlinedFilled.tsx b/src/IconNewspaperOutlinedFilled.tsx index 6343d2a1c..f93433121 100644 --- a/src/IconNewspaperOutlinedFilled.tsx +++ b/src/IconNewspaperOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconNewspaperOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconNewspaperOutlinedFilled as default } +export default IconNewspaperOutlinedFilled diff --git a/src/IconNewspaperRounded.tsx b/src/IconNewspaperRounded.tsx index 45553a11b..47d4d9852 100644 --- a/src/IconNewspaperRounded.tsx +++ b/src/IconNewspaperRounded.tsx @@ -8,4 +8,4 @@ const IconNewspaperRounded: React.FC = ({ ...props }) => ( ) -export { IconNewspaperRounded as default } +export default IconNewspaperRounded diff --git a/src/IconNewspaperRoundedFilled.tsx b/src/IconNewspaperRoundedFilled.tsx index 17a8e5c58..51b9d5795 100644 --- a/src/IconNewspaperRoundedFilled.tsx +++ b/src/IconNewspaperRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconNewspaperRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconNewspaperRoundedFilled as default } +export default IconNewspaperRoundedFilled diff --git a/src/IconNewspaperSharp.tsx b/src/IconNewspaperSharp.tsx index 95ba57dfc..e94d9e5d0 100644 --- a/src/IconNewspaperSharp.tsx +++ b/src/IconNewspaperSharp.tsx @@ -8,4 +8,4 @@ const IconNewspaperSharp: React.FC = ({ ...props }) => ( ) -export { IconNewspaperSharp as default } +export default IconNewspaperSharp diff --git a/src/IconNewspaperSharpFilled.tsx b/src/IconNewspaperSharpFilled.tsx index f4bc42d79..b1ce3c0e6 100644 --- a/src/IconNewspaperSharpFilled.tsx +++ b/src/IconNewspaperSharpFilled.tsx @@ -8,4 +8,4 @@ const IconNewspaperSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconNewspaperSharpFilled as default } +export default IconNewspaperSharpFilled diff --git a/src/IconNewsstandOutlined.tsx b/src/IconNewsstandOutlined.tsx index ace9f6367..27166a740 100644 --- a/src/IconNewsstandOutlined.tsx +++ b/src/IconNewsstandOutlined.tsx @@ -8,4 +8,4 @@ const IconNewsstandOutlined: React.FC = ({ ...props }) => ( ) -export { IconNewsstandOutlined as default } +export default IconNewsstandOutlined diff --git a/src/IconNewsstandOutlinedFilled.tsx b/src/IconNewsstandOutlinedFilled.tsx index b6f39c3de..35275c005 100644 --- a/src/IconNewsstandOutlinedFilled.tsx +++ b/src/IconNewsstandOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconNewsstandOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconNewsstandOutlinedFilled as default } +export default IconNewsstandOutlinedFilled diff --git a/src/IconNewsstandRounded.tsx b/src/IconNewsstandRounded.tsx index a416381a4..1d8cad69b 100644 --- a/src/IconNewsstandRounded.tsx +++ b/src/IconNewsstandRounded.tsx @@ -8,4 +8,4 @@ const IconNewsstandRounded: React.FC = ({ ...props }) => ( ) -export { IconNewsstandRounded as default } +export default IconNewsstandRounded diff --git a/src/IconNewsstandRoundedFilled.tsx b/src/IconNewsstandRoundedFilled.tsx index df5d9e829..c8f011c2d 100644 --- a/src/IconNewsstandRoundedFilled.tsx +++ b/src/IconNewsstandRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconNewsstandRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconNewsstandRoundedFilled as default } +export default IconNewsstandRoundedFilled diff --git a/src/IconNewsstandSharp.tsx b/src/IconNewsstandSharp.tsx index ff7d66c02..ff1611f66 100644 --- a/src/IconNewsstandSharp.tsx +++ b/src/IconNewsstandSharp.tsx @@ -8,4 +8,4 @@ const IconNewsstandSharp: React.FC = ({ ...props }) => ( ) -export { IconNewsstandSharp as default } +export default IconNewsstandSharp diff --git a/src/IconNewsstandSharpFilled.tsx b/src/IconNewsstandSharpFilled.tsx index 9ef5f23a4..a86532178 100644 --- a/src/IconNewsstandSharpFilled.tsx +++ b/src/IconNewsstandSharpFilled.tsx @@ -8,4 +8,4 @@ const IconNewsstandSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconNewsstandSharpFilled as default } +export default IconNewsstandSharpFilled diff --git a/src/IconNextPlanOutlined.tsx b/src/IconNextPlanOutlined.tsx index 084f1093a..57ee8f705 100644 --- a/src/IconNextPlanOutlined.tsx +++ b/src/IconNextPlanOutlined.tsx @@ -8,4 +8,4 @@ const IconNextPlanOutlined: React.FC = ({ ...props }) => ( ) -export { IconNextPlanOutlined as default } +export default IconNextPlanOutlined diff --git a/src/IconNextPlanOutlinedFilled.tsx b/src/IconNextPlanOutlinedFilled.tsx index 16b179ee1..2a71e5c31 100644 --- a/src/IconNextPlanOutlinedFilled.tsx +++ b/src/IconNextPlanOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconNextPlanOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconNextPlanOutlinedFilled as default } +export default IconNextPlanOutlinedFilled diff --git a/src/IconNextPlanRounded.tsx b/src/IconNextPlanRounded.tsx index b0be0d717..8b87c213b 100644 --- a/src/IconNextPlanRounded.tsx +++ b/src/IconNextPlanRounded.tsx @@ -8,4 +8,4 @@ const IconNextPlanRounded: React.FC = ({ ...props }) => ( ) -export { IconNextPlanRounded as default } +export default IconNextPlanRounded diff --git a/src/IconNextPlanRoundedFilled.tsx b/src/IconNextPlanRoundedFilled.tsx index 6b6928e27..6171a62e1 100644 --- a/src/IconNextPlanRoundedFilled.tsx +++ b/src/IconNextPlanRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconNextPlanRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconNextPlanRoundedFilled as default } +export default IconNextPlanRoundedFilled diff --git a/src/IconNextPlanSharp.tsx b/src/IconNextPlanSharp.tsx index 74f331865..3a4fa72df 100644 --- a/src/IconNextPlanSharp.tsx +++ b/src/IconNextPlanSharp.tsx @@ -8,4 +8,4 @@ const IconNextPlanSharp: React.FC = ({ ...props }) => ( ) -export { IconNextPlanSharp as default } +export default IconNextPlanSharp diff --git a/src/IconNextPlanSharpFilled.tsx b/src/IconNextPlanSharpFilled.tsx index cf51e4610..099db9a75 100644 --- a/src/IconNextPlanSharpFilled.tsx +++ b/src/IconNextPlanSharpFilled.tsx @@ -8,4 +8,4 @@ const IconNextPlanSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconNextPlanSharpFilled as default } +export default IconNextPlanSharpFilled diff --git a/src/IconNextWeekOutlined.tsx b/src/IconNextWeekOutlined.tsx index 3dbcbbfb6..328e9512e 100644 --- a/src/IconNextWeekOutlined.tsx +++ b/src/IconNextWeekOutlined.tsx @@ -8,4 +8,4 @@ const IconNextWeekOutlined: React.FC = ({ ...props }) => ( ) -export { IconNextWeekOutlined as default } +export default IconNextWeekOutlined diff --git a/src/IconNextWeekOutlinedFilled.tsx b/src/IconNextWeekOutlinedFilled.tsx index d7060e10e..aeec27c5e 100644 --- a/src/IconNextWeekOutlinedFilled.tsx +++ b/src/IconNextWeekOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconNextWeekOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconNextWeekOutlinedFilled as default } +export default IconNextWeekOutlinedFilled diff --git a/src/IconNextWeekRounded.tsx b/src/IconNextWeekRounded.tsx index 809f4594d..99f1e48db 100644 --- a/src/IconNextWeekRounded.tsx +++ b/src/IconNextWeekRounded.tsx @@ -8,4 +8,4 @@ const IconNextWeekRounded: React.FC = ({ ...props }) => ( ) -export { IconNextWeekRounded as default } +export default IconNextWeekRounded diff --git a/src/IconNextWeekRoundedFilled.tsx b/src/IconNextWeekRoundedFilled.tsx index 15695df8d..fcf3cae28 100644 --- a/src/IconNextWeekRoundedFilled.tsx +++ b/src/IconNextWeekRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconNextWeekRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconNextWeekRoundedFilled as default } +export default IconNextWeekRoundedFilled diff --git a/src/IconNextWeekSharp.tsx b/src/IconNextWeekSharp.tsx index 6e480d105..82e265f79 100644 --- a/src/IconNextWeekSharp.tsx +++ b/src/IconNextWeekSharp.tsx @@ -8,4 +8,4 @@ const IconNextWeekSharp: React.FC = ({ ...props }) => ( ) -export { IconNextWeekSharp as default } +export default IconNextWeekSharp diff --git a/src/IconNextWeekSharpFilled.tsx b/src/IconNextWeekSharpFilled.tsx index 4564fbe75..c1e9b8b15 100644 --- a/src/IconNextWeekSharpFilled.tsx +++ b/src/IconNextWeekSharpFilled.tsx @@ -8,4 +8,4 @@ const IconNextWeekSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconNextWeekSharpFilled as default } +export default IconNextWeekSharpFilled diff --git a/src/IconNfcOutlined.tsx b/src/IconNfcOutlined.tsx index c2eccb254..7d7688976 100644 --- a/src/IconNfcOutlined.tsx +++ b/src/IconNfcOutlined.tsx @@ -8,4 +8,4 @@ const IconNfcOutlined: React.FC = ({ ...props }) => ( ) -export { IconNfcOutlined as default } +export default IconNfcOutlined diff --git a/src/IconNfcOutlinedFilled.tsx b/src/IconNfcOutlinedFilled.tsx index ba47f2e93..6795bddbc 100644 --- a/src/IconNfcOutlinedFilled.tsx +++ b/src/IconNfcOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconNfcOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconNfcOutlinedFilled as default } +export default IconNfcOutlinedFilled diff --git a/src/IconNfcRounded.tsx b/src/IconNfcRounded.tsx index 22e595d42..aa2fe2368 100644 --- a/src/IconNfcRounded.tsx +++ b/src/IconNfcRounded.tsx @@ -8,4 +8,4 @@ const IconNfcRounded: React.FC = ({ ...props }) => ( ) -export { IconNfcRounded as default } +export default IconNfcRounded diff --git a/src/IconNfcRoundedFilled.tsx b/src/IconNfcRoundedFilled.tsx index 7a80fa6fe..51fe57d1d 100644 --- a/src/IconNfcRoundedFilled.tsx +++ b/src/IconNfcRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconNfcRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconNfcRoundedFilled as default } +export default IconNfcRoundedFilled diff --git a/src/IconNfcSharp.tsx b/src/IconNfcSharp.tsx index f97535f25..b5a2b5ac3 100644 --- a/src/IconNfcSharp.tsx +++ b/src/IconNfcSharp.tsx @@ -8,4 +8,4 @@ const IconNfcSharp: React.FC = ({ ...props }) => ( ) -export { IconNfcSharp as default } +export default IconNfcSharp diff --git a/src/IconNfcSharpFilled.tsx b/src/IconNfcSharpFilled.tsx index b8d255660..4bb5e3f5f 100644 --- a/src/IconNfcSharpFilled.tsx +++ b/src/IconNfcSharpFilled.tsx @@ -8,4 +8,4 @@ const IconNfcSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconNfcSharpFilled as default } +export default IconNfcSharpFilled diff --git a/src/IconNightShelterOutlined.tsx b/src/IconNightShelterOutlined.tsx index 6e6e15712..82150ba85 100644 --- a/src/IconNightShelterOutlined.tsx +++ b/src/IconNightShelterOutlined.tsx @@ -8,4 +8,4 @@ const IconNightShelterOutlined: React.FC = ({ ...props }) => ( ) -export { IconNightShelterOutlined as default } +export default IconNightShelterOutlined diff --git a/src/IconNightShelterOutlinedFilled.tsx b/src/IconNightShelterOutlinedFilled.tsx index 64247e779..60e153b23 100644 --- a/src/IconNightShelterOutlinedFilled.tsx +++ b/src/IconNightShelterOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconNightShelterOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconNightShelterOutlinedFilled as default } +export default IconNightShelterOutlinedFilled diff --git a/src/IconNightShelterRounded.tsx b/src/IconNightShelterRounded.tsx index 21099d196..087a01edd 100644 --- a/src/IconNightShelterRounded.tsx +++ b/src/IconNightShelterRounded.tsx @@ -8,4 +8,4 @@ const IconNightShelterRounded: React.FC = ({ ...props }) => ( ) -export { IconNightShelterRounded as default } +export default IconNightShelterRounded diff --git a/src/IconNightShelterRoundedFilled.tsx b/src/IconNightShelterRoundedFilled.tsx index 66dd02552..c57490e14 100644 --- a/src/IconNightShelterRoundedFilled.tsx +++ b/src/IconNightShelterRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconNightShelterRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconNightShelterRoundedFilled as default } +export default IconNightShelterRoundedFilled diff --git a/src/IconNightShelterSharp.tsx b/src/IconNightShelterSharp.tsx index 354dfccc9..1987dc785 100644 --- a/src/IconNightShelterSharp.tsx +++ b/src/IconNightShelterSharp.tsx @@ -8,4 +8,4 @@ const IconNightShelterSharp: React.FC = ({ ...props }) => ( ) -export { IconNightShelterSharp as default } +export default IconNightShelterSharp diff --git a/src/IconNightShelterSharpFilled.tsx b/src/IconNightShelterSharpFilled.tsx index 85123fcd8..97326dcbd 100644 --- a/src/IconNightShelterSharpFilled.tsx +++ b/src/IconNightShelterSharpFilled.tsx @@ -8,4 +8,4 @@ const IconNightShelterSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconNightShelterSharpFilled as default } +export default IconNightShelterSharpFilled diff --git a/src/IconNightSightAutoOffOutlined.tsx b/src/IconNightSightAutoOffOutlined.tsx index cb60ac399..834542752 100644 --- a/src/IconNightSightAutoOffOutlined.tsx +++ b/src/IconNightSightAutoOffOutlined.tsx @@ -8,4 +8,4 @@ const IconNightSightAutoOffOutlined: React.FC = ({ ...props }) => ( ) -export { IconNightSightAutoOffOutlined as default } +export default IconNightSightAutoOffOutlined diff --git a/src/IconNightSightAutoOffOutlinedFilled.tsx b/src/IconNightSightAutoOffOutlinedFilled.tsx index 116f1d61d..9bf0aee93 100644 --- a/src/IconNightSightAutoOffOutlinedFilled.tsx +++ b/src/IconNightSightAutoOffOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconNightSightAutoOffOutlinedFilled: React.FC = ({ ) -export { IconNightSightAutoOffOutlinedFilled as default } +export default IconNightSightAutoOffOutlinedFilled diff --git a/src/IconNightSightAutoOffRounded.tsx b/src/IconNightSightAutoOffRounded.tsx index 0bc01dd45..866857bc5 100644 --- a/src/IconNightSightAutoOffRounded.tsx +++ b/src/IconNightSightAutoOffRounded.tsx @@ -8,4 +8,4 @@ const IconNightSightAutoOffRounded: React.FC = ({ ...props }) => ( ) -export { IconNightSightAutoOffRounded as default } +export default IconNightSightAutoOffRounded diff --git a/src/IconNightSightAutoOffRoundedFilled.tsx b/src/IconNightSightAutoOffRoundedFilled.tsx index 6dc668330..9b9459293 100644 --- a/src/IconNightSightAutoOffRoundedFilled.tsx +++ b/src/IconNightSightAutoOffRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconNightSightAutoOffRoundedFilled: React.FC = ({ ) -export { IconNightSightAutoOffRoundedFilled as default } +export default IconNightSightAutoOffRoundedFilled diff --git a/src/IconNightSightAutoOffSharp.tsx b/src/IconNightSightAutoOffSharp.tsx index 8b19bd045..d13ee8be2 100644 --- a/src/IconNightSightAutoOffSharp.tsx +++ b/src/IconNightSightAutoOffSharp.tsx @@ -8,4 +8,4 @@ const IconNightSightAutoOffSharp: React.FC = ({ ...props }) => ( ) -export { IconNightSightAutoOffSharp as default } +export default IconNightSightAutoOffSharp diff --git a/src/IconNightSightAutoOffSharpFilled.tsx b/src/IconNightSightAutoOffSharpFilled.tsx index a4dac6f54..840932c0e 100644 --- a/src/IconNightSightAutoOffSharpFilled.tsx +++ b/src/IconNightSightAutoOffSharpFilled.tsx @@ -10,4 +10,4 @@ const IconNightSightAutoOffSharpFilled: React.FC = ({ ) -export { IconNightSightAutoOffSharpFilled as default } +export default IconNightSightAutoOffSharpFilled diff --git a/src/IconNightSightAutoOutlined.tsx b/src/IconNightSightAutoOutlined.tsx index 36efc57df..756b9bf73 100644 --- a/src/IconNightSightAutoOutlined.tsx +++ b/src/IconNightSightAutoOutlined.tsx @@ -8,4 +8,4 @@ const IconNightSightAutoOutlined: React.FC = ({ ...props }) => ( ) -export { IconNightSightAutoOutlined as default } +export default IconNightSightAutoOutlined diff --git a/src/IconNightSightAutoOutlinedFilled.tsx b/src/IconNightSightAutoOutlinedFilled.tsx index e223a464d..edb9d1d7e 100644 --- a/src/IconNightSightAutoOutlinedFilled.tsx +++ b/src/IconNightSightAutoOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconNightSightAutoOutlinedFilled: React.FC = ({ ) -export { IconNightSightAutoOutlinedFilled as default } +export default IconNightSightAutoOutlinedFilled diff --git a/src/IconNightSightAutoRounded.tsx b/src/IconNightSightAutoRounded.tsx index 4461b400a..00ff016d1 100644 --- a/src/IconNightSightAutoRounded.tsx +++ b/src/IconNightSightAutoRounded.tsx @@ -8,4 +8,4 @@ const IconNightSightAutoRounded: React.FC = ({ ...props }) => ( ) -export { IconNightSightAutoRounded as default } +export default IconNightSightAutoRounded diff --git a/src/IconNightSightAutoRoundedFilled.tsx b/src/IconNightSightAutoRoundedFilled.tsx index 5d42c8eb6..af849e598 100644 --- a/src/IconNightSightAutoRoundedFilled.tsx +++ b/src/IconNightSightAutoRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconNightSightAutoRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconNightSightAutoRoundedFilled as default } +export default IconNightSightAutoRoundedFilled diff --git a/src/IconNightSightAutoSharp.tsx b/src/IconNightSightAutoSharp.tsx index e46d49ed5..461c57b89 100644 --- a/src/IconNightSightAutoSharp.tsx +++ b/src/IconNightSightAutoSharp.tsx @@ -8,4 +8,4 @@ const IconNightSightAutoSharp: React.FC = ({ ...props }) => ( ) -export { IconNightSightAutoSharp as default } +export default IconNightSightAutoSharp diff --git a/src/IconNightSightAutoSharpFilled.tsx b/src/IconNightSightAutoSharpFilled.tsx index 1888558b0..3af4b0e6f 100644 --- a/src/IconNightSightAutoSharpFilled.tsx +++ b/src/IconNightSightAutoSharpFilled.tsx @@ -8,4 +8,4 @@ const IconNightSightAutoSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconNightSightAutoSharpFilled as default } +export default IconNightSightAutoSharpFilled diff --git a/src/IconNightSightMaxOutlined.tsx b/src/IconNightSightMaxOutlined.tsx index 78218029f..cb81e61d4 100644 --- a/src/IconNightSightMaxOutlined.tsx +++ b/src/IconNightSightMaxOutlined.tsx @@ -8,4 +8,4 @@ const IconNightSightMaxOutlined: React.FC = ({ ...props }) => ( ) -export { IconNightSightMaxOutlined as default } +export default IconNightSightMaxOutlined diff --git a/src/IconNightSightMaxOutlinedFilled.tsx b/src/IconNightSightMaxOutlinedFilled.tsx index 8bbfcba83..8a40260e0 100644 --- a/src/IconNightSightMaxOutlinedFilled.tsx +++ b/src/IconNightSightMaxOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconNightSightMaxOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconNightSightMaxOutlinedFilled as default } +export default IconNightSightMaxOutlinedFilled diff --git a/src/IconNightSightMaxRounded.tsx b/src/IconNightSightMaxRounded.tsx index f5ae15705..4c970aa76 100644 --- a/src/IconNightSightMaxRounded.tsx +++ b/src/IconNightSightMaxRounded.tsx @@ -8,4 +8,4 @@ const IconNightSightMaxRounded: React.FC = ({ ...props }) => ( ) -export { IconNightSightMaxRounded as default } +export default IconNightSightMaxRounded diff --git a/src/IconNightSightMaxRoundedFilled.tsx b/src/IconNightSightMaxRoundedFilled.tsx index 732052917..93677df28 100644 --- a/src/IconNightSightMaxRoundedFilled.tsx +++ b/src/IconNightSightMaxRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconNightSightMaxRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconNightSightMaxRoundedFilled as default } +export default IconNightSightMaxRoundedFilled diff --git a/src/IconNightSightMaxSharp.tsx b/src/IconNightSightMaxSharp.tsx index df70417d4..a7173a12c 100644 --- a/src/IconNightSightMaxSharp.tsx +++ b/src/IconNightSightMaxSharp.tsx @@ -8,4 +8,4 @@ const IconNightSightMaxSharp: React.FC = ({ ...props }) => ( ) -export { IconNightSightMaxSharp as default } +export default IconNightSightMaxSharp diff --git a/src/IconNightSightMaxSharpFilled.tsx b/src/IconNightSightMaxSharpFilled.tsx index f2b01d7d9..fd68e8538 100644 --- a/src/IconNightSightMaxSharpFilled.tsx +++ b/src/IconNightSightMaxSharpFilled.tsx @@ -8,4 +8,4 @@ const IconNightSightMaxSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconNightSightMaxSharpFilled as default } +export default IconNightSightMaxSharpFilled diff --git a/src/IconNightlifeOutlined.tsx b/src/IconNightlifeOutlined.tsx index b47f6e6a2..388dc2c04 100644 --- a/src/IconNightlifeOutlined.tsx +++ b/src/IconNightlifeOutlined.tsx @@ -8,4 +8,4 @@ const IconNightlifeOutlined: React.FC = ({ ...props }) => ( ) -export { IconNightlifeOutlined as default } +export default IconNightlifeOutlined diff --git a/src/IconNightlifeOutlinedFilled.tsx b/src/IconNightlifeOutlinedFilled.tsx index 5d4884bc2..c88acbf05 100644 --- a/src/IconNightlifeOutlinedFilled.tsx +++ b/src/IconNightlifeOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconNightlifeOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconNightlifeOutlinedFilled as default } +export default IconNightlifeOutlinedFilled diff --git a/src/IconNightlifeRounded.tsx b/src/IconNightlifeRounded.tsx index 56a9bbfc6..c14ac550a 100644 --- a/src/IconNightlifeRounded.tsx +++ b/src/IconNightlifeRounded.tsx @@ -8,4 +8,4 @@ const IconNightlifeRounded: React.FC = ({ ...props }) => ( ) -export { IconNightlifeRounded as default } +export default IconNightlifeRounded diff --git a/src/IconNightlifeRoundedFilled.tsx b/src/IconNightlifeRoundedFilled.tsx index 646d437c9..db74efec4 100644 --- a/src/IconNightlifeRoundedFilled.tsx +++ b/src/IconNightlifeRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconNightlifeRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconNightlifeRoundedFilled as default } +export default IconNightlifeRoundedFilled diff --git a/src/IconNightlifeSharp.tsx b/src/IconNightlifeSharp.tsx index 8951111c6..6fe982353 100644 --- a/src/IconNightlifeSharp.tsx +++ b/src/IconNightlifeSharp.tsx @@ -8,4 +8,4 @@ const IconNightlifeSharp: React.FC = ({ ...props }) => ( ) -export { IconNightlifeSharp as default } +export default IconNightlifeSharp diff --git a/src/IconNightlifeSharpFilled.tsx b/src/IconNightlifeSharpFilled.tsx index aa4be5f26..c3d4a4017 100644 --- a/src/IconNightlifeSharpFilled.tsx +++ b/src/IconNightlifeSharpFilled.tsx @@ -8,4 +8,4 @@ const IconNightlifeSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconNightlifeSharpFilled as default } +export default IconNightlifeSharpFilled diff --git a/src/IconNightlightOutlined.tsx b/src/IconNightlightOutlined.tsx index 8518cb99e..0d5fb05bb 100644 --- a/src/IconNightlightOutlined.tsx +++ b/src/IconNightlightOutlined.tsx @@ -8,4 +8,4 @@ const IconNightlightOutlined: React.FC = ({ ...props }) => ( ) -export { IconNightlightOutlined as default } +export default IconNightlightOutlined diff --git a/src/IconNightlightOutlinedFilled.tsx b/src/IconNightlightOutlinedFilled.tsx index a27b4c5a6..50b78c8e3 100644 --- a/src/IconNightlightOutlinedFilled.tsx +++ b/src/IconNightlightOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconNightlightOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconNightlightOutlinedFilled as default } +export default IconNightlightOutlinedFilled diff --git a/src/IconNightlightRounded.tsx b/src/IconNightlightRounded.tsx index 6556710f9..3ad915eaf 100644 --- a/src/IconNightlightRounded.tsx +++ b/src/IconNightlightRounded.tsx @@ -8,4 +8,4 @@ const IconNightlightRounded: React.FC = ({ ...props }) => ( ) -export { IconNightlightRounded as default } +export default IconNightlightRounded diff --git a/src/IconNightlightRoundedFilled.tsx b/src/IconNightlightRoundedFilled.tsx index 737bca1ac..382d37c17 100644 --- a/src/IconNightlightRoundedFilled.tsx +++ b/src/IconNightlightRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconNightlightRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconNightlightRoundedFilled as default } +export default IconNightlightRoundedFilled diff --git a/src/IconNightlightSharp.tsx b/src/IconNightlightSharp.tsx index 2f59e8ac5..0008658b8 100644 --- a/src/IconNightlightSharp.tsx +++ b/src/IconNightlightSharp.tsx @@ -8,4 +8,4 @@ const IconNightlightSharp: React.FC = ({ ...props }) => ( ) -export { IconNightlightSharp as default } +export default IconNightlightSharp diff --git a/src/IconNightlightSharpFilled.tsx b/src/IconNightlightSharpFilled.tsx index 385abe8fb..04c870f68 100644 --- a/src/IconNightlightSharpFilled.tsx +++ b/src/IconNightlightSharpFilled.tsx @@ -8,4 +8,4 @@ const IconNightlightSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconNightlightSharpFilled as default } +export default IconNightlightSharpFilled diff --git a/src/IconNightsStayOutlined.tsx b/src/IconNightsStayOutlined.tsx index 22a0468b3..9bbdae366 100644 --- a/src/IconNightsStayOutlined.tsx +++ b/src/IconNightsStayOutlined.tsx @@ -8,4 +8,4 @@ const IconNightsStayOutlined: React.FC = ({ ...props }) => ( ) -export { IconNightsStayOutlined as default } +export default IconNightsStayOutlined diff --git a/src/IconNightsStayOutlinedFilled.tsx b/src/IconNightsStayOutlinedFilled.tsx index c62e93490..db1acbe13 100644 --- a/src/IconNightsStayOutlinedFilled.tsx +++ b/src/IconNightsStayOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconNightsStayOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconNightsStayOutlinedFilled as default } +export default IconNightsStayOutlinedFilled diff --git a/src/IconNightsStayRounded.tsx b/src/IconNightsStayRounded.tsx index 673746396..0054bdbc1 100644 --- a/src/IconNightsStayRounded.tsx +++ b/src/IconNightsStayRounded.tsx @@ -8,4 +8,4 @@ const IconNightsStayRounded: React.FC = ({ ...props }) => ( ) -export { IconNightsStayRounded as default } +export default IconNightsStayRounded diff --git a/src/IconNightsStayRoundedFilled.tsx b/src/IconNightsStayRoundedFilled.tsx index 953655d4d..d3fa92bce 100644 --- a/src/IconNightsStayRoundedFilled.tsx +++ b/src/IconNightsStayRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconNightsStayRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconNightsStayRoundedFilled as default } +export default IconNightsStayRoundedFilled diff --git a/src/IconNightsStaySharp.tsx b/src/IconNightsStaySharp.tsx index 541a9f20c..2d02655d9 100644 --- a/src/IconNightsStaySharp.tsx +++ b/src/IconNightsStaySharp.tsx @@ -8,4 +8,4 @@ const IconNightsStaySharp: React.FC = ({ ...props }) => ( ) -export { IconNightsStaySharp as default } +export default IconNightsStaySharp diff --git a/src/IconNightsStaySharpFilled.tsx b/src/IconNightsStaySharpFilled.tsx index dacfd53b7..ed616f083 100644 --- a/src/IconNightsStaySharpFilled.tsx +++ b/src/IconNightsStaySharpFilled.tsx @@ -8,4 +8,4 @@ const IconNightsStaySharpFilled: React.FC = ({ ...props }) => ( ) -export { IconNightsStaySharpFilled as default } +export default IconNightsStaySharpFilled diff --git a/src/IconNoAccountsOutlined.tsx b/src/IconNoAccountsOutlined.tsx index 40b1526c3..155833a6e 100644 --- a/src/IconNoAccountsOutlined.tsx +++ b/src/IconNoAccountsOutlined.tsx @@ -8,4 +8,4 @@ const IconNoAccountsOutlined: React.FC = ({ ...props }) => ( ) -export { IconNoAccountsOutlined as default } +export default IconNoAccountsOutlined diff --git a/src/IconNoAccountsOutlinedFilled.tsx b/src/IconNoAccountsOutlinedFilled.tsx index fdd899ef1..c02a84c08 100644 --- a/src/IconNoAccountsOutlinedFilled.tsx +++ b/src/IconNoAccountsOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconNoAccountsOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconNoAccountsOutlinedFilled as default } +export default IconNoAccountsOutlinedFilled diff --git a/src/IconNoAccountsRounded.tsx b/src/IconNoAccountsRounded.tsx index 8a1fa22e2..8d4dded4d 100644 --- a/src/IconNoAccountsRounded.tsx +++ b/src/IconNoAccountsRounded.tsx @@ -8,4 +8,4 @@ const IconNoAccountsRounded: React.FC = ({ ...props }) => ( ) -export { IconNoAccountsRounded as default } +export default IconNoAccountsRounded diff --git a/src/IconNoAccountsRoundedFilled.tsx b/src/IconNoAccountsRoundedFilled.tsx index 27e0c494a..cd4cf523e 100644 --- a/src/IconNoAccountsRoundedFilled.tsx +++ b/src/IconNoAccountsRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconNoAccountsRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconNoAccountsRoundedFilled as default } +export default IconNoAccountsRoundedFilled diff --git a/src/IconNoAccountsSharp.tsx b/src/IconNoAccountsSharp.tsx index c307ab76d..5ef7a0196 100644 --- a/src/IconNoAccountsSharp.tsx +++ b/src/IconNoAccountsSharp.tsx @@ -8,4 +8,4 @@ const IconNoAccountsSharp: React.FC = ({ ...props }) => ( ) -export { IconNoAccountsSharp as default } +export default IconNoAccountsSharp diff --git a/src/IconNoAccountsSharpFilled.tsx b/src/IconNoAccountsSharpFilled.tsx index 8c6288cb8..4552cec28 100644 --- a/src/IconNoAccountsSharpFilled.tsx +++ b/src/IconNoAccountsSharpFilled.tsx @@ -8,4 +8,4 @@ const IconNoAccountsSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconNoAccountsSharpFilled as default } +export default IconNoAccountsSharpFilled diff --git a/src/IconNoAdultContentOutlined.tsx b/src/IconNoAdultContentOutlined.tsx index 4998919a1..ebe6d7ea4 100644 --- a/src/IconNoAdultContentOutlined.tsx +++ b/src/IconNoAdultContentOutlined.tsx @@ -8,4 +8,4 @@ const IconNoAdultContentOutlined: React.FC = ({ ...props }) => ( ) -export { IconNoAdultContentOutlined as default } +export default IconNoAdultContentOutlined diff --git a/src/IconNoAdultContentOutlinedFilled.tsx b/src/IconNoAdultContentOutlinedFilled.tsx index 8104cd909..0dc8bb83e 100644 --- a/src/IconNoAdultContentOutlinedFilled.tsx +++ b/src/IconNoAdultContentOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconNoAdultContentOutlinedFilled: React.FC = ({ ) -export { IconNoAdultContentOutlinedFilled as default } +export default IconNoAdultContentOutlinedFilled diff --git a/src/IconNoAdultContentRounded.tsx b/src/IconNoAdultContentRounded.tsx index fafc2ffcf..1f0ffda69 100644 --- a/src/IconNoAdultContentRounded.tsx +++ b/src/IconNoAdultContentRounded.tsx @@ -8,4 +8,4 @@ const IconNoAdultContentRounded: React.FC = ({ ...props }) => ( ) -export { IconNoAdultContentRounded as default } +export default IconNoAdultContentRounded diff --git a/src/IconNoAdultContentRoundedFilled.tsx b/src/IconNoAdultContentRoundedFilled.tsx index c9c96ab9a..7204179bc 100644 --- a/src/IconNoAdultContentRoundedFilled.tsx +++ b/src/IconNoAdultContentRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconNoAdultContentRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconNoAdultContentRoundedFilled as default } +export default IconNoAdultContentRoundedFilled diff --git a/src/IconNoAdultContentSharp.tsx b/src/IconNoAdultContentSharp.tsx index b6f1c0460..56818c5a2 100644 --- a/src/IconNoAdultContentSharp.tsx +++ b/src/IconNoAdultContentSharp.tsx @@ -8,4 +8,4 @@ const IconNoAdultContentSharp: React.FC = ({ ...props }) => ( ) -export { IconNoAdultContentSharp as default } +export default IconNoAdultContentSharp diff --git a/src/IconNoAdultContentSharpFilled.tsx b/src/IconNoAdultContentSharpFilled.tsx index 2268b1776..5c0f39f87 100644 --- a/src/IconNoAdultContentSharpFilled.tsx +++ b/src/IconNoAdultContentSharpFilled.tsx @@ -8,4 +8,4 @@ const IconNoAdultContentSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconNoAdultContentSharpFilled as default } +export default IconNoAdultContentSharpFilled diff --git a/src/IconNoBackpackOutlined.tsx b/src/IconNoBackpackOutlined.tsx index 38f72f61d..9511e547e 100644 --- a/src/IconNoBackpackOutlined.tsx +++ b/src/IconNoBackpackOutlined.tsx @@ -8,4 +8,4 @@ const IconNoBackpackOutlined: React.FC = ({ ...props }) => ( ) -export { IconNoBackpackOutlined as default } +export default IconNoBackpackOutlined diff --git a/src/IconNoBackpackOutlinedFilled.tsx b/src/IconNoBackpackOutlinedFilled.tsx index 92f3e24e4..f5ac03519 100644 --- a/src/IconNoBackpackOutlinedFilled.tsx +++ b/src/IconNoBackpackOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconNoBackpackOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconNoBackpackOutlinedFilled as default } +export default IconNoBackpackOutlinedFilled diff --git a/src/IconNoBackpackRounded.tsx b/src/IconNoBackpackRounded.tsx index 007250f5b..c845fe316 100644 --- a/src/IconNoBackpackRounded.tsx +++ b/src/IconNoBackpackRounded.tsx @@ -8,4 +8,4 @@ const IconNoBackpackRounded: React.FC = ({ ...props }) => ( ) -export { IconNoBackpackRounded as default } +export default IconNoBackpackRounded diff --git a/src/IconNoBackpackRoundedFilled.tsx b/src/IconNoBackpackRoundedFilled.tsx index adca73dd1..caf3e0da9 100644 --- a/src/IconNoBackpackRoundedFilled.tsx +++ b/src/IconNoBackpackRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconNoBackpackRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconNoBackpackRoundedFilled as default } +export default IconNoBackpackRoundedFilled diff --git a/src/IconNoBackpackSharp.tsx b/src/IconNoBackpackSharp.tsx index dc1320cf5..d11e4a194 100644 --- a/src/IconNoBackpackSharp.tsx +++ b/src/IconNoBackpackSharp.tsx @@ -8,4 +8,4 @@ const IconNoBackpackSharp: React.FC = ({ ...props }) => ( ) -export { IconNoBackpackSharp as default } +export default IconNoBackpackSharp diff --git a/src/IconNoBackpackSharpFilled.tsx b/src/IconNoBackpackSharpFilled.tsx index f0f3e6c59..fc5b69cc6 100644 --- a/src/IconNoBackpackSharpFilled.tsx +++ b/src/IconNoBackpackSharpFilled.tsx @@ -8,4 +8,4 @@ const IconNoBackpackSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconNoBackpackSharpFilled as default } +export default IconNoBackpackSharpFilled diff --git a/src/IconNoCrashOutlined.tsx b/src/IconNoCrashOutlined.tsx index 42b5fcf60..dbcd4a2d8 100644 --- a/src/IconNoCrashOutlined.tsx +++ b/src/IconNoCrashOutlined.tsx @@ -8,4 +8,4 @@ const IconNoCrashOutlined: React.FC = ({ ...props }) => ( ) -export { IconNoCrashOutlined as default } +export default IconNoCrashOutlined diff --git a/src/IconNoCrashOutlinedFilled.tsx b/src/IconNoCrashOutlinedFilled.tsx index f5edc1a9d..f4f164b90 100644 --- a/src/IconNoCrashOutlinedFilled.tsx +++ b/src/IconNoCrashOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconNoCrashOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconNoCrashOutlinedFilled as default } +export default IconNoCrashOutlinedFilled diff --git a/src/IconNoCrashRounded.tsx b/src/IconNoCrashRounded.tsx index 19a7e6d2f..baf0840aa 100644 --- a/src/IconNoCrashRounded.tsx +++ b/src/IconNoCrashRounded.tsx @@ -8,4 +8,4 @@ const IconNoCrashRounded: React.FC = ({ ...props }) => ( ) -export { IconNoCrashRounded as default } +export default IconNoCrashRounded diff --git a/src/IconNoCrashRoundedFilled.tsx b/src/IconNoCrashRoundedFilled.tsx index 10f6edab2..e526504f8 100644 --- a/src/IconNoCrashRoundedFilled.tsx +++ b/src/IconNoCrashRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconNoCrashRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconNoCrashRoundedFilled as default } +export default IconNoCrashRoundedFilled diff --git a/src/IconNoCrashSharp.tsx b/src/IconNoCrashSharp.tsx index 546336bfc..8a7561bb1 100644 --- a/src/IconNoCrashSharp.tsx +++ b/src/IconNoCrashSharp.tsx @@ -8,4 +8,4 @@ const IconNoCrashSharp: React.FC = ({ ...props }) => ( ) -export { IconNoCrashSharp as default } +export default IconNoCrashSharp diff --git a/src/IconNoCrashSharpFilled.tsx b/src/IconNoCrashSharpFilled.tsx index 54cb305aa..b5654b062 100644 --- a/src/IconNoCrashSharpFilled.tsx +++ b/src/IconNoCrashSharpFilled.tsx @@ -8,4 +8,4 @@ const IconNoCrashSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconNoCrashSharpFilled as default } +export default IconNoCrashSharpFilled diff --git a/src/IconNoDrinksOutlined.tsx b/src/IconNoDrinksOutlined.tsx index 935bdbf6b..92e77250d 100644 --- a/src/IconNoDrinksOutlined.tsx +++ b/src/IconNoDrinksOutlined.tsx @@ -8,4 +8,4 @@ const IconNoDrinksOutlined: React.FC = ({ ...props }) => ( ) -export { IconNoDrinksOutlined as default } +export default IconNoDrinksOutlined diff --git a/src/IconNoDrinksOutlinedFilled.tsx b/src/IconNoDrinksOutlinedFilled.tsx index 6537ced25..262c70416 100644 --- a/src/IconNoDrinksOutlinedFilled.tsx +++ b/src/IconNoDrinksOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconNoDrinksOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconNoDrinksOutlinedFilled as default } +export default IconNoDrinksOutlinedFilled diff --git a/src/IconNoDrinksRounded.tsx b/src/IconNoDrinksRounded.tsx index 22b4e786a..e84baff2d 100644 --- a/src/IconNoDrinksRounded.tsx +++ b/src/IconNoDrinksRounded.tsx @@ -8,4 +8,4 @@ const IconNoDrinksRounded: React.FC = ({ ...props }) => ( ) -export { IconNoDrinksRounded as default } +export default IconNoDrinksRounded diff --git a/src/IconNoDrinksRoundedFilled.tsx b/src/IconNoDrinksRoundedFilled.tsx index c396f495e..ecde69ee8 100644 --- a/src/IconNoDrinksRoundedFilled.tsx +++ b/src/IconNoDrinksRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconNoDrinksRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconNoDrinksRoundedFilled as default } +export default IconNoDrinksRoundedFilled diff --git a/src/IconNoDrinksSharp.tsx b/src/IconNoDrinksSharp.tsx index 4bd475f33..bf90c8b89 100644 --- a/src/IconNoDrinksSharp.tsx +++ b/src/IconNoDrinksSharp.tsx @@ -8,4 +8,4 @@ const IconNoDrinksSharp: React.FC = ({ ...props }) => ( ) -export { IconNoDrinksSharp as default } +export default IconNoDrinksSharp diff --git a/src/IconNoDrinksSharpFilled.tsx b/src/IconNoDrinksSharpFilled.tsx index 62d29c129..43a9d4dfe 100644 --- a/src/IconNoDrinksSharpFilled.tsx +++ b/src/IconNoDrinksSharpFilled.tsx @@ -8,4 +8,4 @@ const IconNoDrinksSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconNoDrinksSharpFilled as default } +export default IconNoDrinksSharpFilled diff --git a/src/IconNoEncryptionOutlined.tsx b/src/IconNoEncryptionOutlined.tsx index f0d62d25c..c1ecbec3e 100644 --- a/src/IconNoEncryptionOutlined.tsx +++ b/src/IconNoEncryptionOutlined.tsx @@ -8,4 +8,4 @@ const IconNoEncryptionOutlined: React.FC = ({ ...props }) => ( ) -export { IconNoEncryptionOutlined as default } +export default IconNoEncryptionOutlined diff --git a/src/IconNoEncryptionOutlinedFilled.tsx b/src/IconNoEncryptionOutlinedFilled.tsx index fd7621839..bab25c7e6 100644 --- a/src/IconNoEncryptionOutlinedFilled.tsx +++ b/src/IconNoEncryptionOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconNoEncryptionOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconNoEncryptionOutlinedFilled as default } +export default IconNoEncryptionOutlinedFilled diff --git a/src/IconNoEncryptionRounded.tsx b/src/IconNoEncryptionRounded.tsx index 5d8e775ab..4bc7a911a 100644 --- a/src/IconNoEncryptionRounded.tsx +++ b/src/IconNoEncryptionRounded.tsx @@ -8,4 +8,4 @@ const IconNoEncryptionRounded: React.FC = ({ ...props }) => ( ) -export { IconNoEncryptionRounded as default } +export default IconNoEncryptionRounded diff --git a/src/IconNoEncryptionRoundedFilled.tsx b/src/IconNoEncryptionRoundedFilled.tsx index e5d1e5fad..d5f3374bf 100644 --- a/src/IconNoEncryptionRoundedFilled.tsx +++ b/src/IconNoEncryptionRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconNoEncryptionRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconNoEncryptionRoundedFilled as default } +export default IconNoEncryptionRoundedFilled diff --git a/src/IconNoEncryptionSharp.tsx b/src/IconNoEncryptionSharp.tsx index a55ecff2d..430a5754b 100644 --- a/src/IconNoEncryptionSharp.tsx +++ b/src/IconNoEncryptionSharp.tsx @@ -8,4 +8,4 @@ const IconNoEncryptionSharp: React.FC = ({ ...props }) => ( ) -export { IconNoEncryptionSharp as default } +export default IconNoEncryptionSharp diff --git a/src/IconNoEncryptionSharpFilled.tsx b/src/IconNoEncryptionSharpFilled.tsx index ece8778c3..807d4d721 100644 --- a/src/IconNoEncryptionSharpFilled.tsx +++ b/src/IconNoEncryptionSharpFilled.tsx @@ -8,4 +8,4 @@ const IconNoEncryptionSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconNoEncryptionSharpFilled as default } +export default IconNoEncryptionSharpFilled diff --git a/src/IconNoFlashOutlined.tsx b/src/IconNoFlashOutlined.tsx index 6ec32764e..536285d0c 100644 --- a/src/IconNoFlashOutlined.tsx +++ b/src/IconNoFlashOutlined.tsx @@ -8,4 +8,4 @@ const IconNoFlashOutlined: React.FC = ({ ...props }) => ( ) -export { IconNoFlashOutlined as default } +export default IconNoFlashOutlined diff --git a/src/IconNoFlashOutlinedFilled.tsx b/src/IconNoFlashOutlinedFilled.tsx index d61e433f6..2d5fda54e 100644 --- a/src/IconNoFlashOutlinedFilled.tsx +++ b/src/IconNoFlashOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconNoFlashOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconNoFlashOutlinedFilled as default } +export default IconNoFlashOutlinedFilled diff --git a/src/IconNoFlashRounded.tsx b/src/IconNoFlashRounded.tsx index cca870561..bc3bafe00 100644 --- a/src/IconNoFlashRounded.tsx +++ b/src/IconNoFlashRounded.tsx @@ -8,4 +8,4 @@ const IconNoFlashRounded: React.FC = ({ ...props }) => ( ) -export { IconNoFlashRounded as default } +export default IconNoFlashRounded diff --git a/src/IconNoFlashRoundedFilled.tsx b/src/IconNoFlashRoundedFilled.tsx index 256bf052d..eacf7c751 100644 --- a/src/IconNoFlashRoundedFilled.tsx +++ b/src/IconNoFlashRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconNoFlashRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconNoFlashRoundedFilled as default } +export default IconNoFlashRoundedFilled diff --git a/src/IconNoFlashSharp.tsx b/src/IconNoFlashSharp.tsx index 351e97843..24df6aa6d 100644 --- a/src/IconNoFlashSharp.tsx +++ b/src/IconNoFlashSharp.tsx @@ -8,4 +8,4 @@ const IconNoFlashSharp: React.FC = ({ ...props }) => ( ) -export { IconNoFlashSharp as default } +export default IconNoFlashSharp diff --git a/src/IconNoFlashSharpFilled.tsx b/src/IconNoFlashSharpFilled.tsx index c64ca0293..c91d1b177 100644 --- a/src/IconNoFlashSharpFilled.tsx +++ b/src/IconNoFlashSharpFilled.tsx @@ -8,4 +8,4 @@ const IconNoFlashSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconNoFlashSharpFilled as default } +export default IconNoFlashSharpFilled diff --git a/src/IconNoFoodOutlined.tsx b/src/IconNoFoodOutlined.tsx index b092b4ae2..aa61b2ff1 100644 --- a/src/IconNoFoodOutlined.tsx +++ b/src/IconNoFoodOutlined.tsx @@ -8,4 +8,4 @@ const IconNoFoodOutlined: React.FC = ({ ...props }) => ( ) -export { IconNoFoodOutlined as default } +export default IconNoFoodOutlined diff --git a/src/IconNoFoodOutlinedFilled.tsx b/src/IconNoFoodOutlinedFilled.tsx index 7bc33b252..04ca663f7 100644 --- a/src/IconNoFoodOutlinedFilled.tsx +++ b/src/IconNoFoodOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconNoFoodOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconNoFoodOutlinedFilled as default } +export default IconNoFoodOutlinedFilled diff --git a/src/IconNoFoodRounded.tsx b/src/IconNoFoodRounded.tsx index 874f3cbca..92c98a934 100644 --- a/src/IconNoFoodRounded.tsx +++ b/src/IconNoFoodRounded.tsx @@ -8,4 +8,4 @@ const IconNoFoodRounded: React.FC = ({ ...props }) => ( ) -export { IconNoFoodRounded as default } +export default IconNoFoodRounded diff --git a/src/IconNoFoodRoundedFilled.tsx b/src/IconNoFoodRoundedFilled.tsx index 9b2a34ae1..022316abd 100644 --- a/src/IconNoFoodRoundedFilled.tsx +++ b/src/IconNoFoodRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconNoFoodRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconNoFoodRoundedFilled as default } +export default IconNoFoodRoundedFilled diff --git a/src/IconNoFoodSharp.tsx b/src/IconNoFoodSharp.tsx index 4cc02c07b..dfb0fcdb5 100644 --- a/src/IconNoFoodSharp.tsx +++ b/src/IconNoFoodSharp.tsx @@ -8,4 +8,4 @@ const IconNoFoodSharp: React.FC = ({ ...props }) => ( ) -export { IconNoFoodSharp as default } +export default IconNoFoodSharp diff --git a/src/IconNoFoodSharpFilled.tsx b/src/IconNoFoodSharpFilled.tsx index 17130b0be..01a8291c0 100644 --- a/src/IconNoFoodSharpFilled.tsx +++ b/src/IconNoFoodSharpFilled.tsx @@ -8,4 +8,4 @@ const IconNoFoodSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconNoFoodSharpFilled as default } +export default IconNoFoodSharpFilled diff --git a/src/IconNoLuggageOutlined.tsx b/src/IconNoLuggageOutlined.tsx index cdcfb925a..37331577e 100644 --- a/src/IconNoLuggageOutlined.tsx +++ b/src/IconNoLuggageOutlined.tsx @@ -8,4 +8,4 @@ const IconNoLuggageOutlined: React.FC = ({ ...props }) => ( ) -export { IconNoLuggageOutlined as default } +export default IconNoLuggageOutlined diff --git a/src/IconNoLuggageOutlinedFilled.tsx b/src/IconNoLuggageOutlinedFilled.tsx index dee503d4a..5d140f714 100644 --- a/src/IconNoLuggageOutlinedFilled.tsx +++ b/src/IconNoLuggageOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconNoLuggageOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconNoLuggageOutlinedFilled as default } +export default IconNoLuggageOutlinedFilled diff --git a/src/IconNoLuggageRounded.tsx b/src/IconNoLuggageRounded.tsx index 1c6526884..7a6ca37fd 100644 --- a/src/IconNoLuggageRounded.tsx +++ b/src/IconNoLuggageRounded.tsx @@ -8,4 +8,4 @@ const IconNoLuggageRounded: React.FC = ({ ...props }) => ( ) -export { IconNoLuggageRounded as default } +export default IconNoLuggageRounded diff --git a/src/IconNoLuggageRoundedFilled.tsx b/src/IconNoLuggageRoundedFilled.tsx index 8dea17eed..62846b1d2 100644 --- a/src/IconNoLuggageRoundedFilled.tsx +++ b/src/IconNoLuggageRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconNoLuggageRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconNoLuggageRoundedFilled as default } +export default IconNoLuggageRoundedFilled diff --git a/src/IconNoLuggageSharp.tsx b/src/IconNoLuggageSharp.tsx index 1b0ec711f..57051e272 100644 --- a/src/IconNoLuggageSharp.tsx +++ b/src/IconNoLuggageSharp.tsx @@ -8,4 +8,4 @@ const IconNoLuggageSharp: React.FC = ({ ...props }) => ( ) -export { IconNoLuggageSharp as default } +export default IconNoLuggageSharp diff --git a/src/IconNoLuggageSharpFilled.tsx b/src/IconNoLuggageSharpFilled.tsx index 0bf034fea..07ee36f4e 100644 --- a/src/IconNoLuggageSharpFilled.tsx +++ b/src/IconNoLuggageSharpFilled.tsx @@ -8,4 +8,4 @@ const IconNoLuggageSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconNoLuggageSharpFilled as default } +export default IconNoLuggageSharpFilled diff --git a/src/IconNoMealsOutlined.tsx b/src/IconNoMealsOutlined.tsx index ca1316ccd..537091fcd 100644 --- a/src/IconNoMealsOutlined.tsx +++ b/src/IconNoMealsOutlined.tsx @@ -8,4 +8,4 @@ const IconNoMealsOutlined: React.FC = ({ ...props }) => ( ) -export { IconNoMealsOutlined as default } +export default IconNoMealsOutlined diff --git a/src/IconNoMealsOutlinedFilled.tsx b/src/IconNoMealsOutlinedFilled.tsx index 2c4eb3daf..96c6b4578 100644 --- a/src/IconNoMealsOutlinedFilled.tsx +++ b/src/IconNoMealsOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconNoMealsOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconNoMealsOutlinedFilled as default } +export default IconNoMealsOutlinedFilled diff --git a/src/IconNoMealsRounded.tsx b/src/IconNoMealsRounded.tsx index fc92e84a5..f534d2af7 100644 --- a/src/IconNoMealsRounded.tsx +++ b/src/IconNoMealsRounded.tsx @@ -8,4 +8,4 @@ const IconNoMealsRounded: React.FC = ({ ...props }) => ( ) -export { IconNoMealsRounded as default } +export default IconNoMealsRounded diff --git a/src/IconNoMealsRoundedFilled.tsx b/src/IconNoMealsRoundedFilled.tsx index cfcafb7e4..527a69e93 100644 --- a/src/IconNoMealsRoundedFilled.tsx +++ b/src/IconNoMealsRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconNoMealsRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconNoMealsRoundedFilled as default } +export default IconNoMealsRoundedFilled diff --git a/src/IconNoMealsSharp.tsx b/src/IconNoMealsSharp.tsx index a5854604e..5cd9279e5 100644 --- a/src/IconNoMealsSharp.tsx +++ b/src/IconNoMealsSharp.tsx @@ -8,4 +8,4 @@ const IconNoMealsSharp: React.FC = ({ ...props }) => ( ) -export { IconNoMealsSharp as default } +export default IconNoMealsSharp diff --git a/src/IconNoMealsSharpFilled.tsx b/src/IconNoMealsSharpFilled.tsx index 9bcd53154..762c47d28 100644 --- a/src/IconNoMealsSharpFilled.tsx +++ b/src/IconNoMealsSharpFilled.tsx @@ -8,4 +8,4 @@ const IconNoMealsSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconNoMealsSharpFilled as default } +export default IconNoMealsSharpFilled diff --git a/src/IconNoMeetingRoomOutlined.tsx b/src/IconNoMeetingRoomOutlined.tsx index 169181d1d..1aef679c0 100644 --- a/src/IconNoMeetingRoomOutlined.tsx +++ b/src/IconNoMeetingRoomOutlined.tsx @@ -8,4 +8,4 @@ const IconNoMeetingRoomOutlined: React.FC = ({ ...props }) => ( ) -export { IconNoMeetingRoomOutlined as default } +export default IconNoMeetingRoomOutlined diff --git a/src/IconNoMeetingRoomOutlinedFilled.tsx b/src/IconNoMeetingRoomOutlinedFilled.tsx index 6498faf5c..18b20a973 100644 --- a/src/IconNoMeetingRoomOutlinedFilled.tsx +++ b/src/IconNoMeetingRoomOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconNoMeetingRoomOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconNoMeetingRoomOutlinedFilled as default } +export default IconNoMeetingRoomOutlinedFilled diff --git a/src/IconNoMeetingRoomRounded.tsx b/src/IconNoMeetingRoomRounded.tsx index b1c38a7ee..fcb43679c 100644 --- a/src/IconNoMeetingRoomRounded.tsx +++ b/src/IconNoMeetingRoomRounded.tsx @@ -8,4 +8,4 @@ const IconNoMeetingRoomRounded: React.FC = ({ ...props }) => ( ) -export { IconNoMeetingRoomRounded as default } +export default IconNoMeetingRoomRounded diff --git a/src/IconNoMeetingRoomRoundedFilled.tsx b/src/IconNoMeetingRoomRoundedFilled.tsx index 96fef332f..6d0add472 100644 --- a/src/IconNoMeetingRoomRoundedFilled.tsx +++ b/src/IconNoMeetingRoomRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconNoMeetingRoomRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconNoMeetingRoomRoundedFilled as default } +export default IconNoMeetingRoomRoundedFilled diff --git a/src/IconNoMeetingRoomSharp.tsx b/src/IconNoMeetingRoomSharp.tsx index 6fa0b6a75..e22648647 100644 --- a/src/IconNoMeetingRoomSharp.tsx +++ b/src/IconNoMeetingRoomSharp.tsx @@ -8,4 +8,4 @@ const IconNoMeetingRoomSharp: React.FC = ({ ...props }) => ( ) -export { IconNoMeetingRoomSharp as default } +export default IconNoMeetingRoomSharp diff --git a/src/IconNoMeetingRoomSharpFilled.tsx b/src/IconNoMeetingRoomSharpFilled.tsx index 3b4a95e2d..697e4bbba 100644 --- a/src/IconNoMeetingRoomSharpFilled.tsx +++ b/src/IconNoMeetingRoomSharpFilled.tsx @@ -8,4 +8,4 @@ const IconNoMeetingRoomSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconNoMeetingRoomSharpFilled as default } +export default IconNoMeetingRoomSharpFilled diff --git a/src/IconNoPhotographyOutlined.tsx b/src/IconNoPhotographyOutlined.tsx index d4be94d9c..835daeaa9 100644 --- a/src/IconNoPhotographyOutlined.tsx +++ b/src/IconNoPhotographyOutlined.tsx @@ -8,4 +8,4 @@ const IconNoPhotographyOutlined: React.FC = ({ ...props }) => ( ) -export { IconNoPhotographyOutlined as default } +export default IconNoPhotographyOutlined diff --git a/src/IconNoPhotographyOutlinedFilled.tsx b/src/IconNoPhotographyOutlinedFilled.tsx index 8a9ed1f06..acb8adec1 100644 --- a/src/IconNoPhotographyOutlinedFilled.tsx +++ b/src/IconNoPhotographyOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconNoPhotographyOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconNoPhotographyOutlinedFilled as default } +export default IconNoPhotographyOutlinedFilled diff --git a/src/IconNoPhotographyRounded.tsx b/src/IconNoPhotographyRounded.tsx index b8d84fe13..7663bd5fb 100644 --- a/src/IconNoPhotographyRounded.tsx +++ b/src/IconNoPhotographyRounded.tsx @@ -8,4 +8,4 @@ const IconNoPhotographyRounded: React.FC = ({ ...props }) => ( ) -export { IconNoPhotographyRounded as default } +export default IconNoPhotographyRounded diff --git a/src/IconNoPhotographyRoundedFilled.tsx b/src/IconNoPhotographyRoundedFilled.tsx index 7dd9286b9..acf288650 100644 --- a/src/IconNoPhotographyRoundedFilled.tsx +++ b/src/IconNoPhotographyRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconNoPhotographyRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconNoPhotographyRoundedFilled as default } +export default IconNoPhotographyRoundedFilled diff --git a/src/IconNoPhotographySharp.tsx b/src/IconNoPhotographySharp.tsx index 784f810a8..6426f9e0c 100644 --- a/src/IconNoPhotographySharp.tsx +++ b/src/IconNoPhotographySharp.tsx @@ -8,4 +8,4 @@ const IconNoPhotographySharp: React.FC = ({ ...props }) => ( ) -export { IconNoPhotographySharp as default } +export default IconNoPhotographySharp diff --git a/src/IconNoPhotographySharpFilled.tsx b/src/IconNoPhotographySharpFilled.tsx index b67c2d204..ae920b5c4 100644 --- a/src/IconNoPhotographySharpFilled.tsx +++ b/src/IconNoPhotographySharpFilled.tsx @@ -8,4 +8,4 @@ const IconNoPhotographySharpFilled: React.FC = ({ ...props }) => ( ) -export { IconNoPhotographySharpFilled as default } +export default IconNoPhotographySharpFilled diff --git a/src/IconNoSimOutlined.tsx b/src/IconNoSimOutlined.tsx index 6427e160b..5b02aba70 100644 --- a/src/IconNoSimOutlined.tsx +++ b/src/IconNoSimOutlined.tsx @@ -8,4 +8,4 @@ const IconNoSimOutlined: React.FC = ({ ...props }) => ( ) -export { IconNoSimOutlined as default } +export default IconNoSimOutlined diff --git a/src/IconNoSimOutlinedFilled.tsx b/src/IconNoSimOutlinedFilled.tsx index ad570de5d..11e33848a 100644 --- a/src/IconNoSimOutlinedFilled.tsx +++ b/src/IconNoSimOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconNoSimOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconNoSimOutlinedFilled as default } +export default IconNoSimOutlinedFilled diff --git a/src/IconNoSimRounded.tsx b/src/IconNoSimRounded.tsx index b6a3103a5..c2ae5c3c2 100644 --- a/src/IconNoSimRounded.tsx +++ b/src/IconNoSimRounded.tsx @@ -8,4 +8,4 @@ const IconNoSimRounded: React.FC = ({ ...props }) => ( ) -export { IconNoSimRounded as default } +export default IconNoSimRounded diff --git a/src/IconNoSimRoundedFilled.tsx b/src/IconNoSimRoundedFilled.tsx index 7381464de..2eb5a2d53 100644 --- a/src/IconNoSimRoundedFilled.tsx +++ b/src/IconNoSimRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconNoSimRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconNoSimRoundedFilled as default } +export default IconNoSimRoundedFilled diff --git a/src/IconNoSimSharp.tsx b/src/IconNoSimSharp.tsx index 433a065e4..7230b1e79 100644 --- a/src/IconNoSimSharp.tsx +++ b/src/IconNoSimSharp.tsx @@ -8,4 +8,4 @@ const IconNoSimSharp: React.FC = ({ ...props }) => ( ) -export { IconNoSimSharp as default } +export default IconNoSimSharp diff --git a/src/IconNoSimSharpFilled.tsx b/src/IconNoSimSharpFilled.tsx index ef9176e63..9d9292ccb 100644 --- a/src/IconNoSimSharpFilled.tsx +++ b/src/IconNoSimSharpFilled.tsx @@ -8,4 +8,4 @@ const IconNoSimSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconNoSimSharpFilled as default } +export default IconNoSimSharpFilled diff --git a/src/IconNoSoundOutlined.tsx b/src/IconNoSoundOutlined.tsx index 347139ad5..51ddec87b 100644 --- a/src/IconNoSoundOutlined.tsx +++ b/src/IconNoSoundOutlined.tsx @@ -8,4 +8,4 @@ const IconNoSoundOutlined: React.FC = ({ ...props }) => ( ) -export { IconNoSoundOutlined as default } +export default IconNoSoundOutlined diff --git a/src/IconNoSoundOutlinedFilled.tsx b/src/IconNoSoundOutlinedFilled.tsx index af476f499..3e090211d 100644 --- a/src/IconNoSoundOutlinedFilled.tsx +++ b/src/IconNoSoundOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconNoSoundOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconNoSoundOutlinedFilled as default } +export default IconNoSoundOutlinedFilled diff --git a/src/IconNoSoundRounded.tsx b/src/IconNoSoundRounded.tsx index adaccccf8..c9f5b196f 100644 --- a/src/IconNoSoundRounded.tsx +++ b/src/IconNoSoundRounded.tsx @@ -8,4 +8,4 @@ const IconNoSoundRounded: React.FC = ({ ...props }) => ( ) -export { IconNoSoundRounded as default } +export default IconNoSoundRounded diff --git a/src/IconNoSoundRoundedFilled.tsx b/src/IconNoSoundRoundedFilled.tsx index 146fccc5c..a0e739f65 100644 --- a/src/IconNoSoundRoundedFilled.tsx +++ b/src/IconNoSoundRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconNoSoundRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconNoSoundRoundedFilled as default } +export default IconNoSoundRoundedFilled diff --git a/src/IconNoSoundSharp.tsx b/src/IconNoSoundSharp.tsx index 319057bfb..c77f60cae 100644 --- a/src/IconNoSoundSharp.tsx +++ b/src/IconNoSoundSharp.tsx @@ -8,4 +8,4 @@ const IconNoSoundSharp: React.FC = ({ ...props }) => ( ) -export { IconNoSoundSharp as default } +export default IconNoSoundSharp diff --git a/src/IconNoSoundSharpFilled.tsx b/src/IconNoSoundSharpFilled.tsx index b5ef4289c..6c8b9a4fe 100644 --- a/src/IconNoSoundSharpFilled.tsx +++ b/src/IconNoSoundSharpFilled.tsx @@ -8,4 +8,4 @@ const IconNoSoundSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconNoSoundSharpFilled as default } +export default IconNoSoundSharpFilled diff --git a/src/IconNoStrollerOutlined.tsx b/src/IconNoStrollerOutlined.tsx index 025bc8174..04a8f9520 100644 --- a/src/IconNoStrollerOutlined.tsx +++ b/src/IconNoStrollerOutlined.tsx @@ -8,4 +8,4 @@ const IconNoStrollerOutlined: React.FC = ({ ...props }) => ( ) -export { IconNoStrollerOutlined as default } +export default IconNoStrollerOutlined diff --git a/src/IconNoStrollerOutlinedFilled.tsx b/src/IconNoStrollerOutlinedFilled.tsx index 347db8ab4..73f731a56 100644 --- a/src/IconNoStrollerOutlinedFilled.tsx +++ b/src/IconNoStrollerOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconNoStrollerOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconNoStrollerOutlinedFilled as default } +export default IconNoStrollerOutlinedFilled diff --git a/src/IconNoStrollerRounded.tsx b/src/IconNoStrollerRounded.tsx index d2128489b..77ea7efa7 100644 --- a/src/IconNoStrollerRounded.tsx +++ b/src/IconNoStrollerRounded.tsx @@ -8,4 +8,4 @@ const IconNoStrollerRounded: React.FC = ({ ...props }) => ( ) -export { IconNoStrollerRounded as default } +export default IconNoStrollerRounded diff --git a/src/IconNoStrollerRoundedFilled.tsx b/src/IconNoStrollerRoundedFilled.tsx index cd1e27a27..4a03a67bd 100644 --- a/src/IconNoStrollerRoundedFilled.tsx +++ b/src/IconNoStrollerRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconNoStrollerRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconNoStrollerRoundedFilled as default } +export default IconNoStrollerRoundedFilled diff --git a/src/IconNoStrollerSharp.tsx b/src/IconNoStrollerSharp.tsx index 05d1b5f2e..7b4f104f1 100644 --- a/src/IconNoStrollerSharp.tsx +++ b/src/IconNoStrollerSharp.tsx @@ -8,4 +8,4 @@ const IconNoStrollerSharp: React.FC = ({ ...props }) => ( ) -export { IconNoStrollerSharp as default } +export default IconNoStrollerSharp diff --git a/src/IconNoStrollerSharpFilled.tsx b/src/IconNoStrollerSharpFilled.tsx index 0d52bd9b4..a2c7522a0 100644 --- a/src/IconNoStrollerSharpFilled.tsx +++ b/src/IconNoStrollerSharpFilled.tsx @@ -8,4 +8,4 @@ const IconNoStrollerSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconNoStrollerSharpFilled as default } +export default IconNoStrollerSharpFilled diff --git a/src/IconNoTransferOutlined.tsx b/src/IconNoTransferOutlined.tsx index eaa0c149c..6564d268b 100644 --- a/src/IconNoTransferOutlined.tsx +++ b/src/IconNoTransferOutlined.tsx @@ -8,4 +8,4 @@ const IconNoTransferOutlined: React.FC = ({ ...props }) => ( ) -export { IconNoTransferOutlined as default } +export default IconNoTransferOutlined diff --git a/src/IconNoTransferOutlinedFilled.tsx b/src/IconNoTransferOutlinedFilled.tsx index 70b46db94..3cd52f22f 100644 --- a/src/IconNoTransferOutlinedFilled.tsx +++ b/src/IconNoTransferOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconNoTransferOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconNoTransferOutlinedFilled as default } +export default IconNoTransferOutlinedFilled diff --git a/src/IconNoTransferRounded.tsx b/src/IconNoTransferRounded.tsx index 6eaeb09fb..622358557 100644 --- a/src/IconNoTransferRounded.tsx +++ b/src/IconNoTransferRounded.tsx @@ -8,4 +8,4 @@ const IconNoTransferRounded: React.FC = ({ ...props }) => ( ) -export { IconNoTransferRounded as default } +export default IconNoTransferRounded diff --git a/src/IconNoTransferRoundedFilled.tsx b/src/IconNoTransferRoundedFilled.tsx index debf60dc1..be3bfc52e 100644 --- a/src/IconNoTransferRoundedFilled.tsx +++ b/src/IconNoTransferRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconNoTransferRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconNoTransferRoundedFilled as default } +export default IconNoTransferRoundedFilled diff --git a/src/IconNoTransferSharp.tsx b/src/IconNoTransferSharp.tsx index 2b343a7ae..9b4e31b47 100644 --- a/src/IconNoTransferSharp.tsx +++ b/src/IconNoTransferSharp.tsx @@ -8,4 +8,4 @@ const IconNoTransferSharp: React.FC = ({ ...props }) => ( ) -export { IconNoTransferSharp as default } +export default IconNoTransferSharp diff --git a/src/IconNoTransferSharpFilled.tsx b/src/IconNoTransferSharpFilled.tsx index 8b994cea0..459c8392c 100644 --- a/src/IconNoTransferSharpFilled.tsx +++ b/src/IconNoTransferSharpFilled.tsx @@ -8,4 +8,4 @@ const IconNoTransferSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconNoTransferSharpFilled as default } +export default IconNoTransferSharpFilled diff --git a/src/IconNoiseAwareOutlined.tsx b/src/IconNoiseAwareOutlined.tsx index c26ec78da..aa18029c3 100644 --- a/src/IconNoiseAwareOutlined.tsx +++ b/src/IconNoiseAwareOutlined.tsx @@ -8,4 +8,4 @@ const IconNoiseAwareOutlined: React.FC = ({ ...props }) => ( ) -export { IconNoiseAwareOutlined as default } +export default IconNoiseAwareOutlined diff --git a/src/IconNoiseAwareOutlinedFilled.tsx b/src/IconNoiseAwareOutlinedFilled.tsx index 012a13607..5b4411b65 100644 --- a/src/IconNoiseAwareOutlinedFilled.tsx +++ b/src/IconNoiseAwareOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconNoiseAwareOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconNoiseAwareOutlinedFilled as default } +export default IconNoiseAwareOutlinedFilled diff --git a/src/IconNoiseAwareRounded.tsx b/src/IconNoiseAwareRounded.tsx index 3965f762a..03e01212e 100644 --- a/src/IconNoiseAwareRounded.tsx +++ b/src/IconNoiseAwareRounded.tsx @@ -8,4 +8,4 @@ const IconNoiseAwareRounded: React.FC = ({ ...props }) => ( ) -export { IconNoiseAwareRounded as default } +export default IconNoiseAwareRounded diff --git a/src/IconNoiseAwareRoundedFilled.tsx b/src/IconNoiseAwareRoundedFilled.tsx index 712144fa3..c6e3dbca5 100644 --- a/src/IconNoiseAwareRoundedFilled.tsx +++ b/src/IconNoiseAwareRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconNoiseAwareRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconNoiseAwareRoundedFilled as default } +export default IconNoiseAwareRoundedFilled diff --git a/src/IconNoiseAwareSharp.tsx b/src/IconNoiseAwareSharp.tsx index 30da5e75e..6c8e94063 100644 --- a/src/IconNoiseAwareSharp.tsx +++ b/src/IconNoiseAwareSharp.tsx @@ -8,4 +8,4 @@ const IconNoiseAwareSharp: React.FC = ({ ...props }) => ( ) -export { IconNoiseAwareSharp as default } +export default IconNoiseAwareSharp diff --git a/src/IconNoiseAwareSharpFilled.tsx b/src/IconNoiseAwareSharpFilled.tsx index c4d90e427..81053e14e 100644 --- a/src/IconNoiseAwareSharpFilled.tsx +++ b/src/IconNoiseAwareSharpFilled.tsx @@ -8,4 +8,4 @@ const IconNoiseAwareSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconNoiseAwareSharpFilled as default } +export default IconNoiseAwareSharpFilled diff --git a/src/IconNoiseControlOffOutlined.tsx b/src/IconNoiseControlOffOutlined.tsx index 3aaa86520..34c8501dc 100644 --- a/src/IconNoiseControlOffOutlined.tsx +++ b/src/IconNoiseControlOffOutlined.tsx @@ -8,4 +8,4 @@ const IconNoiseControlOffOutlined: React.FC = ({ ...props }) => ( ) -export { IconNoiseControlOffOutlined as default } +export default IconNoiseControlOffOutlined diff --git a/src/IconNoiseControlOffOutlinedFilled.tsx b/src/IconNoiseControlOffOutlinedFilled.tsx index bc5bd33e7..d367586ef 100644 --- a/src/IconNoiseControlOffOutlinedFilled.tsx +++ b/src/IconNoiseControlOffOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconNoiseControlOffOutlinedFilled: React.FC = ({ ) -export { IconNoiseControlOffOutlinedFilled as default } +export default IconNoiseControlOffOutlinedFilled diff --git a/src/IconNoiseControlOffRounded.tsx b/src/IconNoiseControlOffRounded.tsx index adc12daf4..7adc65b99 100644 --- a/src/IconNoiseControlOffRounded.tsx +++ b/src/IconNoiseControlOffRounded.tsx @@ -8,4 +8,4 @@ const IconNoiseControlOffRounded: React.FC = ({ ...props }) => ( ) -export { IconNoiseControlOffRounded as default } +export default IconNoiseControlOffRounded diff --git a/src/IconNoiseControlOffRoundedFilled.tsx b/src/IconNoiseControlOffRoundedFilled.tsx index 12e161202..2f1af03e2 100644 --- a/src/IconNoiseControlOffRoundedFilled.tsx +++ b/src/IconNoiseControlOffRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconNoiseControlOffRoundedFilled: React.FC = ({ ) -export { IconNoiseControlOffRoundedFilled as default } +export default IconNoiseControlOffRoundedFilled diff --git a/src/IconNoiseControlOffSharp.tsx b/src/IconNoiseControlOffSharp.tsx index 5ba091b0c..f93a7e2f4 100644 --- a/src/IconNoiseControlOffSharp.tsx +++ b/src/IconNoiseControlOffSharp.tsx @@ -8,4 +8,4 @@ const IconNoiseControlOffSharp: React.FC = ({ ...props }) => ( ) -export { IconNoiseControlOffSharp as default } +export default IconNoiseControlOffSharp diff --git a/src/IconNoiseControlOffSharpFilled.tsx b/src/IconNoiseControlOffSharpFilled.tsx index e3e09b408..6cae7b21a 100644 --- a/src/IconNoiseControlOffSharpFilled.tsx +++ b/src/IconNoiseControlOffSharpFilled.tsx @@ -8,4 +8,4 @@ const IconNoiseControlOffSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconNoiseControlOffSharpFilled as default } +export default IconNoiseControlOffSharpFilled diff --git a/src/IconNoiseControlOnOutlined.tsx b/src/IconNoiseControlOnOutlined.tsx index 18a8106ca..68595be0a 100644 --- a/src/IconNoiseControlOnOutlined.tsx +++ b/src/IconNoiseControlOnOutlined.tsx @@ -8,4 +8,4 @@ const IconNoiseControlOnOutlined: React.FC = ({ ...props }) => ( ) -export { IconNoiseControlOnOutlined as default } +export default IconNoiseControlOnOutlined diff --git a/src/IconNoiseControlOnOutlinedFilled.tsx b/src/IconNoiseControlOnOutlinedFilled.tsx index 3092d245e..3d202e387 100644 --- a/src/IconNoiseControlOnOutlinedFilled.tsx +++ b/src/IconNoiseControlOnOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconNoiseControlOnOutlinedFilled: React.FC = ({ ) -export { IconNoiseControlOnOutlinedFilled as default } +export default IconNoiseControlOnOutlinedFilled diff --git a/src/IconNoiseControlOnRounded.tsx b/src/IconNoiseControlOnRounded.tsx index df4622864..30538b698 100644 --- a/src/IconNoiseControlOnRounded.tsx +++ b/src/IconNoiseControlOnRounded.tsx @@ -8,4 +8,4 @@ const IconNoiseControlOnRounded: React.FC = ({ ...props }) => ( ) -export { IconNoiseControlOnRounded as default } +export default IconNoiseControlOnRounded diff --git a/src/IconNoiseControlOnRoundedFilled.tsx b/src/IconNoiseControlOnRoundedFilled.tsx index 4ef843946..4f2a27bf7 100644 --- a/src/IconNoiseControlOnRoundedFilled.tsx +++ b/src/IconNoiseControlOnRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconNoiseControlOnRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconNoiseControlOnRoundedFilled as default } +export default IconNoiseControlOnRoundedFilled diff --git a/src/IconNoiseControlOnSharp.tsx b/src/IconNoiseControlOnSharp.tsx index c4acf6a6c..a28951b78 100644 --- a/src/IconNoiseControlOnSharp.tsx +++ b/src/IconNoiseControlOnSharp.tsx @@ -8,4 +8,4 @@ const IconNoiseControlOnSharp: React.FC = ({ ...props }) => ( ) -export { IconNoiseControlOnSharp as default } +export default IconNoiseControlOnSharp diff --git a/src/IconNoiseControlOnSharpFilled.tsx b/src/IconNoiseControlOnSharpFilled.tsx index 99d2f218d..34e112b5e 100644 --- a/src/IconNoiseControlOnSharpFilled.tsx +++ b/src/IconNoiseControlOnSharpFilled.tsx @@ -8,4 +8,4 @@ const IconNoiseControlOnSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconNoiseControlOnSharpFilled as default } +export default IconNoiseControlOnSharpFilled diff --git a/src/IconNordicWalkingOutlined.tsx b/src/IconNordicWalkingOutlined.tsx index 7912e8300..5e384dd1a 100644 --- a/src/IconNordicWalkingOutlined.tsx +++ b/src/IconNordicWalkingOutlined.tsx @@ -8,4 +8,4 @@ const IconNordicWalkingOutlined: React.FC = ({ ...props }) => ( ) -export { IconNordicWalkingOutlined as default } +export default IconNordicWalkingOutlined diff --git a/src/IconNordicWalkingOutlinedFilled.tsx b/src/IconNordicWalkingOutlinedFilled.tsx index 92b01bdc5..09a23aee1 100644 --- a/src/IconNordicWalkingOutlinedFilled.tsx +++ b/src/IconNordicWalkingOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconNordicWalkingOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconNordicWalkingOutlinedFilled as default } +export default IconNordicWalkingOutlinedFilled diff --git a/src/IconNordicWalkingRounded.tsx b/src/IconNordicWalkingRounded.tsx index 7be53523a..664f9cbb8 100644 --- a/src/IconNordicWalkingRounded.tsx +++ b/src/IconNordicWalkingRounded.tsx @@ -8,4 +8,4 @@ const IconNordicWalkingRounded: React.FC = ({ ...props }) => ( ) -export { IconNordicWalkingRounded as default } +export default IconNordicWalkingRounded diff --git a/src/IconNordicWalkingRoundedFilled.tsx b/src/IconNordicWalkingRoundedFilled.tsx index 32f25287f..821d4365f 100644 --- a/src/IconNordicWalkingRoundedFilled.tsx +++ b/src/IconNordicWalkingRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconNordicWalkingRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconNordicWalkingRoundedFilled as default } +export default IconNordicWalkingRoundedFilled diff --git a/src/IconNordicWalkingSharp.tsx b/src/IconNordicWalkingSharp.tsx index 9e245e865..fe927e196 100644 --- a/src/IconNordicWalkingSharp.tsx +++ b/src/IconNordicWalkingSharp.tsx @@ -8,4 +8,4 @@ const IconNordicWalkingSharp: React.FC = ({ ...props }) => ( ) -export { IconNordicWalkingSharp as default } +export default IconNordicWalkingSharp diff --git a/src/IconNordicWalkingSharpFilled.tsx b/src/IconNordicWalkingSharpFilled.tsx index dd2fc3e34..ece23fe0f 100644 --- a/src/IconNordicWalkingSharpFilled.tsx +++ b/src/IconNordicWalkingSharpFilled.tsx @@ -8,4 +8,4 @@ const IconNordicWalkingSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconNordicWalkingSharpFilled as default } +export default IconNordicWalkingSharpFilled diff --git a/src/IconNorthEastOutlined.tsx b/src/IconNorthEastOutlined.tsx index 363e7e203..437bcd1b6 100644 --- a/src/IconNorthEastOutlined.tsx +++ b/src/IconNorthEastOutlined.tsx @@ -8,4 +8,4 @@ const IconNorthEastOutlined: React.FC = ({ ...props }) => ( ) -export { IconNorthEastOutlined as default } +export default IconNorthEastOutlined diff --git a/src/IconNorthEastOutlinedFilled.tsx b/src/IconNorthEastOutlinedFilled.tsx index 4582c5da1..08cec1f47 100644 --- a/src/IconNorthEastOutlinedFilled.tsx +++ b/src/IconNorthEastOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconNorthEastOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconNorthEastOutlinedFilled as default } +export default IconNorthEastOutlinedFilled diff --git a/src/IconNorthEastRounded.tsx b/src/IconNorthEastRounded.tsx index 581973b5c..75e226b67 100644 --- a/src/IconNorthEastRounded.tsx +++ b/src/IconNorthEastRounded.tsx @@ -8,4 +8,4 @@ const IconNorthEastRounded: React.FC = ({ ...props }) => ( ) -export { IconNorthEastRounded as default } +export default IconNorthEastRounded diff --git a/src/IconNorthEastRoundedFilled.tsx b/src/IconNorthEastRoundedFilled.tsx index 253e23548..fb519b098 100644 --- a/src/IconNorthEastRoundedFilled.tsx +++ b/src/IconNorthEastRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconNorthEastRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconNorthEastRoundedFilled as default } +export default IconNorthEastRoundedFilled diff --git a/src/IconNorthEastSharp.tsx b/src/IconNorthEastSharp.tsx index a5fcc23b9..e80eb8adb 100644 --- a/src/IconNorthEastSharp.tsx +++ b/src/IconNorthEastSharp.tsx @@ -8,4 +8,4 @@ const IconNorthEastSharp: React.FC = ({ ...props }) => ( ) -export { IconNorthEastSharp as default } +export default IconNorthEastSharp diff --git a/src/IconNorthEastSharpFilled.tsx b/src/IconNorthEastSharpFilled.tsx index 88a7b2491..0001ff0ff 100644 --- a/src/IconNorthEastSharpFilled.tsx +++ b/src/IconNorthEastSharpFilled.tsx @@ -8,4 +8,4 @@ const IconNorthEastSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconNorthEastSharpFilled as default } +export default IconNorthEastSharpFilled diff --git a/src/IconNorthOutlined.tsx b/src/IconNorthOutlined.tsx index c563ee421..cc33e04bf 100644 --- a/src/IconNorthOutlined.tsx +++ b/src/IconNorthOutlined.tsx @@ -8,4 +8,4 @@ const IconNorthOutlined: React.FC = ({ ...props }) => ( ) -export { IconNorthOutlined as default } +export default IconNorthOutlined diff --git a/src/IconNorthOutlinedFilled.tsx b/src/IconNorthOutlinedFilled.tsx index d23b00fba..2262d4ecb 100644 --- a/src/IconNorthOutlinedFilled.tsx +++ b/src/IconNorthOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconNorthOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconNorthOutlinedFilled as default } +export default IconNorthOutlinedFilled diff --git a/src/IconNorthRounded.tsx b/src/IconNorthRounded.tsx index 5af099ce8..d29755bf4 100644 --- a/src/IconNorthRounded.tsx +++ b/src/IconNorthRounded.tsx @@ -8,4 +8,4 @@ const IconNorthRounded: React.FC = ({ ...props }) => ( ) -export { IconNorthRounded as default } +export default IconNorthRounded diff --git a/src/IconNorthRoundedFilled.tsx b/src/IconNorthRoundedFilled.tsx index 103fecd40..793c7e549 100644 --- a/src/IconNorthRoundedFilled.tsx +++ b/src/IconNorthRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconNorthRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconNorthRoundedFilled as default } +export default IconNorthRoundedFilled diff --git a/src/IconNorthSharp.tsx b/src/IconNorthSharp.tsx index 79c1c65b3..ded696a0d 100644 --- a/src/IconNorthSharp.tsx +++ b/src/IconNorthSharp.tsx @@ -8,4 +8,4 @@ const IconNorthSharp: React.FC = ({ ...props }) => ( ) -export { IconNorthSharp as default } +export default IconNorthSharp diff --git a/src/IconNorthSharpFilled.tsx b/src/IconNorthSharpFilled.tsx index 43f2ac9b8..5770dce8d 100644 --- a/src/IconNorthSharpFilled.tsx +++ b/src/IconNorthSharpFilled.tsx @@ -8,4 +8,4 @@ const IconNorthSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconNorthSharpFilled as default } +export default IconNorthSharpFilled diff --git a/src/IconNorthWestOutlined.tsx b/src/IconNorthWestOutlined.tsx index 2809bec0d..59487500c 100644 --- a/src/IconNorthWestOutlined.tsx +++ b/src/IconNorthWestOutlined.tsx @@ -8,4 +8,4 @@ const IconNorthWestOutlined: React.FC = ({ ...props }) => ( ) -export { IconNorthWestOutlined as default } +export default IconNorthWestOutlined diff --git a/src/IconNorthWestOutlinedFilled.tsx b/src/IconNorthWestOutlinedFilled.tsx index 0a608a732..4c29ad2b0 100644 --- a/src/IconNorthWestOutlinedFilled.tsx +++ b/src/IconNorthWestOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconNorthWestOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconNorthWestOutlinedFilled as default } +export default IconNorthWestOutlinedFilled diff --git a/src/IconNorthWestRounded.tsx b/src/IconNorthWestRounded.tsx index cb855b0dd..74fcbd809 100644 --- a/src/IconNorthWestRounded.tsx +++ b/src/IconNorthWestRounded.tsx @@ -8,4 +8,4 @@ const IconNorthWestRounded: React.FC = ({ ...props }) => ( ) -export { IconNorthWestRounded as default } +export default IconNorthWestRounded diff --git a/src/IconNorthWestRoundedFilled.tsx b/src/IconNorthWestRoundedFilled.tsx index c40091a19..26f95ef4e 100644 --- a/src/IconNorthWestRoundedFilled.tsx +++ b/src/IconNorthWestRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconNorthWestRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconNorthWestRoundedFilled as default } +export default IconNorthWestRoundedFilled diff --git a/src/IconNorthWestSharp.tsx b/src/IconNorthWestSharp.tsx index ecc4fa33e..a55ad77a7 100644 --- a/src/IconNorthWestSharp.tsx +++ b/src/IconNorthWestSharp.tsx @@ -8,4 +8,4 @@ const IconNorthWestSharp: React.FC = ({ ...props }) => ( ) -export { IconNorthWestSharp as default } +export default IconNorthWestSharp diff --git a/src/IconNorthWestSharpFilled.tsx b/src/IconNorthWestSharpFilled.tsx index 3e7857f90..bfad71244 100644 --- a/src/IconNorthWestSharpFilled.tsx +++ b/src/IconNorthWestSharpFilled.tsx @@ -8,4 +8,4 @@ const IconNorthWestSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconNorthWestSharpFilled as default } +export default IconNorthWestSharpFilled diff --git a/src/IconNotAccessibleForwardOutlined.tsx b/src/IconNotAccessibleForwardOutlined.tsx index 953e8f312..2e70a5a10 100644 --- a/src/IconNotAccessibleForwardOutlined.tsx +++ b/src/IconNotAccessibleForwardOutlined.tsx @@ -10,4 +10,4 @@ const IconNotAccessibleForwardOutlined: React.FC = ({ ) -export { IconNotAccessibleForwardOutlined as default } +export default IconNotAccessibleForwardOutlined diff --git a/src/IconNotAccessibleForwardOutlinedFilled.tsx b/src/IconNotAccessibleForwardOutlinedFilled.tsx index 94f69ca0c..4dbe4471a 100644 --- a/src/IconNotAccessibleForwardOutlinedFilled.tsx +++ b/src/IconNotAccessibleForwardOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconNotAccessibleForwardOutlinedFilled: React.FC = ({ ) -export { IconNotAccessibleForwardOutlinedFilled as default } +export default IconNotAccessibleForwardOutlinedFilled diff --git a/src/IconNotAccessibleForwardRounded.tsx b/src/IconNotAccessibleForwardRounded.tsx index 59436f9e5..79fd4ee3f 100644 --- a/src/IconNotAccessibleForwardRounded.tsx +++ b/src/IconNotAccessibleForwardRounded.tsx @@ -8,4 +8,4 @@ const IconNotAccessibleForwardRounded: React.FC = ({ ...props }) => ( ) -export { IconNotAccessibleForwardRounded as default } +export default IconNotAccessibleForwardRounded diff --git a/src/IconNotAccessibleForwardRoundedFilled.tsx b/src/IconNotAccessibleForwardRoundedFilled.tsx index 149fd6bad..61c6993a4 100644 --- a/src/IconNotAccessibleForwardRoundedFilled.tsx +++ b/src/IconNotAccessibleForwardRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconNotAccessibleForwardRoundedFilled: React.FC = ({ ) -export { IconNotAccessibleForwardRoundedFilled as default } +export default IconNotAccessibleForwardRoundedFilled diff --git a/src/IconNotAccessibleForwardSharp.tsx b/src/IconNotAccessibleForwardSharp.tsx index e14df2e86..6cccc62b8 100644 --- a/src/IconNotAccessibleForwardSharp.tsx +++ b/src/IconNotAccessibleForwardSharp.tsx @@ -8,4 +8,4 @@ const IconNotAccessibleForwardSharp: React.FC = ({ ...props }) => ( ) -export { IconNotAccessibleForwardSharp as default } +export default IconNotAccessibleForwardSharp diff --git a/src/IconNotAccessibleForwardSharpFilled.tsx b/src/IconNotAccessibleForwardSharpFilled.tsx index dc4cef55d..9decd3e6e 100644 --- a/src/IconNotAccessibleForwardSharpFilled.tsx +++ b/src/IconNotAccessibleForwardSharpFilled.tsx @@ -10,4 +10,4 @@ const IconNotAccessibleForwardSharpFilled: React.FC = ({ ) -export { IconNotAccessibleForwardSharpFilled as default } +export default IconNotAccessibleForwardSharpFilled diff --git a/src/IconNotAccessibleOutlined.tsx b/src/IconNotAccessibleOutlined.tsx index 98001dc59..261422892 100644 --- a/src/IconNotAccessibleOutlined.tsx +++ b/src/IconNotAccessibleOutlined.tsx @@ -8,4 +8,4 @@ const IconNotAccessibleOutlined: React.FC = ({ ...props }) => ( ) -export { IconNotAccessibleOutlined as default } +export default IconNotAccessibleOutlined diff --git a/src/IconNotAccessibleOutlinedFilled.tsx b/src/IconNotAccessibleOutlinedFilled.tsx index 4c52deaf4..1e13ed56b 100644 --- a/src/IconNotAccessibleOutlinedFilled.tsx +++ b/src/IconNotAccessibleOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconNotAccessibleOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconNotAccessibleOutlinedFilled as default } +export default IconNotAccessibleOutlinedFilled diff --git a/src/IconNotAccessibleRounded.tsx b/src/IconNotAccessibleRounded.tsx index 104bc539f..95e836501 100644 --- a/src/IconNotAccessibleRounded.tsx +++ b/src/IconNotAccessibleRounded.tsx @@ -8,4 +8,4 @@ const IconNotAccessibleRounded: React.FC = ({ ...props }) => ( ) -export { IconNotAccessibleRounded as default } +export default IconNotAccessibleRounded diff --git a/src/IconNotAccessibleRoundedFilled.tsx b/src/IconNotAccessibleRoundedFilled.tsx index 4cc63a6e5..36fafed37 100644 --- a/src/IconNotAccessibleRoundedFilled.tsx +++ b/src/IconNotAccessibleRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconNotAccessibleRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconNotAccessibleRoundedFilled as default } +export default IconNotAccessibleRoundedFilled diff --git a/src/IconNotAccessibleSharp.tsx b/src/IconNotAccessibleSharp.tsx index b96fe55a1..acbf608cf 100644 --- a/src/IconNotAccessibleSharp.tsx +++ b/src/IconNotAccessibleSharp.tsx @@ -8,4 +8,4 @@ const IconNotAccessibleSharp: React.FC = ({ ...props }) => ( ) -export { IconNotAccessibleSharp as default } +export default IconNotAccessibleSharp diff --git a/src/IconNotAccessibleSharpFilled.tsx b/src/IconNotAccessibleSharpFilled.tsx index e644419e1..b55efba89 100644 --- a/src/IconNotAccessibleSharpFilled.tsx +++ b/src/IconNotAccessibleSharpFilled.tsx @@ -8,4 +8,4 @@ const IconNotAccessibleSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconNotAccessibleSharpFilled as default } +export default IconNotAccessibleSharpFilled diff --git a/src/IconNotListedLocationOutlined.tsx b/src/IconNotListedLocationOutlined.tsx index 3d7e7a574..c7e2f1fb4 100644 --- a/src/IconNotListedLocationOutlined.tsx +++ b/src/IconNotListedLocationOutlined.tsx @@ -8,4 +8,4 @@ const IconNotListedLocationOutlined: React.FC = ({ ...props }) => ( ) -export { IconNotListedLocationOutlined as default } +export default IconNotListedLocationOutlined diff --git a/src/IconNotListedLocationOutlinedFilled.tsx b/src/IconNotListedLocationOutlinedFilled.tsx index 5fb5b01d2..6309f524e 100644 --- a/src/IconNotListedLocationOutlinedFilled.tsx +++ b/src/IconNotListedLocationOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconNotListedLocationOutlinedFilled: React.FC = ({ ) -export { IconNotListedLocationOutlinedFilled as default } +export default IconNotListedLocationOutlinedFilled diff --git a/src/IconNotListedLocationRounded.tsx b/src/IconNotListedLocationRounded.tsx index 75f38cd0e..a94241423 100644 --- a/src/IconNotListedLocationRounded.tsx +++ b/src/IconNotListedLocationRounded.tsx @@ -8,4 +8,4 @@ const IconNotListedLocationRounded: React.FC = ({ ...props }) => ( ) -export { IconNotListedLocationRounded as default } +export default IconNotListedLocationRounded diff --git a/src/IconNotListedLocationRoundedFilled.tsx b/src/IconNotListedLocationRoundedFilled.tsx index 97cf9bf70..77d2526a8 100644 --- a/src/IconNotListedLocationRoundedFilled.tsx +++ b/src/IconNotListedLocationRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconNotListedLocationRoundedFilled: React.FC = ({ ) -export { IconNotListedLocationRoundedFilled as default } +export default IconNotListedLocationRoundedFilled diff --git a/src/IconNotListedLocationSharp.tsx b/src/IconNotListedLocationSharp.tsx index 9d4f5aa87..b09cda3ca 100644 --- a/src/IconNotListedLocationSharp.tsx +++ b/src/IconNotListedLocationSharp.tsx @@ -8,4 +8,4 @@ const IconNotListedLocationSharp: React.FC = ({ ...props }) => ( ) -export { IconNotListedLocationSharp as default } +export default IconNotListedLocationSharp diff --git a/src/IconNotListedLocationSharpFilled.tsx b/src/IconNotListedLocationSharpFilled.tsx index 1d471f1d5..3e8464608 100644 --- a/src/IconNotListedLocationSharpFilled.tsx +++ b/src/IconNotListedLocationSharpFilled.tsx @@ -10,4 +10,4 @@ const IconNotListedLocationSharpFilled: React.FC = ({ ) -export { IconNotListedLocationSharpFilled as default } +export default IconNotListedLocationSharpFilled diff --git a/src/IconNotStartedOutlined.tsx b/src/IconNotStartedOutlined.tsx index 987eb76ac..8a35a4424 100644 --- a/src/IconNotStartedOutlined.tsx +++ b/src/IconNotStartedOutlined.tsx @@ -8,4 +8,4 @@ const IconNotStartedOutlined: React.FC = ({ ...props }) => ( ) -export { IconNotStartedOutlined as default } +export default IconNotStartedOutlined diff --git a/src/IconNotStartedOutlinedFilled.tsx b/src/IconNotStartedOutlinedFilled.tsx index 8e6340a59..d778488f9 100644 --- a/src/IconNotStartedOutlinedFilled.tsx +++ b/src/IconNotStartedOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconNotStartedOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconNotStartedOutlinedFilled as default } +export default IconNotStartedOutlinedFilled diff --git a/src/IconNotStartedRounded.tsx b/src/IconNotStartedRounded.tsx index 138047352..4020d7a82 100644 --- a/src/IconNotStartedRounded.tsx +++ b/src/IconNotStartedRounded.tsx @@ -8,4 +8,4 @@ const IconNotStartedRounded: React.FC = ({ ...props }) => ( ) -export { IconNotStartedRounded as default } +export default IconNotStartedRounded diff --git a/src/IconNotStartedRoundedFilled.tsx b/src/IconNotStartedRoundedFilled.tsx index 58512b01e..a8303dd6e 100644 --- a/src/IconNotStartedRoundedFilled.tsx +++ b/src/IconNotStartedRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconNotStartedRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconNotStartedRoundedFilled as default } +export default IconNotStartedRoundedFilled diff --git a/src/IconNotStartedSharp.tsx b/src/IconNotStartedSharp.tsx index 9c0742692..c2a24cd60 100644 --- a/src/IconNotStartedSharp.tsx +++ b/src/IconNotStartedSharp.tsx @@ -8,4 +8,4 @@ const IconNotStartedSharp: React.FC = ({ ...props }) => ( ) -export { IconNotStartedSharp as default } +export default IconNotStartedSharp diff --git a/src/IconNotStartedSharpFilled.tsx b/src/IconNotStartedSharpFilled.tsx index bedcc4f54..bed48fe86 100644 --- a/src/IconNotStartedSharpFilled.tsx +++ b/src/IconNotStartedSharpFilled.tsx @@ -8,4 +8,4 @@ const IconNotStartedSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconNotStartedSharpFilled as default } +export default IconNotStartedSharpFilled diff --git a/src/IconNoteAddOutlined.tsx b/src/IconNoteAddOutlined.tsx index ec334fcad..baf0dec06 100644 --- a/src/IconNoteAddOutlined.tsx +++ b/src/IconNoteAddOutlined.tsx @@ -8,4 +8,4 @@ const IconNoteAddOutlined: React.FC = ({ ...props }) => ( ) -export { IconNoteAddOutlined as default } +export default IconNoteAddOutlined diff --git a/src/IconNoteAddOutlinedFilled.tsx b/src/IconNoteAddOutlinedFilled.tsx index e8dc806a1..1398c4791 100644 --- a/src/IconNoteAddOutlinedFilled.tsx +++ b/src/IconNoteAddOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconNoteAddOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconNoteAddOutlinedFilled as default } +export default IconNoteAddOutlinedFilled diff --git a/src/IconNoteAddRounded.tsx b/src/IconNoteAddRounded.tsx index 142ee80ca..d6aa1b22c 100644 --- a/src/IconNoteAddRounded.tsx +++ b/src/IconNoteAddRounded.tsx @@ -8,4 +8,4 @@ const IconNoteAddRounded: React.FC = ({ ...props }) => ( ) -export { IconNoteAddRounded as default } +export default IconNoteAddRounded diff --git a/src/IconNoteAddRoundedFilled.tsx b/src/IconNoteAddRoundedFilled.tsx index ae2a2b895..03494144a 100644 --- a/src/IconNoteAddRoundedFilled.tsx +++ b/src/IconNoteAddRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconNoteAddRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconNoteAddRoundedFilled as default } +export default IconNoteAddRoundedFilled diff --git a/src/IconNoteAddSharp.tsx b/src/IconNoteAddSharp.tsx index f076cb695..9e0e4c12c 100644 --- a/src/IconNoteAddSharp.tsx +++ b/src/IconNoteAddSharp.tsx @@ -8,4 +8,4 @@ const IconNoteAddSharp: React.FC = ({ ...props }) => ( ) -export { IconNoteAddSharp as default } +export default IconNoteAddSharp diff --git a/src/IconNoteAddSharpFilled.tsx b/src/IconNoteAddSharpFilled.tsx index 21882ea58..5e27b18d9 100644 --- a/src/IconNoteAddSharpFilled.tsx +++ b/src/IconNoteAddSharpFilled.tsx @@ -8,4 +8,4 @@ const IconNoteAddSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconNoteAddSharpFilled as default } +export default IconNoteAddSharpFilled diff --git a/src/IconNoteAltOutlined.tsx b/src/IconNoteAltOutlined.tsx index 4cd133474..f9504d727 100644 --- a/src/IconNoteAltOutlined.tsx +++ b/src/IconNoteAltOutlined.tsx @@ -8,4 +8,4 @@ const IconNoteAltOutlined: React.FC = ({ ...props }) => ( ) -export { IconNoteAltOutlined as default } +export default IconNoteAltOutlined diff --git a/src/IconNoteAltOutlinedFilled.tsx b/src/IconNoteAltOutlinedFilled.tsx index 881294b8f..ac4ac5be2 100644 --- a/src/IconNoteAltOutlinedFilled.tsx +++ b/src/IconNoteAltOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconNoteAltOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconNoteAltOutlinedFilled as default } +export default IconNoteAltOutlinedFilled diff --git a/src/IconNoteAltRounded.tsx b/src/IconNoteAltRounded.tsx index 78ef0d520..fdf6668f2 100644 --- a/src/IconNoteAltRounded.tsx +++ b/src/IconNoteAltRounded.tsx @@ -8,4 +8,4 @@ const IconNoteAltRounded: React.FC = ({ ...props }) => ( ) -export { IconNoteAltRounded as default } +export default IconNoteAltRounded diff --git a/src/IconNoteAltRoundedFilled.tsx b/src/IconNoteAltRoundedFilled.tsx index bb91f736f..9a8e03117 100644 --- a/src/IconNoteAltRoundedFilled.tsx +++ b/src/IconNoteAltRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconNoteAltRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconNoteAltRoundedFilled as default } +export default IconNoteAltRoundedFilled diff --git a/src/IconNoteAltSharp.tsx b/src/IconNoteAltSharp.tsx index f4cf681eb..410f482a5 100644 --- a/src/IconNoteAltSharp.tsx +++ b/src/IconNoteAltSharp.tsx @@ -8,4 +8,4 @@ const IconNoteAltSharp: React.FC = ({ ...props }) => ( ) -export { IconNoteAltSharp as default } +export default IconNoteAltSharp diff --git a/src/IconNoteAltSharpFilled.tsx b/src/IconNoteAltSharpFilled.tsx index e31cc3f08..12e6628c2 100644 --- a/src/IconNoteAltSharpFilled.tsx +++ b/src/IconNoteAltSharpFilled.tsx @@ -8,4 +8,4 @@ const IconNoteAltSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconNoteAltSharpFilled as default } +export default IconNoteAltSharpFilled diff --git a/src/IconNoteStackAddOutlined.tsx b/src/IconNoteStackAddOutlined.tsx index d81518479..23776e006 100644 --- a/src/IconNoteStackAddOutlined.tsx +++ b/src/IconNoteStackAddOutlined.tsx @@ -8,4 +8,4 @@ const IconNoteStackAddOutlined: React.FC = ({ ...props }) => ( ) -export { IconNoteStackAddOutlined as default } +export default IconNoteStackAddOutlined diff --git a/src/IconNoteStackAddOutlinedFilled.tsx b/src/IconNoteStackAddOutlinedFilled.tsx index 8001b771e..85bfdbb29 100644 --- a/src/IconNoteStackAddOutlinedFilled.tsx +++ b/src/IconNoteStackAddOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconNoteStackAddOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconNoteStackAddOutlinedFilled as default } +export default IconNoteStackAddOutlinedFilled diff --git a/src/IconNoteStackAddRounded.tsx b/src/IconNoteStackAddRounded.tsx index 7a2dd3bc1..9fe0c540a 100644 --- a/src/IconNoteStackAddRounded.tsx +++ b/src/IconNoteStackAddRounded.tsx @@ -8,4 +8,4 @@ const IconNoteStackAddRounded: React.FC = ({ ...props }) => ( ) -export { IconNoteStackAddRounded as default } +export default IconNoteStackAddRounded diff --git a/src/IconNoteStackAddRoundedFilled.tsx b/src/IconNoteStackAddRoundedFilled.tsx index 48b1c88d2..49c0e2505 100644 --- a/src/IconNoteStackAddRoundedFilled.tsx +++ b/src/IconNoteStackAddRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconNoteStackAddRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconNoteStackAddRoundedFilled as default } +export default IconNoteStackAddRoundedFilled diff --git a/src/IconNoteStackAddSharp.tsx b/src/IconNoteStackAddSharp.tsx index 311e1095a..63c01b916 100644 --- a/src/IconNoteStackAddSharp.tsx +++ b/src/IconNoteStackAddSharp.tsx @@ -8,4 +8,4 @@ const IconNoteStackAddSharp: React.FC = ({ ...props }) => ( ) -export { IconNoteStackAddSharp as default } +export default IconNoteStackAddSharp diff --git a/src/IconNoteStackAddSharpFilled.tsx b/src/IconNoteStackAddSharpFilled.tsx index ab8ccfecf..7be52a725 100644 --- a/src/IconNoteStackAddSharpFilled.tsx +++ b/src/IconNoteStackAddSharpFilled.tsx @@ -8,4 +8,4 @@ const IconNoteStackAddSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconNoteStackAddSharpFilled as default } +export default IconNoteStackAddSharpFilled diff --git a/src/IconNoteStackOutlined.tsx b/src/IconNoteStackOutlined.tsx index 3433cdb49..90008fa36 100644 --- a/src/IconNoteStackOutlined.tsx +++ b/src/IconNoteStackOutlined.tsx @@ -8,4 +8,4 @@ const IconNoteStackOutlined: React.FC = ({ ...props }) => ( ) -export { IconNoteStackOutlined as default } +export default IconNoteStackOutlined diff --git a/src/IconNoteStackOutlinedFilled.tsx b/src/IconNoteStackOutlinedFilled.tsx index fb5d1bcd9..eefbf4de2 100644 --- a/src/IconNoteStackOutlinedFilled.tsx +++ b/src/IconNoteStackOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconNoteStackOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconNoteStackOutlinedFilled as default } +export default IconNoteStackOutlinedFilled diff --git a/src/IconNoteStackRounded.tsx b/src/IconNoteStackRounded.tsx index 3edb61c1c..bfedd9287 100644 --- a/src/IconNoteStackRounded.tsx +++ b/src/IconNoteStackRounded.tsx @@ -8,4 +8,4 @@ const IconNoteStackRounded: React.FC = ({ ...props }) => ( ) -export { IconNoteStackRounded as default } +export default IconNoteStackRounded diff --git a/src/IconNoteStackRoundedFilled.tsx b/src/IconNoteStackRoundedFilled.tsx index 484be51c0..9abec812e 100644 --- a/src/IconNoteStackRoundedFilled.tsx +++ b/src/IconNoteStackRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconNoteStackRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconNoteStackRoundedFilled as default } +export default IconNoteStackRoundedFilled diff --git a/src/IconNoteStackSharp.tsx b/src/IconNoteStackSharp.tsx index 5460fb36d..e680fab82 100644 --- a/src/IconNoteStackSharp.tsx +++ b/src/IconNoteStackSharp.tsx @@ -8,4 +8,4 @@ const IconNoteStackSharp: React.FC = ({ ...props }) => ( ) -export { IconNoteStackSharp as default } +export default IconNoteStackSharp diff --git a/src/IconNoteStackSharpFilled.tsx b/src/IconNoteStackSharpFilled.tsx index faf377aab..a14d1c72d 100644 --- a/src/IconNoteStackSharpFilled.tsx +++ b/src/IconNoteStackSharpFilled.tsx @@ -8,4 +8,4 @@ const IconNoteStackSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconNoteStackSharpFilled as default } +export default IconNoteStackSharpFilled diff --git a/src/IconNotesOutlined.tsx b/src/IconNotesOutlined.tsx index 2745b7f80..801c1be6a 100644 --- a/src/IconNotesOutlined.tsx +++ b/src/IconNotesOutlined.tsx @@ -8,4 +8,4 @@ const IconNotesOutlined: React.FC = ({ ...props }) => ( ) -export { IconNotesOutlined as default } +export default IconNotesOutlined diff --git a/src/IconNotesOutlinedFilled.tsx b/src/IconNotesOutlinedFilled.tsx index 2f73fe00a..98ce9d579 100644 --- a/src/IconNotesOutlinedFilled.tsx +++ b/src/IconNotesOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconNotesOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconNotesOutlinedFilled as default } +export default IconNotesOutlinedFilled diff --git a/src/IconNotesRounded.tsx b/src/IconNotesRounded.tsx index eec22eff6..d352c4bcd 100644 --- a/src/IconNotesRounded.tsx +++ b/src/IconNotesRounded.tsx @@ -8,4 +8,4 @@ const IconNotesRounded: React.FC = ({ ...props }) => ( ) -export { IconNotesRounded as default } +export default IconNotesRounded diff --git a/src/IconNotesRoundedFilled.tsx b/src/IconNotesRoundedFilled.tsx index 135769e88..5408f0a7f 100644 --- a/src/IconNotesRoundedFilled.tsx +++ b/src/IconNotesRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconNotesRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconNotesRoundedFilled as default } +export default IconNotesRoundedFilled diff --git a/src/IconNotesSharp.tsx b/src/IconNotesSharp.tsx index d6105418f..e32d2726e 100644 --- a/src/IconNotesSharp.tsx +++ b/src/IconNotesSharp.tsx @@ -8,4 +8,4 @@ const IconNotesSharp: React.FC = ({ ...props }) => ( ) -export { IconNotesSharp as default } +export default IconNotesSharp diff --git a/src/IconNotesSharpFilled.tsx b/src/IconNotesSharpFilled.tsx index 038725480..274512492 100644 --- a/src/IconNotesSharpFilled.tsx +++ b/src/IconNotesSharpFilled.tsx @@ -8,4 +8,4 @@ const IconNotesSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconNotesSharpFilled as default } +export default IconNotesSharpFilled diff --git a/src/IconNotificationAddOutlined.tsx b/src/IconNotificationAddOutlined.tsx index 664e55cde..fd88cfaf5 100644 --- a/src/IconNotificationAddOutlined.tsx +++ b/src/IconNotificationAddOutlined.tsx @@ -8,4 +8,4 @@ const IconNotificationAddOutlined: React.FC = ({ ...props }) => ( ) -export { IconNotificationAddOutlined as default } +export default IconNotificationAddOutlined diff --git a/src/IconNotificationAddOutlinedFilled.tsx b/src/IconNotificationAddOutlinedFilled.tsx index eb2c8df31..bb97c7703 100644 --- a/src/IconNotificationAddOutlinedFilled.tsx +++ b/src/IconNotificationAddOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconNotificationAddOutlinedFilled: React.FC = ({ ) -export { IconNotificationAddOutlinedFilled as default } +export default IconNotificationAddOutlinedFilled diff --git a/src/IconNotificationAddRounded.tsx b/src/IconNotificationAddRounded.tsx index 12f9d2888..1e3c6f093 100644 --- a/src/IconNotificationAddRounded.tsx +++ b/src/IconNotificationAddRounded.tsx @@ -8,4 +8,4 @@ const IconNotificationAddRounded: React.FC = ({ ...props }) => ( ) -export { IconNotificationAddRounded as default } +export default IconNotificationAddRounded diff --git a/src/IconNotificationAddRoundedFilled.tsx b/src/IconNotificationAddRoundedFilled.tsx index 8223dfdb9..413b13bbb 100644 --- a/src/IconNotificationAddRoundedFilled.tsx +++ b/src/IconNotificationAddRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconNotificationAddRoundedFilled: React.FC = ({ ) -export { IconNotificationAddRoundedFilled as default } +export default IconNotificationAddRoundedFilled diff --git a/src/IconNotificationAddSharp.tsx b/src/IconNotificationAddSharp.tsx index 2dd1cd215..2ce7e0063 100644 --- a/src/IconNotificationAddSharp.tsx +++ b/src/IconNotificationAddSharp.tsx @@ -8,4 +8,4 @@ const IconNotificationAddSharp: React.FC = ({ ...props }) => ( ) -export { IconNotificationAddSharp as default } +export default IconNotificationAddSharp diff --git a/src/IconNotificationAddSharpFilled.tsx b/src/IconNotificationAddSharpFilled.tsx index 1098229e1..81c344d29 100644 --- a/src/IconNotificationAddSharpFilled.tsx +++ b/src/IconNotificationAddSharpFilled.tsx @@ -8,4 +8,4 @@ const IconNotificationAddSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconNotificationAddSharpFilled as default } +export default IconNotificationAddSharpFilled diff --git a/src/IconNotificationImportantOutlined.tsx b/src/IconNotificationImportantOutlined.tsx index 08d45aadd..2fa92b7a3 100644 --- a/src/IconNotificationImportantOutlined.tsx +++ b/src/IconNotificationImportantOutlined.tsx @@ -10,4 +10,4 @@ const IconNotificationImportantOutlined: React.FC = ({ ) -export { IconNotificationImportantOutlined as default } +export default IconNotificationImportantOutlined diff --git a/src/IconNotificationImportantOutlinedFilled.tsx b/src/IconNotificationImportantOutlinedFilled.tsx index bd88daf82..1087ae52f 100644 --- a/src/IconNotificationImportantOutlinedFilled.tsx +++ b/src/IconNotificationImportantOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconNotificationImportantOutlinedFilled: React.FC = ({ ) -export { IconNotificationImportantOutlinedFilled as default } +export default IconNotificationImportantOutlinedFilled diff --git a/src/IconNotificationImportantRounded.tsx b/src/IconNotificationImportantRounded.tsx index 7ebc2e9eb..f90680e33 100644 --- a/src/IconNotificationImportantRounded.tsx +++ b/src/IconNotificationImportantRounded.tsx @@ -10,4 +10,4 @@ const IconNotificationImportantRounded: React.FC = ({ ) -export { IconNotificationImportantRounded as default } +export default IconNotificationImportantRounded diff --git a/src/IconNotificationImportantRoundedFilled.tsx b/src/IconNotificationImportantRoundedFilled.tsx index 2ce35bb7c..c82d0ef9a 100644 --- a/src/IconNotificationImportantRoundedFilled.tsx +++ b/src/IconNotificationImportantRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconNotificationImportantRoundedFilled: React.FC = ({ ) -export { IconNotificationImportantRoundedFilled as default } +export default IconNotificationImportantRoundedFilled diff --git a/src/IconNotificationImportantSharp.tsx b/src/IconNotificationImportantSharp.tsx index 639e2d5fd..19dd8fe4b 100644 --- a/src/IconNotificationImportantSharp.tsx +++ b/src/IconNotificationImportantSharp.tsx @@ -8,4 +8,4 @@ const IconNotificationImportantSharp: React.FC = ({ ...props }) => ( ) -export { IconNotificationImportantSharp as default } +export default IconNotificationImportantSharp diff --git a/src/IconNotificationImportantSharpFilled.tsx b/src/IconNotificationImportantSharpFilled.tsx index b511a606f..1fdd094a9 100644 --- a/src/IconNotificationImportantSharpFilled.tsx +++ b/src/IconNotificationImportantSharpFilled.tsx @@ -10,4 +10,4 @@ const IconNotificationImportantSharpFilled: React.FC = ({ ) -export { IconNotificationImportantSharpFilled as default } +export default IconNotificationImportantSharpFilled diff --git a/src/IconNotificationMultipleOutlined.tsx b/src/IconNotificationMultipleOutlined.tsx index f9eb412fc..b61197469 100644 --- a/src/IconNotificationMultipleOutlined.tsx +++ b/src/IconNotificationMultipleOutlined.tsx @@ -10,4 +10,4 @@ const IconNotificationMultipleOutlined: React.FC = ({ ) -export { IconNotificationMultipleOutlined as default } +export default IconNotificationMultipleOutlined diff --git a/src/IconNotificationMultipleOutlinedFilled.tsx b/src/IconNotificationMultipleOutlinedFilled.tsx index 2c036c111..3a13f48bd 100644 --- a/src/IconNotificationMultipleOutlinedFilled.tsx +++ b/src/IconNotificationMultipleOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconNotificationMultipleOutlinedFilled: React.FC = ({ ) -export { IconNotificationMultipleOutlinedFilled as default } +export default IconNotificationMultipleOutlinedFilled diff --git a/src/IconNotificationMultipleRounded.tsx b/src/IconNotificationMultipleRounded.tsx index aa4e8f300..25d9934be 100644 --- a/src/IconNotificationMultipleRounded.tsx +++ b/src/IconNotificationMultipleRounded.tsx @@ -8,4 +8,4 @@ const IconNotificationMultipleRounded: React.FC = ({ ...props }) => ( ) -export { IconNotificationMultipleRounded as default } +export default IconNotificationMultipleRounded diff --git a/src/IconNotificationMultipleRoundedFilled.tsx b/src/IconNotificationMultipleRoundedFilled.tsx index 1712d27cf..d0bf727e7 100644 --- a/src/IconNotificationMultipleRoundedFilled.tsx +++ b/src/IconNotificationMultipleRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconNotificationMultipleRoundedFilled: React.FC = ({ ) -export { IconNotificationMultipleRoundedFilled as default } +export default IconNotificationMultipleRoundedFilled diff --git a/src/IconNotificationMultipleSharp.tsx b/src/IconNotificationMultipleSharp.tsx index 1d01086e7..a24e95cb9 100644 --- a/src/IconNotificationMultipleSharp.tsx +++ b/src/IconNotificationMultipleSharp.tsx @@ -8,4 +8,4 @@ const IconNotificationMultipleSharp: React.FC = ({ ...props }) => ( ) -export { IconNotificationMultipleSharp as default } +export default IconNotificationMultipleSharp diff --git a/src/IconNotificationMultipleSharpFilled.tsx b/src/IconNotificationMultipleSharpFilled.tsx index 431facbba..a1cac9963 100644 --- a/src/IconNotificationMultipleSharpFilled.tsx +++ b/src/IconNotificationMultipleSharpFilled.tsx @@ -10,4 +10,4 @@ const IconNotificationMultipleSharpFilled: React.FC = ({ ) -export { IconNotificationMultipleSharpFilled as default } +export default IconNotificationMultipleSharpFilled diff --git a/src/IconNotificationsActiveOutlined.tsx b/src/IconNotificationsActiveOutlined.tsx index 2a644a000..f67565c89 100644 --- a/src/IconNotificationsActiveOutlined.tsx +++ b/src/IconNotificationsActiveOutlined.tsx @@ -8,4 +8,4 @@ const IconNotificationsActiveOutlined: React.FC = ({ ...props }) => ( ) -export { IconNotificationsActiveOutlined as default } +export default IconNotificationsActiveOutlined diff --git a/src/IconNotificationsActiveOutlinedFilled.tsx b/src/IconNotificationsActiveOutlinedFilled.tsx index 80e91c0ec..dad13b7e5 100644 --- a/src/IconNotificationsActiveOutlinedFilled.tsx +++ b/src/IconNotificationsActiveOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconNotificationsActiveOutlinedFilled: React.FC = ({ ) -export { IconNotificationsActiveOutlinedFilled as default } +export default IconNotificationsActiveOutlinedFilled diff --git a/src/IconNotificationsActiveRounded.tsx b/src/IconNotificationsActiveRounded.tsx index 32e92e131..1703a9a96 100644 --- a/src/IconNotificationsActiveRounded.tsx +++ b/src/IconNotificationsActiveRounded.tsx @@ -8,4 +8,4 @@ const IconNotificationsActiveRounded: React.FC = ({ ...props }) => ( ) -export { IconNotificationsActiveRounded as default } +export default IconNotificationsActiveRounded diff --git a/src/IconNotificationsActiveRoundedFilled.tsx b/src/IconNotificationsActiveRoundedFilled.tsx index 3c5f7b3a3..80e489a81 100644 --- a/src/IconNotificationsActiveRoundedFilled.tsx +++ b/src/IconNotificationsActiveRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconNotificationsActiveRoundedFilled: React.FC = ({ ) -export { IconNotificationsActiveRoundedFilled as default } +export default IconNotificationsActiveRoundedFilled diff --git a/src/IconNotificationsActiveSharp.tsx b/src/IconNotificationsActiveSharp.tsx index 26e3a543a..dda23859c 100644 --- a/src/IconNotificationsActiveSharp.tsx +++ b/src/IconNotificationsActiveSharp.tsx @@ -8,4 +8,4 @@ const IconNotificationsActiveSharp: React.FC = ({ ...props }) => ( ) -export { IconNotificationsActiveSharp as default } +export default IconNotificationsActiveSharp diff --git a/src/IconNotificationsActiveSharpFilled.tsx b/src/IconNotificationsActiveSharpFilled.tsx index 8db71b5b1..f9d51a653 100644 --- a/src/IconNotificationsActiveSharpFilled.tsx +++ b/src/IconNotificationsActiveSharpFilled.tsx @@ -10,4 +10,4 @@ const IconNotificationsActiveSharpFilled: React.FC = ({ ) -export { IconNotificationsActiveSharpFilled as default } +export default IconNotificationsActiveSharpFilled diff --git a/src/IconNotificationsOffOutlined.tsx b/src/IconNotificationsOffOutlined.tsx index 73c74963d..e9c90334d 100644 --- a/src/IconNotificationsOffOutlined.tsx +++ b/src/IconNotificationsOffOutlined.tsx @@ -8,4 +8,4 @@ const IconNotificationsOffOutlined: React.FC = ({ ...props }) => ( ) -export { IconNotificationsOffOutlined as default } +export default IconNotificationsOffOutlined diff --git a/src/IconNotificationsOffOutlinedFilled.tsx b/src/IconNotificationsOffOutlinedFilled.tsx index c73e765f9..490662d05 100644 --- a/src/IconNotificationsOffOutlinedFilled.tsx +++ b/src/IconNotificationsOffOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconNotificationsOffOutlinedFilled: React.FC = ({ ) -export { IconNotificationsOffOutlinedFilled as default } +export default IconNotificationsOffOutlinedFilled diff --git a/src/IconNotificationsOffRounded.tsx b/src/IconNotificationsOffRounded.tsx index b140f7689..8d62e2529 100644 --- a/src/IconNotificationsOffRounded.tsx +++ b/src/IconNotificationsOffRounded.tsx @@ -8,4 +8,4 @@ const IconNotificationsOffRounded: React.FC = ({ ...props }) => ( ) -export { IconNotificationsOffRounded as default } +export default IconNotificationsOffRounded diff --git a/src/IconNotificationsOffRoundedFilled.tsx b/src/IconNotificationsOffRoundedFilled.tsx index 03e52e9ea..d34e2a8be 100644 --- a/src/IconNotificationsOffRoundedFilled.tsx +++ b/src/IconNotificationsOffRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconNotificationsOffRoundedFilled: React.FC = ({ ) -export { IconNotificationsOffRoundedFilled as default } +export default IconNotificationsOffRoundedFilled diff --git a/src/IconNotificationsOffSharp.tsx b/src/IconNotificationsOffSharp.tsx index b983df575..e80af59ca 100644 --- a/src/IconNotificationsOffSharp.tsx +++ b/src/IconNotificationsOffSharp.tsx @@ -8,4 +8,4 @@ const IconNotificationsOffSharp: React.FC = ({ ...props }) => ( ) -export { IconNotificationsOffSharp as default } +export default IconNotificationsOffSharp diff --git a/src/IconNotificationsOffSharpFilled.tsx b/src/IconNotificationsOffSharpFilled.tsx index e5b62c79f..5bf45b787 100644 --- a/src/IconNotificationsOffSharpFilled.tsx +++ b/src/IconNotificationsOffSharpFilled.tsx @@ -8,4 +8,4 @@ const IconNotificationsOffSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconNotificationsOffSharpFilled as default } +export default IconNotificationsOffSharpFilled diff --git a/src/IconNotificationsOutlined.tsx b/src/IconNotificationsOutlined.tsx index 51e6fd58a..6b4c3746b 100644 --- a/src/IconNotificationsOutlined.tsx +++ b/src/IconNotificationsOutlined.tsx @@ -8,4 +8,4 @@ const IconNotificationsOutlined: React.FC = ({ ...props }) => ( ) -export { IconNotificationsOutlined as default } +export default IconNotificationsOutlined diff --git a/src/IconNotificationsOutlinedFilled.tsx b/src/IconNotificationsOutlinedFilled.tsx index 441fba78d..33223c8c1 100644 --- a/src/IconNotificationsOutlinedFilled.tsx +++ b/src/IconNotificationsOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconNotificationsOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconNotificationsOutlinedFilled as default } +export default IconNotificationsOutlinedFilled diff --git a/src/IconNotificationsPausedOutlined.tsx b/src/IconNotificationsPausedOutlined.tsx index 9e7da8432..eab364dc8 100644 --- a/src/IconNotificationsPausedOutlined.tsx +++ b/src/IconNotificationsPausedOutlined.tsx @@ -8,4 +8,4 @@ const IconNotificationsPausedOutlined: React.FC = ({ ...props }) => ( ) -export { IconNotificationsPausedOutlined as default } +export default IconNotificationsPausedOutlined diff --git a/src/IconNotificationsPausedOutlinedFilled.tsx b/src/IconNotificationsPausedOutlinedFilled.tsx index 96c6d6346..1746ac172 100644 --- a/src/IconNotificationsPausedOutlinedFilled.tsx +++ b/src/IconNotificationsPausedOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconNotificationsPausedOutlinedFilled: React.FC = ({ ) -export { IconNotificationsPausedOutlinedFilled as default } +export default IconNotificationsPausedOutlinedFilled diff --git a/src/IconNotificationsPausedRounded.tsx b/src/IconNotificationsPausedRounded.tsx index 31f31c3d1..e9498205c 100644 --- a/src/IconNotificationsPausedRounded.tsx +++ b/src/IconNotificationsPausedRounded.tsx @@ -8,4 +8,4 @@ const IconNotificationsPausedRounded: React.FC = ({ ...props }) => ( ) -export { IconNotificationsPausedRounded as default } +export default IconNotificationsPausedRounded diff --git a/src/IconNotificationsPausedRoundedFilled.tsx b/src/IconNotificationsPausedRoundedFilled.tsx index 5a522562f..8a5801df1 100644 --- a/src/IconNotificationsPausedRoundedFilled.tsx +++ b/src/IconNotificationsPausedRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconNotificationsPausedRoundedFilled: React.FC = ({ ) -export { IconNotificationsPausedRoundedFilled as default } +export default IconNotificationsPausedRoundedFilled diff --git a/src/IconNotificationsPausedSharp.tsx b/src/IconNotificationsPausedSharp.tsx index 163b656d4..200fca55a 100644 --- a/src/IconNotificationsPausedSharp.tsx +++ b/src/IconNotificationsPausedSharp.tsx @@ -8,4 +8,4 @@ const IconNotificationsPausedSharp: React.FC = ({ ...props }) => ( ) -export { IconNotificationsPausedSharp as default } +export default IconNotificationsPausedSharp diff --git a/src/IconNotificationsPausedSharpFilled.tsx b/src/IconNotificationsPausedSharpFilled.tsx index 5c5b8cc58..4730219a4 100644 --- a/src/IconNotificationsPausedSharpFilled.tsx +++ b/src/IconNotificationsPausedSharpFilled.tsx @@ -10,4 +10,4 @@ const IconNotificationsPausedSharpFilled: React.FC = ({ ) -export { IconNotificationsPausedSharpFilled as default } +export default IconNotificationsPausedSharpFilled diff --git a/src/IconNotificationsRounded.tsx b/src/IconNotificationsRounded.tsx index 1889e2a61..7ad6ba5ca 100644 --- a/src/IconNotificationsRounded.tsx +++ b/src/IconNotificationsRounded.tsx @@ -8,4 +8,4 @@ const IconNotificationsRounded: React.FC = ({ ...props }) => ( ) -export { IconNotificationsRounded as default } +export default IconNotificationsRounded diff --git a/src/IconNotificationsRoundedFilled.tsx b/src/IconNotificationsRoundedFilled.tsx index e8e6e5fa9..eedc4a9b0 100644 --- a/src/IconNotificationsRoundedFilled.tsx +++ b/src/IconNotificationsRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconNotificationsRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconNotificationsRoundedFilled as default } +export default IconNotificationsRoundedFilled diff --git a/src/IconNotificationsSharp.tsx b/src/IconNotificationsSharp.tsx index 048786499..819c760c3 100644 --- a/src/IconNotificationsSharp.tsx +++ b/src/IconNotificationsSharp.tsx @@ -8,4 +8,4 @@ const IconNotificationsSharp: React.FC = ({ ...props }) => ( ) -export { IconNotificationsSharp as default } +export default IconNotificationsSharp diff --git a/src/IconNotificationsSharpFilled.tsx b/src/IconNotificationsSharpFilled.tsx index ab2b2b970..d3bb25610 100644 --- a/src/IconNotificationsSharpFilled.tsx +++ b/src/IconNotificationsSharpFilled.tsx @@ -8,4 +8,4 @@ const IconNotificationsSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconNotificationsSharpFilled as default } +export default IconNotificationsSharpFilled diff --git a/src/IconNotificationsUnreadOutlined.tsx b/src/IconNotificationsUnreadOutlined.tsx index 8c88409b7..e923b35c5 100644 --- a/src/IconNotificationsUnreadOutlined.tsx +++ b/src/IconNotificationsUnreadOutlined.tsx @@ -8,4 +8,4 @@ const IconNotificationsUnreadOutlined: React.FC = ({ ...props }) => ( ) -export { IconNotificationsUnreadOutlined as default } +export default IconNotificationsUnreadOutlined diff --git a/src/IconNotificationsUnreadOutlinedFilled.tsx b/src/IconNotificationsUnreadOutlinedFilled.tsx index 651bf85fe..d576ef9b4 100644 --- a/src/IconNotificationsUnreadOutlinedFilled.tsx +++ b/src/IconNotificationsUnreadOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconNotificationsUnreadOutlinedFilled: React.FC = ({ ) -export { IconNotificationsUnreadOutlinedFilled as default } +export default IconNotificationsUnreadOutlinedFilled diff --git a/src/IconNotificationsUnreadRounded.tsx b/src/IconNotificationsUnreadRounded.tsx index 0ad5da833..fcf3a2af0 100644 --- a/src/IconNotificationsUnreadRounded.tsx +++ b/src/IconNotificationsUnreadRounded.tsx @@ -8,4 +8,4 @@ const IconNotificationsUnreadRounded: React.FC = ({ ...props }) => ( ) -export { IconNotificationsUnreadRounded as default } +export default IconNotificationsUnreadRounded diff --git a/src/IconNotificationsUnreadRoundedFilled.tsx b/src/IconNotificationsUnreadRoundedFilled.tsx index 273f780b4..c6c285ed3 100644 --- a/src/IconNotificationsUnreadRoundedFilled.tsx +++ b/src/IconNotificationsUnreadRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconNotificationsUnreadRoundedFilled: React.FC = ({ ) -export { IconNotificationsUnreadRoundedFilled as default } +export default IconNotificationsUnreadRoundedFilled diff --git a/src/IconNotificationsUnreadSharp.tsx b/src/IconNotificationsUnreadSharp.tsx index 4f85d960f..6de5a3482 100644 --- a/src/IconNotificationsUnreadSharp.tsx +++ b/src/IconNotificationsUnreadSharp.tsx @@ -8,4 +8,4 @@ const IconNotificationsUnreadSharp: React.FC = ({ ...props }) => ( ) -export { IconNotificationsUnreadSharp as default } +export default IconNotificationsUnreadSharp diff --git a/src/IconNotificationsUnreadSharpFilled.tsx b/src/IconNotificationsUnreadSharpFilled.tsx index 830ea5d6f..cffdac8a5 100644 --- a/src/IconNotificationsUnreadSharpFilled.tsx +++ b/src/IconNotificationsUnreadSharpFilled.tsx @@ -10,4 +10,4 @@ const IconNotificationsUnreadSharpFilled: React.FC = ({ ) -export { IconNotificationsUnreadSharpFilled as default } +export default IconNotificationsUnreadSharpFilled diff --git a/src/IconNumbersOutlined.tsx b/src/IconNumbersOutlined.tsx index 9ff972ddb..e7ee902fc 100644 --- a/src/IconNumbersOutlined.tsx +++ b/src/IconNumbersOutlined.tsx @@ -8,4 +8,4 @@ const IconNumbersOutlined: React.FC = ({ ...props }) => ( ) -export { IconNumbersOutlined as default } +export default IconNumbersOutlined diff --git a/src/IconNumbersOutlinedFilled.tsx b/src/IconNumbersOutlinedFilled.tsx index a529ffc9c..7b494596b 100644 --- a/src/IconNumbersOutlinedFilled.tsx +++ b/src/IconNumbersOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconNumbersOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconNumbersOutlinedFilled as default } +export default IconNumbersOutlinedFilled diff --git a/src/IconNumbersRounded.tsx b/src/IconNumbersRounded.tsx index 0f5093ce6..dd5006755 100644 --- a/src/IconNumbersRounded.tsx +++ b/src/IconNumbersRounded.tsx @@ -8,4 +8,4 @@ const IconNumbersRounded: React.FC = ({ ...props }) => ( ) -export { IconNumbersRounded as default } +export default IconNumbersRounded diff --git a/src/IconNumbersRoundedFilled.tsx b/src/IconNumbersRoundedFilled.tsx index 6bc623656..481688ce8 100644 --- a/src/IconNumbersRoundedFilled.tsx +++ b/src/IconNumbersRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconNumbersRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconNumbersRoundedFilled as default } +export default IconNumbersRoundedFilled diff --git a/src/IconNumbersSharp.tsx b/src/IconNumbersSharp.tsx index 4ea7ecf02..d20cd5470 100644 --- a/src/IconNumbersSharp.tsx +++ b/src/IconNumbersSharp.tsx @@ -8,4 +8,4 @@ const IconNumbersSharp: React.FC = ({ ...props }) => ( ) -export { IconNumbersSharp as default } +export default IconNumbersSharp diff --git a/src/IconNumbersSharpFilled.tsx b/src/IconNumbersSharpFilled.tsx index 57349c252..f087b7959 100644 --- a/src/IconNumbersSharpFilled.tsx +++ b/src/IconNumbersSharpFilled.tsx @@ -8,4 +8,4 @@ const IconNumbersSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconNumbersSharpFilled as default } +export default IconNumbersSharpFilled diff --git a/src/IconNutritionOutlined.tsx b/src/IconNutritionOutlined.tsx index f93496e90..f855c479a 100644 --- a/src/IconNutritionOutlined.tsx +++ b/src/IconNutritionOutlined.tsx @@ -8,4 +8,4 @@ const IconNutritionOutlined: React.FC = ({ ...props }) => ( ) -export { IconNutritionOutlined as default } +export default IconNutritionOutlined diff --git a/src/IconNutritionOutlinedFilled.tsx b/src/IconNutritionOutlinedFilled.tsx index 687a341cd..4ffa882a0 100644 --- a/src/IconNutritionOutlinedFilled.tsx +++ b/src/IconNutritionOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconNutritionOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconNutritionOutlinedFilled as default } +export default IconNutritionOutlinedFilled diff --git a/src/IconNutritionRounded.tsx b/src/IconNutritionRounded.tsx index 1b2ec0757..e7c174363 100644 --- a/src/IconNutritionRounded.tsx +++ b/src/IconNutritionRounded.tsx @@ -8,4 +8,4 @@ const IconNutritionRounded: React.FC = ({ ...props }) => ( ) -export { IconNutritionRounded as default } +export default IconNutritionRounded diff --git a/src/IconNutritionRoundedFilled.tsx b/src/IconNutritionRoundedFilled.tsx index df2006a1a..d30eedc67 100644 --- a/src/IconNutritionRoundedFilled.tsx +++ b/src/IconNutritionRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconNutritionRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconNutritionRoundedFilled as default } +export default IconNutritionRoundedFilled diff --git a/src/IconNutritionSharp.tsx b/src/IconNutritionSharp.tsx index 2c4250636..59cf60e3d 100644 --- a/src/IconNutritionSharp.tsx +++ b/src/IconNutritionSharp.tsx @@ -8,4 +8,4 @@ const IconNutritionSharp: React.FC = ({ ...props }) => ( ) -export { IconNutritionSharp as default } +export default IconNutritionSharp diff --git a/src/IconNutritionSharpFilled.tsx b/src/IconNutritionSharpFilled.tsx index 8e3809281..156f46160 100644 --- a/src/IconNutritionSharpFilled.tsx +++ b/src/IconNutritionSharpFilled.tsx @@ -8,4 +8,4 @@ const IconNutritionSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconNutritionSharpFilled as default } +export default IconNutritionSharpFilled diff --git a/src/IconOdsOutlined.tsx b/src/IconOdsOutlined.tsx index 392816e06..bbb8e4a00 100644 --- a/src/IconOdsOutlined.tsx +++ b/src/IconOdsOutlined.tsx @@ -8,4 +8,4 @@ const IconOdsOutlined: React.FC = ({ ...props }) => ( ) -export { IconOdsOutlined as default } +export default IconOdsOutlined diff --git a/src/IconOdsOutlinedFilled.tsx b/src/IconOdsOutlinedFilled.tsx index 848348d0f..a8eb8ec01 100644 --- a/src/IconOdsOutlinedFilled.tsx +++ b/src/IconOdsOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconOdsOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconOdsOutlinedFilled as default } +export default IconOdsOutlinedFilled diff --git a/src/IconOdsRounded.tsx b/src/IconOdsRounded.tsx index 8b2759d00..345d26183 100644 --- a/src/IconOdsRounded.tsx +++ b/src/IconOdsRounded.tsx @@ -8,4 +8,4 @@ const IconOdsRounded: React.FC = ({ ...props }) => ( ) -export { IconOdsRounded as default } +export default IconOdsRounded diff --git a/src/IconOdsRoundedFilled.tsx b/src/IconOdsRoundedFilled.tsx index bb3759700..9eab44e8c 100644 --- a/src/IconOdsRoundedFilled.tsx +++ b/src/IconOdsRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconOdsRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconOdsRoundedFilled as default } +export default IconOdsRoundedFilled diff --git a/src/IconOdsSharp.tsx b/src/IconOdsSharp.tsx index c8a0f16df..c64ad017b 100644 --- a/src/IconOdsSharp.tsx +++ b/src/IconOdsSharp.tsx @@ -8,4 +8,4 @@ const IconOdsSharp: React.FC = ({ ...props }) => ( ) -export { IconOdsSharp as default } +export default IconOdsSharp diff --git a/src/IconOdsSharpFilled.tsx b/src/IconOdsSharpFilled.tsx index d8af44a78..aea449bff 100644 --- a/src/IconOdsSharpFilled.tsx +++ b/src/IconOdsSharpFilled.tsx @@ -8,4 +8,4 @@ const IconOdsSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconOdsSharpFilled as default } +export default IconOdsSharpFilled diff --git a/src/IconOdtOutlined.tsx b/src/IconOdtOutlined.tsx index 4ad8ff0d2..8566824b4 100644 --- a/src/IconOdtOutlined.tsx +++ b/src/IconOdtOutlined.tsx @@ -8,4 +8,4 @@ const IconOdtOutlined: React.FC = ({ ...props }) => ( ) -export { IconOdtOutlined as default } +export default IconOdtOutlined diff --git a/src/IconOdtOutlinedFilled.tsx b/src/IconOdtOutlinedFilled.tsx index 0290d6ca6..fc15751ff 100644 --- a/src/IconOdtOutlinedFilled.tsx +++ b/src/IconOdtOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconOdtOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconOdtOutlinedFilled as default } +export default IconOdtOutlinedFilled diff --git a/src/IconOdtRounded.tsx b/src/IconOdtRounded.tsx index 435d2aca3..69f88fd9e 100644 --- a/src/IconOdtRounded.tsx +++ b/src/IconOdtRounded.tsx @@ -8,4 +8,4 @@ const IconOdtRounded: React.FC = ({ ...props }) => ( ) -export { IconOdtRounded as default } +export default IconOdtRounded diff --git a/src/IconOdtRoundedFilled.tsx b/src/IconOdtRoundedFilled.tsx index d9461d89f..aed04ee0f 100644 --- a/src/IconOdtRoundedFilled.tsx +++ b/src/IconOdtRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconOdtRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconOdtRoundedFilled as default } +export default IconOdtRoundedFilled diff --git a/src/IconOdtSharp.tsx b/src/IconOdtSharp.tsx index a07783d54..34898c080 100644 --- a/src/IconOdtSharp.tsx +++ b/src/IconOdtSharp.tsx @@ -8,4 +8,4 @@ const IconOdtSharp: React.FC = ({ ...props }) => ( ) -export { IconOdtSharp as default } +export default IconOdtSharp diff --git a/src/IconOdtSharpFilled.tsx b/src/IconOdtSharpFilled.tsx index ce2674012..9d2aeb9aa 100644 --- a/src/IconOdtSharpFilled.tsx +++ b/src/IconOdtSharpFilled.tsx @@ -8,4 +8,4 @@ const IconOdtSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconOdtSharpFilled as default } +export default IconOdtSharpFilled diff --git a/src/IconOfflineBoltOutlined.tsx b/src/IconOfflineBoltOutlined.tsx index 1e24010e2..2a7953b0c 100644 --- a/src/IconOfflineBoltOutlined.tsx +++ b/src/IconOfflineBoltOutlined.tsx @@ -8,4 +8,4 @@ const IconOfflineBoltOutlined: React.FC = ({ ...props }) => ( ) -export { IconOfflineBoltOutlined as default } +export default IconOfflineBoltOutlined diff --git a/src/IconOfflineBoltOutlinedFilled.tsx b/src/IconOfflineBoltOutlinedFilled.tsx index eaf1ab027..6427fd9b6 100644 --- a/src/IconOfflineBoltOutlinedFilled.tsx +++ b/src/IconOfflineBoltOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconOfflineBoltOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconOfflineBoltOutlinedFilled as default } +export default IconOfflineBoltOutlinedFilled diff --git a/src/IconOfflineBoltRounded.tsx b/src/IconOfflineBoltRounded.tsx index a22ede92a..76e0e5ff7 100644 --- a/src/IconOfflineBoltRounded.tsx +++ b/src/IconOfflineBoltRounded.tsx @@ -8,4 +8,4 @@ const IconOfflineBoltRounded: React.FC = ({ ...props }) => ( ) -export { IconOfflineBoltRounded as default } +export default IconOfflineBoltRounded diff --git a/src/IconOfflineBoltRoundedFilled.tsx b/src/IconOfflineBoltRoundedFilled.tsx index 95e01e055..24efbda47 100644 --- a/src/IconOfflineBoltRoundedFilled.tsx +++ b/src/IconOfflineBoltRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconOfflineBoltRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconOfflineBoltRoundedFilled as default } +export default IconOfflineBoltRoundedFilled diff --git a/src/IconOfflineBoltSharp.tsx b/src/IconOfflineBoltSharp.tsx index b1858f1b8..482a1e576 100644 --- a/src/IconOfflineBoltSharp.tsx +++ b/src/IconOfflineBoltSharp.tsx @@ -8,4 +8,4 @@ const IconOfflineBoltSharp: React.FC = ({ ...props }) => ( ) -export { IconOfflineBoltSharp as default } +export default IconOfflineBoltSharp diff --git a/src/IconOfflineBoltSharpFilled.tsx b/src/IconOfflineBoltSharpFilled.tsx index 995f62878..f39d7553f 100644 --- a/src/IconOfflineBoltSharpFilled.tsx +++ b/src/IconOfflineBoltSharpFilled.tsx @@ -8,4 +8,4 @@ const IconOfflineBoltSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconOfflineBoltSharpFilled as default } +export default IconOfflineBoltSharpFilled diff --git a/src/IconOfflinePinOffOutlined.tsx b/src/IconOfflinePinOffOutlined.tsx index b5f8877e2..0fde44db8 100644 --- a/src/IconOfflinePinOffOutlined.tsx +++ b/src/IconOfflinePinOffOutlined.tsx @@ -8,4 +8,4 @@ const IconOfflinePinOffOutlined: React.FC = ({ ...props }) => ( ) -export { IconOfflinePinOffOutlined as default } +export default IconOfflinePinOffOutlined diff --git a/src/IconOfflinePinOffOutlinedFilled.tsx b/src/IconOfflinePinOffOutlinedFilled.tsx index 497cc59b2..091934e12 100644 --- a/src/IconOfflinePinOffOutlinedFilled.tsx +++ b/src/IconOfflinePinOffOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconOfflinePinOffOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconOfflinePinOffOutlinedFilled as default } +export default IconOfflinePinOffOutlinedFilled diff --git a/src/IconOfflinePinOffRounded.tsx b/src/IconOfflinePinOffRounded.tsx index 2ec2d2ab6..bd4b00aa8 100644 --- a/src/IconOfflinePinOffRounded.tsx +++ b/src/IconOfflinePinOffRounded.tsx @@ -8,4 +8,4 @@ const IconOfflinePinOffRounded: React.FC = ({ ...props }) => ( ) -export { IconOfflinePinOffRounded as default } +export default IconOfflinePinOffRounded diff --git a/src/IconOfflinePinOffRoundedFilled.tsx b/src/IconOfflinePinOffRoundedFilled.tsx index b86ea71d0..e134601aa 100644 --- a/src/IconOfflinePinOffRoundedFilled.tsx +++ b/src/IconOfflinePinOffRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconOfflinePinOffRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconOfflinePinOffRoundedFilled as default } +export default IconOfflinePinOffRoundedFilled diff --git a/src/IconOfflinePinOffSharp.tsx b/src/IconOfflinePinOffSharp.tsx index cf6171bf4..c1142782c 100644 --- a/src/IconOfflinePinOffSharp.tsx +++ b/src/IconOfflinePinOffSharp.tsx @@ -8,4 +8,4 @@ const IconOfflinePinOffSharp: React.FC = ({ ...props }) => ( ) -export { IconOfflinePinOffSharp as default } +export default IconOfflinePinOffSharp diff --git a/src/IconOfflinePinOffSharpFilled.tsx b/src/IconOfflinePinOffSharpFilled.tsx index 1f2b6097d..1ecd4b59f 100644 --- a/src/IconOfflinePinOffSharpFilled.tsx +++ b/src/IconOfflinePinOffSharpFilled.tsx @@ -8,4 +8,4 @@ const IconOfflinePinOffSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconOfflinePinOffSharpFilled as default } +export default IconOfflinePinOffSharpFilled diff --git a/src/IconOfflinePinOutlined.tsx b/src/IconOfflinePinOutlined.tsx index a5bc7bfc0..49ac07a86 100644 --- a/src/IconOfflinePinOutlined.tsx +++ b/src/IconOfflinePinOutlined.tsx @@ -8,4 +8,4 @@ const IconOfflinePinOutlined: React.FC = ({ ...props }) => ( ) -export { IconOfflinePinOutlined as default } +export default IconOfflinePinOutlined diff --git a/src/IconOfflinePinOutlinedFilled.tsx b/src/IconOfflinePinOutlinedFilled.tsx index baa9fec66..0ce9921ad 100644 --- a/src/IconOfflinePinOutlinedFilled.tsx +++ b/src/IconOfflinePinOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconOfflinePinOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconOfflinePinOutlinedFilled as default } +export default IconOfflinePinOutlinedFilled diff --git a/src/IconOfflinePinRounded.tsx b/src/IconOfflinePinRounded.tsx index 27824537f..6330194fe 100644 --- a/src/IconOfflinePinRounded.tsx +++ b/src/IconOfflinePinRounded.tsx @@ -8,4 +8,4 @@ const IconOfflinePinRounded: React.FC = ({ ...props }) => ( ) -export { IconOfflinePinRounded as default } +export default IconOfflinePinRounded diff --git a/src/IconOfflinePinRoundedFilled.tsx b/src/IconOfflinePinRoundedFilled.tsx index 47278096d..940074ab1 100644 --- a/src/IconOfflinePinRoundedFilled.tsx +++ b/src/IconOfflinePinRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconOfflinePinRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconOfflinePinRoundedFilled as default } +export default IconOfflinePinRoundedFilled diff --git a/src/IconOfflinePinSharp.tsx b/src/IconOfflinePinSharp.tsx index fdd0c5726..e73e4e4e6 100644 --- a/src/IconOfflinePinSharp.tsx +++ b/src/IconOfflinePinSharp.tsx @@ -8,4 +8,4 @@ const IconOfflinePinSharp: React.FC = ({ ...props }) => ( ) -export { IconOfflinePinSharp as default } +export default IconOfflinePinSharp diff --git a/src/IconOfflinePinSharpFilled.tsx b/src/IconOfflinePinSharpFilled.tsx index 2a34086b2..d669bc386 100644 --- a/src/IconOfflinePinSharpFilled.tsx +++ b/src/IconOfflinePinSharpFilled.tsx @@ -8,4 +8,4 @@ const IconOfflinePinSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconOfflinePinSharpFilled as default } +export default IconOfflinePinSharpFilled diff --git a/src/IconOfflineShareOutlined.tsx b/src/IconOfflineShareOutlined.tsx index 5c445100b..49bd90b30 100644 --- a/src/IconOfflineShareOutlined.tsx +++ b/src/IconOfflineShareOutlined.tsx @@ -8,4 +8,4 @@ const IconOfflineShareOutlined: React.FC = ({ ...props }) => ( ) -export { IconOfflineShareOutlined as default } +export default IconOfflineShareOutlined diff --git a/src/IconOfflineShareOutlinedFilled.tsx b/src/IconOfflineShareOutlinedFilled.tsx index 1d2a2d3c0..a0464f046 100644 --- a/src/IconOfflineShareOutlinedFilled.tsx +++ b/src/IconOfflineShareOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconOfflineShareOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconOfflineShareOutlinedFilled as default } +export default IconOfflineShareOutlinedFilled diff --git a/src/IconOfflineShareRounded.tsx b/src/IconOfflineShareRounded.tsx index 56fefac7b..2cd5af94d 100644 --- a/src/IconOfflineShareRounded.tsx +++ b/src/IconOfflineShareRounded.tsx @@ -8,4 +8,4 @@ const IconOfflineShareRounded: React.FC = ({ ...props }) => ( ) -export { IconOfflineShareRounded as default } +export default IconOfflineShareRounded diff --git a/src/IconOfflineShareRoundedFilled.tsx b/src/IconOfflineShareRoundedFilled.tsx index cefb1dad4..20e73ffba 100644 --- a/src/IconOfflineShareRoundedFilled.tsx +++ b/src/IconOfflineShareRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconOfflineShareRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconOfflineShareRoundedFilled as default } +export default IconOfflineShareRoundedFilled diff --git a/src/IconOfflineShareSharp.tsx b/src/IconOfflineShareSharp.tsx index 916880e2a..8ebe64afd 100644 --- a/src/IconOfflineShareSharp.tsx +++ b/src/IconOfflineShareSharp.tsx @@ -8,4 +8,4 @@ const IconOfflineShareSharp: React.FC = ({ ...props }) => ( ) -export { IconOfflineShareSharp as default } +export default IconOfflineShareSharp diff --git a/src/IconOfflineShareSharpFilled.tsx b/src/IconOfflineShareSharpFilled.tsx index 4e36a2d0d..22f050aaa 100644 --- a/src/IconOfflineShareSharpFilled.tsx +++ b/src/IconOfflineShareSharpFilled.tsx @@ -8,4 +8,4 @@ const IconOfflineShareSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconOfflineShareSharpFilled as default } +export default IconOfflineShareSharpFilled diff --git a/src/IconOilBarrelOutlined.tsx b/src/IconOilBarrelOutlined.tsx index 8c23d4069..d54f862b4 100644 --- a/src/IconOilBarrelOutlined.tsx +++ b/src/IconOilBarrelOutlined.tsx @@ -8,4 +8,4 @@ const IconOilBarrelOutlined: React.FC = ({ ...props }) => ( ) -export { IconOilBarrelOutlined as default } +export default IconOilBarrelOutlined diff --git a/src/IconOilBarrelOutlinedFilled.tsx b/src/IconOilBarrelOutlinedFilled.tsx index 17ebf60f2..9716de350 100644 --- a/src/IconOilBarrelOutlinedFilled.tsx +++ b/src/IconOilBarrelOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconOilBarrelOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconOilBarrelOutlinedFilled as default } +export default IconOilBarrelOutlinedFilled diff --git a/src/IconOilBarrelRounded.tsx b/src/IconOilBarrelRounded.tsx index 475a517f9..7d575f5db 100644 --- a/src/IconOilBarrelRounded.tsx +++ b/src/IconOilBarrelRounded.tsx @@ -8,4 +8,4 @@ const IconOilBarrelRounded: React.FC = ({ ...props }) => ( ) -export { IconOilBarrelRounded as default } +export default IconOilBarrelRounded diff --git a/src/IconOilBarrelRoundedFilled.tsx b/src/IconOilBarrelRoundedFilled.tsx index 4f5e3e088..9fd44c1f0 100644 --- a/src/IconOilBarrelRoundedFilled.tsx +++ b/src/IconOilBarrelRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconOilBarrelRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconOilBarrelRoundedFilled as default } +export default IconOilBarrelRoundedFilled diff --git a/src/IconOilBarrelSharp.tsx b/src/IconOilBarrelSharp.tsx index 39ef0febb..9955367ab 100644 --- a/src/IconOilBarrelSharp.tsx +++ b/src/IconOilBarrelSharp.tsx @@ -8,4 +8,4 @@ const IconOilBarrelSharp: React.FC = ({ ...props }) => ( ) -export { IconOilBarrelSharp as default } +export default IconOilBarrelSharp diff --git a/src/IconOilBarrelSharpFilled.tsx b/src/IconOilBarrelSharpFilled.tsx index 535990c0b..6b733ebc7 100644 --- a/src/IconOilBarrelSharpFilled.tsx +++ b/src/IconOilBarrelSharpFilled.tsx @@ -8,4 +8,4 @@ const IconOilBarrelSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconOilBarrelSharpFilled as default } +export default IconOilBarrelSharpFilled diff --git a/src/IconOnDeviceTrainingOutlined.tsx b/src/IconOnDeviceTrainingOutlined.tsx index 37f40b53a..3531430bf 100644 --- a/src/IconOnDeviceTrainingOutlined.tsx +++ b/src/IconOnDeviceTrainingOutlined.tsx @@ -8,4 +8,4 @@ const IconOnDeviceTrainingOutlined: React.FC = ({ ...props }) => ( ) -export { IconOnDeviceTrainingOutlined as default } +export default IconOnDeviceTrainingOutlined diff --git a/src/IconOnDeviceTrainingOutlinedFilled.tsx b/src/IconOnDeviceTrainingOutlinedFilled.tsx index 361ce31e4..3ccdc546f 100644 --- a/src/IconOnDeviceTrainingOutlinedFilled.tsx +++ b/src/IconOnDeviceTrainingOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconOnDeviceTrainingOutlinedFilled: React.FC = ({ ) -export { IconOnDeviceTrainingOutlinedFilled as default } +export default IconOnDeviceTrainingOutlinedFilled diff --git a/src/IconOnDeviceTrainingRounded.tsx b/src/IconOnDeviceTrainingRounded.tsx index 3f269a183..47c9bedc0 100644 --- a/src/IconOnDeviceTrainingRounded.tsx +++ b/src/IconOnDeviceTrainingRounded.tsx @@ -8,4 +8,4 @@ const IconOnDeviceTrainingRounded: React.FC = ({ ...props }) => ( ) -export { IconOnDeviceTrainingRounded as default } +export default IconOnDeviceTrainingRounded diff --git a/src/IconOnDeviceTrainingRoundedFilled.tsx b/src/IconOnDeviceTrainingRoundedFilled.tsx index 3b68583f8..cc4b13993 100644 --- a/src/IconOnDeviceTrainingRoundedFilled.tsx +++ b/src/IconOnDeviceTrainingRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconOnDeviceTrainingRoundedFilled: React.FC = ({ ) -export { IconOnDeviceTrainingRoundedFilled as default } +export default IconOnDeviceTrainingRoundedFilled diff --git a/src/IconOnDeviceTrainingSharp.tsx b/src/IconOnDeviceTrainingSharp.tsx index c4848a2d8..f8f2df3b5 100644 --- a/src/IconOnDeviceTrainingSharp.tsx +++ b/src/IconOnDeviceTrainingSharp.tsx @@ -8,4 +8,4 @@ const IconOnDeviceTrainingSharp: React.FC = ({ ...props }) => ( ) -export { IconOnDeviceTrainingSharp as default } +export default IconOnDeviceTrainingSharp diff --git a/src/IconOnDeviceTrainingSharpFilled.tsx b/src/IconOnDeviceTrainingSharpFilled.tsx index 6ea642446..d255e4111 100644 --- a/src/IconOnDeviceTrainingSharpFilled.tsx +++ b/src/IconOnDeviceTrainingSharpFilled.tsx @@ -8,4 +8,4 @@ const IconOnDeviceTrainingSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconOnDeviceTrainingSharpFilled as default } +export default IconOnDeviceTrainingSharpFilled diff --git a/src/IconOnHubDeviceOutlined.tsx b/src/IconOnHubDeviceOutlined.tsx index dc709d1c2..7ecaa8ca4 100644 --- a/src/IconOnHubDeviceOutlined.tsx +++ b/src/IconOnHubDeviceOutlined.tsx @@ -8,4 +8,4 @@ const IconOnHubDeviceOutlined: React.FC = ({ ...props }) => ( ) -export { IconOnHubDeviceOutlined as default } +export default IconOnHubDeviceOutlined diff --git a/src/IconOnHubDeviceOutlinedFilled.tsx b/src/IconOnHubDeviceOutlinedFilled.tsx index c445848a3..c734b46d6 100644 --- a/src/IconOnHubDeviceOutlinedFilled.tsx +++ b/src/IconOnHubDeviceOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconOnHubDeviceOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconOnHubDeviceOutlinedFilled as default } +export default IconOnHubDeviceOutlinedFilled diff --git a/src/IconOnHubDeviceRounded.tsx b/src/IconOnHubDeviceRounded.tsx index 3c94651c5..e7b3d38ce 100644 --- a/src/IconOnHubDeviceRounded.tsx +++ b/src/IconOnHubDeviceRounded.tsx @@ -8,4 +8,4 @@ const IconOnHubDeviceRounded: React.FC = ({ ...props }) => ( ) -export { IconOnHubDeviceRounded as default } +export default IconOnHubDeviceRounded diff --git a/src/IconOnHubDeviceRoundedFilled.tsx b/src/IconOnHubDeviceRoundedFilled.tsx index 42408b04f..271d7bf60 100644 --- a/src/IconOnHubDeviceRoundedFilled.tsx +++ b/src/IconOnHubDeviceRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconOnHubDeviceRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconOnHubDeviceRoundedFilled as default } +export default IconOnHubDeviceRoundedFilled diff --git a/src/IconOnHubDeviceSharp.tsx b/src/IconOnHubDeviceSharp.tsx index c9e6be18b..b0f7a9f31 100644 --- a/src/IconOnHubDeviceSharp.tsx +++ b/src/IconOnHubDeviceSharp.tsx @@ -8,4 +8,4 @@ const IconOnHubDeviceSharp: React.FC = ({ ...props }) => ( ) -export { IconOnHubDeviceSharp as default } +export default IconOnHubDeviceSharp diff --git a/src/IconOnHubDeviceSharpFilled.tsx b/src/IconOnHubDeviceSharpFilled.tsx index 5618979a8..28804ddc6 100644 --- a/src/IconOnHubDeviceSharpFilled.tsx +++ b/src/IconOnHubDeviceSharpFilled.tsx @@ -8,4 +8,4 @@ const IconOnHubDeviceSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconOnHubDeviceSharpFilled as default } +export default IconOnHubDeviceSharpFilled diff --git a/src/IconOncologyOutlined.tsx b/src/IconOncologyOutlined.tsx index 4c5ff67d8..ed958a1cd 100644 --- a/src/IconOncologyOutlined.tsx +++ b/src/IconOncologyOutlined.tsx @@ -8,4 +8,4 @@ const IconOncologyOutlined: React.FC = ({ ...props }) => ( ) -export { IconOncologyOutlined as default } +export default IconOncologyOutlined diff --git a/src/IconOncologyOutlinedFilled.tsx b/src/IconOncologyOutlinedFilled.tsx index 5b997b2c4..bb865f40d 100644 --- a/src/IconOncologyOutlinedFilled.tsx +++ b/src/IconOncologyOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconOncologyOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconOncologyOutlinedFilled as default } +export default IconOncologyOutlinedFilled diff --git a/src/IconOncologyRounded.tsx b/src/IconOncologyRounded.tsx index da2367591..0b8aacc2b 100644 --- a/src/IconOncologyRounded.tsx +++ b/src/IconOncologyRounded.tsx @@ -8,4 +8,4 @@ const IconOncologyRounded: React.FC = ({ ...props }) => ( ) -export { IconOncologyRounded as default } +export default IconOncologyRounded diff --git a/src/IconOncologyRoundedFilled.tsx b/src/IconOncologyRoundedFilled.tsx index 1a251e7bb..6c557632a 100644 --- a/src/IconOncologyRoundedFilled.tsx +++ b/src/IconOncologyRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconOncologyRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconOncologyRoundedFilled as default } +export default IconOncologyRoundedFilled diff --git a/src/IconOncologySharp.tsx b/src/IconOncologySharp.tsx index 7ca5c7d59..8eedb142d 100644 --- a/src/IconOncologySharp.tsx +++ b/src/IconOncologySharp.tsx @@ -8,4 +8,4 @@ const IconOncologySharp: React.FC = ({ ...props }) => ( ) -export { IconOncologySharp as default } +export default IconOncologySharp diff --git a/src/IconOncologySharpFilled.tsx b/src/IconOncologySharpFilled.tsx index 97ae0a605..64ffdc018 100644 --- a/src/IconOncologySharpFilled.tsx +++ b/src/IconOncologySharpFilled.tsx @@ -8,4 +8,4 @@ const IconOncologySharpFilled: React.FC = ({ ...props }) => ( ) -export { IconOncologySharpFilled as default } +export default IconOncologySharpFilled diff --git a/src/IconOnlinePredictionOutlined.tsx b/src/IconOnlinePredictionOutlined.tsx index 169f4b00e..8210f8652 100644 --- a/src/IconOnlinePredictionOutlined.tsx +++ b/src/IconOnlinePredictionOutlined.tsx @@ -8,4 +8,4 @@ const IconOnlinePredictionOutlined: React.FC = ({ ...props }) => ( ) -export { IconOnlinePredictionOutlined as default } +export default IconOnlinePredictionOutlined diff --git a/src/IconOnlinePredictionOutlinedFilled.tsx b/src/IconOnlinePredictionOutlinedFilled.tsx index 4552765e1..88ed13ec4 100644 --- a/src/IconOnlinePredictionOutlinedFilled.tsx +++ b/src/IconOnlinePredictionOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconOnlinePredictionOutlinedFilled: React.FC = ({ ) -export { IconOnlinePredictionOutlinedFilled as default } +export default IconOnlinePredictionOutlinedFilled diff --git a/src/IconOnlinePredictionRounded.tsx b/src/IconOnlinePredictionRounded.tsx index 67b666bcd..b4345f9f7 100644 --- a/src/IconOnlinePredictionRounded.tsx +++ b/src/IconOnlinePredictionRounded.tsx @@ -8,4 +8,4 @@ const IconOnlinePredictionRounded: React.FC = ({ ...props }) => ( ) -export { IconOnlinePredictionRounded as default } +export default IconOnlinePredictionRounded diff --git a/src/IconOnlinePredictionRoundedFilled.tsx b/src/IconOnlinePredictionRoundedFilled.tsx index b3141e0e2..8aa60dfaa 100644 --- a/src/IconOnlinePredictionRoundedFilled.tsx +++ b/src/IconOnlinePredictionRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconOnlinePredictionRoundedFilled: React.FC = ({ ) -export { IconOnlinePredictionRoundedFilled as default } +export default IconOnlinePredictionRoundedFilled diff --git a/src/IconOnlinePredictionSharp.tsx b/src/IconOnlinePredictionSharp.tsx index 790a7ea4e..aa1ec6d8b 100644 --- a/src/IconOnlinePredictionSharp.tsx +++ b/src/IconOnlinePredictionSharp.tsx @@ -8,4 +8,4 @@ const IconOnlinePredictionSharp: React.FC = ({ ...props }) => ( ) -export { IconOnlinePredictionSharp as default } +export default IconOnlinePredictionSharp diff --git a/src/IconOnlinePredictionSharpFilled.tsx b/src/IconOnlinePredictionSharpFilled.tsx index 64b6c8729..11027d832 100644 --- a/src/IconOnlinePredictionSharpFilled.tsx +++ b/src/IconOnlinePredictionSharpFilled.tsx @@ -8,4 +8,4 @@ const IconOnlinePredictionSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconOnlinePredictionSharpFilled as default } +export default IconOnlinePredictionSharpFilled diff --git a/src/IconOnsenOutlined.tsx b/src/IconOnsenOutlined.tsx index 1a8f576a1..bbf80691c 100644 --- a/src/IconOnsenOutlined.tsx +++ b/src/IconOnsenOutlined.tsx @@ -8,4 +8,4 @@ const IconOnsenOutlined: React.FC = ({ ...props }) => ( ) -export { IconOnsenOutlined as default } +export default IconOnsenOutlined diff --git a/src/IconOnsenOutlinedFilled.tsx b/src/IconOnsenOutlinedFilled.tsx index 206413fd5..f2e7c0a00 100644 --- a/src/IconOnsenOutlinedFilled.tsx +++ b/src/IconOnsenOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconOnsenOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconOnsenOutlinedFilled as default } +export default IconOnsenOutlinedFilled diff --git a/src/IconOnsenRounded.tsx b/src/IconOnsenRounded.tsx index 2c0bdebc1..3a913749d 100644 --- a/src/IconOnsenRounded.tsx +++ b/src/IconOnsenRounded.tsx @@ -8,4 +8,4 @@ const IconOnsenRounded: React.FC = ({ ...props }) => ( ) -export { IconOnsenRounded as default } +export default IconOnsenRounded diff --git a/src/IconOnsenRoundedFilled.tsx b/src/IconOnsenRoundedFilled.tsx index 92cf8864f..bb5198880 100644 --- a/src/IconOnsenRoundedFilled.tsx +++ b/src/IconOnsenRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconOnsenRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconOnsenRoundedFilled as default } +export default IconOnsenRoundedFilled diff --git a/src/IconOnsenSharp.tsx b/src/IconOnsenSharp.tsx index a232d417c..812ee8314 100644 --- a/src/IconOnsenSharp.tsx +++ b/src/IconOnsenSharp.tsx @@ -8,4 +8,4 @@ const IconOnsenSharp: React.FC = ({ ...props }) => ( ) -export { IconOnsenSharp as default } +export default IconOnsenSharp diff --git a/src/IconOnsenSharpFilled.tsx b/src/IconOnsenSharpFilled.tsx index fcfaa8d98..2b832911b 100644 --- a/src/IconOnsenSharpFilled.tsx +++ b/src/IconOnsenSharpFilled.tsx @@ -8,4 +8,4 @@ const IconOnsenSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconOnsenSharpFilled as default } +export default IconOnsenSharpFilled diff --git a/src/IconOpacityOutlined.tsx b/src/IconOpacityOutlined.tsx index baa80c188..c6a6a7ea9 100644 --- a/src/IconOpacityOutlined.tsx +++ b/src/IconOpacityOutlined.tsx @@ -8,4 +8,4 @@ const IconOpacityOutlined: React.FC = ({ ...props }) => ( ) -export { IconOpacityOutlined as default } +export default IconOpacityOutlined diff --git a/src/IconOpacityOutlinedFilled.tsx b/src/IconOpacityOutlinedFilled.tsx index 78374b8a1..551d9572d 100644 --- a/src/IconOpacityOutlinedFilled.tsx +++ b/src/IconOpacityOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconOpacityOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconOpacityOutlinedFilled as default } +export default IconOpacityOutlinedFilled diff --git a/src/IconOpacityRounded.tsx b/src/IconOpacityRounded.tsx index e1e906e43..a22694959 100644 --- a/src/IconOpacityRounded.tsx +++ b/src/IconOpacityRounded.tsx @@ -8,4 +8,4 @@ const IconOpacityRounded: React.FC = ({ ...props }) => ( ) -export { IconOpacityRounded as default } +export default IconOpacityRounded diff --git a/src/IconOpacityRoundedFilled.tsx b/src/IconOpacityRoundedFilled.tsx index 28f89c98e..3b3016773 100644 --- a/src/IconOpacityRoundedFilled.tsx +++ b/src/IconOpacityRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconOpacityRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconOpacityRoundedFilled as default } +export default IconOpacityRoundedFilled diff --git a/src/IconOpacitySharp.tsx b/src/IconOpacitySharp.tsx index 22e88c554..b54a1edf9 100644 --- a/src/IconOpacitySharp.tsx +++ b/src/IconOpacitySharp.tsx @@ -8,4 +8,4 @@ const IconOpacitySharp: React.FC = ({ ...props }) => ( ) -export { IconOpacitySharp as default } +export default IconOpacitySharp diff --git a/src/IconOpacitySharpFilled.tsx b/src/IconOpacitySharpFilled.tsx index b0190b767..127b290a9 100644 --- a/src/IconOpacitySharpFilled.tsx +++ b/src/IconOpacitySharpFilled.tsx @@ -8,4 +8,4 @@ const IconOpacitySharpFilled: React.FC = ({ ...props }) => ( ) -export { IconOpacitySharpFilled as default } +export default IconOpacitySharpFilled diff --git a/src/IconOpenInBrowserOutlined.tsx b/src/IconOpenInBrowserOutlined.tsx index fc5168ad3..c5d4a2556 100644 --- a/src/IconOpenInBrowserOutlined.tsx +++ b/src/IconOpenInBrowserOutlined.tsx @@ -8,4 +8,4 @@ const IconOpenInBrowserOutlined: React.FC = ({ ...props }) => ( ) -export { IconOpenInBrowserOutlined as default } +export default IconOpenInBrowserOutlined diff --git a/src/IconOpenInBrowserOutlinedFilled.tsx b/src/IconOpenInBrowserOutlinedFilled.tsx index cce115f69..0bde35411 100644 --- a/src/IconOpenInBrowserOutlinedFilled.tsx +++ b/src/IconOpenInBrowserOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconOpenInBrowserOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconOpenInBrowserOutlinedFilled as default } +export default IconOpenInBrowserOutlinedFilled diff --git a/src/IconOpenInBrowserRounded.tsx b/src/IconOpenInBrowserRounded.tsx index e836369e5..3488f53c6 100644 --- a/src/IconOpenInBrowserRounded.tsx +++ b/src/IconOpenInBrowserRounded.tsx @@ -8,4 +8,4 @@ const IconOpenInBrowserRounded: React.FC = ({ ...props }) => ( ) -export { IconOpenInBrowserRounded as default } +export default IconOpenInBrowserRounded diff --git a/src/IconOpenInBrowserRoundedFilled.tsx b/src/IconOpenInBrowserRoundedFilled.tsx index 5cb67c3c3..97dd7f896 100644 --- a/src/IconOpenInBrowserRoundedFilled.tsx +++ b/src/IconOpenInBrowserRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconOpenInBrowserRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconOpenInBrowserRoundedFilled as default } +export default IconOpenInBrowserRoundedFilled diff --git a/src/IconOpenInBrowserSharp.tsx b/src/IconOpenInBrowserSharp.tsx index 55b55841f..cc0566393 100644 --- a/src/IconOpenInBrowserSharp.tsx +++ b/src/IconOpenInBrowserSharp.tsx @@ -8,4 +8,4 @@ const IconOpenInBrowserSharp: React.FC = ({ ...props }) => ( ) -export { IconOpenInBrowserSharp as default } +export default IconOpenInBrowserSharp diff --git a/src/IconOpenInBrowserSharpFilled.tsx b/src/IconOpenInBrowserSharpFilled.tsx index f0d9927ea..d29cf8c75 100644 --- a/src/IconOpenInBrowserSharpFilled.tsx +++ b/src/IconOpenInBrowserSharpFilled.tsx @@ -8,4 +8,4 @@ const IconOpenInBrowserSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconOpenInBrowserSharpFilled as default } +export default IconOpenInBrowserSharpFilled diff --git a/src/IconOpenInFullOutlined.tsx b/src/IconOpenInFullOutlined.tsx index 2c7bdc05c..c525dc87c 100644 --- a/src/IconOpenInFullOutlined.tsx +++ b/src/IconOpenInFullOutlined.tsx @@ -8,4 +8,4 @@ const IconOpenInFullOutlined: React.FC = ({ ...props }) => ( ) -export { IconOpenInFullOutlined as default } +export default IconOpenInFullOutlined diff --git a/src/IconOpenInFullOutlinedFilled.tsx b/src/IconOpenInFullOutlinedFilled.tsx index 1f139edd7..96e949b4f 100644 --- a/src/IconOpenInFullOutlinedFilled.tsx +++ b/src/IconOpenInFullOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconOpenInFullOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconOpenInFullOutlinedFilled as default } +export default IconOpenInFullOutlinedFilled diff --git a/src/IconOpenInFullRounded.tsx b/src/IconOpenInFullRounded.tsx index 3e4f1371c..4d08751a0 100644 --- a/src/IconOpenInFullRounded.tsx +++ b/src/IconOpenInFullRounded.tsx @@ -8,4 +8,4 @@ const IconOpenInFullRounded: React.FC = ({ ...props }) => ( ) -export { IconOpenInFullRounded as default } +export default IconOpenInFullRounded diff --git a/src/IconOpenInFullRoundedFilled.tsx b/src/IconOpenInFullRoundedFilled.tsx index 0f91535ef..8847230cc 100644 --- a/src/IconOpenInFullRoundedFilled.tsx +++ b/src/IconOpenInFullRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconOpenInFullRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconOpenInFullRoundedFilled as default } +export default IconOpenInFullRoundedFilled diff --git a/src/IconOpenInFullSharp.tsx b/src/IconOpenInFullSharp.tsx index 124533b62..cc1bd0320 100644 --- a/src/IconOpenInFullSharp.tsx +++ b/src/IconOpenInFullSharp.tsx @@ -8,4 +8,4 @@ const IconOpenInFullSharp: React.FC = ({ ...props }) => ( ) -export { IconOpenInFullSharp as default } +export default IconOpenInFullSharp diff --git a/src/IconOpenInFullSharpFilled.tsx b/src/IconOpenInFullSharpFilled.tsx index d7b1dbe37..38a1f6b54 100644 --- a/src/IconOpenInFullSharpFilled.tsx +++ b/src/IconOpenInFullSharpFilled.tsx @@ -8,4 +8,4 @@ const IconOpenInFullSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconOpenInFullSharpFilled as default } +export default IconOpenInFullSharpFilled diff --git a/src/IconOpenInNewDownOutlined.tsx b/src/IconOpenInNewDownOutlined.tsx index 8b2323a52..799202fc1 100644 --- a/src/IconOpenInNewDownOutlined.tsx +++ b/src/IconOpenInNewDownOutlined.tsx @@ -8,4 +8,4 @@ const IconOpenInNewDownOutlined: React.FC = ({ ...props }) => ( ) -export { IconOpenInNewDownOutlined as default } +export default IconOpenInNewDownOutlined diff --git a/src/IconOpenInNewDownOutlinedFilled.tsx b/src/IconOpenInNewDownOutlinedFilled.tsx index 4cc65b92e..a6643e4fc 100644 --- a/src/IconOpenInNewDownOutlinedFilled.tsx +++ b/src/IconOpenInNewDownOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconOpenInNewDownOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconOpenInNewDownOutlinedFilled as default } +export default IconOpenInNewDownOutlinedFilled diff --git a/src/IconOpenInNewDownRounded.tsx b/src/IconOpenInNewDownRounded.tsx index c437c58e9..e1846e5db 100644 --- a/src/IconOpenInNewDownRounded.tsx +++ b/src/IconOpenInNewDownRounded.tsx @@ -8,4 +8,4 @@ const IconOpenInNewDownRounded: React.FC = ({ ...props }) => ( ) -export { IconOpenInNewDownRounded as default } +export default IconOpenInNewDownRounded diff --git a/src/IconOpenInNewDownRoundedFilled.tsx b/src/IconOpenInNewDownRoundedFilled.tsx index a7b4f0840..9ec7a5f24 100644 --- a/src/IconOpenInNewDownRoundedFilled.tsx +++ b/src/IconOpenInNewDownRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconOpenInNewDownRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconOpenInNewDownRoundedFilled as default } +export default IconOpenInNewDownRoundedFilled diff --git a/src/IconOpenInNewDownSharp.tsx b/src/IconOpenInNewDownSharp.tsx index 7ef755a34..6a62e40ca 100644 --- a/src/IconOpenInNewDownSharp.tsx +++ b/src/IconOpenInNewDownSharp.tsx @@ -8,4 +8,4 @@ const IconOpenInNewDownSharp: React.FC = ({ ...props }) => ( ) -export { IconOpenInNewDownSharp as default } +export default IconOpenInNewDownSharp diff --git a/src/IconOpenInNewDownSharpFilled.tsx b/src/IconOpenInNewDownSharpFilled.tsx index b27d040f1..349e16527 100644 --- a/src/IconOpenInNewDownSharpFilled.tsx +++ b/src/IconOpenInNewDownSharpFilled.tsx @@ -8,4 +8,4 @@ const IconOpenInNewDownSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconOpenInNewDownSharpFilled as default } +export default IconOpenInNewDownSharpFilled diff --git a/src/IconOpenInNewOffOutlined.tsx b/src/IconOpenInNewOffOutlined.tsx index 5eb492e58..b4ee8449a 100644 --- a/src/IconOpenInNewOffOutlined.tsx +++ b/src/IconOpenInNewOffOutlined.tsx @@ -8,4 +8,4 @@ const IconOpenInNewOffOutlined: React.FC = ({ ...props }) => ( ) -export { IconOpenInNewOffOutlined as default } +export default IconOpenInNewOffOutlined diff --git a/src/IconOpenInNewOffOutlinedFilled.tsx b/src/IconOpenInNewOffOutlinedFilled.tsx index 3e5ece2a5..6374e5779 100644 --- a/src/IconOpenInNewOffOutlinedFilled.tsx +++ b/src/IconOpenInNewOffOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconOpenInNewOffOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconOpenInNewOffOutlinedFilled as default } +export default IconOpenInNewOffOutlinedFilled diff --git a/src/IconOpenInNewOffRounded.tsx b/src/IconOpenInNewOffRounded.tsx index 435aa41c3..4a539a9cb 100644 --- a/src/IconOpenInNewOffRounded.tsx +++ b/src/IconOpenInNewOffRounded.tsx @@ -8,4 +8,4 @@ const IconOpenInNewOffRounded: React.FC = ({ ...props }) => ( ) -export { IconOpenInNewOffRounded as default } +export default IconOpenInNewOffRounded diff --git a/src/IconOpenInNewOffRoundedFilled.tsx b/src/IconOpenInNewOffRoundedFilled.tsx index 8fca9661a..03499aff2 100644 --- a/src/IconOpenInNewOffRoundedFilled.tsx +++ b/src/IconOpenInNewOffRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconOpenInNewOffRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconOpenInNewOffRoundedFilled as default } +export default IconOpenInNewOffRoundedFilled diff --git a/src/IconOpenInNewOffSharp.tsx b/src/IconOpenInNewOffSharp.tsx index 8787c3bb4..c2bcc300b 100644 --- a/src/IconOpenInNewOffSharp.tsx +++ b/src/IconOpenInNewOffSharp.tsx @@ -8,4 +8,4 @@ const IconOpenInNewOffSharp: React.FC = ({ ...props }) => ( ) -export { IconOpenInNewOffSharp as default } +export default IconOpenInNewOffSharp diff --git a/src/IconOpenInNewOffSharpFilled.tsx b/src/IconOpenInNewOffSharpFilled.tsx index f6e7f71ee..797589ba4 100644 --- a/src/IconOpenInNewOffSharpFilled.tsx +++ b/src/IconOpenInNewOffSharpFilled.tsx @@ -8,4 +8,4 @@ const IconOpenInNewOffSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconOpenInNewOffSharpFilled as default } +export default IconOpenInNewOffSharpFilled diff --git a/src/IconOpenInNewOutlined.tsx b/src/IconOpenInNewOutlined.tsx index 0d32314ea..bcdf8382e 100644 --- a/src/IconOpenInNewOutlined.tsx +++ b/src/IconOpenInNewOutlined.tsx @@ -8,4 +8,4 @@ const IconOpenInNewOutlined: React.FC = ({ ...props }) => ( ) -export { IconOpenInNewOutlined as default } +export default IconOpenInNewOutlined diff --git a/src/IconOpenInNewOutlinedFilled.tsx b/src/IconOpenInNewOutlinedFilled.tsx index 758ffca89..66807351a 100644 --- a/src/IconOpenInNewOutlinedFilled.tsx +++ b/src/IconOpenInNewOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconOpenInNewOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconOpenInNewOutlinedFilled as default } +export default IconOpenInNewOutlinedFilled diff --git a/src/IconOpenInNewRounded.tsx b/src/IconOpenInNewRounded.tsx index b7708007c..414edc7cc 100644 --- a/src/IconOpenInNewRounded.tsx +++ b/src/IconOpenInNewRounded.tsx @@ -8,4 +8,4 @@ const IconOpenInNewRounded: React.FC = ({ ...props }) => ( ) -export { IconOpenInNewRounded as default } +export default IconOpenInNewRounded diff --git a/src/IconOpenInNewRoundedFilled.tsx b/src/IconOpenInNewRoundedFilled.tsx index 874e54613..ab6dc9ac2 100644 --- a/src/IconOpenInNewRoundedFilled.tsx +++ b/src/IconOpenInNewRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconOpenInNewRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconOpenInNewRoundedFilled as default } +export default IconOpenInNewRoundedFilled diff --git a/src/IconOpenInNewSharp.tsx b/src/IconOpenInNewSharp.tsx index a6cf5a9b8..12dea8143 100644 --- a/src/IconOpenInNewSharp.tsx +++ b/src/IconOpenInNewSharp.tsx @@ -8,4 +8,4 @@ const IconOpenInNewSharp: React.FC = ({ ...props }) => ( ) -export { IconOpenInNewSharp as default } +export default IconOpenInNewSharp diff --git a/src/IconOpenInNewSharpFilled.tsx b/src/IconOpenInNewSharpFilled.tsx index 6d478b406..aad224e73 100644 --- a/src/IconOpenInNewSharpFilled.tsx +++ b/src/IconOpenInNewSharpFilled.tsx @@ -8,4 +8,4 @@ const IconOpenInNewSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconOpenInNewSharpFilled as default } +export default IconOpenInNewSharpFilled diff --git a/src/IconOpenInPhoneOutlined.tsx b/src/IconOpenInPhoneOutlined.tsx index b72a25ca7..3872db289 100644 --- a/src/IconOpenInPhoneOutlined.tsx +++ b/src/IconOpenInPhoneOutlined.tsx @@ -8,4 +8,4 @@ const IconOpenInPhoneOutlined: React.FC = ({ ...props }) => ( ) -export { IconOpenInPhoneOutlined as default } +export default IconOpenInPhoneOutlined diff --git a/src/IconOpenInPhoneOutlinedFilled.tsx b/src/IconOpenInPhoneOutlinedFilled.tsx index 8759de3da..c68a1da81 100644 --- a/src/IconOpenInPhoneOutlinedFilled.tsx +++ b/src/IconOpenInPhoneOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconOpenInPhoneOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconOpenInPhoneOutlinedFilled as default } +export default IconOpenInPhoneOutlinedFilled diff --git a/src/IconOpenInPhoneRounded.tsx b/src/IconOpenInPhoneRounded.tsx index 35d459a51..0598a4099 100644 --- a/src/IconOpenInPhoneRounded.tsx +++ b/src/IconOpenInPhoneRounded.tsx @@ -8,4 +8,4 @@ const IconOpenInPhoneRounded: React.FC = ({ ...props }) => ( ) -export { IconOpenInPhoneRounded as default } +export default IconOpenInPhoneRounded diff --git a/src/IconOpenInPhoneRoundedFilled.tsx b/src/IconOpenInPhoneRoundedFilled.tsx index bbe6f32e0..e38803075 100644 --- a/src/IconOpenInPhoneRoundedFilled.tsx +++ b/src/IconOpenInPhoneRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconOpenInPhoneRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconOpenInPhoneRoundedFilled as default } +export default IconOpenInPhoneRoundedFilled diff --git a/src/IconOpenInPhoneSharp.tsx b/src/IconOpenInPhoneSharp.tsx index e81c1c478..541b8515b 100644 --- a/src/IconOpenInPhoneSharp.tsx +++ b/src/IconOpenInPhoneSharp.tsx @@ -8,4 +8,4 @@ const IconOpenInPhoneSharp: React.FC = ({ ...props }) => ( ) -export { IconOpenInPhoneSharp as default } +export default IconOpenInPhoneSharp diff --git a/src/IconOpenInPhoneSharpFilled.tsx b/src/IconOpenInPhoneSharpFilled.tsx index 377b834e2..c9e394b09 100644 --- a/src/IconOpenInPhoneSharpFilled.tsx +++ b/src/IconOpenInPhoneSharpFilled.tsx @@ -8,4 +8,4 @@ const IconOpenInPhoneSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconOpenInPhoneSharpFilled as default } +export default IconOpenInPhoneSharpFilled diff --git a/src/IconOpenJamOutlined.tsx b/src/IconOpenJamOutlined.tsx index dfc338273..d00989a43 100644 --- a/src/IconOpenJamOutlined.tsx +++ b/src/IconOpenJamOutlined.tsx @@ -8,4 +8,4 @@ const IconOpenJamOutlined: React.FC = ({ ...props }) => ( ) -export { IconOpenJamOutlined as default } +export default IconOpenJamOutlined diff --git a/src/IconOpenJamOutlinedFilled.tsx b/src/IconOpenJamOutlinedFilled.tsx index 89e91b77f..2bb190325 100644 --- a/src/IconOpenJamOutlinedFilled.tsx +++ b/src/IconOpenJamOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconOpenJamOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconOpenJamOutlinedFilled as default } +export default IconOpenJamOutlinedFilled diff --git a/src/IconOpenJamRounded.tsx b/src/IconOpenJamRounded.tsx index eb6c9da05..a38fbafd7 100644 --- a/src/IconOpenJamRounded.tsx +++ b/src/IconOpenJamRounded.tsx @@ -8,4 +8,4 @@ const IconOpenJamRounded: React.FC = ({ ...props }) => ( ) -export { IconOpenJamRounded as default } +export default IconOpenJamRounded diff --git a/src/IconOpenJamRoundedFilled.tsx b/src/IconOpenJamRoundedFilled.tsx index 4786fb2d7..31588c6c8 100644 --- a/src/IconOpenJamRoundedFilled.tsx +++ b/src/IconOpenJamRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconOpenJamRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconOpenJamRoundedFilled as default } +export default IconOpenJamRoundedFilled diff --git a/src/IconOpenJamSharp.tsx b/src/IconOpenJamSharp.tsx index bfbc91f3a..3c309cbcd 100644 --- a/src/IconOpenJamSharp.tsx +++ b/src/IconOpenJamSharp.tsx @@ -8,4 +8,4 @@ const IconOpenJamSharp: React.FC = ({ ...props }) => ( ) -export { IconOpenJamSharp as default } +export default IconOpenJamSharp diff --git a/src/IconOpenJamSharpFilled.tsx b/src/IconOpenJamSharpFilled.tsx index 35c7aebca..74ed71108 100644 --- a/src/IconOpenJamSharpFilled.tsx +++ b/src/IconOpenJamSharpFilled.tsx @@ -8,4 +8,4 @@ const IconOpenJamSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconOpenJamSharpFilled as default } +export default IconOpenJamSharpFilled diff --git a/src/IconOpenRunOutlined.tsx b/src/IconOpenRunOutlined.tsx index eb5038c17..d1fdbd562 100644 --- a/src/IconOpenRunOutlined.tsx +++ b/src/IconOpenRunOutlined.tsx @@ -8,4 +8,4 @@ const IconOpenRunOutlined: React.FC = ({ ...props }) => ( ) -export { IconOpenRunOutlined as default } +export default IconOpenRunOutlined diff --git a/src/IconOpenRunOutlinedFilled.tsx b/src/IconOpenRunOutlinedFilled.tsx index 4fc7c2304..d8dadcc3b 100644 --- a/src/IconOpenRunOutlinedFilled.tsx +++ b/src/IconOpenRunOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconOpenRunOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconOpenRunOutlinedFilled as default } +export default IconOpenRunOutlinedFilled diff --git a/src/IconOpenRunRounded.tsx b/src/IconOpenRunRounded.tsx index 5a3f14591..8befc25ed 100644 --- a/src/IconOpenRunRounded.tsx +++ b/src/IconOpenRunRounded.tsx @@ -8,4 +8,4 @@ const IconOpenRunRounded: React.FC = ({ ...props }) => ( ) -export { IconOpenRunRounded as default } +export default IconOpenRunRounded diff --git a/src/IconOpenRunRoundedFilled.tsx b/src/IconOpenRunRoundedFilled.tsx index bdb9fefc0..4066b29db 100644 --- a/src/IconOpenRunRoundedFilled.tsx +++ b/src/IconOpenRunRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconOpenRunRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconOpenRunRoundedFilled as default } +export default IconOpenRunRoundedFilled diff --git a/src/IconOpenRunSharp.tsx b/src/IconOpenRunSharp.tsx index 2bcfbda77..d83539a80 100644 --- a/src/IconOpenRunSharp.tsx +++ b/src/IconOpenRunSharp.tsx @@ -8,4 +8,4 @@ const IconOpenRunSharp: React.FC = ({ ...props }) => ( ) -export { IconOpenRunSharp as default } +export default IconOpenRunSharp diff --git a/src/IconOpenRunSharpFilled.tsx b/src/IconOpenRunSharpFilled.tsx index fb603bee0..991fede34 100644 --- a/src/IconOpenRunSharpFilled.tsx +++ b/src/IconOpenRunSharpFilled.tsx @@ -8,4 +8,4 @@ const IconOpenRunSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconOpenRunSharpFilled as default } +export default IconOpenRunSharpFilled diff --git a/src/IconOpenWithOutlined.tsx b/src/IconOpenWithOutlined.tsx index e45170250..3fc44b399 100644 --- a/src/IconOpenWithOutlined.tsx +++ b/src/IconOpenWithOutlined.tsx @@ -8,4 +8,4 @@ const IconOpenWithOutlined: React.FC = ({ ...props }) => ( ) -export { IconOpenWithOutlined as default } +export default IconOpenWithOutlined diff --git a/src/IconOpenWithOutlinedFilled.tsx b/src/IconOpenWithOutlinedFilled.tsx index 26b6f3554..3a172c0c0 100644 --- a/src/IconOpenWithOutlinedFilled.tsx +++ b/src/IconOpenWithOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconOpenWithOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconOpenWithOutlinedFilled as default } +export default IconOpenWithOutlinedFilled diff --git a/src/IconOpenWithRounded.tsx b/src/IconOpenWithRounded.tsx index fa4eca060..cc5eea5ad 100644 --- a/src/IconOpenWithRounded.tsx +++ b/src/IconOpenWithRounded.tsx @@ -8,4 +8,4 @@ const IconOpenWithRounded: React.FC = ({ ...props }) => ( ) -export { IconOpenWithRounded as default } +export default IconOpenWithRounded diff --git a/src/IconOpenWithRoundedFilled.tsx b/src/IconOpenWithRoundedFilled.tsx index 52ca8fa8b..cab6396e7 100644 --- a/src/IconOpenWithRoundedFilled.tsx +++ b/src/IconOpenWithRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconOpenWithRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconOpenWithRoundedFilled as default } +export default IconOpenWithRoundedFilled diff --git a/src/IconOpenWithSharp.tsx b/src/IconOpenWithSharp.tsx index 801d5b759..e5cdf2c63 100644 --- a/src/IconOpenWithSharp.tsx +++ b/src/IconOpenWithSharp.tsx @@ -8,4 +8,4 @@ const IconOpenWithSharp: React.FC = ({ ...props }) => ( ) -export { IconOpenWithSharp as default } +export default IconOpenWithSharp diff --git a/src/IconOpenWithSharpFilled.tsx b/src/IconOpenWithSharpFilled.tsx index a638cef12..5d3713967 100644 --- a/src/IconOpenWithSharpFilled.tsx +++ b/src/IconOpenWithSharpFilled.tsx @@ -8,4 +8,4 @@ const IconOpenWithSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconOpenWithSharpFilled as default } +export default IconOpenWithSharpFilled diff --git a/src/IconOphthalmologyOutlined.tsx b/src/IconOphthalmologyOutlined.tsx index 051467120..d88582db7 100644 --- a/src/IconOphthalmologyOutlined.tsx +++ b/src/IconOphthalmologyOutlined.tsx @@ -8,4 +8,4 @@ const IconOphthalmologyOutlined: React.FC = ({ ...props }) => ( ) -export { IconOphthalmologyOutlined as default } +export default IconOphthalmologyOutlined diff --git a/src/IconOphthalmologyOutlinedFilled.tsx b/src/IconOphthalmologyOutlinedFilled.tsx index 6197c7aa0..cf7bdc746 100644 --- a/src/IconOphthalmologyOutlinedFilled.tsx +++ b/src/IconOphthalmologyOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconOphthalmologyOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconOphthalmologyOutlinedFilled as default } +export default IconOphthalmologyOutlinedFilled diff --git a/src/IconOphthalmologyRounded.tsx b/src/IconOphthalmologyRounded.tsx index 7f5916890..d154fc124 100644 --- a/src/IconOphthalmologyRounded.tsx +++ b/src/IconOphthalmologyRounded.tsx @@ -8,4 +8,4 @@ const IconOphthalmologyRounded: React.FC = ({ ...props }) => ( ) -export { IconOphthalmologyRounded as default } +export default IconOphthalmologyRounded diff --git a/src/IconOphthalmologyRoundedFilled.tsx b/src/IconOphthalmologyRoundedFilled.tsx index f5f6cb14c..b488d8e5a 100644 --- a/src/IconOphthalmologyRoundedFilled.tsx +++ b/src/IconOphthalmologyRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconOphthalmologyRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconOphthalmologyRoundedFilled as default } +export default IconOphthalmologyRoundedFilled diff --git a/src/IconOphthalmologySharp.tsx b/src/IconOphthalmologySharp.tsx index 2cc74f4e9..293274afe 100644 --- a/src/IconOphthalmologySharp.tsx +++ b/src/IconOphthalmologySharp.tsx @@ -8,4 +8,4 @@ const IconOphthalmologySharp: React.FC = ({ ...props }) => ( ) -export { IconOphthalmologySharp as default } +export default IconOphthalmologySharp diff --git a/src/IconOphthalmologySharpFilled.tsx b/src/IconOphthalmologySharpFilled.tsx index 0af0ec838..f239f82fb 100644 --- a/src/IconOphthalmologySharpFilled.tsx +++ b/src/IconOphthalmologySharpFilled.tsx @@ -8,4 +8,4 @@ const IconOphthalmologySharpFilled: React.FC = ({ ...props }) => ( ) -export { IconOphthalmologySharpFilled as default } +export default IconOphthalmologySharpFilled diff --git a/src/IconOralDiseaseOutlined.tsx b/src/IconOralDiseaseOutlined.tsx index 8dc91a76e..f5c72c6fb 100644 --- a/src/IconOralDiseaseOutlined.tsx +++ b/src/IconOralDiseaseOutlined.tsx @@ -8,4 +8,4 @@ const IconOralDiseaseOutlined: React.FC = ({ ...props }) => ( ) -export { IconOralDiseaseOutlined as default } +export default IconOralDiseaseOutlined diff --git a/src/IconOralDiseaseOutlinedFilled.tsx b/src/IconOralDiseaseOutlinedFilled.tsx index ea00ef96b..54ebb89ce 100644 --- a/src/IconOralDiseaseOutlinedFilled.tsx +++ b/src/IconOralDiseaseOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconOralDiseaseOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconOralDiseaseOutlinedFilled as default } +export default IconOralDiseaseOutlinedFilled diff --git a/src/IconOralDiseaseRounded.tsx b/src/IconOralDiseaseRounded.tsx index 448c05f13..3e8ab2ac7 100644 --- a/src/IconOralDiseaseRounded.tsx +++ b/src/IconOralDiseaseRounded.tsx @@ -8,4 +8,4 @@ const IconOralDiseaseRounded: React.FC = ({ ...props }) => ( ) -export { IconOralDiseaseRounded as default } +export default IconOralDiseaseRounded diff --git a/src/IconOralDiseaseRoundedFilled.tsx b/src/IconOralDiseaseRoundedFilled.tsx index f046b9d48..124fc3edd 100644 --- a/src/IconOralDiseaseRoundedFilled.tsx +++ b/src/IconOralDiseaseRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconOralDiseaseRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconOralDiseaseRoundedFilled as default } +export default IconOralDiseaseRoundedFilled diff --git a/src/IconOralDiseaseSharp.tsx b/src/IconOralDiseaseSharp.tsx index fabda7b58..d9bf7bb1a 100644 --- a/src/IconOralDiseaseSharp.tsx +++ b/src/IconOralDiseaseSharp.tsx @@ -8,4 +8,4 @@ const IconOralDiseaseSharp: React.FC = ({ ...props }) => ( ) -export { IconOralDiseaseSharp as default } +export default IconOralDiseaseSharp diff --git a/src/IconOralDiseaseSharpFilled.tsx b/src/IconOralDiseaseSharpFilled.tsx index 093fabd1c..d9edb67a2 100644 --- a/src/IconOralDiseaseSharpFilled.tsx +++ b/src/IconOralDiseaseSharpFilled.tsx @@ -8,4 +8,4 @@ const IconOralDiseaseSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconOralDiseaseSharpFilled as default } +export default IconOralDiseaseSharpFilled diff --git a/src/IconOrbitOutlined.tsx b/src/IconOrbitOutlined.tsx index c9cb4a71c..ef10a3628 100644 --- a/src/IconOrbitOutlined.tsx +++ b/src/IconOrbitOutlined.tsx @@ -8,4 +8,4 @@ const IconOrbitOutlined: React.FC = ({ ...props }) => ( ) -export { IconOrbitOutlined as default } +export default IconOrbitOutlined diff --git a/src/IconOrbitOutlinedFilled.tsx b/src/IconOrbitOutlinedFilled.tsx index fdad0a3e6..981ac51d1 100644 --- a/src/IconOrbitOutlinedFilled.tsx +++ b/src/IconOrbitOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconOrbitOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconOrbitOutlinedFilled as default } +export default IconOrbitOutlinedFilled diff --git a/src/IconOrbitRounded.tsx b/src/IconOrbitRounded.tsx index 51ebc91f0..f679c3b48 100644 --- a/src/IconOrbitRounded.tsx +++ b/src/IconOrbitRounded.tsx @@ -8,4 +8,4 @@ const IconOrbitRounded: React.FC = ({ ...props }) => ( ) -export { IconOrbitRounded as default } +export default IconOrbitRounded diff --git a/src/IconOrbitRoundedFilled.tsx b/src/IconOrbitRoundedFilled.tsx index 1a364df32..4d5fdcb35 100644 --- a/src/IconOrbitRoundedFilled.tsx +++ b/src/IconOrbitRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconOrbitRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconOrbitRoundedFilled as default } +export default IconOrbitRoundedFilled diff --git a/src/IconOrbitSharp.tsx b/src/IconOrbitSharp.tsx index e97a10949..f2d489788 100644 --- a/src/IconOrbitSharp.tsx +++ b/src/IconOrbitSharp.tsx @@ -8,4 +8,4 @@ const IconOrbitSharp: React.FC = ({ ...props }) => ( ) -export { IconOrbitSharp as default } +export default IconOrbitSharp diff --git a/src/IconOrbitSharpFilled.tsx b/src/IconOrbitSharpFilled.tsx index 7c1c11800..f75bcc7ae 100644 --- a/src/IconOrbitSharpFilled.tsx +++ b/src/IconOrbitSharpFilled.tsx @@ -8,4 +8,4 @@ const IconOrbitSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconOrbitSharpFilled as default } +export default IconOrbitSharpFilled diff --git a/src/IconOrderApproveOutlined.tsx b/src/IconOrderApproveOutlined.tsx index ccaa35e04..aaaa53e6e 100644 --- a/src/IconOrderApproveOutlined.tsx +++ b/src/IconOrderApproveOutlined.tsx @@ -8,4 +8,4 @@ const IconOrderApproveOutlined: React.FC = ({ ...props }) => ( ) -export { IconOrderApproveOutlined as default } +export default IconOrderApproveOutlined diff --git a/src/IconOrderApproveOutlinedFilled.tsx b/src/IconOrderApproveOutlinedFilled.tsx index 840fcd4c3..8774cd177 100644 --- a/src/IconOrderApproveOutlinedFilled.tsx +++ b/src/IconOrderApproveOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconOrderApproveOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconOrderApproveOutlinedFilled as default } +export default IconOrderApproveOutlinedFilled diff --git a/src/IconOrderApproveRounded.tsx b/src/IconOrderApproveRounded.tsx index 5302d8ffe..c7e01c163 100644 --- a/src/IconOrderApproveRounded.tsx +++ b/src/IconOrderApproveRounded.tsx @@ -8,4 +8,4 @@ const IconOrderApproveRounded: React.FC = ({ ...props }) => ( ) -export { IconOrderApproveRounded as default } +export default IconOrderApproveRounded diff --git a/src/IconOrderApproveRoundedFilled.tsx b/src/IconOrderApproveRoundedFilled.tsx index 4f90251f5..2e5eb5350 100644 --- a/src/IconOrderApproveRoundedFilled.tsx +++ b/src/IconOrderApproveRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconOrderApproveRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconOrderApproveRoundedFilled as default } +export default IconOrderApproveRoundedFilled diff --git a/src/IconOrderApproveSharp.tsx b/src/IconOrderApproveSharp.tsx index 49332b9ec..a09bf8fb3 100644 --- a/src/IconOrderApproveSharp.tsx +++ b/src/IconOrderApproveSharp.tsx @@ -8,4 +8,4 @@ const IconOrderApproveSharp: React.FC = ({ ...props }) => ( ) -export { IconOrderApproveSharp as default } +export default IconOrderApproveSharp diff --git a/src/IconOrderApproveSharpFilled.tsx b/src/IconOrderApproveSharpFilled.tsx index 32e100c76..8b3a34989 100644 --- a/src/IconOrderApproveSharpFilled.tsx +++ b/src/IconOrderApproveSharpFilled.tsx @@ -8,4 +8,4 @@ const IconOrderApproveSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconOrderApproveSharpFilled as default } +export default IconOrderApproveSharpFilled diff --git a/src/IconOrderPlayOutlined.tsx b/src/IconOrderPlayOutlined.tsx index bb1ed13a9..46ef5070b 100644 --- a/src/IconOrderPlayOutlined.tsx +++ b/src/IconOrderPlayOutlined.tsx @@ -8,4 +8,4 @@ const IconOrderPlayOutlined: React.FC = ({ ...props }) => ( ) -export { IconOrderPlayOutlined as default } +export default IconOrderPlayOutlined diff --git a/src/IconOrderPlayOutlinedFilled.tsx b/src/IconOrderPlayOutlinedFilled.tsx index 8d8c82e67..1b7d57fc3 100644 --- a/src/IconOrderPlayOutlinedFilled.tsx +++ b/src/IconOrderPlayOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconOrderPlayOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconOrderPlayOutlinedFilled as default } +export default IconOrderPlayOutlinedFilled diff --git a/src/IconOrderPlayRounded.tsx b/src/IconOrderPlayRounded.tsx index 30de46bbc..3d2c802bb 100644 --- a/src/IconOrderPlayRounded.tsx +++ b/src/IconOrderPlayRounded.tsx @@ -8,4 +8,4 @@ const IconOrderPlayRounded: React.FC = ({ ...props }) => ( ) -export { IconOrderPlayRounded as default } +export default IconOrderPlayRounded diff --git a/src/IconOrderPlayRoundedFilled.tsx b/src/IconOrderPlayRoundedFilled.tsx index 1ae6b6f90..f2cf521a3 100644 --- a/src/IconOrderPlayRoundedFilled.tsx +++ b/src/IconOrderPlayRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconOrderPlayRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconOrderPlayRoundedFilled as default } +export default IconOrderPlayRoundedFilled diff --git a/src/IconOrderPlaySharp.tsx b/src/IconOrderPlaySharp.tsx index 3c06722b5..ac0de7e81 100644 --- a/src/IconOrderPlaySharp.tsx +++ b/src/IconOrderPlaySharp.tsx @@ -8,4 +8,4 @@ const IconOrderPlaySharp: React.FC = ({ ...props }) => ( ) -export { IconOrderPlaySharp as default } +export default IconOrderPlaySharp diff --git a/src/IconOrderPlaySharpFilled.tsx b/src/IconOrderPlaySharpFilled.tsx index aead1466b..cb8ce981c 100644 --- a/src/IconOrderPlaySharpFilled.tsx +++ b/src/IconOrderPlaySharpFilled.tsx @@ -8,4 +8,4 @@ const IconOrderPlaySharpFilled: React.FC = ({ ...props }) => ( ) -export { IconOrderPlaySharpFilled as default } +export default IconOrderPlaySharpFilled diff --git a/src/IconOrdersOutlined.tsx b/src/IconOrdersOutlined.tsx index e9de7aaa3..a984e8c3f 100644 --- a/src/IconOrdersOutlined.tsx +++ b/src/IconOrdersOutlined.tsx @@ -8,4 +8,4 @@ const IconOrdersOutlined: React.FC = ({ ...props }) => ( ) -export { IconOrdersOutlined as default } +export default IconOrdersOutlined diff --git a/src/IconOrdersOutlinedFilled.tsx b/src/IconOrdersOutlinedFilled.tsx index 5a0803e1c..6ba755c4d 100644 --- a/src/IconOrdersOutlinedFilled.tsx +++ b/src/IconOrdersOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconOrdersOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconOrdersOutlinedFilled as default } +export default IconOrdersOutlinedFilled diff --git a/src/IconOrdersRounded.tsx b/src/IconOrdersRounded.tsx index f6180b2fd..fc7e84f41 100644 --- a/src/IconOrdersRounded.tsx +++ b/src/IconOrdersRounded.tsx @@ -8,4 +8,4 @@ const IconOrdersRounded: React.FC = ({ ...props }) => ( ) -export { IconOrdersRounded as default } +export default IconOrdersRounded diff --git a/src/IconOrdersRoundedFilled.tsx b/src/IconOrdersRoundedFilled.tsx index 9289b587e..100862a8b 100644 --- a/src/IconOrdersRoundedFilled.tsx +++ b/src/IconOrdersRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconOrdersRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconOrdersRoundedFilled as default } +export default IconOrdersRoundedFilled diff --git a/src/IconOrdersSharp.tsx b/src/IconOrdersSharp.tsx index eb3b5740c..849341baf 100644 --- a/src/IconOrdersSharp.tsx +++ b/src/IconOrdersSharp.tsx @@ -8,4 +8,4 @@ const IconOrdersSharp: React.FC = ({ ...props }) => ( ) -export { IconOrdersSharp as default } +export default IconOrdersSharp diff --git a/src/IconOrdersSharpFilled.tsx b/src/IconOrdersSharpFilled.tsx index 2f658d177..3ff9a36df 100644 --- a/src/IconOrdersSharpFilled.tsx +++ b/src/IconOrdersSharpFilled.tsx @@ -8,4 +8,4 @@ const IconOrdersSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconOrdersSharpFilled as default } +export default IconOrdersSharpFilled diff --git a/src/IconOrthopedicsOutlined.tsx b/src/IconOrthopedicsOutlined.tsx index 3356613a2..2c4fdf735 100644 --- a/src/IconOrthopedicsOutlined.tsx +++ b/src/IconOrthopedicsOutlined.tsx @@ -8,4 +8,4 @@ const IconOrthopedicsOutlined: React.FC = ({ ...props }) => ( ) -export { IconOrthopedicsOutlined as default } +export default IconOrthopedicsOutlined diff --git a/src/IconOrthopedicsOutlinedFilled.tsx b/src/IconOrthopedicsOutlinedFilled.tsx index 2ded1d634..25d8b979d 100644 --- a/src/IconOrthopedicsOutlinedFilled.tsx +++ b/src/IconOrthopedicsOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconOrthopedicsOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconOrthopedicsOutlinedFilled as default } +export default IconOrthopedicsOutlinedFilled diff --git a/src/IconOrthopedicsRounded.tsx b/src/IconOrthopedicsRounded.tsx index e31f07834..224f1fbf7 100644 --- a/src/IconOrthopedicsRounded.tsx +++ b/src/IconOrthopedicsRounded.tsx @@ -8,4 +8,4 @@ const IconOrthopedicsRounded: React.FC = ({ ...props }) => ( ) -export { IconOrthopedicsRounded as default } +export default IconOrthopedicsRounded diff --git a/src/IconOrthopedicsRoundedFilled.tsx b/src/IconOrthopedicsRoundedFilled.tsx index d3c0b4502..ef3dc1e6e 100644 --- a/src/IconOrthopedicsRoundedFilled.tsx +++ b/src/IconOrthopedicsRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconOrthopedicsRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconOrthopedicsRoundedFilled as default } +export default IconOrthopedicsRoundedFilled diff --git a/src/IconOrthopedicsSharp.tsx b/src/IconOrthopedicsSharp.tsx index 0c6339b37..5159cc470 100644 --- a/src/IconOrthopedicsSharp.tsx +++ b/src/IconOrthopedicsSharp.tsx @@ -8,4 +8,4 @@ const IconOrthopedicsSharp: React.FC = ({ ...props }) => ( ) -export { IconOrthopedicsSharp as default } +export default IconOrthopedicsSharp diff --git a/src/IconOrthopedicsSharpFilled.tsx b/src/IconOrthopedicsSharpFilled.tsx index e030f01b7..a2af78e66 100644 --- a/src/IconOrthopedicsSharpFilled.tsx +++ b/src/IconOrthopedicsSharpFilled.tsx @@ -8,4 +8,4 @@ const IconOrthopedicsSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconOrthopedicsSharpFilled as default } +export default IconOrthopedicsSharpFilled diff --git a/src/IconOtherAdmissionOutlined.tsx b/src/IconOtherAdmissionOutlined.tsx index 8f245a511..6dd727f74 100644 --- a/src/IconOtherAdmissionOutlined.tsx +++ b/src/IconOtherAdmissionOutlined.tsx @@ -8,4 +8,4 @@ const IconOtherAdmissionOutlined: React.FC = ({ ...props }) => ( ) -export { IconOtherAdmissionOutlined as default } +export default IconOtherAdmissionOutlined diff --git a/src/IconOtherAdmissionOutlinedFilled.tsx b/src/IconOtherAdmissionOutlinedFilled.tsx index da6f3ccb4..a9c4efa88 100644 --- a/src/IconOtherAdmissionOutlinedFilled.tsx +++ b/src/IconOtherAdmissionOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconOtherAdmissionOutlinedFilled: React.FC = ({ ) -export { IconOtherAdmissionOutlinedFilled as default } +export default IconOtherAdmissionOutlinedFilled diff --git a/src/IconOtherAdmissionRounded.tsx b/src/IconOtherAdmissionRounded.tsx index 6290c26b8..5605cd077 100644 --- a/src/IconOtherAdmissionRounded.tsx +++ b/src/IconOtherAdmissionRounded.tsx @@ -8,4 +8,4 @@ const IconOtherAdmissionRounded: React.FC = ({ ...props }) => ( ) -export { IconOtherAdmissionRounded as default } +export default IconOtherAdmissionRounded diff --git a/src/IconOtherAdmissionRoundedFilled.tsx b/src/IconOtherAdmissionRoundedFilled.tsx index f6e697264..a6e3a3b55 100644 --- a/src/IconOtherAdmissionRoundedFilled.tsx +++ b/src/IconOtherAdmissionRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconOtherAdmissionRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconOtherAdmissionRoundedFilled as default } +export default IconOtherAdmissionRoundedFilled diff --git a/src/IconOtherAdmissionSharp.tsx b/src/IconOtherAdmissionSharp.tsx index fe2616d14..63a92086f 100644 --- a/src/IconOtherAdmissionSharp.tsx +++ b/src/IconOtherAdmissionSharp.tsx @@ -8,4 +8,4 @@ const IconOtherAdmissionSharp: React.FC = ({ ...props }) => ( ) -export { IconOtherAdmissionSharp as default } +export default IconOtherAdmissionSharp diff --git a/src/IconOtherAdmissionSharpFilled.tsx b/src/IconOtherAdmissionSharpFilled.tsx index 53a88765e..5f479e752 100644 --- a/src/IconOtherAdmissionSharpFilled.tsx +++ b/src/IconOtherAdmissionSharpFilled.tsx @@ -8,4 +8,4 @@ const IconOtherAdmissionSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconOtherAdmissionSharpFilled as default } +export default IconOtherAdmissionSharpFilled diff --git a/src/IconOtherHousesOutlined.tsx b/src/IconOtherHousesOutlined.tsx index 823092139..148584cce 100644 --- a/src/IconOtherHousesOutlined.tsx +++ b/src/IconOtherHousesOutlined.tsx @@ -8,4 +8,4 @@ const IconOtherHousesOutlined: React.FC = ({ ...props }) => ( ) -export { IconOtherHousesOutlined as default } +export default IconOtherHousesOutlined diff --git a/src/IconOtherHousesOutlinedFilled.tsx b/src/IconOtherHousesOutlinedFilled.tsx index 57684505a..bc4ce8ab1 100644 --- a/src/IconOtherHousesOutlinedFilled.tsx +++ b/src/IconOtherHousesOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconOtherHousesOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconOtherHousesOutlinedFilled as default } +export default IconOtherHousesOutlinedFilled diff --git a/src/IconOtherHousesRounded.tsx b/src/IconOtherHousesRounded.tsx index 8d8cbe54a..739aea74f 100644 --- a/src/IconOtherHousesRounded.tsx +++ b/src/IconOtherHousesRounded.tsx @@ -8,4 +8,4 @@ const IconOtherHousesRounded: React.FC = ({ ...props }) => ( ) -export { IconOtherHousesRounded as default } +export default IconOtherHousesRounded diff --git a/src/IconOtherHousesRoundedFilled.tsx b/src/IconOtherHousesRoundedFilled.tsx index a429006ab..cbc5d5d11 100644 --- a/src/IconOtherHousesRoundedFilled.tsx +++ b/src/IconOtherHousesRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconOtherHousesRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconOtherHousesRoundedFilled as default } +export default IconOtherHousesRoundedFilled diff --git a/src/IconOtherHousesSharp.tsx b/src/IconOtherHousesSharp.tsx index 848e4ef16..90dd2024c 100644 --- a/src/IconOtherHousesSharp.tsx +++ b/src/IconOtherHousesSharp.tsx @@ -8,4 +8,4 @@ const IconOtherHousesSharp: React.FC = ({ ...props }) => ( ) -export { IconOtherHousesSharp as default } +export default IconOtherHousesSharp diff --git a/src/IconOtherHousesSharpFilled.tsx b/src/IconOtherHousesSharpFilled.tsx index dfad64f4b..8945290cf 100644 --- a/src/IconOtherHousesSharpFilled.tsx +++ b/src/IconOtherHousesSharpFilled.tsx @@ -8,4 +8,4 @@ const IconOtherHousesSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconOtherHousesSharpFilled as default } +export default IconOtherHousesSharpFilled diff --git a/src/IconOutboundOutlined.tsx b/src/IconOutboundOutlined.tsx index 3c4ec25e1..9def1653d 100644 --- a/src/IconOutboundOutlined.tsx +++ b/src/IconOutboundOutlined.tsx @@ -8,4 +8,4 @@ const IconOutboundOutlined: React.FC = ({ ...props }) => ( ) -export { IconOutboundOutlined as default } +export default IconOutboundOutlined diff --git a/src/IconOutboundOutlinedFilled.tsx b/src/IconOutboundOutlinedFilled.tsx index fcca99b93..6c27b06ea 100644 --- a/src/IconOutboundOutlinedFilled.tsx +++ b/src/IconOutboundOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconOutboundOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconOutboundOutlinedFilled as default } +export default IconOutboundOutlinedFilled diff --git a/src/IconOutboundRounded.tsx b/src/IconOutboundRounded.tsx index 37bd9d145..5bcf244f4 100644 --- a/src/IconOutboundRounded.tsx +++ b/src/IconOutboundRounded.tsx @@ -8,4 +8,4 @@ const IconOutboundRounded: React.FC = ({ ...props }) => ( ) -export { IconOutboundRounded as default } +export default IconOutboundRounded diff --git a/src/IconOutboundRoundedFilled.tsx b/src/IconOutboundRoundedFilled.tsx index 2b04e0419..b7165c938 100644 --- a/src/IconOutboundRoundedFilled.tsx +++ b/src/IconOutboundRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconOutboundRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconOutboundRoundedFilled as default } +export default IconOutboundRoundedFilled diff --git a/src/IconOutboundSharp.tsx b/src/IconOutboundSharp.tsx index c8ed7b2e4..199e926f7 100644 --- a/src/IconOutboundSharp.tsx +++ b/src/IconOutboundSharp.tsx @@ -8,4 +8,4 @@ const IconOutboundSharp: React.FC = ({ ...props }) => ( ) -export { IconOutboundSharp as default } +export default IconOutboundSharp diff --git a/src/IconOutboundSharpFilled.tsx b/src/IconOutboundSharpFilled.tsx index 07b07adbd..b5f80187c 100644 --- a/src/IconOutboundSharpFilled.tsx +++ b/src/IconOutboundSharpFilled.tsx @@ -8,4 +8,4 @@ const IconOutboundSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconOutboundSharpFilled as default } +export default IconOutboundSharpFilled diff --git a/src/IconOutboxAltOutlined.tsx b/src/IconOutboxAltOutlined.tsx index afb188188..0a55993c1 100644 --- a/src/IconOutboxAltOutlined.tsx +++ b/src/IconOutboxAltOutlined.tsx @@ -8,4 +8,4 @@ const IconOutboxAltOutlined: React.FC = ({ ...props }) => ( ) -export { IconOutboxAltOutlined as default } +export default IconOutboxAltOutlined diff --git a/src/IconOutboxAltOutlinedFilled.tsx b/src/IconOutboxAltOutlinedFilled.tsx index aef0271f6..1bb598aeb 100644 --- a/src/IconOutboxAltOutlinedFilled.tsx +++ b/src/IconOutboxAltOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconOutboxAltOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconOutboxAltOutlinedFilled as default } +export default IconOutboxAltOutlinedFilled diff --git a/src/IconOutboxAltRounded.tsx b/src/IconOutboxAltRounded.tsx index 8b2cdc9bd..877022c69 100644 --- a/src/IconOutboxAltRounded.tsx +++ b/src/IconOutboxAltRounded.tsx @@ -8,4 +8,4 @@ const IconOutboxAltRounded: React.FC = ({ ...props }) => ( ) -export { IconOutboxAltRounded as default } +export default IconOutboxAltRounded diff --git a/src/IconOutboxAltRoundedFilled.tsx b/src/IconOutboxAltRoundedFilled.tsx index 39ca9d78c..3b2e3c75e 100644 --- a/src/IconOutboxAltRoundedFilled.tsx +++ b/src/IconOutboxAltRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconOutboxAltRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconOutboxAltRoundedFilled as default } +export default IconOutboxAltRoundedFilled diff --git a/src/IconOutboxAltSharp.tsx b/src/IconOutboxAltSharp.tsx index 3121bc87e..09260a639 100644 --- a/src/IconOutboxAltSharp.tsx +++ b/src/IconOutboxAltSharp.tsx @@ -8,4 +8,4 @@ const IconOutboxAltSharp: React.FC = ({ ...props }) => ( ) -export { IconOutboxAltSharp as default } +export default IconOutboxAltSharp diff --git a/src/IconOutboxAltSharpFilled.tsx b/src/IconOutboxAltSharpFilled.tsx index 03b47f098..44238dbff 100644 --- a/src/IconOutboxAltSharpFilled.tsx +++ b/src/IconOutboxAltSharpFilled.tsx @@ -8,4 +8,4 @@ const IconOutboxAltSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconOutboxAltSharpFilled as default } +export default IconOutboxAltSharpFilled diff --git a/src/IconOutboxOutlined.tsx b/src/IconOutboxOutlined.tsx index 2ede4e74b..86a8a04ea 100644 --- a/src/IconOutboxOutlined.tsx +++ b/src/IconOutboxOutlined.tsx @@ -8,4 +8,4 @@ const IconOutboxOutlined: React.FC = ({ ...props }) => ( ) -export { IconOutboxOutlined as default } +export default IconOutboxOutlined diff --git a/src/IconOutboxOutlinedFilled.tsx b/src/IconOutboxOutlinedFilled.tsx index c347e1392..fe8b30af1 100644 --- a/src/IconOutboxOutlinedFilled.tsx +++ b/src/IconOutboxOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconOutboxOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconOutboxOutlinedFilled as default } +export default IconOutboxOutlinedFilled diff --git a/src/IconOutboxRounded.tsx b/src/IconOutboxRounded.tsx index 70ad4e7f0..a7a748358 100644 --- a/src/IconOutboxRounded.tsx +++ b/src/IconOutboxRounded.tsx @@ -8,4 +8,4 @@ const IconOutboxRounded: React.FC = ({ ...props }) => ( ) -export { IconOutboxRounded as default } +export default IconOutboxRounded diff --git a/src/IconOutboxRoundedFilled.tsx b/src/IconOutboxRoundedFilled.tsx index b565e5aa0..42d2cd14c 100644 --- a/src/IconOutboxRoundedFilled.tsx +++ b/src/IconOutboxRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconOutboxRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconOutboxRoundedFilled as default } +export default IconOutboxRoundedFilled diff --git a/src/IconOutboxSharp.tsx b/src/IconOutboxSharp.tsx index 2536cf855..a6e11f8e1 100644 --- a/src/IconOutboxSharp.tsx +++ b/src/IconOutboxSharp.tsx @@ -8,4 +8,4 @@ const IconOutboxSharp: React.FC = ({ ...props }) => ( ) -export { IconOutboxSharp as default } +export default IconOutboxSharp diff --git a/src/IconOutboxSharpFilled.tsx b/src/IconOutboxSharpFilled.tsx index 53304df0b..53a6e7f3d 100644 --- a/src/IconOutboxSharpFilled.tsx +++ b/src/IconOutboxSharpFilled.tsx @@ -8,4 +8,4 @@ const IconOutboxSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconOutboxSharpFilled as default } +export default IconOutboxSharpFilled diff --git a/src/IconOutdoorGardenOutlined.tsx b/src/IconOutdoorGardenOutlined.tsx index 31d48c67c..3ee00ef4c 100644 --- a/src/IconOutdoorGardenOutlined.tsx +++ b/src/IconOutdoorGardenOutlined.tsx @@ -8,4 +8,4 @@ const IconOutdoorGardenOutlined: React.FC = ({ ...props }) => ( ) -export { IconOutdoorGardenOutlined as default } +export default IconOutdoorGardenOutlined diff --git a/src/IconOutdoorGardenOutlinedFilled.tsx b/src/IconOutdoorGardenOutlinedFilled.tsx index b55a74f26..f00a5c5ef 100644 --- a/src/IconOutdoorGardenOutlinedFilled.tsx +++ b/src/IconOutdoorGardenOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconOutdoorGardenOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconOutdoorGardenOutlinedFilled as default } +export default IconOutdoorGardenOutlinedFilled diff --git a/src/IconOutdoorGardenRounded.tsx b/src/IconOutdoorGardenRounded.tsx index 71cdabf43..a7bae16ef 100644 --- a/src/IconOutdoorGardenRounded.tsx +++ b/src/IconOutdoorGardenRounded.tsx @@ -8,4 +8,4 @@ const IconOutdoorGardenRounded: React.FC = ({ ...props }) => ( ) -export { IconOutdoorGardenRounded as default } +export default IconOutdoorGardenRounded diff --git a/src/IconOutdoorGardenRoundedFilled.tsx b/src/IconOutdoorGardenRoundedFilled.tsx index 0d5517b4e..403eb323f 100644 --- a/src/IconOutdoorGardenRoundedFilled.tsx +++ b/src/IconOutdoorGardenRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconOutdoorGardenRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconOutdoorGardenRoundedFilled as default } +export default IconOutdoorGardenRoundedFilled diff --git a/src/IconOutdoorGardenSharp.tsx b/src/IconOutdoorGardenSharp.tsx index 7fc5cb75c..777ff7a60 100644 --- a/src/IconOutdoorGardenSharp.tsx +++ b/src/IconOutdoorGardenSharp.tsx @@ -8,4 +8,4 @@ const IconOutdoorGardenSharp: React.FC = ({ ...props }) => ( ) -export { IconOutdoorGardenSharp as default } +export default IconOutdoorGardenSharp diff --git a/src/IconOutdoorGardenSharpFilled.tsx b/src/IconOutdoorGardenSharpFilled.tsx index 49b641e2e..fc0a407bc 100644 --- a/src/IconOutdoorGardenSharpFilled.tsx +++ b/src/IconOutdoorGardenSharpFilled.tsx @@ -8,4 +8,4 @@ const IconOutdoorGardenSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconOutdoorGardenSharpFilled as default } +export default IconOutdoorGardenSharpFilled diff --git a/src/IconOutdoorGrillOutlined.tsx b/src/IconOutdoorGrillOutlined.tsx index 43c86f371..8b0a48321 100644 --- a/src/IconOutdoorGrillOutlined.tsx +++ b/src/IconOutdoorGrillOutlined.tsx @@ -8,4 +8,4 @@ const IconOutdoorGrillOutlined: React.FC = ({ ...props }) => ( ) -export { IconOutdoorGrillOutlined as default } +export default IconOutdoorGrillOutlined diff --git a/src/IconOutdoorGrillOutlinedFilled.tsx b/src/IconOutdoorGrillOutlinedFilled.tsx index 95979573b..ba2d793b9 100644 --- a/src/IconOutdoorGrillOutlinedFilled.tsx +++ b/src/IconOutdoorGrillOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconOutdoorGrillOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconOutdoorGrillOutlinedFilled as default } +export default IconOutdoorGrillOutlinedFilled diff --git a/src/IconOutdoorGrillRounded.tsx b/src/IconOutdoorGrillRounded.tsx index 71f21cbc4..5184593ed 100644 --- a/src/IconOutdoorGrillRounded.tsx +++ b/src/IconOutdoorGrillRounded.tsx @@ -8,4 +8,4 @@ const IconOutdoorGrillRounded: React.FC = ({ ...props }) => ( ) -export { IconOutdoorGrillRounded as default } +export default IconOutdoorGrillRounded diff --git a/src/IconOutdoorGrillRoundedFilled.tsx b/src/IconOutdoorGrillRoundedFilled.tsx index 0f3650c8a..b8e9eeea2 100644 --- a/src/IconOutdoorGrillRoundedFilled.tsx +++ b/src/IconOutdoorGrillRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconOutdoorGrillRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconOutdoorGrillRoundedFilled as default } +export default IconOutdoorGrillRoundedFilled diff --git a/src/IconOutdoorGrillSharp.tsx b/src/IconOutdoorGrillSharp.tsx index dd54700a7..bceccfccd 100644 --- a/src/IconOutdoorGrillSharp.tsx +++ b/src/IconOutdoorGrillSharp.tsx @@ -8,4 +8,4 @@ const IconOutdoorGrillSharp: React.FC = ({ ...props }) => ( ) -export { IconOutdoorGrillSharp as default } +export default IconOutdoorGrillSharp diff --git a/src/IconOutdoorGrillSharpFilled.tsx b/src/IconOutdoorGrillSharpFilled.tsx index 926d62284..2ae0e1409 100644 --- a/src/IconOutdoorGrillSharpFilled.tsx +++ b/src/IconOutdoorGrillSharpFilled.tsx @@ -8,4 +8,4 @@ const IconOutdoorGrillSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconOutdoorGrillSharpFilled as default } +export default IconOutdoorGrillSharpFilled diff --git a/src/IconOutgoingMailOutlined.tsx b/src/IconOutgoingMailOutlined.tsx index 7a3e59b55..a4737c1ee 100644 --- a/src/IconOutgoingMailOutlined.tsx +++ b/src/IconOutgoingMailOutlined.tsx @@ -8,4 +8,4 @@ const IconOutgoingMailOutlined: React.FC = ({ ...props }) => ( ) -export { IconOutgoingMailOutlined as default } +export default IconOutgoingMailOutlined diff --git a/src/IconOutgoingMailOutlinedFilled.tsx b/src/IconOutgoingMailOutlinedFilled.tsx index b24e6f8d5..8791f06e5 100644 --- a/src/IconOutgoingMailOutlinedFilled.tsx +++ b/src/IconOutgoingMailOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconOutgoingMailOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconOutgoingMailOutlinedFilled as default } +export default IconOutgoingMailOutlinedFilled diff --git a/src/IconOutgoingMailRounded.tsx b/src/IconOutgoingMailRounded.tsx index 2f98b2037..06ff937ce 100644 --- a/src/IconOutgoingMailRounded.tsx +++ b/src/IconOutgoingMailRounded.tsx @@ -8,4 +8,4 @@ const IconOutgoingMailRounded: React.FC = ({ ...props }) => ( ) -export { IconOutgoingMailRounded as default } +export default IconOutgoingMailRounded diff --git a/src/IconOutgoingMailRoundedFilled.tsx b/src/IconOutgoingMailRoundedFilled.tsx index df6153088..ef83b039d 100644 --- a/src/IconOutgoingMailRoundedFilled.tsx +++ b/src/IconOutgoingMailRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconOutgoingMailRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconOutgoingMailRoundedFilled as default } +export default IconOutgoingMailRoundedFilled diff --git a/src/IconOutgoingMailSharp.tsx b/src/IconOutgoingMailSharp.tsx index 5cdc5fe70..b6cabf6cf 100644 --- a/src/IconOutgoingMailSharp.tsx +++ b/src/IconOutgoingMailSharp.tsx @@ -8,4 +8,4 @@ const IconOutgoingMailSharp: React.FC = ({ ...props }) => ( ) -export { IconOutgoingMailSharp as default } +export default IconOutgoingMailSharp diff --git a/src/IconOutgoingMailSharpFilled.tsx b/src/IconOutgoingMailSharpFilled.tsx index 66e59bd73..678eace31 100644 --- a/src/IconOutgoingMailSharpFilled.tsx +++ b/src/IconOutgoingMailSharpFilled.tsx @@ -8,4 +8,4 @@ const IconOutgoingMailSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconOutgoingMailSharpFilled as default } +export default IconOutgoingMailSharpFilled diff --git a/src/IconOutletOutlined.tsx b/src/IconOutletOutlined.tsx index 617090b1e..58427bd9f 100644 --- a/src/IconOutletOutlined.tsx +++ b/src/IconOutletOutlined.tsx @@ -8,4 +8,4 @@ const IconOutletOutlined: React.FC = ({ ...props }) => ( ) -export { IconOutletOutlined as default } +export default IconOutletOutlined diff --git a/src/IconOutletOutlinedFilled.tsx b/src/IconOutletOutlinedFilled.tsx index 5f29980a6..2d6a99bab 100644 --- a/src/IconOutletOutlinedFilled.tsx +++ b/src/IconOutletOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconOutletOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconOutletOutlinedFilled as default } +export default IconOutletOutlinedFilled diff --git a/src/IconOutletRounded.tsx b/src/IconOutletRounded.tsx index 4b8ce2e50..2786637be 100644 --- a/src/IconOutletRounded.tsx +++ b/src/IconOutletRounded.tsx @@ -8,4 +8,4 @@ const IconOutletRounded: React.FC = ({ ...props }) => ( ) -export { IconOutletRounded as default } +export default IconOutletRounded diff --git a/src/IconOutletRoundedFilled.tsx b/src/IconOutletRoundedFilled.tsx index 95bb1e9f8..d2e83a2a7 100644 --- a/src/IconOutletRoundedFilled.tsx +++ b/src/IconOutletRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconOutletRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconOutletRoundedFilled as default } +export default IconOutletRoundedFilled diff --git a/src/IconOutletSharp.tsx b/src/IconOutletSharp.tsx index dd4479f50..08b1e89a2 100644 --- a/src/IconOutletSharp.tsx +++ b/src/IconOutletSharp.tsx @@ -8,4 +8,4 @@ const IconOutletSharp: React.FC = ({ ...props }) => ( ) -export { IconOutletSharp as default } +export default IconOutletSharp diff --git a/src/IconOutletSharpFilled.tsx b/src/IconOutletSharpFilled.tsx index a8aa93f3d..afc46d6bc 100644 --- a/src/IconOutletSharpFilled.tsx +++ b/src/IconOutletSharpFilled.tsx @@ -8,4 +8,4 @@ const IconOutletSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconOutletSharpFilled as default } +export default IconOutletSharpFilled diff --git a/src/IconOutpatientMedOutlined.tsx b/src/IconOutpatientMedOutlined.tsx index 22111f169..c9babd4bf 100644 --- a/src/IconOutpatientMedOutlined.tsx +++ b/src/IconOutpatientMedOutlined.tsx @@ -8,4 +8,4 @@ const IconOutpatientMedOutlined: React.FC = ({ ...props }) => ( ) -export { IconOutpatientMedOutlined as default } +export default IconOutpatientMedOutlined diff --git a/src/IconOutpatientMedOutlinedFilled.tsx b/src/IconOutpatientMedOutlinedFilled.tsx index da9968c6e..44487c379 100644 --- a/src/IconOutpatientMedOutlinedFilled.tsx +++ b/src/IconOutpatientMedOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconOutpatientMedOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconOutpatientMedOutlinedFilled as default } +export default IconOutpatientMedOutlinedFilled diff --git a/src/IconOutpatientMedRounded.tsx b/src/IconOutpatientMedRounded.tsx index 489f082db..a2c14dd98 100644 --- a/src/IconOutpatientMedRounded.tsx +++ b/src/IconOutpatientMedRounded.tsx @@ -8,4 +8,4 @@ const IconOutpatientMedRounded: React.FC = ({ ...props }) => ( ) -export { IconOutpatientMedRounded as default } +export default IconOutpatientMedRounded diff --git a/src/IconOutpatientMedRoundedFilled.tsx b/src/IconOutpatientMedRoundedFilled.tsx index 87a5af40e..857db65b5 100644 --- a/src/IconOutpatientMedRoundedFilled.tsx +++ b/src/IconOutpatientMedRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconOutpatientMedRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconOutpatientMedRoundedFilled as default } +export default IconOutpatientMedRoundedFilled diff --git a/src/IconOutpatientMedSharp.tsx b/src/IconOutpatientMedSharp.tsx index 362a22e5d..cd4225afb 100644 --- a/src/IconOutpatientMedSharp.tsx +++ b/src/IconOutpatientMedSharp.tsx @@ -8,4 +8,4 @@ const IconOutpatientMedSharp: React.FC = ({ ...props }) => ( ) -export { IconOutpatientMedSharp as default } +export default IconOutpatientMedSharp diff --git a/src/IconOutpatientMedSharpFilled.tsx b/src/IconOutpatientMedSharpFilled.tsx index 21b83e3b9..e32717928 100644 --- a/src/IconOutpatientMedSharpFilled.tsx +++ b/src/IconOutpatientMedSharpFilled.tsx @@ -8,4 +8,4 @@ const IconOutpatientMedSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconOutpatientMedSharpFilled as default } +export default IconOutpatientMedSharpFilled diff --git a/src/IconOutpatientOutlined.tsx b/src/IconOutpatientOutlined.tsx index ca55104c0..8793e419b 100644 --- a/src/IconOutpatientOutlined.tsx +++ b/src/IconOutpatientOutlined.tsx @@ -8,4 +8,4 @@ const IconOutpatientOutlined: React.FC = ({ ...props }) => ( ) -export { IconOutpatientOutlined as default } +export default IconOutpatientOutlined diff --git a/src/IconOutpatientOutlinedFilled.tsx b/src/IconOutpatientOutlinedFilled.tsx index eff7cd1b5..49724da74 100644 --- a/src/IconOutpatientOutlinedFilled.tsx +++ b/src/IconOutpatientOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconOutpatientOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconOutpatientOutlinedFilled as default } +export default IconOutpatientOutlinedFilled diff --git a/src/IconOutpatientRounded.tsx b/src/IconOutpatientRounded.tsx index 1333cc71e..e2d483923 100644 --- a/src/IconOutpatientRounded.tsx +++ b/src/IconOutpatientRounded.tsx @@ -8,4 +8,4 @@ const IconOutpatientRounded: React.FC = ({ ...props }) => ( ) -export { IconOutpatientRounded as default } +export default IconOutpatientRounded diff --git a/src/IconOutpatientRoundedFilled.tsx b/src/IconOutpatientRoundedFilled.tsx index 326b499a8..ea123d390 100644 --- a/src/IconOutpatientRoundedFilled.tsx +++ b/src/IconOutpatientRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconOutpatientRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconOutpatientRoundedFilled as default } +export default IconOutpatientRoundedFilled diff --git a/src/IconOutpatientSharp.tsx b/src/IconOutpatientSharp.tsx index 27392d51c..71865cb77 100644 --- a/src/IconOutpatientSharp.tsx +++ b/src/IconOutpatientSharp.tsx @@ -8,4 +8,4 @@ const IconOutpatientSharp: React.FC = ({ ...props }) => ( ) -export { IconOutpatientSharp as default } +export default IconOutpatientSharp diff --git a/src/IconOutpatientSharpFilled.tsx b/src/IconOutpatientSharpFilled.tsx index 5414cda7d..f46ece6bb 100644 --- a/src/IconOutpatientSharpFilled.tsx +++ b/src/IconOutpatientSharpFilled.tsx @@ -8,4 +8,4 @@ const IconOutpatientSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconOutpatientSharpFilled as default } +export default IconOutpatientSharpFilled diff --git a/src/IconOutputCircleOutlined.tsx b/src/IconOutputCircleOutlined.tsx index f86d3e272..5c7e522ba 100644 --- a/src/IconOutputCircleOutlined.tsx +++ b/src/IconOutputCircleOutlined.tsx @@ -8,4 +8,4 @@ const IconOutputCircleOutlined: React.FC = ({ ...props }) => ( ) -export { IconOutputCircleOutlined as default } +export default IconOutputCircleOutlined diff --git a/src/IconOutputCircleOutlinedFilled.tsx b/src/IconOutputCircleOutlinedFilled.tsx index 99d5471fa..8be0f0b1b 100644 --- a/src/IconOutputCircleOutlinedFilled.tsx +++ b/src/IconOutputCircleOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconOutputCircleOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconOutputCircleOutlinedFilled as default } +export default IconOutputCircleOutlinedFilled diff --git a/src/IconOutputCircleRounded.tsx b/src/IconOutputCircleRounded.tsx index 24cb6f5a9..43d83c1df 100644 --- a/src/IconOutputCircleRounded.tsx +++ b/src/IconOutputCircleRounded.tsx @@ -8,4 +8,4 @@ const IconOutputCircleRounded: React.FC = ({ ...props }) => ( ) -export { IconOutputCircleRounded as default } +export default IconOutputCircleRounded diff --git a/src/IconOutputCircleRoundedFilled.tsx b/src/IconOutputCircleRoundedFilled.tsx index d6bd6b73c..8373f2a09 100644 --- a/src/IconOutputCircleRoundedFilled.tsx +++ b/src/IconOutputCircleRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconOutputCircleRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconOutputCircleRoundedFilled as default } +export default IconOutputCircleRoundedFilled diff --git a/src/IconOutputCircleSharp.tsx b/src/IconOutputCircleSharp.tsx index af3a424d5..4f654f535 100644 --- a/src/IconOutputCircleSharp.tsx +++ b/src/IconOutputCircleSharp.tsx @@ -8,4 +8,4 @@ const IconOutputCircleSharp: React.FC = ({ ...props }) => ( ) -export { IconOutputCircleSharp as default } +export default IconOutputCircleSharp diff --git a/src/IconOutputCircleSharpFilled.tsx b/src/IconOutputCircleSharpFilled.tsx index 126628bc9..94559bdad 100644 --- a/src/IconOutputCircleSharpFilled.tsx +++ b/src/IconOutputCircleSharpFilled.tsx @@ -8,4 +8,4 @@ const IconOutputCircleSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconOutputCircleSharpFilled as default } +export default IconOutputCircleSharpFilled diff --git a/src/IconOutputOutlined.tsx b/src/IconOutputOutlined.tsx index 6a7eac869..bea3c83a6 100644 --- a/src/IconOutputOutlined.tsx +++ b/src/IconOutputOutlined.tsx @@ -8,4 +8,4 @@ const IconOutputOutlined: React.FC = ({ ...props }) => ( ) -export { IconOutputOutlined as default } +export default IconOutputOutlined diff --git a/src/IconOutputOutlinedFilled.tsx b/src/IconOutputOutlinedFilled.tsx index c1c6d9886..9e2fdaa9d 100644 --- a/src/IconOutputOutlinedFilled.tsx +++ b/src/IconOutputOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconOutputOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconOutputOutlinedFilled as default } +export default IconOutputOutlinedFilled diff --git a/src/IconOutputRounded.tsx b/src/IconOutputRounded.tsx index ef873d3b8..9769f0605 100644 --- a/src/IconOutputRounded.tsx +++ b/src/IconOutputRounded.tsx @@ -8,4 +8,4 @@ const IconOutputRounded: React.FC = ({ ...props }) => ( ) -export { IconOutputRounded as default } +export default IconOutputRounded diff --git a/src/IconOutputRoundedFilled.tsx b/src/IconOutputRoundedFilled.tsx index ceca1d7b6..07861570d 100644 --- a/src/IconOutputRoundedFilled.tsx +++ b/src/IconOutputRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconOutputRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconOutputRoundedFilled as default } +export default IconOutputRoundedFilled diff --git a/src/IconOutputSharp.tsx b/src/IconOutputSharp.tsx index 70a0387c0..2410c8594 100644 --- a/src/IconOutputSharp.tsx +++ b/src/IconOutputSharp.tsx @@ -8,4 +8,4 @@ const IconOutputSharp: React.FC = ({ ...props }) => ( ) -export { IconOutputSharp as default } +export default IconOutputSharp diff --git a/src/IconOutputSharpFilled.tsx b/src/IconOutputSharpFilled.tsx index 6bc732144..61df5c806 100644 --- a/src/IconOutputSharpFilled.tsx +++ b/src/IconOutputSharpFilled.tsx @@ -8,4 +8,4 @@ const IconOutputSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconOutputSharpFilled as default } +export default IconOutputSharpFilled diff --git a/src/IconOvenGenOutlined.tsx b/src/IconOvenGenOutlined.tsx index 32f96a5e8..15dc52acf 100644 --- a/src/IconOvenGenOutlined.tsx +++ b/src/IconOvenGenOutlined.tsx @@ -8,4 +8,4 @@ const IconOvenGenOutlined: React.FC = ({ ...props }) => ( ) -export { IconOvenGenOutlined as default } +export default IconOvenGenOutlined diff --git a/src/IconOvenGenOutlinedFilled.tsx b/src/IconOvenGenOutlinedFilled.tsx index af2bda709..e98239a20 100644 --- a/src/IconOvenGenOutlinedFilled.tsx +++ b/src/IconOvenGenOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconOvenGenOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconOvenGenOutlinedFilled as default } +export default IconOvenGenOutlinedFilled diff --git a/src/IconOvenGenRounded.tsx b/src/IconOvenGenRounded.tsx index 4ece3095b..721b7ad15 100644 --- a/src/IconOvenGenRounded.tsx +++ b/src/IconOvenGenRounded.tsx @@ -8,4 +8,4 @@ const IconOvenGenRounded: React.FC = ({ ...props }) => ( ) -export { IconOvenGenRounded as default } +export default IconOvenGenRounded diff --git a/src/IconOvenGenRoundedFilled.tsx b/src/IconOvenGenRoundedFilled.tsx index 18f60463e..dc6290eba 100644 --- a/src/IconOvenGenRoundedFilled.tsx +++ b/src/IconOvenGenRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconOvenGenRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconOvenGenRoundedFilled as default } +export default IconOvenGenRoundedFilled diff --git a/src/IconOvenGenSharp.tsx b/src/IconOvenGenSharp.tsx index fb13ea378..a42ef483b 100644 --- a/src/IconOvenGenSharp.tsx +++ b/src/IconOvenGenSharp.tsx @@ -8,4 +8,4 @@ const IconOvenGenSharp: React.FC = ({ ...props }) => ( ) -export { IconOvenGenSharp as default } +export default IconOvenGenSharp diff --git a/src/IconOvenGenSharpFilled.tsx b/src/IconOvenGenSharpFilled.tsx index 9c7c19fc7..956f135d7 100644 --- a/src/IconOvenGenSharpFilled.tsx +++ b/src/IconOvenGenSharpFilled.tsx @@ -8,4 +8,4 @@ const IconOvenGenSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconOvenGenSharpFilled as default } +export default IconOvenGenSharpFilled diff --git a/src/IconOvenOutlined.tsx b/src/IconOvenOutlined.tsx index a47624e79..49a5abfd4 100644 --- a/src/IconOvenOutlined.tsx +++ b/src/IconOvenOutlined.tsx @@ -8,4 +8,4 @@ const IconOvenOutlined: React.FC = ({ ...props }) => ( ) -export { IconOvenOutlined as default } +export default IconOvenOutlined diff --git a/src/IconOvenOutlinedFilled.tsx b/src/IconOvenOutlinedFilled.tsx index 826beda8f..835d0c13f 100644 --- a/src/IconOvenOutlinedFilled.tsx +++ b/src/IconOvenOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconOvenOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconOvenOutlinedFilled as default } +export default IconOvenOutlinedFilled diff --git a/src/IconOvenRounded.tsx b/src/IconOvenRounded.tsx index 7ad6d02de..c14a895ba 100644 --- a/src/IconOvenRounded.tsx +++ b/src/IconOvenRounded.tsx @@ -8,4 +8,4 @@ const IconOvenRounded: React.FC = ({ ...props }) => ( ) -export { IconOvenRounded as default } +export default IconOvenRounded diff --git a/src/IconOvenRoundedFilled.tsx b/src/IconOvenRoundedFilled.tsx index b25633ae1..dff7d8de1 100644 --- a/src/IconOvenRoundedFilled.tsx +++ b/src/IconOvenRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconOvenRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconOvenRoundedFilled as default } +export default IconOvenRoundedFilled diff --git a/src/IconOvenSharp.tsx b/src/IconOvenSharp.tsx index 918b467eb..9ada4bcce 100644 --- a/src/IconOvenSharp.tsx +++ b/src/IconOvenSharp.tsx @@ -8,4 +8,4 @@ const IconOvenSharp: React.FC = ({ ...props }) => ( ) -export { IconOvenSharp as default } +export default IconOvenSharp diff --git a/src/IconOvenSharpFilled.tsx b/src/IconOvenSharpFilled.tsx index f81026c3a..8df76e120 100644 --- a/src/IconOvenSharpFilled.tsx +++ b/src/IconOvenSharpFilled.tsx @@ -8,4 +8,4 @@ const IconOvenSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconOvenSharpFilled as default } +export default IconOvenSharpFilled diff --git a/src/IconOverviewKeyOutlined.tsx b/src/IconOverviewKeyOutlined.tsx index b58fca491..27c1bdc7f 100644 --- a/src/IconOverviewKeyOutlined.tsx +++ b/src/IconOverviewKeyOutlined.tsx @@ -8,4 +8,4 @@ const IconOverviewKeyOutlined: React.FC = ({ ...props }) => ( ) -export { IconOverviewKeyOutlined as default } +export default IconOverviewKeyOutlined diff --git a/src/IconOverviewKeyOutlinedFilled.tsx b/src/IconOverviewKeyOutlinedFilled.tsx index 8c52f967d..2b2c90a3a 100644 --- a/src/IconOverviewKeyOutlinedFilled.tsx +++ b/src/IconOverviewKeyOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconOverviewKeyOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconOverviewKeyOutlinedFilled as default } +export default IconOverviewKeyOutlinedFilled diff --git a/src/IconOverviewKeyRounded.tsx b/src/IconOverviewKeyRounded.tsx index 980e02491..5fb830bb9 100644 --- a/src/IconOverviewKeyRounded.tsx +++ b/src/IconOverviewKeyRounded.tsx @@ -8,4 +8,4 @@ const IconOverviewKeyRounded: React.FC = ({ ...props }) => ( ) -export { IconOverviewKeyRounded as default } +export default IconOverviewKeyRounded diff --git a/src/IconOverviewKeyRoundedFilled.tsx b/src/IconOverviewKeyRoundedFilled.tsx index bcf4186d2..aaffea304 100644 --- a/src/IconOverviewKeyRoundedFilled.tsx +++ b/src/IconOverviewKeyRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconOverviewKeyRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconOverviewKeyRoundedFilled as default } +export default IconOverviewKeyRoundedFilled diff --git a/src/IconOverviewKeySharp.tsx b/src/IconOverviewKeySharp.tsx index 1517abd8e..c5e3a6ad7 100644 --- a/src/IconOverviewKeySharp.tsx +++ b/src/IconOverviewKeySharp.tsx @@ -8,4 +8,4 @@ const IconOverviewKeySharp: React.FC = ({ ...props }) => ( ) -export { IconOverviewKeySharp as default } +export default IconOverviewKeySharp diff --git a/src/IconOverviewKeySharpFilled.tsx b/src/IconOverviewKeySharpFilled.tsx index e3593dd72..276c9e064 100644 --- a/src/IconOverviewKeySharpFilled.tsx +++ b/src/IconOverviewKeySharpFilled.tsx @@ -8,4 +8,4 @@ const IconOverviewKeySharpFilled: React.FC = ({ ...props }) => ( ) -export { IconOverviewKeySharpFilled as default } +export default IconOverviewKeySharpFilled diff --git a/src/IconOverviewOutlined.tsx b/src/IconOverviewOutlined.tsx index 0011429c3..c08860586 100644 --- a/src/IconOverviewOutlined.tsx +++ b/src/IconOverviewOutlined.tsx @@ -8,4 +8,4 @@ const IconOverviewOutlined: React.FC = ({ ...props }) => ( ) -export { IconOverviewOutlined as default } +export default IconOverviewOutlined diff --git a/src/IconOverviewOutlinedFilled.tsx b/src/IconOverviewOutlinedFilled.tsx index 84911e013..9cb914536 100644 --- a/src/IconOverviewOutlinedFilled.tsx +++ b/src/IconOverviewOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconOverviewOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconOverviewOutlinedFilled as default } +export default IconOverviewOutlinedFilled diff --git a/src/IconOverviewRounded.tsx b/src/IconOverviewRounded.tsx index d473fc5d4..1c63af641 100644 --- a/src/IconOverviewRounded.tsx +++ b/src/IconOverviewRounded.tsx @@ -8,4 +8,4 @@ const IconOverviewRounded: React.FC = ({ ...props }) => ( ) -export { IconOverviewRounded as default } +export default IconOverviewRounded diff --git a/src/IconOverviewRoundedFilled.tsx b/src/IconOverviewRoundedFilled.tsx index 665554069..7c378d6a9 100644 --- a/src/IconOverviewRoundedFilled.tsx +++ b/src/IconOverviewRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconOverviewRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconOverviewRoundedFilled as default } +export default IconOverviewRoundedFilled diff --git a/src/IconOverviewSharp.tsx b/src/IconOverviewSharp.tsx index ec6f6c0e9..5acfa41e3 100644 --- a/src/IconOverviewSharp.tsx +++ b/src/IconOverviewSharp.tsx @@ -8,4 +8,4 @@ const IconOverviewSharp: React.FC = ({ ...props }) => ( ) -export { IconOverviewSharp as default } +export default IconOverviewSharp diff --git a/src/IconOverviewSharpFilled.tsx b/src/IconOverviewSharpFilled.tsx index 59b666c9e..a10c333de 100644 --- a/src/IconOverviewSharpFilled.tsx +++ b/src/IconOverviewSharpFilled.tsx @@ -8,4 +8,4 @@ const IconOverviewSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconOverviewSharpFilled as default } +export default IconOverviewSharpFilled diff --git a/src/IconOxygenSaturationOutlined.tsx b/src/IconOxygenSaturationOutlined.tsx index 35b71f04b..8bc0ab430 100644 --- a/src/IconOxygenSaturationOutlined.tsx +++ b/src/IconOxygenSaturationOutlined.tsx @@ -8,4 +8,4 @@ const IconOxygenSaturationOutlined: React.FC = ({ ...props }) => ( ) -export { IconOxygenSaturationOutlined as default } +export default IconOxygenSaturationOutlined diff --git a/src/IconOxygenSaturationOutlinedFilled.tsx b/src/IconOxygenSaturationOutlinedFilled.tsx index 911e559a1..b7401e737 100644 --- a/src/IconOxygenSaturationOutlinedFilled.tsx +++ b/src/IconOxygenSaturationOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconOxygenSaturationOutlinedFilled: React.FC = ({ ) -export { IconOxygenSaturationOutlinedFilled as default } +export default IconOxygenSaturationOutlinedFilled diff --git a/src/IconOxygenSaturationRounded.tsx b/src/IconOxygenSaturationRounded.tsx index dc0daa57a..5de8d8255 100644 --- a/src/IconOxygenSaturationRounded.tsx +++ b/src/IconOxygenSaturationRounded.tsx @@ -8,4 +8,4 @@ const IconOxygenSaturationRounded: React.FC = ({ ...props }) => ( ) -export { IconOxygenSaturationRounded as default } +export default IconOxygenSaturationRounded diff --git a/src/IconOxygenSaturationRoundedFilled.tsx b/src/IconOxygenSaturationRoundedFilled.tsx index eb127c872..11027c9f5 100644 --- a/src/IconOxygenSaturationRoundedFilled.tsx +++ b/src/IconOxygenSaturationRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconOxygenSaturationRoundedFilled: React.FC = ({ ) -export { IconOxygenSaturationRoundedFilled as default } +export default IconOxygenSaturationRoundedFilled diff --git a/src/IconOxygenSaturationSharp.tsx b/src/IconOxygenSaturationSharp.tsx index 5a258534c..1f2f4f017 100644 --- a/src/IconOxygenSaturationSharp.tsx +++ b/src/IconOxygenSaturationSharp.tsx @@ -8,4 +8,4 @@ const IconOxygenSaturationSharp: React.FC = ({ ...props }) => ( ) -export { IconOxygenSaturationSharp as default } +export default IconOxygenSaturationSharp diff --git a/src/IconOxygenSaturationSharpFilled.tsx b/src/IconOxygenSaturationSharpFilled.tsx index f4949afb2..9407a5cb9 100644 --- a/src/IconOxygenSaturationSharpFilled.tsx +++ b/src/IconOxygenSaturationSharpFilled.tsx @@ -8,4 +8,4 @@ const IconOxygenSaturationSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconOxygenSaturationSharpFilled as default } +export default IconOxygenSaturationSharpFilled diff --git a/src/IconP2pOutlined.tsx b/src/IconP2pOutlined.tsx index 365221433..b8b14a8a4 100644 --- a/src/IconP2pOutlined.tsx +++ b/src/IconP2pOutlined.tsx @@ -8,4 +8,4 @@ const IconP2pOutlined: React.FC = ({ ...props }) => ( ) -export { IconP2pOutlined as default } +export default IconP2pOutlined diff --git a/src/IconP2pOutlinedFilled.tsx b/src/IconP2pOutlinedFilled.tsx index 09859a550..bc7238f26 100644 --- a/src/IconP2pOutlinedFilled.tsx +++ b/src/IconP2pOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconP2pOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconP2pOutlinedFilled as default } +export default IconP2pOutlinedFilled diff --git a/src/IconP2pRounded.tsx b/src/IconP2pRounded.tsx index e4045831d..f6ccc6caa 100644 --- a/src/IconP2pRounded.tsx +++ b/src/IconP2pRounded.tsx @@ -8,4 +8,4 @@ const IconP2pRounded: React.FC = ({ ...props }) => ( ) -export { IconP2pRounded as default } +export default IconP2pRounded diff --git a/src/IconP2pRoundedFilled.tsx b/src/IconP2pRoundedFilled.tsx index f67217a98..b80caaa56 100644 --- a/src/IconP2pRoundedFilled.tsx +++ b/src/IconP2pRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconP2pRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconP2pRoundedFilled as default } +export default IconP2pRoundedFilled diff --git a/src/IconP2pSharp.tsx b/src/IconP2pSharp.tsx index 3e005a034..f55136b37 100644 --- a/src/IconP2pSharp.tsx +++ b/src/IconP2pSharp.tsx @@ -8,4 +8,4 @@ const IconP2pSharp: React.FC = ({ ...props }) => ( ) -export { IconP2pSharp as default } +export default IconP2pSharp diff --git a/src/IconP2pSharpFilled.tsx b/src/IconP2pSharpFilled.tsx index 538bb44d9..f139a1fbe 100644 --- a/src/IconP2pSharpFilled.tsx +++ b/src/IconP2pSharpFilled.tsx @@ -8,4 +8,4 @@ const IconP2pSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconP2pSharpFilled as default } +export default IconP2pSharpFilled diff --git a/src/IconPaceOutlined.tsx b/src/IconPaceOutlined.tsx index 9c4a594f6..228c07c2b 100644 --- a/src/IconPaceOutlined.tsx +++ b/src/IconPaceOutlined.tsx @@ -8,4 +8,4 @@ const IconPaceOutlined: React.FC = ({ ...props }) => ( ) -export { IconPaceOutlined as default } +export default IconPaceOutlined diff --git a/src/IconPaceOutlinedFilled.tsx b/src/IconPaceOutlinedFilled.tsx index fe3aae952..b609c6855 100644 --- a/src/IconPaceOutlinedFilled.tsx +++ b/src/IconPaceOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconPaceOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconPaceOutlinedFilled as default } +export default IconPaceOutlinedFilled diff --git a/src/IconPaceRounded.tsx b/src/IconPaceRounded.tsx index 452fb7d58..b1a338627 100644 --- a/src/IconPaceRounded.tsx +++ b/src/IconPaceRounded.tsx @@ -8,4 +8,4 @@ const IconPaceRounded: React.FC = ({ ...props }) => ( ) -export { IconPaceRounded as default } +export default IconPaceRounded diff --git a/src/IconPaceRoundedFilled.tsx b/src/IconPaceRoundedFilled.tsx index 9dd6477c2..4df6765a1 100644 --- a/src/IconPaceRoundedFilled.tsx +++ b/src/IconPaceRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconPaceRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconPaceRoundedFilled as default } +export default IconPaceRoundedFilled diff --git a/src/IconPaceSharp.tsx b/src/IconPaceSharp.tsx index 872e9f87a..30fa63890 100644 --- a/src/IconPaceSharp.tsx +++ b/src/IconPaceSharp.tsx @@ -8,4 +8,4 @@ const IconPaceSharp: React.FC = ({ ...props }) => ( ) -export { IconPaceSharp as default } +export default IconPaceSharp diff --git a/src/IconPaceSharpFilled.tsx b/src/IconPaceSharpFilled.tsx index a73379c28..3449f384d 100644 --- a/src/IconPaceSharpFilled.tsx +++ b/src/IconPaceSharpFilled.tsx @@ -8,4 +8,4 @@ const IconPaceSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconPaceSharpFilled as default } +export default IconPaceSharpFilled diff --git a/src/IconPacemakerOutlined.tsx b/src/IconPacemakerOutlined.tsx index 0c1c915dc..3b5a9767d 100644 --- a/src/IconPacemakerOutlined.tsx +++ b/src/IconPacemakerOutlined.tsx @@ -8,4 +8,4 @@ const IconPacemakerOutlined: React.FC = ({ ...props }) => ( ) -export { IconPacemakerOutlined as default } +export default IconPacemakerOutlined diff --git a/src/IconPacemakerOutlinedFilled.tsx b/src/IconPacemakerOutlinedFilled.tsx index 87be4145a..ea1aa1acf 100644 --- a/src/IconPacemakerOutlinedFilled.tsx +++ b/src/IconPacemakerOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconPacemakerOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconPacemakerOutlinedFilled as default } +export default IconPacemakerOutlinedFilled diff --git a/src/IconPacemakerRounded.tsx b/src/IconPacemakerRounded.tsx index ede6b1ef4..d8b15ced9 100644 --- a/src/IconPacemakerRounded.tsx +++ b/src/IconPacemakerRounded.tsx @@ -8,4 +8,4 @@ const IconPacemakerRounded: React.FC = ({ ...props }) => ( ) -export { IconPacemakerRounded as default } +export default IconPacemakerRounded diff --git a/src/IconPacemakerRoundedFilled.tsx b/src/IconPacemakerRoundedFilled.tsx index dbac4500e..759412b92 100644 --- a/src/IconPacemakerRoundedFilled.tsx +++ b/src/IconPacemakerRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconPacemakerRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconPacemakerRoundedFilled as default } +export default IconPacemakerRoundedFilled diff --git a/src/IconPacemakerSharp.tsx b/src/IconPacemakerSharp.tsx index 087e61302..d31e0f934 100644 --- a/src/IconPacemakerSharp.tsx +++ b/src/IconPacemakerSharp.tsx @@ -8,4 +8,4 @@ const IconPacemakerSharp: React.FC = ({ ...props }) => ( ) -export { IconPacemakerSharp as default } +export default IconPacemakerSharp diff --git a/src/IconPacemakerSharpFilled.tsx b/src/IconPacemakerSharpFilled.tsx index ee1e790f5..18e4e5b73 100644 --- a/src/IconPacemakerSharpFilled.tsx +++ b/src/IconPacemakerSharpFilled.tsx @@ -8,4 +8,4 @@ const IconPacemakerSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconPacemakerSharpFilled as default } +export default IconPacemakerSharpFilled diff --git a/src/IconPackage2Outlined.tsx b/src/IconPackage2Outlined.tsx index 44b762eac..11f38243c 100644 --- a/src/IconPackage2Outlined.tsx +++ b/src/IconPackage2Outlined.tsx @@ -8,4 +8,4 @@ const IconPackage2Outlined: React.FC = ({ ...props }) => ( ) -export { IconPackage2Outlined as default } +export default IconPackage2Outlined diff --git a/src/IconPackage2OutlinedFilled.tsx b/src/IconPackage2OutlinedFilled.tsx index 2fa341e7c..78173ba06 100644 --- a/src/IconPackage2OutlinedFilled.tsx +++ b/src/IconPackage2OutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconPackage2OutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconPackage2OutlinedFilled as default } +export default IconPackage2OutlinedFilled diff --git a/src/IconPackage2Rounded.tsx b/src/IconPackage2Rounded.tsx index f4cb7853e..d614531b8 100644 --- a/src/IconPackage2Rounded.tsx +++ b/src/IconPackage2Rounded.tsx @@ -8,4 +8,4 @@ const IconPackage2Rounded: React.FC = ({ ...props }) => ( ) -export { IconPackage2Rounded as default } +export default IconPackage2Rounded diff --git a/src/IconPackage2RoundedFilled.tsx b/src/IconPackage2RoundedFilled.tsx index b399c62ef..31d94a73a 100644 --- a/src/IconPackage2RoundedFilled.tsx +++ b/src/IconPackage2RoundedFilled.tsx @@ -8,4 +8,4 @@ const IconPackage2RoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconPackage2RoundedFilled as default } +export default IconPackage2RoundedFilled diff --git a/src/IconPackage2Sharp.tsx b/src/IconPackage2Sharp.tsx index d9a684244..017987474 100644 --- a/src/IconPackage2Sharp.tsx +++ b/src/IconPackage2Sharp.tsx @@ -8,4 +8,4 @@ const IconPackage2Sharp: React.FC = ({ ...props }) => ( ) -export { IconPackage2Sharp as default } +export default IconPackage2Sharp diff --git a/src/IconPackage2SharpFilled.tsx b/src/IconPackage2SharpFilled.tsx index 549ead0e9..b613e609a 100644 --- a/src/IconPackage2SharpFilled.tsx +++ b/src/IconPackage2SharpFilled.tsx @@ -8,4 +8,4 @@ const IconPackage2SharpFilled: React.FC = ({ ...props }) => ( ) -export { IconPackage2SharpFilled as default } +export default IconPackage2SharpFilled diff --git a/src/IconPackageOutlined.tsx b/src/IconPackageOutlined.tsx index 10f401df6..cac3af20d 100644 --- a/src/IconPackageOutlined.tsx +++ b/src/IconPackageOutlined.tsx @@ -8,4 +8,4 @@ const IconPackageOutlined: React.FC = ({ ...props }) => ( ) -export { IconPackageOutlined as default } +export default IconPackageOutlined diff --git a/src/IconPackageOutlinedFilled.tsx b/src/IconPackageOutlinedFilled.tsx index e2f124adc..0a605913e 100644 --- a/src/IconPackageOutlinedFilled.tsx +++ b/src/IconPackageOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconPackageOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconPackageOutlinedFilled as default } +export default IconPackageOutlinedFilled diff --git a/src/IconPackageRounded.tsx b/src/IconPackageRounded.tsx index d6684d84c..fa8f4d261 100644 --- a/src/IconPackageRounded.tsx +++ b/src/IconPackageRounded.tsx @@ -8,4 +8,4 @@ const IconPackageRounded: React.FC = ({ ...props }) => ( ) -export { IconPackageRounded as default } +export default IconPackageRounded diff --git a/src/IconPackageRoundedFilled.tsx b/src/IconPackageRoundedFilled.tsx index 88633d5a4..50d3ed5af 100644 --- a/src/IconPackageRoundedFilled.tsx +++ b/src/IconPackageRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconPackageRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconPackageRoundedFilled as default } +export default IconPackageRoundedFilled diff --git a/src/IconPackageSharp.tsx b/src/IconPackageSharp.tsx index a284d22b8..aa9495960 100644 --- a/src/IconPackageSharp.tsx +++ b/src/IconPackageSharp.tsx @@ -8,4 +8,4 @@ const IconPackageSharp: React.FC = ({ ...props }) => ( ) -export { IconPackageSharp as default } +export default IconPackageSharp diff --git a/src/IconPackageSharpFilled.tsx b/src/IconPackageSharpFilled.tsx index ba3e3b5f8..b95da35f9 100644 --- a/src/IconPackageSharpFilled.tsx +++ b/src/IconPackageSharpFilled.tsx @@ -8,4 +8,4 @@ const IconPackageSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconPackageSharpFilled as default } +export default IconPackageSharpFilled diff --git a/src/IconPaddingOutlined.tsx b/src/IconPaddingOutlined.tsx index df3463ea8..9b82cdb8d 100644 --- a/src/IconPaddingOutlined.tsx +++ b/src/IconPaddingOutlined.tsx @@ -8,4 +8,4 @@ const IconPaddingOutlined: React.FC = ({ ...props }) => ( ) -export { IconPaddingOutlined as default } +export default IconPaddingOutlined diff --git a/src/IconPaddingOutlinedFilled.tsx b/src/IconPaddingOutlinedFilled.tsx index 9fc9248c0..bfb1a9790 100644 --- a/src/IconPaddingOutlinedFilled.tsx +++ b/src/IconPaddingOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconPaddingOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconPaddingOutlinedFilled as default } +export default IconPaddingOutlinedFilled diff --git a/src/IconPaddingRounded.tsx b/src/IconPaddingRounded.tsx index 9833eb0c5..d3288a768 100644 --- a/src/IconPaddingRounded.tsx +++ b/src/IconPaddingRounded.tsx @@ -8,4 +8,4 @@ const IconPaddingRounded: React.FC = ({ ...props }) => ( ) -export { IconPaddingRounded as default } +export default IconPaddingRounded diff --git a/src/IconPaddingRoundedFilled.tsx b/src/IconPaddingRoundedFilled.tsx index 0bb8392c1..edf800eb9 100644 --- a/src/IconPaddingRoundedFilled.tsx +++ b/src/IconPaddingRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconPaddingRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconPaddingRoundedFilled as default } +export default IconPaddingRoundedFilled diff --git a/src/IconPaddingSharp.tsx b/src/IconPaddingSharp.tsx index 2883b1242..30af9e19a 100644 --- a/src/IconPaddingSharp.tsx +++ b/src/IconPaddingSharp.tsx @@ -8,4 +8,4 @@ const IconPaddingSharp: React.FC = ({ ...props }) => ( ) -export { IconPaddingSharp as default } +export default IconPaddingSharp diff --git a/src/IconPaddingSharpFilled.tsx b/src/IconPaddingSharpFilled.tsx index 0f604f903..e320b052a 100644 --- a/src/IconPaddingSharpFilled.tsx +++ b/src/IconPaddingSharpFilled.tsx @@ -8,4 +8,4 @@ const IconPaddingSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconPaddingSharpFilled as default } +export default IconPaddingSharpFilled diff --git a/src/IconPageControlOutlined.tsx b/src/IconPageControlOutlined.tsx index f8c451b14..5b8029dfb 100644 --- a/src/IconPageControlOutlined.tsx +++ b/src/IconPageControlOutlined.tsx @@ -8,4 +8,4 @@ const IconPageControlOutlined: React.FC = ({ ...props }) => ( ) -export { IconPageControlOutlined as default } +export default IconPageControlOutlined diff --git a/src/IconPageControlOutlinedFilled.tsx b/src/IconPageControlOutlinedFilled.tsx index 36deed554..839be3629 100644 --- a/src/IconPageControlOutlinedFilled.tsx +++ b/src/IconPageControlOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconPageControlOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconPageControlOutlinedFilled as default } +export default IconPageControlOutlinedFilled diff --git a/src/IconPageControlRounded.tsx b/src/IconPageControlRounded.tsx index c81d844de..4f342c9fd 100644 --- a/src/IconPageControlRounded.tsx +++ b/src/IconPageControlRounded.tsx @@ -8,4 +8,4 @@ const IconPageControlRounded: React.FC = ({ ...props }) => ( ) -export { IconPageControlRounded as default } +export default IconPageControlRounded diff --git a/src/IconPageControlRoundedFilled.tsx b/src/IconPageControlRoundedFilled.tsx index ca3c24ba4..5c05faabf 100644 --- a/src/IconPageControlRoundedFilled.tsx +++ b/src/IconPageControlRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconPageControlRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconPageControlRoundedFilled as default } +export default IconPageControlRoundedFilled diff --git a/src/IconPageControlSharp.tsx b/src/IconPageControlSharp.tsx index 5b8de521d..9a7906a53 100644 --- a/src/IconPageControlSharp.tsx +++ b/src/IconPageControlSharp.tsx @@ -8,4 +8,4 @@ const IconPageControlSharp: React.FC = ({ ...props }) => ( ) -export { IconPageControlSharp as default } +export default IconPageControlSharp diff --git a/src/IconPageControlSharpFilled.tsx b/src/IconPageControlSharpFilled.tsx index 9d72535af..8028696ac 100644 --- a/src/IconPageControlSharpFilled.tsx +++ b/src/IconPageControlSharpFilled.tsx @@ -8,4 +8,4 @@ const IconPageControlSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconPageControlSharpFilled as default } +export default IconPageControlSharpFilled diff --git a/src/IconPageInfoOutlined.tsx b/src/IconPageInfoOutlined.tsx index 13287f313..6d1e6e8bb 100644 --- a/src/IconPageInfoOutlined.tsx +++ b/src/IconPageInfoOutlined.tsx @@ -8,4 +8,4 @@ const IconPageInfoOutlined: React.FC = ({ ...props }) => ( ) -export { IconPageInfoOutlined as default } +export default IconPageInfoOutlined diff --git a/src/IconPageInfoOutlinedFilled.tsx b/src/IconPageInfoOutlinedFilled.tsx index 5584d7d8c..c39a7a143 100644 --- a/src/IconPageInfoOutlinedFilled.tsx +++ b/src/IconPageInfoOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconPageInfoOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconPageInfoOutlinedFilled as default } +export default IconPageInfoOutlinedFilled diff --git a/src/IconPageInfoRounded.tsx b/src/IconPageInfoRounded.tsx index 384df9a8e..3555b455c 100644 --- a/src/IconPageInfoRounded.tsx +++ b/src/IconPageInfoRounded.tsx @@ -8,4 +8,4 @@ const IconPageInfoRounded: React.FC = ({ ...props }) => ( ) -export { IconPageInfoRounded as default } +export default IconPageInfoRounded diff --git a/src/IconPageInfoRoundedFilled.tsx b/src/IconPageInfoRoundedFilled.tsx index 64eda9439..eff2675b8 100644 --- a/src/IconPageInfoRoundedFilled.tsx +++ b/src/IconPageInfoRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconPageInfoRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconPageInfoRoundedFilled as default } +export default IconPageInfoRoundedFilled diff --git a/src/IconPageInfoSharp.tsx b/src/IconPageInfoSharp.tsx index d02880c38..80e3c28b9 100644 --- a/src/IconPageInfoSharp.tsx +++ b/src/IconPageInfoSharp.tsx @@ -8,4 +8,4 @@ const IconPageInfoSharp: React.FC = ({ ...props }) => ( ) -export { IconPageInfoSharp as default } +export default IconPageInfoSharp diff --git a/src/IconPageInfoSharpFilled.tsx b/src/IconPageInfoSharpFilled.tsx index 4b419f966..e914285d1 100644 --- a/src/IconPageInfoSharpFilled.tsx +++ b/src/IconPageInfoSharpFilled.tsx @@ -8,4 +8,4 @@ const IconPageInfoSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconPageInfoSharpFilled as default } +export default IconPageInfoSharpFilled diff --git a/src/IconPagelessOutlined.tsx b/src/IconPagelessOutlined.tsx index 719f37cda..4632db03d 100644 --- a/src/IconPagelessOutlined.tsx +++ b/src/IconPagelessOutlined.tsx @@ -8,4 +8,4 @@ const IconPagelessOutlined: React.FC = ({ ...props }) => ( ) -export { IconPagelessOutlined as default } +export default IconPagelessOutlined diff --git a/src/IconPagelessOutlinedFilled.tsx b/src/IconPagelessOutlinedFilled.tsx index c7ae91503..c1e86e882 100644 --- a/src/IconPagelessOutlinedFilled.tsx +++ b/src/IconPagelessOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconPagelessOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconPagelessOutlinedFilled as default } +export default IconPagelessOutlinedFilled diff --git a/src/IconPagelessRounded.tsx b/src/IconPagelessRounded.tsx index f5c627df7..0e14be528 100644 --- a/src/IconPagelessRounded.tsx +++ b/src/IconPagelessRounded.tsx @@ -8,4 +8,4 @@ const IconPagelessRounded: React.FC = ({ ...props }) => ( ) -export { IconPagelessRounded as default } +export default IconPagelessRounded diff --git a/src/IconPagelessRoundedFilled.tsx b/src/IconPagelessRoundedFilled.tsx index 2cdbc53ec..52999aa1f 100644 --- a/src/IconPagelessRoundedFilled.tsx +++ b/src/IconPagelessRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconPagelessRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconPagelessRoundedFilled as default } +export default IconPagelessRoundedFilled diff --git a/src/IconPagelessSharp.tsx b/src/IconPagelessSharp.tsx index a21b77bdf..d4d7aa02c 100644 --- a/src/IconPagelessSharp.tsx +++ b/src/IconPagelessSharp.tsx @@ -8,4 +8,4 @@ const IconPagelessSharp: React.FC = ({ ...props }) => ( ) -export { IconPagelessSharp as default } +export default IconPagelessSharp diff --git a/src/IconPagelessSharpFilled.tsx b/src/IconPagelessSharpFilled.tsx index a30164614..3c1c3df31 100644 --- a/src/IconPagelessSharpFilled.tsx +++ b/src/IconPagelessSharpFilled.tsx @@ -8,4 +8,4 @@ const IconPagelessSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconPagelessSharpFilled as default } +export default IconPagelessSharpFilled diff --git a/src/IconPagesOutlined.tsx b/src/IconPagesOutlined.tsx index 77a0fcb53..a0d75392e 100644 --- a/src/IconPagesOutlined.tsx +++ b/src/IconPagesOutlined.tsx @@ -8,4 +8,4 @@ const IconPagesOutlined: React.FC = ({ ...props }) => ( ) -export { IconPagesOutlined as default } +export default IconPagesOutlined diff --git a/src/IconPagesOutlinedFilled.tsx b/src/IconPagesOutlinedFilled.tsx index 7c112d900..d41f70330 100644 --- a/src/IconPagesOutlinedFilled.tsx +++ b/src/IconPagesOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconPagesOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconPagesOutlinedFilled as default } +export default IconPagesOutlinedFilled diff --git a/src/IconPagesRounded.tsx b/src/IconPagesRounded.tsx index 48b60d8be..4676a7e98 100644 --- a/src/IconPagesRounded.tsx +++ b/src/IconPagesRounded.tsx @@ -8,4 +8,4 @@ const IconPagesRounded: React.FC = ({ ...props }) => ( ) -export { IconPagesRounded as default } +export default IconPagesRounded diff --git a/src/IconPagesRoundedFilled.tsx b/src/IconPagesRoundedFilled.tsx index 77a2efc3a..089bf75ad 100644 --- a/src/IconPagesRoundedFilled.tsx +++ b/src/IconPagesRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconPagesRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconPagesRoundedFilled as default } +export default IconPagesRoundedFilled diff --git a/src/IconPagesSharp.tsx b/src/IconPagesSharp.tsx index 80f6c545a..0e31890e7 100644 --- a/src/IconPagesSharp.tsx +++ b/src/IconPagesSharp.tsx @@ -8,4 +8,4 @@ const IconPagesSharp: React.FC = ({ ...props }) => ( ) -export { IconPagesSharp as default } +export default IconPagesSharp diff --git a/src/IconPagesSharpFilled.tsx b/src/IconPagesSharpFilled.tsx index 35456248c..eb5485f11 100644 --- a/src/IconPagesSharpFilled.tsx +++ b/src/IconPagesSharpFilled.tsx @@ -8,4 +8,4 @@ const IconPagesSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconPagesSharpFilled as default } +export default IconPagesSharpFilled diff --git a/src/IconPageviewOutlined.tsx b/src/IconPageviewOutlined.tsx index a3f0d7016..9b0f0f23b 100644 --- a/src/IconPageviewOutlined.tsx +++ b/src/IconPageviewOutlined.tsx @@ -8,4 +8,4 @@ const IconPageviewOutlined: React.FC = ({ ...props }) => ( ) -export { IconPageviewOutlined as default } +export default IconPageviewOutlined diff --git a/src/IconPageviewOutlinedFilled.tsx b/src/IconPageviewOutlinedFilled.tsx index e5ceee5d9..16740d2ed 100644 --- a/src/IconPageviewOutlinedFilled.tsx +++ b/src/IconPageviewOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconPageviewOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconPageviewOutlinedFilled as default } +export default IconPageviewOutlinedFilled diff --git a/src/IconPageviewRounded.tsx b/src/IconPageviewRounded.tsx index 94269768b..065e7a0da 100644 --- a/src/IconPageviewRounded.tsx +++ b/src/IconPageviewRounded.tsx @@ -8,4 +8,4 @@ const IconPageviewRounded: React.FC = ({ ...props }) => ( ) -export { IconPageviewRounded as default } +export default IconPageviewRounded diff --git a/src/IconPageviewRoundedFilled.tsx b/src/IconPageviewRoundedFilled.tsx index 550a06ddf..ae3c6d47b 100644 --- a/src/IconPageviewRoundedFilled.tsx +++ b/src/IconPageviewRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconPageviewRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconPageviewRoundedFilled as default } +export default IconPageviewRoundedFilled diff --git a/src/IconPageviewSharp.tsx b/src/IconPageviewSharp.tsx index 9bec5c55b..864ea7352 100644 --- a/src/IconPageviewSharp.tsx +++ b/src/IconPageviewSharp.tsx @@ -8,4 +8,4 @@ const IconPageviewSharp: React.FC = ({ ...props }) => ( ) -export { IconPageviewSharp as default } +export default IconPageviewSharp diff --git a/src/IconPageviewSharpFilled.tsx b/src/IconPageviewSharpFilled.tsx index 164747bd5..bec4cb1f8 100644 --- a/src/IconPageviewSharpFilled.tsx +++ b/src/IconPageviewSharpFilled.tsx @@ -8,4 +8,4 @@ const IconPageviewSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconPageviewSharpFilled as default } +export default IconPageviewSharpFilled diff --git a/src/IconPaidOutlined.tsx b/src/IconPaidOutlined.tsx index fff22a67b..30e37b8dd 100644 --- a/src/IconPaidOutlined.tsx +++ b/src/IconPaidOutlined.tsx @@ -8,4 +8,4 @@ const IconPaidOutlined: React.FC = ({ ...props }) => ( ) -export { IconPaidOutlined as default } +export default IconPaidOutlined diff --git a/src/IconPaidOutlinedFilled.tsx b/src/IconPaidOutlinedFilled.tsx index edea5aa54..bf66ba60c 100644 --- a/src/IconPaidOutlinedFilled.tsx +++ b/src/IconPaidOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconPaidOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconPaidOutlinedFilled as default } +export default IconPaidOutlinedFilled diff --git a/src/IconPaidRounded.tsx b/src/IconPaidRounded.tsx index 9352be473..8d389e71f 100644 --- a/src/IconPaidRounded.tsx +++ b/src/IconPaidRounded.tsx @@ -8,4 +8,4 @@ const IconPaidRounded: React.FC = ({ ...props }) => ( ) -export { IconPaidRounded as default } +export default IconPaidRounded diff --git a/src/IconPaidRoundedFilled.tsx b/src/IconPaidRoundedFilled.tsx index ef364cac1..52c65759d 100644 --- a/src/IconPaidRoundedFilled.tsx +++ b/src/IconPaidRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconPaidRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconPaidRoundedFilled as default } +export default IconPaidRoundedFilled diff --git a/src/IconPaidSharp.tsx b/src/IconPaidSharp.tsx index bf3740744..0c4553222 100644 --- a/src/IconPaidSharp.tsx +++ b/src/IconPaidSharp.tsx @@ -8,4 +8,4 @@ const IconPaidSharp: React.FC = ({ ...props }) => ( ) -export { IconPaidSharp as default } +export default IconPaidSharp diff --git a/src/IconPaidSharpFilled.tsx b/src/IconPaidSharpFilled.tsx index 4811c5be0..d5b6c0f81 100644 --- a/src/IconPaidSharpFilled.tsx +++ b/src/IconPaidSharpFilled.tsx @@ -8,4 +8,4 @@ const IconPaidSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconPaidSharpFilled as default } +export default IconPaidSharpFilled diff --git a/src/IconPaletteOutlined.tsx b/src/IconPaletteOutlined.tsx index 24d0c8aaf..ae2e31ffb 100644 --- a/src/IconPaletteOutlined.tsx +++ b/src/IconPaletteOutlined.tsx @@ -8,4 +8,4 @@ const IconPaletteOutlined: React.FC = ({ ...props }) => ( ) -export { IconPaletteOutlined as default } +export default IconPaletteOutlined diff --git a/src/IconPaletteOutlinedFilled.tsx b/src/IconPaletteOutlinedFilled.tsx index f98b0e996..859c0780e 100644 --- a/src/IconPaletteOutlinedFilled.tsx +++ b/src/IconPaletteOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconPaletteOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconPaletteOutlinedFilled as default } +export default IconPaletteOutlinedFilled diff --git a/src/IconPaletteRounded.tsx b/src/IconPaletteRounded.tsx index eab95ecf3..dcb10ba12 100644 --- a/src/IconPaletteRounded.tsx +++ b/src/IconPaletteRounded.tsx @@ -8,4 +8,4 @@ const IconPaletteRounded: React.FC = ({ ...props }) => ( ) -export { IconPaletteRounded as default } +export default IconPaletteRounded diff --git a/src/IconPaletteRoundedFilled.tsx b/src/IconPaletteRoundedFilled.tsx index 4253940ac..619e4bebb 100644 --- a/src/IconPaletteRoundedFilled.tsx +++ b/src/IconPaletteRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconPaletteRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconPaletteRoundedFilled as default } +export default IconPaletteRoundedFilled diff --git a/src/IconPaletteSharp.tsx b/src/IconPaletteSharp.tsx index 9de6fd4ec..4b3811bbf 100644 --- a/src/IconPaletteSharp.tsx +++ b/src/IconPaletteSharp.tsx @@ -8,4 +8,4 @@ const IconPaletteSharp: React.FC = ({ ...props }) => ( ) -export { IconPaletteSharp as default } +export default IconPaletteSharp diff --git a/src/IconPaletteSharpFilled.tsx b/src/IconPaletteSharpFilled.tsx index 64f18f0f3..72e8c4f70 100644 --- a/src/IconPaletteSharpFilled.tsx +++ b/src/IconPaletteSharpFilled.tsx @@ -8,4 +8,4 @@ const IconPaletteSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconPaletteSharpFilled as default } +export default IconPaletteSharpFilled diff --git a/src/IconPalletOutlined.tsx b/src/IconPalletOutlined.tsx index b6c7dff23..761cfbdf2 100644 --- a/src/IconPalletOutlined.tsx +++ b/src/IconPalletOutlined.tsx @@ -8,4 +8,4 @@ const IconPalletOutlined: React.FC = ({ ...props }) => ( ) -export { IconPalletOutlined as default } +export default IconPalletOutlined diff --git a/src/IconPalletOutlinedFilled.tsx b/src/IconPalletOutlinedFilled.tsx index d5c026105..926f957d0 100644 --- a/src/IconPalletOutlinedFilled.tsx +++ b/src/IconPalletOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconPalletOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconPalletOutlinedFilled as default } +export default IconPalletOutlinedFilled diff --git a/src/IconPalletRounded.tsx b/src/IconPalletRounded.tsx index 103d795a5..92d6b0000 100644 --- a/src/IconPalletRounded.tsx +++ b/src/IconPalletRounded.tsx @@ -8,4 +8,4 @@ const IconPalletRounded: React.FC = ({ ...props }) => ( ) -export { IconPalletRounded as default } +export default IconPalletRounded diff --git a/src/IconPalletRoundedFilled.tsx b/src/IconPalletRoundedFilled.tsx index ec069b156..7962af864 100644 --- a/src/IconPalletRoundedFilled.tsx +++ b/src/IconPalletRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconPalletRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconPalletRoundedFilled as default } +export default IconPalletRoundedFilled diff --git a/src/IconPalletSharp.tsx b/src/IconPalletSharp.tsx index 306e2079e..2bb587f1d 100644 --- a/src/IconPalletSharp.tsx +++ b/src/IconPalletSharp.tsx @@ -8,4 +8,4 @@ const IconPalletSharp: React.FC = ({ ...props }) => ( ) -export { IconPalletSharp as default } +export default IconPalletSharp diff --git a/src/IconPalletSharpFilled.tsx b/src/IconPalletSharpFilled.tsx index 94628a3fb..f53a6f0d4 100644 --- a/src/IconPalletSharpFilled.tsx +++ b/src/IconPalletSharpFilled.tsx @@ -8,4 +8,4 @@ const IconPalletSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconPalletSharpFilled as default } +export default IconPalletSharpFilled diff --git a/src/IconPanToolAltOutlined.tsx b/src/IconPanToolAltOutlined.tsx index a8ce1daaa..47bb908be 100644 --- a/src/IconPanToolAltOutlined.tsx +++ b/src/IconPanToolAltOutlined.tsx @@ -8,4 +8,4 @@ const IconPanToolAltOutlined: React.FC = ({ ...props }) => ( ) -export { IconPanToolAltOutlined as default } +export default IconPanToolAltOutlined diff --git a/src/IconPanToolAltOutlinedFilled.tsx b/src/IconPanToolAltOutlinedFilled.tsx index 5ab32aeec..e9fac430f 100644 --- a/src/IconPanToolAltOutlinedFilled.tsx +++ b/src/IconPanToolAltOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconPanToolAltOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconPanToolAltOutlinedFilled as default } +export default IconPanToolAltOutlinedFilled diff --git a/src/IconPanToolAltRounded.tsx b/src/IconPanToolAltRounded.tsx index 901ff9692..a0c17c888 100644 --- a/src/IconPanToolAltRounded.tsx +++ b/src/IconPanToolAltRounded.tsx @@ -8,4 +8,4 @@ const IconPanToolAltRounded: React.FC = ({ ...props }) => ( ) -export { IconPanToolAltRounded as default } +export default IconPanToolAltRounded diff --git a/src/IconPanToolAltRoundedFilled.tsx b/src/IconPanToolAltRoundedFilled.tsx index 845640240..9fc3343a8 100644 --- a/src/IconPanToolAltRoundedFilled.tsx +++ b/src/IconPanToolAltRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconPanToolAltRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconPanToolAltRoundedFilled as default } +export default IconPanToolAltRoundedFilled diff --git a/src/IconPanToolAltSharp.tsx b/src/IconPanToolAltSharp.tsx index f75256858..4dbc4a99c 100644 --- a/src/IconPanToolAltSharp.tsx +++ b/src/IconPanToolAltSharp.tsx @@ -8,4 +8,4 @@ const IconPanToolAltSharp: React.FC = ({ ...props }) => ( ) -export { IconPanToolAltSharp as default } +export default IconPanToolAltSharp diff --git a/src/IconPanToolAltSharpFilled.tsx b/src/IconPanToolAltSharpFilled.tsx index fea76513c..57d14247d 100644 --- a/src/IconPanToolAltSharpFilled.tsx +++ b/src/IconPanToolAltSharpFilled.tsx @@ -8,4 +8,4 @@ const IconPanToolAltSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconPanToolAltSharpFilled as default } +export default IconPanToolAltSharpFilled diff --git a/src/IconPanToolOutlined.tsx b/src/IconPanToolOutlined.tsx index 8595e75c5..4260fb95e 100644 --- a/src/IconPanToolOutlined.tsx +++ b/src/IconPanToolOutlined.tsx @@ -8,4 +8,4 @@ const IconPanToolOutlined: React.FC = ({ ...props }) => ( ) -export { IconPanToolOutlined as default } +export default IconPanToolOutlined diff --git a/src/IconPanToolOutlinedFilled.tsx b/src/IconPanToolOutlinedFilled.tsx index 3a226db4d..e2af2d139 100644 --- a/src/IconPanToolOutlinedFilled.tsx +++ b/src/IconPanToolOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconPanToolOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconPanToolOutlinedFilled as default } +export default IconPanToolOutlinedFilled diff --git a/src/IconPanToolRounded.tsx b/src/IconPanToolRounded.tsx index 7473c569b..17fb7011d 100644 --- a/src/IconPanToolRounded.tsx +++ b/src/IconPanToolRounded.tsx @@ -8,4 +8,4 @@ const IconPanToolRounded: React.FC = ({ ...props }) => ( ) -export { IconPanToolRounded as default } +export default IconPanToolRounded diff --git a/src/IconPanToolRoundedFilled.tsx b/src/IconPanToolRoundedFilled.tsx index 49133b882..c9367cc76 100644 --- a/src/IconPanToolRoundedFilled.tsx +++ b/src/IconPanToolRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconPanToolRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconPanToolRoundedFilled as default } +export default IconPanToolRoundedFilled diff --git a/src/IconPanToolSharp.tsx b/src/IconPanToolSharp.tsx index d2a38bc6f..c88796327 100644 --- a/src/IconPanToolSharp.tsx +++ b/src/IconPanToolSharp.tsx @@ -8,4 +8,4 @@ const IconPanToolSharp: React.FC = ({ ...props }) => ( ) -export { IconPanToolSharp as default } +export default IconPanToolSharp diff --git a/src/IconPanToolSharpFilled.tsx b/src/IconPanToolSharpFilled.tsx index 2f10d6c5a..e2ad4ee3c 100644 --- a/src/IconPanToolSharpFilled.tsx +++ b/src/IconPanToolSharpFilled.tsx @@ -8,4 +8,4 @@ const IconPanToolSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconPanToolSharpFilled as default } +export default IconPanToolSharpFilled diff --git a/src/IconPanZoomOutlined.tsx b/src/IconPanZoomOutlined.tsx index ee8241603..abaf69aed 100644 --- a/src/IconPanZoomOutlined.tsx +++ b/src/IconPanZoomOutlined.tsx @@ -8,4 +8,4 @@ const IconPanZoomOutlined: React.FC = ({ ...props }) => ( ) -export { IconPanZoomOutlined as default } +export default IconPanZoomOutlined diff --git a/src/IconPanZoomOutlinedFilled.tsx b/src/IconPanZoomOutlinedFilled.tsx index 7c39ccdda..56ff719b1 100644 --- a/src/IconPanZoomOutlinedFilled.tsx +++ b/src/IconPanZoomOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconPanZoomOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconPanZoomOutlinedFilled as default } +export default IconPanZoomOutlinedFilled diff --git a/src/IconPanZoomRounded.tsx b/src/IconPanZoomRounded.tsx index de6a8ea37..464b1f9d9 100644 --- a/src/IconPanZoomRounded.tsx +++ b/src/IconPanZoomRounded.tsx @@ -8,4 +8,4 @@ const IconPanZoomRounded: React.FC = ({ ...props }) => ( ) -export { IconPanZoomRounded as default } +export default IconPanZoomRounded diff --git a/src/IconPanZoomRoundedFilled.tsx b/src/IconPanZoomRoundedFilled.tsx index ed560948b..bff774a16 100644 --- a/src/IconPanZoomRoundedFilled.tsx +++ b/src/IconPanZoomRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconPanZoomRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconPanZoomRoundedFilled as default } +export default IconPanZoomRoundedFilled diff --git a/src/IconPanZoomSharp.tsx b/src/IconPanZoomSharp.tsx index de7e5bf42..9866f898e 100644 --- a/src/IconPanZoomSharp.tsx +++ b/src/IconPanZoomSharp.tsx @@ -8,4 +8,4 @@ const IconPanZoomSharp: React.FC = ({ ...props }) => ( ) -export { IconPanZoomSharp as default } +export default IconPanZoomSharp diff --git a/src/IconPanZoomSharpFilled.tsx b/src/IconPanZoomSharpFilled.tsx index 53d0d0ede..baa3b445a 100644 --- a/src/IconPanZoomSharpFilled.tsx +++ b/src/IconPanZoomSharpFilled.tsx @@ -8,4 +8,4 @@ const IconPanZoomSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconPanZoomSharpFilled as default } +export default IconPanZoomSharpFilled diff --git a/src/IconPanoramaHorizontalOutlined.tsx b/src/IconPanoramaHorizontalOutlined.tsx index db5bb1f23..8524a5515 100644 --- a/src/IconPanoramaHorizontalOutlined.tsx +++ b/src/IconPanoramaHorizontalOutlined.tsx @@ -8,4 +8,4 @@ const IconPanoramaHorizontalOutlined: React.FC = ({ ...props }) => ( ) -export { IconPanoramaHorizontalOutlined as default } +export default IconPanoramaHorizontalOutlined diff --git a/src/IconPanoramaHorizontalOutlinedFilled.tsx b/src/IconPanoramaHorizontalOutlinedFilled.tsx index e0a36ba0f..d6d76be75 100644 --- a/src/IconPanoramaHorizontalOutlinedFilled.tsx +++ b/src/IconPanoramaHorizontalOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconPanoramaHorizontalOutlinedFilled: React.FC = ({ ) -export { IconPanoramaHorizontalOutlinedFilled as default } +export default IconPanoramaHorizontalOutlinedFilled diff --git a/src/IconPanoramaHorizontalRounded.tsx b/src/IconPanoramaHorizontalRounded.tsx index 9a2c073b5..9977bfb95 100644 --- a/src/IconPanoramaHorizontalRounded.tsx +++ b/src/IconPanoramaHorizontalRounded.tsx @@ -8,4 +8,4 @@ const IconPanoramaHorizontalRounded: React.FC = ({ ...props }) => ( ) -export { IconPanoramaHorizontalRounded as default } +export default IconPanoramaHorizontalRounded diff --git a/src/IconPanoramaHorizontalRoundedFilled.tsx b/src/IconPanoramaHorizontalRoundedFilled.tsx index dcfda340b..02e7e26bc 100644 --- a/src/IconPanoramaHorizontalRoundedFilled.tsx +++ b/src/IconPanoramaHorizontalRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconPanoramaHorizontalRoundedFilled: React.FC = ({ ) -export { IconPanoramaHorizontalRoundedFilled as default } +export default IconPanoramaHorizontalRoundedFilled diff --git a/src/IconPanoramaHorizontalSharp.tsx b/src/IconPanoramaHorizontalSharp.tsx index 9028459f3..2f9e4f959 100644 --- a/src/IconPanoramaHorizontalSharp.tsx +++ b/src/IconPanoramaHorizontalSharp.tsx @@ -8,4 +8,4 @@ const IconPanoramaHorizontalSharp: React.FC = ({ ...props }) => ( ) -export { IconPanoramaHorizontalSharp as default } +export default IconPanoramaHorizontalSharp diff --git a/src/IconPanoramaHorizontalSharpFilled.tsx b/src/IconPanoramaHorizontalSharpFilled.tsx index a341fff7f..036c73a04 100644 --- a/src/IconPanoramaHorizontalSharpFilled.tsx +++ b/src/IconPanoramaHorizontalSharpFilled.tsx @@ -10,4 +10,4 @@ const IconPanoramaHorizontalSharpFilled: React.FC = ({ ) -export { IconPanoramaHorizontalSharpFilled as default } +export default IconPanoramaHorizontalSharpFilled diff --git a/src/IconPanoramaOutlined.tsx b/src/IconPanoramaOutlined.tsx index 44fe2c600..4648da240 100644 --- a/src/IconPanoramaOutlined.tsx +++ b/src/IconPanoramaOutlined.tsx @@ -8,4 +8,4 @@ const IconPanoramaOutlined: React.FC = ({ ...props }) => ( ) -export { IconPanoramaOutlined as default } +export default IconPanoramaOutlined diff --git a/src/IconPanoramaOutlinedFilled.tsx b/src/IconPanoramaOutlinedFilled.tsx index 40b173dec..7a7095b6a 100644 --- a/src/IconPanoramaOutlinedFilled.tsx +++ b/src/IconPanoramaOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconPanoramaOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconPanoramaOutlinedFilled as default } +export default IconPanoramaOutlinedFilled diff --git a/src/IconPanoramaPhotosphereOutlined.tsx b/src/IconPanoramaPhotosphereOutlined.tsx index 9cfbf5317..15fbe1df1 100644 --- a/src/IconPanoramaPhotosphereOutlined.tsx +++ b/src/IconPanoramaPhotosphereOutlined.tsx @@ -8,4 +8,4 @@ const IconPanoramaPhotosphereOutlined: React.FC = ({ ...props }) => ( ) -export { IconPanoramaPhotosphereOutlined as default } +export default IconPanoramaPhotosphereOutlined diff --git a/src/IconPanoramaPhotosphereOutlinedFilled.tsx b/src/IconPanoramaPhotosphereOutlinedFilled.tsx index 5a9528c36..15ba011c8 100644 --- a/src/IconPanoramaPhotosphereOutlinedFilled.tsx +++ b/src/IconPanoramaPhotosphereOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconPanoramaPhotosphereOutlinedFilled: React.FC = ({ ) -export { IconPanoramaPhotosphereOutlinedFilled as default } +export default IconPanoramaPhotosphereOutlinedFilled diff --git a/src/IconPanoramaPhotosphereRounded.tsx b/src/IconPanoramaPhotosphereRounded.tsx index bf692b1b3..b3102cd08 100644 --- a/src/IconPanoramaPhotosphereRounded.tsx +++ b/src/IconPanoramaPhotosphereRounded.tsx @@ -8,4 +8,4 @@ const IconPanoramaPhotosphereRounded: React.FC = ({ ...props }) => ( ) -export { IconPanoramaPhotosphereRounded as default } +export default IconPanoramaPhotosphereRounded diff --git a/src/IconPanoramaPhotosphereRoundedFilled.tsx b/src/IconPanoramaPhotosphereRoundedFilled.tsx index f909e9a5c..c8229b18e 100644 --- a/src/IconPanoramaPhotosphereRoundedFilled.tsx +++ b/src/IconPanoramaPhotosphereRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconPanoramaPhotosphereRoundedFilled: React.FC = ({ ) -export { IconPanoramaPhotosphereRoundedFilled as default } +export default IconPanoramaPhotosphereRoundedFilled diff --git a/src/IconPanoramaPhotosphereSharp.tsx b/src/IconPanoramaPhotosphereSharp.tsx index 19397b4c9..e2f9b3c8c 100644 --- a/src/IconPanoramaPhotosphereSharp.tsx +++ b/src/IconPanoramaPhotosphereSharp.tsx @@ -8,4 +8,4 @@ const IconPanoramaPhotosphereSharp: React.FC = ({ ...props }) => ( ) -export { IconPanoramaPhotosphereSharp as default } +export default IconPanoramaPhotosphereSharp diff --git a/src/IconPanoramaPhotosphereSharpFilled.tsx b/src/IconPanoramaPhotosphereSharpFilled.tsx index eab9178b5..e00fb4b2c 100644 --- a/src/IconPanoramaPhotosphereSharpFilled.tsx +++ b/src/IconPanoramaPhotosphereSharpFilled.tsx @@ -10,4 +10,4 @@ const IconPanoramaPhotosphereSharpFilled: React.FC = ({ ) -export { IconPanoramaPhotosphereSharpFilled as default } +export default IconPanoramaPhotosphereSharpFilled diff --git a/src/IconPanoramaRounded.tsx b/src/IconPanoramaRounded.tsx index 9a0a6e4fc..012b340ea 100644 --- a/src/IconPanoramaRounded.tsx +++ b/src/IconPanoramaRounded.tsx @@ -8,4 +8,4 @@ const IconPanoramaRounded: React.FC = ({ ...props }) => ( ) -export { IconPanoramaRounded as default } +export default IconPanoramaRounded diff --git a/src/IconPanoramaRoundedFilled.tsx b/src/IconPanoramaRoundedFilled.tsx index 3f9727fc9..8bba6d10d 100644 --- a/src/IconPanoramaRoundedFilled.tsx +++ b/src/IconPanoramaRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconPanoramaRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconPanoramaRoundedFilled as default } +export default IconPanoramaRoundedFilled diff --git a/src/IconPanoramaSharp.tsx b/src/IconPanoramaSharp.tsx index df5e6dbba..134f3b34c 100644 --- a/src/IconPanoramaSharp.tsx +++ b/src/IconPanoramaSharp.tsx @@ -8,4 +8,4 @@ const IconPanoramaSharp: React.FC = ({ ...props }) => ( ) -export { IconPanoramaSharp as default } +export default IconPanoramaSharp diff --git a/src/IconPanoramaSharpFilled.tsx b/src/IconPanoramaSharpFilled.tsx index abf3201f6..eda84726c 100644 --- a/src/IconPanoramaSharpFilled.tsx +++ b/src/IconPanoramaSharpFilled.tsx @@ -8,4 +8,4 @@ const IconPanoramaSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconPanoramaSharpFilled as default } +export default IconPanoramaSharpFilled diff --git a/src/IconPanoramaVerticalOutlined.tsx b/src/IconPanoramaVerticalOutlined.tsx index e5ecd4b47..14149ab0b 100644 --- a/src/IconPanoramaVerticalOutlined.tsx +++ b/src/IconPanoramaVerticalOutlined.tsx @@ -8,4 +8,4 @@ const IconPanoramaVerticalOutlined: React.FC = ({ ...props }) => ( ) -export { IconPanoramaVerticalOutlined as default } +export default IconPanoramaVerticalOutlined diff --git a/src/IconPanoramaVerticalOutlinedFilled.tsx b/src/IconPanoramaVerticalOutlinedFilled.tsx index c3a244975..5c2a5ef05 100644 --- a/src/IconPanoramaVerticalOutlinedFilled.tsx +++ b/src/IconPanoramaVerticalOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconPanoramaVerticalOutlinedFilled: React.FC = ({ ) -export { IconPanoramaVerticalOutlinedFilled as default } +export default IconPanoramaVerticalOutlinedFilled diff --git a/src/IconPanoramaVerticalRounded.tsx b/src/IconPanoramaVerticalRounded.tsx index 56f6858f8..7a68bdab1 100644 --- a/src/IconPanoramaVerticalRounded.tsx +++ b/src/IconPanoramaVerticalRounded.tsx @@ -8,4 +8,4 @@ const IconPanoramaVerticalRounded: React.FC = ({ ...props }) => ( ) -export { IconPanoramaVerticalRounded as default } +export default IconPanoramaVerticalRounded diff --git a/src/IconPanoramaVerticalRoundedFilled.tsx b/src/IconPanoramaVerticalRoundedFilled.tsx index 57483d5f0..aff1a96a1 100644 --- a/src/IconPanoramaVerticalRoundedFilled.tsx +++ b/src/IconPanoramaVerticalRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconPanoramaVerticalRoundedFilled: React.FC = ({ ) -export { IconPanoramaVerticalRoundedFilled as default } +export default IconPanoramaVerticalRoundedFilled diff --git a/src/IconPanoramaVerticalSharp.tsx b/src/IconPanoramaVerticalSharp.tsx index b6c1f5656..0370d5764 100644 --- a/src/IconPanoramaVerticalSharp.tsx +++ b/src/IconPanoramaVerticalSharp.tsx @@ -8,4 +8,4 @@ const IconPanoramaVerticalSharp: React.FC = ({ ...props }) => ( ) -export { IconPanoramaVerticalSharp as default } +export default IconPanoramaVerticalSharp diff --git a/src/IconPanoramaVerticalSharpFilled.tsx b/src/IconPanoramaVerticalSharpFilled.tsx index eb7c3fc4f..9ea51ca3e 100644 --- a/src/IconPanoramaVerticalSharpFilled.tsx +++ b/src/IconPanoramaVerticalSharpFilled.tsx @@ -8,4 +8,4 @@ const IconPanoramaVerticalSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconPanoramaVerticalSharpFilled as default } +export default IconPanoramaVerticalSharpFilled diff --git a/src/IconPanoramaWideAngleOutlined.tsx b/src/IconPanoramaWideAngleOutlined.tsx index 292e18351..41af58ea8 100644 --- a/src/IconPanoramaWideAngleOutlined.tsx +++ b/src/IconPanoramaWideAngleOutlined.tsx @@ -8,4 +8,4 @@ const IconPanoramaWideAngleOutlined: React.FC = ({ ...props }) => ( ) -export { IconPanoramaWideAngleOutlined as default } +export default IconPanoramaWideAngleOutlined diff --git a/src/IconPanoramaWideAngleOutlinedFilled.tsx b/src/IconPanoramaWideAngleOutlinedFilled.tsx index aed63752d..8db27a40f 100644 --- a/src/IconPanoramaWideAngleOutlinedFilled.tsx +++ b/src/IconPanoramaWideAngleOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconPanoramaWideAngleOutlinedFilled: React.FC = ({ ) -export { IconPanoramaWideAngleOutlinedFilled as default } +export default IconPanoramaWideAngleOutlinedFilled diff --git a/src/IconPanoramaWideAngleRounded.tsx b/src/IconPanoramaWideAngleRounded.tsx index 11420c602..8c5b30350 100644 --- a/src/IconPanoramaWideAngleRounded.tsx +++ b/src/IconPanoramaWideAngleRounded.tsx @@ -8,4 +8,4 @@ const IconPanoramaWideAngleRounded: React.FC = ({ ...props }) => ( ) -export { IconPanoramaWideAngleRounded as default } +export default IconPanoramaWideAngleRounded diff --git a/src/IconPanoramaWideAngleRoundedFilled.tsx b/src/IconPanoramaWideAngleRoundedFilled.tsx index d05a2c48f..80afb74fe 100644 --- a/src/IconPanoramaWideAngleRoundedFilled.tsx +++ b/src/IconPanoramaWideAngleRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconPanoramaWideAngleRoundedFilled: React.FC = ({ ) -export { IconPanoramaWideAngleRoundedFilled as default } +export default IconPanoramaWideAngleRoundedFilled diff --git a/src/IconPanoramaWideAngleSharp.tsx b/src/IconPanoramaWideAngleSharp.tsx index 657180ca8..2f67dafa9 100644 --- a/src/IconPanoramaWideAngleSharp.tsx +++ b/src/IconPanoramaWideAngleSharp.tsx @@ -8,4 +8,4 @@ const IconPanoramaWideAngleSharp: React.FC = ({ ...props }) => ( ) -export { IconPanoramaWideAngleSharp as default } +export default IconPanoramaWideAngleSharp diff --git a/src/IconPanoramaWideAngleSharpFilled.tsx b/src/IconPanoramaWideAngleSharpFilled.tsx index 4b81623fe..04009b42a 100644 --- a/src/IconPanoramaWideAngleSharpFilled.tsx +++ b/src/IconPanoramaWideAngleSharpFilled.tsx @@ -10,4 +10,4 @@ const IconPanoramaWideAngleSharpFilled: React.FC = ({ ) -export { IconPanoramaWideAngleSharpFilled as default } +export default IconPanoramaWideAngleSharpFilled diff --git a/src/IconParaglidingOutlined.tsx b/src/IconParaglidingOutlined.tsx index 06c0601e0..41eaf5e5f 100644 --- a/src/IconParaglidingOutlined.tsx +++ b/src/IconParaglidingOutlined.tsx @@ -8,4 +8,4 @@ const IconParaglidingOutlined: React.FC = ({ ...props }) => ( ) -export { IconParaglidingOutlined as default } +export default IconParaglidingOutlined diff --git a/src/IconParaglidingOutlinedFilled.tsx b/src/IconParaglidingOutlinedFilled.tsx index 858bb8984..77a49fb08 100644 --- a/src/IconParaglidingOutlinedFilled.tsx +++ b/src/IconParaglidingOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconParaglidingOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconParaglidingOutlinedFilled as default } +export default IconParaglidingOutlinedFilled diff --git a/src/IconParaglidingRounded.tsx b/src/IconParaglidingRounded.tsx index 59c32ad70..af2d0b912 100644 --- a/src/IconParaglidingRounded.tsx +++ b/src/IconParaglidingRounded.tsx @@ -8,4 +8,4 @@ const IconParaglidingRounded: React.FC = ({ ...props }) => ( ) -export { IconParaglidingRounded as default } +export default IconParaglidingRounded diff --git a/src/IconParaglidingRoundedFilled.tsx b/src/IconParaglidingRoundedFilled.tsx index 3921fe93a..0a99520ef 100644 --- a/src/IconParaglidingRoundedFilled.tsx +++ b/src/IconParaglidingRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconParaglidingRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconParaglidingRoundedFilled as default } +export default IconParaglidingRoundedFilled diff --git a/src/IconParaglidingSharp.tsx b/src/IconParaglidingSharp.tsx index bfd1747f8..7e44d2b78 100644 --- a/src/IconParaglidingSharp.tsx +++ b/src/IconParaglidingSharp.tsx @@ -8,4 +8,4 @@ const IconParaglidingSharp: React.FC = ({ ...props }) => ( ) -export { IconParaglidingSharp as default } +export default IconParaglidingSharp diff --git a/src/IconParaglidingSharpFilled.tsx b/src/IconParaglidingSharpFilled.tsx index 488e07c18..a8e10fc1d 100644 --- a/src/IconParaglidingSharpFilled.tsx +++ b/src/IconParaglidingSharpFilled.tsx @@ -8,4 +8,4 @@ const IconParaglidingSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconParaglidingSharpFilled as default } +export default IconParaglidingSharpFilled diff --git a/src/IconParkOutlined.tsx b/src/IconParkOutlined.tsx index 2523caf2b..e3ba90a44 100644 --- a/src/IconParkOutlined.tsx +++ b/src/IconParkOutlined.tsx @@ -8,4 +8,4 @@ const IconParkOutlined: React.FC = ({ ...props }) => ( ) -export { IconParkOutlined as default } +export default IconParkOutlined diff --git a/src/IconParkOutlinedFilled.tsx b/src/IconParkOutlinedFilled.tsx index 966dbf028..0584df9b1 100644 --- a/src/IconParkOutlinedFilled.tsx +++ b/src/IconParkOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconParkOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconParkOutlinedFilled as default } +export default IconParkOutlinedFilled diff --git a/src/IconParkRounded.tsx b/src/IconParkRounded.tsx index 0a5660aff..df9c358f2 100644 --- a/src/IconParkRounded.tsx +++ b/src/IconParkRounded.tsx @@ -8,4 +8,4 @@ const IconParkRounded: React.FC = ({ ...props }) => ( ) -export { IconParkRounded as default } +export default IconParkRounded diff --git a/src/IconParkRoundedFilled.tsx b/src/IconParkRoundedFilled.tsx index 1cbc9c8d8..82a543529 100644 --- a/src/IconParkRoundedFilled.tsx +++ b/src/IconParkRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconParkRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconParkRoundedFilled as default } +export default IconParkRoundedFilled diff --git a/src/IconParkSharp.tsx b/src/IconParkSharp.tsx index d4a2da30a..3d0681083 100644 --- a/src/IconParkSharp.tsx +++ b/src/IconParkSharp.tsx @@ -8,4 +8,4 @@ const IconParkSharp: React.FC = ({ ...props }) => ( ) -export { IconParkSharp as default } +export default IconParkSharp diff --git a/src/IconParkSharpFilled.tsx b/src/IconParkSharpFilled.tsx index 482c4ce60..3d5a3d517 100644 --- a/src/IconParkSharpFilled.tsx +++ b/src/IconParkSharpFilled.tsx @@ -8,4 +8,4 @@ const IconParkSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconParkSharpFilled as default } +export default IconParkSharpFilled diff --git a/src/IconPartlyCloudyDayOutlined.tsx b/src/IconPartlyCloudyDayOutlined.tsx index 02da0bb27..a1f7f0b2d 100644 --- a/src/IconPartlyCloudyDayOutlined.tsx +++ b/src/IconPartlyCloudyDayOutlined.tsx @@ -8,4 +8,4 @@ const IconPartlyCloudyDayOutlined: React.FC = ({ ...props }) => ( ) -export { IconPartlyCloudyDayOutlined as default } +export default IconPartlyCloudyDayOutlined diff --git a/src/IconPartlyCloudyDayOutlinedFilled.tsx b/src/IconPartlyCloudyDayOutlinedFilled.tsx index 0b63d1ff0..76ee5f9ca 100644 --- a/src/IconPartlyCloudyDayOutlinedFilled.tsx +++ b/src/IconPartlyCloudyDayOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconPartlyCloudyDayOutlinedFilled: React.FC = ({ ) -export { IconPartlyCloudyDayOutlinedFilled as default } +export default IconPartlyCloudyDayOutlinedFilled diff --git a/src/IconPartlyCloudyDayRounded.tsx b/src/IconPartlyCloudyDayRounded.tsx index 5c3ea0106..58471b644 100644 --- a/src/IconPartlyCloudyDayRounded.tsx +++ b/src/IconPartlyCloudyDayRounded.tsx @@ -8,4 +8,4 @@ const IconPartlyCloudyDayRounded: React.FC = ({ ...props }) => ( ) -export { IconPartlyCloudyDayRounded as default } +export default IconPartlyCloudyDayRounded diff --git a/src/IconPartlyCloudyDayRoundedFilled.tsx b/src/IconPartlyCloudyDayRoundedFilled.tsx index de22da21f..dc497d239 100644 --- a/src/IconPartlyCloudyDayRoundedFilled.tsx +++ b/src/IconPartlyCloudyDayRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconPartlyCloudyDayRoundedFilled: React.FC = ({ ) -export { IconPartlyCloudyDayRoundedFilled as default } +export default IconPartlyCloudyDayRoundedFilled diff --git a/src/IconPartlyCloudyDaySharp.tsx b/src/IconPartlyCloudyDaySharp.tsx index 732cadc28..d27017ccf 100644 --- a/src/IconPartlyCloudyDaySharp.tsx +++ b/src/IconPartlyCloudyDaySharp.tsx @@ -8,4 +8,4 @@ const IconPartlyCloudyDaySharp: React.FC = ({ ...props }) => ( ) -export { IconPartlyCloudyDaySharp as default } +export default IconPartlyCloudyDaySharp diff --git a/src/IconPartlyCloudyDaySharpFilled.tsx b/src/IconPartlyCloudyDaySharpFilled.tsx index 57eed207f..f30822fdb 100644 --- a/src/IconPartlyCloudyDaySharpFilled.tsx +++ b/src/IconPartlyCloudyDaySharpFilled.tsx @@ -8,4 +8,4 @@ const IconPartlyCloudyDaySharpFilled: React.FC = ({ ...props }) => ( ) -export { IconPartlyCloudyDaySharpFilled as default } +export default IconPartlyCloudyDaySharpFilled diff --git a/src/IconPartlyCloudyNightOutlined.tsx b/src/IconPartlyCloudyNightOutlined.tsx index aefef38a9..063302d99 100644 --- a/src/IconPartlyCloudyNightOutlined.tsx +++ b/src/IconPartlyCloudyNightOutlined.tsx @@ -8,4 +8,4 @@ const IconPartlyCloudyNightOutlined: React.FC = ({ ...props }) => ( ) -export { IconPartlyCloudyNightOutlined as default } +export default IconPartlyCloudyNightOutlined diff --git a/src/IconPartlyCloudyNightOutlinedFilled.tsx b/src/IconPartlyCloudyNightOutlinedFilled.tsx index 787ee3284..07eaa82f9 100644 --- a/src/IconPartlyCloudyNightOutlinedFilled.tsx +++ b/src/IconPartlyCloudyNightOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconPartlyCloudyNightOutlinedFilled: React.FC = ({ ) -export { IconPartlyCloudyNightOutlinedFilled as default } +export default IconPartlyCloudyNightOutlinedFilled diff --git a/src/IconPartlyCloudyNightRounded.tsx b/src/IconPartlyCloudyNightRounded.tsx index 8501ddad6..5d9364599 100644 --- a/src/IconPartlyCloudyNightRounded.tsx +++ b/src/IconPartlyCloudyNightRounded.tsx @@ -8,4 +8,4 @@ const IconPartlyCloudyNightRounded: React.FC = ({ ...props }) => ( ) -export { IconPartlyCloudyNightRounded as default } +export default IconPartlyCloudyNightRounded diff --git a/src/IconPartlyCloudyNightRoundedFilled.tsx b/src/IconPartlyCloudyNightRoundedFilled.tsx index 72e589b3c..2c1823ea3 100644 --- a/src/IconPartlyCloudyNightRoundedFilled.tsx +++ b/src/IconPartlyCloudyNightRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconPartlyCloudyNightRoundedFilled: React.FC = ({ ) -export { IconPartlyCloudyNightRoundedFilled as default } +export default IconPartlyCloudyNightRoundedFilled diff --git a/src/IconPartlyCloudyNightSharp.tsx b/src/IconPartlyCloudyNightSharp.tsx index 31c6bb0bb..2ec16c000 100644 --- a/src/IconPartlyCloudyNightSharp.tsx +++ b/src/IconPartlyCloudyNightSharp.tsx @@ -8,4 +8,4 @@ const IconPartlyCloudyNightSharp: React.FC = ({ ...props }) => ( ) -export { IconPartlyCloudyNightSharp as default } +export default IconPartlyCloudyNightSharp diff --git a/src/IconPartlyCloudyNightSharpFilled.tsx b/src/IconPartlyCloudyNightSharpFilled.tsx index 28222a924..1d1ed18c7 100644 --- a/src/IconPartlyCloudyNightSharpFilled.tsx +++ b/src/IconPartlyCloudyNightSharpFilled.tsx @@ -10,4 +10,4 @@ const IconPartlyCloudyNightSharpFilled: React.FC = ({ ) -export { IconPartlyCloudyNightSharpFilled as default } +export default IconPartlyCloudyNightSharpFilled diff --git a/src/IconPartnerExchangeOutlined.tsx b/src/IconPartnerExchangeOutlined.tsx index 96d34ac3d..bc01987a6 100644 --- a/src/IconPartnerExchangeOutlined.tsx +++ b/src/IconPartnerExchangeOutlined.tsx @@ -8,4 +8,4 @@ const IconPartnerExchangeOutlined: React.FC = ({ ...props }) => ( ) -export { IconPartnerExchangeOutlined as default } +export default IconPartnerExchangeOutlined diff --git a/src/IconPartnerExchangeOutlinedFilled.tsx b/src/IconPartnerExchangeOutlinedFilled.tsx index 52dfc9497..8114eb38c 100644 --- a/src/IconPartnerExchangeOutlinedFilled.tsx +++ b/src/IconPartnerExchangeOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconPartnerExchangeOutlinedFilled: React.FC = ({ ) -export { IconPartnerExchangeOutlinedFilled as default } +export default IconPartnerExchangeOutlinedFilled diff --git a/src/IconPartnerExchangeRounded.tsx b/src/IconPartnerExchangeRounded.tsx index 8c0b13852..71719c837 100644 --- a/src/IconPartnerExchangeRounded.tsx +++ b/src/IconPartnerExchangeRounded.tsx @@ -8,4 +8,4 @@ const IconPartnerExchangeRounded: React.FC = ({ ...props }) => ( ) -export { IconPartnerExchangeRounded as default } +export default IconPartnerExchangeRounded diff --git a/src/IconPartnerExchangeRoundedFilled.tsx b/src/IconPartnerExchangeRoundedFilled.tsx index daea86832..a78de1e13 100644 --- a/src/IconPartnerExchangeRoundedFilled.tsx +++ b/src/IconPartnerExchangeRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconPartnerExchangeRoundedFilled: React.FC = ({ ) -export { IconPartnerExchangeRoundedFilled as default } +export default IconPartnerExchangeRoundedFilled diff --git a/src/IconPartnerExchangeSharp.tsx b/src/IconPartnerExchangeSharp.tsx index 01e27be3e..b09150856 100644 --- a/src/IconPartnerExchangeSharp.tsx +++ b/src/IconPartnerExchangeSharp.tsx @@ -8,4 +8,4 @@ const IconPartnerExchangeSharp: React.FC = ({ ...props }) => ( ) -export { IconPartnerExchangeSharp as default } +export default IconPartnerExchangeSharp diff --git a/src/IconPartnerExchangeSharpFilled.tsx b/src/IconPartnerExchangeSharpFilled.tsx index cec93154d..a3689860b 100644 --- a/src/IconPartnerExchangeSharpFilled.tsx +++ b/src/IconPartnerExchangeSharpFilled.tsx @@ -8,4 +8,4 @@ const IconPartnerExchangeSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconPartnerExchangeSharpFilled as default } +export default IconPartnerExchangeSharpFilled diff --git a/src/IconPartnerReportsOutlined.tsx b/src/IconPartnerReportsOutlined.tsx index 5f1bc8c76..c445b2418 100644 --- a/src/IconPartnerReportsOutlined.tsx +++ b/src/IconPartnerReportsOutlined.tsx @@ -8,4 +8,4 @@ const IconPartnerReportsOutlined: React.FC = ({ ...props }) => ( ) -export { IconPartnerReportsOutlined as default } +export default IconPartnerReportsOutlined diff --git a/src/IconPartnerReportsOutlinedFilled.tsx b/src/IconPartnerReportsOutlinedFilled.tsx index 265434a3c..f6a72151e 100644 --- a/src/IconPartnerReportsOutlinedFilled.tsx +++ b/src/IconPartnerReportsOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconPartnerReportsOutlinedFilled: React.FC = ({ ) -export { IconPartnerReportsOutlinedFilled as default } +export default IconPartnerReportsOutlinedFilled diff --git a/src/IconPartnerReportsRounded.tsx b/src/IconPartnerReportsRounded.tsx index e01807099..74872b69e 100644 --- a/src/IconPartnerReportsRounded.tsx +++ b/src/IconPartnerReportsRounded.tsx @@ -8,4 +8,4 @@ const IconPartnerReportsRounded: React.FC = ({ ...props }) => ( ) -export { IconPartnerReportsRounded as default } +export default IconPartnerReportsRounded diff --git a/src/IconPartnerReportsRoundedFilled.tsx b/src/IconPartnerReportsRoundedFilled.tsx index 66f1cdb2c..d68c968f3 100644 --- a/src/IconPartnerReportsRoundedFilled.tsx +++ b/src/IconPartnerReportsRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconPartnerReportsRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconPartnerReportsRoundedFilled as default } +export default IconPartnerReportsRoundedFilled diff --git a/src/IconPartnerReportsSharp.tsx b/src/IconPartnerReportsSharp.tsx index 6ff23d45a..0a0fbf17f 100644 --- a/src/IconPartnerReportsSharp.tsx +++ b/src/IconPartnerReportsSharp.tsx @@ -8,4 +8,4 @@ const IconPartnerReportsSharp: React.FC = ({ ...props }) => ( ) -export { IconPartnerReportsSharp as default } +export default IconPartnerReportsSharp diff --git a/src/IconPartnerReportsSharpFilled.tsx b/src/IconPartnerReportsSharpFilled.tsx index de5234d5e..c678ef444 100644 --- a/src/IconPartnerReportsSharpFilled.tsx +++ b/src/IconPartnerReportsSharpFilled.tsx @@ -8,4 +8,4 @@ const IconPartnerReportsSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconPartnerReportsSharpFilled as default } +export default IconPartnerReportsSharpFilled diff --git a/src/IconPartyModeOutlined.tsx b/src/IconPartyModeOutlined.tsx index c404414f2..c5fb999b4 100644 --- a/src/IconPartyModeOutlined.tsx +++ b/src/IconPartyModeOutlined.tsx @@ -8,4 +8,4 @@ const IconPartyModeOutlined: React.FC = ({ ...props }) => ( ) -export { IconPartyModeOutlined as default } +export default IconPartyModeOutlined diff --git a/src/IconPartyModeOutlinedFilled.tsx b/src/IconPartyModeOutlinedFilled.tsx index 4a7d35366..bf0d898fb 100644 --- a/src/IconPartyModeOutlinedFilled.tsx +++ b/src/IconPartyModeOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconPartyModeOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconPartyModeOutlinedFilled as default } +export default IconPartyModeOutlinedFilled diff --git a/src/IconPartyModeRounded.tsx b/src/IconPartyModeRounded.tsx index d565bda47..33735dd8d 100644 --- a/src/IconPartyModeRounded.tsx +++ b/src/IconPartyModeRounded.tsx @@ -8,4 +8,4 @@ const IconPartyModeRounded: React.FC = ({ ...props }) => ( ) -export { IconPartyModeRounded as default } +export default IconPartyModeRounded diff --git a/src/IconPartyModeRoundedFilled.tsx b/src/IconPartyModeRoundedFilled.tsx index 02d817333..7c4f336a4 100644 --- a/src/IconPartyModeRoundedFilled.tsx +++ b/src/IconPartyModeRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconPartyModeRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconPartyModeRoundedFilled as default } +export default IconPartyModeRoundedFilled diff --git a/src/IconPartyModeSharp.tsx b/src/IconPartyModeSharp.tsx index 3aadb6d08..65d936624 100644 --- a/src/IconPartyModeSharp.tsx +++ b/src/IconPartyModeSharp.tsx @@ -8,4 +8,4 @@ const IconPartyModeSharp: React.FC = ({ ...props }) => ( ) -export { IconPartyModeSharp as default } +export default IconPartyModeSharp diff --git a/src/IconPartyModeSharpFilled.tsx b/src/IconPartyModeSharpFilled.tsx index 4ffb422ab..9deb8c296 100644 --- a/src/IconPartyModeSharpFilled.tsx +++ b/src/IconPartyModeSharpFilled.tsx @@ -8,4 +8,4 @@ const IconPartyModeSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconPartyModeSharpFilled as default } +export default IconPartyModeSharpFilled diff --git a/src/IconPasskeyOutlined.tsx b/src/IconPasskeyOutlined.tsx index 042d2d4fa..015ae06dd 100644 --- a/src/IconPasskeyOutlined.tsx +++ b/src/IconPasskeyOutlined.tsx @@ -8,4 +8,4 @@ const IconPasskeyOutlined: React.FC = ({ ...props }) => ( ) -export { IconPasskeyOutlined as default } +export default IconPasskeyOutlined diff --git a/src/IconPasskeyOutlinedFilled.tsx b/src/IconPasskeyOutlinedFilled.tsx index d348931ac..729c865dd 100644 --- a/src/IconPasskeyOutlinedFilled.tsx +++ b/src/IconPasskeyOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconPasskeyOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconPasskeyOutlinedFilled as default } +export default IconPasskeyOutlinedFilled diff --git a/src/IconPasskeyRounded.tsx b/src/IconPasskeyRounded.tsx index 26b257c8d..adf37431e 100644 --- a/src/IconPasskeyRounded.tsx +++ b/src/IconPasskeyRounded.tsx @@ -8,4 +8,4 @@ const IconPasskeyRounded: React.FC = ({ ...props }) => ( ) -export { IconPasskeyRounded as default } +export default IconPasskeyRounded diff --git a/src/IconPasskeyRoundedFilled.tsx b/src/IconPasskeyRoundedFilled.tsx index 9c66835f3..bc4f93603 100644 --- a/src/IconPasskeyRoundedFilled.tsx +++ b/src/IconPasskeyRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconPasskeyRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconPasskeyRoundedFilled as default } +export default IconPasskeyRoundedFilled diff --git a/src/IconPasskeySharp.tsx b/src/IconPasskeySharp.tsx index 109d3da30..1f9d8e7db 100644 --- a/src/IconPasskeySharp.tsx +++ b/src/IconPasskeySharp.tsx @@ -8,4 +8,4 @@ const IconPasskeySharp: React.FC = ({ ...props }) => ( ) -export { IconPasskeySharp as default } +export default IconPasskeySharp diff --git a/src/IconPasskeySharpFilled.tsx b/src/IconPasskeySharpFilled.tsx index 39fc11269..377dc29f6 100644 --- a/src/IconPasskeySharpFilled.tsx +++ b/src/IconPasskeySharpFilled.tsx @@ -8,4 +8,4 @@ const IconPasskeySharpFilled: React.FC = ({ ...props }) => ( ) -export { IconPasskeySharpFilled as default } +export default IconPasskeySharpFilled diff --git a/src/IconPassword2OffOutlined.tsx b/src/IconPassword2OffOutlined.tsx index ca7cf7709..22ec81c80 100644 --- a/src/IconPassword2OffOutlined.tsx +++ b/src/IconPassword2OffOutlined.tsx @@ -8,4 +8,4 @@ const IconPassword2OffOutlined: React.FC = ({ ...props }) => ( ) -export { IconPassword2OffOutlined as default } +export default IconPassword2OffOutlined diff --git a/src/IconPassword2OffOutlinedFilled.tsx b/src/IconPassword2OffOutlinedFilled.tsx index d28cbb6e2..aa5c46063 100644 --- a/src/IconPassword2OffOutlinedFilled.tsx +++ b/src/IconPassword2OffOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconPassword2OffOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconPassword2OffOutlinedFilled as default } +export default IconPassword2OffOutlinedFilled diff --git a/src/IconPassword2OffRounded.tsx b/src/IconPassword2OffRounded.tsx index ab4a60ce0..5672c0490 100644 --- a/src/IconPassword2OffRounded.tsx +++ b/src/IconPassword2OffRounded.tsx @@ -8,4 +8,4 @@ const IconPassword2OffRounded: React.FC = ({ ...props }) => ( ) -export { IconPassword2OffRounded as default } +export default IconPassword2OffRounded diff --git a/src/IconPassword2OffRoundedFilled.tsx b/src/IconPassword2OffRoundedFilled.tsx index 2c7719bb2..00c942bfc 100644 --- a/src/IconPassword2OffRoundedFilled.tsx +++ b/src/IconPassword2OffRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconPassword2OffRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconPassword2OffRoundedFilled as default } +export default IconPassword2OffRoundedFilled diff --git a/src/IconPassword2OffSharp.tsx b/src/IconPassword2OffSharp.tsx index 28b629320..936d16af7 100644 --- a/src/IconPassword2OffSharp.tsx +++ b/src/IconPassword2OffSharp.tsx @@ -8,4 +8,4 @@ const IconPassword2OffSharp: React.FC = ({ ...props }) => ( ) -export { IconPassword2OffSharp as default } +export default IconPassword2OffSharp diff --git a/src/IconPassword2OffSharpFilled.tsx b/src/IconPassword2OffSharpFilled.tsx index fae89412c..e019aff73 100644 --- a/src/IconPassword2OffSharpFilled.tsx +++ b/src/IconPassword2OffSharpFilled.tsx @@ -8,4 +8,4 @@ const IconPassword2OffSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconPassword2OffSharpFilled as default } +export default IconPassword2OffSharpFilled diff --git a/src/IconPassword2Outlined.tsx b/src/IconPassword2Outlined.tsx index 40e8e8e19..e346eba8d 100644 --- a/src/IconPassword2Outlined.tsx +++ b/src/IconPassword2Outlined.tsx @@ -8,4 +8,4 @@ const IconPassword2Outlined: React.FC = ({ ...props }) => ( ) -export { IconPassword2Outlined as default } +export default IconPassword2Outlined diff --git a/src/IconPassword2OutlinedFilled.tsx b/src/IconPassword2OutlinedFilled.tsx index d6aad5e39..d64644243 100644 --- a/src/IconPassword2OutlinedFilled.tsx +++ b/src/IconPassword2OutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconPassword2OutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconPassword2OutlinedFilled as default } +export default IconPassword2OutlinedFilled diff --git a/src/IconPassword2Rounded.tsx b/src/IconPassword2Rounded.tsx index f0e3ae6cc..42c10b6bb 100644 --- a/src/IconPassword2Rounded.tsx +++ b/src/IconPassword2Rounded.tsx @@ -8,4 +8,4 @@ const IconPassword2Rounded: React.FC = ({ ...props }) => ( ) -export { IconPassword2Rounded as default } +export default IconPassword2Rounded diff --git a/src/IconPassword2RoundedFilled.tsx b/src/IconPassword2RoundedFilled.tsx index 62c0e24b4..39d0a8b2d 100644 --- a/src/IconPassword2RoundedFilled.tsx +++ b/src/IconPassword2RoundedFilled.tsx @@ -8,4 +8,4 @@ const IconPassword2RoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconPassword2RoundedFilled as default } +export default IconPassword2RoundedFilled diff --git a/src/IconPassword2Sharp.tsx b/src/IconPassword2Sharp.tsx index 8b75ffb72..1268dc022 100644 --- a/src/IconPassword2Sharp.tsx +++ b/src/IconPassword2Sharp.tsx @@ -8,4 +8,4 @@ const IconPassword2Sharp: React.FC = ({ ...props }) => ( ) -export { IconPassword2Sharp as default } +export default IconPassword2Sharp diff --git a/src/IconPassword2SharpFilled.tsx b/src/IconPassword2SharpFilled.tsx index 067033628..a3a99e4d9 100644 --- a/src/IconPassword2SharpFilled.tsx +++ b/src/IconPassword2SharpFilled.tsx @@ -8,4 +8,4 @@ const IconPassword2SharpFilled: React.FC = ({ ...props }) => ( ) -export { IconPassword2SharpFilled as default } +export default IconPassword2SharpFilled diff --git a/src/IconPasswordOutlined.tsx b/src/IconPasswordOutlined.tsx index 8c46e0326..8aee3de1b 100644 --- a/src/IconPasswordOutlined.tsx +++ b/src/IconPasswordOutlined.tsx @@ -8,4 +8,4 @@ const IconPasswordOutlined: React.FC = ({ ...props }) => ( ) -export { IconPasswordOutlined as default } +export default IconPasswordOutlined diff --git a/src/IconPasswordOutlinedFilled.tsx b/src/IconPasswordOutlinedFilled.tsx index 752c6a69e..7cbd4c10b 100644 --- a/src/IconPasswordOutlinedFilled.tsx +++ b/src/IconPasswordOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconPasswordOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconPasswordOutlinedFilled as default } +export default IconPasswordOutlinedFilled diff --git a/src/IconPasswordRounded.tsx b/src/IconPasswordRounded.tsx index 115d03503..eb6fa4b7e 100644 --- a/src/IconPasswordRounded.tsx +++ b/src/IconPasswordRounded.tsx @@ -8,4 +8,4 @@ const IconPasswordRounded: React.FC = ({ ...props }) => ( ) -export { IconPasswordRounded as default } +export default IconPasswordRounded diff --git a/src/IconPasswordRoundedFilled.tsx b/src/IconPasswordRoundedFilled.tsx index 7d5d28134..fe6885cf4 100644 --- a/src/IconPasswordRoundedFilled.tsx +++ b/src/IconPasswordRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconPasswordRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconPasswordRoundedFilled as default } +export default IconPasswordRoundedFilled diff --git a/src/IconPasswordSharp.tsx b/src/IconPasswordSharp.tsx index 129ffbb8c..8cea5e685 100644 --- a/src/IconPasswordSharp.tsx +++ b/src/IconPasswordSharp.tsx @@ -8,4 +8,4 @@ const IconPasswordSharp: React.FC = ({ ...props }) => ( ) -export { IconPasswordSharp as default } +export default IconPasswordSharp diff --git a/src/IconPasswordSharpFilled.tsx b/src/IconPasswordSharpFilled.tsx index 84bbc6078..90ad6ebfb 100644 --- a/src/IconPasswordSharpFilled.tsx +++ b/src/IconPasswordSharpFilled.tsx @@ -8,4 +8,4 @@ const IconPasswordSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconPasswordSharpFilled as default } +export default IconPasswordSharpFilled diff --git a/src/IconPatientListOutlined.tsx b/src/IconPatientListOutlined.tsx index 7e0fd5cdd..a58d650b5 100644 --- a/src/IconPatientListOutlined.tsx +++ b/src/IconPatientListOutlined.tsx @@ -8,4 +8,4 @@ const IconPatientListOutlined: React.FC = ({ ...props }) => ( ) -export { IconPatientListOutlined as default } +export default IconPatientListOutlined diff --git a/src/IconPatientListOutlinedFilled.tsx b/src/IconPatientListOutlinedFilled.tsx index 7083801bd..bc6ffe052 100644 --- a/src/IconPatientListOutlinedFilled.tsx +++ b/src/IconPatientListOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconPatientListOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconPatientListOutlinedFilled as default } +export default IconPatientListOutlinedFilled diff --git a/src/IconPatientListRounded.tsx b/src/IconPatientListRounded.tsx index b5788e423..e93184bbf 100644 --- a/src/IconPatientListRounded.tsx +++ b/src/IconPatientListRounded.tsx @@ -8,4 +8,4 @@ const IconPatientListRounded: React.FC = ({ ...props }) => ( ) -export { IconPatientListRounded as default } +export default IconPatientListRounded diff --git a/src/IconPatientListRoundedFilled.tsx b/src/IconPatientListRoundedFilled.tsx index e2c19b093..fa7a26124 100644 --- a/src/IconPatientListRoundedFilled.tsx +++ b/src/IconPatientListRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconPatientListRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconPatientListRoundedFilled as default } +export default IconPatientListRoundedFilled diff --git a/src/IconPatientListSharp.tsx b/src/IconPatientListSharp.tsx index 77d5fde42..2e1d08ffb 100644 --- a/src/IconPatientListSharp.tsx +++ b/src/IconPatientListSharp.tsx @@ -8,4 +8,4 @@ const IconPatientListSharp: React.FC = ({ ...props }) => ( ) -export { IconPatientListSharp as default } +export default IconPatientListSharp diff --git a/src/IconPatientListSharpFilled.tsx b/src/IconPatientListSharpFilled.tsx index 276842e80..f399e4918 100644 --- a/src/IconPatientListSharpFilled.tsx +++ b/src/IconPatientListSharpFilled.tsx @@ -8,4 +8,4 @@ const IconPatientListSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconPatientListSharpFilled as default } +export default IconPatientListSharpFilled diff --git a/src/IconPatternOutlined.tsx b/src/IconPatternOutlined.tsx index b06a3bc04..eb44cd1e1 100644 --- a/src/IconPatternOutlined.tsx +++ b/src/IconPatternOutlined.tsx @@ -8,4 +8,4 @@ const IconPatternOutlined: React.FC = ({ ...props }) => ( ) -export { IconPatternOutlined as default } +export default IconPatternOutlined diff --git a/src/IconPatternOutlinedFilled.tsx b/src/IconPatternOutlinedFilled.tsx index a70ce7367..849a1d22f 100644 --- a/src/IconPatternOutlinedFilled.tsx +++ b/src/IconPatternOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconPatternOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconPatternOutlinedFilled as default } +export default IconPatternOutlinedFilled diff --git a/src/IconPatternRounded.tsx b/src/IconPatternRounded.tsx index d4c29767e..f8263e9dc 100644 --- a/src/IconPatternRounded.tsx +++ b/src/IconPatternRounded.tsx @@ -8,4 +8,4 @@ const IconPatternRounded: React.FC = ({ ...props }) => ( ) -export { IconPatternRounded as default } +export default IconPatternRounded diff --git a/src/IconPatternRoundedFilled.tsx b/src/IconPatternRoundedFilled.tsx index 334217378..713726d3f 100644 --- a/src/IconPatternRoundedFilled.tsx +++ b/src/IconPatternRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconPatternRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconPatternRoundedFilled as default } +export default IconPatternRoundedFilled diff --git a/src/IconPatternSharp.tsx b/src/IconPatternSharp.tsx index 318e78681..e7cd1e670 100644 --- a/src/IconPatternSharp.tsx +++ b/src/IconPatternSharp.tsx @@ -8,4 +8,4 @@ const IconPatternSharp: React.FC = ({ ...props }) => ( ) -export { IconPatternSharp as default } +export default IconPatternSharp diff --git a/src/IconPatternSharpFilled.tsx b/src/IconPatternSharpFilled.tsx index a169c5b5b..d592ff50f 100644 --- a/src/IconPatternSharpFilled.tsx +++ b/src/IconPatternSharpFilled.tsx @@ -8,4 +8,4 @@ const IconPatternSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconPatternSharpFilled as default } +export default IconPatternSharpFilled diff --git a/src/IconPauseCircleOutlined.tsx b/src/IconPauseCircleOutlined.tsx index fb80ac8b9..35bdae882 100644 --- a/src/IconPauseCircleOutlined.tsx +++ b/src/IconPauseCircleOutlined.tsx @@ -8,4 +8,4 @@ const IconPauseCircleOutlined: React.FC = ({ ...props }) => ( ) -export { IconPauseCircleOutlined as default } +export default IconPauseCircleOutlined diff --git a/src/IconPauseCircleOutlinedFilled.tsx b/src/IconPauseCircleOutlinedFilled.tsx index 2d44cda5e..78147bd69 100644 --- a/src/IconPauseCircleOutlinedFilled.tsx +++ b/src/IconPauseCircleOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconPauseCircleOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconPauseCircleOutlinedFilled as default } +export default IconPauseCircleOutlinedFilled diff --git a/src/IconPauseCircleRounded.tsx b/src/IconPauseCircleRounded.tsx index 1f8bbf1e0..5eae13d1e 100644 --- a/src/IconPauseCircleRounded.tsx +++ b/src/IconPauseCircleRounded.tsx @@ -8,4 +8,4 @@ const IconPauseCircleRounded: React.FC = ({ ...props }) => ( ) -export { IconPauseCircleRounded as default } +export default IconPauseCircleRounded diff --git a/src/IconPauseCircleRoundedFilled.tsx b/src/IconPauseCircleRoundedFilled.tsx index 4b261c2b1..c236d2737 100644 --- a/src/IconPauseCircleRoundedFilled.tsx +++ b/src/IconPauseCircleRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconPauseCircleRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconPauseCircleRoundedFilled as default } +export default IconPauseCircleRoundedFilled diff --git a/src/IconPauseCircleSharp.tsx b/src/IconPauseCircleSharp.tsx index b32bb2f28..2eceff148 100644 --- a/src/IconPauseCircleSharp.tsx +++ b/src/IconPauseCircleSharp.tsx @@ -8,4 +8,4 @@ const IconPauseCircleSharp: React.FC = ({ ...props }) => ( ) -export { IconPauseCircleSharp as default } +export default IconPauseCircleSharp diff --git a/src/IconPauseCircleSharpFilled.tsx b/src/IconPauseCircleSharpFilled.tsx index a45fef480..a7ea75c3f 100644 --- a/src/IconPauseCircleSharpFilled.tsx +++ b/src/IconPauseCircleSharpFilled.tsx @@ -8,4 +8,4 @@ const IconPauseCircleSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconPauseCircleSharpFilled as default } +export default IconPauseCircleSharpFilled diff --git a/src/IconPauseOutlined.tsx b/src/IconPauseOutlined.tsx index 5caf0d70b..5d1cf76d7 100644 --- a/src/IconPauseOutlined.tsx +++ b/src/IconPauseOutlined.tsx @@ -8,4 +8,4 @@ const IconPauseOutlined: React.FC = ({ ...props }) => ( ) -export { IconPauseOutlined as default } +export default IconPauseOutlined diff --git a/src/IconPauseOutlinedFilled.tsx b/src/IconPauseOutlinedFilled.tsx index e8e64819a..712f37494 100644 --- a/src/IconPauseOutlinedFilled.tsx +++ b/src/IconPauseOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconPauseOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconPauseOutlinedFilled as default } +export default IconPauseOutlinedFilled diff --git a/src/IconPausePresentationOutlined.tsx b/src/IconPausePresentationOutlined.tsx index cc18b995d..cb01ce123 100644 --- a/src/IconPausePresentationOutlined.tsx +++ b/src/IconPausePresentationOutlined.tsx @@ -8,4 +8,4 @@ const IconPausePresentationOutlined: React.FC = ({ ...props }) => ( ) -export { IconPausePresentationOutlined as default } +export default IconPausePresentationOutlined diff --git a/src/IconPausePresentationOutlinedFilled.tsx b/src/IconPausePresentationOutlinedFilled.tsx index 0a6068541..4e4a58b99 100644 --- a/src/IconPausePresentationOutlinedFilled.tsx +++ b/src/IconPausePresentationOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconPausePresentationOutlinedFilled: React.FC = ({ ) -export { IconPausePresentationOutlinedFilled as default } +export default IconPausePresentationOutlinedFilled diff --git a/src/IconPausePresentationRounded.tsx b/src/IconPausePresentationRounded.tsx index 8697178e0..f1263ebf2 100644 --- a/src/IconPausePresentationRounded.tsx +++ b/src/IconPausePresentationRounded.tsx @@ -8,4 +8,4 @@ const IconPausePresentationRounded: React.FC = ({ ...props }) => ( ) -export { IconPausePresentationRounded as default } +export default IconPausePresentationRounded diff --git a/src/IconPausePresentationRoundedFilled.tsx b/src/IconPausePresentationRoundedFilled.tsx index 53517969f..0a8bf1266 100644 --- a/src/IconPausePresentationRoundedFilled.tsx +++ b/src/IconPausePresentationRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconPausePresentationRoundedFilled: React.FC = ({ ) -export { IconPausePresentationRoundedFilled as default } +export default IconPausePresentationRoundedFilled diff --git a/src/IconPausePresentationSharp.tsx b/src/IconPausePresentationSharp.tsx index 2ab8054a4..bcf7a5471 100644 --- a/src/IconPausePresentationSharp.tsx +++ b/src/IconPausePresentationSharp.tsx @@ -8,4 +8,4 @@ const IconPausePresentationSharp: React.FC = ({ ...props }) => ( ) -export { IconPausePresentationSharp as default } +export default IconPausePresentationSharp diff --git a/src/IconPausePresentationSharpFilled.tsx b/src/IconPausePresentationSharpFilled.tsx index d316647a7..0efa08dba 100644 --- a/src/IconPausePresentationSharpFilled.tsx +++ b/src/IconPausePresentationSharpFilled.tsx @@ -10,4 +10,4 @@ const IconPausePresentationSharpFilled: React.FC = ({ ) -export { IconPausePresentationSharpFilled as default } +export default IconPausePresentationSharpFilled diff --git a/src/IconPauseRounded.tsx b/src/IconPauseRounded.tsx index e11358256..25c76d86c 100644 --- a/src/IconPauseRounded.tsx +++ b/src/IconPauseRounded.tsx @@ -8,4 +8,4 @@ const IconPauseRounded: React.FC = ({ ...props }) => ( ) -export { IconPauseRounded as default } +export default IconPauseRounded diff --git a/src/IconPauseRoundedFilled.tsx b/src/IconPauseRoundedFilled.tsx index 2f4340c2c..5f42e367c 100644 --- a/src/IconPauseRoundedFilled.tsx +++ b/src/IconPauseRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconPauseRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconPauseRoundedFilled as default } +export default IconPauseRoundedFilled diff --git a/src/IconPauseSharp.tsx b/src/IconPauseSharp.tsx index 85c04457e..a754f675a 100644 --- a/src/IconPauseSharp.tsx +++ b/src/IconPauseSharp.tsx @@ -8,4 +8,4 @@ const IconPauseSharp: React.FC = ({ ...props }) => ( ) -export { IconPauseSharp as default } +export default IconPauseSharp diff --git a/src/IconPauseSharpFilled.tsx b/src/IconPauseSharpFilled.tsx index 87fc65033..6305357c5 100644 --- a/src/IconPauseSharpFilled.tsx +++ b/src/IconPauseSharpFilled.tsx @@ -8,4 +8,4 @@ const IconPauseSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconPauseSharpFilled as default } +export default IconPauseSharpFilled diff --git a/src/IconPaymentsOutlined.tsx b/src/IconPaymentsOutlined.tsx index 3e2c44a61..829f0c399 100644 --- a/src/IconPaymentsOutlined.tsx +++ b/src/IconPaymentsOutlined.tsx @@ -8,4 +8,4 @@ const IconPaymentsOutlined: React.FC = ({ ...props }) => ( ) -export { IconPaymentsOutlined as default } +export default IconPaymentsOutlined diff --git a/src/IconPaymentsOutlinedFilled.tsx b/src/IconPaymentsOutlinedFilled.tsx index 8467e0983..112ecf507 100644 --- a/src/IconPaymentsOutlinedFilled.tsx +++ b/src/IconPaymentsOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconPaymentsOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconPaymentsOutlinedFilled as default } +export default IconPaymentsOutlinedFilled diff --git a/src/IconPaymentsRounded.tsx b/src/IconPaymentsRounded.tsx index 620011655..70fbe8067 100644 --- a/src/IconPaymentsRounded.tsx +++ b/src/IconPaymentsRounded.tsx @@ -8,4 +8,4 @@ const IconPaymentsRounded: React.FC = ({ ...props }) => ( ) -export { IconPaymentsRounded as default } +export default IconPaymentsRounded diff --git a/src/IconPaymentsRoundedFilled.tsx b/src/IconPaymentsRoundedFilled.tsx index cd0c0e312..fa9e3cf82 100644 --- a/src/IconPaymentsRoundedFilled.tsx +++ b/src/IconPaymentsRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconPaymentsRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconPaymentsRoundedFilled as default } +export default IconPaymentsRoundedFilled diff --git a/src/IconPaymentsSharp.tsx b/src/IconPaymentsSharp.tsx index a46e47d1b..46ed60dc0 100644 --- a/src/IconPaymentsSharp.tsx +++ b/src/IconPaymentsSharp.tsx @@ -8,4 +8,4 @@ const IconPaymentsSharp: React.FC = ({ ...props }) => ( ) -export { IconPaymentsSharp as default } +export default IconPaymentsSharp diff --git a/src/IconPaymentsSharpFilled.tsx b/src/IconPaymentsSharpFilled.tsx index f5ebf8133..28a0041d2 100644 --- a/src/IconPaymentsSharpFilled.tsx +++ b/src/IconPaymentsSharpFilled.tsx @@ -8,4 +8,4 @@ const IconPaymentsSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconPaymentsSharpFilled as default } +export default IconPaymentsSharpFilled diff --git a/src/IconPedalBikeOutlined.tsx b/src/IconPedalBikeOutlined.tsx index 1e0b96844..f450afb67 100644 --- a/src/IconPedalBikeOutlined.tsx +++ b/src/IconPedalBikeOutlined.tsx @@ -8,4 +8,4 @@ const IconPedalBikeOutlined: React.FC = ({ ...props }) => ( ) -export { IconPedalBikeOutlined as default } +export default IconPedalBikeOutlined diff --git a/src/IconPedalBikeOutlinedFilled.tsx b/src/IconPedalBikeOutlinedFilled.tsx index 2e4b6f37d..0ea3defe8 100644 --- a/src/IconPedalBikeOutlinedFilled.tsx +++ b/src/IconPedalBikeOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconPedalBikeOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconPedalBikeOutlinedFilled as default } +export default IconPedalBikeOutlinedFilled diff --git a/src/IconPedalBikeRounded.tsx b/src/IconPedalBikeRounded.tsx index d6347ddf4..6008ca47b 100644 --- a/src/IconPedalBikeRounded.tsx +++ b/src/IconPedalBikeRounded.tsx @@ -8,4 +8,4 @@ const IconPedalBikeRounded: React.FC = ({ ...props }) => ( ) -export { IconPedalBikeRounded as default } +export default IconPedalBikeRounded diff --git a/src/IconPedalBikeRoundedFilled.tsx b/src/IconPedalBikeRoundedFilled.tsx index a71ea8c05..4544e4f7e 100644 --- a/src/IconPedalBikeRoundedFilled.tsx +++ b/src/IconPedalBikeRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconPedalBikeRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconPedalBikeRoundedFilled as default } +export default IconPedalBikeRoundedFilled diff --git a/src/IconPedalBikeSharp.tsx b/src/IconPedalBikeSharp.tsx index 031ed1826..257e71846 100644 --- a/src/IconPedalBikeSharp.tsx +++ b/src/IconPedalBikeSharp.tsx @@ -8,4 +8,4 @@ const IconPedalBikeSharp: React.FC = ({ ...props }) => ( ) -export { IconPedalBikeSharp as default } +export default IconPedalBikeSharp diff --git a/src/IconPedalBikeSharpFilled.tsx b/src/IconPedalBikeSharpFilled.tsx index 3a4fea860..5cfe7959f 100644 --- a/src/IconPedalBikeSharpFilled.tsx +++ b/src/IconPedalBikeSharpFilled.tsx @@ -8,4 +8,4 @@ const IconPedalBikeSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconPedalBikeSharpFilled as default } +export default IconPedalBikeSharpFilled diff --git a/src/IconPediatricsOutlined.tsx b/src/IconPediatricsOutlined.tsx index 048b09a6f..b87c4a3e3 100644 --- a/src/IconPediatricsOutlined.tsx +++ b/src/IconPediatricsOutlined.tsx @@ -8,4 +8,4 @@ const IconPediatricsOutlined: React.FC = ({ ...props }) => ( ) -export { IconPediatricsOutlined as default } +export default IconPediatricsOutlined diff --git a/src/IconPediatricsOutlinedFilled.tsx b/src/IconPediatricsOutlinedFilled.tsx index f76f9c6db..d4736353f 100644 --- a/src/IconPediatricsOutlinedFilled.tsx +++ b/src/IconPediatricsOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconPediatricsOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconPediatricsOutlinedFilled as default } +export default IconPediatricsOutlinedFilled diff --git a/src/IconPediatricsRounded.tsx b/src/IconPediatricsRounded.tsx index de348b5dc..edd270f79 100644 --- a/src/IconPediatricsRounded.tsx +++ b/src/IconPediatricsRounded.tsx @@ -8,4 +8,4 @@ const IconPediatricsRounded: React.FC = ({ ...props }) => ( ) -export { IconPediatricsRounded as default } +export default IconPediatricsRounded diff --git a/src/IconPediatricsRoundedFilled.tsx b/src/IconPediatricsRoundedFilled.tsx index c764ed328..6cbb6bc79 100644 --- a/src/IconPediatricsRoundedFilled.tsx +++ b/src/IconPediatricsRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconPediatricsRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconPediatricsRoundedFilled as default } +export default IconPediatricsRoundedFilled diff --git a/src/IconPediatricsSharp.tsx b/src/IconPediatricsSharp.tsx index 390fe95e0..ffacc99ed 100644 --- a/src/IconPediatricsSharp.tsx +++ b/src/IconPediatricsSharp.tsx @@ -8,4 +8,4 @@ const IconPediatricsSharp: React.FC = ({ ...props }) => ( ) -export { IconPediatricsSharp as default } +export default IconPediatricsSharp diff --git a/src/IconPediatricsSharpFilled.tsx b/src/IconPediatricsSharpFilled.tsx index 8941e8c74..4b2dcf7c9 100644 --- a/src/IconPediatricsSharpFilled.tsx +++ b/src/IconPediatricsSharpFilled.tsx @@ -8,4 +8,4 @@ const IconPediatricsSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconPediatricsSharpFilled as default } +export default IconPediatricsSharpFilled diff --git a/src/IconPenSize1Outlined.tsx b/src/IconPenSize1Outlined.tsx index 95ce3d3e1..ed767c185 100644 --- a/src/IconPenSize1Outlined.tsx +++ b/src/IconPenSize1Outlined.tsx @@ -8,4 +8,4 @@ const IconPenSize1Outlined: React.FC = ({ ...props }) => ( ) -export { IconPenSize1Outlined as default } +export default IconPenSize1Outlined diff --git a/src/IconPenSize1OutlinedFilled.tsx b/src/IconPenSize1OutlinedFilled.tsx index aa1070b33..ec00ac06c 100644 --- a/src/IconPenSize1OutlinedFilled.tsx +++ b/src/IconPenSize1OutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconPenSize1OutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconPenSize1OutlinedFilled as default } +export default IconPenSize1OutlinedFilled diff --git a/src/IconPenSize1Rounded.tsx b/src/IconPenSize1Rounded.tsx index c3d9cfec9..819a609e7 100644 --- a/src/IconPenSize1Rounded.tsx +++ b/src/IconPenSize1Rounded.tsx @@ -8,4 +8,4 @@ const IconPenSize1Rounded: React.FC = ({ ...props }) => ( ) -export { IconPenSize1Rounded as default } +export default IconPenSize1Rounded diff --git a/src/IconPenSize1RoundedFilled.tsx b/src/IconPenSize1RoundedFilled.tsx index d4e566b3e..0a84eeb68 100644 --- a/src/IconPenSize1RoundedFilled.tsx +++ b/src/IconPenSize1RoundedFilled.tsx @@ -8,4 +8,4 @@ const IconPenSize1RoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconPenSize1RoundedFilled as default } +export default IconPenSize1RoundedFilled diff --git a/src/IconPenSize1Sharp.tsx b/src/IconPenSize1Sharp.tsx index f29221a27..fa30dbef7 100644 --- a/src/IconPenSize1Sharp.tsx +++ b/src/IconPenSize1Sharp.tsx @@ -8,4 +8,4 @@ const IconPenSize1Sharp: React.FC = ({ ...props }) => ( ) -export { IconPenSize1Sharp as default } +export default IconPenSize1Sharp diff --git a/src/IconPenSize1SharpFilled.tsx b/src/IconPenSize1SharpFilled.tsx index 09172565a..95262c840 100644 --- a/src/IconPenSize1SharpFilled.tsx +++ b/src/IconPenSize1SharpFilled.tsx @@ -8,4 +8,4 @@ const IconPenSize1SharpFilled: React.FC = ({ ...props }) => ( ) -export { IconPenSize1SharpFilled as default } +export default IconPenSize1SharpFilled diff --git a/src/IconPenSize2Outlined.tsx b/src/IconPenSize2Outlined.tsx index 843ec36bc..51d1b001a 100644 --- a/src/IconPenSize2Outlined.tsx +++ b/src/IconPenSize2Outlined.tsx @@ -8,4 +8,4 @@ const IconPenSize2Outlined: React.FC = ({ ...props }) => ( ) -export { IconPenSize2Outlined as default } +export default IconPenSize2Outlined diff --git a/src/IconPenSize2OutlinedFilled.tsx b/src/IconPenSize2OutlinedFilled.tsx index cec2997e3..22d2adac7 100644 --- a/src/IconPenSize2OutlinedFilled.tsx +++ b/src/IconPenSize2OutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconPenSize2OutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconPenSize2OutlinedFilled as default } +export default IconPenSize2OutlinedFilled diff --git a/src/IconPenSize2Rounded.tsx b/src/IconPenSize2Rounded.tsx index 456a30a2e..eed2822fd 100644 --- a/src/IconPenSize2Rounded.tsx +++ b/src/IconPenSize2Rounded.tsx @@ -8,4 +8,4 @@ const IconPenSize2Rounded: React.FC = ({ ...props }) => ( ) -export { IconPenSize2Rounded as default } +export default IconPenSize2Rounded diff --git a/src/IconPenSize2RoundedFilled.tsx b/src/IconPenSize2RoundedFilled.tsx index 2082f1f5f..61bf28321 100644 --- a/src/IconPenSize2RoundedFilled.tsx +++ b/src/IconPenSize2RoundedFilled.tsx @@ -8,4 +8,4 @@ const IconPenSize2RoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconPenSize2RoundedFilled as default } +export default IconPenSize2RoundedFilled diff --git a/src/IconPenSize2Sharp.tsx b/src/IconPenSize2Sharp.tsx index 70bba0eb4..f3a4a656d 100644 --- a/src/IconPenSize2Sharp.tsx +++ b/src/IconPenSize2Sharp.tsx @@ -8,4 +8,4 @@ const IconPenSize2Sharp: React.FC = ({ ...props }) => ( ) -export { IconPenSize2Sharp as default } +export default IconPenSize2Sharp diff --git a/src/IconPenSize2SharpFilled.tsx b/src/IconPenSize2SharpFilled.tsx index 8f5f12c7c..173a04035 100644 --- a/src/IconPenSize2SharpFilled.tsx +++ b/src/IconPenSize2SharpFilled.tsx @@ -8,4 +8,4 @@ const IconPenSize2SharpFilled: React.FC = ({ ...props }) => ( ) -export { IconPenSize2SharpFilled as default } +export default IconPenSize2SharpFilled diff --git a/src/IconPenSize3Outlined.tsx b/src/IconPenSize3Outlined.tsx index 47fe74779..0c1488e83 100644 --- a/src/IconPenSize3Outlined.tsx +++ b/src/IconPenSize3Outlined.tsx @@ -8,4 +8,4 @@ const IconPenSize3Outlined: React.FC = ({ ...props }) => ( ) -export { IconPenSize3Outlined as default } +export default IconPenSize3Outlined diff --git a/src/IconPenSize3OutlinedFilled.tsx b/src/IconPenSize3OutlinedFilled.tsx index 22fbfa765..5e0d92eff 100644 --- a/src/IconPenSize3OutlinedFilled.tsx +++ b/src/IconPenSize3OutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconPenSize3OutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconPenSize3OutlinedFilled as default } +export default IconPenSize3OutlinedFilled diff --git a/src/IconPenSize3Rounded.tsx b/src/IconPenSize3Rounded.tsx index 8fa9d28d7..aec7e5ab1 100644 --- a/src/IconPenSize3Rounded.tsx +++ b/src/IconPenSize3Rounded.tsx @@ -8,4 +8,4 @@ const IconPenSize3Rounded: React.FC = ({ ...props }) => ( ) -export { IconPenSize3Rounded as default } +export default IconPenSize3Rounded diff --git a/src/IconPenSize3RoundedFilled.tsx b/src/IconPenSize3RoundedFilled.tsx index 40b66ef06..8ec532de9 100644 --- a/src/IconPenSize3RoundedFilled.tsx +++ b/src/IconPenSize3RoundedFilled.tsx @@ -8,4 +8,4 @@ const IconPenSize3RoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconPenSize3RoundedFilled as default } +export default IconPenSize3RoundedFilled diff --git a/src/IconPenSize3Sharp.tsx b/src/IconPenSize3Sharp.tsx index 84f5b5575..f32d6a84b 100644 --- a/src/IconPenSize3Sharp.tsx +++ b/src/IconPenSize3Sharp.tsx @@ -8,4 +8,4 @@ const IconPenSize3Sharp: React.FC = ({ ...props }) => ( ) -export { IconPenSize3Sharp as default } +export default IconPenSize3Sharp diff --git a/src/IconPenSize3SharpFilled.tsx b/src/IconPenSize3SharpFilled.tsx index 5494a9685..415f5535e 100644 --- a/src/IconPenSize3SharpFilled.tsx +++ b/src/IconPenSize3SharpFilled.tsx @@ -8,4 +8,4 @@ const IconPenSize3SharpFilled: React.FC = ({ ...props }) => ( ) -export { IconPenSize3SharpFilled as default } +export default IconPenSize3SharpFilled diff --git a/src/IconPenSize4Outlined.tsx b/src/IconPenSize4Outlined.tsx index 82f564386..668904fc9 100644 --- a/src/IconPenSize4Outlined.tsx +++ b/src/IconPenSize4Outlined.tsx @@ -8,4 +8,4 @@ const IconPenSize4Outlined: React.FC = ({ ...props }) => ( ) -export { IconPenSize4Outlined as default } +export default IconPenSize4Outlined diff --git a/src/IconPenSize4OutlinedFilled.tsx b/src/IconPenSize4OutlinedFilled.tsx index 63e5cb45b..b9107f3e8 100644 --- a/src/IconPenSize4OutlinedFilled.tsx +++ b/src/IconPenSize4OutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconPenSize4OutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconPenSize4OutlinedFilled as default } +export default IconPenSize4OutlinedFilled diff --git a/src/IconPenSize4Rounded.tsx b/src/IconPenSize4Rounded.tsx index 016e3606f..c7b7f43fe 100644 --- a/src/IconPenSize4Rounded.tsx +++ b/src/IconPenSize4Rounded.tsx @@ -8,4 +8,4 @@ const IconPenSize4Rounded: React.FC = ({ ...props }) => ( ) -export { IconPenSize4Rounded as default } +export default IconPenSize4Rounded diff --git a/src/IconPenSize4RoundedFilled.tsx b/src/IconPenSize4RoundedFilled.tsx index e97110853..43c65ffd8 100644 --- a/src/IconPenSize4RoundedFilled.tsx +++ b/src/IconPenSize4RoundedFilled.tsx @@ -8,4 +8,4 @@ const IconPenSize4RoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconPenSize4RoundedFilled as default } +export default IconPenSize4RoundedFilled diff --git a/src/IconPenSize4Sharp.tsx b/src/IconPenSize4Sharp.tsx index 232763681..2d7db05a7 100644 --- a/src/IconPenSize4Sharp.tsx +++ b/src/IconPenSize4Sharp.tsx @@ -8,4 +8,4 @@ const IconPenSize4Sharp: React.FC = ({ ...props }) => ( ) -export { IconPenSize4Sharp as default } +export default IconPenSize4Sharp diff --git a/src/IconPenSize4SharpFilled.tsx b/src/IconPenSize4SharpFilled.tsx index c67be2356..5006090b3 100644 --- a/src/IconPenSize4SharpFilled.tsx +++ b/src/IconPenSize4SharpFilled.tsx @@ -8,4 +8,4 @@ const IconPenSize4SharpFilled: React.FC = ({ ...props }) => ( ) -export { IconPenSize4SharpFilled as default } +export default IconPenSize4SharpFilled diff --git a/src/IconPenSize5Outlined.tsx b/src/IconPenSize5Outlined.tsx index 461e3a33e..d31099f46 100644 --- a/src/IconPenSize5Outlined.tsx +++ b/src/IconPenSize5Outlined.tsx @@ -8,4 +8,4 @@ const IconPenSize5Outlined: React.FC = ({ ...props }) => ( ) -export { IconPenSize5Outlined as default } +export default IconPenSize5Outlined diff --git a/src/IconPenSize5OutlinedFilled.tsx b/src/IconPenSize5OutlinedFilled.tsx index 1207b63b4..d6328c93c 100644 --- a/src/IconPenSize5OutlinedFilled.tsx +++ b/src/IconPenSize5OutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconPenSize5OutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconPenSize5OutlinedFilled as default } +export default IconPenSize5OutlinedFilled diff --git a/src/IconPenSize5Rounded.tsx b/src/IconPenSize5Rounded.tsx index 0c7f51e8c..4a8c9e140 100644 --- a/src/IconPenSize5Rounded.tsx +++ b/src/IconPenSize5Rounded.tsx @@ -8,4 +8,4 @@ const IconPenSize5Rounded: React.FC = ({ ...props }) => ( ) -export { IconPenSize5Rounded as default } +export default IconPenSize5Rounded diff --git a/src/IconPenSize5RoundedFilled.tsx b/src/IconPenSize5RoundedFilled.tsx index 05fda019c..f988fbad1 100644 --- a/src/IconPenSize5RoundedFilled.tsx +++ b/src/IconPenSize5RoundedFilled.tsx @@ -8,4 +8,4 @@ const IconPenSize5RoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconPenSize5RoundedFilled as default } +export default IconPenSize5RoundedFilled diff --git a/src/IconPenSize5Sharp.tsx b/src/IconPenSize5Sharp.tsx index 6957f43bb..6c5bda662 100644 --- a/src/IconPenSize5Sharp.tsx +++ b/src/IconPenSize5Sharp.tsx @@ -8,4 +8,4 @@ const IconPenSize5Sharp: React.FC = ({ ...props }) => ( ) -export { IconPenSize5Sharp as default } +export default IconPenSize5Sharp diff --git a/src/IconPenSize5SharpFilled.tsx b/src/IconPenSize5SharpFilled.tsx index ef29a89ee..9598638d1 100644 --- a/src/IconPenSize5SharpFilled.tsx +++ b/src/IconPenSize5SharpFilled.tsx @@ -8,4 +8,4 @@ const IconPenSize5SharpFilled: React.FC = ({ ...props }) => ( ) -export { IconPenSize5SharpFilled as default } +export default IconPenSize5SharpFilled diff --git a/src/IconPendingActionsOutlined.tsx b/src/IconPendingActionsOutlined.tsx index 632acafb3..94c2d7c6b 100644 --- a/src/IconPendingActionsOutlined.tsx +++ b/src/IconPendingActionsOutlined.tsx @@ -8,4 +8,4 @@ const IconPendingActionsOutlined: React.FC = ({ ...props }) => ( ) -export { IconPendingActionsOutlined as default } +export default IconPendingActionsOutlined diff --git a/src/IconPendingActionsOutlinedFilled.tsx b/src/IconPendingActionsOutlinedFilled.tsx index d3fb633bf..c5290094e 100644 --- a/src/IconPendingActionsOutlinedFilled.tsx +++ b/src/IconPendingActionsOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconPendingActionsOutlinedFilled: React.FC = ({ ) -export { IconPendingActionsOutlinedFilled as default } +export default IconPendingActionsOutlinedFilled diff --git a/src/IconPendingActionsRounded.tsx b/src/IconPendingActionsRounded.tsx index 0ed17702f..955a15bc8 100644 --- a/src/IconPendingActionsRounded.tsx +++ b/src/IconPendingActionsRounded.tsx @@ -8,4 +8,4 @@ const IconPendingActionsRounded: React.FC = ({ ...props }) => ( ) -export { IconPendingActionsRounded as default } +export default IconPendingActionsRounded diff --git a/src/IconPendingActionsRoundedFilled.tsx b/src/IconPendingActionsRoundedFilled.tsx index 1796b5f1b..05e89e576 100644 --- a/src/IconPendingActionsRoundedFilled.tsx +++ b/src/IconPendingActionsRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconPendingActionsRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconPendingActionsRoundedFilled as default } +export default IconPendingActionsRoundedFilled diff --git a/src/IconPendingActionsSharp.tsx b/src/IconPendingActionsSharp.tsx index c5fe2e024..5202759f0 100644 --- a/src/IconPendingActionsSharp.tsx +++ b/src/IconPendingActionsSharp.tsx @@ -8,4 +8,4 @@ const IconPendingActionsSharp: React.FC = ({ ...props }) => ( ) -export { IconPendingActionsSharp as default } +export default IconPendingActionsSharp diff --git a/src/IconPendingActionsSharpFilled.tsx b/src/IconPendingActionsSharpFilled.tsx index d527eb8ae..9583bab5b 100644 --- a/src/IconPendingActionsSharpFilled.tsx +++ b/src/IconPendingActionsSharpFilled.tsx @@ -8,4 +8,4 @@ const IconPendingActionsSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconPendingActionsSharpFilled as default } +export default IconPendingActionsSharpFilled diff --git a/src/IconPendingOutlined.tsx b/src/IconPendingOutlined.tsx index 2c7d27b8a..9af88e494 100644 --- a/src/IconPendingOutlined.tsx +++ b/src/IconPendingOutlined.tsx @@ -8,4 +8,4 @@ const IconPendingOutlined: React.FC = ({ ...props }) => ( ) -export { IconPendingOutlined as default } +export default IconPendingOutlined diff --git a/src/IconPendingOutlinedFilled.tsx b/src/IconPendingOutlinedFilled.tsx index 8dd441d91..46c380541 100644 --- a/src/IconPendingOutlinedFilled.tsx +++ b/src/IconPendingOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconPendingOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconPendingOutlinedFilled as default } +export default IconPendingOutlinedFilled diff --git a/src/IconPendingRounded.tsx b/src/IconPendingRounded.tsx index 34a35e3a7..f14e3a0e4 100644 --- a/src/IconPendingRounded.tsx +++ b/src/IconPendingRounded.tsx @@ -8,4 +8,4 @@ const IconPendingRounded: React.FC = ({ ...props }) => ( ) -export { IconPendingRounded as default } +export default IconPendingRounded diff --git a/src/IconPendingRoundedFilled.tsx b/src/IconPendingRoundedFilled.tsx index 6139a80c6..1ed0666f9 100644 --- a/src/IconPendingRoundedFilled.tsx +++ b/src/IconPendingRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconPendingRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconPendingRoundedFilled as default } +export default IconPendingRoundedFilled diff --git a/src/IconPendingSharp.tsx b/src/IconPendingSharp.tsx index 953df036d..34b2e61b1 100644 --- a/src/IconPendingSharp.tsx +++ b/src/IconPendingSharp.tsx @@ -8,4 +8,4 @@ const IconPendingSharp: React.FC = ({ ...props }) => ( ) -export { IconPendingSharp as default } +export default IconPendingSharp diff --git a/src/IconPendingSharpFilled.tsx b/src/IconPendingSharpFilled.tsx index a6cb6b00a..5ae557c2e 100644 --- a/src/IconPendingSharpFilled.tsx +++ b/src/IconPendingSharpFilled.tsx @@ -8,4 +8,4 @@ const IconPendingSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconPendingSharpFilled as default } +export default IconPendingSharpFilled diff --git a/src/IconPentagonOutlined.tsx b/src/IconPentagonOutlined.tsx index 18388fca6..4534b082c 100644 --- a/src/IconPentagonOutlined.tsx +++ b/src/IconPentagonOutlined.tsx @@ -8,4 +8,4 @@ const IconPentagonOutlined: React.FC = ({ ...props }) => ( ) -export { IconPentagonOutlined as default } +export default IconPentagonOutlined diff --git a/src/IconPentagonOutlinedFilled.tsx b/src/IconPentagonOutlinedFilled.tsx index 8b7b94d88..09fe2b24c 100644 --- a/src/IconPentagonOutlinedFilled.tsx +++ b/src/IconPentagonOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconPentagonOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconPentagonOutlinedFilled as default } +export default IconPentagonOutlinedFilled diff --git a/src/IconPentagonRounded.tsx b/src/IconPentagonRounded.tsx index a9a1cd78f..991466a23 100644 --- a/src/IconPentagonRounded.tsx +++ b/src/IconPentagonRounded.tsx @@ -8,4 +8,4 @@ const IconPentagonRounded: React.FC = ({ ...props }) => ( ) -export { IconPentagonRounded as default } +export default IconPentagonRounded diff --git a/src/IconPentagonRoundedFilled.tsx b/src/IconPentagonRoundedFilled.tsx index ad9e3911b..63bb29163 100644 --- a/src/IconPentagonRoundedFilled.tsx +++ b/src/IconPentagonRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconPentagonRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconPentagonRoundedFilled as default } +export default IconPentagonRoundedFilled diff --git a/src/IconPentagonSharp.tsx b/src/IconPentagonSharp.tsx index d76d1790a..2e923046a 100644 --- a/src/IconPentagonSharp.tsx +++ b/src/IconPentagonSharp.tsx @@ -8,4 +8,4 @@ const IconPentagonSharp: React.FC = ({ ...props }) => ( ) -export { IconPentagonSharp as default } +export default IconPentagonSharp diff --git a/src/IconPentagonSharpFilled.tsx b/src/IconPentagonSharpFilled.tsx index 694c14770..6190787d3 100644 --- a/src/IconPentagonSharpFilled.tsx +++ b/src/IconPentagonSharpFilled.tsx @@ -8,4 +8,4 @@ const IconPentagonSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconPentagonSharpFilled as default } +export default IconPentagonSharpFilled diff --git a/src/IconPercentOutlined.tsx b/src/IconPercentOutlined.tsx index 55fc97f15..abab318e1 100644 --- a/src/IconPercentOutlined.tsx +++ b/src/IconPercentOutlined.tsx @@ -8,4 +8,4 @@ const IconPercentOutlined: React.FC = ({ ...props }) => ( ) -export { IconPercentOutlined as default } +export default IconPercentOutlined diff --git a/src/IconPercentOutlinedFilled.tsx b/src/IconPercentOutlinedFilled.tsx index 65bdf8010..75d3bd4a8 100644 --- a/src/IconPercentOutlinedFilled.tsx +++ b/src/IconPercentOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconPercentOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconPercentOutlinedFilled as default } +export default IconPercentOutlinedFilled diff --git a/src/IconPercentRounded.tsx b/src/IconPercentRounded.tsx index b1ea5b316..ddb54e8e7 100644 --- a/src/IconPercentRounded.tsx +++ b/src/IconPercentRounded.tsx @@ -8,4 +8,4 @@ const IconPercentRounded: React.FC = ({ ...props }) => ( ) -export { IconPercentRounded as default } +export default IconPercentRounded diff --git a/src/IconPercentRoundedFilled.tsx b/src/IconPercentRoundedFilled.tsx index 2fa93f401..77c1af3fb 100644 --- a/src/IconPercentRoundedFilled.tsx +++ b/src/IconPercentRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconPercentRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconPercentRoundedFilled as default } +export default IconPercentRoundedFilled diff --git a/src/IconPercentSharp.tsx b/src/IconPercentSharp.tsx index 0c7837c13..567ba060b 100644 --- a/src/IconPercentSharp.tsx +++ b/src/IconPercentSharp.tsx @@ -8,4 +8,4 @@ const IconPercentSharp: React.FC = ({ ...props }) => ( ) -export { IconPercentSharp as default } +export default IconPercentSharp diff --git a/src/IconPercentSharpFilled.tsx b/src/IconPercentSharpFilled.tsx index 5455ab61b..97bdcbfa7 100644 --- a/src/IconPercentSharpFilled.tsx +++ b/src/IconPercentSharpFilled.tsx @@ -8,4 +8,4 @@ const IconPercentSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconPercentSharpFilled as default } +export default IconPercentSharpFilled diff --git a/src/IconPergolaOutlined.tsx b/src/IconPergolaOutlined.tsx index 2eb14f146..769ecd978 100644 --- a/src/IconPergolaOutlined.tsx +++ b/src/IconPergolaOutlined.tsx @@ -8,4 +8,4 @@ const IconPergolaOutlined: React.FC = ({ ...props }) => ( ) -export { IconPergolaOutlined as default } +export default IconPergolaOutlined diff --git a/src/IconPergolaOutlinedFilled.tsx b/src/IconPergolaOutlinedFilled.tsx index b379a13bc..7b542a256 100644 --- a/src/IconPergolaOutlinedFilled.tsx +++ b/src/IconPergolaOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconPergolaOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconPergolaOutlinedFilled as default } +export default IconPergolaOutlinedFilled diff --git a/src/IconPergolaRounded.tsx b/src/IconPergolaRounded.tsx index 42abe4fb2..accc6e7d1 100644 --- a/src/IconPergolaRounded.tsx +++ b/src/IconPergolaRounded.tsx @@ -8,4 +8,4 @@ const IconPergolaRounded: React.FC = ({ ...props }) => ( ) -export { IconPergolaRounded as default } +export default IconPergolaRounded diff --git a/src/IconPergolaRoundedFilled.tsx b/src/IconPergolaRoundedFilled.tsx index 0b37accec..9dbf9b921 100644 --- a/src/IconPergolaRoundedFilled.tsx +++ b/src/IconPergolaRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconPergolaRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconPergolaRoundedFilled as default } +export default IconPergolaRoundedFilled diff --git a/src/IconPergolaSharp.tsx b/src/IconPergolaSharp.tsx index c6d3f4b83..061912d1e 100644 --- a/src/IconPergolaSharp.tsx +++ b/src/IconPergolaSharp.tsx @@ -8,4 +8,4 @@ const IconPergolaSharp: React.FC = ({ ...props }) => ( ) -export { IconPergolaSharp as default } +export default IconPergolaSharp diff --git a/src/IconPergolaSharpFilled.tsx b/src/IconPergolaSharpFilled.tsx index 392b3034e..3b153b9fe 100644 --- a/src/IconPergolaSharpFilled.tsx +++ b/src/IconPergolaSharpFilled.tsx @@ -8,4 +8,4 @@ const IconPergolaSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconPergolaSharpFilled as default } +export default IconPergolaSharpFilled diff --git a/src/IconPermCameraMicOutlined.tsx b/src/IconPermCameraMicOutlined.tsx index 8095f3d9d..ccad82051 100644 --- a/src/IconPermCameraMicOutlined.tsx +++ b/src/IconPermCameraMicOutlined.tsx @@ -8,4 +8,4 @@ const IconPermCameraMicOutlined: React.FC = ({ ...props }) => ( ) -export { IconPermCameraMicOutlined as default } +export default IconPermCameraMicOutlined diff --git a/src/IconPermCameraMicOutlinedFilled.tsx b/src/IconPermCameraMicOutlinedFilled.tsx index fd1d7287e..a8d0ab3c5 100644 --- a/src/IconPermCameraMicOutlinedFilled.tsx +++ b/src/IconPermCameraMicOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconPermCameraMicOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconPermCameraMicOutlinedFilled as default } +export default IconPermCameraMicOutlinedFilled diff --git a/src/IconPermCameraMicRounded.tsx b/src/IconPermCameraMicRounded.tsx index d7e50b72b..a93fec998 100644 --- a/src/IconPermCameraMicRounded.tsx +++ b/src/IconPermCameraMicRounded.tsx @@ -8,4 +8,4 @@ const IconPermCameraMicRounded: React.FC = ({ ...props }) => ( ) -export { IconPermCameraMicRounded as default } +export default IconPermCameraMicRounded diff --git a/src/IconPermCameraMicRoundedFilled.tsx b/src/IconPermCameraMicRoundedFilled.tsx index 0dc96e966..9bed6e9c5 100644 --- a/src/IconPermCameraMicRoundedFilled.tsx +++ b/src/IconPermCameraMicRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconPermCameraMicRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconPermCameraMicRoundedFilled as default } +export default IconPermCameraMicRoundedFilled diff --git a/src/IconPermCameraMicSharp.tsx b/src/IconPermCameraMicSharp.tsx index b1bec6940..1a5cfa3fd 100644 --- a/src/IconPermCameraMicSharp.tsx +++ b/src/IconPermCameraMicSharp.tsx @@ -8,4 +8,4 @@ const IconPermCameraMicSharp: React.FC = ({ ...props }) => ( ) -export { IconPermCameraMicSharp as default } +export default IconPermCameraMicSharp diff --git a/src/IconPermCameraMicSharpFilled.tsx b/src/IconPermCameraMicSharpFilled.tsx index c433c35b7..51c869455 100644 --- a/src/IconPermCameraMicSharpFilled.tsx +++ b/src/IconPermCameraMicSharpFilled.tsx @@ -8,4 +8,4 @@ const IconPermCameraMicSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconPermCameraMicSharpFilled as default } +export default IconPermCameraMicSharpFilled diff --git a/src/IconPermContactCalendarOutlined.tsx b/src/IconPermContactCalendarOutlined.tsx index dd15d64ee..a69898739 100644 --- a/src/IconPermContactCalendarOutlined.tsx +++ b/src/IconPermContactCalendarOutlined.tsx @@ -8,4 +8,4 @@ const IconPermContactCalendarOutlined: React.FC = ({ ...props }) => ( ) -export { IconPermContactCalendarOutlined as default } +export default IconPermContactCalendarOutlined diff --git a/src/IconPermContactCalendarOutlinedFilled.tsx b/src/IconPermContactCalendarOutlinedFilled.tsx index 96c2d8834..fdf87a4ca 100644 --- a/src/IconPermContactCalendarOutlinedFilled.tsx +++ b/src/IconPermContactCalendarOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconPermContactCalendarOutlinedFilled: React.FC = ({ ) -export { IconPermContactCalendarOutlinedFilled as default } +export default IconPermContactCalendarOutlinedFilled diff --git a/src/IconPermContactCalendarRounded.tsx b/src/IconPermContactCalendarRounded.tsx index 5590f63ec..84e738b45 100644 --- a/src/IconPermContactCalendarRounded.tsx +++ b/src/IconPermContactCalendarRounded.tsx @@ -8,4 +8,4 @@ const IconPermContactCalendarRounded: React.FC = ({ ...props }) => ( ) -export { IconPermContactCalendarRounded as default } +export default IconPermContactCalendarRounded diff --git a/src/IconPermContactCalendarRoundedFilled.tsx b/src/IconPermContactCalendarRoundedFilled.tsx index d579cf9a3..e9af8787d 100644 --- a/src/IconPermContactCalendarRoundedFilled.tsx +++ b/src/IconPermContactCalendarRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconPermContactCalendarRoundedFilled: React.FC = ({ ) -export { IconPermContactCalendarRoundedFilled as default } +export default IconPermContactCalendarRoundedFilled diff --git a/src/IconPermContactCalendarSharp.tsx b/src/IconPermContactCalendarSharp.tsx index c661f627f..9f4eb86c2 100644 --- a/src/IconPermContactCalendarSharp.tsx +++ b/src/IconPermContactCalendarSharp.tsx @@ -8,4 +8,4 @@ const IconPermContactCalendarSharp: React.FC = ({ ...props }) => ( ) -export { IconPermContactCalendarSharp as default } +export default IconPermContactCalendarSharp diff --git a/src/IconPermContactCalendarSharpFilled.tsx b/src/IconPermContactCalendarSharpFilled.tsx index b03a8b784..06ff606a2 100644 --- a/src/IconPermContactCalendarSharpFilled.tsx +++ b/src/IconPermContactCalendarSharpFilled.tsx @@ -10,4 +10,4 @@ const IconPermContactCalendarSharpFilled: React.FC = ({ ) -export { IconPermContactCalendarSharpFilled as default } +export default IconPermContactCalendarSharpFilled diff --git a/src/IconPermDataSettingOutlined.tsx b/src/IconPermDataSettingOutlined.tsx index 1e874ef82..6d7f52dd3 100644 --- a/src/IconPermDataSettingOutlined.tsx +++ b/src/IconPermDataSettingOutlined.tsx @@ -8,4 +8,4 @@ const IconPermDataSettingOutlined: React.FC = ({ ...props }) => ( ) -export { IconPermDataSettingOutlined as default } +export default IconPermDataSettingOutlined diff --git a/src/IconPermDataSettingOutlinedFilled.tsx b/src/IconPermDataSettingOutlinedFilled.tsx index 135c5d681..c2f9cc81b 100644 --- a/src/IconPermDataSettingOutlinedFilled.tsx +++ b/src/IconPermDataSettingOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconPermDataSettingOutlinedFilled: React.FC = ({ ) -export { IconPermDataSettingOutlinedFilled as default } +export default IconPermDataSettingOutlinedFilled diff --git a/src/IconPermDataSettingRounded.tsx b/src/IconPermDataSettingRounded.tsx index 32385314a..914655bdb 100644 --- a/src/IconPermDataSettingRounded.tsx +++ b/src/IconPermDataSettingRounded.tsx @@ -8,4 +8,4 @@ const IconPermDataSettingRounded: React.FC = ({ ...props }) => ( ) -export { IconPermDataSettingRounded as default } +export default IconPermDataSettingRounded diff --git a/src/IconPermDataSettingRoundedFilled.tsx b/src/IconPermDataSettingRoundedFilled.tsx index 6c2497c87..39108885e 100644 --- a/src/IconPermDataSettingRoundedFilled.tsx +++ b/src/IconPermDataSettingRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconPermDataSettingRoundedFilled: React.FC = ({ ) -export { IconPermDataSettingRoundedFilled as default } +export default IconPermDataSettingRoundedFilled diff --git a/src/IconPermDataSettingSharp.tsx b/src/IconPermDataSettingSharp.tsx index 7649e454a..95297ebd0 100644 --- a/src/IconPermDataSettingSharp.tsx +++ b/src/IconPermDataSettingSharp.tsx @@ -8,4 +8,4 @@ const IconPermDataSettingSharp: React.FC = ({ ...props }) => ( ) -export { IconPermDataSettingSharp as default } +export default IconPermDataSettingSharp diff --git a/src/IconPermDataSettingSharpFilled.tsx b/src/IconPermDataSettingSharpFilled.tsx index fe170b91e..033a2900a 100644 --- a/src/IconPermDataSettingSharpFilled.tsx +++ b/src/IconPermDataSettingSharpFilled.tsx @@ -8,4 +8,4 @@ const IconPermDataSettingSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconPermDataSettingSharpFilled as default } +export default IconPermDataSettingSharpFilled diff --git a/src/IconPermDeviceInformationOutlined.tsx b/src/IconPermDeviceInformationOutlined.tsx index e2c1693ab..86098b614 100644 --- a/src/IconPermDeviceInformationOutlined.tsx +++ b/src/IconPermDeviceInformationOutlined.tsx @@ -10,4 +10,4 @@ const IconPermDeviceInformationOutlined: React.FC = ({ ) -export { IconPermDeviceInformationOutlined as default } +export default IconPermDeviceInformationOutlined diff --git a/src/IconPermDeviceInformationOutlinedFilled.tsx b/src/IconPermDeviceInformationOutlinedFilled.tsx index 58691f261..9616848d0 100644 --- a/src/IconPermDeviceInformationOutlinedFilled.tsx +++ b/src/IconPermDeviceInformationOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconPermDeviceInformationOutlinedFilled: React.FC = ({ ) -export { IconPermDeviceInformationOutlinedFilled as default } +export default IconPermDeviceInformationOutlinedFilled diff --git a/src/IconPermDeviceInformationRounded.tsx b/src/IconPermDeviceInformationRounded.tsx index 662b88473..f8d5639cc 100644 --- a/src/IconPermDeviceInformationRounded.tsx +++ b/src/IconPermDeviceInformationRounded.tsx @@ -10,4 +10,4 @@ const IconPermDeviceInformationRounded: React.FC = ({ ) -export { IconPermDeviceInformationRounded as default } +export default IconPermDeviceInformationRounded diff --git a/src/IconPermDeviceInformationRoundedFilled.tsx b/src/IconPermDeviceInformationRoundedFilled.tsx index 7c34ccc94..8ee24a3f1 100644 --- a/src/IconPermDeviceInformationRoundedFilled.tsx +++ b/src/IconPermDeviceInformationRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconPermDeviceInformationRoundedFilled: React.FC = ({ ) -export { IconPermDeviceInformationRoundedFilled as default } +export default IconPermDeviceInformationRoundedFilled diff --git a/src/IconPermDeviceInformationSharp.tsx b/src/IconPermDeviceInformationSharp.tsx index 7fb013068..cd6a6d9fd 100644 --- a/src/IconPermDeviceInformationSharp.tsx +++ b/src/IconPermDeviceInformationSharp.tsx @@ -8,4 +8,4 @@ const IconPermDeviceInformationSharp: React.FC = ({ ...props }) => ( ) -export { IconPermDeviceInformationSharp as default } +export default IconPermDeviceInformationSharp diff --git a/src/IconPermDeviceInformationSharpFilled.tsx b/src/IconPermDeviceInformationSharpFilled.tsx index bb3607a64..da83f4602 100644 --- a/src/IconPermDeviceInformationSharpFilled.tsx +++ b/src/IconPermDeviceInformationSharpFilled.tsx @@ -10,4 +10,4 @@ const IconPermDeviceInformationSharpFilled: React.FC = ({ ) -export { IconPermDeviceInformationSharpFilled as default } +export default IconPermDeviceInformationSharpFilled diff --git a/src/IconPermMediaOutlined.tsx b/src/IconPermMediaOutlined.tsx index f34cc55e0..5d5604f61 100644 --- a/src/IconPermMediaOutlined.tsx +++ b/src/IconPermMediaOutlined.tsx @@ -8,4 +8,4 @@ const IconPermMediaOutlined: React.FC = ({ ...props }) => ( ) -export { IconPermMediaOutlined as default } +export default IconPermMediaOutlined diff --git a/src/IconPermMediaOutlinedFilled.tsx b/src/IconPermMediaOutlinedFilled.tsx index ec577f959..41501465a 100644 --- a/src/IconPermMediaOutlinedFilled.tsx +++ b/src/IconPermMediaOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconPermMediaOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconPermMediaOutlinedFilled as default } +export default IconPermMediaOutlinedFilled diff --git a/src/IconPermMediaRounded.tsx b/src/IconPermMediaRounded.tsx index f6c7ebdcc..731219a47 100644 --- a/src/IconPermMediaRounded.tsx +++ b/src/IconPermMediaRounded.tsx @@ -8,4 +8,4 @@ const IconPermMediaRounded: React.FC = ({ ...props }) => ( ) -export { IconPermMediaRounded as default } +export default IconPermMediaRounded diff --git a/src/IconPermMediaRoundedFilled.tsx b/src/IconPermMediaRoundedFilled.tsx index e788443ef..cedc4924f 100644 --- a/src/IconPermMediaRoundedFilled.tsx +++ b/src/IconPermMediaRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconPermMediaRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconPermMediaRoundedFilled as default } +export default IconPermMediaRoundedFilled diff --git a/src/IconPermMediaSharp.tsx b/src/IconPermMediaSharp.tsx index eff9b0cad..e3de5e478 100644 --- a/src/IconPermMediaSharp.tsx +++ b/src/IconPermMediaSharp.tsx @@ -8,4 +8,4 @@ const IconPermMediaSharp: React.FC = ({ ...props }) => ( ) -export { IconPermMediaSharp as default } +export default IconPermMediaSharp diff --git a/src/IconPermMediaSharpFilled.tsx b/src/IconPermMediaSharpFilled.tsx index 0a4e69a05..6b31600fe 100644 --- a/src/IconPermMediaSharpFilled.tsx +++ b/src/IconPermMediaSharpFilled.tsx @@ -8,4 +8,4 @@ const IconPermMediaSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconPermMediaSharpFilled as default } +export default IconPermMediaSharpFilled diff --git a/src/IconPermPhoneMsgOutlined.tsx b/src/IconPermPhoneMsgOutlined.tsx index ae7604d13..8a06b1104 100644 --- a/src/IconPermPhoneMsgOutlined.tsx +++ b/src/IconPermPhoneMsgOutlined.tsx @@ -8,4 +8,4 @@ const IconPermPhoneMsgOutlined: React.FC = ({ ...props }) => ( ) -export { IconPermPhoneMsgOutlined as default } +export default IconPermPhoneMsgOutlined diff --git a/src/IconPermPhoneMsgOutlinedFilled.tsx b/src/IconPermPhoneMsgOutlinedFilled.tsx index c1a1bb5ac..10deb0d80 100644 --- a/src/IconPermPhoneMsgOutlinedFilled.tsx +++ b/src/IconPermPhoneMsgOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconPermPhoneMsgOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconPermPhoneMsgOutlinedFilled as default } +export default IconPermPhoneMsgOutlinedFilled diff --git a/src/IconPermPhoneMsgRounded.tsx b/src/IconPermPhoneMsgRounded.tsx index c3b84dbb2..fc03a6f46 100644 --- a/src/IconPermPhoneMsgRounded.tsx +++ b/src/IconPermPhoneMsgRounded.tsx @@ -8,4 +8,4 @@ const IconPermPhoneMsgRounded: React.FC = ({ ...props }) => ( ) -export { IconPermPhoneMsgRounded as default } +export default IconPermPhoneMsgRounded diff --git a/src/IconPermPhoneMsgRoundedFilled.tsx b/src/IconPermPhoneMsgRoundedFilled.tsx index 9e9636e97..7f362d5a2 100644 --- a/src/IconPermPhoneMsgRoundedFilled.tsx +++ b/src/IconPermPhoneMsgRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconPermPhoneMsgRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconPermPhoneMsgRoundedFilled as default } +export default IconPermPhoneMsgRoundedFilled diff --git a/src/IconPermPhoneMsgSharp.tsx b/src/IconPermPhoneMsgSharp.tsx index b8b2bf9a2..ed6dfdc71 100644 --- a/src/IconPermPhoneMsgSharp.tsx +++ b/src/IconPermPhoneMsgSharp.tsx @@ -8,4 +8,4 @@ const IconPermPhoneMsgSharp: React.FC = ({ ...props }) => ( ) -export { IconPermPhoneMsgSharp as default } +export default IconPermPhoneMsgSharp diff --git a/src/IconPermPhoneMsgSharpFilled.tsx b/src/IconPermPhoneMsgSharpFilled.tsx index 3a0817abe..60607fbe7 100644 --- a/src/IconPermPhoneMsgSharpFilled.tsx +++ b/src/IconPermPhoneMsgSharpFilled.tsx @@ -8,4 +8,4 @@ const IconPermPhoneMsgSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconPermPhoneMsgSharpFilled as default } +export default IconPermPhoneMsgSharpFilled diff --git a/src/IconPermScanWifiOutlined.tsx b/src/IconPermScanWifiOutlined.tsx index e23a52783..6b82d7c2f 100644 --- a/src/IconPermScanWifiOutlined.tsx +++ b/src/IconPermScanWifiOutlined.tsx @@ -8,4 +8,4 @@ const IconPermScanWifiOutlined: React.FC = ({ ...props }) => ( ) -export { IconPermScanWifiOutlined as default } +export default IconPermScanWifiOutlined diff --git a/src/IconPermScanWifiOutlinedFilled.tsx b/src/IconPermScanWifiOutlinedFilled.tsx index 15ea66f44..68bef22b6 100644 --- a/src/IconPermScanWifiOutlinedFilled.tsx +++ b/src/IconPermScanWifiOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconPermScanWifiOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconPermScanWifiOutlinedFilled as default } +export default IconPermScanWifiOutlinedFilled diff --git a/src/IconPermScanWifiRounded.tsx b/src/IconPermScanWifiRounded.tsx index 3dafbe319..f8bb34192 100644 --- a/src/IconPermScanWifiRounded.tsx +++ b/src/IconPermScanWifiRounded.tsx @@ -8,4 +8,4 @@ const IconPermScanWifiRounded: React.FC = ({ ...props }) => ( ) -export { IconPermScanWifiRounded as default } +export default IconPermScanWifiRounded diff --git a/src/IconPermScanWifiRoundedFilled.tsx b/src/IconPermScanWifiRoundedFilled.tsx index 610ae9db2..6e3f368c7 100644 --- a/src/IconPermScanWifiRoundedFilled.tsx +++ b/src/IconPermScanWifiRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconPermScanWifiRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconPermScanWifiRoundedFilled as default } +export default IconPermScanWifiRoundedFilled diff --git a/src/IconPermScanWifiSharp.tsx b/src/IconPermScanWifiSharp.tsx index 727ac0e01..d2c75bbf5 100644 --- a/src/IconPermScanWifiSharp.tsx +++ b/src/IconPermScanWifiSharp.tsx @@ -8,4 +8,4 @@ const IconPermScanWifiSharp: React.FC = ({ ...props }) => ( ) -export { IconPermScanWifiSharp as default } +export default IconPermScanWifiSharp diff --git a/src/IconPermScanWifiSharpFilled.tsx b/src/IconPermScanWifiSharpFilled.tsx index c00dc0cf2..9ff3ba174 100644 --- a/src/IconPermScanWifiSharpFilled.tsx +++ b/src/IconPermScanWifiSharpFilled.tsx @@ -8,4 +8,4 @@ const IconPermScanWifiSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconPermScanWifiSharpFilled as default } +export default IconPermScanWifiSharpFilled diff --git a/src/IconPerson2Outlined.tsx b/src/IconPerson2Outlined.tsx index 5228ece18..3beebe436 100644 --- a/src/IconPerson2Outlined.tsx +++ b/src/IconPerson2Outlined.tsx @@ -8,4 +8,4 @@ const IconPerson2Outlined: React.FC = ({ ...props }) => ( ) -export { IconPerson2Outlined as default } +export default IconPerson2Outlined diff --git a/src/IconPerson2OutlinedFilled.tsx b/src/IconPerson2OutlinedFilled.tsx index 191a2415a..1012a36a8 100644 --- a/src/IconPerson2OutlinedFilled.tsx +++ b/src/IconPerson2OutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconPerson2OutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconPerson2OutlinedFilled as default } +export default IconPerson2OutlinedFilled diff --git a/src/IconPerson2Rounded.tsx b/src/IconPerson2Rounded.tsx index b0235f77e..bde8d2bee 100644 --- a/src/IconPerson2Rounded.tsx +++ b/src/IconPerson2Rounded.tsx @@ -8,4 +8,4 @@ const IconPerson2Rounded: React.FC = ({ ...props }) => ( ) -export { IconPerson2Rounded as default } +export default IconPerson2Rounded diff --git a/src/IconPerson2RoundedFilled.tsx b/src/IconPerson2RoundedFilled.tsx index af8dc431a..eb2017950 100644 --- a/src/IconPerson2RoundedFilled.tsx +++ b/src/IconPerson2RoundedFilled.tsx @@ -8,4 +8,4 @@ const IconPerson2RoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconPerson2RoundedFilled as default } +export default IconPerson2RoundedFilled diff --git a/src/IconPerson2Sharp.tsx b/src/IconPerson2Sharp.tsx index 6fd01ae9e..4f4000308 100644 --- a/src/IconPerson2Sharp.tsx +++ b/src/IconPerson2Sharp.tsx @@ -8,4 +8,4 @@ const IconPerson2Sharp: React.FC = ({ ...props }) => ( ) -export { IconPerson2Sharp as default } +export default IconPerson2Sharp diff --git a/src/IconPerson2SharpFilled.tsx b/src/IconPerson2SharpFilled.tsx index 6966ace27..80ba148e0 100644 --- a/src/IconPerson2SharpFilled.tsx +++ b/src/IconPerson2SharpFilled.tsx @@ -8,4 +8,4 @@ const IconPerson2SharpFilled: React.FC = ({ ...props }) => ( ) -export { IconPerson2SharpFilled as default } +export default IconPerson2SharpFilled diff --git a/src/IconPerson3Outlined.tsx b/src/IconPerson3Outlined.tsx index 11de95a26..3c2d7c71d 100644 --- a/src/IconPerson3Outlined.tsx +++ b/src/IconPerson3Outlined.tsx @@ -8,4 +8,4 @@ const IconPerson3Outlined: React.FC = ({ ...props }) => ( ) -export { IconPerson3Outlined as default } +export default IconPerson3Outlined diff --git a/src/IconPerson3OutlinedFilled.tsx b/src/IconPerson3OutlinedFilled.tsx index ba2c3c6f2..9c0a66297 100644 --- a/src/IconPerson3OutlinedFilled.tsx +++ b/src/IconPerson3OutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconPerson3OutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconPerson3OutlinedFilled as default } +export default IconPerson3OutlinedFilled diff --git a/src/IconPerson3Rounded.tsx b/src/IconPerson3Rounded.tsx index 8e60fc4bf..72d36ef52 100644 --- a/src/IconPerson3Rounded.tsx +++ b/src/IconPerson3Rounded.tsx @@ -8,4 +8,4 @@ const IconPerson3Rounded: React.FC = ({ ...props }) => ( ) -export { IconPerson3Rounded as default } +export default IconPerson3Rounded diff --git a/src/IconPerson3RoundedFilled.tsx b/src/IconPerson3RoundedFilled.tsx index 17c3e9085..b67070ac0 100644 --- a/src/IconPerson3RoundedFilled.tsx +++ b/src/IconPerson3RoundedFilled.tsx @@ -8,4 +8,4 @@ const IconPerson3RoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconPerson3RoundedFilled as default } +export default IconPerson3RoundedFilled diff --git a/src/IconPerson3Sharp.tsx b/src/IconPerson3Sharp.tsx index 5adaf701e..fe0d8ac69 100644 --- a/src/IconPerson3Sharp.tsx +++ b/src/IconPerson3Sharp.tsx @@ -8,4 +8,4 @@ const IconPerson3Sharp: React.FC = ({ ...props }) => ( ) -export { IconPerson3Sharp as default } +export default IconPerson3Sharp diff --git a/src/IconPerson3SharpFilled.tsx b/src/IconPerson3SharpFilled.tsx index ed332c981..1c8b3dd56 100644 --- a/src/IconPerson3SharpFilled.tsx +++ b/src/IconPerson3SharpFilled.tsx @@ -8,4 +8,4 @@ const IconPerson3SharpFilled: React.FC = ({ ...props }) => ( ) -export { IconPerson3SharpFilled as default } +export default IconPerson3SharpFilled diff --git a/src/IconPerson4Outlined.tsx b/src/IconPerson4Outlined.tsx index 5edf29336..10f271ec9 100644 --- a/src/IconPerson4Outlined.tsx +++ b/src/IconPerson4Outlined.tsx @@ -8,4 +8,4 @@ const IconPerson4Outlined: React.FC = ({ ...props }) => ( ) -export { IconPerson4Outlined as default } +export default IconPerson4Outlined diff --git a/src/IconPerson4OutlinedFilled.tsx b/src/IconPerson4OutlinedFilled.tsx index 79fcd060a..c82013b6e 100644 --- a/src/IconPerson4OutlinedFilled.tsx +++ b/src/IconPerson4OutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconPerson4OutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconPerson4OutlinedFilled as default } +export default IconPerson4OutlinedFilled diff --git a/src/IconPerson4Rounded.tsx b/src/IconPerson4Rounded.tsx index b1fcab955..9c2ca375e 100644 --- a/src/IconPerson4Rounded.tsx +++ b/src/IconPerson4Rounded.tsx @@ -8,4 +8,4 @@ const IconPerson4Rounded: React.FC = ({ ...props }) => ( ) -export { IconPerson4Rounded as default } +export default IconPerson4Rounded diff --git a/src/IconPerson4RoundedFilled.tsx b/src/IconPerson4RoundedFilled.tsx index a04bbb99b..7db08b658 100644 --- a/src/IconPerson4RoundedFilled.tsx +++ b/src/IconPerson4RoundedFilled.tsx @@ -8,4 +8,4 @@ const IconPerson4RoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconPerson4RoundedFilled as default } +export default IconPerson4RoundedFilled diff --git a/src/IconPerson4Sharp.tsx b/src/IconPerson4Sharp.tsx index 3da1d62b5..33a089d4b 100644 --- a/src/IconPerson4Sharp.tsx +++ b/src/IconPerson4Sharp.tsx @@ -8,4 +8,4 @@ const IconPerson4Sharp: React.FC = ({ ...props }) => ( ) -export { IconPerson4Sharp as default } +export default IconPerson4Sharp diff --git a/src/IconPerson4SharpFilled.tsx b/src/IconPerson4SharpFilled.tsx index 8a03c3453..30c25642f 100644 --- a/src/IconPerson4SharpFilled.tsx +++ b/src/IconPerson4SharpFilled.tsx @@ -8,4 +8,4 @@ const IconPerson4SharpFilled: React.FC = ({ ...props }) => ( ) -export { IconPerson4SharpFilled as default } +export default IconPerson4SharpFilled diff --git a/src/IconPersonAddDisabledOutlined.tsx b/src/IconPersonAddDisabledOutlined.tsx index 2ce579858..246b66255 100644 --- a/src/IconPersonAddDisabledOutlined.tsx +++ b/src/IconPersonAddDisabledOutlined.tsx @@ -8,4 +8,4 @@ const IconPersonAddDisabledOutlined: React.FC = ({ ...props }) => ( ) -export { IconPersonAddDisabledOutlined as default } +export default IconPersonAddDisabledOutlined diff --git a/src/IconPersonAddDisabledOutlinedFilled.tsx b/src/IconPersonAddDisabledOutlinedFilled.tsx index 4519db1c0..3f37a53f0 100644 --- a/src/IconPersonAddDisabledOutlinedFilled.tsx +++ b/src/IconPersonAddDisabledOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconPersonAddDisabledOutlinedFilled: React.FC = ({ ) -export { IconPersonAddDisabledOutlinedFilled as default } +export default IconPersonAddDisabledOutlinedFilled diff --git a/src/IconPersonAddDisabledRounded.tsx b/src/IconPersonAddDisabledRounded.tsx index 5443e1e40..49e3e73d7 100644 --- a/src/IconPersonAddDisabledRounded.tsx +++ b/src/IconPersonAddDisabledRounded.tsx @@ -8,4 +8,4 @@ const IconPersonAddDisabledRounded: React.FC = ({ ...props }) => ( ) -export { IconPersonAddDisabledRounded as default } +export default IconPersonAddDisabledRounded diff --git a/src/IconPersonAddDisabledRoundedFilled.tsx b/src/IconPersonAddDisabledRoundedFilled.tsx index 1105e153d..55292f2e1 100644 --- a/src/IconPersonAddDisabledRoundedFilled.tsx +++ b/src/IconPersonAddDisabledRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconPersonAddDisabledRoundedFilled: React.FC = ({ ) -export { IconPersonAddDisabledRoundedFilled as default } +export default IconPersonAddDisabledRoundedFilled diff --git a/src/IconPersonAddDisabledSharp.tsx b/src/IconPersonAddDisabledSharp.tsx index 5f843558d..b392b8c8b 100644 --- a/src/IconPersonAddDisabledSharp.tsx +++ b/src/IconPersonAddDisabledSharp.tsx @@ -8,4 +8,4 @@ const IconPersonAddDisabledSharp: React.FC = ({ ...props }) => ( ) -export { IconPersonAddDisabledSharp as default } +export default IconPersonAddDisabledSharp diff --git a/src/IconPersonAddDisabledSharpFilled.tsx b/src/IconPersonAddDisabledSharpFilled.tsx index 6e85b6de4..676ad8364 100644 --- a/src/IconPersonAddDisabledSharpFilled.tsx +++ b/src/IconPersonAddDisabledSharpFilled.tsx @@ -10,4 +10,4 @@ const IconPersonAddDisabledSharpFilled: React.FC = ({ ) -export { IconPersonAddDisabledSharpFilled as default } +export default IconPersonAddDisabledSharpFilled diff --git a/src/IconPersonAddOutlined.tsx b/src/IconPersonAddOutlined.tsx index 87dd71c15..aa5197a5c 100644 --- a/src/IconPersonAddOutlined.tsx +++ b/src/IconPersonAddOutlined.tsx @@ -8,4 +8,4 @@ const IconPersonAddOutlined: React.FC = ({ ...props }) => ( ) -export { IconPersonAddOutlined as default } +export default IconPersonAddOutlined diff --git a/src/IconPersonAddOutlinedFilled.tsx b/src/IconPersonAddOutlinedFilled.tsx index 722c308a0..f3f8aaaf5 100644 --- a/src/IconPersonAddOutlinedFilled.tsx +++ b/src/IconPersonAddOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconPersonAddOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconPersonAddOutlinedFilled as default } +export default IconPersonAddOutlinedFilled diff --git a/src/IconPersonAddRounded.tsx b/src/IconPersonAddRounded.tsx index 8cad67d8e..83f774961 100644 --- a/src/IconPersonAddRounded.tsx +++ b/src/IconPersonAddRounded.tsx @@ -8,4 +8,4 @@ const IconPersonAddRounded: React.FC = ({ ...props }) => ( ) -export { IconPersonAddRounded as default } +export default IconPersonAddRounded diff --git a/src/IconPersonAddRoundedFilled.tsx b/src/IconPersonAddRoundedFilled.tsx index 718afe293..d6ea107be 100644 --- a/src/IconPersonAddRoundedFilled.tsx +++ b/src/IconPersonAddRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconPersonAddRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconPersonAddRoundedFilled as default } +export default IconPersonAddRoundedFilled diff --git a/src/IconPersonAddSharp.tsx b/src/IconPersonAddSharp.tsx index b1e0d7116..d8c9e7cba 100644 --- a/src/IconPersonAddSharp.tsx +++ b/src/IconPersonAddSharp.tsx @@ -8,4 +8,4 @@ const IconPersonAddSharp: React.FC = ({ ...props }) => ( ) -export { IconPersonAddSharp as default } +export default IconPersonAddSharp diff --git a/src/IconPersonAddSharpFilled.tsx b/src/IconPersonAddSharpFilled.tsx index 4b9f13438..966b171b5 100644 --- a/src/IconPersonAddSharpFilled.tsx +++ b/src/IconPersonAddSharpFilled.tsx @@ -8,4 +8,4 @@ const IconPersonAddSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconPersonAddSharpFilled as default } +export default IconPersonAddSharpFilled diff --git a/src/IconPersonAlertOutlined.tsx b/src/IconPersonAlertOutlined.tsx index feeeff8b4..ab54be138 100644 --- a/src/IconPersonAlertOutlined.tsx +++ b/src/IconPersonAlertOutlined.tsx @@ -8,4 +8,4 @@ const IconPersonAlertOutlined: React.FC = ({ ...props }) => ( ) -export { IconPersonAlertOutlined as default } +export default IconPersonAlertOutlined diff --git a/src/IconPersonAlertOutlinedFilled.tsx b/src/IconPersonAlertOutlinedFilled.tsx index 8672707d4..063a833c8 100644 --- a/src/IconPersonAlertOutlinedFilled.tsx +++ b/src/IconPersonAlertOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconPersonAlertOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconPersonAlertOutlinedFilled as default } +export default IconPersonAlertOutlinedFilled diff --git a/src/IconPersonAlertRounded.tsx b/src/IconPersonAlertRounded.tsx index 4309b9622..8340878ef 100644 --- a/src/IconPersonAlertRounded.tsx +++ b/src/IconPersonAlertRounded.tsx @@ -8,4 +8,4 @@ const IconPersonAlertRounded: React.FC = ({ ...props }) => ( ) -export { IconPersonAlertRounded as default } +export default IconPersonAlertRounded diff --git a/src/IconPersonAlertRoundedFilled.tsx b/src/IconPersonAlertRoundedFilled.tsx index 89480fd2f..b5ee839e3 100644 --- a/src/IconPersonAlertRoundedFilled.tsx +++ b/src/IconPersonAlertRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconPersonAlertRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconPersonAlertRoundedFilled as default } +export default IconPersonAlertRoundedFilled diff --git a/src/IconPersonAlertSharp.tsx b/src/IconPersonAlertSharp.tsx index 5a4b090d2..37c1aa6c3 100644 --- a/src/IconPersonAlertSharp.tsx +++ b/src/IconPersonAlertSharp.tsx @@ -8,4 +8,4 @@ const IconPersonAlertSharp: React.FC = ({ ...props }) => ( ) -export { IconPersonAlertSharp as default } +export default IconPersonAlertSharp diff --git a/src/IconPersonAlertSharpFilled.tsx b/src/IconPersonAlertSharpFilled.tsx index 5cebae859..8c0abec56 100644 --- a/src/IconPersonAlertSharpFilled.tsx +++ b/src/IconPersonAlertSharpFilled.tsx @@ -8,4 +8,4 @@ const IconPersonAlertSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconPersonAlertSharpFilled as default } +export default IconPersonAlertSharpFilled diff --git a/src/IconPersonApronOutlined.tsx b/src/IconPersonApronOutlined.tsx index 7743b914c..8cffa8949 100644 --- a/src/IconPersonApronOutlined.tsx +++ b/src/IconPersonApronOutlined.tsx @@ -8,4 +8,4 @@ const IconPersonApronOutlined: React.FC = ({ ...props }) => ( ) -export { IconPersonApronOutlined as default } +export default IconPersonApronOutlined diff --git a/src/IconPersonApronOutlinedFilled.tsx b/src/IconPersonApronOutlinedFilled.tsx index 1be640a28..0e3d24668 100644 --- a/src/IconPersonApronOutlinedFilled.tsx +++ b/src/IconPersonApronOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconPersonApronOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconPersonApronOutlinedFilled as default } +export default IconPersonApronOutlinedFilled diff --git a/src/IconPersonApronRounded.tsx b/src/IconPersonApronRounded.tsx index 9249eaf42..c21665d54 100644 --- a/src/IconPersonApronRounded.tsx +++ b/src/IconPersonApronRounded.tsx @@ -8,4 +8,4 @@ const IconPersonApronRounded: React.FC = ({ ...props }) => ( ) -export { IconPersonApronRounded as default } +export default IconPersonApronRounded diff --git a/src/IconPersonApronRoundedFilled.tsx b/src/IconPersonApronRoundedFilled.tsx index 55d349626..e4eb6f7bf 100644 --- a/src/IconPersonApronRoundedFilled.tsx +++ b/src/IconPersonApronRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconPersonApronRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconPersonApronRoundedFilled as default } +export default IconPersonApronRoundedFilled diff --git a/src/IconPersonApronSharp.tsx b/src/IconPersonApronSharp.tsx index 99a02d8aa..98d14da7d 100644 --- a/src/IconPersonApronSharp.tsx +++ b/src/IconPersonApronSharp.tsx @@ -8,4 +8,4 @@ const IconPersonApronSharp: React.FC = ({ ...props }) => ( ) -export { IconPersonApronSharp as default } +export default IconPersonApronSharp diff --git a/src/IconPersonApronSharpFilled.tsx b/src/IconPersonApronSharpFilled.tsx index 29197c517..90dc664ab 100644 --- a/src/IconPersonApronSharpFilled.tsx +++ b/src/IconPersonApronSharpFilled.tsx @@ -8,4 +8,4 @@ const IconPersonApronSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconPersonApronSharpFilled as default } +export default IconPersonApronSharpFilled diff --git a/src/IconPersonBookOutlined.tsx b/src/IconPersonBookOutlined.tsx index 9634d3b9b..96c5966aa 100644 --- a/src/IconPersonBookOutlined.tsx +++ b/src/IconPersonBookOutlined.tsx @@ -8,4 +8,4 @@ const IconPersonBookOutlined: React.FC = ({ ...props }) => ( ) -export { IconPersonBookOutlined as default } +export default IconPersonBookOutlined diff --git a/src/IconPersonBookOutlinedFilled.tsx b/src/IconPersonBookOutlinedFilled.tsx index f97f7ffce..9e5b98fa4 100644 --- a/src/IconPersonBookOutlinedFilled.tsx +++ b/src/IconPersonBookOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconPersonBookOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconPersonBookOutlinedFilled as default } +export default IconPersonBookOutlinedFilled diff --git a/src/IconPersonBookRounded.tsx b/src/IconPersonBookRounded.tsx index af5871c04..405da46eb 100644 --- a/src/IconPersonBookRounded.tsx +++ b/src/IconPersonBookRounded.tsx @@ -8,4 +8,4 @@ const IconPersonBookRounded: React.FC = ({ ...props }) => ( ) -export { IconPersonBookRounded as default } +export default IconPersonBookRounded diff --git a/src/IconPersonBookRoundedFilled.tsx b/src/IconPersonBookRoundedFilled.tsx index 87a51a9c3..4db41c498 100644 --- a/src/IconPersonBookRoundedFilled.tsx +++ b/src/IconPersonBookRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconPersonBookRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconPersonBookRoundedFilled as default } +export default IconPersonBookRoundedFilled diff --git a/src/IconPersonBookSharp.tsx b/src/IconPersonBookSharp.tsx index 848a20d2c..defffc9a6 100644 --- a/src/IconPersonBookSharp.tsx +++ b/src/IconPersonBookSharp.tsx @@ -8,4 +8,4 @@ const IconPersonBookSharp: React.FC = ({ ...props }) => ( ) -export { IconPersonBookSharp as default } +export default IconPersonBookSharp diff --git a/src/IconPersonBookSharpFilled.tsx b/src/IconPersonBookSharpFilled.tsx index e0121c5f7..b671bb46d 100644 --- a/src/IconPersonBookSharpFilled.tsx +++ b/src/IconPersonBookSharpFilled.tsx @@ -8,4 +8,4 @@ const IconPersonBookSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconPersonBookSharpFilled as default } +export default IconPersonBookSharpFilled diff --git a/src/IconPersonCancelOutlined.tsx b/src/IconPersonCancelOutlined.tsx index 03c5f4070..473063109 100644 --- a/src/IconPersonCancelOutlined.tsx +++ b/src/IconPersonCancelOutlined.tsx @@ -8,4 +8,4 @@ const IconPersonCancelOutlined: React.FC = ({ ...props }) => ( ) -export { IconPersonCancelOutlined as default } +export default IconPersonCancelOutlined diff --git a/src/IconPersonCancelOutlinedFilled.tsx b/src/IconPersonCancelOutlinedFilled.tsx index 94d454b3a..8c818873d 100644 --- a/src/IconPersonCancelOutlinedFilled.tsx +++ b/src/IconPersonCancelOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconPersonCancelOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconPersonCancelOutlinedFilled as default } +export default IconPersonCancelOutlinedFilled diff --git a/src/IconPersonCancelRounded.tsx b/src/IconPersonCancelRounded.tsx index 2f77c17c7..7a7d34761 100644 --- a/src/IconPersonCancelRounded.tsx +++ b/src/IconPersonCancelRounded.tsx @@ -8,4 +8,4 @@ const IconPersonCancelRounded: React.FC = ({ ...props }) => ( ) -export { IconPersonCancelRounded as default } +export default IconPersonCancelRounded diff --git a/src/IconPersonCancelRoundedFilled.tsx b/src/IconPersonCancelRoundedFilled.tsx index 5c45822ca..3a346bf04 100644 --- a/src/IconPersonCancelRoundedFilled.tsx +++ b/src/IconPersonCancelRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconPersonCancelRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconPersonCancelRoundedFilled as default } +export default IconPersonCancelRoundedFilled diff --git a/src/IconPersonCancelSharp.tsx b/src/IconPersonCancelSharp.tsx index 061bd2ea5..44d30ad51 100644 --- a/src/IconPersonCancelSharp.tsx +++ b/src/IconPersonCancelSharp.tsx @@ -8,4 +8,4 @@ const IconPersonCancelSharp: React.FC = ({ ...props }) => ( ) -export { IconPersonCancelSharp as default } +export default IconPersonCancelSharp diff --git a/src/IconPersonCancelSharpFilled.tsx b/src/IconPersonCancelSharpFilled.tsx index 800822efc..916f94ee3 100644 --- a/src/IconPersonCancelSharpFilled.tsx +++ b/src/IconPersonCancelSharpFilled.tsx @@ -8,4 +8,4 @@ const IconPersonCancelSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconPersonCancelSharpFilled as default } +export default IconPersonCancelSharpFilled diff --git a/src/IconPersonCelebrateOutlined.tsx b/src/IconPersonCelebrateOutlined.tsx index f2078f8b1..bdaec6fb2 100644 --- a/src/IconPersonCelebrateOutlined.tsx +++ b/src/IconPersonCelebrateOutlined.tsx @@ -8,4 +8,4 @@ const IconPersonCelebrateOutlined: React.FC = ({ ...props }) => ( ) -export { IconPersonCelebrateOutlined as default } +export default IconPersonCelebrateOutlined diff --git a/src/IconPersonCelebrateOutlinedFilled.tsx b/src/IconPersonCelebrateOutlinedFilled.tsx index 92dc9326c..9b2900de4 100644 --- a/src/IconPersonCelebrateOutlinedFilled.tsx +++ b/src/IconPersonCelebrateOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconPersonCelebrateOutlinedFilled: React.FC = ({ ) -export { IconPersonCelebrateOutlinedFilled as default } +export default IconPersonCelebrateOutlinedFilled diff --git a/src/IconPersonCelebrateRounded.tsx b/src/IconPersonCelebrateRounded.tsx index b821ec635..ce024024f 100644 --- a/src/IconPersonCelebrateRounded.tsx +++ b/src/IconPersonCelebrateRounded.tsx @@ -8,4 +8,4 @@ const IconPersonCelebrateRounded: React.FC = ({ ...props }) => ( ) -export { IconPersonCelebrateRounded as default } +export default IconPersonCelebrateRounded diff --git a/src/IconPersonCelebrateRoundedFilled.tsx b/src/IconPersonCelebrateRoundedFilled.tsx index e87a1f9a6..322793d6b 100644 --- a/src/IconPersonCelebrateRoundedFilled.tsx +++ b/src/IconPersonCelebrateRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconPersonCelebrateRoundedFilled: React.FC = ({ ) -export { IconPersonCelebrateRoundedFilled as default } +export default IconPersonCelebrateRoundedFilled diff --git a/src/IconPersonCelebrateSharp.tsx b/src/IconPersonCelebrateSharp.tsx index f561b405b..40e113898 100644 --- a/src/IconPersonCelebrateSharp.tsx +++ b/src/IconPersonCelebrateSharp.tsx @@ -8,4 +8,4 @@ const IconPersonCelebrateSharp: React.FC = ({ ...props }) => ( ) -export { IconPersonCelebrateSharp as default } +export default IconPersonCelebrateSharp diff --git a/src/IconPersonCelebrateSharpFilled.tsx b/src/IconPersonCelebrateSharpFilled.tsx index e54eedef5..71140df68 100644 --- a/src/IconPersonCelebrateSharpFilled.tsx +++ b/src/IconPersonCelebrateSharpFilled.tsx @@ -8,4 +8,4 @@ const IconPersonCelebrateSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconPersonCelebrateSharpFilled as default } +export default IconPersonCelebrateSharpFilled diff --git a/src/IconPersonCheckOutlined.tsx b/src/IconPersonCheckOutlined.tsx index d100dbcdf..df0c06905 100644 --- a/src/IconPersonCheckOutlined.tsx +++ b/src/IconPersonCheckOutlined.tsx @@ -8,4 +8,4 @@ const IconPersonCheckOutlined: React.FC = ({ ...props }) => ( ) -export { IconPersonCheckOutlined as default } +export default IconPersonCheckOutlined diff --git a/src/IconPersonCheckOutlinedFilled.tsx b/src/IconPersonCheckOutlinedFilled.tsx index e9ce60d4f..3757c799b 100644 --- a/src/IconPersonCheckOutlinedFilled.tsx +++ b/src/IconPersonCheckOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconPersonCheckOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconPersonCheckOutlinedFilled as default } +export default IconPersonCheckOutlinedFilled diff --git a/src/IconPersonCheckRounded.tsx b/src/IconPersonCheckRounded.tsx index 473787142..e5c17100b 100644 --- a/src/IconPersonCheckRounded.tsx +++ b/src/IconPersonCheckRounded.tsx @@ -8,4 +8,4 @@ const IconPersonCheckRounded: React.FC = ({ ...props }) => ( ) -export { IconPersonCheckRounded as default } +export default IconPersonCheckRounded diff --git a/src/IconPersonCheckRoundedFilled.tsx b/src/IconPersonCheckRoundedFilled.tsx index 254d2c1c0..4db110ec2 100644 --- a/src/IconPersonCheckRoundedFilled.tsx +++ b/src/IconPersonCheckRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconPersonCheckRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconPersonCheckRoundedFilled as default } +export default IconPersonCheckRoundedFilled diff --git a/src/IconPersonCheckSharp.tsx b/src/IconPersonCheckSharp.tsx index 7eb41c349..6bdc7d18d 100644 --- a/src/IconPersonCheckSharp.tsx +++ b/src/IconPersonCheckSharp.tsx @@ -8,4 +8,4 @@ const IconPersonCheckSharp: React.FC = ({ ...props }) => ( ) -export { IconPersonCheckSharp as default } +export default IconPersonCheckSharp diff --git a/src/IconPersonCheckSharpFilled.tsx b/src/IconPersonCheckSharpFilled.tsx index c260ebeda..c70f80ed9 100644 --- a/src/IconPersonCheckSharpFilled.tsx +++ b/src/IconPersonCheckSharpFilled.tsx @@ -8,4 +8,4 @@ const IconPersonCheckSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconPersonCheckSharpFilled as default } +export default IconPersonCheckSharpFilled diff --git a/src/IconPersonEditOutlined.tsx b/src/IconPersonEditOutlined.tsx index 560159cc0..01d2cc90f 100644 --- a/src/IconPersonEditOutlined.tsx +++ b/src/IconPersonEditOutlined.tsx @@ -8,4 +8,4 @@ const IconPersonEditOutlined: React.FC = ({ ...props }) => ( ) -export { IconPersonEditOutlined as default } +export default IconPersonEditOutlined diff --git a/src/IconPersonEditOutlinedFilled.tsx b/src/IconPersonEditOutlinedFilled.tsx index fa7381f6d..55bf29796 100644 --- a/src/IconPersonEditOutlinedFilled.tsx +++ b/src/IconPersonEditOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconPersonEditOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconPersonEditOutlinedFilled as default } +export default IconPersonEditOutlinedFilled diff --git a/src/IconPersonEditRounded.tsx b/src/IconPersonEditRounded.tsx index fd85e7afd..9f71f97cb 100644 --- a/src/IconPersonEditRounded.tsx +++ b/src/IconPersonEditRounded.tsx @@ -8,4 +8,4 @@ const IconPersonEditRounded: React.FC = ({ ...props }) => ( ) -export { IconPersonEditRounded as default } +export default IconPersonEditRounded diff --git a/src/IconPersonEditRoundedFilled.tsx b/src/IconPersonEditRoundedFilled.tsx index 0126e1d7f..90411547c 100644 --- a/src/IconPersonEditRoundedFilled.tsx +++ b/src/IconPersonEditRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconPersonEditRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconPersonEditRoundedFilled as default } +export default IconPersonEditRoundedFilled diff --git a/src/IconPersonEditSharp.tsx b/src/IconPersonEditSharp.tsx index 4a05ddc44..eb129a1ee 100644 --- a/src/IconPersonEditSharp.tsx +++ b/src/IconPersonEditSharp.tsx @@ -8,4 +8,4 @@ const IconPersonEditSharp: React.FC = ({ ...props }) => ( ) -export { IconPersonEditSharp as default } +export default IconPersonEditSharp diff --git a/src/IconPersonEditSharpFilled.tsx b/src/IconPersonEditSharpFilled.tsx index ee74af355..d4d268891 100644 --- a/src/IconPersonEditSharpFilled.tsx +++ b/src/IconPersonEditSharpFilled.tsx @@ -8,4 +8,4 @@ const IconPersonEditSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconPersonEditSharpFilled as default } +export default IconPersonEditSharpFilled diff --git a/src/IconPersonOffOutlined.tsx b/src/IconPersonOffOutlined.tsx index e86bc5bf2..f9c994fa0 100644 --- a/src/IconPersonOffOutlined.tsx +++ b/src/IconPersonOffOutlined.tsx @@ -8,4 +8,4 @@ const IconPersonOffOutlined: React.FC = ({ ...props }) => ( ) -export { IconPersonOffOutlined as default } +export default IconPersonOffOutlined diff --git a/src/IconPersonOffOutlinedFilled.tsx b/src/IconPersonOffOutlinedFilled.tsx index 0abe839bc..1f67bd9af 100644 --- a/src/IconPersonOffOutlinedFilled.tsx +++ b/src/IconPersonOffOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconPersonOffOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconPersonOffOutlinedFilled as default } +export default IconPersonOffOutlinedFilled diff --git a/src/IconPersonOffRounded.tsx b/src/IconPersonOffRounded.tsx index 8e8953d77..8d22a316a 100644 --- a/src/IconPersonOffRounded.tsx +++ b/src/IconPersonOffRounded.tsx @@ -8,4 +8,4 @@ const IconPersonOffRounded: React.FC = ({ ...props }) => ( ) -export { IconPersonOffRounded as default } +export default IconPersonOffRounded diff --git a/src/IconPersonOffRoundedFilled.tsx b/src/IconPersonOffRoundedFilled.tsx index 192e860b2..3fda8d7ad 100644 --- a/src/IconPersonOffRoundedFilled.tsx +++ b/src/IconPersonOffRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconPersonOffRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconPersonOffRoundedFilled as default } +export default IconPersonOffRoundedFilled diff --git a/src/IconPersonOffSharp.tsx b/src/IconPersonOffSharp.tsx index 9b1fc6ecd..feb54efa8 100644 --- a/src/IconPersonOffSharp.tsx +++ b/src/IconPersonOffSharp.tsx @@ -8,4 +8,4 @@ const IconPersonOffSharp: React.FC = ({ ...props }) => ( ) -export { IconPersonOffSharp as default } +export default IconPersonOffSharp diff --git a/src/IconPersonOffSharpFilled.tsx b/src/IconPersonOffSharpFilled.tsx index 2c1b8f1ed..fdad3de67 100644 --- a/src/IconPersonOffSharpFilled.tsx +++ b/src/IconPersonOffSharpFilled.tsx @@ -8,4 +8,4 @@ const IconPersonOffSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconPersonOffSharpFilled as default } +export default IconPersonOffSharpFilled diff --git a/src/IconPersonOutlined.tsx b/src/IconPersonOutlined.tsx index c84b597a4..ddd870995 100644 --- a/src/IconPersonOutlined.tsx +++ b/src/IconPersonOutlined.tsx @@ -8,4 +8,4 @@ const IconPersonOutlined: React.FC = ({ ...props }) => ( ) -export { IconPersonOutlined as default } +export default IconPersonOutlined diff --git a/src/IconPersonOutlinedFilled.tsx b/src/IconPersonOutlinedFilled.tsx index 63305db7e..8a20d5216 100644 --- a/src/IconPersonOutlinedFilled.tsx +++ b/src/IconPersonOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconPersonOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconPersonOutlinedFilled as default } +export default IconPersonOutlinedFilled diff --git a/src/IconPersonPinCircleOutlined.tsx b/src/IconPersonPinCircleOutlined.tsx index 3ec643a4c..3958fe672 100644 --- a/src/IconPersonPinCircleOutlined.tsx +++ b/src/IconPersonPinCircleOutlined.tsx @@ -8,4 +8,4 @@ const IconPersonPinCircleOutlined: React.FC = ({ ...props }) => ( ) -export { IconPersonPinCircleOutlined as default } +export default IconPersonPinCircleOutlined diff --git a/src/IconPersonPinCircleOutlinedFilled.tsx b/src/IconPersonPinCircleOutlinedFilled.tsx index 49334cd97..d5ef486c6 100644 --- a/src/IconPersonPinCircleOutlinedFilled.tsx +++ b/src/IconPersonPinCircleOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconPersonPinCircleOutlinedFilled: React.FC = ({ ) -export { IconPersonPinCircleOutlinedFilled as default } +export default IconPersonPinCircleOutlinedFilled diff --git a/src/IconPersonPinCircleRounded.tsx b/src/IconPersonPinCircleRounded.tsx index d971c9076..b5e15c249 100644 --- a/src/IconPersonPinCircleRounded.tsx +++ b/src/IconPersonPinCircleRounded.tsx @@ -8,4 +8,4 @@ const IconPersonPinCircleRounded: React.FC = ({ ...props }) => ( ) -export { IconPersonPinCircleRounded as default } +export default IconPersonPinCircleRounded diff --git a/src/IconPersonPinCircleRoundedFilled.tsx b/src/IconPersonPinCircleRoundedFilled.tsx index 1a8cf1850..e31bf859b 100644 --- a/src/IconPersonPinCircleRoundedFilled.tsx +++ b/src/IconPersonPinCircleRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconPersonPinCircleRoundedFilled: React.FC = ({ ) -export { IconPersonPinCircleRoundedFilled as default } +export default IconPersonPinCircleRoundedFilled diff --git a/src/IconPersonPinCircleSharp.tsx b/src/IconPersonPinCircleSharp.tsx index 8bf3ca377..a4f600107 100644 --- a/src/IconPersonPinCircleSharp.tsx +++ b/src/IconPersonPinCircleSharp.tsx @@ -8,4 +8,4 @@ const IconPersonPinCircleSharp: React.FC = ({ ...props }) => ( ) -export { IconPersonPinCircleSharp as default } +export default IconPersonPinCircleSharp diff --git a/src/IconPersonPinCircleSharpFilled.tsx b/src/IconPersonPinCircleSharpFilled.tsx index 793c594d7..3b125c676 100644 --- a/src/IconPersonPinCircleSharpFilled.tsx +++ b/src/IconPersonPinCircleSharpFilled.tsx @@ -8,4 +8,4 @@ const IconPersonPinCircleSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconPersonPinCircleSharpFilled as default } +export default IconPersonPinCircleSharpFilled diff --git a/src/IconPersonPinOutlined.tsx b/src/IconPersonPinOutlined.tsx index 04e21dab7..7d675d057 100644 --- a/src/IconPersonPinOutlined.tsx +++ b/src/IconPersonPinOutlined.tsx @@ -8,4 +8,4 @@ const IconPersonPinOutlined: React.FC = ({ ...props }) => ( ) -export { IconPersonPinOutlined as default } +export default IconPersonPinOutlined diff --git a/src/IconPersonPinOutlinedFilled.tsx b/src/IconPersonPinOutlinedFilled.tsx index 39c1d47ba..510d04007 100644 --- a/src/IconPersonPinOutlinedFilled.tsx +++ b/src/IconPersonPinOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconPersonPinOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconPersonPinOutlinedFilled as default } +export default IconPersonPinOutlinedFilled diff --git a/src/IconPersonPinRounded.tsx b/src/IconPersonPinRounded.tsx index 88d2ad582..6fedfff68 100644 --- a/src/IconPersonPinRounded.tsx +++ b/src/IconPersonPinRounded.tsx @@ -8,4 +8,4 @@ const IconPersonPinRounded: React.FC = ({ ...props }) => ( ) -export { IconPersonPinRounded as default } +export default IconPersonPinRounded diff --git a/src/IconPersonPinRoundedFilled.tsx b/src/IconPersonPinRoundedFilled.tsx index 77bf43f3e..7eff8f204 100644 --- a/src/IconPersonPinRoundedFilled.tsx +++ b/src/IconPersonPinRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconPersonPinRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconPersonPinRoundedFilled as default } +export default IconPersonPinRoundedFilled diff --git a/src/IconPersonPinSharp.tsx b/src/IconPersonPinSharp.tsx index e5c62e092..fc1f36157 100644 --- a/src/IconPersonPinSharp.tsx +++ b/src/IconPersonPinSharp.tsx @@ -8,4 +8,4 @@ const IconPersonPinSharp: React.FC = ({ ...props }) => ( ) -export { IconPersonPinSharp as default } +export default IconPersonPinSharp diff --git a/src/IconPersonPinSharpFilled.tsx b/src/IconPersonPinSharpFilled.tsx index 3eece2bb2..b412576b4 100644 --- a/src/IconPersonPinSharpFilled.tsx +++ b/src/IconPersonPinSharpFilled.tsx @@ -8,4 +8,4 @@ const IconPersonPinSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconPersonPinSharpFilled as default } +export default IconPersonPinSharpFilled diff --git a/src/IconPersonPlayOutlined.tsx b/src/IconPersonPlayOutlined.tsx index 6f1057b06..57dd50bcb 100644 --- a/src/IconPersonPlayOutlined.tsx +++ b/src/IconPersonPlayOutlined.tsx @@ -8,4 +8,4 @@ const IconPersonPlayOutlined: React.FC = ({ ...props }) => ( ) -export { IconPersonPlayOutlined as default } +export default IconPersonPlayOutlined diff --git a/src/IconPersonPlayOutlinedFilled.tsx b/src/IconPersonPlayOutlinedFilled.tsx index f5e40e816..33cafc6e6 100644 --- a/src/IconPersonPlayOutlinedFilled.tsx +++ b/src/IconPersonPlayOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconPersonPlayOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconPersonPlayOutlinedFilled as default } +export default IconPersonPlayOutlinedFilled diff --git a/src/IconPersonPlayRounded.tsx b/src/IconPersonPlayRounded.tsx index 3f777f3dc..ba7ed2449 100644 --- a/src/IconPersonPlayRounded.tsx +++ b/src/IconPersonPlayRounded.tsx @@ -8,4 +8,4 @@ const IconPersonPlayRounded: React.FC = ({ ...props }) => ( ) -export { IconPersonPlayRounded as default } +export default IconPersonPlayRounded diff --git a/src/IconPersonPlayRoundedFilled.tsx b/src/IconPersonPlayRoundedFilled.tsx index 16f5f02ea..8603c4a46 100644 --- a/src/IconPersonPlayRoundedFilled.tsx +++ b/src/IconPersonPlayRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconPersonPlayRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconPersonPlayRoundedFilled as default } +export default IconPersonPlayRoundedFilled diff --git a/src/IconPersonPlaySharp.tsx b/src/IconPersonPlaySharp.tsx index aca249a85..61d320813 100644 --- a/src/IconPersonPlaySharp.tsx +++ b/src/IconPersonPlaySharp.tsx @@ -8,4 +8,4 @@ const IconPersonPlaySharp: React.FC = ({ ...props }) => ( ) -export { IconPersonPlaySharp as default } +export default IconPersonPlaySharp diff --git a/src/IconPersonPlaySharpFilled.tsx b/src/IconPersonPlaySharpFilled.tsx index e9e853c60..6b1157548 100644 --- a/src/IconPersonPlaySharpFilled.tsx +++ b/src/IconPersonPlaySharpFilled.tsx @@ -8,4 +8,4 @@ const IconPersonPlaySharpFilled: React.FC = ({ ...props }) => ( ) -export { IconPersonPlaySharpFilled as default } +export default IconPersonPlaySharpFilled diff --git a/src/IconPersonRaisedHandOutlined.tsx b/src/IconPersonRaisedHandOutlined.tsx index 5ffc904d9..268684d7e 100644 --- a/src/IconPersonRaisedHandOutlined.tsx +++ b/src/IconPersonRaisedHandOutlined.tsx @@ -8,4 +8,4 @@ const IconPersonRaisedHandOutlined: React.FC = ({ ...props }) => ( ) -export { IconPersonRaisedHandOutlined as default } +export default IconPersonRaisedHandOutlined diff --git a/src/IconPersonRaisedHandOutlinedFilled.tsx b/src/IconPersonRaisedHandOutlinedFilled.tsx index bd33a5567..4f71c4d1b 100644 --- a/src/IconPersonRaisedHandOutlinedFilled.tsx +++ b/src/IconPersonRaisedHandOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconPersonRaisedHandOutlinedFilled: React.FC = ({ ) -export { IconPersonRaisedHandOutlinedFilled as default } +export default IconPersonRaisedHandOutlinedFilled diff --git a/src/IconPersonRaisedHandRounded.tsx b/src/IconPersonRaisedHandRounded.tsx index 3226e71da..7ad5bfde6 100644 --- a/src/IconPersonRaisedHandRounded.tsx +++ b/src/IconPersonRaisedHandRounded.tsx @@ -8,4 +8,4 @@ const IconPersonRaisedHandRounded: React.FC = ({ ...props }) => ( ) -export { IconPersonRaisedHandRounded as default } +export default IconPersonRaisedHandRounded diff --git a/src/IconPersonRaisedHandRoundedFilled.tsx b/src/IconPersonRaisedHandRoundedFilled.tsx index 9f6b8714c..a57b1afb9 100644 --- a/src/IconPersonRaisedHandRoundedFilled.tsx +++ b/src/IconPersonRaisedHandRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconPersonRaisedHandRoundedFilled: React.FC = ({ ) -export { IconPersonRaisedHandRoundedFilled as default } +export default IconPersonRaisedHandRoundedFilled diff --git a/src/IconPersonRaisedHandSharp.tsx b/src/IconPersonRaisedHandSharp.tsx index de56df45d..17ddd418e 100644 --- a/src/IconPersonRaisedHandSharp.tsx +++ b/src/IconPersonRaisedHandSharp.tsx @@ -8,4 +8,4 @@ const IconPersonRaisedHandSharp: React.FC = ({ ...props }) => ( ) -export { IconPersonRaisedHandSharp as default } +export default IconPersonRaisedHandSharp diff --git a/src/IconPersonRaisedHandSharpFilled.tsx b/src/IconPersonRaisedHandSharpFilled.tsx index b0105eb47..b9308fde1 100644 --- a/src/IconPersonRaisedHandSharpFilled.tsx +++ b/src/IconPersonRaisedHandSharpFilled.tsx @@ -8,4 +8,4 @@ const IconPersonRaisedHandSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconPersonRaisedHandSharpFilled as default } +export default IconPersonRaisedHandSharpFilled diff --git a/src/IconPersonRemoveOutlined.tsx b/src/IconPersonRemoveOutlined.tsx index f84863fcb..96e2f9b32 100644 --- a/src/IconPersonRemoveOutlined.tsx +++ b/src/IconPersonRemoveOutlined.tsx @@ -8,4 +8,4 @@ const IconPersonRemoveOutlined: React.FC = ({ ...props }) => ( ) -export { IconPersonRemoveOutlined as default } +export default IconPersonRemoveOutlined diff --git a/src/IconPersonRemoveOutlinedFilled.tsx b/src/IconPersonRemoveOutlinedFilled.tsx index 0b6872133..24267d1f5 100644 --- a/src/IconPersonRemoveOutlinedFilled.tsx +++ b/src/IconPersonRemoveOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconPersonRemoveOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconPersonRemoveOutlinedFilled as default } +export default IconPersonRemoveOutlinedFilled diff --git a/src/IconPersonRemoveRounded.tsx b/src/IconPersonRemoveRounded.tsx index 3471d7951..40260a1f8 100644 --- a/src/IconPersonRemoveRounded.tsx +++ b/src/IconPersonRemoveRounded.tsx @@ -8,4 +8,4 @@ const IconPersonRemoveRounded: React.FC = ({ ...props }) => ( ) -export { IconPersonRemoveRounded as default } +export default IconPersonRemoveRounded diff --git a/src/IconPersonRemoveRoundedFilled.tsx b/src/IconPersonRemoveRoundedFilled.tsx index 97b5f3375..91fdf60ab 100644 --- a/src/IconPersonRemoveRoundedFilled.tsx +++ b/src/IconPersonRemoveRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconPersonRemoveRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconPersonRemoveRoundedFilled as default } +export default IconPersonRemoveRoundedFilled diff --git a/src/IconPersonRemoveSharp.tsx b/src/IconPersonRemoveSharp.tsx index f99bddf35..4e55c9aff 100644 --- a/src/IconPersonRemoveSharp.tsx +++ b/src/IconPersonRemoveSharp.tsx @@ -8,4 +8,4 @@ const IconPersonRemoveSharp: React.FC = ({ ...props }) => ( ) -export { IconPersonRemoveSharp as default } +export default IconPersonRemoveSharp diff --git a/src/IconPersonRemoveSharpFilled.tsx b/src/IconPersonRemoveSharpFilled.tsx index 3f3c764cc..0ab987b1b 100644 --- a/src/IconPersonRemoveSharpFilled.tsx +++ b/src/IconPersonRemoveSharpFilled.tsx @@ -8,4 +8,4 @@ const IconPersonRemoveSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconPersonRemoveSharpFilled as default } +export default IconPersonRemoveSharpFilled diff --git a/src/IconPersonRounded.tsx b/src/IconPersonRounded.tsx index 9ee13c838..d660f16a9 100644 --- a/src/IconPersonRounded.tsx +++ b/src/IconPersonRounded.tsx @@ -8,4 +8,4 @@ const IconPersonRounded: React.FC = ({ ...props }) => ( ) -export { IconPersonRounded as default } +export default IconPersonRounded diff --git a/src/IconPersonRoundedFilled.tsx b/src/IconPersonRoundedFilled.tsx index 1939b277b..dad4f3009 100644 --- a/src/IconPersonRoundedFilled.tsx +++ b/src/IconPersonRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconPersonRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconPersonRoundedFilled as default } +export default IconPersonRoundedFilled diff --git a/src/IconPersonSearchOutlined.tsx b/src/IconPersonSearchOutlined.tsx index b34177944..f0c556fd7 100644 --- a/src/IconPersonSearchOutlined.tsx +++ b/src/IconPersonSearchOutlined.tsx @@ -8,4 +8,4 @@ const IconPersonSearchOutlined: React.FC = ({ ...props }) => ( ) -export { IconPersonSearchOutlined as default } +export default IconPersonSearchOutlined diff --git a/src/IconPersonSearchOutlinedFilled.tsx b/src/IconPersonSearchOutlinedFilled.tsx index ab9c0a945..61dd9bae0 100644 --- a/src/IconPersonSearchOutlinedFilled.tsx +++ b/src/IconPersonSearchOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconPersonSearchOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconPersonSearchOutlinedFilled as default } +export default IconPersonSearchOutlinedFilled diff --git a/src/IconPersonSearchRounded.tsx b/src/IconPersonSearchRounded.tsx index 84ed72ebd..53ca4ae09 100644 --- a/src/IconPersonSearchRounded.tsx +++ b/src/IconPersonSearchRounded.tsx @@ -8,4 +8,4 @@ const IconPersonSearchRounded: React.FC = ({ ...props }) => ( ) -export { IconPersonSearchRounded as default } +export default IconPersonSearchRounded diff --git a/src/IconPersonSearchRoundedFilled.tsx b/src/IconPersonSearchRoundedFilled.tsx index f9185018f..ca4b0c638 100644 --- a/src/IconPersonSearchRoundedFilled.tsx +++ b/src/IconPersonSearchRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconPersonSearchRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconPersonSearchRoundedFilled as default } +export default IconPersonSearchRoundedFilled diff --git a/src/IconPersonSearchSharp.tsx b/src/IconPersonSearchSharp.tsx index 30bbc2106..d01019a15 100644 --- a/src/IconPersonSearchSharp.tsx +++ b/src/IconPersonSearchSharp.tsx @@ -8,4 +8,4 @@ const IconPersonSearchSharp: React.FC = ({ ...props }) => ( ) -export { IconPersonSearchSharp as default } +export default IconPersonSearchSharp diff --git a/src/IconPersonSearchSharpFilled.tsx b/src/IconPersonSearchSharpFilled.tsx index 5eb9c7171..513a00870 100644 --- a/src/IconPersonSearchSharpFilled.tsx +++ b/src/IconPersonSearchSharpFilled.tsx @@ -8,4 +8,4 @@ const IconPersonSearchSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconPersonSearchSharpFilled as default } +export default IconPersonSearchSharpFilled diff --git a/src/IconPersonSharp.tsx b/src/IconPersonSharp.tsx index a6cdcb137..4907c904b 100644 --- a/src/IconPersonSharp.tsx +++ b/src/IconPersonSharp.tsx @@ -8,4 +8,4 @@ const IconPersonSharp: React.FC = ({ ...props }) => ( ) -export { IconPersonSharp as default } +export default IconPersonSharp diff --git a/src/IconPersonSharpFilled.tsx b/src/IconPersonSharpFilled.tsx index 01958aefc..db846e152 100644 --- a/src/IconPersonSharpFilled.tsx +++ b/src/IconPersonSharpFilled.tsx @@ -8,4 +8,4 @@ const IconPersonSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconPersonSharpFilled as default } +export default IconPersonSharpFilled diff --git a/src/IconPersonalBagOffOutlined.tsx b/src/IconPersonalBagOffOutlined.tsx index ffdc7027c..3af087fef 100644 --- a/src/IconPersonalBagOffOutlined.tsx +++ b/src/IconPersonalBagOffOutlined.tsx @@ -8,4 +8,4 @@ const IconPersonalBagOffOutlined: React.FC = ({ ...props }) => ( ) -export { IconPersonalBagOffOutlined as default } +export default IconPersonalBagOffOutlined diff --git a/src/IconPersonalBagOffOutlinedFilled.tsx b/src/IconPersonalBagOffOutlinedFilled.tsx index dfaef2bd0..25647a161 100644 --- a/src/IconPersonalBagOffOutlinedFilled.tsx +++ b/src/IconPersonalBagOffOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconPersonalBagOffOutlinedFilled: React.FC = ({ ) -export { IconPersonalBagOffOutlinedFilled as default } +export default IconPersonalBagOffOutlinedFilled diff --git a/src/IconPersonalBagOffRounded.tsx b/src/IconPersonalBagOffRounded.tsx index 2c61e700d..ff3a9d4d2 100644 --- a/src/IconPersonalBagOffRounded.tsx +++ b/src/IconPersonalBagOffRounded.tsx @@ -8,4 +8,4 @@ const IconPersonalBagOffRounded: React.FC = ({ ...props }) => ( ) -export { IconPersonalBagOffRounded as default } +export default IconPersonalBagOffRounded diff --git a/src/IconPersonalBagOffRoundedFilled.tsx b/src/IconPersonalBagOffRoundedFilled.tsx index f23b930bf..fca3ae3b1 100644 --- a/src/IconPersonalBagOffRoundedFilled.tsx +++ b/src/IconPersonalBagOffRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconPersonalBagOffRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconPersonalBagOffRoundedFilled as default } +export default IconPersonalBagOffRoundedFilled diff --git a/src/IconPersonalBagOffSharp.tsx b/src/IconPersonalBagOffSharp.tsx index 0df40b36c..2c992be01 100644 --- a/src/IconPersonalBagOffSharp.tsx +++ b/src/IconPersonalBagOffSharp.tsx @@ -8,4 +8,4 @@ const IconPersonalBagOffSharp: React.FC = ({ ...props }) => ( ) -export { IconPersonalBagOffSharp as default } +export default IconPersonalBagOffSharp diff --git a/src/IconPersonalBagOffSharpFilled.tsx b/src/IconPersonalBagOffSharpFilled.tsx index 8d05b7e14..b993a9647 100644 --- a/src/IconPersonalBagOffSharpFilled.tsx +++ b/src/IconPersonalBagOffSharpFilled.tsx @@ -8,4 +8,4 @@ const IconPersonalBagOffSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconPersonalBagOffSharpFilled as default } +export default IconPersonalBagOffSharpFilled diff --git a/src/IconPersonalBagOutlined.tsx b/src/IconPersonalBagOutlined.tsx index da5268afd..23a17332c 100644 --- a/src/IconPersonalBagOutlined.tsx +++ b/src/IconPersonalBagOutlined.tsx @@ -8,4 +8,4 @@ const IconPersonalBagOutlined: React.FC = ({ ...props }) => ( ) -export { IconPersonalBagOutlined as default } +export default IconPersonalBagOutlined diff --git a/src/IconPersonalBagOutlinedFilled.tsx b/src/IconPersonalBagOutlinedFilled.tsx index 90e624a5d..9987d642d 100644 --- a/src/IconPersonalBagOutlinedFilled.tsx +++ b/src/IconPersonalBagOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconPersonalBagOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconPersonalBagOutlinedFilled as default } +export default IconPersonalBagOutlinedFilled diff --git a/src/IconPersonalBagQuestionOutlined.tsx b/src/IconPersonalBagQuestionOutlined.tsx index 2c61f81ea..aaf058c8e 100644 --- a/src/IconPersonalBagQuestionOutlined.tsx +++ b/src/IconPersonalBagQuestionOutlined.tsx @@ -8,4 +8,4 @@ const IconPersonalBagQuestionOutlined: React.FC = ({ ...props }) => ( ) -export { IconPersonalBagQuestionOutlined as default } +export default IconPersonalBagQuestionOutlined diff --git a/src/IconPersonalBagQuestionOutlinedFilled.tsx b/src/IconPersonalBagQuestionOutlinedFilled.tsx index 7a1027406..a893b0cf0 100644 --- a/src/IconPersonalBagQuestionOutlinedFilled.tsx +++ b/src/IconPersonalBagQuestionOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconPersonalBagQuestionOutlinedFilled: React.FC = ({ ) -export { IconPersonalBagQuestionOutlinedFilled as default } +export default IconPersonalBagQuestionOutlinedFilled diff --git a/src/IconPersonalBagQuestionRounded.tsx b/src/IconPersonalBagQuestionRounded.tsx index f29bb2784..85e5a8264 100644 --- a/src/IconPersonalBagQuestionRounded.tsx +++ b/src/IconPersonalBagQuestionRounded.tsx @@ -8,4 +8,4 @@ const IconPersonalBagQuestionRounded: React.FC = ({ ...props }) => ( ) -export { IconPersonalBagQuestionRounded as default } +export default IconPersonalBagQuestionRounded diff --git a/src/IconPersonalBagQuestionRoundedFilled.tsx b/src/IconPersonalBagQuestionRoundedFilled.tsx index 55f542e18..96ddae1e9 100644 --- a/src/IconPersonalBagQuestionRoundedFilled.tsx +++ b/src/IconPersonalBagQuestionRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconPersonalBagQuestionRoundedFilled: React.FC = ({ ) -export { IconPersonalBagQuestionRoundedFilled as default } +export default IconPersonalBagQuestionRoundedFilled diff --git a/src/IconPersonalBagQuestionSharp.tsx b/src/IconPersonalBagQuestionSharp.tsx index e09ee5220..658133cee 100644 --- a/src/IconPersonalBagQuestionSharp.tsx +++ b/src/IconPersonalBagQuestionSharp.tsx @@ -8,4 +8,4 @@ const IconPersonalBagQuestionSharp: React.FC = ({ ...props }) => ( ) -export { IconPersonalBagQuestionSharp as default } +export default IconPersonalBagQuestionSharp diff --git a/src/IconPersonalBagQuestionSharpFilled.tsx b/src/IconPersonalBagQuestionSharpFilled.tsx index 72e6d8dbf..0fe8da8e4 100644 --- a/src/IconPersonalBagQuestionSharpFilled.tsx +++ b/src/IconPersonalBagQuestionSharpFilled.tsx @@ -10,4 +10,4 @@ const IconPersonalBagQuestionSharpFilled: React.FC = ({ ) -export { IconPersonalBagQuestionSharpFilled as default } +export default IconPersonalBagQuestionSharpFilled diff --git a/src/IconPersonalBagRounded.tsx b/src/IconPersonalBagRounded.tsx index e132f3be5..6202aa4cb 100644 --- a/src/IconPersonalBagRounded.tsx +++ b/src/IconPersonalBagRounded.tsx @@ -8,4 +8,4 @@ const IconPersonalBagRounded: React.FC = ({ ...props }) => ( ) -export { IconPersonalBagRounded as default } +export default IconPersonalBagRounded diff --git a/src/IconPersonalBagRoundedFilled.tsx b/src/IconPersonalBagRoundedFilled.tsx index 3b7726bff..04d06293a 100644 --- a/src/IconPersonalBagRoundedFilled.tsx +++ b/src/IconPersonalBagRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconPersonalBagRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconPersonalBagRoundedFilled as default } +export default IconPersonalBagRoundedFilled diff --git a/src/IconPersonalBagSharp.tsx b/src/IconPersonalBagSharp.tsx index 92c5d0304..0a03cbc4b 100644 --- a/src/IconPersonalBagSharp.tsx +++ b/src/IconPersonalBagSharp.tsx @@ -8,4 +8,4 @@ const IconPersonalBagSharp: React.FC = ({ ...props }) => ( ) -export { IconPersonalBagSharp as default } +export default IconPersonalBagSharp diff --git a/src/IconPersonalBagSharpFilled.tsx b/src/IconPersonalBagSharpFilled.tsx index 0c83ade87..0cb462c3b 100644 --- a/src/IconPersonalBagSharpFilled.tsx +++ b/src/IconPersonalBagSharpFilled.tsx @@ -8,4 +8,4 @@ const IconPersonalBagSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconPersonalBagSharpFilled as default } +export default IconPersonalBagSharpFilled diff --git a/src/IconPersonalInjuryOutlined.tsx b/src/IconPersonalInjuryOutlined.tsx index a4b3821b5..c19d3976a 100644 --- a/src/IconPersonalInjuryOutlined.tsx +++ b/src/IconPersonalInjuryOutlined.tsx @@ -8,4 +8,4 @@ const IconPersonalInjuryOutlined: React.FC = ({ ...props }) => ( ) -export { IconPersonalInjuryOutlined as default } +export default IconPersonalInjuryOutlined diff --git a/src/IconPersonalInjuryOutlinedFilled.tsx b/src/IconPersonalInjuryOutlinedFilled.tsx index 7daab490e..a25e4127d 100644 --- a/src/IconPersonalInjuryOutlinedFilled.tsx +++ b/src/IconPersonalInjuryOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconPersonalInjuryOutlinedFilled: React.FC = ({ ) -export { IconPersonalInjuryOutlinedFilled as default } +export default IconPersonalInjuryOutlinedFilled diff --git a/src/IconPersonalInjuryRounded.tsx b/src/IconPersonalInjuryRounded.tsx index 759526897..192f68a70 100644 --- a/src/IconPersonalInjuryRounded.tsx +++ b/src/IconPersonalInjuryRounded.tsx @@ -8,4 +8,4 @@ const IconPersonalInjuryRounded: React.FC = ({ ...props }) => ( ) -export { IconPersonalInjuryRounded as default } +export default IconPersonalInjuryRounded diff --git a/src/IconPersonalInjuryRoundedFilled.tsx b/src/IconPersonalInjuryRoundedFilled.tsx index 66cd8f6bd..d1cdf7017 100644 --- a/src/IconPersonalInjuryRoundedFilled.tsx +++ b/src/IconPersonalInjuryRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconPersonalInjuryRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconPersonalInjuryRoundedFilled as default } +export default IconPersonalInjuryRoundedFilled diff --git a/src/IconPersonalInjurySharp.tsx b/src/IconPersonalInjurySharp.tsx index 6f9e347d2..bc198ad89 100644 --- a/src/IconPersonalInjurySharp.tsx +++ b/src/IconPersonalInjurySharp.tsx @@ -8,4 +8,4 @@ const IconPersonalInjurySharp: React.FC = ({ ...props }) => ( ) -export { IconPersonalInjurySharp as default } +export default IconPersonalInjurySharp diff --git a/src/IconPersonalInjurySharpFilled.tsx b/src/IconPersonalInjurySharpFilled.tsx index 62c58df7b..744691725 100644 --- a/src/IconPersonalInjurySharpFilled.tsx +++ b/src/IconPersonalInjurySharpFilled.tsx @@ -8,4 +8,4 @@ const IconPersonalInjurySharpFilled: React.FC = ({ ...props }) => ( ) -export { IconPersonalInjurySharpFilled as default } +export default IconPersonalInjurySharpFilled diff --git a/src/IconPersonalPlacesOutlined.tsx b/src/IconPersonalPlacesOutlined.tsx index 546d3b14a..321b486e6 100644 --- a/src/IconPersonalPlacesOutlined.tsx +++ b/src/IconPersonalPlacesOutlined.tsx @@ -8,4 +8,4 @@ const IconPersonalPlacesOutlined: React.FC = ({ ...props }) => ( ) -export { IconPersonalPlacesOutlined as default } +export default IconPersonalPlacesOutlined diff --git a/src/IconPersonalPlacesOutlinedFilled.tsx b/src/IconPersonalPlacesOutlinedFilled.tsx index 061264edf..b5a1842a9 100644 --- a/src/IconPersonalPlacesOutlinedFilled.tsx +++ b/src/IconPersonalPlacesOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconPersonalPlacesOutlinedFilled: React.FC = ({ ) -export { IconPersonalPlacesOutlinedFilled as default } +export default IconPersonalPlacesOutlinedFilled diff --git a/src/IconPersonalPlacesRounded.tsx b/src/IconPersonalPlacesRounded.tsx index a6459304c..fbddcc4a4 100644 --- a/src/IconPersonalPlacesRounded.tsx +++ b/src/IconPersonalPlacesRounded.tsx @@ -8,4 +8,4 @@ const IconPersonalPlacesRounded: React.FC = ({ ...props }) => ( ) -export { IconPersonalPlacesRounded as default } +export default IconPersonalPlacesRounded diff --git a/src/IconPersonalPlacesRoundedFilled.tsx b/src/IconPersonalPlacesRoundedFilled.tsx index 058a2a78a..8e9cc2956 100644 --- a/src/IconPersonalPlacesRoundedFilled.tsx +++ b/src/IconPersonalPlacesRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconPersonalPlacesRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconPersonalPlacesRoundedFilled as default } +export default IconPersonalPlacesRoundedFilled diff --git a/src/IconPersonalPlacesSharp.tsx b/src/IconPersonalPlacesSharp.tsx index 829864641..51ca0d9fd 100644 --- a/src/IconPersonalPlacesSharp.tsx +++ b/src/IconPersonalPlacesSharp.tsx @@ -8,4 +8,4 @@ const IconPersonalPlacesSharp: React.FC = ({ ...props }) => ( ) -export { IconPersonalPlacesSharp as default } +export default IconPersonalPlacesSharp diff --git a/src/IconPersonalPlacesSharpFilled.tsx b/src/IconPersonalPlacesSharpFilled.tsx index ad6033e24..8a11f7e5e 100644 --- a/src/IconPersonalPlacesSharpFilled.tsx +++ b/src/IconPersonalPlacesSharpFilled.tsx @@ -8,4 +8,4 @@ const IconPersonalPlacesSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconPersonalPlacesSharpFilled as default } +export default IconPersonalPlacesSharpFilled diff --git a/src/IconPestControlOutlined.tsx b/src/IconPestControlOutlined.tsx index 9d97899a6..7a80869d4 100644 --- a/src/IconPestControlOutlined.tsx +++ b/src/IconPestControlOutlined.tsx @@ -8,4 +8,4 @@ const IconPestControlOutlined: React.FC = ({ ...props }) => ( ) -export { IconPestControlOutlined as default } +export default IconPestControlOutlined diff --git a/src/IconPestControlOutlinedFilled.tsx b/src/IconPestControlOutlinedFilled.tsx index 436a73c95..e46f76a75 100644 --- a/src/IconPestControlOutlinedFilled.tsx +++ b/src/IconPestControlOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconPestControlOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconPestControlOutlinedFilled as default } +export default IconPestControlOutlinedFilled diff --git a/src/IconPestControlRodentOutlined.tsx b/src/IconPestControlRodentOutlined.tsx index 40e2cfc4d..18a27f473 100644 --- a/src/IconPestControlRodentOutlined.tsx +++ b/src/IconPestControlRodentOutlined.tsx @@ -8,4 +8,4 @@ const IconPestControlRodentOutlined: React.FC = ({ ...props }) => ( ) -export { IconPestControlRodentOutlined as default } +export default IconPestControlRodentOutlined diff --git a/src/IconPestControlRodentOutlinedFilled.tsx b/src/IconPestControlRodentOutlinedFilled.tsx index 78d877686..046944a89 100644 --- a/src/IconPestControlRodentOutlinedFilled.tsx +++ b/src/IconPestControlRodentOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconPestControlRodentOutlinedFilled: React.FC = ({ ) -export { IconPestControlRodentOutlinedFilled as default } +export default IconPestControlRodentOutlinedFilled diff --git a/src/IconPestControlRodentRounded.tsx b/src/IconPestControlRodentRounded.tsx index 44efd96ee..b895ef5e0 100644 --- a/src/IconPestControlRodentRounded.tsx +++ b/src/IconPestControlRodentRounded.tsx @@ -8,4 +8,4 @@ const IconPestControlRodentRounded: React.FC = ({ ...props }) => ( ) -export { IconPestControlRodentRounded as default } +export default IconPestControlRodentRounded diff --git a/src/IconPestControlRodentRoundedFilled.tsx b/src/IconPestControlRodentRoundedFilled.tsx index 93aaa814d..cd0dcddf2 100644 --- a/src/IconPestControlRodentRoundedFilled.tsx +++ b/src/IconPestControlRodentRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconPestControlRodentRoundedFilled: React.FC = ({ ) -export { IconPestControlRodentRoundedFilled as default } +export default IconPestControlRodentRoundedFilled diff --git a/src/IconPestControlRodentSharp.tsx b/src/IconPestControlRodentSharp.tsx index f37e16bfa..75f0450e1 100644 --- a/src/IconPestControlRodentSharp.tsx +++ b/src/IconPestControlRodentSharp.tsx @@ -8,4 +8,4 @@ const IconPestControlRodentSharp: React.FC = ({ ...props }) => ( ) -export { IconPestControlRodentSharp as default } +export default IconPestControlRodentSharp diff --git a/src/IconPestControlRodentSharpFilled.tsx b/src/IconPestControlRodentSharpFilled.tsx index 9dc90b680..ff9fd6c66 100644 --- a/src/IconPestControlRodentSharpFilled.tsx +++ b/src/IconPestControlRodentSharpFilled.tsx @@ -10,4 +10,4 @@ const IconPestControlRodentSharpFilled: React.FC = ({ ) -export { IconPestControlRodentSharpFilled as default } +export default IconPestControlRodentSharpFilled diff --git a/src/IconPestControlRounded.tsx b/src/IconPestControlRounded.tsx index c515e788b..00e62068d 100644 --- a/src/IconPestControlRounded.tsx +++ b/src/IconPestControlRounded.tsx @@ -8,4 +8,4 @@ const IconPestControlRounded: React.FC = ({ ...props }) => ( ) -export { IconPestControlRounded as default } +export default IconPestControlRounded diff --git a/src/IconPestControlRoundedFilled.tsx b/src/IconPestControlRoundedFilled.tsx index 42032b58c..2a0651dc5 100644 --- a/src/IconPestControlRoundedFilled.tsx +++ b/src/IconPestControlRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconPestControlRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconPestControlRoundedFilled as default } +export default IconPestControlRoundedFilled diff --git a/src/IconPestControlSharp.tsx b/src/IconPestControlSharp.tsx index e8b2c7f9a..44c819cf5 100644 --- a/src/IconPestControlSharp.tsx +++ b/src/IconPestControlSharp.tsx @@ -8,4 +8,4 @@ const IconPestControlSharp: React.FC = ({ ...props }) => ( ) -export { IconPestControlSharp as default } +export default IconPestControlSharp diff --git a/src/IconPestControlSharpFilled.tsx b/src/IconPestControlSharpFilled.tsx index 043bd3366..174605c5e 100644 --- a/src/IconPestControlSharpFilled.tsx +++ b/src/IconPestControlSharpFilled.tsx @@ -8,4 +8,4 @@ const IconPestControlSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconPestControlSharpFilled as default } +export default IconPestControlSharpFilled diff --git a/src/IconPetSuppliesOutlined.tsx b/src/IconPetSuppliesOutlined.tsx index 98fdc844c..8a43d5413 100644 --- a/src/IconPetSuppliesOutlined.tsx +++ b/src/IconPetSuppliesOutlined.tsx @@ -8,4 +8,4 @@ const IconPetSuppliesOutlined: React.FC = ({ ...props }) => ( ) -export { IconPetSuppliesOutlined as default } +export default IconPetSuppliesOutlined diff --git a/src/IconPetSuppliesOutlinedFilled.tsx b/src/IconPetSuppliesOutlinedFilled.tsx index 822a5538c..c644fcbe0 100644 --- a/src/IconPetSuppliesOutlinedFilled.tsx +++ b/src/IconPetSuppliesOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconPetSuppliesOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconPetSuppliesOutlinedFilled as default } +export default IconPetSuppliesOutlinedFilled diff --git a/src/IconPetSuppliesRounded.tsx b/src/IconPetSuppliesRounded.tsx index 1930ef699..d860a1dfb 100644 --- a/src/IconPetSuppliesRounded.tsx +++ b/src/IconPetSuppliesRounded.tsx @@ -8,4 +8,4 @@ const IconPetSuppliesRounded: React.FC = ({ ...props }) => ( ) -export { IconPetSuppliesRounded as default } +export default IconPetSuppliesRounded diff --git a/src/IconPetSuppliesRoundedFilled.tsx b/src/IconPetSuppliesRoundedFilled.tsx index d8cd19083..2554ed0e8 100644 --- a/src/IconPetSuppliesRoundedFilled.tsx +++ b/src/IconPetSuppliesRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconPetSuppliesRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconPetSuppliesRoundedFilled as default } +export default IconPetSuppliesRoundedFilled diff --git a/src/IconPetSuppliesSharp.tsx b/src/IconPetSuppliesSharp.tsx index 8aeca1637..58adf099b 100644 --- a/src/IconPetSuppliesSharp.tsx +++ b/src/IconPetSuppliesSharp.tsx @@ -8,4 +8,4 @@ const IconPetSuppliesSharp: React.FC = ({ ...props }) => ( ) -export { IconPetSuppliesSharp as default } +export default IconPetSuppliesSharp diff --git a/src/IconPetSuppliesSharpFilled.tsx b/src/IconPetSuppliesSharpFilled.tsx index a1b1ea428..9d019ca45 100644 --- a/src/IconPetSuppliesSharpFilled.tsx +++ b/src/IconPetSuppliesSharpFilled.tsx @@ -8,4 +8,4 @@ const IconPetSuppliesSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconPetSuppliesSharpFilled as default } +export default IconPetSuppliesSharpFilled diff --git a/src/IconPetsOutlined.tsx b/src/IconPetsOutlined.tsx index 62e5d79bc..fa2f3a16e 100644 --- a/src/IconPetsOutlined.tsx +++ b/src/IconPetsOutlined.tsx @@ -8,4 +8,4 @@ const IconPetsOutlined: React.FC = ({ ...props }) => ( ) -export { IconPetsOutlined as default } +export default IconPetsOutlined diff --git a/src/IconPetsOutlinedFilled.tsx b/src/IconPetsOutlinedFilled.tsx index 8569f7121..47c2db663 100644 --- a/src/IconPetsOutlinedFilled.tsx +++ b/src/IconPetsOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconPetsOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconPetsOutlinedFilled as default } +export default IconPetsOutlinedFilled diff --git a/src/IconPetsRounded.tsx b/src/IconPetsRounded.tsx index fc072b256..c8d6d4963 100644 --- a/src/IconPetsRounded.tsx +++ b/src/IconPetsRounded.tsx @@ -8,4 +8,4 @@ const IconPetsRounded: React.FC = ({ ...props }) => ( ) -export { IconPetsRounded as default } +export default IconPetsRounded diff --git a/src/IconPetsRoundedFilled.tsx b/src/IconPetsRoundedFilled.tsx index a7235d230..6fedfea5a 100644 --- a/src/IconPetsRoundedFilled.tsx +++ b/src/IconPetsRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconPetsRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconPetsRoundedFilled as default } +export default IconPetsRoundedFilled diff --git a/src/IconPetsSharp.tsx b/src/IconPetsSharp.tsx index a4e495abe..dae302c34 100644 --- a/src/IconPetsSharp.tsx +++ b/src/IconPetsSharp.tsx @@ -8,4 +8,4 @@ const IconPetsSharp: React.FC = ({ ...props }) => ( ) -export { IconPetsSharp as default } +export default IconPetsSharp diff --git a/src/IconPetsSharpFilled.tsx b/src/IconPetsSharpFilled.tsx index a924c2411..90ba6fd31 100644 --- a/src/IconPetsSharpFilled.tsx +++ b/src/IconPetsSharpFilled.tsx @@ -8,4 +8,4 @@ const IconPetsSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconPetsSharpFilled as default } +export default IconPetsSharpFilled diff --git a/src/IconPhishingOutlined.tsx b/src/IconPhishingOutlined.tsx index fa0e2cfd4..4d0811d79 100644 --- a/src/IconPhishingOutlined.tsx +++ b/src/IconPhishingOutlined.tsx @@ -8,4 +8,4 @@ const IconPhishingOutlined: React.FC = ({ ...props }) => ( ) -export { IconPhishingOutlined as default } +export default IconPhishingOutlined diff --git a/src/IconPhishingOutlinedFilled.tsx b/src/IconPhishingOutlinedFilled.tsx index d8862e494..a7061c1ac 100644 --- a/src/IconPhishingOutlinedFilled.tsx +++ b/src/IconPhishingOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconPhishingOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconPhishingOutlinedFilled as default } +export default IconPhishingOutlinedFilled diff --git a/src/IconPhishingRounded.tsx b/src/IconPhishingRounded.tsx index 86c252f50..23b7a410a 100644 --- a/src/IconPhishingRounded.tsx +++ b/src/IconPhishingRounded.tsx @@ -8,4 +8,4 @@ const IconPhishingRounded: React.FC = ({ ...props }) => ( ) -export { IconPhishingRounded as default } +export default IconPhishingRounded diff --git a/src/IconPhishingRoundedFilled.tsx b/src/IconPhishingRoundedFilled.tsx index 04d3e30db..389dce2b4 100644 --- a/src/IconPhishingRoundedFilled.tsx +++ b/src/IconPhishingRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconPhishingRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconPhishingRoundedFilled as default } +export default IconPhishingRoundedFilled diff --git a/src/IconPhishingSharp.tsx b/src/IconPhishingSharp.tsx index 94df59b2b..c87c73e3d 100644 --- a/src/IconPhishingSharp.tsx +++ b/src/IconPhishingSharp.tsx @@ -8,4 +8,4 @@ const IconPhishingSharp: React.FC = ({ ...props }) => ( ) -export { IconPhishingSharp as default } +export default IconPhishingSharp diff --git a/src/IconPhishingSharpFilled.tsx b/src/IconPhishingSharpFilled.tsx index 5e8a43295..197b35bda 100644 --- a/src/IconPhishingSharpFilled.tsx +++ b/src/IconPhishingSharpFilled.tsx @@ -8,4 +8,4 @@ const IconPhishingSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconPhishingSharpFilled as default } +export default IconPhishingSharpFilled diff --git a/src/IconPhoneAndroidOutlined.tsx b/src/IconPhoneAndroidOutlined.tsx index e9e0855ba..1105ccd56 100644 --- a/src/IconPhoneAndroidOutlined.tsx +++ b/src/IconPhoneAndroidOutlined.tsx @@ -8,4 +8,4 @@ const IconPhoneAndroidOutlined: React.FC = ({ ...props }) => ( ) -export { IconPhoneAndroidOutlined as default } +export default IconPhoneAndroidOutlined diff --git a/src/IconPhoneAndroidOutlinedFilled.tsx b/src/IconPhoneAndroidOutlinedFilled.tsx index 870ecc377..5ef11eb0d 100644 --- a/src/IconPhoneAndroidOutlinedFilled.tsx +++ b/src/IconPhoneAndroidOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconPhoneAndroidOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconPhoneAndroidOutlinedFilled as default } +export default IconPhoneAndroidOutlinedFilled diff --git a/src/IconPhoneAndroidRounded.tsx b/src/IconPhoneAndroidRounded.tsx index c9fdd382b..2507286fc 100644 --- a/src/IconPhoneAndroidRounded.tsx +++ b/src/IconPhoneAndroidRounded.tsx @@ -8,4 +8,4 @@ const IconPhoneAndroidRounded: React.FC = ({ ...props }) => ( ) -export { IconPhoneAndroidRounded as default } +export default IconPhoneAndroidRounded diff --git a/src/IconPhoneAndroidRoundedFilled.tsx b/src/IconPhoneAndroidRoundedFilled.tsx index 8877e7b8b..69fcb6b57 100644 --- a/src/IconPhoneAndroidRoundedFilled.tsx +++ b/src/IconPhoneAndroidRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconPhoneAndroidRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconPhoneAndroidRoundedFilled as default } +export default IconPhoneAndroidRoundedFilled diff --git a/src/IconPhoneAndroidSharp.tsx b/src/IconPhoneAndroidSharp.tsx index b4e896c0d..205b83a21 100644 --- a/src/IconPhoneAndroidSharp.tsx +++ b/src/IconPhoneAndroidSharp.tsx @@ -8,4 +8,4 @@ const IconPhoneAndroidSharp: React.FC = ({ ...props }) => ( ) -export { IconPhoneAndroidSharp as default } +export default IconPhoneAndroidSharp diff --git a/src/IconPhoneAndroidSharpFilled.tsx b/src/IconPhoneAndroidSharpFilled.tsx index 7e859bc9f..57e31cef7 100644 --- a/src/IconPhoneAndroidSharpFilled.tsx +++ b/src/IconPhoneAndroidSharpFilled.tsx @@ -8,4 +8,4 @@ const IconPhoneAndroidSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconPhoneAndroidSharpFilled as default } +export default IconPhoneAndroidSharpFilled diff --git a/src/IconPhoneBluetoothSpeakerOutlined.tsx b/src/IconPhoneBluetoothSpeakerOutlined.tsx index d9b22834b..11ecf13cf 100644 --- a/src/IconPhoneBluetoothSpeakerOutlined.tsx +++ b/src/IconPhoneBluetoothSpeakerOutlined.tsx @@ -10,4 +10,4 @@ const IconPhoneBluetoothSpeakerOutlined: React.FC = ({ ) -export { IconPhoneBluetoothSpeakerOutlined as default } +export default IconPhoneBluetoothSpeakerOutlined diff --git a/src/IconPhoneBluetoothSpeakerOutlinedFilled.tsx b/src/IconPhoneBluetoothSpeakerOutlinedFilled.tsx index 090b27534..dc17b0601 100644 --- a/src/IconPhoneBluetoothSpeakerOutlinedFilled.tsx +++ b/src/IconPhoneBluetoothSpeakerOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconPhoneBluetoothSpeakerOutlinedFilled: React.FC = ({ ) -export { IconPhoneBluetoothSpeakerOutlinedFilled as default } +export default IconPhoneBluetoothSpeakerOutlinedFilled diff --git a/src/IconPhoneBluetoothSpeakerRounded.tsx b/src/IconPhoneBluetoothSpeakerRounded.tsx index 4ff6623a7..db76a460e 100644 --- a/src/IconPhoneBluetoothSpeakerRounded.tsx +++ b/src/IconPhoneBluetoothSpeakerRounded.tsx @@ -10,4 +10,4 @@ const IconPhoneBluetoothSpeakerRounded: React.FC = ({ ) -export { IconPhoneBluetoothSpeakerRounded as default } +export default IconPhoneBluetoothSpeakerRounded diff --git a/src/IconPhoneBluetoothSpeakerRoundedFilled.tsx b/src/IconPhoneBluetoothSpeakerRoundedFilled.tsx index 7af3ffa8a..ca910ea52 100644 --- a/src/IconPhoneBluetoothSpeakerRoundedFilled.tsx +++ b/src/IconPhoneBluetoothSpeakerRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconPhoneBluetoothSpeakerRoundedFilled: React.FC = ({ ) -export { IconPhoneBluetoothSpeakerRoundedFilled as default } +export default IconPhoneBluetoothSpeakerRoundedFilled diff --git a/src/IconPhoneBluetoothSpeakerSharp.tsx b/src/IconPhoneBluetoothSpeakerSharp.tsx index 0c835926a..19b24a143 100644 --- a/src/IconPhoneBluetoothSpeakerSharp.tsx +++ b/src/IconPhoneBluetoothSpeakerSharp.tsx @@ -8,4 +8,4 @@ const IconPhoneBluetoothSpeakerSharp: React.FC = ({ ...props }) => ( ) -export { IconPhoneBluetoothSpeakerSharp as default } +export default IconPhoneBluetoothSpeakerSharp diff --git a/src/IconPhoneBluetoothSpeakerSharpFilled.tsx b/src/IconPhoneBluetoothSpeakerSharpFilled.tsx index 8709d594c..413a7d64f 100644 --- a/src/IconPhoneBluetoothSpeakerSharpFilled.tsx +++ b/src/IconPhoneBluetoothSpeakerSharpFilled.tsx @@ -10,4 +10,4 @@ const IconPhoneBluetoothSpeakerSharpFilled: React.FC = ({ ) -export { IconPhoneBluetoothSpeakerSharpFilled as default } +export default IconPhoneBluetoothSpeakerSharpFilled diff --git a/src/IconPhoneCallbackOutlined.tsx b/src/IconPhoneCallbackOutlined.tsx index efff566dd..eb3943c58 100644 --- a/src/IconPhoneCallbackOutlined.tsx +++ b/src/IconPhoneCallbackOutlined.tsx @@ -8,4 +8,4 @@ const IconPhoneCallbackOutlined: React.FC = ({ ...props }) => ( ) -export { IconPhoneCallbackOutlined as default } +export default IconPhoneCallbackOutlined diff --git a/src/IconPhoneCallbackOutlinedFilled.tsx b/src/IconPhoneCallbackOutlinedFilled.tsx index 5a58285ee..d9e58ad9e 100644 --- a/src/IconPhoneCallbackOutlinedFilled.tsx +++ b/src/IconPhoneCallbackOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconPhoneCallbackOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconPhoneCallbackOutlinedFilled as default } +export default IconPhoneCallbackOutlinedFilled diff --git a/src/IconPhoneCallbackRounded.tsx b/src/IconPhoneCallbackRounded.tsx index 7349ca6b2..44259b1d8 100644 --- a/src/IconPhoneCallbackRounded.tsx +++ b/src/IconPhoneCallbackRounded.tsx @@ -8,4 +8,4 @@ const IconPhoneCallbackRounded: React.FC = ({ ...props }) => ( ) -export { IconPhoneCallbackRounded as default } +export default IconPhoneCallbackRounded diff --git a/src/IconPhoneCallbackRoundedFilled.tsx b/src/IconPhoneCallbackRoundedFilled.tsx index 38713647a..395ec2d4e 100644 --- a/src/IconPhoneCallbackRoundedFilled.tsx +++ b/src/IconPhoneCallbackRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconPhoneCallbackRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconPhoneCallbackRoundedFilled as default } +export default IconPhoneCallbackRoundedFilled diff --git a/src/IconPhoneCallbackSharp.tsx b/src/IconPhoneCallbackSharp.tsx index 69b847928..135d10cc6 100644 --- a/src/IconPhoneCallbackSharp.tsx +++ b/src/IconPhoneCallbackSharp.tsx @@ -8,4 +8,4 @@ const IconPhoneCallbackSharp: React.FC = ({ ...props }) => ( ) -export { IconPhoneCallbackSharp as default } +export default IconPhoneCallbackSharp diff --git a/src/IconPhoneCallbackSharpFilled.tsx b/src/IconPhoneCallbackSharpFilled.tsx index b58bdd185..90191ae92 100644 --- a/src/IconPhoneCallbackSharpFilled.tsx +++ b/src/IconPhoneCallbackSharpFilled.tsx @@ -8,4 +8,4 @@ const IconPhoneCallbackSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconPhoneCallbackSharpFilled as default } +export default IconPhoneCallbackSharpFilled diff --git a/src/IconPhoneDisabledOutlined.tsx b/src/IconPhoneDisabledOutlined.tsx index add1e7c54..1ff38affe 100644 --- a/src/IconPhoneDisabledOutlined.tsx +++ b/src/IconPhoneDisabledOutlined.tsx @@ -8,4 +8,4 @@ const IconPhoneDisabledOutlined: React.FC = ({ ...props }) => ( ) -export { IconPhoneDisabledOutlined as default } +export default IconPhoneDisabledOutlined diff --git a/src/IconPhoneDisabledOutlinedFilled.tsx b/src/IconPhoneDisabledOutlinedFilled.tsx index 09306d967..1919caf59 100644 --- a/src/IconPhoneDisabledOutlinedFilled.tsx +++ b/src/IconPhoneDisabledOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconPhoneDisabledOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconPhoneDisabledOutlinedFilled as default } +export default IconPhoneDisabledOutlinedFilled diff --git a/src/IconPhoneDisabledRounded.tsx b/src/IconPhoneDisabledRounded.tsx index 911998480..37b3c4f63 100644 --- a/src/IconPhoneDisabledRounded.tsx +++ b/src/IconPhoneDisabledRounded.tsx @@ -8,4 +8,4 @@ const IconPhoneDisabledRounded: React.FC = ({ ...props }) => ( ) -export { IconPhoneDisabledRounded as default } +export default IconPhoneDisabledRounded diff --git a/src/IconPhoneDisabledRoundedFilled.tsx b/src/IconPhoneDisabledRoundedFilled.tsx index 9b6418775..b2bc5c1f3 100644 --- a/src/IconPhoneDisabledRoundedFilled.tsx +++ b/src/IconPhoneDisabledRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconPhoneDisabledRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconPhoneDisabledRoundedFilled as default } +export default IconPhoneDisabledRoundedFilled diff --git a/src/IconPhoneDisabledSharp.tsx b/src/IconPhoneDisabledSharp.tsx index ea29d1d8c..cffcd46d6 100644 --- a/src/IconPhoneDisabledSharp.tsx +++ b/src/IconPhoneDisabledSharp.tsx @@ -8,4 +8,4 @@ const IconPhoneDisabledSharp: React.FC = ({ ...props }) => ( ) -export { IconPhoneDisabledSharp as default } +export default IconPhoneDisabledSharp diff --git a/src/IconPhoneDisabledSharpFilled.tsx b/src/IconPhoneDisabledSharpFilled.tsx index 2636f0673..a816b64d4 100644 --- a/src/IconPhoneDisabledSharpFilled.tsx +++ b/src/IconPhoneDisabledSharpFilled.tsx @@ -8,4 +8,4 @@ const IconPhoneDisabledSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconPhoneDisabledSharpFilled as default } +export default IconPhoneDisabledSharpFilled diff --git a/src/IconPhoneEnabledOutlined.tsx b/src/IconPhoneEnabledOutlined.tsx index 697ee120b..aa0bba9b0 100644 --- a/src/IconPhoneEnabledOutlined.tsx +++ b/src/IconPhoneEnabledOutlined.tsx @@ -8,4 +8,4 @@ const IconPhoneEnabledOutlined: React.FC = ({ ...props }) => ( ) -export { IconPhoneEnabledOutlined as default } +export default IconPhoneEnabledOutlined diff --git a/src/IconPhoneEnabledOutlinedFilled.tsx b/src/IconPhoneEnabledOutlinedFilled.tsx index 392e5d2ee..24de27212 100644 --- a/src/IconPhoneEnabledOutlinedFilled.tsx +++ b/src/IconPhoneEnabledOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconPhoneEnabledOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconPhoneEnabledOutlinedFilled as default } +export default IconPhoneEnabledOutlinedFilled diff --git a/src/IconPhoneEnabledRounded.tsx b/src/IconPhoneEnabledRounded.tsx index ec2a7b6d0..fbb87d860 100644 --- a/src/IconPhoneEnabledRounded.tsx +++ b/src/IconPhoneEnabledRounded.tsx @@ -8,4 +8,4 @@ const IconPhoneEnabledRounded: React.FC = ({ ...props }) => ( ) -export { IconPhoneEnabledRounded as default } +export default IconPhoneEnabledRounded diff --git a/src/IconPhoneEnabledRoundedFilled.tsx b/src/IconPhoneEnabledRoundedFilled.tsx index d111bcfda..61f4d5524 100644 --- a/src/IconPhoneEnabledRoundedFilled.tsx +++ b/src/IconPhoneEnabledRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconPhoneEnabledRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconPhoneEnabledRoundedFilled as default } +export default IconPhoneEnabledRoundedFilled diff --git a/src/IconPhoneEnabledSharp.tsx b/src/IconPhoneEnabledSharp.tsx index c37633cf8..008438fd7 100644 --- a/src/IconPhoneEnabledSharp.tsx +++ b/src/IconPhoneEnabledSharp.tsx @@ -8,4 +8,4 @@ const IconPhoneEnabledSharp: React.FC = ({ ...props }) => ( ) -export { IconPhoneEnabledSharp as default } +export default IconPhoneEnabledSharp diff --git a/src/IconPhoneEnabledSharpFilled.tsx b/src/IconPhoneEnabledSharpFilled.tsx index 0ed0a6291..b547428e0 100644 --- a/src/IconPhoneEnabledSharpFilled.tsx +++ b/src/IconPhoneEnabledSharpFilled.tsx @@ -8,4 +8,4 @@ const IconPhoneEnabledSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconPhoneEnabledSharpFilled as default } +export default IconPhoneEnabledSharpFilled diff --git a/src/IconPhoneForwardedOutlined.tsx b/src/IconPhoneForwardedOutlined.tsx index 53825e9c2..18040c518 100644 --- a/src/IconPhoneForwardedOutlined.tsx +++ b/src/IconPhoneForwardedOutlined.tsx @@ -8,4 +8,4 @@ const IconPhoneForwardedOutlined: React.FC = ({ ...props }) => ( ) -export { IconPhoneForwardedOutlined as default } +export default IconPhoneForwardedOutlined diff --git a/src/IconPhoneForwardedOutlinedFilled.tsx b/src/IconPhoneForwardedOutlinedFilled.tsx index 227e684c3..2d8ed2958 100644 --- a/src/IconPhoneForwardedOutlinedFilled.tsx +++ b/src/IconPhoneForwardedOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconPhoneForwardedOutlinedFilled: React.FC = ({ ) -export { IconPhoneForwardedOutlinedFilled as default } +export default IconPhoneForwardedOutlinedFilled diff --git a/src/IconPhoneForwardedRounded.tsx b/src/IconPhoneForwardedRounded.tsx index 40598dfbb..435469d17 100644 --- a/src/IconPhoneForwardedRounded.tsx +++ b/src/IconPhoneForwardedRounded.tsx @@ -8,4 +8,4 @@ const IconPhoneForwardedRounded: React.FC = ({ ...props }) => ( ) -export { IconPhoneForwardedRounded as default } +export default IconPhoneForwardedRounded diff --git a/src/IconPhoneForwardedRoundedFilled.tsx b/src/IconPhoneForwardedRoundedFilled.tsx index a00362079..5830449e2 100644 --- a/src/IconPhoneForwardedRoundedFilled.tsx +++ b/src/IconPhoneForwardedRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconPhoneForwardedRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconPhoneForwardedRoundedFilled as default } +export default IconPhoneForwardedRoundedFilled diff --git a/src/IconPhoneForwardedSharp.tsx b/src/IconPhoneForwardedSharp.tsx index 039c86ab3..1520b69f0 100644 --- a/src/IconPhoneForwardedSharp.tsx +++ b/src/IconPhoneForwardedSharp.tsx @@ -8,4 +8,4 @@ const IconPhoneForwardedSharp: React.FC = ({ ...props }) => ( ) -export { IconPhoneForwardedSharp as default } +export default IconPhoneForwardedSharp diff --git a/src/IconPhoneForwardedSharpFilled.tsx b/src/IconPhoneForwardedSharpFilled.tsx index 8b8983502..3e28a67f0 100644 --- a/src/IconPhoneForwardedSharpFilled.tsx +++ b/src/IconPhoneForwardedSharpFilled.tsx @@ -8,4 +8,4 @@ const IconPhoneForwardedSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconPhoneForwardedSharpFilled as default } +export default IconPhoneForwardedSharpFilled diff --git a/src/IconPhoneInTalkOutlined.tsx b/src/IconPhoneInTalkOutlined.tsx index 968d3fe79..1b0911964 100644 --- a/src/IconPhoneInTalkOutlined.tsx +++ b/src/IconPhoneInTalkOutlined.tsx @@ -8,4 +8,4 @@ const IconPhoneInTalkOutlined: React.FC = ({ ...props }) => ( ) -export { IconPhoneInTalkOutlined as default } +export default IconPhoneInTalkOutlined diff --git a/src/IconPhoneInTalkOutlinedFilled.tsx b/src/IconPhoneInTalkOutlinedFilled.tsx index f818d8ebb..214a3af50 100644 --- a/src/IconPhoneInTalkOutlinedFilled.tsx +++ b/src/IconPhoneInTalkOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconPhoneInTalkOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconPhoneInTalkOutlinedFilled as default } +export default IconPhoneInTalkOutlinedFilled diff --git a/src/IconPhoneInTalkRounded.tsx b/src/IconPhoneInTalkRounded.tsx index c9e389273..95a85a816 100644 --- a/src/IconPhoneInTalkRounded.tsx +++ b/src/IconPhoneInTalkRounded.tsx @@ -8,4 +8,4 @@ const IconPhoneInTalkRounded: React.FC = ({ ...props }) => ( ) -export { IconPhoneInTalkRounded as default } +export default IconPhoneInTalkRounded diff --git a/src/IconPhoneInTalkRoundedFilled.tsx b/src/IconPhoneInTalkRoundedFilled.tsx index 6ef93f0fa..a45988537 100644 --- a/src/IconPhoneInTalkRoundedFilled.tsx +++ b/src/IconPhoneInTalkRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconPhoneInTalkRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconPhoneInTalkRoundedFilled as default } +export default IconPhoneInTalkRoundedFilled diff --git a/src/IconPhoneInTalkSharp.tsx b/src/IconPhoneInTalkSharp.tsx index 726597447..e99643f6a 100644 --- a/src/IconPhoneInTalkSharp.tsx +++ b/src/IconPhoneInTalkSharp.tsx @@ -8,4 +8,4 @@ const IconPhoneInTalkSharp: React.FC = ({ ...props }) => ( ) -export { IconPhoneInTalkSharp as default } +export default IconPhoneInTalkSharp diff --git a/src/IconPhoneInTalkSharpFilled.tsx b/src/IconPhoneInTalkSharpFilled.tsx index 96d692336..43cc17fdd 100644 --- a/src/IconPhoneInTalkSharpFilled.tsx +++ b/src/IconPhoneInTalkSharpFilled.tsx @@ -8,4 +8,4 @@ const IconPhoneInTalkSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconPhoneInTalkSharpFilled as default } +export default IconPhoneInTalkSharpFilled diff --git a/src/IconPhoneIphoneOutlined.tsx b/src/IconPhoneIphoneOutlined.tsx index c1ba1fa6f..57a53aac8 100644 --- a/src/IconPhoneIphoneOutlined.tsx +++ b/src/IconPhoneIphoneOutlined.tsx @@ -8,4 +8,4 @@ const IconPhoneIphoneOutlined: React.FC = ({ ...props }) => ( ) -export { IconPhoneIphoneOutlined as default } +export default IconPhoneIphoneOutlined diff --git a/src/IconPhoneIphoneOutlinedFilled.tsx b/src/IconPhoneIphoneOutlinedFilled.tsx index 14a2cd0d6..863925a6b 100644 --- a/src/IconPhoneIphoneOutlinedFilled.tsx +++ b/src/IconPhoneIphoneOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconPhoneIphoneOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconPhoneIphoneOutlinedFilled as default } +export default IconPhoneIphoneOutlinedFilled diff --git a/src/IconPhoneIphoneRounded.tsx b/src/IconPhoneIphoneRounded.tsx index e496ed6b6..68ee7f847 100644 --- a/src/IconPhoneIphoneRounded.tsx +++ b/src/IconPhoneIphoneRounded.tsx @@ -8,4 +8,4 @@ const IconPhoneIphoneRounded: React.FC = ({ ...props }) => ( ) -export { IconPhoneIphoneRounded as default } +export default IconPhoneIphoneRounded diff --git a/src/IconPhoneIphoneRoundedFilled.tsx b/src/IconPhoneIphoneRoundedFilled.tsx index be3cdcc19..77d8e2d27 100644 --- a/src/IconPhoneIphoneRoundedFilled.tsx +++ b/src/IconPhoneIphoneRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconPhoneIphoneRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconPhoneIphoneRoundedFilled as default } +export default IconPhoneIphoneRoundedFilled diff --git a/src/IconPhoneIphoneSharp.tsx b/src/IconPhoneIphoneSharp.tsx index f683cdf17..87434690f 100644 --- a/src/IconPhoneIphoneSharp.tsx +++ b/src/IconPhoneIphoneSharp.tsx @@ -8,4 +8,4 @@ const IconPhoneIphoneSharp: React.FC = ({ ...props }) => ( ) -export { IconPhoneIphoneSharp as default } +export default IconPhoneIphoneSharp diff --git a/src/IconPhoneIphoneSharpFilled.tsx b/src/IconPhoneIphoneSharpFilled.tsx index 4be3f7c3c..86193dfe3 100644 --- a/src/IconPhoneIphoneSharpFilled.tsx +++ b/src/IconPhoneIphoneSharpFilled.tsx @@ -8,4 +8,4 @@ const IconPhoneIphoneSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconPhoneIphoneSharpFilled as default } +export default IconPhoneIphoneSharpFilled diff --git a/src/IconPhoneLockedOutlined.tsx b/src/IconPhoneLockedOutlined.tsx index 24a658904..e0c0f7178 100644 --- a/src/IconPhoneLockedOutlined.tsx +++ b/src/IconPhoneLockedOutlined.tsx @@ -8,4 +8,4 @@ const IconPhoneLockedOutlined: React.FC = ({ ...props }) => ( ) -export { IconPhoneLockedOutlined as default } +export default IconPhoneLockedOutlined diff --git a/src/IconPhoneLockedOutlinedFilled.tsx b/src/IconPhoneLockedOutlinedFilled.tsx index 329745dcc..999e26890 100644 --- a/src/IconPhoneLockedOutlinedFilled.tsx +++ b/src/IconPhoneLockedOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconPhoneLockedOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconPhoneLockedOutlinedFilled as default } +export default IconPhoneLockedOutlinedFilled diff --git a/src/IconPhoneLockedRounded.tsx b/src/IconPhoneLockedRounded.tsx index 7f6ef7d5c..fe76cb95c 100644 --- a/src/IconPhoneLockedRounded.tsx +++ b/src/IconPhoneLockedRounded.tsx @@ -8,4 +8,4 @@ const IconPhoneLockedRounded: React.FC = ({ ...props }) => ( ) -export { IconPhoneLockedRounded as default } +export default IconPhoneLockedRounded diff --git a/src/IconPhoneLockedRoundedFilled.tsx b/src/IconPhoneLockedRoundedFilled.tsx index 35514d4a8..158324355 100644 --- a/src/IconPhoneLockedRoundedFilled.tsx +++ b/src/IconPhoneLockedRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconPhoneLockedRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconPhoneLockedRoundedFilled as default } +export default IconPhoneLockedRoundedFilled diff --git a/src/IconPhoneLockedSharp.tsx b/src/IconPhoneLockedSharp.tsx index b13ea742f..40e73d1e2 100644 --- a/src/IconPhoneLockedSharp.tsx +++ b/src/IconPhoneLockedSharp.tsx @@ -8,4 +8,4 @@ const IconPhoneLockedSharp: React.FC = ({ ...props }) => ( ) -export { IconPhoneLockedSharp as default } +export default IconPhoneLockedSharp diff --git a/src/IconPhoneLockedSharpFilled.tsx b/src/IconPhoneLockedSharpFilled.tsx index c905c48b2..fd4237c7b 100644 --- a/src/IconPhoneLockedSharpFilled.tsx +++ b/src/IconPhoneLockedSharpFilled.tsx @@ -8,4 +8,4 @@ const IconPhoneLockedSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconPhoneLockedSharpFilled as default } +export default IconPhoneLockedSharpFilled diff --git a/src/IconPhoneMissedOutlined.tsx b/src/IconPhoneMissedOutlined.tsx index d8b135f79..84321b72c 100644 --- a/src/IconPhoneMissedOutlined.tsx +++ b/src/IconPhoneMissedOutlined.tsx @@ -8,4 +8,4 @@ const IconPhoneMissedOutlined: React.FC = ({ ...props }) => ( ) -export { IconPhoneMissedOutlined as default } +export default IconPhoneMissedOutlined diff --git a/src/IconPhoneMissedOutlinedFilled.tsx b/src/IconPhoneMissedOutlinedFilled.tsx index de220812b..216bb4026 100644 --- a/src/IconPhoneMissedOutlinedFilled.tsx +++ b/src/IconPhoneMissedOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconPhoneMissedOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconPhoneMissedOutlinedFilled as default } +export default IconPhoneMissedOutlinedFilled diff --git a/src/IconPhoneMissedRounded.tsx b/src/IconPhoneMissedRounded.tsx index f6824f6f7..f7acaad2f 100644 --- a/src/IconPhoneMissedRounded.tsx +++ b/src/IconPhoneMissedRounded.tsx @@ -8,4 +8,4 @@ const IconPhoneMissedRounded: React.FC = ({ ...props }) => ( ) -export { IconPhoneMissedRounded as default } +export default IconPhoneMissedRounded diff --git a/src/IconPhoneMissedRoundedFilled.tsx b/src/IconPhoneMissedRoundedFilled.tsx index 81a364100..142387862 100644 --- a/src/IconPhoneMissedRoundedFilled.tsx +++ b/src/IconPhoneMissedRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconPhoneMissedRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconPhoneMissedRoundedFilled as default } +export default IconPhoneMissedRoundedFilled diff --git a/src/IconPhoneMissedSharp.tsx b/src/IconPhoneMissedSharp.tsx index 93d4cdd6c..b69ac5294 100644 --- a/src/IconPhoneMissedSharp.tsx +++ b/src/IconPhoneMissedSharp.tsx @@ -8,4 +8,4 @@ const IconPhoneMissedSharp: React.FC = ({ ...props }) => ( ) -export { IconPhoneMissedSharp as default } +export default IconPhoneMissedSharp diff --git a/src/IconPhoneMissedSharpFilled.tsx b/src/IconPhoneMissedSharpFilled.tsx index d1036d5cd..0fd70ae58 100644 --- a/src/IconPhoneMissedSharpFilled.tsx +++ b/src/IconPhoneMissedSharpFilled.tsx @@ -8,4 +8,4 @@ const IconPhoneMissedSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconPhoneMissedSharpFilled as default } +export default IconPhoneMissedSharpFilled diff --git a/src/IconPhonePausedOutlined.tsx b/src/IconPhonePausedOutlined.tsx index 6d62cb6e7..0e3c2cfe3 100644 --- a/src/IconPhonePausedOutlined.tsx +++ b/src/IconPhonePausedOutlined.tsx @@ -8,4 +8,4 @@ const IconPhonePausedOutlined: React.FC = ({ ...props }) => ( ) -export { IconPhonePausedOutlined as default } +export default IconPhonePausedOutlined diff --git a/src/IconPhonePausedOutlinedFilled.tsx b/src/IconPhonePausedOutlinedFilled.tsx index 6fe423191..7bd261af1 100644 --- a/src/IconPhonePausedOutlinedFilled.tsx +++ b/src/IconPhonePausedOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconPhonePausedOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconPhonePausedOutlinedFilled as default } +export default IconPhonePausedOutlinedFilled diff --git a/src/IconPhonePausedRounded.tsx b/src/IconPhonePausedRounded.tsx index c330100b0..c0eb28f36 100644 --- a/src/IconPhonePausedRounded.tsx +++ b/src/IconPhonePausedRounded.tsx @@ -8,4 +8,4 @@ const IconPhonePausedRounded: React.FC = ({ ...props }) => ( ) -export { IconPhonePausedRounded as default } +export default IconPhonePausedRounded diff --git a/src/IconPhonePausedRoundedFilled.tsx b/src/IconPhonePausedRoundedFilled.tsx index 62d08ef19..617955ca3 100644 --- a/src/IconPhonePausedRoundedFilled.tsx +++ b/src/IconPhonePausedRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconPhonePausedRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconPhonePausedRoundedFilled as default } +export default IconPhonePausedRoundedFilled diff --git a/src/IconPhonePausedSharp.tsx b/src/IconPhonePausedSharp.tsx index 951980f08..64f102935 100644 --- a/src/IconPhonePausedSharp.tsx +++ b/src/IconPhonePausedSharp.tsx @@ -8,4 +8,4 @@ const IconPhonePausedSharp: React.FC = ({ ...props }) => ( ) -export { IconPhonePausedSharp as default } +export default IconPhonePausedSharp diff --git a/src/IconPhonePausedSharpFilled.tsx b/src/IconPhonePausedSharpFilled.tsx index 88ed63f04..905418962 100644 --- a/src/IconPhonePausedSharpFilled.tsx +++ b/src/IconPhonePausedSharpFilled.tsx @@ -8,4 +8,4 @@ const IconPhonePausedSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconPhonePausedSharpFilled as default } +export default IconPhonePausedSharpFilled diff --git a/src/IconPhonelinkEraseOutlined.tsx b/src/IconPhonelinkEraseOutlined.tsx index afac713b3..b4bf37fa6 100644 --- a/src/IconPhonelinkEraseOutlined.tsx +++ b/src/IconPhonelinkEraseOutlined.tsx @@ -8,4 +8,4 @@ const IconPhonelinkEraseOutlined: React.FC = ({ ...props }) => ( ) -export { IconPhonelinkEraseOutlined as default } +export default IconPhonelinkEraseOutlined diff --git a/src/IconPhonelinkEraseOutlinedFilled.tsx b/src/IconPhonelinkEraseOutlinedFilled.tsx index 13d3a6f1a..18ab4ef2e 100644 --- a/src/IconPhonelinkEraseOutlinedFilled.tsx +++ b/src/IconPhonelinkEraseOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconPhonelinkEraseOutlinedFilled: React.FC = ({ ) -export { IconPhonelinkEraseOutlinedFilled as default } +export default IconPhonelinkEraseOutlinedFilled diff --git a/src/IconPhonelinkEraseRounded.tsx b/src/IconPhonelinkEraseRounded.tsx index 586efea6d..017a42c72 100644 --- a/src/IconPhonelinkEraseRounded.tsx +++ b/src/IconPhonelinkEraseRounded.tsx @@ -8,4 +8,4 @@ const IconPhonelinkEraseRounded: React.FC = ({ ...props }) => ( ) -export { IconPhonelinkEraseRounded as default } +export default IconPhonelinkEraseRounded diff --git a/src/IconPhonelinkEraseRoundedFilled.tsx b/src/IconPhonelinkEraseRoundedFilled.tsx index 8ea8df341..e27b43308 100644 --- a/src/IconPhonelinkEraseRoundedFilled.tsx +++ b/src/IconPhonelinkEraseRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconPhonelinkEraseRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconPhonelinkEraseRoundedFilled as default } +export default IconPhonelinkEraseRoundedFilled diff --git a/src/IconPhonelinkEraseSharp.tsx b/src/IconPhonelinkEraseSharp.tsx index 912ac55c6..edf072eeb 100644 --- a/src/IconPhonelinkEraseSharp.tsx +++ b/src/IconPhonelinkEraseSharp.tsx @@ -8,4 +8,4 @@ const IconPhonelinkEraseSharp: React.FC = ({ ...props }) => ( ) -export { IconPhonelinkEraseSharp as default } +export default IconPhonelinkEraseSharp diff --git a/src/IconPhonelinkEraseSharpFilled.tsx b/src/IconPhonelinkEraseSharpFilled.tsx index a91d7c5f7..3c37ccc15 100644 --- a/src/IconPhonelinkEraseSharpFilled.tsx +++ b/src/IconPhonelinkEraseSharpFilled.tsx @@ -8,4 +8,4 @@ const IconPhonelinkEraseSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconPhonelinkEraseSharpFilled as default } +export default IconPhonelinkEraseSharpFilled diff --git a/src/IconPhonelinkLockOutlined.tsx b/src/IconPhonelinkLockOutlined.tsx index 866cf08a2..346801976 100644 --- a/src/IconPhonelinkLockOutlined.tsx +++ b/src/IconPhonelinkLockOutlined.tsx @@ -8,4 +8,4 @@ const IconPhonelinkLockOutlined: React.FC = ({ ...props }) => ( ) -export { IconPhonelinkLockOutlined as default } +export default IconPhonelinkLockOutlined diff --git a/src/IconPhonelinkLockOutlinedFilled.tsx b/src/IconPhonelinkLockOutlinedFilled.tsx index 04283853c..72aea0880 100644 --- a/src/IconPhonelinkLockOutlinedFilled.tsx +++ b/src/IconPhonelinkLockOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconPhonelinkLockOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconPhonelinkLockOutlinedFilled as default } +export default IconPhonelinkLockOutlinedFilled diff --git a/src/IconPhonelinkLockRounded.tsx b/src/IconPhonelinkLockRounded.tsx index 12aa08e12..bda53eec6 100644 --- a/src/IconPhonelinkLockRounded.tsx +++ b/src/IconPhonelinkLockRounded.tsx @@ -8,4 +8,4 @@ const IconPhonelinkLockRounded: React.FC = ({ ...props }) => ( ) -export { IconPhonelinkLockRounded as default } +export default IconPhonelinkLockRounded diff --git a/src/IconPhonelinkLockRoundedFilled.tsx b/src/IconPhonelinkLockRoundedFilled.tsx index d80543f86..16887e044 100644 --- a/src/IconPhonelinkLockRoundedFilled.tsx +++ b/src/IconPhonelinkLockRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconPhonelinkLockRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconPhonelinkLockRoundedFilled as default } +export default IconPhonelinkLockRoundedFilled diff --git a/src/IconPhonelinkLockSharp.tsx b/src/IconPhonelinkLockSharp.tsx index 54037374a..1f1d73f72 100644 --- a/src/IconPhonelinkLockSharp.tsx +++ b/src/IconPhonelinkLockSharp.tsx @@ -8,4 +8,4 @@ const IconPhonelinkLockSharp: React.FC = ({ ...props }) => ( ) -export { IconPhonelinkLockSharp as default } +export default IconPhonelinkLockSharp diff --git a/src/IconPhonelinkLockSharpFilled.tsx b/src/IconPhonelinkLockSharpFilled.tsx index 15b791cb1..1171b7cc6 100644 --- a/src/IconPhonelinkLockSharpFilled.tsx +++ b/src/IconPhonelinkLockSharpFilled.tsx @@ -8,4 +8,4 @@ const IconPhonelinkLockSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconPhonelinkLockSharpFilled as default } +export default IconPhonelinkLockSharpFilled diff --git a/src/IconPhonelinkOffOutlined.tsx b/src/IconPhonelinkOffOutlined.tsx index 15d4ef10e..78d16ac94 100644 --- a/src/IconPhonelinkOffOutlined.tsx +++ b/src/IconPhonelinkOffOutlined.tsx @@ -8,4 +8,4 @@ const IconPhonelinkOffOutlined: React.FC = ({ ...props }) => ( ) -export { IconPhonelinkOffOutlined as default } +export default IconPhonelinkOffOutlined diff --git a/src/IconPhonelinkOffOutlinedFilled.tsx b/src/IconPhonelinkOffOutlinedFilled.tsx index ae62d4a7f..441d3e0f9 100644 --- a/src/IconPhonelinkOffOutlinedFilled.tsx +++ b/src/IconPhonelinkOffOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconPhonelinkOffOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconPhonelinkOffOutlinedFilled as default } +export default IconPhonelinkOffOutlinedFilled diff --git a/src/IconPhonelinkOffRounded.tsx b/src/IconPhonelinkOffRounded.tsx index d071ef303..1c9c540e4 100644 --- a/src/IconPhonelinkOffRounded.tsx +++ b/src/IconPhonelinkOffRounded.tsx @@ -8,4 +8,4 @@ const IconPhonelinkOffRounded: React.FC = ({ ...props }) => ( ) -export { IconPhonelinkOffRounded as default } +export default IconPhonelinkOffRounded diff --git a/src/IconPhonelinkOffRoundedFilled.tsx b/src/IconPhonelinkOffRoundedFilled.tsx index 141f6827b..ecf445d90 100644 --- a/src/IconPhonelinkOffRoundedFilled.tsx +++ b/src/IconPhonelinkOffRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconPhonelinkOffRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconPhonelinkOffRoundedFilled as default } +export default IconPhonelinkOffRoundedFilled diff --git a/src/IconPhonelinkOffSharp.tsx b/src/IconPhonelinkOffSharp.tsx index 2dc639dc1..1f0a37811 100644 --- a/src/IconPhonelinkOffSharp.tsx +++ b/src/IconPhonelinkOffSharp.tsx @@ -8,4 +8,4 @@ const IconPhonelinkOffSharp: React.FC = ({ ...props }) => ( ) -export { IconPhonelinkOffSharp as default } +export default IconPhonelinkOffSharp diff --git a/src/IconPhonelinkOffSharpFilled.tsx b/src/IconPhonelinkOffSharpFilled.tsx index f836abdf1..308c5d202 100644 --- a/src/IconPhonelinkOffSharpFilled.tsx +++ b/src/IconPhonelinkOffSharpFilled.tsx @@ -8,4 +8,4 @@ const IconPhonelinkOffSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconPhonelinkOffSharpFilled as default } +export default IconPhonelinkOffSharpFilled diff --git a/src/IconPhonelinkRingOffOutlined.tsx b/src/IconPhonelinkRingOffOutlined.tsx index e57c41b8f..bbf3e673e 100644 --- a/src/IconPhonelinkRingOffOutlined.tsx +++ b/src/IconPhonelinkRingOffOutlined.tsx @@ -8,4 +8,4 @@ const IconPhonelinkRingOffOutlined: React.FC = ({ ...props }) => ( ) -export { IconPhonelinkRingOffOutlined as default } +export default IconPhonelinkRingOffOutlined diff --git a/src/IconPhonelinkRingOffOutlinedFilled.tsx b/src/IconPhonelinkRingOffOutlinedFilled.tsx index 07fe1f8c2..a32122005 100644 --- a/src/IconPhonelinkRingOffOutlinedFilled.tsx +++ b/src/IconPhonelinkRingOffOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconPhonelinkRingOffOutlinedFilled: React.FC = ({ ) -export { IconPhonelinkRingOffOutlinedFilled as default } +export default IconPhonelinkRingOffOutlinedFilled diff --git a/src/IconPhonelinkRingOffRounded.tsx b/src/IconPhonelinkRingOffRounded.tsx index 9aca7b6e2..153e24231 100644 --- a/src/IconPhonelinkRingOffRounded.tsx +++ b/src/IconPhonelinkRingOffRounded.tsx @@ -8,4 +8,4 @@ const IconPhonelinkRingOffRounded: React.FC = ({ ...props }) => ( ) -export { IconPhonelinkRingOffRounded as default } +export default IconPhonelinkRingOffRounded diff --git a/src/IconPhonelinkRingOffRoundedFilled.tsx b/src/IconPhonelinkRingOffRoundedFilled.tsx index 2bbe9c460..af2ec76e6 100644 --- a/src/IconPhonelinkRingOffRoundedFilled.tsx +++ b/src/IconPhonelinkRingOffRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconPhonelinkRingOffRoundedFilled: React.FC = ({ ) -export { IconPhonelinkRingOffRoundedFilled as default } +export default IconPhonelinkRingOffRoundedFilled diff --git a/src/IconPhonelinkRingOffSharp.tsx b/src/IconPhonelinkRingOffSharp.tsx index b4f6fd7fc..53d38890b 100644 --- a/src/IconPhonelinkRingOffSharp.tsx +++ b/src/IconPhonelinkRingOffSharp.tsx @@ -8,4 +8,4 @@ const IconPhonelinkRingOffSharp: React.FC = ({ ...props }) => ( ) -export { IconPhonelinkRingOffSharp as default } +export default IconPhonelinkRingOffSharp diff --git a/src/IconPhonelinkRingOffSharpFilled.tsx b/src/IconPhonelinkRingOffSharpFilled.tsx index a6b746d6a..ab6ba3ff8 100644 --- a/src/IconPhonelinkRingOffSharpFilled.tsx +++ b/src/IconPhonelinkRingOffSharpFilled.tsx @@ -8,4 +8,4 @@ const IconPhonelinkRingOffSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconPhonelinkRingOffSharpFilled as default } +export default IconPhonelinkRingOffSharpFilled diff --git a/src/IconPhonelinkRingOutlined.tsx b/src/IconPhonelinkRingOutlined.tsx index ad962cf48..d1a05ed99 100644 --- a/src/IconPhonelinkRingOutlined.tsx +++ b/src/IconPhonelinkRingOutlined.tsx @@ -8,4 +8,4 @@ const IconPhonelinkRingOutlined: React.FC = ({ ...props }) => ( ) -export { IconPhonelinkRingOutlined as default } +export default IconPhonelinkRingOutlined diff --git a/src/IconPhonelinkRingOutlinedFilled.tsx b/src/IconPhonelinkRingOutlinedFilled.tsx index 458137395..a78f77f27 100644 --- a/src/IconPhonelinkRingOutlinedFilled.tsx +++ b/src/IconPhonelinkRingOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconPhonelinkRingOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconPhonelinkRingOutlinedFilled as default } +export default IconPhonelinkRingOutlinedFilled diff --git a/src/IconPhonelinkRingRounded.tsx b/src/IconPhonelinkRingRounded.tsx index 84c753f5c..90f09cbff 100644 --- a/src/IconPhonelinkRingRounded.tsx +++ b/src/IconPhonelinkRingRounded.tsx @@ -8,4 +8,4 @@ const IconPhonelinkRingRounded: React.FC = ({ ...props }) => ( ) -export { IconPhonelinkRingRounded as default } +export default IconPhonelinkRingRounded diff --git a/src/IconPhonelinkRingRoundedFilled.tsx b/src/IconPhonelinkRingRoundedFilled.tsx index 5a441ccb8..a33c1f261 100644 --- a/src/IconPhonelinkRingRoundedFilled.tsx +++ b/src/IconPhonelinkRingRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconPhonelinkRingRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconPhonelinkRingRoundedFilled as default } +export default IconPhonelinkRingRoundedFilled diff --git a/src/IconPhonelinkRingSharp.tsx b/src/IconPhonelinkRingSharp.tsx index 3af1c9d6a..506ad32ed 100644 --- a/src/IconPhonelinkRingSharp.tsx +++ b/src/IconPhonelinkRingSharp.tsx @@ -8,4 +8,4 @@ const IconPhonelinkRingSharp: React.FC = ({ ...props }) => ( ) -export { IconPhonelinkRingSharp as default } +export default IconPhonelinkRingSharp diff --git a/src/IconPhonelinkRingSharpFilled.tsx b/src/IconPhonelinkRingSharpFilled.tsx index b4a889868..bd4b434c5 100644 --- a/src/IconPhonelinkRingSharpFilled.tsx +++ b/src/IconPhonelinkRingSharpFilled.tsx @@ -8,4 +8,4 @@ const IconPhonelinkRingSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconPhonelinkRingSharpFilled as default } +export default IconPhonelinkRingSharpFilled diff --git a/src/IconPhonelinkSetupOutlined.tsx b/src/IconPhonelinkSetupOutlined.tsx index efe3fe553..95295a52d 100644 --- a/src/IconPhonelinkSetupOutlined.tsx +++ b/src/IconPhonelinkSetupOutlined.tsx @@ -8,4 +8,4 @@ const IconPhonelinkSetupOutlined: React.FC = ({ ...props }) => ( ) -export { IconPhonelinkSetupOutlined as default } +export default IconPhonelinkSetupOutlined diff --git a/src/IconPhonelinkSetupOutlinedFilled.tsx b/src/IconPhonelinkSetupOutlinedFilled.tsx index 9504e08c4..b932694a1 100644 --- a/src/IconPhonelinkSetupOutlinedFilled.tsx +++ b/src/IconPhonelinkSetupOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconPhonelinkSetupOutlinedFilled: React.FC = ({ ) -export { IconPhonelinkSetupOutlinedFilled as default } +export default IconPhonelinkSetupOutlinedFilled diff --git a/src/IconPhonelinkSetupRounded.tsx b/src/IconPhonelinkSetupRounded.tsx index 1026b8ed4..f212e72f0 100644 --- a/src/IconPhonelinkSetupRounded.tsx +++ b/src/IconPhonelinkSetupRounded.tsx @@ -8,4 +8,4 @@ const IconPhonelinkSetupRounded: React.FC = ({ ...props }) => ( ) -export { IconPhonelinkSetupRounded as default } +export default IconPhonelinkSetupRounded diff --git a/src/IconPhonelinkSetupRoundedFilled.tsx b/src/IconPhonelinkSetupRoundedFilled.tsx index 038ff786b..0f1302513 100644 --- a/src/IconPhonelinkSetupRoundedFilled.tsx +++ b/src/IconPhonelinkSetupRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconPhonelinkSetupRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconPhonelinkSetupRoundedFilled as default } +export default IconPhonelinkSetupRoundedFilled diff --git a/src/IconPhonelinkSetupSharp.tsx b/src/IconPhonelinkSetupSharp.tsx index 83621abe6..95f07efb1 100644 --- a/src/IconPhonelinkSetupSharp.tsx +++ b/src/IconPhonelinkSetupSharp.tsx @@ -8,4 +8,4 @@ const IconPhonelinkSetupSharp: React.FC = ({ ...props }) => ( ) -export { IconPhonelinkSetupSharp as default } +export default IconPhonelinkSetupSharp diff --git a/src/IconPhonelinkSetupSharpFilled.tsx b/src/IconPhonelinkSetupSharpFilled.tsx index 39879153a..3707dc5ae 100644 --- a/src/IconPhonelinkSetupSharpFilled.tsx +++ b/src/IconPhonelinkSetupSharpFilled.tsx @@ -8,4 +8,4 @@ const IconPhonelinkSetupSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconPhonelinkSetupSharpFilled as default } +export default IconPhonelinkSetupSharpFilled diff --git a/src/IconPhotoAlbumOutlined.tsx b/src/IconPhotoAlbumOutlined.tsx index 2713086d2..b14d48e26 100644 --- a/src/IconPhotoAlbumOutlined.tsx +++ b/src/IconPhotoAlbumOutlined.tsx @@ -8,4 +8,4 @@ const IconPhotoAlbumOutlined: React.FC = ({ ...props }) => ( ) -export { IconPhotoAlbumOutlined as default } +export default IconPhotoAlbumOutlined diff --git a/src/IconPhotoAlbumOutlinedFilled.tsx b/src/IconPhotoAlbumOutlinedFilled.tsx index 8ec2f1aaa..28db21fd1 100644 --- a/src/IconPhotoAlbumOutlinedFilled.tsx +++ b/src/IconPhotoAlbumOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconPhotoAlbumOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconPhotoAlbumOutlinedFilled as default } +export default IconPhotoAlbumOutlinedFilled diff --git a/src/IconPhotoAlbumRounded.tsx b/src/IconPhotoAlbumRounded.tsx index 8c0551dbc..ed37d8e86 100644 --- a/src/IconPhotoAlbumRounded.tsx +++ b/src/IconPhotoAlbumRounded.tsx @@ -8,4 +8,4 @@ const IconPhotoAlbumRounded: React.FC = ({ ...props }) => ( ) -export { IconPhotoAlbumRounded as default } +export default IconPhotoAlbumRounded diff --git a/src/IconPhotoAlbumRoundedFilled.tsx b/src/IconPhotoAlbumRoundedFilled.tsx index de574caee..b9e322378 100644 --- a/src/IconPhotoAlbumRoundedFilled.tsx +++ b/src/IconPhotoAlbumRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconPhotoAlbumRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconPhotoAlbumRoundedFilled as default } +export default IconPhotoAlbumRoundedFilled diff --git a/src/IconPhotoAlbumSharp.tsx b/src/IconPhotoAlbumSharp.tsx index ed0bda273..e7104f791 100644 --- a/src/IconPhotoAlbumSharp.tsx +++ b/src/IconPhotoAlbumSharp.tsx @@ -8,4 +8,4 @@ const IconPhotoAlbumSharp: React.FC = ({ ...props }) => ( ) -export { IconPhotoAlbumSharp as default } +export default IconPhotoAlbumSharp diff --git a/src/IconPhotoAlbumSharpFilled.tsx b/src/IconPhotoAlbumSharpFilled.tsx index 8c8081693..4948eb0a3 100644 --- a/src/IconPhotoAlbumSharpFilled.tsx +++ b/src/IconPhotoAlbumSharpFilled.tsx @@ -8,4 +8,4 @@ const IconPhotoAlbumSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconPhotoAlbumSharpFilled as default } +export default IconPhotoAlbumSharpFilled diff --git a/src/IconPhotoAutoMergeOutlined.tsx b/src/IconPhotoAutoMergeOutlined.tsx index 4a2b3b376..0329f875d 100644 --- a/src/IconPhotoAutoMergeOutlined.tsx +++ b/src/IconPhotoAutoMergeOutlined.tsx @@ -8,4 +8,4 @@ const IconPhotoAutoMergeOutlined: React.FC = ({ ...props }) => ( ) -export { IconPhotoAutoMergeOutlined as default } +export default IconPhotoAutoMergeOutlined diff --git a/src/IconPhotoAutoMergeOutlinedFilled.tsx b/src/IconPhotoAutoMergeOutlinedFilled.tsx index f488d9660..a3fb6f4f1 100644 --- a/src/IconPhotoAutoMergeOutlinedFilled.tsx +++ b/src/IconPhotoAutoMergeOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconPhotoAutoMergeOutlinedFilled: React.FC = ({ ) -export { IconPhotoAutoMergeOutlinedFilled as default } +export default IconPhotoAutoMergeOutlinedFilled diff --git a/src/IconPhotoAutoMergeRounded.tsx b/src/IconPhotoAutoMergeRounded.tsx index c834f190e..cb6a77d39 100644 --- a/src/IconPhotoAutoMergeRounded.tsx +++ b/src/IconPhotoAutoMergeRounded.tsx @@ -8,4 +8,4 @@ const IconPhotoAutoMergeRounded: React.FC = ({ ...props }) => ( ) -export { IconPhotoAutoMergeRounded as default } +export default IconPhotoAutoMergeRounded diff --git a/src/IconPhotoAutoMergeRoundedFilled.tsx b/src/IconPhotoAutoMergeRoundedFilled.tsx index c3017a24e..8df2f96d9 100644 --- a/src/IconPhotoAutoMergeRoundedFilled.tsx +++ b/src/IconPhotoAutoMergeRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconPhotoAutoMergeRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconPhotoAutoMergeRoundedFilled as default } +export default IconPhotoAutoMergeRoundedFilled diff --git a/src/IconPhotoAutoMergeSharp.tsx b/src/IconPhotoAutoMergeSharp.tsx index d8bfeb398..3f661e4d1 100644 --- a/src/IconPhotoAutoMergeSharp.tsx +++ b/src/IconPhotoAutoMergeSharp.tsx @@ -8,4 +8,4 @@ const IconPhotoAutoMergeSharp: React.FC = ({ ...props }) => ( ) -export { IconPhotoAutoMergeSharp as default } +export default IconPhotoAutoMergeSharp diff --git a/src/IconPhotoAutoMergeSharpFilled.tsx b/src/IconPhotoAutoMergeSharpFilled.tsx index 232ba0aed..7f1341c28 100644 --- a/src/IconPhotoAutoMergeSharpFilled.tsx +++ b/src/IconPhotoAutoMergeSharpFilled.tsx @@ -8,4 +8,4 @@ const IconPhotoAutoMergeSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconPhotoAutoMergeSharpFilled as default } +export default IconPhotoAutoMergeSharpFilled diff --git a/src/IconPhotoCameraBackOutlined.tsx b/src/IconPhotoCameraBackOutlined.tsx index 729c37742..0c4fc1496 100644 --- a/src/IconPhotoCameraBackOutlined.tsx +++ b/src/IconPhotoCameraBackOutlined.tsx @@ -8,4 +8,4 @@ const IconPhotoCameraBackOutlined: React.FC = ({ ...props }) => ( ) -export { IconPhotoCameraBackOutlined as default } +export default IconPhotoCameraBackOutlined diff --git a/src/IconPhotoCameraBackOutlinedFilled.tsx b/src/IconPhotoCameraBackOutlinedFilled.tsx index f195c0655..4354dc300 100644 --- a/src/IconPhotoCameraBackOutlinedFilled.tsx +++ b/src/IconPhotoCameraBackOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconPhotoCameraBackOutlinedFilled: React.FC = ({ ) -export { IconPhotoCameraBackOutlinedFilled as default } +export default IconPhotoCameraBackOutlinedFilled diff --git a/src/IconPhotoCameraBackRounded.tsx b/src/IconPhotoCameraBackRounded.tsx index 7e417f814..43bb413de 100644 --- a/src/IconPhotoCameraBackRounded.tsx +++ b/src/IconPhotoCameraBackRounded.tsx @@ -8,4 +8,4 @@ const IconPhotoCameraBackRounded: React.FC = ({ ...props }) => ( ) -export { IconPhotoCameraBackRounded as default } +export default IconPhotoCameraBackRounded diff --git a/src/IconPhotoCameraBackRoundedFilled.tsx b/src/IconPhotoCameraBackRoundedFilled.tsx index 6c08b5904..e1e30af32 100644 --- a/src/IconPhotoCameraBackRoundedFilled.tsx +++ b/src/IconPhotoCameraBackRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconPhotoCameraBackRoundedFilled: React.FC = ({ ) -export { IconPhotoCameraBackRoundedFilled as default } +export default IconPhotoCameraBackRoundedFilled diff --git a/src/IconPhotoCameraBackSharp.tsx b/src/IconPhotoCameraBackSharp.tsx index af30d8e48..454ead154 100644 --- a/src/IconPhotoCameraBackSharp.tsx +++ b/src/IconPhotoCameraBackSharp.tsx @@ -8,4 +8,4 @@ const IconPhotoCameraBackSharp: React.FC = ({ ...props }) => ( ) -export { IconPhotoCameraBackSharp as default } +export default IconPhotoCameraBackSharp diff --git a/src/IconPhotoCameraBackSharpFilled.tsx b/src/IconPhotoCameraBackSharpFilled.tsx index b5fb45472..c77a29fca 100644 --- a/src/IconPhotoCameraBackSharpFilled.tsx +++ b/src/IconPhotoCameraBackSharpFilled.tsx @@ -8,4 +8,4 @@ const IconPhotoCameraBackSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconPhotoCameraBackSharpFilled as default } +export default IconPhotoCameraBackSharpFilled diff --git a/src/IconPhotoCameraFrontOutlined.tsx b/src/IconPhotoCameraFrontOutlined.tsx index 1b8b082eb..b40e250b5 100644 --- a/src/IconPhotoCameraFrontOutlined.tsx +++ b/src/IconPhotoCameraFrontOutlined.tsx @@ -8,4 +8,4 @@ const IconPhotoCameraFrontOutlined: React.FC = ({ ...props }) => ( ) -export { IconPhotoCameraFrontOutlined as default } +export default IconPhotoCameraFrontOutlined diff --git a/src/IconPhotoCameraFrontOutlinedFilled.tsx b/src/IconPhotoCameraFrontOutlinedFilled.tsx index 558bbc3a1..4824d4ca8 100644 --- a/src/IconPhotoCameraFrontOutlinedFilled.tsx +++ b/src/IconPhotoCameraFrontOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconPhotoCameraFrontOutlinedFilled: React.FC = ({ ) -export { IconPhotoCameraFrontOutlinedFilled as default } +export default IconPhotoCameraFrontOutlinedFilled diff --git a/src/IconPhotoCameraFrontRounded.tsx b/src/IconPhotoCameraFrontRounded.tsx index b81712939..78c84669f 100644 --- a/src/IconPhotoCameraFrontRounded.tsx +++ b/src/IconPhotoCameraFrontRounded.tsx @@ -8,4 +8,4 @@ const IconPhotoCameraFrontRounded: React.FC = ({ ...props }) => ( ) -export { IconPhotoCameraFrontRounded as default } +export default IconPhotoCameraFrontRounded diff --git a/src/IconPhotoCameraFrontRoundedFilled.tsx b/src/IconPhotoCameraFrontRoundedFilled.tsx index 1bd485537..faf06e071 100644 --- a/src/IconPhotoCameraFrontRoundedFilled.tsx +++ b/src/IconPhotoCameraFrontRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconPhotoCameraFrontRoundedFilled: React.FC = ({ ) -export { IconPhotoCameraFrontRoundedFilled as default } +export default IconPhotoCameraFrontRoundedFilled diff --git a/src/IconPhotoCameraFrontSharp.tsx b/src/IconPhotoCameraFrontSharp.tsx index f22a29013..6acece47f 100644 --- a/src/IconPhotoCameraFrontSharp.tsx +++ b/src/IconPhotoCameraFrontSharp.tsx @@ -8,4 +8,4 @@ const IconPhotoCameraFrontSharp: React.FC = ({ ...props }) => ( ) -export { IconPhotoCameraFrontSharp as default } +export default IconPhotoCameraFrontSharp diff --git a/src/IconPhotoCameraFrontSharpFilled.tsx b/src/IconPhotoCameraFrontSharpFilled.tsx index b06bc38e8..749d0fd8d 100644 --- a/src/IconPhotoCameraFrontSharpFilled.tsx +++ b/src/IconPhotoCameraFrontSharpFilled.tsx @@ -8,4 +8,4 @@ const IconPhotoCameraFrontSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconPhotoCameraFrontSharpFilled as default } +export default IconPhotoCameraFrontSharpFilled diff --git a/src/IconPhotoCameraOutlined.tsx b/src/IconPhotoCameraOutlined.tsx index 09aa82e78..d14782ee2 100644 --- a/src/IconPhotoCameraOutlined.tsx +++ b/src/IconPhotoCameraOutlined.tsx @@ -8,4 +8,4 @@ const IconPhotoCameraOutlined: React.FC = ({ ...props }) => ( ) -export { IconPhotoCameraOutlined as default } +export default IconPhotoCameraOutlined diff --git a/src/IconPhotoCameraOutlinedFilled.tsx b/src/IconPhotoCameraOutlinedFilled.tsx index 74709563f..50624ad5c 100644 --- a/src/IconPhotoCameraOutlinedFilled.tsx +++ b/src/IconPhotoCameraOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconPhotoCameraOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconPhotoCameraOutlinedFilled as default } +export default IconPhotoCameraOutlinedFilled diff --git a/src/IconPhotoCameraRounded.tsx b/src/IconPhotoCameraRounded.tsx index 9e4677952..5e7a9d6d4 100644 --- a/src/IconPhotoCameraRounded.tsx +++ b/src/IconPhotoCameraRounded.tsx @@ -8,4 +8,4 @@ const IconPhotoCameraRounded: React.FC = ({ ...props }) => ( ) -export { IconPhotoCameraRounded as default } +export default IconPhotoCameraRounded diff --git a/src/IconPhotoCameraRoundedFilled.tsx b/src/IconPhotoCameraRoundedFilled.tsx index be146a34e..22254e7b8 100644 --- a/src/IconPhotoCameraRoundedFilled.tsx +++ b/src/IconPhotoCameraRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconPhotoCameraRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconPhotoCameraRoundedFilled as default } +export default IconPhotoCameraRoundedFilled diff --git a/src/IconPhotoCameraSharp.tsx b/src/IconPhotoCameraSharp.tsx index b4d18a88b..a0d303f49 100644 --- a/src/IconPhotoCameraSharp.tsx +++ b/src/IconPhotoCameraSharp.tsx @@ -8,4 +8,4 @@ const IconPhotoCameraSharp: React.FC = ({ ...props }) => ( ) -export { IconPhotoCameraSharp as default } +export default IconPhotoCameraSharp diff --git a/src/IconPhotoCameraSharpFilled.tsx b/src/IconPhotoCameraSharpFilled.tsx index 90d82b803..33c898735 100644 --- a/src/IconPhotoCameraSharpFilled.tsx +++ b/src/IconPhotoCameraSharpFilled.tsx @@ -8,4 +8,4 @@ const IconPhotoCameraSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconPhotoCameraSharpFilled as default } +export default IconPhotoCameraSharpFilled diff --git a/src/IconPhotoFrameOutlined.tsx b/src/IconPhotoFrameOutlined.tsx index 1429c6938..eef2a21e9 100644 --- a/src/IconPhotoFrameOutlined.tsx +++ b/src/IconPhotoFrameOutlined.tsx @@ -8,4 +8,4 @@ const IconPhotoFrameOutlined: React.FC = ({ ...props }) => ( ) -export { IconPhotoFrameOutlined as default } +export default IconPhotoFrameOutlined diff --git a/src/IconPhotoFrameOutlinedFilled.tsx b/src/IconPhotoFrameOutlinedFilled.tsx index feadba3b8..0e139f64e 100644 --- a/src/IconPhotoFrameOutlinedFilled.tsx +++ b/src/IconPhotoFrameOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconPhotoFrameOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconPhotoFrameOutlinedFilled as default } +export default IconPhotoFrameOutlinedFilled diff --git a/src/IconPhotoFrameRounded.tsx b/src/IconPhotoFrameRounded.tsx index 4f13d8ec7..03b40acac 100644 --- a/src/IconPhotoFrameRounded.tsx +++ b/src/IconPhotoFrameRounded.tsx @@ -8,4 +8,4 @@ const IconPhotoFrameRounded: React.FC = ({ ...props }) => ( ) -export { IconPhotoFrameRounded as default } +export default IconPhotoFrameRounded diff --git a/src/IconPhotoFrameRoundedFilled.tsx b/src/IconPhotoFrameRoundedFilled.tsx index 479f05f82..8aad93b05 100644 --- a/src/IconPhotoFrameRoundedFilled.tsx +++ b/src/IconPhotoFrameRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconPhotoFrameRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconPhotoFrameRoundedFilled as default } +export default IconPhotoFrameRoundedFilled diff --git a/src/IconPhotoFrameSharp.tsx b/src/IconPhotoFrameSharp.tsx index a519afe42..ac9548fc1 100644 --- a/src/IconPhotoFrameSharp.tsx +++ b/src/IconPhotoFrameSharp.tsx @@ -8,4 +8,4 @@ const IconPhotoFrameSharp: React.FC = ({ ...props }) => ( ) -export { IconPhotoFrameSharp as default } +export default IconPhotoFrameSharp diff --git a/src/IconPhotoFrameSharpFilled.tsx b/src/IconPhotoFrameSharpFilled.tsx index bb0a8a991..f85494ced 100644 --- a/src/IconPhotoFrameSharpFilled.tsx +++ b/src/IconPhotoFrameSharpFilled.tsx @@ -8,4 +8,4 @@ const IconPhotoFrameSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconPhotoFrameSharpFilled as default } +export default IconPhotoFrameSharpFilled diff --git a/src/IconPhotoLibraryOutlined.tsx b/src/IconPhotoLibraryOutlined.tsx index d7a02ff72..6207ca3ff 100644 --- a/src/IconPhotoLibraryOutlined.tsx +++ b/src/IconPhotoLibraryOutlined.tsx @@ -8,4 +8,4 @@ const IconPhotoLibraryOutlined: React.FC = ({ ...props }) => ( ) -export { IconPhotoLibraryOutlined as default } +export default IconPhotoLibraryOutlined diff --git a/src/IconPhotoLibraryOutlinedFilled.tsx b/src/IconPhotoLibraryOutlinedFilled.tsx index 0ae8ef472..adc1c17cd 100644 --- a/src/IconPhotoLibraryOutlinedFilled.tsx +++ b/src/IconPhotoLibraryOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconPhotoLibraryOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconPhotoLibraryOutlinedFilled as default } +export default IconPhotoLibraryOutlinedFilled diff --git a/src/IconPhotoLibraryRounded.tsx b/src/IconPhotoLibraryRounded.tsx index e4b01fc22..4adcefea0 100644 --- a/src/IconPhotoLibraryRounded.tsx +++ b/src/IconPhotoLibraryRounded.tsx @@ -8,4 +8,4 @@ const IconPhotoLibraryRounded: React.FC = ({ ...props }) => ( ) -export { IconPhotoLibraryRounded as default } +export default IconPhotoLibraryRounded diff --git a/src/IconPhotoLibraryRoundedFilled.tsx b/src/IconPhotoLibraryRoundedFilled.tsx index 5386eee53..2dca87aba 100644 --- a/src/IconPhotoLibraryRoundedFilled.tsx +++ b/src/IconPhotoLibraryRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconPhotoLibraryRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconPhotoLibraryRoundedFilled as default } +export default IconPhotoLibraryRoundedFilled diff --git a/src/IconPhotoLibrarySharp.tsx b/src/IconPhotoLibrarySharp.tsx index 41150ce0d..598b3d707 100644 --- a/src/IconPhotoLibrarySharp.tsx +++ b/src/IconPhotoLibrarySharp.tsx @@ -8,4 +8,4 @@ const IconPhotoLibrarySharp: React.FC = ({ ...props }) => ( ) -export { IconPhotoLibrarySharp as default } +export default IconPhotoLibrarySharp diff --git a/src/IconPhotoLibrarySharpFilled.tsx b/src/IconPhotoLibrarySharpFilled.tsx index d062e5be6..378468b36 100644 --- a/src/IconPhotoLibrarySharpFilled.tsx +++ b/src/IconPhotoLibrarySharpFilled.tsx @@ -8,4 +8,4 @@ const IconPhotoLibrarySharpFilled: React.FC = ({ ...props }) => ( ) -export { IconPhotoLibrarySharpFilled as default } +export default IconPhotoLibrarySharpFilled diff --git a/src/IconPhotoOutlined.tsx b/src/IconPhotoOutlined.tsx index 49de3b5d6..d88afd763 100644 --- a/src/IconPhotoOutlined.tsx +++ b/src/IconPhotoOutlined.tsx @@ -8,4 +8,4 @@ const IconPhotoOutlined: React.FC = ({ ...props }) => ( ) -export { IconPhotoOutlined as default } +export default IconPhotoOutlined diff --git a/src/IconPhotoOutlinedFilled.tsx b/src/IconPhotoOutlinedFilled.tsx index 6e20e9900..398d3a46e 100644 --- a/src/IconPhotoOutlinedFilled.tsx +++ b/src/IconPhotoOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconPhotoOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconPhotoOutlinedFilled as default } +export default IconPhotoOutlinedFilled diff --git a/src/IconPhotoPrintsOutlined.tsx b/src/IconPhotoPrintsOutlined.tsx index 8d067f6c8..c36e7abc7 100644 --- a/src/IconPhotoPrintsOutlined.tsx +++ b/src/IconPhotoPrintsOutlined.tsx @@ -8,4 +8,4 @@ const IconPhotoPrintsOutlined: React.FC = ({ ...props }) => ( ) -export { IconPhotoPrintsOutlined as default } +export default IconPhotoPrintsOutlined diff --git a/src/IconPhotoPrintsOutlinedFilled.tsx b/src/IconPhotoPrintsOutlinedFilled.tsx index 374190631..e3cd119a6 100644 --- a/src/IconPhotoPrintsOutlinedFilled.tsx +++ b/src/IconPhotoPrintsOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconPhotoPrintsOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconPhotoPrintsOutlinedFilled as default } +export default IconPhotoPrintsOutlinedFilled diff --git a/src/IconPhotoPrintsRounded.tsx b/src/IconPhotoPrintsRounded.tsx index 76e68bb32..c42d3f5db 100644 --- a/src/IconPhotoPrintsRounded.tsx +++ b/src/IconPhotoPrintsRounded.tsx @@ -8,4 +8,4 @@ const IconPhotoPrintsRounded: React.FC = ({ ...props }) => ( ) -export { IconPhotoPrintsRounded as default } +export default IconPhotoPrintsRounded diff --git a/src/IconPhotoPrintsRoundedFilled.tsx b/src/IconPhotoPrintsRoundedFilled.tsx index a2ee17b8e..311f345ac 100644 --- a/src/IconPhotoPrintsRoundedFilled.tsx +++ b/src/IconPhotoPrintsRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconPhotoPrintsRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconPhotoPrintsRoundedFilled as default } +export default IconPhotoPrintsRoundedFilled diff --git a/src/IconPhotoPrintsSharp.tsx b/src/IconPhotoPrintsSharp.tsx index 1c5ad35a8..b758fc12f 100644 --- a/src/IconPhotoPrintsSharp.tsx +++ b/src/IconPhotoPrintsSharp.tsx @@ -8,4 +8,4 @@ const IconPhotoPrintsSharp: React.FC = ({ ...props }) => ( ) -export { IconPhotoPrintsSharp as default } +export default IconPhotoPrintsSharp diff --git a/src/IconPhotoPrintsSharpFilled.tsx b/src/IconPhotoPrintsSharpFilled.tsx index 60d0e2cef..e26a7f0d2 100644 --- a/src/IconPhotoPrintsSharpFilled.tsx +++ b/src/IconPhotoPrintsSharpFilled.tsx @@ -8,4 +8,4 @@ const IconPhotoPrintsSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconPhotoPrintsSharpFilled as default } +export default IconPhotoPrintsSharpFilled diff --git a/src/IconPhotoRounded.tsx b/src/IconPhotoRounded.tsx index 03cac3a9d..629eab3ba 100644 --- a/src/IconPhotoRounded.tsx +++ b/src/IconPhotoRounded.tsx @@ -8,4 +8,4 @@ const IconPhotoRounded: React.FC = ({ ...props }) => ( ) -export { IconPhotoRounded as default } +export default IconPhotoRounded diff --git a/src/IconPhotoRoundedFilled.tsx b/src/IconPhotoRoundedFilled.tsx index 2f85826a6..20e9a6d5d 100644 --- a/src/IconPhotoRoundedFilled.tsx +++ b/src/IconPhotoRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconPhotoRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconPhotoRoundedFilled as default } +export default IconPhotoRoundedFilled diff --git a/src/IconPhotoSharp.tsx b/src/IconPhotoSharp.tsx index 98f78a22d..dff7bc6ba 100644 --- a/src/IconPhotoSharp.tsx +++ b/src/IconPhotoSharp.tsx @@ -8,4 +8,4 @@ const IconPhotoSharp: React.FC = ({ ...props }) => ( ) -export { IconPhotoSharp as default } +export default IconPhotoSharp diff --git a/src/IconPhotoSharpFilled.tsx b/src/IconPhotoSharpFilled.tsx index 732fafadb..f8798001d 100644 --- a/src/IconPhotoSharpFilled.tsx +++ b/src/IconPhotoSharpFilled.tsx @@ -8,4 +8,4 @@ const IconPhotoSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconPhotoSharpFilled as default } +export default IconPhotoSharpFilled diff --git a/src/IconPhotoSizeSelectLargeOutlined.tsx b/src/IconPhotoSizeSelectLargeOutlined.tsx index 7417c70e5..ac645fcd5 100644 --- a/src/IconPhotoSizeSelectLargeOutlined.tsx +++ b/src/IconPhotoSizeSelectLargeOutlined.tsx @@ -10,4 +10,4 @@ const IconPhotoSizeSelectLargeOutlined: React.FC = ({ ) -export { IconPhotoSizeSelectLargeOutlined as default } +export default IconPhotoSizeSelectLargeOutlined diff --git a/src/IconPhotoSizeSelectLargeOutlinedFilled.tsx b/src/IconPhotoSizeSelectLargeOutlinedFilled.tsx index 7c69e28b4..8b83cab9d 100644 --- a/src/IconPhotoSizeSelectLargeOutlinedFilled.tsx +++ b/src/IconPhotoSizeSelectLargeOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconPhotoSizeSelectLargeOutlinedFilled: React.FC = ({ ) -export { IconPhotoSizeSelectLargeOutlinedFilled as default } +export default IconPhotoSizeSelectLargeOutlinedFilled diff --git a/src/IconPhotoSizeSelectLargeRounded.tsx b/src/IconPhotoSizeSelectLargeRounded.tsx index 4c0940ade..b28709359 100644 --- a/src/IconPhotoSizeSelectLargeRounded.tsx +++ b/src/IconPhotoSizeSelectLargeRounded.tsx @@ -8,4 +8,4 @@ const IconPhotoSizeSelectLargeRounded: React.FC = ({ ...props }) => ( ) -export { IconPhotoSizeSelectLargeRounded as default } +export default IconPhotoSizeSelectLargeRounded diff --git a/src/IconPhotoSizeSelectLargeRoundedFilled.tsx b/src/IconPhotoSizeSelectLargeRoundedFilled.tsx index e7a2a37d6..a10abc797 100644 --- a/src/IconPhotoSizeSelectLargeRoundedFilled.tsx +++ b/src/IconPhotoSizeSelectLargeRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconPhotoSizeSelectLargeRoundedFilled: React.FC = ({ ) -export { IconPhotoSizeSelectLargeRoundedFilled as default } +export default IconPhotoSizeSelectLargeRoundedFilled diff --git a/src/IconPhotoSizeSelectLargeSharp.tsx b/src/IconPhotoSizeSelectLargeSharp.tsx index beccda90c..0a48e6b25 100644 --- a/src/IconPhotoSizeSelectLargeSharp.tsx +++ b/src/IconPhotoSizeSelectLargeSharp.tsx @@ -8,4 +8,4 @@ const IconPhotoSizeSelectLargeSharp: React.FC = ({ ...props }) => ( ) -export { IconPhotoSizeSelectLargeSharp as default } +export default IconPhotoSizeSelectLargeSharp diff --git a/src/IconPhotoSizeSelectLargeSharpFilled.tsx b/src/IconPhotoSizeSelectLargeSharpFilled.tsx index 6b013a0d6..9f2d2f9ad 100644 --- a/src/IconPhotoSizeSelectLargeSharpFilled.tsx +++ b/src/IconPhotoSizeSelectLargeSharpFilled.tsx @@ -10,4 +10,4 @@ const IconPhotoSizeSelectLargeSharpFilled: React.FC = ({ ) -export { IconPhotoSizeSelectLargeSharpFilled as default } +export default IconPhotoSizeSelectLargeSharpFilled diff --git a/src/IconPhotoSizeSelectSmallOutlined.tsx b/src/IconPhotoSizeSelectSmallOutlined.tsx index 364fc47bc..e312577fd 100644 --- a/src/IconPhotoSizeSelectSmallOutlined.tsx +++ b/src/IconPhotoSizeSelectSmallOutlined.tsx @@ -10,4 +10,4 @@ const IconPhotoSizeSelectSmallOutlined: React.FC = ({ ) -export { IconPhotoSizeSelectSmallOutlined as default } +export default IconPhotoSizeSelectSmallOutlined diff --git a/src/IconPhotoSizeSelectSmallOutlinedFilled.tsx b/src/IconPhotoSizeSelectSmallOutlinedFilled.tsx index 627e28d32..9effd244c 100644 --- a/src/IconPhotoSizeSelectSmallOutlinedFilled.tsx +++ b/src/IconPhotoSizeSelectSmallOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconPhotoSizeSelectSmallOutlinedFilled: React.FC = ({ ) -export { IconPhotoSizeSelectSmallOutlinedFilled as default } +export default IconPhotoSizeSelectSmallOutlinedFilled diff --git a/src/IconPhotoSizeSelectSmallRounded.tsx b/src/IconPhotoSizeSelectSmallRounded.tsx index 037e02749..bd52d5a83 100644 --- a/src/IconPhotoSizeSelectSmallRounded.tsx +++ b/src/IconPhotoSizeSelectSmallRounded.tsx @@ -8,4 +8,4 @@ const IconPhotoSizeSelectSmallRounded: React.FC = ({ ...props }) => ( ) -export { IconPhotoSizeSelectSmallRounded as default } +export default IconPhotoSizeSelectSmallRounded diff --git a/src/IconPhotoSizeSelectSmallRoundedFilled.tsx b/src/IconPhotoSizeSelectSmallRoundedFilled.tsx index b90450329..a924a4aa8 100644 --- a/src/IconPhotoSizeSelectSmallRoundedFilled.tsx +++ b/src/IconPhotoSizeSelectSmallRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconPhotoSizeSelectSmallRoundedFilled: React.FC = ({ ) -export { IconPhotoSizeSelectSmallRoundedFilled as default } +export default IconPhotoSizeSelectSmallRoundedFilled diff --git a/src/IconPhotoSizeSelectSmallSharp.tsx b/src/IconPhotoSizeSelectSmallSharp.tsx index d56f4b729..ddb4c999b 100644 --- a/src/IconPhotoSizeSelectSmallSharp.tsx +++ b/src/IconPhotoSizeSelectSmallSharp.tsx @@ -8,4 +8,4 @@ const IconPhotoSizeSelectSmallSharp: React.FC = ({ ...props }) => ( ) -export { IconPhotoSizeSelectSmallSharp as default } +export default IconPhotoSizeSelectSmallSharp diff --git a/src/IconPhotoSizeSelectSmallSharpFilled.tsx b/src/IconPhotoSizeSelectSmallSharpFilled.tsx index 4e5b47026..a6b138a81 100644 --- a/src/IconPhotoSizeSelectSmallSharpFilled.tsx +++ b/src/IconPhotoSizeSelectSmallSharpFilled.tsx @@ -10,4 +10,4 @@ const IconPhotoSizeSelectSmallSharpFilled: React.FC = ({ ) -export { IconPhotoSizeSelectSmallSharpFilled as default } +export default IconPhotoSizeSelectSmallSharpFilled diff --git a/src/IconPhpOutlined.tsx b/src/IconPhpOutlined.tsx index ead727deb..b08c7ad4e 100644 --- a/src/IconPhpOutlined.tsx +++ b/src/IconPhpOutlined.tsx @@ -8,4 +8,4 @@ const IconPhpOutlined: React.FC = ({ ...props }) => ( ) -export { IconPhpOutlined as default } +export default IconPhpOutlined diff --git a/src/IconPhpOutlinedFilled.tsx b/src/IconPhpOutlinedFilled.tsx index 2ed49c7a8..3192c99d8 100644 --- a/src/IconPhpOutlinedFilled.tsx +++ b/src/IconPhpOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconPhpOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconPhpOutlinedFilled as default } +export default IconPhpOutlinedFilled diff --git a/src/IconPhpRounded.tsx b/src/IconPhpRounded.tsx index c29dcf438..e4013e7bb 100644 --- a/src/IconPhpRounded.tsx +++ b/src/IconPhpRounded.tsx @@ -8,4 +8,4 @@ const IconPhpRounded: React.FC = ({ ...props }) => ( ) -export { IconPhpRounded as default } +export default IconPhpRounded diff --git a/src/IconPhpRoundedFilled.tsx b/src/IconPhpRoundedFilled.tsx index ece395121..75efe5c40 100644 --- a/src/IconPhpRoundedFilled.tsx +++ b/src/IconPhpRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconPhpRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconPhpRoundedFilled as default } +export default IconPhpRoundedFilled diff --git a/src/IconPhpSharp.tsx b/src/IconPhpSharp.tsx index 587a43f82..1840a8787 100644 --- a/src/IconPhpSharp.tsx +++ b/src/IconPhpSharp.tsx @@ -8,4 +8,4 @@ const IconPhpSharp: React.FC = ({ ...props }) => ( ) -export { IconPhpSharp as default } +export default IconPhpSharp diff --git a/src/IconPhpSharpFilled.tsx b/src/IconPhpSharpFilled.tsx index ec5d5d6bd..c1b1da603 100644 --- a/src/IconPhpSharpFilled.tsx +++ b/src/IconPhpSharpFilled.tsx @@ -8,4 +8,4 @@ const IconPhpSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconPhpSharpFilled as default } +export default IconPhpSharpFilled diff --git a/src/IconPhysicalTherapyOutlined.tsx b/src/IconPhysicalTherapyOutlined.tsx index 5646213e8..4e02c2656 100644 --- a/src/IconPhysicalTherapyOutlined.tsx +++ b/src/IconPhysicalTherapyOutlined.tsx @@ -8,4 +8,4 @@ const IconPhysicalTherapyOutlined: React.FC = ({ ...props }) => ( ) -export { IconPhysicalTherapyOutlined as default } +export default IconPhysicalTherapyOutlined diff --git a/src/IconPhysicalTherapyOutlinedFilled.tsx b/src/IconPhysicalTherapyOutlinedFilled.tsx index b5d5db793..82721b7da 100644 --- a/src/IconPhysicalTherapyOutlinedFilled.tsx +++ b/src/IconPhysicalTherapyOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconPhysicalTherapyOutlinedFilled: React.FC = ({ ) -export { IconPhysicalTherapyOutlinedFilled as default } +export default IconPhysicalTherapyOutlinedFilled diff --git a/src/IconPhysicalTherapyRounded.tsx b/src/IconPhysicalTherapyRounded.tsx index 1bbf08875..74d7835ed 100644 --- a/src/IconPhysicalTherapyRounded.tsx +++ b/src/IconPhysicalTherapyRounded.tsx @@ -8,4 +8,4 @@ const IconPhysicalTherapyRounded: React.FC = ({ ...props }) => ( ) -export { IconPhysicalTherapyRounded as default } +export default IconPhysicalTherapyRounded diff --git a/src/IconPhysicalTherapyRoundedFilled.tsx b/src/IconPhysicalTherapyRoundedFilled.tsx index 9ca83600f..dc703b6a5 100644 --- a/src/IconPhysicalTherapyRoundedFilled.tsx +++ b/src/IconPhysicalTherapyRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconPhysicalTherapyRoundedFilled: React.FC = ({ ) -export { IconPhysicalTherapyRoundedFilled as default } +export default IconPhysicalTherapyRoundedFilled diff --git a/src/IconPhysicalTherapySharp.tsx b/src/IconPhysicalTherapySharp.tsx index bc9ee9025..53d46cdc9 100644 --- a/src/IconPhysicalTherapySharp.tsx +++ b/src/IconPhysicalTherapySharp.tsx @@ -8,4 +8,4 @@ const IconPhysicalTherapySharp: React.FC = ({ ...props }) => ( ) -export { IconPhysicalTherapySharp as default } +export default IconPhysicalTherapySharp diff --git a/src/IconPhysicalTherapySharpFilled.tsx b/src/IconPhysicalTherapySharpFilled.tsx index c28470b6b..ac583dff3 100644 --- a/src/IconPhysicalTherapySharpFilled.tsx +++ b/src/IconPhysicalTherapySharpFilled.tsx @@ -8,4 +8,4 @@ const IconPhysicalTherapySharpFilled: React.FC = ({ ...props }) => ( ) -export { IconPhysicalTherapySharpFilled as default } +export default IconPhysicalTherapySharpFilled diff --git a/src/IconPianoOffOutlined.tsx b/src/IconPianoOffOutlined.tsx index 6db1ff243..dc76cf3f0 100644 --- a/src/IconPianoOffOutlined.tsx +++ b/src/IconPianoOffOutlined.tsx @@ -8,4 +8,4 @@ const IconPianoOffOutlined: React.FC = ({ ...props }) => ( ) -export { IconPianoOffOutlined as default } +export default IconPianoOffOutlined diff --git a/src/IconPianoOffOutlinedFilled.tsx b/src/IconPianoOffOutlinedFilled.tsx index f64b770c0..bcdc1a774 100644 --- a/src/IconPianoOffOutlinedFilled.tsx +++ b/src/IconPianoOffOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconPianoOffOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconPianoOffOutlinedFilled as default } +export default IconPianoOffOutlinedFilled diff --git a/src/IconPianoOffRounded.tsx b/src/IconPianoOffRounded.tsx index 58f98e09e..19150a888 100644 --- a/src/IconPianoOffRounded.tsx +++ b/src/IconPianoOffRounded.tsx @@ -8,4 +8,4 @@ const IconPianoOffRounded: React.FC = ({ ...props }) => ( ) -export { IconPianoOffRounded as default } +export default IconPianoOffRounded diff --git a/src/IconPianoOffRoundedFilled.tsx b/src/IconPianoOffRoundedFilled.tsx index abd159aac..2313c6e80 100644 --- a/src/IconPianoOffRoundedFilled.tsx +++ b/src/IconPianoOffRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconPianoOffRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconPianoOffRoundedFilled as default } +export default IconPianoOffRoundedFilled diff --git a/src/IconPianoOffSharp.tsx b/src/IconPianoOffSharp.tsx index bba3687b9..6a305027f 100644 --- a/src/IconPianoOffSharp.tsx +++ b/src/IconPianoOffSharp.tsx @@ -8,4 +8,4 @@ const IconPianoOffSharp: React.FC = ({ ...props }) => ( ) -export { IconPianoOffSharp as default } +export default IconPianoOffSharp diff --git a/src/IconPianoOffSharpFilled.tsx b/src/IconPianoOffSharpFilled.tsx index 64678d56e..735d9409a 100644 --- a/src/IconPianoOffSharpFilled.tsx +++ b/src/IconPianoOffSharpFilled.tsx @@ -8,4 +8,4 @@ const IconPianoOffSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconPianoOffSharpFilled as default } +export default IconPianoOffSharpFilled diff --git a/src/IconPianoOutlined.tsx b/src/IconPianoOutlined.tsx index 1bec19ce9..98c1aaf54 100644 --- a/src/IconPianoOutlined.tsx +++ b/src/IconPianoOutlined.tsx @@ -8,4 +8,4 @@ const IconPianoOutlined: React.FC = ({ ...props }) => ( ) -export { IconPianoOutlined as default } +export default IconPianoOutlined diff --git a/src/IconPianoOutlinedFilled.tsx b/src/IconPianoOutlinedFilled.tsx index 7d5bfd9e9..4e39af96c 100644 --- a/src/IconPianoOutlinedFilled.tsx +++ b/src/IconPianoOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconPianoOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconPianoOutlinedFilled as default } +export default IconPianoOutlinedFilled diff --git a/src/IconPianoRounded.tsx b/src/IconPianoRounded.tsx index 923febc6d..edec3cd62 100644 --- a/src/IconPianoRounded.tsx +++ b/src/IconPianoRounded.tsx @@ -8,4 +8,4 @@ const IconPianoRounded: React.FC = ({ ...props }) => ( ) -export { IconPianoRounded as default } +export default IconPianoRounded diff --git a/src/IconPianoRoundedFilled.tsx b/src/IconPianoRoundedFilled.tsx index 31768ce23..faffebcfe 100644 --- a/src/IconPianoRoundedFilled.tsx +++ b/src/IconPianoRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconPianoRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconPianoRoundedFilled as default } +export default IconPianoRoundedFilled diff --git a/src/IconPianoSharp.tsx b/src/IconPianoSharp.tsx index 6f63288ea..33ec928e4 100644 --- a/src/IconPianoSharp.tsx +++ b/src/IconPianoSharp.tsx @@ -8,4 +8,4 @@ const IconPianoSharp: React.FC = ({ ...props }) => ( ) -export { IconPianoSharp as default } +export default IconPianoSharp diff --git a/src/IconPianoSharpFilled.tsx b/src/IconPianoSharpFilled.tsx index cf373e974..bfc68c7ad 100644 --- a/src/IconPianoSharpFilled.tsx +++ b/src/IconPianoSharpFilled.tsx @@ -8,4 +8,4 @@ const IconPianoSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconPianoSharpFilled as default } +export default IconPianoSharpFilled diff --git a/src/IconPictureAsPdfOutlined.tsx b/src/IconPictureAsPdfOutlined.tsx index 1f19a4f56..06957d294 100644 --- a/src/IconPictureAsPdfOutlined.tsx +++ b/src/IconPictureAsPdfOutlined.tsx @@ -8,4 +8,4 @@ const IconPictureAsPdfOutlined: React.FC = ({ ...props }) => ( ) -export { IconPictureAsPdfOutlined as default } +export default IconPictureAsPdfOutlined diff --git a/src/IconPictureAsPdfOutlinedFilled.tsx b/src/IconPictureAsPdfOutlinedFilled.tsx index aec078705..5dcee4a98 100644 --- a/src/IconPictureAsPdfOutlinedFilled.tsx +++ b/src/IconPictureAsPdfOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconPictureAsPdfOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconPictureAsPdfOutlinedFilled as default } +export default IconPictureAsPdfOutlinedFilled diff --git a/src/IconPictureAsPdfRounded.tsx b/src/IconPictureAsPdfRounded.tsx index b1400a486..4bf50c09e 100644 --- a/src/IconPictureAsPdfRounded.tsx +++ b/src/IconPictureAsPdfRounded.tsx @@ -8,4 +8,4 @@ const IconPictureAsPdfRounded: React.FC = ({ ...props }) => ( ) -export { IconPictureAsPdfRounded as default } +export default IconPictureAsPdfRounded diff --git a/src/IconPictureAsPdfRoundedFilled.tsx b/src/IconPictureAsPdfRoundedFilled.tsx index cbd63cc1e..ccb52c5e1 100644 --- a/src/IconPictureAsPdfRoundedFilled.tsx +++ b/src/IconPictureAsPdfRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconPictureAsPdfRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconPictureAsPdfRoundedFilled as default } +export default IconPictureAsPdfRoundedFilled diff --git a/src/IconPictureAsPdfSharp.tsx b/src/IconPictureAsPdfSharp.tsx index eb24d6083..1b73d6776 100644 --- a/src/IconPictureAsPdfSharp.tsx +++ b/src/IconPictureAsPdfSharp.tsx @@ -8,4 +8,4 @@ const IconPictureAsPdfSharp: React.FC = ({ ...props }) => ( ) -export { IconPictureAsPdfSharp as default } +export default IconPictureAsPdfSharp diff --git a/src/IconPictureAsPdfSharpFilled.tsx b/src/IconPictureAsPdfSharpFilled.tsx index b825865e1..623bf63ab 100644 --- a/src/IconPictureAsPdfSharpFilled.tsx +++ b/src/IconPictureAsPdfSharpFilled.tsx @@ -8,4 +8,4 @@ const IconPictureAsPdfSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconPictureAsPdfSharpFilled as default } +export default IconPictureAsPdfSharpFilled diff --git a/src/IconPictureInPictureAltOutlined.tsx b/src/IconPictureInPictureAltOutlined.tsx index 1879ee468..1b0fa20a6 100644 --- a/src/IconPictureInPictureAltOutlined.tsx +++ b/src/IconPictureInPictureAltOutlined.tsx @@ -8,4 +8,4 @@ const IconPictureInPictureAltOutlined: React.FC = ({ ...props }) => ( ) -export { IconPictureInPictureAltOutlined as default } +export default IconPictureInPictureAltOutlined diff --git a/src/IconPictureInPictureAltOutlinedFilled.tsx b/src/IconPictureInPictureAltOutlinedFilled.tsx index c40be50e1..bed5834c3 100644 --- a/src/IconPictureInPictureAltOutlinedFilled.tsx +++ b/src/IconPictureInPictureAltOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconPictureInPictureAltOutlinedFilled: React.FC = ({ ) -export { IconPictureInPictureAltOutlinedFilled as default } +export default IconPictureInPictureAltOutlinedFilled diff --git a/src/IconPictureInPictureAltRounded.tsx b/src/IconPictureInPictureAltRounded.tsx index a6d261d3b..62c253e71 100644 --- a/src/IconPictureInPictureAltRounded.tsx +++ b/src/IconPictureInPictureAltRounded.tsx @@ -8,4 +8,4 @@ const IconPictureInPictureAltRounded: React.FC = ({ ...props }) => ( ) -export { IconPictureInPictureAltRounded as default } +export default IconPictureInPictureAltRounded diff --git a/src/IconPictureInPictureAltRoundedFilled.tsx b/src/IconPictureInPictureAltRoundedFilled.tsx index 7fce3b40c..a561019d5 100644 --- a/src/IconPictureInPictureAltRoundedFilled.tsx +++ b/src/IconPictureInPictureAltRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconPictureInPictureAltRoundedFilled: React.FC = ({ ) -export { IconPictureInPictureAltRoundedFilled as default } +export default IconPictureInPictureAltRoundedFilled diff --git a/src/IconPictureInPictureAltSharp.tsx b/src/IconPictureInPictureAltSharp.tsx index 34ad0f3c3..126b9788e 100644 --- a/src/IconPictureInPictureAltSharp.tsx +++ b/src/IconPictureInPictureAltSharp.tsx @@ -8,4 +8,4 @@ const IconPictureInPictureAltSharp: React.FC = ({ ...props }) => ( ) -export { IconPictureInPictureAltSharp as default } +export default IconPictureInPictureAltSharp diff --git a/src/IconPictureInPictureAltSharpFilled.tsx b/src/IconPictureInPictureAltSharpFilled.tsx index e39426f2c..bee3c873e 100644 --- a/src/IconPictureInPictureAltSharpFilled.tsx +++ b/src/IconPictureInPictureAltSharpFilled.tsx @@ -10,4 +10,4 @@ const IconPictureInPictureAltSharpFilled: React.FC = ({ ) -export { IconPictureInPictureAltSharpFilled as default } +export default IconPictureInPictureAltSharpFilled diff --git a/src/IconPictureInPictureCenterOutlined.tsx b/src/IconPictureInPictureCenterOutlined.tsx index dbc456123..da3d12c84 100644 --- a/src/IconPictureInPictureCenterOutlined.tsx +++ b/src/IconPictureInPictureCenterOutlined.tsx @@ -10,4 +10,4 @@ const IconPictureInPictureCenterOutlined: React.FC = ({ ) -export { IconPictureInPictureCenterOutlined as default } +export default IconPictureInPictureCenterOutlined diff --git a/src/IconPictureInPictureCenterOutlinedFilled.tsx b/src/IconPictureInPictureCenterOutlinedFilled.tsx index 8bde13e6f..d226ac63e 100644 --- a/src/IconPictureInPictureCenterOutlinedFilled.tsx +++ b/src/IconPictureInPictureCenterOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconPictureInPictureCenterOutlinedFilled: React.FC = ({ ) -export { IconPictureInPictureCenterOutlinedFilled as default } +export default IconPictureInPictureCenterOutlinedFilled diff --git a/src/IconPictureInPictureCenterRounded.tsx b/src/IconPictureInPictureCenterRounded.tsx index ae40be9c9..c0d302299 100644 --- a/src/IconPictureInPictureCenterRounded.tsx +++ b/src/IconPictureInPictureCenterRounded.tsx @@ -10,4 +10,4 @@ const IconPictureInPictureCenterRounded: React.FC = ({ ) -export { IconPictureInPictureCenterRounded as default } +export default IconPictureInPictureCenterRounded diff --git a/src/IconPictureInPictureCenterRoundedFilled.tsx b/src/IconPictureInPictureCenterRoundedFilled.tsx index 791b00df3..0e59b584d 100644 --- a/src/IconPictureInPictureCenterRoundedFilled.tsx +++ b/src/IconPictureInPictureCenterRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconPictureInPictureCenterRoundedFilled: React.FC = ({ ) -export { IconPictureInPictureCenterRoundedFilled as default } +export default IconPictureInPictureCenterRoundedFilled diff --git a/src/IconPictureInPictureCenterSharp.tsx b/src/IconPictureInPictureCenterSharp.tsx index 632116bc0..865ad0d66 100644 --- a/src/IconPictureInPictureCenterSharp.tsx +++ b/src/IconPictureInPictureCenterSharp.tsx @@ -8,4 +8,4 @@ const IconPictureInPictureCenterSharp: React.FC = ({ ...props }) => ( ) -export { IconPictureInPictureCenterSharp as default } +export default IconPictureInPictureCenterSharp diff --git a/src/IconPictureInPictureCenterSharpFilled.tsx b/src/IconPictureInPictureCenterSharpFilled.tsx index 0be59441e..2fe54155a 100644 --- a/src/IconPictureInPictureCenterSharpFilled.tsx +++ b/src/IconPictureInPictureCenterSharpFilled.tsx @@ -10,4 +10,4 @@ const IconPictureInPictureCenterSharpFilled: React.FC = ({ ) -export { IconPictureInPictureCenterSharpFilled as default } +export default IconPictureInPictureCenterSharpFilled diff --git a/src/IconPictureInPictureLargeOutlined.tsx b/src/IconPictureInPictureLargeOutlined.tsx index 43c43298d..2996eca7e 100644 --- a/src/IconPictureInPictureLargeOutlined.tsx +++ b/src/IconPictureInPictureLargeOutlined.tsx @@ -10,4 +10,4 @@ const IconPictureInPictureLargeOutlined: React.FC = ({ ) -export { IconPictureInPictureLargeOutlined as default } +export default IconPictureInPictureLargeOutlined diff --git a/src/IconPictureInPictureLargeOutlinedFilled.tsx b/src/IconPictureInPictureLargeOutlinedFilled.tsx index 0b357541a..8c3fafd4b 100644 --- a/src/IconPictureInPictureLargeOutlinedFilled.tsx +++ b/src/IconPictureInPictureLargeOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconPictureInPictureLargeOutlinedFilled: React.FC = ({ ) -export { IconPictureInPictureLargeOutlinedFilled as default } +export default IconPictureInPictureLargeOutlinedFilled diff --git a/src/IconPictureInPictureLargeRounded.tsx b/src/IconPictureInPictureLargeRounded.tsx index 08d5c08ad..db2304c75 100644 --- a/src/IconPictureInPictureLargeRounded.tsx +++ b/src/IconPictureInPictureLargeRounded.tsx @@ -10,4 +10,4 @@ const IconPictureInPictureLargeRounded: React.FC = ({ ) -export { IconPictureInPictureLargeRounded as default } +export default IconPictureInPictureLargeRounded diff --git a/src/IconPictureInPictureLargeRoundedFilled.tsx b/src/IconPictureInPictureLargeRoundedFilled.tsx index 5b32cc9a2..50d3b86a6 100644 --- a/src/IconPictureInPictureLargeRoundedFilled.tsx +++ b/src/IconPictureInPictureLargeRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconPictureInPictureLargeRoundedFilled: React.FC = ({ ) -export { IconPictureInPictureLargeRoundedFilled as default } +export default IconPictureInPictureLargeRoundedFilled diff --git a/src/IconPictureInPictureLargeSharp.tsx b/src/IconPictureInPictureLargeSharp.tsx index 032b7ac87..1d3cf5809 100644 --- a/src/IconPictureInPictureLargeSharp.tsx +++ b/src/IconPictureInPictureLargeSharp.tsx @@ -8,4 +8,4 @@ const IconPictureInPictureLargeSharp: React.FC = ({ ...props }) => ( ) -export { IconPictureInPictureLargeSharp as default } +export default IconPictureInPictureLargeSharp diff --git a/src/IconPictureInPictureLargeSharpFilled.tsx b/src/IconPictureInPictureLargeSharpFilled.tsx index e9fb8d62e..7b0c8a3b8 100644 --- a/src/IconPictureInPictureLargeSharpFilled.tsx +++ b/src/IconPictureInPictureLargeSharpFilled.tsx @@ -10,4 +10,4 @@ const IconPictureInPictureLargeSharpFilled: React.FC = ({ ) -export { IconPictureInPictureLargeSharpFilled as default } +export default IconPictureInPictureLargeSharpFilled diff --git a/src/IconPictureInPictureMediumOutlined.tsx b/src/IconPictureInPictureMediumOutlined.tsx index ff9b67ed0..ece428bfd 100644 --- a/src/IconPictureInPictureMediumOutlined.tsx +++ b/src/IconPictureInPictureMediumOutlined.tsx @@ -10,4 +10,4 @@ const IconPictureInPictureMediumOutlined: React.FC = ({ ) -export { IconPictureInPictureMediumOutlined as default } +export default IconPictureInPictureMediumOutlined diff --git a/src/IconPictureInPictureMediumOutlinedFilled.tsx b/src/IconPictureInPictureMediumOutlinedFilled.tsx index 5cf554711..fdb7dd28c 100644 --- a/src/IconPictureInPictureMediumOutlinedFilled.tsx +++ b/src/IconPictureInPictureMediumOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconPictureInPictureMediumOutlinedFilled: React.FC = ({ ) -export { IconPictureInPictureMediumOutlinedFilled as default } +export default IconPictureInPictureMediumOutlinedFilled diff --git a/src/IconPictureInPictureMediumRounded.tsx b/src/IconPictureInPictureMediumRounded.tsx index 484cae7bb..8caa3b93c 100644 --- a/src/IconPictureInPictureMediumRounded.tsx +++ b/src/IconPictureInPictureMediumRounded.tsx @@ -10,4 +10,4 @@ const IconPictureInPictureMediumRounded: React.FC = ({ ) -export { IconPictureInPictureMediumRounded as default } +export default IconPictureInPictureMediumRounded diff --git a/src/IconPictureInPictureMediumRoundedFilled.tsx b/src/IconPictureInPictureMediumRoundedFilled.tsx index f0e17d76a..1ed7cb439 100644 --- a/src/IconPictureInPictureMediumRoundedFilled.tsx +++ b/src/IconPictureInPictureMediumRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconPictureInPictureMediumRoundedFilled: React.FC = ({ ) -export { IconPictureInPictureMediumRoundedFilled as default } +export default IconPictureInPictureMediumRoundedFilled diff --git a/src/IconPictureInPictureMediumSharp.tsx b/src/IconPictureInPictureMediumSharp.tsx index 532beca69..c4d07fa7d 100644 --- a/src/IconPictureInPictureMediumSharp.tsx +++ b/src/IconPictureInPictureMediumSharp.tsx @@ -8,4 +8,4 @@ const IconPictureInPictureMediumSharp: React.FC = ({ ...props }) => ( ) -export { IconPictureInPictureMediumSharp as default } +export default IconPictureInPictureMediumSharp diff --git a/src/IconPictureInPictureMediumSharpFilled.tsx b/src/IconPictureInPictureMediumSharpFilled.tsx index c4d956b64..73dfd68ff 100644 --- a/src/IconPictureInPictureMediumSharpFilled.tsx +++ b/src/IconPictureInPictureMediumSharpFilled.tsx @@ -10,4 +10,4 @@ const IconPictureInPictureMediumSharpFilled: React.FC = ({ ) -export { IconPictureInPictureMediumSharpFilled as default } +export default IconPictureInPictureMediumSharpFilled diff --git a/src/IconPictureInPictureMobileOutlined.tsx b/src/IconPictureInPictureMobileOutlined.tsx index 56a6168c9..a7ab4e8fe 100644 --- a/src/IconPictureInPictureMobileOutlined.tsx +++ b/src/IconPictureInPictureMobileOutlined.tsx @@ -10,4 +10,4 @@ const IconPictureInPictureMobileOutlined: React.FC = ({ ) -export { IconPictureInPictureMobileOutlined as default } +export default IconPictureInPictureMobileOutlined diff --git a/src/IconPictureInPictureMobileOutlinedFilled.tsx b/src/IconPictureInPictureMobileOutlinedFilled.tsx index b26e4d02f..e1f6fb509 100644 --- a/src/IconPictureInPictureMobileOutlinedFilled.tsx +++ b/src/IconPictureInPictureMobileOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconPictureInPictureMobileOutlinedFilled: React.FC = ({ ) -export { IconPictureInPictureMobileOutlinedFilled as default } +export default IconPictureInPictureMobileOutlinedFilled diff --git a/src/IconPictureInPictureMobileRounded.tsx b/src/IconPictureInPictureMobileRounded.tsx index 038a8b3eb..6f9e035ae 100644 --- a/src/IconPictureInPictureMobileRounded.tsx +++ b/src/IconPictureInPictureMobileRounded.tsx @@ -10,4 +10,4 @@ const IconPictureInPictureMobileRounded: React.FC = ({ ) -export { IconPictureInPictureMobileRounded as default } +export default IconPictureInPictureMobileRounded diff --git a/src/IconPictureInPictureMobileRoundedFilled.tsx b/src/IconPictureInPictureMobileRoundedFilled.tsx index 00719ee50..abc8cdabd 100644 --- a/src/IconPictureInPictureMobileRoundedFilled.tsx +++ b/src/IconPictureInPictureMobileRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconPictureInPictureMobileRoundedFilled: React.FC = ({ ) -export { IconPictureInPictureMobileRoundedFilled as default } +export default IconPictureInPictureMobileRoundedFilled diff --git a/src/IconPictureInPictureMobileSharp.tsx b/src/IconPictureInPictureMobileSharp.tsx index d11010c45..f6e69da84 100644 --- a/src/IconPictureInPictureMobileSharp.tsx +++ b/src/IconPictureInPictureMobileSharp.tsx @@ -8,4 +8,4 @@ const IconPictureInPictureMobileSharp: React.FC = ({ ...props }) => ( ) -export { IconPictureInPictureMobileSharp as default } +export default IconPictureInPictureMobileSharp diff --git a/src/IconPictureInPictureMobileSharpFilled.tsx b/src/IconPictureInPictureMobileSharpFilled.tsx index b72a729d2..8e97efeb0 100644 --- a/src/IconPictureInPictureMobileSharpFilled.tsx +++ b/src/IconPictureInPictureMobileSharpFilled.tsx @@ -10,4 +10,4 @@ const IconPictureInPictureMobileSharpFilled: React.FC = ({ ) -export { IconPictureInPictureMobileSharpFilled as default } +export default IconPictureInPictureMobileSharpFilled diff --git a/src/IconPictureInPictureOffOutlined.tsx b/src/IconPictureInPictureOffOutlined.tsx index 8b2cf1449..cf68c960f 100644 --- a/src/IconPictureInPictureOffOutlined.tsx +++ b/src/IconPictureInPictureOffOutlined.tsx @@ -8,4 +8,4 @@ const IconPictureInPictureOffOutlined: React.FC = ({ ...props }) => ( ) -export { IconPictureInPictureOffOutlined as default } +export default IconPictureInPictureOffOutlined diff --git a/src/IconPictureInPictureOffOutlinedFilled.tsx b/src/IconPictureInPictureOffOutlinedFilled.tsx index d84ce76de..4e5d0bd3e 100644 --- a/src/IconPictureInPictureOffOutlinedFilled.tsx +++ b/src/IconPictureInPictureOffOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconPictureInPictureOffOutlinedFilled: React.FC = ({ ) -export { IconPictureInPictureOffOutlinedFilled as default } +export default IconPictureInPictureOffOutlinedFilled diff --git a/src/IconPictureInPictureOffRounded.tsx b/src/IconPictureInPictureOffRounded.tsx index 894dfad79..280cd4008 100644 --- a/src/IconPictureInPictureOffRounded.tsx +++ b/src/IconPictureInPictureOffRounded.tsx @@ -8,4 +8,4 @@ const IconPictureInPictureOffRounded: React.FC = ({ ...props }) => ( ) -export { IconPictureInPictureOffRounded as default } +export default IconPictureInPictureOffRounded diff --git a/src/IconPictureInPictureOffRoundedFilled.tsx b/src/IconPictureInPictureOffRoundedFilled.tsx index f9fb57669..20994ef74 100644 --- a/src/IconPictureInPictureOffRoundedFilled.tsx +++ b/src/IconPictureInPictureOffRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconPictureInPictureOffRoundedFilled: React.FC = ({ ) -export { IconPictureInPictureOffRoundedFilled as default } +export default IconPictureInPictureOffRoundedFilled diff --git a/src/IconPictureInPictureOffSharp.tsx b/src/IconPictureInPictureOffSharp.tsx index 4063ff2bc..7f59ad655 100644 --- a/src/IconPictureInPictureOffSharp.tsx +++ b/src/IconPictureInPictureOffSharp.tsx @@ -8,4 +8,4 @@ const IconPictureInPictureOffSharp: React.FC = ({ ...props }) => ( ) -export { IconPictureInPictureOffSharp as default } +export default IconPictureInPictureOffSharp diff --git a/src/IconPictureInPictureOffSharpFilled.tsx b/src/IconPictureInPictureOffSharpFilled.tsx index 79f9af509..84e5c03ee 100644 --- a/src/IconPictureInPictureOffSharpFilled.tsx +++ b/src/IconPictureInPictureOffSharpFilled.tsx @@ -10,4 +10,4 @@ const IconPictureInPictureOffSharpFilled: React.FC = ({ ) -export { IconPictureInPictureOffSharpFilled as default } +export default IconPictureInPictureOffSharpFilled diff --git a/src/IconPictureInPictureOutlined.tsx b/src/IconPictureInPictureOutlined.tsx index 73de6a428..13515b27f 100644 --- a/src/IconPictureInPictureOutlined.tsx +++ b/src/IconPictureInPictureOutlined.tsx @@ -8,4 +8,4 @@ const IconPictureInPictureOutlined: React.FC = ({ ...props }) => ( ) -export { IconPictureInPictureOutlined as default } +export default IconPictureInPictureOutlined diff --git a/src/IconPictureInPictureOutlinedFilled.tsx b/src/IconPictureInPictureOutlinedFilled.tsx index 49e9d53ae..d41b7aba3 100644 --- a/src/IconPictureInPictureOutlinedFilled.tsx +++ b/src/IconPictureInPictureOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconPictureInPictureOutlinedFilled: React.FC = ({ ) -export { IconPictureInPictureOutlinedFilled as default } +export default IconPictureInPictureOutlinedFilled diff --git a/src/IconPictureInPictureRounded.tsx b/src/IconPictureInPictureRounded.tsx index 38ad2389e..d92cd8905 100644 --- a/src/IconPictureInPictureRounded.tsx +++ b/src/IconPictureInPictureRounded.tsx @@ -8,4 +8,4 @@ const IconPictureInPictureRounded: React.FC = ({ ...props }) => ( ) -export { IconPictureInPictureRounded as default } +export default IconPictureInPictureRounded diff --git a/src/IconPictureInPictureRoundedFilled.tsx b/src/IconPictureInPictureRoundedFilled.tsx index 51076fb58..ee0bae6ad 100644 --- a/src/IconPictureInPictureRoundedFilled.tsx +++ b/src/IconPictureInPictureRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconPictureInPictureRoundedFilled: React.FC = ({ ) -export { IconPictureInPictureRoundedFilled as default } +export default IconPictureInPictureRoundedFilled diff --git a/src/IconPictureInPictureSharp.tsx b/src/IconPictureInPictureSharp.tsx index 552156ef3..0d8522aa8 100644 --- a/src/IconPictureInPictureSharp.tsx +++ b/src/IconPictureInPictureSharp.tsx @@ -8,4 +8,4 @@ const IconPictureInPictureSharp: React.FC = ({ ...props }) => ( ) -export { IconPictureInPictureSharp as default } +export default IconPictureInPictureSharp diff --git a/src/IconPictureInPictureSharpFilled.tsx b/src/IconPictureInPictureSharpFilled.tsx index d98522f65..0f000caed 100644 --- a/src/IconPictureInPictureSharpFilled.tsx +++ b/src/IconPictureInPictureSharpFilled.tsx @@ -8,4 +8,4 @@ const IconPictureInPictureSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconPictureInPictureSharpFilled as default } +export default IconPictureInPictureSharpFilled diff --git a/src/IconPictureInPictureSmallOutlined.tsx b/src/IconPictureInPictureSmallOutlined.tsx index 43add1cf9..e23f8b3d6 100644 --- a/src/IconPictureInPictureSmallOutlined.tsx +++ b/src/IconPictureInPictureSmallOutlined.tsx @@ -10,4 +10,4 @@ const IconPictureInPictureSmallOutlined: React.FC = ({ ) -export { IconPictureInPictureSmallOutlined as default } +export default IconPictureInPictureSmallOutlined diff --git a/src/IconPictureInPictureSmallOutlinedFilled.tsx b/src/IconPictureInPictureSmallOutlinedFilled.tsx index b788ad993..0907d8c55 100644 --- a/src/IconPictureInPictureSmallOutlinedFilled.tsx +++ b/src/IconPictureInPictureSmallOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconPictureInPictureSmallOutlinedFilled: React.FC = ({ ) -export { IconPictureInPictureSmallOutlinedFilled as default } +export default IconPictureInPictureSmallOutlinedFilled diff --git a/src/IconPictureInPictureSmallRounded.tsx b/src/IconPictureInPictureSmallRounded.tsx index e212dc55d..21c17c753 100644 --- a/src/IconPictureInPictureSmallRounded.tsx +++ b/src/IconPictureInPictureSmallRounded.tsx @@ -10,4 +10,4 @@ const IconPictureInPictureSmallRounded: React.FC = ({ ) -export { IconPictureInPictureSmallRounded as default } +export default IconPictureInPictureSmallRounded diff --git a/src/IconPictureInPictureSmallRoundedFilled.tsx b/src/IconPictureInPictureSmallRoundedFilled.tsx index 6c06c710f..48fc55e2d 100644 --- a/src/IconPictureInPictureSmallRoundedFilled.tsx +++ b/src/IconPictureInPictureSmallRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconPictureInPictureSmallRoundedFilled: React.FC = ({ ) -export { IconPictureInPictureSmallRoundedFilled as default } +export default IconPictureInPictureSmallRoundedFilled diff --git a/src/IconPictureInPictureSmallSharp.tsx b/src/IconPictureInPictureSmallSharp.tsx index 26d73ca81..33b5c92da 100644 --- a/src/IconPictureInPictureSmallSharp.tsx +++ b/src/IconPictureInPictureSmallSharp.tsx @@ -8,4 +8,4 @@ const IconPictureInPictureSmallSharp: React.FC = ({ ...props }) => ( ) -export { IconPictureInPictureSmallSharp as default } +export default IconPictureInPictureSmallSharp diff --git a/src/IconPictureInPictureSmallSharpFilled.tsx b/src/IconPictureInPictureSmallSharpFilled.tsx index e811058f7..980e7f365 100644 --- a/src/IconPictureInPictureSmallSharpFilled.tsx +++ b/src/IconPictureInPictureSmallSharpFilled.tsx @@ -10,4 +10,4 @@ const IconPictureInPictureSmallSharpFilled: React.FC = ({ ) -export { IconPictureInPictureSmallSharpFilled as default } +export default IconPictureInPictureSmallSharpFilled diff --git a/src/IconPieChartOutlined.tsx b/src/IconPieChartOutlined.tsx index cfb21e16e..ee94be566 100644 --- a/src/IconPieChartOutlined.tsx +++ b/src/IconPieChartOutlined.tsx @@ -8,4 +8,4 @@ const IconPieChartOutlined: React.FC = ({ ...props }) => ( ) -export { IconPieChartOutlined as default } +export default IconPieChartOutlined diff --git a/src/IconPieChartOutlinedFilled.tsx b/src/IconPieChartOutlinedFilled.tsx index bd13d262a..2e7b9febd 100644 --- a/src/IconPieChartOutlinedFilled.tsx +++ b/src/IconPieChartOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconPieChartOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconPieChartOutlinedFilled as default } +export default IconPieChartOutlinedFilled diff --git a/src/IconPieChartRounded.tsx b/src/IconPieChartRounded.tsx index da9a0a7e1..ec13493c0 100644 --- a/src/IconPieChartRounded.tsx +++ b/src/IconPieChartRounded.tsx @@ -8,4 +8,4 @@ const IconPieChartRounded: React.FC = ({ ...props }) => ( ) -export { IconPieChartRounded as default } +export default IconPieChartRounded diff --git a/src/IconPieChartRoundedFilled.tsx b/src/IconPieChartRoundedFilled.tsx index 578397e95..e28af462f 100644 --- a/src/IconPieChartRoundedFilled.tsx +++ b/src/IconPieChartRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconPieChartRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconPieChartRoundedFilled as default } +export default IconPieChartRoundedFilled diff --git a/src/IconPieChartSharp.tsx b/src/IconPieChartSharp.tsx index bde03b0bc..739f59b95 100644 --- a/src/IconPieChartSharp.tsx +++ b/src/IconPieChartSharp.tsx @@ -8,4 +8,4 @@ const IconPieChartSharp: React.FC = ({ ...props }) => ( ) -export { IconPieChartSharp as default } +export default IconPieChartSharp diff --git a/src/IconPieChartSharpFilled.tsx b/src/IconPieChartSharpFilled.tsx index 1d252940a..1334702db 100644 --- a/src/IconPieChartSharpFilled.tsx +++ b/src/IconPieChartSharpFilled.tsx @@ -8,4 +8,4 @@ const IconPieChartSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconPieChartSharpFilled as default } +export default IconPieChartSharpFilled diff --git a/src/IconPillOffOutlined.tsx b/src/IconPillOffOutlined.tsx index 6ce35442d..c59d6c49d 100644 --- a/src/IconPillOffOutlined.tsx +++ b/src/IconPillOffOutlined.tsx @@ -8,4 +8,4 @@ const IconPillOffOutlined: React.FC = ({ ...props }) => ( ) -export { IconPillOffOutlined as default } +export default IconPillOffOutlined diff --git a/src/IconPillOffOutlinedFilled.tsx b/src/IconPillOffOutlinedFilled.tsx index 0a294a523..ea772e258 100644 --- a/src/IconPillOffOutlinedFilled.tsx +++ b/src/IconPillOffOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconPillOffOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconPillOffOutlinedFilled as default } +export default IconPillOffOutlinedFilled diff --git a/src/IconPillOffRounded.tsx b/src/IconPillOffRounded.tsx index 70c53446a..818db3df5 100644 --- a/src/IconPillOffRounded.tsx +++ b/src/IconPillOffRounded.tsx @@ -8,4 +8,4 @@ const IconPillOffRounded: React.FC = ({ ...props }) => ( ) -export { IconPillOffRounded as default } +export default IconPillOffRounded diff --git a/src/IconPillOffRoundedFilled.tsx b/src/IconPillOffRoundedFilled.tsx index 8bdde89e1..4c6777805 100644 --- a/src/IconPillOffRoundedFilled.tsx +++ b/src/IconPillOffRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconPillOffRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconPillOffRoundedFilled as default } +export default IconPillOffRoundedFilled diff --git a/src/IconPillOffSharp.tsx b/src/IconPillOffSharp.tsx index fbee916b0..8a34942ac 100644 --- a/src/IconPillOffSharp.tsx +++ b/src/IconPillOffSharp.tsx @@ -8,4 +8,4 @@ const IconPillOffSharp: React.FC = ({ ...props }) => ( ) -export { IconPillOffSharp as default } +export default IconPillOffSharp diff --git a/src/IconPillOffSharpFilled.tsx b/src/IconPillOffSharpFilled.tsx index c082ae0f5..e5f554098 100644 --- a/src/IconPillOffSharpFilled.tsx +++ b/src/IconPillOffSharpFilled.tsx @@ -8,4 +8,4 @@ const IconPillOffSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconPillOffSharpFilled as default } +export default IconPillOffSharpFilled diff --git a/src/IconPillOutlined.tsx b/src/IconPillOutlined.tsx index dc958a54f..1de13a9e8 100644 --- a/src/IconPillOutlined.tsx +++ b/src/IconPillOutlined.tsx @@ -8,4 +8,4 @@ const IconPillOutlined: React.FC = ({ ...props }) => ( ) -export { IconPillOutlined as default } +export default IconPillOutlined diff --git a/src/IconPillOutlinedFilled.tsx b/src/IconPillOutlinedFilled.tsx index b0ac52f0e..b49e722aa 100644 --- a/src/IconPillOutlinedFilled.tsx +++ b/src/IconPillOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconPillOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconPillOutlinedFilled as default } +export default IconPillOutlinedFilled diff --git a/src/IconPillRounded.tsx b/src/IconPillRounded.tsx index 9c078f51b..fdce58a04 100644 --- a/src/IconPillRounded.tsx +++ b/src/IconPillRounded.tsx @@ -8,4 +8,4 @@ const IconPillRounded: React.FC = ({ ...props }) => ( ) -export { IconPillRounded as default } +export default IconPillRounded diff --git a/src/IconPillRoundedFilled.tsx b/src/IconPillRoundedFilled.tsx index a9f02da11..2713be529 100644 --- a/src/IconPillRoundedFilled.tsx +++ b/src/IconPillRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconPillRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconPillRoundedFilled as default } +export default IconPillRoundedFilled diff --git a/src/IconPillSharp.tsx b/src/IconPillSharp.tsx index 444081c22..c022cd693 100644 --- a/src/IconPillSharp.tsx +++ b/src/IconPillSharp.tsx @@ -8,4 +8,4 @@ const IconPillSharp: React.FC = ({ ...props }) => ( ) -export { IconPillSharp as default } +export default IconPillSharp diff --git a/src/IconPillSharpFilled.tsx b/src/IconPillSharpFilled.tsx index 66b7ceeb5..ffd2ac8ca 100644 --- a/src/IconPillSharpFilled.tsx +++ b/src/IconPillSharpFilled.tsx @@ -8,4 +8,4 @@ const IconPillSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconPillSharpFilled as default } +export default IconPillSharpFilled diff --git a/src/IconPinDropOutlined.tsx b/src/IconPinDropOutlined.tsx index 62dd40e6d..8f76ce81d 100644 --- a/src/IconPinDropOutlined.tsx +++ b/src/IconPinDropOutlined.tsx @@ -8,4 +8,4 @@ const IconPinDropOutlined: React.FC = ({ ...props }) => ( ) -export { IconPinDropOutlined as default } +export default IconPinDropOutlined diff --git a/src/IconPinDropOutlinedFilled.tsx b/src/IconPinDropOutlinedFilled.tsx index f00f0c0f3..69a25a5b1 100644 --- a/src/IconPinDropOutlinedFilled.tsx +++ b/src/IconPinDropOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconPinDropOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconPinDropOutlinedFilled as default } +export default IconPinDropOutlinedFilled diff --git a/src/IconPinDropRounded.tsx b/src/IconPinDropRounded.tsx index 3f1bc6763..475f80bf9 100644 --- a/src/IconPinDropRounded.tsx +++ b/src/IconPinDropRounded.tsx @@ -8,4 +8,4 @@ const IconPinDropRounded: React.FC = ({ ...props }) => ( ) -export { IconPinDropRounded as default } +export default IconPinDropRounded diff --git a/src/IconPinDropRoundedFilled.tsx b/src/IconPinDropRoundedFilled.tsx index befa01ed1..30e01a6dc 100644 --- a/src/IconPinDropRoundedFilled.tsx +++ b/src/IconPinDropRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconPinDropRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconPinDropRoundedFilled as default } +export default IconPinDropRoundedFilled diff --git a/src/IconPinDropSharp.tsx b/src/IconPinDropSharp.tsx index 2acccc663..e95070b0f 100644 --- a/src/IconPinDropSharp.tsx +++ b/src/IconPinDropSharp.tsx @@ -8,4 +8,4 @@ const IconPinDropSharp: React.FC = ({ ...props }) => ( ) -export { IconPinDropSharp as default } +export default IconPinDropSharp diff --git a/src/IconPinDropSharpFilled.tsx b/src/IconPinDropSharpFilled.tsx index 2d570274c..2f021ec85 100644 --- a/src/IconPinDropSharpFilled.tsx +++ b/src/IconPinDropSharpFilled.tsx @@ -8,4 +8,4 @@ const IconPinDropSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconPinDropSharpFilled as default } +export default IconPinDropSharpFilled diff --git a/src/IconPinEndOutlined.tsx b/src/IconPinEndOutlined.tsx index d142b299f..0d78ae672 100644 --- a/src/IconPinEndOutlined.tsx +++ b/src/IconPinEndOutlined.tsx @@ -8,4 +8,4 @@ const IconPinEndOutlined: React.FC = ({ ...props }) => ( ) -export { IconPinEndOutlined as default } +export default IconPinEndOutlined diff --git a/src/IconPinEndOutlinedFilled.tsx b/src/IconPinEndOutlinedFilled.tsx index 5a5f5666b..3b41582d9 100644 --- a/src/IconPinEndOutlinedFilled.tsx +++ b/src/IconPinEndOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconPinEndOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconPinEndOutlinedFilled as default } +export default IconPinEndOutlinedFilled diff --git a/src/IconPinEndRounded.tsx b/src/IconPinEndRounded.tsx index e836a845b..38a26da3e 100644 --- a/src/IconPinEndRounded.tsx +++ b/src/IconPinEndRounded.tsx @@ -8,4 +8,4 @@ const IconPinEndRounded: React.FC = ({ ...props }) => ( ) -export { IconPinEndRounded as default } +export default IconPinEndRounded diff --git a/src/IconPinEndRoundedFilled.tsx b/src/IconPinEndRoundedFilled.tsx index b25f1f731..b35b2fa0f 100644 --- a/src/IconPinEndRoundedFilled.tsx +++ b/src/IconPinEndRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconPinEndRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconPinEndRoundedFilled as default } +export default IconPinEndRoundedFilled diff --git a/src/IconPinEndSharp.tsx b/src/IconPinEndSharp.tsx index 1bf0077ec..ea7cafdb8 100644 --- a/src/IconPinEndSharp.tsx +++ b/src/IconPinEndSharp.tsx @@ -8,4 +8,4 @@ const IconPinEndSharp: React.FC = ({ ...props }) => ( ) -export { IconPinEndSharp as default } +export default IconPinEndSharp diff --git a/src/IconPinEndSharpFilled.tsx b/src/IconPinEndSharpFilled.tsx index 7baae9a1f..e79942016 100644 --- a/src/IconPinEndSharpFilled.tsx +++ b/src/IconPinEndSharpFilled.tsx @@ -8,4 +8,4 @@ const IconPinEndSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconPinEndSharpFilled as default } +export default IconPinEndSharpFilled diff --git a/src/IconPinInvokeOutlined.tsx b/src/IconPinInvokeOutlined.tsx index 3affeb709..ba2478114 100644 --- a/src/IconPinInvokeOutlined.tsx +++ b/src/IconPinInvokeOutlined.tsx @@ -8,4 +8,4 @@ const IconPinInvokeOutlined: React.FC = ({ ...props }) => ( ) -export { IconPinInvokeOutlined as default } +export default IconPinInvokeOutlined diff --git a/src/IconPinInvokeOutlinedFilled.tsx b/src/IconPinInvokeOutlinedFilled.tsx index 83efe970e..dabdfe062 100644 --- a/src/IconPinInvokeOutlinedFilled.tsx +++ b/src/IconPinInvokeOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconPinInvokeOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconPinInvokeOutlinedFilled as default } +export default IconPinInvokeOutlinedFilled diff --git a/src/IconPinInvokeRounded.tsx b/src/IconPinInvokeRounded.tsx index 9f74c54de..3cd9f744c 100644 --- a/src/IconPinInvokeRounded.tsx +++ b/src/IconPinInvokeRounded.tsx @@ -8,4 +8,4 @@ const IconPinInvokeRounded: React.FC = ({ ...props }) => ( ) -export { IconPinInvokeRounded as default } +export default IconPinInvokeRounded diff --git a/src/IconPinInvokeRoundedFilled.tsx b/src/IconPinInvokeRoundedFilled.tsx index 06879dcca..5625f22b9 100644 --- a/src/IconPinInvokeRoundedFilled.tsx +++ b/src/IconPinInvokeRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconPinInvokeRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconPinInvokeRoundedFilled as default } +export default IconPinInvokeRoundedFilled diff --git a/src/IconPinInvokeSharp.tsx b/src/IconPinInvokeSharp.tsx index 40c7e4c17..d396992c5 100644 --- a/src/IconPinInvokeSharp.tsx +++ b/src/IconPinInvokeSharp.tsx @@ -8,4 +8,4 @@ const IconPinInvokeSharp: React.FC = ({ ...props }) => ( ) -export { IconPinInvokeSharp as default } +export default IconPinInvokeSharp diff --git a/src/IconPinInvokeSharpFilled.tsx b/src/IconPinInvokeSharpFilled.tsx index 5147ff51b..c6f2ec0bf 100644 --- a/src/IconPinInvokeSharpFilled.tsx +++ b/src/IconPinInvokeSharpFilled.tsx @@ -8,4 +8,4 @@ const IconPinInvokeSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconPinInvokeSharpFilled as default } +export default IconPinInvokeSharpFilled diff --git a/src/IconPinOutlined.tsx b/src/IconPinOutlined.tsx index 1804e2886..6fe5e3e6d 100644 --- a/src/IconPinOutlined.tsx +++ b/src/IconPinOutlined.tsx @@ -8,4 +8,4 @@ const IconPinOutlined: React.FC = ({ ...props }) => ( ) -export { IconPinOutlined as default } +export default IconPinOutlined diff --git a/src/IconPinOutlinedFilled.tsx b/src/IconPinOutlinedFilled.tsx index e0f04951e..21029ad45 100644 --- a/src/IconPinOutlinedFilled.tsx +++ b/src/IconPinOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconPinOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconPinOutlinedFilled as default } +export default IconPinOutlinedFilled diff --git a/src/IconPinRounded.tsx b/src/IconPinRounded.tsx index 5199cb9d0..4e8777ec8 100644 --- a/src/IconPinRounded.tsx +++ b/src/IconPinRounded.tsx @@ -8,4 +8,4 @@ const IconPinRounded: React.FC = ({ ...props }) => ( ) -export { IconPinRounded as default } +export default IconPinRounded diff --git a/src/IconPinRoundedFilled.tsx b/src/IconPinRoundedFilled.tsx index 3e5ffc55e..4a7fabd23 100644 --- a/src/IconPinRoundedFilled.tsx +++ b/src/IconPinRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconPinRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconPinRoundedFilled as default } +export default IconPinRoundedFilled diff --git a/src/IconPinSharp.tsx b/src/IconPinSharp.tsx index 8cdf5cc17..3f056967d 100644 --- a/src/IconPinSharp.tsx +++ b/src/IconPinSharp.tsx @@ -8,4 +8,4 @@ const IconPinSharp: React.FC = ({ ...props }) => ( ) -export { IconPinSharp as default } +export default IconPinSharp diff --git a/src/IconPinSharpFilled.tsx b/src/IconPinSharpFilled.tsx index ab73e426d..dfe6e682e 100644 --- a/src/IconPinSharpFilled.tsx +++ b/src/IconPinSharpFilled.tsx @@ -8,4 +8,4 @@ const IconPinSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconPinSharpFilled as default } +export default IconPinSharpFilled diff --git a/src/IconPinchOutlined.tsx b/src/IconPinchOutlined.tsx index c1bb064a3..2274526a2 100644 --- a/src/IconPinchOutlined.tsx +++ b/src/IconPinchOutlined.tsx @@ -8,4 +8,4 @@ const IconPinchOutlined: React.FC = ({ ...props }) => ( ) -export { IconPinchOutlined as default } +export default IconPinchOutlined diff --git a/src/IconPinchOutlinedFilled.tsx b/src/IconPinchOutlinedFilled.tsx index 2a40c4bb5..64bdbb72b 100644 --- a/src/IconPinchOutlinedFilled.tsx +++ b/src/IconPinchOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconPinchOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconPinchOutlinedFilled as default } +export default IconPinchOutlinedFilled diff --git a/src/IconPinchRounded.tsx b/src/IconPinchRounded.tsx index 79126f4a9..92eaaa474 100644 --- a/src/IconPinchRounded.tsx +++ b/src/IconPinchRounded.tsx @@ -8,4 +8,4 @@ const IconPinchRounded: React.FC = ({ ...props }) => ( ) -export { IconPinchRounded as default } +export default IconPinchRounded diff --git a/src/IconPinchRoundedFilled.tsx b/src/IconPinchRoundedFilled.tsx index 0e19e2648..e9783ada7 100644 --- a/src/IconPinchRoundedFilled.tsx +++ b/src/IconPinchRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconPinchRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconPinchRoundedFilled as default } +export default IconPinchRoundedFilled diff --git a/src/IconPinchSharp.tsx b/src/IconPinchSharp.tsx index 25942ec62..b78d3137d 100644 --- a/src/IconPinchSharp.tsx +++ b/src/IconPinchSharp.tsx @@ -8,4 +8,4 @@ const IconPinchSharp: React.FC = ({ ...props }) => ( ) -export { IconPinchSharp as default } +export default IconPinchSharp diff --git a/src/IconPinchSharpFilled.tsx b/src/IconPinchSharpFilled.tsx index 494b1cae0..142970ad7 100644 --- a/src/IconPinchSharpFilled.tsx +++ b/src/IconPinchSharpFilled.tsx @@ -8,4 +8,4 @@ const IconPinchSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconPinchSharpFilled as default } +export default IconPinchSharpFilled diff --git a/src/IconPinchZoomInOutlined.tsx b/src/IconPinchZoomInOutlined.tsx index c09b20faf..957dcdfa2 100644 --- a/src/IconPinchZoomInOutlined.tsx +++ b/src/IconPinchZoomInOutlined.tsx @@ -8,4 +8,4 @@ const IconPinchZoomInOutlined: React.FC = ({ ...props }) => ( ) -export { IconPinchZoomInOutlined as default } +export default IconPinchZoomInOutlined diff --git a/src/IconPinchZoomInOutlinedFilled.tsx b/src/IconPinchZoomInOutlinedFilled.tsx index 27c113491..81834add0 100644 --- a/src/IconPinchZoomInOutlinedFilled.tsx +++ b/src/IconPinchZoomInOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconPinchZoomInOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconPinchZoomInOutlinedFilled as default } +export default IconPinchZoomInOutlinedFilled diff --git a/src/IconPinchZoomInRounded.tsx b/src/IconPinchZoomInRounded.tsx index 922c5cf12..2742a8d9f 100644 --- a/src/IconPinchZoomInRounded.tsx +++ b/src/IconPinchZoomInRounded.tsx @@ -8,4 +8,4 @@ const IconPinchZoomInRounded: React.FC = ({ ...props }) => ( ) -export { IconPinchZoomInRounded as default } +export default IconPinchZoomInRounded diff --git a/src/IconPinchZoomInRoundedFilled.tsx b/src/IconPinchZoomInRoundedFilled.tsx index a3405c3bc..d24302354 100644 --- a/src/IconPinchZoomInRoundedFilled.tsx +++ b/src/IconPinchZoomInRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconPinchZoomInRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconPinchZoomInRoundedFilled as default } +export default IconPinchZoomInRoundedFilled diff --git a/src/IconPinchZoomInSharp.tsx b/src/IconPinchZoomInSharp.tsx index a6cad2210..22018927d 100644 --- a/src/IconPinchZoomInSharp.tsx +++ b/src/IconPinchZoomInSharp.tsx @@ -8,4 +8,4 @@ const IconPinchZoomInSharp: React.FC = ({ ...props }) => ( ) -export { IconPinchZoomInSharp as default } +export default IconPinchZoomInSharp diff --git a/src/IconPinchZoomInSharpFilled.tsx b/src/IconPinchZoomInSharpFilled.tsx index d06fef402..8299dd319 100644 --- a/src/IconPinchZoomInSharpFilled.tsx +++ b/src/IconPinchZoomInSharpFilled.tsx @@ -8,4 +8,4 @@ const IconPinchZoomInSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconPinchZoomInSharpFilled as default } +export default IconPinchZoomInSharpFilled diff --git a/src/IconPinchZoomOutOutlined.tsx b/src/IconPinchZoomOutOutlined.tsx index bec9a9f26..5cab01d22 100644 --- a/src/IconPinchZoomOutOutlined.tsx +++ b/src/IconPinchZoomOutOutlined.tsx @@ -8,4 +8,4 @@ const IconPinchZoomOutOutlined: React.FC = ({ ...props }) => ( ) -export { IconPinchZoomOutOutlined as default } +export default IconPinchZoomOutOutlined diff --git a/src/IconPinchZoomOutOutlinedFilled.tsx b/src/IconPinchZoomOutOutlinedFilled.tsx index 0174bb202..d45597f18 100644 --- a/src/IconPinchZoomOutOutlinedFilled.tsx +++ b/src/IconPinchZoomOutOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconPinchZoomOutOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconPinchZoomOutOutlinedFilled as default } +export default IconPinchZoomOutOutlinedFilled diff --git a/src/IconPinchZoomOutRounded.tsx b/src/IconPinchZoomOutRounded.tsx index 66e59efeb..4b497d5f3 100644 --- a/src/IconPinchZoomOutRounded.tsx +++ b/src/IconPinchZoomOutRounded.tsx @@ -8,4 +8,4 @@ const IconPinchZoomOutRounded: React.FC = ({ ...props }) => ( ) -export { IconPinchZoomOutRounded as default } +export default IconPinchZoomOutRounded diff --git a/src/IconPinchZoomOutRoundedFilled.tsx b/src/IconPinchZoomOutRoundedFilled.tsx index f936f7fc2..67275fff6 100644 --- a/src/IconPinchZoomOutRoundedFilled.tsx +++ b/src/IconPinchZoomOutRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconPinchZoomOutRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconPinchZoomOutRoundedFilled as default } +export default IconPinchZoomOutRoundedFilled diff --git a/src/IconPinchZoomOutSharp.tsx b/src/IconPinchZoomOutSharp.tsx index 7e989293c..0d6360dad 100644 --- a/src/IconPinchZoomOutSharp.tsx +++ b/src/IconPinchZoomOutSharp.tsx @@ -8,4 +8,4 @@ const IconPinchZoomOutSharp: React.FC = ({ ...props }) => ( ) -export { IconPinchZoomOutSharp as default } +export default IconPinchZoomOutSharp diff --git a/src/IconPinchZoomOutSharpFilled.tsx b/src/IconPinchZoomOutSharpFilled.tsx index 6c2b5eeda..4af7622f5 100644 --- a/src/IconPinchZoomOutSharpFilled.tsx +++ b/src/IconPinchZoomOutSharpFilled.tsx @@ -8,4 +8,4 @@ const IconPinchZoomOutSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconPinchZoomOutSharpFilled as default } +export default IconPinchZoomOutSharpFilled diff --git a/src/IconPipExitOutlined.tsx b/src/IconPipExitOutlined.tsx index 1baf256f5..f65f1e7f8 100644 --- a/src/IconPipExitOutlined.tsx +++ b/src/IconPipExitOutlined.tsx @@ -8,4 +8,4 @@ const IconPipExitOutlined: React.FC = ({ ...props }) => ( ) -export { IconPipExitOutlined as default } +export default IconPipExitOutlined diff --git a/src/IconPipExitOutlinedFilled.tsx b/src/IconPipExitOutlinedFilled.tsx index ca86e57be..e83cef188 100644 --- a/src/IconPipExitOutlinedFilled.tsx +++ b/src/IconPipExitOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconPipExitOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconPipExitOutlinedFilled as default } +export default IconPipExitOutlinedFilled diff --git a/src/IconPipExitRounded.tsx b/src/IconPipExitRounded.tsx index f41e55f58..d149cdaa2 100644 --- a/src/IconPipExitRounded.tsx +++ b/src/IconPipExitRounded.tsx @@ -8,4 +8,4 @@ const IconPipExitRounded: React.FC = ({ ...props }) => ( ) -export { IconPipExitRounded as default } +export default IconPipExitRounded diff --git a/src/IconPipExitRoundedFilled.tsx b/src/IconPipExitRoundedFilled.tsx index 4b94b791a..5a52aaef1 100644 --- a/src/IconPipExitRoundedFilled.tsx +++ b/src/IconPipExitRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconPipExitRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconPipExitRoundedFilled as default } +export default IconPipExitRoundedFilled diff --git a/src/IconPipExitSharp.tsx b/src/IconPipExitSharp.tsx index ae1322379..ea8d187d0 100644 --- a/src/IconPipExitSharp.tsx +++ b/src/IconPipExitSharp.tsx @@ -8,4 +8,4 @@ const IconPipExitSharp: React.FC = ({ ...props }) => ( ) -export { IconPipExitSharp as default } +export default IconPipExitSharp diff --git a/src/IconPipExitSharpFilled.tsx b/src/IconPipExitSharpFilled.tsx index a46833049..1989e1f6a 100644 --- a/src/IconPipExitSharpFilled.tsx +++ b/src/IconPipExitSharpFilled.tsx @@ -8,4 +8,4 @@ const IconPipExitSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconPipExitSharpFilled as default } +export default IconPipExitSharpFilled diff --git a/src/IconPipOutlined.tsx b/src/IconPipOutlined.tsx index 07ca093c0..692a577be 100644 --- a/src/IconPipOutlined.tsx +++ b/src/IconPipOutlined.tsx @@ -8,4 +8,4 @@ const IconPipOutlined: React.FC = ({ ...props }) => ( ) -export { IconPipOutlined as default } +export default IconPipOutlined diff --git a/src/IconPipOutlinedFilled.tsx b/src/IconPipOutlinedFilled.tsx index cff2f70d6..2799a25b1 100644 --- a/src/IconPipOutlinedFilled.tsx +++ b/src/IconPipOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconPipOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconPipOutlinedFilled as default } +export default IconPipOutlinedFilled diff --git a/src/IconPipRounded.tsx b/src/IconPipRounded.tsx index 8197c8b14..0106ddbf0 100644 --- a/src/IconPipRounded.tsx +++ b/src/IconPipRounded.tsx @@ -8,4 +8,4 @@ const IconPipRounded: React.FC = ({ ...props }) => ( ) -export { IconPipRounded as default } +export default IconPipRounded diff --git a/src/IconPipRoundedFilled.tsx b/src/IconPipRoundedFilled.tsx index 66b0e93b7..6479c5c8c 100644 --- a/src/IconPipRoundedFilled.tsx +++ b/src/IconPipRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconPipRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconPipRoundedFilled as default } +export default IconPipRoundedFilled diff --git a/src/IconPipSharp.tsx b/src/IconPipSharp.tsx index f30609984..24aab0fbc 100644 --- a/src/IconPipSharp.tsx +++ b/src/IconPipSharp.tsx @@ -8,4 +8,4 @@ const IconPipSharp: React.FC = ({ ...props }) => ( ) -export { IconPipSharp as default } +export default IconPipSharp diff --git a/src/IconPipSharpFilled.tsx b/src/IconPipSharpFilled.tsx index 780fa3ec9..77f6e6994 100644 --- a/src/IconPipSharpFilled.tsx +++ b/src/IconPipSharpFilled.tsx @@ -8,4 +8,4 @@ const IconPipSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconPipSharpFilled as default } +export default IconPipSharpFilled diff --git a/src/IconPivotTableChartOutlined.tsx b/src/IconPivotTableChartOutlined.tsx index d807d592f..149aaf3b9 100644 --- a/src/IconPivotTableChartOutlined.tsx +++ b/src/IconPivotTableChartOutlined.tsx @@ -8,4 +8,4 @@ const IconPivotTableChartOutlined: React.FC = ({ ...props }) => ( ) -export { IconPivotTableChartOutlined as default } +export default IconPivotTableChartOutlined diff --git a/src/IconPivotTableChartOutlinedFilled.tsx b/src/IconPivotTableChartOutlinedFilled.tsx index be56ef9c5..35eb64f99 100644 --- a/src/IconPivotTableChartOutlinedFilled.tsx +++ b/src/IconPivotTableChartOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconPivotTableChartOutlinedFilled: React.FC = ({ ) -export { IconPivotTableChartOutlinedFilled as default } +export default IconPivotTableChartOutlinedFilled diff --git a/src/IconPivotTableChartRounded.tsx b/src/IconPivotTableChartRounded.tsx index 5de8b42a7..ae3c265ef 100644 --- a/src/IconPivotTableChartRounded.tsx +++ b/src/IconPivotTableChartRounded.tsx @@ -8,4 +8,4 @@ const IconPivotTableChartRounded: React.FC = ({ ...props }) => ( ) -export { IconPivotTableChartRounded as default } +export default IconPivotTableChartRounded diff --git a/src/IconPivotTableChartRoundedFilled.tsx b/src/IconPivotTableChartRoundedFilled.tsx index 56065ea13..9484257d5 100644 --- a/src/IconPivotTableChartRoundedFilled.tsx +++ b/src/IconPivotTableChartRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconPivotTableChartRoundedFilled: React.FC = ({ ) -export { IconPivotTableChartRoundedFilled as default } +export default IconPivotTableChartRoundedFilled diff --git a/src/IconPivotTableChartSharp.tsx b/src/IconPivotTableChartSharp.tsx index 567a76ea6..2e3ebf070 100644 --- a/src/IconPivotTableChartSharp.tsx +++ b/src/IconPivotTableChartSharp.tsx @@ -8,4 +8,4 @@ const IconPivotTableChartSharp: React.FC = ({ ...props }) => ( ) -export { IconPivotTableChartSharp as default } +export default IconPivotTableChartSharp diff --git a/src/IconPivotTableChartSharpFilled.tsx b/src/IconPivotTableChartSharpFilled.tsx index 7143eae07..f36005cf1 100644 --- a/src/IconPivotTableChartSharpFilled.tsx +++ b/src/IconPivotTableChartSharpFilled.tsx @@ -8,4 +8,4 @@ const IconPivotTableChartSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconPivotTableChartSharpFilled as default } +export default IconPivotTableChartSharpFilled diff --git a/src/IconPlaceItemOutlined.tsx b/src/IconPlaceItemOutlined.tsx index ac920244a..ea12fed77 100644 --- a/src/IconPlaceItemOutlined.tsx +++ b/src/IconPlaceItemOutlined.tsx @@ -8,4 +8,4 @@ const IconPlaceItemOutlined: React.FC = ({ ...props }) => ( ) -export { IconPlaceItemOutlined as default } +export default IconPlaceItemOutlined diff --git a/src/IconPlaceItemOutlinedFilled.tsx b/src/IconPlaceItemOutlinedFilled.tsx index b2e23056b..26f6a5ffe 100644 --- a/src/IconPlaceItemOutlinedFilled.tsx +++ b/src/IconPlaceItemOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconPlaceItemOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconPlaceItemOutlinedFilled as default } +export default IconPlaceItemOutlinedFilled diff --git a/src/IconPlaceItemRounded.tsx b/src/IconPlaceItemRounded.tsx index 705f603f7..8db01247f 100644 --- a/src/IconPlaceItemRounded.tsx +++ b/src/IconPlaceItemRounded.tsx @@ -8,4 +8,4 @@ const IconPlaceItemRounded: React.FC = ({ ...props }) => ( ) -export { IconPlaceItemRounded as default } +export default IconPlaceItemRounded diff --git a/src/IconPlaceItemRoundedFilled.tsx b/src/IconPlaceItemRoundedFilled.tsx index 4e72ec36e..ca53cee55 100644 --- a/src/IconPlaceItemRoundedFilled.tsx +++ b/src/IconPlaceItemRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconPlaceItemRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconPlaceItemRoundedFilled as default } +export default IconPlaceItemRoundedFilled diff --git a/src/IconPlaceItemSharp.tsx b/src/IconPlaceItemSharp.tsx index b46acedae..2a5bb6a4b 100644 --- a/src/IconPlaceItemSharp.tsx +++ b/src/IconPlaceItemSharp.tsx @@ -8,4 +8,4 @@ const IconPlaceItemSharp: React.FC = ({ ...props }) => ( ) -export { IconPlaceItemSharp as default } +export default IconPlaceItemSharp diff --git a/src/IconPlaceItemSharpFilled.tsx b/src/IconPlaceItemSharpFilled.tsx index eca306f06..31a7b3a51 100644 --- a/src/IconPlaceItemSharpFilled.tsx +++ b/src/IconPlaceItemSharpFilled.tsx @@ -8,4 +8,4 @@ const IconPlaceItemSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconPlaceItemSharpFilled as default } +export default IconPlaceItemSharpFilled diff --git a/src/IconPlagiarismOutlined.tsx b/src/IconPlagiarismOutlined.tsx index 82098313a..ec7c938ec 100644 --- a/src/IconPlagiarismOutlined.tsx +++ b/src/IconPlagiarismOutlined.tsx @@ -8,4 +8,4 @@ const IconPlagiarismOutlined: React.FC = ({ ...props }) => ( ) -export { IconPlagiarismOutlined as default } +export default IconPlagiarismOutlined diff --git a/src/IconPlagiarismOutlinedFilled.tsx b/src/IconPlagiarismOutlinedFilled.tsx index 551672570..6f29d9df4 100644 --- a/src/IconPlagiarismOutlinedFilled.tsx +++ b/src/IconPlagiarismOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconPlagiarismOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconPlagiarismOutlinedFilled as default } +export default IconPlagiarismOutlinedFilled diff --git a/src/IconPlagiarismRounded.tsx b/src/IconPlagiarismRounded.tsx index d1c5edb74..04fe05c11 100644 --- a/src/IconPlagiarismRounded.tsx +++ b/src/IconPlagiarismRounded.tsx @@ -8,4 +8,4 @@ const IconPlagiarismRounded: React.FC = ({ ...props }) => ( ) -export { IconPlagiarismRounded as default } +export default IconPlagiarismRounded diff --git a/src/IconPlagiarismRoundedFilled.tsx b/src/IconPlagiarismRoundedFilled.tsx index bd4629e4c..590ab013f 100644 --- a/src/IconPlagiarismRoundedFilled.tsx +++ b/src/IconPlagiarismRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconPlagiarismRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconPlagiarismRoundedFilled as default } +export default IconPlagiarismRoundedFilled diff --git a/src/IconPlagiarismSharp.tsx b/src/IconPlagiarismSharp.tsx index e8305f2cc..9025946d8 100644 --- a/src/IconPlagiarismSharp.tsx +++ b/src/IconPlagiarismSharp.tsx @@ -8,4 +8,4 @@ const IconPlagiarismSharp: React.FC = ({ ...props }) => ( ) -export { IconPlagiarismSharp as default } +export default IconPlagiarismSharp diff --git a/src/IconPlagiarismSharpFilled.tsx b/src/IconPlagiarismSharpFilled.tsx index 5821c2aa4..17c25398e 100644 --- a/src/IconPlagiarismSharpFilled.tsx +++ b/src/IconPlagiarismSharpFilled.tsx @@ -8,4 +8,4 @@ const IconPlagiarismSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconPlagiarismSharpFilled as default } +export default IconPlagiarismSharpFilled diff --git a/src/IconPlannerBannerAdPtOutlined.tsx b/src/IconPlannerBannerAdPtOutlined.tsx index 19ad2a70f..10d445167 100644 --- a/src/IconPlannerBannerAdPtOutlined.tsx +++ b/src/IconPlannerBannerAdPtOutlined.tsx @@ -8,4 +8,4 @@ const IconPlannerBannerAdPtOutlined: React.FC = ({ ...props }) => ( ) -export { IconPlannerBannerAdPtOutlined as default } +export default IconPlannerBannerAdPtOutlined diff --git a/src/IconPlannerBannerAdPtOutlinedFilled.tsx b/src/IconPlannerBannerAdPtOutlinedFilled.tsx index a0cf16b6e..2f4e4c30b 100644 --- a/src/IconPlannerBannerAdPtOutlinedFilled.tsx +++ b/src/IconPlannerBannerAdPtOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconPlannerBannerAdPtOutlinedFilled: React.FC = ({ ) -export { IconPlannerBannerAdPtOutlinedFilled as default } +export default IconPlannerBannerAdPtOutlinedFilled diff --git a/src/IconPlannerBannerAdPtRounded.tsx b/src/IconPlannerBannerAdPtRounded.tsx index e445ffd5d..decf89ed5 100644 --- a/src/IconPlannerBannerAdPtRounded.tsx +++ b/src/IconPlannerBannerAdPtRounded.tsx @@ -8,4 +8,4 @@ const IconPlannerBannerAdPtRounded: React.FC = ({ ...props }) => ( ) -export { IconPlannerBannerAdPtRounded as default } +export default IconPlannerBannerAdPtRounded diff --git a/src/IconPlannerBannerAdPtRoundedFilled.tsx b/src/IconPlannerBannerAdPtRoundedFilled.tsx index 84b301c9b..dc34b4f2e 100644 --- a/src/IconPlannerBannerAdPtRoundedFilled.tsx +++ b/src/IconPlannerBannerAdPtRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconPlannerBannerAdPtRoundedFilled: React.FC = ({ ) -export { IconPlannerBannerAdPtRoundedFilled as default } +export default IconPlannerBannerAdPtRoundedFilled diff --git a/src/IconPlannerBannerAdPtSharp.tsx b/src/IconPlannerBannerAdPtSharp.tsx index a328bedc9..6359e94f7 100644 --- a/src/IconPlannerBannerAdPtSharp.tsx +++ b/src/IconPlannerBannerAdPtSharp.tsx @@ -8,4 +8,4 @@ const IconPlannerBannerAdPtSharp: React.FC = ({ ...props }) => ( ) -export { IconPlannerBannerAdPtSharp as default } +export default IconPlannerBannerAdPtSharp diff --git a/src/IconPlannerBannerAdPtSharpFilled.tsx b/src/IconPlannerBannerAdPtSharpFilled.tsx index 46659737a..c5fa42f50 100644 --- a/src/IconPlannerBannerAdPtSharpFilled.tsx +++ b/src/IconPlannerBannerAdPtSharpFilled.tsx @@ -10,4 +10,4 @@ const IconPlannerBannerAdPtSharpFilled: React.FC = ({ ) -export { IconPlannerBannerAdPtSharpFilled as default } +export default IconPlannerBannerAdPtSharpFilled diff --git a/src/IconPlannerReviewOutlined.tsx b/src/IconPlannerReviewOutlined.tsx index 49436ad02..aedb7fcf6 100644 --- a/src/IconPlannerReviewOutlined.tsx +++ b/src/IconPlannerReviewOutlined.tsx @@ -8,4 +8,4 @@ const IconPlannerReviewOutlined: React.FC = ({ ...props }) => ( ) -export { IconPlannerReviewOutlined as default } +export default IconPlannerReviewOutlined diff --git a/src/IconPlannerReviewOutlinedFilled.tsx b/src/IconPlannerReviewOutlinedFilled.tsx index bd231dd85..22e529b32 100644 --- a/src/IconPlannerReviewOutlinedFilled.tsx +++ b/src/IconPlannerReviewOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconPlannerReviewOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconPlannerReviewOutlinedFilled as default } +export default IconPlannerReviewOutlinedFilled diff --git a/src/IconPlannerReviewRounded.tsx b/src/IconPlannerReviewRounded.tsx index cddf00075..6371cefaa 100644 --- a/src/IconPlannerReviewRounded.tsx +++ b/src/IconPlannerReviewRounded.tsx @@ -8,4 +8,4 @@ const IconPlannerReviewRounded: React.FC = ({ ...props }) => ( ) -export { IconPlannerReviewRounded as default } +export default IconPlannerReviewRounded diff --git a/src/IconPlannerReviewRoundedFilled.tsx b/src/IconPlannerReviewRoundedFilled.tsx index 2faf94061..72b67fca3 100644 --- a/src/IconPlannerReviewRoundedFilled.tsx +++ b/src/IconPlannerReviewRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconPlannerReviewRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconPlannerReviewRoundedFilled as default } +export default IconPlannerReviewRoundedFilled diff --git a/src/IconPlannerReviewSharp.tsx b/src/IconPlannerReviewSharp.tsx index 74be699c5..722a073b1 100644 --- a/src/IconPlannerReviewSharp.tsx +++ b/src/IconPlannerReviewSharp.tsx @@ -8,4 +8,4 @@ const IconPlannerReviewSharp: React.FC = ({ ...props }) => ( ) -export { IconPlannerReviewSharp as default } +export default IconPlannerReviewSharp diff --git a/src/IconPlannerReviewSharpFilled.tsx b/src/IconPlannerReviewSharpFilled.tsx index e9c16c207..f718f796f 100644 --- a/src/IconPlannerReviewSharpFilled.tsx +++ b/src/IconPlannerReviewSharpFilled.tsx @@ -8,4 +8,4 @@ const IconPlannerReviewSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconPlannerReviewSharpFilled as default } +export default IconPlannerReviewSharpFilled diff --git a/src/IconPlayArrowOutlined.tsx b/src/IconPlayArrowOutlined.tsx index 2cd65e145..e8bb697d4 100644 --- a/src/IconPlayArrowOutlined.tsx +++ b/src/IconPlayArrowOutlined.tsx @@ -8,4 +8,4 @@ const IconPlayArrowOutlined: React.FC = ({ ...props }) => ( ) -export { IconPlayArrowOutlined as default } +export default IconPlayArrowOutlined diff --git a/src/IconPlayArrowOutlinedFilled.tsx b/src/IconPlayArrowOutlinedFilled.tsx index d92f22e40..e72972d44 100644 --- a/src/IconPlayArrowOutlinedFilled.tsx +++ b/src/IconPlayArrowOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconPlayArrowOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconPlayArrowOutlinedFilled as default } +export default IconPlayArrowOutlinedFilled diff --git a/src/IconPlayArrowRounded.tsx b/src/IconPlayArrowRounded.tsx index cec6c3941..8bf647230 100644 --- a/src/IconPlayArrowRounded.tsx +++ b/src/IconPlayArrowRounded.tsx @@ -8,4 +8,4 @@ const IconPlayArrowRounded: React.FC = ({ ...props }) => ( ) -export { IconPlayArrowRounded as default } +export default IconPlayArrowRounded diff --git a/src/IconPlayArrowRoundedFilled.tsx b/src/IconPlayArrowRoundedFilled.tsx index 0d660bf11..df790ead5 100644 --- a/src/IconPlayArrowRoundedFilled.tsx +++ b/src/IconPlayArrowRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconPlayArrowRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconPlayArrowRoundedFilled as default } +export default IconPlayArrowRoundedFilled diff --git a/src/IconPlayArrowSharp.tsx b/src/IconPlayArrowSharp.tsx index 002537bb5..af7f1d71f 100644 --- a/src/IconPlayArrowSharp.tsx +++ b/src/IconPlayArrowSharp.tsx @@ -8,4 +8,4 @@ const IconPlayArrowSharp: React.FC = ({ ...props }) => ( ) -export { IconPlayArrowSharp as default } +export default IconPlayArrowSharp diff --git a/src/IconPlayArrowSharpFilled.tsx b/src/IconPlayArrowSharpFilled.tsx index 7b8d8d3c9..92593185c 100644 --- a/src/IconPlayArrowSharpFilled.tsx +++ b/src/IconPlayArrowSharpFilled.tsx @@ -8,4 +8,4 @@ const IconPlayArrowSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconPlayArrowSharpFilled as default } +export default IconPlayArrowSharpFilled diff --git a/src/IconPlayCircleOutlined.tsx b/src/IconPlayCircleOutlined.tsx index 5441d0dff..37d851872 100644 --- a/src/IconPlayCircleOutlined.tsx +++ b/src/IconPlayCircleOutlined.tsx @@ -8,4 +8,4 @@ const IconPlayCircleOutlined: React.FC = ({ ...props }) => ( ) -export { IconPlayCircleOutlined as default } +export default IconPlayCircleOutlined diff --git a/src/IconPlayCircleOutlinedFilled.tsx b/src/IconPlayCircleOutlinedFilled.tsx index adff60d09..e930b50f2 100644 --- a/src/IconPlayCircleOutlinedFilled.tsx +++ b/src/IconPlayCircleOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconPlayCircleOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconPlayCircleOutlinedFilled as default } +export default IconPlayCircleOutlinedFilled diff --git a/src/IconPlayCircleRounded.tsx b/src/IconPlayCircleRounded.tsx index 127cdeb5a..4a28c3bc4 100644 --- a/src/IconPlayCircleRounded.tsx +++ b/src/IconPlayCircleRounded.tsx @@ -8,4 +8,4 @@ const IconPlayCircleRounded: React.FC = ({ ...props }) => ( ) -export { IconPlayCircleRounded as default } +export default IconPlayCircleRounded diff --git a/src/IconPlayCircleRoundedFilled.tsx b/src/IconPlayCircleRoundedFilled.tsx index 91cb734ab..20a10b10e 100644 --- a/src/IconPlayCircleRoundedFilled.tsx +++ b/src/IconPlayCircleRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconPlayCircleRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconPlayCircleRoundedFilled as default } +export default IconPlayCircleRoundedFilled diff --git a/src/IconPlayCircleSharp.tsx b/src/IconPlayCircleSharp.tsx index f8135a9a3..d785e2918 100644 --- a/src/IconPlayCircleSharp.tsx +++ b/src/IconPlayCircleSharp.tsx @@ -8,4 +8,4 @@ const IconPlayCircleSharp: React.FC = ({ ...props }) => ( ) -export { IconPlayCircleSharp as default } +export default IconPlayCircleSharp diff --git a/src/IconPlayCircleSharpFilled.tsx b/src/IconPlayCircleSharpFilled.tsx index 597d6cec8..780050aa4 100644 --- a/src/IconPlayCircleSharpFilled.tsx +++ b/src/IconPlayCircleSharpFilled.tsx @@ -8,4 +8,4 @@ const IconPlayCircleSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconPlayCircleSharpFilled as default } +export default IconPlayCircleSharpFilled diff --git a/src/IconPlayDisabledOutlined.tsx b/src/IconPlayDisabledOutlined.tsx index 35f1de41b..437d3acc1 100644 --- a/src/IconPlayDisabledOutlined.tsx +++ b/src/IconPlayDisabledOutlined.tsx @@ -8,4 +8,4 @@ const IconPlayDisabledOutlined: React.FC = ({ ...props }) => ( ) -export { IconPlayDisabledOutlined as default } +export default IconPlayDisabledOutlined diff --git a/src/IconPlayDisabledOutlinedFilled.tsx b/src/IconPlayDisabledOutlinedFilled.tsx index 23b7700ef..ff075a1e4 100644 --- a/src/IconPlayDisabledOutlinedFilled.tsx +++ b/src/IconPlayDisabledOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconPlayDisabledOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconPlayDisabledOutlinedFilled as default } +export default IconPlayDisabledOutlinedFilled diff --git a/src/IconPlayDisabledRounded.tsx b/src/IconPlayDisabledRounded.tsx index 6bd451ed0..88e232a06 100644 --- a/src/IconPlayDisabledRounded.tsx +++ b/src/IconPlayDisabledRounded.tsx @@ -8,4 +8,4 @@ const IconPlayDisabledRounded: React.FC = ({ ...props }) => ( ) -export { IconPlayDisabledRounded as default } +export default IconPlayDisabledRounded diff --git a/src/IconPlayDisabledRoundedFilled.tsx b/src/IconPlayDisabledRoundedFilled.tsx index 75532f1b7..b2ccb7310 100644 --- a/src/IconPlayDisabledRoundedFilled.tsx +++ b/src/IconPlayDisabledRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconPlayDisabledRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconPlayDisabledRoundedFilled as default } +export default IconPlayDisabledRoundedFilled diff --git a/src/IconPlayDisabledSharp.tsx b/src/IconPlayDisabledSharp.tsx index b91fdf23f..904ee8986 100644 --- a/src/IconPlayDisabledSharp.tsx +++ b/src/IconPlayDisabledSharp.tsx @@ -8,4 +8,4 @@ const IconPlayDisabledSharp: React.FC = ({ ...props }) => ( ) -export { IconPlayDisabledSharp as default } +export default IconPlayDisabledSharp diff --git a/src/IconPlayDisabledSharpFilled.tsx b/src/IconPlayDisabledSharpFilled.tsx index 490b20a15..7c968df5d 100644 --- a/src/IconPlayDisabledSharpFilled.tsx +++ b/src/IconPlayDisabledSharpFilled.tsx @@ -8,4 +8,4 @@ const IconPlayDisabledSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconPlayDisabledSharpFilled as default } +export default IconPlayDisabledSharpFilled diff --git a/src/IconPlayForWorkOutlined.tsx b/src/IconPlayForWorkOutlined.tsx index a28d63a5e..b79744e21 100644 --- a/src/IconPlayForWorkOutlined.tsx +++ b/src/IconPlayForWorkOutlined.tsx @@ -8,4 +8,4 @@ const IconPlayForWorkOutlined: React.FC = ({ ...props }) => ( ) -export { IconPlayForWorkOutlined as default } +export default IconPlayForWorkOutlined diff --git a/src/IconPlayForWorkOutlinedFilled.tsx b/src/IconPlayForWorkOutlinedFilled.tsx index 0a8ab169c..87ad204f0 100644 --- a/src/IconPlayForWorkOutlinedFilled.tsx +++ b/src/IconPlayForWorkOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconPlayForWorkOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconPlayForWorkOutlinedFilled as default } +export default IconPlayForWorkOutlinedFilled diff --git a/src/IconPlayForWorkRounded.tsx b/src/IconPlayForWorkRounded.tsx index babfbd2bd..130fd9034 100644 --- a/src/IconPlayForWorkRounded.tsx +++ b/src/IconPlayForWorkRounded.tsx @@ -8,4 +8,4 @@ const IconPlayForWorkRounded: React.FC = ({ ...props }) => ( ) -export { IconPlayForWorkRounded as default } +export default IconPlayForWorkRounded diff --git a/src/IconPlayForWorkRoundedFilled.tsx b/src/IconPlayForWorkRoundedFilled.tsx index bf03f9a6b..b6ebc2d43 100644 --- a/src/IconPlayForWorkRoundedFilled.tsx +++ b/src/IconPlayForWorkRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconPlayForWorkRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconPlayForWorkRoundedFilled as default } +export default IconPlayForWorkRoundedFilled diff --git a/src/IconPlayForWorkSharp.tsx b/src/IconPlayForWorkSharp.tsx index db7e01301..da4b67a83 100644 --- a/src/IconPlayForWorkSharp.tsx +++ b/src/IconPlayForWorkSharp.tsx @@ -8,4 +8,4 @@ const IconPlayForWorkSharp: React.FC = ({ ...props }) => ( ) -export { IconPlayForWorkSharp as default } +export default IconPlayForWorkSharp diff --git a/src/IconPlayForWorkSharpFilled.tsx b/src/IconPlayForWorkSharpFilled.tsx index 9636c79b2..73d6fa2b7 100644 --- a/src/IconPlayForWorkSharpFilled.tsx +++ b/src/IconPlayForWorkSharpFilled.tsx @@ -8,4 +8,4 @@ const IconPlayForWorkSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconPlayForWorkSharpFilled as default } +export default IconPlayForWorkSharpFilled diff --git a/src/IconPlayLessonOutlined.tsx b/src/IconPlayLessonOutlined.tsx index f6fac0679..d1be6ceae 100644 --- a/src/IconPlayLessonOutlined.tsx +++ b/src/IconPlayLessonOutlined.tsx @@ -8,4 +8,4 @@ const IconPlayLessonOutlined: React.FC = ({ ...props }) => ( ) -export { IconPlayLessonOutlined as default } +export default IconPlayLessonOutlined diff --git a/src/IconPlayLessonOutlinedFilled.tsx b/src/IconPlayLessonOutlinedFilled.tsx index f57eccc3a..d87051927 100644 --- a/src/IconPlayLessonOutlinedFilled.tsx +++ b/src/IconPlayLessonOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconPlayLessonOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconPlayLessonOutlinedFilled as default } +export default IconPlayLessonOutlinedFilled diff --git a/src/IconPlayLessonRounded.tsx b/src/IconPlayLessonRounded.tsx index acf4947e8..f77a4bf47 100644 --- a/src/IconPlayLessonRounded.tsx +++ b/src/IconPlayLessonRounded.tsx @@ -8,4 +8,4 @@ const IconPlayLessonRounded: React.FC = ({ ...props }) => ( ) -export { IconPlayLessonRounded as default } +export default IconPlayLessonRounded diff --git a/src/IconPlayLessonRoundedFilled.tsx b/src/IconPlayLessonRoundedFilled.tsx index ef07b1a38..b7f7cc44d 100644 --- a/src/IconPlayLessonRoundedFilled.tsx +++ b/src/IconPlayLessonRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconPlayLessonRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconPlayLessonRoundedFilled as default } +export default IconPlayLessonRoundedFilled diff --git a/src/IconPlayLessonSharp.tsx b/src/IconPlayLessonSharp.tsx index 5ce8f188f..1c667ef18 100644 --- a/src/IconPlayLessonSharp.tsx +++ b/src/IconPlayLessonSharp.tsx @@ -8,4 +8,4 @@ const IconPlayLessonSharp: React.FC = ({ ...props }) => ( ) -export { IconPlayLessonSharp as default } +export default IconPlayLessonSharp diff --git a/src/IconPlayLessonSharpFilled.tsx b/src/IconPlayLessonSharpFilled.tsx index f52d6510b..bb31825d0 100644 --- a/src/IconPlayLessonSharpFilled.tsx +++ b/src/IconPlayLessonSharpFilled.tsx @@ -8,4 +8,4 @@ const IconPlayLessonSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconPlayLessonSharpFilled as default } +export default IconPlayLessonSharpFilled diff --git a/src/IconPlayPauseOutlined.tsx b/src/IconPlayPauseOutlined.tsx index 675a9fe06..2b2a50c2d 100644 --- a/src/IconPlayPauseOutlined.tsx +++ b/src/IconPlayPauseOutlined.tsx @@ -8,4 +8,4 @@ const IconPlayPauseOutlined: React.FC = ({ ...props }) => ( ) -export { IconPlayPauseOutlined as default } +export default IconPlayPauseOutlined diff --git a/src/IconPlayPauseOutlinedFilled.tsx b/src/IconPlayPauseOutlinedFilled.tsx index 09a380f15..ad726bc92 100644 --- a/src/IconPlayPauseOutlinedFilled.tsx +++ b/src/IconPlayPauseOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconPlayPauseOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconPlayPauseOutlinedFilled as default } +export default IconPlayPauseOutlinedFilled diff --git a/src/IconPlayPauseRounded.tsx b/src/IconPlayPauseRounded.tsx index 3acc8a968..54b384478 100644 --- a/src/IconPlayPauseRounded.tsx +++ b/src/IconPlayPauseRounded.tsx @@ -8,4 +8,4 @@ const IconPlayPauseRounded: React.FC = ({ ...props }) => ( ) -export { IconPlayPauseRounded as default } +export default IconPlayPauseRounded diff --git a/src/IconPlayPauseRoundedFilled.tsx b/src/IconPlayPauseRoundedFilled.tsx index 8347afef8..aed6d04cb 100644 --- a/src/IconPlayPauseRoundedFilled.tsx +++ b/src/IconPlayPauseRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconPlayPauseRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconPlayPauseRoundedFilled as default } +export default IconPlayPauseRoundedFilled diff --git a/src/IconPlayPauseSharp.tsx b/src/IconPlayPauseSharp.tsx index c5e9e8c05..501262f3d 100644 --- a/src/IconPlayPauseSharp.tsx +++ b/src/IconPlayPauseSharp.tsx @@ -8,4 +8,4 @@ const IconPlayPauseSharp: React.FC = ({ ...props }) => ( ) -export { IconPlayPauseSharp as default } +export default IconPlayPauseSharp diff --git a/src/IconPlayPauseSharpFilled.tsx b/src/IconPlayPauseSharpFilled.tsx index 3d1b34d9c..16be41ee8 100644 --- a/src/IconPlayPauseSharpFilled.tsx +++ b/src/IconPlayPauseSharpFilled.tsx @@ -8,4 +8,4 @@ const IconPlayPauseSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconPlayPauseSharpFilled as default } +export default IconPlayPauseSharpFilled diff --git a/src/IconPlayingCardsOutlined.tsx b/src/IconPlayingCardsOutlined.tsx index c0d57568c..f5c16f03d 100644 --- a/src/IconPlayingCardsOutlined.tsx +++ b/src/IconPlayingCardsOutlined.tsx @@ -8,4 +8,4 @@ const IconPlayingCardsOutlined: React.FC = ({ ...props }) => ( ) -export { IconPlayingCardsOutlined as default } +export default IconPlayingCardsOutlined diff --git a/src/IconPlayingCardsOutlinedFilled.tsx b/src/IconPlayingCardsOutlinedFilled.tsx index e6afce79c..56dd868e4 100644 --- a/src/IconPlayingCardsOutlinedFilled.tsx +++ b/src/IconPlayingCardsOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconPlayingCardsOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconPlayingCardsOutlinedFilled as default } +export default IconPlayingCardsOutlinedFilled diff --git a/src/IconPlayingCardsRounded.tsx b/src/IconPlayingCardsRounded.tsx index a7c8bc9b5..4e4333d13 100644 --- a/src/IconPlayingCardsRounded.tsx +++ b/src/IconPlayingCardsRounded.tsx @@ -8,4 +8,4 @@ const IconPlayingCardsRounded: React.FC = ({ ...props }) => ( ) -export { IconPlayingCardsRounded as default } +export default IconPlayingCardsRounded diff --git a/src/IconPlayingCardsRoundedFilled.tsx b/src/IconPlayingCardsRoundedFilled.tsx index b002e769d..b0b808f27 100644 --- a/src/IconPlayingCardsRoundedFilled.tsx +++ b/src/IconPlayingCardsRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconPlayingCardsRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconPlayingCardsRoundedFilled as default } +export default IconPlayingCardsRoundedFilled diff --git a/src/IconPlayingCardsSharp.tsx b/src/IconPlayingCardsSharp.tsx index 241f823a5..726ab9aeb 100644 --- a/src/IconPlayingCardsSharp.tsx +++ b/src/IconPlayingCardsSharp.tsx @@ -8,4 +8,4 @@ const IconPlayingCardsSharp: React.FC = ({ ...props }) => ( ) -export { IconPlayingCardsSharp as default } +export default IconPlayingCardsSharp diff --git a/src/IconPlayingCardsSharpFilled.tsx b/src/IconPlayingCardsSharpFilled.tsx index b8559cad2..e5876dda2 100644 --- a/src/IconPlayingCardsSharpFilled.tsx +++ b/src/IconPlayingCardsSharpFilled.tsx @@ -8,4 +8,4 @@ const IconPlayingCardsSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconPlayingCardsSharpFilled as default } +export default IconPlayingCardsSharpFilled diff --git a/src/IconPlaylistAddCheckCircleOutlined.tsx b/src/IconPlaylistAddCheckCircleOutlined.tsx index 6e508334c..c17b6d4da 100644 --- a/src/IconPlaylistAddCheckCircleOutlined.tsx +++ b/src/IconPlaylistAddCheckCircleOutlined.tsx @@ -10,4 +10,4 @@ const IconPlaylistAddCheckCircleOutlined: React.FC = ({ ) -export { IconPlaylistAddCheckCircleOutlined as default } +export default IconPlaylistAddCheckCircleOutlined diff --git a/src/IconPlaylistAddCheckCircleOutlinedFilled.tsx b/src/IconPlaylistAddCheckCircleOutlinedFilled.tsx index 4a1604288..94d7364bf 100644 --- a/src/IconPlaylistAddCheckCircleOutlinedFilled.tsx +++ b/src/IconPlaylistAddCheckCircleOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconPlaylistAddCheckCircleOutlinedFilled: React.FC = ({ ) -export { IconPlaylistAddCheckCircleOutlinedFilled as default } +export default IconPlaylistAddCheckCircleOutlinedFilled diff --git a/src/IconPlaylistAddCheckCircleRounded.tsx b/src/IconPlaylistAddCheckCircleRounded.tsx index 712f0f68d..f84c99605 100644 --- a/src/IconPlaylistAddCheckCircleRounded.tsx +++ b/src/IconPlaylistAddCheckCircleRounded.tsx @@ -10,4 +10,4 @@ const IconPlaylistAddCheckCircleRounded: React.FC = ({ ) -export { IconPlaylistAddCheckCircleRounded as default } +export default IconPlaylistAddCheckCircleRounded diff --git a/src/IconPlaylistAddCheckCircleRoundedFilled.tsx b/src/IconPlaylistAddCheckCircleRoundedFilled.tsx index 7847c2f1a..ef0397cab 100644 --- a/src/IconPlaylistAddCheckCircleRoundedFilled.tsx +++ b/src/IconPlaylistAddCheckCircleRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconPlaylistAddCheckCircleRoundedFilled: React.FC = ({ ) -export { IconPlaylistAddCheckCircleRoundedFilled as default } +export default IconPlaylistAddCheckCircleRoundedFilled diff --git a/src/IconPlaylistAddCheckCircleSharp.tsx b/src/IconPlaylistAddCheckCircleSharp.tsx index 9582e0c16..12a6d95a0 100644 --- a/src/IconPlaylistAddCheckCircleSharp.tsx +++ b/src/IconPlaylistAddCheckCircleSharp.tsx @@ -8,4 +8,4 @@ const IconPlaylistAddCheckCircleSharp: React.FC = ({ ...props }) => ( ) -export { IconPlaylistAddCheckCircleSharp as default } +export default IconPlaylistAddCheckCircleSharp diff --git a/src/IconPlaylistAddCheckCircleSharpFilled.tsx b/src/IconPlaylistAddCheckCircleSharpFilled.tsx index 82cd2cb0f..de7602934 100644 --- a/src/IconPlaylistAddCheckCircleSharpFilled.tsx +++ b/src/IconPlaylistAddCheckCircleSharpFilled.tsx @@ -10,4 +10,4 @@ const IconPlaylistAddCheckCircleSharpFilled: React.FC = ({ ) -export { IconPlaylistAddCheckCircleSharpFilled as default } +export default IconPlaylistAddCheckCircleSharpFilled diff --git a/src/IconPlaylistAddCheckOutlined.tsx b/src/IconPlaylistAddCheckOutlined.tsx index d58cf67fe..311e6a53b 100644 --- a/src/IconPlaylistAddCheckOutlined.tsx +++ b/src/IconPlaylistAddCheckOutlined.tsx @@ -8,4 +8,4 @@ const IconPlaylistAddCheckOutlined: React.FC = ({ ...props }) => ( ) -export { IconPlaylistAddCheckOutlined as default } +export default IconPlaylistAddCheckOutlined diff --git a/src/IconPlaylistAddCheckOutlinedFilled.tsx b/src/IconPlaylistAddCheckOutlinedFilled.tsx index 991dfbf9b..73dccc639 100644 --- a/src/IconPlaylistAddCheckOutlinedFilled.tsx +++ b/src/IconPlaylistAddCheckOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconPlaylistAddCheckOutlinedFilled: React.FC = ({ ) -export { IconPlaylistAddCheckOutlinedFilled as default } +export default IconPlaylistAddCheckOutlinedFilled diff --git a/src/IconPlaylistAddCheckRounded.tsx b/src/IconPlaylistAddCheckRounded.tsx index 7872e9687..7b0e8f49c 100644 --- a/src/IconPlaylistAddCheckRounded.tsx +++ b/src/IconPlaylistAddCheckRounded.tsx @@ -8,4 +8,4 @@ const IconPlaylistAddCheckRounded: React.FC = ({ ...props }) => ( ) -export { IconPlaylistAddCheckRounded as default } +export default IconPlaylistAddCheckRounded diff --git a/src/IconPlaylistAddCheckRoundedFilled.tsx b/src/IconPlaylistAddCheckRoundedFilled.tsx index 9f344aef0..2edfdad96 100644 --- a/src/IconPlaylistAddCheckRoundedFilled.tsx +++ b/src/IconPlaylistAddCheckRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconPlaylistAddCheckRoundedFilled: React.FC = ({ ) -export { IconPlaylistAddCheckRoundedFilled as default } +export default IconPlaylistAddCheckRoundedFilled diff --git a/src/IconPlaylistAddCheckSharp.tsx b/src/IconPlaylistAddCheckSharp.tsx index aa69afc8f..ba833ff4b 100644 --- a/src/IconPlaylistAddCheckSharp.tsx +++ b/src/IconPlaylistAddCheckSharp.tsx @@ -8,4 +8,4 @@ const IconPlaylistAddCheckSharp: React.FC = ({ ...props }) => ( ) -export { IconPlaylistAddCheckSharp as default } +export default IconPlaylistAddCheckSharp diff --git a/src/IconPlaylistAddCheckSharpFilled.tsx b/src/IconPlaylistAddCheckSharpFilled.tsx index 3d94e3190..52d520170 100644 --- a/src/IconPlaylistAddCheckSharpFilled.tsx +++ b/src/IconPlaylistAddCheckSharpFilled.tsx @@ -8,4 +8,4 @@ const IconPlaylistAddCheckSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconPlaylistAddCheckSharpFilled as default } +export default IconPlaylistAddCheckSharpFilled diff --git a/src/IconPlaylistAddCircleOutlined.tsx b/src/IconPlaylistAddCircleOutlined.tsx index e93d587a7..1212f281c 100644 --- a/src/IconPlaylistAddCircleOutlined.tsx +++ b/src/IconPlaylistAddCircleOutlined.tsx @@ -8,4 +8,4 @@ const IconPlaylistAddCircleOutlined: React.FC = ({ ...props }) => ( ) -export { IconPlaylistAddCircleOutlined as default } +export default IconPlaylistAddCircleOutlined diff --git a/src/IconPlaylistAddCircleOutlinedFilled.tsx b/src/IconPlaylistAddCircleOutlinedFilled.tsx index ed0fc0752..5eb1b4a35 100644 --- a/src/IconPlaylistAddCircleOutlinedFilled.tsx +++ b/src/IconPlaylistAddCircleOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconPlaylistAddCircleOutlinedFilled: React.FC = ({ ) -export { IconPlaylistAddCircleOutlinedFilled as default } +export default IconPlaylistAddCircleOutlinedFilled diff --git a/src/IconPlaylistAddCircleRounded.tsx b/src/IconPlaylistAddCircleRounded.tsx index 4e34c7de6..45386d91c 100644 --- a/src/IconPlaylistAddCircleRounded.tsx +++ b/src/IconPlaylistAddCircleRounded.tsx @@ -8,4 +8,4 @@ const IconPlaylistAddCircleRounded: React.FC = ({ ...props }) => ( ) -export { IconPlaylistAddCircleRounded as default } +export default IconPlaylistAddCircleRounded diff --git a/src/IconPlaylistAddCircleRoundedFilled.tsx b/src/IconPlaylistAddCircleRoundedFilled.tsx index 649b9aa02..53c2a27e2 100644 --- a/src/IconPlaylistAddCircleRoundedFilled.tsx +++ b/src/IconPlaylistAddCircleRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconPlaylistAddCircleRoundedFilled: React.FC = ({ ) -export { IconPlaylistAddCircleRoundedFilled as default } +export default IconPlaylistAddCircleRoundedFilled diff --git a/src/IconPlaylistAddCircleSharp.tsx b/src/IconPlaylistAddCircleSharp.tsx index a4830d97f..6af9fe938 100644 --- a/src/IconPlaylistAddCircleSharp.tsx +++ b/src/IconPlaylistAddCircleSharp.tsx @@ -8,4 +8,4 @@ const IconPlaylistAddCircleSharp: React.FC = ({ ...props }) => ( ) -export { IconPlaylistAddCircleSharp as default } +export default IconPlaylistAddCircleSharp diff --git a/src/IconPlaylistAddCircleSharpFilled.tsx b/src/IconPlaylistAddCircleSharpFilled.tsx index 5bf147ee4..f307d5ae2 100644 --- a/src/IconPlaylistAddCircleSharpFilled.tsx +++ b/src/IconPlaylistAddCircleSharpFilled.tsx @@ -10,4 +10,4 @@ const IconPlaylistAddCircleSharpFilled: React.FC = ({ ) -export { IconPlaylistAddCircleSharpFilled as default } +export default IconPlaylistAddCircleSharpFilled diff --git a/src/IconPlaylistAddOutlined.tsx b/src/IconPlaylistAddOutlined.tsx index ce583347b..3ddff31b1 100644 --- a/src/IconPlaylistAddOutlined.tsx +++ b/src/IconPlaylistAddOutlined.tsx @@ -8,4 +8,4 @@ const IconPlaylistAddOutlined: React.FC = ({ ...props }) => ( ) -export { IconPlaylistAddOutlined as default } +export default IconPlaylistAddOutlined diff --git a/src/IconPlaylistAddOutlinedFilled.tsx b/src/IconPlaylistAddOutlinedFilled.tsx index c93cfb850..6988ce527 100644 --- a/src/IconPlaylistAddOutlinedFilled.tsx +++ b/src/IconPlaylistAddOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconPlaylistAddOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconPlaylistAddOutlinedFilled as default } +export default IconPlaylistAddOutlinedFilled diff --git a/src/IconPlaylistAddRounded.tsx b/src/IconPlaylistAddRounded.tsx index 8c2c4e18a..452413d06 100644 --- a/src/IconPlaylistAddRounded.tsx +++ b/src/IconPlaylistAddRounded.tsx @@ -8,4 +8,4 @@ const IconPlaylistAddRounded: React.FC = ({ ...props }) => ( ) -export { IconPlaylistAddRounded as default } +export default IconPlaylistAddRounded diff --git a/src/IconPlaylistAddRoundedFilled.tsx b/src/IconPlaylistAddRoundedFilled.tsx index efebe81ee..40d910667 100644 --- a/src/IconPlaylistAddRoundedFilled.tsx +++ b/src/IconPlaylistAddRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconPlaylistAddRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconPlaylistAddRoundedFilled as default } +export default IconPlaylistAddRoundedFilled diff --git a/src/IconPlaylistAddSharp.tsx b/src/IconPlaylistAddSharp.tsx index 1fad6d0e0..17adc56d0 100644 --- a/src/IconPlaylistAddSharp.tsx +++ b/src/IconPlaylistAddSharp.tsx @@ -8,4 +8,4 @@ const IconPlaylistAddSharp: React.FC = ({ ...props }) => ( ) -export { IconPlaylistAddSharp as default } +export default IconPlaylistAddSharp diff --git a/src/IconPlaylistAddSharpFilled.tsx b/src/IconPlaylistAddSharpFilled.tsx index 8fafb2508..7b0ae1fa6 100644 --- a/src/IconPlaylistAddSharpFilled.tsx +++ b/src/IconPlaylistAddSharpFilled.tsx @@ -8,4 +8,4 @@ const IconPlaylistAddSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconPlaylistAddSharpFilled as default } +export default IconPlaylistAddSharpFilled diff --git a/src/IconPlaylistPlayOutlined.tsx b/src/IconPlaylistPlayOutlined.tsx index f9dc79f97..60209f5d9 100644 --- a/src/IconPlaylistPlayOutlined.tsx +++ b/src/IconPlaylistPlayOutlined.tsx @@ -8,4 +8,4 @@ const IconPlaylistPlayOutlined: React.FC = ({ ...props }) => ( ) -export { IconPlaylistPlayOutlined as default } +export default IconPlaylistPlayOutlined diff --git a/src/IconPlaylistPlayOutlinedFilled.tsx b/src/IconPlaylistPlayOutlinedFilled.tsx index 53f423368..074faa593 100644 --- a/src/IconPlaylistPlayOutlinedFilled.tsx +++ b/src/IconPlaylistPlayOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconPlaylistPlayOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconPlaylistPlayOutlinedFilled as default } +export default IconPlaylistPlayOutlinedFilled diff --git a/src/IconPlaylistPlayRounded.tsx b/src/IconPlaylistPlayRounded.tsx index 561a77f0d..5f53c1c35 100644 --- a/src/IconPlaylistPlayRounded.tsx +++ b/src/IconPlaylistPlayRounded.tsx @@ -8,4 +8,4 @@ const IconPlaylistPlayRounded: React.FC = ({ ...props }) => ( ) -export { IconPlaylistPlayRounded as default } +export default IconPlaylistPlayRounded diff --git a/src/IconPlaylistPlayRoundedFilled.tsx b/src/IconPlaylistPlayRoundedFilled.tsx index 57ff04b90..811e67e5a 100644 --- a/src/IconPlaylistPlayRoundedFilled.tsx +++ b/src/IconPlaylistPlayRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconPlaylistPlayRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconPlaylistPlayRoundedFilled as default } +export default IconPlaylistPlayRoundedFilled diff --git a/src/IconPlaylistPlaySharp.tsx b/src/IconPlaylistPlaySharp.tsx index 4ae8afeda..72dcb163a 100644 --- a/src/IconPlaylistPlaySharp.tsx +++ b/src/IconPlaylistPlaySharp.tsx @@ -8,4 +8,4 @@ const IconPlaylistPlaySharp: React.FC = ({ ...props }) => ( ) -export { IconPlaylistPlaySharp as default } +export default IconPlaylistPlaySharp diff --git a/src/IconPlaylistPlaySharpFilled.tsx b/src/IconPlaylistPlaySharpFilled.tsx index c0539ede4..deeb8f1e6 100644 --- a/src/IconPlaylistPlaySharpFilled.tsx +++ b/src/IconPlaylistPlaySharpFilled.tsx @@ -8,4 +8,4 @@ const IconPlaylistPlaySharpFilled: React.FC = ({ ...props }) => ( ) -export { IconPlaylistPlaySharpFilled as default } +export default IconPlaylistPlaySharpFilled diff --git a/src/IconPlaylistRemoveOutlined.tsx b/src/IconPlaylistRemoveOutlined.tsx index c4b796f9d..447536ea7 100644 --- a/src/IconPlaylistRemoveOutlined.tsx +++ b/src/IconPlaylistRemoveOutlined.tsx @@ -8,4 +8,4 @@ const IconPlaylistRemoveOutlined: React.FC = ({ ...props }) => ( ) -export { IconPlaylistRemoveOutlined as default } +export default IconPlaylistRemoveOutlined diff --git a/src/IconPlaylistRemoveOutlinedFilled.tsx b/src/IconPlaylistRemoveOutlinedFilled.tsx index 447c7c7ac..90c4b62d0 100644 --- a/src/IconPlaylistRemoveOutlinedFilled.tsx +++ b/src/IconPlaylistRemoveOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconPlaylistRemoveOutlinedFilled: React.FC = ({ ) -export { IconPlaylistRemoveOutlinedFilled as default } +export default IconPlaylistRemoveOutlinedFilled diff --git a/src/IconPlaylistRemoveRounded.tsx b/src/IconPlaylistRemoveRounded.tsx index f50c3bb70..3cda16375 100644 --- a/src/IconPlaylistRemoveRounded.tsx +++ b/src/IconPlaylistRemoveRounded.tsx @@ -8,4 +8,4 @@ const IconPlaylistRemoveRounded: React.FC = ({ ...props }) => ( ) -export { IconPlaylistRemoveRounded as default } +export default IconPlaylistRemoveRounded diff --git a/src/IconPlaylistRemoveRoundedFilled.tsx b/src/IconPlaylistRemoveRoundedFilled.tsx index 968d07356..d0bc1e2be 100644 --- a/src/IconPlaylistRemoveRoundedFilled.tsx +++ b/src/IconPlaylistRemoveRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconPlaylistRemoveRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconPlaylistRemoveRoundedFilled as default } +export default IconPlaylistRemoveRoundedFilled diff --git a/src/IconPlaylistRemoveSharp.tsx b/src/IconPlaylistRemoveSharp.tsx index 6e9a414a9..af398e29b 100644 --- a/src/IconPlaylistRemoveSharp.tsx +++ b/src/IconPlaylistRemoveSharp.tsx @@ -8,4 +8,4 @@ const IconPlaylistRemoveSharp: React.FC = ({ ...props }) => ( ) -export { IconPlaylistRemoveSharp as default } +export default IconPlaylistRemoveSharp diff --git a/src/IconPlaylistRemoveSharpFilled.tsx b/src/IconPlaylistRemoveSharpFilled.tsx index d6a52135a..020f770c9 100644 --- a/src/IconPlaylistRemoveSharpFilled.tsx +++ b/src/IconPlaylistRemoveSharpFilled.tsx @@ -8,4 +8,4 @@ const IconPlaylistRemoveSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconPlaylistRemoveSharpFilled as default } +export default IconPlaylistRemoveSharpFilled diff --git a/src/IconPlumbingOutlined.tsx b/src/IconPlumbingOutlined.tsx index a81740b14..f2dae9c9f 100644 --- a/src/IconPlumbingOutlined.tsx +++ b/src/IconPlumbingOutlined.tsx @@ -8,4 +8,4 @@ const IconPlumbingOutlined: React.FC = ({ ...props }) => ( ) -export { IconPlumbingOutlined as default } +export default IconPlumbingOutlined diff --git a/src/IconPlumbingOutlinedFilled.tsx b/src/IconPlumbingOutlinedFilled.tsx index 1f8001683..e59d9877b 100644 --- a/src/IconPlumbingOutlinedFilled.tsx +++ b/src/IconPlumbingOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconPlumbingOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconPlumbingOutlinedFilled as default } +export default IconPlumbingOutlinedFilled diff --git a/src/IconPlumbingRounded.tsx b/src/IconPlumbingRounded.tsx index d83507bf4..5b5b5edc0 100644 --- a/src/IconPlumbingRounded.tsx +++ b/src/IconPlumbingRounded.tsx @@ -8,4 +8,4 @@ const IconPlumbingRounded: React.FC = ({ ...props }) => ( ) -export { IconPlumbingRounded as default } +export default IconPlumbingRounded diff --git a/src/IconPlumbingRoundedFilled.tsx b/src/IconPlumbingRoundedFilled.tsx index 30f118c24..b9a1922bd 100644 --- a/src/IconPlumbingRoundedFilled.tsx +++ b/src/IconPlumbingRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconPlumbingRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconPlumbingRoundedFilled as default } +export default IconPlumbingRoundedFilled diff --git a/src/IconPlumbingSharp.tsx b/src/IconPlumbingSharp.tsx index 4a7183273..91646ee47 100644 --- a/src/IconPlumbingSharp.tsx +++ b/src/IconPlumbingSharp.tsx @@ -8,4 +8,4 @@ const IconPlumbingSharp: React.FC = ({ ...props }) => ( ) -export { IconPlumbingSharp as default } +export default IconPlumbingSharp diff --git a/src/IconPlumbingSharpFilled.tsx b/src/IconPlumbingSharpFilled.tsx index 66ffcf4b0..4030e128a 100644 --- a/src/IconPlumbingSharpFilled.tsx +++ b/src/IconPlumbingSharpFilled.tsx @@ -8,4 +8,4 @@ const IconPlumbingSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconPlumbingSharpFilled as default } +export default IconPlumbingSharpFilled diff --git a/src/IconPodcastsOutlined.tsx b/src/IconPodcastsOutlined.tsx index 2c9445d44..bfb1454e5 100644 --- a/src/IconPodcastsOutlined.tsx +++ b/src/IconPodcastsOutlined.tsx @@ -8,4 +8,4 @@ const IconPodcastsOutlined: React.FC = ({ ...props }) => ( ) -export { IconPodcastsOutlined as default } +export default IconPodcastsOutlined diff --git a/src/IconPodcastsOutlinedFilled.tsx b/src/IconPodcastsOutlinedFilled.tsx index 5aa6cd5e0..04dc8d7e7 100644 --- a/src/IconPodcastsOutlinedFilled.tsx +++ b/src/IconPodcastsOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconPodcastsOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconPodcastsOutlinedFilled as default } +export default IconPodcastsOutlinedFilled diff --git a/src/IconPodcastsRounded.tsx b/src/IconPodcastsRounded.tsx index 88235350c..729f358dd 100644 --- a/src/IconPodcastsRounded.tsx +++ b/src/IconPodcastsRounded.tsx @@ -8,4 +8,4 @@ const IconPodcastsRounded: React.FC = ({ ...props }) => ( ) -export { IconPodcastsRounded as default } +export default IconPodcastsRounded diff --git a/src/IconPodcastsRoundedFilled.tsx b/src/IconPodcastsRoundedFilled.tsx index 1fc89b9e3..a17a8a4f1 100644 --- a/src/IconPodcastsRoundedFilled.tsx +++ b/src/IconPodcastsRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconPodcastsRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconPodcastsRoundedFilled as default } +export default IconPodcastsRoundedFilled diff --git a/src/IconPodcastsSharp.tsx b/src/IconPodcastsSharp.tsx index f929e8ffa..7964f0e99 100644 --- a/src/IconPodcastsSharp.tsx +++ b/src/IconPodcastsSharp.tsx @@ -8,4 +8,4 @@ const IconPodcastsSharp: React.FC = ({ ...props }) => ( ) -export { IconPodcastsSharp as default } +export default IconPodcastsSharp diff --git a/src/IconPodcastsSharpFilled.tsx b/src/IconPodcastsSharpFilled.tsx index f4b207e70..a84fc8a55 100644 --- a/src/IconPodcastsSharpFilled.tsx +++ b/src/IconPodcastsSharpFilled.tsx @@ -8,4 +8,4 @@ const IconPodcastsSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconPodcastsSharpFilled as default } +export default IconPodcastsSharpFilled diff --git a/src/IconPodiatryOutlined.tsx b/src/IconPodiatryOutlined.tsx index 1c10899f4..537735a06 100644 --- a/src/IconPodiatryOutlined.tsx +++ b/src/IconPodiatryOutlined.tsx @@ -8,4 +8,4 @@ const IconPodiatryOutlined: React.FC = ({ ...props }) => ( ) -export { IconPodiatryOutlined as default } +export default IconPodiatryOutlined diff --git a/src/IconPodiatryOutlinedFilled.tsx b/src/IconPodiatryOutlinedFilled.tsx index 53d8ec132..424b370b8 100644 --- a/src/IconPodiatryOutlinedFilled.tsx +++ b/src/IconPodiatryOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconPodiatryOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconPodiatryOutlinedFilled as default } +export default IconPodiatryOutlinedFilled diff --git a/src/IconPodiatryRounded.tsx b/src/IconPodiatryRounded.tsx index dda25e46f..480d6a33d 100644 --- a/src/IconPodiatryRounded.tsx +++ b/src/IconPodiatryRounded.tsx @@ -8,4 +8,4 @@ const IconPodiatryRounded: React.FC = ({ ...props }) => ( ) -export { IconPodiatryRounded as default } +export default IconPodiatryRounded diff --git a/src/IconPodiatryRoundedFilled.tsx b/src/IconPodiatryRoundedFilled.tsx index f7c9dd417..800208d73 100644 --- a/src/IconPodiatryRoundedFilled.tsx +++ b/src/IconPodiatryRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconPodiatryRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconPodiatryRoundedFilled as default } +export default IconPodiatryRoundedFilled diff --git a/src/IconPodiatrySharp.tsx b/src/IconPodiatrySharp.tsx index 5dc29e99d..67d4e1ab0 100644 --- a/src/IconPodiatrySharp.tsx +++ b/src/IconPodiatrySharp.tsx @@ -8,4 +8,4 @@ const IconPodiatrySharp: React.FC = ({ ...props }) => ( ) -export { IconPodiatrySharp as default } +export default IconPodiatrySharp diff --git a/src/IconPodiatrySharpFilled.tsx b/src/IconPodiatrySharpFilled.tsx index 076e80da6..18f7bfe08 100644 --- a/src/IconPodiatrySharpFilled.tsx +++ b/src/IconPodiatrySharpFilled.tsx @@ -8,4 +8,4 @@ const IconPodiatrySharpFilled: React.FC = ({ ...props }) => ( ) -export { IconPodiatrySharpFilled as default } +export default IconPodiatrySharpFilled diff --git a/src/IconPodiumOutlined.tsx b/src/IconPodiumOutlined.tsx index 2c4a9348d..65d2b7892 100644 --- a/src/IconPodiumOutlined.tsx +++ b/src/IconPodiumOutlined.tsx @@ -8,4 +8,4 @@ const IconPodiumOutlined: React.FC = ({ ...props }) => ( ) -export { IconPodiumOutlined as default } +export default IconPodiumOutlined diff --git a/src/IconPodiumOutlinedFilled.tsx b/src/IconPodiumOutlinedFilled.tsx index a6d0ce31e..7752d019b 100644 --- a/src/IconPodiumOutlinedFilled.tsx +++ b/src/IconPodiumOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconPodiumOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconPodiumOutlinedFilled as default } +export default IconPodiumOutlinedFilled diff --git a/src/IconPodiumRounded.tsx b/src/IconPodiumRounded.tsx index 857496ddc..967c56d8c 100644 --- a/src/IconPodiumRounded.tsx +++ b/src/IconPodiumRounded.tsx @@ -8,4 +8,4 @@ const IconPodiumRounded: React.FC = ({ ...props }) => ( ) -export { IconPodiumRounded as default } +export default IconPodiumRounded diff --git a/src/IconPodiumRoundedFilled.tsx b/src/IconPodiumRoundedFilled.tsx index 653e37938..bd8b4393d 100644 --- a/src/IconPodiumRoundedFilled.tsx +++ b/src/IconPodiumRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconPodiumRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconPodiumRoundedFilled as default } +export default IconPodiumRoundedFilled diff --git a/src/IconPodiumSharp.tsx b/src/IconPodiumSharp.tsx index a16e86d06..a832ef4d8 100644 --- a/src/IconPodiumSharp.tsx +++ b/src/IconPodiumSharp.tsx @@ -8,4 +8,4 @@ const IconPodiumSharp: React.FC = ({ ...props }) => ( ) -export { IconPodiumSharp as default } +export default IconPodiumSharp diff --git a/src/IconPodiumSharpFilled.tsx b/src/IconPodiumSharpFilled.tsx index 92a2235d0..de9b8fed6 100644 --- a/src/IconPodiumSharpFilled.tsx +++ b/src/IconPodiumSharpFilled.tsx @@ -8,4 +8,4 @@ const IconPodiumSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconPodiumSharpFilled as default } +export default IconPodiumSharpFilled diff --git a/src/IconPointOfSaleOutlined.tsx b/src/IconPointOfSaleOutlined.tsx index 00b5f9382..883f51cd7 100644 --- a/src/IconPointOfSaleOutlined.tsx +++ b/src/IconPointOfSaleOutlined.tsx @@ -8,4 +8,4 @@ const IconPointOfSaleOutlined: React.FC = ({ ...props }) => ( ) -export { IconPointOfSaleOutlined as default } +export default IconPointOfSaleOutlined diff --git a/src/IconPointOfSaleOutlinedFilled.tsx b/src/IconPointOfSaleOutlinedFilled.tsx index 2cfa1f84d..bbae1c470 100644 --- a/src/IconPointOfSaleOutlinedFilled.tsx +++ b/src/IconPointOfSaleOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconPointOfSaleOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconPointOfSaleOutlinedFilled as default } +export default IconPointOfSaleOutlinedFilled diff --git a/src/IconPointOfSaleRounded.tsx b/src/IconPointOfSaleRounded.tsx index 62b81c3ce..4689727f7 100644 --- a/src/IconPointOfSaleRounded.tsx +++ b/src/IconPointOfSaleRounded.tsx @@ -8,4 +8,4 @@ const IconPointOfSaleRounded: React.FC = ({ ...props }) => ( ) -export { IconPointOfSaleRounded as default } +export default IconPointOfSaleRounded diff --git a/src/IconPointOfSaleRoundedFilled.tsx b/src/IconPointOfSaleRoundedFilled.tsx index ee190c999..c6ac63622 100644 --- a/src/IconPointOfSaleRoundedFilled.tsx +++ b/src/IconPointOfSaleRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconPointOfSaleRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconPointOfSaleRoundedFilled as default } +export default IconPointOfSaleRoundedFilled diff --git a/src/IconPointOfSaleSharp.tsx b/src/IconPointOfSaleSharp.tsx index 1d3cdbc14..cbd41037f 100644 --- a/src/IconPointOfSaleSharp.tsx +++ b/src/IconPointOfSaleSharp.tsx @@ -8,4 +8,4 @@ const IconPointOfSaleSharp: React.FC = ({ ...props }) => ( ) -export { IconPointOfSaleSharp as default } +export default IconPointOfSaleSharp diff --git a/src/IconPointOfSaleSharpFilled.tsx b/src/IconPointOfSaleSharpFilled.tsx index 1c9b34f08..21c30fe3c 100644 --- a/src/IconPointOfSaleSharpFilled.tsx +++ b/src/IconPointOfSaleSharpFilled.tsx @@ -8,4 +8,4 @@ const IconPointOfSaleSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconPointOfSaleSharpFilled as default } +export default IconPointOfSaleSharpFilled diff --git a/src/IconPointScanOutlined.tsx b/src/IconPointScanOutlined.tsx index 79463a3de..36aa05890 100644 --- a/src/IconPointScanOutlined.tsx +++ b/src/IconPointScanOutlined.tsx @@ -8,4 +8,4 @@ const IconPointScanOutlined: React.FC = ({ ...props }) => ( ) -export { IconPointScanOutlined as default } +export default IconPointScanOutlined diff --git a/src/IconPointScanOutlinedFilled.tsx b/src/IconPointScanOutlinedFilled.tsx index faaf0ca3c..761bf28be 100644 --- a/src/IconPointScanOutlinedFilled.tsx +++ b/src/IconPointScanOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconPointScanOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconPointScanOutlinedFilled as default } +export default IconPointScanOutlinedFilled diff --git a/src/IconPointScanRounded.tsx b/src/IconPointScanRounded.tsx index 0349a83d5..7f26a9306 100644 --- a/src/IconPointScanRounded.tsx +++ b/src/IconPointScanRounded.tsx @@ -8,4 +8,4 @@ const IconPointScanRounded: React.FC = ({ ...props }) => ( ) -export { IconPointScanRounded as default } +export default IconPointScanRounded diff --git a/src/IconPointScanRoundedFilled.tsx b/src/IconPointScanRoundedFilled.tsx index 52d58acca..6856b151a 100644 --- a/src/IconPointScanRoundedFilled.tsx +++ b/src/IconPointScanRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconPointScanRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconPointScanRoundedFilled as default } +export default IconPointScanRoundedFilled diff --git a/src/IconPointScanSharp.tsx b/src/IconPointScanSharp.tsx index 36dc4c2c4..8887dc789 100644 --- a/src/IconPointScanSharp.tsx +++ b/src/IconPointScanSharp.tsx @@ -8,4 +8,4 @@ const IconPointScanSharp: React.FC = ({ ...props }) => ( ) -export { IconPointScanSharp as default } +export default IconPointScanSharp diff --git a/src/IconPointScanSharpFilled.tsx b/src/IconPointScanSharpFilled.tsx index dcf299b66..17ba66a3e 100644 --- a/src/IconPointScanSharpFilled.tsx +++ b/src/IconPointScanSharpFilled.tsx @@ -8,4 +8,4 @@ const IconPointScanSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconPointScanSharpFilled as default } +export default IconPointScanSharpFilled diff --git a/src/IconPokerChipOutlined.tsx b/src/IconPokerChipOutlined.tsx index ec88e34ff..c7470babc 100644 --- a/src/IconPokerChipOutlined.tsx +++ b/src/IconPokerChipOutlined.tsx @@ -8,4 +8,4 @@ const IconPokerChipOutlined: React.FC = ({ ...props }) => ( ) -export { IconPokerChipOutlined as default } +export default IconPokerChipOutlined diff --git a/src/IconPokerChipOutlinedFilled.tsx b/src/IconPokerChipOutlinedFilled.tsx index 6fbd96885..dd8cee075 100644 --- a/src/IconPokerChipOutlinedFilled.tsx +++ b/src/IconPokerChipOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconPokerChipOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconPokerChipOutlinedFilled as default } +export default IconPokerChipOutlinedFilled diff --git a/src/IconPokerChipRounded.tsx b/src/IconPokerChipRounded.tsx index f23a6b213..93eaf34df 100644 --- a/src/IconPokerChipRounded.tsx +++ b/src/IconPokerChipRounded.tsx @@ -8,4 +8,4 @@ const IconPokerChipRounded: React.FC = ({ ...props }) => ( ) -export { IconPokerChipRounded as default } +export default IconPokerChipRounded diff --git a/src/IconPokerChipRoundedFilled.tsx b/src/IconPokerChipRoundedFilled.tsx index 92c9aa9f5..c6268fc8b 100644 --- a/src/IconPokerChipRoundedFilled.tsx +++ b/src/IconPokerChipRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconPokerChipRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconPokerChipRoundedFilled as default } +export default IconPokerChipRoundedFilled diff --git a/src/IconPokerChipSharp.tsx b/src/IconPokerChipSharp.tsx index 24583fbae..c0fbc6ab9 100644 --- a/src/IconPokerChipSharp.tsx +++ b/src/IconPokerChipSharp.tsx @@ -8,4 +8,4 @@ const IconPokerChipSharp: React.FC = ({ ...props }) => ( ) -export { IconPokerChipSharp as default } +export default IconPokerChipSharp diff --git a/src/IconPokerChipSharpFilled.tsx b/src/IconPokerChipSharpFilled.tsx index 9c69e9b59..7e2ac5db8 100644 --- a/src/IconPokerChipSharpFilled.tsx +++ b/src/IconPokerChipSharpFilled.tsx @@ -8,4 +8,4 @@ const IconPokerChipSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconPokerChipSharpFilled as default } +export default IconPokerChipSharpFilled diff --git a/src/IconPolicyAlertOutlined.tsx b/src/IconPolicyAlertOutlined.tsx index e84b71dc8..237c85943 100644 --- a/src/IconPolicyAlertOutlined.tsx +++ b/src/IconPolicyAlertOutlined.tsx @@ -8,4 +8,4 @@ const IconPolicyAlertOutlined: React.FC = ({ ...props }) => ( ) -export { IconPolicyAlertOutlined as default } +export default IconPolicyAlertOutlined diff --git a/src/IconPolicyAlertOutlinedFilled.tsx b/src/IconPolicyAlertOutlinedFilled.tsx index 41902bbc3..1f4748236 100644 --- a/src/IconPolicyAlertOutlinedFilled.tsx +++ b/src/IconPolicyAlertOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconPolicyAlertOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconPolicyAlertOutlinedFilled as default } +export default IconPolicyAlertOutlinedFilled diff --git a/src/IconPolicyAlertRounded.tsx b/src/IconPolicyAlertRounded.tsx index 580b4e0a1..f05b11a77 100644 --- a/src/IconPolicyAlertRounded.tsx +++ b/src/IconPolicyAlertRounded.tsx @@ -8,4 +8,4 @@ const IconPolicyAlertRounded: React.FC = ({ ...props }) => ( ) -export { IconPolicyAlertRounded as default } +export default IconPolicyAlertRounded diff --git a/src/IconPolicyAlertRoundedFilled.tsx b/src/IconPolicyAlertRoundedFilled.tsx index e10705b2b..2ca4c7704 100644 --- a/src/IconPolicyAlertRoundedFilled.tsx +++ b/src/IconPolicyAlertRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconPolicyAlertRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconPolicyAlertRoundedFilled as default } +export default IconPolicyAlertRoundedFilled diff --git a/src/IconPolicyAlertSharp.tsx b/src/IconPolicyAlertSharp.tsx index 4f0f4f1c2..a51fe7ba3 100644 --- a/src/IconPolicyAlertSharp.tsx +++ b/src/IconPolicyAlertSharp.tsx @@ -8,4 +8,4 @@ const IconPolicyAlertSharp: React.FC = ({ ...props }) => ( ) -export { IconPolicyAlertSharp as default } +export default IconPolicyAlertSharp diff --git a/src/IconPolicyAlertSharpFilled.tsx b/src/IconPolicyAlertSharpFilled.tsx index 6e5f4f9a9..5f0bafb64 100644 --- a/src/IconPolicyAlertSharpFilled.tsx +++ b/src/IconPolicyAlertSharpFilled.tsx @@ -8,4 +8,4 @@ const IconPolicyAlertSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconPolicyAlertSharpFilled as default } +export default IconPolicyAlertSharpFilled diff --git a/src/IconPolicyOutlined.tsx b/src/IconPolicyOutlined.tsx index d49fffb25..cf319085d 100644 --- a/src/IconPolicyOutlined.tsx +++ b/src/IconPolicyOutlined.tsx @@ -8,4 +8,4 @@ const IconPolicyOutlined: React.FC = ({ ...props }) => ( ) -export { IconPolicyOutlined as default } +export default IconPolicyOutlined diff --git a/src/IconPolicyOutlinedFilled.tsx b/src/IconPolicyOutlinedFilled.tsx index 7c2059f2c..49b2eedbb 100644 --- a/src/IconPolicyOutlinedFilled.tsx +++ b/src/IconPolicyOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconPolicyOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconPolicyOutlinedFilled as default } +export default IconPolicyOutlinedFilled diff --git a/src/IconPolicyRounded.tsx b/src/IconPolicyRounded.tsx index 22d60578f..c564dc937 100644 --- a/src/IconPolicyRounded.tsx +++ b/src/IconPolicyRounded.tsx @@ -8,4 +8,4 @@ const IconPolicyRounded: React.FC = ({ ...props }) => ( ) -export { IconPolicyRounded as default } +export default IconPolicyRounded diff --git a/src/IconPolicyRoundedFilled.tsx b/src/IconPolicyRoundedFilled.tsx index ba7ff6e3f..2f0ead388 100644 --- a/src/IconPolicyRoundedFilled.tsx +++ b/src/IconPolicyRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconPolicyRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconPolicyRoundedFilled as default } +export default IconPolicyRoundedFilled diff --git a/src/IconPolicySharp.tsx b/src/IconPolicySharp.tsx index 03666cf62..60635dcca 100644 --- a/src/IconPolicySharp.tsx +++ b/src/IconPolicySharp.tsx @@ -8,4 +8,4 @@ const IconPolicySharp: React.FC = ({ ...props }) => ( ) -export { IconPolicySharp as default } +export default IconPolicySharp diff --git a/src/IconPolicySharpFilled.tsx b/src/IconPolicySharpFilled.tsx index 288370b2a..3348a9f26 100644 --- a/src/IconPolicySharpFilled.tsx +++ b/src/IconPolicySharpFilled.tsx @@ -8,4 +8,4 @@ const IconPolicySharpFilled: React.FC = ({ ...props }) => ( ) -export { IconPolicySharpFilled as default } +export default IconPolicySharpFilled diff --git a/src/IconPolylineOutlined.tsx b/src/IconPolylineOutlined.tsx index dc86b80a5..f90cc6f5f 100644 --- a/src/IconPolylineOutlined.tsx +++ b/src/IconPolylineOutlined.tsx @@ -8,4 +8,4 @@ const IconPolylineOutlined: React.FC = ({ ...props }) => ( ) -export { IconPolylineOutlined as default } +export default IconPolylineOutlined diff --git a/src/IconPolylineOutlinedFilled.tsx b/src/IconPolylineOutlinedFilled.tsx index e7e5a891b..38cdc9d5e 100644 --- a/src/IconPolylineOutlinedFilled.tsx +++ b/src/IconPolylineOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconPolylineOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconPolylineOutlinedFilled as default } +export default IconPolylineOutlinedFilled diff --git a/src/IconPolylineRounded.tsx b/src/IconPolylineRounded.tsx index e63a7c898..c102acd50 100644 --- a/src/IconPolylineRounded.tsx +++ b/src/IconPolylineRounded.tsx @@ -8,4 +8,4 @@ const IconPolylineRounded: React.FC = ({ ...props }) => ( ) -export { IconPolylineRounded as default } +export default IconPolylineRounded diff --git a/src/IconPolylineRoundedFilled.tsx b/src/IconPolylineRoundedFilled.tsx index 407676ad2..c893c37d6 100644 --- a/src/IconPolylineRoundedFilled.tsx +++ b/src/IconPolylineRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconPolylineRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconPolylineRoundedFilled as default } +export default IconPolylineRoundedFilled diff --git a/src/IconPolylineSharp.tsx b/src/IconPolylineSharp.tsx index 0c9324565..c366c90de 100644 --- a/src/IconPolylineSharp.tsx +++ b/src/IconPolylineSharp.tsx @@ -8,4 +8,4 @@ const IconPolylineSharp: React.FC = ({ ...props }) => ( ) -export { IconPolylineSharp as default } +export default IconPolylineSharp diff --git a/src/IconPolylineSharpFilled.tsx b/src/IconPolylineSharpFilled.tsx index 6e62f9c57..18f9da492 100644 --- a/src/IconPolylineSharpFilled.tsx +++ b/src/IconPolylineSharpFilled.tsx @@ -8,4 +8,4 @@ const IconPolylineSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconPolylineSharpFilled as default } +export default IconPolylineSharpFilled diff --git a/src/IconPolymerOutlined.tsx b/src/IconPolymerOutlined.tsx index 3ed747a27..48a91cef2 100644 --- a/src/IconPolymerOutlined.tsx +++ b/src/IconPolymerOutlined.tsx @@ -8,4 +8,4 @@ const IconPolymerOutlined: React.FC = ({ ...props }) => ( ) -export { IconPolymerOutlined as default } +export default IconPolymerOutlined diff --git a/src/IconPolymerOutlinedFilled.tsx b/src/IconPolymerOutlinedFilled.tsx index 848dde4e5..89fe5dd1c 100644 --- a/src/IconPolymerOutlinedFilled.tsx +++ b/src/IconPolymerOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconPolymerOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconPolymerOutlinedFilled as default } +export default IconPolymerOutlinedFilled diff --git a/src/IconPolymerRounded.tsx b/src/IconPolymerRounded.tsx index 71cc747db..e21df121e 100644 --- a/src/IconPolymerRounded.tsx +++ b/src/IconPolymerRounded.tsx @@ -8,4 +8,4 @@ const IconPolymerRounded: React.FC = ({ ...props }) => ( ) -export { IconPolymerRounded as default } +export default IconPolymerRounded diff --git a/src/IconPolymerRoundedFilled.tsx b/src/IconPolymerRoundedFilled.tsx index cbe088229..99583aab3 100644 --- a/src/IconPolymerRoundedFilled.tsx +++ b/src/IconPolymerRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconPolymerRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconPolymerRoundedFilled as default } +export default IconPolymerRoundedFilled diff --git a/src/IconPolymerSharp.tsx b/src/IconPolymerSharp.tsx index c296e5f33..4456d02f6 100644 --- a/src/IconPolymerSharp.tsx +++ b/src/IconPolymerSharp.tsx @@ -8,4 +8,4 @@ const IconPolymerSharp: React.FC = ({ ...props }) => ( ) -export { IconPolymerSharp as default } +export default IconPolymerSharp diff --git a/src/IconPolymerSharpFilled.tsx b/src/IconPolymerSharpFilled.tsx index 8a4d159f6..c15b67e96 100644 --- a/src/IconPolymerSharpFilled.tsx +++ b/src/IconPolymerSharpFilled.tsx @@ -8,4 +8,4 @@ const IconPolymerSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconPolymerSharpFilled as default } +export default IconPolymerSharpFilled diff --git a/src/IconPoolOutlined.tsx b/src/IconPoolOutlined.tsx index 05f253ca7..11d2d6c2a 100644 --- a/src/IconPoolOutlined.tsx +++ b/src/IconPoolOutlined.tsx @@ -8,4 +8,4 @@ const IconPoolOutlined: React.FC = ({ ...props }) => ( ) -export { IconPoolOutlined as default } +export default IconPoolOutlined diff --git a/src/IconPoolOutlinedFilled.tsx b/src/IconPoolOutlinedFilled.tsx index fc27a7d6f..fdc42b7a2 100644 --- a/src/IconPoolOutlinedFilled.tsx +++ b/src/IconPoolOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconPoolOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconPoolOutlinedFilled as default } +export default IconPoolOutlinedFilled diff --git a/src/IconPoolRounded.tsx b/src/IconPoolRounded.tsx index 711ee6d4f..2c680a590 100644 --- a/src/IconPoolRounded.tsx +++ b/src/IconPoolRounded.tsx @@ -8,4 +8,4 @@ const IconPoolRounded: React.FC = ({ ...props }) => ( ) -export { IconPoolRounded as default } +export default IconPoolRounded diff --git a/src/IconPoolRoundedFilled.tsx b/src/IconPoolRoundedFilled.tsx index 3317fe7b7..1fbcb3f74 100644 --- a/src/IconPoolRoundedFilled.tsx +++ b/src/IconPoolRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconPoolRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconPoolRoundedFilled as default } +export default IconPoolRoundedFilled diff --git a/src/IconPoolSharp.tsx b/src/IconPoolSharp.tsx index 17420f9c5..c37744433 100644 --- a/src/IconPoolSharp.tsx +++ b/src/IconPoolSharp.tsx @@ -8,4 +8,4 @@ const IconPoolSharp: React.FC = ({ ...props }) => ( ) -export { IconPoolSharp as default } +export default IconPoolSharp diff --git a/src/IconPoolSharpFilled.tsx b/src/IconPoolSharpFilled.tsx index 30589dd70..0e3f6b770 100644 --- a/src/IconPoolSharpFilled.tsx +++ b/src/IconPoolSharpFilled.tsx @@ -8,4 +8,4 @@ const IconPoolSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconPoolSharpFilled as default } +export default IconPoolSharpFilled diff --git a/src/IconPortableWifiOffOutlined.tsx b/src/IconPortableWifiOffOutlined.tsx index 4fc993059..b631a5f3c 100644 --- a/src/IconPortableWifiOffOutlined.tsx +++ b/src/IconPortableWifiOffOutlined.tsx @@ -8,4 +8,4 @@ const IconPortableWifiOffOutlined: React.FC = ({ ...props }) => ( ) -export { IconPortableWifiOffOutlined as default } +export default IconPortableWifiOffOutlined diff --git a/src/IconPortableWifiOffOutlinedFilled.tsx b/src/IconPortableWifiOffOutlinedFilled.tsx index db7ecfb3e..0d54eb97e 100644 --- a/src/IconPortableWifiOffOutlinedFilled.tsx +++ b/src/IconPortableWifiOffOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconPortableWifiOffOutlinedFilled: React.FC = ({ ) -export { IconPortableWifiOffOutlinedFilled as default } +export default IconPortableWifiOffOutlinedFilled diff --git a/src/IconPortableWifiOffRounded.tsx b/src/IconPortableWifiOffRounded.tsx index a40ff45b8..459af72fa 100644 --- a/src/IconPortableWifiOffRounded.tsx +++ b/src/IconPortableWifiOffRounded.tsx @@ -8,4 +8,4 @@ const IconPortableWifiOffRounded: React.FC = ({ ...props }) => ( ) -export { IconPortableWifiOffRounded as default } +export default IconPortableWifiOffRounded diff --git a/src/IconPortableWifiOffRoundedFilled.tsx b/src/IconPortableWifiOffRoundedFilled.tsx index fa6109d68..23aa5ec5b 100644 --- a/src/IconPortableWifiOffRoundedFilled.tsx +++ b/src/IconPortableWifiOffRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconPortableWifiOffRoundedFilled: React.FC = ({ ) -export { IconPortableWifiOffRoundedFilled as default } +export default IconPortableWifiOffRoundedFilled diff --git a/src/IconPortableWifiOffSharp.tsx b/src/IconPortableWifiOffSharp.tsx index 3c8210c75..ceb532d49 100644 --- a/src/IconPortableWifiOffSharp.tsx +++ b/src/IconPortableWifiOffSharp.tsx @@ -8,4 +8,4 @@ const IconPortableWifiOffSharp: React.FC = ({ ...props }) => ( ) -export { IconPortableWifiOffSharp as default } +export default IconPortableWifiOffSharp diff --git a/src/IconPortableWifiOffSharpFilled.tsx b/src/IconPortableWifiOffSharpFilled.tsx index e2a3558ed..237f64854 100644 --- a/src/IconPortableWifiOffSharpFilled.tsx +++ b/src/IconPortableWifiOffSharpFilled.tsx @@ -8,4 +8,4 @@ const IconPortableWifiOffSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconPortableWifiOffSharpFilled as default } +export default IconPortableWifiOffSharpFilled diff --git a/src/IconPositionBottomLeftOutlined.tsx b/src/IconPositionBottomLeftOutlined.tsx index 99b360a26..02f0557e8 100644 --- a/src/IconPositionBottomLeftOutlined.tsx +++ b/src/IconPositionBottomLeftOutlined.tsx @@ -8,4 +8,4 @@ const IconPositionBottomLeftOutlined: React.FC = ({ ...props }) => ( ) -export { IconPositionBottomLeftOutlined as default } +export default IconPositionBottomLeftOutlined diff --git a/src/IconPositionBottomLeftOutlinedFilled.tsx b/src/IconPositionBottomLeftOutlinedFilled.tsx index 7cd2938cf..08976c09d 100644 --- a/src/IconPositionBottomLeftOutlinedFilled.tsx +++ b/src/IconPositionBottomLeftOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconPositionBottomLeftOutlinedFilled: React.FC = ({ ) -export { IconPositionBottomLeftOutlinedFilled as default } +export default IconPositionBottomLeftOutlinedFilled diff --git a/src/IconPositionBottomLeftRounded.tsx b/src/IconPositionBottomLeftRounded.tsx index 7fe294531..9ce4b7b76 100644 --- a/src/IconPositionBottomLeftRounded.tsx +++ b/src/IconPositionBottomLeftRounded.tsx @@ -8,4 +8,4 @@ const IconPositionBottomLeftRounded: React.FC = ({ ...props }) => ( ) -export { IconPositionBottomLeftRounded as default } +export default IconPositionBottomLeftRounded diff --git a/src/IconPositionBottomLeftRoundedFilled.tsx b/src/IconPositionBottomLeftRoundedFilled.tsx index 692d8ad68..01010398b 100644 --- a/src/IconPositionBottomLeftRoundedFilled.tsx +++ b/src/IconPositionBottomLeftRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconPositionBottomLeftRoundedFilled: React.FC = ({ ) -export { IconPositionBottomLeftRoundedFilled as default } +export default IconPositionBottomLeftRoundedFilled diff --git a/src/IconPositionBottomLeftSharp.tsx b/src/IconPositionBottomLeftSharp.tsx index 64a0e1713..a053456df 100644 --- a/src/IconPositionBottomLeftSharp.tsx +++ b/src/IconPositionBottomLeftSharp.tsx @@ -8,4 +8,4 @@ const IconPositionBottomLeftSharp: React.FC = ({ ...props }) => ( ) -export { IconPositionBottomLeftSharp as default } +export default IconPositionBottomLeftSharp diff --git a/src/IconPositionBottomLeftSharpFilled.tsx b/src/IconPositionBottomLeftSharpFilled.tsx index 8d30d23b1..2969f83cf 100644 --- a/src/IconPositionBottomLeftSharpFilled.tsx +++ b/src/IconPositionBottomLeftSharpFilled.tsx @@ -10,4 +10,4 @@ const IconPositionBottomLeftSharpFilled: React.FC = ({ ) -export { IconPositionBottomLeftSharpFilled as default } +export default IconPositionBottomLeftSharpFilled diff --git a/src/IconPositionBottomRightOutlined.tsx b/src/IconPositionBottomRightOutlined.tsx index 5d128be8e..c8d5f869c 100644 --- a/src/IconPositionBottomRightOutlined.tsx +++ b/src/IconPositionBottomRightOutlined.tsx @@ -8,4 +8,4 @@ const IconPositionBottomRightOutlined: React.FC = ({ ...props }) => ( ) -export { IconPositionBottomRightOutlined as default } +export default IconPositionBottomRightOutlined diff --git a/src/IconPositionBottomRightOutlinedFilled.tsx b/src/IconPositionBottomRightOutlinedFilled.tsx index f58488247..5ca8b11d2 100644 --- a/src/IconPositionBottomRightOutlinedFilled.tsx +++ b/src/IconPositionBottomRightOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconPositionBottomRightOutlinedFilled: React.FC = ({ ) -export { IconPositionBottomRightOutlinedFilled as default } +export default IconPositionBottomRightOutlinedFilled diff --git a/src/IconPositionBottomRightRounded.tsx b/src/IconPositionBottomRightRounded.tsx index 5d6025cb8..f2f7590b2 100644 --- a/src/IconPositionBottomRightRounded.tsx +++ b/src/IconPositionBottomRightRounded.tsx @@ -8,4 +8,4 @@ const IconPositionBottomRightRounded: React.FC = ({ ...props }) => ( ) -export { IconPositionBottomRightRounded as default } +export default IconPositionBottomRightRounded diff --git a/src/IconPositionBottomRightRoundedFilled.tsx b/src/IconPositionBottomRightRoundedFilled.tsx index b21c5d2f6..cf59a486b 100644 --- a/src/IconPositionBottomRightRoundedFilled.tsx +++ b/src/IconPositionBottomRightRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconPositionBottomRightRoundedFilled: React.FC = ({ ) -export { IconPositionBottomRightRoundedFilled as default } +export default IconPositionBottomRightRoundedFilled diff --git a/src/IconPositionBottomRightSharp.tsx b/src/IconPositionBottomRightSharp.tsx index 6d72ad872..03d649ee3 100644 --- a/src/IconPositionBottomRightSharp.tsx +++ b/src/IconPositionBottomRightSharp.tsx @@ -8,4 +8,4 @@ const IconPositionBottomRightSharp: React.FC = ({ ...props }) => ( ) -export { IconPositionBottomRightSharp as default } +export default IconPositionBottomRightSharp diff --git a/src/IconPositionBottomRightSharpFilled.tsx b/src/IconPositionBottomRightSharpFilled.tsx index 0436fc907..b225529a4 100644 --- a/src/IconPositionBottomRightSharpFilled.tsx +++ b/src/IconPositionBottomRightSharpFilled.tsx @@ -10,4 +10,4 @@ const IconPositionBottomRightSharpFilled: React.FC = ({ ) -export { IconPositionBottomRightSharpFilled as default } +export default IconPositionBottomRightSharpFilled diff --git a/src/IconPositionTopRightOutlined.tsx b/src/IconPositionTopRightOutlined.tsx index cdf30de5b..e3a08cec2 100644 --- a/src/IconPositionTopRightOutlined.tsx +++ b/src/IconPositionTopRightOutlined.tsx @@ -8,4 +8,4 @@ const IconPositionTopRightOutlined: React.FC = ({ ...props }) => ( ) -export { IconPositionTopRightOutlined as default } +export default IconPositionTopRightOutlined diff --git a/src/IconPositionTopRightOutlinedFilled.tsx b/src/IconPositionTopRightOutlinedFilled.tsx index 8b929a727..13aa34e6f 100644 --- a/src/IconPositionTopRightOutlinedFilled.tsx +++ b/src/IconPositionTopRightOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconPositionTopRightOutlinedFilled: React.FC = ({ ) -export { IconPositionTopRightOutlinedFilled as default } +export default IconPositionTopRightOutlinedFilled diff --git a/src/IconPositionTopRightRounded.tsx b/src/IconPositionTopRightRounded.tsx index 1660d1558..b2984240d 100644 --- a/src/IconPositionTopRightRounded.tsx +++ b/src/IconPositionTopRightRounded.tsx @@ -8,4 +8,4 @@ const IconPositionTopRightRounded: React.FC = ({ ...props }) => ( ) -export { IconPositionTopRightRounded as default } +export default IconPositionTopRightRounded diff --git a/src/IconPositionTopRightRoundedFilled.tsx b/src/IconPositionTopRightRoundedFilled.tsx index a837fa1e6..515cff1b4 100644 --- a/src/IconPositionTopRightRoundedFilled.tsx +++ b/src/IconPositionTopRightRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconPositionTopRightRoundedFilled: React.FC = ({ ) -export { IconPositionTopRightRoundedFilled as default } +export default IconPositionTopRightRoundedFilled diff --git a/src/IconPositionTopRightSharp.tsx b/src/IconPositionTopRightSharp.tsx index 56d7771f0..32c456c87 100644 --- a/src/IconPositionTopRightSharp.tsx +++ b/src/IconPositionTopRightSharp.tsx @@ -8,4 +8,4 @@ const IconPositionTopRightSharp: React.FC = ({ ...props }) => ( ) -export { IconPositionTopRightSharp as default } +export default IconPositionTopRightSharp diff --git a/src/IconPositionTopRightSharpFilled.tsx b/src/IconPositionTopRightSharpFilled.tsx index 9247a36f2..0221f437a 100644 --- a/src/IconPositionTopRightSharpFilled.tsx +++ b/src/IconPositionTopRightSharpFilled.tsx @@ -8,4 +8,4 @@ const IconPositionTopRightSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconPositionTopRightSharpFilled as default } +export default IconPositionTopRightSharpFilled diff --git a/src/IconPostAddOutlined.tsx b/src/IconPostAddOutlined.tsx index 59fd5f24c..d303b0016 100644 --- a/src/IconPostAddOutlined.tsx +++ b/src/IconPostAddOutlined.tsx @@ -8,4 +8,4 @@ const IconPostAddOutlined: React.FC = ({ ...props }) => ( ) -export { IconPostAddOutlined as default } +export default IconPostAddOutlined diff --git a/src/IconPostAddOutlinedFilled.tsx b/src/IconPostAddOutlinedFilled.tsx index 9a97e6352..66d25afa9 100644 --- a/src/IconPostAddOutlinedFilled.tsx +++ b/src/IconPostAddOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconPostAddOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconPostAddOutlinedFilled as default } +export default IconPostAddOutlinedFilled diff --git a/src/IconPostAddRounded.tsx b/src/IconPostAddRounded.tsx index 3b6386672..24ba8f642 100644 --- a/src/IconPostAddRounded.tsx +++ b/src/IconPostAddRounded.tsx @@ -8,4 +8,4 @@ const IconPostAddRounded: React.FC = ({ ...props }) => ( ) -export { IconPostAddRounded as default } +export default IconPostAddRounded diff --git a/src/IconPostAddRoundedFilled.tsx b/src/IconPostAddRoundedFilled.tsx index 6804db471..f851467e5 100644 --- a/src/IconPostAddRoundedFilled.tsx +++ b/src/IconPostAddRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconPostAddRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconPostAddRoundedFilled as default } +export default IconPostAddRoundedFilled diff --git a/src/IconPostAddSharp.tsx b/src/IconPostAddSharp.tsx index ef7805a6b..e7822a156 100644 --- a/src/IconPostAddSharp.tsx +++ b/src/IconPostAddSharp.tsx @@ -8,4 +8,4 @@ const IconPostAddSharp: React.FC = ({ ...props }) => ( ) -export { IconPostAddSharp as default } +export default IconPostAddSharp diff --git a/src/IconPostAddSharpFilled.tsx b/src/IconPostAddSharpFilled.tsx index cfd8ad888..e013d6d34 100644 --- a/src/IconPostAddSharpFilled.tsx +++ b/src/IconPostAddSharpFilled.tsx @@ -8,4 +8,4 @@ const IconPostAddSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconPostAddSharpFilled as default } +export default IconPostAddSharpFilled diff --git a/src/IconPostOutlined.tsx b/src/IconPostOutlined.tsx index 91bf49797..25de83b08 100644 --- a/src/IconPostOutlined.tsx +++ b/src/IconPostOutlined.tsx @@ -8,4 +8,4 @@ const IconPostOutlined: React.FC = ({ ...props }) => ( ) -export { IconPostOutlined as default } +export default IconPostOutlined diff --git a/src/IconPostOutlinedFilled.tsx b/src/IconPostOutlinedFilled.tsx index 08d9c3e70..88965f939 100644 --- a/src/IconPostOutlinedFilled.tsx +++ b/src/IconPostOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconPostOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconPostOutlinedFilled as default } +export default IconPostOutlinedFilled diff --git a/src/IconPostRounded.tsx b/src/IconPostRounded.tsx index d3ecba4b4..30eb1d976 100644 --- a/src/IconPostRounded.tsx +++ b/src/IconPostRounded.tsx @@ -8,4 +8,4 @@ const IconPostRounded: React.FC = ({ ...props }) => ( ) -export { IconPostRounded as default } +export default IconPostRounded diff --git a/src/IconPostRoundedFilled.tsx b/src/IconPostRoundedFilled.tsx index 31f9b6166..f89b39a6f 100644 --- a/src/IconPostRoundedFilled.tsx +++ b/src/IconPostRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconPostRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconPostRoundedFilled as default } +export default IconPostRoundedFilled diff --git a/src/IconPostSharp.tsx b/src/IconPostSharp.tsx index 4505123ae..7cd71ca0b 100644 --- a/src/IconPostSharp.tsx +++ b/src/IconPostSharp.tsx @@ -8,4 +8,4 @@ const IconPostSharp: React.FC = ({ ...props }) => ( ) -export { IconPostSharp as default } +export default IconPostSharp diff --git a/src/IconPostSharpFilled.tsx b/src/IconPostSharpFilled.tsx index c066daa80..3579910c0 100644 --- a/src/IconPostSharpFilled.tsx +++ b/src/IconPostSharpFilled.tsx @@ -8,4 +8,4 @@ const IconPostSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconPostSharpFilled as default } +export default IconPostSharpFilled diff --git a/src/IconPottedPlantOutlined.tsx b/src/IconPottedPlantOutlined.tsx index 9e8e24c5c..8cd1a8527 100644 --- a/src/IconPottedPlantOutlined.tsx +++ b/src/IconPottedPlantOutlined.tsx @@ -8,4 +8,4 @@ const IconPottedPlantOutlined: React.FC = ({ ...props }) => ( ) -export { IconPottedPlantOutlined as default } +export default IconPottedPlantOutlined diff --git a/src/IconPottedPlantOutlinedFilled.tsx b/src/IconPottedPlantOutlinedFilled.tsx index 936b5a8f6..6ef8f11f9 100644 --- a/src/IconPottedPlantOutlinedFilled.tsx +++ b/src/IconPottedPlantOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconPottedPlantOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconPottedPlantOutlinedFilled as default } +export default IconPottedPlantOutlinedFilled diff --git a/src/IconPottedPlantRounded.tsx b/src/IconPottedPlantRounded.tsx index a45ae21ee..0b93a60c7 100644 --- a/src/IconPottedPlantRounded.tsx +++ b/src/IconPottedPlantRounded.tsx @@ -8,4 +8,4 @@ const IconPottedPlantRounded: React.FC = ({ ...props }) => ( ) -export { IconPottedPlantRounded as default } +export default IconPottedPlantRounded diff --git a/src/IconPottedPlantRoundedFilled.tsx b/src/IconPottedPlantRoundedFilled.tsx index 3cdba56a0..3bfadae18 100644 --- a/src/IconPottedPlantRoundedFilled.tsx +++ b/src/IconPottedPlantRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconPottedPlantRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconPottedPlantRoundedFilled as default } +export default IconPottedPlantRoundedFilled diff --git a/src/IconPottedPlantSharp.tsx b/src/IconPottedPlantSharp.tsx index b291fb51e..0e5040cb6 100644 --- a/src/IconPottedPlantSharp.tsx +++ b/src/IconPottedPlantSharp.tsx @@ -8,4 +8,4 @@ const IconPottedPlantSharp: React.FC = ({ ...props }) => ( ) -export { IconPottedPlantSharp as default } +export default IconPottedPlantSharp diff --git a/src/IconPottedPlantSharpFilled.tsx b/src/IconPottedPlantSharpFilled.tsx index e41073cf2..951042d92 100644 --- a/src/IconPottedPlantSharpFilled.tsx +++ b/src/IconPottedPlantSharpFilled.tsx @@ -8,4 +8,4 @@ const IconPottedPlantSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconPottedPlantSharpFilled as default } +export default IconPottedPlantSharpFilled diff --git a/src/IconPowerInputOutlined.tsx b/src/IconPowerInputOutlined.tsx index dbc1f5c67..d96d3ff0e 100644 --- a/src/IconPowerInputOutlined.tsx +++ b/src/IconPowerInputOutlined.tsx @@ -8,4 +8,4 @@ const IconPowerInputOutlined: React.FC = ({ ...props }) => ( ) -export { IconPowerInputOutlined as default } +export default IconPowerInputOutlined diff --git a/src/IconPowerInputOutlinedFilled.tsx b/src/IconPowerInputOutlinedFilled.tsx index 2d166ed4b..122c685a9 100644 --- a/src/IconPowerInputOutlinedFilled.tsx +++ b/src/IconPowerInputOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconPowerInputOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconPowerInputOutlinedFilled as default } +export default IconPowerInputOutlinedFilled diff --git a/src/IconPowerInputRounded.tsx b/src/IconPowerInputRounded.tsx index 4df30061e..0afeb5f4a 100644 --- a/src/IconPowerInputRounded.tsx +++ b/src/IconPowerInputRounded.tsx @@ -8,4 +8,4 @@ const IconPowerInputRounded: React.FC = ({ ...props }) => ( ) -export { IconPowerInputRounded as default } +export default IconPowerInputRounded diff --git a/src/IconPowerInputRoundedFilled.tsx b/src/IconPowerInputRoundedFilled.tsx index bd1b7cc25..7c5dd1dd9 100644 --- a/src/IconPowerInputRoundedFilled.tsx +++ b/src/IconPowerInputRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconPowerInputRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconPowerInputRoundedFilled as default } +export default IconPowerInputRoundedFilled diff --git a/src/IconPowerInputSharp.tsx b/src/IconPowerInputSharp.tsx index 7998f0d98..29d6e55cc 100644 --- a/src/IconPowerInputSharp.tsx +++ b/src/IconPowerInputSharp.tsx @@ -8,4 +8,4 @@ const IconPowerInputSharp: React.FC = ({ ...props }) => ( ) -export { IconPowerInputSharp as default } +export default IconPowerInputSharp diff --git a/src/IconPowerInputSharpFilled.tsx b/src/IconPowerInputSharpFilled.tsx index 72feddde8..8a2eb2116 100644 --- a/src/IconPowerInputSharpFilled.tsx +++ b/src/IconPowerInputSharpFilled.tsx @@ -8,4 +8,4 @@ const IconPowerInputSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconPowerInputSharpFilled as default } +export default IconPowerInputSharpFilled diff --git a/src/IconPowerOffOutlined.tsx b/src/IconPowerOffOutlined.tsx index 3e346c303..3c0b4bd94 100644 --- a/src/IconPowerOffOutlined.tsx +++ b/src/IconPowerOffOutlined.tsx @@ -8,4 +8,4 @@ const IconPowerOffOutlined: React.FC = ({ ...props }) => ( ) -export { IconPowerOffOutlined as default } +export default IconPowerOffOutlined diff --git a/src/IconPowerOffOutlinedFilled.tsx b/src/IconPowerOffOutlinedFilled.tsx index 90f80f86b..bb175d036 100644 --- a/src/IconPowerOffOutlinedFilled.tsx +++ b/src/IconPowerOffOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconPowerOffOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconPowerOffOutlinedFilled as default } +export default IconPowerOffOutlinedFilled diff --git a/src/IconPowerOffRounded.tsx b/src/IconPowerOffRounded.tsx index fa0bb61e5..5b94096a5 100644 --- a/src/IconPowerOffRounded.tsx +++ b/src/IconPowerOffRounded.tsx @@ -8,4 +8,4 @@ const IconPowerOffRounded: React.FC = ({ ...props }) => ( ) -export { IconPowerOffRounded as default } +export default IconPowerOffRounded diff --git a/src/IconPowerOffRoundedFilled.tsx b/src/IconPowerOffRoundedFilled.tsx index 51d5dc4ab..282810751 100644 --- a/src/IconPowerOffRoundedFilled.tsx +++ b/src/IconPowerOffRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconPowerOffRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconPowerOffRoundedFilled as default } +export default IconPowerOffRoundedFilled diff --git a/src/IconPowerOffSharp.tsx b/src/IconPowerOffSharp.tsx index e5b25525d..a154eacdc 100644 --- a/src/IconPowerOffSharp.tsx +++ b/src/IconPowerOffSharp.tsx @@ -8,4 +8,4 @@ const IconPowerOffSharp: React.FC = ({ ...props }) => ( ) -export { IconPowerOffSharp as default } +export default IconPowerOffSharp diff --git a/src/IconPowerOffSharpFilled.tsx b/src/IconPowerOffSharpFilled.tsx index 70c22e9dc..378525156 100644 --- a/src/IconPowerOffSharpFilled.tsx +++ b/src/IconPowerOffSharpFilled.tsx @@ -8,4 +8,4 @@ const IconPowerOffSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconPowerOffSharpFilled as default } +export default IconPowerOffSharpFilled diff --git a/src/IconPowerOutlined.tsx b/src/IconPowerOutlined.tsx index d9ca01dc3..372b7c7ef 100644 --- a/src/IconPowerOutlined.tsx +++ b/src/IconPowerOutlined.tsx @@ -8,4 +8,4 @@ const IconPowerOutlined: React.FC = ({ ...props }) => ( ) -export { IconPowerOutlined as default } +export default IconPowerOutlined diff --git a/src/IconPowerOutlinedFilled.tsx b/src/IconPowerOutlinedFilled.tsx index d0a4e6aa4..ad5c86c71 100644 --- a/src/IconPowerOutlinedFilled.tsx +++ b/src/IconPowerOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconPowerOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconPowerOutlinedFilled as default } +export default IconPowerOutlinedFilled diff --git a/src/IconPowerRounded.tsx b/src/IconPowerRounded.tsx index b846bb4ba..08a2d74ce 100644 --- a/src/IconPowerRounded.tsx +++ b/src/IconPowerRounded.tsx @@ -8,4 +8,4 @@ const IconPowerRounded: React.FC = ({ ...props }) => ( ) -export { IconPowerRounded as default } +export default IconPowerRounded diff --git a/src/IconPowerRoundedFilled.tsx b/src/IconPowerRoundedFilled.tsx index afb2d1ea3..11d032116 100644 --- a/src/IconPowerRoundedFilled.tsx +++ b/src/IconPowerRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconPowerRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconPowerRoundedFilled as default } +export default IconPowerRoundedFilled diff --git a/src/IconPowerSettingsCircleOutlined.tsx b/src/IconPowerSettingsCircleOutlined.tsx index 5aea7cdcd..6ee586a1a 100644 --- a/src/IconPowerSettingsCircleOutlined.tsx +++ b/src/IconPowerSettingsCircleOutlined.tsx @@ -8,4 +8,4 @@ const IconPowerSettingsCircleOutlined: React.FC = ({ ...props }) => ( ) -export { IconPowerSettingsCircleOutlined as default } +export default IconPowerSettingsCircleOutlined diff --git a/src/IconPowerSettingsCircleOutlinedFilled.tsx b/src/IconPowerSettingsCircleOutlinedFilled.tsx index acf054441..2267dff41 100644 --- a/src/IconPowerSettingsCircleOutlinedFilled.tsx +++ b/src/IconPowerSettingsCircleOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconPowerSettingsCircleOutlinedFilled: React.FC = ({ ) -export { IconPowerSettingsCircleOutlinedFilled as default } +export default IconPowerSettingsCircleOutlinedFilled diff --git a/src/IconPowerSettingsCircleRounded.tsx b/src/IconPowerSettingsCircleRounded.tsx index 9a3c9d3c1..5fcd77b16 100644 --- a/src/IconPowerSettingsCircleRounded.tsx +++ b/src/IconPowerSettingsCircleRounded.tsx @@ -8,4 +8,4 @@ const IconPowerSettingsCircleRounded: React.FC = ({ ...props }) => ( ) -export { IconPowerSettingsCircleRounded as default } +export default IconPowerSettingsCircleRounded diff --git a/src/IconPowerSettingsCircleRoundedFilled.tsx b/src/IconPowerSettingsCircleRoundedFilled.tsx index 45336643c..8eb7cf7e3 100644 --- a/src/IconPowerSettingsCircleRoundedFilled.tsx +++ b/src/IconPowerSettingsCircleRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconPowerSettingsCircleRoundedFilled: React.FC = ({ ) -export { IconPowerSettingsCircleRoundedFilled as default } +export default IconPowerSettingsCircleRoundedFilled diff --git a/src/IconPowerSettingsCircleSharp.tsx b/src/IconPowerSettingsCircleSharp.tsx index ce5d21f30..abfab4e7c 100644 --- a/src/IconPowerSettingsCircleSharp.tsx +++ b/src/IconPowerSettingsCircleSharp.tsx @@ -8,4 +8,4 @@ const IconPowerSettingsCircleSharp: React.FC = ({ ...props }) => ( ) -export { IconPowerSettingsCircleSharp as default } +export default IconPowerSettingsCircleSharp diff --git a/src/IconPowerSettingsCircleSharpFilled.tsx b/src/IconPowerSettingsCircleSharpFilled.tsx index 78f9f046d..ddab0b29b 100644 --- a/src/IconPowerSettingsCircleSharpFilled.tsx +++ b/src/IconPowerSettingsCircleSharpFilled.tsx @@ -10,4 +10,4 @@ const IconPowerSettingsCircleSharpFilled: React.FC = ({ ) -export { IconPowerSettingsCircleSharpFilled as default } +export default IconPowerSettingsCircleSharpFilled diff --git a/src/IconPowerSettingsNewOutlined.tsx b/src/IconPowerSettingsNewOutlined.tsx index fd5d0378b..257fb5c27 100644 --- a/src/IconPowerSettingsNewOutlined.tsx +++ b/src/IconPowerSettingsNewOutlined.tsx @@ -8,4 +8,4 @@ const IconPowerSettingsNewOutlined: React.FC = ({ ...props }) => ( ) -export { IconPowerSettingsNewOutlined as default } +export default IconPowerSettingsNewOutlined diff --git a/src/IconPowerSettingsNewOutlinedFilled.tsx b/src/IconPowerSettingsNewOutlinedFilled.tsx index cabfed37e..5e0cb65e9 100644 --- a/src/IconPowerSettingsNewOutlinedFilled.tsx +++ b/src/IconPowerSettingsNewOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconPowerSettingsNewOutlinedFilled: React.FC = ({ ) -export { IconPowerSettingsNewOutlinedFilled as default } +export default IconPowerSettingsNewOutlinedFilled diff --git a/src/IconPowerSettingsNewRounded.tsx b/src/IconPowerSettingsNewRounded.tsx index 59b7db073..da7a83806 100644 --- a/src/IconPowerSettingsNewRounded.tsx +++ b/src/IconPowerSettingsNewRounded.tsx @@ -8,4 +8,4 @@ const IconPowerSettingsNewRounded: React.FC = ({ ...props }) => ( ) -export { IconPowerSettingsNewRounded as default } +export default IconPowerSettingsNewRounded diff --git a/src/IconPowerSettingsNewRoundedFilled.tsx b/src/IconPowerSettingsNewRoundedFilled.tsx index 4d4216fcf..5dd6cf262 100644 --- a/src/IconPowerSettingsNewRoundedFilled.tsx +++ b/src/IconPowerSettingsNewRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconPowerSettingsNewRoundedFilled: React.FC = ({ ) -export { IconPowerSettingsNewRoundedFilled as default } +export default IconPowerSettingsNewRoundedFilled diff --git a/src/IconPowerSettingsNewSharp.tsx b/src/IconPowerSettingsNewSharp.tsx index 3bee35342..4c61f3d42 100644 --- a/src/IconPowerSettingsNewSharp.tsx +++ b/src/IconPowerSettingsNewSharp.tsx @@ -8,4 +8,4 @@ const IconPowerSettingsNewSharp: React.FC = ({ ...props }) => ( ) -export { IconPowerSettingsNewSharp as default } +export default IconPowerSettingsNewSharp diff --git a/src/IconPowerSettingsNewSharpFilled.tsx b/src/IconPowerSettingsNewSharpFilled.tsx index 7d80b4d55..4e23f1add 100644 --- a/src/IconPowerSettingsNewSharpFilled.tsx +++ b/src/IconPowerSettingsNewSharpFilled.tsx @@ -8,4 +8,4 @@ const IconPowerSettingsNewSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconPowerSettingsNewSharpFilled as default } +export default IconPowerSettingsNewSharpFilled diff --git a/src/IconPowerSharp.tsx b/src/IconPowerSharp.tsx index c302fbc75..702de7f6c 100644 --- a/src/IconPowerSharp.tsx +++ b/src/IconPowerSharp.tsx @@ -8,4 +8,4 @@ const IconPowerSharp: React.FC = ({ ...props }) => ( ) -export { IconPowerSharp as default } +export default IconPowerSharp diff --git a/src/IconPowerSharpFilled.tsx b/src/IconPowerSharpFilled.tsx index 8cf452440..2c50fc93c 100644 --- a/src/IconPowerSharpFilled.tsx +++ b/src/IconPowerSharpFilled.tsx @@ -8,4 +8,4 @@ const IconPowerSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconPowerSharpFilled as default } +export default IconPowerSharpFilled diff --git a/src/IconPrayerTimesOutlined.tsx b/src/IconPrayerTimesOutlined.tsx index 1085a0ce7..ddb115be4 100644 --- a/src/IconPrayerTimesOutlined.tsx +++ b/src/IconPrayerTimesOutlined.tsx @@ -8,4 +8,4 @@ const IconPrayerTimesOutlined: React.FC = ({ ...props }) => ( ) -export { IconPrayerTimesOutlined as default } +export default IconPrayerTimesOutlined diff --git a/src/IconPrayerTimesOutlinedFilled.tsx b/src/IconPrayerTimesOutlinedFilled.tsx index a444a08f4..9a7af91da 100644 --- a/src/IconPrayerTimesOutlinedFilled.tsx +++ b/src/IconPrayerTimesOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconPrayerTimesOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconPrayerTimesOutlinedFilled as default } +export default IconPrayerTimesOutlinedFilled diff --git a/src/IconPrayerTimesRounded.tsx b/src/IconPrayerTimesRounded.tsx index 661ddace3..0a2b56b1c 100644 --- a/src/IconPrayerTimesRounded.tsx +++ b/src/IconPrayerTimesRounded.tsx @@ -8,4 +8,4 @@ const IconPrayerTimesRounded: React.FC = ({ ...props }) => ( ) -export { IconPrayerTimesRounded as default } +export default IconPrayerTimesRounded diff --git a/src/IconPrayerTimesRoundedFilled.tsx b/src/IconPrayerTimesRoundedFilled.tsx index 94a9be44f..cf144dcd5 100644 --- a/src/IconPrayerTimesRoundedFilled.tsx +++ b/src/IconPrayerTimesRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconPrayerTimesRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconPrayerTimesRoundedFilled as default } +export default IconPrayerTimesRoundedFilled diff --git a/src/IconPrayerTimesSharp.tsx b/src/IconPrayerTimesSharp.tsx index 740ffc935..8cfeba8d1 100644 --- a/src/IconPrayerTimesSharp.tsx +++ b/src/IconPrayerTimesSharp.tsx @@ -8,4 +8,4 @@ const IconPrayerTimesSharp: React.FC = ({ ...props }) => ( ) -export { IconPrayerTimesSharp as default } +export default IconPrayerTimesSharp diff --git a/src/IconPrayerTimesSharpFilled.tsx b/src/IconPrayerTimesSharpFilled.tsx index f8939250a..80605479d 100644 --- a/src/IconPrayerTimesSharpFilled.tsx +++ b/src/IconPrayerTimesSharpFilled.tsx @@ -8,4 +8,4 @@ const IconPrayerTimesSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconPrayerTimesSharpFilled as default } +export default IconPrayerTimesSharpFilled diff --git a/src/IconPrecisionManufacturingOutlined.tsx b/src/IconPrecisionManufacturingOutlined.tsx index e583e63ac..b03ccbe80 100644 --- a/src/IconPrecisionManufacturingOutlined.tsx +++ b/src/IconPrecisionManufacturingOutlined.tsx @@ -10,4 +10,4 @@ const IconPrecisionManufacturingOutlined: React.FC = ({ ) -export { IconPrecisionManufacturingOutlined as default } +export default IconPrecisionManufacturingOutlined diff --git a/src/IconPrecisionManufacturingOutlinedFilled.tsx b/src/IconPrecisionManufacturingOutlinedFilled.tsx index 6771cc1fd..53aaebfe7 100644 --- a/src/IconPrecisionManufacturingOutlinedFilled.tsx +++ b/src/IconPrecisionManufacturingOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconPrecisionManufacturingOutlinedFilled: React.FC = ({ ) -export { IconPrecisionManufacturingOutlinedFilled as default } +export default IconPrecisionManufacturingOutlinedFilled diff --git a/src/IconPrecisionManufacturingRounded.tsx b/src/IconPrecisionManufacturingRounded.tsx index d0d5df98f..492ba6e07 100644 --- a/src/IconPrecisionManufacturingRounded.tsx +++ b/src/IconPrecisionManufacturingRounded.tsx @@ -10,4 +10,4 @@ const IconPrecisionManufacturingRounded: React.FC = ({ ) -export { IconPrecisionManufacturingRounded as default } +export default IconPrecisionManufacturingRounded diff --git a/src/IconPrecisionManufacturingRoundedFilled.tsx b/src/IconPrecisionManufacturingRoundedFilled.tsx index dd2c48aec..10b2df553 100644 --- a/src/IconPrecisionManufacturingRoundedFilled.tsx +++ b/src/IconPrecisionManufacturingRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconPrecisionManufacturingRoundedFilled: React.FC = ({ ) -export { IconPrecisionManufacturingRoundedFilled as default } +export default IconPrecisionManufacturingRoundedFilled diff --git a/src/IconPrecisionManufacturingSharp.tsx b/src/IconPrecisionManufacturingSharp.tsx index 304e212d8..1f2d34a23 100644 --- a/src/IconPrecisionManufacturingSharp.tsx +++ b/src/IconPrecisionManufacturingSharp.tsx @@ -8,4 +8,4 @@ const IconPrecisionManufacturingSharp: React.FC = ({ ...props }) => ( ) -export { IconPrecisionManufacturingSharp as default } +export default IconPrecisionManufacturingSharp diff --git a/src/IconPrecisionManufacturingSharpFilled.tsx b/src/IconPrecisionManufacturingSharpFilled.tsx index 21fd87d0a..5778a2045 100644 --- a/src/IconPrecisionManufacturingSharpFilled.tsx +++ b/src/IconPrecisionManufacturingSharpFilled.tsx @@ -10,4 +10,4 @@ const IconPrecisionManufacturingSharpFilled: React.FC = ({ ) -export { IconPrecisionManufacturingSharpFilled as default } +export default IconPrecisionManufacturingSharpFilled diff --git a/src/IconPregnancyOutlined.tsx b/src/IconPregnancyOutlined.tsx index 7842ddcb5..f11d6d268 100644 --- a/src/IconPregnancyOutlined.tsx +++ b/src/IconPregnancyOutlined.tsx @@ -8,4 +8,4 @@ const IconPregnancyOutlined: React.FC = ({ ...props }) => ( ) -export { IconPregnancyOutlined as default } +export default IconPregnancyOutlined diff --git a/src/IconPregnancyOutlinedFilled.tsx b/src/IconPregnancyOutlinedFilled.tsx index 47b5027d2..ac7d23c52 100644 --- a/src/IconPregnancyOutlinedFilled.tsx +++ b/src/IconPregnancyOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconPregnancyOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconPregnancyOutlinedFilled as default } +export default IconPregnancyOutlinedFilled diff --git a/src/IconPregnancyRounded.tsx b/src/IconPregnancyRounded.tsx index cd7f825c6..fe031e85b 100644 --- a/src/IconPregnancyRounded.tsx +++ b/src/IconPregnancyRounded.tsx @@ -8,4 +8,4 @@ const IconPregnancyRounded: React.FC = ({ ...props }) => ( ) -export { IconPregnancyRounded as default } +export default IconPregnancyRounded diff --git a/src/IconPregnancyRoundedFilled.tsx b/src/IconPregnancyRoundedFilled.tsx index ff3305848..384ca6a34 100644 --- a/src/IconPregnancyRoundedFilled.tsx +++ b/src/IconPregnancyRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconPregnancyRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconPregnancyRoundedFilled as default } +export default IconPregnancyRoundedFilled diff --git a/src/IconPregnancySharp.tsx b/src/IconPregnancySharp.tsx index ae876f164..f0c3dd801 100644 --- a/src/IconPregnancySharp.tsx +++ b/src/IconPregnancySharp.tsx @@ -8,4 +8,4 @@ const IconPregnancySharp: React.FC = ({ ...props }) => ( ) -export { IconPregnancySharp as default } +export default IconPregnancySharp diff --git a/src/IconPregnancySharpFilled.tsx b/src/IconPregnancySharpFilled.tsx index 876488da4..00a386e97 100644 --- a/src/IconPregnancySharpFilled.tsx +++ b/src/IconPregnancySharpFilled.tsx @@ -8,4 +8,4 @@ const IconPregnancySharpFilled: React.FC = ({ ...props }) => ( ) -export { IconPregnancySharpFilled as default } +export default IconPregnancySharpFilled diff --git a/src/IconPregnantWomanOutlined.tsx b/src/IconPregnantWomanOutlined.tsx index 1e6d42de3..916850abf 100644 --- a/src/IconPregnantWomanOutlined.tsx +++ b/src/IconPregnantWomanOutlined.tsx @@ -8,4 +8,4 @@ const IconPregnantWomanOutlined: React.FC = ({ ...props }) => ( ) -export { IconPregnantWomanOutlined as default } +export default IconPregnantWomanOutlined diff --git a/src/IconPregnantWomanOutlinedFilled.tsx b/src/IconPregnantWomanOutlinedFilled.tsx index bbf2c05db..4c433d457 100644 --- a/src/IconPregnantWomanOutlinedFilled.tsx +++ b/src/IconPregnantWomanOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconPregnantWomanOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconPregnantWomanOutlinedFilled as default } +export default IconPregnantWomanOutlinedFilled diff --git a/src/IconPregnantWomanRounded.tsx b/src/IconPregnantWomanRounded.tsx index cddbfd7d5..d8b4f70b8 100644 --- a/src/IconPregnantWomanRounded.tsx +++ b/src/IconPregnantWomanRounded.tsx @@ -8,4 +8,4 @@ const IconPregnantWomanRounded: React.FC = ({ ...props }) => ( ) -export { IconPregnantWomanRounded as default } +export default IconPregnantWomanRounded diff --git a/src/IconPregnantWomanRoundedFilled.tsx b/src/IconPregnantWomanRoundedFilled.tsx index 8f69d4ba4..1e5373a55 100644 --- a/src/IconPregnantWomanRoundedFilled.tsx +++ b/src/IconPregnantWomanRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconPregnantWomanRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconPregnantWomanRoundedFilled as default } +export default IconPregnantWomanRoundedFilled diff --git a/src/IconPregnantWomanSharp.tsx b/src/IconPregnantWomanSharp.tsx index 437df1d80..9398a8701 100644 --- a/src/IconPregnantWomanSharp.tsx +++ b/src/IconPregnantWomanSharp.tsx @@ -8,4 +8,4 @@ const IconPregnantWomanSharp: React.FC = ({ ...props }) => ( ) -export { IconPregnantWomanSharp as default } +export default IconPregnantWomanSharp diff --git a/src/IconPregnantWomanSharpFilled.tsx b/src/IconPregnantWomanSharpFilled.tsx index 9f17beac6..84ee00066 100644 --- a/src/IconPregnantWomanSharpFilled.tsx +++ b/src/IconPregnantWomanSharpFilled.tsx @@ -8,4 +8,4 @@ const IconPregnantWomanSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconPregnantWomanSharpFilled as default } +export default IconPregnantWomanSharpFilled diff --git a/src/IconPreliminaryOutlined.tsx b/src/IconPreliminaryOutlined.tsx index bff218b4c..6099f4afc 100644 --- a/src/IconPreliminaryOutlined.tsx +++ b/src/IconPreliminaryOutlined.tsx @@ -8,4 +8,4 @@ const IconPreliminaryOutlined: React.FC = ({ ...props }) => ( ) -export { IconPreliminaryOutlined as default } +export default IconPreliminaryOutlined diff --git a/src/IconPreliminaryOutlinedFilled.tsx b/src/IconPreliminaryOutlinedFilled.tsx index f0758d414..40ee567df 100644 --- a/src/IconPreliminaryOutlinedFilled.tsx +++ b/src/IconPreliminaryOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconPreliminaryOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconPreliminaryOutlinedFilled as default } +export default IconPreliminaryOutlinedFilled diff --git a/src/IconPreliminaryRounded.tsx b/src/IconPreliminaryRounded.tsx index 36e218004..f3ea5dd0b 100644 --- a/src/IconPreliminaryRounded.tsx +++ b/src/IconPreliminaryRounded.tsx @@ -8,4 +8,4 @@ const IconPreliminaryRounded: React.FC = ({ ...props }) => ( ) -export { IconPreliminaryRounded as default } +export default IconPreliminaryRounded diff --git a/src/IconPreliminaryRoundedFilled.tsx b/src/IconPreliminaryRoundedFilled.tsx index 4aa3d7058..377d23ae8 100644 --- a/src/IconPreliminaryRoundedFilled.tsx +++ b/src/IconPreliminaryRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconPreliminaryRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconPreliminaryRoundedFilled as default } +export default IconPreliminaryRoundedFilled diff --git a/src/IconPreliminarySharp.tsx b/src/IconPreliminarySharp.tsx index 63981ac8e..79243da43 100644 --- a/src/IconPreliminarySharp.tsx +++ b/src/IconPreliminarySharp.tsx @@ -8,4 +8,4 @@ const IconPreliminarySharp: React.FC = ({ ...props }) => ( ) -export { IconPreliminarySharp as default } +export default IconPreliminarySharp diff --git a/src/IconPreliminarySharpFilled.tsx b/src/IconPreliminarySharpFilled.tsx index 27ad207f3..fd43362ed 100644 --- a/src/IconPreliminarySharpFilled.tsx +++ b/src/IconPreliminarySharpFilled.tsx @@ -8,4 +8,4 @@ const IconPreliminarySharpFilled: React.FC = ({ ...props }) => ( ) -export { IconPreliminarySharpFilled as default } +export default IconPreliminarySharpFilled diff --git a/src/IconPrescriptionsOutlined.tsx b/src/IconPrescriptionsOutlined.tsx index 308342316..66e78ed2b 100644 --- a/src/IconPrescriptionsOutlined.tsx +++ b/src/IconPrescriptionsOutlined.tsx @@ -8,4 +8,4 @@ const IconPrescriptionsOutlined: React.FC = ({ ...props }) => ( ) -export { IconPrescriptionsOutlined as default } +export default IconPrescriptionsOutlined diff --git a/src/IconPrescriptionsOutlinedFilled.tsx b/src/IconPrescriptionsOutlinedFilled.tsx index 4ed4f3297..5db937128 100644 --- a/src/IconPrescriptionsOutlinedFilled.tsx +++ b/src/IconPrescriptionsOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconPrescriptionsOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconPrescriptionsOutlinedFilled as default } +export default IconPrescriptionsOutlinedFilled diff --git a/src/IconPrescriptionsRounded.tsx b/src/IconPrescriptionsRounded.tsx index 3c6cf907d..66616458a 100644 --- a/src/IconPrescriptionsRounded.tsx +++ b/src/IconPrescriptionsRounded.tsx @@ -8,4 +8,4 @@ const IconPrescriptionsRounded: React.FC = ({ ...props }) => ( ) -export { IconPrescriptionsRounded as default } +export default IconPrescriptionsRounded diff --git a/src/IconPrescriptionsRoundedFilled.tsx b/src/IconPrescriptionsRoundedFilled.tsx index 680e83dbb..c49e5d697 100644 --- a/src/IconPrescriptionsRoundedFilled.tsx +++ b/src/IconPrescriptionsRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconPrescriptionsRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconPrescriptionsRoundedFilled as default } +export default IconPrescriptionsRoundedFilled diff --git a/src/IconPrescriptionsSharp.tsx b/src/IconPrescriptionsSharp.tsx index 33a898812..e9776d835 100644 --- a/src/IconPrescriptionsSharp.tsx +++ b/src/IconPrescriptionsSharp.tsx @@ -8,4 +8,4 @@ const IconPrescriptionsSharp: React.FC = ({ ...props }) => ( ) -export { IconPrescriptionsSharp as default } +export default IconPrescriptionsSharp diff --git a/src/IconPrescriptionsSharpFilled.tsx b/src/IconPrescriptionsSharpFilled.tsx index faf8d1bf3..cbbc4da08 100644 --- a/src/IconPrescriptionsSharpFilled.tsx +++ b/src/IconPrescriptionsSharpFilled.tsx @@ -8,4 +8,4 @@ const IconPrescriptionsSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconPrescriptionsSharpFilled as default } +export default IconPrescriptionsSharpFilled diff --git a/src/IconPresentToAllOutlined.tsx b/src/IconPresentToAllOutlined.tsx index 77249e574..60292f2bb 100644 --- a/src/IconPresentToAllOutlined.tsx +++ b/src/IconPresentToAllOutlined.tsx @@ -8,4 +8,4 @@ const IconPresentToAllOutlined: React.FC = ({ ...props }) => ( ) -export { IconPresentToAllOutlined as default } +export default IconPresentToAllOutlined diff --git a/src/IconPresentToAllOutlinedFilled.tsx b/src/IconPresentToAllOutlinedFilled.tsx index 7ba481080..6b4b228cb 100644 --- a/src/IconPresentToAllOutlinedFilled.tsx +++ b/src/IconPresentToAllOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconPresentToAllOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconPresentToAllOutlinedFilled as default } +export default IconPresentToAllOutlinedFilled diff --git a/src/IconPresentToAllRounded.tsx b/src/IconPresentToAllRounded.tsx index 1b0e8221e..d52d6fb86 100644 --- a/src/IconPresentToAllRounded.tsx +++ b/src/IconPresentToAllRounded.tsx @@ -8,4 +8,4 @@ const IconPresentToAllRounded: React.FC = ({ ...props }) => ( ) -export { IconPresentToAllRounded as default } +export default IconPresentToAllRounded diff --git a/src/IconPresentToAllRoundedFilled.tsx b/src/IconPresentToAllRoundedFilled.tsx index abc7cc41c..a96481a56 100644 --- a/src/IconPresentToAllRoundedFilled.tsx +++ b/src/IconPresentToAllRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconPresentToAllRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconPresentToAllRoundedFilled as default } +export default IconPresentToAllRoundedFilled diff --git a/src/IconPresentToAllSharp.tsx b/src/IconPresentToAllSharp.tsx index 6553233cb..a2c265b57 100644 --- a/src/IconPresentToAllSharp.tsx +++ b/src/IconPresentToAllSharp.tsx @@ -8,4 +8,4 @@ const IconPresentToAllSharp: React.FC = ({ ...props }) => ( ) -export { IconPresentToAllSharp as default } +export default IconPresentToAllSharp diff --git a/src/IconPresentToAllSharpFilled.tsx b/src/IconPresentToAllSharpFilled.tsx index 5728ab07b..6ae1d02d1 100644 --- a/src/IconPresentToAllSharpFilled.tsx +++ b/src/IconPresentToAllSharpFilled.tsx @@ -8,4 +8,4 @@ const IconPresentToAllSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconPresentToAllSharpFilled as default } +export default IconPresentToAllSharpFilled diff --git a/src/IconPreviewOffOutlined.tsx b/src/IconPreviewOffOutlined.tsx index 0b1fecbbd..9a04b4ef0 100644 --- a/src/IconPreviewOffOutlined.tsx +++ b/src/IconPreviewOffOutlined.tsx @@ -8,4 +8,4 @@ const IconPreviewOffOutlined: React.FC = ({ ...props }) => ( ) -export { IconPreviewOffOutlined as default } +export default IconPreviewOffOutlined diff --git a/src/IconPreviewOffOutlinedFilled.tsx b/src/IconPreviewOffOutlinedFilled.tsx index 42ef976da..a89a997f9 100644 --- a/src/IconPreviewOffOutlinedFilled.tsx +++ b/src/IconPreviewOffOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconPreviewOffOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconPreviewOffOutlinedFilled as default } +export default IconPreviewOffOutlinedFilled diff --git a/src/IconPreviewOffRounded.tsx b/src/IconPreviewOffRounded.tsx index 9f3742b88..d8be0ddb8 100644 --- a/src/IconPreviewOffRounded.tsx +++ b/src/IconPreviewOffRounded.tsx @@ -8,4 +8,4 @@ const IconPreviewOffRounded: React.FC = ({ ...props }) => ( ) -export { IconPreviewOffRounded as default } +export default IconPreviewOffRounded diff --git a/src/IconPreviewOffRoundedFilled.tsx b/src/IconPreviewOffRoundedFilled.tsx index 13abf0b5a..3a1104a2c 100644 --- a/src/IconPreviewOffRoundedFilled.tsx +++ b/src/IconPreviewOffRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconPreviewOffRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconPreviewOffRoundedFilled as default } +export default IconPreviewOffRoundedFilled diff --git a/src/IconPreviewOffSharp.tsx b/src/IconPreviewOffSharp.tsx index 5d44cd120..0d3c675e2 100644 --- a/src/IconPreviewOffSharp.tsx +++ b/src/IconPreviewOffSharp.tsx @@ -8,4 +8,4 @@ const IconPreviewOffSharp: React.FC = ({ ...props }) => ( ) -export { IconPreviewOffSharp as default } +export default IconPreviewOffSharp diff --git a/src/IconPreviewOffSharpFilled.tsx b/src/IconPreviewOffSharpFilled.tsx index 220480a1c..4c9245893 100644 --- a/src/IconPreviewOffSharpFilled.tsx +++ b/src/IconPreviewOffSharpFilled.tsx @@ -8,4 +8,4 @@ const IconPreviewOffSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconPreviewOffSharpFilled as default } +export default IconPreviewOffSharpFilled diff --git a/src/IconPreviewOutlined.tsx b/src/IconPreviewOutlined.tsx index e127bd5b9..a65ef71bf 100644 --- a/src/IconPreviewOutlined.tsx +++ b/src/IconPreviewOutlined.tsx @@ -8,4 +8,4 @@ const IconPreviewOutlined: React.FC = ({ ...props }) => ( ) -export { IconPreviewOutlined as default } +export default IconPreviewOutlined diff --git a/src/IconPreviewOutlinedFilled.tsx b/src/IconPreviewOutlinedFilled.tsx index aa9e2130b..5c5a40060 100644 --- a/src/IconPreviewOutlinedFilled.tsx +++ b/src/IconPreviewOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconPreviewOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconPreviewOutlinedFilled as default } +export default IconPreviewOutlinedFilled diff --git a/src/IconPreviewRounded.tsx b/src/IconPreviewRounded.tsx index 210111406..267cb630a 100644 --- a/src/IconPreviewRounded.tsx +++ b/src/IconPreviewRounded.tsx @@ -8,4 +8,4 @@ const IconPreviewRounded: React.FC = ({ ...props }) => ( ) -export { IconPreviewRounded as default } +export default IconPreviewRounded diff --git a/src/IconPreviewRoundedFilled.tsx b/src/IconPreviewRoundedFilled.tsx index 1df60cb63..e2c4516ba 100644 --- a/src/IconPreviewRoundedFilled.tsx +++ b/src/IconPreviewRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconPreviewRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconPreviewRoundedFilled as default } +export default IconPreviewRoundedFilled diff --git a/src/IconPreviewSharp.tsx b/src/IconPreviewSharp.tsx index 36fe7e549..771e8e38e 100644 --- a/src/IconPreviewSharp.tsx +++ b/src/IconPreviewSharp.tsx @@ -8,4 +8,4 @@ const IconPreviewSharp: React.FC = ({ ...props }) => ( ) -export { IconPreviewSharp as default } +export default IconPreviewSharp diff --git a/src/IconPreviewSharpFilled.tsx b/src/IconPreviewSharpFilled.tsx index b3febfb99..1e91c4612 100644 --- a/src/IconPreviewSharpFilled.tsx +++ b/src/IconPreviewSharpFilled.tsx @@ -8,4 +8,4 @@ const IconPreviewSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconPreviewSharpFilled as default } +export default IconPreviewSharpFilled diff --git a/src/IconPriceChangeOutlined.tsx b/src/IconPriceChangeOutlined.tsx index 447256a57..bbe7d578e 100644 --- a/src/IconPriceChangeOutlined.tsx +++ b/src/IconPriceChangeOutlined.tsx @@ -8,4 +8,4 @@ const IconPriceChangeOutlined: React.FC = ({ ...props }) => ( ) -export { IconPriceChangeOutlined as default } +export default IconPriceChangeOutlined diff --git a/src/IconPriceChangeOutlinedFilled.tsx b/src/IconPriceChangeOutlinedFilled.tsx index 02ae9b17a..7df50b930 100644 --- a/src/IconPriceChangeOutlinedFilled.tsx +++ b/src/IconPriceChangeOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconPriceChangeOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconPriceChangeOutlinedFilled as default } +export default IconPriceChangeOutlinedFilled diff --git a/src/IconPriceChangeRounded.tsx b/src/IconPriceChangeRounded.tsx index 21bd97423..d2002f155 100644 --- a/src/IconPriceChangeRounded.tsx +++ b/src/IconPriceChangeRounded.tsx @@ -8,4 +8,4 @@ const IconPriceChangeRounded: React.FC = ({ ...props }) => ( ) -export { IconPriceChangeRounded as default } +export default IconPriceChangeRounded diff --git a/src/IconPriceChangeRoundedFilled.tsx b/src/IconPriceChangeRoundedFilled.tsx index cf188ba51..397168078 100644 --- a/src/IconPriceChangeRoundedFilled.tsx +++ b/src/IconPriceChangeRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconPriceChangeRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconPriceChangeRoundedFilled as default } +export default IconPriceChangeRoundedFilled diff --git a/src/IconPriceChangeSharp.tsx b/src/IconPriceChangeSharp.tsx index a87799d56..fe05a7eca 100644 --- a/src/IconPriceChangeSharp.tsx +++ b/src/IconPriceChangeSharp.tsx @@ -8,4 +8,4 @@ const IconPriceChangeSharp: React.FC = ({ ...props }) => ( ) -export { IconPriceChangeSharp as default } +export default IconPriceChangeSharp diff --git a/src/IconPriceChangeSharpFilled.tsx b/src/IconPriceChangeSharpFilled.tsx index ae0ff349a..c32aebffc 100644 --- a/src/IconPriceChangeSharpFilled.tsx +++ b/src/IconPriceChangeSharpFilled.tsx @@ -8,4 +8,4 @@ const IconPriceChangeSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconPriceChangeSharpFilled as default } +export default IconPriceChangeSharpFilled diff --git a/src/IconPriceCheckOutlined.tsx b/src/IconPriceCheckOutlined.tsx index e8a6d9387..00aa0132f 100644 --- a/src/IconPriceCheckOutlined.tsx +++ b/src/IconPriceCheckOutlined.tsx @@ -8,4 +8,4 @@ const IconPriceCheckOutlined: React.FC = ({ ...props }) => ( ) -export { IconPriceCheckOutlined as default } +export default IconPriceCheckOutlined diff --git a/src/IconPriceCheckOutlinedFilled.tsx b/src/IconPriceCheckOutlinedFilled.tsx index 5dc8a5fcb..8dec4fa97 100644 --- a/src/IconPriceCheckOutlinedFilled.tsx +++ b/src/IconPriceCheckOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconPriceCheckOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconPriceCheckOutlinedFilled as default } +export default IconPriceCheckOutlinedFilled diff --git a/src/IconPriceCheckRounded.tsx b/src/IconPriceCheckRounded.tsx index a071d3392..ee9ec2438 100644 --- a/src/IconPriceCheckRounded.tsx +++ b/src/IconPriceCheckRounded.tsx @@ -8,4 +8,4 @@ const IconPriceCheckRounded: React.FC = ({ ...props }) => ( ) -export { IconPriceCheckRounded as default } +export default IconPriceCheckRounded diff --git a/src/IconPriceCheckRoundedFilled.tsx b/src/IconPriceCheckRoundedFilled.tsx index 7fafa33f2..5855ffb70 100644 --- a/src/IconPriceCheckRoundedFilled.tsx +++ b/src/IconPriceCheckRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconPriceCheckRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconPriceCheckRoundedFilled as default } +export default IconPriceCheckRoundedFilled diff --git a/src/IconPriceCheckSharp.tsx b/src/IconPriceCheckSharp.tsx index 89ea215f3..8663e3503 100644 --- a/src/IconPriceCheckSharp.tsx +++ b/src/IconPriceCheckSharp.tsx @@ -8,4 +8,4 @@ const IconPriceCheckSharp: React.FC = ({ ...props }) => ( ) -export { IconPriceCheckSharp as default } +export default IconPriceCheckSharp diff --git a/src/IconPriceCheckSharpFilled.tsx b/src/IconPriceCheckSharpFilled.tsx index 0d942aa87..63c41de88 100644 --- a/src/IconPriceCheckSharpFilled.tsx +++ b/src/IconPriceCheckSharpFilled.tsx @@ -8,4 +8,4 @@ const IconPriceCheckSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconPriceCheckSharpFilled as default } +export default IconPriceCheckSharpFilled diff --git a/src/IconPrintAddOutlined.tsx b/src/IconPrintAddOutlined.tsx index b34caec03..a4cc594a7 100644 --- a/src/IconPrintAddOutlined.tsx +++ b/src/IconPrintAddOutlined.tsx @@ -8,4 +8,4 @@ const IconPrintAddOutlined: React.FC = ({ ...props }) => ( ) -export { IconPrintAddOutlined as default } +export default IconPrintAddOutlined diff --git a/src/IconPrintAddOutlinedFilled.tsx b/src/IconPrintAddOutlinedFilled.tsx index 264e2b6f7..4adea3058 100644 --- a/src/IconPrintAddOutlinedFilled.tsx +++ b/src/IconPrintAddOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconPrintAddOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconPrintAddOutlinedFilled as default } +export default IconPrintAddOutlinedFilled diff --git a/src/IconPrintAddRounded.tsx b/src/IconPrintAddRounded.tsx index 09e2bb2bb..05b3be055 100644 --- a/src/IconPrintAddRounded.tsx +++ b/src/IconPrintAddRounded.tsx @@ -8,4 +8,4 @@ const IconPrintAddRounded: React.FC = ({ ...props }) => ( ) -export { IconPrintAddRounded as default } +export default IconPrintAddRounded diff --git a/src/IconPrintAddRoundedFilled.tsx b/src/IconPrintAddRoundedFilled.tsx index eda6d4761..63ae48ad8 100644 --- a/src/IconPrintAddRoundedFilled.tsx +++ b/src/IconPrintAddRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconPrintAddRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconPrintAddRoundedFilled as default } +export default IconPrintAddRoundedFilled diff --git a/src/IconPrintAddSharp.tsx b/src/IconPrintAddSharp.tsx index d583a2edf..454186f65 100644 --- a/src/IconPrintAddSharp.tsx +++ b/src/IconPrintAddSharp.tsx @@ -8,4 +8,4 @@ const IconPrintAddSharp: React.FC = ({ ...props }) => ( ) -export { IconPrintAddSharp as default } +export default IconPrintAddSharp diff --git a/src/IconPrintAddSharpFilled.tsx b/src/IconPrintAddSharpFilled.tsx index a104b211d..007a6af55 100644 --- a/src/IconPrintAddSharpFilled.tsx +++ b/src/IconPrintAddSharpFilled.tsx @@ -8,4 +8,4 @@ const IconPrintAddSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconPrintAddSharpFilled as default } +export default IconPrintAddSharpFilled diff --git a/src/IconPrintConnectOutlined.tsx b/src/IconPrintConnectOutlined.tsx index 33c34caa8..b0e9671a3 100644 --- a/src/IconPrintConnectOutlined.tsx +++ b/src/IconPrintConnectOutlined.tsx @@ -8,4 +8,4 @@ const IconPrintConnectOutlined: React.FC = ({ ...props }) => ( ) -export { IconPrintConnectOutlined as default } +export default IconPrintConnectOutlined diff --git a/src/IconPrintConnectOutlinedFilled.tsx b/src/IconPrintConnectOutlinedFilled.tsx index 6b15ef461..390f7e939 100644 --- a/src/IconPrintConnectOutlinedFilled.tsx +++ b/src/IconPrintConnectOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconPrintConnectOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconPrintConnectOutlinedFilled as default } +export default IconPrintConnectOutlinedFilled diff --git a/src/IconPrintConnectRounded.tsx b/src/IconPrintConnectRounded.tsx index 6364101d4..5f091d12e 100644 --- a/src/IconPrintConnectRounded.tsx +++ b/src/IconPrintConnectRounded.tsx @@ -8,4 +8,4 @@ const IconPrintConnectRounded: React.FC = ({ ...props }) => ( ) -export { IconPrintConnectRounded as default } +export default IconPrintConnectRounded diff --git a/src/IconPrintConnectRoundedFilled.tsx b/src/IconPrintConnectRoundedFilled.tsx index e5d01c579..2987bdd64 100644 --- a/src/IconPrintConnectRoundedFilled.tsx +++ b/src/IconPrintConnectRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconPrintConnectRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconPrintConnectRoundedFilled as default } +export default IconPrintConnectRoundedFilled diff --git a/src/IconPrintConnectSharp.tsx b/src/IconPrintConnectSharp.tsx index 06240fd3e..e265de785 100644 --- a/src/IconPrintConnectSharp.tsx +++ b/src/IconPrintConnectSharp.tsx @@ -8,4 +8,4 @@ const IconPrintConnectSharp: React.FC = ({ ...props }) => ( ) -export { IconPrintConnectSharp as default } +export default IconPrintConnectSharp diff --git a/src/IconPrintConnectSharpFilled.tsx b/src/IconPrintConnectSharpFilled.tsx index 70544f07a..dc5719df5 100644 --- a/src/IconPrintConnectSharpFilled.tsx +++ b/src/IconPrintConnectSharpFilled.tsx @@ -8,4 +8,4 @@ const IconPrintConnectSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconPrintConnectSharpFilled as default } +export default IconPrintConnectSharpFilled diff --git a/src/IconPrintDisabledOutlined.tsx b/src/IconPrintDisabledOutlined.tsx index b71de6dfd..de6eb48c1 100644 --- a/src/IconPrintDisabledOutlined.tsx +++ b/src/IconPrintDisabledOutlined.tsx @@ -8,4 +8,4 @@ const IconPrintDisabledOutlined: React.FC = ({ ...props }) => ( ) -export { IconPrintDisabledOutlined as default } +export default IconPrintDisabledOutlined diff --git a/src/IconPrintDisabledOutlinedFilled.tsx b/src/IconPrintDisabledOutlinedFilled.tsx index 7f14ac077..5f878ae7d 100644 --- a/src/IconPrintDisabledOutlinedFilled.tsx +++ b/src/IconPrintDisabledOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconPrintDisabledOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconPrintDisabledOutlinedFilled as default } +export default IconPrintDisabledOutlinedFilled diff --git a/src/IconPrintDisabledRounded.tsx b/src/IconPrintDisabledRounded.tsx index 5d04b52bd..1f9e778b5 100644 --- a/src/IconPrintDisabledRounded.tsx +++ b/src/IconPrintDisabledRounded.tsx @@ -8,4 +8,4 @@ const IconPrintDisabledRounded: React.FC = ({ ...props }) => ( ) -export { IconPrintDisabledRounded as default } +export default IconPrintDisabledRounded diff --git a/src/IconPrintDisabledRoundedFilled.tsx b/src/IconPrintDisabledRoundedFilled.tsx index 1e0964de2..e62322717 100644 --- a/src/IconPrintDisabledRoundedFilled.tsx +++ b/src/IconPrintDisabledRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconPrintDisabledRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconPrintDisabledRoundedFilled as default } +export default IconPrintDisabledRoundedFilled diff --git a/src/IconPrintDisabledSharp.tsx b/src/IconPrintDisabledSharp.tsx index c29e92222..a62f81867 100644 --- a/src/IconPrintDisabledSharp.tsx +++ b/src/IconPrintDisabledSharp.tsx @@ -8,4 +8,4 @@ const IconPrintDisabledSharp: React.FC = ({ ...props }) => ( ) -export { IconPrintDisabledSharp as default } +export default IconPrintDisabledSharp diff --git a/src/IconPrintDisabledSharpFilled.tsx b/src/IconPrintDisabledSharpFilled.tsx index fcc607a05..620f15243 100644 --- a/src/IconPrintDisabledSharpFilled.tsx +++ b/src/IconPrintDisabledSharpFilled.tsx @@ -8,4 +8,4 @@ const IconPrintDisabledSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconPrintDisabledSharpFilled as default } +export default IconPrintDisabledSharpFilled diff --git a/src/IconPrintErrorOutlined.tsx b/src/IconPrintErrorOutlined.tsx index 73457963c..946f8fa47 100644 --- a/src/IconPrintErrorOutlined.tsx +++ b/src/IconPrintErrorOutlined.tsx @@ -8,4 +8,4 @@ const IconPrintErrorOutlined: React.FC = ({ ...props }) => ( ) -export { IconPrintErrorOutlined as default } +export default IconPrintErrorOutlined diff --git a/src/IconPrintErrorOutlinedFilled.tsx b/src/IconPrintErrorOutlinedFilled.tsx index d7ca6de41..55546453a 100644 --- a/src/IconPrintErrorOutlinedFilled.tsx +++ b/src/IconPrintErrorOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconPrintErrorOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconPrintErrorOutlinedFilled as default } +export default IconPrintErrorOutlinedFilled diff --git a/src/IconPrintErrorRounded.tsx b/src/IconPrintErrorRounded.tsx index eb9ee7798..6b6e2092f 100644 --- a/src/IconPrintErrorRounded.tsx +++ b/src/IconPrintErrorRounded.tsx @@ -8,4 +8,4 @@ const IconPrintErrorRounded: React.FC = ({ ...props }) => ( ) -export { IconPrintErrorRounded as default } +export default IconPrintErrorRounded diff --git a/src/IconPrintErrorRoundedFilled.tsx b/src/IconPrintErrorRoundedFilled.tsx index 1386666cb..e6bf32e66 100644 --- a/src/IconPrintErrorRoundedFilled.tsx +++ b/src/IconPrintErrorRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconPrintErrorRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconPrintErrorRoundedFilled as default } +export default IconPrintErrorRoundedFilled diff --git a/src/IconPrintErrorSharp.tsx b/src/IconPrintErrorSharp.tsx index e8a2fc55a..4feea751a 100644 --- a/src/IconPrintErrorSharp.tsx +++ b/src/IconPrintErrorSharp.tsx @@ -8,4 +8,4 @@ const IconPrintErrorSharp: React.FC = ({ ...props }) => ( ) -export { IconPrintErrorSharp as default } +export default IconPrintErrorSharp diff --git a/src/IconPrintErrorSharpFilled.tsx b/src/IconPrintErrorSharpFilled.tsx index fad18648f..f1d93a72a 100644 --- a/src/IconPrintErrorSharpFilled.tsx +++ b/src/IconPrintErrorSharpFilled.tsx @@ -8,4 +8,4 @@ const IconPrintErrorSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconPrintErrorSharpFilled as default } +export default IconPrintErrorSharpFilled diff --git a/src/IconPrintLockOutlined.tsx b/src/IconPrintLockOutlined.tsx index 18dd9e8e3..5df4ef3e3 100644 --- a/src/IconPrintLockOutlined.tsx +++ b/src/IconPrintLockOutlined.tsx @@ -8,4 +8,4 @@ const IconPrintLockOutlined: React.FC = ({ ...props }) => ( ) -export { IconPrintLockOutlined as default } +export default IconPrintLockOutlined diff --git a/src/IconPrintLockOutlinedFilled.tsx b/src/IconPrintLockOutlinedFilled.tsx index 68e12081c..036646030 100644 --- a/src/IconPrintLockOutlinedFilled.tsx +++ b/src/IconPrintLockOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconPrintLockOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconPrintLockOutlinedFilled as default } +export default IconPrintLockOutlinedFilled diff --git a/src/IconPrintLockRounded.tsx b/src/IconPrintLockRounded.tsx index c7fbcf2d7..f143014a7 100644 --- a/src/IconPrintLockRounded.tsx +++ b/src/IconPrintLockRounded.tsx @@ -8,4 +8,4 @@ const IconPrintLockRounded: React.FC = ({ ...props }) => ( ) -export { IconPrintLockRounded as default } +export default IconPrintLockRounded diff --git a/src/IconPrintLockRoundedFilled.tsx b/src/IconPrintLockRoundedFilled.tsx index b95fdc7dc..3e16053d2 100644 --- a/src/IconPrintLockRoundedFilled.tsx +++ b/src/IconPrintLockRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconPrintLockRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconPrintLockRoundedFilled as default } +export default IconPrintLockRoundedFilled diff --git a/src/IconPrintLockSharp.tsx b/src/IconPrintLockSharp.tsx index 6307edb68..393902512 100644 --- a/src/IconPrintLockSharp.tsx +++ b/src/IconPrintLockSharp.tsx @@ -8,4 +8,4 @@ const IconPrintLockSharp: React.FC = ({ ...props }) => ( ) -export { IconPrintLockSharp as default } +export default IconPrintLockSharp diff --git a/src/IconPrintLockSharpFilled.tsx b/src/IconPrintLockSharpFilled.tsx index 038ec6f5e..02a1c806a 100644 --- a/src/IconPrintLockSharpFilled.tsx +++ b/src/IconPrintLockSharpFilled.tsx @@ -8,4 +8,4 @@ const IconPrintLockSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconPrintLockSharpFilled as default } +export default IconPrintLockSharpFilled diff --git a/src/IconPrintOutlined.tsx b/src/IconPrintOutlined.tsx index 5668cc039..d14570ac4 100644 --- a/src/IconPrintOutlined.tsx +++ b/src/IconPrintOutlined.tsx @@ -8,4 +8,4 @@ const IconPrintOutlined: React.FC = ({ ...props }) => ( ) -export { IconPrintOutlined as default } +export default IconPrintOutlined diff --git a/src/IconPrintOutlinedFilled.tsx b/src/IconPrintOutlinedFilled.tsx index 908297448..fb60f06c0 100644 --- a/src/IconPrintOutlinedFilled.tsx +++ b/src/IconPrintOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconPrintOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconPrintOutlinedFilled as default } +export default IconPrintOutlinedFilled diff --git a/src/IconPrintRounded.tsx b/src/IconPrintRounded.tsx index 7e5bfdc4e..fbfa62e5c 100644 --- a/src/IconPrintRounded.tsx +++ b/src/IconPrintRounded.tsx @@ -8,4 +8,4 @@ const IconPrintRounded: React.FC = ({ ...props }) => ( ) -export { IconPrintRounded as default } +export default IconPrintRounded diff --git a/src/IconPrintRoundedFilled.tsx b/src/IconPrintRoundedFilled.tsx index 04275422b..aa5030c4c 100644 --- a/src/IconPrintRoundedFilled.tsx +++ b/src/IconPrintRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconPrintRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconPrintRoundedFilled as default } +export default IconPrintRoundedFilled diff --git a/src/IconPrintSharp.tsx b/src/IconPrintSharp.tsx index ee81f70fd..0a32cf172 100644 --- a/src/IconPrintSharp.tsx +++ b/src/IconPrintSharp.tsx @@ -8,4 +8,4 @@ const IconPrintSharp: React.FC = ({ ...props }) => ( ) -export { IconPrintSharp as default } +export default IconPrintSharp diff --git a/src/IconPrintSharpFilled.tsx b/src/IconPrintSharpFilled.tsx index 0a8dbc0fd..1903633aa 100644 --- a/src/IconPrintSharpFilled.tsx +++ b/src/IconPrintSharpFilled.tsx @@ -8,4 +8,4 @@ const IconPrintSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconPrintSharpFilled as default } +export default IconPrintSharpFilled diff --git a/src/IconPriorityHighOutlined.tsx b/src/IconPriorityHighOutlined.tsx index 72a36443e..26a75a20d 100644 --- a/src/IconPriorityHighOutlined.tsx +++ b/src/IconPriorityHighOutlined.tsx @@ -8,4 +8,4 @@ const IconPriorityHighOutlined: React.FC = ({ ...props }) => ( ) -export { IconPriorityHighOutlined as default } +export default IconPriorityHighOutlined diff --git a/src/IconPriorityHighOutlinedFilled.tsx b/src/IconPriorityHighOutlinedFilled.tsx index 63ef66145..99e59733a 100644 --- a/src/IconPriorityHighOutlinedFilled.tsx +++ b/src/IconPriorityHighOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconPriorityHighOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconPriorityHighOutlinedFilled as default } +export default IconPriorityHighOutlinedFilled diff --git a/src/IconPriorityHighRounded.tsx b/src/IconPriorityHighRounded.tsx index 497abd4ac..623b47b03 100644 --- a/src/IconPriorityHighRounded.tsx +++ b/src/IconPriorityHighRounded.tsx @@ -8,4 +8,4 @@ const IconPriorityHighRounded: React.FC = ({ ...props }) => ( ) -export { IconPriorityHighRounded as default } +export default IconPriorityHighRounded diff --git a/src/IconPriorityHighRoundedFilled.tsx b/src/IconPriorityHighRoundedFilled.tsx index b637a437e..ec5ef968f 100644 --- a/src/IconPriorityHighRoundedFilled.tsx +++ b/src/IconPriorityHighRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconPriorityHighRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconPriorityHighRoundedFilled as default } +export default IconPriorityHighRoundedFilled diff --git a/src/IconPriorityHighSharp.tsx b/src/IconPriorityHighSharp.tsx index 05afcab75..4df5e7613 100644 --- a/src/IconPriorityHighSharp.tsx +++ b/src/IconPriorityHighSharp.tsx @@ -8,4 +8,4 @@ const IconPriorityHighSharp: React.FC = ({ ...props }) => ( ) -export { IconPriorityHighSharp as default } +export default IconPriorityHighSharp diff --git a/src/IconPriorityHighSharpFilled.tsx b/src/IconPriorityHighSharpFilled.tsx index d8ecfd1a8..8716c1881 100644 --- a/src/IconPriorityHighSharpFilled.tsx +++ b/src/IconPriorityHighSharpFilled.tsx @@ -8,4 +8,4 @@ const IconPriorityHighSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconPriorityHighSharpFilled as default } +export default IconPriorityHighSharpFilled diff --git a/src/IconPriorityOutlined.tsx b/src/IconPriorityOutlined.tsx index 4382021ae..9af866a22 100644 --- a/src/IconPriorityOutlined.tsx +++ b/src/IconPriorityOutlined.tsx @@ -8,4 +8,4 @@ const IconPriorityOutlined: React.FC = ({ ...props }) => ( ) -export { IconPriorityOutlined as default } +export default IconPriorityOutlined diff --git a/src/IconPriorityOutlinedFilled.tsx b/src/IconPriorityOutlinedFilled.tsx index 5e692a65d..31e5551b1 100644 --- a/src/IconPriorityOutlinedFilled.tsx +++ b/src/IconPriorityOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconPriorityOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconPriorityOutlinedFilled as default } +export default IconPriorityOutlinedFilled diff --git a/src/IconPriorityRounded.tsx b/src/IconPriorityRounded.tsx index 78c2a6b6a..ec30dcd88 100644 --- a/src/IconPriorityRounded.tsx +++ b/src/IconPriorityRounded.tsx @@ -8,4 +8,4 @@ const IconPriorityRounded: React.FC = ({ ...props }) => ( ) -export { IconPriorityRounded as default } +export default IconPriorityRounded diff --git a/src/IconPriorityRoundedFilled.tsx b/src/IconPriorityRoundedFilled.tsx index ec2c8c2f2..c24f5a81d 100644 --- a/src/IconPriorityRoundedFilled.tsx +++ b/src/IconPriorityRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconPriorityRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconPriorityRoundedFilled as default } +export default IconPriorityRoundedFilled diff --git a/src/IconPrioritySharp.tsx b/src/IconPrioritySharp.tsx index 9315d1df1..eaa1e47bc 100644 --- a/src/IconPrioritySharp.tsx +++ b/src/IconPrioritySharp.tsx @@ -8,4 +8,4 @@ const IconPrioritySharp: React.FC = ({ ...props }) => ( ) -export { IconPrioritySharp as default } +export default IconPrioritySharp diff --git a/src/IconPrioritySharpFilled.tsx b/src/IconPrioritySharpFilled.tsx index f850410d2..4e69b2913 100644 --- a/src/IconPrioritySharpFilled.tsx +++ b/src/IconPrioritySharpFilled.tsx @@ -8,4 +8,4 @@ const IconPrioritySharpFilled: React.FC = ({ ...props }) => ( ) -export { IconPrioritySharpFilled as default } +export default IconPrioritySharpFilled diff --git a/src/IconPrivacyOutlined.tsx b/src/IconPrivacyOutlined.tsx index 2d64e444c..31da4604f 100644 --- a/src/IconPrivacyOutlined.tsx +++ b/src/IconPrivacyOutlined.tsx @@ -8,4 +8,4 @@ const IconPrivacyOutlined: React.FC = ({ ...props }) => ( ) -export { IconPrivacyOutlined as default } +export default IconPrivacyOutlined diff --git a/src/IconPrivacyOutlinedFilled.tsx b/src/IconPrivacyOutlinedFilled.tsx index 28e1050aa..9de30293a 100644 --- a/src/IconPrivacyOutlinedFilled.tsx +++ b/src/IconPrivacyOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconPrivacyOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconPrivacyOutlinedFilled as default } +export default IconPrivacyOutlinedFilled diff --git a/src/IconPrivacyRounded.tsx b/src/IconPrivacyRounded.tsx index b4f26704d..f32c050de 100644 --- a/src/IconPrivacyRounded.tsx +++ b/src/IconPrivacyRounded.tsx @@ -8,4 +8,4 @@ const IconPrivacyRounded: React.FC = ({ ...props }) => ( ) -export { IconPrivacyRounded as default } +export default IconPrivacyRounded diff --git a/src/IconPrivacyRoundedFilled.tsx b/src/IconPrivacyRoundedFilled.tsx index f3986aa59..e0b1b65ab 100644 --- a/src/IconPrivacyRoundedFilled.tsx +++ b/src/IconPrivacyRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconPrivacyRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconPrivacyRoundedFilled as default } +export default IconPrivacyRoundedFilled diff --git a/src/IconPrivacySharp.tsx b/src/IconPrivacySharp.tsx index e079aea65..347fc7473 100644 --- a/src/IconPrivacySharp.tsx +++ b/src/IconPrivacySharp.tsx @@ -8,4 +8,4 @@ const IconPrivacySharp: React.FC = ({ ...props }) => ( ) -export { IconPrivacySharp as default } +export default IconPrivacySharp diff --git a/src/IconPrivacySharpFilled.tsx b/src/IconPrivacySharpFilled.tsx index 75c38851e..46b243073 100644 --- a/src/IconPrivacySharpFilled.tsx +++ b/src/IconPrivacySharpFilled.tsx @@ -8,4 +8,4 @@ const IconPrivacySharpFilled: React.FC = ({ ...props }) => ( ) -export { IconPrivacySharpFilled as default } +export default IconPrivacySharpFilled diff --git a/src/IconPrivacyTipOutlined.tsx b/src/IconPrivacyTipOutlined.tsx index 33981b019..72f9d47ff 100644 --- a/src/IconPrivacyTipOutlined.tsx +++ b/src/IconPrivacyTipOutlined.tsx @@ -8,4 +8,4 @@ const IconPrivacyTipOutlined: React.FC = ({ ...props }) => ( ) -export { IconPrivacyTipOutlined as default } +export default IconPrivacyTipOutlined diff --git a/src/IconPrivacyTipOutlinedFilled.tsx b/src/IconPrivacyTipOutlinedFilled.tsx index 95e50850b..b4be11c38 100644 --- a/src/IconPrivacyTipOutlinedFilled.tsx +++ b/src/IconPrivacyTipOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconPrivacyTipOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconPrivacyTipOutlinedFilled as default } +export default IconPrivacyTipOutlinedFilled diff --git a/src/IconPrivacyTipRounded.tsx b/src/IconPrivacyTipRounded.tsx index 7a5eb210c..202292f00 100644 --- a/src/IconPrivacyTipRounded.tsx +++ b/src/IconPrivacyTipRounded.tsx @@ -8,4 +8,4 @@ const IconPrivacyTipRounded: React.FC = ({ ...props }) => ( ) -export { IconPrivacyTipRounded as default } +export default IconPrivacyTipRounded diff --git a/src/IconPrivacyTipRoundedFilled.tsx b/src/IconPrivacyTipRoundedFilled.tsx index 2aff609a7..2b53d17e3 100644 --- a/src/IconPrivacyTipRoundedFilled.tsx +++ b/src/IconPrivacyTipRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconPrivacyTipRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconPrivacyTipRoundedFilled as default } +export default IconPrivacyTipRoundedFilled diff --git a/src/IconPrivacyTipSharp.tsx b/src/IconPrivacyTipSharp.tsx index ae12b8582..cea235837 100644 --- a/src/IconPrivacyTipSharp.tsx +++ b/src/IconPrivacyTipSharp.tsx @@ -8,4 +8,4 @@ const IconPrivacyTipSharp: React.FC = ({ ...props }) => ( ) -export { IconPrivacyTipSharp as default } +export default IconPrivacyTipSharp diff --git a/src/IconPrivacyTipSharpFilled.tsx b/src/IconPrivacyTipSharpFilled.tsx index 6de9da45e..ddbb1eae1 100644 --- a/src/IconPrivacyTipSharpFilled.tsx +++ b/src/IconPrivacyTipSharpFilled.tsx @@ -8,4 +8,4 @@ const IconPrivacyTipSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconPrivacyTipSharpFilled as default } +export default IconPrivacyTipSharpFilled diff --git a/src/IconPrivateConnectivityOutlined.tsx b/src/IconPrivateConnectivityOutlined.tsx index 2839f8f53..b3472975b 100644 --- a/src/IconPrivateConnectivityOutlined.tsx +++ b/src/IconPrivateConnectivityOutlined.tsx @@ -8,4 +8,4 @@ const IconPrivateConnectivityOutlined: React.FC = ({ ...props }) => ( ) -export { IconPrivateConnectivityOutlined as default } +export default IconPrivateConnectivityOutlined diff --git a/src/IconPrivateConnectivityOutlinedFilled.tsx b/src/IconPrivateConnectivityOutlinedFilled.tsx index 2b518e283..445fccaed 100644 --- a/src/IconPrivateConnectivityOutlinedFilled.tsx +++ b/src/IconPrivateConnectivityOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconPrivateConnectivityOutlinedFilled: React.FC = ({ ) -export { IconPrivateConnectivityOutlinedFilled as default } +export default IconPrivateConnectivityOutlinedFilled diff --git a/src/IconPrivateConnectivityRounded.tsx b/src/IconPrivateConnectivityRounded.tsx index 389cc27a9..ecdfe927d 100644 --- a/src/IconPrivateConnectivityRounded.tsx +++ b/src/IconPrivateConnectivityRounded.tsx @@ -8,4 +8,4 @@ const IconPrivateConnectivityRounded: React.FC = ({ ...props }) => ( ) -export { IconPrivateConnectivityRounded as default } +export default IconPrivateConnectivityRounded diff --git a/src/IconPrivateConnectivityRoundedFilled.tsx b/src/IconPrivateConnectivityRoundedFilled.tsx index 9149144e5..ab74f301c 100644 --- a/src/IconPrivateConnectivityRoundedFilled.tsx +++ b/src/IconPrivateConnectivityRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconPrivateConnectivityRoundedFilled: React.FC = ({ ) -export { IconPrivateConnectivityRoundedFilled as default } +export default IconPrivateConnectivityRoundedFilled diff --git a/src/IconPrivateConnectivitySharp.tsx b/src/IconPrivateConnectivitySharp.tsx index 8cc04ec25..4e1131d64 100644 --- a/src/IconPrivateConnectivitySharp.tsx +++ b/src/IconPrivateConnectivitySharp.tsx @@ -8,4 +8,4 @@ const IconPrivateConnectivitySharp: React.FC = ({ ...props }) => ( ) -export { IconPrivateConnectivitySharp as default } +export default IconPrivateConnectivitySharp diff --git a/src/IconPrivateConnectivitySharpFilled.tsx b/src/IconPrivateConnectivitySharpFilled.tsx index 8aa446ff9..e054c536e 100644 --- a/src/IconPrivateConnectivitySharpFilled.tsx +++ b/src/IconPrivateConnectivitySharpFilled.tsx @@ -10,4 +10,4 @@ const IconPrivateConnectivitySharpFilled: React.FC = ({ ) -export { IconPrivateConnectivitySharpFilled as default } +export default IconPrivateConnectivitySharpFilled diff --git a/src/IconProblemOutlined.tsx b/src/IconProblemOutlined.tsx index e7719f7e8..fea5c087f 100644 --- a/src/IconProblemOutlined.tsx +++ b/src/IconProblemOutlined.tsx @@ -8,4 +8,4 @@ const IconProblemOutlined: React.FC = ({ ...props }) => ( ) -export { IconProblemOutlined as default } +export default IconProblemOutlined diff --git a/src/IconProblemOutlinedFilled.tsx b/src/IconProblemOutlinedFilled.tsx index ca4b8c8df..3e152b180 100644 --- a/src/IconProblemOutlinedFilled.tsx +++ b/src/IconProblemOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconProblemOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconProblemOutlinedFilled as default } +export default IconProblemOutlinedFilled diff --git a/src/IconProblemRounded.tsx b/src/IconProblemRounded.tsx index 1ea58be47..8df7879da 100644 --- a/src/IconProblemRounded.tsx +++ b/src/IconProblemRounded.tsx @@ -8,4 +8,4 @@ const IconProblemRounded: React.FC = ({ ...props }) => ( ) -export { IconProblemRounded as default } +export default IconProblemRounded diff --git a/src/IconProblemRoundedFilled.tsx b/src/IconProblemRoundedFilled.tsx index 036eea4d5..3ebcb147c 100644 --- a/src/IconProblemRoundedFilled.tsx +++ b/src/IconProblemRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconProblemRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconProblemRoundedFilled as default } +export default IconProblemRoundedFilled diff --git a/src/IconProblemSharp.tsx b/src/IconProblemSharp.tsx index 370a37188..665493921 100644 --- a/src/IconProblemSharp.tsx +++ b/src/IconProblemSharp.tsx @@ -8,4 +8,4 @@ const IconProblemSharp: React.FC = ({ ...props }) => ( ) -export { IconProblemSharp as default } +export default IconProblemSharp diff --git a/src/IconProblemSharpFilled.tsx b/src/IconProblemSharpFilled.tsx index aaa6d8db9..1e4e6cae8 100644 --- a/src/IconProblemSharpFilled.tsx +++ b/src/IconProblemSharpFilled.tsx @@ -8,4 +8,4 @@ const IconProblemSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconProblemSharpFilled as default } +export default IconProblemSharpFilled diff --git a/src/IconProcedureOutlined.tsx b/src/IconProcedureOutlined.tsx index 5b30b23d5..324a83d99 100644 --- a/src/IconProcedureOutlined.tsx +++ b/src/IconProcedureOutlined.tsx @@ -8,4 +8,4 @@ const IconProcedureOutlined: React.FC = ({ ...props }) => ( ) -export { IconProcedureOutlined as default } +export default IconProcedureOutlined diff --git a/src/IconProcedureOutlinedFilled.tsx b/src/IconProcedureOutlinedFilled.tsx index 4a97ecfca..ff96cf7c9 100644 --- a/src/IconProcedureOutlinedFilled.tsx +++ b/src/IconProcedureOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconProcedureOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconProcedureOutlinedFilled as default } +export default IconProcedureOutlinedFilled diff --git a/src/IconProcedureRounded.tsx b/src/IconProcedureRounded.tsx index 70c1ac8b4..045601410 100644 --- a/src/IconProcedureRounded.tsx +++ b/src/IconProcedureRounded.tsx @@ -8,4 +8,4 @@ const IconProcedureRounded: React.FC = ({ ...props }) => ( ) -export { IconProcedureRounded as default } +export default IconProcedureRounded diff --git a/src/IconProcedureRoundedFilled.tsx b/src/IconProcedureRoundedFilled.tsx index a76e266a8..904c09ac3 100644 --- a/src/IconProcedureRoundedFilled.tsx +++ b/src/IconProcedureRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconProcedureRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconProcedureRoundedFilled as default } +export default IconProcedureRoundedFilled diff --git a/src/IconProcedureSharp.tsx b/src/IconProcedureSharp.tsx index 5d990df45..9629fdbc7 100644 --- a/src/IconProcedureSharp.tsx +++ b/src/IconProcedureSharp.tsx @@ -8,4 +8,4 @@ const IconProcedureSharp: React.FC = ({ ...props }) => ( ) -export { IconProcedureSharp as default } +export default IconProcedureSharp diff --git a/src/IconProcedureSharpFilled.tsx b/src/IconProcedureSharpFilled.tsx index 2bdd262f1..ae2d04b10 100644 --- a/src/IconProcedureSharpFilled.tsx +++ b/src/IconProcedureSharpFilled.tsx @@ -8,4 +8,4 @@ const IconProcedureSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconProcedureSharpFilled as default } +export default IconProcedureSharpFilled diff --git a/src/IconProcessChartOutlined.tsx b/src/IconProcessChartOutlined.tsx index 3c132d5c7..9dae50fe6 100644 --- a/src/IconProcessChartOutlined.tsx +++ b/src/IconProcessChartOutlined.tsx @@ -8,4 +8,4 @@ const IconProcessChartOutlined: React.FC = ({ ...props }) => ( ) -export { IconProcessChartOutlined as default } +export default IconProcessChartOutlined diff --git a/src/IconProcessChartOutlinedFilled.tsx b/src/IconProcessChartOutlinedFilled.tsx index effbea18d..e39d02823 100644 --- a/src/IconProcessChartOutlinedFilled.tsx +++ b/src/IconProcessChartOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconProcessChartOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconProcessChartOutlinedFilled as default } +export default IconProcessChartOutlinedFilled diff --git a/src/IconProcessChartRounded.tsx b/src/IconProcessChartRounded.tsx index a448d7172..d8707873e 100644 --- a/src/IconProcessChartRounded.tsx +++ b/src/IconProcessChartRounded.tsx @@ -8,4 +8,4 @@ const IconProcessChartRounded: React.FC = ({ ...props }) => ( ) -export { IconProcessChartRounded as default } +export default IconProcessChartRounded diff --git a/src/IconProcessChartRoundedFilled.tsx b/src/IconProcessChartRoundedFilled.tsx index db0dc380b..13be0e9a6 100644 --- a/src/IconProcessChartRoundedFilled.tsx +++ b/src/IconProcessChartRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconProcessChartRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconProcessChartRoundedFilled as default } +export default IconProcessChartRoundedFilled diff --git a/src/IconProcessChartSharp.tsx b/src/IconProcessChartSharp.tsx index 9991a57c2..e06df6abc 100644 --- a/src/IconProcessChartSharp.tsx +++ b/src/IconProcessChartSharp.tsx @@ -8,4 +8,4 @@ const IconProcessChartSharp: React.FC = ({ ...props }) => ( ) -export { IconProcessChartSharp as default } +export default IconProcessChartSharp diff --git a/src/IconProcessChartSharpFilled.tsx b/src/IconProcessChartSharpFilled.tsx index 7bac165da..97e4a01f5 100644 --- a/src/IconProcessChartSharpFilled.tsx +++ b/src/IconProcessChartSharpFilled.tsx @@ -8,4 +8,4 @@ const IconProcessChartSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconProcessChartSharpFilled as default } +export default IconProcessChartSharpFilled diff --git a/src/IconProductionQuantityLimitsOutlined.tsx b/src/IconProductionQuantityLimitsOutlined.tsx index 2f19667c9..ce90734cb 100644 --- a/src/IconProductionQuantityLimitsOutlined.tsx +++ b/src/IconProductionQuantityLimitsOutlined.tsx @@ -10,4 +10,4 @@ const IconProductionQuantityLimitsOutlined: React.FC = ({ ) -export { IconProductionQuantityLimitsOutlined as default } +export default IconProductionQuantityLimitsOutlined diff --git a/src/IconProductionQuantityLimitsOutlinedFilled.tsx b/src/IconProductionQuantityLimitsOutlinedFilled.tsx index 77e7b9879..888192c77 100644 --- a/src/IconProductionQuantityLimitsOutlinedFilled.tsx +++ b/src/IconProductionQuantityLimitsOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconProductionQuantityLimitsOutlinedFilled: React.FC = ({ ) -export { IconProductionQuantityLimitsOutlinedFilled as default } +export default IconProductionQuantityLimitsOutlinedFilled diff --git a/src/IconProductionQuantityLimitsRounded.tsx b/src/IconProductionQuantityLimitsRounded.tsx index a1baca4a7..189c7d59d 100644 --- a/src/IconProductionQuantityLimitsRounded.tsx +++ b/src/IconProductionQuantityLimitsRounded.tsx @@ -10,4 +10,4 @@ const IconProductionQuantityLimitsRounded: React.FC = ({ ) -export { IconProductionQuantityLimitsRounded as default } +export default IconProductionQuantityLimitsRounded diff --git a/src/IconProductionQuantityLimitsRoundedFilled.tsx b/src/IconProductionQuantityLimitsRoundedFilled.tsx index a56b9a1ca..89c3a4a95 100644 --- a/src/IconProductionQuantityLimitsRoundedFilled.tsx +++ b/src/IconProductionQuantityLimitsRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconProductionQuantityLimitsRoundedFilled: React.FC = ({ ) -export { IconProductionQuantityLimitsRoundedFilled as default } +export default IconProductionQuantityLimitsRoundedFilled diff --git a/src/IconProductionQuantityLimitsSharp.tsx b/src/IconProductionQuantityLimitsSharp.tsx index 2725b7e70..176ea58cd 100644 --- a/src/IconProductionQuantityLimitsSharp.tsx +++ b/src/IconProductionQuantityLimitsSharp.tsx @@ -10,4 +10,4 @@ const IconProductionQuantityLimitsSharp: React.FC = ({ ) -export { IconProductionQuantityLimitsSharp as default } +export default IconProductionQuantityLimitsSharp diff --git a/src/IconProductionQuantityLimitsSharpFilled.tsx b/src/IconProductionQuantityLimitsSharpFilled.tsx index d6ece8202..b2c303796 100644 --- a/src/IconProductionQuantityLimitsSharpFilled.tsx +++ b/src/IconProductionQuantityLimitsSharpFilled.tsx @@ -10,4 +10,4 @@ const IconProductionQuantityLimitsSharpFilled: React.FC = ({ ) -export { IconProductionQuantityLimitsSharpFilled as default } +export default IconProductionQuantityLimitsSharpFilled diff --git a/src/IconProductivityOutlined.tsx b/src/IconProductivityOutlined.tsx index 7413cd1b9..35246bc6b 100644 --- a/src/IconProductivityOutlined.tsx +++ b/src/IconProductivityOutlined.tsx @@ -8,4 +8,4 @@ const IconProductivityOutlined: React.FC = ({ ...props }) => ( ) -export { IconProductivityOutlined as default } +export default IconProductivityOutlined diff --git a/src/IconProductivityOutlinedFilled.tsx b/src/IconProductivityOutlinedFilled.tsx index 79e436fe5..cc8d74911 100644 --- a/src/IconProductivityOutlinedFilled.tsx +++ b/src/IconProductivityOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconProductivityOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconProductivityOutlinedFilled as default } +export default IconProductivityOutlinedFilled diff --git a/src/IconProductivityRounded.tsx b/src/IconProductivityRounded.tsx index 5ebc4a257..afaa6e4aa 100644 --- a/src/IconProductivityRounded.tsx +++ b/src/IconProductivityRounded.tsx @@ -8,4 +8,4 @@ const IconProductivityRounded: React.FC = ({ ...props }) => ( ) -export { IconProductivityRounded as default } +export default IconProductivityRounded diff --git a/src/IconProductivityRoundedFilled.tsx b/src/IconProductivityRoundedFilled.tsx index 5b0efba4e..38fa9fb6c 100644 --- a/src/IconProductivityRoundedFilled.tsx +++ b/src/IconProductivityRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconProductivityRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconProductivityRoundedFilled as default } +export default IconProductivityRoundedFilled diff --git a/src/IconProductivitySharp.tsx b/src/IconProductivitySharp.tsx index f816ebe85..013f49e68 100644 --- a/src/IconProductivitySharp.tsx +++ b/src/IconProductivitySharp.tsx @@ -8,4 +8,4 @@ const IconProductivitySharp: React.FC = ({ ...props }) => ( ) -export { IconProductivitySharp as default } +export default IconProductivitySharp diff --git a/src/IconProductivitySharpFilled.tsx b/src/IconProductivitySharpFilled.tsx index 64949cd2a..ebb1494b9 100644 --- a/src/IconProductivitySharpFilled.tsx +++ b/src/IconProductivitySharpFilled.tsx @@ -8,4 +8,4 @@ const IconProductivitySharpFilled: React.FC = ({ ...props }) => ( ) -export { IconProductivitySharpFilled as default } +export default IconProductivitySharpFilled diff --git a/src/IconProgressActivityOutlined.tsx b/src/IconProgressActivityOutlined.tsx index f368ad4f7..4a7e03f42 100644 --- a/src/IconProgressActivityOutlined.tsx +++ b/src/IconProgressActivityOutlined.tsx @@ -8,4 +8,4 @@ const IconProgressActivityOutlined: React.FC = ({ ...props }) => ( ) -export { IconProgressActivityOutlined as default } +export default IconProgressActivityOutlined diff --git a/src/IconProgressActivityOutlinedFilled.tsx b/src/IconProgressActivityOutlinedFilled.tsx index fe0f6aa47..04a381289 100644 --- a/src/IconProgressActivityOutlinedFilled.tsx +++ b/src/IconProgressActivityOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconProgressActivityOutlinedFilled: React.FC = ({ ) -export { IconProgressActivityOutlinedFilled as default } +export default IconProgressActivityOutlinedFilled diff --git a/src/IconProgressActivityRounded.tsx b/src/IconProgressActivityRounded.tsx index c0d06c979..dfea86823 100644 --- a/src/IconProgressActivityRounded.tsx +++ b/src/IconProgressActivityRounded.tsx @@ -8,4 +8,4 @@ const IconProgressActivityRounded: React.FC = ({ ...props }) => ( ) -export { IconProgressActivityRounded as default } +export default IconProgressActivityRounded diff --git a/src/IconProgressActivityRoundedFilled.tsx b/src/IconProgressActivityRoundedFilled.tsx index 391d25c76..29f9c9d36 100644 --- a/src/IconProgressActivityRoundedFilled.tsx +++ b/src/IconProgressActivityRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconProgressActivityRoundedFilled: React.FC = ({ ) -export { IconProgressActivityRoundedFilled as default } +export default IconProgressActivityRoundedFilled diff --git a/src/IconProgressActivitySharp.tsx b/src/IconProgressActivitySharp.tsx index 01f97477a..c9b79fade 100644 --- a/src/IconProgressActivitySharp.tsx +++ b/src/IconProgressActivitySharp.tsx @@ -8,4 +8,4 @@ const IconProgressActivitySharp: React.FC = ({ ...props }) => ( ) -export { IconProgressActivitySharp as default } +export default IconProgressActivitySharp diff --git a/src/IconProgressActivitySharpFilled.tsx b/src/IconProgressActivitySharpFilled.tsx index e105080c4..dd4ef63ff 100644 --- a/src/IconProgressActivitySharpFilled.tsx +++ b/src/IconProgressActivitySharpFilled.tsx @@ -8,4 +8,4 @@ const IconProgressActivitySharpFilled: React.FC = ({ ...props }) => ( ) -export { IconProgressActivitySharpFilled as default } +export default IconProgressActivitySharpFilled diff --git a/src/IconPromptSuggestionOutlined.tsx b/src/IconPromptSuggestionOutlined.tsx index b28adec38..77e8f422c 100644 --- a/src/IconPromptSuggestionOutlined.tsx +++ b/src/IconPromptSuggestionOutlined.tsx @@ -8,4 +8,4 @@ const IconPromptSuggestionOutlined: React.FC = ({ ...props }) => ( ) -export { IconPromptSuggestionOutlined as default } +export default IconPromptSuggestionOutlined diff --git a/src/IconPromptSuggestionOutlinedFilled.tsx b/src/IconPromptSuggestionOutlinedFilled.tsx index d43e29cc1..a4f348f0a 100644 --- a/src/IconPromptSuggestionOutlinedFilled.tsx +++ b/src/IconPromptSuggestionOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconPromptSuggestionOutlinedFilled: React.FC = ({ ) -export { IconPromptSuggestionOutlinedFilled as default } +export default IconPromptSuggestionOutlinedFilled diff --git a/src/IconPromptSuggestionRounded.tsx b/src/IconPromptSuggestionRounded.tsx index b8b8ec073..498e4ca39 100644 --- a/src/IconPromptSuggestionRounded.tsx +++ b/src/IconPromptSuggestionRounded.tsx @@ -8,4 +8,4 @@ const IconPromptSuggestionRounded: React.FC = ({ ...props }) => ( ) -export { IconPromptSuggestionRounded as default } +export default IconPromptSuggestionRounded diff --git a/src/IconPromptSuggestionRoundedFilled.tsx b/src/IconPromptSuggestionRoundedFilled.tsx index d7a366f30..45697a910 100644 --- a/src/IconPromptSuggestionRoundedFilled.tsx +++ b/src/IconPromptSuggestionRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconPromptSuggestionRoundedFilled: React.FC = ({ ) -export { IconPromptSuggestionRoundedFilled as default } +export default IconPromptSuggestionRoundedFilled diff --git a/src/IconPromptSuggestionSharp.tsx b/src/IconPromptSuggestionSharp.tsx index fb147e935..40feb30a6 100644 --- a/src/IconPromptSuggestionSharp.tsx +++ b/src/IconPromptSuggestionSharp.tsx @@ -8,4 +8,4 @@ const IconPromptSuggestionSharp: React.FC = ({ ...props }) => ( ) -export { IconPromptSuggestionSharp as default } +export default IconPromptSuggestionSharp diff --git a/src/IconPromptSuggestionSharpFilled.tsx b/src/IconPromptSuggestionSharpFilled.tsx index 3d29eaee1..09496e334 100644 --- a/src/IconPromptSuggestionSharpFilled.tsx +++ b/src/IconPromptSuggestionSharpFilled.tsx @@ -8,4 +8,4 @@ const IconPromptSuggestionSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconPromptSuggestionSharpFilled as default } +export default IconPromptSuggestionSharpFilled diff --git a/src/IconPropaneOutlined.tsx b/src/IconPropaneOutlined.tsx index cf9b7bbdc..821d34835 100644 --- a/src/IconPropaneOutlined.tsx +++ b/src/IconPropaneOutlined.tsx @@ -8,4 +8,4 @@ const IconPropaneOutlined: React.FC = ({ ...props }) => ( ) -export { IconPropaneOutlined as default } +export default IconPropaneOutlined diff --git a/src/IconPropaneOutlinedFilled.tsx b/src/IconPropaneOutlinedFilled.tsx index c9218705d..eeb13f045 100644 --- a/src/IconPropaneOutlinedFilled.tsx +++ b/src/IconPropaneOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconPropaneOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconPropaneOutlinedFilled as default } +export default IconPropaneOutlinedFilled diff --git a/src/IconPropaneRounded.tsx b/src/IconPropaneRounded.tsx index 61bb206cb..0fb8ca7aa 100644 --- a/src/IconPropaneRounded.tsx +++ b/src/IconPropaneRounded.tsx @@ -8,4 +8,4 @@ const IconPropaneRounded: React.FC = ({ ...props }) => ( ) -export { IconPropaneRounded as default } +export default IconPropaneRounded diff --git a/src/IconPropaneRoundedFilled.tsx b/src/IconPropaneRoundedFilled.tsx index 43482e502..2033570a6 100644 --- a/src/IconPropaneRoundedFilled.tsx +++ b/src/IconPropaneRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconPropaneRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconPropaneRoundedFilled as default } +export default IconPropaneRoundedFilled diff --git a/src/IconPropaneSharp.tsx b/src/IconPropaneSharp.tsx index 6a6d1189b..ff7fe0f00 100644 --- a/src/IconPropaneSharp.tsx +++ b/src/IconPropaneSharp.tsx @@ -8,4 +8,4 @@ const IconPropaneSharp: React.FC = ({ ...props }) => ( ) -export { IconPropaneSharp as default } +export default IconPropaneSharp diff --git a/src/IconPropaneSharpFilled.tsx b/src/IconPropaneSharpFilled.tsx index f5a202085..33b4b0d49 100644 --- a/src/IconPropaneSharpFilled.tsx +++ b/src/IconPropaneSharpFilled.tsx @@ -8,4 +8,4 @@ const IconPropaneSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconPropaneSharpFilled as default } +export default IconPropaneSharpFilled diff --git a/src/IconPropaneTankOutlined.tsx b/src/IconPropaneTankOutlined.tsx index 51de301fa..021c59d2d 100644 --- a/src/IconPropaneTankOutlined.tsx +++ b/src/IconPropaneTankOutlined.tsx @@ -8,4 +8,4 @@ const IconPropaneTankOutlined: React.FC = ({ ...props }) => ( ) -export { IconPropaneTankOutlined as default } +export default IconPropaneTankOutlined diff --git a/src/IconPropaneTankOutlinedFilled.tsx b/src/IconPropaneTankOutlinedFilled.tsx index abc3f12af..152d20cd0 100644 --- a/src/IconPropaneTankOutlinedFilled.tsx +++ b/src/IconPropaneTankOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconPropaneTankOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconPropaneTankOutlinedFilled as default } +export default IconPropaneTankOutlinedFilled diff --git a/src/IconPropaneTankRounded.tsx b/src/IconPropaneTankRounded.tsx index f556c6591..811e12c7d 100644 --- a/src/IconPropaneTankRounded.tsx +++ b/src/IconPropaneTankRounded.tsx @@ -8,4 +8,4 @@ const IconPropaneTankRounded: React.FC = ({ ...props }) => ( ) -export { IconPropaneTankRounded as default } +export default IconPropaneTankRounded diff --git a/src/IconPropaneTankRoundedFilled.tsx b/src/IconPropaneTankRoundedFilled.tsx index 1b819be1d..ceda36352 100644 --- a/src/IconPropaneTankRoundedFilled.tsx +++ b/src/IconPropaneTankRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconPropaneTankRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconPropaneTankRoundedFilled as default } +export default IconPropaneTankRoundedFilled diff --git a/src/IconPropaneTankSharp.tsx b/src/IconPropaneTankSharp.tsx index cfe57c2b6..b855663e9 100644 --- a/src/IconPropaneTankSharp.tsx +++ b/src/IconPropaneTankSharp.tsx @@ -8,4 +8,4 @@ const IconPropaneTankSharp: React.FC = ({ ...props }) => ( ) -export { IconPropaneTankSharp as default } +export default IconPropaneTankSharp diff --git a/src/IconPropaneTankSharpFilled.tsx b/src/IconPropaneTankSharpFilled.tsx index 12fc99505..d852baec2 100644 --- a/src/IconPropaneTankSharpFilled.tsx +++ b/src/IconPropaneTankSharpFilled.tsx @@ -8,4 +8,4 @@ const IconPropaneTankSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconPropaneTankSharpFilled as default } +export default IconPropaneTankSharpFilled diff --git a/src/IconPsychiatryOutlined.tsx b/src/IconPsychiatryOutlined.tsx index 4354c8274..a891f871a 100644 --- a/src/IconPsychiatryOutlined.tsx +++ b/src/IconPsychiatryOutlined.tsx @@ -8,4 +8,4 @@ const IconPsychiatryOutlined: React.FC = ({ ...props }) => ( ) -export { IconPsychiatryOutlined as default } +export default IconPsychiatryOutlined diff --git a/src/IconPsychiatryOutlinedFilled.tsx b/src/IconPsychiatryOutlinedFilled.tsx index 129e53de0..79ad7463e 100644 --- a/src/IconPsychiatryOutlinedFilled.tsx +++ b/src/IconPsychiatryOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconPsychiatryOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconPsychiatryOutlinedFilled as default } +export default IconPsychiatryOutlinedFilled diff --git a/src/IconPsychiatryRounded.tsx b/src/IconPsychiatryRounded.tsx index 220c4529e..cb43e701e 100644 --- a/src/IconPsychiatryRounded.tsx +++ b/src/IconPsychiatryRounded.tsx @@ -8,4 +8,4 @@ const IconPsychiatryRounded: React.FC = ({ ...props }) => ( ) -export { IconPsychiatryRounded as default } +export default IconPsychiatryRounded diff --git a/src/IconPsychiatryRoundedFilled.tsx b/src/IconPsychiatryRoundedFilled.tsx index 86343a100..0dbe50670 100644 --- a/src/IconPsychiatryRoundedFilled.tsx +++ b/src/IconPsychiatryRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconPsychiatryRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconPsychiatryRoundedFilled as default } +export default IconPsychiatryRoundedFilled diff --git a/src/IconPsychiatrySharp.tsx b/src/IconPsychiatrySharp.tsx index 0bce3f269..b25a563cc 100644 --- a/src/IconPsychiatrySharp.tsx +++ b/src/IconPsychiatrySharp.tsx @@ -8,4 +8,4 @@ const IconPsychiatrySharp: React.FC = ({ ...props }) => ( ) -export { IconPsychiatrySharp as default } +export default IconPsychiatrySharp diff --git a/src/IconPsychiatrySharpFilled.tsx b/src/IconPsychiatrySharpFilled.tsx index 7dbb6a3d7..61608ab9e 100644 --- a/src/IconPsychiatrySharpFilled.tsx +++ b/src/IconPsychiatrySharpFilled.tsx @@ -8,4 +8,4 @@ const IconPsychiatrySharpFilled: React.FC = ({ ...props }) => ( ) -export { IconPsychiatrySharpFilled as default } +export default IconPsychiatrySharpFilled diff --git a/src/IconPsychologyAltOutlined.tsx b/src/IconPsychologyAltOutlined.tsx index 4a3e7346b..61dea37c0 100644 --- a/src/IconPsychologyAltOutlined.tsx +++ b/src/IconPsychologyAltOutlined.tsx @@ -8,4 +8,4 @@ const IconPsychologyAltOutlined: React.FC = ({ ...props }) => ( ) -export { IconPsychologyAltOutlined as default } +export default IconPsychologyAltOutlined diff --git a/src/IconPsychologyAltOutlinedFilled.tsx b/src/IconPsychologyAltOutlinedFilled.tsx index 7c5150634..267d68146 100644 --- a/src/IconPsychologyAltOutlinedFilled.tsx +++ b/src/IconPsychologyAltOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconPsychologyAltOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconPsychologyAltOutlinedFilled as default } +export default IconPsychologyAltOutlinedFilled diff --git a/src/IconPsychologyAltRounded.tsx b/src/IconPsychologyAltRounded.tsx index b50751109..61ea3d40b 100644 --- a/src/IconPsychologyAltRounded.tsx +++ b/src/IconPsychologyAltRounded.tsx @@ -8,4 +8,4 @@ const IconPsychologyAltRounded: React.FC = ({ ...props }) => ( ) -export { IconPsychologyAltRounded as default } +export default IconPsychologyAltRounded diff --git a/src/IconPsychologyAltRoundedFilled.tsx b/src/IconPsychologyAltRoundedFilled.tsx index 08a822d64..4249dfa7d 100644 --- a/src/IconPsychologyAltRoundedFilled.tsx +++ b/src/IconPsychologyAltRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconPsychologyAltRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconPsychologyAltRoundedFilled as default } +export default IconPsychologyAltRoundedFilled diff --git a/src/IconPsychologyAltSharp.tsx b/src/IconPsychologyAltSharp.tsx index 29602160e..18719bbf1 100644 --- a/src/IconPsychologyAltSharp.tsx +++ b/src/IconPsychologyAltSharp.tsx @@ -8,4 +8,4 @@ const IconPsychologyAltSharp: React.FC = ({ ...props }) => ( ) -export { IconPsychologyAltSharp as default } +export default IconPsychologyAltSharp diff --git a/src/IconPsychologyAltSharpFilled.tsx b/src/IconPsychologyAltSharpFilled.tsx index 599f0eb00..a907f3516 100644 --- a/src/IconPsychologyAltSharpFilled.tsx +++ b/src/IconPsychologyAltSharpFilled.tsx @@ -8,4 +8,4 @@ const IconPsychologyAltSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconPsychologyAltSharpFilled as default } +export default IconPsychologyAltSharpFilled diff --git a/src/IconPsychologyOutlined.tsx b/src/IconPsychologyOutlined.tsx index 0dbf18429..cf96a96ca 100644 --- a/src/IconPsychologyOutlined.tsx +++ b/src/IconPsychologyOutlined.tsx @@ -8,4 +8,4 @@ const IconPsychologyOutlined: React.FC = ({ ...props }) => ( ) -export { IconPsychologyOutlined as default } +export default IconPsychologyOutlined diff --git a/src/IconPsychologyOutlinedFilled.tsx b/src/IconPsychologyOutlinedFilled.tsx index cf2f9fa8f..fc73b0abc 100644 --- a/src/IconPsychologyOutlinedFilled.tsx +++ b/src/IconPsychologyOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconPsychologyOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconPsychologyOutlinedFilled as default } +export default IconPsychologyOutlinedFilled diff --git a/src/IconPsychologyRounded.tsx b/src/IconPsychologyRounded.tsx index 6d075c69c..844b29777 100644 --- a/src/IconPsychologyRounded.tsx +++ b/src/IconPsychologyRounded.tsx @@ -8,4 +8,4 @@ const IconPsychologyRounded: React.FC = ({ ...props }) => ( ) -export { IconPsychologyRounded as default } +export default IconPsychologyRounded diff --git a/src/IconPsychologyRoundedFilled.tsx b/src/IconPsychologyRoundedFilled.tsx index 4313ebcad..01a37dacc 100644 --- a/src/IconPsychologyRoundedFilled.tsx +++ b/src/IconPsychologyRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconPsychologyRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconPsychologyRoundedFilled as default } +export default IconPsychologyRoundedFilled diff --git a/src/IconPsychologySharp.tsx b/src/IconPsychologySharp.tsx index ab1d685df..3383385f5 100644 --- a/src/IconPsychologySharp.tsx +++ b/src/IconPsychologySharp.tsx @@ -8,4 +8,4 @@ const IconPsychologySharp: React.FC = ({ ...props }) => ( ) -export { IconPsychologySharp as default } +export default IconPsychologySharp diff --git a/src/IconPsychologySharpFilled.tsx b/src/IconPsychologySharpFilled.tsx index 46f1d145f..4d8fc2daf 100644 --- a/src/IconPsychologySharpFilled.tsx +++ b/src/IconPsychologySharpFilled.tsx @@ -8,4 +8,4 @@ const IconPsychologySharpFilled: React.FC = ({ ...props }) => ( ) -export { IconPsychologySharpFilled as default } +export default IconPsychologySharpFilled diff --git a/src/IconPublicOffOutlined.tsx b/src/IconPublicOffOutlined.tsx index e257d64b6..14b840664 100644 --- a/src/IconPublicOffOutlined.tsx +++ b/src/IconPublicOffOutlined.tsx @@ -8,4 +8,4 @@ const IconPublicOffOutlined: React.FC = ({ ...props }) => ( ) -export { IconPublicOffOutlined as default } +export default IconPublicOffOutlined diff --git a/src/IconPublicOffOutlinedFilled.tsx b/src/IconPublicOffOutlinedFilled.tsx index 6af27311c..3d11debdc 100644 --- a/src/IconPublicOffOutlinedFilled.tsx +++ b/src/IconPublicOffOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconPublicOffOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconPublicOffOutlinedFilled as default } +export default IconPublicOffOutlinedFilled diff --git a/src/IconPublicOffRounded.tsx b/src/IconPublicOffRounded.tsx index d8d2c7bb6..aaab8578e 100644 --- a/src/IconPublicOffRounded.tsx +++ b/src/IconPublicOffRounded.tsx @@ -8,4 +8,4 @@ const IconPublicOffRounded: React.FC = ({ ...props }) => ( ) -export { IconPublicOffRounded as default } +export default IconPublicOffRounded diff --git a/src/IconPublicOffRoundedFilled.tsx b/src/IconPublicOffRoundedFilled.tsx index f96e2d6cb..0c501c13c 100644 --- a/src/IconPublicOffRoundedFilled.tsx +++ b/src/IconPublicOffRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconPublicOffRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconPublicOffRoundedFilled as default } +export default IconPublicOffRoundedFilled diff --git a/src/IconPublicOffSharp.tsx b/src/IconPublicOffSharp.tsx index d3fce56de..741358197 100644 --- a/src/IconPublicOffSharp.tsx +++ b/src/IconPublicOffSharp.tsx @@ -8,4 +8,4 @@ const IconPublicOffSharp: React.FC = ({ ...props }) => ( ) -export { IconPublicOffSharp as default } +export default IconPublicOffSharp diff --git a/src/IconPublicOffSharpFilled.tsx b/src/IconPublicOffSharpFilled.tsx index 980b73226..662b30e63 100644 --- a/src/IconPublicOffSharpFilled.tsx +++ b/src/IconPublicOffSharpFilled.tsx @@ -8,4 +8,4 @@ const IconPublicOffSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconPublicOffSharpFilled as default } +export default IconPublicOffSharpFilled diff --git a/src/IconPublicOutlined.tsx b/src/IconPublicOutlined.tsx index 78e4b2fdf..0bf3efce4 100644 --- a/src/IconPublicOutlined.tsx +++ b/src/IconPublicOutlined.tsx @@ -8,4 +8,4 @@ const IconPublicOutlined: React.FC = ({ ...props }) => ( ) -export { IconPublicOutlined as default } +export default IconPublicOutlined diff --git a/src/IconPublicOutlinedFilled.tsx b/src/IconPublicOutlinedFilled.tsx index a5ee4d26f..8c62192e1 100644 --- a/src/IconPublicOutlinedFilled.tsx +++ b/src/IconPublicOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconPublicOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconPublicOutlinedFilled as default } +export default IconPublicOutlinedFilled diff --git a/src/IconPublicRounded.tsx b/src/IconPublicRounded.tsx index 4f93a5bd4..422511cc5 100644 --- a/src/IconPublicRounded.tsx +++ b/src/IconPublicRounded.tsx @@ -8,4 +8,4 @@ const IconPublicRounded: React.FC = ({ ...props }) => ( ) -export { IconPublicRounded as default } +export default IconPublicRounded diff --git a/src/IconPublicRoundedFilled.tsx b/src/IconPublicRoundedFilled.tsx index a296f2907..29605fbd8 100644 --- a/src/IconPublicRoundedFilled.tsx +++ b/src/IconPublicRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconPublicRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconPublicRoundedFilled as default } +export default IconPublicRoundedFilled diff --git a/src/IconPublicSharp.tsx b/src/IconPublicSharp.tsx index e683f0989..94e0269bd 100644 --- a/src/IconPublicSharp.tsx +++ b/src/IconPublicSharp.tsx @@ -8,4 +8,4 @@ const IconPublicSharp: React.FC = ({ ...props }) => ( ) -export { IconPublicSharp as default } +export default IconPublicSharp diff --git a/src/IconPublicSharpFilled.tsx b/src/IconPublicSharpFilled.tsx index c71ba4955..b7723fb11 100644 --- a/src/IconPublicSharpFilled.tsx +++ b/src/IconPublicSharpFilled.tsx @@ -8,4 +8,4 @@ const IconPublicSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconPublicSharpFilled as default } +export default IconPublicSharpFilled diff --git a/src/IconPublishOutlined.tsx b/src/IconPublishOutlined.tsx index 5c826b635..daa0e566f 100644 --- a/src/IconPublishOutlined.tsx +++ b/src/IconPublishOutlined.tsx @@ -8,4 +8,4 @@ const IconPublishOutlined: React.FC = ({ ...props }) => ( ) -export { IconPublishOutlined as default } +export default IconPublishOutlined diff --git a/src/IconPublishOutlinedFilled.tsx b/src/IconPublishOutlinedFilled.tsx index 224a483e3..a1c51f841 100644 --- a/src/IconPublishOutlinedFilled.tsx +++ b/src/IconPublishOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconPublishOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconPublishOutlinedFilled as default } +export default IconPublishOutlinedFilled diff --git a/src/IconPublishRounded.tsx b/src/IconPublishRounded.tsx index f15384d38..d7882c2d9 100644 --- a/src/IconPublishRounded.tsx +++ b/src/IconPublishRounded.tsx @@ -8,4 +8,4 @@ const IconPublishRounded: React.FC = ({ ...props }) => ( ) -export { IconPublishRounded as default } +export default IconPublishRounded diff --git a/src/IconPublishRoundedFilled.tsx b/src/IconPublishRoundedFilled.tsx index fe129bde5..1dc1ce78c 100644 --- a/src/IconPublishRoundedFilled.tsx +++ b/src/IconPublishRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconPublishRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconPublishRoundedFilled as default } +export default IconPublishRoundedFilled diff --git a/src/IconPublishSharp.tsx b/src/IconPublishSharp.tsx index d057ad220..337a60011 100644 --- a/src/IconPublishSharp.tsx +++ b/src/IconPublishSharp.tsx @@ -8,4 +8,4 @@ const IconPublishSharp: React.FC = ({ ...props }) => ( ) -export { IconPublishSharp as default } +export default IconPublishSharp diff --git a/src/IconPublishSharpFilled.tsx b/src/IconPublishSharpFilled.tsx index 62952371c..1add35574 100644 --- a/src/IconPublishSharpFilled.tsx +++ b/src/IconPublishSharpFilled.tsx @@ -8,4 +8,4 @@ const IconPublishSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconPublishSharpFilled as default } +export default IconPublishSharpFilled diff --git a/src/IconPublishedWithChangesOutlined.tsx b/src/IconPublishedWithChangesOutlined.tsx index d0313ebf2..135613302 100644 --- a/src/IconPublishedWithChangesOutlined.tsx +++ b/src/IconPublishedWithChangesOutlined.tsx @@ -10,4 +10,4 @@ const IconPublishedWithChangesOutlined: React.FC = ({ ) -export { IconPublishedWithChangesOutlined as default } +export default IconPublishedWithChangesOutlined diff --git a/src/IconPublishedWithChangesOutlinedFilled.tsx b/src/IconPublishedWithChangesOutlinedFilled.tsx index dc9fd14fd..647b09d46 100644 --- a/src/IconPublishedWithChangesOutlinedFilled.tsx +++ b/src/IconPublishedWithChangesOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconPublishedWithChangesOutlinedFilled: React.FC = ({ ) -export { IconPublishedWithChangesOutlinedFilled as default } +export default IconPublishedWithChangesOutlinedFilled diff --git a/src/IconPublishedWithChangesRounded.tsx b/src/IconPublishedWithChangesRounded.tsx index 15168c79e..a84ad086b 100644 --- a/src/IconPublishedWithChangesRounded.tsx +++ b/src/IconPublishedWithChangesRounded.tsx @@ -8,4 +8,4 @@ const IconPublishedWithChangesRounded: React.FC = ({ ...props }) => ( ) -export { IconPublishedWithChangesRounded as default } +export default IconPublishedWithChangesRounded diff --git a/src/IconPublishedWithChangesRoundedFilled.tsx b/src/IconPublishedWithChangesRoundedFilled.tsx index f01322503..91102064e 100644 --- a/src/IconPublishedWithChangesRoundedFilled.tsx +++ b/src/IconPublishedWithChangesRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconPublishedWithChangesRoundedFilled: React.FC = ({ ) -export { IconPublishedWithChangesRoundedFilled as default } +export default IconPublishedWithChangesRoundedFilled diff --git a/src/IconPublishedWithChangesSharp.tsx b/src/IconPublishedWithChangesSharp.tsx index f5267153c..00a4aa612 100644 --- a/src/IconPublishedWithChangesSharp.tsx +++ b/src/IconPublishedWithChangesSharp.tsx @@ -8,4 +8,4 @@ const IconPublishedWithChangesSharp: React.FC = ({ ...props }) => ( ) -export { IconPublishedWithChangesSharp as default } +export default IconPublishedWithChangesSharp diff --git a/src/IconPublishedWithChangesSharpFilled.tsx b/src/IconPublishedWithChangesSharpFilled.tsx index fd61e8f10..d7d10811a 100644 --- a/src/IconPublishedWithChangesSharpFilled.tsx +++ b/src/IconPublishedWithChangesSharpFilled.tsx @@ -10,4 +10,4 @@ const IconPublishedWithChangesSharpFilled: React.FC = ({ ) -export { IconPublishedWithChangesSharpFilled as default } +export default IconPublishedWithChangesSharpFilled diff --git a/src/IconPulmonologyOutlined.tsx b/src/IconPulmonologyOutlined.tsx index a6974bba1..54aa9791b 100644 --- a/src/IconPulmonologyOutlined.tsx +++ b/src/IconPulmonologyOutlined.tsx @@ -8,4 +8,4 @@ const IconPulmonologyOutlined: React.FC = ({ ...props }) => ( ) -export { IconPulmonologyOutlined as default } +export default IconPulmonologyOutlined diff --git a/src/IconPulmonologyOutlinedFilled.tsx b/src/IconPulmonologyOutlinedFilled.tsx index 015c42cea..137ec9d7a 100644 --- a/src/IconPulmonologyOutlinedFilled.tsx +++ b/src/IconPulmonologyOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconPulmonologyOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconPulmonologyOutlinedFilled as default } +export default IconPulmonologyOutlinedFilled diff --git a/src/IconPulmonologyRounded.tsx b/src/IconPulmonologyRounded.tsx index f2dda76d1..0b8ca8650 100644 --- a/src/IconPulmonologyRounded.tsx +++ b/src/IconPulmonologyRounded.tsx @@ -8,4 +8,4 @@ const IconPulmonologyRounded: React.FC = ({ ...props }) => ( ) -export { IconPulmonologyRounded as default } +export default IconPulmonologyRounded diff --git a/src/IconPulmonologyRoundedFilled.tsx b/src/IconPulmonologyRoundedFilled.tsx index 1fe1fb26a..766305cbd 100644 --- a/src/IconPulmonologyRoundedFilled.tsx +++ b/src/IconPulmonologyRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconPulmonologyRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconPulmonologyRoundedFilled as default } +export default IconPulmonologyRoundedFilled diff --git a/src/IconPulmonologySharp.tsx b/src/IconPulmonologySharp.tsx index 2bf741f68..835c6ae0c 100644 --- a/src/IconPulmonologySharp.tsx +++ b/src/IconPulmonologySharp.tsx @@ -8,4 +8,4 @@ const IconPulmonologySharp: React.FC = ({ ...props }) => ( ) -export { IconPulmonologySharp as default } +export default IconPulmonologySharp diff --git a/src/IconPulmonologySharpFilled.tsx b/src/IconPulmonologySharpFilled.tsx index c870ea770..365642305 100644 --- a/src/IconPulmonologySharpFilled.tsx +++ b/src/IconPulmonologySharpFilled.tsx @@ -8,4 +8,4 @@ const IconPulmonologySharpFilled: React.FC = ({ ...props }) => ( ) -export { IconPulmonologySharpFilled as default } +export default IconPulmonologySharpFilled diff --git a/src/IconPulseAlertOutlined.tsx b/src/IconPulseAlertOutlined.tsx index 4b8cb18e0..5e8aff83d 100644 --- a/src/IconPulseAlertOutlined.tsx +++ b/src/IconPulseAlertOutlined.tsx @@ -8,4 +8,4 @@ const IconPulseAlertOutlined: React.FC = ({ ...props }) => ( ) -export { IconPulseAlertOutlined as default } +export default IconPulseAlertOutlined diff --git a/src/IconPulseAlertOutlinedFilled.tsx b/src/IconPulseAlertOutlinedFilled.tsx index 0c5f343d8..f2a7949c1 100644 --- a/src/IconPulseAlertOutlinedFilled.tsx +++ b/src/IconPulseAlertOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconPulseAlertOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconPulseAlertOutlinedFilled as default } +export default IconPulseAlertOutlinedFilled diff --git a/src/IconPulseAlertRounded.tsx b/src/IconPulseAlertRounded.tsx index 4a71b2d0e..cc31e857c 100644 --- a/src/IconPulseAlertRounded.tsx +++ b/src/IconPulseAlertRounded.tsx @@ -8,4 +8,4 @@ const IconPulseAlertRounded: React.FC = ({ ...props }) => ( ) -export { IconPulseAlertRounded as default } +export default IconPulseAlertRounded diff --git a/src/IconPulseAlertRoundedFilled.tsx b/src/IconPulseAlertRoundedFilled.tsx index 040cc8fc0..21266bc31 100644 --- a/src/IconPulseAlertRoundedFilled.tsx +++ b/src/IconPulseAlertRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconPulseAlertRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconPulseAlertRoundedFilled as default } +export default IconPulseAlertRoundedFilled diff --git a/src/IconPulseAlertSharp.tsx b/src/IconPulseAlertSharp.tsx index b8d76842a..799169ebd 100644 --- a/src/IconPulseAlertSharp.tsx +++ b/src/IconPulseAlertSharp.tsx @@ -8,4 +8,4 @@ const IconPulseAlertSharp: React.FC = ({ ...props }) => ( ) -export { IconPulseAlertSharp as default } +export default IconPulseAlertSharp diff --git a/src/IconPulseAlertSharpFilled.tsx b/src/IconPulseAlertSharpFilled.tsx index 9a187c36d..dfa8f898c 100644 --- a/src/IconPulseAlertSharpFilled.tsx +++ b/src/IconPulseAlertSharpFilled.tsx @@ -8,4 +8,4 @@ const IconPulseAlertSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconPulseAlertSharpFilled as default } +export default IconPulseAlertSharpFilled diff --git a/src/IconPunchClockOutlined.tsx b/src/IconPunchClockOutlined.tsx index 16a207d1e..0aafceacd 100644 --- a/src/IconPunchClockOutlined.tsx +++ b/src/IconPunchClockOutlined.tsx @@ -8,4 +8,4 @@ const IconPunchClockOutlined: React.FC = ({ ...props }) => ( ) -export { IconPunchClockOutlined as default } +export default IconPunchClockOutlined diff --git a/src/IconPunchClockOutlinedFilled.tsx b/src/IconPunchClockOutlinedFilled.tsx index e5cf39620..86dd12260 100644 --- a/src/IconPunchClockOutlinedFilled.tsx +++ b/src/IconPunchClockOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconPunchClockOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconPunchClockOutlinedFilled as default } +export default IconPunchClockOutlinedFilled diff --git a/src/IconPunchClockRounded.tsx b/src/IconPunchClockRounded.tsx index 8a62dde22..1cb3a7286 100644 --- a/src/IconPunchClockRounded.tsx +++ b/src/IconPunchClockRounded.tsx @@ -8,4 +8,4 @@ const IconPunchClockRounded: React.FC = ({ ...props }) => ( ) -export { IconPunchClockRounded as default } +export default IconPunchClockRounded diff --git a/src/IconPunchClockRoundedFilled.tsx b/src/IconPunchClockRoundedFilled.tsx index 3296fd784..7bb1b576d 100644 --- a/src/IconPunchClockRoundedFilled.tsx +++ b/src/IconPunchClockRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconPunchClockRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconPunchClockRoundedFilled as default } +export default IconPunchClockRoundedFilled diff --git a/src/IconPunchClockSharp.tsx b/src/IconPunchClockSharp.tsx index a9ea4f0fd..e187300f2 100644 --- a/src/IconPunchClockSharp.tsx +++ b/src/IconPunchClockSharp.tsx @@ -8,4 +8,4 @@ const IconPunchClockSharp: React.FC = ({ ...props }) => ( ) -export { IconPunchClockSharp as default } +export default IconPunchClockSharp diff --git a/src/IconPunchClockSharpFilled.tsx b/src/IconPunchClockSharpFilled.tsx index 0bc875594..8efc75362 100644 --- a/src/IconPunchClockSharpFilled.tsx +++ b/src/IconPunchClockSharpFilled.tsx @@ -8,4 +8,4 @@ const IconPunchClockSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconPunchClockSharpFilled as default } +export default IconPunchClockSharpFilled diff --git a/src/IconQrCode2AddOutlined.tsx b/src/IconQrCode2AddOutlined.tsx index c00106175..aef2f3da5 100644 --- a/src/IconQrCode2AddOutlined.tsx +++ b/src/IconQrCode2AddOutlined.tsx @@ -8,4 +8,4 @@ const IconQrCode2AddOutlined: React.FC = ({ ...props }) => ( ) -export { IconQrCode2AddOutlined as default } +export default IconQrCode2AddOutlined diff --git a/src/IconQrCode2AddOutlinedFilled.tsx b/src/IconQrCode2AddOutlinedFilled.tsx index 9aa0a2c4f..0cfa6658a 100644 --- a/src/IconQrCode2AddOutlinedFilled.tsx +++ b/src/IconQrCode2AddOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconQrCode2AddOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconQrCode2AddOutlinedFilled as default } +export default IconQrCode2AddOutlinedFilled diff --git a/src/IconQrCode2AddRounded.tsx b/src/IconQrCode2AddRounded.tsx index f532e7cb2..ee159eafd 100644 --- a/src/IconQrCode2AddRounded.tsx +++ b/src/IconQrCode2AddRounded.tsx @@ -8,4 +8,4 @@ const IconQrCode2AddRounded: React.FC = ({ ...props }) => ( ) -export { IconQrCode2AddRounded as default } +export default IconQrCode2AddRounded diff --git a/src/IconQrCode2AddRoundedFilled.tsx b/src/IconQrCode2AddRoundedFilled.tsx index 89985686e..a5e83107a 100644 --- a/src/IconQrCode2AddRoundedFilled.tsx +++ b/src/IconQrCode2AddRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconQrCode2AddRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconQrCode2AddRoundedFilled as default } +export default IconQrCode2AddRoundedFilled diff --git a/src/IconQrCode2AddSharp.tsx b/src/IconQrCode2AddSharp.tsx index 7abb94ca1..9b094ab63 100644 --- a/src/IconQrCode2AddSharp.tsx +++ b/src/IconQrCode2AddSharp.tsx @@ -8,4 +8,4 @@ const IconQrCode2AddSharp: React.FC = ({ ...props }) => ( ) -export { IconQrCode2AddSharp as default } +export default IconQrCode2AddSharp diff --git a/src/IconQrCode2AddSharpFilled.tsx b/src/IconQrCode2AddSharpFilled.tsx index 3735cd0c9..f497f95e6 100644 --- a/src/IconQrCode2AddSharpFilled.tsx +++ b/src/IconQrCode2AddSharpFilled.tsx @@ -8,4 +8,4 @@ const IconQrCode2AddSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconQrCode2AddSharpFilled as default } +export default IconQrCode2AddSharpFilled diff --git a/src/IconQrCode2Outlined.tsx b/src/IconQrCode2Outlined.tsx index 7c24f0b18..48558af8f 100644 --- a/src/IconQrCode2Outlined.tsx +++ b/src/IconQrCode2Outlined.tsx @@ -8,4 +8,4 @@ const IconQrCode2Outlined: React.FC = ({ ...props }) => ( ) -export { IconQrCode2Outlined as default } +export default IconQrCode2Outlined diff --git a/src/IconQrCode2OutlinedFilled.tsx b/src/IconQrCode2OutlinedFilled.tsx index d470d2a16..832725f3a 100644 --- a/src/IconQrCode2OutlinedFilled.tsx +++ b/src/IconQrCode2OutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconQrCode2OutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconQrCode2OutlinedFilled as default } +export default IconQrCode2OutlinedFilled diff --git a/src/IconQrCode2Rounded.tsx b/src/IconQrCode2Rounded.tsx index 692729d91..74cc0eb36 100644 --- a/src/IconQrCode2Rounded.tsx +++ b/src/IconQrCode2Rounded.tsx @@ -8,4 +8,4 @@ const IconQrCode2Rounded: React.FC = ({ ...props }) => ( ) -export { IconQrCode2Rounded as default } +export default IconQrCode2Rounded diff --git a/src/IconQrCode2RoundedFilled.tsx b/src/IconQrCode2RoundedFilled.tsx index 235e48ee2..6a47aee09 100644 --- a/src/IconQrCode2RoundedFilled.tsx +++ b/src/IconQrCode2RoundedFilled.tsx @@ -8,4 +8,4 @@ const IconQrCode2RoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconQrCode2RoundedFilled as default } +export default IconQrCode2RoundedFilled diff --git a/src/IconQrCode2Sharp.tsx b/src/IconQrCode2Sharp.tsx index e6d899563..9ae15ced9 100644 --- a/src/IconQrCode2Sharp.tsx +++ b/src/IconQrCode2Sharp.tsx @@ -8,4 +8,4 @@ const IconQrCode2Sharp: React.FC = ({ ...props }) => ( ) -export { IconQrCode2Sharp as default } +export default IconQrCode2Sharp diff --git a/src/IconQrCode2SharpFilled.tsx b/src/IconQrCode2SharpFilled.tsx index 3502e4746..7bdc38827 100644 --- a/src/IconQrCode2SharpFilled.tsx +++ b/src/IconQrCode2SharpFilled.tsx @@ -8,4 +8,4 @@ const IconQrCode2SharpFilled: React.FC = ({ ...props }) => ( ) -export { IconQrCode2SharpFilled as default } +export default IconQrCode2SharpFilled diff --git a/src/IconQrCodeOutlined.tsx b/src/IconQrCodeOutlined.tsx index 78f63cab9..d11682a9b 100644 --- a/src/IconQrCodeOutlined.tsx +++ b/src/IconQrCodeOutlined.tsx @@ -8,4 +8,4 @@ const IconQrCodeOutlined: React.FC = ({ ...props }) => ( ) -export { IconQrCodeOutlined as default } +export default IconQrCodeOutlined diff --git a/src/IconQrCodeOutlinedFilled.tsx b/src/IconQrCodeOutlinedFilled.tsx index d6644ccdc..dd2db96fe 100644 --- a/src/IconQrCodeOutlinedFilled.tsx +++ b/src/IconQrCodeOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconQrCodeOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconQrCodeOutlinedFilled as default } +export default IconQrCodeOutlinedFilled diff --git a/src/IconQrCodeRounded.tsx b/src/IconQrCodeRounded.tsx index d8d6904cb..f1bb30db7 100644 --- a/src/IconQrCodeRounded.tsx +++ b/src/IconQrCodeRounded.tsx @@ -8,4 +8,4 @@ const IconQrCodeRounded: React.FC = ({ ...props }) => ( ) -export { IconQrCodeRounded as default } +export default IconQrCodeRounded diff --git a/src/IconQrCodeRoundedFilled.tsx b/src/IconQrCodeRoundedFilled.tsx index 1c55d1cfb..bc1988468 100644 --- a/src/IconQrCodeRoundedFilled.tsx +++ b/src/IconQrCodeRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconQrCodeRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconQrCodeRoundedFilled as default } +export default IconQrCodeRoundedFilled diff --git a/src/IconQrCodeScannerOutlined.tsx b/src/IconQrCodeScannerOutlined.tsx index 3fa44c991..fdfec6be2 100644 --- a/src/IconQrCodeScannerOutlined.tsx +++ b/src/IconQrCodeScannerOutlined.tsx @@ -8,4 +8,4 @@ const IconQrCodeScannerOutlined: React.FC = ({ ...props }) => ( ) -export { IconQrCodeScannerOutlined as default } +export default IconQrCodeScannerOutlined diff --git a/src/IconQrCodeScannerOutlinedFilled.tsx b/src/IconQrCodeScannerOutlinedFilled.tsx index d41ce5402..94814b0fc 100644 --- a/src/IconQrCodeScannerOutlinedFilled.tsx +++ b/src/IconQrCodeScannerOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconQrCodeScannerOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconQrCodeScannerOutlinedFilled as default } +export default IconQrCodeScannerOutlinedFilled diff --git a/src/IconQrCodeScannerRounded.tsx b/src/IconQrCodeScannerRounded.tsx index 0914ebd9c..d1733fd56 100644 --- a/src/IconQrCodeScannerRounded.tsx +++ b/src/IconQrCodeScannerRounded.tsx @@ -8,4 +8,4 @@ const IconQrCodeScannerRounded: React.FC = ({ ...props }) => ( ) -export { IconQrCodeScannerRounded as default } +export default IconQrCodeScannerRounded diff --git a/src/IconQrCodeScannerRoundedFilled.tsx b/src/IconQrCodeScannerRoundedFilled.tsx index 20f970b57..8fa2144d9 100644 --- a/src/IconQrCodeScannerRoundedFilled.tsx +++ b/src/IconQrCodeScannerRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconQrCodeScannerRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconQrCodeScannerRoundedFilled as default } +export default IconQrCodeScannerRoundedFilled diff --git a/src/IconQrCodeScannerSharp.tsx b/src/IconQrCodeScannerSharp.tsx index f9faa9db8..0c48d769e 100644 --- a/src/IconQrCodeScannerSharp.tsx +++ b/src/IconQrCodeScannerSharp.tsx @@ -8,4 +8,4 @@ const IconQrCodeScannerSharp: React.FC = ({ ...props }) => ( ) -export { IconQrCodeScannerSharp as default } +export default IconQrCodeScannerSharp diff --git a/src/IconQrCodeScannerSharpFilled.tsx b/src/IconQrCodeScannerSharpFilled.tsx index f621f0673..3462111c8 100644 --- a/src/IconQrCodeScannerSharpFilled.tsx +++ b/src/IconQrCodeScannerSharpFilled.tsx @@ -8,4 +8,4 @@ const IconQrCodeScannerSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconQrCodeScannerSharpFilled as default } +export default IconQrCodeScannerSharpFilled diff --git a/src/IconQrCodeSharp.tsx b/src/IconQrCodeSharp.tsx index 6345b3964..f47569ade 100644 --- a/src/IconQrCodeSharp.tsx +++ b/src/IconQrCodeSharp.tsx @@ -8,4 +8,4 @@ const IconQrCodeSharp: React.FC = ({ ...props }) => ( ) -export { IconQrCodeSharp as default } +export default IconQrCodeSharp diff --git a/src/IconQrCodeSharpFilled.tsx b/src/IconQrCodeSharpFilled.tsx index a775d2015..feac2e557 100644 --- a/src/IconQrCodeSharpFilled.tsx +++ b/src/IconQrCodeSharpFilled.tsx @@ -8,4 +8,4 @@ const IconQrCodeSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconQrCodeSharpFilled as default } +export default IconQrCodeSharpFilled diff --git a/src/IconQueryStatsOutlined.tsx b/src/IconQueryStatsOutlined.tsx index c480b89db..b93a3535a 100644 --- a/src/IconQueryStatsOutlined.tsx +++ b/src/IconQueryStatsOutlined.tsx @@ -8,4 +8,4 @@ const IconQueryStatsOutlined: React.FC = ({ ...props }) => ( ) -export { IconQueryStatsOutlined as default } +export default IconQueryStatsOutlined diff --git a/src/IconQueryStatsOutlinedFilled.tsx b/src/IconQueryStatsOutlinedFilled.tsx index 2460e0567..4ddd731cc 100644 --- a/src/IconQueryStatsOutlinedFilled.tsx +++ b/src/IconQueryStatsOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconQueryStatsOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconQueryStatsOutlinedFilled as default } +export default IconQueryStatsOutlinedFilled diff --git a/src/IconQueryStatsRounded.tsx b/src/IconQueryStatsRounded.tsx index e3ca0e13c..eef9f5d82 100644 --- a/src/IconQueryStatsRounded.tsx +++ b/src/IconQueryStatsRounded.tsx @@ -8,4 +8,4 @@ const IconQueryStatsRounded: React.FC = ({ ...props }) => ( ) -export { IconQueryStatsRounded as default } +export default IconQueryStatsRounded diff --git a/src/IconQueryStatsRoundedFilled.tsx b/src/IconQueryStatsRoundedFilled.tsx index 72799de3f..03c1dad87 100644 --- a/src/IconQueryStatsRoundedFilled.tsx +++ b/src/IconQueryStatsRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconQueryStatsRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconQueryStatsRoundedFilled as default } +export default IconQueryStatsRoundedFilled diff --git a/src/IconQueryStatsSharp.tsx b/src/IconQueryStatsSharp.tsx index 4ef704feb..b533fb56e 100644 --- a/src/IconQueryStatsSharp.tsx +++ b/src/IconQueryStatsSharp.tsx @@ -8,4 +8,4 @@ const IconQueryStatsSharp: React.FC = ({ ...props }) => ( ) -export { IconQueryStatsSharp as default } +export default IconQueryStatsSharp diff --git a/src/IconQueryStatsSharpFilled.tsx b/src/IconQueryStatsSharpFilled.tsx index c3430ce1e..8657e257f 100644 --- a/src/IconQueryStatsSharpFilled.tsx +++ b/src/IconQueryStatsSharpFilled.tsx @@ -8,4 +8,4 @@ const IconQueryStatsSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconQueryStatsSharpFilled as default } +export default IconQueryStatsSharpFilled diff --git a/src/IconQuestionExchangeOutlined.tsx b/src/IconQuestionExchangeOutlined.tsx index 67558d9b3..8a780f0af 100644 --- a/src/IconQuestionExchangeOutlined.tsx +++ b/src/IconQuestionExchangeOutlined.tsx @@ -8,4 +8,4 @@ const IconQuestionExchangeOutlined: React.FC = ({ ...props }) => ( ) -export { IconQuestionExchangeOutlined as default } +export default IconQuestionExchangeOutlined diff --git a/src/IconQuestionExchangeOutlinedFilled.tsx b/src/IconQuestionExchangeOutlinedFilled.tsx index 46f543f67..0d8ec9cac 100644 --- a/src/IconQuestionExchangeOutlinedFilled.tsx +++ b/src/IconQuestionExchangeOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconQuestionExchangeOutlinedFilled: React.FC = ({ ) -export { IconQuestionExchangeOutlinedFilled as default } +export default IconQuestionExchangeOutlinedFilled diff --git a/src/IconQuestionExchangeRounded.tsx b/src/IconQuestionExchangeRounded.tsx index fe2010f98..5f6ef4a40 100644 --- a/src/IconQuestionExchangeRounded.tsx +++ b/src/IconQuestionExchangeRounded.tsx @@ -8,4 +8,4 @@ const IconQuestionExchangeRounded: React.FC = ({ ...props }) => ( ) -export { IconQuestionExchangeRounded as default } +export default IconQuestionExchangeRounded diff --git a/src/IconQuestionExchangeRoundedFilled.tsx b/src/IconQuestionExchangeRoundedFilled.tsx index 666de2590..78a0f6897 100644 --- a/src/IconQuestionExchangeRoundedFilled.tsx +++ b/src/IconQuestionExchangeRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconQuestionExchangeRoundedFilled: React.FC = ({ ) -export { IconQuestionExchangeRoundedFilled as default } +export default IconQuestionExchangeRoundedFilled diff --git a/src/IconQuestionExchangeSharp.tsx b/src/IconQuestionExchangeSharp.tsx index 7f893f902..5d71e1508 100644 --- a/src/IconQuestionExchangeSharp.tsx +++ b/src/IconQuestionExchangeSharp.tsx @@ -8,4 +8,4 @@ const IconQuestionExchangeSharp: React.FC = ({ ...props }) => ( ) -export { IconQuestionExchangeSharp as default } +export default IconQuestionExchangeSharp diff --git a/src/IconQuestionExchangeSharpFilled.tsx b/src/IconQuestionExchangeSharpFilled.tsx index 2160e5bc6..8d4baeb51 100644 --- a/src/IconQuestionExchangeSharpFilled.tsx +++ b/src/IconQuestionExchangeSharpFilled.tsx @@ -8,4 +8,4 @@ const IconQuestionExchangeSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconQuestionExchangeSharpFilled as default } +export default IconQuestionExchangeSharpFilled diff --git a/src/IconQuestionMarkOutlined.tsx b/src/IconQuestionMarkOutlined.tsx index e30d4181f..ac8bbdc8d 100644 --- a/src/IconQuestionMarkOutlined.tsx +++ b/src/IconQuestionMarkOutlined.tsx @@ -8,4 +8,4 @@ const IconQuestionMarkOutlined: React.FC = ({ ...props }) => ( ) -export { IconQuestionMarkOutlined as default } +export default IconQuestionMarkOutlined diff --git a/src/IconQuestionMarkOutlinedFilled.tsx b/src/IconQuestionMarkOutlinedFilled.tsx index 180528ad3..39d74c3e4 100644 --- a/src/IconQuestionMarkOutlinedFilled.tsx +++ b/src/IconQuestionMarkOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconQuestionMarkOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconQuestionMarkOutlinedFilled as default } +export default IconQuestionMarkOutlinedFilled diff --git a/src/IconQuestionMarkRounded.tsx b/src/IconQuestionMarkRounded.tsx index 85d6cb501..4736ddf4d 100644 --- a/src/IconQuestionMarkRounded.tsx +++ b/src/IconQuestionMarkRounded.tsx @@ -8,4 +8,4 @@ const IconQuestionMarkRounded: React.FC = ({ ...props }) => ( ) -export { IconQuestionMarkRounded as default } +export default IconQuestionMarkRounded diff --git a/src/IconQuestionMarkRoundedFilled.tsx b/src/IconQuestionMarkRoundedFilled.tsx index 35e58a727..a04316a25 100644 --- a/src/IconQuestionMarkRoundedFilled.tsx +++ b/src/IconQuestionMarkRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconQuestionMarkRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconQuestionMarkRoundedFilled as default } +export default IconQuestionMarkRoundedFilled diff --git a/src/IconQuestionMarkSharp.tsx b/src/IconQuestionMarkSharp.tsx index f81742927..412ba0f34 100644 --- a/src/IconQuestionMarkSharp.tsx +++ b/src/IconQuestionMarkSharp.tsx @@ -8,4 +8,4 @@ const IconQuestionMarkSharp: React.FC = ({ ...props }) => ( ) -export { IconQuestionMarkSharp as default } +export default IconQuestionMarkSharp diff --git a/src/IconQuestionMarkSharpFilled.tsx b/src/IconQuestionMarkSharpFilled.tsx index 675d07ef8..e7c2ec944 100644 --- a/src/IconQuestionMarkSharpFilled.tsx +++ b/src/IconQuestionMarkSharpFilled.tsx @@ -8,4 +8,4 @@ const IconQuestionMarkSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconQuestionMarkSharpFilled as default } +export default IconQuestionMarkSharpFilled diff --git a/src/IconQueueMusicOutlined.tsx b/src/IconQueueMusicOutlined.tsx index 751f7181f..15dbe0d6f 100644 --- a/src/IconQueueMusicOutlined.tsx +++ b/src/IconQueueMusicOutlined.tsx @@ -8,4 +8,4 @@ const IconQueueMusicOutlined: React.FC = ({ ...props }) => ( ) -export { IconQueueMusicOutlined as default } +export default IconQueueMusicOutlined diff --git a/src/IconQueueMusicOutlinedFilled.tsx b/src/IconQueueMusicOutlinedFilled.tsx index 0689b5296..f75881110 100644 --- a/src/IconQueueMusicOutlinedFilled.tsx +++ b/src/IconQueueMusicOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconQueueMusicOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconQueueMusicOutlinedFilled as default } +export default IconQueueMusicOutlinedFilled diff --git a/src/IconQueueMusicRounded.tsx b/src/IconQueueMusicRounded.tsx index 1598bc608..462f96a7f 100644 --- a/src/IconQueueMusicRounded.tsx +++ b/src/IconQueueMusicRounded.tsx @@ -8,4 +8,4 @@ const IconQueueMusicRounded: React.FC = ({ ...props }) => ( ) -export { IconQueueMusicRounded as default } +export default IconQueueMusicRounded diff --git a/src/IconQueueMusicRoundedFilled.tsx b/src/IconQueueMusicRoundedFilled.tsx index 03b7678aa..acbe58ebe 100644 --- a/src/IconQueueMusicRoundedFilled.tsx +++ b/src/IconQueueMusicRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconQueueMusicRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconQueueMusicRoundedFilled as default } +export default IconQueueMusicRoundedFilled diff --git a/src/IconQueueMusicSharp.tsx b/src/IconQueueMusicSharp.tsx index 236051f55..1034355aa 100644 --- a/src/IconQueueMusicSharp.tsx +++ b/src/IconQueueMusicSharp.tsx @@ -8,4 +8,4 @@ const IconQueueMusicSharp: React.FC = ({ ...props }) => ( ) -export { IconQueueMusicSharp as default } +export default IconQueueMusicSharp diff --git a/src/IconQueueMusicSharpFilled.tsx b/src/IconQueueMusicSharpFilled.tsx index 2cb9e0f5d..f77196bff 100644 --- a/src/IconQueueMusicSharpFilled.tsx +++ b/src/IconQueueMusicSharpFilled.tsx @@ -8,4 +8,4 @@ const IconQueueMusicSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconQueueMusicSharpFilled as default } +export default IconQueueMusicSharpFilled diff --git a/src/IconQueuePlayNextOutlined.tsx b/src/IconQueuePlayNextOutlined.tsx index 7ec7add5e..37762e537 100644 --- a/src/IconQueuePlayNextOutlined.tsx +++ b/src/IconQueuePlayNextOutlined.tsx @@ -8,4 +8,4 @@ const IconQueuePlayNextOutlined: React.FC = ({ ...props }) => ( ) -export { IconQueuePlayNextOutlined as default } +export default IconQueuePlayNextOutlined diff --git a/src/IconQueuePlayNextOutlinedFilled.tsx b/src/IconQueuePlayNextOutlinedFilled.tsx index ced4f8926..d947e94b5 100644 --- a/src/IconQueuePlayNextOutlinedFilled.tsx +++ b/src/IconQueuePlayNextOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconQueuePlayNextOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconQueuePlayNextOutlinedFilled as default } +export default IconQueuePlayNextOutlinedFilled diff --git a/src/IconQueuePlayNextRounded.tsx b/src/IconQueuePlayNextRounded.tsx index 4aebfbe82..eb7b6455f 100644 --- a/src/IconQueuePlayNextRounded.tsx +++ b/src/IconQueuePlayNextRounded.tsx @@ -8,4 +8,4 @@ const IconQueuePlayNextRounded: React.FC = ({ ...props }) => ( ) -export { IconQueuePlayNextRounded as default } +export default IconQueuePlayNextRounded diff --git a/src/IconQueuePlayNextRoundedFilled.tsx b/src/IconQueuePlayNextRoundedFilled.tsx index ef233e63f..0412a2561 100644 --- a/src/IconQueuePlayNextRoundedFilled.tsx +++ b/src/IconQueuePlayNextRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconQueuePlayNextRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconQueuePlayNextRoundedFilled as default } +export default IconQueuePlayNextRoundedFilled diff --git a/src/IconQueuePlayNextSharp.tsx b/src/IconQueuePlayNextSharp.tsx index 7dcb2480e..8d9da27e9 100644 --- a/src/IconQueuePlayNextSharp.tsx +++ b/src/IconQueuePlayNextSharp.tsx @@ -8,4 +8,4 @@ const IconQueuePlayNextSharp: React.FC = ({ ...props }) => ( ) -export { IconQueuePlayNextSharp as default } +export default IconQueuePlayNextSharp diff --git a/src/IconQueuePlayNextSharpFilled.tsx b/src/IconQueuePlayNextSharpFilled.tsx index 595bbcb1d..ede301dbf 100644 --- a/src/IconQueuePlayNextSharpFilled.tsx +++ b/src/IconQueuePlayNextSharpFilled.tsx @@ -8,4 +8,4 @@ const IconQueuePlayNextSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconQueuePlayNextSharpFilled as default } +export default IconQueuePlayNextSharpFilled diff --git a/src/IconQuickPhrasesOutlined.tsx b/src/IconQuickPhrasesOutlined.tsx index faea4089b..3864f31ac 100644 --- a/src/IconQuickPhrasesOutlined.tsx +++ b/src/IconQuickPhrasesOutlined.tsx @@ -8,4 +8,4 @@ const IconQuickPhrasesOutlined: React.FC = ({ ...props }) => ( ) -export { IconQuickPhrasesOutlined as default } +export default IconQuickPhrasesOutlined diff --git a/src/IconQuickPhrasesOutlinedFilled.tsx b/src/IconQuickPhrasesOutlinedFilled.tsx index 5cbd8ac9e..80eb993c7 100644 --- a/src/IconQuickPhrasesOutlinedFilled.tsx +++ b/src/IconQuickPhrasesOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconQuickPhrasesOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconQuickPhrasesOutlinedFilled as default } +export default IconQuickPhrasesOutlinedFilled diff --git a/src/IconQuickPhrasesRounded.tsx b/src/IconQuickPhrasesRounded.tsx index cf15921e9..fce4f07eb 100644 --- a/src/IconQuickPhrasesRounded.tsx +++ b/src/IconQuickPhrasesRounded.tsx @@ -8,4 +8,4 @@ const IconQuickPhrasesRounded: React.FC = ({ ...props }) => ( ) -export { IconQuickPhrasesRounded as default } +export default IconQuickPhrasesRounded diff --git a/src/IconQuickPhrasesRoundedFilled.tsx b/src/IconQuickPhrasesRoundedFilled.tsx index 0cc63f2a2..1366a0027 100644 --- a/src/IconQuickPhrasesRoundedFilled.tsx +++ b/src/IconQuickPhrasesRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconQuickPhrasesRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconQuickPhrasesRoundedFilled as default } +export default IconQuickPhrasesRoundedFilled diff --git a/src/IconQuickPhrasesSharp.tsx b/src/IconQuickPhrasesSharp.tsx index 89dfedb3f..f64db6825 100644 --- a/src/IconQuickPhrasesSharp.tsx +++ b/src/IconQuickPhrasesSharp.tsx @@ -8,4 +8,4 @@ const IconQuickPhrasesSharp: React.FC = ({ ...props }) => ( ) -export { IconQuickPhrasesSharp as default } +export default IconQuickPhrasesSharp diff --git a/src/IconQuickPhrasesSharpFilled.tsx b/src/IconQuickPhrasesSharpFilled.tsx index c09441418..14881f0c0 100644 --- a/src/IconQuickPhrasesSharpFilled.tsx +++ b/src/IconQuickPhrasesSharpFilled.tsx @@ -8,4 +8,4 @@ const IconQuickPhrasesSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconQuickPhrasesSharpFilled as default } +export default IconQuickPhrasesSharpFilled diff --git a/src/IconQuickReferenceAllOutlined.tsx b/src/IconQuickReferenceAllOutlined.tsx index 6387077ee..174da039c 100644 --- a/src/IconQuickReferenceAllOutlined.tsx +++ b/src/IconQuickReferenceAllOutlined.tsx @@ -8,4 +8,4 @@ const IconQuickReferenceAllOutlined: React.FC = ({ ...props }) => ( ) -export { IconQuickReferenceAllOutlined as default } +export default IconQuickReferenceAllOutlined diff --git a/src/IconQuickReferenceAllOutlinedFilled.tsx b/src/IconQuickReferenceAllOutlinedFilled.tsx index 9e0eb988d..22a3095c2 100644 --- a/src/IconQuickReferenceAllOutlinedFilled.tsx +++ b/src/IconQuickReferenceAllOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconQuickReferenceAllOutlinedFilled: React.FC = ({ ) -export { IconQuickReferenceAllOutlinedFilled as default } +export default IconQuickReferenceAllOutlinedFilled diff --git a/src/IconQuickReferenceAllRounded.tsx b/src/IconQuickReferenceAllRounded.tsx index c3664cd27..0b430384b 100644 --- a/src/IconQuickReferenceAllRounded.tsx +++ b/src/IconQuickReferenceAllRounded.tsx @@ -8,4 +8,4 @@ const IconQuickReferenceAllRounded: React.FC = ({ ...props }) => ( ) -export { IconQuickReferenceAllRounded as default } +export default IconQuickReferenceAllRounded diff --git a/src/IconQuickReferenceAllRoundedFilled.tsx b/src/IconQuickReferenceAllRoundedFilled.tsx index 61f9461d6..834f2a0f0 100644 --- a/src/IconQuickReferenceAllRoundedFilled.tsx +++ b/src/IconQuickReferenceAllRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconQuickReferenceAllRoundedFilled: React.FC = ({ ) -export { IconQuickReferenceAllRoundedFilled as default } +export default IconQuickReferenceAllRoundedFilled diff --git a/src/IconQuickReferenceAllSharp.tsx b/src/IconQuickReferenceAllSharp.tsx index d86509d97..18f99aa52 100644 --- a/src/IconQuickReferenceAllSharp.tsx +++ b/src/IconQuickReferenceAllSharp.tsx @@ -8,4 +8,4 @@ const IconQuickReferenceAllSharp: React.FC = ({ ...props }) => ( ) -export { IconQuickReferenceAllSharp as default } +export default IconQuickReferenceAllSharp diff --git a/src/IconQuickReferenceAllSharpFilled.tsx b/src/IconQuickReferenceAllSharpFilled.tsx index 7743a6ecc..fe2b6ad3e 100644 --- a/src/IconQuickReferenceAllSharpFilled.tsx +++ b/src/IconQuickReferenceAllSharpFilled.tsx @@ -10,4 +10,4 @@ const IconQuickReferenceAllSharpFilled: React.FC = ({ ) -export { IconQuickReferenceAllSharpFilled as default } +export default IconQuickReferenceAllSharpFilled diff --git a/src/IconQuickReferenceOutlined.tsx b/src/IconQuickReferenceOutlined.tsx index 28e8a6694..8aa073126 100644 --- a/src/IconQuickReferenceOutlined.tsx +++ b/src/IconQuickReferenceOutlined.tsx @@ -8,4 +8,4 @@ const IconQuickReferenceOutlined: React.FC = ({ ...props }) => ( ) -export { IconQuickReferenceOutlined as default } +export default IconQuickReferenceOutlined diff --git a/src/IconQuickReferenceOutlinedFilled.tsx b/src/IconQuickReferenceOutlinedFilled.tsx index ab71a9f1f..96edd38c4 100644 --- a/src/IconQuickReferenceOutlinedFilled.tsx +++ b/src/IconQuickReferenceOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconQuickReferenceOutlinedFilled: React.FC = ({ ) -export { IconQuickReferenceOutlinedFilled as default } +export default IconQuickReferenceOutlinedFilled diff --git a/src/IconQuickReferenceRounded.tsx b/src/IconQuickReferenceRounded.tsx index 7552abf22..bc0b1843b 100644 --- a/src/IconQuickReferenceRounded.tsx +++ b/src/IconQuickReferenceRounded.tsx @@ -8,4 +8,4 @@ const IconQuickReferenceRounded: React.FC = ({ ...props }) => ( ) -export { IconQuickReferenceRounded as default } +export default IconQuickReferenceRounded diff --git a/src/IconQuickReferenceRoundedFilled.tsx b/src/IconQuickReferenceRoundedFilled.tsx index 8c50cf6b3..7a5ce1aa7 100644 --- a/src/IconQuickReferenceRoundedFilled.tsx +++ b/src/IconQuickReferenceRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconQuickReferenceRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconQuickReferenceRoundedFilled as default } +export default IconQuickReferenceRoundedFilled diff --git a/src/IconQuickReferenceSharp.tsx b/src/IconQuickReferenceSharp.tsx index 776b72786..8324b4806 100644 --- a/src/IconQuickReferenceSharp.tsx +++ b/src/IconQuickReferenceSharp.tsx @@ -8,4 +8,4 @@ const IconQuickReferenceSharp: React.FC = ({ ...props }) => ( ) -export { IconQuickReferenceSharp as default } +export default IconQuickReferenceSharp diff --git a/src/IconQuickReferenceSharpFilled.tsx b/src/IconQuickReferenceSharpFilled.tsx index 7d69e7428..9cb7e4368 100644 --- a/src/IconQuickReferenceSharpFilled.tsx +++ b/src/IconQuickReferenceSharpFilled.tsx @@ -8,4 +8,4 @@ const IconQuickReferenceSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconQuickReferenceSharpFilled as default } +export default IconQuickReferenceSharpFilled diff --git a/src/IconQuickReorderOutlined.tsx b/src/IconQuickReorderOutlined.tsx index abd3b0670..008d13c5b 100644 --- a/src/IconQuickReorderOutlined.tsx +++ b/src/IconQuickReorderOutlined.tsx @@ -8,4 +8,4 @@ const IconQuickReorderOutlined: React.FC = ({ ...props }) => ( ) -export { IconQuickReorderOutlined as default } +export default IconQuickReorderOutlined diff --git a/src/IconQuickReorderOutlinedFilled.tsx b/src/IconQuickReorderOutlinedFilled.tsx index 5f2161359..2f9d2c894 100644 --- a/src/IconQuickReorderOutlinedFilled.tsx +++ b/src/IconQuickReorderOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconQuickReorderOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconQuickReorderOutlinedFilled as default } +export default IconQuickReorderOutlinedFilled diff --git a/src/IconQuickReorderRounded.tsx b/src/IconQuickReorderRounded.tsx index debb13ff8..5a2421526 100644 --- a/src/IconQuickReorderRounded.tsx +++ b/src/IconQuickReorderRounded.tsx @@ -8,4 +8,4 @@ const IconQuickReorderRounded: React.FC = ({ ...props }) => ( ) -export { IconQuickReorderRounded as default } +export default IconQuickReorderRounded diff --git a/src/IconQuickReorderRoundedFilled.tsx b/src/IconQuickReorderRoundedFilled.tsx index 064949a9a..ea9a648a3 100644 --- a/src/IconQuickReorderRoundedFilled.tsx +++ b/src/IconQuickReorderRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconQuickReorderRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconQuickReorderRoundedFilled as default } +export default IconQuickReorderRoundedFilled diff --git a/src/IconQuickReorderSharp.tsx b/src/IconQuickReorderSharp.tsx index d9e5dae96..890317dc2 100644 --- a/src/IconQuickReorderSharp.tsx +++ b/src/IconQuickReorderSharp.tsx @@ -8,4 +8,4 @@ const IconQuickReorderSharp: React.FC = ({ ...props }) => ( ) -export { IconQuickReorderSharp as default } +export default IconQuickReorderSharp diff --git a/src/IconQuickReorderSharpFilled.tsx b/src/IconQuickReorderSharpFilled.tsx index 5715b107b..b418b9232 100644 --- a/src/IconQuickReorderSharpFilled.tsx +++ b/src/IconQuickReorderSharpFilled.tsx @@ -8,4 +8,4 @@ const IconQuickReorderSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconQuickReorderSharpFilled as default } +export default IconQuickReorderSharpFilled diff --git a/src/IconQuickreplyOutlined.tsx b/src/IconQuickreplyOutlined.tsx index 8f4f39b73..10e76af25 100644 --- a/src/IconQuickreplyOutlined.tsx +++ b/src/IconQuickreplyOutlined.tsx @@ -8,4 +8,4 @@ const IconQuickreplyOutlined: React.FC = ({ ...props }) => ( ) -export { IconQuickreplyOutlined as default } +export default IconQuickreplyOutlined diff --git a/src/IconQuickreplyOutlinedFilled.tsx b/src/IconQuickreplyOutlinedFilled.tsx index 9f590b64f..85ceea653 100644 --- a/src/IconQuickreplyOutlinedFilled.tsx +++ b/src/IconQuickreplyOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconQuickreplyOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconQuickreplyOutlinedFilled as default } +export default IconQuickreplyOutlinedFilled diff --git a/src/IconQuickreplyRounded.tsx b/src/IconQuickreplyRounded.tsx index c8d35aced..ce421f22d 100644 --- a/src/IconQuickreplyRounded.tsx +++ b/src/IconQuickreplyRounded.tsx @@ -8,4 +8,4 @@ const IconQuickreplyRounded: React.FC = ({ ...props }) => ( ) -export { IconQuickreplyRounded as default } +export default IconQuickreplyRounded diff --git a/src/IconQuickreplyRoundedFilled.tsx b/src/IconQuickreplyRoundedFilled.tsx index 5afe75dda..cffabde3a 100644 --- a/src/IconQuickreplyRoundedFilled.tsx +++ b/src/IconQuickreplyRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconQuickreplyRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconQuickreplyRoundedFilled as default } +export default IconQuickreplyRoundedFilled diff --git a/src/IconQuickreplySharp.tsx b/src/IconQuickreplySharp.tsx index 76edbd0cb..850c84c17 100644 --- a/src/IconQuickreplySharp.tsx +++ b/src/IconQuickreplySharp.tsx @@ -8,4 +8,4 @@ const IconQuickreplySharp: React.FC = ({ ...props }) => ( ) -export { IconQuickreplySharp as default } +export default IconQuickreplySharp diff --git a/src/IconQuickreplySharpFilled.tsx b/src/IconQuickreplySharpFilled.tsx index c1c62b81f..1c544bbe6 100644 --- a/src/IconQuickreplySharpFilled.tsx +++ b/src/IconQuickreplySharpFilled.tsx @@ -8,4 +8,4 @@ const IconQuickreplySharpFilled: React.FC = ({ ...props }) => ( ) -export { IconQuickreplySharpFilled as default } +export default IconQuickreplySharpFilled diff --git a/src/IconQuizOutlined.tsx b/src/IconQuizOutlined.tsx index 98dc9c484..fcff59084 100644 --- a/src/IconQuizOutlined.tsx +++ b/src/IconQuizOutlined.tsx @@ -8,4 +8,4 @@ const IconQuizOutlined: React.FC = ({ ...props }) => ( ) -export { IconQuizOutlined as default } +export default IconQuizOutlined diff --git a/src/IconQuizOutlinedFilled.tsx b/src/IconQuizOutlinedFilled.tsx index 011d42b61..7723a5a13 100644 --- a/src/IconQuizOutlinedFilled.tsx +++ b/src/IconQuizOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconQuizOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconQuizOutlinedFilled as default } +export default IconQuizOutlinedFilled diff --git a/src/IconQuizRounded.tsx b/src/IconQuizRounded.tsx index 345b5b563..e47ff1f90 100644 --- a/src/IconQuizRounded.tsx +++ b/src/IconQuizRounded.tsx @@ -8,4 +8,4 @@ const IconQuizRounded: React.FC = ({ ...props }) => ( ) -export { IconQuizRounded as default } +export default IconQuizRounded diff --git a/src/IconQuizRoundedFilled.tsx b/src/IconQuizRoundedFilled.tsx index a70191f21..acc220fd8 100644 --- a/src/IconQuizRoundedFilled.tsx +++ b/src/IconQuizRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconQuizRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconQuizRoundedFilled as default } +export default IconQuizRoundedFilled diff --git a/src/IconQuizSharp.tsx b/src/IconQuizSharp.tsx index 5836ddd43..662c09d9a 100644 --- a/src/IconQuizSharp.tsx +++ b/src/IconQuizSharp.tsx @@ -8,4 +8,4 @@ const IconQuizSharp: React.FC = ({ ...props }) => ( ) -export { IconQuizSharp as default } +export default IconQuizSharp diff --git a/src/IconQuizSharpFilled.tsx b/src/IconQuizSharpFilled.tsx index 904cdb19f..403d2196e 100644 --- a/src/IconQuizSharpFilled.tsx +++ b/src/IconQuizSharpFilled.tsx @@ -8,4 +8,4 @@ const IconQuizSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconQuizSharpFilled as default } +export default IconQuizSharpFilled diff --git a/src/IconRMobiledataOutlined.tsx b/src/IconRMobiledataOutlined.tsx index 73fc8cf0b..3dec4e23f 100644 --- a/src/IconRMobiledataOutlined.tsx +++ b/src/IconRMobiledataOutlined.tsx @@ -8,4 +8,4 @@ const IconRMobiledataOutlined: React.FC = ({ ...props }) => ( ) -export { IconRMobiledataOutlined as default } +export default IconRMobiledataOutlined diff --git a/src/IconRMobiledataOutlinedFilled.tsx b/src/IconRMobiledataOutlinedFilled.tsx index 75288304a..fed73fc91 100644 --- a/src/IconRMobiledataOutlinedFilled.tsx +++ b/src/IconRMobiledataOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconRMobiledataOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconRMobiledataOutlinedFilled as default } +export default IconRMobiledataOutlinedFilled diff --git a/src/IconRMobiledataRounded.tsx b/src/IconRMobiledataRounded.tsx index 7deaed0c2..bd3e6754f 100644 --- a/src/IconRMobiledataRounded.tsx +++ b/src/IconRMobiledataRounded.tsx @@ -8,4 +8,4 @@ const IconRMobiledataRounded: React.FC = ({ ...props }) => ( ) -export { IconRMobiledataRounded as default } +export default IconRMobiledataRounded diff --git a/src/IconRMobiledataRoundedFilled.tsx b/src/IconRMobiledataRoundedFilled.tsx index 17ad0809f..f0da14047 100644 --- a/src/IconRMobiledataRoundedFilled.tsx +++ b/src/IconRMobiledataRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconRMobiledataRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconRMobiledataRoundedFilled as default } +export default IconRMobiledataRoundedFilled diff --git a/src/IconRMobiledataSharp.tsx b/src/IconRMobiledataSharp.tsx index 82d6fed12..dcb41574a 100644 --- a/src/IconRMobiledataSharp.tsx +++ b/src/IconRMobiledataSharp.tsx @@ -8,4 +8,4 @@ const IconRMobiledataSharp: React.FC = ({ ...props }) => ( ) -export { IconRMobiledataSharp as default } +export default IconRMobiledataSharp diff --git a/src/IconRMobiledataSharpFilled.tsx b/src/IconRMobiledataSharpFilled.tsx index 64492d03f..d44231efa 100644 --- a/src/IconRMobiledataSharpFilled.tsx +++ b/src/IconRMobiledataSharpFilled.tsx @@ -8,4 +8,4 @@ const IconRMobiledataSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconRMobiledataSharpFilled as default } +export default IconRMobiledataSharpFilled diff --git a/src/IconRadarOutlined.tsx b/src/IconRadarOutlined.tsx index a8ced4b4d..8aa307935 100644 --- a/src/IconRadarOutlined.tsx +++ b/src/IconRadarOutlined.tsx @@ -8,4 +8,4 @@ const IconRadarOutlined: React.FC = ({ ...props }) => ( ) -export { IconRadarOutlined as default } +export default IconRadarOutlined diff --git a/src/IconRadarOutlinedFilled.tsx b/src/IconRadarOutlinedFilled.tsx index 8faba460e..9dae959af 100644 --- a/src/IconRadarOutlinedFilled.tsx +++ b/src/IconRadarOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconRadarOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconRadarOutlinedFilled as default } +export default IconRadarOutlinedFilled diff --git a/src/IconRadarRounded.tsx b/src/IconRadarRounded.tsx index cfb6ca8eb..e77c14434 100644 --- a/src/IconRadarRounded.tsx +++ b/src/IconRadarRounded.tsx @@ -8,4 +8,4 @@ const IconRadarRounded: React.FC = ({ ...props }) => ( ) -export { IconRadarRounded as default } +export default IconRadarRounded diff --git a/src/IconRadarRoundedFilled.tsx b/src/IconRadarRoundedFilled.tsx index a991ef100..cdb2f094c 100644 --- a/src/IconRadarRoundedFilled.tsx +++ b/src/IconRadarRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconRadarRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconRadarRoundedFilled as default } +export default IconRadarRoundedFilled diff --git a/src/IconRadarSharp.tsx b/src/IconRadarSharp.tsx index a88048df5..c40527092 100644 --- a/src/IconRadarSharp.tsx +++ b/src/IconRadarSharp.tsx @@ -8,4 +8,4 @@ const IconRadarSharp: React.FC = ({ ...props }) => ( ) -export { IconRadarSharp as default } +export default IconRadarSharp diff --git a/src/IconRadarSharpFilled.tsx b/src/IconRadarSharpFilled.tsx index 4d8780cc2..4c88b9fb4 100644 --- a/src/IconRadarSharpFilled.tsx +++ b/src/IconRadarSharpFilled.tsx @@ -8,4 +8,4 @@ const IconRadarSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconRadarSharpFilled as default } +export default IconRadarSharpFilled diff --git a/src/IconRadioButtonCheckedOutlined.tsx b/src/IconRadioButtonCheckedOutlined.tsx index ee8d43d51..bb172156d 100644 --- a/src/IconRadioButtonCheckedOutlined.tsx +++ b/src/IconRadioButtonCheckedOutlined.tsx @@ -8,4 +8,4 @@ const IconRadioButtonCheckedOutlined: React.FC = ({ ...props }) => ( ) -export { IconRadioButtonCheckedOutlined as default } +export default IconRadioButtonCheckedOutlined diff --git a/src/IconRadioButtonCheckedOutlinedFilled.tsx b/src/IconRadioButtonCheckedOutlinedFilled.tsx index 754735f06..03edba528 100644 --- a/src/IconRadioButtonCheckedOutlinedFilled.tsx +++ b/src/IconRadioButtonCheckedOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconRadioButtonCheckedOutlinedFilled: React.FC = ({ ) -export { IconRadioButtonCheckedOutlinedFilled as default } +export default IconRadioButtonCheckedOutlinedFilled diff --git a/src/IconRadioButtonCheckedRounded.tsx b/src/IconRadioButtonCheckedRounded.tsx index 007b1cfa3..46f1c5f19 100644 --- a/src/IconRadioButtonCheckedRounded.tsx +++ b/src/IconRadioButtonCheckedRounded.tsx @@ -8,4 +8,4 @@ const IconRadioButtonCheckedRounded: React.FC = ({ ...props }) => ( ) -export { IconRadioButtonCheckedRounded as default } +export default IconRadioButtonCheckedRounded diff --git a/src/IconRadioButtonCheckedRoundedFilled.tsx b/src/IconRadioButtonCheckedRoundedFilled.tsx index df6fd7b5b..3822d3df8 100644 --- a/src/IconRadioButtonCheckedRoundedFilled.tsx +++ b/src/IconRadioButtonCheckedRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconRadioButtonCheckedRoundedFilled: React.FC = ({ ) -export { IconRadioButtonCheckedRoundedFilled as default } +export default IconRadioButtonCheckedRoundedFilled diff --git a/src/IconRadioButtonCheckedSharp.tsx b/src/IconRadioButtonCheckedSharp.tsx index b640ce60a..d6a55ed61 100644 --- a/src/IconRadioButtonCheckedSharp.tsx +++ b/src/IconRadioButtonCheckedSharp.tsx @@ -8,4 +8,4 @@ const IconRadioButtonCheckedSharp: React.FC = ({ ...props }) => ( ) -export { IconRadioButtonCheckedSharp as default } +export default IconRadioButtonCheckedSharp diff --git a/src/IconRadioButtonCheckedSharpFilled.tsx b/src/IconRadioButtonCheckedSharpFilled.tsx index e3b31928b..1b9599905 100644 --- a/src/IconRadioButtonCheckedSharpFilled.tsx +++ b/src/IconRadioButtonCheckedSharpFilled.tsx @@ -10,4 +10,4 @@ const IconRadioButtonCheckedSharpFilled: React.FC = ({ ) -export { IconRadioButtonCheckedSharpFilled as default } +export default IconRadioButtonCheckedSharpFilled diff --git a/src/IconRadioButtonPartialOutlined.tsx b/src/IconRadioButtonPartialOutlined.tsx index f96cbc2dc..c07ad5fc3 100644 --- a/src/IconRadioButtonPartialOutlined.tsx +++ b/src/IconRadioButtonPartialOutlined.tsx @@ -8,4 +8,4 @@ const IconRadioButtonPartialOutlined: React.FC = ({ ...props }) => ( ) -export { IconRadioButtonPartialOutlined as default } +export default IconRadioButtonPartialOutlined diff --git a/src/IconRadioButtonPartialOutlinedFilled.tsx b/src/IconRadioButtonPartialOutlinedFilled.tsx index 7f03965ca..89a816ff6 100644 --- a/src/IconRadioButtonPartialOutlinedFilled.tsx +++ b/src/IconRadioButtonPartialOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconRadioButtonPartialOutlinedFilled: React.FC = ({ ) -export { IconRadioButtonPartialOutlinedFilled as default } +export default IconRadioButtonPartialOutlinedFilled diff --git a/src/IconRadioButtonPartialRounded.tsx b/src/IconRadioButtonPartialRounded.tsx index bc7c3f916..e03ccb868 100644 --- a/src/IconRadioButtonPartialRounded.tsx +++ b/src/IconRadioButtonPartialRounded.tsx @@ -8,4 +8,4 @@ const IconRadioButtonPartialRounded: React.FC = ({ ...props }) => ( ) -export { IconRadioButtonPartialRounded as default } +export default IconRadioButtonPartialRounded diff --git a/src/IconRadioButtonPartialRoundedFilled.tsx b/src/IconRadioButtonPartialRoundedFilled.tsx index 951e4577b..b688e23a7 100644 --- a/src/IconRadioButtonPartialRoundedFilled.tsx +++ b/src/IconRadioButtonPartialRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconRadioButtonPartialRoundedFilled: React.FC = ({ ) -export { IconRadioButtonPartialRoundedFilled as default } +export default IconRadioButtonPartialRoundedFilled diff --git a/src/IconRadioButtonPartialSharp.tsx b/src/IconRadioButtonPartialSharp.tsx index 2bbb0ecad..eab71faaa 100644 --- a/src/IconRadioButtonPartialSharp.tsx +++ b/src/IconRadioButtonPartialSharp.tsx @@ -8,4 +8,4 @@ const IconRadioButtonPartialSharp: React.FC = ({ ...props }) => ( ) -export { IconRadioButtonPartialSharp as default } +export default IconRadioButtonPartialSharp diff --git a/src/IconRadioButtonPartialSharpFilled.tsx b/src/IconRadioButtonPartialSharpFilled.tsx index 727894390..153c33cb3 100644 --- a/src/IconRadioButtonPartialSharpFilled.tsx +++ b/src/IconRadioButtonPartialSharpFilled.tsx @@ -10,4 +10,4 @@ const IconRadioButtonPartialSharpFilled: React.FC = ({ ) -export { IconRadioButtonPartialSharpFilled as default } +export default IconRadioButtonPartialSharpFilled diff --git a/src/IconRadioButtonUncheckedOutlined.tsx b/src/IconRadioButtonUncheckedOutlined.tsx index 58c905677..6df5d0c48 100644 --- a/src/IconRadioButtonUncheckedOutlined.tsx +++ b/src/IconRadioButtonUncheckedOutlined.tsx @@ -10,4 +10,4 @@ const IconRadioButtonUncheckedOutlined: React.FC = ({ ) -export { IconRadioButtonUncheckedOutlined as default } +export default IconRadioButtonUncheckedOutlined diff --git a/src/IconRadioButtonUncheckedOutlinedFilled.tsx b/src/IconRadioButtonUncheckedOutlinedFilled.tsx index 7d7eab99a..21e542207 100644 --- a/src/IconRadioButtonUncheckedOutlinedFilled.tsx +++ b/src/IconRadioButtonUncheckedOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconRadioButtonUncheckedOutlinedFilled: React.FC = ({ ) -export { IconRadioButtonUncheckedOutlinedFilled as default } +export default IconRadioButtonUncheckedOutlinedFilled diff --git a/src/IconRadioButtonUncheckedRounded.tsx b/src/IconRadioButtonUncheckedRounded.tsx index ab01df055..c9acea8aa 100644 --- a/src/IconRadioButtonUncheckedRounded.tsx +++ b/src/IconRadioButtonUncheckedRounded.tsx @@ -8,4 +8,4 @@ const IconRadioButtonUncheckedRounded: React.FC = ({ ...props }) => ( ) -export { IconRadioButtonUncheckedRounded as default } +export default IconRadioButtonUncheckedRounded diff --git a/src/IconRadioButtonUncheckedRoundedFilled.tsx b/src/IconRadioButtonUncheckedRoundedFilled.tsx index e68326049..14a20b373 100644 --- a/src/IconRadioButtonUncheckedRoundedFilled.tsx +++ b/src/IconRadioButtonUncheckedRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconRadioButtonUncheckedRoundedFilled: React.FC = ({ ) -export { IconRadioButtonUncheckedRoundedFilled as default } +export default IconRadioButtonUncheckedRoundedFilled diff --git a/src/IconRadioButtonUncheckedSharp.tsx b/src/IconRadioButtonUncheckedSharp.tsx index ad3c13928..3791d5042 100644 --- a/src/IconRadioButtonUncheckedSharp.tsx +++ b/src/IconRadioButtonUncheckedSharp.tsx @@ -8,4 +8,4 @@ const IconRadioButtonUncheckedSharp: React.FC = ({ ...props }) => ( ) -export { IconRadioButtonUncheckedSharp as default } +export default IconRadioButtonUncheckedSharp diff --git a/src/IconRadioButtonUncheckedSharpFilled.tsx b/src/IconRadioButtonUncheckedSharpFilled.tsx index dae0eb850..7ef96866c 100644 --- a/src/IconRadioButtonUncheckedSharpFilled.tsx +++ b/src/IconRadioButtonUncheckedSharpFilled.tsx @@ -10,4 +10,4 @@ const IconRadioButtonUncheckedSharpFilled: React.FC = ({ ) -export { IconRadioButtonUncheckedSharpFilled as default } +export default IconRadioButtonUncheckedSharpFilled diff --git a/src/IconRadioOutlined.tsx b/src/IconRadioOutlined.tsx index 1f1a2862a..e49548065 100644 --- a/src/IconRadioOutlined.tsx +++ b/src/IconRadioOutlined.tsx @@ -8,4 +8,4 @@ const IconRadioOutlined: React.FC = ({ ...props }) => ( ) -export { IconRadioOutlined as default } +export default IconRadioOutlined diff --git a/src/IconRadioOutlinedFilled.tsx b/src/IconRadioOutlinedFilled.tsx index e577f58e7..2300fc877 100644 --- a/src/IconRadioOutlinedFilled.tsx +++ b/src/IconRadioOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconRadioOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconRadioOutlinedFilled as default } +export default IconRadioOutlinedFilled diff --git a/src/IconRadioRounded.tsx b/src/IconRadioRounded.tsx index c3af96bd4..2f7e7a88d 100644 --- a/src/IconRadioRounded.tsx +++ b/src/IconRadioRounded.tsx @@ -8,4 +8,4 @@ const IconRadioRounded: React.FC = ({ ...props }) => ( ) -export { IconRadioRounded as default } +export default IconRadioRounded diff --git a/src/IconRadioRoundedFilled.tsx b/src/IconRadioRoundedFilled.tsx index 8c5b98ba4..eab2d4216 100644 --- a/src/IconRadioRoundedFilled.tsx +++ b/src/IconRadioRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconRadioRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconRadioRoundedFilled as default } +export default IconRadioRoundedFilled diff --git a/src/IconRadioSharp.tsx b/src/IconRadioSharp.tsx index 5a9d58ab3..10d378196 100644 --- a/src/IconRadioSharp.tsx +++ b/src/IconRadioSharp.tsx @@ -8,4 +8,4 @@ const IconRadioSharp: React.FC = ({ ...props }) => ( ) -export { IconRadioSharp as default } +export default IconRadioSharp diff --git a/src/IconRadioSharpFilled.tsx b/src/IconRadioSharpFilled.tsx index 0f743b597..1ef3a8745 100644 --- a/src/IconRadioSharpFilled.tsx +++ b/src/IconRadioSharpFilled.tsx @@ -8,4 +8,4 @@ const IconRadioSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconRadioSharpFilled as default } +export default IconRadioSharpFilled diff --git a/src/IconRadiologyOutlined.tsx b/src/IconRadiologyOutlined.tsx index 44f9075a1..2e8c81ae1 100644 --- a/src/IconRadiologyOutlined.tsx +++ b/src/IconRadiologyOutlined.tsx @@ -8,4 +8,4 @@ const IconRadiologyOutlined: React.FC = ({ ...props }) => ( ) -export { IconRadiologyOutlined as default } +export default IconRadiologyOutlined diff --git a/src/IconRadiologyOutlinedFilled.tsx b/src/IconRadiologyOutlinedFilled.tsx index b57992a25..dac1dd9ab 100644 --- a/src/IconRadiologyOutlinedFilled.tsx +++ b/src/IconRadiologyOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconRadiologyOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconRadiologyOutlinedFilled as default } +export default IconRadiologyOutlinedFilled diff --git a/src/IconRadiologyRounded.tsx b/src/IconRadiologyRounded.tsx index f45633f44..d11ac9703 100644 --- a/src/IconRadiologyRounded.tsx +++ b/src/IconRadiologyRounded.tsx @@ -8,4 +8,4 @@ const IconRadiologyRounded: React.FC = ({ ...props }) => ( ) -export { IconRadiologyRounded as default } +export default IconRadiologyRounded diff --git a/src/IconRadiologyRoundedFilled.tsx b/src/IconRadiologyRoundedFilled.tsx index e1e5243cc..21282e621 100644 --- a/src/IconRadiologyRoundedFilled.tsx +++ b/src/IconRadiologyRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconRadiologyRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconRadiologyRoundedFilled as default } +export default IconRadiologyRoundedFilled diff --git a/src/IconRadiologySharp.tsx b/src/IconRadiologySharp.tsx index b0c093d54..461277345 100644 --- a/src/IconRadiologySharp.tsx +++ b/src/IconRadiologySharp.tsx @@ -8,4 +8,4 @@ const IconRadiologySharp: React.FC = ({ ...props }) => ( ) -export { IconRadiologySharp as default } +export default IconRadiologySharp diff --git a/src/IconRadiologySharpFilled.tsx b/src/IconRadiologySharpFilled.tsx index b681b3ebf..819103391 100644 --- a/src/IconRadiologySharpFilled.tsx +++ b/src/IconRadiologySharpFilled.tsx @@ -8,4 +8,4 @@ const IconRadiologySharpFilled: React.FC = ({ ...props }) => ( ) -export { IconRadiologySharpFilled as default } +export default IconRadiologySharpFilled diff --git a/src/IconRailwayAlert2Outlined.tsx b/src/IconRailwayAlert2Outlined.tsx index 6e0601c51..79615443a 100644 --- a/src/IconRailwayAlert2Outlined.tsx +++ b/src/IconRailwayAlert2Outlined.tsx @@ -8,4 +8,4 @@ const IconRailwayAlert2Outlined: React.FC = ({ ...props }) => ( ) -export { IconRailwayAlert2Outlined as default } +export default IconRailwayAlert2Outlined diff --git a/src/IconRailwayAlert2OutlinedFilled.tsx b/src/IconRailwayAlert2OutlinedFilled.tsx index 96552f465..89c49da28 100644 --- a/src/IconRailwayAlert2OutlinedFilled.tsx +++ b/src/IconRailwayAlert2OutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconRailwayAlert2OutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconRailwayAlert2OutlinedFilled as default } +export default IconRailwayAlert2OutlinedFilled diff --git a/src/IconRailwayAlert2Rounded.tsx b/src/IconRailwayAlert2Rounded.tsx index 431511f34..34767c7e1 100644 --- a/src/IconRailwayAlert2Rounded.tsx +++ b/src/IconRailwayAlert2Rounded.tsx @@ -8,4 +8,4 @@ const IconRailwayAlert2Rounded: React.FC = ({ ...props }) => ( ) -export { IconRailwayAlert2Rounded as default } +export default IconRailwayAlert2Rounded diff --git a/src/IconRailwayAlert2RoundedFilled.tsx b/src/IconRailwayAlert2RoundedFilled.tsx index a64e2a20b..08ce3ba20 100644 --- a/src/IconRailwayAlert2RoundedFilled.tsx +++ b/src/IconRailwayAlert2RoundedFilled.tsx @@ -8,4 +8,4 @@ const IconRailwayAlert2RoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconRailwayAlert2RoundedFilled as default } +export default IconRailwayAlert2RoundedFilled diff --git a/src/IconRailwayAlert2Sharp.tsx b/src/IconRailwayAlert2Sharp.tsx index 97e9aba9c..b9c7e74c9 100644 --- a/src/IconRailwayAlert2Sharp.tsx +++ b/src/IconRailwayAlert2Sharp.tsx @@ -8,4 +8,4 @@ const IconRailwayAlert2Sharp: React.FC = ({ ...props }) => ( ) -export { IconRailwayAlert2Sharp as default } +export default IconRailwayAlert2Sharp diff --git a/src/IconRailwayAlert2SharpFilled.tsx b/src/IconRailwayAlert2SharpFilled.tsx index 496221e1e..d86381937 100644 --- a/src/IconRailwayAlert2SharpFilled.tsx +++ b/src/IconRailwayAlert2SharpFilled.tsx @@ -8,4 +8,4 @@ const IconRailwayAlert2SharpFilled: React.FC = ({ ...props }) => ( ) -export { IconRailwayAlert2SharpFilled as default } +export default IconRailwayAlert2SharpFilled diff --git a/src/IconRailwayAlertOutlined.tsx b/src/IconRailwayAlertOutlined.tsx index e2527e303..9ef447adf 100644 --- a/src/IconRailwayAlertOutlined.tsx +++ b/src/IconRailwayAlertOutlined.tsx @@ -8,4 +8,4 @@ const IconRailwayAlertOutlined: React.FC = ({ ...props }) => ( ) -export { IconRailwayAlertOutlined as default } +export default IconRailwayAlertOutlined diff --git a/src/IconRailwayAlertOutlinedFilled.tsx b/src/IconRailwayAlertOutlinedFilled.tsx index 6bfb658f1..be8f74513 100644 --- a/src/IconRailwayAlertOutlinedFilled.tsx +++ b/src/IconRailwayAlertOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconRailwayAlertOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconRailwayAlertOutlinedFilled as default } +export default IconRailwayAlertOutlinedFilled diff --git a/src/IconRailwayAlertRounded.tsx b/src/IconRailwayAlertRounded.tsx index bf64baed8..64218642c 100644 --- a/src/IconRailwayAlertRounded.tsx +++ b/src/IconRailwayAlertRounded.tsx @@ -8,4 +8,4 @@ const IconRailwayAlertRounded: React.FC = ({ ...props }) => ( ) -export { IconRailwayAlertRounded as default } +export default IconRailwayAlertRounded diff --git a/src/IconRailwayAlertRoundedFilled.tsx b/src/IconRailwayAlertRoundedFilled.tsx index e147af08e..cede6d687 100644 --- a/src/IconRailwayAlertRoundedFilled.tsx +++ b/src/IconRailwayAlertRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconRailwayAlertRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconRailwayAlertRoundedFilled as default } +export default IconRailwayAlertRoundedFilled diff --git a/src/IconRailwayAlertSharp.tsx b/src/IconRailwayAlertSharp.tsx index 72226731f..998a29412 100644 --- a/src/IconRailwayAlertSharp.tsx +++ b/src/IconRailwayAlertSharp.tsx @@ -8,4 +8,4 @@ const IconRailwayAlertSharp: React.FC = ({ ...props }) => ( ) -export { IconRailwayAlertSharp as default } +export default IconRailwayAlertSharp diff --git a/src/IconRailwayAlertSharpFilled.tsx b/src/IconRailwayAlertSharpFilled.tsx index 51aa9e27d..008de1f3c 100644 --- a/src/IconRailwayAlertSharpFilled.tsx +++ b/src/IconRailwayAlertSharpFilled.tsx @@ -8,4 +8,4 @@ const IconRailwayAlertSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconRailwayAlertSharpFilled as default } +export default IconRailwayAlertSharpFilled diff --git a/src/IconRainyHeavyOutlined.tsx b/src/IconRainyHeavyOutlined.tsx index c0165165f..c4b873093 100644 --- a/src/IconRainyHeavyOutlined.tsx +++ b/src/IconRainyHeavyOutlined.tsx @@ -8,4 +8,4 @@ const IconRainyHeavyOutlined: React.FC = ({ ...props }) => ( ) -export { IconRainyHeavyOutlined as default } +export default IconRainyHeavyOutlined diff --git a/src/IconRainyHeavyOutlinedFilled.tsx b/src/IconRainyHeavyOutlinedFilled.tsx index d6752d4ab..19f9e1c95 100644 --- a/src/IconRainyHeavyOutlinedFilled.tsx +++ b/src/IconRainyHeavyOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconRainyHeavyOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconRainyHeavyOutlinedFilled as default } +export default IconRainyHeavyOutlinedFilled diff --git a/src/IconRainyHeavyRounded.tsx b/src/IconRainyHeavyRounded.tsx index 3075b827e..54283701d 100644 --- a/src/IconRainyHeavyRounded.tsx +++ b/src/IconRainyHeavyRounded.tsx @@ -8,4 +8,4 @@ const IconRainyHeavyRounded: React.FC = ({ ...props }) => ( ) -export { IconRainyHeavyRounded as default } +export default IconRainyHeavyRounded diff --git a/src/IconRainyHeavyRoundedFilled.tsx b/src/IconRainyHeavyRoundedFilled.tsx index 7abac2dc4..071fe9a89 100644 --- a/src/IconRainyHeavyRoundedFilled.tsx +++ b/src/IconRainyHeavyRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconRainyHeavyRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconRainyHeavyRoundedFilled as default } +export default IconRainyHeavyRoundedFilled diff --git a/src/IconRainyHeavySharp.tsx b/src/IconRainyHeavySharp.tsx index 27b437197..8c0167a4f 100644 --- a/src/IconRainyHeavySharp.tsx +++ b/src/IconRainyHeavySharp.tsx @@ -8,4 +8,4 @@ const IconRainyHeavySharp: React.FC = ({ ...props }) => ( ) -export { IconRainyHeavySharp as default } +export default IconRainyHeavySharp diff --git a/src/IconRainyHeavySharpFilled.tsx b/src/IconRainyHeavySharpFilled.tsx index a06fb4bd8..b0f15bc1a 100644 --- a/src/IconRainyHeavySharpFilled.tsx +++ b/src/IconRainyHeavySharpFilled.tsx @@ -8,4 +8,4 @@ const IconRainyHeavySharpFilled: React.FC = ({ ...props }) => ( ) -export { IconRainyHeavySharpFilled as default } +export default IconRainyHeavySharpFilled diff --git a/src/IconRainyLightOutlined.tsx b/src/IconRainyLightOutlined.tsx index 729d9ed73..19b32e2ee 100644 --- a/src/IconRainyLightOutlined.tsx +++ b/src/IconRainyLightOutlined.tsx @@ -8,4 +8,4 @@ const IconRainyLightOutlined: React.FC = ({ ...props }) => ( ) -export { IconRainyLightOutlined as default } +export default IconRainyLightOutlined diff --git a/src/IconRainyLightOutlinedFilled.tsx b/src/IconRainyLightOutlinedFilled.tsx index 1223d1a55..b3b6be77f 100644 --- a/src/IconRainyLightOutlinedFilled.tsx +++ b/src/IconRainyLightOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconRainyLightOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconRainyLightOutlinedFilled as default } +export default IconRainyLightOutlinedFilled diff --git a/src/IconRainyLightRounded.tsx b/src/IconRainyLightRounded.tsx index 8a8d12f23..bbcc0e1dc 100644 --- a/src/IconRainyLightRounded.tsx +++ b/src/IconRainyLightRounded.tsx @@ -8,4 +8,4 @@ const IconRainyLightRounded: React.FC = ({ ...props }) => ( ) -export { IconRainyLightRounded as default } +export default IconRainyLightRounded diff --git a/src/IconRainyLightRoundedFilled.tsx b/src/IconRainyLightRoundedFilled.tsx index 5584c1353..ef471f4a5 100644 --- a/src/IconRainyLightRoundedFilled.tsx +++ b/src/IconRainyLightRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconRainyLightRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconRainyLightRoundedFilled as default } +export default IconRainyLightRoundedFilled diff --git a/src/IconRainyLightSharp.tsx b/src/IconRainyLightSharp.tsx index b3494617b..ea80882cc 100644 --- a/src/IconRainyLightSharp.tsx +++ b/src/IconRainyLightSharp.tsx @@ -8,4 +8,4 @@ const IconRainyLightSharp: React.FC = ({ ...props }) => ( ) -export { IconRainyLightSharp as default } +export default IconRainyLightSharp diff --git a/src/IconRainyLightSharpFilled.tsx b/src/IconRainyLightSharpFilled.tsx index 12b247e6a..72f45d0c1 100644 --- a/src/IconRainyLightSharpFilled.tsx +++ b/src/IconRainyLightSharpFilled.tsx @@ -8,4 +8,4 @@ const IconRainyLightSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconRainyLightSharpFilled as default } +export default IconRainyLightSharpFilled diff --git a/src/IconRainyOutlined.tsx b/src/IconRainyOutlined.tsx index d49873962..1ad722c60 100644 --- a/src/IconRainyOutlined.tsx +++ b/src/IconRainyOutlined.tsx @@ -8,4 +8,4 @@ const IconRainyOutlined: React.FC = ({ ...props }) => ( ) -export { IconRainyOutlined as default } +export default IconRainyOutlined diff --git a/src/IconRainyOutlinedFilled.tsx b/src/IconRainyOutlinedFilled.tsx index 4a68232ee..6951c6854 100644 --- a/src/IconRainyOutlinedFilled.tsx +++ b/src/IconRainyOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconRainyOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconRainyOutlinedFilled as default } +export default IconRainyOutlinedFilled diff --git a/src/IconRainyRounded.tsx b/src/IconRainyRounded.tsx index 546abd7c9..d33e1a17c 100644 --- a/src/IconRainyRounded.tsx +++ b/src/IconRainyRounded.tsx @@ -8,4 +8,4 @@ const IconRainyRounded: React.FC = ({ ...props }) => ( ) -export { IconRainyRounded as default } +export default IconRainyRounded diff --git a/src/IconRainyRoundedFilled.tsx b/src/IconRainyRoundedFilled.tsx index 6af0545c6..f41babbc1 100644 --- a/src/IconRainyRoundedFilled.tsx +++ b/src/IconRainyRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconRainyRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconRainyRoundedFilled as default } +export default IconRainyRoundedFilled diff --git a/src/IconRainySharp.tsx b/src/IconRainySharp.tsx index c4dfce198..9ea6a34d0 100644 --- a/src/IconRainySharp.tsx +++ b/src/IconRainySharp.tsx @@ -8,4 +8,4 @@ const IconRainySharp: React.FC = ({ ...props }) => ( ) -export { IconRainySharp as default } +export default IconRainySharp diff --git a/src/IconRainySharpFilled.tsx b/src/IconRainySharpFilled.tsx index cf40d2bf6..2de29fadf 100644 --- a/src/IconRainySharpFilled.tsx +++ b/src/IconRainySharpFilled.tsx @@ -8,4 +8,4 @@ const IconRainySharpFilled: React.FC = ({ ...props }) => ( ) -export { IconRainySharpFilled as default } +export default IconRainySharpFilled diff --git a/src/IconRainySnowOutlined.tsx b/src/IconRainySnowOutlined.tsx index f64286e05..294f9d4b1 100644 --- a/src/IconRainySnowOutlined.tsx +++ b/src/IconRainySnowOutlined.tsx @@ -8,4 +8,4 @@ const IconRainySnowOutlined: React.FC = ({ ...props }) => ( ) -export { IconRainySnowOutlined as default } +export default IconRainySnowOutlined diff --git a/src/IconRainySnowOutlinedFilled.tsx b/src/IconRainySnowOutlinedFilled.tsx index eb1e67b85..8bf6f0098 100644 --- a/src/IconRainySnowOutlinedFilled.tsx +++ b/src/IconRainySnowOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconRainySnowOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconRainySnowOutlinedFilled as default } +export default IconRainySnowOutlinedFilled diff --git a/src/IconRainySnowRounded.tsx b/src/IconRainySnowRounded.tsx index 9d46bc3b1..fe90745f8 100644 --- a/src/IconRainySnowRounded.tsx +++ b/src/IconRainySnowRounded.tsx @@ -8,4 +8,4 @@ const IconRainySnowRounded: React.FC = ({ ...props }) => ( ) -export { IconRainySnowRounded as default } +export default IconRainySnowRounded diff --git a/src/IconRainySnowRoundedFilled.tsx b/src/IconRainySnowRoundedFilled.tsx index 259d23f6b..f25169841 100644 --- a/src/IconRainySnowRoundedFilled.tsx +++ b/src/IconRainySnowRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconRainySnowRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconRainySnowRoundedFilled as default } +export default IconRainySnowRoundedFilled diff --git a/src/IconRainySnowSharp.tsx b/src/IconRainySnowSharp.tsx index d846fb446..435289c02 100644 --- a/src/IconRainySnowSharp.tsx +++ b/src/IconRainySnowSharp.tsx @@ -8,4 +8,4 @@ const IconRainySnowSharp: React.FC = ({ ...props }) => ( ) -export { IconRainySnowSharp as default } +export default IconRainySnowSharp diff --git a/src/IconRainySnowSharpFilled.tsx b/src/IconRainySnowSharpFilled.tsx index 6598be739..e6cbba95a 100644 --- a/src/IconRainySnowSharpFilled.tsx +++ b/src/IconRainySnowSharpFilled.tsx @@ -8,4 +8,4 @@ const IconRainySnowSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconRainySnowSharpFilled as default } +export default IconRainySnowSharpFilled diff --git a/src/IconRamenDiningOutlined.tsx b/src/IconRamenDiningOutlined.tsx index 2d567c8aa..f52a4611a 100644 --- a/src/IconRamenDiningOutlined.tsx +++ b/src/IconRamenDiningOutlined.tsx @@ -8,4 +8,4 @@ const IconRamenDiningOutlined: React.FC = ({ ...props }) => ( ) -export { IconRamenDiningOutlined as default } +export default IconRamenDiningOutlined diff --git a/src/IconRamenDiningOutlinedFilled.tsx b/src/IconRamenDiningOutlinedFilled.tsx index 543f9414e..3d083f914 100644 --- a/src/IconRamenDiningOutlinedFilled.tsx +++ b/src/IconRamenDiningOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconRamenDiningOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconRamenDiningOutlinedFilled as default } +export default IconRamenDiningOutlinedFilled diff --git a/src/IconRamenDiningRounded.tsx b/src/IconRamenDiningRounded.tsx index 892b00bc0..3e17aa0aa 100644 --- a/src/IconRamenDiningRounded.tsx +++ b/src/IconRamenDiningRounded.tsx @@ -8,4 +8,4 @@ const IconRamenDiningRounded: React.FC = ({ ...props }) => ( ) -export { IconRamenDiningRounded as default } +export default IconRamenDiningRounded diff --git a/src/IconRamenDiningRoundedFilled.tsx b/src/IconRamenDiningRoundedFilled.tsx index 9b97ee552..a995b532c 100644 --- a/src/IconRamenDiningRoundedFilled.tsx +++ b/src/IconRamenDiningRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconRamenDiningRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconRamenDiningRoundedFilled as default } +export default IconRamenDiningRoundedFilled diff --git a/src/IconRamenDiningSharp.tsx b/src/IconRamenDiningSharp.tsx index d13429f71..42b13af16 100644 --- a/src/IconRamenDiningSharp.tsx +++ b/src/IconRamenDiningSharp.tsx @@ -8,4 +8,4 @@ const IconRamenDiningSharp: React.FC = ({ ...props }) => ( ) -export { IconRamenDiningSharp as default } +export default IconRamenDiningSharp diff --git a/src/IconRamenDiningSharpFilled.tsx b/src/IconRamenDiningSharpFilled.tsx index 5c26745ad..57adc4bef 100644 --- a/src/IconRamenDiningSharpFilled.tsx +++ b/src/IconRamenDiningSharpFilled.tsx @@ -8,4 +8,4 @@ const IconRamenDiningSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconRamenDiningSharpFilled as default } +export default IconRamenDiningSharpFilled diff --git a/src/IconRampLeftOutlined.tsx b/src/IconRampLeftOutlined.tsx index 00ab755ad..cef469e32 100644 --- a/src/IconRampLeftOutlined.tsx +++ b/src/IconRampLeftOutlined.tsx @@ -8,4 +8,4 @@ const IconRampLeftOutlined: React.FC = ({ ...props }) => ( ) -export { IconRampLeftOutlined as default } +export default IconRampLeftOutlined diff --git a/src/IconRampLeftOutlinedFilled.tsx b/src/IconRampLeftOutlinedFilled.tsx index 74a80bead..aa8903b5f 100644 --- a/src/IconRampLeftOutlinedFilled.tsx +++ b/src/IconRampLeftOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconRampLeftOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconRampLeftOutlinedFilled as default } +export default IconRampLeftOutlinedFilled diff --git a/src/IconRampLeftRounded.tsx b/src/IconRampLeftRounded.tsx index aae293085..aa5dde53c 100644 --- a/src/IconRampLeftRounded.tsx +++ b/src/IconRampLeftRounded.tsx @@ -8,4 +8,4 @@ const IconRampLeftRounded: React.FC = ({ ...props }) => ( ) -export { IconRampLeftRounded as default } +export default IconRampLeftRounded diff --git a/src/IconRampLeftRoundedFilled.tsx b/src/IconRampLeftRoundedFilled.tsx index 8f833ae53..4ceb29d65 100644 --- a/src/IconRampLeftRoundedFilled.tsx +++ b/src/IconRampLeftRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconRampLeftRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconRampLeftRoundedFilled as default } +export default IconRampLeftRoundedFilled diff --git a/src/IconRampLeftSharp.tsx b/src/IconRampLeftSharp.tsx index 9ff61f70b..d5c31605b 100644 --- a/src/IconRampLeftSharp.tsx +++ b/src/IconRampLeftSharp.tsx @@ -8,4 +8,4 @@ const IconRampLeftSharp: React.FC = ({ ...props }) => ( ) -export { IconRampLeftSharp as default } +export default IconRampLeftSharp diff --git a/src/IconRampLeftSharpFilled.tsx b/src/IconRampLeftSharpFilled.tsx index 93ec80ee0..3eb18f155 100644 --- a/src/IconRampLeftSharpFilled.tsx +++ b/src/IconRampLeftSharpFilled.tsx @@ -8,4 +8,4 @@ const IconRampLeftSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconRampLeftSharpFilled as default } +export default IconRampLeftSharpFilled diff --git a/src/IconRampRightOutlined.tsx b/src/IconRampRightOutlined.tsx index 20d0cb181..c4635d438 100644 --- a/src/IconRampRightOutlined.tsx +++ b/src/IconRampRightOutlined.tsx @@ -8,4 +8,4 @@ const IconRampRightOutlined: React.FC = ({ ...props }) => ( ) -export { IconRampRightOutlined as default } +export default IconRampRightOutlined diff --git a/src/IconRampRightOutlinedFilled.tsx b/src/IconRampRightOutlinedFilled.tsx index db727b7d2..93207e315 100644 --- a/src/IconRampRightOutlinedFilled.tsx +++ b/src/IconRampRightOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconRampRightOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconRampRightOutlinedFilled as default } +export default IconRampRightOutlinedFilled diff --git a/src/IconRampRightRounded.tsx b/src/IconRampRightRounded.tsx index fbcdab4a5..eca67b339 100644 --- a/src/IconRampRightRounded.tsx +++ b/src/IconRampRightRounded.tsx @@ -8,4 +8,4 @@ const IconRampRightRounded: React.FC = ({ ...props }) => ( ) -export { IconRampRightRounded as default } +export default IconRampRightRounded diff --git a/src/IconRampRightRoundedFilled.tsx b/src/IconRampRightRoundedFilled.tsx index 6c4a7cbfc..275cee99c 100644 --- a/src/IconRampRightRoundedFilled.tsx +++ b/src/IconRampRightRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconRampRightRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconRampRightRoundedFilled as default } +export default IconRampRightRoundedFilled diff --git a/src/IconRampRightSharp.tsx b/src/IconRampRightSharp.tsx index 894b314fd..441260460 100644 --- a/src/IconRampRightSharp.tsx +++ b/src/IconRampRightSharp.tsx @@ -8,4 +8,4 @@ const IconRampRightSharp: React.FC = ({ ...props }) => ( ) -export { IconRampRightSharp as default } +export default IconRampRightSharp diff --git a/src/IconRampRightSharpFilled.tsx b/src/IconRampRightSharpFilled.tsx index 4eddb0012..8691a9869 100644 --- a/src/IconRampRightSharpFilled.tsx +++ b/src/IconRampRightSharpFilled.tsx @@ -8,4 +8,4 @@ const IconRampRightSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconRampRightSharpFilled as default } +export default IconRampRightSharpFilled diff --git a/src/IconRangeHoodOutlined.tsx b/src/IconRangeHoodOutlined.tsx index fdff8083f..2c7f9298a 100644 --- a/src/IconRangeHoodOutlined.tsx +++ b/src/IconRangeHoodOutlined.tsx @@ -8,4 +8,4 @@ const IconRangeHoodOutlined: React.FC = ({ ...props }) => ( ) -export { IconRangeHoodOutlined as default } +export default IconRangeHoodOutlined diff --git a/src/IconRangeHoodOutlinedFilled.tsx b/src/IconRangeHoodOutlinedFilled.tsx index bdfb7e18b..bd16f995b 100644 --- a/src/IconRangeHoodOutlinedFilled.tsx +++ b/src/IconRangeHoodOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconRangeHoodOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconRangeHoodOutlinedFilled as default } +export default IconRangeHoodOutlinedFilled diff --git a/src/IconRangeHoodRounded.tsx b/src/IconRangeHoodRounded.tsx index 7a7b11077..70e985261 100644 --- a/src/IconRangeHoodRounded.tsx +++ b/src/IconRangeHoodRounded.tsx @@ -8,4 +8,4 @@ const IconRangeHoodRounded: React.FC = ({ ...props }) => ( ) -export { IconRangeHoodRounded as default } +export default IconRangeHoodRounded diff --git a/src/IconRangeHoodRoundedFilled.tsx b/src/IconRangeHoodRoundedFilled.tsx index 1d15d61af..3ad273eda 100644 --- a/src/IconRangeHoodRoundedFilled.tsx +++ b/src/IconRangeHoodRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconRangeHoodRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconRangeHoodRoundedFilled as default } +export default IconRangeHoodRoundedFilled diff --git a/src/IconRangeHoodSharp.tsx b/src/IconRangeHoodSharp.tsx index 9f21bd541..a3d4709a4 100644 --- a/src/IconRangeHoodSharp.tsx +++ b/src/IconRangeHoodSharp.tsx @@ -8,4 +8,4 @@ const IconRangeHoodSharp: React.FC = ({ ...props }) => ( ) -export { IconRangeHoodSharp as default } +export default IconRangeHoodSharp diff --git a/src/IconRangeHoodSharpFilled.tsx b/src/IconRangeHoodSharpFilled.tsx index 8c5b942c4..a61710847 100644 --- a/src/IconRangeHoodSharpFilled.tsx +++ b/src/IconRangeHoodSharpFilled.tsx @@ -8,4 +8,4 @@ const IconRangeHoodSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconRangeHoodSharpFilled as default } +export default IconRangeHoodSharpFilled diff --git a/src/IconRateReviewOutlined.tsx b/src/IconRateReviewOutlined.tsx index 0c077b848..fc9c3fbd2 100644 --- a/src/IconRateReviewOutlined.tsx +++ b/src/IconRateReviewOutlined.tsx @@ -8,4 +8,4 @@ const IconRateReviewOutlined: React.FC = ({ ...props }) => ( ) -export { IconRateReviewOutlined as default } +export default IconRateReviewOutlined diff --git a/src/IconRateReviewOutlinedFilled.tsx b/src/IconRateReviewOutlinedFilled.tsx index 0ec9e67dc..a8d20a341 100644 --- a/src/IconRateReviewOutlinedFilled.tsx +++ b/src/IconRateReviewOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconRateReviewOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconRateReviewOutlinedFilled as default } +export default IconRateReviewOutlinedFilled diff --git a/src/IconRateReviewRounded.tsx b/src/IconRateReviewRounded.tsx index 1307e5b21..60c138ea0 100644 --- a/src/IconRateReviewRounded.tsx +++ b/src/IconRateReviewRounded.tsx @@ -8,4 +8,4 @@ const IconRateReviewRounded: React.FC = ({ ...props }) => ( ) -export { IconRateReviewRounded as default } +export default IconRateReviewRounded diff --git a/src/IconRateReviewRoundedFilled.tsx b/src/IconRateReviewRoundedFilled.tsx index a64b8957d..46823e96c 100644 --- a/src/IconRateReviewRoundedFilled.tsx +++ b/src/IconRateReviewRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconRateReviewRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconRateReviewRoundedFilled as default } +export default IconRateReviewRoundedFilled diff --git a/src/IconRateReviewSharp.tsx b/src/IconRateReviewSharp.tsx index 354b7a5cd..72f6fa713 100644 --- a/src/IconRateReviewSharp.tsx +++ b/src/IconRateReviewSharp.tsx @@ -8,4 +8,4 @@ const IconRateReviewSharp: React.FC = ({ ...props }) => ( ) -export { IconRateReviewSharp as default } +export default IconRateReviewSharp diff --git a/src/IconRateReviewSharpFilled.tsx b/src/IconRateReviewSharpFilled.tsx index 5557b35c9..bcbb826f8 100644 --- a/src/IconRateReviewSharpFilled.tsx +++ b/src/IconRateReviewSharpFilled.tsx @@ -8,4 +8,4 @@ const IconRateReviewSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconRateReviewSharpFilled as default } +export default IconRateReviewSharpFilled diff --git a/src/IconRavenOutlined.tsx b/src/IconRavenOutlined.tsx index 1d96208b1..b8a99fd20 100644 --- a/src/IconRavenOutlined.tsx +++ b/src/IconRavenOutlined.tsx @@ -8,4 +8,4 @@ const IconRavenOutlined: React.FC = ({ ...props }) => ( ) -export { IconRavenOutlined as default } +export default IconRavenOutlined diff --git a/src/IconRavenOutlinedFilled.tsx b/src/IconRavenOutlinedFilled.tsx index a955c6260..6923c6453 100644 --- a/src/IconRavenOutlinedFilled.tsx +++ b/src/IconRavenOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconRavenOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconRavenOutlinedFilled as default } +export default IconRavenOutlinedFilled diff --git a/src/IconRavenRounded.tsx b/src/IconRavenRounded.tsx index 5f3663a54..1041a1106 100644 --- a/src/IconRavenRounded.tsx +++ b/src/IconRavenRounded.tsx @@ -8,4 +8,4 @@ const IconRavenRounded: React.FC = ({ ...props }) => ( ) -export { IconRavenRounded as default } +export default IconRavenRounded diff --git a/src/IconRavenRoundedFilled.tsx b/src/IconRavenRoundedFilled.tsx index bbde2273d..c1c38062d 100644 --- a/src/IconRavenRoundedFilled.tsx +++ b/src/IconRavenRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconRavenRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconRavenRoundedFilled as default } +export default IconRavenRoundedFilled diff --git a/src/IconRavenSharp.tsx b/src/IconRavenSharp.tsx index 06b03362d..3f0d157e9 100644 --- a/src/IconRavenSharp.tsx +++ b/src/IconRavenSharp.tsx @@ -8,4 +8,4 @@ const IconRavenSharp: React.FC = ({ ...props }) => ( ) -export { IconRavenSharp as default } +export default IconRavenSharp diff --git a/src/IconRavenSharpFilled.tsx b/src/IconRavenSharpFilled.tsx index a194570ee..2c9db60c4 100644 --- a/src/IconRavenSharpFilled.tsx +++ b/src/IconRavenSharpFilled.tsx @@ -8,4 +8,4 @@ const IconRavenSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconRavenSharpFilled as default } +export default IconRavenSharpFilled diff --git a/src/IconRawOffOutlined.tsx b/src/IconRawOffOutlined.tsx index 227878849..4512e595d 100644 --- a/src/IconRawOffOutlined.tsx +++ b/src/IconRawOffOutlined.tsx @@ -8,4 +8,4 @@ const IconRawOffOutlined: React.FC = ({ ...props }) => ( ) -export { IconRawOffOutlined as default } +export default IconRawOffOutlined diff --git a/src/IconRawOffOutlinedFilled.tsx b/src/IconRawOffOutlinedFilled.tsx index 8c729e8ea..0e30ea259 100644 --- a/src/IconRawOffOutlinedFilled.tsx +++ b/src/IconRawOffOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconRawOffOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconRawOffOutlinedFilled as default } +export default IconRawOffOutlinedFilled diff --git a/src/IconRawOffRounded.tsx b/src/IconRawOffRounded.tsx index 300e35803..24603beaa 100644 --- a/src/IconRawOffRounded.tsx +++ b/src/IconRawOffRounded.tsx @@ -8,4 +8,4 @@ const IconRawOffRounded: React.FC = ({ ...props }) => ( ) -export { IconRawOffRounded as default } +export default IconRawOffRounded diff --git a/src/IconRawOffRoundedFilled.tsx b/src/IconRawOffRoundedFilled.tsx index 0d4032d45..08436381d 100644 --- a/src/IconRawOffRoundedFilled.tsx +++ b/src/IconRawOffRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconRawOffRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconRawOffRoundedFilled as default } +export default IconRawOffRoundedFilled diff --git a/src/IconRawOffSharp.tsx b/src/IconRawOffSharp.tsx index 49c1d55e5..ff674cb71 100644 --- a/src/IconRawOffSharp.tsx +++ b/src/IconRawOffSharp.tsx @@ -8,4 +8,4 @@ const IconRawOffSharp: React.FC = ({ ...props }) => ( ) -export { IconRawOffSharp as default } +export default IconRawOffSharp diff --git a/src/IconRawOffSharpFilled.tsx b/src/IconRawOffSharpFilled.tsx index e8955a0f9..41a1ca7b3 100644 --- a/src/IconRawOffSharpFilled.tsx +++ b/src/IconRawOffSharpFilled.tsx @@ -8,4 +8,4 @@ const IconRawOffSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconRawOffSharpFilled as default } +export default IconRawOffSharpFilled diff --git a/src/IconRawOnOutlined.tsx b/src/IconRawOnOutlined.tsx index 69fa53754..ec4d3ef75 100644 --- a/src/IconRawOnOutlined.tsx +++ b/src/IconRawOnOutlined.tsx @@ -8,4 +8,4 @@ const IconRawOnOutlined: React.FC = ({ ...props }) => ( ) -export { IconRawOnOutlined as default } +export default IconRawOnOutlined diff --git a/src/IconRawOnOutlinedFilled.tsx b/src/IconRawOnOutlinedFilled.tsx index f3804246e..ec8d1fd9b 100644 --- a/src/IconRawOnOutlinedFilled.tsx +++ b/src/IconRawOnOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconRawOnOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconRawOnOutlinedFilled as default } +export default IconRawOnOutlinedFilled diff --git a/src/IconRawOnRounded.tsx b/src/IconRawOnRounded.tsx index a29a85953..decca8a45 100644 --- a/src/IconRawOnRounded.tsx +++ b/src/IconRawOnRounded.tsx @@ -8,4 +8,4 @@ const IconRawOnRounded: React.FC = ({ ...props }) => ( ) -export { IconRawOnRounded as default } +export default IconRawOnRounded diff --git a/src/IconRawOnRoundedFilled.tsx b/src/IconRawOnRoundedFilled.tsx index 719a31f37..eac390a0a 100644 --- a/src/IconRawOnRoundedFilled.tsx +++ b/src/IconRawOnRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconRawOnRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconRawOnRoundedFilled as default } +export default IconRawOnRoundedFilled diff --git a/src/IconRawOnSharp.tsx b/src/IconRawOnSharp.tsx index 2a5255bca..d19bf9e2a 100644 --- a/src/IconRawOnSharp.tsx +++ b/src/IconRawOnSharp.tsx @@ -8,4 +8,4 @@ const IconRawOnSharp: React.FC = ({ ...props }) => ( ) -export { IconRawOnSharp as default } +export default IconRawOnSharp diff --git a/src/IconRawOnSharpFilled.tsx b/src/IconRawOnSharpFilled.tsx index 10511c25a..233e0d4a7 100644 --- a/src/IconRawOnSharpFilled.tsx +++ b/src/IconRawOnSharpFilled.tsx @@ -8,4 +8,4 @@ const IconRawOnSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconRawOnSharpFilled as default } +export default IconRawOnSharpFilled diff --git a/src/IconReadMoreOutlined.tsx b/src/IconReadMoreOutlined.tsx index fa88706f4..20fa76b44 100644 --- a/src/IconReadMoreOutlined.tsx +++ b/src/IconReadMoreOutlined.tsx @@ -8,4 +8,4 @@ const IconReadMoreOutlined: React.FC = ({ ...props }) => ( ) -export { IconReadMoreOutlined as default } +export default IconReadMoreOutlined diff --git a/src/IconReadMoreOutlinedFilled.tsx b/src/IconReadMoreOutlinedFilled.tsx index 3ab65f73c..00f071b28 100644 --- a/src/IconReadMoreOutlinedFilled.tsx +++ b/src/IconReadMoreOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconReadMoreOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconReadMoreOutlinedFilled as default } +export default IconReadMoreOutlinedFilled diff --git a/src/IconReadMoreRounded.tsx b/src/IconReadMoreRounded.tsx index a42d83b95..31eb8cdd0 100644 --- a/src/IconReadMoreRounded.tsx +++ b/src/IconReadMoreRounded.tsx @@ -8,4 +8,4 @@ const IconReadMoreRounded: React.FC = ({ ...props }) => ( ) -export { IconReadMoreRounded as default } +export default IconReadMoreRounded diff --git a/src/IconReadMoreRoundedFilled.tsx b/src/IconReadMoreRoundedFilled.tsx index d77fed0d3..941c9b932 100644 --- a/src/IconReadMoreRoundedFilled.tsx +++ b/src/IconReadMoreRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconReadMoreRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconReadMoreRoundedFilled as default } +export default IconReadMoreRoundedFilled diff --git a/src/IconReadMoreSharp.tsx b/src/IconReadMoreSharp.tsx index 6adf549ae..c545eb18f 100644 --- a/src/IconReadMoreSharp.tsx +++ b/src/IconReadMoreSharp.tsx @@ -8,4 +8,4 @@ const IconReadMoreSharp: React.FC = ({ ...props }) => ( ) -export { IconReadMoreSharp as default } +export default IconReadMoreSharp diff --git a/src/IconReadMoreSharpFilled.tsx b/src/IconReadMoreSharpFilled.tsx index ebf3e41c0..dd917086b 100644 --- a/src/IconReadMoreSharpFilled.tsx +++ b/src/IconReadMoreSharpFilled.tsx @@ -8,4 +8,4 @@ const IconReadMoreSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconReadMoreSharpFilled as default } +export default IconReadMoreSharpFilled diff --git a/src/IconReadinessScoreOutlined.tsx b/src/IconReadinessScoreOutlined.tsx index 17fb19e2b..9506b6800 100644 --- a/src/IconReadinessScoreOutlined.tsx +++ b/src/IconReadinessScoreOutlined.tsx @@ -8,4 +8,4 @@ const IconReadinessScoreOutlined: React.FC = ({ ...props }) => ( ) -export { IconReadinessScoreOutlined as default } +export default IconReadinessScoreOutlined diff --git a/src/IconReadinessScoreOutlinedFilled.tsx b/src/IconReadinessScoreOutlinedFilled.tsx index 96ffc20a3..79c296af6 100644 --- a/src/IconReadinessScoreOutlinedFilled.tsx +++ b/src/IconReadinessScoreOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconReadinessScoreOutlinedFilled: React.FC = ({ ) -export { IconReadinessScoreOutlinedFilled as default } +export default IconReadinessScoreOutlinedFilled diff --git a/src/IconReadinessScoreRounded.tsx b/src/IconReadinessScoreRounded.tsx index 3cf38040d..dc5209e20 100644 --- a/src/IconReadinessScoreRounded.tsx +++ b/src/IconReadinessScoreRounded.tsx @@ -8,4 +8,4 @@ const IconReadinessScoreRounded: React.FC = ({ ...props }) => ( ) -export { IconReadinessScoreRounded as default } +export default IconReadinessScoreRounded diff --git a/src/IconReadinessScoreRoundedFilled.tsx b/src/IconReadinessScoreRoundedFilled.tsx index 3f73b4797..a43edb002 100644 --- a/src/IconReadinessScoreRoundedFilled.tsx +++ b/src/IconReadinessScoreRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconReadinessScoreRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconReadinessScoreRoundedFilled as default } +export default IconReadinessScoreRoundedFilled diff --git a/src/IconReadinessScoreSharp.tsx b/src/IconReadinessScoreSharp.tsx index 902cd1546..55594512b 100644 --- a/src/IconReadinessScoreSharp.tsx +++ b/src/IconReadinessScoreSharp.tsx @@ -8,4 +8,4 @@ const IconReadinessScoreSharp: React.FC = ({ ...props }) => ( ) -export { IconReadinessScoreSharp as default } +export default IconReadinessScoreSharp diff --git a/src/IconReadinessScoreSharpFilled.tsx b/src/IconReadinessScoreSharpFilled.tsx index 7289d6c25..34f990e21 100644 --- a/src/IconReadinessScoreSharpFilled.tsx +++ b/src/IconReadinessScoreSharpFilled.tsx @@ -8,4 +8,4 @@ const IconReadinessScoreSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconReadinessScoreSharpFilled as default } +export default IconReadinessScoreSharpFilled diff --git a/src/IconRealEstateAgentOutlined.tsx b/src/IconRealEstateAgentOutlined.tsx index 3b82dac8e..752d44c40 100644 --- a/src/IconRealEstateAgentOutlined.tsx +++ b/src/IconRealEstateAgentOutlined.tsx @@ -8,4 +8,4 @@ const IconRealEstateAgentOutlined: React.FC = ({ ...props }) => ( ) -export { IconRealEstateAgentOutlined as default } +export default IconRealEstateAgentOutlined diff --git a/src/IconRealEstateAgentOutlinedFilled.tsx b/src/IconRealEstateAgentOutlinedFilled.tsx index 95dc6d6bc..9365aeeaa 100644 --- a/src/IconRealEstateAgentOutlinedFilled.tsx +++ b/src/IconRealEstateAgentOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconRealEstateAgentOutlinedFilled: React.FC = ({ ) -export { IconRealEstateAgentOutlinedFilled as default } +export default IconRealEstateAgentOutlinedFilled diff --git a/src/IconRealEstateAgentRounded.tsx b/src/IconRealEstateAgentRounded.tsx index c79acef80..0721ef6ac 100644 --- a/src/IconRealEstateAgentRounded.tsx +++ b/src/IconRealEstateAgentRounded.tsx @@ -8,4 +8,4 @@ const IconRealEstateAgentRounded: React.FC = ({ ...props }) => ( ) -export { IconRealEstateAgentRounded as default } +export default IconRealEstateAgentRounded diff --git a/src/IconRealEstateAgentRoundedFilled.tsx b/src/IconRealEstateAgentRoundedFilled.tsx index c3e9c7961..3989c4535 100644 --- a/src/IconRealEstateAgentRoundedFilled.tsx +++ b/src/IconRealEstateAgentRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconRealEstateAgentRoundedFilled: React.FC = ({ ) -export { IconRealEstateAgentRoundedFilled as default } +export default IconRealEstateAgentRoundedFilled diff --git a/src/IconRealEstateAgentSharp.tsx b/src/IconRealEstateAgentSharp.tsx index 89e438423..b83967d8c 100644 --- a/src/IconRealEstateAgentSharp.tsx +++ b/src/IconRealEstateAgentSharp.tsx @@ -8,4 +8,4 @@ const IconRealEstateAgentSharp: React.FC = ({ ...props }) => ( ) -export { IconRealEstateAgentSharp as default } +export default IconRealEstateAgentSharp diff --git a/src/IconRealEstateAgentSharpFilled.tsx b/src/IconRealEstateAgentSharpFilled.tsx index d23612ca7..fab9d565e 100644 --- a/src/IconRealEstateAgentSharpFilled.tsx +++ b/src/IconRealEstateAgentSharpFilled.tsx @@ -8,4 +8,4 @@ const IconRealEstateAgentSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconRealEstateAgentSharpFilled as default } +export default IconRealEstateAgentSharpFilled diff --git a/src/IconRearCameraOutlined.tsx b/src/IconRearCameraOutlined.tsx index 710e4b7d1..442982643 100644 --- a/src/IconRearCameraOutlined.tsx +++ b/src/IconRearCameraOutlined.tsx @@ -8,4 +8,4 @@ const IconRearCameraOutlined: React.FC = ({ ...props }) => ( ) -export { IconRearCameraOutlined as default } +export default IconRearCameraOutlined diff --git a/src/IconRearCameraOutlinedFilled.tsx b/src/IconRearCameraOutlinedFilled.tsx index 409f07499..69e6202cd 100644 --- a/src/IconRearCameraOutlinedFilled.tsx +++ b/src/IconRearCameraOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconRearCameraOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconRearCameraOutlinedFilled as default } +export default IconRearCameraOutlinedFilled diff --git a/src/IconRearCameraRounded.tsx b/src/IconRearCameraRounded.tsx index d5c08b813..fa715b674 100644 --- a/src/IconRearCameraRounded.tsx +++ b/src/IconRearCameraRounded.tsx @@ -8,4 +8,4 @@ const IconRearCameraRounded: React.FC = ({ ...props }) => ( ) -export { IconRearCameraRounded as default } +export default IconRearCameraRounded diff --git a/src/IconRearCameraRoundedFilled.tsx b/src/IconRearCameraRoundedFilled.tsx index aa534813b..8a70fca62 100644 --- a/src/IconRearCameraRoundedFilled.tsx +++ b/src/IconRearCameraRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconRearCameraRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconRearCameraRoundedFilled as default } +export default IconRearCameraRoundedFilled diff --git a/src/IconRearCameraSharp.tsx b/src/IconRearCameraSharp.tsx index f043d036e..892fbea4b 100644 --- a/src/IconRearCameraSharp.tsx +++ b/src/IconRearCameraSharp.tsx @@ -8,4 +8,4 @@ const IconRearCameraSharp: React.FC = ({ ...props }) => ( ) -export { IconRearCameraSharp as default } +export default IconRearCameraSharp diff --git a/src/IconRearCameraSharpFilled.tsx b/src/IconRearCameraSharpFilled.tsx index 602174380..e4b483010 100644 --- a/src/IconRearCameraSharpFilled.tsx +++ b/src/IconRearCameraSharpFilled.tsx @@ -8,4 +8,4 @@ const IconRearCameraSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconRearCameraSharpFilled as default } +export default IconRearCameraSharpFilled diff --git a/src/IconRebaseEditOutlined.tsx b/src/IconRebaseEditOutlined.tsx index e6411e0aa..aef796778 100644 --- a/src/IconRebaseEditOutlined.tsx +++ b/src/IconRebaseEditOutlined.tsx @@ -8,4 +8,4 @@ const IconRebaseEditOutlined: React.FC = ({ ...props }) => ( ) -export { IconRebaseEditOutlined as default } +export default IconRebaseEditOutlined diff --git a/src/IconRebaseEditOutlinedFilled.tsx b/src/IconRebaseEditOutlinedFilled.tsx index 3591d4bdd..bb61f753b 100644 --- a/src/IconRebaseEditOutlinedFilled.tsx +++ b/src/IconRebaseEditOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconRebaseEditOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconRebaseEditOutlinedFilled as default } +export default IconRebaseEditOutlinedFilled diff --git a/src/IconRebaseEditRounded.tsx b/src/IconRebaseEditRounded.tsx index fad32a4dd..f94d5c296 100644 --- a/src/IconRebaseEditRounded.tsx +++ b/src/IconRebaseEditRounded.tsx @@ -8,4 +8,4 @@ const IconRebaseEditRounded: React.FC = ({ ...props }) => ( ) -export { IconRebaseEditRounded as default } +export default IconRebaseEditRounded diff --git a/src/IconRebaseEditRoundedFilled.tsx b/src/IconRebaseEditRoundedFilled.tsx index eb6a15516..47ca8a9d1 100644 --- a/src/IconRebaseEditRoundedFilled.tsx +++ b/src/IconRebaseEditRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconRebaseEditRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconRebaseEditRoundedFilled as default } +export default IconRebaseEditRoundedFilled diff --git a/src/IconRebaseEditSharp.tsx b/src/IconRebaseEditSharp.tsx index 9a8310622..8df3a4262 100644 --- a/src/IconRebaseEditSharp.tsx +++ b/src/IconRebaseEditSharp.tsx @@ -8,4 +8,4 @@ const IconRebaseEditSharp: React.FC = ({ ...props }) => ( ) -export { IconRebaseEditSharp as default } +export default IconRebaseEditSharp diff --git a/src/IconRebaseEditSharpFilled.tsx b/src/IconRebaseEditSharpFilled.tsx index 91a116f7d..93635c7dc 100644 --- a/src/IconRebaseEditSharpFilled.tsx +++ b/src/IconRebaseEditSharpFilled.tsx @@ -8,4 +8,4 @@ const IconRebaseEditSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconRebaseEditSharpFilled as default } +export default IconRebaseEditSharpFilled diff --git a/src/IconRebaseOutlined.tsx b/src/IconRebaseOutlined.tsx index 5abee5b99..458585c17 100644 --- a/src/IconRebaseOutlined.tsx +++ b/src/IconRebaseOutlined.tsx @@ -8,4 +8,4 @@ const IconRebaseOutlined: React.FC = ({ ...props }) => ( ) -export { IconRebaseOutlined as default } +export default IconRebaseOutlined diff --git a/src/IconRebaseOutlinedFilled.tsx b/src/IconRebaseOutlinedFilled.tsx index dd96bcdae..1328d6e90 100644 --- a/src/IconRebaseOutlinedFilled.tsx +++ b/src/IconRebaseOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconRebaseOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconRebaseOutlinedFilled as default } +export default IconRebaseOutlinedFilled diff --git a/src/IconRebaseRounded.tsx b/src/IconRebaseRounded.tsx index c72cb5a2a..bf95bd05b 100644 --- a/src/IconRebaseRounded.tsx +++ b/src/IconRebaseRounded.tsx @@ -8,4 +8,4 @@ const IconRebaseRounded: React.FC = ({ ...props }) => ( ) -export { IconRebaseRounded as default } +export default IconRebaseRounded diff --git a/src/IconRebaseRoundedFilled.tsx b/src/IconRebaseRoundedFilled.tsx index 857abdcda..fcbae31bc 100644 --- a/src/IconRebaseRoundedFilled.tsx +++ b/src/IconRebaseRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconRebaseRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconRebaseRoundedFilled as default } +export default IconRebaseRoundedFilled diff --git a/src/IconRebaseSharp.tsx b/src/IconRebaseSharp.tsx index d9008e0cc..d3a99623f 100644 --- a/src/IconRebaseSharp.tsx +++ b/src/IconRebaseSharp.tsx @@ -8,4 +8,4 @@ const IconRebaseSharp: React.FC = ({ ...props }) => ( ) -export { IconRebaseSharp as default } +export default IconRebaseSharp diff --git a/src/IconRebaseSharpFilled.tsx b/src/IconRebaseSharpFilled.tsx index 43c6b0dc1..abf6b65b1 100644 --- a/src/IconRebaseSharpFilled.tsx +++ b/src/IconRebaseSharpFilled.tsx @@ -8,4 +8,4 @@ const IconRebaseSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconRebaseSharpFilled as default } +export default IconRebaseSharpFilled diff --git a/src/IconReceiptLongOffOutlined.tsx b/src/IconReceiptLongOffOutlined.tsx index e728987a4..808624ad6 100644 --- a/src/IconReceiptLongOffOutlined.tsx +++ b/src/IconReceiptLongOffOutlined.tsx @@ -8,4 +8,4 @@ const IconReceiptLongOffOutlined: React.FC = ({ ...props }) => ( ) -export { IconReceiptLongOffOutlined as default } +export default IconReceiptLongOffOutlined diff --git a/src/IconReceiptLongOffOutlinedFilled.tsx b/src/IconReceiptLongOffOutlinedFilled.tsx index 9d3b9aa6b..faad9d390 100644 --- a/src/IconReceiptLongOffOutlinedFilled.tsx +++ b/src/IconReceiptLongOffOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconReceiptLongOffOutlinedFilled: React.FC = ({ ) -export { IconReceiptLongOffOutlinedFilled as default } +export default IconReceiptLongOffOutlinedFilled diff --git a/src/IconReceiptLongOffRounded.tsx b/src/IconReceiptLongOffRounded.tsx index cacdce847..e60d7ede2 100644 --- a/src/IconReceiptLongOffRounded.tsx +++ b/src/IconReceiptLongOffRounded.tsx @@ -8,4 +8,4 @@ const IconReceiptLongOffRounded: React.FC = ({ ...props }) => ( ) -export { IconReceiptLongOffRounded as default } +export default IconReceiptLongOffRounded diff --git a/src/IconReceiptLongOffRoundedFilled.tsx b/src/IconReceiptLongOffRoundedFilled.tsx index 61470a82e..a77122c83 100644 --- a/src/IconReceiptLongOffRoundedFilled.tsx +++ b/src/IconReceiptLongOffRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconReceiptLongOffRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconReceiptLongOffRoundedFilled as default } +export default IconReceiptLongOffRoundedFilled diff --git a/src/IconReceiptLongOffSharp.tsx b/src/IconReceiptLongOffSharp.tsx index 25673b89d..04c52ec2b 100644 --- a/src/IconReceiptLongOffSharp.tsx +++ b/src/IconReceiptLongOffSharp.tsx @@ -8,4 +8,4 @@ const IconReceiptLongOffSharp: React.FC = ({ ...props }) => ( ) -export { IconReceiptLongOffSharp as default } +export default IconReceiptLongOffSharp diff --git a/src/IconReceiptLongOffSharpFilled.tsx b/src/IconReceiptLongOffSharpFilled.tsx index 005ea995f..f26f4c1a0 100644 --- a/src/IconReceiptLongOffSharpFilled.tsx +++ b/src/IconReceiptLongOffSharpFilled.tsx @@ -8,4 +8,4 @@ const IconReceiptLongOffSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconReceiptLongOffSharpFilled as default } +export default IconReceiptLongOffSharpFilled diff --git a/src/IconReceiptLongOutlined.tsx b/src/IconReceiptLongOutlined.tsx index 94f190c18..b24597dad 100644 --- a/src/IconReceiptLongOutlined.tsx +++ b/src/IconReceiptLongOutlined.tsx @@ -8,4 +8,4 @@ const IconReceiptLongOutlined: React.FC = ({ ...props }) => ( ) -export { IconReceiptLongOutlined as default } +export default IconReceiptLongOutlined diff --git a/src/IconReceiptLongOutlinedFilled.tsx b/src/IconReceiptLongOutlinedFilled.tsx index aeb0f7d9a..852b232a0 100644 --- a/src/IconReceiptLongOutlinedFilled.tsx +++ b/src/IconReceiptLongOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconReceiptLongOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconReceiptLongOutlinedFilled as default } +export default IconReceiptLongOutlinedFilled diff --git a/src/IconReceiptLongRounded.tsx b/src/IconReceiptLongRounded.tsx index 6a0343f99..9355a0ad9 100644 --- a/src/IconReceiptLongRounded.tsx +++ b/src/IconReceiptLongRounded.tsx @@ -8,4 +8,4 @@ const IconReceiptLongRounded: React.FC = ({ ...props }) => ( ) -export { IconReceiptLongRounded as default } +export default IconReceiptLongRounded diff --git a/src/IconReceiptLongRoundedFilled.tsx b/src/IconReceiptLongRoundedFilled.tsx index 635a92095..13ebb5356 100644 --- a/src/IconReceiptLongRoundedFilled.tsx +++ b/src/IconReceiptLongRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconReceiptLongRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconReceiptLongRoundedFilled as default } +export default IconReceiptLongRoundedFilled diff --git a/src/IconReceiptLongSharp.tsx b/src/IconReceiptLongSharp.tsx index e1245ca2c..21c5439f0 100644 --- a/src/IconReceiptLongSharp.tsx +++ b/src/IconReceiptLongSharp.tsx @@ -8,4 +8,4 @@ const IconReceiptLongSharp: React.FC = ({ ...props }) => ( ) -export { IconReceiptLongSharp as default } +export default IconReceiptLongSharp diff --git a/src/IconReceiptLongSharpFilled.tsx b/src/IconReceiptLongSharpFilled.tsx index 79fae20c9..e530a04be 100644 --- a/src/IconReceiptLongSharpFilled.tsx +++ b/src/IconReceiptLongSharpFilled.tsx @@ -8,4 +8,4 @@ const IconReceiptLongSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconReceiptLongSharpFilled as default } +export default IconReceiptLongSharpFilled diff --git a/src/IconReceiptOutlined.tsx b/src/IconReceiptOutlined.tsx index 0ca64b103..cede2dbf1 100644 --- a/src/IconReceiptOutlined.tsx +++ b/src/IconReceiptOutlined.tsx @@ -8,4 +8,4 @@ const IconReceiptOutlined: React.FC = ({ ...props }) => ( ) -export { IconReceiptOutlined as default } +export default IconReceiptOutlined diff --git a/src/IconReceiptOutlinedFilled.tsx b/src/IconReceiptOutlinedFilled.tsx index 41e1cef54..9bc0c89e2 100644 --- a/src/IconReceiptOutlinedFilled.tsx +++ b/src/IconReceiptOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconReceiptOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconReceiptOutlinedFilled as default } +export default IconReceiptOutlinedFilled diff --git a/src/IconReceiptRounded.tsx b/src/IconReceiptRounded.tsx index 3ac1bf493..b0178e17d 100644 --- a/src/IconReceiptRounded.tsx +++ b/src/IconReceiptRounded.tsx @@ -8,4 +8,4 @@ const IconReceiptRounded: React.FC = ({ ...props }) => ( ) -export { IconReceiptRounded as default } +export default IconReceiptRounded diff --git a/src/IconReceiptRoundedFilled.tsx b/src/IconReceiptRoundedFilled.tsx index fe2486099..96c08b674 100644 --- a/src/IconReceiptRoundedFilled.tsx +++ b/src/IconReceiptRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconReceiptRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconReceiptRoundedFilled as default } +export default IconReceiptRoundedFilled diff --git a/src/IconReceiptSharp.tsx b/src/IconReceiptSharp.tsx index 59610100e..d5ab62212 100644 --- a/src/IconReceiptSharp.tsx +++ b/src/IconReceiptSharp.tsx @@ -8,4 +8,4 @@ const IconReceiptSharp: React.FC = ({ ...props }) => ( ) -export { IconReceiptSharp as default } +export default IconReceiptSharp diff --git a/src/IconReceiptSharpFilled.tsx b/src/IconReceiptSharpFilled.tsx index d35e41bb5..d0245f610 100644 --- a/src/IconReceiptSharpFilled.tsx +++ b/src/IconReceiptSharpFilled.tsx @@ -8,4 +8,4 @@ const IconReceiptSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconReceiptSharpFilled as default } +export default IconReceiptSharpFilled diff --git a/src/IconRecentActorsOutlined.tsx b/src/IconRecentActorsOutlined.tsx index 3ac2fcd1b..1f6605608 100644 --- a/src/IconRecentActorsOutlined.tsx +++ b/src/IconRecentActorsOutlined.tsx @@ -8,4 +8,4 @@ const IconRecentActorsOutlined: React.FC = ({ ...props }) => ( ) -export { IconRecentActorsOutlined as default } +export default IconRecentActorsOutlined diff --git a/src/IconRecentActorsOutlinedFilled.tsx b/src/IconRecentActorsOutlinedFilled.tsx index c66404d02..a84bab769 100644 --- a/src/IconRecentActorsOutlinedFilled.tsx +++ b/src/IconRecentActorsOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconRecentActorsOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconRecentActorsOutlinedFilled as default } +export default IconRecentActorsOutlinedFilled diff --git a/src/IconRecentActorsRounded.tsx b/src/IconRecentActorsRounded.tsx index 8120dd20c..7fd1e9ab7 100644 --- a/src/IconRecentActorsRounded.tsx +++ b/src/IconRecentActorsRounded.tsx @@ -8,4 +8,4 @@ const IconRecentActorsRounded: React.FC = ({ ...props }) => ( ) -export { IconRecentActorsRounded as default } +export default IconRecentActorsRounded diff --git a/src/IconRecentActorsRoundedFilled.tsx b/src/IconRecentActorsRoundedFilled.tsx index 7b00e5246..7a4373036 100644 --- a/src/IconRecentActorsRoundedFilled.tsx +++ b/src/IconRecentActorsRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconRecentActorsRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconRecentActorsRoundedFilled as default } +export default IconRecentActorsRoundedFilled diff --git a/src/IconRecentActorsSharp.tsx b/src/IconRecentActorsSharp.tsx index 0a192ca1e..5122ea260 100644 --- a/src/IconRecentActorsSharp.tsx +++ b/src/IconRecentActorsSharp.tsx @@ -8,4 +8,4 @@ const IconRecentActorsSharp: React.FC = ({ ...props }) => ( ) -export { IconRecentActorsSharp as default } +export default IconRecentActorsSharp diff --git a/src/IconRecentActorsSharpFilled.tsx b/src/IconRecentActorsSharpFilled.tsx index 8a7708d25..34a6bf820 100644 --- a/src/IconRecentActorsSharpFilled.tsx +++ b/src/IconRecentActorsSharpFilled.tsx @@ -8,4 +8,4 @@ const IconRecentActorsSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconRecentActorsSharpFilled as default } +export default IconRecentActorsSharpFilled diff --git a/src/IconRecentPatientOutlined.tsx b/src/IconRecentPatientOutlined.tsx index ff14c8a94..916f51aa4 100644 --- a/src/IconRecentPatientOutlined.tsx +++ b/src/IconRecentPatientOutlined.tsx @@ -8,4 +8,4 @@ const IconRecentPatientOutlined: React.FC = ({ ...props }) => ( ) -export { IconRecentPatientOutlined as default } +export default IconRecentPatientOutlined diff --git a/src/IconRecentPatientOutlinedFilled.tsx b/src/IconRecentPatientOutlinedFilled.tsx index aec6a3a37..513927ff3 100644 --- a/src/IconRecentPatientOutlinedFilled.tsx +++ b/src/IconRecentPatientOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconRecentPatientOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconRecentPatientOutlinedFilled as default } +export default IconRecentPatientOutlinedFilled diff --git a/src/IconRecentPatientRounded.tsx b/src/IconRecentPatientRounded.tsx index e1c9aed7a..68ef3eb53 100644 --- a/src/IconRecentPatientRounded.tsx +++ b/src/IconRecentPatientRounded.tsx @@ -8,4 +8,4 @@ const IconRecentPatientRounded: React.FC = ({ ...props }) => ( ) -export { IconRecentPatientRounded as default } +export default IconRecentPatientRounded diff --git a/src/IconRecentPatientRoundedFilled.tsx b/src/IconRecentPatientRoundedFilled.tsx index 1352ba328..c2ad11f81 100644 --- a/src/IconRecentPatientRoundedFilled.tsx +++ b/src/IconRecentPatientRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconRecentPatientRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconRecentPatientRoundedFilled as default } +export default IconRecentPatientRoundedFilled diff --git a/src/IconRecentPatientSharp.tsx b/src/IconRecentPatientSharp.tsx index 8054ec862..793857f56 100644 --- a/src/IconRecentPatientSharp.tsx +++ b/src/IconRecentPatientSharp.tsx @@ -8,4 +8,4 @@ const IconRecentPatientSharp: React.FC = ({ ...props }) => ( ) -export { IconRecentPatientSharp as default } +export default IconRecentPatientSharp diff --git a/src/IconRecentPatientSharpFilled.tsx b/src/IconRecentPatientSharpFilled.tsx index 312590f3a..d7a7d5f55 100644 --- a/src/IconRecentPatientSharpFilled.tsx +++ b/src/IconRecentPatientSharpFilled.tsx @@ -8,4 +8,4 @@ const IconRecentPatientSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconRecentPatientSharpFilled as default } +export default IconRecentPatientSharpFilled diff --git a/src/IconRecenterOutlined.tsx b/src/IconRecenterOutlined.tsx index dc4bf1503..36a0f229d 100644 --- a/src/IconRecenterOutlined.tsx +++ b/src/IconRecenterOutlined.tsx @@ -8,4 +8,4 @@ const IconRecenterOutlined: React.FC = ({ ...props }) => ( ) -export { IconRecenterOutlined as default } +export default IconRecenterOutlined diff --git a/src/IconRecenterOutlinedFilled.tsx b/src/IconRecenterOutlinedFilled.tsx index c05b00f42..7d96a8142 100644 --- a/src/IconRecenterOutlinedFilled.tsx +++ b/src/IconRecenterOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconRecenterOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconRecenterOutlinedFilled as default } +export default IconRecenterOutlinedFilled diff --git a/src/IconRecenterRounded.tsx b/src/IconRecenterRounded.tsx index 87788b77e..18a189fa0 100644 --- a/src/IconRecenterRounded.tsx +++ b/src/IconRecenterRounded.tsx @@ -8,4 +8,4 @@ const IconRecenterRounded: React.FC = ({ ...props }) => ( ) -export { IconRecenterRounded as default } +export default IconRecenterRounded diff --git a/src/IconRecenterRoundedFilled.tsx b/src/IconRecenterRoundedFilled.tsx index 1e68161ae..16886ac5a 100644 --- a/src/IconRecenterRoundedFilled.tsx +++ b/src/IconRecenterRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconRecenterRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconRecenterRoundedFilled as default } +export default IconRecenterRoundedFilled diff --git a/src/IconRecenterSharp.tsx b/src/IconRecenterSharp.tsx index 444f4258f..083df922d 100644 --- a/src/IconRecenterSharp.tsx +++ b/src/IconRecenterSharp.tsx @@ -8,4 +8,4 @@ const IconRecenterSharp: React.FC = ({ ...props }) => ( ) -export { IconRecenterSharp as default } +export default IconRecenterSharp diff --git a/src/IconRecenterSharpFilled.tsx b/src/IconRecenterSharpFilled.tsx index 411e49c42..703da8981 100644 --- a/src/IconRecenterSharpFilled.tsx +++ b/src/IconRecenterSharpFilled.tsx @@ -8,4 +8,4 @@ const IconRecenterSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconRecenterSharpFilled as default } +export default IconRecenterSharpFilled diff --git a/src/IconRecommendOutlined.tsx b/src/IconRecommendOutlined.tsx index 8757c5b15..5f56dd60f 100644 --- a/src/IconRecommendOutlined.tsx +++ b/src/IconRecommendOutlined.tsx @@ -8,4 +8,4 @@ const IconRecommendOutlined: React.FC = ({ ...props }) => ( ) -export { IconRecommendOutlined as default } +export default IconRecommendOutlined diff --git a/src/IconRecommendOutlinedFilled.tsx b/src/IconRecommendOutlinedFilled.tsx index 6d3912f53..27e117019 100644 --- a/src/IconRecommendOutlinedFilled.tsx +++ b/src/IconRecommendOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconRecommendOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconRecommendOutlinedFilled as default } +export default IconRecommendOutlinedFilled diff --git a/src/IconRecommendRounded.tsx b/src/IconRecommendRounded.tsx index b7d14146e..2aafea18c 100644 --- a/src/IconRecommendRounded.tsx +++ b/src/IconRecommendRounded.tsx @@ -8,4 +8,4 @@ const IconRecommendRounded: React.FC = ({ ...props }) => ( ) -export { IconRecommendRounded as default } +export default IconRecommendRounded diff --git a/src/IconRecommendRoundedFilled.tsx b/src/IconRecommendRoundedFilled.tsx index 234bfcb36..a225e2d2b 100644 --- a/src/IconRecommendRoundedFilled.tsx +++ b/src/IconRecommendRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconRecommendRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconRecommendRoundedFilled as default } +export default IconRecommendRoundedFilled diff --git a/src/IconRecommendSharp.tsx b/src/IconRecommendSharp.tsx index d39359a45..af7e4ac6a 100644 --- a/src/IconRecommendSharp.tsx +++ b/src/IconRecommendSharp.tsx @@ -8,4 +8,4 @@ const IconRecommendSharp: React.FC = ({ ...props }) => ( ) -export { IconRecommendSharp as default } +export default IconRecommendSharp diff --git a/src/IconRecommendSharpFilled.tsx b/src/IconRecommendSharpFilled.tsx index 289a7043d..09bd37e31 100644 --- a/src/IconRecommendSharpFilled.tsx +++ b/src/IconRecommendSharpFilled.tsx @@ -8,4 +8,4 @@ const IconRecommendSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconRecommendSharpFilled as default } +export default IconRecommendSharpFilled diff --git a/src/IconRecordVoiceOverOutlined.tsx b/src/IconRecordVoiceOverOutlined.tsx index 9cde16b25..5648cadf5 100644 --- a/src/IconRecordVoiceOverOutlined.tsx +++ b/src/IconRecordVoiceOverOutlined.tsx @@ -8,4 +8,4 @@ const IconRecordVoiceOverOutlined: React.FC = ({ ...props }) => ( ) -export { IconRecordVoiceOverOutlined as default } +export default IconRecordVoiceOverOutlined diff --git a/src/IconRecordVoiceOverOutlinedFilled.tsx b/src/IconRecordVoiceOverOutlinedFilled.tsx index 523bba279..95ef71336 100644 --- a/src/IconRecordVoiceOverOutlinedFilled.tsx +++ b/src/IconRecordVoiceOverOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconRecordVoiceOverOutlinedFilled: React.FC = ({ ) -export { IconRecordVoiceOverOutlinedFilled as default } +export default IconRecordVoiceOverOutlinedFilled diff --git a/src/IconRecordVoiceOverRounded.tsx b/src/IconRecordVoiceOverRounded.tsx index 9454f405f..74fc21bf2 100644 --- a/src/IconRecordVoiceOverRounded.tsx +++ b/src/IconRecordVoiceOverRounded.tsx @@ -8,4 +8,4 @@ const IconRecordVoiceOverRounded: React.FC = ({ ...props }) => ( ) -export { IconRecordVoiceOverRounded as default } +export default IconRecordVoiceOverRounded diff --git a/src/IconRecordVoiceOverRoundedFilled.tsx b/src/IconRecordVoiceOverRoundedFilled.tsx index 7dfb28768..08d5749e2 100644 --- a/src/IconRecordVoiceOverRoundedFilled.tsx +++ b/src/IconRecordVoiceOverRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconRecordVoiceOverRoundedFilled: React.FC = ({ ) -export { IconRecordVoiceOverRoundedFilled as default } +export default IconRecordVoiceOverRoundedFilled diff --git a/src/IconRecordVoiceOverSharp.tsx b/src/IconRecordVoiceOverSharp.tsx index df1c606b5..a2ae79476 100644 --- a/src/IconRecordVoiceOverSharp.tsx +++ b/src/IconRecordVoiceOverSharp.tsx @@ -8,4 +8,4 @@ const IconRecordVoiceOverSharp: React.FC = ({ ...props }) => ( ) -export { IconRecordVoiceOverSharp as default } +export default IconRecordVoiceOverSharp diff --git a/src/IconRecordVoiceOverSharpFilled.tsx b/src/IconRecordVoiceOverSharpFilled.tsx index d4996f173..578801851 100644 --- a/src/IconRecordVoiceOverSharpFilled.tsx +++ b/src/IconRecordVoiceOverSharpFilled.tsx @@ -8,4 +8,4 @@ const IconRecordVoiceOverSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconRecordVoiceOverSharpFilled as default } +export default IconRecordVoiceOverSharpFilled diff --git a/src/IconRectangleOutlined.tsx b/src/IconRectangleOutlined.tsx index 948b23284..c6e6dd9a3 100644 --- a/src/IconRectangleOutlined.tsx +++ b/src/IconRectangleOutlined.tsx @@ -8,4 +8,4 @@ const IconRectangleOutlined: React.FC = ({ ...props }) => ( ) -export { IconRectangleOutlined as default } +export default IconRectangleOutlined diff --git a/src/IconRectangleOutlinedFilled.tsx b/src/IconRectangleOutlinedFilled.tsx index 34eaab816..d007e308f 100644 --- a/src/IconRectangleOutlinedFilled.tsx +++ b/src/IconRectangleOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconRectangleOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconRectangleOutlinedFilled as default } +export default IconRectangleOutlinedFilled diff --git a/src/IconRectangleRounded.tsx b/src/IconRectangleRounded.tsx index bd72fc215..5fb809a28 100644 --- a/src/IconRectangleRounded.tsx +++ b/src/IconRectangleRounded.tsx @@ -8,4 +8,4 @@ const IconRectangleRounded: React.FC = ({ ...props }) => ( ) -export { IconRectangleRounded as default } +export default IconRectangleRounded diff --git a/src/IconRectangleRoundedFilled.tsx b/src/IconRectangleRoundedFilled.tsx index e4148cdd6..93b27e87b 100644 --- a/src/IconRectangleRoundedFilled.tsx +++ b/src/IconRectangleRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconRectangleRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconRectangleRoundedFilled as default } +export default IconRectangleRoundedFilled diff --git a/src/IconRectangleSharp.tsx b/src/IconRectangleSharp.tsx index 4dfa29edb..57428a61d 100644 --- a/src/IconRectangleSharp.tsx +++ b/src/IconRectangleSharp.tsx @@ -8,4 +8,4 @@ const IconRectangleSharp: React.FC = ({ ...props }) => ( ) -export { IconRectangleSharp as default } +export default IconRectangleSharp diff --git a/src/IconRectangleSharpFilled.tsx b/src/IconRectangleSharpFilled.tsx index ecff52ffe..190753cb0 100644 --- a/src/IconRectangleSharpFilled.tsx +++ b/src/IconRectangleSharpFilled.tsx @@ -8,4 +8,4 @@ const IconRectangleSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconRectangleSharpFilled as default } +export default IconRectangleSharpFilled diff --git a/src/IconRecyclingOutlined.tsx b/src/IconRecyclingOutlined.tsx index c6fcaa228..77fe95bb4 100644 --- a/src/IconRecyclingOutlined.tsx +++ b/src/IconRecyclingOutlined.tsx @@ -8,4 +8,4 @@ const IconRecyclingOutlined: React.FC = ({ ...props }) => ( ) -export { IconRecyclingOutlined as default } +export default IconRecyclingOutlined diff --git a/src/IconRecyclingOutlinedFilled.tsx b/src/IconRecyclingOutlinedFilled.tsx index 14bd73c99..1284471be 100644 --- a/src/IconRecyclingOutlinedFilled.tsx +++ b/src/IconRecyclingOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconRecyclingOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconRecyclingOutlinedFilled as default } +export default IconRecyclingOutlinedFilled diff --git a/src/IconRecyclingRounded.tsx b/src/IconRecyclingRounded.tsx index 74e337166..93dddd332 100644 --- a/src/IconRecyclingRounded.tsx +++ b/src/IconRecyclingRounded.tsx @@ -8,4 +8,4 @@ const IconRecyclingRounded: React.FC = ({ ...props }) => ( ) -export { IconRecyclingRounded as default } +export default IconRecyclingRounded diff --git a/src/IconRecyclingRoundedFilled.tsx b/src/IconRecyclingRoundedFilled.tsx index c10e93b72..8e791aa70 100644 --- a/src/IconRecyclingRoundedFilled.tsx +++ b/src/IconRecyclingRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconRecyclingRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconRecyclingRoundedFilled as default } +export default IconRecyclingRoundedFilled diff --git a/src/IconRecyclingSharp.tsx b/src/IconRecyclingSharp.tsx index d72a3d7ed..b2d25e027 100644 --- a/src/IconRecyclingSharp.tsx +++ b/src/IconRecyclingSharp.tsx @@ -8,4 +8,4 @@ const IconRecyclingSharp: React.FC = ({ ...props }) => ( ) -export { IconRecyclingSharp as default } +export default IconRecyclingSharp diff --git a/src/IconRecyclingSharpFilled.tsx b/src/IconRecyclingSharpFilled.tsx index b96ec07d3..b1eac24a3 100644 --- a/src/IconRecyclingSharpFilled.tsx +++ b/src/IconRecyclingSharpFilled.tsx @@ -8,4 +8,4 @@ const IconRecyclingSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconRecyclingSharpFilled as default } +export default IconRecyclingSharpFilled diff --git a/src/IconRedeemOutlined.tsx b/src/IconRedeemOutlined.tsx index db181fe57..854f4fa3d 100644 --- a/src/IconRedeemOutlined.tsx +++ b/src/IconRedeemOutlined.tsx @@ -8,4 +8,4 @@ const IconRedeemOutlined: React.FC = ({ ...props }) => ( ) -export { IconRedeemOutlined as default } +export default IconRedeemOutlined diff --git a/src/IconRedeemOutlinedFilled.tsx b/src/IconRedeemOutlinedFilled.tsx index c26f9afd4..69f68eefb 100644 --- a/src/IconRedeemOutlinedFilled.tsx +++ b/src/IconRedeemOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconRedeemOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconRedeemOutlinedFilled as default } +export default IconRedeemOutlinedFilled diff --git a/src/IconRedeemRounded.tsx b/src/IconRedeemRounded.tsx index fadc2ac3d..61111e023 100644 --- a/src/IconRedeemRounded.tsx +++ b/src/IconRedeemRounded.tsx @@ -8,4 +8,4 @@ const IconRedeemRounded: React.FC = ({ ...props }) => ( ) -export { IconRedeemRounded as default } +export default IconRedeemRounded diff --git a/src/IconRedeemRoundedFilled.tsx b/src/IconRedeemRoundedFilled.tsx index 1b9e8c602..0c85795f9 100644 --- a/src/IconRedeemRoundedFilled.tsx +++ b/src/IconRedeemRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconRedeemRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconRedeemRoundedFilled as default } +export default IconRedeemRoundedFilled diff --git a/src/IconRedeemSharp.tsx b/src/IconRedeemSharp.tsx index 4b38a6c7f..4a854dc12 100644 --- a/src/IconRedeemSharp.tsx +++ b/src/IconRedeemSharp.tsx @@ -8,4 +8,4 @@ const IconRedeemSharp: React.FC = ({ ...props }) => ( ) -export { IconRedeemSharp as default } +export default IconRedeemSharp diff --git a/src/IconRedeemSharpFilled.tsx b/src/IconRedeemSharpFilled.tsx index 7ada06cff..9ba5ed3af 100644 --- a/src/IconRedeemSharpFilled.tsx +++ b/src/IconRedeemSharpFilled.tsx @@ -8,4 +8,4 @@ const IconRedeemSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconRedeemSharpFilled as default } +export default IconRedeemSharpFilled diff --git a/src/IconRedoOutlined.tsx b/src/IconRedoOutlined.tsx index 9e2de4ab8..558e668b4 100644 --- a/src/IconRedoOutlined.tsx +++ b/src/IconRedoOutlined.tsx @@ -8,4 +8,4 @@ const IconRedoOutlined: React.FC = ({ ...props }) => ( ) -export { IconRedoOutlined as default } +export default IconRedoOutlined diff --git a/src/IconRedoOutlinedFilled.tsx b/src/IconRedoOutlinedFilled.tsx index 75c8906dd..2efefd792 100644 --- a/src/IconRedoOutlinedFilled.tsx +++ b/src/IconRedoOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconRedoOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconRedoOutlinedFilled as default } +export default IconRedoOutlinedFilled diff --git a/src/IconRedoRounded.tsx b/src/IconRedoRounded.tsx index 001510d9d..f037034fc 100644 --- a/src/IconRedoRounded.tsx +++ b/src/IconRedoRounded.tsx @@ -8,4 +8,4 @@ const IconRedoRounded: React.FC = ({ ...props }) => ( ) -export { IconRedoRounded as default } +export default IconRedoRounded diff --git a/src/IconRedoRoundedFilled.tsx b/src/IconRedoRoundedFilled.tsx index 1415df732..1a3ae0427 100644 --- a/src/IconRedoRoundedFilled.tsx +++ b/src/IconRedoRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconRedoRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconRedoRoundedFilled as default } +export default IconRedoRoundedFilled diff --git a/src/IconRedoSharp.tsx b/src/IconRedoSharp.tsx index 3751e365e..3f1d8ad0b 100644 --- a/src/IconRedoSharp.tsx +++ b/src/IconRedoSharp.tsx @@ -8,4 +8,4 @@ const IconRedoSharp: React.FC = ({ ...props }) => ( ) -export { IconRedoSharp as default } +export default IconRedoSharp diff --git a/src/IconRedoSharpFilled.tsx b/src/IconRedoSharpFilled.tsx index 772436910..20468a3f9 100644 --- a/src/IconRedoSharpFilled.tsx +++ b/src/IconRedoSharpFilled.tsx @@ -8,4 +8,4 @@ const IconRedoSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconRedoSharpFilled as default } +export default IconRedoSharpFilled diff --git a/src/IconReduceCapacityOutlined.tsx b/src/IconReduceCapacityOutlined.tsx index 0f9642787..6a829e05c 100644 --- a/src/IconReduceCapacityOutlined.tsx +++ b/src/IconReduceCapacityOutlined.tsx @@ -8,4 +8,4 @@ const IconReduceCapacityOutlined: React.FC = ({ ...props }) => ( ) -export { IconReduceCapacityOutlined as default } +export default IconReduceCapacityOutlined diff --git a/src/IconReduceCapacityOutlinedFilled.tsx b/src/IconReduceCapacityOutlinedFilled.tsx index e76652db9..ef314dd38 100644 --- a/src/IconReduceCapacityOutlinedFilled.tsx +++ b/src/IconReduceCapacityOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconReduceCapacityOutlinedFilled: React.FC = ({ ) -export { IconReduceCapacityOutlinedFilled as default } +export default IconReduceCapacityOutlinedFilled diff --git a/src/IconReduceCapacityRounded.tsx b/src/IconReduceCapacityRounded.tsx index 175d8124f..1fc915335 100644 --- a/src/IconReduceCapacityRounded.tsx +++ b/src/IconReduceCapacityRounded.tsx @@ -8,4 +8,4 @@ const IconReduceCapacityRounded: React.FC = ({ ...props }) => ( ) -export { IconReduceCapacityRounded as default } +export default IconReduceCapacityRounded diff --git a/src/IconReduceCapacityRoundedFilled.tsx b/src/IconReduceCapacityRoundedFilled.tsx index 955598119..21f030d04 100644 --- a/src/IconReduceCapacityRoundedFilled.tsx +++ b/src/IconReduceCapacityRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconReduceCapacityRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconReduceCapacityRoundedFilled as default } +export default IconReduceCapacityRoundedFilled diff --git a/src/IconReduceCapacitySharp.tsx b/src/IconReduceCapacitySharp.tsx index da7652e5f..57597bc0f 100644 --- a/src/IconReduceCapacitySharp.tsx +++ b/src/IconReduceCapacitySharp.tsx @@ -8,4 +8,4 @@ const IconReduceCapacitySharp: React.FC = ({ ...props }) => ( ) -export { IconReduceCapacitySharp as default } +export default IconReduceCapacitySharp diff --git a/src/IconReduceCapacitySharpFilled.tsx b/src/IconReduceCapacitySharpFilled.tsx index 57d6aa272..333e2e9aa 100644 --- a/src/IconReduceCapacitySharpFilled.tsx +++ b/src/IconReduceCapacitySharpFilled.tsx @@ -8,4 +8,4 @@ const IconReduceCapacitySharpFilled: React.FC = ({ ...props }) => ( ) -export { IconReduceCapacitySharpFilled as default } +export default IconReduceCapacitySharpFilled diff --git a/src/IconRefreshOutlined.tsx b/src/IconRefreshOutlined.tsx index 86b97452b..0e389f14c 100644 --- a/src/IconRefreshOutlined.tsx +++ b/src/IconRefreshOutlined.tsx @@ -8,4 +8,4 @@ const IconRefreshOutlined: React.FC = ({ ...props }) => ( ) -export { IconRefreshOutlined as default } +export default IconRefreshOutlined diff --git a/src/IconRefreshOutlinedFilled.tsx b/src/IconRefreshOutlinedFilled.tsx index 61eaa3ec6..6a1ba2d44 100644 --- a/src/IconRefreshOutlinedFilled.tsx +++ b/src/IconRefreshOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconRefreshOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconRefreshOutlinedFilled as default } +export default IconRefreshOutlinedFilled diff --git a/src/IconRefreshRounded.tsx b/src/IconRefreshRounded.tsx index 3509ef7b8..10ea5c6c7 100644 --- a/src/IconRefreshRounded.tsx +++ b/src/IconRefreshRounded.tsx @@ -8,4 +8,4 @@ const IconRefreshRounded: React.FC = ({ ...props }) => ( ) -export { IconRefreshRounded as default } +export default IconRefreshRounded diff --git a/src/IconRefreshRoundedFilled.tsx b/src/IconRefreshRoundedFilled.tsx index 753f305b9..994c145ff 100644 --- a/src/IconRefreshRoundedFilled.tsx +++ b/src/IconRefreshRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconRefreshRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconRefreshRoundedFilled as default } +export default IconRefreshRoundedFilled diff --git a/src/IconRefreshSharp.tsx b/src/IconRefreshSharp.tsx index a8a07d196..32ebef687 100644 --- a/src/IconRefreshSharp.tsx +++ b/src/IconRefreshSharp.tsx @@ -8,4 +8,4 @@ const IconRefreshSharp: React.FC = ({ ...props }) => ( ) -export { IconRefreshSharp as default } +export default IconRefreshSharp diff --git a/src/IconRefreshSharpFilled.tsx b/src/IconRefreshSharpFilled.tsx index 62f42a6cd..2c46ec990 100644 --- a/src/IconRefreshSharpFilled.tsx +++ b/src/IconRefreshSharpFilled.tsx @@ -8,4 +8,4 @@ const IconRefreshSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconRefreshSharpFilled as default } +export default IconRefreshSharpFilled diff --git a/src/IconRegularExpressionOutlined.tsx b/src/IconRegularExpressionOutlined.tsx index 44178b056..2779e05e3 100644 --- a/src/IconRegularExpressionOutlined.tsx +++ b/src/IconRegularExpressionOutlined.tsx @@ -8,4 +8,4 @@ const IconRegularExpressionOutlined: React.FC = ({ ...props }) => ( ) -export { IconRegularExpressionOutlined as default } +export default IconRegularExpressionOutlined diff --git a/src/IconRegularExpressionOutlinedFilled.tsx b/src/IconRegularExpressionOutlinedFilled.tsx index a684c7fac..800a7ff54 100644 --- a/src/IconRegularExpressionOutlinedFilled.tsx +++ b/src/IconRegularExpressionOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconRegularExpressionOutlinedFilled: React.FC = ({ ) -export { IconRegularExpressionOutlinedFilled as default } +export default IconRegularExpressionOutlinedFilled diff --git a/src/IconRegularExpressionRounded.tsx b/src/IconRegularExpressionRounded.tsx index 0bcea9bc2..2707abeda 100644 --- a/src/IconRegularExpressionRounded.tsx +++ b/src/IconRegularExpressionRounded.tsx @@ -8,4 +8,4 @@ const IconRegularExpressionRounded: React.FC = ({ ...props }) => ( ) -export { IconRegularExpressionRounded as default } +export default IconRegularExpressionRounded diff --git a/src/IconRegularExpressionRoundedFilled.tsx b/src/IconRegularExpressionRoundedFilled.tsx index 25beca297..f770ccd25 100644 --- a/src/IconRegularExpressionRoundedFilled.tsx +++ b/src/IconRegularExpressionRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconRegularExpressionRoundedFilled: React.FC = ({ ) -export { IconRegularExpressionRoundedFilled as default } +export default IconRegularExpressionRoundedFilled diff --git a/src/IconRegularExpressionSharp.tsx b/src/IconRegularExpressionSharp.tsx index 8ae19f280..ed9cb83c4 100644 --- a/src/IconRegularExpressionSharp.tsx +++ b/src/IconRegularExpressionSharp.tsx @@ -8,4 +8,4 @@ const IconRegularExpressionSharp: React.FC = ({ ...props }) => ( ) -export { IconRegularExpressionSharp as default } +export default IconRegularExpressionSharp diff --git a/src/IconRegularExpressionSharpFilled.tsx b/src/IconRegularExpressionSharpFilled.tsx index f03509a97..fbfe79fff 100644 --- a/src/IconRegularExpressionSharpFilled.tsx +++ b/src/IconRegularExpressionSharpFilled.tsx @@ -10,4 +10,4 @@ const IconRegularExpressionSharpFilled: React.FC = ({ ) -export { IconRegularExpressionSharpFilled as default } +export default IconRegularExpressionSharpFilled diff --git a/src/IconRelaxOutlined.tsx b/src/IconRelaxOutlined.tsx index 7042998d4..caf1ab719 100644 --- a/src/IconRelaxOutlined.tsx +++ b/src/IconRelaxOutlined.tsx @@ -8,4 +8,4 @@ const IconRelaxOutlined: React.FC = ({ ...props }) => ( ) -export { IconRelaxOutlined as default } +export default IconRelaxOutlined diff --git a/src/IconRelaxOutlinedFilled.tsx b/src/IconRelaxOutlinedFilled.tsx index de74ea2cd..33ea7cb6a 100644 --- a/src/IconRelaxOutlinedFilled.tsx +++ b/src/IconRelaxOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconRelaxOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconRelaxOutlinedFilled as default } +export default IconRelaxOutlinedFilled diff --git a/src/IconRelaxRounded.tsx b/src/IconRelaxRounded.tsx index 711b29261..4c09299dc 100644 --- a/src/IconRelaxRounded.tsx +++ b/src/IconRelaxRounded.tsx @@ -8,4 +8,4 @@ const IconRelaxRounded: React.FC = ({ ...props }) => ( ) -export { IconRelaxRounded as default } +export default IconRelaxRounded diff --git a/src/IconRelaxRoundedFilled.tsx b/src/IconRelaxRoundedFilled.tsx index 697314273..d6c41f39e 100644 --- a/src/IconRelaxRoundedFilled.tsx +++ b/src/IconRelaxRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconRelaxRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconRelaxRoundedFilled as default } +export default IconRelaxRoundedFilled diff --git a/src/IconRelaxSharp.tsx b/src/IconRelaxSharp.tsx index 96cfe42ad..8fc06e7c5 100644 --- a/src/IconRelaxSharp.tsx +++ b/src/IconRelaxSharp.tsx @@ -8,4 +8,4 @@ const IconRelaxSharp: React.FC = ({ ...props }) => ( ) -export { IconRelaxSharp as default } +export default IconRelaxSharp diff --git a/src/IconRelaxSharpFilled.tsx b/src/IconRelaxSharpFilled.tsx index 32f72ecd4..f072d8664 100644 --- a/src/IconRelaxSharpFilled.tsx +++ b/src/IconRelaxSharpFilled.tsx @@ -8,4 +8,4 @@ const IconRelaxSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconRelaxSharpFilled as default } +export default IconRelaxSharpFilled diff --git a/src/IconReleaseAlertOutlined.tsx b/src/IconReleaseAlertOutlined.tsx index 63ffc1ae6..b2770edf6 100644 --- a/src/IconReleaseAlertOutlined.tsx +++ b/src/IconReleaseAlertOutlined.tsx @@ -8,4 +8,4 @@ const IconReleaseAlertOutlined: React.FC = ({ ...props }) => ( ) -export { IconReleaseAlertOutlined as default } +export default IconReleaseAlertOutlined diff --git a/src/IconReleaseAlertOutlinedFilled.tsx b/src/IconReleaseAlertOutlinedFilled.tsx index b528d5fcf..87ee90a88 100644 --- a/src/IconReleaseAlertOutlinedFilled.tsx +++ b/src/IconReleaseAlertOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconReleaseAlertOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconReleaseAlertOutlinedFilled as default } +export default IconReleaseAlertOutlinedFilled diff --git a/src/IconReleaseAlertRounded.tsx b/src/IconReleaseAlertRounded.tsx index 5d48c4bde..6c62d84a9 100644 --- a/src/IconReleaseAlertRounded.tsx +++ b/src/IconReleaseAlertRounded.tsx @@ -8,4 +8,4 @@ const IconReleaseAlertRounded: React.FC = ({ ...props }) => ( ) -export { IconReleaseAlertRounded as default } +export default IconReleaseAlertRounded diff --git a/src/IconReleaseAlertRoundedFilled.tsx b/src/IconReleaseAlertRoundedFilled.tsx index 406820f60..2fcb2f993 100644 --- a/src/IconReleaseAlertRoundedFilled.tsx +++ b/src/IconReleaseAlertRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconReleaseAlertRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconReleaseAlertRoundedFilled as default } +export default IconReleaseAlertRoundedFilled diff --git a/src/IconReleaseAlertSharp.tsx b/src/IconReleaseAlertSharp.tsx index e795a30e3..b3e561813 100644 --- a/src/IconReleaseAlertSharp.tsx +++ b/src/IconReleaseAlertSharp.tsx @@ -8,4 +8,4 @@ const IconReleaseAlertSharp: React.FC = ({ ...props }) => ( ) -export { IconReleaseAlertSharp as default } +export default IconReleaseAlertSharp diff --git a/src/IconReleaseAlertSharpFilled.tsx b/src/IconReleaseAlertSharpFilled.tsx index 757df569e..74590925a 100644 --- a/src/IconReleaseAlertSharpFilled.tsx +++ b/src/IconReleaseAlertSharpFilled.tsx @@ -8,4 +8,4 @@ const IconReleaseAlertSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconReleaseAlertSharpFilled as default } +export default IconReleaseAlertSharpFilled diff --git a/src/IconRememberMeOutlined.tsx b/src/IconRememberMeOutlined.tsx index 5e9a23805..eaea82a50 100644 --- a/src/IconRememberMeOutlined.tsx +++ b/src/IconRememberMeOutlined.tsx @@ -8,4 +8,4 @@ const IconRememberMeOutlined: React.FC = ({ ...props }) => ( ) -export { IconRememberMeOutlined as default } +export default IconRememberMeOutlined diff --git a/src/IconRememberMeOutlinedFilled.tsx b/src/IconRememberMeOutlinedFilled.tsx index 799ed9ac3..a53a297eb 100644 --- a/src/IconRememberMeOutlinedFilled.tsx +++ b/src/IconRememberMeOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconRememberMeOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconRememberMeOutlinedFilled as default } +export default IconRememberMeOutlinedFilled diff --git a/src/IconRememberMeRounded.tsx b/src/IconRememberMeRounded.tsx index f5e8cbb00..2ada10701 100644 --- a/src/IconRememberMeRounded.tsx +++ b/src/IconRememberMeRounded.tsx @@ -8,4 +8,4 @@ const IconRememberMeRounded: React.FC = ({ ...props }) => ( ) -export { IconRememberMeRounded as default } +export default IconRememberMeRounded diff --git a/src/IconRememberMeRoundedFilled.tsx b/src/IconRememberMeRoundedFilled.tsx index a37a94c26..825cd876d 100644 --- a/src/IconRememberMeRoundedFilled.tsx +++ b/src/IconRememberMeRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconRememberMeRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconRememberMeRoundedFilled as default } +export default IconRememberMeRoundedFilled diff --git a/src/IconRememberMeSharp.tsx b/src/IconRememberMeSharp.tsx index ba0a05090..399cd41cf 100644 --- a/src/IconRememberMeSharp.tsx +++ b/src/IconRememberMeSharp.tsx @@ -8,4 +8,4 @@ const IconRememberMeSharp: React.FC = ({ ...props }) => ( ) -export { IconRememberMeSharp as default } +export default IconRememberMeSharp diff --git a/src/IconRememberMeSharpFilled.tsx b/src/IconRememberMeSharpFilled.tsx index f2ae8c480..b3ed10075 100644 --- a/src/IconRememberMeSharpFilled.tsx +++ b/src/IconRememberMeSharpFilled.tsx @@ -8,4 +8,4 @@ const IconRememberMeSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconRememberMeSharpFilled as default } +export default IconRememberMeSharpFilled diff --git a/src/IconReminderOutlined.tsx b/src/IconReminderOutlined.tsx index 2360c8d2a..8cbb5e356 100644 --- a/src/IconReminderOutlined.tsx +++ b/src/IconReminderOutlined.tsx @@ -8,4 +8,4 @@ const IconReminderOutlined: React.FC = ({ ...props }) => ( ) -export { IconReminderOutlined as default } +export default IconReminderOutlined diff --git a/src/IconReminderOutlinedFilled.tsx b/src/IconReminderOutlinedFilled.tsx index 833a863a0..54a177847 100644 --- a/src/IconReminderOutlinedFilled.tsx +++ b/src/IconReminderOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconReminderOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconReminderOutlinedFilled as default } +export default IconReminderOutlinedFilled diff --git a/src/IconReminderRounded.tsx b/src/IconReminderRounded.tsx index e2ceee666..18a06d891 100644 --- a/src/IconReminderRounded.tsx +++ b/src/IconReminderRounded.tsx @@ -8,4 +8,4 @@ const IconReminderRounded: React.FC = ({ ...props }) => ( ) -export { IconReminderRounded as default } +export default IconReminderRounded diff --git a/src/IconReminderRoundedFilled.tsx b/src/IconReminderRoundedFilled.tsx index fc36c72b2..cc0a8b652 100644 --- a/src/IconReminderRoundedFilled.tsx +++ b/src/IconReminderRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconReminderRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconReminderRoundedFilled as default } +export default IconReminderRoundedFilled diff --git a/src/IconReminderSharp.tsx b/src/IconReminderSharp.tsx index 3823c3023..5b56ffbf0 100644 --- a/src/IconReminderSharp.tsx +++ b/src/IconReminderSharp.tsx @@ -8,4 +8,4 @@ const IconReminderSharp: React.FC = ({ ...props }) => ( ) -export { IconReminderSharp as default } +export default IconReminderSharp diff --git a/src/IconReminderSharpFilled.tsx b/src/IconReminderSharpFilled.tsx index bbc6ca140..4f1b829d8 100644 --- a/src/IconReminderSharpFilled.tsx +++ b/src/IconReminderSharpFilled.tsx @@ -8,4 +8,4 @@ const IconReminderSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconReminderSharpFilled as default } +export default IconReminderSharpFilled diff --git a/src/IconRemoteGenOutlined.tsx b/src/IconRemoteGenOutlined.tsx index d4fe16287..95bc9ca98 100644 --- a/src/IconRemoteGenOutlined.tsx +++ b/src/IconRemoteGenOutlined.tsx @@ -8,4 +8,4 @@ const IconRemoteGenOutlined: React.FC = ({ ...props }) => ( ) -export { IconRemoteGenOutlined as default } +export default IconRemoteGenOutlined diff --git a/src/IconRemoteGenOutlinedFilled.tsx b/src/IconRemoteGenOutlinedFilled.tsx index 0fc5e2157..9cc1a0530 100644 --- a/src/IconRemoteGenOutlinedFilled.tsx +++ b/src/IconRemoteGenOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconRemoteGenOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconRemoteGenOutlinedFilled as default } +export default IconRemoteGenOutlinedFilled diff --git a/src/IconRemoteGenRounded.tsx b/src/IconRemoteGenRounded.tsx index 42b74de07..831e5b609 100644 --- a/src/IconRemoteGenRounded.tsx +++ b/src/IconRemoteGenRounded.tsx @@ -8,4 +8,4 @@ const IconRemoteGenRounded: React.FC = ({ ...props }) => ( ) -export { IconRemoteGenRounded as default } +export default IconRemoteGenRounded diff --git a/src/IconRemoteGenRoundedFilled.tsx b/src/IconRemoteGenRoundedFilled.tsx index c75d8b116..675876a95 100644 --- a/src/IconRemoteGenRoundedFilled.tsx +++ b/src/IconRemoteGenRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconRemoteGenRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconRemoteGenRoundedFilled as default } +export default IconRemoteGenRoundedFilled diff --git a/src/IconRemoteGenSharp.tsx b/src/IconRemoteGenSharp.tsx index 131592a2c..881f69a53 100644 --- a/src/IconRemoteGenSharp.tsx +++ b/src/IconRemoteGenSharp.tsx @@ -8,4 +8,4 @@ const IconRemoteGenSharp: React.FC = ({ ...props }) => ( ) -export { IconRemoteGenSharp as default } +export default IconRemoteGenSharp diff --git a/src/IconRemoteGenSharpFilled.tsx b/src/IconRemoteGenSharpFilled.tsx index 94627d0db..e84d3790d 100644 --- a/src/IconRemoteGenSharpFilled.tsx +++ b/src/IconRemoteGenSharpFilled.tsx @@ -8,4 +8,4 @@ const IconRemoteGenSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconRemoteGenSharpFilled as default } +export default IconRemoteGenSharpFilled diff --git a/src/IconRemoveDoneOutlined.tsx b/src/IconRemoveDoneOutlined.tsx index 4f2b47713..4a81ce7c1 100644 --- a/src/IconRemoveDoneOutlined.tsx +++ b/src/IconRemoveDoneOutlined.tsx @@ -8,4 +8,4 @@ const IconRemoveDoneOutlined: React.FC = ({ ...props }) => ( ) -export { IconRemoveDoneOutlined as default } +export default IconRemoveDoneOutlined diff --git a/src/IconRemoveDoneOutlinedFilled.tsx b/src/IconRemoveDoneOutlinedFilled.tsx index 585510e22..1d9d3105c 100644 --- a/src/IconRemoveDoneOutlinedFilled.tsx +++ b/src/IconRemoveDoneOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconRemoveDoneOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconRemoveDoneOutlinedFilled as default } +export default IconRemoveDoneOutlinedFilled diff --git a/src/IconRemoveDoneRounded.tsx b/src/IconRemoveDoneRounded.tsx index 548b0252b..73fa47daf 100644 --- a/src/IconRemoveDoneRounded.tsx +++ b/src/IconRemoveDoneRounded.tsx @@ -8,4 +8,4 @@ const IconRemoveDoneRounded: React.FC = ({ ...props }) => ( ) -export { IconRemoveDoneRounded as default } +export default IconRemoveDoneRounded diff --git a/src/IconRemoveDoneRoundedFilled.tsx b/src/IconRemoveDoneRoundedFilled.tsx index ff570f286..075a023b5 100644 --- a/src/IconRemoveDoneRoundedFilled.tsx +++ b/src/IconRemoveDoneRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconRemoveDoneRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconRemoveDoneRoundedFilled as default } +export default IconRemoveDoneRoundedFilled diff --git a/src/IconRemoveDoneSharp.tsx b/src/IconRemoveDoneSharp.tsx index ea794b075..337034f60 100644 --- a/src/IconRemoveDoneSharp.tsx +++ b/src/IconRemoveDoneSharp.tsx @@ -8,4 +8,4 @@ const IconRemoveDoneSharp: React.FC = ({ ...props }) => ( ) -export { IconRemoveDoneSharp as default } +export default IconRemoveDoneSharp diff --git a/src/IconRemoveDoneSharpFilled.tsx b/src/IconRemoveDoneSharpFilled.tsx index 79383e4f2..5d51f8a47 100644 --- a/src/IconRemoveDoneSharpFilled.tsx +++ b/src/IconRemoveDoneSharpFilled.tsx @@ -8,4 +8,4 @@ const IconRemoveDoneSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconRemoveDoneSharpFilled as default } +export default IconRemoveDoneSharpFilled diff --git a/src/IconRemoveFromQueueOutlined.tsx b/src/IconRemoveFromQueueOutlined.tsx index fbaa0519d..ffc8c349b 100644 --- a/src/IconRemoveFromQueueOutlined.tsx +++ b/src/IconRemoveFromQueueOutlined.tsx @@ -8,4 +8,4 @@ const IconRemoveFromQueueOutlined: React.FC = ({ ...props }) => ( ) -export { IconRemoveFromQueueOutlined as default } +export default IconRemoveFromQueueOutlined diff --git a/src/IconRemoveFromQueueOutlinedFilled.tsx b/src/IconRemoveFromQueueOutlinedFilled.tsx index b12aae457..14ed67505 100644 --- a/src/IconRemoveFromQueueOutlinedFilled.tsx +++ b/src/IconRemoveFromQueueOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconRemoveFromQueueOutlinedFilled: React.FC = ({ ) -export { IconRemoveFromQueueOutlinedFilled as default } +export default IconRemoveFromQueueOutlinedFilled diff --git a/src/IconRemoveFromQueueRounded.tsx b/src/IconRemoveFromQueueRounded.tsx index 784b71408..1263aa024 100644 --- a/src/IconRemoveFromQueueRounded.tsx +++ b/src/IconRemoveFromQueueRounded.tsx @@ -8,4 +8,4 @@ const IconRemoveFromQueueRounded: React.FC = ({ ...props }) => ( ) -export { IconRemoveFromQueueRounded as default } +export default IconRemoveFromQueueRounded diff --git a/src/IconRemoveFromQueueRoundedFilled.tsx b/src/IconRemoveFromQueueRoundedFilled.tsx index d2ccf0eca..f8b000a8b 100644 --- a/src/IconRemoveFromQueueRoundedFilled.tsx +++ b/src/IconRemoveFromQueueRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconRemoveFromQueueRoundedFilled: React.FC = ({ ) -export { IconRemoveFromQueueRoundedFilled as default } +export default IconRemoveFromQueueRoundedFilled diff --git a/src/IconRemoveFromQueueSharp.tsx b/src/IconRemoveFromQueueSharp.tsx index 07ac9093f..4a90aa165 100644 --- a/src/IconRemoveFromQueueSharp.tsx +++ b/src/IconRemoveFromQueueSharp.tsx @@ -8,4 +8,4 @@ const IconRemoveFromQueueSharp: React.FC = ({ ...props }) => ( ) -export { IconRemoveFromQueueSharp as default } +export default IconRemoveFromQueueSharp diff --git a/src/IconRemoveFromQueueSharpFilled.tsx b/src/IconRemoveFromQueueSharpFilled.tsx index 9aca10acf..ab3c98cd4 100644 --- a/src/IconRemoveFromQueueSharpFilled.tsx +++ b/src/IconRemoveFromQueueSharpFilled.tsx @@ -8,4 +8,4 @@ const IconRemoveFromQueueSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconRemoveFromQueueSharpFilled as default } +export default IconRemoveFromQueueSharpFilled diff --git a/src/IconRemoveModeratorOutlined.tsx b/src/IconRemoveModeratorOutlined.tsx index 324acf8ea..eafcbfac6 100644 --- a/src/IconRemoveModeratorOutlined.tsx +++ b/src/IconRemoveModeratorOutlined.tsx @@ -8,4 +8,4 @@ const IconRemoveModeratorOutlined: React.FC = ({ ...props }) => ( ) -export { IconRemoveModeratorOutlined as default } +export default IconRemoveModeratorOutlined diff --git a/src/IconRemoveModeratorOutlinedFilled.tsx b/src/IconRemoveModeratorOutlinedFilled.tsx index a6c81f13e..b9df35eb6 100644 --- a/src/IconRemoveModeratorOutlinedFilled.tsx +++ b/src/IconRemoveModeratorOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconRemoveModeratorOutlinedFilled: React.FC = ({ ) -export { IconRemoveModeratorOutlinedFilled as default } +export default IconRemoveModeratorOutlinedFilled diff --git a/src/IconRemoveModeratorRounded.tsx b/src/IconRemoveModeratorRounded.tsx index fd89ea03f..a631e5c96 100644 --- a/src/IconRemoveModeratorRounded.tsx +++ b/src/IconRemoveModeratorRounded.tsx @@ -8,4 +8,4 @@ const IconRemoveModeratorRounded: React.FC = ({ ...props }) => ( ) -export { IconRemoveModeratorRounded as default } +export default IconRemoveModeratorRounded diff --git a/src/IconRemoveModeratorRoundedFilled.tsx b/src/IconRemoveModeratorRoundedFilled.tsx index 446aad5b1..22aad2852 100644 --- a/src/IconRemoveModeratorRoundedFilled.tsx +++ b/src/IconRemoveModeratorRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconRemoveModeratorRoundedFilled: React.FC = ({ ) -export { IconRemoveModeratorRoundedFilled as default } +export default IconRemoveModeratorRoundedFilled diff --git a/src/IconRemoveModeratorSharp.tsx b/src/IconRemoveModeratorSharp.tsx index 3b1af9231..df0057338 100644 --- a/src/IconRemoveModeratorSharp.tsx +++ b/src/IconRemoveModeratorSharp.tsx @@ -8,4 +8,4 @@ const IconRemoveModeratorSharp: React.FC = ({ ...props }) => ( ) -export { IconRemoveModeratorSharp as default } +export default IconRemoveModeratorSharp diff --git a/src/IconRemoveModeratorSharpFilled.tsx b/src/IconRemoveModeratorSharpFilled.tsx index 351dc3e4f..87bc3ba16 100644 --- a/src/IconRemoveModeratorSharpFilled.tsx +++ b/src/IconRemoveModeratorSharpFilled.tsx @@ -8,4 +8,4 @@ const IconRemoveModeratorSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconRemoveModeratorSharpFilled as default } +export default IconRemoveModeratorSharpFilled diff --git a/src/IconRemoveOutlined.tsx b/src/IconRemoveOutlined.tsx index b595136d4..c13377cbc 100644 --- a/src/IconRemoveOutlined.tsx +++ b/src/IconRemoveOutlined.tsx @@ -8,4 +8,4 @@ const IconRemoveOutlined: React.FC = ({ ...props }) => ( ) -export { IconRemoveOutlined as default } +export default IconRemoveOutlined diff --git a/src/IconRemoveOutlinedFilled.tsx b/src/IconRemoveOutlinedFilled.tsx index c5e56262e..ca7d2abad 100644 --- a/src/IconRemoveOutlinedFilled.tsx +++ b/src/IconRemoveOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconRemoveOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconRemoveOutlinedFilled as default } +export default IconRemoveOutlinedFilled diff --git a/src/IconRemoveRoadOutlined.tsx b/src/IconRemoveRoadOutlined.tsx index decff100a..700fd1cc7 100644 --- a/src/IconRemoveRoadOutlined.tsx +++ b/src/IconRemoveRoadOutlined.tsx @@ -8,4 +8,4 @@ const IconRemoveRoadOutlined: React.FC = ({ ...props }) => ( ) -export { IconRemoveRoadOutlined as default } +export default IconRemoveRoadOutlined diff --git a/src/IconRemoveRoadOutlinedFilled.tsx b/src/IconRemoveRoadOutlinedFilled.tsx index 0f1cdc72d..b53c2519c 100644 --- a/src/IconRemoveRoadOutlinedFilled.tsx +++ b/src/IconRemoveRoadOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconRemoveRoadOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconRemoveRoadOutlinedFilled as default } +export default IconRemoveRoadOutlinedFilled diff --git a/src/IconRemoveRoadRounded.tsx b/src/IconRemoveRoadRounded.tsx index ac3d1b1d6..6004c7f73 100644 --- a/src/IconRemoveRoadRounded.tsx +++ b/src/IconRemoveRoadRounded.tsx @@ -8,4 +8,4 @@ const IconRemoveRoadRounded: React.FC = ({ ...props }) => ( ) -export { IconRemoveRoadRounded as default } +export default IconRemoveRoadRounded diff --git a/src/IconRemoveRoadRoundedFilled.tsx b/src/IconRemoveRoadRoundedFilled.tsx index 0bc50a6f4..2200e3ca0 100644 --- a/src/IconRemoveRoadRoundedFilled.tsx +++ b/src/IconRemoveRoadRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconRemoveRoadRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconRemoveRoadRoundedFilled as default } +export default IconRemoveRoadRoundedFilled diff --git a/src/IconRemoveRoadSharp.tsx b/src/IconRemoveRoadSharp.tsx index d853dc8a3..6aac6d39d 100644 --- a/src/IconRemoveRoadSharp.tsx +++ b/src/IconRemoveRoadSharp.tsx @@ -8,4 +8,4 @@ const IconRemoveRoadSharp: React.FC = ({ ...props }) => ( ) -export { IconRemoveRoadSharp as default } +export default IconRemoveRoadSharp diff --git a/src/IconRemoveRoadSharpFilled.tsx b/src/IconRemoveRoadSharpFilled.tsx index ea5553564..acb82a74a 100644 --- a/src/IconRemoveRoadSharpFilled.tsx +++ b/src/IconRemoveRoadSharpFilled.tsx @@ -8,4 +8,4 @@ const IconRemoveRoadSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconRemoveRoadSharpFilled as default } +export default IconRemoveRoadSharpFilled diff --git a/src/IconRemoveRounded.tsx b/src/IconRemoveRounded.tsx index 49298aa24..3db7a18bd 100644 --- a/src/IconRemoveRounded.tsx +++ b/src/IconRemoveRounded.tsx @@ -8,4 +8,4 @@ const IconRemoveRounded: React.FC = ({ ...props }) => ( ) -export { IconRemoveRounded as default } +export default IconRemoveRounded diff --git a/src/IconRemoveRoundedFilled.tsx b/src/IconRemoveRoundedFilled.tsx index 5a9f45a0f..771c0b18d 100644 --- a/src/IconRemoveRoundedFilled.tsx +++ b/src/IconRemoveRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconRemoveRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconRemoveRoundedFilled as default } +export default IconRemoveRoundedFilled diff --git a/src/IconRemoveSelectionOutlined.tsx b/src/IconRemoveSelectionOutlined.tsx index 35f46d2df..de2dfc419 100644 --- a/src/IconRemoveSelectionOutlined.tsx +++ b/src/IconRemoveSelectionOutlined.tsx @@ -8,4 +8,4 @@ const IconRemoveSelectionOutlined: React.FC = ({ ...props }) => ( ) -export { IconRemoveSelectionOutlined as default } +export default IconRemoveSelectionOutlined diff --git a/src/IconRemoveSelectionOutlinedFilled.tsx b/src/IconRemoveSelectionOutlinedFilled.tsx index c79560895..de990c6a9 100644 --- a/src/IconRemoveSelectionOutlinedFilled.tsx +++ b/src/IconRemoveSelectionOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconRemoveSelectionOutlinedFilled: React.FC = ({ ) -export { IconRemoveSelectionOutlinedFilled as default } +export default IconRemoveSelectionOutlinedFilled diff --git a/src/IconRemoveSelectionRounded.tsx b/src/IconRemoveSelectionRounded.tsx index 84f8741aa..e294c9248 100644 --- a/src/IconRemoveSelectionRounded.tsx +++ b/src/IconRemoveSelectionRounded.tsx @@ -8,4 +8,4 @@ const IconRemoveSelectionRounded: React.FC = ({ ...props }) => ( ) -export { IconRemoveSelectionRounded as default } +export default IconRemoveSelectionRounded diff --git a/src/IconRemoveSelectionRoundedFilled.tsx b/src/IconRemoveSelectionRoundedFilled.tsx index 4697d5ae8..469d32a9d 100644 --- a/src/IconRemoveSelectionRoundedFilled.tsx +++ b/src/IconRemoveSelectionRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconRemoveSelectionRoundedFilled: React.FC = ({ ) -export { IconRemoveSelectionRoundedFilled as default } +export default IconRemoveSelectionRoundedFilled diff --git a/src/IconRemoveSelectionSharp.tsx b/src/IconRemoveSelectionSharp.tsx index 780b59a36..7849aaf1f 100644 --- a/src/IconRemoveSelectionSharp.tsx +++ b/src/IconRemoveSelectionSharp.tsx @@ -8,4 +8,4 @@ const IconRemoveSelectionSharp: React.FC = ({ ...props }) => ( ) -export { IconRemoveSelectionSharp as default } +export default IconRemoveSelectionSharp diff --git a/src/IconRemoveSelectionSharpFilled.tsx b/src/IconRemoveSelectionSharpFilled.tsx index f33955949..f2b561833 100644 --- a/src/IconRemoveSelectionSharpFilled.tsx +++ b/src/IconRemoveSelectionSharpFilled.tsx @@ -8,4 +8,4 @@ const IconRemoveSelectionSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconRemoveSelectionSharpFilled as default } +export default IconRemoveSelectionSharpFilled diff --git a/src/IconRemoveSharp.tsx b/src/IconRemoveSharp.tsx index 18bb87f84..2e098d580 100644 --- a/src/IconRemoveSharp.tsx +++ b/src/IconRemoveSharp.tsx @@ -8,4 +8,4 @@ const IconRemoveSharp: React.FC = ({ ...props }) => ( ) -export { IconRemoveSharp as default } +export default IconRemoveSharp diff --git a/src/IconRemoveSharpFilled.tsx b/src/IconRemoveSharpFilled.tsx index a980b7beb..4af326e64 100644 --- a/src/IconRemoveSharpFilled.tsx +++ b/src/IconRemoveSharpFilled.tsx @@ -8,4 +8,4 @@ const IconRemoveSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconRemoveSharpFilled as default } +export default IconRemoveSharpFilled diff --git a/src/IconRemoveShoppingCartOutlined.tsx b/src/IconRemoveShoppingCartOutlined.tsx index 9c7c9eb01..a0b79e858 100644 --- a/src/IconRemoveShoppingCartOutlined.tsx +++ b/src/IconRemoveShoppingCartOutlined.tsx @@ -8,4 +8,4 @@ const IconRemoveShoppingCartOutlined: React.FC = ({ ...props }) => ( ) -export { IconRemoveShoppingCartOutlined as default } +export default IconRemoveShoppingCartOutlined diff --git a/src/IconRemoveShoppingCartOutlinedFilled.tsx b/src/IconRemoveShoppingCartOutlinedFilled.tsx index 5737d2206..f24fb2fc5 100644 --- a/src/IconRemoveShoppingCartOutlinedFilled.tsx +++ b/src/IconRemoveShoppingCartOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconRemoveShoppingCartOutlinedFilled: React.FC = ({ ) -export { IconRemoveShoppingCartOutlinedFilled as default } +export default IconRemoveShoppingCartOutlinedFilled diff --git a/src/IconRemoveShoppingCartRounded.tsx b/src/IconRemoveShoppingCartRounded.tsx index 70f3535c4..b9e49b524 100644 --- a/src/IconRemoveShoppingCartRounded.tsx +++ b/src/IconRemoveShoppingCartRounded.tsx @@ -8,4 +8,4 @@ const IconRemoveShoppingCartRounded: React.FC = ({ ...props }) => ( ) -export { IconRemoveShoppingCartRounded as default } +export default IconRemoveShoppingCartRounded diff --git a/src/IconRemoveShoppingCartRoundedFilled.tsx b/src/IconRemoveShoppingCartRoundedFilled.tsx index 9924c0fe8..d58bd6606 100644 --- a/src/IconRemoveShoppingCartRoundedFilled.tsx +++ b/src/IconRemoveShoppingCartRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconRemoveShoppingCartRoundedFilled: React.FC = ({ ) -export { IconRemoveShoppingCartRoundedFilled as default } +export default IconRemoveShoppingCartRoundedFilled diff --git a/src/IconRemoveShoppingCartSharp.tsx b/src/IconRemoveShoppingCartSharp.tsx index 7ecea03f3..91c907294 100644 --- a/src/IconRemoveShoppingCartSharp.tsx +++ b/src/IconRemoveShoppingCartSharp.tsx @@ -8,4 +8,4 @@ const IconRemoveShoppingCartSharp: React.FC = ({ ...props }) => ( ) -export { IconRemoveShoppingCartSharp as default } +export default IconRemoveShoppingCartSharp diff --git a/src/IconRemoveShoppingCartSharpFilled.tsx b/src/IconRemoveShoppingCartSharpFilled.tsx index 6145895fe..fb95dda8c 100644 --- a/src/IconRemoveShoppingCartSharpFilled.tsx +++ b/src/IconRemoveShoppingCartSharpFilled.tsx @@ -10,4 +10,4 @@ const IconRemoveShoppingCartSharpFilled: React.FC = ({ ) -export { IconRemoveShoppingCartSharpFilled as default } +export default IconRemoveShoppingCartSharpFilled diff --git a/src/IconReopenWindowOutlined.tsx b/src/IconReopenWindowOutlined.tsx index 5f0eaf586..0ebcf5b41 100644 --- a/src/IconReopenWindowOutlined.tsx +++ b/src/IconReopenWindowOutlined.tsx @@ -8,4 +8,4 @@ const IconReopenWindowOutlined: React.FC = ({ ...props }) => ( ) -export { IconReopenWindowOutlined as default } +export default IconReopenWindowOutlined diff --git a/src/IconReopenWindowOutlinedFilled.tsx b/src/IconReopenWindowOutlinedFilled.tsx index 50c5d98f8..1a3b99279 100644 --- a/src/IconReopenWindowOutlinedFilled.tsx +++ b/src/IconReopenWindowOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconReopenWindowOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconReopenWindowOutlinedFilled as default } +export default IconReopenWindowOutlinedFilled diff --git a/src/IconReopenWindowRounded.tsx b/src/IconReopenWindowRounded.tsx index f4a0e3cd7..1a8e46c16 100644 --- a/src/IconReopenWindowRounded.tsx +++ b/src/IconReopenWindowRounded.tsx @@ -8,4 +8,4 @@ const IconReopenWindowRounded: React.FC = ({ ...props }) => ( ) -export { IconReopenWindowRounded as default } +export default IconReopenWindowRounded diff --git a/src/IconReopenWindowRoundedFilled.tsx b/src/IconReopenWindowRoundedFilled.tsx index 40592fe38..b8569c83a 100644 --- a/src/IconReopenWindowRoundedFilled.tsx +++ b/src/IconReopenWindowRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconReopenWindowRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconReopenWindowRoundedFilled as default } +export default IconReopenWindowRoundedFilled diff --git a/src/IconReopenWindowSharp.tsx b/src/IconReopenWindowSharp.tsx index 580fcabb7..793c1f19c 100644 --- a/src/IconReopenWindowSharp.tsx +++ b/src/IconReopenWindowSharp.tsx @@ -8,4 +8,4 @@ const IconReopenWindowSharp: React.FC = ({ ...props }) => ( ) -export { IconReopenWindowSharp as default } +export default IconReopenWindowSharp diff --git a/src/IconReopenWindowSharpFilled.tsx b/src/IconReopenWindowSharpFilled.tsx index 137539091..75afff606 100644 --- a/src/IconReopenWindowSharpFilled.tsx +++ b/src/IconReopenWindowSharpFilled.tsx @@ -8,4 +8,4 @@ const IconReopenWindowSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconReopenWindowSharpFilled as default } +export default IconReopenWindowSharpFilled diff --git a/src/IconReorderOutlined.tsx b/src/IconReorderOutlined.tsx index cc8ec0155..4416abaac 100644 --- a/src/IconReorderOutlined.tsx +++ b/src/IconReorderOutlined.tsx @@ -8,4 +8,4 @@ const IconReorderOutlined: React.FC = ({ ...props }) => ( ) -export { IconReorderOutlined as default } +export default IconReorderOutlined diff --git a/src/IconReorderOutlinedFilled.tsx b/src/IconReorderOutlinedFilled.tsx index e15cc56ab..4918c6d60 100644 --- a/src/IconReorderOutlinedFilled.tsx +++ b/src/IconReorderOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconReorderOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconReorderOutlinedFilled as default } +export default IconReorderOutlinedFilled diff --git a/src/IconReorderRounded.tsx b/src/IconReorderRounded.tsx index 1430cd202..ba4304490 100644 --- a/src/IconReorderRounded.tsx +++ b/src/IconReorderRounded.tsx @@ -8,4 +8,4 @@ const IconReorderRounded: React.FC = ({ ...props }) => ( ) -export { IconReorderRounded as default } +export default IconReorderRounded diff --git a/src/IconReorderRoundedFilled.tsx b/src/IconReorderRoundedFilled.tsx index 435a8ec0c..24fc0de4d 100644 --- a/src/IconReorderRoundedFilled.tsx +++ b/src/IconReorderRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconReorderRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconReorderRoundedFilled as default } +export default IconReorderRoundedFilled diff --git a/src/IconReorderSharp.tsx b/src/IconReorderSharp.tsx index f5c471db7..5e9b05bee 100644 --- a/src/IconReorderSharp.tsx +++ b/src/IconReorderSharp.tsx @@ -8,4 +8,4 @@ const IconReorderSharp: React.FC = ({ ...props }) => ( ) -export { IconReorderSharp as default } +export default IconReorderSharp diff --git a/src/IconReorderSharpFilled.tsx b/src/IconReorderSharpFilled.tsx index 1df43852c..5bbe7dc17 100644 --- a/src/IconReorderSharpFilled.tsx +++ b/src/IconReorderSharpFilled.tsx @@ -8,4 +8,4 @@ const IconReorderSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconReorderSharpFilled as default } +export default IconReorderSharpFilled diff --git a/src/IconRepartitionOutlined.tsx b/src/IconRepartitionOutlined.tsx index e562d357b..b20dc16ce 100644 --- a/src/IconRepartitionOutlined.tsx +++ b/src/IconRepartitionOutlined.tsx @@ -8,4 +8,4 @@ const IconRepartitionOutlined: React.FC = ({ ...props }) => ( ) -export { IconRepartitionOutlined as default } +export default IconRepartitionOutlined diff --git a/src/IconRepartitionOutlinedFilled.tsx b/src/IconRepartitionOutlinedFilled.tsx index 776a813c6..e12fd32bd 100644 --- a/src/IconRepartitionOutlinedFilled.tsx +++ b/src/IconRepartitionOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconRepartitionOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconRepartitionOutlinedFilled as default } +export default IconRepartitionOutlinedFilled diff --git a/src/IconRepartitionRounded.tsx b/src/IconRepartitionRounded.tsx index 6f474e16f..7923d023b 100644 --- a/src/IconRepartitionRounded.tsx +++ b/src/IconRepartitionRounded.tsx @@ -8,4 +8,4 @@ const IconRepartitionRounded: React.FC = ({ ...props }) => ( ) -export { IconRepartitionRounded as default } +export default IconRepartitionRounded diff --git a/src/IconRepartitionRoundedFilled.tsx b/src/IconRepartitionRoundedFilled.tsx index e970b3c56..68305463f 100644 --- a/src/IconRepartitionRoundedFilled.tsx +++ b/src/IconRepartitionRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconRepartitionRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconRepartitionRoundedFilled as default } +export default IconRepartitionRoundedFilled diff --git a/src/IconRepartitionSharp.tsx b/src/IconRepartitionSharp.tsx index fc55507a4..dc302e35f 100644 --- a/src/IconRepartitionSharp.tsx +++ b/src/IconRepartitionSharp.tsx @@ -8,4 +8,4 @@ const IconRepartitionSharp: React.FC = ({ ...props }) => ( ) -export { IconRepartitionSharp as default } +export default IconRepartitionSharp diff --git a/src/IconRepartitionSharpFilled.tsx b/src/IconRepartitionSharpFilled.tsx index d9120913a..e776b2ed1 100644 --- a/src/IconRepartitionSharpFilled.tsx +++ b/src/IconRepartitionSharpFilled.tsx @@ -8,4 +8,4 @@ const IconRepartitionSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconRepartitionSharpFilled as default } +export default IconRepartitionSharpFilled diff --git a/src/IconRepeatOnOutlined.tsx b/src/IconRepeatOnOutlined.tsx index 5c3d184c5..979ce8e87 100644 --- a/src/IconRepeatOnOutlined.tsx +++ b/src/IconRepeatOnOutlined.tsx @@ -8,4 +8,4 @@ const IconRepeatOnOutlined: React.FC = ({ ...props }) => ( ) -export { IconRepeatOnOutlined as default } +export default IconRepeatOnOutlined diff --git a/src/IconRepeatOnOutlinedFilled.tsx b/src/IconRepeatOnOutlinedFilled.tsx index 03dc9d75c..3742d9f2a 100644 --- a/src/IconRepeatOnOutlinedFilled.tsx +++ b/src/IconRepeatOnOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconRepeatOnOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconRepeatOnOutlinedFilled as default } +export default IconRepeatOnOutlinedFilled diff --git a/src/IconRepeatOnRounded.tsx b/src/IconRepeatOnRounded.tsx index e9af86b9a..25ae2496f 100644 --- a/src/IconRepeatOnRounded.tsx +++ b/src/IconRepeatOnRounded.tsx @@ -8,4 +8,4 @@ const IconRepeatOnRounded: React.FC = ({ ...props }) => ( ) -export { IconRepeatOnRounded as default } +export default IconRepeatOnRounded diff --git a/src/IconRepeatOnRoundedFilled.tsx b/src/IconRepeatOnRoundedFilled.tsx index bcbed47c5..64aedb944 100644 --- a/src/IconRepeatOnRoundedFilled.tsx +++ b/src/IconRepeatOnRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconRepeatOnRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconRepeatOnRoundedFilled as default } +export default IconRepeatOnRoundedFilled diff --git a/src/IconRepeatOnSharp.tsx b/src/IconRepeatOnSharp.tsx index fc02e3f5f..5b2370160 100644 --- a/src/IconRepeatOnSharp.tsx +++ b/src/IconRepeatOnSharp.tsx @@ -8,4 +8,4 @@ const IconRepeatOnSharp: React.FC = ({ ...props }) => ( ) -export { IconRepeatOnSharp as default } +export default IconRepeatOnSharp diff --git a/src/IconRepeatOnSharpFilled.tsx b/src/IconRepeatOnSharpFilled.tsx index 919ae2dce..bc7a85c18 100644 --- a/src/IconRepeatOnSharpFilled.tsx +++ b/src/IconRepeatOnSharpFilled.tsx @@ -8,4 +8,4 @@ const IconRepeatOnSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconRepeatOnSharpFilled as default } +export default IconRepeatOnSharpFilled diff --git a/src/IconRepeatOneOnOutlined.tsx b/src/IconRepeatOneOnOutlined.tsx index 08c5d0a9d..a92e1a9cc 100644 --- a/src/IconRepeatOneOnOutlined.tsx +++ b/src/IconRepeatOneOnOutlined.tsx @@ -8,4 +8,4 @@ const IconRepeatOneOnOutlined: React.FC = ({ ...props }) => ( ) -export { IconRepeatOneOnOutlined as default } +export default IconRepeatOneOnOutlined diff --git a/src/IconRepeatOneOnOutlinedFilled.tsx b/src/IconRepeatOneOnOutlinedFilled.tsx index 2605fc18b..882e5c81f 100644 --- a/src/IconRepeatOneOnOutlinedFilled.tsx +++ b/src/IconRepeatOneOnOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconRepeatOneOnOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconRepeatOneOnOutlinedFilled as default } +export default IconRepeatOneOnOutlinedFilled diff --git a/src/IconRepeatOneOnRounded.tsx b/src/IconRepeatOneOnRounded.tsx index ea6cfe601..dcacb9e3a 100644 --- a/src/IconRepeatOneOnRounded.tsx +++ b/src/IconRepeatOneOnRounded.tsx @@ -8,4 +8,4 @@ const IconRepeatOneOnRounded: React.FC = ({ ...props }) => ( ) -export { IconRepeatOneOnRounded as default } +export default IconRepeatOneOnRounded diff --git a/src/IconRepeatOneOnRoundedFilled.tsx b/src/IconRepeatOneOnRoundedFilled.tsx index 142e9965f..da7945e75 100644 --- a/src/IconRepeatOneOnRoundedFilled.tsx +++ b/src/IconRepeatOneOnRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconRepeatOneOnRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconRepeatOneOnRoundedFilled as default } +export default IconRepeatOneOnRoundedFilled diff --git a/src/IconRepeatOneOnSharp.tsx b/src/IconRepeatOneOnSharp.tsx index 5be40ae7e..fc0205ab8 100644 --- a/src/IconRepeatOneOnSharp.tsx +++ b/src/IconRepeatOneOnSharp.tsx @@ -8,4 +8,4 @@ const IconRepeatOneOnSharp: React.FC = ({ ...props }) => ( ) -export { IconRepeatOneOnSharp as default } +export default IconRepeatOneOnSharp diff --git a/src/IconRepeatOneOnSharpFilled.tsx b/src/IconRepeatOneOnSharpFilled.tsx index 06bbb3a30..972c4ae75 100644 --- a/src/IconRepeatOneOnSharpFilled.tsx +++ b/src/IconRepeatOneOnSharpFilled.tsx @@ -8,4 +8,4 @@ const IconRepeatOneOnSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconRepeatOneOnSharpFilled as default } +export default IconRepeatOneOnSharpFilled diff --git a/src/IconRepeatOneOutlined.tsx b/src/IconRepeatOneOutlined.tsx index a13abf846..86301caf1 100644 --- a/src/IconRepeatOneOutlined.tsx +++ b/src/IconRepeatOneOutlined.tsx @@ -8,4 +8,4 @@ const IconRepeatOneOutlined: React.FC = ({ ...props }) => ( ) -export { IconRepeatOneOutlined as default } +export default IconRepeatOneOutlined diff --git a/src/IconRepeatOneOutlinedFilled.tsx b/src/IconRepeatOneOutlinedFilled.tsx index 6200ea877..d2c8cceb2 100644 --- a/src/IconRepeatOneOutlinedFilled.tsx +++ b/src/IconRepeatOneOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconRepeatOneOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconRepeatOneOutlinedFilled as default } +export default IconRepeatOneOutlinedFilled diff --git a/src/IconRepeatOneRounded.tsx b/src/IconRepeatOneRounded.tsx index b41a58a99..16b425150 100644 --- a/src/IconRepeatOneRounded.tsx +++ b/src/IconRepeatOneRounded.tsx @@ -8,4 +8,4 @@ const IconRepeatOneRounded: React.FC = ({ ...props }) => ( ) -export { IconRepeatOneRounded as default } +export default IconRepeatOneRounded diff --git a/src/IconRepeatOneRoundedFilled.tsx b/src/IconRepeatOneRoundedFilled.tsx index 372850722..25effe770 100644 --- a/src/IconRepeatOneRoundedFilled.tsx +++ b/src/IconRepeatOneRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconRepeatOneRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconRepeatOneRoundedFilled as default } +export default IconRepeatOneRoundedFilled diff --git a/src/IconRepeatOneSharp.tsx b/src/IconRepeatOneSharp.tsx index 01e6e738d..bff16eb48 100644 --- a/src/IconRepeatOneSharp.tsx +++ b/src/IconRepeatOneSharp.tsx @@ -8,4 +8,4 @@ const IconRepeatOneSharp: React.FC = ({ ...props }) => ( ) -export { IconRepeatOneSharp as default } +export default IconRepeatOneSharp diff --git a/src/IconRepeatOneSharpFilled.tsx b/src/IconRepeatOneSharpFilled.tsx index ae1b7eff0..28a7437a3 100644 --- a/src/IconRepeatOneSharpFilled.tsx +++ b/src/IconRepeatOneSharpFilled.tsx @@ -8,4 +8,4 @@ const IconRepeatOneSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconRepeatOneSharpFilled as default } +export default IconRepeatOneSharpFilled diff --git a/src/IconRepeatOutlined.tsx b/src/IconRepeatOutlined.tsx index 7ff198b19..d2f61b70d 100644 --- a/src/IconRepeatOutlined.tsx +++ b/src/IconRepeatOutlined.tsx @@ -8,4 +8,4 @@ const IconRepeatOutlined: React.FC = ({ ...props }) => ( ) -export { IconRepeatOutlined as default } +export default IconRepeatOutlined diff --git a/src/IconRepeatOutlinedFilled.tsx b/src/IconRepeatOutlinedFilled.tsx index ba5a665b0..2759ad664 100644 --- a/src/IconRepeatOutlinedFilled.tsx +++ b/src/IconRepeatOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconRepeatOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconRepeatOutlinedFilled as default } +export default IconRepeatOutlinedFilled diff --git a/src/IconRepeatRounded.tsx b/src/IconRepeatRounded.tsx index 341567b46..d580ccd02 100644 --- a/src/IconRepeatRounded.tsx +++ b/src/IconRepeatRounded.tsx @@ -8,4 +8,4 @@ const IconRepeatRounded: React.FC = ({ ...props }) => ( ) -export { IconRepeatRounded as default } +export default IconRepeatRounded diff --git a/src/IconRepeatRoundedFilled.tsx b/src/IconRepeatRoundedFilled.tsx index 8f3216876..f1f59d3b7 100644 --- a/src/IconRepeatRoundedFilled.tsx +++ b/src/IconRepeatRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconRepeatRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconRepeatRoundedFilled as default } +export default IconRepeatRoundedFilled diff --git a/src/IconRepeatSharp.tsx b/src/IconRepeatSharp.tsx index 82e8c6f66..32e647c32 100644 --- a/src/IconRepeatSharp.tsx +++ b/src/IconRepeatSharp.tsx @@ -8,4 +8,4 @@ const IconRepeatSharp: React.FC = ({ ...props }) => ( ) -export { IconRepeatSharp as default } +export default IconRepeatSharp diff --git a/src/IconRepeatSharpFilled.tsx b/src/IconRepeatSharpFilled.tsx index 105d7a8c6..b020b6163 100644 --- a/src/IconRepeatSharpFilled.tsx +++ b/src/IconRepeatSharpFilled.tsx @@ -8,4 +8,4 @@ const IconRepeatSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconRepeatSharpFilled as default } +export default IconRepeatSharpFilled diff --git a/src/IconReplaceAudioOutlined.tsx b/src/IconReplaceAudioOutlined.tsx index 39262e8a4..7b00f61df 100644 --- a/src/IconReplaceAudioOutlined.tsx +++ b/src/IconReplaceAudioOutlined.tsx @@ -8,4 +8,4 @@ const IconReplaceAudioOutlined: React.FC = ({ ...props }) => ( ) -export { IconReplaceAudioOutlined as default } +export default IconReplaceAudioOutlined diff --git a/src/IconReplaceAudioOutlinedFilled.tsx b/src/IconReplaceAudioOutlinedFilled.tsx index 71f0009f3..5e6c36a63 100644 --- a/src/IconReplaceAudioOutlinedFilled.tsx +++ b/src/IconReplaceAudioOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconReplaceAudioOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconReplaceAudioOutlinedFilled as default } +export default IconReplaceAudioOutlinedFilled diff --git a/src/IconReplaceAudioRounded.tsx b/src/IconReplaceAudioRounded.tsx index e595ad2a3..9e4624e5d 100644 --- a/src/IconReplaceAudioRounded.tsx +++ b/src/IconReplaceAudioRounded.tsx @@ -8,4 +8,4 @@ const IconReplaceAudioRounded: React.FC = ({ ...props }) => ( ) -export { IconReplaceAudioRounded as default } +export default IconReplaceAudioRounded diff --git a/src/IconReplaceAudioRoundedFilled.tsx b/src/IconReplaceAudioRoundedFilled.tsx index 7be12150a..3f61f4781 100644 --- a/src/IconReplaceAudioRoundedFilled.tsx +++ b/src/IconReplaceAudioRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconReplaceAudioRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconReplaceAudioRoundedFilled as default } +export default IconReplaceAudioRoundedFilled diff --git a/src/IconReplaceAudioSharp.tsx b/src/IconReplaceAudioSharp.tsx index 8c025277c..945bc7c1e 100644 --- a/src/IconReplaceAudioSharp.tsx +++ b/src/IconReplaceAudioSharp.tsx @@ -8,4 +8,4 @@ const IconReplaceAudioSharp: React.FC = ({ ...props }) => ( ) -export { IconReplaceAudioSharp as default } +export default IconReplaceAudioSharp diff --git a/src/IconReplaceAudioSharpFilled.tsx b/src/IconReplaceAudioSharpFilled.tsx index a5089dc94..f2e292a85 100644 --- a/src/IconReplaceAudioSharpFilled.tsx +++ b/src/IconReplaceAudioSharpFilled.tsx @@ -8,4 +8,4 @@ const IconReplaceAudioSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconReplaceAudioSharpFilled as default } +export default IconReplaceAudioSharpFilled diff --git a/src/IconReplaceImageOutlined.tsx b/src/IconReplaceImageOutlined.tsx index 10ae83ec4..d6ff85d9e 100644 --- a/src/IconReplaceImageOutlined.tsx +++ b/src/IconReplaceImageOutlined.tsx @@ -8,4 +8,4 @@ const IconReplaceImageOutlined: React.FC = ({ ...props }) => ( ) -export { IconReplaceImageOutlined as default } +export default IconReplaceImageOutlined diff --git a/src/IconReplaceImageOutlinedFilled.tsx b/src/IconReplaceImageOutlinedFilled.tsx index cbf327a21..190d49f05 100644 --- a/src/IconReplaceImageOutlinedFilled.tsx +++ b/src/IconReplaceImageOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconReplaceImageOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconReplaceImageOutlinedFilled as default } +export default IconReplaceImageOutlinedFilled diff --git a/src/IconReplaceImageRounded.tsx b/src/IconReplaceImageRounded.tsx index 1215edb65..cc31cdebf 100644 --- a/src/IconReplaceImageRounded.tsx +++ b/src/IconReplaceImageRounded.tsx @@ -8,4 +8,4 @@ const IconReplaceImageRounded: React.FC = ({ ...props }) => ( ) -export { IconReplaceImageRounded as default } +export default IconReplaceImageRounded diff --git a/src/IconReplaceImageRoundedFilled.tsx b/src/IconReplaceImageRoundedFilled.tsx index 54f81936b..532a6473d 100644 --- a/src/IconReplaceImageRoundedFilled.tsx +++ b/src/IconReplaceImageRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconReplaceImageRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconReplaceImageRoundedFilled as default } +export default IconReplaceImageRoundedFilled diff --git a/src/IconReplaceImageSharp.tsx b/src/IconReplaceImageSharp.tsx index d3e326cfc..8ab5b8fdd 100644 --- a/src/IconReplaceImageSharp.tsx +++ b/src/IconReplaceImageSharp.tsx @@ -8,4 +8,4 @@ const IconReplaceImageSharp: React.FC = ({ ...props }) => ( ) -export { IconReplaceImageSharp as default } +export default IconReplaceImageSharp diff --git a/src/IconReplaceImageSharpFilled.tsx b/src/IconReplaceImageSharpFilled.tsx index b89e19286..8914a132c 100644 --- a/src/IconReplaceImageSharpFilled.tsx +++ b/src/IconReplaceImageSharpFilled.tsx @@ -8,4 +8,4 @@ const IconReplaceImageSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconReplaceImageSharpFilled as default } +export default IconReplaceImageSharpFilled diff --git a/src/IconReplaceVideoOutlined.tsx b/src/IconReplaceVideoOutlined.tsx index 6fdf860f0..1f36e4a76 100644 --- a/src/IconReplaceVideoOutlined.tsx +++ b/src/IconReplaceVideoOutlined.tsx @@ -8,4 +8,4 @@ const IconReplaceVideoOutlined: React.FC = ({ ...props }) => ( ) -export { IconReplaceVideoOutlined as default } +export default IconReplaceVideoOutlined diff --git a/src/IconReplaceVideoOutlinedFilled.tsx b/src/IconReplaceVideoOutlinedFilled.tsx index e11639ec8..d574c3c2f 100644 --- a/src/IconReplaceVideoOutlinedFilled.tsx +++ b/src/IconReplaceVideoOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconReplaceVideoOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconReplaceVideoOutlinedFilled as default } +export default IconReplaceVideoOutlinedFilled diff --git a/src/IconReplaceVideoRounded.tsx b/src/IconReplaceVideoRounded.tsx index 058b8de9f..d5e1aba57 100644 --- a/src/IconReplaceVideoRounded.tsx +++ b/src/IconReplaceVideoRounded.tsx @@ -8,4 +8,4 @@ const IconReplaceVideoRounded: React.FC = ({ ...props }) => ( ) -export { IconReplaceVideoRounded as default } +export default IconReplaceVideoRounded diff --git a/src/IconReplaceVideoRoundedFilled.tsx b/src/IconReplaceVideoRoundedFilled.tsx index 632849239..0cb5c4519 100644 --- a/src/IconReplaceVideoRoundedFilled.tsx +++ b/src/IconReplaceVideoRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconReplaceVideoRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconReplaceVideoRoundedFilled as default } +export default IconReplaceVideoRoundedFilled diff --git a/src/IconReplaceVideoSharp.tsx b/src/IconReplaceVideoSharp.tsx index 8da8ecdbc..218e4d68a 100644 --- a/src/IconReplaceVideoSharp.tsx +++ b/src/IconReplaceVideoSharp.tsx @@ -8,4 +8,4 @@ const IconReplaceVideoSharp: React.FC = ({ ...props }) => ( ) -export { IconReplaceVideoSharp as default } +export default IconReplaceVideoSharp diff --git a/src/IconReplaceVideoSharpFilled.tsx b/src/IconReplaceVideoSharpFilled.tsx index 4005d71b8..ebbcc0de2 100644 --- a/src/IconReplaceVideoSharpFilled.tsx +++ b/src/IconReplaceVideoSharpFilled.tsx @@ -8,4 +8,4 @@ const IconReplaceVideoSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconReplaceVideoSharpFilled as default } +export default IconReplaceVideoSharpFilled diff --git a/src/IconReplay10Outlined.tsx b/src/IconReplay10Outlined.tsx index 714f37f67..adbe4a66c 100644 --- a/src/IconReplay10Outlined.tsx +++ b/src/IconReplay10Outlined.tsx @@ -8,4 +8,4 @@ const IconReplay10Outlined: React.FC = ({ ...props }) => ( ) -export { IconReplay10Outlined as default } +export default IconReplay10Outlined diff --git a/src/IconReplay10OutlinedFilled.tsx b/src/IconReplay10OutlinedFilled.tsx index 6b12e1834..479eb35c9 100644 --- a/src/IconReplay10OutlinedFilled.tsx +++ b/src/IconReplay10OutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconReplay10OutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconReplay10OutlinedFilled as default } +export default IconReplay10OutlinedFilled diff --git a/src/IconReplay10Rounded.tsx b/src/IconReplay10Rounded.tsx index 841b32c87..8fb9e4ea1 100644 --- a/src/IconReplay10Rounded.tsx +++ b/src/IconReplay10Rounded.tsx @@ -8,4 +8,4 @@ const IconReplay10Rounded: React.FC = ({ ...props }) => ( ) -export { IconReplay10Rounded as default } +export default IconReplay10Rounded diff --git a/src/IconReplay10RoundedFilled.tsx b/src/IconReplay10RoundedFilled.tsx index 0a6a00a24..071dc7eba 100644 --- a/src/IconReplay10RoundedFilled.tsx +++ b/src/IconReplay10RoundedFilled.tsx @@ -8,4 +8,4 @@ const IconReplay10RoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconReplay10RoundedFilled as default } +export default IconReplay10RoundedFilled diff --git a/src/IconReplay10Sharp.tsx b/src/IconReplay10Sharp.tsx index 009f5fbb7..4915cb018 100644 --- a/src/IconReplay10Sharp.tsx +++ b/src/IconReplay10Sharp.tsx @@ -8,4 +8,4 @@ const IconReplay10Sharp: React.FC = ({ ...props }) => ( ) -export { IconReplay10Sharp as default } +export default IconReplay10Sharp diff --git a/src/IconReplay10SharpFilled.tsx b/src/IconReplay10SharpFilled.tsx index 64ee62dd1..e9c6529f4 100644 --- a/src/IconReplay10SharpFilled.tsx +++ b/src/IconReplay10SharpFilled.tsx @@ -8,4 +8,4 @@ const IconReplay10SharpFilled: React.FC = ({ ...props }) => ( ) -export { IconReplay10SharpFilled as default } +export default IconReplay10SharpFilled diff --git a/src/IconReplay30Outlined.tsx b/src/IconReplay30Outlined.tsx index 02923e132..ec3358d7a 100644 --- a/src/IconReplay30Outlined.tsx +++ b/src/IconReplay30Outlined.tsx @@ -8,4 +8,4 @@ const IconReplay30Outlined: React.FC = ({ ...props }) => ( ) -export { IconReplay30Outlined as default } +export default IconReplay30Outlined diff --git a/src/IconReplay30OutlinedFilled.tsx b/src/IconReplay30OutlinedFilled.tsx index db519f088..a66781eb6 100644 --- a/src/IconReplay30OutlinedFilled.tsx +++ b/src/IconReplay30OutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconReplay30OutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconReplay30OutlinedFilled as default } +export default IconReplay30OutlinedFilled diff --git a/src/IconReplay30Rounded.tsx b/src/IconReplay30Rounded.tsx index 78efb3b7a..528f3e279 100644 --- a/src/IconReplay30Rounded.tsx +++ b/src/IconReplay30Rounded.tsx @@ -8,4 +8,4 @@ const IconReplay30Rounded: React.FC = ({ ...props }) => ( ) -export { IconReplay30Rounded as default } +export default IconReplay30Rounded diff --git a/src/IconReplay30RoundedFilled.tsx b/src/IconReplay30RoundedFilled.tsx index 6be63d6d6..8422d57dd 100644 --- a/src/IconReplay30RoundedFilled.tsx +++ b/src/IconReplay30RoundedFilled.tsx @@ -8,4 +8,4 @@ const IconReplay30RoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconReplay30RoundedFilled as default } +export default IconReplay30RoundedFilled diff --git a/src/IconReplay30Sharp.tsx b/src/IconReplay30Sharp.tsx index e0312b8ca..cf4d68f24 100644 --- a/src/IconReplay30Sharp.tsx +++ b/src/IconReplay30Sharp.tsx @@ -8,4 +8,4 @@ const IconReplay30Sharp: React.FC = ({ ...props }) => ( ) -export { IconReplay30Sharp as default } +export default IconReplay30Sharp diff --git a/src/IconReplay30SharpFilled.tsx b/src/IconReplay30SharpFilled.tsx index 232d4c29b..5217cde15 100644 --- a/src/IconReplay30SharpFilled.tsx +++ b/src/IconReplay30SharpFilled.tsx @@ -8,4 +8,4 @@ const IconReplay30SharpFilled: React.FC = ({ ...props }) => ( ) -export { IconReplay30SharpFilled as default } +export default IconReplay30SharpFilled diff --git a/src/IconReplay5Outlined.tsx b/src/IconReplay5Outlined.tsx index 8fdaf27f5..6cf863e24 100644 --- a/src/IconReplay5Outlined.tsx +++ b/src/IconReplay5Outlined.tsx @@ -8,4 +8,4 @@ const IconReplay5Outlined: React.FC = ({ ...props }) => ( ) -export { IconReplay5Outlined as default } +export default IconReplay5Outlined diff --git a/src/IconReplay5OutlinedFilled.tsx b/src/IconReplay5OutlinedFilled.tsx index 486b7f43e..470991479 100644 --- a/src/IconReplay5OutlinedFilled.tsx +++ b/src/IconReplay5OutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconReplay5OutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconReplay5OutlinedFilled as default } +export default IconReplay5OutlinedFilled diff --git a/src/IconReplay5Rounded.tsx b/src/IconReplay5Rounded.tsx index fb731eafb..25fe1fdc8 100644 --- a/src/IconReplay5Rounded.tsx +++ b/src/IconReplay5Rounded.tsx @@ -8,4 +8,4 @@ const IconReplay5Rounded: React.FC = ({ ...props }) => ( ) -export { IconReplay5Rounded as default } +export default IconReplay5Rounded diff --git a/src/IconReplay5RoundedFilled.tsx b/src/IconReplay5RoundedFilled.tsx index c78620495..ce4058bdf 100644 --- a/src/IconReplay5RoundedFilled.tsx +++ b/src/IconReplay5RoundedFilled.tsx @@ -8,4 +8,4 @@ const IconReplay5RoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconReplay5RoundedFilled as default } +export default IconReplay5RoundedFilled diff --git a/src/IconReplay5Sharp.tsx b/src/IconReplay5Sharp.tsx index d002a4556..f64175ba0 100644 --- a/src/IconReplay5Sharp.tsx +++ b/src/IconReplay5Sharp.tsx @@ -8,4 +8,4 @@ const IconReplay5Sharp: React.FC = ({ ...props }) => ( ) -export { IconReplay5Sharp as default } +export default IconReplay5Sharp diff --git a/src/IconReplay5SharpFilled.tsx b/src/IconReplay5SharpFilled.tsx index e1f91b96c..2bd07beb1 100644 --- a/src/IconReplay5SharpFilled.tsx +++ b/src/IconReplay5SharpFilled.tsx @@ -8,4 +8,4 @@ const IconReplay5SharpFilled: React.FC = ({ ...props }) => ( ) -export { IconReplay5SharpFilled as default } +export default IconReplay5SharpFilled diff --git a/src/IconReplayOutlined.tsx b/src/IconReplayOutlined.tsx index 892e2946d..08eaada42 100644 --- a/src/IconReplayOutlined.tsx +++ b/src/IconReplayOutlined.tsx @@ -8,4 +8,4 @@ const IconReplayOutlined: React.FC = ({ ...props }) => ( ) -export { IconReplayOutlined as default } +export default IconReplayOutlined diff --git a/src/IconReplayOutlinedFilled.tsx b/src/IconReplayOutlinedFilled.tsx index 7247aa1c6..c758fae51 100644 --- a/src/IconReplayOutlinedFilled.tsx +++ b/src/IconReplayOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconReplayOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconReplayOutlinedFilled as default } +export default IconReplayOutlinedFilled diff --git a/src/IconReplayRounded.tsx b/src/IconReplayRounded.tsx index 4fde7dba5..a7caee32e 100644 --- a/src/IconReplayRounded.tsx +++ b/src/IconReplayRounded.tsx @@ -8,4 +8,4 @@ const IconReplayRounded: React.FC = ({ ...props }) => ( ) -export { IconReplayRounded as default } +export default IconReplayRounded diff --git a/src/IconReplayRoundedFilled.tsx b/src/IconReplayRoundedFilled.tsx index 0174ee32e..7383f63f9 100644 --- a/src/IconReplayRoundedFilled.tsx +++ b/src/IconReplayRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconReplayRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconReplayRoundedFilled as default } +export default IconReplayRoundedFilled diff --git a/src/IconReplaySharp.tsx b/src/IconReplaySharp.tsx index 7fb4bb08a..2aaf02092 100644 --- a/src/IconReplaySharp.tsx +++ b/src/IconReplaySharp.tsx @@ -8,4 +8,4 @@ const IconReplaySharp: React.FC = ({ ...props }) => ( ) -export { IconReplaySharp as default } +export default IconReplaySharp diff --git a/src/IconReplaySharpFilled.tsx b/src/IconReplaySharpFilled.tsx index 8ac658441..87425890d 100644 --- a/src/IconReplaySharpFilled.tsx +++ b/src/IconReplaySharpFilled.tsx @@ -8,4 +8,4 @@ const IconReplaySharpFilled: React.FC = ({ ...props }) => ( ) -export { IconReplaySharpFilled as default } +export default IconReplaySharpFilled diff --git a/src/IconReplyAllOutlined.tsx b/src/IconReplyAllOutlined.tsx index 6b35969cf..96d1f91e8 100644 --- a/src/IconReplyAllOutlined.tsx +++ b/src/IconReplyAllOutlined.tsx @@ -8,4 +8,4 @@ const IconReplyAllOutlined: React.FC = ({ ...props }) => ( ) -export { IconReplyAllOutlined as default } +export default IconReplyAllOutlined diff --git a/src/IconReplyAllOutlinedFilled.tsx b/src/IconReplyAllOutlinedFilled.tsx index 298df10a9..48ad7c9c9 100644 --- a/src/IconReplyAllOutlinedFilled.tsx +++ b/src/IconReplyAllOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconReplyAllOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconReplyAllOutlinedFilled as default } +export default IconReplyAllOutlinedFilled diff --git a/src/IconReplyAllRounded.tsx b/src/IconReplyAllRounded.tsx index 014e429af..1a3d2da77 100644 --- a/src/IconReplyAllRounded.tsx +++ b/src/IconReplyAllRounded.tsx @@ -8,4 +8,4 @@ const IconReplyAllRounded: React.FC = ({ ...props }) => ( ) -export { IconReplyAllRounded as default } +export default IconReplyAllRounded diff --git a/src/IconReplyAllRoundedFilled.tsx b/src/IconReplyAllRoundedFilled.tsx index e3495c810..e04a6c2da 100644 --- a/src/IconReplyAllRoundedFilled.tsx +++ b/src/IconReplyAllRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconReplyAllRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconReplyAllRoundedFilled as default } +export default IconReplyAllRoundedFilled diff --git a/src/IconReplyAllSharp.tsx b/src/IconReplyAllSharp.tsx index f368493ce..013c18ef8 100644 --- a/src/IconReplyAllSharp.tsx +++ b/src/IconReplyAllSharp.tsx @@ -8,4 +8,4 @@ const IconReplyAllSharp: React.FC = ({ ...props }) => ( ) -export { IconReplyAllSharp as default } +export default IconReplyAllSharp diff --git a/src/IconReplyAllSharpFilled.tsx b/src/IconReplyAllSharpFilled.tsx index 47472f533..3621a1774 100644 --- a/src/IconReplyAllSharpFilled.tsx +++ b/src/IconReplyAllSharpFilled.tsx @@ -8,4 +8,4 @@ const IconReplyAllSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconReplyAllSharpFilled as default } +export default IconReplyAllSharpFilled diff --git a/src/IconReplyOutlined.tsx b/src/IconReplyOutlined.tsx index 18624df2a..11c6dafa4 100644 --- a/src/IconReplyOutlined.tsx +++ b/src/IconReplyOutlined.tsx @@ -8,4 +8,4 @@ const IconReplyOutlined: React.FC = ({ ...props }) => ( ) -export { IconReplyOutlined as default } +export default IconReplyOutlined diff --git a/src/IconReplyOutlinedFilled.tsx b/src/IconReplyOutlinedFilled.tsx index d77a9ab33..cb22bd933 100644 --- a/src/IconReplyOutlinedFilled.tsx +++ b/src/IconReplyOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconReplyOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconReplyOutlinedFilled as default } +export default IconReplyOutlinedFilled diff --git a/src/IconReplyRounded.tsx b/src/IconReplyRounded.tsx index ddbc4a78d..6aebbf022 100644 --- a/src/IconReplyRounded.tsx +++ b/src/IconReplyRounded.tsx @@ -8,4 +8,4 @@ const IconReplyRounded: React.FC = ({ ...props }) => ( ) -export { IconReplyRounded as default } +export default IconReplyRounded diff --git a/src/IconReplyRoundedFilled.tsx b/src/IconReplyRoundedFilled.tsx index b374b89f1..4ae41f1b7 100644 --- a/src/IconReplyRoundedFilled.tsx +++ b/src/IconReplyRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconReplyRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconReplyRoundedFilled as default } +export default IconReplyRoundedFilled diff --git a/src/IconReplySharp.tsx b/src/IconReplySharp.tsx index c977c7bd8..0e9aa9927 100644 --- a/src/IconReplySharp.tsx +++ b/src/IconReplySharp.tsx @@ -8,4 +8,4 @@ const IconReplySharp: React.FC = ({ ...props }) => ( ) -export { IconReplySharp as default } +export default IconReplySharp diff --git a/src/IconReplySharpFilled.tsx b/src/IconReplySharpFilled.tsx index eb1e34a5f..0bf99346a 100644 --- a/src/IconReplySharpFilled.tsx +++ b/src/IconReplySharpFilled.tsx @@ -8,4 +8,4 @@ const IconReplySharpFilled: React.FC = ({ ...props }) => ( ) -export { IconReplySharpFilled as default } +export default IconReplySharpFilled diff --git a/src/IconReportOffOutlined.tsx b/src/IconReportOffOutlined.tsx index da536cdc4..6740d9b0f 100644 --- a/src/IconReportOffOutlined.tsx +++ b/src/IconReportOffOutlined.tsx @@ -8,4 +8,4 @@ const IconReportOffOutlined: React.FC = ({ ...props }) => ( ) -export { IconReportOffOutlined as default } +export default IconReportOffOutlined diff --git a/src/IconReportOffOutlinedFilled.tsx b/src/IconReportOffOutlinedFilled.tsx index 52620d37a..ebfd0ab30 100644 --- a/src/IconReportOffOutlinedFilled.tsx +++ b/src/IconReportOffOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconReportOffOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconReportOffOutlinedFilled as default } +export default IconReportOffOutlinedFilled diff --git a/src/IconReportOffRounded.tsx b/src/IconReportOffRounded.tsx index 78b395204..d845c0c0d 100644 --- a/src/IconReportOffRounded.tsx +++ b/src/IconReportOffRounded.tsx @@ -8,4 +8,4 @@ const IconReportOffRounded: React.FC = ({ ...props }) => ( ) -export { IconReportOffRounded as default } +export default IconReportOffRounded diff --git a/src/IconReportOffRoundedFilled.tsx b/src/IconReportOffRoundedFilled.tsx index 7775443f8..93d31ae6a 100644 --- a/src/IconReportOffRoundedFilled.tsx +++ b/src/IconReportOffRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconReportOffRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconReportOffRoundedFilled as default } +export default IconReportOffRoundedFilled diff --git a/src/IconReportOffSharp.tsx b/src/IconReportOffSharp.tsx index 0ae0b4ae7..4f6f0d3cf 100644 --- a/src/IconReportOffSharp.tsx +++ b/src/IconReportOffSharp.tsx @@ -8,4 +8,4 @@ const IconReportOffSharp: React.FC = ({ ...props }) => ( ) -export { IconReportOffSharp as default } +export default IconReportOffSharp diff --git a/src/IconReportOffSharpFilled.tsx b/src/IconReportOffSharpFilled.tsx index 4c50c7d69..096c1f73e 100644 --- a/src/IconReportOffSharpFilled.tsx +++ b/src/IconReportOffSharpFilled.tsx @@ -8,4 +8,4 @@ const IconReportOffSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconReportOffSharpFilled as default } +export default IconReportOffSharpFilled diff --git a/src/IconReportOutlined.tsx b/src/IconReportOutlined.tsx index 0bae8c9a8..1a1184419 100644 --- a/src/IconReportOutlined.tsx +++ b/src/IconReportOutlined.tsx @@ -8,4 +8,4 @@ const IconReportOutlined: React.FC = ({ ...props }) => ( ) -export { IconReportOutlined as default } +export default IconReportOutlined diff --git a/src/IconReportOutlinedFilled.tsx b/src/IconReportOutlinedFilled.tsx index d8591c141..0e604e9d2 100644 --- a/src/IconReportOutlinedFilled.tsx +++ b/src/IconReportOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconReportOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconReportOutlinedFilled as default } +export default IconReportOutlinedFilled diff --git a/src/IconReportRounded.tsx b/src/IconReportRounded.tsx index 442580197..d7b639f32 100644 --- a/src/IconReportRounded.tsx +++ b/src/IconReportRounded.tsx @@ -8,4 +8,4 @@ const IconReportRounded: React.FC = ({ ...props }) => ( ) -export { IconReportRounded as default } +export default IconReportRounded diff --git a/src/IconReportRoundedFilled.tsx b/src/IconReportRoundedFilled.tsx index 475dea3a2..83bf2b995 100644 --- a/src/IconReportRoundedFilled.tsx +++ b/src/IconReportRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconReportRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconReportRoundedFilled as default } +export default IconReportRoundedFilled diff --git a/src/IconReportSharp.tsx b/src/IconReportSharp.tsx index 81898bb84..436107180 100644 --- a/src/IconReportSharp.tsx +++ b/src/IconReportSharp.tsx @@ -8,4 +8,4 @@ const IconReportSharp: React.FC = ({ ...props }) => ( ) -export { IconReportSharp as default } +export default IconReportSharp diff --git a/src/IconReportSharpFilled.tsx b/src/IconReportSharpFilled.tsx index 797fab04c..e48766d49 100644 --- a/src/IconReportSharpFilled.tsx +++ b/src/IconReportSharpFilled.tsx @@ -8,4 +8,4 @@ const IconReportSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconReportSharpFilled as default } +export default IconReportSharpFilled diff --git a/src/IconRequestPageOutlined.tsx b/src/IconRequestPageOutlined.tsx index f33a01355..c22712d25 100644 --- a/src/IconRequestPageOutlined.tsx +++ b/src/IconRequestPageOutlined.tsx @@ -8,4 +8,4 @@ const IconRequestPageOutlined: React.FC = ({ ...props }) => ( ) -export { IconRequestPageOutlined as default } +export default IconRequestPageOutlined diff --git a/src/IconRequestPageOutlinedFilled.tsx b/src/IconRequestPageOutlinedFilled.tsx index 429d7fbe7..ef96ec92b 100644 --- a/src/IconRequestPageOutlinedFilled.tsx +++ b/src/IconRequestPageOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconRequestPageOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconRequestPageOutlinedFilled as default } +export default IconRequestPageOutlinedFilled diff --git a/src/IconRequestPageRounded.tsx b/src/IconRequestPageRounded.tsx index fbadaea99..1b14b38a6 100644 --- a/src/IconRequestPageRounded.tsx +++ b/src/IconRequestPageRounded.tsx @@ -8,4 +8,4 @@ const IconRequestPageRounded: React.FC = ({ ...props }) => ( ) -export { IconRequestPageRounded as default } +export default IconRequestPageRounded diff --git a/src/IconRequestPageRoundedFilled.tsx b/src/IconRequestPageRoundedFilled.tsx index 3742311c6..134dca917 100644 --- a/src/IconRequestPageRoundedFilled.tsx +++ b/src/IconRequestPageRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconRequestPageRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconRequestPageRoundedFilled as default } +export default IconRequestPageRoundedFilled diff --git a/src/IconRequestPageSharp.tsx b/src/IconRequestPageSharp.tsx index 7051fd7cd..298d5b90f 100644 --- a/src/IconRequestPageSharp.tsx +++ b/src/IconRequestPageSharp.tsx @@ -8,4 +8,4 @@ const IconRequestPageSharp: React.FC = ({ ...props }) => ( ) -export { IconRequestPageSharp as default } +export default IconRequestPageSharp diff --git a/src/IconRequestPageSharpFilled.tsx b/src/IconRequestPageSharpFilled.tsx index 77ef6ad12..0abc2276b 100644 --- a/src/IconRequestPageSharpFilled.tsx +++ b/src/IconRequestPageSharpFilled.tsx @@ -8,4 +8,4 @@ const IconRequestPageSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconRequestPageSharpFilled as default } +export default IconRequestPageSharpFilled diff --git a/src/IconRequestQuoteOutlined.tsx b/src/IconRequestQuoteOutlined.tsx index a59c10a3f..557116b65 100644 --- a/src/IconRequestQuoteOutlined.tsx +++ b/src/IconRequestQuoteOutlined.tsx @@ -8,4 +8,4 @@ const IconRequestQuoteOutlined: React.FC = ({ ...props }) => ( ) -export { IconRequestQuoteOutlined as default } +export default IconRequestQuoteOutlined diff --git a/src/IconRequestQuoteOutlinedFilled.tsx b/src/IconRequestQuoteOutlinedFilled.tsx index 040d1145f..6c30d3c6c 100644 --- a/src/IconRequestQuoteOutlinedFilled.tsx +++ b/src/IconRequestQuoteOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconRequestQuoteOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconRequestQuoteOutlinedFilled as default } +export default IconRequestQuoteOutlinedFilled diff --git a/src/IconRequestQuoteRounded.tsx b/src/IconRequestQuoteRounded.tsx index 695f09264..82739bb86 100644 --- a/src/IconRequestQuoteRounded.tsx +++ b/src/IconRequestQuoteRounded.tsx @@ -8,4 +8,4 @@ const IconRequestQuoteRounded: React.FC = ({ ...props }) => ( ) -export { IconRequestQuoteRounded as default } +export default IconRequestQuoteRounded diff --git a/src/IconRequestQuoteRoundedFilled.tsx b/src/IconRequestQuoteRoundedFilled.tsx index d1ab6e345..e2875e017 100644 --- a/src/IconRequestQuoteRoundedFilled.tsx +++ b/src/IconRequestQuoteRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconRequestQuoteRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconRequestQuoteRoundedFilled as default } +export default IconRequestQuoteRoundedFilled diff --git a/src/IconRequestQuoteSharp.tsx b/src/IconRequestQuoteSharp.tsx index af45292f2..04a358bd4 100644 --- a/src/IconRequestQuoteSharp.tsx +++ b/src/IconRequestQuoteSharp.tsx @@ -8,4 +8,4 @@ const IconRequestQuoteSharp: React.FC = ({ ...props }) => ( ) -export { IconRequestQuoteSharp as default } +export default IconRequestQuoteSharp diff --git a/src/IconRequestQuoteSharpFilled.tsx b/src/IconRequestQuoteSharpFilled.tsx index 1a1882760..8d890762b 100644 --- a/src/IconRequestQuoteSharpFilled.tsx +++ b/src/IconRequestQuoteSharpFilled.tsx @@ -8,4 +8,4 @@ const IconRequestQuoteSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconRequestQuoteSharpFilled as default } +export default IconRequestQuoteSharpFilled diff --git a/src/IconResetBrightnessOutlined.tsx b/src/IconResetBrightnessOutlined.tsx index 498780a14..99c06e090 100644 --- a/src/IconResetBrightnessOutlined.tsx +++ b/src/IconResetBrightnessOutlined.tsx @@ -8,4 +8,4 @@ const IconResetBrightnessOutlined: React.FC = ({ ...props }) => ( ) -export { IconResetBrightnessOutlined as default } +export default IconResetBrightnessOutlined diff --git a/src/IconResetBrightnessOutlinedFilled.tsx b/src/IconResetBrightnessOutlinedFilled.tsx index 95ed24855..d20137d3d 100644 --- a/src/IconResetBrightnessOutlinedFilled.tsx +++ b/src/IconResetBrightnessOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconResetBrightnessOutlinedFilled: React.FC = ({ ) -export { IconResetBrightnessOutlinedFilled as default } +export default IconResetBrightnessOutlinedFilled diff --git a/src/IconResetBrightnessRounded.tsx b/src/IconResetBrightnessRounded.tsx index 704dff9db..55326b246 100644 --- a/src/IconResetBrightnessRounded.tsx +++ b/src/IconResetBrightnessRounded.tsx @@ -8,4 +8,4 @@ const IconResetBrightnessRounded: React.FC = ({ ...props }) => ( ) -export { IconResetBrightnessRounded as default } +export default IconResetBrightnessRounded diff --git a/src/IconResetBrightnessRoundedFilled.tsx b/src/IconResetBrightnessRoundedFilled.tsx index 3b3866c7e..02d2dc678 100644 --- a/src/IconResetBrightnessRoundedFilled.tsx +++ b/src/IconResetBrightnessRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconResetBrightnessRoundedFilled: React.FC = ({ ) -export { IconResetBrightnessRoundedFilled as default } +export default IconResetBrightnessRoundedFilled diff --git a/src/IconResetBrightnessSharp.tsx b/src/IconResetBrightnessSharp.tsx index d6988e635..6122bcc6b 100644 --- a/src/IconResetBrightnessSharp.tsx +++ b/src/IconResetBrightnessSharp.tsx @@ -8,4 +8,4 @@ const IconResetBrightnessSharp: React.FC = ({ ...props }) => ( ) -export { IconResetBrightnessSharp as default } +export default IconResetBrightnessSharp diff --git a/src/IconResetBrightnessSharpFilled.tsx b/src/IconResetBrightnessSharpFilled.tsx index 17fc70d0e..513110b7b 100644 --- a/src/IconResetBrightnessSharpFilled.tsx +++ b/src/IconResetBrightnessSharpFilled.tsx @@ -8,4 +8,4 @@ const IconResetBrightnessSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconResetBrightnessSharpFilled as default } +export default IconResetBrightnessSharpFilled diff --git a/src/IconResetFocusOutlined.tsx b/src/IconResetFocusOutlined.tsx index a4eac17e3..ec4125d33 100644 --- a/src/IconResetFocusOutlined.tsx +++ b/src/IconResetFocusOutlined.tsx @@ -8,4 +8,4 @@ const IconResetFocusOutlined: React.FC = ({ ...props }) => ( ) -export { IconResetFocusOutlined as default } +export default IconResetFocusOutlined diff --git a/src/IconResetFocusOutlinedFilled.tsx b/src/IconResetFocusOutlinedFilled.tsx index 001ea2ab7..66d0dabb9 100644 --- a/src/IconResetFocusOutlinedFilled.tsx +++ b/src/IconResetFocusOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconResetFocusOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconResetFocusOutlinedFilled as default } +export default IconResetFocusOutlinedFilled diff --git a/src/IconResetFocusRounded.tsx b/src/IconResetFocusRounded.tsx index 1e51f84c8..09df3e940 100644 --- a/src/IconResetFocusRounded.tsx +++ b/src/IconResetFocusRounded.tsx @@ -8,4 +8,4 @@ const IconResetFocusRounded: React.FC = ({ ...props }) => ( ) -export { IconResetFocusRounded as default } +export default IconResetFocusRounded diff --git a/src/IconResetFocusRoundedFilled.tsx b/src/IconResetFocusRoundedFilled.tsx index 9347f9fe3..372ffc39b 100644 --- a/src/IconResetFocusRoundedFilled.tsx +++ b/src/IconResetFocusRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconResetFocusRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconResetFocusRoundedFilled as default } +export default IconResetFocusRoundedFilled diff --git a/src/IconResetFocusSharp.tsx b/src/IconResetFocusSharp.tsx index 17aba48b4..0540e4a20 100644 --- a/src/IconResetFocusSharp.tsx +++ b/src/IconResetFocusSharp.tsx @@ -8,4 +8,4 @@ const IconResetFocusSharp: React.FC = ({ ...props }) => ( ) -export { IconResetFocusSharp as default } +export default IconResetFocusSharp diff --git a/src/IconResetFocusSharpFilled.tsx b/src/IconResetFocusSharpFilled.tsx index c48a47cae..e81f54090 100644 --- a/src/IconResetFocusSharpFilled.tsx +++ b/src/IconResetFocusSharpFilled.tsx @@ -8,4 +8,4 @@ const IconResetFocusSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconResetFocusSharpFilled as default } +export default IconResetFocusSharpFilled diff --git a/src/IconResetImageOutlined.tsx b/src/IconResetImageOutlined.tsx index 4468f8d86..85714675d 100644 --- a/src/IconResetImageOutlined.tsx +++ b/src/IconResetImageOutlined.tsx @@ -8,4 +8,4 @@ const IconResetImageOutlined: React.FC = ({ ...props }) => ( ) -export { IconResetImageOutlined as default } +export default IconResetImageOutlined diff --git a/src/IconResetImageOutlinedFilled.tsx b/src/IconResetImageOutlinedFilled.tsx index 92adf4970..5f8badf52 100644 --- a/src/IconResetImageOutlinedFilled.tsx +++ b/src/IconResetImageOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconResetImageOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconResetImageOutlinedFilled as default } +export default IconResetImageOutlinedFilled diff --git a/src/IconResetImageRounded.tsx b/src/IconResetImageRounded.tsx index f99bd9321..68d889aaa 100644 --- a/src/IconResetImageRounded.tsx +++ b/src/IconResetImageRounded.tsx @@ -8,4 +8,4 @@ const IconResetImageRounded: React.FC = ({ ...props }) => ( ) -export { IconResetImageRounded as default } +export default IconResetImageRounded diff --git a/src/IconResetImageRoundedFilled.tsx b/src/IconResetImageRoundedFilled.tsx index e067ed1f9..e57da1b1a 100644 --- a/src/IconResetImageRoundedFilled.tsx +++ b/src/IconResetImageRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconResetImageRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconResetImageRoundedFilled as default } +export default IconResetImageRoundedFilled diff --git a/src/IconResetImageSharp.tsx b/src/IconResetImageSharp.tsx index fbaae2c39..c3165d9b8 100644 --- a/src/IconResetImageSharp.tsx +++ b/src/IconResetImageSharp.tsx @@ -8,4 +8,4 @@ const IconResetImageSharp: React.FC = ({ ...props }) => ( ) -export { IconResetImageSharp as default } +export default IconResetImageSharp diff --git a/src/IconResetImageSharpFilled.tsx b/src/IconResetImageSharpFilled.tsx index 57e5988e4..8848b0e61 100644 --- a/src/IconResetImageSharpFilled.tsx +++ b/src/IconResetImageSharpFilled.tsx @@ -8,4 +8,4 @@ const IconResetImageSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconResetImageSharpFilled as default } +export default IconResetImageSharpFilled diff --git a/src/IconResetIsoOutlined.tsx b/src/IconResetIsoOutlined.tsx index d83fdcea7..77a78eb1c 100644 --- a/src/IconResetIsoOutlined.tsx +++ b/src/IconResetIsoOutlined.tsx @@ -8,4 +8,4 @@ const IconResetIsoOutlined: React.FC = ({ ...props }) => ( ) -export { IconResetIsoOutlined as default } +export default IconResetIsoOutlined diff --git a/src/IconResetIsoOutlinedFilled.tsx b/src/IconResetIsoOutlinedFilled.tsx index cf365356d..81dc351e0 100644 --- a/src/IconResetIsoOutlinedFilled.tsx +++ b/src/IconResetIsoOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconResetIsoOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconResetIsoOutlinedFilled as default } +export default IconResetIsoOutlinedFilled diff --git a/src/IconResetIsoRounded.tsx b/src/IconResetIsoRounded.tsx index bb4d3b26a..f90c29a90 100644 --- a/src/IconResetIsoRounded.tsx +++ b/src/IconResetIsoRounded.tsx @@ -8,4 +8,4 @@ const IconResetIsoRounded: React.FC = ({ ...props }) => ( ) -export { IconResetIsoRounded as default } +export default IconResetIsoRounded diff --git a/src/IconResetIsoRoundedFilled.tsx b/src/IconResetIsoRoundedFilled.tsx index c8a2f26ac..a37ba9fe7 100644 --- a/src/IconResetIsoRoundedFilled.tsx +++ b/src/IconResetIsoRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconResetIsoRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconResetIsoRoundedFilled as default } +export default IconResetIsoRoundedFilled diff --git a/src/IconResetIsoSharp.tsx b/src/IconResetIsoSharp.tsx index 391387e2d..dd1804a6e 100644 --- a/src/IconResetIsoSharp.tsx +++ b/src/IconResetIsoSharp.tsx @@ -8,4 +8,4 @@ const IconResetIsoSharp: React.FC = ({ ...props }) => ( ) -export { IconResetIsoSharp as default } +export default IconResetIsoSharp diff --git a/src/IconResetIsoSharpFilled.tsx b/src/IconResetIsoSharpFilled.tsx index e9c921cc5..27e3a96bb 100644 --- a/src/IconResetIsoSharpFilled.tsx +++ b/src/IconResetIsoSharpFilled.tsx @@ -8,4 +8,4 @@ const IconResetIsoSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconResetIsoSharpFilled as default } +export default IconResetIsoSharpFilled diff --git a/src/IconResetSettingsOutlined.tsx b/src/IconResetSettingsOutlined.tsx index cb083bddb..7d81490a6 100644 --- a/src/IconResetSettingsOutlined.tsx +++ b/src/IconResetSettingsOutlined.tsx @@ -8,4 +8,4 @@ const IconResetSettingsOutlined: React.FC = ({ ...props }) => ( ) -export { IconResetSettingsOutlined as default } +export default IconResetSettingsOutlined diff --git a/src/IconResetSettingsOutlinedFilled.tsx b/src/IconResetSettingsOutlinedFilled.tsx index b853ee32d..2c212e3b6 100644 --- a/src/IconResetSettingsOutlinedFilled.tsx +++ b/src/IconResetSettingsOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconResetSettingsOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconResetSettingsOutlinedFilled as default } +export default IconResetSettingsOutlinedFilled diff --git a/src/IconResetSettingsRounded.tsx b/src/IconResetSettingsRounded.tsx index 916ca426f..2a6a136f9 100644 --- a/src/IconResetSettingsRounded.tsx +++ b/src/IconResetSettingsRounded.tsx @@ -8,4 +8,4 @@ const IconResetSettingsRounded: React.FC = ({ ...props }) => ( ) -export { IconResetSettingsRounded as default } +export default IconResetSettingsRounded diff --git a/src/IconResetSettingsRoundedFilled.tsx b/src/IconResetSettingsRoundedFilled.tsx index 4ed9da443..1cea45102 100644 --- a/src/IconResetSettingsRoundedFilled.tsx +++ b/src/IconResetSettingsRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconResetSettingsRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconResetSettingsRoundedFilled as default } +export default IconResetSettingsRoundedFilled diff --git a/src/IconResetSettingsSharp.tsx b/src/IconResetSettingsSharp.tsx index ef09ae7fd..dd7acd78d 100644 --- a/src/IconResetSettingsSharp.tsx +++ b/src/IconResetSettingsSharp.tsx @@ -8,4 +8,4 @@ const IconResetSettingsSharp: React.FC = ({ ...props }) => ( ) -export { IconResetSettingsSharp as default } +export default IconResetSettingsSharp diff --git a/src/IconResetSettingsSharpFilled.tsx b/src/IconResetSettingsSharpFilled.tsx index a0974772b..aad024202 100644 --- a/src/IconResetSettingsSharpFilled.tsx +++ b/src/IconResetSettingsSharpFilled.tsx @@ -8,4 +8,4 @@ const IconResetSettingsSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconResetSettingsSharpFilled as default } +export default IconResetSettingsSharpFilled diff --git a/src/IconResetShadowOutlined.tsx b/src/IconResetShadowOutlined.tsx index 30d25511d..f9e264bdc 100644 --- a/src/IconResetShadowOutlined.tsx +++ b/src/IconResetShadowOutlined.tsx @@ -8,4 +8,4 @@ const IconResetShadowOutlined: React.FC = ({ ...props }) => ( ) -export { IconResetShadowOutlined as default } +export default IconResetShadowOutlined diff --git a/src/IconResetShadowOutlinedFilled.tsx b/src/IconResetShadowOutlinedFilled.tsx index 65e3b5c6c..eecb1c8ba 100644 --- a/src/IconResetShadowOutlinedFilled.tsx +++ b/src/IconResetShadowOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconResetShadowOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconResetShadowOutlinedFilled as default } +export default IconResetShadowOutlinedFilled diff --git a/src/IconResetShadowRounded.tsx b/src/IconResetShadowRounded.tsx index 0177e0d3c..815d7ab9d 100644 --- a/src/IconResetShadowRounded.tsx +++ b/src/IconResetShadowRounded.tsx @@ -8,4 +8,4 @@ const IconResetShadowRounded: React.FC = ({ ...props }) => ( ) -export { IconResetShadowRounded as default } +export default IconResetShadowRounded diff --git a/src/IconResetShadowRoundedFilled.tsx b/src/IconResetShadowRoundedFilled.tsx index 4fbfca6af..8e7bc660c 100644 --- a/src/IconResetShadowRoundedFilled.tsx +++ b/src/IconResetShadowRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconResetShadowRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconResetShadowRoundedFilled as default } +export default IconResetShadowRoundedFilled diff --git a/src/IconResetShadowSharp.tsx b/src/IconResetShadowSharp.tsx index 3acd43aaf..2bb1745ac 100644 --- a/src/IconResetShadowSharp.tsx +++ b/src/IconResetShadowSharp.tsx @@ -8,4 +8,4 @@ const IconResetShadowSharp: React.FC = ({ ...props }) => ( ) -export { IconResetShadowSharp as default } +export default IconResetShadowSharp diff --git a/src/IconResetShadowSharpFilled.tsx b/src/IconResetShadowSharpFilled.tsx index 593eb2bb2..b5465c01d 100644 --- a/src/IconResetShadowSharpFilled.tsx +++ b/src/IconResetShadowSharpFilled.tsx @@ -8,4 +8,4 @@ const IconResetShadowSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconResetShadowSharpFilled as default } +export default IconResetShadowSharpFilled diff --git a/src/IconResetShutterSpeedOutlined.tsx b/src/IconResetShutterSpeedOutlined.tsx index 38141adf9..be31577b8 100644 --- a/src/IconResetShutterSpeedOutlined.tsx +++ b/src/IconResetShutterSpeedOutlined.tsx @@ -8,4 +8,4 @@ const IconResetShutterSpeedOutlined: React.FC = ({ ...props }) => ( ) -export { IconResetShutterSpeedOutlined as default } +export default IconResetShutterSpeedOutlined diff --git a/src/IconResetShutterSpeedOutlinedFilled.tsx b/src/IconResetShutterSpeedOutlinedFilled.tsx index 32ab36495..776412f8f 100644 --- a/src/IconResetShutterSpeedOutlinedFilled.tsx +++ b/src/IconResetShutterSpeedOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconResetShutterSpeedOutlinedFilled: React.FC = ({ ) -export { IconResetShutterSpeedOutlinedFilled as default } +export default IconResetShutterSpeedOutlinedFilled diff --git a/src/IconResetShutterSpeedRounded.tsx b/src/IconResetShutterSpeedRounded.tsx index 3c6306211..0f8956e92 100644 --- a/src/IconResetShutterSpeedRounded.tsx +++ b/src/IconResetShutterSpeedRounded.tsx @@ -8,4 +8,4 @@ const IconResetShutterSpeedRounded: React.FC = ({ ...props }) => ( ) -export { IconResetShutterSpeedRounded as default } +export default IconResetShutterSpeedRounded diff --git a/src/IconResetShutterSpeedRoundedFilled.tsx b/src/IconResetShutterSpeedRoundedFilled.tsx index df2c0c740..928718b17 100644 --- a/src/IconResetShutterSpeedRoundedFilled.tsx +++ b/src/IconResetShutterSpeedRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconResetShutterSpeedRoundedFilled: React.FC = ({ ) -export { IconResetShutterSpeedRoundedFilled as default } +export default IconResetShutterSpeedRoundedFilled diff --git a/src/IconResetShutterSpeedSharp.tsx b/src/IconResetShutterSpeedSharp.tsx index 3c2d37147..536898d9d 100644 --- a/src/IconResetShutterSpeedSharp.tsx +++ b/src/IconResetShutterSpeedSharp.tsx @@ -8,4 +8,4 @@ const IconResetShutterSpeedSharp: React.FC = ({ ...props }) => ( ) -export { IconResetShutterSpeedSharp as default } +export default IconResetShutterSpeedSharp diff --git a/src/IconResetShutterSpeedSharpFilled.tsx b/src/IconResetShutterSpeedSharpFilled.tsx index 8b5d93dfb..beb3e5395 100644 --- a/src/IconResetShutterSpeedSharpFilled.tsx +++ b/src/IconResetShutterSpeedSharpFilled.tsx @@ -10,4 +10,4 @@ const IconResetShutterSpeedSharpFilled: React.FC = ({ ) -export { IconResetShutterSpeedSharpFilled as default } +export default IconResetShutterSpeedSharpFilled diff --git a/src/IconResetTvOutlined.tsx b/src/IconResetTvOutlined.tsx index 6097110d5..c75b1f9f3 100644 --- a/src/IconResetTvOutlined.tsx +++ b/src/IconResetTvOutlined.tsx @@ -8,4 +8,4 @@ const IconResetTvOutlined: React.FC = ({ ...props }) => ( ) -export { IconResetTvOutlined as default } +export default IconResetTvOutlined diff --git a/src/IconResetTvOutlinedFilled.tsx b/src/IconResetTvOutlinedFilled.tsx index d949c2263..ac7f64b1d 100644 --- a/src/IconResetTvOutlinedFilled.tsx +++ b/src/IconResetTvOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconResetTvOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconResetTvOutlinedFilled as default } +export default IconResetTvOutlinedFilled diff --git a/src/IconResetTvRounded.tsx b/src/IconResetTvRounded.tsx index 94a6c55fd..4936e92f0 100644 --- a/src/IconResetTvRounded.tsx +++ b/src/IconResetTvRounded.tsx @@ -8,4 +8,4 @@ const IconResetTvRounded: React.FC = ({ ...props }) => ( ) -export { IconResetTvRounded as default } +export default IconResetTvRounded diff --git a/src/IconResetTvRoundedFilled.tsx b/src/IconResetTvRoundedFilled.tsx index 77c047157..ddaf4399c 100644 --- a/src/IconResetTvRoundedFilled.tsx +++ b/src/IconResetTvRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconResetTvRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconResetTvRoundedFilled as default } +export default IconResetTvRoundedFilled diff --git a/src/IconResetTvSharp.tsx b/src/IconResetTvSharp.tsx index c37fa883a..fcf54915a 100644 --- a/src/IconResetTvSharp.tsx +++ b/src/IconResetTvSharp.tsx @@ -8,4 +8,4 @@ const IconResetTvSharp: React.FC = ({ ...props }) => ( ) -export { IconResetTvSharp as default } +export default IconResetTvSharp diff --git a/src/IconResetTvSharpFilled.tsx b/src/IconResetTvSharpFilled.tsx index b01847a3e..92fd7507e 100644 --- a/src/IconResetTvSharpFilled.tsx +++ b/src/IconResetTvSharpFilled.tsx @@ -8,4 +8,4 @@ const IconResetTvSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconResetTvSharpFilled as default } +export default IconResetTvSharpFilled diff --git a/src/IconResetWhiteBalanceOutlined.tsx b/src/IconResetWhiteBalanceOutlined.tsx index 215be3ad0..889787600 100644 --- a/src/IconResetWhiteBalanceOutlined.tsx +++ b/src/IconResetWhiteBalanceOutlined.tsx @@ -8,4 +8,4 @@ const IconResetWhiteBalanceOutlined: React.FC = ({ ...props }) => ( ) -export { IconResetWhiteBalanceOutlined as default } +export default IconResetWhiteBalanceOutlined diff --git a/src/IconResetWhiteBalanceOutlinedFilled.tsx b/src/IconResetWhiteBalanceOutlinedFilled.tsx index 7ca71e830..1362973b8 100644 --- a/src/IconResetWhiteBalanceOutlinedFilled.tsx +++ b/src/IconResetWhiteBalanceOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconResetWhiteBalanceOutlinedFilled: React.FC = ({ ) -export { IconResetWhiteBalanceOutlinedFilled as default } +export default IconResetWhiteBalanceOutlinedFilled diff --git a/src/IconResetWhiteBalanceRounded.tsx b/src/IconResetWhiteBalanceRounded.tsx index 594663c23..ef7ba84ba 100644 --- a/src/IconResetWhiteBalanceRounded.tsx +++ b/src/IconResetWhiteBalanceRounded.tsx @@ -8,4 +8,4 @@ const IconResetWhiteBalanceRounded: React.FC = ({ ...props }) => ( ) -export { IconResetWhiteBalanceRounded as default } +export default IconResetWhiteBalanceRounded diff --git a/src/IconResetWhiteBalanceRoundedFilled.tsx b/src/IconResetWhiteBalanceRoundedFilled.tsx index fd8b74c49..65f8e24c6 100644 --- a/src/IconResetWhiteBalanceRoundedFilled.tsx +++ b/src/IconResetWhiteBalanceRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconResetWhiteBalanceRoundedFilled: React.FC = ({ ) -export { IconResetWhiteBalanceRoundedFilled as default } +export default IconResetWhiteBalanceRoundedFilled diff --git a/src/IconResetWhiteBalanceSharp.tsx b/src/IconResetWhiteBalanceSharp.tsx index 89f585d30..1c2def4ef 100644 --- a/src/IconResetWhiteBalanceSharp.tsx +++ b/src/IconResetWhiteBalanceSharp.tsx @@ -8,4 +8,4 @@ const IconResetWhiteBalanceSharp: React.FC = ({ ...props }) => ( ) -export { IconResetWhiteBalanceSharp as default } +export default IconResetWhiteBalanceSharp diff --git a/src/IconResetWhiteBalanceSharpFilled.tsx b/src/IconResetWhiteBalanceSharpFilled.tsx index a593c8e03..119874556 100644 --- a/src/IconResetWhiteBalanceSharpFilled.tsx +++ b/src/IconResetWhiteBalanceSharpFilled.tsx @@ -10,4 +10,4 @@ const IconResetWhiteBalanceSharpFilled: React.FC = ({ ) -export { IconResetWhiteBalanceSharpFilled as default } +export default IconResetWhiteBalanceSharpFilled diff --git a/src/IconResetWrenchOutlined.tsx b/src/IconResetWrenchOutlined.tsx index 83bb35403..57f362d10 100644 --- a/src/IconResetWrenchOutlined.tsx +++ b/src/IconResetWrenchOutlined.tsx @@ -8,4 +8,4 @@ const IconResetWrenchOutlined: React.FC = ({ ...props }) => ( ) -export { IconResetWrenchOutlined as default } +export default IconResetWrenchOutlined diff --git a/src/IconResetWrenchOutlinedFilled.tsx b/src/IconResetWrenchOutlinedFilled.tsx index 91cc1d602..c7fe937c2 100644 --- a/src/IconResetWrenchOutlinedFilled.tsx +++ b/src/IconResetWrenchOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconResetWrenchOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconResetWrenchOutlinedFilled as default } +export default IconResetWrenchOutlinedFilled diff --git a/src/IconResetWrenchRounded.tsx b/src/IconResetWrenchRounded.tsx index 6da2411bf..54593fe21 100644 --- a/src/IconResetWrenchRounded.tsx +++ b/src/IconResetWrenchRounded.tsx @@ -8,4 +8,4 @@ const IconResetWrenchRounded: React.FC = ({ ...props }) => ( ) -export { IconResetWrenchRounded as default } +export default IconResetWrenchRounded diff --git a/src/IconResetWrenchRoundedFilled.tsx b/src/IconResetWrenchRoundedFilled.tsx index c858ceb63..34e1c0a45 100644 --- a/src/IconResetWrenchRoundedFilled.tsx +++ b/src/IconResetWrenchRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconResetWrenchRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconResetWrenchRoundedFilled as default } +export default IconResetWrenchRoundedFilled diff --git a/src/IconResetWrenchSharp.tsx b/src/IconResetWrenchSharp.tsx index 65910e333..35681049b 100644 --- a/src/IconResetWrenchSharp.tsx +++ b/src/IconResetWrenchSharp.tsx @@ -8,4 +8,4 @@ const IconResetWrenchSharp: React.FC = ({ ...props }) => ( ) -export { IconResetWrenchSharp as default } +export default IconResetWrenchSharp diff --git a/src/IconResetWrenchSharpFilled.tsx b/src/IconResetWrenchSharpFilled.tsx index 61a179327..140691330 100644 --- a/src/IconResetWrenchSharpFilled.tsx +++ b/src/IconResetWrenchSharpFilled.tsx @@ -8,4 +8,4 @@ const IconResetWrenchSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconResetWrenchSharpFilled as default } +export default IconResetWrenchSharpFilled diff --git a/src/IconResizeOutlined.tsx b/src/IconResizeOutlined.tsx index a872b2f93..770d6f75a 100644 --- a/src/IconResizeOutlined.tsx +++ b/src/IconResizeOutlined.tsx @@ -8,4 +8,4 @@ const IconResizeOutlined: React.FC = ({ ...props }) => ( ) -export { IconResizeOutlined as default } +export default IconResizeOutlined diff --git a/src/IconResizeOutlinedFilled.tsx b/src/IconResizeOutlinedFilled.tsx index 2f950a56c..91e7139c3 100644 --- a/src/IconResizeOutlinedFilled.tsx +++ b/src/IconResizeOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconResizeOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconResizeOutlinedFilled as default } +export default IconResizeOutlinedFilled diff --git a/src/IconResizeRounded.tsx b/src/IconResizeRounded.tsx index 42499fedf..22692b659 100644 --- a/src/IconResizeRounded.tsx +++ b/src/IconResizeRounded.tsx @@ -8,4 +8,4 @@ const IconResizeRounded: React.FC = ({ ...props }) => ( ) -export { IconResizeRounded as default } +export default IconResizeRounded diff --git a/src/IconResizeRoundedFilled.tsx b/src/IconResizeRoundedFilled.tsx index e1e2e9918..498b1ad89 100644 --- a/src/IconResizeRoundedFilled.tsx +++ b/src/IconResizeRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconResizeRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconResizeRoundedFilled as default } +export default IconResizeRoundedFilled diff --git a/src/IconResizeSharp.tsx b/src/IconResizeSharp.tsx index 3f22db63f..294f3065f 100644 --- a/src/IconResizeSharp.tsx +++ b/src/IconResizeSharp.tsx @@ -8,4 +8,4 @@ const IconResizeSharp: React.FC = ({ ...props }) => ( ) -export { IconResizeSharp as default } +export default IconResizeSharp diff --git a/src/IconResizeSharpFilled.tsx b/src/IconResizeSharpFilled.tsx index 92c46b3e8..5fdcaa2a7 100644 --- a/src/IconResizeSharpFilled.tsx +++ b/src/IconResizeSharpFilled.tsx @@ -8,4 +8,4 @@ const IconResizeSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconResizeSharpFilled as default } +export default IconResizeSharpFilled diff --git a/src/IconRespiratoryRateOutlined.tsx b/src/IconRespiratoryRateOutlined.tsx index 1b0de2772..cad4e325a 100644 --- a/src/IconRespiratoryRateOutlined.tsx +++ b/src/IconRespiratoryRateOutlined.tsx @@ -8,4 +8,4 @@ const IconRespiratoryRateOutlined: React.FC = ({ ...props }) => ( ) -export { IconRespiratoryRateOutlined as default } +export default IconRespiratoryRateOutlined diff --git a/src/IconRespiratoryRateOutlinedFilled.tsx b/src/IconRespiratoryRateOutlinedFilled.tsx index 7fa38ff77..3e97906fd 100644 --- a/src/IconRespiratoryRateOutlinedFilled.tsx +++ b/src/IconRespiratoryRateOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconRespiratoryRateOutlinedFilled: React.FC = ({ ) -export { IconRespiratoryRateOutlinedFilled as default } +export default IconRespiratoryRateOutlinedFilled diff --git a/src/IconRespiratoryRateRounded.tsx b/src/IconRespiratoryRateRounded.tsx index 01702d0fb..4c17d72d2 100644 --- a/src/IconRespiratoryRateRounded.tsx +++ b/src/IconRespiratoryRateRounded.tsx @@ -8,4 +8,4 @@ const IconRespiratoryRateRounded: React.FC = ({ ...props }) => ( ) -export { IconRespiratoryRateRounded as default } +export default IconRespiratoryRateRounded diff --git a/src/IconRespiratoryRateRoundedFilled.tsx b/src/IconRespiratoryRateRoundedFilled.tsx index 5cb9e5622..ab6f19f45 100644 --- a/src/IconRespiratoryRateRoundedFilled.tsx +++ b/src/IconRespiratoryRateRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconRespiratoryRateRoundedFilled: React.FC = ({ ) -export { IconRespiratoryRateRoundedFilled as default } +export default IconRespiratoryRateRoundedFilled diff --git a/src/IconRespiratoryRateSharp.tsx b/src/IconRespiratoryRateSharp.tsx index 861b61947..61e869044 100644 --- a/src/IconRespiratoryRateSharp.tsx +++ b/src/IconRespiratoryRateSharp.tsx @@ -8,4 +8,4 @@ const IconRespiratoryRateSharp: React.FC = ({ ...props }) => ( ) -export { IconRespiratoryRateSharp as default } +export default IconRespiratoryRateSharp diff --git a/src/IconRespiratoryRateSharpFilled.tsx b/src/IconRespiratoryRateSharpFilled.tsx index e6f09043a..19197dbd8 100644 --- a/src/IconRespiratoryRateSharpFilled.tsx +++ b/src/IconRespiratoryRateSharpFilled.tsx @@ -8,4 +8,4 @@ const IconRespiratoryRateSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconRespiratoryRateSharpFilled as default } +export default IconRespiratoryRateSharpFilled diff --git a/src/IconResponsiveLayoutOutlined.tsx b/src/IconResponsiveLayoutOutlined.tsx index 2e577b0f1..19065d175 100644 --- a/src/IconResponsiveLayoutOutlined.tsx +++ b/src/IconResponsiveLayoutOutlined.tsx @@ -8,4 +8,4 @@ const IconResponsiveLayoutOutlined: React.FC = ({ ...props }) => ( ) -export { IconResponsiveLayoutOutlined as default } +export default IconResponsiveLayoutOutlined diff --git a/src/IconResponsiveLayoutOutlinedFilled.tsx b/src/IconResponsiveLayoutOutlinedFilled.tsx index 501388c28..7044f76d7 100644 --- a/src/IconResponsiveLayoutOutlinedFilled.tsx +++ b/src/IconResponsiveLayoutOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconResponsiveLayoutOutlinedFilled: React.FC = ({ ) -export { IconResponsiveLayoutOutlinedFilled as default } +export default IconResponsiveLayoutOutlinedFilled diff --git a/src/IconResponsiveLayoutRounded.tsx b/src/IconResponsiveLayoutRounded.tsx index 2047c43c6..6cef9a240 100644 --- a/src/IconResponsiveLayoutRounded.tsx +++ b/src/IconResponsiveLayoutRounded.tsx @@ -8,4 +8,4 @@ const IconResponsiveLayoutRounded: React.FC = ({ ...props }) => ( ) -export { IconResponsiveLayoutRounded as default } +export default IconResponsiveLayoutRounded diff --git a/src/IconResponsiveLayoutRoundedFilled.tsx b/src/IconResponsiveLayoutRoundedFilled.tsx index 87d72ca6f..873c85db1 100644 --- a/src/IconResponsiveLayoutRoundedFilled.tsx +++ b/src/IconResponsiveLayoutRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconResponsiveLayoutRoundedFilled: React.FC = ({ ) -export { IconResponsiveLayoutRoundedFilled as default } +export default IconResponsiveLayoutRoundedFilled diff --git a/src/IconResponsiveLayoutSharp.tsx b/src/IconResponsiveLayoutSharp.tsx index e4b5f5dd0..5aa2574bd 100644 --- a/src/IconResponsiveLayoutSharp.tsx +++ b/src/IconResponsiveLayoutSharp.tsx @@ -8,4 +8,4 @@ const IconResponsiveLayoutSharp: React.FC = ({ ...props }) => ( ) -export { IconResponsiveLayoutSharp as default } +export default IconResponsiveLayoutSharp diff --git a/src/IconResponsiveLayoutSharpFilled.tsx b/src/IconResponsiveLayoutSharpFilled.tsx index b5c41eb03..adfba2cb1 100644 --- a/src/IconResponsiveLayoutSharpFilled.tsx +++ b/src/IconResponsiveLayoutSharpFilled.tsx @@ -8,4 +8,4 @@ const IconResponsiveLayoutSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconResponsiveLayoutSharpFilled as default } +export default IconResponsiveLayoutSharpFilled diff --git a/src/IconRestartAltOutlined.tsx b/src/IconRestartAltOutlined.tsx index d75573981..273be0573 100644 --- a/src/IconRestartAltOutlined.tsx +++ b/src/IconRestartAltOutlined.tsx @@ -8,4 +8,4 @@ const IconRestartAltOutlined: React.FC = ({ ...props }) => ( ) -export { IconRestartAltOutlined as default } +export default IconRestartAltOutlined diff --git a/src/IconRestartAltOutlinedFilled.tsx b/src/IconRestartAltOutlinedFilled.tsx index c76e24ac1..0175ff2cd 100644 --- a/src/IconRestartAltOutlinedFilled.tsx +++ b/src/IconRestartAltOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconRestartAltOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconRestartAltOutlinedFilled as default } +export default IconRestartAltOutlinedFilled diff --git a/src/IconRestartAltRounded.tsx b/src/IconRestartAltRounded.tsx index 7cf175db8..9daa4f87d 100644 --- a/src/IconRestartAltRounded.tsx +++ b/src/IconRestartAltRounded.tsx @@ -8,4 +8,4 @@ const IconRestartAltRounded: React.FC = ({ ...props }) => ( ) -export { IconRestartAltRounded as default } +export default IconRestartAltRounded diff --git a/src/IconRestartAltRoundedFilled.tsx b/src/IconRestartAltRoundedFilled.tsx index 4e183e525..07aec9900 100644 --- a/src/IconRestartAltRoundedFilled.tsx +++ b/src/IconRestartAltRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconRestartAltRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconRestartAltRoundedFilled as default } +export default IconRestartAltRoundedFilled diff --git a/src/IconRestartAltSharp.tsx b/src/IconRestartAltSharp.tsx index 1f61d7c40..90e846ff0 100644 --- a/src/IconRestartAltSharp.tsx +++ b/src/IconRestartAltSharp.tsx @@ -8,4 +8,4 @@ const IconRestartAltSharp: React.FC = ({ ...props }) => ( ) -export { IconRestartAltSharp as default } +export default IconRestartAltSharp diff --git a/src/IconRestartAltSharpFilled.tsx b/src/IconRestartAltSharpFilled.tsx index e0d334178..3f71e4eaa 100644 --- a/src/IconRestartAltSharpFilled.tsx +++ b/src/IconRestartAltSharpFilled.tsx @@ -8,4 +8,4 @@ const IconRestartAltSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconRestartAltSharpFilled as default } +export default IconRestartAltSharpFilled diff --git a/src/IconRestaurantOutlined.tsx b/src/IconRestaurantOutlined.tsx index 12b2eb4a1..f7b513fd3 100644 --- a/src/IconRestaurantOutlined.tsx +++ b/src/IconRestaurantOutlined.tsx @@ -8,4 +8,4 @@ const IconRestaurantOutlined: React.FC = ({ ...props }) => ( ) -export { IconRestaurantOutlined as default } +export default IconRestaurantOutlined diff --git a/src/IconRestaurantOutlinedFilled.tsx b/src/IconRestaurantOutlinedFilled.tsx index 4471f12a8..11298b8b3 100644 --- a/src/IconRestaurantOutlinedFilled.tsx +++ b/src/IconRestaurantOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconRestaurantOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconRestaurantOutlinedFilled as default } +export default IconRestaurantOutlinedFilled diff --git a/src/IconRestaurantRounded.tsx b/src/IconRestaurantRounded.tsx index a404a2060..fd92f9bf7 100644 --- a/src/IconRestaurantRounded.tsx +++ b/src/IconRestaurantRounded.tsx @@ -8,4 +8,4 @@ const IconRestaurantRounded: React.FC = ({ ...props }) => ( ) -export { IconRestaurantRounded as default } +export default IconRestaurantRounded diff --git a/src/IconRestaurantRoundedFilled.tsx b/src/IconRestaurantRoundedFilled.tsx index e24cb14ab..230bd50a3 100644 --- a/src/IconRestaurantRoundedFilled.tsx +++ b/src/IconRestaurantRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconRestaurantRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconRestaurantRoundedFilled as default } +export default IconRestaurantRoundedFilled diff --git a/src/IconRestaurantSharp.tsx b/src/IconRestaurantSharp.tsx index 82726177f..f6768e436 100644 --- a/src/IconRestaurantSharp.tsx +++ b/src/IconRestaurantSharp.tsx @@ -8,4 +8,4 @@ const IconRestaurantSharp: React.FC = ({ ...props }) => ( ) -export { IconRestaurantSharp as default } +export default IconRestaurantSharp diff --git a/src/IconRestaurantSharpFilled.tsx b/src/IconRestaurantSharpFilled.tsx index 2db9a6947..f27ad5faa 100644 --- a/src/IconRestaurantSharpFilled.tsx +++ b/src/IconRestaurantSharpFilled.tsx @@ -8,4 +8,4 @@ const IconRestaurantSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconRestaurantSharpFilled as default } +export default IconRestaurantSharpFilled diff --git a/src/IconRestoreFromTrashOutlined.tsx b/src/IconRestoreFromTrashOutlined.tsx index 3af294f69..9e48d1c7a 100644 --- a/src/IconRestoreFromTrashOutlined.tsx +++ b/src/IconRestoreFromTrashOutlined.tsx @@ -8,4 +8,4 @@ const IconRestoreFromTrashOutlined: React.FC = ({ ...props }) => ( ) -export { IconRestoreFromTrashOutlined as default } +export default IconRestoreFromTrashOutlined diff --git a/src/IconRestoreFromTrashOutlinedFilled.tsx b/src/IconRestoreFromTrashOutlinedFilled.tsx index 22d3eb0d1..bb5a37b1a 100644 --- a/src/IconRestoreFromTrashOutlinedFilled.tsx +++ b/src/IconRestoreFromTrashOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconRestoreFromTrashOutlinedFilled: React.FC = ({ ) -export { IconRestoreFromTrashOutlinedFilled as default } +export default IconRestoreFromTrashOutlinedFilled diff --git a/src/IconRestoreFromTrashRounded.tsx b/src/IconRestoreFromTrashRounded.tsx index 146635fad..fa2951233 100644 --- a/src/IconRestoreFromTrashRounded.tsx +++ b/src/IconRestoreFromTrashRounded.tsx @@ -8,4 +8,4 @@ const IconRestoreFromTrashRounded: React.FC = ({ ...props }) => ( ) -export { IconRestoreFromTrashRounded as default } +export default IconRestoreFromTrashRounded diff --git a/src/IconRestoreFromTrashRoundedFilled.tsx b/src/IconRestoreFromTrashRoundedFilled.tsx index 85dc1ecf3..a0b0c7655 100644 --- a/src/IconRestoreFromTrashRoundedFilled.tsx +++ b/src/IconRestoreFromTrashRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconRestoreFromTrashRoundedFilled: React.FC = ({ ) -export { IconRestoreFromTrashRoundedFilled as default } +export default IconRestoreFromTrashRoundedFilled diff --git a/src/IconRestoreFromTrashSharp.tsx b/src/IconRestoreFromTrashSharp.tsx index b19209c64..2b79071ce 100644 --- a/src/IconRestoreFromTrashSharp.tsx +++ b/src/IconRestoreFromTrashSharp.tsx @@ -8,4 +8,4 @@ const IconRestoreFromTrashSharp: React.FC = ({ ...props }) => ( ) -export { IconRestoreFromTrashSharp as default } +export default IconRestoreFromTrashSharp diff --git a/src/IconRestoreFromTrashSharpFilled.tsx b/src/IconRestoreFromTrashSharpFilled.tsx index d588a849c..e866a1631 100644 --- a/src/IconRestoreFromTrashSharpFilled.tsx +++ b/src/IconRestoreFromTrashSharpFilled.tsx @@ -8,4 +8,4 @@ const IconRestoreFromTrashSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconRestoreFromTrashSharpFilled as default } +export default IconRestoreFromTrashSharpFilled diff --git a/src/IconRestorePageOutlined.tsx b/src/IconRestorePageOutlined.tsx index 55aad15f1..ba23ba316 100644 --- a/src/IconRestorePageOutlined.tsx +++ b/src/IconRestorePageOutlined.tsx @@ -8,4 +8,4 @@ const IconRestorePageOutlined: React.FC = ({ ...props }) => ( ) -export { IconRestorePageOutlined as default } +export default IconRestorePageOutlined diff --git a/src/IconRestorePageOutlinedFilled.tsx b/src/IconRestorePageOutlinedFilled.tsx index 4524b82b4..1ca814a11 100644 --- a/src/IconRestorePageOutlinedFilled.tsx +++ b/src/IconRestorePageOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconRestorePageOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconRestorePageOutlinedFilled as default } +export default IconRestorePageOutlinedFilled diff --git a/src/IconRestorePageRounded.tsx b/src/IconRestorePageRounded.tsx index 211204df9..a64dca58b 100644 --- a/src/IconRestorePageRounded.tsx +++ b/src/IconRestorePageRounded.tsx @@ -8,4 +8,4 @@ const IconRestorePageRounded: React.FC = ({ ...props }) => ( ) -export { IconRestorePageRounded as default } +export default IconRestorePageRounded diff --git a/src/IconRestorePageRoundedFilled.tsx b/src/IconRestorePageRoundedFilled.tsx index b13cd137e..e1e4a654f 100644 --- a/src/IconRestorePageRoundedFilled.tsx +++ b/src/IconRestorePageRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconRestorePageRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconRestorePageRoundedFilled as default } +export default IconRestorePageRoundedFilled diff --git a/src/IconRestorePageSharp.tsx b/src/IconRestorePageSharp.tsx index 3b26e560b..1a12ecb41 100644 --- a/src/IconRestorePageSharp.tsx +++ b/src/IconRestorePageSharp.tsx @@ -8,4 +8,4 @@ const IconRestorePageSharp: React.FC = ({ ...props }) => ( ) -export { IconRestorePageSharp as default } +export default IconRestorePageSharp diff --git a/src/IconRestorePageSharpFilled.tsx b/src/IconRestorePageSharpFilled.tsx index 3927c2607..0c03a2d2a 100644 --- a/src/IconRestorePageSharpFilled.tsx +++ b/src/IconRestorePageSharpFilled.tsx @@ -8,4 +8,4 @@ const IconRestorePageSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconRestorePageSharpFilled as default } +export default IconRestorePageSharpFilled diff --git a/src/IconResumeOutlined.tsx b/src/IconResumeOutlined.tsx index 03976dab9..d0bf68195 100644 --- a/src/IconResumeOutlined.tsx +++ b/src/IconResumeOutlined.tsx @@ -8,4 +8,4 @@ const IconResumeOutlined: React.FC = ({ ...props }) => ( ) -export { IconResumeOutlined as default } +export default IconResumeOutlined diff --git a/src/IconResumeOutlinedFilled.tsx b/src/IconResumeOutlinedFilled.tsx index ed545e1f7..acd3d18d7 100644 --- a/src/IconResumeOutlinedFilled.tsx +++ b/src/IconResumeOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconResumeOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconResumeOutlinedFilled as default } +export default IconResumeOutlinedFilled diff --git a/src/IconResumeRounded.tsx b/src/IconResumeRounded.tsx index 87c74be2a..c0b717b73 100644 --- a/src/IconResumeRounded.tsx +++ b/src/IconResumeRounded.tsx @@ -8,4 +8,4 @@ const IconResumeRounded: React.FC = ({ ...props }) => ( ) -export { IconResumeRounded as default } +export default IconResumeRounded diff --git a/src/IconResumeRoundedFilled.tsx b/src/IconResumeRoundedFilled.tsx index 5a25277ea..529d84a39 100644 --- a/src/IconResumeRoundedFilled.tsx +++ b/src/IconResumeRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconResumeRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconResumeRoundedFilled as default } +export default IconResumeRoundedFilled diff --git a/src/IconResumeSharp.tsx b/src/IconResumeSharp.tsx index d5ae3dd04..a2f2dd381 100644 --- a/src/IconResumeSharp.tsx +++ b/src/IconResumeSharp.tsx @@ -8,4 +8,4 @@ const IconResumeSharp: React.FC = ({ ...props }) => ( ) -export { IconResumeSharp as default } +export default IconResumeSharp diff --git a/src/IconResumeSharpFilled.tsx b/src/IconResumeSharpFilled.tsx index 9737454b3..9de36e37a 100644 --- a/src/IconResumeSharpFilled.tsx +++ b/src/IconResumeSharpFilled.tsx @@ -8,4 +8,4 @@ const IconResumeSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconResumeSharpFilled as default } +export default IconResumeSharpFilled diff --git a/src/IconReviewsOutlined.tsx b/src/IconReviewsOutlined.tsx index 96da587cf..4a9d52499 100644 --- a/src/IconReviewsOutlined.tsx +++ b/src/IconReviewsOutlined.tsx @@ -8,4 +8,4 @@ const IconReviewsOutlined: React.FC = ({ ...props }) => ( ) -export { IconReviewsOutlined as default } +export default IconReviewsOutlined diff --git a/src/IconReviewsOutlinedFilled.tsx b/src/IconReviewsOutlinedFilled.tsx index 2284c3311..da4bda2e7 100644 --- a/src/IconReviewsOutlinedFilled.tsx +++ b/src/IconReviewsOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconReviewsOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconReviewsOutlinedFilled as default } +export default IconReviewsOutlinedFilled diff --git a/src/IconReviewsRounded.tsx b/src/IconReviewsRounded.tsx index 3641dd015..73dc51c02 100644 --- a/src/IconReviewsRounded.tsx +++ b/src/IconReviewsRounded.tsx @@ -8,4 +8,4 @@ const IconReviewsRounded: React.FC = ({ ...props }) => ( ) -export { IconReviewsRounded as default } +export default IconReviewsRounded diff --git a/src/IconReviewsRoundedFilled.tsx b/src/IconReviewsRoundedFilled.tsx index 5daf92af6..06be0e9c4 100644 --- a/src/IconReviewsRoundedFilled.tsx +++ b/src/IconReviewsRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconReviewsRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconReviewsRoundedFilled as default } +export default IconReviewsRoundedFilled diff --git a/src/IconReviewsSharp.tsx b/src/IconReviewsSharp.tsx index bd8f811ef..960fcc6e2 100644 --- a/src/IconReviewsSharp.tsx +++ b/src/IconReviewsSharp.tsx @@ -8,4 +8,4 @@ const IconReviewsSharp: React.FC = ({ ...props }) => ( ) -export { IconReviewsSharp as default } +export default IconReviewsSharp diff --git a/src/IconReviewsSharpFilled.tsx b/src/IconReviewsSharpFilled.tsx index 7969097fd..9df1e3529 100644 --- a/src/IconReviewsSharpFilled.tsx +++ b/src/IconReviewsSharpFilled.tsx @@ -8,4 +8,4 @@ const IconReviewsSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconReviewsSharpFilled as default } +export default IconReviewsSharpFilled diff --git a/src/IconRewardedAdsOutlined.tsx b/src/IconRewardedAdsOutlined.tsx index bc27eacb5..c6382ed19 100644 --- a/src/IconRewardedAdsOutlined.tsx +++ b/src/IconRewardedAdsOutlined.tsx @@ -8,4 +8,4 @@ const IconRewardedAdsOutlined: React.FC = ({ ...props }) => ( ) -export { IconRewardedAdsOutlined as default } +export default IconRewardedAdsOutlined diff --git a/src/IconRewardedAdsOutlinedFilled.tsx b/src/IconRewardedAdsOutlinedFilled.tsx index f3987a0eb..bd42fa7cb 100644 --- a/src/IconRewardedAdsOutlinedFilled.tsx +++ b/src/IconRewardedAdsOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconRewardedAdsOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconRewardedAdsOutlinedFilled as default } +export default IconRewardedAdsOutlinedFilled diff --git a/src/IconRewardedAdsRounded.tsx b/src/IconRewardedAdsRounded.tsx index a2c6a725e..63f16c2d6 100644 --- a/src/IconRewardedAdsRounded.tsx +++ b/src/IconRewardedAdsRounded.tsx @@ -8,4 +8,4 @@ const IconRewardedAdsRounded: React.FC = ({ ...props }) => ( ) -export { IconRewardedAdsRounded as default } +export default IconRewardedAdsRounded diff --git a/src/IconRewardedAdsRoundedFilled.tsx b/src/IconRewardedAdsRoundedFilled.tsx index 6eb0389fa..b25fbf681 100644 --- a/src/IconRewardedAdsRoundedFilled.tsx +++ b/src/IconRewardedAdsRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconRewardedAdsRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconRewardedAdsRoundedFilled as default } +export default IconRewardedAdsRoundedFilled diff --git a/src/IconRewardedAdsSharp.tsx b/src/IconRewardedAdsSharp.tsx index 0190404be..e5055a5bf 100644 --- a/src/IconRewardedAdsSharp.tsx +++ b/src/IconRewardedAdsSharp.tsx @@ -8,4 +8,4 @@ const IconRewardedAdsSharp: React.FC = ({ ...props }) => ( ) -export { IconRewardedAdsSharp as default } +export default IconRewardedAdsSharp diff --git a/src/IconRewardedAdsSharpFilled.tsx b/src/IconRewardedAdsSharpFilled.tsx index 6d7c10ce0..291ba70d0 100644 --- a/src/IconRewardedAdsSharpFilled.tsx +++ b/src/IconRewardedAdsSharpFilled.tsx @@ -8,4 +8,4 @@ const IconRewardedAdsSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconRewardedAdsSharpFilled as default } +export default IconRewardedAdsSharpFilled diff --git a/src/IconRheumatologyOutlined.tsx b/src/IconRheumatologyOutlined.tsx index 728e55e18..b43f0bd1c 100644 --- a/src/IconRheumatologyOutlined.tsx +++ b/src/IconRheumatologyOutlined.tsx @@ -8,4 +8,4 @@ const IconRheumatologyOutlined: React.FC = ({ ...props }) => ( ) -export { IconRheumatologyOutlined as default } +export default IconRheumatologyOutlined diff --git a/src/IconRheumatologyOutlinedFilled.tsx b/src/IconRheumatologyOutlinedFilled.tsx index 1c9eea3ca..f2562ee63 100644 --- a/src/IconRheumatologyOutlinedFilled.tsx +++ b/src/IconRheumatologyOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconRheumatologyOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconRheumatologyOutlinedFilled as default } +export default IconRheumatologyOutlinedFilled diff --git a/src/IconRheumatologyRounded.tsx b/src/IconRheumatologyRounded.tsx index e0b472862..8f05f0bd0 100644 --- a/src/IconRheumatologyRounded.tsx +++ b/src/IconRheumatologyRounded.tsx @@ -8,4 +8,4 @@ const IconRheumatologyRounded: React.FC = ({ ...props }) => ( ) -export { IconRheumatologyRounded as default } +export default IconRheumatologyRounded diff --git a/src/IconRheumatologyRoundedFilled.tsx b/src/IconRheumatologyRoundedFilled.tsx index 487a1d288..196cfc48f 100644 --- a/src/IconRheumatologyRoundedFilled.tsx +++ b/src/IconRheumatologyRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconRheumatologyRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconRheumatologyRoundedFilled as default } +export default IconRheumatologyRoundedFilled diff --git a/src/IconRheumatologySharp.tsx b/src/IconRheumatologySharp.tsx index 1e9213b4a..cf7884b83 100644 --- a/src/IconRheumatologySharp.tsx +++ b/src/IconRheumatologySharp.tsx @@ -8,4 +8,4 @@ const IconRheumatologySharp: React.FC = ({ ...props }) => ( ) -export { IconRheumatologySharp as default } +export default IconRheumatologySharp diff --git a/src/IconRheumatologySharpFilled.tsx b/src/IconRheumatologySharpFilled.tsx index 2edca1c0a..318263ed8 100644 --- a/src/IconRheumatologySharpFilled.tsx +++ b/src/IconRheumatologySharpFilled.tsx @@ -8,4 +8,4 @@ const IconRheumatologySharpFilled: React.FC = ({ ...props }) => ( ) -export { IconRheumatologySharpFilled as default } +export default IconRheumatologySharpFilled diff --git a/src/IconRibCageOutlined.tsx b/src/IconRibCageOutlined.tsx index 90ad06a44..8a425e33f 100644 --- a/src/IconRibCageOutlined.tsx +++ b/src/IconRibCageOutlined.tsx @@ -8,4 +8,4 @@ const IconRibCageOutlined: React.FC = ({ ...props }) => ( ) -export { IconRibCageOutlined as default } +export default IconRibCageOutlined diff --git a/src/IconRibCageOutlinedFilled.tsx b/src/IconRibCageOutlinedFilled.tsx index 83f3a39d2..e6d027782 100644 --- a/src/IconRibCageOutlinedFilled.tsx +++ b/src/IconRibCageOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconRibCageOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconRibCageOutlinedFilled as default } +export default IconRibCageOutlinedFilled diff --git a/src/IconRibCageRounded.tsx b/src/IconRibCageRounded.tsx index 2892e4e44..47e928dc2 100644 --- a/src/IconRibCageRounded.tsx +++ b/src/IconRibCageRounded.tsx @@ -8,4 +8,4 @@ const IconRibCageRounded: React.FC = ({ ...props }) => ( ) -export { IconRibCageRounded as default } +export default IconRibCageRounded diff --git a/src/IconRibCageRoundedFilled.tsx b/src/IconRibCageRoundedFilled.tsx index edf92e472..a1242466d 100644 --- a/src/IconRibCageRoundedFilled.tsx +++ b/src/IconRibCageRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconRibCageRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconRibCageRoundedFilled as default } +export default IconRibCageRoundedFilled diff --git a/src/IconRibCageSharp.tsx b/src/IconRibCageSharp.tsx index c3cefff38..9a8626199 100644 --- a/src/IconRibCageSharp.tsx +++ b/src/IconRibCageSharp.tsx @@ -8,4 +8,4 @@ const IconRibCageSharp: React.FC = ({ ...props }) => ( ) -export { IconRibCageSharp as default } +export default IconRibCageSharp diff --git a/src/IconRibCageSharpFilled.tsx b/src/IconRibCageSharpFilled.tsx index 86ab20855..e5851045b 100644 --- a/src/IconRibCageSharpFilled.tsx +++ b/src/IconRibCageSharpFilled.tsx @@ -8,4 +8,4 @@ const IconRibCageSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconRibCageSharpFilled as default } +export default IconRibCageSharpFilled diff --git a/src/IconRiceBowlOutlined.tsx b/src/IconRiceBowlOutlined.tsx index 5c66d3527..706ce4167 100644 --- a/src/IconRiceBowlOutlined.tsx +++ b/src/IconRiceBowlOutlined.tsx @@ -8,4 +8,4 @@ const IconRiceBowlOutlined: React.FC = ({ ...props }) => ( ) -export { IconRiceBowlOutlined as default } +export default IconRiceBowlOutlined diff --git a/src/IconRiceBowlOutlinedFilled.tsx b/src/IconRiceBowlOutlinedFilled.tsx index 3043c7d71..f97870b8f 100644 --- a/src/IconRiceBowlOutlinedFilled.tsx +++ b/src/IconRiceBowlOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconRiceBowlOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconRiceBowlOutlinedFilled as default } +export default IconRiceBowlOutlinedFilled diff --git a/src/IconRiceBowlRounded.tsx b/src/IconRiceBowlRounded.tsx index 1f5f450e1..5c5e365d9 100644 --- a/src/IconRiceBowlRounded.tsx +++ b/src/IconRiceBowlRounded.tsx @@ -8,4 +8,4 @@ const IconRiceBowlRounded: React.FC = ({ ...props }) => ( ) -export { IconRiceBowlRounded as default } +export default IconRiceBowlRounded diff --git a/src/IconRiceBowlRoundedFilled.tsx b/src/IconRiceBowlRoundedFilled.tsx index 96bcae677..4a5f29d4a 100644 --- a/src/IconRiceBowlRoundedFilled.tsx +++ b/src/IconRiceBowlRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconRiceBowlRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconRiceBowlRoundedFilled as default } +export default IconRiceBowlRoundedFilled diff --git a/src/IconRiceBowlSharp.tsx b/src/IconRiceBowlSharp.tsx index 38610109b..72494c9f5 100644 --- a/src/IconRiceBowlSharp.tsx +++ b/src/IconRiceBowlSharp.tsx @@ -8,4 +8,4 @@ const IconRiceBowlSharp: React.FC = ({ ...props }) => ( ) -export { IconRiceBowlSharp as default } +export default IconRiceBowlSharp diff --git a/src/IconRiceBowlSharpFilled.tsx b/src/IconRiceBowlSharpFilled.tsx index ce2cb4986..d72807022 100644 --- a/src/IconRiceBowlSharpFilled.tsx +++ b/src/IconRiceBowlSharpFilled.tsx @@ -8,4 +8,4 @@ const IconRiceBowlSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconRiceBowlSharpFilled as default } +export default IconRiceBowlSharpFilled diff --git a/src/IconRightClickOutlined.tsx b/src/IconRightClickOutlined.tsx index 45c251066..2eab31dd1 100644 --- a/src/IconRightClickOutlined.tsx +++ b/src/IconRightClickOutlined.tsx @@ -8,4 +8,4 @@ const IconRightClickOutlined: React.FC = ({ ...props }) => ( ) -export { IconRightClickOutlined as default } +export default IconRightClickOutlined diff --git a/src/IconRightClickOutlinedFilled.tsx b/src/IconRightClickOutlinedFilled.tsx index 7bf1fb518..d1fdf756e 100644 --- a/src/IconRightClickOutlinedFilled.tsx +++ b/src/IconRightClickOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconRightClickOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconRightClickOutlinedFilled as default } +export default IconRightClickOutlinedFilled diff --git a/src/IconRightClickRounded.tsx b/src/IconRightClickRounded.tsx index d4c6d3f4d..c820fb7cc 100644 --- a/src/IconRightClickRounded.tsx +++ b/src/IconRightClickRounded.tsx @@ -8,4 +8,4 @@ const IconRightClickRounded: React.FC = ({ ...props }) => ( ) -export { IconRightClickRounded as default } +export default IconRightClickRounded diff --git a/src/IconRightClickRoundedFilled.tsx b/src/IconRightClickRoundedFilled.tsx index 668d886dc..20ee655e2 100644 --- a/src/IconRightClickRoundedFilled.tsx +++ b/src/IconRightClickRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconRightClickRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconRightClickRoundedFilled as default } +export default IconRightClickRoundedFilled diff --git a/src/IconRightClickSharp.tsx b/src/IconRightClickSharp.tsx index faf66a79f..73cb2d676 100644 --- a/src/IconRightClickSharp.tsx +++ b/src/IconRightClickSharp.tsx @@ -8,4 +8,4 @@ const IconRightClickSharp: React.FC = ({ ...props }) => ( ) -export { IconRightClickSharp as default } +export default IconRightClickSharp diff --git a/src/IconRightClickSharpFilled.tsx b/src/IconRightClickSharpFilled.tsx index 0bd4f9213..5d144507b 100644 --- a/src/IconRightClickSharpFilled.tsx +++ b/src/IconRightClickSharpFilled.tsx @@ -8,4 +8,4 @@ const IconRightClickSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconRightClickSharpFilled as default } +export default IconRightClickSharpFilled diff --git a/src/IconRightPanelCloseOutlined.tsx b/src/IconRightPanelCloseOutlined.tsx index 9f964c648..a296f4e4e 100644 --- a/src/IconRightPanelCloseOutlined.tsx +++ b/src/IconRightPanelCloseOutlined.tsx @@ -8,4 +8,4 @@ const IconRightPanelCloseOutlined: React.FC = ({ ...props }) => ( ) -export { IconRightPanelCloseOutlined as default } +export default IconRightPanelCloseOutlined diff --git a/src/IconRightPanelCloseOutlinedFilled.tsx b/src/IconRightPanelCloseOutlinedFilled.tsx index 7730412b9..652614263 100644 --- a/src/IconRightPanelCloseOutlinedFilled.tsx +++ b/src/IconRightPanelCloseOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconRightPanelCloseOutlinedFilled: React.FC = ({ ) -export { IconRightPanelCloseOutlinedFilled as default } +export default IconRightPanelCloseOutlinedFilled diff --git a/src/IconRightPanelCloseRounded.tsx b/src/IconRightPanelCloseRounded.tsx index 781436303..5ef85432f 100644 --- a/src/IconRightPanelCloseRounded.tsx +++ b/src/IconRightPanelCloseRounded.tsx @@ -8,4 +8,4 @@ const IconRightPanelCloseRounded: React.FC = ({ ...props }) => ( ) -export { IconRightPanelCloseRounded as default } +export default IconRightPanelCloseRounded diff --git a/src/IconRightPanelCloseRoundedFilled.tsx b/src/IconRightPanelCloseRoundedFilled.tsx index 07e9002ee..7c81c7871 100644 --- a/src/IconRightPanelCloseRoundedFilled.tsx +++ b/src/IconRightPanelCloseRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconRightPanelCloseRoundedFilled: React.FC = ({ ) -export { IconRightPanelCloseRoundedFilled as default } +export default IconRightPanelCloseRoundedFilled diff --git a/src/IconRightPanelCloseSharp.tsx b/src/IconRightPanelCloseSharp.tsx index 2a37449d8..622bbcefe 100644 --- a/src/IconRightPanelCloseSharp.tsx +++ b/src/IconRightPanelCloseSharp.tsx @@ -8,4 +8,4 @@ const IconRightPanelCloseSharp: React.FC = ({ ...props }) => ( ) -export { IconRightPanelCloseSharp as default } +export default IconRightPanelCloseSharp diff --git a/src/IconRightPanelCloseSharpFilled.tsx b/src/IconRightPanelCloseSharpFilled.tsx index 593514e07..0916ba1e0 100644 --- a/src/IconRightPanelCloseSharpFilled.tsx +++ b/src/IconRightPanelCloseSharpFilled.tsx @@ -8,4 +8,4 @@ const IconRightPanelCloseSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconRightPanelCloseSharpFilled as default } +export default IconRightPanelCloseSharpFilled diff --git a/src/IconRightPanelOpenOutlined.tsx b/src/IconRightPanelOpenOutlined.tsx index a02fcf664..12ad6bf3d 100644 --- a/src/IconRightPanelOpenOutlined.tsx +++ b/src/IconRightPanelOpenOutlined.tsx @@ -8,4 +8,4 @@ const IconRightPanelOpenOutlined: React.FC = ({ ...props }) => ( ) -export { IconRightPanelOpenOutlined as default } +export default IconRightPanelOpenOutlined diff --git a/src/IconRightPanelOpenOutlinedFilled.tsx b/src/IconRightPanelOpenOutlinedFilled.tsx index 83d0584c2..7811bd2a3 100644 --- a/src/IconRightPanelOpenOutlinedFilled.tsx +++ b/src/IconRightPanelOpenOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconRightPanelOpenOutlinedFilled: React.FC = ({ ) -export { IconRightPanelOpenOutlinedFilled as default } +export default IconRightPanelOpenOutlinedFilled diff --git a/src/IconRightPanelOpenRounded.tsx b/src/IconRightPanelOpenRounded.tsx index 0ec7001a4..cfb75e7c2 100644 --- a/src/IconRightPanelOpenRounded.tsx +++ b/src/IconRightPanelOpenRounded.tsx @@ -8,4 +8,4 @@ const IconRightPanelOpenRounded: React.FC = ({ ...props }) => ( ) -export { IconRightPanelOpenRounded as default } +export default IconRightPanelOpenRounded diff --git a/src/IconRightPanelOpenRoundedFilled.tsx b/src/IconRightPanelOpenRoundedFilled.tsx index 2a5ee3a9f..c9314f679 100644 --- a/src/IconRightPanelOpenRoundedFilled.tsx +++ b/src/IconRightPanelOpenRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconRightPanelOpenRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconRightPanelOpenRoundedFilled as default } +export default IconRightPanelOpenRoundedFilled diff --git a/src/IconRightPanelOpenSharp.tsx b/src/IconRightPanelOpenSharp.tsx index 534e65534..af67af670 100644 --- a/src/IconRightPanelOpenSharp.tsx +++ b/src/IconRightPanelOpenSharp.tsx @@ -8,4 +8,4 @@ const IconRightPanelOpenSharp: React.FC = ({ ...props }) => ( ) -export { IconRightPanelOpenSharp as default } +export default IconRightPanelOpenSharp diff --git a/src/IconRightPanelOpenSharpFilled.tsx b/src/IconRightPanelOpenSharpFilled.tsx index 1ef92c4de..dacc9c8a1 100644 --- a/src/IconRightPanelOpenSharpFilled.tsx +++ b/src/IconRightPanelOpenSharpFilled.tsx @@ -8,4 +8,4 @@ const IconRightPanelOpenSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconRightPanelOpenSharpFilled as default } +export default IconRightPanelOpenSharpFilled diff --git a/src/IconRingVolumeOutlined.tsx b/src/IconRingVolumeOutlined.tsx index d881511be..7d6730c9c 100644 --- a/src/IconRingVolumeOutlined.tsx +++ b/src/IconRingVolumeOutlined.tsx @@ -8,4 +8,4 @@ const IconRingVolumeOutlined: React.FC = ({ ...props }) => ( ) -export { IconRingVolumeOutlined as default } +export default IconRingVolumeOutlined diff --git a/src/IconRingVolumeOutlinedFilled.tsx b/src/IconRingVolumeOutlinedFilled.tsx index ee81920f5..ec506332d 100644 --- a/src/IconRingVolumeOutlinedFilled.tsx +++ b/src/IconRingVolumeOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconRingVolumeOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconRingVolumeOutlinedFilled as default } +export default IconRingVolumeOutlinedFilled diff --git a/src/IconRingVolumeRounded.tsx b/src/IconRingVolumeRounded.tsx index cdd833741..59cd616ef 100644 --- a/src/IconRingVolumeRounded.tsx +++ b/src/IconRingVolumeRounded.tsx @@ -8,4 +8,4 @@ const IconRingVolumeRounded: React.FC = ({ ...props }) => ( ) -export { IconRingVolumeRounded as default } +export default IconRingVolumeRounded diff --git a/src/IconRingVolumeRoundedFilled.tsx b/src/IconRingVolumeRoundedFilled.tsx index 7a2398525..b5f71bd9e 100644 --- a/src/IconRingVolumeRoundedFilled.tsx +++ b/src/IconRingVolumeRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconRingVolumeRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconRingVolumeRoundedFilled as default } +export default IconRingVolumeRoundedFilled diff --git a/src/IconRingVolumeSharp.tsx b/src/IconRingVolumeSharp.tsx index d3c0bb0cd..39331e447 100644 --- a/src/IconRingVolumeSharp.tsx +++ b/src/IconRingVolumeSharp.tsx @@ -8,4 +8,4 @@ const IconRingVolumeSharp: React.FC = ({ ...props }) => ( ) -export { IconRingVolumeSharp as default } +export default IconRingVolumeSharp diff --git a/src/IconRingVolumeSharpFilled.tsx b/src/IconRingVolumeSharpFilled.tsx index 3f3ee621c..1d4abc344 100644 --- a/src/IconRingVolumeSharpFilled.tsx +++ b/src/IconRingVolumeSharpFilled.tsx @@ -8,4 +8,4 @@ const IconRingVolumeSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconRingVolumeSharpFilled as default } +export default IconRingVolumeSharpFilled diff --git a/src/IconRipplesOutlined.tsx b/src/IconRipplesOutlined.tsx index 42fa2d846..5d8c76fee 100644 --- a/src/IconRipplesOutlined.tsx +++ b/src/IconRipplesOutlined.tsx @@ -8,4 +8,4 @@ const IconRipplesOutlined: React.FC = ({ ...props }) => ( ) -export { IconRipplesOutlined as default } +export default IconRipplesOutlined diff --git a/src/IconRipplesOutlinedFilled.tsx b/src/IconRipplesOutlinedFilled.tsx index 9f8c47258..868b3e5d1 100644 --- a/src/IconRipplesOutlinedFilled.tsx +++ b/src/IconRipplesOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconRipplesOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconRipplesOutlinedFilled as default } +export default IconRipplesOutlinedFilled diff --git a/src/IconRipplesRounded.tsx b/src/IconRipplesRounded.tsx index 17795795d..c5a3c18ae 100644 --- a/src/IconRipplesRounded.tsx +++ b/src/IconRipplesRounded.tsx @@ -8,4 +8,4 @@ const IconRipplesRounded: React.FC = ({ ...props }) => ( ) -export { IconRipplesRounded as default } +export default IconRipplesRounded diff --git a/src/IconRipplesRoundedFilled.tsx b/src/IconRipplesRoundedFilled.tsx index 8f85bfa45..72f90fbef 100644 --- a/src/IconRipplesRoundedFilled.tsx +++ b/src/IconRipplesRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconRipplesRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconRipplesRoundedFilled as default } +export default IconRipplesRoundedFilled diff --git a/src/IconRipplesSharp.tsx b/src/IconRipplesSharp.tsx index 7ce02eb7f..7dbac9ad4 100644 --- a/src/IconRipplesSharp.tsx +++ b/src/IconRipplesSharp.tsx @@ -8,4 +8,4 @@ const IconRipplesSharp: React.FC = ({ ...props }) => ( ) -export { IconRipplesSharp as default } +export default IconRipplesSharp diff --git a/src/IconRipplesSharpFilled.tsx b/src/IconRipplesSharpFilled.tsx index a6ed5ea9e..8969cda45 100644 --- a/src/IconRipplesSharpFilled.tsx +++ b/src/IconRipplesSharpFilled.tsx @@ -8,4 +8,4 @@ const IconRipplesSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconRipplesSharpFilled as default } +export default IconRipplesSharpFilled diff --git a/src/IconRoadOutlined.tsx b/src/IconRoadOutlined.tsx index 24cf1d40e..d1aad7c3a 100644 --- a/src/IconRoadOutlined.tsx +++ b/src/IconRoadOutlined.tsx @@ -8,4 +8,4 @@ const IconRoadOutlined: React.FC = ({ ...props }) => ( ) -export { IconRoadOutlined as default } +export default IconRoadOutlined diff --git a/src/IconRoadOutlinedFilled.tsx b/src/IconRoadOutlinedFilled.tsx index 034e46157..e7a55877b 100644 --- a/src/IconRoadOutlinedFilled.tsx +++ b/src/IconRoadOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconRoadOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconRoadOutlinedFilled as default } +export default IconRoadOutlinedFilled diff --git a/src/IconRoadRounded.tsx b/src/IconRoadRounded.tsx index f06bab5d5..1e618bf95 100644 --- a/src/IconRoadRounded.tsx +++ b/src/IconRoadRounded.tsx @@ -8,4 +8,4 @@ const IconRoadRounded: React.FC = ({ ...props }) => ( ) -export { IconRoadRounded as default } +export default IconRoadRounded diff --git a/src/IconRoadRoundedFilled.tsx b/src/IconRoadRoundedFilled.tsx index 1a594c5f2..6f0e86e4e 100644 --- a/src/IconRoadRoundedFilled.tsx +++ b/src/IconRoadRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconRoadRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconRoadRoundedFilled as default } +export default IconRoadRoundedFilled diff --git a/src/IconRoadSharp.tsx b/src/IconRoadSharp.tsx index 1c99e5e23..c1043128d 100644 --- a/src/IconRoadSharp.tsx +++ b/src/IconRoadSharp.tsx @@ -8,4 +8,4 @@ const IconRoadSharp: React.FC = ({ ...props }) => ( ) -export { IconRoadSharp as default } +export default IconRoadSharp diff --git a/src/IconRoadSharpFilled.tsx b/src/IconRoadSharpFilled.tsx index 042334cf9..3b5e8d3b7 100644 --- a/src/IconRoadSharpFilled.tsx +++ b/src/IconRoadSharpFilled.tsx @@ -8,4 +8,4 @@ const IconRoadSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconRoadSharpFilled as default } +export default IconRoadSharpFilled diff --git a/src/IconRobot2Outlined.tsx b/src/IconRobot2Outlined.tsx index 1157542da..2808198da 100644 --- a/src/IconRobot2Outlined.tsx +++ b/src/IconRobot2Outlined.tsx @@ -8,4 +8,4 @@ const IconRobot2Outlined: React.FC = ({ ...props }) => ( ) -export { IconRobot2Outlined as default } +export default IconRobot2Outlined diff --git a/src/IconRobot2OutlinedFilled.tsx b/src/IconRobot2OutlinedFilled.tsx index e9ff1f03f..8c6d4a6a7 100644 --- a/src/IconRobot2OutlinedFilled.tsx +++ b/src/IconRobot2OutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconRobot2OutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconRobot2OutlinedFilled as default } +export default IconRobot2OutlinedFilled diff --git a/src/IconRobot2Rounded.tsx b/src/IconRobot2Rounded.tsx index 3a3137634..24b53b0a8 100644 --- a/src/IconRobot2Rounded.tsx +++ b/src/IconRobot2Rounded.tsx @@ -8,4 +8,4 @@ const IconRobot2Rounded: React.FC = ({ ...props }) => ( ) -export { IconRobot2Rounded as default } +export default IconRobot2Rounded diff --git a/src/IconRobot2RoundedFilled.tsx b/src/IconRobot2RoundedFilled.tsx index 44ce357f3..7fa88af28 100644 --- a/src/IconRobot2RoundedFilled.tsx +++ b/src/IconRobot2RoundedFilled.tsx @@ -8,4 +8,4 @@ const IconRobot2RoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconRobot2RoundedFilled as default } +export default IconRobot2RoundedFilled diff --git a/src/IconRobot2Sharp.tsx b/src/IconRobot2Sharp.tsx index ef2105fc8..f1128b2d2 100644 --- a/src/IconRobot2Sharp.tsx +++ b/src/IconRobot2Sharp.tsx @@ -8,4 +8,4 @@ const IconRobot2Sharp: React.FC = ({ ...props }) => ( ) -export { IconRobot2Sharp as default } +export default IconRobot2Sharp diff --git a/src/IconRobot2SharpFilled.tsx b/src/IconRobot2SharpFilled.tsx index 2edb9d272..67a71ec03 100644 --- a/src/IconRobot2SharpFilled.tsx +++ b/src/IconRobot2SharpFilled.tsx @@ -8,4 +8,4 @@ const IconRobot2SharpFilled: React.FC = ({ ...props }) => ( ) -export { IconRobot2SharpFilled as default } +export default IconRobot2SharpFilled diff --git a/src/IconRobotOutlined.tsx b/src/IconRobotOutlined.tsx index 623512740..afa22e93f 100644 --- a/src/IconRobotOutlined.tsx +++ b/src/IconRobotOutlined.tsx @@ -8,4 +8,4 @@ const IconRobotOutlined: React.FC = ({ ...props }) => ( ) -export { IconRobotOutlined as default } +export default IconRobotOutlined diff --git a/src/IconRobotOutlinedFilled.tsx b/src/IconRobotOutlinedFilled.tsx index 241be08de..a7c6cafd1 100644 --- a/src/IconRobotOutlinedFilled.tsx +++ b/src/IconRobotOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconRobotOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconRobotOutlinedFilled as default } +export default IconRobotOutlinedFilled diff --git a/src/IconRobotRounded.tsx b/src/IconRobotRounded.tsx index 5c5d137ed..3e2511f7a 100644 --- a/src/IconRobotRounded.tsx +++ b/src/IconRobotRounded.tsx @@ -8,4 +8,4 @@ const IconRobotRounded: React.FC = ({ ...props }) => ( ) -export { IconRobotRounded as default } +export default IconRobotRounded diff --git a/src/IconRobotRoundedFilled.tsx b/src/IconRobotRoundedFilled.tsx index 050b218b1..142b28eea 100644 --- a/src/IconRobotRoundedFilled.tsx +++ b/src/IconRobotRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconRobotRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconRobotRoundedFilled as default } +export default IconRobotRoundedFilled diff --git a/src/IconRobotSharp.tsx b/src/IconRobotSharp.tsx index 425a186ef..b2e9e2878 100644 --- a/src/IconRobotSharp.tsx +++ b/src/IconRobotSharp.tsx @@ -8,4 +8,4 @@ const IconRobotSharp: React.FC = ({ ...props }) => ( ) -export { IconRobotSharp as default } +export default IconRobotSharp diff --git a/src/IconRobotSharpFilled.tsx b/src/IconRobotSharpFilled.tsx index 9f328e50a..3da1ab021 100644 --- a/src/IconRobotSharpFilled.tsx +++ b/src/IconRobotSharpFilled.tsx @@ -8,4 +8,4 @@ const IconRobotSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconRobotSharpFilled as default } +export default IconRobotSharpFilled diff --git a/src/IconRocketLaunchOutlined.tsx b/src/IconRocketLaunchOutlined.tsx index cc7c63a82..bb16acaeb 100644 --- a/src/IconRocketLaunchOutlined.tsx +++ b/src/IconRocketLaunchOutlined.tsx @@ -8,4 +8,4 @@ const IconRocketLaunchOutlined: React.FC = ({ ...props }) => ( ) -export { IconRocketLaunchOutlined as default } +export default IconRocketLaunchOutlined diff --git a/src/IconRocketLaunchOutlinedFilled.tsx b/src/IconRocketLaunchOutlinedFilled.tsx index 37f8ffc12..9815f3d21 100644 --- a/src/IconRocketLaunchOutlinedFilled.tsx +++ b/src/IconRocketLaunchOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconRocketLaunchOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconRocketLaunchOutlinedFilled as default } +export default IconRocketLaunchOutlinedFilled diff --git a/src/IconRocketLaunchRounded.tsx b/src/IconRocketLaunchRounded.tsx index e0999ccd7..1b9d8f7cf 100644 --- a/src/IconRocketLaunchRounded.tsx +++ b/src/IconRocketLaunchRounded.tsx @@ -8,4 +8,4 @@ const IconRocketLaunchRounded: React.FC = ({ ...props }) => ( ) -export { IconRocketLaunchRounded as default } +export default IconRocketLaunchRounded diff --git a/src/IconRocketLaunchRoundedFilled.tsx b/src/IconRocketLaunchRoundedFilled.tsx index 2f457265c..8b06081fa 100644 --- a/src/IconRocketLaunchRoundedFilled.tsx +++ b/src/IconRocketLaunchRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconRocketLaunchRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconRocketLaunchRoundedFilled as default } +export default IconRocketLaunchRoundedFilled diff --git a/src/IconRocketLaunchSharp.tsx b/src/IconRocketLaunchSharp.tsx index 2325f4a2a..ebecfa51d 100644 --- a/src/IconRocketLaunchSharp.tsx +++ b/src/IconRocketLaunchSharp.tsx @@ -8,4 +8,4 @@ const IconRocketLaunchSharp: React.FC = ({ ...props }) => ( ) -export { IconRocketLaunchSharp as default } +export default IconRocketLaunchSharp diff --git a/src/IconRocketLaunchSharpFilled.tsx b/src/IconRocketLaunchSharpFilled.tsx index 0f8ff4b95..69a6dcb36 100644 --- a/src/IconRocketLaunchSharpFilled.tsx +++ b/src/IconRocketLaunchSharpFilled.tsx @@ -8,4 +8,4 @@ const IconRocketLaunchSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconRocketLaunchSharpFilled as default } +export default IconRocketLaunchSharpFilled diff --git a/src/IconRocketOutlined.tsx b/src/IconRocketOutlined.tsx index 0dc277746..03a56a9c4 100644 --- a/src/IconRocketOutlined.tsx +++ b/src/IconRocketOutlined.tsx @@ -8,4 +8,4 @@ const IconRocketOutlined: React.FC = ({ ...props }) => ( ) -export { IconRocketOutlined as default } +export default IconRocketOutlined diff --git a/src/IconRocketOutlinedFilled.tsx b/src/IconRocketOutlinedFilled.tsx index bdfafbb63..bac0f6d84 100644 --- a/src/IconRocketOutlinedFilled.tsx +++ b/src/IconRocketOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconRocketOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconRocketOutlinedFilled as default } +export default IconRocketOutlinedFilled diff --git a/src/IconRocketRounded.tsx b/src/IconRocketRounded.tsx index 3c6e1b44d..6d704925a 100644 --- a/src/IconRocketRounded.tsx +++ b/src/IconRocketRounded.tsx @@ -8,4 +8,4 @@ const IconRocketRounded: React.FC = ({ ...props }) => ( ) -export { IconRocketRounded as default } +export default IconRocketRounded diff --git a/src/IconRocketRoundedFilled.tsx b/src/IconRocketRoundedFilled.tsx index 7238a1bae..0e79a9056 100644 --- a/src/IconRocketRoundedFilled.tsx +++ b/src/IconRocketRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconRocketRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconRocketRoundedFilled as default } +export default IconRocketRoundedFilled diff --git a/src/IconRocketSharp.tsx b/src/IconRocketSharp.tsx index 40521c346..64ba0d0cd 100644 --- a/src/IconRocketSharp.tsx +++ b/src/IconRocketSharp.tsx @@ -8,4 +8,4 @@ const IconRocketSharp: React.FC = ({ ...props }) => ( ) -export { IconRocketSharp as default } +export default IconRocketSharp diff --git a/src/IconRocketSharpFilled.tsx b/src/IconRocketSharpFilled.tsx index 92a7f3c7c..f427c8a96 100644 --- a/src/IconRocketSharpFilled.tsx +++ b/src/IconRocketSharpFilled.tsx @@ -8,4 +8,4 @@ const IconRocketSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconRocketSharpFilled as default } +export default IconRocketSharpFilled diff --git a/src/IconRollerShadesClosedOutlined.tsx b/src/IconRollerShadesClosedOutlined.tsx index 0e394474f..bfb737efd 100644 --- a/src/IconRollerShadesClosedOutlined.tsx +++ b/src/IconRollerShadesClosedOutlined.tsx @@ -8,4 +8,4 @@ const IconRollerShadesClosedOutlined: React.FC = ({ ...props }) => ( ) -export { IconRollerShadesClosedOutlined as default } +export default IconRollerShadesClosedOutlined diff --git a/src/IconRollerShadesClosedOutlinedFilled.tsx b/src/IconRollerShadesClosedOutlinedFilled.tsx index 5a0dbf10e..39e036193 100644 --- a/src/IconRollerShadesClosedOutlinedFilled.tsx +++ b/src/IconRollerShadesClosedOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconRollerShadesClosedOutlinedFilled: React.FC = ({ ) -export { IconRollerShadesClosedOutlinedFilled as default } +export default IconRollerShadesClosedOutlinedFilled diff --git a/src/IconRollerShadesClosedRounded.tsx b/src/IconRollerShadesClosedRounded.tsx index fefd6617a..0bc50cce4 100644 --- a/src/IconRollerShadesClosedRounded.tsx +++ b/src/IconRollerShadesClosedRounded.tsx @@ -8,4 +8,4 @@ const IconRollerShadesClosedRounded: React.FC = ({ ...props }) => ( ) -export { IconRollerShadesClosedRounded as default } +export default IconRollerShadesClosedRounded diff --git a/src/IconRollerShadesClosedRoundedFilled.tsx b/src/IconRollerShadesClosedRoundedFilled.tsx index 22be4fbeb..a28e4c411 100644 --- a/src/IconRollerShadesClosedRoundedFilled.tsx +++ b/src/IconRollerShadesClosedRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconRollerShadesClosedRoundedFilled: React.FC = ({ ) -export { IconRollerShadesClosedRoundedFilled as default } +export default IconRollerShadesClosedRoundedFilled diff --git a/src/IconRollerShadesClosedSharp.tsx b/src/IconRollerShadesClosedSharp.tsx index 3b88b1189..6de6eb1b9 100644 --- a/src/IconRollerShadesClosedSharp.tsx +++ b/src/IconRollerShadesClosedSharp.tsx @@ -8,4 +8,4 @@ const IconRollerShadesClosedSharp: React.FC = ({ ...props }) => ( ) -export { IconRollerShadesClosedSharp as default } +export default IconRollerShadesClosedSharp diff --git a/src/IconRollerShadesClosedSharpFilled.tsx b/src/IconRollerShadesClosedSharpFilled.tsx index 2f57c65c4..445ae0b61 100644 --- a/src/IconRollerShadesClosedSharpFilled.tsx +++ b/src/IconRollerShadesClosedSharpFilled.tsx @@ -10,4 +10,4 @@ const IconRollerShadesClosedSharpFilled: React.FC = ({ ) -export { IconRollerShadesClosedSharpFilled as default } +export default IconRollerShadesClosedSharpFilled diff --git a/src/IconRollerShadesOutlined.tsx b/src/IconRollerShadesOutlined.tsx index 6656171ab..6101cb122 100644 --- a/src/IconRollerShadesOutlined.tsx +++ b/src/IconRollerShadesOutlined.tsx @@ -8,4 +8,4 @@ const IconRollerShadesOutlined: React.FC = ({ ...props }) => ( ) -export { IconRollerShadesOutlined as default } +export default IconRollerShadesOutlined diff --git a/src/IconRollerShadesOutlinedFilled.tsx b/src/IconRollerShadesOutlinedFilled.tsx index d10c68d38..0b0143a4d 100644 --- a/src/IconRollerShadesOutlinedFilled.tsx +++ b/src/IconRollerShadesOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconRollerShadesOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconRollerShadesOutlinedFilled as default } +export default IconRollerShadesOutlinedFilled diff --git a/src/IconRollerShadesRounded.tsx b/src/IconRollerShadesRounded.tsx index cb8e904c9..79cef6ae0 100644 --- a/src/IconRollerShadesRounded.tsx +++ b/src/IconRollerShadesRounded.tsx @@ -8,4 +8,4 @@ const IconRollerShadesRounded: React.FC = ({ ...props }) => ( ) -export { IconRollerShadesRounded as default } +export default IconRollerShadesRounded diff --git a/src/IconRollerShadesRoundedFilled.tsx b/src/IconRollerShadesRoundedFilled.tsx index 8457f1288..394ba6def 100644 --- a/src/IconRollerShadesRoundedFilled.tsx +++ b/src/IconRollerShadesRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconRollerShadesRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconRollerShadesRoundedFilled as default } +export default IconRollerShadesRoundedFilled diff --git a/src/IconRollerShadesSharp.tsx b/src/IconRollerShadesSharp.tsx index 68623d507..5c3846334 100644 --- a/src/IconRollerShadesSharp.tsx +++ b/src/IconRollerShadesSharp.tsx @@ -8,4 +8,4 @@ const IconRollerShadesSharp: React.FC = ({ ...props }) => ( ) -export { IconRollerShadesSharp as default } +export default IconRollerShadesSharp diff --git a/src/IconRollerShadesSharpFilled.tsx b/src/IconRollerShadesSharpFilled.tsx index 60c042765..d656c36e3 100644 --- a/src/IconRollerShadesSharpFilled.tsx +++ b/src/IconRollerShadesSharpFilled.tsx @@ -8,4 +8,4 @@ const IconRollerShadesSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconRollerShadesSharpFilled as default } +export default IconRollerShadesSharpFilled diff --git a/src/IconRollerSkatingOutlined.tsx b/src/IconRollerSkatingOutlined.tsx index 107045939..abe25dbcc 100644 --- a/src/IconRollerSkatingOutlined.tsx +++ b/src/IconRollerSkatingOutlined.tsx @@ -8,4 +8,4 @@ const IconRollerSkatingOutlined: React.FC = ({ ...props }) => ( ) -export { IconRollerSkatingOutlined as default } +export default IconRollerSkatingOutlined diff --git a/src/IconRollerSkatingOutlinedFilled.tsx b/src/IconRollerSkatingOutlinedFilled.tsx index 13f95d011..a6104fb04 100644 --- a/src/IconRollerSkatingOutlinedFilled.tsx +++ b/src/IconRollerSkatingOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconRollerSkatingOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconRollerSkatingOutlinedFilled as default } +export default IconRollerSkatingOutlinedFilled diff --git a/src/IconRollerSkatingRounded.tsx b/src/IconRollerSkatingRounded.tsx index c39f44048..80d8544e3 100644 --- a/src/IconRollerSkatingRounded.tsx +++ b/src/IconRollerSkatingRounded.tsx @@ -8,4 +8,4 @@ const IconRollerSkatingRounded: React.FC = ({ ...props }) => ( ) -export { IconRollerSkatingRounded as default } +export default IconRollerSkatingRounded diff --git a/src/IconRollerSkatingRoundedFilled.tsx b/src/IconRollerSkatingRoundedFilled.tsx index 4f8b812dd..709252080 100644 --- a/src/IconRollerSkatingRoundedFilled.tsx +++ b/src/IconRollerSkatingRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconRollerSkatingRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconRollerSkatingRoundedFilled as default } +export default IconRollerSkatingRoundedFilled diff --git a/src/IconRollerSkatingSharp.tsx b/src/IconRollerSkatingSharp.tsx index b052b3824..00c997ae2 100644 --- a/src/IconRollerSkatingSharp.tsx +++ b/src/IconRollerSkatingSharp.tsx @@ -8,4 +8,4 @@ const IconRollerSkatingSharp: React.FC = ({ ...props }) => ( ) -export { IconRollerSkatingSharp as default } +export default IconRollerSkatingSharp diff --git a/src/IconRollerSkatingSharpFilled.tsx b/src/IconRollerSkatingSharpFilled.tsx index e4f2db3ed..2b8a294cc 100644 --- a/src/IconRollerSkatingSharpFilled.tsx +++ b/src/IconRollerSkatingSharpFilled.tsx @@ -8,4 +8,4 @@ const IconRollerSkatingSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconRollerSkatingSharpFilled as default } +export default IconRollerSkatingSharpFilled diff --git a/src/IconRoofingOutlined.tsx b/src/IconRoofingOutlined.tsx index d0bbe9b1e..c43f3c36c 100644 --- a/src/IconRoofingOutlined.tsx +++ b/src/IconRoofingOutlined.tsx @@ -8,4 +8,4 @@ const IconRoofingOutlined: React.FC = ({ ...props }) => ( ) -export { IconRoofingOutlined as default } +export default IconRoofingOutlined diff --git a/src/IconRoofingOutlinedFilled.tsx b/src/IconRoofingOutlinedFilled.tsx index b0b35c122..8fde01dfc 100644 --- a/src/IconRoofingOutlinedFilled.tsx +++ b/src/IconRoofingOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconRoofingOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconRoofingOutlinedFilled as default } +export default IconRoofingOutlinedFilled diff --git a/src/IconRoofingRounded.tsx b/src/IconRoofingRounded.tsx index 01f18c1db..f2ebcac7a 100644 --- a/src/IconRoofingRounded.tsx +++ b/src/IconRoofingRounded.tsx @@ -8,4 +8,4 @@ const IconRoofingRounded: React.FC = ({ ...props }) => ( ) -export { IconRoofingRounded as default } +export default IconRoofingRounded diff --git a/src/IconRoofingRoundedFilled.tsx b/src/IconRoofingRoundedFilled.tsx index 2b66b28cc..15a315323 100644 --- a/src/IconRoofingRoundedFilled.tsx +++ b/src/IconRoofingRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconRoofingRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconRoofingRoundedFilled as default } +export default IconRoofingRoundedFilled diff --git a/src/IconRoofingSharp.tsx b/src/IconRoofingSharp.tsx index 7fb4ed272..8c6f05c59 100644 --- a/src/IconRoofingSharp.tsx +++ b/src/IconRoofingSharp.tsx @@ -8,4 +8,4 @@ const IconRoofingSharp: React.FC = ({ ...props }) => ( ) -export { IconRoofingSharp as default } +export default IconRoofingSharp diff --git a/src/IconRoofingSharpFilled.tsx b/src/IconRoofingSharpFilled.tsx index 410e7abda..d82bb0c42 100644 --- a/src/IconRoofingSharpFilled.tsx +++ b/src/IconRoofingSharpFilled.tsx @@ -8,4 +8,4 @@ const IconRoofingSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconRoofingSharpFilled as default } +export default IconRoofingSharpFilled diff --git a/src/IconRoomPreferencesOutlined.tsx b/src/IconRoomPreferencesOutlined.tsx index 38ccaa75a..c882773b7 100644 --- a/src/IconRoomPreferencesOutlined.tsx +++ b/src/IconRoomPreferencesOutlined.tsx @@ -8,4 +8,4 @@ const IconRoomPreferencesOutlined: React.FC = ({ ...props }) => ( ) -export { IconRoomPreferencesOutlined as default } +export default IconRoomPreferencesOutlined diff --git a/src/IconRoomPreferencesOutlinedFilled.tsx b/src/IconRoomPreferencesOutlinedFilled.tsx index 37c7bb82e..37df077ee 100644 --- a/src/IconRoomPreferencesOutlinedFilled.tsx +++ b/src/IconRoomPreferencesOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconRoomPreferencesOutlinedFilled: React.FC = ({ ) -export { IconRoomPreferencesOutlinedFilled as default } +export default IconRoomPreferencesOutlinedFilled diff --git a/src/IconRoomPreferencesRounded.tsx b/src/IconRoomPreferencesRounded.tsx index 1571738b4..65f8140c3 100644 --- a/src/IconRoomPreferencesRounded.tsx +++ b/src/IconRoomPreferencesRounded.tsx @@ -8,4 +8,4 @@ const IconRoomPreferencesRounded: React.FC = ({ ...props }) => ( ) -export { IconRoomPreferencesRounded as default } +export default IconRoomPreferencesRounded diff --git a/src/IconRoomPreferencesRoundedFilled.tsx b/src/IconRoomPreferencesRoundedFilled.tsx index 6fa5c3a63..1731ccecf 100644 --- a/src/IconRoomPreferencesRoundedFilled.tsx +++ b/src/IconRoomPreferencesRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconRoomPreferencesRoundedFilled: React.FC = ({ ) -export { IconRoomPreferencesRoundedFilled as default } +export default IconRoomPreferencesRoundedFilled diff --git a/src/IconRoomPreferencesSharp.tsx b/src/IconRoomPreferencesSharp.tsx index a653ab619..40fb56252 100644 --- a/src/IconRoomPreferencesSharp.tsx +++ b/src/IconRoomPreferencesSharp.tsx @@ -8,4 +8,4 @@ const IconRoomPreferencesSharp: React.FC = ({ ...props }) => ( ) -export { IconRoomPreferencesSharp as default } +export default IconRoomPreferencesSharp diff --git a/src/IconRoomPreferencesSharpFilled.tsx b/src/IconRoomPreferencesSharpFilled.tsx index 8e9270cf1..e88c6beb5 100644 --- a/src/IconRoomPreferencesSharpFilled.tsx +++ b/src/IconRoomPreferencesSharpFilled.tsx @@ -8,4 +8,4 @@ const IconRoomPreferencesSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconRoomPreferencesSharpFilled as default } +export default IconRoomPreferencesSharpFilled diff --git a/src/IconRoomServiceOutlined.tsx b/src/IconRoomServiceOutlined.tsx index 37cbfd878..622ed83e4 100644 --- a/src/IconRoomServiceOutlined.tsx +++ b/src/IconRoomServiceOutlined.tsx @@ -8,4 +8,4 @@ const IconRoomServiceOutlined: React.FC = ({ ...props }) => ( ) -export { IconRoomServiceOutlined as default } +export default IconRoomServiceOutlined diff --git a/src/IconRoomServiceOutlinedFilled.tsx b/src/IconRoomServiceOutlinedFilled.tsx index acfee1d80..9d542c96a 100644 --- a/src/IconRoomServiceOutlinedFilled.tsx +++ b/src/IconRoomServiceOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconRoomServiceOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconRoomServiceOutlinedFilled as default } +export default IconRoomServiceOutlinedFilled diff --git a/src/IconRoomServiceRounded.tsx b/src/IconRoomServiceRounded.tsx index c7c79d40e..e3d93cf58 100644 --- a/src/IconRoomServiceRounded.tsx +++ b/src/IconRoomServiceRounded.tsx @@ -8,4 +8,4 @@ const IconRoomServiceRounded: React.FC = ({ ...props }) => ( ) -export { IconRoomServiceRounded as default } +export default IconRoomServiceRounded diff --git a/src/IconRoomServiceRoundedFilled.tsx b/src/IconRoomServiceRoundedFilled.tsx index e33d743c0..f709c2379 100644 --- a/src/IconRoomServiceRoundedFilled.tsx +++ b/src/IconRoomServiceRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconRoomServiceRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconRoomServiceRoundedFilled as default } +export default IconRoomServiceRoundedFilled diff --git a/src/IconRoomServiceSharp.tsx b/src/IconRoomServiceSharp.tsx index 430dc7fbd..1af5d7149 100644 --- a/src/IconRoomServiceSharp.tsx +++ b/src/IconRoomServiceSharp.tsx @@ -8,4 +8,4 @@ const IconRoomServiceSharp: React.FC = ({ ...props }) => ( ) -export { IconRoomServiceSharp as default } +export default IconRoomServiceSharp diff --git a/src/IconRoomServiceSharpFilled.tsx b/src/IconRoomServiceSharpFilled.tsx index 63a20945e..e268d5eff 100644 --- a/src/IconRoomServiceSharpFilled.tsx +++ b/src/IconRoomServiceSharpFilled.tsx @@ -8,4 +8,4 @@ const IconRoomServiceSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconRoomServiceSharpFilled as default } +export default IconRoomServiceSharpFilled diff --git a/src/IconRotate90DegreesCcwOutlined.tsx b/src/IconRotate90DegreesCcwOutlined.tsx index 1735a664b..43a11bc48 100644 --- a/src/IconRotate90DegreesCcwOutlined.tsx +++ b/src/IconRotate90DegreesCcwOutlined.tsx @@ -8,4 +8,4 @@ const IconRotate90DegreesCcwOutlined: React.FC = ({ ...props }) => ( ) -export { IconRotate90DegreesCcwOutlined as default } +export default IconRotate90DegreesCcwOutlined diff --git a/src/IconRotate90DegreesCcwOutlinedFilled.tsx b/src/IconRotate90DegreesCcwOutlinedFilled.tsx index 79a9cf490..879c0e43a 100644 --- a/src/IconRotate90DegreesCcwOutlinedFilled.tsx +++ b/src/IconRotate90DegreesCcwOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconRotate90DegreesCcwOutlinedFilled: React.FC = ({ ) -export { IconRotate90DegreesCcwOutlinedFilled as default } +export default IconRotate90DegreesCcwOutlinedFilled diff --git a/src/IconRotate90DegreesCcwRounded.tsx b/src/IconRotate90DegreesCcwRounded.tsx index 55bf2c375..8fde7e773 100644 --- a/src/IconRotate90DegreesCcwRounded.tsx +++ b/src/IconRotate90DegreesCcwRounded.tsx @@ -8,4 +8,4 @@ const IconRotate90DegreesCcwRounded: React.FC = ({ ...props }) => ( ) -export { IconRotate90DegreesCcwRounded as default } +export default IconRotate90DegreesCcwRounded diff --git a/src/IconRotate90DegreesCcwRoundedFilled.tsx b/src/IconRotate90DegreesCcwRoundedFilled.tsx index ae2e43dd4..f92ed914f 100644 --- a/src/IconRotate90DegreesCcwRoundedFilled.tsx +++ b/src/IconRotate90DegreesCcwRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconRotate90DegreesCcwRoundedFilled: React.FC = ({ ) -export { IconRotate90DegreesCcwRoundedFilled as default } +export default IconRotate90DegreesCcwRoundedFilled diff --git a/src/IconRotate90DegreesCcwSharp.tsx b/src/IconRotate90DegreesCcwSharp.tsx index 376203773..58e960ab5 100644 --- a/src/IconRotate90DegreesCcwSharp.tsx +++ b/src/IconRotate90DegreesCcwSharp.tsx @@ -8,4 +8,4 @@ const IconRotate90DegreesCcwSharp: React.FC = ({ ...props }) => ( ) -export { IconRotate90DegreesCcwSharp as default } +export default IconRotate90DegreesCcwSharp diff --git a/src/IconRotate90DegreesCcwSharpFilled.tsx b/src/IconRotate90DegreesCcwSharpFilled.tsx index 7f411488f..cd1b589b2 100644 --- a/src/IconRotate90DegreesCcwSharpFilled.tsx +++ b/src/IconRotate90DegreesCcwSharpFilled.tsx @@ -10,4 +10,4 @@ const IconRotate90DegreesCcwSharpFilled: React.FC = ({ ) -export { IconRotate90DegreesCcwSharpFilled as default } +export default IconRotate90DegreesCcwSharpFilled diff --git a/src/IconRotate90DegreesCwOutlined.tsx b/src/IconRotate90DegreesCwOutlined.tsx index de156dff0..783bf2166 100644 --- a/src/IconRotate90DegreesCwOutlined.tsx +++ b/src/IconRotate90DegreesCwOutlined.tsx @@ -8,4 +8,4 @@ const IconRotate90DegreesCwOutlined: React.FC = ({ ...props }) => ( ) -export { IconRotate90DegreesCwOutlined as default } +export default IconRotate90DegreesCwOutlined diff --git a/src/IconRotate90DegreesCwOutlinedFilled.tsx b/src/IconRotate90DegreesCwOutlinedFilled.tsx index a28f98419..284647965 100644 --- a/src/IconRotate90DegreesCwOutlinedFilled.tsx +++ b/src/IconRotate90DegreesCwOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconRotate90DegreesCwOutlinedFilled: React.FC = ({ ) -export { IconRotate90DegreesCwOutlinedFilled as default } +export default IconRotate90DegreesCwOutlinedFilled diff --git a/src/IconRotate90DegreesCwRounded.tsx b/src/IconRotate90DegreesCwRounded.tsx index df9a874f5..f823d77c9 100644 --- a/src/IconRotate90DegreesCwRounded.tsx +++ b/src/IconRotate90DegreesCwRounded.tsx @@ -8,4 +8,4 @@ const IconRotate90DegreesCwRounded: React.FC = ({ ...props }) => ( ) -export { IconRotate90DegreesCwRounded as default } +export default IconRotate90DegreesCwRounded diff --git a/src/IconRotate90DegreesCwRoundedFilled.tsx b/src/IconRotate90DegreesCwRoundedFilled.tsx index 5d88b3b9b..90fa9aeab 100644 --- a/src/IconRotate90DegreesCwRoundedFilled.tsx +++ b/src/IconRotate90DegreesCwRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconRotate90DegreesCwRoundedFilled: React.FC = ({ ) -export { IconRotate90DegreesCwRoundedFilled as default } +export default IconRotate90DegreesCwRoundedFilled diff --git a/src/IconRotate90DegreesCwSharp.tsx b/src/IconRotate90DegreesCwSharp.tsx index fe1d7fa10..069cdd084 100644 --- a/src/IconRotate90DegreesCwSharp.tsx +++ b/src/IconRotate90DegreesCwSharp.tsx @@ -8,4 +8,4 @@ const IconRotate90DegreesCwSharp: React.FC = ({ ...props }) => ( ) -export { IconRotate90DegreesCwSharp as default } +export default IconRotate90DegreesCwSharp diff --git a/src/IconRotate90DegreesCwSharpFilled.tsx b/src/IconRotate90DegreesCwSharpFilled.tsx index d19423d00..cb0b2ad79 100644 --- a/src/IconRotate90DegreesCwSharpFilled.tsx +++ b/src/IconRotate90DegreesCwSharpFilled.tsx @@ -10,4 +10,4 @@ const IconRotate90DegreesCwSharpFilled: React.FC = ({ ) -export { IconRotate90DegreesCwSharpFilled as default } +export default IconRotate90DegreesCwSharpFilled diff --git a/src/IconRotateAutoOutlined.tsx b/src/IconRotateAutoOutlined.tsx index 6de34915f..25942f9f0 100644 --- a/src/IconRotateAutoOutlined.tsx +++ b/src/IconRotateAutoOutlined.tsx @@ -8,4 +8,4 @@ const IconRotateAutoOutlined: React.FC = ({ ...props }) => ( ) -export { IconRotateAutoOutlined as default } +export default IconRotateAutoOutlined diff --git a/src/IconRotateAutoOutlinedFilled.tsx b/src/IconRotateAutoOutlinedFilled.tsx index 2d69d0e79..f8b22025e 100644 --- a/src/IconRotateAutoOutlinedFilled.tsx +++ b/src/IconRotateAutoOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconRotateAutoOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconRotateAutoOutlinedFilled as default } +export default IconRotateAutoOutlinedFilled diff --git a/src/IconRotateAutoRounded.tsx b/src/IconRotateAutoRounded.tsx index 27225113a..b8ac25301 100644 --- a/src/IconRotateAutoRounded.tsx +++ b/src/IconRotateAutoRounded.tsx @@ -8,4 +8,4 @@ const IconRotateAutoRounded: React.FC = ({ ...props }) => ( ) -export { IconRotateAutoRounded as default } +export default IconRotateAutoRounded diff --git a/src/IconRotateAutoRoundedFilled.tsx b/src/IconRotateAutoRoundedFilled.tsx index acca8fa40..3dcb8e37a 100644 --- a/src/IconRotateAutoRoundedFilled.tsx +++ b/src/IconRotateAutoRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconRotateAutoRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconRotateAutoRoundedFilled as default } +export default IconRotateAutoRoundedFilled diff --git a/src/IconRotateAutoSharp.tsx b/src/IconRotateAutoSharp.tsx index d4efdcc31..12803d751 100644 --- a/src/IconRotateAutoSharp.tsx +++ b/src/IconRotateAutoSharp.tsx @@ -8,4 +8,4 @@ const IconRotateAutoSharp: React.FC = ({ ...props }) => ( ) -export { IconRotateAutoSharp as default } +export default IconRotateAutoSharp diff --git a/src/IconRotateAutoSharpFilled.tsx b/src/IconRotateAutoSharpFilled.tsx index bcb64aac9..5113a9062 100644 --- a/src/IconRotateAutoSharpFilled.tsx +++ b/src/IconRotateAutoSharpFilled.tsx @@ -8,4 +8,4 @@ const IconRotateAutoSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconRotateAutoSharpFilled as default } +export default IconRotateAutoSharpFilled diff --git a/src/IconRotateLeftOutlined.tsx b/src/IconRotateLeftOutlined.tsx index a35f08204..34d5f7c7b 100644 --- a/src/IconRotateLeftOutlined.tsx +++ b/src/IconRotateLeftOutlined.tsx @@ -8,4 +8,4 @@ const IconRotateLeftOutlined: React.FC = ({ ...props }) => ( ) -export { IconRotateLeftOutlined as default } +export default IconRotateLeftOutlined diff --git a/src/IconRotateLeftOutlinedFilled.tsx b/src/IconRotateLeftOutlinedFilled.tsx index e5a0ecf12..68b293fd2 100644 --- a/src/IconRotateLeftOutlinedFilled.tsx +++ b/src/IconRotateLeftOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconRotateLeftOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconRotateLeftOutlinedFilled as default } +export default IconRotateLeftOutlinedFilled diff --git a/src/IconRotateLeftRounded.tsx b/src/IconRotateLeftRounded.tsx index 5e878822f..bec8da5cb 100644 --- a/src/IconRotateLeftRounded.tsx +++ b/src/IconRotateLeftRounded.tsx @@ -8,4 +8,4 @@ const IconRotateLeftRounded: React.FC = ({ ...props }) => ( ) -export { IconRotateLeftRounded as default } +export default IconRotateLeftRounded diff --git a/src/IconRotateLeftRoundedFilled.tsx b/src/IconRotateLeftRoundedFilled.tsx index 983786c5b..8482fcdf1 100644 --- a/src/IconRotateLeftRoundedFilled.tsx +++ b/src/IconRotateLeftRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconRotateLeftRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconRotateLeftRoundedFilled as default } +export default IconRotateLeftRoundedFilled diff --git a/src/IconRotateLeftSharp.tsx b/src/IconRotateLeftSharp.tsx index 3d2e6eaa9..d5ba5c5bf 100644 --- a/src/IconRotateLeftSharp.tsx +++ b/src/IconRotateLeftSharp.tsx @@ -8,4 +8,4 @@ const IconRotateLeftSharp: React.FC = ({ ...props }) => ( ) -export { IconRotateLeftSharp as default } +export default IconRotateLeftSharp diff --git a/src/IconRotateLeftSharpFilled.tsx b/src/IconRotateLeftSharpFilled.tsx index 3a8f02102..8cffc0b4a 100644 --- a/src/IconRotateLeftSharpFilled.tsx +++ b/src/IconRotateLeftSharpFilled.tsx @@ -8,4 +8,4 @@ const IconRotateLeftSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconRotateLeftSharpFilled as default } +export default IconRotateLeftSharpFilled diff --git a/src/IconRotateRightOutlined.tsx b/src/IconRotateRightOutlined.tsx index ab10ba5af..4e507ebfb 100644 --- a/src/IconRotateRightOutlined.tsx +++ b/src/IconRotateRightOutlined.tsx @@ -8,4 +8,4 @@ const IconRotateRightOutlined: React.FC = ({ ...props }) => ( ) -export { IconRotateRightOutlined as default } +export default IconRotateRightOutlined diff --git a/src/IconRotateRightOutlinedFilled.tsx b/src/IconRotateRightOutlinedFilled.tsx index 00e66567e..14db75082 100644 --- a/src/IconRotateRightOutlinedFilled.tsx +++ b/src/IconRotateRightOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconRotateRightOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconRotateRightOutlinedFilled as default } +export default IconRotateRightOutlinedFilled diff --git a/src/IconRotateRightRounded.tsx b/src/IconRotateRightRounded.tsx index e9b45a048..30b10db4e 100644 --- a/src/IconRotateRightRounded.tsx +++ b/src/IconRotateRightRounded.tsx @@ -8,4 +8,4 @@ const IconRotateRightRounded: React.FC = ({ ...props }) => ( ) -export { IconRotateRightRounded as default } +export default IconRotateRightRounded diff --git a/src/IconRotateRightRoundedFilled.tsx b/src/IconRotateRightRoundedFilled.tsx index 591a5f019..12bbddd1d 100644 --- a/src/IconRotateRightRoundedFilled.tsx +++ b/src/IconRotateRightRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconRotateRightRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconRotateRightRoundedFilled as default } +export default IconRotateRightRoundedFilled diff --git a/src/IconRotateRightSharp.tsx b/src/IconRotateRightSharp.tsx index 4592099c9..c56596c79 100644 --- a/src/IconRotateRightSharp.tsx +++ b/src/IconRotateRightSharp.tsx @@ -8,4 +8,4 @@ const IconRotateRightSharp: React.FC = ({ ...props }) => ( ) -export { IconRotateRightSharp as default } +export default IconRotateRightSharp diff --git a/src/IconRotateRightSharpFilled.tsx b/src/IconRotateRightSharpFilled.tsx index befba5cdf..d7fddfcb2 100644 --- a/src/IconRotateRightSharpFilled.tsx +++ b/src/IconRotateRightSharpFilled.tsx @@ -8,4 +8,4 @@ const IconRotateRightSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconRotateRightSharpFilled as default } +export default IconRotateRightSharpFilled diff --git a/src/IconRoundaboutLeftOutlined.tsx b/src/IconRoundaboutLeftOutlined.tsx index 6e5ffaf80..b09a33148 100644 --- a/src/IconRoundaboutLeftOutlined.tsx +++ b/src/IconRoundaboutLeftOutlined.tsx @@ -8,4 +8,4 @@ const IconRoundaboutLeftOutlined: React.FC = ({ ...props }) => ( ) -export { IconRoundaboutLeftOutlined as default } +export default IconRoundaboutLeftOutlined diff --git a/src/IconRoundaboutLeftOutlinedFilled.tsx b/src/IconRoundaboutLeftOutlinedFilled.tsx index ffc9604a5..d05d0cad5 100644 --- a/src/IconRoundaboutLeftOutlinedFilled.tsx +++ b/src/IconRoundaboutLeftOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconRoundaboutLeftOutlinedFilled: React.FC = ({ ) -export { IconRoundaboutLeftOutlinedFilled as default } +export default IconRoundaboutLeftOutlinedFilled diff --git a/src/IconRoundaboutLeftRounded.tsx b/src/IconRoundaboutLeftRounded.tsx index 93adf5795..33e3c522b 100644 --- a/src/IconRoundaboutLeftRounded.tsx +++ b/src/IconRoundaboutLeftRounded.tsx @@ -8,4 +8,4 @@ const IconRoundaboutLeftRounded: React.FC = ({ ...props }) => ( ) -export { IconRoundaboutLeftRounded as default } +export default IconRoundaboutLeftRounded diff --git a/src/IconRoundaboutLeftRoundedFilled.tsx b/src/IconRoundaboutLeftRoundedFilled.tsx index bb7d631e9..06714c770 100644 --- a/src/IconRoundaboutLeftRoundedFilled.tsx +++ b/src/IconRoundaboutLeftRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconRoundaboutLeftRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconRoundaboutLeftRoundedFilled as default } +export default IconRoundaboutLeftRoundedFilled diff --git a/src/IconRoundaboutLeftSharp.tsx b/src/IconRoundaboutLeftSharp.tsx index 5f6caaa49..5a5d0a354 100644 --- a/src/IconRoundaboutLeftSharp.tsx +++ b/src/IconRoundaboutLeftSharp.tsx @@ -8,4 +8,4 @@ const IconRoundaboutLeftSharp: React.FC = ({ ...props }) => ( ) -export { IconRoundaboutLeftSharp as default } +export default IconRoundaboutLeftSharp diff --git a/src/IconRoundaboutLeftSharpFilled.tsx b/src/IconRoundaboutLeftSharpFilled.tsx index 3e6cbcc4f..de8afc8ad 100644 --- a/src/IconRoundaboutLeftSharpFilled.tsx +++ b/src/IconRoundaboutLeftSharpFilled.tsx @@ -8,4 +8,4 @@ const IconRoundaboutLeftSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconRoundaboutLeftSharpFilled as default } +export default IconRoundaboutLeftSharpFilled diff --git a/src/IconRoundaboutRightOutlined.tsx b/src/IconRoundaboutRightOutlined.tsx index 3a6d4c559..53da5c61e 100644 --- a/src/IconRoundaboutRightOutlined.tsx +++ b/src/IconRoundaboutRightOutlined.tsx @@ -8,4 +8,4 @@ const IconRoundaboutRightOutlined: React.FC = ({ ...props }) => ( ) -export { IconRoundaboutRightOutlined as default } +export default IconRoundaboutRightOutlined diff --git a/src/IconRoundaboutRightOutlinedFilled.tsx b/src/IconRoundaboutRightOutlinedFilled.tsx index 61bc93867..84e1bbeb6 100644 --- a/src/IconRoundaboutRightOutlinedFilled.tsx +++ b/src/IconRoundaboutRightOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconRoundaboutRightOutlinedFilled: React.FC = ({ ) -export { IconRoundaboutRightOutlinedFilled as default } +export default IconRoundaboutRightOutlinedFilled diff --git a/src/IconRoundaboutRightRounded.tsx b/src/IconRoundaboutRightRounded.tsx index c7e6d92e5..f554a2bfd 100644 --- a/src/IconRoundaboutRightRounded.tsx +++ b/src/IconRoundaboutRightRounded.tsx @@ -8,4 +8,4 @@ const IconRoundaboutRightRounded: React.FC = ({ ...props }) => ( ) -export { IconRoundaboutRightRounded as default } +export default IconRoundaboutRightRounded diff --git a/src/IconRoundaboutRightRoundedFilled.tsx b/src/IconRoundaboutRightRoundedFilled.tsx index 870444690..0bd014968 100644 --- a/src/IconRoundaboutRightRoundedFilled.tsx +++ b/src/IconRoundaboutRightRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconRoundaboutRightRoundedFilled: React.FC = ({ ) -export { IconRoundaboutRightRoundedFilled as default } +export default IconRoundaboutRightRoundedFilled diff --git a/src/IconRoundaboutRightSharp.tsx b/src/IconRoundaboutRightSharp.tsx index f4813ff4d..1ead2b889 100644 --- a/src/IconRoundaboutRightSharp.tsx +++ b/src/IconRoundaboutRightSharp.tsx @@ -8,4 +8,4 @@ const IconRoundaboutRightSharp: React.FC = ({ ...props }) => ( ) -export { IconRoundaboutRightSharp as default } +export default IconRoundaboutRightSharp diff --git a/src/IconRoundaboutRightSharpFilled.tsx b/src/IconRoundaboutRightSharpFilled.tsx index 0eefb2ba8..d6e65cb5d 100644 --- a/src/IconRoundaboutRightSharpFilled.tsx +++ b/src/IconRoundaboutRightSharpFilled.tsx @@ -8,4 +8,4 @@ const IconRoundaboutRightSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconRoundaboutRightSharpFilled as default } +export default IconRoundaboutRightSharpFilled diff --git a/src/IconRoundedCornerOutlined.tsx b/src/IconRoundedCornerOutlined.tsx index 4720ce48b..ce8cb72f6 100644 --- a/src/IconRoundedCornerOutlined.tsx +++ b/src/IconRoundedCornerOutlined.tsx @@ -8,4 +8,4 @@ const IconRoundedCornerOutlined: React.FC = ({ ...props }) => ( ) -export { IconRoundedCornerOutlined as default } +export default IconRoundedCornerOutlined diff --git a/src/IconRoundedCornerOutlinedFilled.tsx b/src/IconRoundedCornerOutlinedFilled.tsx index 8137c6f4e..4acf93ca7 100644 --- a/src/IconRoundedCornerOutlinedFilled.tsx +++ b/src/IconRoundedCornerOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconRoundedCornerOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconRoundedCornerOutlinedFilled as default } +export default IconRoundedCornerOutlinedFilled diff --git a/src/IconRoundedCornerRounded.tsx b/src/IconRoundedCornerRounded.tsx index b819e35dd..2a60eadeb 100644 --- a/src/IconRoundedCornerRounded.tsx +++ b/src/IconRoundedCornerRounded.tsx @@ -8,4 +8,4 @@ const IconRoundedCornerRounded: React.FC = ({ ...props }) => ( ) -export { IconRoundedCornerRounded as default } +export default IconRoundedCornerRounded diff --git a/src/IconRoundedCornerRoundedFilled.tsx b/src/IconRoundedCornerRoundedFilled.tsx index 543177385..72217d2a6 100644 --- a/src/IconRoundedCornerRoundedFilled.tsx +++ b/src/IconRoundedCornerRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconRoundedCornerRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconRoundedCornerRoundedFilled as default } +export default IconRoundedCornerRoundedFilled diff --git a/src/IconRoundedCornerSharp.tsx b/src/IconRoundedCornerSharp.tsx index 8fc22bbed..587386266 100644 --- a/src/IconRoundedCornerSharp.tsx +++ b/src/IconRoundedCornerSharp.tsx @@ -8,4 +8,4 @@ const IconRoundedCornerSharp: React.FC = ({ ...props }) => ( ) -export { IconRoundedCornerSharp as default } +export default IconRoundedCornerSharp diff --git a/src/IconRoundedCornerSharpFilled.tsx b/src/IconRoundedCornerSharpFilled.tsx index 4d5e9883f..150401a16 100644 --- a/src/IconRoundedCornerSharpFilled.tsx +++ b/src/IconRoundedCornerSharpFilled.tsx @@ -8,4 +8,4 @@ const IconRoundedCornerSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconRoundedCornerSharpFilled as default } +export default IconRoundedCornerSharpFilled diff --git a/src/IconRouteOutlined.tsx b/src/IconRouteOutlined.tsx index ba5973cdb..08d83e6fb 100644 --- a/src/IconRouteOutlined.tsx +++ b/src/IconRouteOutlined.tsx @@ -8,4 +8,4 @@ const IconRouteOutlined: React.FC = ({ ...props }) => ( ) -export { IconRouteOutlined as default } +export default IconRouteOutlined diff --git a/src/IconRouteOutlinedFilled.tsx b/src/IconRouteOutlinedFilled.tsx index d839b136a..3ec48a41c 100644 --- a/src/IconRouteOutlinedFilled.tsx +++ b/src/IconRouteOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconRouteOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconRouteOutlinedFilled as default } +export default IconRouteOutlinedFilled diff --git a/src/IconRouteRounded.tsx b/src/IconRouteRounded.tsx index bd8cd1d17..3aa1c5124 100644 --- a/src/IconRouteRounded.tsx +++ b/src/IconRouteRounded.tsx @@ -8,4 +8,4 @@ const IconRouteRounded: React.FC = ({ ...props }) => ( ) -export { IconRouteRounded as default } +export default IconRouteRounded diff --git a/src/IconRouteRoundedFilled.tsx b/src/IconRouteRoundedFilled.tsx index a48a31ed5..bf492c253 100644 --- a/src/IconRouteRoundedFilled.tsx +++ b/src/IconRouteRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconRouteRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconRouteRoundedFilled as default } +export default IconRouteRoundedFilled diff --git a/src/IconRouteSharp.tsx b/src/IconRouteSharp.tsx index 6fab61880..8ad6eead6 100644 --- a/src/IconRouteSharp.tsx +++ b/src/IconRouteSharp.tsx @@ -8,4 +8,4 @@ const IconRouteSharp: React.FC = ({ ...props }) => ( ) -export { IconRouteSharp as default } +export default IconRouteSharp diff --git a/src/IconRouteSharpFilled.tsx b/src/IconRouteSharpFilled.tsx index becce62f6..3c86ae4e0 100644 --- a/src/IconRouteSharpFilled.tsx +++ b/src/IconRouteSharpFilled.tsx @@ -8,4 +8,4 @@ const IconRouteSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconRouteSharpFilled as default } +export default IconRouteSharpFilled diff --git a/src/IconRouterOutlined.tsx b/src/IconRouterOutlined.tsx index 6959d3e77..67f0e5c9a 100644 --- a/src/IconRouterOutlined.tsx +++ b/src/IconRouterOutlined.tsx @@ -8,4 +8,4 @@ const IconRouterOutlined: React.FC = ({ ...props }) => ( ) -export { IconRouterOutlined as default } +export default IconRouterOutlined diff --git a/src/IconRouterOutlinedFilled.tsx b/src/IconRouterOutlinedFilled.tsx index dbdd915e7..13226da73 100644 --- a/src/IconRouterOutlinedFilled.tsx +++ b/src/IconRouterOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconRouterOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconRouterOutlinedFilled as default } +export default IconRouterOutlinedFilled diff --git a/src/IconRouterRounded.tsx b/src/IconRouterRounded.tsx index ad99eb357..141c4457f 100644 --- a/src/IconRouterRounded.tsx +++ b/src/IconRouterRounded.tsx @@ -8,4 +8,4 @@ const IconRouterRounded: React.FC = ({ ...props }) => ( ) -export { IconRouterRounded as default } +export default IconRouterRounded diff --git a/src/IconRouterRoundedFilled.tsx b/src/IconRouterRoundedFilled.tsx index 7d1804127..cc5b43b32 100644 --- a/src/IconRouterRoundedFilled.tsx +++ b/src/IconRouterRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconRouterRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconRouterRoundedFilled as default } +export default IconRouterRoundedFilled diff --git a/src/IconRouterSharp.tsx b/src/IconRouterSharp.tsx index 9b985a795..14d28b0a1 100644 --- a/src/IconRouterSharp.tsx +++ b/src/IconRouterSharp.tsx @@ -8,4 +8,4 @@ const IconRouterSharp: React.FC = ({ ...props }) => ( ) -export { IconRouterSharp as default } +export default IconRouterSharp diff --git a/src/IconRouterSharpFilled.tsx b/src/IconRouterSharpFilled.tsx index fe228d53c..1f3ab7c0a 100644 --- a/src/IconRouterSharpFilled.tsx +++ b/src/IconRouterSharpFilled.tsx @@ -8,4 +8,4 @@ const IconRouterSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconRouterSharpFilled as default } +export default IconRouterSharpFilled diff --git a/src/IconRoutineOutlined.tsx b/src/IconRoutineOutlined.tsx index 4e526136b..513bfbdc1 100644 --- a/src/IconRoutineOutlined.tsx +++ b/src/IconRoutineOutlined.tsx @@ -8,4 +8,4 @@ const IconRoutineOutlined: React.FC = ({ ...props }) => ( ) -export { IconRoutineOutlined as default } +export default IconRoutineOutlined diff --git a/src/IconRoutineOutlinedFilled.tsx b/src/IconRoutineOutlinedFilled.tsx index aa8c2003d..b0a0bfc48 100644 --- a/src/IconRoutineOutlinedFilled.tsx +++ b/src/IconRoutineOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconRoutineOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconRoutineOutlinedFilled as default } +export default IconRoutineOutlinedFilled diff --git a/src/IconRoutineRounded.tsx b/src/IconRoutineRounded.tsx index ff3625802..521e02020 100644 --- a/src/IconRoutineRounded.tsx +++ b/src/IconRoutineRounded.tsx @@ -8,4 +8,4 @@ const IconRoutineRounded: React.FC = ({ ...props }) => ( ) -export { IconRoutineRounded as default } +export default IconRoutineRounded diff --git a/src/IconRoutineRoundedFilled.tsx b/src/IconRoutineRoundedFilled.tsx index 8eb232036..8f67741a9 100644 --- a/src/IconRoutineRoundedFilled.tsx +++ b/src/IconRoutineRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconRoutineRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconRoutineRoundedFilled as default } +export default IconRoutineRoundedFilled diff --git a/src/IconRoutineSharp.tsx b/src/IconRoutineSharp.tsx index 6968bd146..1ed9d4bb2 100644 --- a/src/IconRoutineSharp.tsx +++ b/src/IconRoutineSharp.tsx @@ -8,4 +8,4 @@ const IconRoutineSharp: React.FC = ({ ...props }) => ( ) -export { IconRoutineSharp as default } +export default IconRoutineSharp diff --git a/src/IconRoutineSharpFilled.tsx b/src/IconRoutineSharpFilled.tsx index 39bab7990..91a6591ef 100644 --- a/src/IconRoutineSharpFilled.tsx +++ b/src/IconRoutineSharpFilled.tsx @@ -8,4 +8,4 @@ const IconRoutineSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconRoutineSharpFilled as default } +export default IconRoutineSharpFilled diff --git a/src/IconRowingOutlined.tsx b/src/IconRowingOutlined.tsx index afa53bda2..2f9ab498d 100644 --- a/src/IconRowingOutlined.tsx +++ b/src/IconRowingOutlined.tsx @@ -8,4 +8,4 @@ const IconRowingOutlined: React.FC = ({ ...props }) => ( ) -export { IconRowingOutlined as default } +export default IconRowingOutlined diff --git a/src/IconRowingOutlinedFilled.tsx b/src/IconRowingOutlinedFilled.tsx index 434095d84..4c397cacc 100644 --- a/src/IconRowingOutlinedFilled.tsx +++ b/src/IconRowingOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconRowingOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconRowingOutlinedFilled as default } +export default IconRowingOutlinedFilled diff --git a/src/IconRowingRounded.tsx b/src/IconRowingRounded.tsx index e83175fec..efddcaf6e 100644 --- a/src/IconRowingRounded.tsx +++ b/src/IconRowingRounded.tsx @@ -8,4 +8,4 @@ const IconRowingRounded: React.FC = ({ ...props }) => ( ) -export { IconRowingRounded as default } +export default IconRowingRounded diff --git a/src/IconRowingRoundedFilled.tsx b/src/IconRowingRoundedFilled.tsx index eecf3a23d..e1b04dd93 100644 --- a/src/IconRowingRoundedFilled.tsx +++ b/src/IconRowingRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconRowingRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconRowingRoundedFilled as default } +export default IconRowingRoundedFilled diff --git a/src/IconRowingSharp.tsx b/src/IconRowingSharp.tsx index 4113a596e..9ddf538fb 100644 --- a/src/IconRowingSharp.tsx +++ b/src/IconRowingSharp.tsx @@ -8,4 +8,4 @@ const IconRowingSharp: React.FC = ({ ...props }) => ( ) -export { IconRowingSharp as default } +export default IconRowingSharp diff --git a/src/IconRowingSharpFilled.tsx b/src/IconRowingSharpFilled.tsx index e78087f0f..5d78a6bef 100644 --- a/src/IconRowingSharpFilled.tsx +++ b/src/IconRowingSharpFilled.tsx @@ -8,4 +8,4 @@ const IconRowingSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconRowingSharpFilled as default } +export default IconRowingSharpFilled diff --git a/src/IconRssFeedOutlined.tsx b/src/IconRssFeedOutlined.tsx index cdcf4c7cc..ddeb4125b 100644 --- a/src/IconRssFeedOutlined.tsx +++ b/src/IconRssFeedOutlined.tsx @@ -8,4 +8,4 @@ const IconRssFeedOutlined: React.FC = ({ ...props }) => ( ) -export { IconRssFeedOutlined as default } +export default IconRssFeedOutlined diff --git a/src/IconRssFeedOutlinedFilled.tsx b/src/IconRssFeedOutlinedFilled.tsx index 2d92c511d..7907b36e1 100644 --- a/src/IconRssFeedOutlinedFilled.tsx +++ b/src/IconRssFeedOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconRssFeedOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconRssFeedOutlinedFilled as default } +export default IconRssFeedOutlinedFilled diff --git a/src/IconRssFeedRounded.tsx b/src/IconRssFeedRounded.tsx index 62a1e5fd6..cc5a09298 100644 --- a/src/IconRssFeedRounded.tsx +++ b/src/IconRssFeedRounded.tsx @@ -8,4 +8,4 @@ const IconRssFeedRounded: React.FC = ({ ...props }) => ( ) -export { IconRssFeedRounded as default } +export default IconRssFeedRounded diff --git a/src/IconRssFeedRoundedFilled.tsx b/src/IconRssFeedRoundedFilled.tsx index 075b2d925..9eb33ddea 100644 --- a/src/IconRssFeedRoundedFilled.tsx +++ b/src/IconRssFeedRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconRssFeedRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconRssFeedRoundedFilled as default } +export default IconRssFeedRoundedFilled diff --git a/src/IconRssFeedSharp.tsx b/src/IconRssFeedSharp.tsx index 8082f405c..793f7d4b2 100644 --- a/src/IconRssFeedSharp.tsx +++ b/src/IconRssFeedSharp.tsx @@ -8,4 +8,4 @@ const IconRssFeedSharp: React.FC = ({ ...props }) => ( ) -export { IconRssFeedSharp as default } +export default IconRssFeedSharp diff --git a/src/IconRssFeedSharpFilled.tsx b/src/IconRssFeedSharpFilled.tsx index 384b72834..2fed46bfc 100644 --- a/src/IconRssFeedSharpFilled.tsx +++ b/src/IconRssFeedSharpFilled.tsx @@ -8,4 +8,4 @@ const IconRssFeedSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconRssFeedSharpFilled as default } +export default IconRssFeedSharpFilled diff --git a/src/IconRsvpOutlined.tsx b/src/IconRsvpOutlined.tsx index 6de534070..49cfa4fe1 100644 --- a/src/IconRsvpOutlined.tsx +++ b/src/IconRsvpOutlined.tsx @@ -8,4 +8,4 @@ const IconRsvpOutlined: React.FC = ({ ...props }) => ( ) -export { IconRsvpOutlined as default } +export default IconRsvpOutlined diff --git a/src/IconRsvpOutlinedFilled.tsx b/src/IconRsvpOutlinedFilled.tsx index f6c785214..7a474cb33 100644 --- a/src/IconRsvpOutlinedFilled.tsx +++ b/src/IconRsvpOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconRsvpOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconRsvpOutlinedFilled as default } +export default IconRsvpOutlinedFilled diff --git a/src/IconRsvpRounded.tsx b/src/IconRsvpRounded.tsx index 8529a01a4..1f4104782 100644 --- a/src/IconRsvpRounded.tsx +++ b/src/IconRsvpRounded.tsx @@ -8,4 +8,4 @@ const IconRsvpRounded: React.FC = ({ ...props }) => ( ) -export { IconRsvpRounded as default } +export default IconRsvpRounded diff --git a/src/IconRsvpRoundedFilled.tsx b/src/IconRsvpRoundedFilled.tsx index 2e160149c..fdf3a677e 100644 --- a/src/IconRsvpRoundedFilled.tsx +++ b/src/IconRsvpRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconRsvpRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconRsvpRoundedFilled as default } +export default IconRsvpRoundedFilled diff --git a/src/IconRsvpSharp.tsx b/src/IconRsvpSharp.tsx index 3e03762b2..4b5333fc4 100644 --- a/src/IconRsvpSharp.tsx +++ b/src/IconRsvpSharp.tsx @@ -8,4 +8,4 @@ const IconRsvpSharp: React.FC = ({ ...props }) => ( ) -export { IconRsvpSharp as default } +export default IconRsvpSharp diff --git a/src/IconRsvpSharpFilled.tsx b/src/IconRsvpSharpFilled.tsx index c6043549a..af9d14352 100644 --- a/src/IconRsvpSharpFilled.tsx +++ b/src/IconRsvpSharpFilled.tsx @@ -8,4 +8,4 @@ const IconRsvpSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconRsvpSharpFilled as default } +export default IconRsvpSharpFilled diff --git a/src/IconRttOutlined.tsx b/src/IconRttOutlined.tsx index c2ca505dc..5f6a3a1e3 100644 --- a/src/IconRttOutlined.tsx +++ b/src/IconRttOutlined.tsx @@ -8,4 +8,4 @@ const IconRttOutlined: React.FC = ({ ...props }) => ( ) -export { IconRttOutlined as default } +export default IconRttOutlined diff --git a/src/IconRttOutlinedFilled.tsx b/src/IconRttOutlinedFilled.tsx index f554bc579..323fdef4e 100644 --- a/src/IconRttOutlinedFilled.tsx +++ b/src/IconRttOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconRttOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconRttOutlinedFilled as default } +export default IconRttOutlinedFilled diff --git a/src/IconRttRounded.tsx b/src/IconRttRounded.tsx index 16a902c0d..fa33aa0a6 100644 --- a/src/IconRttRounded.tsx +++ b/src/IconRttRounded.tsx @@ -8,4 +8,4 @@ const IconRttRounded: React.FC = ({ ...props }) => ( ) -export { IconRttRounded as default } +export default IconRttRounded diff --git a/src/IconRttRoundedFilled.tsx b/src/IconRttRoundedFilled.tsx index f54aff056..3f93d7223 100644 --- a/src/IconRttRoundedFilled.tsx +++ b/src/IconRttRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconRttRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconRttRoundedFilled as default } +export default IconRttRoundedFilled diff --git a/src/IconRttSharp.tsx b/src/IconRttSharp.tsx index aabeff1c0..22d4ca166 100644 --- a/src/IconRttSharp.tsx +++ b/src/IconRttSharp.tsx @@ -8,4 +8,4 @@ const IconRttSharp: React.FC = ({ ...props }) => ( ) -export { IconRttSharp as default } +export default IconRttSharp diff --git a/src/IconRttSharpFilled.tsx b/src/IconRttSharpFilled.tsx index abdee0b8f..82d009fb5 100644 --- a/src/IconRttSharpFilled.tsx +++ b/src/IconRttSharpFilled.tsx @@ -8,4 +8,4 @@ const IconRttSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconRttSharpFilled as default } +export default IconRttSharpFilled diff --git a/src/IconRubricOutlined.tsx b/src/IconRubricOutlined.tsx index d2e25f5f4..bebb91418 100644 --- a/src/IconRubricOutlined.tsx +++ b/src/IconRubricOutlined.tsx @@ -8,4 +8,4 @@ const IconRubricOutlined: React.FC = ({ ...props }) => ( ) -export { IconRubricOutlined as default } +export default IconRubricOutlined diff --git a/src/IconRubricOutlinedFilled.tsx b/src/IconRubricOutlinedFilled.tsx index fd4d8c2a6..1e97e8b76 100644 --- a/src/IconRubricOutlinedFilled.tsx +++ b/src/IconRubricOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconRubricOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconRubricOutlinedFilled as default } +export default IconRubricOutlinedFilled diff --git a/src/IconRubricRounded.tsx b/src/IconRubricRounded.tsx index 93eb65756..59acc2abd 100644 --- a/src/IconRubricRounded.tsx +++ b/src/IconRubricRounded.tsx @@ -8,4 +8,4 @@ const IconRubricRounded: React.FC = ({ ...props }) => ( ) -export { IconRubricRounded as default } +export default IconRubricRounded diff --git a/src/IconRubricRoundedFilled.tsx b/src/IconRubricRoundedFilled.tsx index 95a6b5565..8a61baab6 100644 --- a/src/IconRubricRoundedFilled.tsx +++ b/src/IconRubricRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconRubricRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconRubricRoundedFilled as default } +export default IconRubricRoundedFilled diff --git a/src/IconRubricSharp.tsx b/src/IconRubricSharp.tsx index 6d0d0f2b9..5c56f98c9 100644 --- a/src/IconRubricSharp.tsx +++ b/src/IconRubricSharp.tsx @@ -8,4 +8,4 @@ const IconRubricSharp: React.FC = ({ ...props }) => ( ) -export { IconRubricSharp as default } +export default IconRubricSharp diff --git a/src/IconRubricSharpFilled.tsx b/src/IconRubricSharpFilled.tsx index d6be8948e..913dd2c29 100644 --- a/src/IconRubricSharpFilled.tsx +++ b/src/IconRubricSharpFilled.tsx @@ -8,4 +8,4 @@ const IconRubricSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconRubricSharpFilled as default } +export default IconRubricSharpFilled diff --git a/src/IconRuleFolderOutlined.tsx b/src/IconRuleFolderOutlined.tsx index 1dcbde436..9f844d0b5 100644 --- a/src/IconRuleFolderOutlined.tsx +++ b/src/IconRuleFolderOutlined.tsx @@ -8,4 +8,4 @@ const IconRuleFolderOutlined: React.FC = ({ ...props }) => ( ) -export { IconRuleFolderOutlined as default } +export default IconRuleFolderOutlined diff --git a/src/IconRuleFolderOutlinedFilled.tsx b/src/IconRuleFolderOutlinedFilled.tsx index 0f536bb83..8556f381d 100644 --- a/src/IconRuleFolderOutlinedFilled.tsx +++ b/src/IconRuleFolderOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconRuleFolderOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconRuleFolderOutlinedFilled as default } +export default IconRuleFolderOutlinedFilled diff --git a/src/IconRuleFolderRounded.tsx b/src/IconRuleFolderRounded.tsx index fc7ef39ad..5fc43d72c 100644 --- a/src/IconRuleFolderRounded.tsx +++ b/src/IconRuleFolderRounded.tsx @@ -8,4 +8,4 @@ const IconRuleFolderRounded: React.FC = ({ ...props }) => ( ) -export { IconRuleFolderRounded as default } +export default IconRuleFolderRounded diff --git a/src/IconRuleFolderRoundedFilled.tsx b/src/IconRuleFolderRoundedFilled.tsx index 6dbb46120..43cb8940c 100644 --- a/src/IconRuleFolderRoundedFilled.tsx +++ b/src/IconRuleFolderRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconRuleFolderRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconRuleFolderRoundedFilled as default } +export default IconRuleFolderRoundedFilled diff --git a/src/IconRuleFolderSharp.tsx b/src/IconRuleFolderSharp.tsx index db7563c58..7be60e02e 100644 --- a/src/IconRuleFolderSharp.tsx +++ b/src/IconRuleFolderSharp.tsx @@ -8,4 +8,4 @@ const IconRuleFolderSharp: React.FC = ({ ...props }) => ( ) -export { IconRuleFolderSharp as default } +export default IconRuleFolderSharp diff --git a/src/IconRuleFolderSharpFilled.tsx b/src/IconRuleFolderSharpFilled.tsx index df3c572cb..e56f4a80e 100644 --- a/src/IconRuleFolderSharpFilled.tsx +++ b/src/IconRuleFolderSharpFilled.tsx @@ -8,4 +8,4 @@ const IconRuleFolderSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconRuleFolderSharpFilled as default } +export default IconRuleFolderSharpFilled diff --git a/src/IconRuleOutlined.tsx b/src/IconRuleOutlined.tsx index 3791a4b5e..f069689f7 100644 --- a/src/IconRuleOutlined.tsx +++ b/src/IconRuleOutlined.tsx @@ -8,4 +8,4 @@ const IconRuleOutlined: React.FC = ({ ...props }) => ( ) -export { IconRuleOutlined as default } +export default IconRuleOutlined diff --git a/src/IconRuleOutlinedFilled.tsx b/src/IconRuleOutlinedFilled.tsx index 33dbb672c..2f9b3900c 100644 --- a/src/IconRuleOutlinedFilled.tsx +++ b/src/IconRuleOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconRuleOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconRuleOutlinedFilled as default } +export default IconRuleOutlinedFilled diff --git a/src/IconRuleRounded.tsx b/src/IconRuleRounded.tsx index 7a1f8d586..6d1a32123 100644 --- a/src/IconRuleRounded.tsx +++ b/src/IconRuleRounded.tsx @@ -8,4 +8,4 @@ const IconRuleRounded: React.FC = ({ ...props }) => ( ) -export { IconRuleRounded as default } +export default IconRuleRounded diff --git a/src/IconRuleRoundedFilled.tsx b/src/IconRuleRoundedFilled.tsx index 8367c303d..77647c72c 100644 --- a/src/IconRuleRoundedFilled.tsx +++ b/src/IconRuleRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconRuleRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconRuleRoundedFilled as default } +export default IconRuleRoundedFilled diff --git a/src/IconRuleSettingsOutlined.tsx b/src/IconRuleSettingsOutlined.tsx index 3fe09c5f2..65cd55dc3 100644 --- a/src/IconRuleSettingsOutlined.tsx +++ b/src/IconRuleSettingsOutlined.tsx @@ -8,4 +8,4 @@ const IconRuleSettingsOutlined: React.FC = ({ ...props }) => ( ) -export { IconRuleSettingsOutlined as default } +export default IconRuleSettingsOutlined diff --git a/src/IconRuleSettingsOutlinedFilled.tsx b/src/IconRuleSettingsOutlinedFilled.tsx index 3f9a15927..706e41476 100644 --- a/src/IconRuleSettingsOutlinedFilled.tsx +++ b/src/IconRuleSettingsOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconRuleSettingsOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconRuleSettingsOutlinedFilled as default } +export default IconRuleSettingsOutlinedFilled diff --git a/src/IconRuleSettingsRounded.tsx b/src/IconRuleSettingsRounded.tsx index b41e44169..8277eb856 100644 --- a/src/IconRuleSettingsRounded.tsx +++ b/src/IconRuleSettingsRounded.tsx @@ -8,4 +8,4 @@ const IconRuleSettingsRounded: React.FC = ({ ...props }) => ( ) -export { IconRuleSettingsRounded as default } +export default IconRuleSettingsRounded diff --git a/src/IconRuleSettingsRoundedFilled.tsx b/src/IconRuleSettingsRoundedFilled.tsx index 087501fcd..f6adeb4cb 100644 --- a/src/IconRuleSettingsRoundedFilled.tsx +++ b/src/IconRuleSettingsRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconRuleSettingsRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconRuleSettingsRoundedFilled as default } +export default IconRuleSettingsRoundedFilled diff --git a/src/IconRuleSettingsSharp.tsx b/src/IconRuleSettingsSharp.tsx index b3fbf03af..6467b4f91 100644 --- a/src/IconRuleSettingsSharp.tsx +++ b/src/IconRuleSettingsSharp.tsx @@ -8,4 +8,4 @@ const IconRuleSettingsSharp: React.FC = ({ ...props }) => ( ) -export { IconRuleSettingsSharp as default } +export default IconRuleSettingsSharp diff --git a/src/IconRuleSettingsSharpFilled.tsx b/src/IconRuleSettingsSharpFilled.tsx index 2c924f0cd..d77230641 100644 --- a/src/IconRuleSettingsSharpFilled.tsx +++ b/src/IconRuleSettingsSharpFilled.tsx @@ -8,4 +8,4 @@ const IconRuleSettingsSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconRuleSettingsSharpFilled as default } +export default IconRuleSettingsSharpFilled diff --git a/src/IconRuleSharp.tsx b/src/IconRuleSharp.tsx index 989865c9e..5a2f8d787 100644 --- a/src/IconRuleSharp.tsx +++ b/src/IconRuleSharp.tsx @@ -8,4 +8,4 @@ const IconRuleSharp: React.FC = ({ ...props }) => ( ) -export { IconRuleSharp as default } +export default IconRuleSharp diff --git a/src/IconRuleSharpFilled.tsx b/src/IconRuleSharpFilled.tsx index 9a8599657..ec986d9bc 100644 --- a/src/IconRuleSharpFilled.tsx +++ b/src/IconRuleSharpFilled.tsx @@ -8,4 +8,4 @@ const IconRuleSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconRuleSharpFilled as default } +export default IconRuleSharpFilled diff --git a/src/IconRunCircleOutlined.tsx b/src/IconRunCircleOutlined.tsx index f0758ee58..634c23bab 100644 --- a/src/IconRunCircleOutlined.tsx +++ b/src/IconRunCircleOutlined.tsx @@ -8,4 +8,4 @@ const IconRunCircleOutlined: React.FC = ({ ...props }) => ( ) -export { IconRunCircleOutlined as default } +export default IconRunCircleOutlined diff --git a/src/IconRunCircleOutlinedFilled.tsx b/src/IconRunCircleOutlinedFilled.tsx index a36f260d8..d0ab14fd9 100644 --- a/src/IconRunCircleOutlinedFilled.tsx +++ b/src/IconRunCircleOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconRunCircleOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconRunCircleOutlinedFilled as default } +export default IconRunCircleOutlinedFilled diff --git a/src/IconRunCircleRounded.tsx b/src/IconRunCircleRounded.tsx index 66976d680..b6b33faba 100644 --- a/src/IconRunCircleRounded.tsx +++ b/src/IconRunCircleRounded.tsx @@ -8,4 +8,4 @@ const IconRunCircleRounded: React.FC = ({ ...props }) => ( ) -export { IconRunCircleRounded as default } +export default IconRunCircleRounded diff --git a/src/IconRunCircleRoundedFilled.tsx b/src/IconRunCircleRoundedFilled.tsx index c351e8e73..9929ede9f 100644 --- a/src/IconRunCircleRoundedFilled.tsx +++ b/src/IconRunCircleRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconRunCircleRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconRunCircleRoundedFilled as default } +export default IconRunCircleRoundedFilled diff --git a/src/IconRunCircleSharp.tsx b/src/IconRunCircleSharp.tsx index 82b089a7b..d373b7325 100644 --- a/src/IconRunCircleSharp.tsx +++ b/src/IconRunCircleSharp.tsx @@ -8,4 +8,4 @@ const IconRunCircleSharp: React.FC = ({ ...props }) => ( ) -export { IconRunCircleSharp as default } +export default IconRunCircleSharp diff --git a/src/IconRunCircleSharpFilled.tsx b/src/IconRunCircleSharpFilled.tsx index b1b951c24..2e051a7ab 100644 --- a/src/IconRunCircleSharpFilled.tsx +++ b/src/IconRunCircleSharpFilled.tsx @@ -8,4 +8,4 @@ const IconRunCircleSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconRunCircleSharpFilled as default } +export default IconRunCircleSharpFilled diff --git a/src/IconRunningWithErrorsOutlined.tsx b/src/IconRunningWithErrorsOutlined.tsx index 4c2572014..06b319164 100644 --- a/src/IconRunningWithErrorsOutlined.tsx +++ b/src/IconRunningWithErrorsOutlined.tsx @@ -8,4 +8,4 @@ const IconRunningWithErrorsOutlined: React.FC = ({ ...props }) => ( ) -export { IconRunningWithErrorsOutlined as default } +export default IconRunningWithErrorsOutlined diff --git a/src/IconRunningWithErrorsOutlinedFilled.tsx b/src/IconRunningWithErrorsOutlinedFilled.tsx index 66484e682..330bf2097 100644 --- a/src/IconRunningWithErrorsOutlinedFilled.tsx +++ b/src/IconRunningWithErrorsOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconRunningWithErrorsOutlinedFilled: React.FC = ({ ) -export { IconRunningWithErrorsOutlinedFilled as default } +export default IconRunningWithErrorsOutlinedFilled diff --git a/src/IconRunningWithErrorsRounded.tsx b/src/IconRunningWithErrorsRounded.tsx index d31b90393..d63abe3bf 100644 --- a/src/IconRunningWithErrorsRounded.tsx +++ b/src/IconRunningWithErrorsRounded.tsx @@ -8,4 +8,4 @@ const IconRunningWithErrorsRounded: React.FC = ({ ...props }) => ( ) -export { IconRunningWithErrorsRounded as default } +export default IconRunningWithErrorsRounded diff --git a/src/IconRunningWithErrorsRoundedFilled.tsx b/src/IconRunningWithErrorsRoundedFilled.tsx index ad5f1b99d..060db70c6 100644 --- a/src/IconRunningWithErrorsRoundedFilled.tsx +++ b/src/IconRunningWithErrorsRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconRunningWithErrorsRoundedFilled: React.FC = ({ ) -export { IconRunningWithErrorsRoundedFilled as default } +export default IconRunningWithErrorsRoundedFilled diff --git a/src/IconRunningWithErrorsSharp.tsx b/src/IconRunningWithErrorsSharp.tsx index 9502a7bab..2e3c93c84 100644 --- a/src/IconRunningWithErrorsSharp.tsx +++ b/src/IconRunningWithErrorsSharp.tsx @@ -8,4 +8,4 @@ const IconRunningWithErrorsSharp: React.FC = ({ ...props }) => ( ) -export { IconRunningWithErrorsSharp as default } +export default IconRunningWithErrorsSharp diff --git a/src/IconRunningWithErrorsSharpFilled.tsx b/src/IconRunningWithErrorsSharpFilled.tsx index 34b9b3bed..703eb7721 100644 --- a/src/IconRunningWithErrorsSharpFilled.tsx +++ b/src/IconRunningWithErrorsSharpFilled.tsx @@ -10,4 +10,4 @@ const IconRunningWithErrorsSharpFilled: React.FC = ({ ) -export { IconRunningWithErrorsSharpFilled as default } +export default IconRunningWithErrorsSharpFilled diff --git a/src/IconRvHookupOutlined.tsx b/src/IconRvHookupOutlined.tsx index d501abcae..8831b9266 100644 --- a/src/IconRvHookupOutlined.tsx +++ b/src/IconRvHookupOutlined.tsx @@ -8,4 +8,4 @@ const IconRvHookupOutlined: React.FC = ({ ...props }) => ( ) -export { IconRvHookupOutlined as default } +export default IconRvHookupOutlined diff --git a/src/IconRvHookupOutlinedFilled.tsx b/src/IconRvHookupOutlinedFilled.tsx index 0573bdde5..42c220ad3 100644 --- a/src/IconRvHookupOutlinedFilled.tsx +++ b/src/IconRvHookupOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconRvHookupOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconRvHookupOutlinedFilled as default } +export default IconRvHookupOutlinedFilled diff --git a/src/IconRvHookupRounded.tsx b/src/IconRvHookupRounded.tsx index 1a246ff72..9e2922868 100644 --- a/src/IconRvHookupRounded.tsx +++ b/src/IconRvHookupRounded.tsx @@ -8,4 +8,4 @@ const IconRvHookupRounded: React.FC = ({ ...props }) => ( ) -export { IconRvHookupRounded as default } +export default IconRvHookupRounded diff --git a/src/IconRvHookupRoundedFilled.tsx b/src/IconRvHookupRoundedFilled.tsx index 9be95144c..2698f6ca2 100644 --- a/src/IconRvHookupRoundedFilled.tsx +++ b/src/IconRvHookupRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconRvHookupRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconRvHookupRoundedFilled as default } +export default IconRvHookupRoundedFilled diff --git a/src/IconRvHookupSharp.tsx b/src/IconRvHookupSharp.tsx index b05c60447..69f30eb63 100644 --- a/src/IconRvHookupSharp.tsx +++ b/src/IconRvHookupSharp.tsx @@ -8,4 +8,4 @@ const IconRvHookupSharp: React.FC = ({ ...props }) => ( ) -export { IconRvHookupSharp as default } +export default IconRvHookupSharp diff --git a/src/IconRvHookupSharpFilled.tsx b/src/IconRvHookupSharpFilled.tsx index b49e545de..7fb564320 100644 --- a/src/IconRvHookupSharpFilled.tsx +++ b/src/IconRvHookupSharpFilled.tsx @@ -8,4 +8,4 @@ const IconRvHookupSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconRvHookupSharpFilled as default } +export default IconRvHookupSharpFilled diff --git a/src/IconSafetyCheckOffOutlined.tsx b/src/IconSafetyCheckOffOutlined.tsx index 92826ef00..0e13a7895 100644 --- a/src/IconSafetyCheckOffOutlined.tsx +++ b/src/IconSafetyCheckOffOutlined.tsx @@ -8,4 +8,4 @@ const IconSafetyCheckOffOutlined: React.FC = ({ ...props }) => ( ) -export { IconSafetyCheckOffOutlined as default } +export default IconSafetyCheckOffOutlined diff --git a/src/IconSafetyCheckOffOutlinedFilled.tsx b/src/IconSafetyCheckOffOutlinedFilled.tsx index eb0f21a0c..0213b342a 100644 --- a/src/IconSafetyCheckOffOutlinedFilled.tsx +++ b/src/IconSafetyCheckOffOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconSafetyCheckOffOutlinedFilled: React.FC = ({ ) -export { IconSafetyCheckOffOutlinedFilled as default } +export default IconSafetyCheckOffOutlinedFilled diff --git a/src/IconSafetyCheckOffRounded.tsx b/src/IconSafetyCheckOffRounded.tsx index f4833d321..8136a66c3 100644 --- a/src/IconSafetyCheckOffRounded.tsx +++ b/src/IconSafetyCheckOffRounded.tsx @@ -8,4 +8,4 @@ const IconSafetyCheckOffRounded: React.FC = ({ ...props }) => ( ) -export { IconSafetyCheckOffRounded as default } +export default IconSafetyCheckOffRounded diff --git a/src/IconSafetyCheckOffRoundedFilled.tsx b/src/IconSafetyCheckOffRoundedFilled.tsx index 2c76e6eed..1a1fd14cf 100644 --- a/src/IconSafetyCheckOffRoundedFilled.tsx +++ b/src/IconSafetyCheckOffRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconSafetyCheckOffRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconSafetyCheckOffRoundedFilled as default } +export default IconSafetyCheckOffRoundedFilled diff --git a/src/IconSafetyCheckOffSharp.tsx b/src/IconSafetyCheckOffSharp.tsx index 933907436..2e1790088 100644 --- a/src/IconSafetyCheckOffSharp.tsx +++ b/src/IconSafetyCheckOffSharp.tsx @@ -8,4 +8,4 @@ const IconSafetyCheckOffSharp: React.FC = ({ ...props }) => ( ) -export { IconSafetyCheckOffSharp as default } +export default IconSafetyCheckOffSharp diff --git a/src/IconSafetyCheckOffSharpFilled.tsx b/src/IconSafetyCheckOffSharpFilled.tsx index bad60889a..db1da77dd 100644 --- a/src/IconSafetyCheckOffSharpFilled.tsx +++ b/src/IconSafetyCheckOffSharpFilled.tsx @@ -8,4 +8,4 @@ const IconSafetyCheckOffSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconSafetyCheckOffSharpFilled as default } +export default IconSafetyCheckOffSharpFilled diff --git a/src/IconSafetyCheckOutlined.tsx b/src/IconSafetyCheckOutlined.tsx index 757e7aa7d..b4493b20a 100644 --- a/src/IconSafetyCheckOutlined.tsx +++ b/src/IconSafetyCheckOutlined.tsx @@ -8,4 +8,4 @@ const IconSafetyCheckOutlined: React.FC = ({ ...props }) => ( ) -export { IconSafetyCheckOutlined as default } +export default IconSafetyCheckOutlined diff --git a/src/IconSafetyCheckOutlinedFilled.tsx b/src/IconSafetyCheckOutlinedFilled.tsx index 61c4f0cc2..2475f5185 100644 --- a/src/IconSafetyCheckOutlinedFilled.tsx +++ b/src/IconSafetyCheckOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconSafetyCheckOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconSafetyCheckOutlinedFilled as default } +export default IconSafetyCheckOutlinedFilled diff --git a/src/IconSafetyCheckRounded.tsx b/src/IconSafetyCheckRounded.tsx index d6a9ab43b..05cf36ab1 100644 --- a/src/IconSafetyCheckRounded.tsx +++ b/src/IconSafetyCheckRounded.tsx @@ -8,4 +8,4 @@ const IconSafetyCheckRounded: React.FC = ({ ...props }) => ( ) -export { IconSafetyCheckRounded as default } +export default IconSafetyCheckRounded diff --git a/src/IconSafetyCheckRoundedFilled.tsx b/src/IconSafetyCheckRoundedFilled.tsx index afbc90089..42824ad8e 100644 --- a/src/IconSafetyCheckRoundedFilled.tsx +++ b/src/IconSafetyCheckRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconSafetyCheckRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconSafetyCheckRoundedFilled as default } +export default IconSafetyCheckRoundedFilled diff --git a/src/IconSafetyCheckSharp.tsx b/src/IconSafetyCheckSharp.tsx index 58278549b..889355324 100644 --- a/src/IconSafetyCheckSharp.tsx +++ b/src/IconSafetyCheckSharp.tsx @@ -8,4 +8,4 @@ const IconSafetyCheckSharp: React.FC = ({ ...props }) => ( ) -export { IconSafetyCheckSharp as default } +export default IconSafetyCheckSharp diff --git a/src/IconSafetyCheckSharpFilled.tsx b/src/IconSafetyCheckSharpFilled.tsx index 0fb2e603f..1b192150c 100644 --- a/src/IconSafetyCheckSharpFilled.tsx +++ b/src/IconSafetyCheckSharpFilled.tsx @@ -8,4 +8,4 @@ const IconSafetyCheckSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconSafetyCheckSharpFilled as default } +export default IconSafetyCheckSharpFilled diff --git a/src/IconSafetyDividerOutlined.tsx b/src/IconSafetyDividerOutlined.tsx index f549ab340..4125efe80 100644 --- a/src/IconSafetyDividerOutlined.tsx +++ b/src/IconSafetyDividerOutlined.tsx @@ -8,4 +8,4 @@ const IconSafetyDividerOutlined: React.FC = ({ ...props }) => ( ) -export { IconSafetyDividerOutlined as default } +export default IconSafetyDividerOutlined diff --git a/src/IconSafetyDividerOutlinedFilled.tsx b/src/IconSafetyDividerOutlinedFilled.tsx index 1cd120210..d8da11cc8 100644 --- a/src/IconSafetyDividerOutlinedFilled.tsx +++ b/src/IconSafetyDividerOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconSafetyDividerOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconSafetyDividerOutlinedFilled as default } +export default IconSafetyDividerOutlinedFilled diff --git a/src/IconSafetyDividerRounded.tsx b/src/IconSafetyDividerRounded.tsx index 822a0dc43..d3fc332df 100644 --- a/src/IconSafetyDividerRounded.tsx +++ b/src/IconSafetyDividerRounded.tsx @@ -8,4 +8,4 @@ const IconSafetyDividerRounded: React.FC = ({ ...props }) => ( ) -export { IconSafetyDividerRounded as default } +export default IconSafetyDividerRounded diff --git a/src/IconSafetyDividerRoundedFilled.tsx b/src/IconSafetyDividerRoundedFilled.tsx index 4431813e7..366eee592 100644 --- a/src/IconSafetyDividerRoundedFilled.tsx +++ b/src/IconSafetyDividerRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconSafetyDividerRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconSafetyDividerRoundedFilled as default } +export default IconSafetyDividerRoundedFilled diff --git a/src/IconSafetyDividerSharp.tsx b/src/IconSafetyDividerSharp.tsx index 9f792254d..089cee0b3 100644 --- a/src/IconSafetyDividerSharp.tsx +++ b/src/IconSafetyDividerSharp.tsx @@ -8,4 +8,4 @@ const IconSafetyDividerSharp: React.FC = ({ ...props }) => ( ) -export { IconSafetyDividerSharp as default } +export default IconSafetyDividerSharp diff --git a/src/IconSafetyDividerSharpFilled.tsx b/src/IconSafetyDividerSharpFilled.tsx index 63e7344f2..f66c44c6f 100644 --- a/src/IconSafetyDividerSharpFilled.tsx +++ b/src/IconSafetyDividerSharpFilled.tsx @@ -8,4 +8,4 @@ const IconSafetyDividerSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconSafetyDividerSharpFilled as default } +export default IconSafetyDividerSharpFilled diff --git a/src/IconSailingOutlined.tsx b/src/IconSailingOutlined.tsx index 92c3e7611..ce9a5687f 100644 --- a/src/IconSailingOutlined.tsx +++ b/src/IconSailingOutlined.tsx @@ -8,4 +8,4 @@ const IconSailingOutlined: React.FC = ({ ...props }) => ( ) -export { IconSailingOutlined as default } +export default IconSailingOutlined diff --git a/src/IconSailingOutlinedFilled.tsx b/src/IconSailingOutlinedFilled.tsx index 2d1cd5893..139639a34 100644 --- a/src/IconSailingOutlinedFilled.tsx +++ b/src/IconSailingOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconSailingOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconSailingOutlinedFilled as default } +export default IconSailingOutlinedFilled diff --git a/src/IconSailingRounded.tsx b/src/IconSailingRounded.tsx index a092a4639..108d48194 100644 --- a/src/IconSailingRounded.tsx +++ b/src/IconSailingRounded.tsx @@ -8,4 +8,4 @@ const IconSailingRounded: React.FC = ({ ...props }) => ( ) -export { IconSailingRounded as default } +export default IconSailingRounded diff --git a/src/IconSailingRoundedFilled.tsx b/src/IconSailingRoundedFilled.tsx index f892ad169..68d9f9110 100644 --- a/src/IconSailingRoundedFilled.tsx +++ b/src/IconSailingRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconSailingRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconSailingRoundedFilled as default } +export default IconSailingRoundedFilled diff --git a/src/IconSailingSharp.tsx b/src/IconSailingSharp.tsx index ab95ada3c..271165972 100644 --- a/src/IconSailingSharp.tsx +++ b/src/IconSailingSharp.tsx @@ -8,4 +8,4 @@ const IconSailingSharp: React.FC = ({ ...props }) => ( ) -export { IconSailingSharp as default } +export default IconSailingSharp diff --git a/src/IconSailingSharpFilled.tsx b/src/IconSailingSharpFilled.tsx index 877312f21..2ccc6e1bd 100644 --- a/src/IconSailingSharpFilled.tsx +++ b/src/IconSailingSharpFilled.tsx @@ -8,4 +8,4 @@ const IconSailingSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconSailingSharpFilled as default } +export default IconSailingSharpFilled diff --git a/src/IconSalinityOutlined.tsx b/src/IconSalinityOutlined.tsx index e1dcf8e6c..cfe39d091 100644 --- a/src/IconSalinityOutlined.tsx +++ b/src/IconSalinityOutlined.tsx @@ -8,4 +8,4 @@ const IconSalinityOutlined: React.FC = ({ ...props }) => ( ) -export { IconSalinityOutlined as default } +export default IconSalinityOutlined diff --git a/src/IconSalinityOutlinedFilled.tsx b/src/IconSalinityOutlinedFilled.tsx index 3b221c739..6e9db5f5b 100644 --- a/src/IconSalinityOutlinedFilled.tsx +++ b/src/IconSalinityOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconSalinityOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconSalinityOutlinedFilled as default } +export default IconSalinityOutlinedFilled diff --git a/src/IconSalinityRounded.tsx b/src/IconSalinityRounded.tsx index 341cbd20c..6b7585f1e 100644 --- a/src/IconSalinityRounded.tsx +++ b/src/IconSalinityRounded.tsx @@ -8,4 +8,4 @@ const IconSalinityRounded: React.FC = ({ ...props }) => ( ) -export { IconSalinityRounded as default } +export default IconSalinityRounded diff --git a/src/IconSalinityRoundedFilled.tsx b/src/IconSalinityRoundedFilled.tsx index 68fa95eb0..3232acf78 100644 --- a/src/IconSalinityRoundedFilled.tsx +++ b/src/IconSalinityRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconSalinityRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconSalinityRoundedFilled as default } +export default IconSalinityRoundedFilled diff --git a/src/IconSalinitySharp.tsx b/src/IconSalinitySharp.tsx index 2361f31e5..c64ceb9a5 100644 --- a/src/IconSalinitySharp.tsx +++ b/src/IconSalinitySharp.tsx @@ -8,4 +8,4 @@ const IconSalinitySharp: React.FC = ({ ...props }) => ( ) -export { IconSalinitySharp as default } +export default IconSalinitySharp diff --git a/src/IconSalinitySharpFilled.tsx b/src/IconSalinitySharpFilled.tsx index 7d05f0981..e5a10ef7f 100644 --- a/src/IconSalinitySharpFilled.tsx +++ b/src/IconSalinitySharpFilled.tsx @@ -8,4 +8,4 @@ const IconSalinitySharpFilled: React.FC = ({ ...props }) => ( ) -export { IconSalinitySharpFilled as default } +export default IconSalinitySharpFilled diff --git a/src/IconSanitizerOutlined.tsx b/src/IconSanitizerOutlined.tsx index ee889205e..acd887c2a 100644 --- a/src/IconSanitizerOutlined.tsx +++ b/src/IconSanitizerOutlined.tsx @@ -8,4 +8,4 @@ const IconSanitizerOutlined: React.FC = ({ ...props }) => ( ) -export { IconSanitizerOutlined as default } +export default IconSanitizerOutlined diff --git a/src/IconSanitizerOutlinedFilled.tsx b/src/IconSanitizerOutlinedFilled.tsx index a80290da6..3cb7929c7 100644 --- a/src/IconSanitizerOutlinedFilled.tsx +++ b/src/IconSanitizerOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconSanitizerOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconSanitizerOutlinedFilled as default } +export default IconSanitizerOutlinedFilled diff --git a/src/IconSanitizerRounded.tsx b/src/IconSanitizerRounded.tsx index fc9d6b640..9180f364e 100644 --- a/src/IconSanitizerRounded.tsx +++ b/src/IconSanitizerRounded.tsx @@ -8,4 +8,4 @@ const IconSanitizerRounded: React.FC = ({ ...props }) => ( ) -export { IconSanitizerRounded as default } +export default IconSanitizerRounded diff --git a/src/IconSanitizerRoundedFilled.tsx b/src/IconSanitizerRoundedFilled.tsx index ebc20fe68..4e2eb1003 100644 --- a/src/IconSanitizerRoundedFilled.tsx +++ b/src/IconSanitizerRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconSanitizerRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconSanitizerRoundedFilled as default } +export default IconSanitizerRoundedFilled diff --git a/src/IconSanitizerSharp.tsx b/src/IconSanitizerSharp.tsx index 6c91ae184..40458d9b1 100644 --- a/src/IconSanitizerSharp.tsx +++ b/src/IconSanitizerSharp.tsx @@ -8,4 +8,4 @@ const IconSanitizerSharp: React.FC = ({ ...props }) => ( ) -export { IconSanitizerSharp as default } +export default IconSanitizerSharp diff --git a/src/IconSanitizerSharpFilled.tsx b/src/IconSanitizerSharpFilled.tsx index a61586206..79629f56b 100644 --- a/src/IconSanitizerSharpFilled.tsx +++ b/src/IconSanitizerSharpFilled.tsx @@ -8,4 +8,4 @@ const IconSanitizerSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconSanitizerSharpFilled as default } +export default IconSanitizerSharpFilled diff --git a/src/IconSatelliteAltOutlined.tsx b/src/IconSatelliteAltOutlined.tsx index f5b9f9d29..d79d530f8 100644 --- a/src/IconSatelliteAltOutlined.tsx +++ b/src/IconSatelliteAltOutlined.tsx @@ -8,4 +8,4 @@ const IconSatelliteAltOutlined: React.FC = ({ ...props }) => ( ) -export { IconSatelliteAltOutlined as default } +export default IconSatelliteAltOutlined diff --git a/src/IconSatelliteAltOutlinedFilled.tsx b/src/IconSatelliteAltOutlinedFilled.tsx index 577b7191c..6c734e70d 100644 --- a/src/IconSatelliteAltOutlinedFilled.tsx +++ b/src/IconSatelliteAltOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconSatelliteAltOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconSatelliteAltOutlinedFilled as default } +export default IconSatelliteAltOutlinedFilled diff --git a/src/IconSatelliteAltRounded.tsx b/src/IconSatelliteAltRounded.tsx index 7e445ab3b..b5ab99210 100644 --- a/src/IconSatelliteAltRounded.tsx +++ b/src/IconSatelliteAltRounded.tsx @@ -8,4 +8,4 @@ const IconSatelliteAltRounded: React.FC = ({ ...props }) => ( ) -export { IconSatelliteAltRounded as default } +export default IconSatelliteAltRounded diff --git a/src/IconSatelliteAltRoundedFilled.tsx b/src/IconSatelliteAltRoundedFilled.tsx index 0722009df..2004c3a51 100644 --- a/src/IconSatelliteAltRoundedFilled.tsx +++ b/src/IconSatelliteAltRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconSatelliteAltRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconSatelliteAltRoundedFilled as default } +export default IconSatelliteAltRoundedFilled diff --git a/src/IconSatelliteAltSharp.tsx b/src/IconSatelliteAltSharp.tsx index f53309c42..737e0766e 100644 --- a/src/IconSatelliteAltSharp.tsx +++ b/src/IconSatelliteAltSharp.tsx @@ -8,4 +8,4 @@ const IconSatelliteAltSharp: React.FC = ({ ...props }) => ( ) -export { IconSatelliteAltSharp as default } +export default IconSatelliteAltSharp diff --git a/src/IconSatelliteAltSharpFilled.tsx b/src/IconSatelliteAltSharpFilled.tsx index 393d1175f..5c03b5c46 100644 --- a/src/IconSatelliteAltSharpFilled.tsx +++ b/src/IconSatelliteAltSharpFilled.tsx @@ -8,4 +8,4 @@ const IconSatelliteAltSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconSatelliteAltSharpFilled as default } +export default IconSatelliteAltSharpFilled diff --git a/src/IconSatelliteOutlined.tsx b/src/IconSatelliteOutlined.tsx index 577ab26b4..f5e9625a0 100644 --- a/src/IconSatelliteOutlined.tsx +++ b/src/IconSatelliteOutlined.tsx @@ -8,4 +8,4 @@ const IconSatelliteOutlined: React.FC = ({ ...props }) => ( ) -export { IconSatelliteOutlined as default } +export default IconSatelliteOutlined diff --git a/src/IconSatelliteOutlinedFilled.tsx b/src/IconSatelliteOutlinedFilled.tsx index 57792e924..c6e865078 100644 --- a/src/IconSatelliteOutlinedFilled.tsx +++ b/src/IconSatelliteOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconSatelliteOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconSatelliteOutlinedFilled as default } +export default IconSatelliteOutlinedFilled diff --git a/src/IconSatelliteRounded.tsx b/src/IconSatelliteRounded.tsx index 2d00073e5..afb0b77a6 100644 --- a/src/IconSatelliteRounded.tsx +++ b/src/IconSatelliteRounded.tsx @@ -8,4 +8,4 @@ const IconSatelliteRounded: React.FC = ({ ...props }) => ( ) -export { IconSatelliteRounded as default } +export default IconSatelliteRounded diff --git a/src/IconSatelliteRoundedFilled.tsx b/src/IconSatelliteRoundedFilled.tsx index 0d04ebb9f..e1f6d3f78 100644 --- a/src/IconSatelliteRoundedFilled.tsx +++ b/src/IconSatelliteRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconSatelliteRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconSatelliteRoundedFilled as default } +export default IconSatelliteRoundedFilled diff --git a/src/IconSatelliteSharp.tsx b/src/IconSatelliteSharp.tsx index a6603ad90..069b87577 100644 --- a/src/IconSatelliteSharp.tsx +++ b/src/IconSatelliteSharp.tsx @@ -8,4 +8,4 @@ const IconSatelliteSharp: React.FC = ({ ...props }) => ( ) -export { IconSatelliteSharp as default } +export default IconSatelliteSharp diff --git a/src/IconSatelliteSharpFilled.tsx b/src/IconSatelliteSharpFilled.tsx index 8c8d0a92d..9de78c6a1 100644 --- a/src/IconSatelliteSharpFilled.tsx +++ b/src/IconSatelliteSharpFilled.tsx @@ -8,4 +8,4 @@ const IconSatelliteSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconSatelliteSharpFilled as default } +export default IconSatelliteSharpFilled diff --git a/src/IconSaunaOutlined.tsx b/src/IconSaunaOutlined.tsx index 123d52fb7..2d7990a7e 100644 --- a/src/IconSaunaOutlined.tsx +++ b/src/IconSaunaOutlined.tsx @@ -8,4 +8,4 @@ const IconSaunaOutlined: React.FC = ({ ...props }) => ( ) -export { IconSaunaOutlined as default } +export default IconSaunaOutlined diff --git a/src/IconSaunaOutlinedFilled.tsx b/src/IconSaunaOutlinedFilled.tsx index 11e3241b3..b333cc4ec 100644 --- a/src/IconSaunaOutlinedFilled.tsx +++ b/src/IconSaunaOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconSaunaOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconSaunaOutlinedFilled as default } +export default IconSaunaOutlinedFilled diff --git a/src/IconSaunaRounded.tsx b/src/IconSaunaRounded.tsx index d9fab2c40..6bea3c9da 100644 --- a/src/IconSaunaRounded.tsx +++ b/src/IconSaunaRounded.tsx @@ -8,4 +8,4 @@ const IconSaunaRounded: React.FC = ({ ...props }) => ( ) -export { IconSaunaRounded as default } +export default IconSaunaRounded diff --git a/src/IconSaunaRoundedFilled.tsx b/src/IconSaunaRoundedFilled.tsx index 82261d964..d43e44bbd 100644 --- a/src/IconSaunaRoundedFilled.tsx +++ b/src/IconSaunaRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconSaunaRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconSaunaRoundedFilled as default } +export default IconSaunaRoundedFilled diff --git a/src/IconSaunaSharp.tsx b/src/IconSaunaSharp.tsx index dfd21127a..4656136da 100644 --- a/src/IconSaunaSharp.tsx +++ b/src/IconSaunaSharp.tsx @@ -8,4 +8,4 @@ const IconSaunaSharp: React.FC = ({ ...props }) => ( ) -export { IconSaunaSharp as default } +export default IconSaunaSharp diff --git a/src/IconSaunaSharpFilled.tsx b/src/IconSaunaSharpFilled.tsx index 950f9ccdf..fbc7011d6 100644 --- a/src/IconSaunaSharpFilled.tsx +++ b/src/IconSaunaSharpFilled.tsx @@ -8,4 +8,4 @@ const IconSaunaSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconSaunaSharpFilled as default } +export default IconSaunaSharpFilled diff --git a/src/IconSaveAsOutlined.tsx b/src/IconSaveAsOutlined.tsx index e84a82f82..cf8e895bf 100644 --- a/src/IconSaveAsOutlined.tsx +++ b/src/IconSaveAsOutlined.tsx @@ -8,4 +8,4 @@ const IconSaveAsOutlined: React.FC = ({ ...props }) => ( ) -export { IconSaveAsOutlined as default } +export default IconSaveAsOutlined diff --git a/src/IconSaveAsOutlinedFilled.tsx b/src/IconSaveAsOutlinedFilled.tsx index 16d0ea337..bcaaa21f5 100644 --- a/src/IconSaveAsOutlinedFilled.tsx +++ b/src/IconSaveAsOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconSaveAsOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconSaveAsOutlinedFilled as default } +export default IconSaveAsOutlinedFilled diff --git a/src/IconSaveAsRounded.tsx b/src/IconSaveAsRounded.tsx index e567cf9db..c2616a8f8 100644 --- a/src/IconSaveAsRounded.tsx +++ b/src/IconSaveAsRounded.tsx @@ -8,4 +8,4 @@ const IconSaveAsRounded: React.FC = ({ ...props }) => ( ) -export { IconSaveAsRounded as default } +export default IconSaveAsRounded diff --git a/src/IconSaveAsRoundedFilled.tsx b/src/IconSaveAsRoundedFilled.tsx index afe065498..fb00663b4 100644 --- a/src/IconSaveAsRoundedFilled.tsx +++ b/src/IconSaveAsRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconSaveAsRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconSaveAsRoundedFilled as default } +export default IconSaveAsRoundedFilled diff --git a/src/IconSaveAsSharp.tsx b/src/IconSaveAsSharp.tsx index 3106b4e4f..82df003f3 100644 --- a/src/IconSaveAsSharp.tsx +++ b/src/IconSaveAsSharp.tsx @@ -8,4 +8,4 @@ const IconSaveAsSharp: React.FC = ({ ...props }) => ( ) -export { IconSaveAsSharp as default } +export default IconSaveAsSharp diff --git a/src/IconSaveAsSharpFilled.tsx b/src/IconSaveAsSharpFilled.tsx index b1abe4aa4..9a388635b 100644 --- a/src/IconSaveAsSharpFilled.tsx +++ b/src/IconSaveAsSharpFilled.tsx @@ -8,4 +8,4 @@ const IconSaveAsSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconSaveAsSharpFilled as default } +export default IconSaveAsSharpFilled diff --git a/src/IconSaveOutlined.tsx b/src/IconSaveOutlined.tsx index cd6732a32..a68dc1fe5 100644 --- a/src/IconSaveOutlined.tsx +++ b/src/IconSaveOutlined.tsx @@ -8,4 +8,4 @@ const IconSaveOutlined: React.FC = ({ ...props }) => ( ) -export { IconSaveOutlined as default } +export default IconSaveOutlined diff --git a/src/IconSaveOutlinedFilled.tsx b/src/IconSaveOutlinedFilled.tsx index 8c317e01a..bc70a199c 100644 --- a/src/IconSaveOutlinedFilled.tsx +++ b/src/IconSaveOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconSaveOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconSaveOutlinedFilled as default } +export default IconSaveOutlinedFilled diff --git a/src/IconSaveRounded.tsx b/src/IconSaveRounded.tsx index 1afc7b474..69d02c2af 100644 --- a/src/IconSaveRounded.tsx +++ b/src/IconSaveRounded.tsx @@ -8,4 +8,4 @@ const IconSaveRounded: React.FC = ({ ...props }) => ( ) -export { IconSaveRounded as default } +export default IconSaveRounded diff --git a/src/IconSaveRoundedFilled.tsx b/src/IconSaveRoundedFilled.tsx index 6746af52f..44461cb38 100644 --- a/src/IconSaveRoundedFilled.tsx +++ b/src/IconSaveRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconSaveRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconSaveRoundedFilled as default } +export default IconSaveRoundedFilled diff --git a/src/IconSaveSharp.tsx b/src/IconSaveSharp.tsx index e9fa801f0..e1c4b1c12 100644 --- a/src/IconSaveSharp.tsx +++ b/src/IconSaveSharp.tsx @@ -8,4 +8,4 @@ const IconSaveSharp: React.FC = ({ ...props }) => ( ) -export { IconSaveSharp as default } +export default IconSaveSharp diff --git a/src/IconSaveSharpFilled.tsx b/src/IconSaveSharpFilled.tsx index ee10f952d..f393d1141 100644 --- a/src/IconSaveSharpFilled.tsx +++ b/src/IconSaveSharpFilled.tsx @@ -8,4 +8,4 @@ const IconSaveSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconSaveSharpFilled as default } +export default IconSaveSharpFilled diff --git a/src/IconSavedSearchOutlined.tsx b/src/IconSavedSearchOutlined.tsx index a6aecc3ed..cea529f3c 100644 --- a/src/IconSavedSearchOutlined.tsx +++ b/src/IconSavedSearchOutlined.tsx @@ -8,4 +8,4 @@ const IconSavedSearchOutlined: React.FC = ({ ...props }) => ( ) -export { IconSavedSearchOutlined as default } +export default IconSavedSearchOutlined diff --git a/src/IconSavedSearchOutlinedFilled.tsx b/src/IconSavedSearchOutlinedFilled.tsx index a31e16c0b..35d536b09 100644 --- a/src/IconSavedSearchOutlinedFilled.tsx +++ b/src/IconSavedSearchOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconSavedSearchOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconSavedSearchOutlinedFilled as default } +export default IconSavedSearchOutlinedFilled diff --git a/src/IconSavedSearchRounded.tsx b/src/IconSavedSearchRounded.tsx index f86ec79c3..08be6271b 100644 --- a/src/IconSavedSearchRounded.tsx +++ b/src/IconSavedSearchRounded.tsx @@ -8,4 +8,4 @@ const IconSavedSearchRounded: React.FC = ({ ...props }) => ( ) -export { IconSavedSearchRounded as default } +export default IconSavedSearchRounded diff --git a/src/IconSavedSearchRoundedFilled.tsx b/src/IconSavedSearchRoundedFilled.tsx index fd8a4f8bb..1c9de9891 100644 --- a/src/IconSavedSearchRoundedFilled.tsx +++ b/src/IconSavedSearchRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconSavedSearchRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconSavedSearchRoundedFilled as default } +export default IconSavedSearchRoundedFilled diff --git a/src/IconSavedSearchSharp.tsx b/src/IconSavedSearchSharp.tsx index d594702fa..90eb3e284 100644 --- a/src/IconSavedSearchSharp.tsx +++ b/src/IconSavedSearchSharp.tsx @@ -8,4 +8,4 @@ const IconSavedSearchSharp: React.FC = ({ ...props }) => ( ) -export { IconSavedSearchSharp as default } +export default IconSavedSearchSharp diff --git a/src/IconSavedSearchSharpFilled.tsx b/src/IconSavedSearchSharpFilled.tsx index 618acaa72..dc6c1bad9 100644 --- a/src/IconSavedSearchSharpFilled.tsx +++ b/src/IconSavedSearchSharpFilled.tsx @@ -8,4 +8,4 @@ const IconSavedSearchSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconSavedSearchSharpFilled as default } +export default IconSavedSearchSharpFilled diff --git a/src/IconSavingsOutlined.tsx b/src/IconSavingsOutlined.tsx index 93bcf4b04..236b82aac 100644 --- a/src/IconSavingsOutlined.tsx +++ b/src/IconSavingsOutlined.tsx @@ -8,4 +8,4 @@ const IconSavingsOutlined: React.FC = ({ ...props }) => ( ) -export { IconSavingsOutlined as default } +export default IconSavingsOutlined diff --git a/src/IconSavingsOutlinedFilled.tsx b/src/IconSavingsOutlinedFilled.tsx index 2aa377231..487dac8b9 100644 --- a/src/IconSavingsOutlinedFilled.tsx +++ b/src/IconSavingsOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconSavingsOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconSavingsOutlinedFilled as default } +export default IconSavingsOutlinedFilled diff --git a/src/IconSavingsRounded.tsx b/src/IconSavingsRounded.tsx index 885607b52..8c6c25484 100644 --- a/src/IconSavingsRounded.tsx +++ b/src/IconSavingsRounded.tsx @@ -8,4 +8,4 @@ const IconSavingsRounded: React.FC = ({ ...props }) => ( ) -export { IconSavingsRounded as default } +export default IconSavingsRounded diff --git a/src/IconSavingsRoundedFilled.tsx b/src/IconSavingsRoundedFilled.tsx index ad7366abb..0c295537f 100644 --- a/src/IconSavingsRoundedFilled.tsx +++ b/src/IconSavingsRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconSavingsRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconSavingsRoundedFilled as default } +export default IconSavingsRoundedFilled diff --git a/src/IconSavingsSharp.tsx b/src/IconSavingsSharp.tsx index 3d9d69903..dc51aac20 100644 --- a/src/IconSavingsSharp.tsx +++ b/src/IconSavingsSharp.tsx @@ -8,4 +8,4 @@ const IconSavingsSharp: React.FC = ({ ...props }) => ( ) -export { IconSavingsSharp as default } +export default IconSavingsSharp diff --git a/src/IconSavingsSharpFilled.tsx b/src/IconSavingsSharpFilled.tsx index 796f2a89f..ee9f18010 100644 --- a/src/IconSavingsSharpFilled.tsx +++ b/src/IconSavingsSharpFilled.tsx @@ -8,4 +8,4 @@ const IconSavingsSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconSavingsSharpFilled as default } +export default IconSavingsSharpFilled diff --git a/src/IconScaleOutlined.tsx b/src/IconScaleOutlined.tsx index 585e03779..e6c1ec2c2 100644 --- a/src/IconScaleOutlined.tsx +++ b/src/IconScaleOutlined.tsx @@ -8,4 +8,4 @@ const IconScaleOutlined: React.FC = ({ ...props }) => ( ) -export { IconScaleOutlined as default } +export default IconScaleOutlined diff --git a/src/IconScaleOutlinedFilled.tsx b/src/IconScaleOutlinedFilled.tsx index ed1b9f5c6..826aa0dfd 100644 --- a/src/IconScaleOutlinedFilled.tsx +++ b/src/IconScaleOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconScaleOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconScaleOutlinedFilled as default } +export default IconScaleOutlinedFilled diff --git a/src/IconScaleRounded.tsx b/src/IconScaleRounded.tsx index 719bbce68..9f00d32af 100644 --- a/src/IconScaleRounded.tsx +++ b/src/IconScaleRounded.tsx @@ -8,4 +8,4 @@ const IconScaleRounded: React.FC = ({ ...props }) => ( ) -export { IconScaleRounded as default } +export default IconScaleRounded diff --git a/src/IconScaleRoundedFilled.tsx b/src/IconScaleRoundedFilled.tsx index 29015c8b2..fea0bb3f5 100644 --- a/src/IconScaleRoundedFilled.tsx +++ b/src/IconScaleRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconScaleRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconScaleRoundedFilled as default } +export default IconScaleRoundedFilled diff --git a/src/IconScaleSharp.tsx b/src/IconScaleSharp.tsx index cc543603f..28683b1bb 100644 --- a/src/IconScaleSharp.tsx +++ b/src/IconScaleSharp.tsx @@ -8,4 +8,4 @@ const IconScaleSharp: React.FC = ({ ...props }) => ( ) -export { IconScaleSharp as default } +export default IconScaleSharp diff --git a/src/IconScaleSharpFilled.tsx b/src/IconScaleSharpFilled.tsx index 6e4c7cfc7..cae91c7a0 100644 --- a/src/IconScaleSharpFilled.tsx +++ b/src/IconScaleSharpFilled.tsx @@ -8,4 +8,4 @@ const IconScaleSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconScaleSharpFilled as default } +export default IconScaleSharpFilled diff --git a/src/IconScanDeleteOutlined.tsx b/src/IconScanDeleteOutlined.tsx index 1ceb7b5ca..be3094532 100644 --- a/src/IconScanDeleteOutlined.tsx +++ b/src/IconScanDeleteOutlined.tsx @@ -8,4 +8,4 @@ const IconScanDeleteOutlined: React.FC = ({ ...props }) => ( ) -export { IconScanDeleteOutlined as default } +export default IconScanDeleteOutlined diff --git a/src/IconScanDeleteOutlinedFilled.tsx b/src/IconScanDeleteOutlinedFilled.tsx index bab6cb65b..91243a15b 100644 --- a/src/IconScanDeleteOutlinedFilled.tsx +++ b/src/IconScanDeleteOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconScanDeleteOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconScanDeleteOutlinedFilled as default } +export default IconScanDeleteOutlinedFilled diff --git a/src/IconScanDeleteRounded.tsx b/src/IconScanDeleteRounded.tsx index 8a29bda14..dabc16264 100644 --- a/src/IconScanDeleteRounded.tsx +++ b/src/IconScanDeleteRounded.tsx @@ -8,4 +8,4 @@ const IconScanDeleteRounded: React.FC = ({ ...props }) => ( ) -export { IconScanDeleteRounded as default } +export default IconScanDeleteRounded diff --git a/src/IconScanDeleteRoundedFilled.tsx b/src/IconScanDeleteRoundedFilled.tsx index 97e24d2cb..7e3325414 100644 --- a/src/IconScanDeleteRoundedFilled.tsx +++ b/src/IconScanDeleteRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconScanDeleteRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconScanDeleteRoundedFilled as default } +export default IconScanDeleteRoundedFilled diff --git a/src/IconScanDeleteSharp.tsx b/src/IconScanDeleteSharp.tsx index d397b760d..11b5c27fe 100644 --- a/src/IconScanDeleteSharp.tsx +++ b/src/IconScanDeleteSharp.tsx @@ -8,4 +8,4 @@ const IconScanDeleteSharp: React.FC = ({ ...props }) => ( ) -export { IconScanDeleteSharp as default } +export default IconScanDeleteSharp diff --git a/src/IconScanDeleteSharpFilled.tsx b/src/IconScanDeleteSharpFilled.tsx index 95b12632d..bbd9e57d4 100644 --- a/src/IconScanDeleteSharpFilled.tsx +++ b/src/IconScanDeleteSharpFilled.tsx @@ -8,4 +8,4 @@ const IconScanDeleteSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconScanDeleteSharpFilled as default } +export default IconScanDeleteSharpFilled diff --git a/src/IconScanOutlined.tsx b/src/IconScanOutlined.tsx index dadb10f2c..d89a56f2b 100644 --- a/src/IconScanOutlined.tsx +++ b/src/IconScanOutlined.tsx @@ -8,4 +8,4 @@ const IconScanOutlined: React.FC = ({ ...props }) => ( ) -export { IconScanOutlined as default } +export default IconScanOutlined diff --git a/src/IconScanOutlinedFilled.tsx b/src/IconScanOutlinedFilled.tsx index 64ae3c8bc..ac09d93ca 100644 --- a/src/IconScanOutlinedFilled.tsx +++ b/src/IconScanOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconScanOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconScanOutlinedFilled as default } +export default IconScanOutlinedFilled diff --git a/src/IconScanRounded.tsx b/src/IconScanRounded.tsx index 20783648c..c3d74aee6 100644 --- a/src/IconScanRounded.tsx +++ b/src/IconScanRounded.tsx @@ -8,4 +8,4 @@ const IconScanRounded: React.FC = ({ ...props }) => ( ) -export { IconScanRounded as default } +export default IconScanRounded diff --git a/src/IconScanRoundedFilled.tsx b/src/IconScanRoundedFilled.tsx index 2c3223c6e..a47ac78ab 100644 --- a/src/IconScanRoundedFilled.tsx +++ b/src/IconScanRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconScanRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconScanRoundedFilled as default } +export default IconScanRoundedFilled diff --git a/src/IconScanSharp.tsx b/src/IconScanSharp.tsx index ec8613f57..afdd5927a 100644 --- a/src/IconScanSharp.tsx +++ b/src/IconScanSharp.tsx @@ -8,4 +8,4 @@ const IconScanSharp: React.FC = ({ ...props }) => ( ) -export { IconScanSharp as default } +export default IconScanSharp diff --git a/src/IconScanSharpFilled.tsx b/src/IconScanSharpFilled.tsx index 2d56b97aa..0e3303cf4 100644 --- a/src/IconScanSharpFilled.tsx +++ b/src/IconScanSharpFilled.tsx @@ -8,4 +8,4 @@ const IconScanSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconScanSharpFilled as default } +export default IconScanSharpFilled diff --git a/src/IconScannerOutlined.tsx b/src/IconScannerOutlined.tsx index 7c7884c50..3322c3776 100644 --- a/src/IconScannerOutlined.tsx +++ b/src/IconScannerOutlined.tsx @@ -8,4 +8,4 @@ const IconScannerOutlined: React.FC = ({ ...props }) => ( ) -export { IconScannerOutlined as default } +export default IconScannerOutlined diff --git a/src/IconScannerOutlinedFilled.tsx b/src/IconScannerOutlinedFilled.tsx index cb3708451..14754cd52 100644 --- a/src/IconScannerOutlinedFilled.tsx +++ b/src/IconScannerOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconScannerOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconScannerOutlinedFilled as default } +export default IconScannerOutlinedFilled diff --git a/src/IconScannerRounded.tsx b/src/IconScannerRounded.tsx index 17bde15ad..f0dd48197 100644 --- a/src/IconScannerRounded.tsx +++ b/src/IconScannerRounded.tsx @@ -8,4 +8,4 @@ const IconScannerRounded: React.FC = ({ ...props }) => ( ) -export { IconScannerRounded as default } +export default IconScannerRounded diff --git a/src/IconScannerRoundedFilled.tsx b/src/IconScannerRoundedFilled.tsx index 8fc6fd4b4..b39180b52 100644 --- a/src/IconScannerRoundedFilled.tsx +++ b/src/IconScannerRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconScannerRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconScannerRoundedFilled as default } +export default IconScannerRoundedFilled diff --git a/src/IconScannerSharp.tsx b/src/IconScannerSharp.tsx index 704e3d2f7..02cbe92b0 100644 --- a/src/IconScannerSharp.tsx +++ b/src/IconScannerSharp.tsx @@ -8,4 +8,4 @@ const IconScannerSharp: React.FC = ({ ...props }) => ( ) -export { IconScannerSharp as default } +export default IconScannerSharp diff --git a/src/IconScannerSharpFilled.tsx b/src/IconScannerSharpFilled.tsx index aadea199d..077cfa5d0 100644 --- a/src/IconScannerSharpFilled.tsx +++ b/src/IconScannerSharpFilled.tsx @@ -8,4 +8,4 @@ const IconScannerSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconScannerSharpFilled as default } +export default IconScannerSharpFilled diff --git a/src/IconScatterPlotOutlined.tsx b/src/IconScatterPlotOutlined.tsx index 05fdc8b22..daaba57b9 100644 --- a/src/IconScatterPlotOutlined.tsx +++ b/src/IconScatterPlotOutlined.tsx @@ -8,4 +8,4 @@ const IconScatterPlotOutlined: React.FC = ({ ...props }) => ( ) -export { IconScatterPlotOutlined as default } +export default IconScatterPlotOutlined diff --git a/src/IconScatterPlotOutlinedFilled.tsx b/src/IconScatterPlotOutlinedFilled.tsx index cf103a3dd..faa3782b1 100644 --- a/src/IconScatterPlotOutlinedFilled.tsx +++ b/src/IconScatterPlotOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconScatterPlotOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconScatterPlotOutlinedFilled as default } +export default IconScatterPlotOutlinedFilled diff --git a/src/IconScatterPlotRounded.tsx b/src/IconScatterPlotRounded.tsx index 6aa187ebb..7698df8fb 100644 --- a/src/IconScatterPlotRounded.tsx +++ b/src/IconScatterPlotRounded.tsx @@ -8,4 +8,4 @@ const IconScatterPlotRounded: React.FC = ({ ...props }) => ( ) -export { IconScatterPlotRounded as default } +export default IconScatterPlotRounded diff --git a/src/IconScatterPlotRoundedFilled.tsx b/src/IconScatterPlotRoundedFilled.tsx index 22e48420a..1dcb07b3d 100644 --- a/src/IconScatterPlotRoundedFilled.tsx +++ b/src/IconScatterPlotRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconScatterPlotRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconScatterPlotRoundedFilled as default } +export default IconScatterPlotRoundedFilled diff --git a/src/IconScatterPlotSharp.tsx b/src/IconScatterPlotSharp.tsx index ac54dfcbe..be91e1343 100644 --- a/src/IconScatterPlotSharp.tsx +++ b/src/IconScatterPlotSharp.tsx @@ -8,4 +8,4 @@ const IconScatterPlotSharp: React.FC = ({ ...props }) => ( ) -export { IconScatterPlotSharp as default } +export default IconScatterPlotSharp diff --git a/src/IconScatterPlotSharpFilled.tsx b/src/IconScatterPlotSharpFilled.tsx index 1884179f7..16857aef5 100644 --- a/src/IconScatterPlotSharpFilled.tsx +++ b/src/IconScatterPlotSharpFilled.tsx @@ -8,4 +8,4 @@ const IconScatterPlotSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconScatterPlotSharpFilled as default } +export default IconScatterPlotSharpFilled diff --git a/src/IconSceneOutlined.tsx b/src/IconSceneOutlined.tsx index 97990d08d..117047e47 100644 --- a/src/IconSceneOutlined.tsx +++ b/src/IconSceneOutlined.tsx @@ -8,4 +8,4 @@ const IconSceneOutlined: React.FC = ({ ...props }) => ( ) -export { IconSceneOutlined as default } +export default IconSceneOutlined diff --git a/src/IconSceneOutlinedFilled.tsx b/src/IconSceneOutlinedFilled.tsx index b7ea8927e..0cc09aa30 100644 --- a/src/IconSceneOutlinedFilled.tsx +++ b/src/IconSceneOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconSceneOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconSceneOutlinedFilled as default } +export default IconSceneOutlinedFilled diff --git a/src/IconSceneRounded.tsx b/src/IconSceneRounded.tsx index 9dd533b91..8022037e9 100644 --- a/src/IconSceneRounded.tsx +++ b/src/IconSceneRounded.tsx @@ -8,4 +8,4 @@ const IconSceneRounded: React.FC = ({ ...props }) => ( ) -export { IconSceneRounded as default } +export default IconSceneRounded diff --git a/src/IconSceneRoundedFilled.tsx b/src/IconSceneRoundedFilled.tsx index c99187ab0..f89d29796 100644 --- a/src/IconSceneRoundedFilled.tsx +++ b/src/IconSceneRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconSceneRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconSceneRoundedFilled as default } +export default IconSceneRoundedFilled diff --git a/src/IconSceneSharp.tsx b/src/IconSceneSharp.tsx index 0018ecac8..557aac45b 100644 --- a/src/IconSceneSharp.tsx +++ b/src/IconSceneSharp.tsx @@ -8,4 +8,4 @@ const IconSceneSharp: React.FC = ({ ...props }) => ( ) -export { IconSceneSharp as default } +export default IconSceneSharp diff --git a/src/IconSceneSharpFilled.tsx b/src/IconSceneSharpFilled.tsx index 7c27ac0dc..f54343674 100644 --- a/src/IconSceneSharpFilled.tsx +++ b/src/IconSceneSharpFilled.tsx @@ -8,4 +8,4 @@ const IconSceneSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconSceneSharpFilled as default } +export default IconSceneSharpFilled diff --git a/src/IconScheduleOutlined.tsx b/src/IconScheduleOutlined.tsx index 0982588cb..d02e824a1 100644 --- a/src/IconScheduleOutlined.tsx +++ b/src/IconScheduleOutlined.tsx @@ -8,4 +8,4 @@ const IconScheduleOutlined: React.FC = ({ ...props }) => ( ) -export { IconScheduleOutlined as default } +export default IconScheduleOutlined diff --git a/src/IconScheduleOutlinedFilled.tsx b/src/IconScheduleOutlinedFilled.tsx index 75f73d81c..2d55668bf 100644 --- a/src/IconScheduleOutlinedFilled.tsx +++ b/src/IconScheduleOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconScheduleOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconScheduleOutlinedFilled as default } +export default IconScheduleOutlinedFilled diff --git a/src/IconScheduleRounded.tsx b/src/IconScheduleRounded.tsx index e0370d7d1..0b4794406 100644 --- a/src/IconScheduleRounded.tsx +++ b/src/IconScheduleRounded.tsx @@ -8,4 +8,4 @@ const IconScheduleRounded: React.FC = ({ ...props }) => ( ) -export { IconScheduleRounded as default } +export default IconScheduleRounded diff --git a/src/IconScheduleRoundedFilled.tsx b/src/IconScheduleRoundedFilled.tsx index 215b053ea..0c238af6a 100644 --- a/src/IconScheduleRoundedFilled.tsx +++ b/src/IconScheduleRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconScheduleRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconScheduleRoundedFilled as default } +export default IconScheduleRoundedFilled diff --git a/src/IconScheduleSendOutlined.tsx b/src/IconScheduleSendOutlined.tsx index 2b8f26a82..a27e21d51 100644 --- a/src/IconScheduleSendOutlined.tsx +++ b/src/IconScheduleSendOutlined.tsx @@ -8,4 +8,4 @@ const IconScheduleSendOutlined: React.FC = ({ ...props }) => ( ) -export { IconScheduleSendOutlined as default } +export default IconScheduleSendOutlined diff --git a/src/IconScheduleSendOutlinedFilled.tsx b/src/IconScheduleSendOutlinedFilled.tsx index ab27d34af..b634c391c 100644 --- a/src/IconScheduleSendOutlinedFilled.tsx +++ b/src/IconScheduleSendOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconScheduleSendOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconScheduleSendOutlinedFilled as default } +export default IconScheduleSendOutlinedFilled diff --git a/src/IconScheduleSendRounded.tsx b/src/IconScheduleSendRounded.tsx index b96e5d740..d1352dc01 100644 --- a/src/IconScheduleSendRounded.tsx +++ b/src/IconScheduleSendRounded.tsx @@ -8,4 +8,4 @@ const IconScheduleSendRounded: React.FC = ({ ...props }) => ( ) -export { IconScheduleSendRounded as default } +export default IconScheduleSendRounded diff --git a/src/IconScheduleSendRoundedFilled.tsx b/src/IconScheduleSendRoundedFilled.tsx index aac5d30df..6cee4a5b7 100644 --- a/src/IconScheduleSendRoundedFilled.tsx +++ b/src/IconScheduleSendRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconScheduleSendRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconScheduleSendRoundedFilled as default } +export default IconScheduleSendRoundedFilled diff --git a/src/IconScheduleSendSharp.tsx b/src/IconScheduleSendSharp.tsx index e4cbaba12..b9b15a0e8 100644 --- a/src/IconScheduleSendSharp.tsx +++ b/src/IconScheduleSendSharp.tsx @@ -8,4 +8,4 @@ const IconScheduleSendSharp: React.FC = ({ ...props }) => ( ) -export { IconScheduleSendSharp as default } +export default IconScheduleSendSharp diff --git a/src/IconScheduleSendSharpFilled.tsx b/src/IconScheduleSendSharpFilled.tsx index a579aa7c8..44d5430e7 100644 --- a/src/IconScheduleSendSharpFilled.tsx +++ b/src/IconScheduleSendSharpFilled.tsx @@ -8,4 +8,4 @@ const IconScheduleSendSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconScheduleSendSharpFilled as default } +export default IconScheduleSendSharpFilled diff --git a/src/IconScheduleSharp.tsx b/src/IconScheduleSharp.tsx index 32b26afad..e679d177e 100644 --- a/src/IconScheduleSharp.tsx +++ b/src/IconScheduleSharp.tsx @@ -8,4 +8,4 @@ const IconScheduleSharp: React.FC = ({ ...props }) => ( ) -export { IconScheduleSharp as default } +export default IconScheduleSharp diff --git a/src/IconScheduleSharpFilled.tsx b/src/IconScheduleSharpFilled.tsx index 358c51605..a230cb424 100644 --- a/src/IconScheduleSharpFilled.tsx +++ b/src/IconScheduleSharpFilled.tsx @@ -8,4 +8,4 @@ const IconScheduleSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconScheduleSharpFilled as default } +export default IconScheduleSharpFilled diff --git a/src/IconSchemaOutlined.tsx b/src/IconSchemaOutlined.tsx index 2493a5029..69d80b67e 100644 --- a/src/IconSchemaOutlined.tsx +++ b/src/IconSchemaOutlined.tsx @@ -8,4 +8,4 @@ const IconSchemaOutlined: React.FC = ({ ...props }) => ( ) -export { IconSchemaOutlined as default } +export default IconSchemaOutlined diff --git a/src/IconSchemaOutlinedFilled.tsx b/src/IconSchemaOutlinedFilled.tsx index e447783e1..8ce543082 100644 --- a/src/IconSchemaOutlinedFilled.tsx +++ b/src/IconSchemaOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconSchemaOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconSchemaOutlinedFilled as default } +export default IconSchemaOutlinedFilled diff --git a/src/IconSchemaRounded.tsx b/src/IconSchemaRounded.tsx index 3277ce772..71401931c 100644 --- a/src/IconSchemaRounded.tsx +++ b/src/IconSchemaRounded.tsx @@ -8,4 +8,4 @@ const IconSchemaRounded: React.FC = ({ ...props }) => ( ) -export { IconSchemaRounded as default } +export default IconSchemaRounded diff --git a/src/IconSchemaRoundedFilled.tsx b/src/IconSchemaRoundedFilled.tsx index 5e612e72a..d88f2bd6b 100644 --- a/src/IconSchemaRoundedFilled.tsx +++ b/src/IconSchemaRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconSchemaRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconSchemaRoundedFilled as default } +export default IconSchemaRoundedFilled diff --git a/src/IconSchemaSharp.tsx b/src/IconSchemaSharp.tsx index e9e7e8364..f171045b2 100644 --- a/src/IconSchemaSharp.tsx +++ b/src/IconSchemaSharp.tsx @@ -8,4 +8,4 @@ const IconSchemaSharp: React.FC = ({ ...props }) => ( ) -export { IconSchemaSharp as default } +export default IconSchemaSharp diff --git a/src/IconSchemaSharpFilled.tsx b/src/IconSchemaSharpFilled.tsx index 3a7dd6228..5bcede6d3 100644 --- a/src/IconSchemaSharpFilled.tsx +++ b/src/IconSchemaSharpFilled.tsx @@ -8,4 +8,4 @@ const IconSchemaSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconSchemaSharpFilled as default } +export default IconSchemaSharpFilled diff --git a/src/IconSchoolOutlined.tsx b/src/IconSchoolOutlined.tsx index c5a239acb..0d2eacd30 100644 --- a/src/IconSchoolOutlined.tsx +++ b/src/IconSchoolOutlined.tsx @@ -8,4 +8,4 @@ const IconSchoolOutlined: React.FC = ({ ...props }) => ( ) -export { IconSchoolOutlined as default } +export default IconSchoolOutlined diff --git a/src/IconSchoolOutlinedFilled.tsx b/src/IconSchoolOutlinedFilled.tsx index a303f92d5..a674850f5 100644 --- a/src/IconSchoolOutlinedFilled.tsx +++ b/src/IconSchoolOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconSchoolOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconSchoolOutlinedFilled as default } +export default IconSchoolOutlinedFilled diff --git a/src/IconSchoolRounded.tsx b/src/IconSchoolRounded.tsx index a1059a02b..f4a9aaa69 100644 --- a/src/IconSchoolRounded.tsx +++ b/src/IconSchoolRounded.tsx @@ -8,4 +8,4 @@ const IconSchoolRounded: React.FC = ({ ...props }) => ( ) -export { IconSchoolRounded as default } +export default IconSchoolRounded diff --git a/src/IconSchoolRoundedFilled.tsx b/src/IconSchoolRoundedFilled.tsx index e4b84f3ff..45bf2e44e 100644 --- a/src/IconSchoolRoundedFilled.tsx +++ b/src/IconSchoolRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconSchoolRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconSchoolRoundedFilled as default } +export default IconSchoolRoundedFilled diff --git a/src/IconSchoolSharp.tsx b/src/IconSchoolSharp.tsx index 306453f0c..60f2cdf29 100644 --- a/src/IconSchoolSharp.tsx +++ b/src/IconSchoolSharp.tsx @@ -8,4 +8,4 @@ const IconSchoolSharp: React.FC = ({ ...props }) => ( ) -export { IconSchoolSharp as default } +export default IconSchoolSharp diff --git a/src/IconSchoolSharpFilled.tsx b/src/IconSchoolSharpFilled.tsx index b99940aac..b31c60050 100644 --- a/src/IconSchoolSharpFilled.tsx +++ b/src/IconSchoolSharpFilled.tsx @@ -8,4 +8,4 @@ const IconSchoolSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconSchoolSharpFilled as default } +export default IconSchoolSharpFilled diff --git a/src/IconScienceOffOutlined.tsx b/src/IconScienceOffOutlined.tsx index 558cdc019..94db4fead 100644 --- a/src/IconScienceOffOutlined.tsx +++ b/src/IconScienceOffOutlined.tsx @@ -8,4 +8,4 @@ const IconScienceOffOutlined: React.FC = ({ ...props }) => ( ) -export { IconScienceOffOutlined as default } +export default IconScienceOffOutlined diff --git a/src/IconScienceOffOutlinedFilled.tsx b/src/IconScienceOffOutlinedFilled.tsx index dca7e802f..aa49e406d 100644 --- a/src/IconScienceOffOutlinedFilled.tsx +++ b/src/IconScienceOffOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconScienceOffOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconScienceOffOutlinedFilled as default } +export default IconScienceOffOutlinedFilled diff --git a/src/IconScienceOffRounded.tsx b/src/IconScienceOffRounded.tsx index 1decf01f2..d26d0d1c1 100644 --- a/src/IconScienceOffRounded.tsx +++ b/src/IconScienceOffRounded.tsx @@ -8,4 +8,4 @@ const IconScienceOffRounded: React.FC = ({ ...props }) => ( ) -export { IconScienceOffRounded as default } +export default IconScienceOffRounded diff --git a/src/IconScienceOffRoundedFilled.tsx b/src/IconScienceOffRoundedFilled.tsx index 9f7c487ea..6f3c43fab 100644 --- a/src/IconScienceOffRoundedFilled.tsx +++ b/src/IconScienceOffRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconScienceOffRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconScienceOffRoundedFilled as default } +export default IconScienceOffRoundedFilled diff --git a/src/IconScienceOffSharp.tsx b/src/IconScienceOffSharp.tsx index dca810657..499e94c73 100644 --- a/src/IconScienceOffSharp.tsx +++ b/src/IconScienceOffSharp.tsx @@ -8,4 +8,4 @@ const IconScienceOffSharp: React.FC = ({ ...props }) => ( ) -export { IconScienceOffSharp as default } +export default IconScienceOffSharp diff --git a/src/IconScienceOffSharpFilled.tsx b/src/IconScienceOffSharpFilled.tsx index 0ba67c087..de7f6385c 100644 --- a/src/IconScienceOffSharpFilled.tsx +++ b/src/IconScienceOffSharpFilled.tsx @@ -8,4 +8,4 @@ const IconScienceOffSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconScienceOffSharpFilled as default } +export default IconScienceOffSharpFilled diff --git a/src/IconScienceOutlined.tsx b/src/IconScienceOutlined.tsx index 36c29fcae..a55aca27c 100644 --- a/src/IconScienceOutlined.tsx +++ b/src/IconScienceOutlined.tsx @@ -8,4 +8,4 @@ const IconScienceOutlined: React.FC = ({ ...props }) => ( ) -export { IconScienceOutlined as default } +export default IconScienceOutlined diff --git a/src/IconScienceOutlinedFilled.tsx b/src/IconScienceOutlinedFilled.tsx index cb62c0990..bd2163b65 100644 --- a/src/IconScienceOutlinedFilled.tsx +++ b/src/IconScienceOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconScienceOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconScienceOutlinedFilled as default } +export default IconScienceOutlinedFilled diff --git a/src/IconScienceRounded.tsx b/src/IconScienceRounded.tsx index 5cc506efc..2405e5c07 100644 --- a/src/IconScienceRounded.tsx +++ b/src/IconScienceRounded.tsx @@ -8,4 +8,4 @@ const IconScienceRounded: React.FC = ({ ...props }) => ( ) -export { IconScienceRounded as default } +export default IconScienceRounded diff --git a/src/IconScienceRoundedFilled.tsx b/src/IconScienceRoundedFilled.tsx index 7736ca8b5..94b398745 100644 --- a/src/IconScienceRoundedFilled.tsx +++ b/src/IconScienceRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconScienceRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconScienceRoundedFilled as default } +export default IconScienceRoundedFilled diff --git a/src/IconScienceSharp.tsx b/src/IconScienceSharp.tsx index 48c2e37c3..05846039a 100644 --- a/src/IconScienceSharp.tsx +++ b/src/IconScienceSharp.tsx @@ -8,4 +8,4 @@ const IconScienceSharp: React.FC = ({ ...props }) => ( ) -export { IconScienceSharp as default } +export default IconScienceSharp diff --git a/src/IconScienceSharpFilled.tsx b/src/IconScienceSharpFilled.tsx index 7732e4284..f415a829a 100644 --- a/src/IconScienceSharpFilled.tsx +++ b/src/IconScienceSharpFilled.tsx @@ -8,4 +8,4 @@ const IconScienceSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconScienceSharpFilled as default } +export default IconScienceSharpFilled diff --git a/src/IconScooterOutlined.tsx b/src/IconScooterOutlined.tsx index 38fb63359..1709918aa 100644 --- a/src/IconScooterOutlined.tsx +++ b/src/IconScooterOutlined.tsx @@ -8,4 +8,4 @@ const IconScooterOutlined: React.FC = ({ ...props }) => ( ) -export { IconScooterOutlined as default } +export default IconScooterOutlined diff --git a/src/IconScooterOutlinedFilled.tsx b/src/IconScooterOutlinedFilled.tsx index 15ada619a..9a540778b 100644 --- a/src/IconScooterOutlinedFilled.tsx +++ b/src/IconScooterOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconScooterOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconScooterOutlinedFilled as default } +export default IconScooterOutlinedFilled diff --git a/src/IconScooterRounded.tsx b/src/IconScooterRounded.tsx index 911b9b240..e30722f0e 100644 --- a/src/IconScooterRounded.tsx +++ b/src/IconScooterRounded.tsx @@ -8,4 +8,4 @@ const IconScooterRounded: React.FC = ({ ...props }) => ( ) -export { IconScooterRounded as default } +export default IconScooterRounded diff --git a/src/IconScooterRoundedFilled.tsx b/src/IconScooterRoundedFilled.tsx index c6c3d4c29..cb7d502d3 100644 --- a/src/IconScooterRoundedFilled.tsx +++ b/src/IconScooterRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconScooterRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconScooterRoundedFilled as default } +export default IconScooterRoundedFilled diff --git a/src/IconScooterSharp.tsx b/src/IconScooterSharp.tsx index c394351cf..927c7bcf3 100644 --- a/src/IconScooterSharp.tsx +++ b/src/IconScooterSharp.tsx @@ -8,4 +8,4 @@ const IconScooterSharp: React.FC = ({ ...props }) => ( ) -export { IconScooterSharp as default } +export default IconScooterSharp diff --git a/src/IconScooterSharpFilled.tsx b/src/IconScooterSharpFilled.tsx index 16275c536..daf6b5b2d 100644 --- a/src/IconScooterSharpFilled.tsx +++ b/src/IconScooterSharpFilled.tsx @@ -8,4 +8,4 @@ const IconScooterSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconScooterSharpFilled as default } +export default IconScooterSharpFilled diff --git a/src/IconScoreOutlined.tsx b/src/IconScoreOutlined.tsx index 378cade7e..4fd67b11f 100644 --- a/src/IconScoreOutlined.tsx +++ b/src/IconScoreOutlined.tsx @@ -8,4 +8,4 @@ const IconScoreOutlined: React.FC = ({ ...props }) => ( ) -export { IconScoreOutlined as default } +export default IconScoreOutlined diff --git a/src/IconScoreOutlinedFilled.tsx b/src/IconScoreOutlinedFilled.tsx index 907b97211..f10bd9a2b 100644 --- a/src/IconScoreOutlinedFilled.tsx +++ b/src/IconScoreOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconScoreOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconScoreOutlinedFilled as default } +export default IconScoreOutlinedFilled diff --git a/src/IconScoreRounded.tsx b/src/IconScoreRounded.tsx index eb59571ba..ac0178ecb 100644 --- a/src/IconScoreRounded.tsx +++ b/src/IconScoreRounded.tsx @@ -8,4 +8,4 @@ const IconScoreRounded: React.FC = ({ ...props }) => ( ) -export { IconScoreRounded as default } +export default IconScoreRounded diff --git a/src/IconScoreRoundedFilled.tsx b/src/IconScoreRoundedFilled.tsx index 5be981095..5d3a9eb48 100644 --- a/src/IconScoreRoundedFilled.tsx +++ b/src/IconScoreRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconScoreRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconScoreRoundedFilled as default } +export default IconScoreRoundedFilled diff --git a/src/IconScoreSharp.tsx b/src/IconScoreSharp.tsx index 734d3a275..34df2c6ea 100644 --- a/src/IconScoreSharp.tsx +++ b/src/IconScoreSharp.tsx @@ -8,4 +8,4 @@ const IconScoreSharp: React.FC = ({ ...props }) => ( ) -export { IconScoreSharp as default } +export default IconScoreSharp diff --git a/src/IconScoreSharpFilled.tsx b/src/IconScoreSharpFilled.tsx index 4fff18f3e..2daf3b786 100644 --- a/src/IconScoreSharpFilled.tsx +++ b/src/IconScoreSharpFilled.tsx @@ -8,4 +8,4 @@ const IconScoreSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconScoreSharpFilled as default } +export default IconScoreSharpFilled diff --git a/src/IconScoreboardOutlined.tsx b/src/IconScoreboardOutlined.tsx index e37898c53..3f961ab23 100644 --- a/src/IconScoreboardOutlined.tsx +++ b/src/IconScoreboardOutlined.tsx @@ -8,4 +8,4 @@ const IconScoreboardOutlined: React.FC = ({ ...props }) => ( ) -export { IconScoreboardOutlined as default } +export default IconScoreboardOutlined diff --git a/src/IconScoreboardOutlinedFilled.tsx b/src/IconScoreboardOutlinedFilled.tsx index 60b2b02a9..aa87c5582 100644 --- a/src/IconScoreboardOutlinedFilled.tsx +++ b/src/IconScoreboardOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconScoreboardOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconScoreboardOutlinedFilled as default } +export default IconScoreboardOutlinedFilled diff --git a/src/IconScoreboardRounded.tsx b/src/IconScoreboardRounded.tsx index f47de8069..2d23f14d5 100644 --- a/src/IconScoreboardRounded.tsx +++ b/src/IconScoreboardRounded.tsx @@ -8,4 +8,4 @@ const IconScoreboardRounded: React.FC = ({ ...props }) => ( ) -export { IconScoreboardRounded as default } +export default IconScoreboardRounded diff --git a/src/IconScoreboardRoundedFilled.tsx b/src/IconScoreboardRoundedFilled.tsx index 6ae8dd905..e886c29c9 100644 --- a/src/IconScoreboardRoundedFilled.tsx +++ b/src/IconScoreboardRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconScoreboardRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconScoreboardRoundedFilled as default } +export default IconScoreboardRoundedFilled diff --git a/src/IconScoreboardSharp.tsx b/src/IconScoreboardSharp.tsx index 0e7836040..d41516d2f 100644 --- a/src/IconScoreboardSharp.tsx +++ b/src/IconScoreboardSharp.tsx @@ -8,4 +8,4 @@ const IconScoreboardSharp: React.FC = ({ ...props }) => ( ) -export { IconScoreboardSharp as default } +export default IconScoreboardSharp diff --git a/src/IconScoreboardSharpFilled.tsx b/src/IconScoreboardSharpFilled.tsx index 361c2c07f..518ebb8cb 100644 --- a/src/IconScoreboardSharpFilled.tsx +++ b/src/IconScoreboardSharpFilled.tsx @@ -8,4 +8,4 @@ const IconScoreboardSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconScoreboardSharpFilled as default } +export default IconScoreboardSharpFilled diff --git a/src/IconScreenLockLandscapeOutlined.tsx b/src/IconScreenLockLandscapeOutlined.tsx index 8d94524fd..7851c5e71 100644 --- a/src/IconScreenLockLandscapeOutlined.tsx +++ b/src/IconScreenLockLandscapeOutlined.tsx @@ -8,4 +8,4 @@ const IconScreenLockLandscapeOutlined: React.FC = ({ ...props }) => ( ) -export { IconScreenLockLandscapeOutlined as default } +export default IconScreenLockLandscapeOutlined diff --git a/src/IconScreenLockLandscapeOutlinedFilled.tsx b/src/IconScreenLockLandscapeOutlinedFilled.tsx index d6624b7eb..e53495baa 100644 --- a/src/IconScreenLockLandscapeOutlinedFilled.tsx +++ b/src/IconScreenLockLandscapeOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconScreenLockLandscapeOutlinedFilled: React.FC = ({ ) -export { IconScreenLockLandscapeOutlinedFilled as default } +export default IconScreenLockLandscapeOutlinedFilled diff --git a/src/IconScreenLockLandscapeRounded.tsx b/src/IconScreenLockLandscapeRounded.tsx index aa1ce9732..163d5feb6 100644 --- a/src/IconScreenLockLandscapeRounded.tsx +++ b/src/IconScreenLockLandscapeRounded.tsx @@ -8,4 +8,4 @@ const IconScreenLockLandscapeRounded: React.FC = ({ ...props }) => ( ) -export { IconScreenLockLandscapeRounded as default } +export default IconScreenLockLandscapeRounded diff --git a/src/IconScreenLockLandscapeRoundedFilled.tsx b/src/IconScreenLockLandscapeRoundedFilled.tsx index 8c915f0d5..ee8dccd04 100644 --- a/src/IconScreenLockLandscapeRoundedFilled.tsx +++ b/src/IconScreenLockLandscapeRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconScreenLockLandscapeRoundedFilled: React.FC = ({ ) -export { IconScreenLockLandscapeRoundedFilled as default } +export default IconScreenLockLandscapeRoundedFilled diff --git a/src/IconScreenLockLandscapeSharp.tsx b/src/IconScreenLockLandscapeSharp.tsx index a4c43008c..d6bcbc36c 100644 --- a/src/IconScreenLockLandscapeSharp.tsx +++ b/src/IconScreenLockLandscapeSharp.tsx @@ -8,4 +8,4 @@ const IconScreenLockLandscapeSharp: React.FC = ({ ...props }) => ( ) -export { IconScreenLockLandscapeSharp as default } +export default IconScreenLockLandscapeSharp diff --git a/src/IconScreenLockLandscapeSharpFilled.tsx b/src/IconScreenLockLandscapeSharpFilled.tsx index f03cc42f8..1acbd6f5a 100644 --- a/src/IconScreenLockLandscapeSharpFilled.tsx +++ b/src/IconScreenLockLandscapeSharpFilled.tsx @@ -10,4 +10,4 @@ const IconScreenLockLandscapeSharpFilled: React.FC = ({ ) -export { IconScreenLockLandscapeSharpFilled as default } +export default IconScreenLockLandscapeSharpFilled diff --git a/src/IconScreenLockPortraitOutlined.tsx b/src/IconScreenLockPortraitOutlined.tsx index 20d45a32f..740c6daa7 100644 --- a/src/IconScreenLockPortraitOutlined.tsx +++ b/src/IconScreenLockPortraitOutlined.tsx @@ -8,4 +8,4 @@ const IconScreenLockPortraitOutlined: React.FC = ({ ...props }) => ( ) -export { IconScreenLockPortraitOutlined as default } +export default IconScreenLockPortraitOutlined diff --git a/src/IconScreenLockPortraitOutlinedFilled.tsx b/src/IconScreenLockPortraitOutlinedFilled.tsx index 5c643a08d..f824a33a0 100644 --- a/src/IconScreenLockPortraitOutlinedFilled.tsx +++ b/src/IconScreenLockPortraitOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconScreenLockPortraitOutlinedFilled: React.FC = ({ ) -export { IconScreenLockPortraitOutlinedFilled as default } +export default IconScreenLockPortraitOutlinedFilled diff --git a/src/IconScreenLockPortraitRounded.tsx b/src/IconScreenLockPortraitRounded.tsx index 62f9128b5..b90bfb1fd 100644 --- a/src/IconScreenLockPortraitRounded.tsx +++ b/src/IconScreenLockPortraitRounded.tsx @@ -8,4 +8,4 @@ const IconScreenLockPortraitRounded: React.FC = ({ ...props }) => ( ) -export { IconScreenLockPortraitRounded as default } +export default IconScreenLockPortraitRounded diff --git a/src/IconScreenLockPortraitRoundedFilled.tsx b/src/IconScreenLockPortraitRoundedFilled.tsx index 90aa3e78c..86486fd0f 100644 --- a/src/IconScreenLockPortraitRoundedFilled.tsx +++ b/src/IconScreenLockPortraitRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconScreenLockPortraitRoundedFilled: React.FC = ({ ) -export { IconScreenLockPortraitRoundedFilled as default } +export default IconScreenLockPortraitRoundedFilled diff --git a/src/IconScreenLockPortraitSharp.tsx b/src/IconScreenLockPortraitSharp.tsx index f1d5bf113..beec09d0b 100644 --- a/src/IconScreenLockPortraitSharp.tsx +++ b/src/IconScreenLockPortraitSharp.tsx @@ -8,4 +8,4 @@ const IconScreenLockPortraitSharp: React.FC = ({ ...props }) => ( ) -export { IconScreenLockPortraitSharp as default } +export default IconScreenLockPortraitSharp diff --git a/src/IconScreenLockPortraitSharpFilled.tsx b/src/IconScreenLockPortraitSharpFilled.tsx index c2862ad6f..4b7d03fa3 100644 --- a/src/IconScreenLockPortraitSharpFilled.tsx +++ b/src/IconScreenLockPortraitSharpFilled.tsx @@ -10,4 +10,4 @@ const IconScreenLockPortraitSharpFilled: React.FC = ({ ) -export { IconScreenLockPortraitSharpFilled as default } +export default IconScreenLockPortraitSharpFilled diff --git a/src/IconScreenLockRotationOutlined.tsx b/src/IconScreenLockRotationOutlined.tsx index 2658baa80..11bcb35a1 100644 --- a/src/IconScreenLockRotationOutlined.tsx +++ b/src/IconScreenLockRotationOutlined.tsx @@ -8,4 +8,4 @@ const IconScreenLockRotationOutlined: React.FC = ({ ...props }) => ( ) -export { IconScreenLockRotationOutlined as default } +export default IconScreenLockRotationOutlined diff --git a/src/IconScreenLockRotationOutlinedFilled.tsx b/src/IconScreenLockRotationOutlinedFilled.tsx index 1c7fe57b8..1ee67fb99 100644 --- a/src/IconScreenLockRotationOutlinedFilled.tsx +++ b/src/IconScreenLockRotationOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconScreenLockRotationOutlinedFilled: React.FC = ({ ) -export { IconScreenLockRotationOutlinedFilled as default } +export default IconScreenLockRotationOutlinedFilled diff --git a/src/IconScreenLockRotationRounded.tsx b/src/IconScreenLockRotationRounded.tsx index eb0e155ef..57aaa96cc 100644 --- a/src/IconScreenLockRotationRounded.tsx +++ b/src/IconScreenLockRotationRounded.tsx @@ -8,4 +8,4 @@ const IconScreenLockRotationRounded: React.FC = ({ ...props }) => ( ) -export { IconScreenLockRotationRounded as default } +export default IconScreenLockRotationRounded diff --git a/src/IconScreenLockRotationRoundedFilled.tsx b/src/IconScreenLockRotationRoundedFilled.tsx index 894bec315..f06a7dce5 100644 --- a/src/IconScreenLockRotationRoundedFilled.tsx +++ b/src/IconScreenLockRotationRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconScreenLockRotationRoundedFilled: React.FC = ({ ) -export { IconScreenLockRotationRoundedFilled as default } +export default IconScreenLockRotationRoundedFilled diff --git a/src/IconScreenLockRotationSharp.tsx b/src/IconScreenLockRotationSharp.tsx index 0e0cf0c91..b1eed81fc 100644 --- a/src/IconScreenLockRotationSharp.tsx +++ b/src/IconScreenLockRotationSharp.tsx @@ -8,4 +8,4 @@ const IconScreenLockRotationSharp: React.FC = ({ ...props }) => ( ) -export { IconScreenLockRotationSharp as default } +export default IconScreenLockRotationSharp diff --git a/src/IconScreenLockRotationSharpFilled.tsx b/src/IconScreenLockRotationSharpFilled.tsx index fb2ecb1d8..aa226f1d0 100644 --- a/src/IconScreenLockRotationSharpFilled.tsx +++ b/src/IconScreenLockRotationSharpFilled.tsx @@ -10,4 +10,4 @@ const IconScreenLockRotationSharpFilled: React.FC = ({ ) -export { IconScreenLockRotationSharpFilled as default } +export default IconScreenLockRotationSharpFilled diff --git a/src/IconScreenRecordOutlined.tsx b/src/IconScreenRecordOutlined.tsx index 520dba98b..72ed0784c 100644 --- a/src/IconScreenRecordOutlined.tsx +++ b/src/IconScreenRecordOutlined.tsx @@ -8,4 +8,4 @@ const IconScreenRecordOutlined: React.FC = ({ ...props }) => ( ) -export { IconScreenRecordOutlined as default } +export default IconScreenRecordOutlined diff --git a/src/IconScreenRecordOutlinedFilled.tsx b/src/IconScreenRecordOutlinedFilled.tsx index f7e438c15..5aeb78c1a 100644 --- a/src/IconScreenRecordOutlinedFilled.tsx +++ b/src/IconScreenRecordOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconScreenRecordOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconScreenRecordOutlinedFilled as default } +export default IconScreenRecordOutlinedFilled diff --git a/src/IconScreenRecordRounded.tsx b/src/IconScreenRecordRounded.tsx index 574631f2d..08f0eae78 100644 --- a/src/IconScreenRecordRounded.tsx +++ b/src/IconScreenRecordRounded.tsx @@ -8,4 +8,4 @@ const IconScreenRecordRounded: React.FC = ({ ...props }) => ( ) -export { IconScreenRecordRounded as default } +export default IconScreenRecordRounded diff --git a/src/IconScreenRecordRoundedFilled.tsx b/src/IconScreenRecordRoundedFilled.tsx index a1b531df0..da8f7252c 100644 --- a/src/IconScreenRecordRoundedFilled.tsx +++ b/src/IconScreenRecordRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconScreenRecordRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconScreenRecordRoundedFilled as default } +export default IconScreenRecordRoundedFilled diff --git a/src/IconScreenRecordSharp.tsx b/src/IconScreenRecordSharp.tsx index 57df37992..debae789d 100644 --- a/src/IconScreenRecordSharp.tsx +++ b/src/IconScreenRecordSharp.tsx @@ -8,4 +8,4 @@ const IconScreenRecordSharp: React.FC = ({ ...props }) => ( ) -export { IconScreenRecordSharp as default } +export default IconScreenRecordSharp diff --git a/src/IconScreenRecordSharpFilled.tsx b/src/IconScreenRecordSharpFilled.tsx index d3fb6baad..4bc125561 100644 --- a/src/IconScreenRecordSharpFilled.tsx +++ b/src/IconScreenRecordSharpFilled.tsx @@ -8,4 +8,4 @@ const IconScreenRecordSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconScreenRecordSharpFilled as default } +export default IconScreenRecordSharpFilled diff --git a/src/IconScreenRotationAltOutlined.tsx b/src/IconScreenRotationAltOutlined.tsx index 0e1c0ba0d..0f082e31d 100644 --- a/src/IconScreenRotationAltOutlined.tsx +++ b/src/IconScreenRotationAltOutlined.tsx @@ -8,4 +8,4 @@ const IconScreenRotationAltOutlined: React.FC = ({ ...props }) => ( ) -export { IconScreenRotationAltOutlined as default } +export default IconScreenRotationAltOutlined diff --git a/src/IconScreenRotationAltOutlinedFilled.tsx b/src/IconScreenRotationAltOutlinedFilled.tsx index d4e7d55da..671b81606 100644 --- a/src/IconScreenRotationAltOutlinedFilled.tsx +++ b/src/IconScreenRotationAltOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconScreenRotationAltOutlinedFilled: React.FC = ({ ) -export { IconScreenRotationAltOutlinedFilled as default } +export default IconScreenRotationAltOutlinedFilled diff --git a/src/IconScreenRotationAltRounded.tsx b/src/IconScreenRotationAltRounded.tsx index a92dff6f0..a7afbac30 100644 --- a/src/IconScreenRotationAltRounded.tsx +++ b/src/IconScreenRotationAltRounded.tsx @@ -8,4 +8,4 @@ const IconScreenRotationAltRounded: React.FC = ({ ...props }) => ( ) -export { IconScreenRotationAltRounded as default } +export default IconScreenRotationAltRounded diff --git a/src/IconScreenRotationAltRoundedFilled.tsx b/src/IconScreenRotationAltRoundedFilled.tsx index 1caed13d3..39edbf79b 100644 --- a/src/IconScreenRotationAltRoundedFilled.tsx +++ b/src/IconScreenRotationAltRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconScreenRotationAltRoundedFilled: React.FC = ({ ) -export { IconScreenRotationAltRoundedFilled as default } +export default IconScreenRotationAltRoundedFilled diff --git a/src/IconScreenRotationAltSharp.tsx b/src/IconScreenRotationAltSharp.tsx index ac618fa6f..de50aaa9a 100644 --- a/src/IconScreenRotationAltSharp.tsx +++ b/src/IconScreenRotationAltSharp.tsx @@ -8,4 +8,4 @@ const IconScreenRotationAltSharp: React.FC = ({ ...props }) => ( ) -export { IconScreenRotationAltSharp as default } +export default IconScreenRotationAltSharp diff --git a/src/IconScreenRotationAltSharpFilled.tsx b/src/IconScreenRotationAltSharpFilled.tsx index 868738e26..3b6cfdf6c 100644 --- a/src/IconScreenRotationAltSharpFilled.tsx +++ b/src/IconScreenRotationAltSharpFilled.tsx @@ -10,4 +10,4 @@ const IconScreenRotationAltSharpFilled: React.FC = ({ ) -export { IconScreenRotationAltSharpFilled as default } +export default IconScreenRotationAltSharpFilled diff --git a/src/IconScreenRotationOutlined.tsx b/src/IconScreenRotationOutlined.tsx index 03403732c..1adda8980 100644 --- a/src/IconScreenRotationOutlined.tsx +++ b/src/IconScreenRotationOutlined.tsx @@ -8,4 +8,4 @@ const IconScreenRotationOutlined: React.FC = ({ ...props }) => ( ) -export { IconScreenRotationOutlined as default } +export default IconScreenRotationOutlined diff --git a/src/IconScreenRotationOutlinedFilled.tsx b/src/IconScreenRotationOutlinedFilled.tsx index ca21bebb1..593ce93bb 100644 --- a/src/IconScreenRotationOutlinedFilled.tsx +++ b/src/IconScreenRotationOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconScreenRotationOutlinedFilled: React.FC = ({ ) -export { IconScreenRotationOutlinedFilled as default } +export default IconScreenRotationOutlinedFilled diff --git a/src/IconScreenRotationRounded.tsx b/src/IconScreenRotationRounded.tsx index 8774ae356..e5c06151f 100644 --- a/src/IconScreenRotationRounded.tsx +++ b/src/IconScreenRotationRounded.tsx @@ -8,4 +8,4 @@ const IconScreenRotationRounded: React.FC = ({ ...props }) => ( ) -export { IconScreenRotationRounded as default } +export default IconScreenRotationRounded diff --git a/src/IconScreenRotationRoundedFilled.tsx b/src/IconScreenRotationRoundedFilled.tsx index 74cbe27c3..94e30a8da 100644 --- a/src/IconScreenRotationRoundedFilled.tsx +++ b/src/IconScreenRotationRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconScreenRotationRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconScreenRotationRoundedFilled as default } +export default IconScreenRotationRoundedFilled diff --git a/src/IconScreenRotationSharp.tsx b/src/IconScreenRotationSharp.tsx index 40f6396e8..5fcb02312 100644 --- a/src/IconScreenRotationSharp.tsx +++ b/src/IconScreenRotationSharp.tsx @@ -8,4 +8,4 @@ const IconScreenRotationSharp: React.FC = ({ ...props }) => ( ) -export { IconScreenRotationSharp as default } +export default IconScreenRotationSharp diff --git a/src/IconScreenRotationSharpFilled.tsx b/src/IconScreenRotationSharpFilled.tsx index 964278c84..af066ef55 100644 --- a/src/IconScreenRotationSharpFilled.tsx +++ b/src/IconScreenRotationSharpFilled.tsx @@ -8,4 +8,4 @@ const IconScreenRotationSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconScreenRotationSharpFilled as default } +export default IconScreenRotationSharpFilled diff --git a/src/IconScreenRotationUpOutlined.tsx b/src/IconScreenRotationUpOutlined.tsx index 229cc62fe..89cadaa64 100644 --- a/src/IconScreenRotationUpOutlined.tsx +++ b/src/IconScreenRotationUpOutlined.tsx @@ -8,4 +8,4 @@ const IconScreenRotationUpOutlined: React.FC = ({ ...props }) => ( ) -export { IconScreenRotationUpOutlined as default } +export default IconScreenRotationUpOutlined diff --git a/src/IconScreenRotationUpOutlinedFilled.tsx b/src/IconScreenRotationUpOutlinedFilled.tsx index fed64fbfb..bc2215294 100644 --- a/src/IconScreenRotationUpOutlinedFilled.tsx +++ b/src/IconScreenRotationUpOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconScreenRotationUpOutlinedFilled: React.FC = ({ ) -export { IconScreenRotationUpOutlinedFilled as default } +export default IconScreenRotationUpOutlinedFilled diff --git a/src/IconScreenRotationUpRounded.tsx b/src/IconScreenRotationUpRounded.tsx index 9d5293cec..f95373300 100644 --- a/src/IconScreenRotationUpRounded.tsx +++ b/src/IconScreenRotationUpRounded.tsx @@ -8,4 +8,4 @@ const IconScreenRotationUpRounded: React.FC = ({ ...props }) => ( ) -export { IconScreenRotationUpRounded as default } +export default IconScreenRotationUpRounded diff --git a/src/IconScreenRotationUpRoundedFilled.tsx b/src/IconScreenRotationUpRoundedFilled.tsx index 660608ed8..b6b0087db 100644 --- a/src/IconScreenRotationUpRoundedFilled.tsx +++ b/src/IconScreenRotationUpRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconScreenRotationUpRoundedFilled: React.FC = ({ ) -export { IconScreenRotationUpRoundedFilled as default } +export default IconScreenRotationUpRoundedFilled diff --git a/src/IconScreenRotationUpSharp.tsx b/src/IconScreenRotationUpSharp.tsx index c56e78726..64bdbf15d 100644 --- a/src/IconScreenRotationUpSharp.tsx +++ b/src/IconScreenRotationUpSharp.tsx @@ -8,4 +8,4 @@ const IconScreenRotationUpSharp: React.FC = ({ ...props }) => ( ) -export { IconScreenRotationUpSharp as default } +export default IconScreenRotationUpSharp diff --git a/src/IconScreenRotationUpSharpFilled.tsx b/src/IconScreenRotationUpSharpFilled.tsx index c23312d36..316741608 100644 --- a/src/IconScreenRotationUpSharpFilled.tsx +++ b/src/IconScreenRotationUpSharpFilled.tsx @@ -8,4 +8,4 @@ const IconScreenRotationUpSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconScreenRotationUpSharpFilled as default } +export default IconScreenRotationUpSharpFilled diff --git a/src/IconScreenSearchDesktopOutlined.tsx b/src/IconScreenSearchDesktopOutlined.tsx index d18fbe4d0..e8e164570 100644 --- a/src/IconScreenSearchDesktopOutlined.tsx +++ b/src/IconScreenSearchDesktopOutlined.tsx @@ -8,4 +8,4 @@ const IconScreenSearchDesktopOutlined: React.FC = ({ ...props }) => ( ) -export { IconScreenSearchDesktopOutlined as default } +export default IconScreenSearchDesktopOutlined diff --git a/src/IconScreenSearchDesktopOutlinedFilled.tsx b/src/IconScreenSearchDesktopOutlinedFilled.tsx index b05a9f26c..c5bd3edc1 100644 --- a/src/IconScreenSearchDesktopOutlinedFilled.tsx +++ b/src/IconScreenSearchDesktopOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconScreenSearchDesktopOutlinedFilled: React.FC = ({ ) -export { IconScreenSearchDesktopOutlinedFilled as default } +export default IconScreenSearchDesktopOutlinedFilled diff --git a/src/IconScreenSearchDesktopRounded.tsx b/src/IconScreenSearchDesktopRounded.tsx index 2b7e07ca4..b027d021c 100644 --- a/src/IconScreenSearchDesktopRounded.tsx +++ b/src/IconScreenSearchDesktopRounded.tsx @@ -8,4 +8,4 @@ const IconScreenSearchDesktopRounded: React.FC = ({ ...props }) => ( ) -export { IconScreenSearchDesktopRounded as default } +export default IconScreenSearchDesktopRounded diff --git a/src/IconScreenSearchDesktopRoundedFilled.tsx b/src/IconScreenSearchDesktopRoundedFilled.tsx index 503a66ab4..27c25cd38 100644 --- a/src/IconScreenSearchDesktopRoundedFilled.tsx +++ b/src/IconScreenSearchDesktopRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconScreenSearchDesktopRoundedFilled: React.FC = ({ ) -export { IconScreenSearchDesktopRoundedFilled as default } +export default IconScreenSearchDesktopRoundedFilled diff --git a/src/IconScreenSearchDesktopSharp.tsx b/src/IconScreenSearchDesktopSharp.tsx index 245f0d5ce..608ae9647 100644 --- a/src/IconScreenSearchDesktopSharp.tsx +++ b/src/IconScreenSearchDesktopSharp.tsx @@ -8,4 +8,4 @@ const IconScreenSearchDesktopSharp: React.FC = ({ ...props }) => ( ) -export { IconScreenSearchDesktopSharp as default } +export default IconScreenSearchDesktopSharp diff --git a/src/IconScreenSearchDesktopSharpFilled.tsx b/src/IconScreenSearchDesktopSharpFilled.tsx index c74ed224c..0cefcd2f3 100644 --- a/src/IconScreenSearchDesktopSharpFilled.tsx +++ b/src/IconScreenSearchDesktopSharpFilled.tsx @@ -10,4 +10,4 @@ const IconScreenSearchDesktopSharpFilled: React.FC = ({ ) -export { IconScreenSearchDesktopSharpFilled as default } +export default IconScreenSearchDesktopSharpFilled diff --git a/src/IconScreenShareOutlined.tsx b/src/IconScreenShareOutlined.tsx index 773f93b66..c7539dab5 100644 --- a/src/IconScreenShareOutlined.tsx +++ b/src/IconScreenShareOutlined.tsx @@ -8,4 +8,4 @@ const IconScreenShareOutlined: React.FC = ({ ...props }) => ( ) -export { IconScreenShareOutlined as default } +export default IconScreenShareOutlined diff --git a/src/IconScreenShareOutlinedFilled.tsx b/src/IconScreenShareOutlinedFilled.tsx index fc7c089e6..c515cc64b 100644 --- a/src/IconScreenShareOutlinedFilled.tsx +++ b/src/IconScreenShareOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconScreenShareOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconScreenShareOutlinedFilled as default } +export default IconScreenShareOutlinedFilled diff --git a/src/IconScreenShareRounded.tsx b/src/IconScreenShareRounded.tsx index 6e8c72193..02338ffe7 100644 --- a/src/IconScreenShareRounded.tsx +++ b/src/IconScreenShareRounded.tsx @@ -8,4 +8,4 @@ const IconScreenShareRounded: React.FC = ({ ...props }) => ( ) -export { IconScreenShareRounded as default } +export default IconScreenShareRounded diff --git a/src/IconScreenShareRoundedFilled.tsx b/src/IconScreenShareRoundedFilled.tsx index ba7128529..d37089093 100644 --- a/src/IconScreenShareRoundedFilled.tsx +++ b/src/IconScreenShareRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconScreenShareRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconScreenShareRoundedFilled as default } +export default IconScreenShareRoundedFilled diff --git a/src/IconScreenShareSharp.tsx b/src/IconScreenShareSharp.tsx index daf00e997..240eec43f 100644 --- a/src/IconScreenShareSharp.tsx +++ b/src/IconScreenShareSharp.tsx @@ -8,4 +8,4 @@ const IconScreenShareSharp: React.FC = ({ ...props }) => ( ) -export { IconScreenShareSharp as default } +export default IconScreenShareSharp diff --git a/src/IconScreenShareSharpFilled.tsx b/src/IconScreenShareSharpFilled.tsx index dcbf95e39..cc576ca88 100644 --- a/src/IconScreenShareSharpFilled.tsx +++ b/src/IconScreenShareSharpFilled.tsx @@ -8,4 +8,4 @@ const IconScreenShareSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconScreenShareSharpFilled as default } +export default IconScreenShareSharpFilled diff --git a/src/IconScreenshotFrameOutlined.tsx b/src/IconScreenshotFrameOutlined.tsx index 29a8046ab..0d5ef1f62 100644 --- a/src/IconScreenshotFrameOutlined.tsx +++ b/src/IconScreenshotFrameOutlined.tsx @@ -8,4 +8,4 @@ const IconScreenshotFrameOutlined: React.FC = ({ ...props }) => ( ) -export { IconScreenshotFrameOutlined as default } +export default IconScreenshotFrameOutlined diff --git a/src/IconScreenshotFrameOutlinedFilled.tsx b/src/IconScreenshotFrameOutlinedFilled.tsx index a1c8ed3ed..93d5f1f33 100644 --- a/src/IconScreenshotFrameOutlinedFilled.tsx +++ b/src/IconScreenshotFrameOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconScreenshotFrameOutlinedFilled: React.FC = ({ ) -export { IconScreenshotFrameOutlinedFilled as default } +export default IconScreenshotFrameOutlinedFilled diff --git a/src/IconScreenshotFrameRounded.tsx b/src/IconScreenshotFrameRounded.tsx index f42568fcd..c6c1afe03 100644 --- a/src/IconScreenshotFrameRounded.tsx +++ b/src/IconScreenshotFrameRounded.tsx @@ -8,4 +8,4 @@ const IconScreenshotFrameRounded: React.FC = ({ ...props }) => ( ) -export { IconScreenshotFrameRounded as default } +export default IconScreenshotFrameRounded diff --git a/src/IconScreenshotFrameRoundedFilled.tsx b/src/IconScreenshotFrameRoundedFilled.tsx index 12eb8125b..b70aeccc3 100644 --- a/src/IconScreenshotFrameRoundedFilled.tsx +++ b/src/IconScreenshotFrameRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconScreenshotFrameRoundedFilled: React.FC = ({ ) -export { IconScreenshotFrameRoundedFilled as default } +export default IconScreenshotFrameRoundedFilled diff --git a/src/IconScreenshotFrameSharp.tsx b/src/IconScreenshotFrameSharp.tsx index f7756e15f..9c532d624 100644 --- a/src/IconScreenshotFrameSharp.tsx +++ b/src/IconScreenshotFrameSharp.tsx @@ -8,4 +8,4 @@ const IconScreenshotFrameSharp: React.FC = ({ ...props }) => ( ) -export { IconScreenshotFrameSharp as default } +export default IconScreenshotFrameSharp diff --git a/src/IconScreenshotFrameSharpFilled.tsx b/src/IconScreenshotFrameSharpFilled.tsx index 1dac15a39..85c2b1bd4 100644 --- a/src/IconScreenshotFrameSharpFilled.tsx +++ b/src/IconScreenshotFrameSharpFilled.tsx @@ -8,4 +8,4 @@ const IconScreenshotFrameSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconScreenshotFrameSharpFilled as default } +export default IconScreenshotFrameSharpFilled diff --git a/src/IconScreenshotKeyboardOutlined.tsx b/src/IconScreenshotKeyboardOutlined.tsx index 8e95f8ee8..3fb5abd17 100644 --- a/src/IconScreenshotKeyboardOutlined.tsx +++ b/src/IconScreenshotKeyboardOutlined.tsx @@ -8,4 +8,4 @@ const IconScreenshotKeyboardOutlined: React.FC = ({ ...props }) => ( ) -export { IconScreenshotKeyboardOutlined as default } +export default IconScreenshotKeyboardOutlined diff --git a/src/IconScreenshotKeyboardOutlinedFilled.tsx b/src/IconScreenshotKeyboardOutlinedFilled.tsx index ae50e002c..c43a7b6b7 100644 --- a/src/IconScreenshotKeyboardOutlinedFilled.tsx +++ b/src/IconScreenshotKeyboardOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconScreenshotKeyboardOutlinedFilled: React.FC = ({ ) -export { IconScreenshotKeyboardOutlinedFilled as default } +export default IconScreenshotKeyboardOutlinedFilled diff --git a/src/IconScreenshotKeyboardRounded.tsx b/src/IconScreenshotKeyboardRounded.tsx index 8f2fc0fd5..1486e6be2 100644 --- a/src/IconScreenshotKeyboardRounded.tsx +++ b/src/IconScreenshotKeyboardRounded.tsx @@ -8,4 +8,4 @@ const IconScreenshotKeyboardRounded: React.FC = ({ ...props }) => ( ) -export { IconScreenshotKeyboardRounded as default } +export default IconScreenshotKeyboardRounded diff --git a/src/IconScreenshotKeyboardRoundedFilled.tsx b/src/IconScreenshotKeyboardRoundedFilled.tsx index cbe256089..0db3e3ee1 100644 --- a/src/IconScreenshotKeyboardRoundedFilled.tsx +++ b/src/IconScreenshotKeyboardRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconScreenshotKeyboardRoundedFilled: React.FC = ({ ) -export { IconScreenshotKeyboardRoundedFilled as default } +export default IconScreenshotKeyboardRoundedFilled diff --git a/src/IconScreenshotKeyboardSharp.tsx b/src/IconScreenshotKeyboardSharp.tsx index d4b3c06ab..bb86ce6cb 100644 --- a/src/IconScreenshotKeyboardSharp.tsx +++ b/src/IconScreenshotKeyboardSharp.tsx @@ -8,4 +8,4 @@ const IconScreenshotKeyboardSharp: React.FC = ({ ...props }) => ( ) -export { IconScreenshotKeyboardSharp as default } +export default IconScreenshotKeyboardSharp diff --git a/src/IconScreenshotKeyboardSharpFilled.tsx b/src/IconScreenshotKeyboardSharpFilled.tsx index 924de0b87..e5f205884 100644 --- a/src/IconScreenshotKeyboardSharpFilled.tsx +++ b/src/IconScreenshotKeyboardSharpFilled.tsx @@ -10,4 +10,4 @@ const IconScreenshotKeyboardSharpFilled: React.FC = ({ ) -export { IconScreenshotKeyboardSharpFilled as default } +export default IconScreenshotKeyboardSharpFilled diff --git a/src/IconScreenshotMonitorOutlined.tsx b/src/IconScreenshotMonitorOutlined.tsx index 6f53eb8c0..b009408f9 100644 --- a/src/IconScreenshotMonitorOutlined.tsx +++ b/src/IconScreenshotMonitorOutlined.tsx @@ -8,4 +8,4 @@ const IconScreenshotMonitorOutlined: React.FC = ({ ...props }) => ( ) -export { IconScreenshotMonitorOutlined as default } +export default IconScreenshotMonitorOutlined diff --git a/src/IconScreenshotMonitorOutlinedFilled.tsx b/src/IconScreenshotMonitorOutlinedFilled.tsx index 57f5a01e0..7e58b60eb 100644 --- a/src/IconScreenshotMonitorOutlinedFilled.tsx +++ b/src/IconScreenshotMonitorOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconScreenshotMonitorOutlinedFilled: React.FC = ({ ) -export { IconScreenshotMonitorOutlinedFilled as default } +export default IconScreenshotMonitorOutlinedFilled diff --git a/src/IconScreenshotMonitorRounded.tsx b/src/IconScreenshotMonitorRounded.tsx index 3ca600138..6bd7a7387 100644 --- a/src/IconScreenshotMonitorRounded.tsx +++ b/src/IconScreenshotMonitorRounded.tsx @@ -8,4 +8,4 @@ const IconScreenshotMonitorRounded: React.FC = ({ ...props }) => ( ) -export { IconScreenshotMonitorRounded as default } +export default IconScreenshotMonitorRounded diff --git a/src/IconScreenshotMonitorRoundedFilled.tsx b/src/IconScreenshotMonitorRoundedFilled.tsx index c9763fafe..6007e0324 100644 --- a/src/IconScreenshotMonitorRoundedFilled.tsx +++ b/src/IconScreenshotMonitorRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconScreenshotMonitorRoundedFilled: React.FC = ({ ) -export { IconScreenshotMonitorRoundedFilled as default } +export default IconScreenshotMonitorRoundedFilled diff --git a/src/IconScreenshotMonitorSharp.tsx b/src/IconScreenshotMonitorSharp.tsx index fe2818fce..e83ebdd77 100644 --- a/src/IconScreenshotMonitorSharp.tsx +++ b/src/IconScreenshotMonitorSharp.tsx @@ -8,4 +8,4 @@ const IconScreenshotMonitorSharp: React.FC = ({ ...props }) => ( ) -export { IconScreenshotMonitorSharp as default } +export default IconScreenshotMonitorSharp diff --git a/src/IconScreenshotMonitorSharpFilled.tsx b/src/IconScreenshotMonitorSharpFilled.tsx index f2cdb235d..08ff5f2f4 100644 --- a/src/IconScreenshotMonitorSharpFilled.tsx +++ b/src/IconScreenshotMonitorSharpFilled.tsx @@ -10,4 +10,4 @@ const IconScreenshotMonitorSharpFilled: React.FC = ({ ) -export { IconScreenshotMonitorSharpFilled as default } +export default IconScreenshotMonitorSharpFilled diff --git a/src/IconScreenshotOutlined.tsx b/src/IconScreenshotOutlined.tsx index 44c21b151..2c924289e 100644 --- a/src/IconScreenshotOutlined.tsx +++ b/src/IconScreenshotOutlined.tsx @@ -8,4 +8,4 @@ const IconScreenshotOutlined: React.FC = ({ ...props }) => ( ) -export { IconScreenshotOutlined as default } +export default IconScreenshotOutlined diff --git a/src/IconScreenshotOutlinedFilled.tsx b/src/IconScreenshotOutlinedFilled.tsx index 8d1355105..0a69b2631 100644 --- a/src/IconScreenshotOutlinedFilled.tsx +++ b/src/IconScreenshotOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconScreenshotOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconScreenshotOutlinedFilled as default } +export default IconScreenshotOutlinedFilled diff --git a/src/IconScreenshotRegionOutlined.tsx b/src/IconScreenshotRegionOutlined.tsx index 551eafcbd..7d4375253 100644 --- a/src/IconScreenshotRegionOutlined.tsx +++ b/src/IconScreenshotRegionOutlined.tsx @@ -8,4 +8,4 @@ const IconScreenshotRegionOutlined: React.FC = ({ ...props }) => ( ) -export { IconScreenshotRegionOutlined as default } +export default IconScreenshotRegionOutlined diff --git a/src/IconScreenshotRegionOutlinedFilled.tsx b/src/IconScreenshotRegionOutlinedFilled.tsx index f4521d241..b4832040e 100644 --- a/src/IconScreenshotRegionOutlinedFilled.tsx +++ b/src/IconScreenshotRegionOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconScreenshotRegionOutlinedFilled: React.FC = ({ ) -export { IconScreenshotRegionOutlinedFilled as default } +export default IconScreenshotRegionOutlinedFilled diff --git a/src/IconScreenshotRegionRounded.tsx b/src/IconScreenshotRegionRounded.tsx index b15b73d3c..3c77860de 100644 --- a/src/IconScreenshotRegionRounded.tsx +++ b/src/IconScreenshotRegionRounded.tsx @@ -8,4 +8,4 @@ const IconScreenshotRegionRounded: React.FC = ({ ...props }) => ( ) -export { IconScreenshotRegionRounded as default } +export default IconScreenshotRegionRounded diff --git a/src/IconScreenshotRegionRoundedFilled.tsx b/src/IconScreenshotRegionRoundedFilled.tsx index 95d1b8731..0d2d99e76 100644 --- a/src/IconScreenshotRegionRoundedFilled.tsx +++ b/src/IconScreenshotRegionRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconScreenshotRegionRoundedFilled: React.FC = ({ ) -export { IconScreenshotRegionRoundedFilled as default } +export default IconScreenshotRegionRoundedFilled diff --git a/src/IconScreenshotRegionSharp.tsx b/src/IconScreenshotRegionSharp.tsx index 142b0fbf1..3dab88378 100644 --- a/src/IconScreenshotRegionSharp.tsx +++ b/src/IconScreenshotRegionSharp.tsx @@ -8,4 +8,4 @@ const IconScreenshotRegionSharp: React.FC = ({ ...props }) => ( ) -export { IconScreenshotRegionSharp as default } +export default IconScreenshotRegionSharp diff --git a/src/IconScreenshotRegionSharpFilled.tsx b/src/IconScreenshotRegionSharpFilled.tsx index abee5298a..5c6f3c29c 100644 --- a/src/IconScreenshotRegionSharpFilled.tsx +++ b/src/IconScreenshotRegionSharpFilled.tsx @@ -8,4 +8,4 @@ const IconScreenshotRegionSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconScreenshotRegionSharpFilled as default } +export default IconScreenshotRegionSharpFilled diff --git a/src/IconScreenshotRounded.tsx b/src/IconScreenshotRounded.tsx index 62a1f4c09..42cdc0681 100644 --- a/src/IconScreenshotRounded.tsx +++ b/src/IconScreenshotRounded.tsx @@ -8,4 +8,4 @@ const IconScreenshotRounded: React.FC = ({ ...props }) => ( ) -export { IconScreenshotRounded as default } +export default IconScreenshotRounded diff --git a/src/IconScreenshotRoundedFilled.tsx b/src/IconScreenshotRoundedFilled.tsx index dbf81a029..29b00f785 100644 --- a/src/IconScreenshotRoundedFilled.tsx +++ b/src/IconScreenshotRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconScreenshotRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconScreenshotRoundedFilled as default } +export default IconScreenshotRoundedFilled diff --git a/src/IconScreenshotSharp.tsx b/src/IconScreenshotSharp.tsx index d799bce37..6716e446f 100644 --- a/src/IconScreenshotSharp.tsx +++ b/src/IconScreenshotSharp.tsx @@ -8,4 +8,4 @@ const IconScreenshotSharp: React.FC = ({ ...props }) => ( ) -export { IconScreenshotSharp as default } +export default IconScreenshotSharp diff --git a/src/IconScreenshotSharpFilled.tsx b/src/IconScreenshotSharpFilled.tsx index 2c69823a3..62a6e440f 100644 --- a/src/IconScreenshotSharpFilled.tsx +++ b/src/IconScreenshotSharpFilled.tsx @@ -8,4 +8,4 @@ const IconScreenshotSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconScreenshotSharpFilled as default } +export default IconScreenshotSharpFilled diff --git a/src/IconScreenshotTabletOutlined.tsx b/src/IconScreenshotTabletOutlined.tsx index 5f71e2fa8..e96711145 100644 --- a/src/IconScreenshotTabletOutlined.tsx +++ b/src/IconScreenshotTabletOutlined.tsx @@ -8,4 +8,4 @@ const IconScreenshotTabletOutlined: React.FC = ({ ...props }) => ( ) -export { IconScreenshotTabletOutlined as default } +export default IconScreenshotTabletOutlined diff --git a/src/IconScreenshotTabletOutlinedFilled.tsx b/src/IconScreenshotTabletOutlinedFilled.tsx index f5bb861ae..6682f391d 100644 --- a/src/IconScreenshotTabletOutlinedFilled.tsx +++ b/src/IconScreenshotTabletOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconScreenshotTabletOutlinedFilled: React.FC = ({ ) -export { IconScreenshotTabletOutlinedFilled as default } +export default IconScreenshotTabletOutlinedFilled diff --git a/src/IconScreenshotTabletRounded.tsx b/src/IconScreenshotTabletRounded.tsx index 9ef84726d..e8d02fd39 100644 --- a/src/IconScreenshotTabletRounded.tsx +++ b/src/IconScreenshotTabletRounded.tsx @@ -8,4 +8,4 @@ const IconScreenshotTabletRounded: React.FC = ({ ...props }) => ( ) -export { IconScreenshotTabletRounded as default } +export default IconScreenshotTabletRounded diff --git a/src/IconScreenshotTabletRoundedFilled.tsx b/src/IconScreenshotTabletRoundedFilled.tsx index 73882dd30..330af60a6 100644 --- a/src/IconScreenshotTabletRoundedFilled.tsx +++ b/src/IconScreenshotTabletRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconScreenshotTabletRoundedFilled: React.FC = ({ ) -export { IconScreenshotTabletRoundedFilled as default } +export default IconScreenshotTabletRoundedFilled diff --git a/src/IconScreenshotTabletSharp.tsx b/src/IconScreenshotTabletSharp.tsx index 34e74815d..36fc79b11 100644 --- a/src/IconScreenshotTabletSharp.tsx +++ b/src/IconScreenshotTabletSharp.tsx @@ -8,4 +8,4 @@ const IconScreenshotTabletSharp: React.FC = ({ ...props }) => ( ) -export { IconScreenshotTabletSharp as default } +export default IconScreenshotTabletSharp diff --git a/src/IconScreenshotTabletSharpFilled.tsx b/src/IconScreenshotTabletSharpFilled.tsx index 794601002..15db04277 100644 --- a/src/IconScreenshotTabletSharpFilled.tsx +++ b/src/IconScreenshotTabletSharpFilled.tsx @@ -8,4 +8,4 @@ const IconScreenshotTabletSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconScreenshotTabletSharpFilled as default } +export default IconScreenshotTabletSharpFilled diff --git a/src/IconScriptOutlined.tsx b/src/IconScriptOutlined.tsx index 8a4ffb0f2..78e653f44 100644 --- a/src/IconScriptOutlined.tsx +++ b/src/IconScriptOutlined.tsx @@ -8,4 +8,4 @@ const IconScriptOutlined: React.FC = ({ ...props }) => ( ) -export { IconScriptOutlined as default } +export default IconScriptOutlined diff --git a/src/IconScriptOutlinedFilled.tsx b/src/IconScriptOutlinedFilled.tsx index a8f65ba72..b27faca44 100644 --- a/src/IconScriptOutlinedFilled.tsx +++ b/src/IconScriptOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconScriptOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconScriptOutlinedFilled as default } +export default IconScriptOutlinedFilled diff --git a/src/IconScriptRounded.tsx b/src/IconScriptRounded.tsx index 4a58ba933..116bdc5b8 100644 --- a/src/IconScriptRounded.tsx +++ b/src/IconScriptRounded.tsx @@ -8,4 +8,4 @@ const IconScriptRounded: React.FC = ({ ...props }) => ( ) -export { IconScriptRounded as default } +export default IconScriptRounded diff --git a/src/IconScriptRoundedFilled.tsx b/src/IconScriptRoundedFilled.tsx index 19c5fd669..88d873dc7 100644 --- a/src/IconScriptRoundedFilled.tsx +++ b/src/IconScriptRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconScriptRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconScriptRoundedFilled as default } +export default IconScriptRoundedFilled diff --git a/src/IconScriptSharp.tsx b/src/IconScriptSharp.tsx index ce204a76d..886767cac 100644 --- a/src/IconScriptSharp.tsx +++ b/src/IconScriptSharp.tsx @@ -8,4 +8,4 @@ const IconScriptSharp: React.FC = ({ ...props }) => ( ) -export { IconScriptSharp as default } +export default IconScriptSharp diff --git a/src/IconScriptSharpFilled.tsx b/src/IconScriptSharpFilled.tsx index 8ded94c50..2275fbc39 100644 --- a/src/IconScriptSharpFilled.tsx +++ b/src/IconScriptSharpFilled.tsx @@ -8,4 +8,4 @@ const IconScriptSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconScriptSharpFilled as default } +export default IconScriptSharpFilled diff --git a/src/IconScrollableHeaderOutlined.tsx b/src/IconScrollableHeaderOutlined.tsx index 0cd507e5a..b606ae7f4 100644 --- a/src/IconScrollableHeaderOutlined.tsx +++ b/src/IconScrollableHeaderOutlined.tsx @@ -8,4 +8,4 @@ const IconScrollableHeaderOutlined: React.FC = ({ ...props }) => ( ) -export { IconScrollableHeaderOutlined as default } +export default IconScrollableHeaderOutlined diff --git a/src/IconScrollableHeaderOutlinedFilled.tsx b/src/IconScrollableHeaderOutlinedFilled.tsx index a7ddf070c..9bb450d18 100644 --- a/src/IconScrollableHeaderOutlinedFilled.tsx +++ b/src/IconScrollableHeaderOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconScrollableHeaderOutlinedFilled: React.FC = ({ ) -export { IconScrollableHeaderOutlinedFilled as default } +export default IconScrollableHeaderOutlinedFilled diff --git a/src/IconScrollableHeaderRounded.tsx b/src/IconScrollableHeaderRounded.tsx index 2b3134108..82d6667fe 100644 --- a/src/IconScrollableHeaderRounded.tsx +++ b/src/IconScrollableHeaderRounded.tsx @@ -8,4 +8,4 @@ const IconScrollableHeaderRounded: React.FC = ({ ...props }) => ( ) -export { IconScrollableHeaderRounded as default } +export default IconScrollableHeaderRounded diff --git a/src/IconScrollableHeaderRoundedFilled.tsx b/src/IconScrollableHeaderRoundedFilled.tsx index f16965eee..5aa27b470 100644 --- a/src/IconScrollableHeaderRoundedFilled.tsx +++ b/src/IconScrollableHeaderRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconScrollableHeaderRoundedFilled: React.FC = ({ ) -export { IconScrollableHeaderRoundedFilled as default } +export default IconScrollableHeaderRoundedFilled diff --git a/src/IconScrollableHeaderSharp.tsx b/src/IconScrollableHeaderSharp.tsx index 1ec1f5414..de559f701 100644 --- a/src/IconScrollableHeaderSharp.tsx +++ b/src/IconScrollableHeaderSharp.tsx @@ -8,4 +8,4 @@ const IconScrollableHeaderSharp: React.FC = ({ ...props }) => ( ) -export { IconScrollableHeaderSharp as default } +export default IconScrollableHeaderSharp diff --git a/src/IconScrollableHeaderSharpFilled.tsx b/src/IconScrollableHeaderSharpFilled.tsx index 7017ef684..7ec744ef8 100644 --- a/src/IconScrollableHeaderSharpFilled.tsx +++ b/src/IconScrollableHeaderSharpFilled.tsx @@ -8,4 +8,4 @@ const IconScrollableHeaderSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconScrollableHeaderSharpFilled as default } +export default IconScrollableHeaderSharpFilled diff --git a/src/IconScubaDivingOutlined.tsx b/src/IconScubaDivingOutlined.tsx index 55b1d6c82..37c3e99b9 100644 --- a/src/IconScubaDivingOutlined.tsx +++ b/src/IconScubaDivingOutlined.tsx @@ -8,4 +8,4 @@ const IconScubaDivingOutlined: React.FC = ({ ...props }) => ( ) -export { IconScubaDivingOutlined as default } +export default IconScubaDivingOutlined diff --git a/src/IconScubaDivingOutlinedFilled.tsx b/src/IconScubaDivingOutlinedFilled.tsx index 315b8c69f..7949523f3 100644 --- a/src/IconScubaDivingOutlinedFilled.tsx +++ b/src/IconScubaDivingOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconScubaDivingOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconScubaDivingOutlinedFilled as default } +export default IconScubaDivingOutlinedFilled diff --git a/src/IconScubaDivingRounded.tsx b/src/IconScubaDivingRounded.tsx index 7e0a8f9aa..438d10368 100644 --- a/src/IconScubaDivingRounded.tsx +++ b/src/IconScubaDivingRounded.tsx @@ -8,4 +8,4 @@ const IconScubaDivingRounded: React.FC = ({ ...props }) => ( ) -export { IconScubaDivingRounded as default } +export default IconScubaDivingRounded diff --git a/src/IconScubaDivingRoundedFilled.tsx b/src/IconScubaDivingRoundedFilled.tsx index b2acd038f..dff387527 100644 --- a/src/IconScubaDivingRoundedFilled.tsx +++ b/src/IconScubaDivingRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconScubaDivingRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconScubaDivingRoundedFilled as default } +export default IconScubaDivingRoundedFilled diff --git a/src/IconScubaDivingSharp.tsx b/src/IconScubaDivingSharp.tsx index b6262cbeb..c3486dc00 100644 --- a/src/IconScubaDivingSharp.tsx +++ b/src/IconScubaDivingSharp.tsx @@ -8,4 +8,4 @@ const IconScubaDivingSharp: React.FC = ({ ...props }) => ( ) -export { IconScubaDivingSharp as default } +export default IconScubaDivingSharp diff --git a/src/IconScubaDivingSharpFilled.tsx b/src/IconScubaDivingSharpFilled.tsx index cb8ea6763..ed74d3562 100644 --- a/src/IconScubaDivingSharpFilled.tsx +++ b/src/IconScubaDivingSharpFilled.tsx @@ -8,4 +8,4 @@ const IconScubaDivingSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconScubaDivingSharpFilled as default } +export default IconScubaDivingSharpFilled diff --git a/src/IconSdCardAlertOutlined.tsx b/src/IconSdCardAlertOutlined.tsx index d3a8ca7c8..810fd3dd4 100644 --- a/src/IconSdCardAlertOutlined.tsx +++ b/src/IconSdCardAlertOutlined.tsx @@ -8,4 +8,4 @@ const IconSdCardAlertOutlined: React.FC = ({ ...props }) => ( ) -export { IconSdCardAlertOutlined as default } +export default IconSdCardAlertOutlined diff --git a/src/IconSdCardAlertOutlinedFilled.tsx b/src/IconSdCardAlertOutlinedFilled.tsx index fc2fab591..a448495de 100644 --- a/src/IconSdCardAlertOutlinedFilled.tsx +++ b/src/IconSdCardAlertOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconSdCardAlertOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconSdCardAlertOutlinedFilled as default } +export default IconSdCardAlertOutlinedFilled diff --git a/src/IconSdCardAlertRounded.tsx b/src/IconSdCardAlertRounded.tsx index 450ce4a04..893b4c192 100644 --- a/src/IconSdCardAlertRounded.tsx +++ b/src/IconSdCardAlertRounded.tsx @@ -8,4 +8,4 @@ const IconSdCardAlertRounded: React.FC = ({ ...props }) => ( ) -export { IconSdCardAlertRounded as default } +export default IconSdCardAlertRounded diff --git a/src/IconSdCardAlertRoundedFilled.tsx b/src/IconSdCardAlertRoundedFilled.tsx index 68b7232ad..eb1ceb8ca 100644 --- a/src/IconSdCardAlertRoundedFilled.tsx +++ b/src/IconSdCardAlertRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconSdCardAlertRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconSdCardAlertRoundedFilled as default } +export default IconSdCardAlertRoundedFilled diff --git a/src/IconSdCardAlertSharp.tsx b/src/IconSdCardAlertSharp.tsx index 40ffe483a..40467212a 100644 --- a/src/IconSdCardAlertSharp.tsx +++ b/src/IconSdCardAlertSharp.tsx @@ -8,4 +8,4 @@ const IconSdCardAlertSharp: React.FC = ({ ...props }) => ( ) -export { IconSdCardAlertSharp as default } +export default IconSdCardAlertSharp diff --git a/src/IconSdCardAlertSharpFilled.tsx b/src/IconSdCardAlertSharpFilled.tsx index c0732ebea..a4297a254 100644 --- a/src/IconSdCardAlertSharpFilled.tsx +++ b/src/IconSdCardAlertSharpFilled.tsx @@ -8,4 +8,4 @@ const IconSdCardAlertSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconSdCardAlertSharpFilled as default } +export default IconSdCardAlertSharpFilled diff --git a/src/IconSdCardOutlined.tsx b/src/IconSdCardOutlined.tsx index a5bf3c2c0..73e7c057a 100644 --- a/src/IconSdCardOutlined.tsx +++ b/src/IconSdCardOutlined.tsx @@ -8,4 +8,4 @@ const IconSdCardOutlined: React.FC = ({ ...props }) => ( ) -export { IconSdCardOutlined as default } +export default IconSdCardOutlined diff --git a/src/IconSdCardOutlinedFilled.tsx b/src/IconSdCardOutlinedFilled.tsx index 02654eae0..69c95f581 100644 --- a/src/IconSdCardOutlinedFilled.tsx +++ b/src/IconSdCardOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconSdCardOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconSdCardOutlinedFilled as default } +export default IconSdCardOutlinedFilled diff --git a/src/IconSdCardRounded.tsx b/src/IconSdCardRounded.tsx index ea64beb11..290872e50 100644 --- a/src/IconSdCardRounded.tsx +++ b/src/IconSdCardRounded.tsx @@ -8,4 +8,4 @@ const IconSdCardRounded: React.FC = ({ ...props }) => ( ) -export { IconSdCardRounded as default } +export default IconSdCardRounded diff --git a/src/IconSdCardRoundedFilled.tsx b/src/IconSdCardRoundedFilled.tsx index 17d47c2f3..844b21dfc 100644 --- a/src/IconSdCardRoundedFilled.tsx +++ b/src/IconSdCardRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconSdCardRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconSdCardRoundedFilled as default } +export default IconSdCardRoundedFilled diff --git a/src/IconSdCardSharp.tsx b/src/IconSdCardSharp.tsx index 930d51ae0..3857b2506 100644 --- a/src/IconSdCardSharp.tsx +++ b/src/IconSdCardSharp.tsx @@ -8,4 +8,4 @@ const IconSdCardSharp: React.FC = ({ ...props }) => ( ) -export { IconSdCardSharp as default } +export default IconSdCardSharp diff --git a/src/IconSdCardSharpFilled.tsx b/src/IconSdCardSharpFilled.tsx index aceea1f2c..89005e7ea 100644 --- a/src/IconSdCardSharpFilled.tsx +++ b/src/IconSdCardSharpFilled.tsx @@ -8,4 +8,4 @@ const IconSdCardSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconSdCardSharpFilled as default } +export default IconSdCardSharpFilled diff --git a/src/IconSdOutlined.tsx b/src/IconSdOutlined.tsx index d64612048..fabec1408 100644 --- a/src/IconSdOutlined.tsx +++ b/src/IconSdOutlined.tsx @@ -8,4 +8,4 @@ const IconSdOutlined: React.FC = ({ ...props }) => ( ) -export { IconSdOutlined as default } +export default IconSdOutlined diff --git a/src/IconSdOutlinedFilled.tsx b/src/IconSdOutlinedFilled.tsx index 0aa37481f..cddf3e591 100644 --- a/src/IconSdOutlinedFilled.tsx +++ b/src/IconSdOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconSdOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconSdOutlinedFilled as default } +export default IconSdOutlinedFilled diff --git a/src/IconSdRounded.tsx b/src/IconSdRounded.tsx index e6a268a13..f6ea7388e 100644 --- a/src/IconSdRounded.tsx +++ b/src/IconSdRounded.tsx @@ -8,4 +8,4 @@ const IconSdRounded: React.FC = ({ ...props }) => ( ) -export { IconSdRounded as default } +export default IconSdRounded diff --git a/src/IconSdRoundedFilled.tsx b/src/IconSdRoundedFilled.tsx index 570c46c0e..e43457edb 100644 --- a/src/IconSdRoundedFilled.tsx +++ b/src/IconSdRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconSdRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconSdRoundedFilled as default } +export default IconSdRoundedFilled diff --git a/src/IconSdSharp.tsx b/src/IconSdSharp.tsx index 56bb8bbd3..76be3c174 100644 --- a/src/IconSdSharp.tsx +++ b/src/IconSdSharp.tsx @@ -8,4 +8,4 @@ const IconSdSharp: React.FC = ({ ...props }) => ( ) -export { IconSdSharp as default } +export default IconSdSharp diff --git a/src/IconSdSharpFilled.tsx b/src/IconSdSharpFilled.tsx index 26a3f0a44..72cf4c089 100644 --- a/src/IconSdSharpFilled.tsx +++ b/src/IconSdSharpFilled.tsx @@ -8,4 +8,4 @@ const IconSdSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconSdSharpFilled as default } +export default IconSdSharpFilled diff --git a/src/IconSdkOutlined.tsx b/src/IconSdkOutlined.tsx index cdf6584b0..6330a430e 100644 --- a/src/IconSdkOutlined.tsx +++ b/src/IconSdkOutlined.tsx @@ -8,4 +8,4 @@ const IconSdkOutlined: React.FC = ({ ...props }) => ( ) -export { IconSdkOutlined as default } +export default IconSdkOutlined diff --git a/src/IconSdkOutlinedFilled.tsx b/src/IconSdkOutlinedFilled.tsx index 0a5966880..ef348bf02 100644 --- a/src/IconSdkOutlinedFilled.tsx +++ b/src/IconSdkOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconSdkOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconSdkOutlinedFilled as default } +export default IconSdkOutlinedFilled diff --git a/src/IconSdkRounded.tsx b/src/IconSdkRounded.tsx index 067decd89..2b4aab524 100644 --- a/src/IconSdkRounded.tsx +++ b/src/IconSdkRounded.tsx @@ -8,4 +8,4 @@ const IconSdkRounded: React.FC = ({ ...props }) => ( ) -export { IconSdkRounded as default } +export default IconSdkRounded diff --git a/src/IconSdkRoundedFilled.tsx b/src/IconSdkRoundedFilled.tsx index b9d4ce0f4..81652659f 100644 --- a/src/IconSdkRoundedFilled.tsx +++ b/src/IconSdkRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconSdkRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconSdkRoundedFilled as default } +export default IconSdkRoundedFilled diff --git a/src/IconSdkSharp.tsx b/src/IconSdkSharp.tsx index 669dd7f6d..2e8d9b8d9 100644 --- a/src/IconSdkSharp.tsx +++ b/src/IconSdkSharp.tsx @@ -8,4 +8,4 @@ const IconSdkSharp: React.FC = ({ ...props }) => ( ) -export { IconSdkSharp as default } +export default IconSdkSharp diff --git a/src/IconSdkSharpFilled.tsx b/src/IconSdkSharpFilled.tsx index 37ebf8964..d6cc40566 100644 --- a/src/IconSdkSharpFilled.tsx +++ b/src/IconSdkSharpFilled.tsx @@ -8,4 +8,4 @@ const IconSdkSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconSdkSharpFilled as default } +export default IconSdkSharpFilled diff --git a/src/IconSearchCheck2Outlined.tsx b/src/IconSearchCheck2Outlined.tsx index 6b60773f6..b57c95935 100644 --- a/src/IconSearchCheck2Outlined.tsx +++ b/src/IconSearchCheck2Outlined.tsx @@ -8,4 +8,4 @@ const IconSearchCheck2Outlined: React.FC = ({ ...props }) => ( ) -export { IconSearchCheck2Outlined as default } +export default IconSearchCheck2Outlined diff --git a/src/IconSearchCheck2OutlinedFilled.tsx b/src/IconSearchCheck2OutlinedFilled.tsx index 298ebb72c..85bd900ae 100644 --- a/src/IconSearchCheck2OutlinedFilled.tsx +++ b/src/IconSearchCheck2OutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconSearchCheck2OutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconSearchCheck2OutlinedFilled as default } +export default IconSearchCheck2OutlinedFilled diff --git a/src/IconSearchCheck2Rounded.tsx b/src/IconSearchCheck2Rounded.tsx index 8bab13313..0e2bc3871 100644 --- a/src/IconSearchCheck2Rounded.tsx +++ b/src/IconSearchCheck2Rounded.tsx @@ -8,4 +8,4 @@ const IconSearchCheck2Rounded: React.FC = ({ ...props }) => ( ) -export { IconSearchCheck2Rounded as default } +export default IconSearchCheck2Rounded diff --git a/src/IconSearchCheck2RoundedFilled.tsx b/src/IconSearchCheck2RoundedFilled.tsx index 8aa06529d..65422f662 100644 --- a/src/IconSearchCheck2RoundedFilled.tsx +++ b/src/IconSearchCheck2RoundedFilled.tsx @@ -8,4 +8,4 @@ const IconSearchCheck2RoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconSearchCheck2RoundedFilled as default } +export default IconSearchCheck2RoundedFilled diff --git a/src/IconSearchCheck2Sharp.tsx b/src/IconSearchCheck2Sharp.tsx index da1d97128..4cd384abf 100644 --- a/src/IconSearchCheck2Sharp.tsx +++ b/src/IconSearchCheck2Sharp.tsx @@ -8,4 +8,4 @@ const IconSearchCheck2Sharp: React.FC = ({ ...props }) => ( ) -export { IconSearchCheck2Sharp as default } +export default IconSearchCheck2Sharp diff --git a/src/IconSearchCheck2SharpFilled.tsx b/src/IconSearchCheck2SharpFilled.tsx index abb153c8f..cb721d6a3 100644 --- a/src/IconSearchCheck2SharpFilled.tsx +++ b/src/IconSearchCheck2SharpFilled.tsx @@ -8,4 +8,4 @@ const IconSearchCheck2SharpFilled: React.FC = ({ ...props }) => ( ) -export { IconSearchCheck2SharpFilled as default } +export default IconSearchCheck2SharpFilled diff --git a/src/IconSearchCheckOutlined.tsx b/src/IconSearchCheckOutlined.tsx index 143b8d12e..029f69512 100644 --- a/src/IconSearchCheckOutlined.tsx +++ b/src/IconSearchCheckOutlined.tsx @@ -8,4 +8,4 @@ const IconSearchCheckOutlined: React.FC = ({ ...props }) => ( ) -export { IconSearchCheckOutlined as default } +export default IconSearchCheckOutlined diff --git a/src/IconSearchCheckOutlinedFilled.tsx b/src/IconSearchCheckOutlinedFilled.tsx index 5a4d90373..9f8614493 100644 --- a/src/IconSearchCheckOutlinedFilled.tsx +++ b/src/IconSearchCheckOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconSearchCheckOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconSearchCheckOutlinedFilled as default } +export default IconSearchCheckOutlinedFilled diff --git a/src/IconSearchCheckRounded.tsx b/src/IconSearchCheckRounded.tsx index 22296117b..db913458c 100644 --- a/src/IconSearchCheckRounded.tsx +++ b/src/IconSearchCheckRounded.tsx @@ -8,4 +8,4 @@ const IconSearchCheckRounded: React.FC = ({ ...props }) => ( ) -export { IconSearchCheckRounded as default } +export default IconSearchCheckRounded diff --git a/src/IconSearchCheckRoundedFilled.tsx b/src/IconSearchCheckRoundedFilled.tsx index 2782085e1..0684b5568 100644 --- a/src/IconSearchCheckRoundedFilled.tsx +++ b/src/IconSearchCheckRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconSearchCheckRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconSearchCheckRoundedFilled as default } +export default IconSearchCheckRoundedFilled diff --git a/src/IconSearchCheckSharp.tsx b/src/IconSearchCheckSharp.tsx index 1392908d7..9b6b2c0b5 100644 --- a/src/IconSearchCheckSharp.tsx +++ b/src/IconSearchCheckSharp.tsx @@ -8,4 +8,4 @@ const IconSearchCheckSharp: React.FC = ({ ...props }) => ( ) -export { IconSearchCheckSharp as default } +export default IconSearchCheckSharp diff --git a/src/IconSearchCheckSharpFilled.tsx b/src/IconSearchCheckSharpFilled.tsx index 74cf121a9..4320eaa47 100644 --- a/src/IconSearchCheckSharpFilled.tsx +++ b/src/IconSearchCheckSharpFilled.tsx @@ -8,4 +8,4 @@ const IconSearchCheckSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconSearchCheckSharpFilled as default } +export default IconSearchCheckSharpFilled diff --git a/src/IconSearchHandsFreeOutlined.tsx b/src/IconSearchHandsFreeOutlined.tsx index c076bc434..dea074b8d 100644 --- a/src/IconSearchHandsFreeOutlined.tsx +++ b/src/IconSearchHandsFreeOutlined.tsx @@ -8,4 +8,4 @@ const IconSearchHandsFreeOutlined: React.FC = ({ ...props }) => ( ) -export { IconSearchHandsFreeOutlined as default } +export default IconSearchHandsFreeOutlined diff --git a/src/IconSearchHandsFreeOutlinedFilled.tsx b/src/IconSearchHandsFreeOutlinedFilled.tsx index d748ed4f0..8abb1709e 100644 --- a/src/IconSearchHandsFreeOutlinedFilled.tsx +++ b/src/IconSearchHandsFreeOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconSearchHandsFreeOutlinedFilled: React.FC = ({ ) -export { IconSearchHandsFreeOutlinedFilled as default } +export default IconSearchHandsFreeOutlinedFilled diff --git a/src/IconSearchHandsFreeRounded.tsx b/src/IconSearchHandsFreeRounded.tsx index a4516d0f7..92fa78eb9 100644 --- a/src/IconSearchHandsFreeRounded.tsx +++ b/src/IconSearchHandsFreeRounded.tsx @@ -8,4 +8,4 @@ const IconSearchHandsFreeRounded: React.FC = ({ ...props }) => ( ) -export { IconSearchHandsFreeRounded as default } +export default IconSearchHandsFreeRounded diff --git a/src/IconSearchHandsFreeRoundedFilled.tsx b/src/IconSearchHandsFreeRoundedFilled.tsx index 056009709..f5eec9eea 100644 --- a/src/IconSearchHandsFreeRoundedFilled.tsx +++ b/src/IconSearchHandsFreeRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconSearchHandsFreeRoundedFilled: React.FC = ({ ) -export { IconSearchHandsFreeRoundedFilled as default } +export default IconSearchHandsFreeRoundedFilled diff --git a/src/IconSearchHandsFreeSharp.tsx b/src/IconSearchHandsFreeSharp.tsx index 77473bbdc..17032ed72 100644 --- a/src/IconSearchHandsFreeSharp.tsx +++ b/src/IconSearchHandsFreeSharp.tsx @@ -8,4 +8,4 @@ const IconSearchHandsFreeSharp: React.FC = ({ ...props }) => ( ) -export { IconSearchHandsFreeSharp as default } +export default IconSearchHandsFreeSharp diff --git a/src/IconSearchHandsFreeSharpFilled.tsx b/src/IconSearchHandsFreeSharpFilled.tsx index 50265014a..43f0627f0 100644 --- a/src/IconSearchHandsFreeSharpFilled.tsx +++ b/src/IconSearchHandsFreeSharpFilled.tsx @@ -8,4 +8,4 @@ const IconSearchHandsFreeSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconSearchHandsFreeSharpFilled as default } +export default IconSearchHandsFreeSharpFilled diff --git a/src/IconSearchInsightsOutlined.tsx b/src/IconSearchInsightsOutlined.tsx index 6071e6c6d..9a8cad460 100644 --- a/src/IconSearchInsightsOutlined.tsx +++ b/src/IconSearchInsightsOutlined.tsx @@ -8,4 +8,4 @@ const IconSearchInsightsOutlined: React.FC = ({ ...props }) => ( ) -export { IconSearchInsightsOutlined as default } +export default IconSearchInsightsOutlined diff --git a/src/IconSearchInsightsOutlinedFilled.tsx b/src/IconSearchInsightsOutlinedFilled.tsx index 5c2d57b96..b68b09c7d 100644 --- a/src/IconSearchInsightsOutlinedFilled.tsx +++ b/src/IconSearchInsightsOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconSearchInsightsOutlinedFilled: React.FC = ({ ) -export { IconSearchInsightsOutlinedFilled as default } +export default IconSearchInsightsOutlinedFilled diff --git a/src/IconSearchInsightsRounded.tsx b/src/IconSearchInsightsRounded.tsx index 2dc7a22ed..534f6e41a 100644 --- a/src/IconSearchInsightsRounded.tsx +++ b/src/IconSearchInsightsRounded.tsx @@ -8,4 +8,4 @@ const IconSearchInsightsRounded: React.FC = ({ ...props }) => ( ) -export { IconSearchInsightsRounded as default } +export default IconSearchInsightsRounded diff --git a/src/IconSearchInsightsRoundedFilled.tsx b/src/IconSearchInsightsRoundedFilled.tsx index 33ce03707..3a2979526 100644 --- a/src/IconSearchInsightsRoundedFilled.tsx +++ b/src/IconSearchInsightsRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconSearchInsightsRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconSearchInsightsRoundedFilled as default } +export default IconSearchInsightsRoundedFilled diff --git a/src/IconSearchInsightsSharp.tsx b/src/IconSearchInsightsSharp.tsx index 2a1c402cf..3353a8e6a 100644 --- a/src/IconSearchInsightsSharp.tsx +++ b/src/IconSearchInsightsSharp.tsx @@ -8,4 +8,4 @@ const IconSearchInsightsSharp: React.FC = ({ ...props }) => ( ) -export { IconSearchInsightsSharp as default } +export default IconSearchInsightsSharp diff --git a/src/IconSearchInsightsSharpFilled.tsx b/src/IconSearchInsightsSharpFilled.tsx index f9d9be4b7..838f8b9f4 100644 --- a/src/IconSearchInsightsSharpFilled.tsx +++ b/src/IconSearchInsightsSharpFilled.tsx @@ -8,4 +8,4 @@ const IconSearchInsightsSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconSearchInsightsSharpFilled as default } +export default IconSearchInsightsSharpFilled diff --git a/src/IconSearchOffOutlined.tsx b/src/IconSearchOffOutlined.tsx index 29a15f734..dbf22e973 100644 --- a/src/IconSearchOffOutlined.tsx +++ b/src/IconSearchOffOutlined.tsx @@ -8,4 +8,4 @@ const IconSearchOffOutlined: React.FC = ({ ...props }) => ( ) -export { IconSearchOffOutlined as default } +export default IconSearchOffOutlined diff --git a/src/IconSearchOffOutlinedFilled.tsx b/src/IconSearchOffOutlinedFilled.tsx index b3f5552a3..266c21e56 100644 --- a/src/IconSearchOffOutlinedFilled.tsx +++ b/src/IconSearchOffOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconSearchOffOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconSearchOffOutlinedFilled as default } +export default IconSearchOffOutlinedFilled diff --git a/src/IconSearchOffRounded.tsx b/src/IconSearchOffRounded.tsx index 99e36a9a2..eaebc070e 100644 --- a/src/IconSearchOffRounded.tsx +++ b/src/IconSearchOffRounded.tsx @@ -8,4 +8,4 @@ const IconSearchOffRounded: React.FC = ({ ...props }) => ( ) -export { IconSearchOffRounded as default } +export default IconSearchOffRounded diff --git a/src/IconSearchOffRoundedFilled.tsx b/src/IconSearchOffRoundedFilled.tsx index a331e37a3..103d87511 100644 --- a/src/IconSearchOffRoundedFilled.tsx +++ b/src/IconSearchOffRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconSearchOffRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconSearchOffRoundedFilled as default } +export default IconSearchOffRoundedFilled diff --git a/src/IconSearchOffSharp.tsx b/src/IconSearchOffSharp.tsx index 97a9ff18f..9276d448e 100644 --- a/src/IconSearchOffSharp.tsx +++ b/src/IconSearchOffSharp.tsx @@ -8,4 +8,4 @@ const IconSearchOffSharp: React.FC = ({ ...props }) => ( ) -export { IconSearchOffSharp as default } +export default IconSearchOffSharp diff --git a/src/IconSearchOffSharpFilled.tsx b/src/IconSearchOffSharpFilled.tsx index c848cdfb1..7b93ee16a 100644 --- a/src/IconSearchOffSharpFilled.tsx +++ b/src/IconSearchOffSharpFilled.tsx @@ -8,4 +8,4 @@ const IconSearchOffSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconSearchOffSharpFilled as default } +export default IconSearchOffSharpFilled diff --git a/src/IconSearchOutlined.tsx b/src/IconSearchOutlined.tsx index 3e9ac640a..242af8ea6 100644 --- a/src/IconSearchOutlined.tsx +++ b/src/IconSearchOutlined.tsx @@ -8,4 +8,4 @@ const IconSearchOutlined: React.FC = ({ ...props }) => ( ) -export { IconSearchOutlined as default } +export default IconSearchOutlined diff --git a/src/IconSearchOutlinedFilled.tsx b/src/IconSearchOutlinedFilled.tsx index 547736db4..261576f79 100644 --- a/src/IconSearchOutlinedFilled.tsx +++ b/src/IconSearchOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconSearchOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconSearchOutlinedFilled as default } +export default IconSearchOutlinedFilled diff --git a/src/IconSearchRounded.tsx b/src/IconSearchRounded.tsx index da5618f5a..bd666646a 100644 --- a/src/IconSearchRounded.tsx +++ b/src/IconSearchRounded.tsx @@ -8,4 +8,4 @@ const IconSearchRounded: React.FC = ({ ...props }) => ( ) -export { IconSearchRounded as default } +export default IconSearchRounded diff --git a/src/IconSearchRoundedFilled.tsx b/src/IconSearchRoundedFilled.tsx index 96d7c65a3..7f50138bd 100644 --- a/src/IconSearchRoundedFilled.tsx +++ b/src/IconSearchRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconSearchRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconSearchRoundedFilled as default } +export default IconSearchRoundedFilled diff --git a/src/IconSearchSharp.tsx b/src/IconSearchSharp.tsx index d4fd5254c..9a2293a28 100644 --- a/src/IconSearchSharp.tsx +++ b/src/IconSearchSharp.tsx @@ -8,4 +8,4 @@ const IconSearchSharp: React.FC = ({ ...props }) => ( ) -export { IconSearchSharp as default } +export default IconSearchSharp diff --git a/src/IconSearchSharpFilled.tsx b/src/IconSearchSharpFilled.tsx index 5bb6a0b74..15c0e5af4 100644 --- a/src/IconSearchSharpFilled.tsx +++ b/src/IconSearchSharpFilled.tsx @@ -8,4 +8,4 @@ const IconSearchSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconSearchSharpFilled as default } +export default IconSearchSharpFilled diff --git a/src/IconSecurityKeyOutlined.tsx b/src/IconSecurityKeyOutlined.tsx index 083e40cc4..14cc38106 100644 --- a/src/IconSecurityKeyOutlined.tsx +++ b/src/IconSecurityKeyOutlined.tsx @@ -8,4 +8,4 @@ const IconSecurityKeyOutlined: React.FC = ({ ...props }) => ( ) -export { IconSecurityKeyOutlined as default } +export default IconSecurityKeyOutlined diff --git a/src/IconSecurityKeyOutlinedFilled.tsx b/src/IconSecurityKeyOutlinedFilled.tsx index a45ed97b0..fb88d30ea 100644 --- a/src/IconSecurityKeyOutlinedFilled.tsx +++ b/src/IconSecurityKeyOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconSecurityKeyOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconSecurityKeyOutlinedFilled as default } +export default IconSecurityKeyOutlinedFilled diff --git a/src/IconSecurityKeyRounded.tsx b/src/IconSecurityKeyRounded.tsx index 01115d875..ee50f0705 100644 --- a/src/IconSecurityKeyRounded.tsx +++ b/src/IconSecurityKeyRounded.tsx @@ -8,4 +8,4 @@ const IconSecurityKeyRounded: React.FC = ({ ...props }) => ( ) -export { IconSecurityKeyRounded as default } +export default IconSecurityKeyRounded diff --git a/src/IconSecurityKeyRoundedFilled.tsx b/src/IconSecurityKeyRoundedFilled.tsx index ec4702a24..6d650c6ad 100644 --- a/src/IconSecurityKeyRoundedFilled.tsx +++ b/src/IconSecurityKeyRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconSecurityKeyRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconSecurityKeyRoundedFilled as default } +export default IconSecurityKeyRoundedFilled diff --git a/src/IconSecurityKeySharp.tsx b/src/IconSecurityKeySharp.tsx index 11317d110..0063e00ae 100644 --- a/src/IconSecurityKeySharp.tsx +++ b/src/IconSecurityKeySharp.tsx @@ -8,4 +8,4 @@ const IconSecurityKeySharp: React.FC = ({ ...props }) => ( ) -export { IconSecurityKeySharp as default } +export default IconSecurityKeySharp diff --git a/src/IconSecurityKeySharpFilled.tsx b/src/IconSecurityKeySharpFilled.tsx index e94267399..bb3c9371c 100644 --- a/src/IconSecurityKeySharpFilled.tsx +++ b/src/IconSecurityKeySharpFilled.tsx @@ -8,4 +8,4 @@ const IconSecurityKeySharpFilled: React.FC = ({ ...props }) => ( ) -export { IconSecurityKeySharpFilled as default } +export default IconSecurityKeySharpFilled diff --git a/src/IconSecurityOutlined.tsx b/src/IconSecurityOutlined.tsx index cbc737a5f..8a8ba7e2d 100644 --- a/src/IconSecurityOutlined.tsx +++ b/src/IconSecurityOutlined.tsx @@ -8,4 +8,4 @@ const IconSecurityOutlined: React.FC = ({ ...props }) => ( ) -export { IconSecurityOutlined as default } +export default IconSecurityOutlined diff --git a/src/IconSecurityOutlinedFilled.tsx b/src/IconSecurityOutlinedFilled.tsx index c5bfbe56e..613abec18 100644 --- a/src/IconSecurityOutlinedFilled.tsx +++ b/src/IconSecurityOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconSecurityOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconSecurityOutlinedFilled as default } +export default IconSecurityOutlinedFilled diff --git a/src/IconSecurityRounded.tsx b/src/IconSecurityRounded.tsx index 0099966c4..46cb0a628 100644 --- a/src/IconSecurityRounded.tsx +++ b/src/IconSecurityRounded.tsx @@ -8,4 +8,4 @@ const IconSecurityRounded: React.FC = ({ ...props }) => ( ) -export { IconSecurityRounded as default } +export default IconSecurityRounded diff --git a/src/IconSecurityRoundedFilled.tsx b/src/IconSecurityRoundedFilled.tsx index 171149208..03944083c 100644 --- a/src/IconSecurityRoundedFilled.tsx +++ b/src/IconSecurityRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconSecurityRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconSecurityRoundedFilled as default } +export default IconSecurityRoundedFilled diff --git a/src/IconSecuritySharp.tsx b/src/IconSecuritySharp.tsx index 6a47f83dd..c92013fc9 100644 --- a/src/IconSecuritySharp.tsx +++ b/src/IconSecuritySharp.tsx @@ -8,4 +8,4 @@ const IconSecuritySharp: React.FC = ({ ...props }) => ( ) -export { IconSecuritySharp as default } +export default IconSecuritySharp diff --git a/src/IconSecuritySharpFilled.tsx b/src/IconSecuritySharpFilled.tsx index 8dec640f8..e601e272e 100644 --- a/src/IconSecuritySharpFilled.tsx +++ b/src/IconSecuritySharpFilled.tsx @@ -8,4 +8,4 @@ const IconSecuritySharpFilled: React.FC = ({ ...props }) => ( ) -export { IconSecuritySharpFilled as default } +export default IconSecuritySharpFilled diff --git a/src/IconSecurityUpdateGoodOutlined.tsx b/src/IconSecurityUpdateGoodOutlined.tsx index a91980261..38f559628 100644 --- a/src/IconSecurityUpdateGoodOutlined.tsx +++ b/src/IconSecurityUpdateGoodOutlined.tsx @@ -8,4 +8,4 @@ const IconSecurityUpdateGoodOutlined: React.FC = ({ ...props }) => ( ) -export { IconSecurityUpdateGoodOutlined as default } +export default IconSecurityUpdateGoodOutlined diff --git a/src/IconSecurityUpdateGoodOutlinedFilled.tsx b/src/IconSecurityUpdateGoodOutlinedFilled.tsx index ca825375f..2f4477fc5 100644 --- a/src/IconSecurityUpdateGoodOutlinedFilled.tsx +++ b/src/IconSecurityUpdateGoodOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconSecurityUpdateGoodOutlinedFilled: React.FC = ({ ) -export { IconSecurityUpdateGoodOutlinedFilled as default } +export default IconSecurityUpdateGoodOutlinedFilled diff --git a/src/IconSecurityUpdateGoodRounded.tsx b/src/IconSecurityUpdateGoodRounded.tsx index 80cf4c098..e44a20f4a 100644 --- a/src/IconSecurityUpdateGoodRounded.tsx +++ b/src/IconSecurityUpdateGoodRounded.tsx @@ -8,4 +8,4 @@ const IconSecurityUpdateGoodRounded: React.FC = ({ ...props }) => ( ) -export { IconSecurityUpdateGoodRounded as default } +export default IconSecurityUpdateGoodRounded diff --git a/src/IconSecurityUpdateGoodRoundedFilled.tsx b/src/IconSecurityUpdateGoodRoundedFilled.tsx index a4b403dc5..53f27c72b 100644 --- a/src/IconSecurityUpdateGoodRoundedFilled.tsx +++ b/src/IconSecurityUpdateGoodRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconSecurityUpdateGoodRoundedFilled: React.FC = ({ ) -export { IconSecurityUpdateGoodRoundedFilled as default } +export default IconSecurityUpdateGoodRoundedFilled diff --git a/src/IconSecurityUpdateGoodSharp.tsx b/src/IconSecurityUpdateGoodSharp.tsx index 32b6c021b..d8e2da9f1 100644 --- a/src/IconSecurityUpdateGoodSharp.tsx +++ b/src/IconSecurityUpdateGoodSharp.tsx @@ -8,4 +8,4 @@ const IconSecurityUpdateGoodSharp: React.FC = ({ ...props }) => ( ) -export { IconSecurityUpdateGoodSharp as default } +export default IconSecurityUpdateGoodSharp diff --git a/src/IconSecurityUpdateGoodSharpFilled.tsx b/src/IconSecurityUpdateGoodSharpFilled.tsx index 6484ab6c2..84bd9452c 100644 --- a/src/IconSecurityUpdateGoodSharpFilled.tsx +++ b/src/IconSecurityUpdateGoodSharpFilled.tsx @@ -10,4 +10,4 @@ const IconSecurityUpdateGoodSharpFilled: React.FC = ({ ) -export { IconSecurityUpdateGoodSharpFilled as default } +export default IconSecurityUpdateGoodSharpFilled diff --git a/src/IconSecurityUpdateWarningOutlined.tsx b/src/IconSecurityUpdateWarningOutlined.tsx index 84329daf2..c62b3cd3f 100644 --- a/src/IconSecurityUpdateWarningOutlined.tsx +++ b/src/IconSecurityUpdateWarningOutlined.tsx @@ -10,4 +10,4 @@ const IconSecurityUpdateWarningOutlined: React.FC = ({ ) -export { IconSecurityUpdateWarningOutlined as default } +export default IconSecurityUpdateWarningOutlined diff --git a/src/IconSecurityUpdateWarningOutlinedFilled.tsx b/src/IconSecurityUpdateWarningOutlinedFilled.tsx index 9409a98c5..a534e6c00 100644 --- a/src/IconSecurityUpdateWarningOutlinedFilled.tsx +++ b/src/IconSecurityUpdateWarningOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconSecurityUpdateWarningOutlinedFilled: React.FC = ({ ) -export { IconSecurityUpdateWarningOutlinedFilled as default } +export default IconSecurityUpdateWarningOutlinedFilled diff --git a/src/IconSecurityUpdateWarningRounded.tsx b/src/IconSecurityUpdateWarningRounded.tsx index 51f5c79a5..3b5cbe98c 100644 --- a/src/IconSecurityUpdateWarningRounded.tsx +++ b/src/IconSecurityUpdateWarningRounded.tsx @@ -10,4 +10,4 @@ const IconSecurityUpdateWarningRounded: React.FC = ({ ) -export { IconSecurityUpdateWarningRounded as default } +export default IconSecurityUpdateWarningRounded diff --git a/src/IconSecurityUpdateWarningRoundedFilled.tsx b/src/IconSecurityUpdateWarningRoundedFilled.tsx index 5096bcda2..9625f3ef2 100644 --- a/src/IconSecurityUpdateWarningRoundedFilled.tsx +++ b/src/IconSecurityUpdateWarningRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconSecurityUpdateWarningRoundedFilled: React.FC = ({ ) -export { IconSecurityUpdateWarningRoundedFilled as default } +export default IconSecurityUpdateWarningRoundedFilled diff --git a/src/IconSecurityUpdateWarningSharp.tsx b/src/IconSecurityUpdateWarningSharp.tsx index 4c962c0c4..7db777417 100644 --- a/src/IconSecurityUpdateWarningSharp.tsx +++ b/src/IconSecurityUpdateWarningSharp.tsx @@ -8,4 +8,4 @@ const IconSecurityUpdateWarningSharp: React.FC = ({ ...props }) => ( ) -export { IconSecurityUpdateWarningSharp as default } +export default IconSecurityUpdateWarningSharp diff --git a/src/IconSecurityUpdateWarningSharpFilled.tsx b/src/IconSecurityUpdateWarningSharpFilled.tsx index 85a78e1bd..bd9e9a971 100644 --- a/src/IconSecurityUpdateWarningSharpFilled.tsx +++ b/src/IconSecurityUpdateWarningSharpFilled.tsx @@ -10,4 +10,4 @@ const IconSecurityUpdateWarningSharpFilled: React.FC = ({ ) -export { IconSecurityUpdateWarningSharpFilled as default } +export default IconSecurityUpdateWarningSharpFilled diff --git a/src/IconSegmentOutlined.tsx b/src/IconSegmentOutlined.tsx index 49faf5196..8e1c0d6e1 100644 --- a/src/IconSegmentOutlined.tsx +++ b/src/IconSegmentOutlined.tsx @@ -8,4 +8,4 @@ const IconSegmentOutlined: React.FC = ({ ...props }) => ( ) -export { IconSegmentOutlined as default } +export default IconSegmentOutlined diff --git a/src/IconSegmentOutlinedFilled.tsx b/src/IconSegmentOutlinedFilled.tsx index 16289f6aa..da2949f1a 100644 --- a/src/IconSegmentOutlinedFilled.tsx +++ b/src/IconSegmentOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconSegmentOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconSegmentOutlinedFilled as default } +export default IconSegmentOutlinedFilled diff --git a/src/IconSegmentRounded.tsx b/src/IconSegmentRounded.tsx index 03cf74b02..6fe6565c2 100644 --- a/src/IconSegmentRounded.tsx +++ b/src/IconSegmentRounded.tsx @@ -8,4 +8,4 @@ const IconSegmentRounded: React.FC = ({ ...props }) => ( ) -export { IconSegmentRounded as default } +export default IconSegmentRounded diff --git a/src/IconSegmentRoundedFilled.tsx b/src/IconSegmentRoundedFilled.tsx index c426b3543..ef7f83084 100644 --- a/src/IconSegmentRoundedFilled.tsx +++ b/src/IconSegmentRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconSegmentRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconSegmentRoundedFilled as default } +export default IconSegmentRoundedFilled diff --git a/src/IconSegmentSharp.tsx b/src/IconSegmentSharp.tsx index 8fa280a86..1ecabe06d 100644 --- a/src/IconSegmentSharp.tsx +++ b/src/IconSegmentSharp.tsx @@ -8,4 +8,4 @@ const IconSegmentSharp: React.FC = ({ ...props }) => ( ) -export { IconSegmentSharp as default } +export default IconSegmentSharp diff --git a/src/IconSegmentSharpFilled.tsx b/src/IconSegmentSharpFilled.tsx index dd26eef26..a48587907 100644 --- a/src/IconSegmentSharpFilled.tsx +++ b/src/IconSegmentSharpFilled.tsx @@ -8,4 +8,4 @@ const IconSegmentSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconSegmentSharpFilled as default } +export default IconSegmentSharpFilled diff --git a/src/IconSelectAllOutlined.tsx b/src/IconSelectAllOutlined.tsx index 870722225..3ba280215 100644 --- a/src/IconSelectAllOutlined.tsx +++ b/src/IconSelectAllOutlined.tsx @@ -8,4 +8,4 @@ const IconSelectAllOutlined: React.FC = ({ ...props }) => ( ) -export { IconSelectAllOutlined as default } +export default IconSelectAllOutlined diff --git a/src/IconSelectAllOutlinedFilled.tsx b/src/IconSelectAllOutlinedFilled.tsx index 6267acef9..9f0200d24 100644 --- a/src/IconSelectAllOutlinedFilled.tsx +++ b/src/IconSelectAllOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconSelectAllOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconSelectAllOutlinedFilled as default } +export default IconSelectAllOutlinedFilled diff --git a/src/IconSelectAllRounded.tsx b/src/IconSelectAllRounded.tsx index bef18a672..7dd7f85c4 100644 --- a/src/IconSelectAllRounded.tsx +++ b/src/IconSelectAllRounded.tsx @@ -8,4 +8,4 @@ const IconSelectAllRounded: React.FC = ({ ...props }) => ( ) -export { IconSelectAllRounded as default } +export default IconSelectAllRounded diff --git a/src/IconSelectAllRoundedFilled.tsx b/src/IconSelectAllRoundedFilled.tsx index 315367879..0827466ce 100644 --- a/src/IconSelectAllRoundedFilled.tsx +++ b/src/IconSelectAllRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconSelectAllRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconSelectAllRoundedFilled as default } +export default IconSelectAllRoundedFilled diff --git a/src/IconSelectAllSharp.tsx b/src/IconSelectAllSharp.tsx index 3cbd8b976..f662a9a05 100644 --- a/src/IconSelectAllSharp.tsx +++ b/src/IconSelectAllSharp.tsx @@ -8,4 +8,4 @@ const IconSelectAllSharp: React.FC = ({ ...props }) => ( ) -export { IconSelectAllSharp as default } +export default IconSelectAllSharp diff --git a/src/IconSelectAllSharpFilled.tsx b/src/IconSelectAllSharpFilled.tsx index 347d222fd..1e54a889b 100644 --- a/src/IconSelectAllSharpFilled.tsx +++ b/src/IconSelectAllSharpFilled.tsx @@ -8,4 +8,4 @@ const IconSelectAllSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconSelectAllSharpFilled as default } +export default IconSelectAllSharpFilled diff --git a/src/IconSelectCheckBoxOutlined.tsx b/src/IconSelectCheckBoxOutlined.tsx index c156d8163..43a69befe 100644 --- a/src/IconSelectCheckBoxOutlined.tsx +++ b/src/IconSelectCheckBoxOutlined.tsx @@ -8,4 +8,4 @@ const IconSelectCheckBoxOutlined: React.FC = ({ ...props }) => ( ) -export { IconSelectCheckBoxOutlined as default } +export default IconSelectCheckBoxOutlined diff --git a/src/IconSelectCheckBoxOutlinedFilled.tsx b/src/IconSelectCheckBoxOutlinedFilled.tsx index f0f94c848..9d490c69c 100644 --- a/src/IconSelectCheckBoxOutlinedFilled.tsx +++ b/src/IconSelectCheckBoxOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconSelectCheckBoxOutlinedFilled: React.FC = ({ ) -export { IconSelectCheckBoxOutlinedFilled as default } +export default IconSelectCheckBoxOutlinedFilled diff --git a/src/IconSelectCheckBoxRounded.tsx b/src/IconSelectCheckBoxRounded.tsx index e33fb0a0e..d93887098 100644 --- a/src/IconSelectCheckBoxRounded.tsx +++ b/src/IconSelectCheckBoxRounded.tsx @@ -8,4 +8,4 @@ const IconSelectCheckBoxRounded: React.FC = ({ ...props }) => ( ) -export { IconSelectCheckBoxRounded as default } +export default IconSelectCheckBoxRounded diff --git a/src/IconSelectCheckBoxRoundedFilled.tsx b/src/IconSelectCheckBoxRoundedFilled.tsx index fb3ae5521..c77b1db29 100644 --- a/src/IconSelectCheckBoxRoundedFilled.tsx +++ b/src/IconSelectCheckBoxRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconSelectCheckBoxRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconSelectCheckBoxRoundedFilled as default } +export default IconSelectCheckBoxRoundedFilled diff --git a/src/IconSelectCheckBoxSharp.tsx b/src/IconSelectCheckBoxSharp.tsx index 9f4298e5b..7e23e6097 100644 --- a/src/IconSelectCheckBoxSharp.tsx +++ b/src/IconSelectCheckBoxSharp.tsx @@ -8,4 +8,4 @@ const IconSelectCheckBoxSharp: React.FC = ({ ...props }) => ( ) -export { IconSelectCheckBoxSharp as default } +export default IconSelectCheckBoxSharp diff --git a/src/IconSelectCheckBoxSharpFilled.tsx b/src/IconSelectCheckBoxSharpFilled.tsx index 5f75eed18..ab165b8bd 100644 --- a/src/IconSelectCheckBoxSharpFilled.tsx +++ b/src/IconSelectCheckBoxSharpFilled.tsx @@ -8,4 +8,4 @@ const IconSelectCheckBoxSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconSelectCheckBoxSharpFilled as default } +export default IconSelectCheckBoxSharpFilled diff --git a/src/IconSelectOutlined.tsx b/src/IconSelectOutlined.tsx index 7cb42a1f8..084593910 100644 --- a/src/IconSelectOutlined.tsx +++ b/src/IconSelectOutlined.tsx @@ -8,4 +8,4 @@ const IconSelectOutlined: React.FC = ({ ...props }) => ( ) -export { IconSelectOutlined as default } +export default IconSelectOutlined diff --git a/src/IconSelectOutlinedFilled.tsx b/src/IconSelectOutlinedFilled.tsx index c5d607b1b..2157bdf60 100644 --- a/src/IconSelectOutlinedFilled.tsx +++ b/src/IconSelectOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconSelectOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconSelectOutlinedFilled as default } +export default IconSelectOutlinedFilled diff --git a/src/IconSelectRounded.tsx b/src/IconSelectRounded.tsx index 41ce1584c..eda18a00f 100644 --- a/src/IconSelectRounded.tsx +++ b/src/IconSelectRounded.tsx @@ -8,4 +8,4 @@ const IconSelectRounded: React.FC = ({ ...props }) => ( ) -export { IconSelectRounded as default } +export default IconSelectRounded diff --git a/src/IconSelectRoundedFilled.tsx b/src/IconSelectRoundedFilled.tsx index c8b87b5f8..07c36a65c 100644 --- a/src/IconSelectRoundedFilled.tsx +++ b/src/IconSelectRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconSelectRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconSelectRoundedFilled as default } +export default IconSelectRoundedFilled diff --git a/src/IconSelectSharp.tsx b/src/IconSelectSharp.tsx index 8eb4e9eef..928e6569a 100644 --- a/src/IconSelectSharp.tsx +++ b/src/IconSelectSharp.tsx @@ -8,4 +8,4 @@ const IconSelectSharp: React.FC = ({ ...props }) => ( ) -export { IconSelectSharp as default } +export default IconSelectSharp diff --git a/src/IconSelectSharpFilled.tsx b/src/IconSelectSharpFilled.tsx index 5599623b2..b562c98f9 100644 --- a/src/IconSelectSharpFilled.tsx +++ b/src/IconSelectSharpFilled.tsx @@ -8,4 +8,4 @@ const IconSelectSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconSelectSharpFilled as default } +export default IconSelectSharpFilled diff --git a/src/IconSelectToSpeakOutlined.tsx b/src/IconSelectToSpeakOutlined.tsx index a42f814bc..5c3b93666 100644 --- a/src/IconSelectToSpeakOutlined.tsx +++ b/src/IconSelectToSpeakOutlined.tsx @@ -8,4 +8,4 @@ const IconSelectToSpeakOutlined: React.FC = ({ ...props }) => ( ) -export { IconSelectToSpeakOutlined as default } +export default IconSelectToSpeakOutlined diff --git a/src/IconSelectToSpeakOutlinedFilled.tsx b/src/IconSelectToSpeakOutlinedFilled.tsx index caa056771..e3c42814a 100644 --- a/src/IconSelectToSpeakOutlinedFilled.tsx +++ b/src/IconSelectToSpeakOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconSelectToSpeakOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconSelectToSpeakOutlinedFilled as default } +export default IconSelectToSpeakOutlinedFilled diff --git a/src/IconSelectToSpeakRounded.tsx b/src/IconSelectToSpeakRounded.tsx index 7b5fb5f71..181103146 100644 --- a/src/IconSelectToSpeakRounded.tsx +++ b/src/IconSelectToSpeakRounded.tsx @@ -8,4 +8,4 @@ const IconSelectToSpeakRounded: React.FC = ({ ...props }) => ( ) -export { IconSelectToSpeakRounded as default } +export default IconSelectToSpeakRounded diff --git a/src/IconSelectToSpeakRoundedFilled.tsx b/src/IconSelectToSpeakRoundedFilled.tsx index eb4625e0a..2e8d2a57a 100644 --- a/src/IconSelectToSpeakRoundedFilled.tsx +++ b/src/IconSelectToSpeakRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconSelectToSpeakRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconSelectToSpeakRoundedFilled as default } +export default IconSelectToSpeakRoundedFilled diff --git a/src/IconSelectToSpeakSharp.tsx b/src/IconSelectToSpeakSharp.tsx index 43cc6b3b1..00ca71b3d 100644 --- a/src/IconSelectToSpeakSharp.tsx +++ b/src/IconSelectToSpeakSharp.tsx @@ -8,4 +8,4 @@ const IconSelectToSpeakSharp: React.FC = ({ ...props }) => ( ) -export { IconSelectToSpeakSharp as default } +export default IconSelectToSpeakSharp diff --git a/src/IconSelectToSpeakSharpFilled.tsx b/src/IconSelectToSpeakSharpFilled.tsx index a88b508fc..df1b47b30 100644 --- a/src/IconSelectToSpeakSharpFilled.tsx +++ b/src/IconSelectToSpeakSharpFilled.tsx @@ -8,4 +8,4 @@ const IconSelectToSpeakSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconSelectToSpeakSharpFilled as default } +export default IconSelectToSpeakSharpFilled diff --git a/src/IconSelectWindow2Outlined.tsx b/src/IconSelectWindow2Outlined.tsx index c6c916c86..ad9cb0d0e 100644 --- a/src/IconSelectWindow2Outlined.tsx +++ b/src/IconSelectWindow2Outlined.tsx @@ -8,4 +8,4 @@ const IconSelectWindow2Outlined: React.FC = ({ ...props }) => ( ) -export { IconSelectWindow2Outlined as default } +export default IconSelectWindow2Outlined diff --git a/src/IconSelectWindow2OutlinedFilled.tsx b/src/IconSelectWindow2OutlinedFilled.tsx index 483fa3fcd..ba1988f7e 100644 --- a/src/IconSelectWindow2OutlinedFilled.tsx +++ b/src/IconSelectWindow2OutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconSelectWindow2OutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconSelectWindow2OutlinedFilled as default } +export default IconSelectWindow2OutlinedFilled diff --git a/src/IconSelectWindow2Rounded.tsx b/src/IconSelectWindow2Rounded.tsx index 4d3fd641b..a0bd0845f 100644 --- a/src/IconSelectWindow2Rounded.tsx +++ b/src/IconSelectWindow2Rounded.tsx @@ -8,4 +8,4 @@ const IconSelectWindow2Rounded: React.FC = ({ ...props }) => ( ) -export { IconSelectWindow2Rounded as default } +export default IconSelectWindow2Rounded diff --git a/src/IconSelectWindow2RoundedFilled.tsx b/src/IconSelectWindow2RoundedFilled.tsx index 8c562824b..7f479e107 100644 --- a/src/IconSelectWindow2RoundedFilled.tsx +++ b/src/IconSelectWindow2RoundedFilled.tsx @@ -8,4 +8,4 @@ const IconSelectWindow2RoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconSelectWindow2RoundedFilled as default } +export default IconSelectWindow2RoundedFilled diff --git a/src/IconSelectWindow2Sharp.tsx b/src/IconSelectWindow2Sharp.tsx index f3f79830e..426cf2188 100644 --- a/src/IconSelectWindow2Sharp.tsx +++ b/src/IconSelectWindow2Sharp.tsx @@ -8,4 +8,4 @@ const IconSelectWindow2Sharp: React.FC = ({ ...props }) => ( ) -export { IconSelectWindow2Sharp as default } +export default IconSelectWindow2Sharp diff --git a/src/IconSelectWindow2SharpFilled.tsx b/src/IconSelectWindow2SharpFilled.tsx index 16fc5f61c..96e851e52 100644 --- a/src/IconSelectWindow2SharpFilled.tsx +++ b/src/IconSelectWindow2SharpFilled.tsx @@ -8,4 +8,4 @@ const IconSelectWindow2SharpFilled: React.FC = ({ ...props }) => ( ) -export { IconSelectWindow2SharpFilled as default } +export default IconSelectWindow2SharpFilled diff --git a/src/IconSelectWindowOffOutlined.tsx b/src/IconSelectWindowOffOutlined.tsx index 1798cf9be..dd7337e99 100644 --- a/src/IconSelectWindowOffOutlined.tsx +++ b/src/IconSelectWindowOffOutlined.tsx @@ -8,4 +8,4 @@ const IconSelectWindowOffOutlined: React.FC = ({ ...props }) => ( ) -export { IconSelectWindowOffOutlined as default } +export default IconSelectWindowOffOutlined diff --git a/src/IconSelectWindowOffOutlinedFilled.tsx b/src/IconSelectWindowOffOutlinedFilled.tsx index 1fc6cafea..a5a887829 100644 --- a/src/IconSelectWindowOffOutlinedFilled.tsx +++ b/src/IconSelectWindowOffOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconSelectWindowOffOutlinedFilled: React.FC = ({ ) -export { IconSelectWindowOffOutlinedFilled as default } +export default IconSelectWindowOffOutlinedFilled diff --git a/src/IconSelectWindowOffRounded.tsx b/src/IconSelectWindowOffRounded.tsx index a185d3277..99308e8b3 100644 --- a/src/IconSelectWindowOffRounded.tsx +++ b/src/IconSelectWindowOffRounded.tsx @@ -8,4 +8,4 @@ const IconSelectWindowOffRounded: React.FC = ({ ...props }) => ( ) -export { IconSelectWindowOffRounded as default } +export default IconSelectWindowOffRounded diff --git a/src/IconSelectWindowOffRoundedFilled.tsx b/src/IconSelectWindowOffRoundedFilled.tsx index ae755dd00..2f3e4fdd3 100644 --- a/src/IconSelectWindowOffRoundedFilled.tsx +++ b/src/IconSelectWindowOffRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconSelectWindowOffRoundedFilled: React.FC = ({ ) -export { IconSelectWindowOffRoundedFilled as default } +export default IconSelectWindowOffRoundedFilled diff --git a/src/IconSelectWindowOffSharp.tsx b/src/IconSelectWindowOffSharp.tsx index 8e99d8e06..c6cf00bb2 100644 --- a/src/IconSelectWindowOffSharp.tsx +++ b/src/IconSelectWindowOffSharp.tsx @@ -8,4 +8,4 @@ const IconSelectWindowOffSharp: React.FC = ({ ...props }) => ( ) -export { IconSelectWindowOffSharp as default } +export default IconSelectWindowOffSharp diff --git a/src/IconSelectWindowOffSharpFilled.tsx b/src/IconSelectWindowOffSharpFilled.tsx index 9fb542a42..87b35a460 100644 --- a/src/IconSelectWindowOffSharpFilled.tsx +++ b/src/IconSelectWindowOffSharpFilled.tsx @@ -8,4 +8,4 @@ const IconSelectWindowOffSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconSelectWindowOffSharpFilled as default } +export default IconSelectWindowOffSharpFilled diff --git a/src/IconSelectWindowOutlined.tsx b/src/IconSelectWindowOutlined.tsx index 06d87e65e..e108a20a0 100644 --- a/src/IconSelectWindowOutlined.tsx +++ b/src/IconSelectWindowOutlined.tsx @@ -8,4 +8,4 @@ const IconSelectWindowOutlined: React.FC = ({ ...props }) => ( ) -export { IconSelectWindowOutlined as default } +export default IconSelectWindowOutlined diff --git a/src/IconSelectWindowOutlinedFilled.tsx b/src/IconSelectWindowOutlinedFilled.tsx index 4f01001bd..365e058a5 100644 --- a/src/IconSelectWindowOutlinedFilled.tsx +++ b/src/IconSelectWindowOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconSelectWindowOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconSelectWindowOutlinedFilled as default } +export default IconSelectWindowOutlinedFilled diff --git a/src/IconSelectWindowRounded.tsx b/src/IconSelectWindowRounded.tsx index 60af3ec39..057ad172c 100644 --- a/src/IconSelectWindowRounded.tsx +++ b/src/IconSelectWindowRounded.tsx @@ -8,4 +8,4 @@ const IconSelectWindowRounded: React.FC = ({ ...props }) => ( ) -export { IconSelectWindowRounded as default } +export default IconSelectWindowRounded diff --git a/src/IconSelectWindowRoundedFilled.tsx b/src/IconSelectWindowRoundedFilled.tsx index 16ea01940..9a98dae79 100644 --- a/src/IconSelectWindowRoundedFilled.tsx +++ b/src/IconSelectWindowRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconSelectWindowRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconSelectWindowRoundedFilled as default } +export default IconSelectWindowRoundedFilled diff --git a/src/IconSelectWindowSharp.tsx b/src/IconSelectWindowSharp.tsx index b0c92ce9e..6fef92287 100644 --- a/src/IconSelectWindowSharp.tsx +++ b/src/IconSelectWindowSharp.tsx @@ -8,4 +8,4 @@ const IconSelectWindowSharp: React.FC = ({ ...props }) => ( ) -export { IconSelectWindowSharp as default } +export default IconSelectWindowSharp diff --git a/src/IconSelectWindowSharpFilled.tsx b/src/IconSelectWindowSharpFilled.tsx index 0d74b7d09..ad4a58a9f 100644 --- a/src/IconSelectWindowSharpFilled.tsx +++ b/src/IconSelectWindowSharpFilled.tsx @@ -8,4 +8,4 @@ const IconSelectWindowSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconSelectWindowSharpFilled as default } +export default IconSelectWindowSharpFilled diff --git a/src/IconSelfCareOutlined.tsx b/src/IconSelfCareOutlined.tsx index eb2a43fc5..61a4ab7bb 100644 --- a/src/IconSelfCareOutlined.tsx +++ b/src/IconSelfCareOutlined.tsx @@ -8,4 +8,4 @@ const IconSelfCareOutlined: React.FC = ({ ...props }) => ( ) -export { IconSelfCareOutlined as default } +export default IconSelfCareOutlined diff --git a/src/IconSelfCareOutlinedFilled.tsx b/src/IconSelfCareOutlinedFilled.tsx index 335b84ec7..46ac0e3cb 100644 --- a/src/IconSelfCareOutlinedFilled.tsx +++ b/src/IconSelfCareOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconSelfCareOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconSelfCareOutlinedFilled as default } +export default IconSelfCareOutlinedFilled diff --git a/src/IconSelfCareRounded.tsx b/src/IconSelfCareRounded.tsx index dff735b2f..e9632cec8 100644 --- a/src/IconSelfCareRounded.tsx +++ b/src/IconSelfCareRounded.tsx @@ -8,4 +8,4 @@ const IconSelfCareRounded: React.FC = ({ ...props }) => ( ) -export { IconSelfCareRounded as default } +export default IconSelfCareRounded diff --git a/src/IconSelfCareRoundedFilled.tsx b/src/IconSelfCareRoundedFilled.tsx index 67d5c8cca..9421ba60c 100644 --- a/src/IconSelfCareRoundedFilled.tsx +++ b/src/IconSelfCareRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconSelfCareRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconSelfCareRoundedFilled as default } +export default IconSelfCareRoundedFilled diff --git a/src/IconSelfCareSharp.tsx b/src/IconSelfCareSharp.tsx index 96ff4bf6f..1ab9a897f 100644 --- a/src/IconSelfCareSharp.tsx +++ b/src/IconSelfCareSharp.tsx @@ -8,4 +8,4 @@ const IconSelfCareSharp: React.FC = ({ ...props }) => ( ) -export { IconSelfCareSharp as default } +export default IconSelfCareSharp diff --git a/src/IconSelfCareSharpFilled.tsx b/src/IconSelfCareSharpFilled.tsx index 6224874cf..323a5a741 100644 --- a/src/IconSelfCareSharpFilled.tsx +++ b/src/IconSelfCareSharpFilled.tsx @@ -8,4 +8,4 @@ const IconSelfCareSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconSelfCareSharpFilled as default } +export default IconSelfCareSharpFilled diff --git a/src/IconSelfImprovementOutlined.tsx b/src/IconSelfImprovementOutlined.tsx index 4a0193ac8..58bfcb743 100644 --- a/src/IconSelfImprovementOutlined.tsx +++ b/src/IconSelfImprovementOutlined.tsx @@ -8,4 +8,4 @@ const IconSelfImprovementOutlined: React.FC = ({ ...props }) => ( ) -export { IconSelfImprovementOutlined as default } +export default IconSelfImprovementOutlined diff --git a/src/IconSelfImprovementOutlinedFilled.tsx b/src/IconSelfImprovementOutlinedFilled.tsx index 7e12871cc..971fb3008 100644 --- a/src/IconSelfImprovementOutlinedFilled.tsx +++ b/src/IconSelfImprovementOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconSelfImprovementOutlinedFilled: React.FC = ({ ) -export { IconSelfImprovementOutlinedFilled as default } +export default IconSelfImprovementOutlinedFilled diff --git a/src/IconSelfImprovementRounded.tsx b/src/IconSelfImprovementRounded.tsx index 0ae404d97..f0eb522b8 100644 --- a/src/IconSelfImprovementRounded.tsx +++ b/src/IconSelfImprovementRounded.tsx @@ -8,4 +8,4 @@ const IconSelfImprovementRounded: React.FC = ({ ...props }) => ( ) -export { IconSelfImprovementRounded as default } +export default IconSelfImprovementRounded diff --git a/src/IconSelfImprovementRoundedFilled.tsx b/src/IconSelfImprovementRoundedFilled.tsx index f23c44456..3d987acc1 100644 --- a/src/IconSelfImprovementRoundedFilled.tsx +++ b/src/IconSelfImprovementRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconSelfImprovementRoundedFilled: React.FC = ({ ) -export { IconSelfImprovementRoundedFilled as default } +export default IconSelfImprovementRoundedFilled diff --git a/src/IconSelfImprovementSharp.tsx b/src/IconSelfImprovementSharp.tsx index ae5d641ab..4b6ab5140 100644 --- a/src/IconSelfImprovementSharp.tsx +++ b/src/IconSelfImprovementSharp.tsx @@ -8,4 +8,4 @@ const IconSelfImprovementSharp: React.FC = ({ ...props }) => ( ) -export { IconSelfImprovementSharp as default } +export default IconSelfImprovementSharp diff --git a/src/IconSelfImprovementSharpFilled.tsx b/src/IconSelfImprovementSharpFilled.tsx index d011ff851..a9d2c4f6d 100644 --- a/src/IconSelfImprovementSharpFilled.tsx +++ b/src/IconSelfImprovementSharpFilled.tsx @@ -8,4 +8,4 @@ const IconSelfImprovementSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconSelfImprovementSharpFilled as default } +export default IconSelfImprovementSharpFilled diff --git a/src/IconSellOutlined.tsx b/src/IconSellOutlined.tsx index 0aa0bd989..6f5736795 100644 --- a/src/IconSellOutlined.tsx +++ b/src/IconSellOutlined.tsx @@ -8,4 +8,4 @@ const IconSellOutlined: React.FC = ({ ...props }) => ( ) -export { IconSellOutlined as default } +export default IconSellOutlined diff --git a/src/IconSellOutlinedFilled.tsx b/src/IconSellOutlinedFilled.tsx index 3bbe2f056..e4cbe96e3 100644 --- a/src/IconSellOutlinedFilled.tsx +++ b/src/IconSellOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconSellOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconSellOutlinedFilled as default } +export default IconSellOutlinedFilled diff --git a/src/IconSellRounded.tsx b/src/IconSellRounded.tsx index 98c46ed29..646bc9176 100644 --- a/src/IconSellRounded.tsx +++ b/src/IconSellRounded.tsx @@ -8,4 +8,4 @@ const IconSellRounded: React.FC = ({ ...props }) => ( ) -export { IconSellRounded as default } +export default IconSellRounded diff --git a/src/IconSellRoundedFilled.tsx b/src/IconSellRoundedFilled.tsx index 4382973ed..497a8ebce 100644 --- a/src/IconSellRoundedFilled.tsx +++ b/src/IconSellRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconSellRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconSellRoundedFilled as default } +export default IconSellRoundedFilled diff --git a/src/IconSellSharp.tsx b/src/IconSellSharp.tsx index 4d25f70c2..869c5ced7 100644 --- a/src/IconSellSharp.tsx +++ b/src/IconSellSharp.tsx @@ -8,4 +8,4 @@ const IconSellSharp: React.FC = ({ ...props }) => ( ) -export { IconSellSharp as default } +export default IconSellSharp diff --git a/src/IconSellSharpFilled.tsx b/src/IconSellSharpFilled.tsx index 5244cf5c4..a3b687138 100644 --- a/src/IconSellSharpFilled.tsx +++ b/src/IconSellSharpFilled.tsx @@ -8,4 +8,4 @@ const IconSellSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconSellSharpFilled as default } +export default IconSellSharpFilled diff --git a/src/IconSendAndArchiveOutlined.tsx b/src/IconSendAndArchiveOutlined.tsx index 07f431388..d98b1d7ae 100644 --- a/src/IconSendAndArchiveOutlined.tsx +++ b/src/IconSendAndArchiveOutlined.tsx @@ -8,4 +8,4 @@ const IconSendAndArchiveOutlined: React.FC = ({ ...props }) => ( ) -export { IconSendAndArchiveOutlined as default } +export default IconSendAndArchiveOutlined diff --git a/src/IconSendAndArchiveOutlinedFilled.tsx b/src/IconSendAndArchiveOutlinedFilled.tsx index d6887feaf..4b17c218a 100644 --- a/src/IconSendAndArchiveOutlinedFilled.tsx +++ b/src/IconSendAndArchiveOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconSendAndArchiveOutlinedFilled: React.FC = ({ ) -export { IconSendAndArchiveOutlinedFilled as default } +export default IconSendAndArchiveOutlinedFilled diff --git a/src/IconSendAndArchiveRounded.tsx b/src/IconSendAndArchiveRounded.tsx index 354095276..a35d7be39 100644 --- a/src/IconSendAndArchiveRounded.tsx +++ b/src/IconSendAndArchiveRounded.tsx @@ -8,4 +8,4 @@ const IconSendAndArchiveRounded: React.FC = ({ ...props }) => ( ) -export { IconSendAndArchiveRounded as default } +export default IconSendAndArchiveRounded diff --git a/src/IconSendAndArchiveRoundedFilled.tsx b/src/IconSendAndArchiveRoundedFilled.tsx index a3441f473..7eb47e831 100644 --- a/src/IconSendAndArchiveRoundedFilled.tsx +++ b/src/IconSendAndArchiveRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconSendAndArchiveRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconSendAndArchiveRoundedFilled as default } +export default IconSendAndArchiveRoundedFilled diff --git a/src/IconSendAndArchiveSharp.tsx b/src/IconSendAndArchiveSharp.tsx index f58be828e..8f29de826 100644 --- a/src/IconSendAndArchiveSharp.tsx +++ b/src/IconSendAndArchiveSharp.tsx @@ -8,4 +8,4 @@ const IconSendAndArchiveSharp: React.FC = ({ ...props }) => ( ) -export { IconSendAndArchiveSharp as default } +export default IconSendAndArchiveSharp diff --git a/src/IconSendAndArchiveSharpFilled.tsx b/src/IconSendAndArchiveSharpFilled.tsx index 7c5245ee9..28d55249f 100644 --- a/src/IconSendAndArchiveSharpFilled.tsx +++ b/src/IconSendAndArchiveSharpFilled.tsx @@ -8,4 +8,4 @@ const IconSendAndArchiveSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconSendAndArchiveSharpFilled as default } +export default IconSendAndArchiveSharpFilled diff --git a/src/IconSendMoneyOutlined.tsx b/src/IconSendMoneyOutlined.tsx index 2737fe97f..11b4b18ff 100644 --- a/src/IconSendMoneyOutlined.tsx +++ b/src/IconSendMoneyOutlined.tsx @@ -8,4 +8,4 @@ const IconSendMoneyOutlined: React.FC = ({ ...props }) => ( ) -export { IconSendMoneyOutlined as default } +export default IconSendMoneyOutlined diff --git a/src/IconSendMoneyOutlinedFilled.tsx b/src/IconSendMoneyOutlinedFilled.tsx index 7f1bca952..52ce478d7 100644 --- a/src/IconSendMoneyOutlinedFilled.tsx +++ b/src/IconSendMoneyOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconSendMoneyOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconSendMoneyOutlinedFilled as default } +export default IconSendMoneyOutlinedFilled diff --git a/src/IconSendMoneyRounded.tsx b/src/IconSendMoneyRounded.tsx index 9d44a458a..ba4b090cc 100644 --- a/src/IconSendMoneyRounded.tsx +++ b/src/IconSendMoneyRounded.tsx @@ -8,4 +8,4 @@ const IconSendMoneyRounded: React.FC = ({ ...props }) => ( ) -export { IconSendMoneyRounded as default } +export default IconSendMoneyRounded diff --git a/src/IconSendMoneyRoundedFilled.tsx b/src/IconSendMoneyRoundedFilled.tsx index a981a2fd5..9438e25d3 100644 --- a/src/IconSendMoneyRoundedFilled.tsx +++ b/src/IconSendMoneyRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconSendMoneyRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconSendMoneyRoundedFilled as default } +export default IconSendMoneyRoundedFilled diff --git a/src/IconSendMoneySharp.tsx b/src/IconSendMoneySharp.tsx index b5c4da999..56b1d0626 100644 --- a/src/IconSendMoneySharp.tsx +++ b/src/IconSendMoneySharp.tsx @@ -8,4 +8,4 @@ const IconSendMoneySharp: React.FC = ({ ...props }) => ( ) -export { IconSendMoneySharp as default } +export default IconSendMoneySharp diff --git a/src/IconSendMoneySharpFilled.tsx b/src/IconSendMoneySharpFilled.tsx index ec03a6f65..934acadd5 100644 --- a/src/IconSendMoneySharpFilled.tsx +++ b/src/IconSendMoneySharpFilled.tsx @@ -8,4 +8,4 @@ const IconSendMoneySharpFilled: React.FC = ({ ...props }) => ( ) -export { IconSendMoneySharpFilled as default } +export default IconSendMoneySharpFilled diff --git a/src/IconSendOutlined.tsx b/src/IconSendOutlined.tsx index 2075f59c6..4fa30d513 100644 --- a/src/IconSendOutlined.tsx +++ b/src/IconSendOutlined.tsx @@ -8,4 +8,4 @@ const IconSendOutlined: React.FC = ({ ...props }) => ( ) -export { IconSendOutlined as default } +export default IconSendOutlined diff --git a/src/IconSendOutlinedFilled.tsx b/src/IconSendOutlinedFilled.tsx index 5ace4d0c4..1dc443b3c 100644 --- a/src/IconSendOutlinedFilled.tsx +++ b/src/IconSendOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconSendOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconSendOutlinedFilled as default } +export default IconSendOutlinedFilled diff --git a/src/IconSendRounded.tsx b/src/IconSendRounded.tsx index 0e00fffbe..534b38825 100644 --- a/src/IconSendRounded.tsx +++ b/src/IconSendRounded.tsx @@ -8,4 +8,4 @@ const IconSendRounded: React.FC = ({ ...props }) => ( ) -export { IconSendRounded as default } +export default IconSendRounded diff --git a/src/IconSendRoundedFilled.tsx b/src/IconSendRoundedFilled.tsx index 89bbe0466..31f23fa25 100644 --- a/src/IconSendRoundedFilled.tsx +++ b/src/IconSendRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconSendRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconSendRoundedFilled as default } +export default IconSendRoundedFilled diff --git a/src/IconSendSharp.tsx b/src/IconSendSharp.tsx index 944682a41..983ed4ae4 100644 --- a/src/IconSendSharp.tsx +++ b/src/IconSendSharp.tsx @@ -8,4 +8,4 @@ const IconSendSharp: React.FC = ({ ...props }) => ( ) -export { IconSendSharp as default } +export default IconSendSharp diff --git a/src/IconSendSharpFilled.tsx b/src/IconSendSharpFilled.tsx index cd62903e1..b6f57f476 100644 --- a/src/IconSendSharpFilled.tsx +++ b/src/IconSendSharpFilled.tsx @@ -8,4 +8,4 @@ const IconSendSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconSendSharpFilled as default } +export default IconSendSharpFilled diff --git a/src/IconSendTimeExtensionOutlined.tsx b/src/IconSendTimeExtensionOutlined.tsx index 8137335a2..f34e57422 100644 --- a/src/IconSendTimeExtensionOutlined.tsx +++ b/src/IconSendTimeExtensionOutlined.tsx @@ -8,4 +8,4 @@ const IconSendTimeExtensionOutlined: React.FC = ({ ...props }) => ( ) -export { IconSendTimeExtensionOutlined as default } +export default IconSendTimeExtensionOutlined diff --git a/src/IconSendTimeExtensionOutlinedFilled.tsx b/src/IconSendTimeExtensionOutlinedFilled.tsx index f35cd0b2a..5181fbe3d 100644 --- a/src/IconSendTimeExtensionOutlinedFilled.tsx +++ b/src/IconSendTimeExtensionOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconSendTimeExtensionOutlinedFilled: React.FC = ({ ) -export { IconSendTimeExtensionOutlinedFilled as default } +export default IconSendTimeExtensionOutlinedFilled diff --git a/src/IconSendTimeExtensionRounded.tsx b/src/IconSendTimeExtensionRounded.tsx index c72494bb1..b19eae5c6 100644 --- a/src/IconSendTimeExtensionRounded.tsx +++ b/src/IconSendTimeExtensionRounded.tsx @@ -8,4 +8,4 @@ const IconSendTimeExtensionRounded: React.FC = ({ ...props }) => ( ) -export { IconSendTimeExtensionRounded as default } +export default IconSendTimeExtensionRounded diff --git a/src/IconSendTimeExtensionRoundedFilled.tsx b/src/IconSendTimeExtensionRoundedFilled.tsx index f674268aa..d4e487759 100644 --- a/src/IconSendTimeExtensionRoundedFilled.tsx +++ b/src/IconSendTimeExtensionRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconSendTimeExtensionRoundedFilled: React.FC = ({ ) -export { IconSendTimeExtensionRoundedFilled as default } +export default IconSendTimeExtensionRoundedFilled diff --git a/src/IconSendTimeExtensionSharp.tsx b/src/IconSendTimeExtensionSharp.tsx index 16940e590..d802eb985 100644 --- a/src/IconSendTimeExtensionSharp.tsx +++ b/src/IconSendTimeExtensionSharp.tsx @@ -8,4 +8,4 @@ const IconSendTimeExtensionSharp: React.FC = ({ ...props }) => ( ) -export { IconSendTimeExtensionSharp as default } +export default IconSendTimeExtensionSharp diff --git a/src/IconSendTimeExtensionSharpFilled.tsx b/src/IconSendTimeExtensionSharpFilled.tsx index d2f22201d..855e72d75 100644 --- a/src/IconSendTimeExtensionSharpFilled.tsx +++ b/src/IconSendTimeExtensionSharpFilled.tsx @@ -10,4 +10,4 @@ const IconSendTimeExtensionSharpFilled: React.FC = ({ ) -export { IconSendTimeExtensionSharpFilled as default } +export default IconSendTimeExtensionSharpFilled diff --git a/src/IconSendToMobileOutlined.tsx b/src/IconSendToMobileOutlined.tsx index 42d6c98bc..133586c24 100644 --- a/src/IconSendToMobileOutlined.tsx +++ b/src/IconSendToMobileOutlined.tsx @@ -8,4 +8,4 @@ const IconSendToMobileOutlined: React.FC = ({ ...props }) => ( ) -export { IconSendToMobileOutlined as default } +export default IconSendToMobileOutlined diff --git a/src/IconSendToMobileOutlinedFilled.tsx b/src/IconSendToMobileOutlinedFilled.tsx index 973b7620c..83779011c 100644 --- a/src/IconSendToMobileOutlinedFilled.tsx +++ b/src/IconSendToMobileOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconSendToMobileOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconSendToMobileOutlinedFilled as default } +export default IconSendToMobileOutlinedFilled diff --git a/src/IconSendToMobileRounded.tsx b/src/IconSendToMobileRounded.tsx index e2e5b01db..b21f2a1d2 100644 --- a/src/IconSendToMobileRounded.tsx +++ b/src/IconSendToMobileRounded.tsx @@ -8,4 +8,4 @@ const IconSendToMobileRounded: React.FC = ({ ...props }) => ( ) -export { IconSendToMobileRounded as default } +export default IconSendToMobileRounded diff --git a/src/IconSendToMobileRoundedFilled.tsx b/src/IconSendToMobileRoundedFilled.tsx index 13bd1bc16..28d0f8798 100644 --- a/src/IconSendToMobileRoundedFilled.tsx +++ b/src/IconSendToMobileRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconSendToMobileRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconSendToMobileRoundedFilled as default } +export default IconSendToMobileRoundedFilled diff --git a/src/IconSendToMobileSharp.tsx b/src/IconSendToMobileSharp.tsx index 473b55519..98acdff49 100644 --- a/src/IconSendToMobileSharp.tsx +++ b/src/IconSendToMobileSharp.tsx @@ -8,4 +8,4 @@ const IconSendToMobileSharp: React.FC = ({ ...props }) => ( ) -export { IconSendToMobileSharp as default } +export default IconSendToMobileSharp diff --git a/src/IconSendToMobileSharpFilled.tsx b/src/IconSendToMobileSharpFilled.tsx index 9c3eace7a..86836be85 100644 --- a/src/IconSendToMobileSharpFilled.tsx +++ b/src/IconSendToMobileSharpFilled.tsx @@ -8,4 +8,4 @@ const IconSendToMobileSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconSendToMobileSharpFilled as default } +export default IconSendToMobileSharpFilled diff --git a/src/IconSensorDoorOutlined.tsx b/src/IconSensorDoorOutlined.tsx index bd2ba9410..a6b887071 100644 --- a/src/IconSensorDoorOutlined.tsx +++ b/src/IconSensorDoorOutlined.tsx @@ -8,4 +8,4 @@ const IconSensorDoorOutlined: React.FC = ({ ...props }) => ( ) -export { IconSensorDoorOutlined as default } +export default IconSensorDoorOutlined diff --git a/src/IconSensorDoorOutlinedFilled.tsx b/src/IconSensorDoorOutlinedFilled.tsx index 0866a8ee9..403d025d7 100644 --- a/src/IconSensorDoorOutlinedFilled.tsx +++ b/src/IconSensorDoorOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconSensorDoorOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconSensorDoorOutlinedFilled as default } +export default IconSensorDoorOutlinedFilled diff --git a/src/IconSensorDoorRounded.tsx b/src/IconSensorDoorRounded.tsx index c6006448f..a7e6c08f0 100644 --- a/src/IconSensorDoorRounded.tsx +++ b/src/IconSensorDoorRounded.tsx @@ -8,4 +8,4 @@ const IconSensorDoorRounded: React.FC = ({ ...props }) => ( ) -export { IconSensorDoorRounded as default } +export default IconSensorDoorRounded diff --git a/src/IconSensorDoorRoundedFilled.tsx b/src/IconSensorDoorRoundedFilled.tsx index aa073e473..adb1aed16 100644 --- a/src/IconSensorDoorRoundedFilled.tsx +++ b/src/IconSensorDoorRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconSensorDoorRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconSensorDoorRoundedFilled as default } +export default IconSensorDoorRoundedFilled diff --git a/src/IconSensorDoorSharp.tsx b/src/IconSensorDoorSharp.tsx index d0d8733ab..2bcd338f3 100644 --- a/src/IconSensorDoorSharp.tsx +++ b/src/IconSensorDoorSharp.tsx @@ -8,4 +8,4 @@ const IconSensorDoorSharp: React.FC = ({ ...props }) => ( ) -export { IconSensorDoorSharp as default } +export default IconSensorDoorSharp diff --git a/src/IconSensorDoorSharpFilled.tsx b/src/IconSensorDoorSharpFilled.tsx index 729412d44..024da55b9 100644 --- a/src/IconSensorDoorSharpFilled.tsx +++ b/src/IconSensorDoorSharpFilled.tsx @@ -8,4 +8,4 @@ const IconSensorDoorSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconSensorDoorSharpFilled as default } +export default IconSensorDoorSharpFilled diff --git a/src/IconSensorOccupiedOutlined.tsx b/src/IconSensorOccupiedOutlined.tsx index 3ee2cc343..dd3726876 100644 --- a/src/IconSensorOccupiedOutlined.tsx +++ b/src/IconSensorOccupiedOutlined.tsx @@ -8,4 +8,4 @@ const IconSensorOccupiedOutlined: React.FC = ({ ...props }) => ( ) -export { IconSensorOccupiedOutlined as default } +export default IconSensorOccupiedOutlined diff --git a/src/IconSensorOccupiedOutlinedFilled.tsx b/src/IconSensorOccupiedOutlinedFilled.tsx index 029e7333e..930387231 100644 --- a/src/IconSensorOccupiedOutlinedFilled.tsx +++ b/src/IconSensorOccupiedOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconSensorOccupiedOutlinedFilled: React.FC = ({ ) -export { IconSensorOccupiedOutlinedFilled as default } +export default IconSensorOccupiedOutlinedFilled diff --git a/src/IconSensorOccupiedRounded.tsx b/src/IconSensorOccupiedRounded.tsx index 427cfff53..7a0643a4b 100644 --- a/src/IconSensorOccupiedRounded.tsx +++ b/src/IconSensorOccupiedRounded.tsx @@ -8,4 +8,4 @@ const IconSensorOccupiedRounded: React.FC = ({ ...props }) => ( ) -export { IconSensorOccupiedRounded as default } +export default IconSensorOccupiedRounded diff --git a/src/IconSensorOccupiedRoundedFilled.tsx b/src/IconSensorOccupiedRoundedFilled.tsx index 59b121cb4..1040045f1 100644 --- a/src/IconSensorOccupiedRoundedFilled.tsx +++ b/src/IconSensorOccupiedRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconSensorOccupiedRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconSensorOccupiedRoundedFilled as default } +export default IconSensorOccupiedRoundedFilled diff --git a/src/IconSensorOccupiedSharp.tsx b/src/IconSensorOccupiedSharp.tsx index 5f0501b54..1e91b32c2 100644 --- a/src/IconSensorOccupiedSharp.tsx +++ b/src/IconSensorOccupiedSharp.tsx @@ -8,4 +8,4 @@ const IconSensorOccupiedSharp: React.FC = ({ ...props }) => ( ) -export { IconSensorOccupiedSharp as default } +export default IconSensorOccupiedSharp diff --git a/src/IconSensorOccupiedSharpFilled.tsx b/src/IconSensorOccupiedSharpFilled.tsx index 45bf576ae..b9cbdf9cd 100644 --- a/src/IconSensorOccupiedSharpFilled.tsx +++ b/src/IconSensorOccupiedSharpFilled.tsx @@ -8,4 +8,4 @@ const IconSensorOccupiedSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconSensorOccupiedSharpFilled as default } +export default IconSensorOccupiedSharpFilled diff --git a/src/IconSensorWindowOutlined.tsx b/src/IconSensorWindowOutlined.tsx index 092ae4859..c6cc7cdd3 100644 --- a/src/IconSensorWindowOutlined.tsx +++ b/src/IconSensorWindowOutlined.tsx @@ -8,4 +8,4 @@ const IconSensorWindowOutlined: React.FC = ({ ...props }) => ( ) -export { IconSensorWindowOutlined as default } +export default IconSensorWindowOutlined diff --git a/src/IconSensorWindowOutlinedFilled.tsx b/src/IconSensorWindowOutlinedFilled.tsx index cda36ae72..00354e1cc 100644 --- a/src/IconSensorWindowOutlinedFilled.tsx +++ b/src/IconSensorWindowOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconSensorWindowOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconSensorWindowOutlinedFilled as default } +export default IconSensorWindowOutlinedFilled diff --git a/src/IconSensorWindowRounded.tsx b/src/IconSensorWindowRounded.tsx index 4647c2eb1..79f930f0d 100644 --- a/src/IconSensorWindowRounded.tsx +++ b/src/IconSensorWindowRounded.tsx @@ -8,4 +8,4 @@ const IconSensorWindowRounded: React.FC = ({ ...props }) => ( ) -export { IconSensorWindowRounded as default } +export default IconSensorWindowRounded diff --git a/src/IconSensorWindowRoundedFilled.tsx b/src/IconSensorWindowRoundedFilled.tsx index 96896e3e9..052ceee49 100644 --- a/src/IconSensorWindowRoundedFilled.tsx +++ b/src/IconSensorWindowRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconSensorWindowRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconSensorWindowRoundedFilled as default } +export default IconSensorWindowRoundedFilled diff --git a/src/IconSensorWindowSharp.tsx b/src/IconSensorWindowSharp.tsx index 6e62cca87..5a9abeac0 100644 --- a/src/IconSensorWindowSharp.tsx +++ b/src/IconSensorWindowSharp.tsx @@ -8,4 +8,4 @@ const IconSensorWindowSharp: React.FC = ({ ...props }) => ( ) -export { IconSensorWindowSharp as default } +export default IconSensorWindowSharp diff --git a/src/IconSensorWindowSharpFilled.tsx b/src/IconSensorWindowSharpFilled.tsx index 6af8899b8..39722a4b6 100644 --- a/src/IconSensorWindowSharpFilled.tsx +++ b/src/IconSensorWindowSharpFilled.tsx @@ -8,4 +8,4 @@ const IconSensorWindowSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconSensorWindowSharpFilled as default } +export default IconSensorWindowSharpFilled diff --git a/src/IconSensorsKrxOffOutlined.tsx b/src/IconSensorsKrxOffOutlined.tsx index 0a1248add..e6caa3a7f 100644 --- a/src/IconSensorsKrxOffOutlined.tsx +++ b/src/IconSensorsKrxOffOutlined.tsx @@ -8,4 +8,4 @@ const IconSensorsKrxOffOutlined: React.FC = ({ ...props }) => ( ) -export { IconSensorsKrxOffOutlined as default } +export default IconSensorsKrxOffOutlined diff --git a/src/IconSensorsKrxOffOutlinedFilled.tsx b/src/IconSensorsKrxOffOutlinedFilled.tsx index eca4246ee..a6191ce13 100644 --- a/src/IconSensorsKrxOffOutlinedFilled.tsx +++ b/src/IconSensorsKrxOffOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconSensorsKrxOffOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconSensorsKrxOffOutlinedFilled as default } +export default IconSensorsKrxOffOutlinedFilled diff --git a/src/IconSensorsKrxOffRounded.tsx b/src/IconSensorsKrxOffRounded.tsx index e376582b2..9244be1e8 100644 --- a/src/IconSensorsKrxOffRounded.tsx +++ b/src/IconSensorsKrxOffRounded.tsx @@ -8,4 +8,4 @@ const IconSensorsKrxOffRounded: React.FC = ({ ...props }) => ( ) -export { IconSensorsKrxOffRounded as default } +export default IconSensorsKrxOffRounded diff --git a/src/IconSensorsKrxOffRoundedFilled.tsx b/src/IconSensorsKrxOffRoundedFilled.tsx index f679790b0..810f34a0d 100644 --- a/src/IconSensorsKrxOffRoundedFilled.tsx +++ b/src/IconSensorsKrxOffRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconSensorsKrxOffRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconSensorsKrxOffRoundedFilled as default } +export default IconSensorsKrxOffRoundedFilled diff --git a/src/IconSensorsKrxOffSharp.tsx b/src/IconSensorsKrxOffSharp.tsx index e056ecaf9..47fe41c75 100644 --- a/src/IconSensorsKrxOffSharp.tsx +++ b/src/IconSensorsKrxOffSharp.tsx @@ -8,4 +8,4 @@ const IconSensorsKrxOffSharp: React.FC = ({ ...props }) => ( ) -export { IconSensorsKrxOffSharp as default } +export default IconSensorsKrxOffSharp diff --git a/src/IconSensorsKrxOffSharpFilled.tsx b/src/IconSensorsKrxOffSharpFilled.tsx index f4646d94e..c9af3c20a 100644 --- a/src/IconSensorsKrxOffSharpFilled.tsx +++ b/src/IconSensorsKrxOffSharpFilled.tsx @@ -8,4 +8,4 @@ const IconSensorsKrxOffSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconSensorsKrxOffSharpFilled as default } +export default IconSensorsKrxOffSharpFilled diff --git a/src/IconSensorsKrxOutlined.tsx b/src/IconSensorsKrxOutlined.tsx index 7d234adf8..8bf3d23d0 100644 --- a/src/IconSensorsKrxOutlined.tsx +++ b/src/IconSensorsKrxOutlined.tsx @@ -8,4 +8,4 @@ const IconSensorsKrxOutlined: React.FC = ({ ...props }) => ( ) -export { IconSensorsKrxOutlined as default } +export default IconSensorsKrxOutlined diff --git a/src/IconSensorsKrxOutlinedFilled.tsx b/src/IconSensorsKrxOutlinedFilled.tsx index d51f132cf..a850f30cd 100644 --- a/src/IconSensorsKrxOutlinedFilled.tsx +++ b/src/IconSensorsKrxOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconSensorsKrxOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconSensorsKrxOutlinedFilled as default } +export default IconSensorsKrxOutlinedFilled diff --git a/src/IconSensorsKrxRounded.tsx b/src/IconSensorsKrxRounded.tsx index c9b25cf7d..a9b70c60b 100644 --- a/src/IconSensorsKrxRounded.tsx +++ b/src/IconSensorsKrxRounded.tsx @@ -8,4 +8,4 @@ const IconSensorsKrxRounded: React.FC = ({ ...props }) => ( ) -export { IconSensorsKrxRounded as default } +export default IconSensorsKrxRounded diff --git a/src/IconSensorsKrxRoundedFilled.tsx b/src/IconSensorsKrxRoundedFilled.tsx index 1e0659a8b..b25ef01e3 100644 --- a/src/IconSensorsKrxRoundedFilled.tsx +++ b/src/IconSensorsKrxRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconSensorsKrxRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconSensorsKrxRoundedFilled as default } +export default IconSensorsKrxRoundedFilled diff --git a/src/IconSensorsKrxSharp.tsx b/src/IconSensorsKrxSharp.tsx index 01613fc24..dc25bbb01 100644 --- a/src/IconSensorsKrxSharp.tsx +++ b/src/IconSensorsKrxSharp.tsx @@ -8,4 +8,4 @@ const IconSensorsKrxSharp: React.FC = ({ ...props }) => ( ) -export { IconSensorsKrxSharp as default } +export default IconSensorsKrxSharp diff --git a/src/IconSensorsKrxSharpFilled.tsx b/src/IconSensorsKrxSharpFilled.tsx index 46e44192c..d55531ba0 100644 --- a/src/IconSensorsKrxSharpFilled.tsx +++ b/src/IconSensorsKrxSharpFilled.tsx @@ -8,4 +8,4 @@ const IconSensorsKrxSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconSensorsKrxSharpFilled as default } +export default IconSensorsKrxSharpFilled diff --git a/src/IconSensorsOffOutlined.tsx b/src/IconSensorsOffOutlined.tsx index 1ba83dc30..86a894b91 100644 --- a/src/IconSensorsOffOutlined.tsx +++ b/src/IconSensorsOffOutlined.tsx @@ -8,4 +8,4 @@ const IconSensorsOffOutlined: React.FC = ({ ...props }) => ( ) -export { IconSensorsOffOutlined as default } +export default IconSensorsOffOutlined diff --git a/src/IconSensorsOffOutlinedFilled.tsx b/src/IconSensorsOffOutlinedFilled.tsx index 81e36cb5c..97607675d 100644 --- a/src/IconSensorsOffOutlinedFilled.tsx +++ b/src/IconSensorsOffOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconSensorsOffOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconSensorsOffOutlinedFilled as default } +export default IconSensorsOffOutlinedFilled diff --git a/src/IconSensorsOffRounded.tsx b/src/IconSensorsOffRounded.tsx index 8bf151413..d704ced81 100644 --- a/src/IconSensorsOffRounded.tsx +++ b/src/IconSensorsOffRounded.tsx @@ -8,4 +8,4 @@ const IconSensorsOffRounded: React.FC = ({ ...props }) => ( ) -export { IconSensorsOffRounded as default } +export default IconSensorsOffRounded diff --git a/src/IconSensorsOffRoundedFilled.tsx b/src/IconSensorsOffRoundedFilled.tsx index be5b225bb..7a2c54426 100644 --- a/src/IconSensorsOffRoundedFilled.tsx +++ b/src/IconSensorsOffRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconSensorsOffRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconSensorsOffRoundedFilled as default } +export default IconSensorsOffRoundedFilled diff --git a/src/IconSensorsOffSharp.tsx b/src/IconSensorsOffSharp.tsx index 47f3c0415..0fe72a167 100644 --- a/src/IconSensorsOffSharp.tsx +++ b/src/IconSensorsOffSharp.tsx @@ -8,4 +8,4 @@ const IconSensorsOffSharp: React.FC = ({ ...props }) => ( ) -export { IconSensorsOffSharp as default } +export default IconSensorsOffSharp diff --git a/src/IconSensorsOffSharpFilled.tsx b/src/IconSensorsOffSharpFilled.tsx index c90ea7a52..03031edb7 100644 --- a/src/IconSensorsOffSharpFilled.tsx +++ b/src/IconSensorsOffSharpFilled.tsx @@ -8,4 +8,4 @@ const IconSensorsOffSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconSensorsOffSharpFilled as default } +export default IconSensorsOffSharpFilled diff --git a/src/IconSensorsOutlined.tsx b/src/IconSensorsOutlined.tsx index 150800dae..c06b027f7 100644 --- a/src/IconSensorsOutlined.tsx +++ b/src/IconSensorsOutlined.tsx @@ -8,4 +8,4 @@ const IconSensorsOutlined: React.FC = ({ ...props }) => ( ) -export { IconSensorsOutlined as default } +export default IconSensorsOutlined diff --git a/src/IconSensorsOutlinedFilled.tsx b/src/IconSensorsOutlinedFilled.tsx index c9329cc2b..2d784138a 100644 --- a/src/IconSensorsOutlinedFilled.tsx +++ b/src/IconSensorsOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconSensorsOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconSensorsOutlinedFilled as default } +export default IconSensorsOutlinedFilled diff --git a/src/IconSensorsRounded.tsx b/src/IconSensorsRounded.tsx index 7702f6e5a..e58ad7d89 100644 --- a/src/IconSensorsRounded.tsx +++ b/src/IconSensorsRounded.tsx @@ -8,4 +8,4 @@ const IconSensorsRounded: React.FC = ({ ...props }) => ( ) -export { IconSensorsRounded as default } +export default IconSensorsRounded diff --git a/src/IconSensorsRoundedFilled.tsx b/src/IconSensorsRoundedFilled.tsx index 26aa4f391..c450cb6c6 100644 --- a/src/IconSensorsRoundedFilled.tsx +++ b/src/IconSensorsRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconSensorsRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconSensorsRoundedFilled as default } +export default IconSensorsRoundedFilled diff --git a/src/IconSensorsSharp.tsx b/src/IconSensorsSharp.tsx index 1317721bb..f9bbd7b17 100644 --- a/src/IconSensorsSharp.tsx +++ b/src/IconSensorsSharp.tsx @@ -8,4 +8,4 @@ const IconSensorsSharp: React.FC = ({ ...props }) => ( ) -export { IconSensorsSharp as default } +export default IconSensorsSharp diff --git a/src/IconSensorsSharpFilled.tsx b/src/IconSensorsSharpFilled.tsx index 2fc931c94..1e69f727d 100644 --- a/src/IconSensorsSharpFilled.tsx +++ b/src/IconSensorsSharpFilled.tsx @@ -8,4 +8,4 @@ const IconSensorsSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconSensorsSharpFilled as default } +export default IconSensorsSharpFilled diff --git a/src/IconSentimentCalmOutlined.tsx b/src/IconSentimentCalmOutlined.tsx index b7cbf058d..0e57f1b9b 100644 --- a/src/IconSentimentCalmOutlined.tsx +++ b/src/IconSentimentCalmOutlined.tsx @@ -8,4 +8,4 @@ const IconSentimentCalmOutlined: React.FC = ({ ...props }) => ( ) -export { IconSentimentCalmOutlined as default } +export default IconSentimentCalmOutlined diff --git a/src/IconSentimentCalmOutlinedFilled.tsx b/src/IconSentimentCalmOutlinedFilled.tsx index def477c58..9de541f20 100644 --- a/src/IconSentimentCalmOutlinedFilled.tsx +++ b/src/IconSentimentCalmOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconSentimentCalmOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconSentimentCalmOutlinedFilled as default } +export default IconSentimentCalmOutlinedFilled diff --git a/src/IconSentimentCalmRounded.tsx b/src/IconSentimentCalmRounded.tsx index f209a67d7..06614ee03 100644 --- a/src/IconSentimentCalmRounded.tsx +++ b/src/IconSentimentCalmRounded.tsx @@ -8,4 +8,4 @@ const IconSentimentCalmRounded: React.FC = ({ ...props }) => ( ) -export { IconSentimentCalmRounded as default } +export default IconSentimentCalmRounded diff --git a/src/IconSentimentCalmRoundedFilled.tsx b/src/IconSentimentCalmRoundedFilled.tsx index 0cc7aa0fc..148455fb9 100644 --- a/src/IconSentimentCalmRoundedFilled.tsx +++ b/src/IconSentimentCalmRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconSentimentCalmRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconSentimentCalmRoundedFilled as default } +export default IconSentimentCalmRoundedFilled diff --git a/src/IconSentimentCalmSharp.tsx b/src/IconSentimentCalmSharp.tsx index 616ff0505..3368f4ae4 100644 --- a/src/IconSentimentCalmSharp.tsx +++ b/src/IconSentimentCalmSharp.tsx @@ -8,4 +8,4 @@ const IconSentimentCalmSharp: React.FC = ({ ...props }) => ( ) -export { IconSentimentCalmSharp as default } +export default IconSentimentCalmSharp diff --git a/src/IconSentimentCalmSharpFilled.tsx b/src/IconSentimentCalmSharpFilled.tsx index a86b858af..b42467a6f 100644 --- a/src/IconSentimentCalmSharpFilled.tsx +++ b/src/IconSentimentCalmSharpFilled.tsx @@ -8,4 +8,4 @@ const IconSentimentCalmSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconSentimentCalmSharpFilled as default } +export default IconSentimentCalmSharpFilled diff --git a/src/IconSentimentContentOutlined.tsx b/src/IconSentimentContentOutlined.tsx index 8b0b00d71..1871cbb16 100644 --- a/src/IconSentimentContentOutlined.tsx +++ b/src/IconSentimentContentOutlined.tsx @@ -8,4 +8,4 @@ const IconSentimentContentOutlined: React.FC = ({ ...props }) => ( ) -export { IconSentimentContentOutlined as default } +export default IconSentimentContentOutlined diff --git a/src/IconSentimentContentOutlinedFilled.tsx b/src/IconSentimentContentOutlinedFilled.tsx index 55dd59491..61aff2e0a 100644 --- a/src/IconSentimentContentOutlinedFilled.tsx +++ b/src/IconSentimentContentOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconSentimentContentOutlinedFilled: React.FC = ({ ) -export { IconSentimentContentOutlinedFilled as default } +export default IconSentimentContentOutlinedFilled diff --git a/src/IconSentimentContentRounded.tsx b/src/IconSentimentContentRounded.tsx index d57b995e0..7b56c0fae 100644 --- a/src/IconSentimentContentRounded.tsx +++ b/src/IconSentimentContentRounded.tsx @@ -8,4 +8,4 @@ const IconSentimentContentRounded: React.FC = ({ ...props }) => ( ) -export { IconSentimentContentRounded as default } +export default IconSentimentContentRounded diff --git a/src/IconSentimentContentRoundedFilled.tsx b/src/IconSentimentContentRoundedFilled.tsx index a609df14d..f08a0c0a0 100644 --- a/src/IconSentimentContentRoundedFilled.tsx +++ b/src/IconSentimentContentRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconSentimentContentRoundedFilled: React.FC = ({ ) -export { IconSentimentContentRoundedFilled as default } +export default IconSentimentContentRoundedFilled diff --git a/src/IconSentimentContentSharp.tsx b/src/IconSentimentContentSharp.tsx index 8622161de..b0dbf038a 100644 --- a/src/IconSentimentContentSharp.tsx +++ b/src/IconSentimentContentSharp.tsx @@ -8,4 +8,4 @@ const IconSentimentContentSharp: React.FC = ({ ...props }) => ( ) -export { IconSentimentContentSharp as default } +export default IconSentimentContentSharp diff --git a/src/IconSentimentContentSharpFilled.tsx b/src/IconSentimentContentSharpFilled.tsx index a35d34ed0..2f5710ea2 100644 --- a/src/IconSentimentContentSharpFilled.tsx +++ b/src/IconSentimentContentSharpFilled.tsx @@ -8,4 +8,4 @@ const IconSentimentContentSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconSentimentContentSharpFilled as default } +export default IconSentimentContentSharpFilled diff --git a/src/IconSentimentDissatisfiedOutlined.tsx b/src/IconSentimentDissatisfiedOutlined.tsx index ca253e802..923f85226 100644 --- a/src/IconSentimentDissatisfiedOutlined.tsx +++ b/src/IconSentimentDissatisfiedOutlined.tsx @@ -10,4 +10,4 @@ const IconSentimentDissatisfiedOutlined: React.FC = ({ ) -export { IconSentimentDissatisfiedOutlined as default } +export default IconSentimentDissatisfiedOutlined diff --git a/src/IconSentimentDissatisfiedOutlinedFilled.tsx b/src/IconSentimentDissatisfiedOutlinedFilled.tsx index 25cfe3d26..723d13fb4 100644 --- a/src/IconSentimentDissatisfiedOutlinedFilled.tsx +++ b/src/IconSentimentDissatisfiedOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconSentimentDissatisfiedOutlinedFilled: React.FC = ({ ) -export { IconSentimentDissatisfiedOutlinedFilled as default } +export default IconSentimentDissatisfiedOutlinedFilled diff --git a/src/IconSentimentDissatisfiedRounded.tsx b/src/IconSentimentDissatisfiedRounded.tsx index 33c0ea32d..782a118cf 100644 --- a/src/IconSentimentDissatisfiedRounded.tsx +++ b/src/IconSentimentDissatisfiedRounded.tsx @@ -10,4 +10,4 @@ const IconSentimentDissatisfiedRounded: React.FC = ({ ) -export { IconSentimentDissatisfiedRounded as default } +export default IconSentimentDissatisfiedRounded diff --git a/src/IconSentimentDissatisfiedRoundedFilled.tsx b/src/IconSentimentDissatisfiedRoundedFilled.tsx index 7f24cd13c..879c93439 100644 --- a/src/IconSentimentDissatisfiedRoundedFilled.tsx +++ b/src/IconSentimentDissatisfiedRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconSentimentDissatisfiedRoundedFilled: React.FC = ({ ) -export { IconSentimentDissatisfiedRoundedFilled as default } +export default IconSentimentDissatisfiedRoundedFilled diff --git a/src/IconSentimentDissatisfiedSharp.tsx b/src/IconSentimentDissatisfiedSharp.tsx index ff633068c..d7cd3918c 100644 --- a/src/IconSentimentDissatisfiedSharp.tsx +++ b/src/IconSentimentDissatisfiedSharp.tsx @@ -8,4 +8,4 @@ const IconSentimentDissatisfiedSharp: React.FC = ({ ...props }) => ( ) -export { IconSentimentDissatisfiedSharp as default } +export default IconSentimentDissatisfiedSharp diff --git a/src/IconSentimentDissatisfiedSharpFilled.tsx b/src/IconSentimentDissatisfiedSharpFilled.tsx index 1384b8941..d761f5575 100644 --- a/src/IconSentimentDissatisfiedSharpFilled.tsx +++ b/src/IconSentimentDissatisfiedSharpFilled.tsx @@ -10,4 +10,4 @@ const IconSentimentDissatisfiedSharpFilled: React.FC = ({ ) -export { IconSentimentDissatisfiedSharpFilled as default } +export default IconSentimentDissatisfiedSharpFilled diff --git a/src/IconSentimentExcitedOutlined.tsx b/src/IconSentimentExcitedOutlined.tsx index 0cd07ae7b..ef3802076 100644 --- a/src/IconSentimentExcitedOutlined.tsx +++ b/src/IconSentimentExcitedOutlined.tsx @@ -8,4 +8,4 @@ const IconSentimentExcitedOutlined: React.FC = ({ ...props }) => ( ) -export { IconSentimentExcitedOutlined as default } +export default IconSentimentExcitedOutlined diff --git a/src/IconSentimentExcitedOutlinedFilled.tsx b/src/IconSentimentExcitedOutlinedFilled.tsx index c03ee9ba7..5e959379e 100644 --- a/src/IconSentimentExcitedOutlinedFilled.tsx +++ b/src/IconSentimentExcitedOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconSentimentExcitedOutlinedFilled: React.FC = ({ ) -export { IconSentimentExcitedOutlinedFilled as default } +export default IconSentimentExcitedOutlinedFilled diff --git a/src/IconSentimentExcitedRounded.tsx b/src/IconSentimentExcitedRounded.tsx index ac705332d..9d8922e05 100644 --- a/src/IconSentimentExcitedRounded.tsx +++ b/src/IconSentimentExcitedRounded.tsx @@ -8,4 +8,4 @@ const IconSentimentExcitedRounded: React.FC = ({ ...props }) => ( ) -export { IconSentimentExcitedRounded as default } +export default IconSentimentExcitedRounded diff --git a/src/IconSentimentExcitedRoundedFilled.tsx b/src/IconSentimentExcitedRoundedFilled.tsx index 4d1efc7c2..3c7c417a7 100644 --- a/src/IconSentimentExcitedRoundedFilled.tsx +++ b/src/IconSentimentExcitedRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconSentimentExcitedRoundedFilled: React.FC = ({ ) -export { IconSentimentExcitedRoundedFilled as default } +export default IconSentimentExcitedRoundedFilled diff --git a/src/IconSentimentExcitedSharp.tsx b/src/IconSentimentExcitedSharp.tsx index 9f8b141c9..67a95e0a6 100644 --- a/src/IconSentimentExcitedSharp.tsx +++ b/src/IconSentimentExcitedSharp.tsx @@ -8,4 +8,4 @@ const IconSentimentExcitedSharp: React.FC = ({ ...props }) => ( ) -export { IconSentimentExcitedSharp as default } +export default IconSentimentExcitedSharp diff --git a/src/IconSentimentExcitedSharpFilled.tsx b/src/IconSentimentExcitedSharpFilled.tsx index 654f2fd4f..ab450daaf 100644 --- a/src/IconSentimentExcitedSharpFilled.tsx +++ b/src/IconSentimentExcitedSharpFilled.tsx @@ -8,4 +8,4 @@ const IconSentimentExcitedSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconSentimentExcitedSharpFilled as default } +export default IconSentimentExcitedSharpFilled diff --git a/src/IconSentimentExtremelyDissatisfiedOutlined.tsx b/src/IconSentimentExtremelyDissatisfiedOutlined.tsx index bfad33791..e7917a8ff 100644 --- a/src/IconSentimentExtremelyDissatisfiedOutlined.tsx +++ b/src/IconSentimentExtremelyDissatisfiedOutlined.tsx @@ -10,4 +10,4 @@ const IconSentimentExtremelyDissatisfiedOutlined: React.FC = ({ ) -export { IconSentimentExtremelyDissatisfiedOutlined as default } +export default IconSentimentExtremelyDissatisfiedOutlined diff --git a/src/IconSentimentExtremelyDissatisfiedOutlinedFilled.tsx b/src/IconSentimentExtremelyDissatisfiedOutlinedFilled.tsx index 8df7c23bb..106aafb32 100644 --- a/src/IconSentimentExtremelyDissatisfiedOutlinedFilled.tsx +++ b/src/IconSentimentExtremelyDissatisfiedOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconSentimentExtremelyDissatisfiedOutlinedFilled: React.FC = ({ ) -export { IconSentimentExtremelyDissatisfiedOutlinedFilled as default } +export default IconSentimentExtremelyDissatisfiedOutlinedFilled diff --git a/src/IconSentimentExtremelyDissatisfiedRounded.tsx b/src/IconSentimentExtremelyDissatisfiedRounded.tsx index 0f48640bd..797ddbe17 100644 --- a/src/IconSentimentExtremelyDissatisfiedRounded.tsx +++ b/src/IconSentimentExtremelyDissatisfiedRounded.tsx @@ -10,4 +10,4 @@ const IconSentimentExtremelyDissatisfiedRounded: React.FC = ({ ) -export { IconSentimentExtremelyDissatisfiedRounded as default } +export default IconSentimentExtremelyDissatisfiedRounded diff --git a/src/IconSentimentExtremelyDissatisfiedRoundedFilled.tsx b/src/IconSentimentExtremelyDissatisfiedRoundedFilled.tsx index 05f816582..398b04fef 100644 --- a/src/IconSentimentExtremelyDissatisfiedRoundedFilled.tsx +++ b/src/IconSentimentExtremelyDissatisfiedRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconSentimentExtremelyDissatisfiedRoundedFilled: React.FC = ({ ) -export { IconSentimentExtremelyDissatisfiedRoundedFilled as default } +export default IconSentimentExtremelyDissatisfiedRoundedFilled diff --git a/src/IconSentimentExtremelyDissatisfiedSharp.tsx b/src/IconSentimentExtremelyDissatisfiedSharp.tsx index 3c3b89c34..122234227 100644 --- a/src/IconSentimentExtremelyDissatisfiedSharp.tsx +++ b/src/IconSentimentExtremelyDissatisfiedSharp.tsx @@ -10,4 +10,4 @@ const IconSentimentExtremelyDissatisfiedSharp: React.FC = ({ ) -export { IconSentimentExtremelyDissatisfiedSharp as default } +export default IconSentimentExtremelyDissatisfiedSharp diff --git a/src/IconSentimentExtremelyDissatisfiedSharpFilled.tsx b/src/IconSentimentExtremelyDissatisfiedSharpFilled.tsx index 3bc0b65ee..bc93a763d 100644 --- a/src/IconSentimentExtremelyDissatisfiedSharpFilled.tsx +++ b/src/IconSentimentExtremelyDissatisfiedSharpFilled.tsx @@ -10,4 +10,4 @@ const IconSentimentExtremelyDissatisfiedSharpFilled: React.FC = ({ ) -export { IconSentimentExtremelyDissatisfiedSharpFilled as default } +export default IconSentimentExtremelyDissatisfiedSharpFilled diff --git a/src/IconSentimentFrustratedOutlined.tsx b/src/IconSentimentFrustratedOutlined.tsx index ddb20a5fd..33895233e 100644 --- a/src/IconSentimentFrustratedOutlined.tsx +++ b/src/IconSentimentFrustratedOutlined.tsx @@ -8,4 +8,4 @@ const IconSentimentFrustratedOutlined: React.FC = ({ ...props }) => ( ) -export { IconSentimentFrustratedOutlined as default } +export default IconSentimentFrustratedOutlined diff --git a/src/IconSentimentFrustratedOutlinedFilled.tsx b/src/IconSentimentFrustratedOutlinedFilled.tsx index 3eb01b085..eec8cbc32 100644 --- a/src/IconSentimentFrustratedOutlinedFilled.tsx +++ b/src/IconSentimentFrustratedOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconSentimentFrustratedOutlinedFilled: React.FC = ({ ) -export { IconSentimentFrustratedOutlinedFilled as default } +export default IconSentimentFrustratedOutlinedFilled diff --git a/src/IconSentimentFrustratedRounded.tsx b/src/IconSentimentFrustratedRounded.tsx index 71785e173..b0eda2828 100644 --- a/src/IconSentimentFrustratedRounded.tsx +++ b/src/IconSentimentFrustratedRounded.tsx @@ -8,4 +8,4 @@ const IconSentimentFrustratedRounded: React.FC = ({ ...props }) => ( ) -export { IconSentimentFrustratedRounded as default } +export default IconSentimentFrustratedRounded diff --git a/src/IconSentimentFrustratedRoundedFilled.tsx b/src/IconSentimentFrustratedRoundedFilled.tsx index 547cd72af..601c09bf0 100644 --- a/src/IconSentimentFrustratedRoundedFilled.tsx +++ b/src/IconSentimentFrustratedRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconSentimentFrustratedRoundedFilled: React.FC = ({ ) -export { IconSentimentFrustratedRoundedFilled as default } +export default IconSentimentFrustratedRoundedFilled diff --git a/src/IconSentimentFrustratedSharp.tsx b/src/IconSentimentFrustratedSharp.tsx index e6d4e6267..855e1a16b 100644 --- a/src/IconSentimentFrustratedSharp.tsx +++ b/src/IconSentimentFrustratedSharp.tsx @@ -8,4 +8,4 @@ const IconSentimentFrustratedSharp: React.FC = ({ ...props }) => ( ) -export { IconSentimentFrustratedSharp as default } +export default IconSentimentFrustratedSharp diff --git a/src/IconSentimentFrustratedSharpFilled.tsx b/src/IconSentimentFrustratedSharpFilled.tsx index c14d9e50a..2ec92cebd 100644 --- a/src/IconSentimentFrustratedSharpFilled.tsx +++ b/src/IconSentimentFrustratedSharpFilled.tsx @@ -10,4 +10,4 @@ const IconSentimentFrustratedSharpFilled: React.FC = ({ ) -export { IconSentimentFrustratedSharpFilled as default } +export default IconSentimentFrustratedSharpFilled diff --git a/src/IconSentimentNeutralOutlined.tsx b/src/IconSentimentNeutralOutlined.tsx index 0d139643f..0814641e5 100644 --- a/src/IconSentimentNeutralOutlined.tsx +++ b/src/IconSentimentNeutralOutlined.tsx @@ -8,4 +8,4 @@ const IconSentimentNeutralOutlined: React.FC = ({ ...props }) => ( ) -export { IconSentimentNeutralOutlined as default } +export default IconSentimentNeutralOutlined diff --git a/src/IconSentimentNeutralOutlinedFilled.tsx b/src/IconSentimentNeutralOutlinedFilled.tsx index b3c2d05df..8930f3a13 100644 --- a/src/IconSentimentNeutralOutlinedFilled.tsx +++ b/src/IconSentimentNeutralOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconSentimentNeutralOutlinedFilled: React.FC = ({ ) -export { IconSentimentNeutralOutlinedFilled as default } +export default IconSentimentNeutralOutlinedFilled diff --git a/src/IconSentimentNeutralRounded.tsx b/src/IconSentimentNeutralRounded.tsx index bfe44037f..175855fac 100644 --- a/src/IconSentimentNeutralRounded.tsx +++ b/src/IconSentimentNeutralRounded.tsx @@ -8,4 +8,4 @@ const IconSentimentNeutralRounded: React.FC = ({ ...props }) => ( ) -export { IconSentimentNeutralRounded as default } +export default IconSentimentNeutralRounded diff --git a/src/IconSentimentNeutralRoundedFilled.tsx b/src/IconSentimentNeutralRoundedFilled.tsx index 74a6ae20f..7a74ab4ab 100644 --- a/src/IconSentimentNeutralRoundedFilled.tsx +++ b/src/IconSentimentNeutralRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconSentimentNeutralRoundedFilled: React.FC = ({ ) -export { IconSentimentNeutralRoundedFilled as default } +export default IconSentimentNeutralRoundedFilled diff --git a/src/IconSentimentNeutralSharp.tsx b/src/IconSentimentNeutralSharp.tsx index b66a8627f..a8d54df8f 100644 --- a/src/IconSentimentNeutralSharp.tsx +++ b/src/IconSentimentNeutralSharp.tsx @@ -8,4 +8,4 @@ const IconSentimentNeutralSharp: React.FC = ({ ...props }) => ( ) -export { IconSentimentNeutralSharp as default } +export default IconSentimentNeutralSharp diff --git a/src/IconSentimentNeutralSharpFilled.tsx b/src/IconSentimentNeutralSharpFilled.tsx index 28078f941..1e55a3c34 100644 --- a/src/IconSentimentNeutralSharpFilled.tsx +++ b/src/IconSentimentNeutralSharpFilled.tsx @@ -8,4 +8,4 @@ const IconSentimentNeutralSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconSentimentNeutralSharpFilled as default } +export default IconSentimentNeutralSharpFilled diff --git a/src/IconSentimentSadOutlined.tsx b/src/IconSentimentSadOutlined.tsx index 6ae19ee85..9bc740f05 100644 --- a/src/IconSentimentSadOutlined.tsx +++ b/src/IconSentimentSadOutlined.tsx @@ -8,4 +8,4 @@ const IconSentimentSadOutlined: React.FC = ({ ...props }) => ( ) -export { IconSentimentSadOutlined as default } +export default IconSentimentSadOutlined diff --git a/src/IconSentimentSadOutlinedFilled.tsx b/src/IconSentimentSadOutlinedFilled.tsx index c57a46618..c9fb37898 100644 --- a/src/IconSentimentSadOutlinedFilled.tsx +++ b/src/IconSentimentSadOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconSentimentSadOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconSentimentSadOutlinedFilled as default } +export default IconSentimentSadOutlinedFilled diff --git a/src/IconSentimentSadRounded.tsx b/src/IconSentimentSadRounded.tsx index c3ec9e7e2..80539255b 100644 --- a/src/IconSentimentSadRounded.tsx +++ b/src/IconSentimentSadRounded.tsx @@ -8,4 +8,4 @@ const IconSentimentSadRounded: React.FC = ({ ...props }) => ( ) -export { IconSentimentSadRounded as default } +export default IconSentimentSadRounded diff --git a/src/IconSentimentSadRoundedFilled.tsx b/src/IconSentimentSadRoundedFilled.tsx index 6e97b0f8f..8c6f0345f 100644 --- a/src/IconSentimentSadRoundedFilled.tsx +++ b/src/IconSentimentSadRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconSentimentSadRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconSentimentSadRoundedFilled as default } +export default IconSentimentSadRoundedFilled diff --git a/src/IconSentimentSadSharp.tsx b/src/IconSentimentSadSharp.tsx index 6c01035a9..87d7256b9 100644 --- a/src/IconSentimentSadSharp.tsx +++ b/src/IconSentimentSadSharp.tsx @@ -8,4 +8,4 @@ const IconSentimentSadSharp: React.FC = ({ ...props }) => ( ) -export { IconSentimentSadSharp as default } +export default IconSentimentSadSharp diff --git a/src/IconSentimentSadSharpFilled.tsx b/src/IconSentimentSadSharpFilled.tsx index c6b68b41b..3ddb1df67 100644 --- a/src/IconSentimentSadSharpFilled.tsx +++ b/src/IconSentimentSadSharpFilled.tsx @@ -8,4 +8,4 @@ const IconSentimentSadSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconSentimentSadSharpFilled as default } +export default IconSentimentSadSharpFilled diff --git a/src/IconSentimentSatisfiedOutlined.tsx b/src/IconSentimentSatisfiedOutlined.tsx index 509efa090..2cc0d8060 100644 --- a/src/IconSentimentSatisfiedOutlined.tsx +++ b/src/IconSentimentSatisfiedOutlined.tsx @@ -8,4 +8,4 @@ const IconSentimentSatisfiedOutlined: React.FC = ({ ...props }) => ( ) -export { IconSentimentSatisfiedOutlined as default } +export default IconSentimentSatisfiedOutlined diff --git a/src/IconSentimentSatisfiedOutlinedFilled.tsx b/src/IconSentimentSatisfiedOutlinedFilled.tsx index 2c342415a..ec2023306 100644 --- a/src/IconSentimentSatisfiedOutlinedFilled.tsx +++ b/src/IconSentimentSatisfiedOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconSentimentSatisfiedOutlinedFilled: React.FC = ({ ) -export { IconSentimentSatisfiedOutlinedFilled as default } +export default IconSentimentSatisfiedOutlinedFilled diff --git a/src/IconSentimentSatisfiedRounded.tsx b/src/IconSentimentSatisfiedRounded.tsx index 511268523..5d34a08b8 100644 --- a/src/IconSentimentSatisfiedRounded.tsx +++ b/src/IconSentimentSatisfiedRounded.tsx @@ -8,4 +8,4 @@ const IconSentimentSatisfiedRounded: React.FC = ({ ...props }) => ( ) -export { IconSentimentSatisfiedRounded as default } +export default IconSentimentSatisfiedRounded diff --git a/src/IconSentimentSatisfiedRoundedFilled.tsx b/src/IconSentimentSatisfiedRoundedFilled.tsx index 43fe7efc0..ed43d424e 100644 --- a/src/IconSentimentSatisfiedRoundedFilled.tsx +++ b/src/IconSentimentSatisfiedRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconSentimentSatisfiedRoundedFilled: React.FC = ({ ) -export { IconSentimentSatisfiedRoundedFilled as default } +export default IconSentimentSatisfiedRoundedFilled diff --git a/src/IconSentimentSatisfiedSharp.tsx b/src/IconSentimentSatisfiedSharp.tsx index 43f92bcbf..f2d30ae23 100644 --- a/src/IconSentimentSatisfiedSharp.tsx +++ b/src/IconSentimentSatisfiedSharp.tsx @@ -8,4 +8,4 @@ const IconSentimentSatisfiedSharp: React.FC = ({ ...props }) => ( ) -export { IconSentimentSatisfiedSharp as default } +export default IconSentimentSatisfiedSharp diff --git a/src/IconSentimentSatisfiedSharpFilled.tsx b/src/IconSentimentSatisfiedSharpFilled.tsx index 593e231d2..fcec76dda 100644 --- a/src/IconSentimentSatisfiedSharpFilled.tsx +++ b/src/IconSentimentSatisfiedSharpFilled.tsx @@ -10,4 +10,4 @@ const IconSentimentSatisfiedSharpFilled: React.FC = ({ ) -export { IconSentimentSatisfiedSharpFilled as default } +export default IconSentimentSatisfiedSharpFilled diff --git a/src/IconSentimentStressedOutlined.tsx b/src/IconSentimentStressedOutlined.tsx index dd685e255..13e4dc500 100644 --- a/src/IconSentimentStressedOutlined.tsx +++ b/src/IconSentimentStressedOutlined.tsx @@ -8,4 +8,4 @@ const IconSentimentStressedOutlined: React.FC = ({ ...props }) => ( ) -export { IconSentimentStressedOutlined as default } +export default IconSentimentStressedOutlined diff --git a/src/IconSentimentStressedOutlinedFilled.tsx b/src/IconSentimentStressedOutlinedFilled.tsx index 8465ba40b..ff0f2575c 100644 --- a/src/IconSentimentStressedOutlinedFilled.tsx +++ b/src/IconSentimentStressedOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconSentimentStressedOutlinedFilled: React.FC = ({ ) -export { IconSentimentStressedOutlinedFilled as default } +export default IconSentimentStressedOutlinedFilled diff --git a/src/IconSentimentStressedRounded.tsx b/src/IconSentimentStressedRounded.tsx index ed3ccf50e..3834a5a84 100644 --- a/src/IconSentimentStressedRounded.tsx +++ b/src/IconSentimentStressedRounded.tsx @@ -8,4 +8,4 @@ const IconSentimentStressedRounded: React.FC = ({ ...props }) => ( ) -export { IconSentimentStressedRounded as default } +export default IconSentimentStressedRounded diff --git a/src/IconSentimentStressedRoundedFilled.tsx b/src/IconSentimentStressedRoundedFilled.tsx index 684ad73b9..14000f490 100644 --- a/src/IconSentimentStressedRoundedFilled.tsx +++ b/src/IconSentimentStressedRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconSentimentStressedRoundedFilled: React.FC = ({ ) -export { IconSentimentStressedRoundedFilled as default } +export default IconSentimentStressedRoundedFilled diff --git a/src/IconSentimentStressedSharp.tsx b/src/IconSentimentStressedSharp.tsx index 63a42856f..8b604a141 100644 --- a/src/IconSentimentStressedSharp.tsx +++ b/src/IconSentimentStressedSharp.tsx @@ -8,4 +8,4 @@ const IconSentimentStressedSharp: React.FC = ({ ...props }) => ( ) -export { IconSentimentStressedSharp as default } +export default IconSentimentStressedSharp diff --git a/src/IconSentimentStressedSharpFilled.tsx b/src/IconSentimentStressedSharpFilled.tsx index a9bbd28d4..b27a55f4c 100644 --- a/src/IconSentimentStressedSharpFilled.tsx +++ b/src/IconSentimentStressedSharpFilled.tsx @@ -10,4 +10,4 @@ const IconSentimentStressedSharpFilled: React.FC = ({ ) -export { IconSentimentStressedSharpFilled as default } +export default IconSentimentStressedSharpFilled diff --git a/src/IconSentimentVeryDissatisfiedOutlined.tsx b/src/IconSentimentVeryDissatisfiedOutlined.tsx index dfd8d704b..4786c4113 100644 --- a/src/IconSentimentVeryDissatisfiedOutlined.tsx +++ b/src/IconSentimentVeryDissatisfiedOutlined.tsx @@ -10,4 +10,4 @@ const IconSentimentVeryDissatisfiedOutlined: React.FC = ({ ) -export { IconSentimentVeryDissatisfiedOutlined as default } +export default IconSentimentVeryDissatisfiedOutlined diff --git a/src/IconSentimentVeryDissatisfiedOutlinedFilled.tsx b/src/IconSentimentVeryDissatisfiedOutlinedFilled.tsx index a86beea01..65c1c67f6 100644 --- a/src/IconSentimentVeryDissatisfiedOutlinedFilled.tsx +++ b/src/IconSentimentVeryDissatisfiedOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconSentimentVeryDissatisfiedOutlinedFilled: React.FC = ({ ) -export { IconSentimentVeryDissatisfiedOutlinedFilled as default } +export default IconSentimentVeryDissatisfiedOutlinedFilled diff --git a/src/IconSentimentVeryDissatisfiedRounded.tsx b/src/IconSentimentVeryDissatisfiedRounded.tsx index 1cfd3315e..7793d58ec 100644 --- a/src/IconSentimentVeryDissatisfiedRounded.tsx +++ b/src/IconSentimentVeryDissatisfiedRounded.tsx @@ -10,4 +10,4 @@ const IconSentimentVeryDissatisfiedRounded: React.FC = ({ ) -export { IconSentimentVeryDissatisfiedRounded as default } +export default IconSentimentVeryDissatisfiedRounded diff --git a/src/IconSentimentVeryDissatisfiedRoundedFilled.tsx b/src/IconSentimentVeryDissatisfiedRoundedFilled.tsx index ab71bb057..797fd043d 100644 --- a/src/IconSentimentVeryDissatisfiedRoundedFilled.tsx +++ b/src/IconSentimentVeryDissatisfiedRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconSentimentVeryDissatisfiedRoundedFilled: React.FC = ({ ) -export { IconSentimentVeryDissatisfiedRoundedFilled as default } +export default IconSentimentVeryDissatisfiedRoundedFilled diff --git a/src/IconSentimentVeryDissatisfiedSharp.tsx b/src/IconSentimentVeryDissatisfiedSharp.tsx index ad86a1e8a..b03d8fa4c 100644 --- a/src/IconSentimentVeryDissatisfiedSharp.tsx +++ b/src/IconSentimentVeryDissatisfiedSharp.tsx @@ -10,4 +10,4 @@ const IconSentimentVeryDissatisfiedSharp: React.FC = ({ ) -export { IconSentimentVeryDissatisfiedSharp as default } +export default IconSentimentVeryDissatisfiedSharp diff --git a/src/IconSentimentVeryDissatisfiedSharpFilled.tsx b/src/IconSentimentVeryDissatisfiedSharpFilled.tsx index b4a96b173..4ef12ecb3 100644 --- a/src/IconSentimentVeryDissatisfiedSharpFilled.tsx +++ b/src/IconSentimentVeryDissatisfiedSharpFilled.tsx @@ -10,4 +10,4 @@ const IconSentimentVeryDissatisfiedSharpFilled: React.FC = ({ ) -export { IconSentimentVeryDissatisfiedSharpFilled as default } +export default IconSentimentVeryDissatisfiedSharpFilled diff --git a/src/IconSentimentVerySatisfiedOutlined.tsx b/src/IconSentimentVerySatisfiedOutlined.tsx index feff5bb6f..fd5208a33 100644 --- a/src/IconSentimentVerySatisfiedOutlined.tsx +++ b/src/IconSentimentVerySatisfiedOutlined.tsx @@ -10,4 +10,4 @@ const IconSentimentVerySatisfiedOutlined: React.FC = ({ ) -export { IconSentimentVerySatisfiedOutlined as default } +export default IconSentimentVerySatisfiedOutlined diff --git a/src/IconSentimentVerySatisfiedOutlinedFilled.tsx b/src/IconSentimentVerySatisfiedOutlinedFilled.tsx index b874dc272..0813026ab 100644 --- a/src/IconSentimentVerySatisfiedOutlinedFilled.tsx +++ b/src/IconSentimentVerySatisfiedOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconSentimentVerySatisfiedOutlinedFilled: React.FC = ({ ) -export { IconSentimentVerySatisfiedOutlinedFilled as default } +export default IconSentimentVerySatisfiedOutlinedFilled diff --git a/src/IconSentimentVerySatisfiedRounded.tsx b/src/IconSentimentVerySatisfiedRounded.tsx index 8d55899f3..d362ca511 100644 --- a/src/IconSentimentVerySatisfiedRounded.tsx +++ b/src/IconSentimentVerySatisfiedRounded.tsx @@ -10,4 +10,4 @@ const IconSentimentVerySatisfiedRounded: React.FC = ({ ) -export { IconSentimentVerySatisfiedRounded as default } +export default IconSentimentVerySatisfiedRounded diff --git a/src/IconSentimentVerySatisfiedRoundedFilled.tsx b/src/IconSentimentVerySatisfiedRoundedFilled.tsx index 8f4ada0d3..23bd41cd5 100644 --- a/src/IconSentimentVerySatisfiedRoundedFilled.tsx +++ b/src/IconSentimentVerySatisfiedRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconSentimentVerySatisfiedRoundedFilled: React.FC = ({ ) -export { IconSentimentVerySatisfiedRoundedFilled as default } +export default IconSentimentVerySatisfiedRoundedFilled diff --git a/src/IconSentimentVerySatisfiedSharp.tsx b/src/IconSentimentVerySatisfiedSharp.tsx index b67055c43..7fcb9eb59 100644 --- a/src/IconSentimentVerySatisfiedSharp.tsx +++ b/src/IconSentimentVerySatisfiedSharp.tsx @@ -8,4 +8,4 @@ const IconSentimentVerySatisfiedSharp: React.FC = ({ ...props }) => ( ) -export { IconSentimentVerySatisfiedSharp as default } +export default IconSentimentVerySatisfiedSharp diff --git a/src/IconSentimentVerySatisfiedSharpFilled.tsx b/src/IconSentimentVerySatisfiedSharpFilled.tsx index 2ca7d150c..ace4c7f15 100644 --- a/src/IconSentimentVerySatisfiedSharpFilled.tsx +++ b/src/IconSentimentVerySatisfiedSharpFilled.tsx @@ -10,4 +10,4 @@ const IconSentimentVerySatisfiedSharpFilled: React.FC = ({ ) -export { IconSentimentVerySatisfiedSharpFilled as default } +export default IconSentimentVerySatisfiedSharpFilled diff --git a/src/IconSentimentWorriedOutlined.tsx b/src/IconSentimentWorriedOutlined.tsx index 86c1e2e81..2ec91b303 100644 --- a/src/IconSentimentWorriedOutlined.tsx +++ b/src/IconSentimentWorriedOutlined.tsx @@ -8,4 +8,4 @@ const IconSentimentWorriedOutlined: React.FC = ({ ...props }) => ( ) -export { IconSentimentWorriedOutlined as default } +export default IconSentimentWorriedOutlined diff --git a/src/IconSentimentWorriedOutlinedFilled.tsx b/src/IconSentimentWorriedOutlinedFilled.tsx index 49e087f36..e67ee985b 100644 --- a/src/IconSentimentWorriedOutlinedFilled.tsx +++ b/src/IconSentimentWorriedOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconSentimentWorriedOutlinedFilled: React.FC = ({ ) -export { IconSentimentWorriedOutlinedFilled as default } +export default IconSentimentWorriedOutlinedFilled diff --git a/src/IconSentimentWorriedRounded.tsx b/src/IconSentimentWorriedRounded.tsx index efe79e978..30a60cdae 100644 --- a/src/IconSentimentWorriedRounded.tsx +++ b/src/IconSentimentWorriedRounded.tsx @@ -8,4 +8,4 @@ const IconSentimentWorriedRounded: React.FC = ({ ...props }) => ( ) -export { IconSentimentWorriedRounded as default } +export default IconSentimentWorriedRounded diff --git a/src/IconSentimentWorriedRoundedFilled.tsx b/src/IconSentimentWorriedRoundedFilled.tsx index b27179e6b..7824cec10 100644 --- a/src/IconSentimentWorriedRoundedFilled.tsx +++ b/src/IconSentimentWorriedRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconSentimentWorriedRoundedFilled: React.FC = ({ ) -export { IconSentimentWorriedRoundedFilled as default } +export default IconSentimentWorriedRoundedFilled diff --git a/src/IconSentimentWorriedSharp.tsx b/src/IconSentimentWorriedSharp.tsx index fab0e9815..728ce679b 100644 --- a/src/IconSentimentWorriedSharp.tsx +++ b/src/IconSentimentWorriedSharp.tsx @@ -8,4 +8,4 @@ const IconSentimentWorriedSharp: React.FC = ({ ...props }) => ( ) -export { IconSentimentWorriedSharp as default } +export default IconSentimentWorriedSharp diff --git a/src/IconSentimentWorriedSharpFilled.tsx b/src/IconSentimentWorriedSharpFilled.tsx index 97cb3a696..fc59bf213 100644 --- a/src/IconSentimentWorriedSharpFilled.tsx +++ b/src/IconSentimentWorriedSharpFilled.tsx @@ -8,4 +8,4 @@ const IconSentimentWorriedSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconSentimentWorriedSharpFilled as default } +export default IconSentimentWorriedSharpFilled diff --git a/src/IconSerifOutlined.tsx b/src/IconSerifOutlined.tsx index 50657ed19..adf7cab5c 100644 --- a/src/IconSerifOutlined.tsx +++ b/src/IconSerifOutlined.tsx @@ -8,4 +8,4 @@ const IconSerifOutlined: React.FC = ({ ...props }) => ( ) -export { IconSerifOutlined as default } +export default IconSerifOutlined diff --git a/src/IconSerifOutlinedFilled.tsx b/src/IconSerifOutlinedFilled.tsx index 68b954b76..95ba18ae5 100644 --- a/src/IconSerifOutlinedFilled.tsx +++ b/src/IconSerifOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconSerifOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconSerifOutlinedFilled as default } +export default IconSerifOutlinedFilled diff --git a/src/IconSerifRounded.tsx b/src/IconSerifRounded.tsx index 6856cc84c..0bff9b406 100644 --- a/src/IconSerifRounded.tsx +++ b/src/IconSerifRounded.tsx @@ -8,4 +8,4 @@ const IconSerifRounded: React.FC = ({ ...props }) => ( ) -export { IconSerifRounded as default } +export default IconSerifRounded diff --git a/src/IconSerifRoundedFilled.tsx b/src/IconSerifRoundedFilled.tsx index c07a7b5b8..aa9fda202 100644 --- a/src/IconSerifRoundedFilled.tsx +++ b/src/IconSerifRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconSerifRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconSerifRoundedFilled as default } +export default IconSerifRoundedFilled diff --git a/src/IconSerifSharp.tsx b/src/IconSerifSharp.tsx index 8583e8766..1b35c6d30 100644 --- a/src/IconSerifSharp.tsx +++ b/src/IconSerifSharp.tsx @@ -8,4 +8,4 @@ const IconSerifSharp: React.FC = ({ ...props }) => ( ) -export { IconSerifSharp as default } +export default IconSerifSharp diff --git a/src/IconSerifSharpFilled.tsx b/src/IconSerifSharpFilled.tsx index 8d4fb6c45..401bc61a8 100644 --- a/src/IconSerifSharpFilled.tsx +++ b/src/IconSerifSharpFilled.tsx @@ -8,4 +8,4 @@ const IconSerifSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconSerifSharpFilled as default } +export default IconSerifSharpFilled diff --git a/src/IconServiceToolboxOutlined.tsx b/src/IconServiceToolboxOutlined.tsx index e347beda2..66f909d57 100644 --- a/src/IconServiceToolboxOutlined.tsx +++ b/src/IconServiceToolboxOutlined.tsx @@ -8,4 +8,4 @@ const IconServiceToolboxOutlined: React.FC = ({ ...props }) => ( ) -export { IconServiceToolboxOutlined as default } +export default IconServiceToolboxOutlined diff --git a/src/IconServiceToolboxOutlinedFilled.tsx b/src/IconServiceToolboxOutlinedFilled.tsx index f67fef81d..312790690 100644 --- a/src/IconServiceToolboxOutlinedFilled.tsx +++ b/src/IconServiceToolboxOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconServiceToolboxOutlinedFilled: React.FC = ({ ) -export { IconServiceToolboxOutlinedFilled as default } +export default IconServiceToolboxOutlinedFilled diff --git a/src/IconServiceToolboxRounded.tsx b/src/IconServiceToolboxRounded.tsx index 182083b5a..cd63c0cfa 100644 --- a/src/IconServiceToolboxRounded.tsx +++ b/src/IconServiceToolboxRounded.tsx @@ -8,4 +8,4 @@ const IconServiceToolboxRounded: React.FC = ({ ...props }) => ( ) -export { IconServiceToolboxRounded as default } +export default IconServiceToolboxRounded diff --git a/src/IconServiceToolboxRoundedFilled.tsx b/src/IconServiceToolboxRoundedFilled.tsx index e10f445b3..2464eb3fe 100644 --- a/src/IconServiceToolboxRoundedFilled.tsx +++ b/src/IconServiceToolboxRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconServiceToolboxRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconServiceToolboxRoundedFilled as default } +export default IconServiceToolboxRoundedFilled diff --git a/src/IconServiceToolboxSharp.tsx b/src/IconServiceToolboxSharp.tsx index f0870e72d..801884f81 100644 --- a/src/IconServiceToolboxSharp.tsx +++ b/src/IconServiceToolboxSharp.tsx @@ -8,4 +8,4 @@ const IconServiceToolboxSharp: React.FC = ({ ...props }) => ( ) -export { IconServiceToolboxSharp as default } +export default IconServiceToolboxSharp diff --git a/src/IconServiceToolboxSharpFilled.tsx b/src/IconServiceToolboxSharpFilled.tsx index 0be0eb365..c1bfd174e 100644 --- a/src/IconServiceToolboxSharpFilled.tsx +++ b/src/IconServiceToolboxSharpFilled.tsx @@ -8,4 +8,4 @@ const IconServiceToolboxSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconServiceToolboxSharpFilled as default } +export default IconServiceToolboxSharpFilled diff --git a/src/IconSetMealOutlined.tsx b/src/IconSetMealOutlined.tsx index 4629b0aa6..8975a1d78 100644 --- a/src/IconSetMealOutlined.tsx +++ b/src/IconSetMealOutlined.tsx @@ -8,4 +8,4 @@ const IconSetMealOutlined: React.FC = ({ ...props }) => ( ) -export { IconSetMealOutlined as default } +export default IconSetMealOutlined diff --git a/src/IconSetMealOutlinedFilled.tsx b/src/IconSetMealOutlinedFilled.tsx index 884643fc7..3669aa177 100644 --- a/src/IconSetMealOutlinedFilled.tsx +++ b/src/IconSetMealOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconSetMealOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconSetMealOutlinedFilled as default } +export default IconSetMealOutlinedFilled diff --git a/src/IconSetMealRounded.tsx b/src/IconSetMealRounded.tsx index 1c563d703..c0fcd38ed 100644 --- a/src/IconSetMealRounded.tsx +++ b/src/IconSetMealRounded.tsx @@ -8,4 +8,4 @@ const IconSetMealRounded: React.FC = ({ ...props }) => ( ) -export { IconSetMealRounded as default } +export default IconSetMealRounded diff --git a/src/IconSetMealRoundedFilled.tsx b/src/IconSetMealRoundedFilled.tsx index 8743af769..9d1592f26 100644 --- a/src/IconSetMealRoundedFilled.tsx +++ b/src/IconSetMealRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconSetMealRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconSetMealRoundedFilled as default } +export default IconSetMealRoundedFilled diff --git a/src/IconSetMealSharp.tsx b/src/IconSetMealSharp.tsx index 32de92504..ff485db91 100644 --- a/src/IconSetMealSharp.tsx +++ b/src/IconSetMealSharp.tsx @@ -8,4 +8,4 @@ const IconSetMealSharp: React.FC = ({ ...props }) => ( ) -export { IconSetMealSharp as default } +export default IconSetMealSharp diff --git a/src/IconSetMealSharpFilled.tsx b/src/IconSetMealSharpFilled.tsx index b7da8df15..ce0f457ac 100644 --- a/src/IconSetMealSharpFilled.tsx +++ b/src/IconSetMealSharpFilled.tsx @@ -8,4 +8,4 @@ const IconSetMealSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconSetMealSharpFilled as default } +export default IconSetMealSharpFilled diff --git a/src/IconSettingsAccessibilityOutlined.tsx b/src/IconSettingsAccessibilityOutlined.tsx index 911f996b6..db9d4edfc 100644 --- a/src/IconSettingsAccessibilityOutlined.tsx +++ b/src/IconSettingsAccessibilityOutlined.tsx @@ -10,4 +10,4 @@ const IconSettingsAccessibilityOutlined: React.FC = ({ ) -export { IconSettingsAccessibilityOutlined as default } +export default IconSettingsAccessibilityOutlined diff --git a/src/IconSettingsAccessibilityOutlinedFilled.tsx b/src/IconSettingsAccessibilityOutlinedFilled.tsx index 8d4f6c533..b31ca7ab6 100644 --- a/src/IconSettingsAccessibilityOutlinedFilled.tsx +++ b/src/IconSettingsAccessibilityOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconSettingsAccessibilityOutlinedFilled: React.FC = ({ ) -export { IconSettingsAccessibilityOutlinedFilled as default } +export default IconSettingsAccessibilityOutlinedFilled diff --git a/src/IconSettingsAccessibilityRounded.tsx b/src/IconSettingsAccessibilityRounded.tsx index 12559251f..2008b92dd 100644 --- a/src/IconSettingsAccessibilityRounded.tsx +++ b/src/IconSettingsAccessibilityRounded.tsx @@ -10,4 +10,4 @@ const IconSettingsAccessibilityRounded: React.FC = ({ ) -export { IconSettingsAccessibilityRounded as default } +export default IconSettingsAccessibilityRounded diff --git a/src/IconSettingsAccessibilityRoundedFilled.tsx b/src/IconSettingsAccessibilityRoundedFilled.tsx index 9a12dbe9b..b4cc8f5cd 100644 --- a/src/IconSettingsAccessibilityRoundedFilled.tsx +++ b/src/IconSettingsAccessibilityRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconSettingsAccessibilityRoundedFilled: React.FC = ({ ) -export { IconSettingsAccessibilityRoundedFilled as default } +export default IconSettingsAccessibilityRoundedFilled diff --git a/src/IconSettingsAccessibilitySharp.tsx b/src/IconSettingsAccessibilitySharp.tsx index 4257e5934..e1e923097 100644 --- a/src/IconSettingsAccessibilitySharp.tsx +++ b/src/IconSettingsAccessibilitySharp.tsx @@ -8,4 +8,4 @@ const IconSettingsAccessibilitySharp: React.FC = ({ ...props }) => ( ) -export { IconSettingsAccessibilitySharp as default } +export default IconSettingsAccessibilitySharp diff --git a/src/IconSettingsAccessibilitySharpFilled.tsx b/src/IconSettingsAccessibilitySharpFilled.tsx index fa39e7e70..15028f313 100644 --- a/src/IconSettingsAccessibilitySharpFilled.tsx +++ b/src/IconSettingsAccessibilitySharpFilled.tsx @@ -10,4 +10,4 @@ const IconSettingsAccessibilitySharpFilled: React.FC = ({ ) -export { IconSettingsAccessibilitySharpFilled as default } +export default IconSettingsAccessibilitySharpFilled diff --git a/src/IconSettingsAccountBoxOutlined.tsx b/src/IconSettingsAccountBoxOutlined.tsx index 5eafff3e1..d3e2c4df5 100644 --- a/src/IconSettingsAccountBoxOutlined.tsx +++ b/src/IconSettingsAccountBoxOutlined.tsx @@ -8,4 +8,4 @@ const IconSettingsAccountBoxOutlined: React.FC = ({ ...props }) => ( ) -export { IconSettingsAccountBoxOutlined as default } +export default IconSettingsAccountBoxOutlined diff --git a/src/IconSettingsAccountBoxOutlinedFilled.tsx b/src/IconSettingsAccountBoxOutlinedFilled.tsx index 0cfc5625b..2914d275c 100644 --- a/src/IconSettingsAccountBoxOutlinedFilled.tsx +++ b/src/IconSettingsAccountBoxOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconSettingsAccountBoxOutlinedFilled: React.FC = ({ ) -export { IconSettingsAccountBoxOutlinedFilled as default } +export default IconSettingsAccountBoxOutlinedFilled diff --git a/src/IconSettingsAccountBoxRounded.tsx b/src/IconSettingsAccountBoxRounded.tsx index e2a5334fb..ccbbc3a92 100644 --- a/src/IconSettingsAccountBoxRounded.tsx +++ b/src/IconSettingsAccountBoxRounded.tsx @@ -8,4 +8,4 @@ const IconSettingsAccountBoxRounded: React.FC = ({ ...props }) => ( ) -export { IconSettingsAccountBoxRounded as default } +export default IconSettingsAccountBoxRounded diff --git a/src/IconSettingsAccountBoxRoundedFilled.tsx b/src/IconSettingsAccountBoxRoundedFilled.tsx index 75438a930..2b0a014a6 100644 --- a/src/IconSettingsAccountBoxRoundedFilled.tsx +++ b/src/IconSettingsAccountBoxRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconSettingsAccountBoxRoundedFilled: React.FC = ({ ) -export { IconSettingsAccountBoxRoundedFilled as default } +export default IconSettingsAccountBoxRoundedFilled diff --git a/src/IconSettingsAccountBoxSharp.tsx b/src/IconSettingsAccountBoxSharp.tsx index 234e83608..6cd0e8282 100644 --- a/src/IconSettingsAccountBoxSharp.tsx +++ b/src/IconSettingsAccountBoxSharp.tsx @@ -8,4 +8,4 @@ const IconSettingsAccountBoxSharp: React.FC = ({ ...props }) => ( ) -export { IconSettingsAccountBoxSharp as default } +export default IconSettingsAccountBoxSharp diff --git a/src/IconSettingsAccountBoxSharpFilled.tsx b/src/IconSettingsAccountBoxSharpFilled.tsx index bac884051..d68163fbf 100644 --- a/src/IconSettingsAccountBoxSharpFilled.tsx +++ b/src/IconSettingsAccountBoxSharpFilled.tsx @@ -10,4 +10,4 @@ const IconSettingsAccountBoxSharpFilled: React.FC = ({ ) -export { IconSettingsAccountBoxSharpFilled as default } +export default IconSettingsAccountBoxSharpFilled diff --git a/src/IconSettingsAlertOutlined.tsx b/src/IconSettingsAlertOutlined.tsx index 0663f3318..8acaa2249 100644 --- a/src/IconSettingsAlertOutlined.tsx +++ b/src/IconSettingsAlertOutlined.tsx @@ -8,4 +8,4 @@ const IconSettingsAlertOutlined: React.FC = ({ ...props }) => ( ) -export { IconSettingsAlertOutlined as default } +export default IconSettingsAlertOutlined diff --git a/src/IconSettingsAlertOutlinedFilled.tsx b/src/IconSettingsAlertOutlinedFilled.tsx index b9d2337a3..9b6fcf88b 100644 --- a/src/IconSettingsAlertOutlinedFilled.tsx +++ b/src/IconSettingsAlertOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconSettingsAlertOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconSettingsAlertOutlinedFilled as default } +export default IconSettingsAlertOutlinedFilled diff --git a/src/IconSettingsAlertRounded.tsx b/src/IconSettingsAlertRounded.tsx index bdf26c12c..ec3890de3 100644 --- a/src/IconSettingsAlertRounded.tsx +++ b/src/IconSettingsAlertRounded.tsx @@ -8,4 +8,4 @@ const IconSettingsAlertRounded: React.FC = ({ ...props }) => ( ) -export { IconSettingsAlertRounded as default } +export default IconSettingsAlertRounded diff --git a/src/IconSettingsAlertRoundedFilled.tsx b/src/IconSettingsAlertRoundedFilled.tsx index c9d29385b..9482ebbf1 100644 --- a/src/IconSettingsAlertRoundedFilled.tsx +++ b/src/IconSettingsAlertRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconSettingsAlertRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconSettingsAlertRoundedFilled as default } +export default IconSettingsAlertRoundedFilled diff --git a/src/IconSettingsAlertSharp.tsx b/src/IconSettingsAlertSharp.tsx index 28d1fe044..1f3825c3c 100644 --- a/src/IconSettingsAlertSharp.tsx +++ b/src/IconSettingsAlertSharp.tsx @@ -8,4 +8,4 @@ const IconSettingsAlertSharp: React.FC = ({ ...props }) => ( ) -export { IconSettingsAlertSharp as default } +export default IconSettingsAlertSharp diff --git a/src/IconSettingsAlertSharpFilled.tsx b/src/IconSettingsAlertSharpFilled.tsx index bfcd266c9..2f57c8359 100644 --- a/src/IconSettingsAlertSharpFilled.tsx +++ b/src/IconSettingsAlertSharpFilled.tsx @@ -8,4 +8,4 @@ const IconSettingsAlertSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconSettingsAlertSharpFilled as default } +export default IconSettingsAlertSharpFilled diff --git a/src/IconSettingsApplicationsOutlined.tsx b/src/IconSettingsApplicationsOutlined.tsx index af70e76b7..0797d00ed 100644 --- a/src/IconSettingsApplicationsOutlined.tsx +++ b/src/IconSettingsApplicationsOutlined.tsx @@ -10,4 +10,4 @@ const IconSettingsApplicationsOutlined: React.FC = ({ ) -export { IconSettingsApplicationsOutlined as default } +export default IconSettingsApplicationsOutlined diff --git a/src/IconSettingsApplicationsOutlinedFilled.tsx b/src/IconSettingsApplicationsOutlinedFilled.tsx index 3ca0cbef7..a17691c1a 100644 --- a/src/IconSettingsApplicationsOutlinedFilled.tsx +++ b/src/IconSettingsApplicationsOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconSettingsApplicationsOutlinedFilled: React.FC = ({ ) -export { IconSettingsApplicationsOutlinedFilled as default } +export default IconSettingsApplicationsOutlinedFilled diff --git a/src/IconSettingsApplicationsRounded.tsx b/src/IconSettingsApplicationsRounded.tsx index b8034cf5d..cc6dfda2f 100644 --- a/src/IconSettingsApplicationsRounded.tsx +++ b/src/IconSettingsApplicationsRounded.tsx @@ -8,4 +8,4 @@ const IconSettingsApplicationsRounded: React.FC = ({ ...props }) => ( ) -export { IconSettingsApplicationsRounded as default } +export default IconSettingsApplicationsRounded diff --git a/src/IconSettingsApplicationsRoundedFilled.tsx b/src/IconSettingsApplicationsRoundedFilled.tsx index a4725ea3b..01a79e6f0 100644 --- a/src/IconSettingsApplicationsRoundedFilled.tsx +++ b/src/IconSettingsApplicationsRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconSettingsApplicationsRoundedFilled: React.FC = ({ ) -export { IconSettingsApplicationsRoundedFilled as default } +export default IconSettingsApplicationsRoundedFilled diff --git a/src/IconSettingsApplicationsSharp.tsx b/src/IconSettingsApplicationsSharp.tsx index 5891fbe14..4604b4160 100644 --- a/src/IconSettingsApplicationsSharp.tsx +++ b/src/IconSettingsApplicationsSharp.tsx @@ -8,4 +8,4 @@ const IconSettingsApplicationsSharp: React.FC = ({ ...props }) => ( ) -export { IconSettingsApplicationsSharp as default } +export default IconSettingsApplicationsSharp diff --git a/src/IconSettingsApplicationsSharpFilled.tsx b/src/IconSettingsApplicationsSharpFilled.tsx index c3e89356a..14e802f71 100644 --- a/src/IconSettingsApplicationsSharpFilled.tsx +++ b/src/IconSettingsApplicationsSharpFilled.tsx @@ -10,4 +10,4 @@ const IconSettingsApplicationsSharpFilled: React.FC = ({ ) -export { IconSettingsApplicationsSharpFilled as default } +export default IconSettingsApplicationsSharpFilled diff --git a/src/IconSettingsBRollOutlined.tsx b/src/IconSettingsBRollOutlined.tsx index 05008b579..06de1fc57 100644 --- a/src/IconSettingsBRollOutlined.tsx +++ b/src/IconSettingsBRollOutlined.tsx @@ -8,4 +8,4 @@ const IconSettingsBRollOutlined: React.FC = ({ ...props }) => ( ) -export { IconSettingsBRollOutlined as default } +export default IconSettingsBRollOutlined diff --git a/src/IconSettingsBRollOutlinedFilled.tsx b/src/IconSettingsBRollOutlinedFilled.tsx index 0e9b74256..773d9bac0 100644 --- a/src/IconSettingsBRollOutlinedFilled.tsx +++ b/src/IconSettingsBRollOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconSettingsBRollOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconSettingsBRollOutlinedFilled as default } +export default IconSettingsBRollOutlinedFilled diff --git a/src/IconSettingsBRollRounded.tsx b/src/IconSettingsBRollRounded.tsx index a437a2d26..8a031d0f4 100644 --- a/src/IconSettingsBRollRounded.tsx +++ b/src/IconSettingsBRollRounded.tsx @@ -8,4 +8,4 @@ const IconSettingsBRollRounded: React.FC = ({ ...props }) => ( ) -export { IconSettingsBRollRounded as default } +export default IconSettingsBRollRounded diff --git a/src/IconSettingsBRollRoundedFilled.tsx b/src/IconSettingsBRollRoundedFilled.tsx index 47fb60ade..6171074db 100644 --- a/src/IconSettingsBRollRoundedFilled.tsx +++ b/src/IconSettingsBRollRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconSettingsBRollRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconSettingsBRollRoundedFilled as default } +export default IconSettingsBRollRoundedFilled diff --git a/src/IconSettingsBRollSharp.tsx b/src/IconSettingsBRollSharp.tsx index 3fa917097..5eb16ba7c 100644 --- a/src/IconSettingsBRollSharp.tsx +++ b/src/IconSettingsBRollSharp.tsx @@ -8,4 +8,4 @@ const IconSettingsBRollSharp: React.FC = ({ ...props }) => ( ) -export { IconSettingsBRollSharp as default } +export default IconSettingsBRollSharp diff --git a/src/IconSettingsBRollSharpFilled.tsx b/src/IconSettingsBRollSharpFilled.tsx index d217b7d45..a429a15d7 100644 --- a/src/IconSettingsBRollSharpFilled.tsx +++ b/src/IconSettingsBRollSharpFilled.tsx @@ -8,4 +8,4 @@ const IconSettingsBRollSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconSettingsBRollSharpFilled as default } +export default IconSettingsBRollSharpFilled diff --git a/src/IconSettingsBackupRestoreOutlined.tsx b/src/IconSettingsBackupRestoreOutlined.tsx index 1fc31c340..813e5d9a9 100644 --- a/src/IconSettingsBackupRestoreOutlined.tsx +++ b/src/IconSettingsBackupRestoreOutlined.tsx @@ -10,4 +10,4 @@ const IconSettingsBackupRestoreOutlined: React.FC = ({ ) -export { IconSettingsBackupRestoreOutlined as default } +export default IconSettingsBackupRestoreOutlined diff --git a/src/IconSettingsBackupRestoreOutlinedFilled.tsx b/src/IconSettingsBackupRestoreOutlinedFilled.tsx index 435127958..5b64fc7f6 100644 --- a/src/IconSettingsBackupRestoreOutlinedFilled.tsx +++ b/src/IconSettingsBackupRestoreOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconSettingsBackupRestoreOutlinedFilled: React.FC = ({ ) -export { IconSettingsBackupRestoreOutlinedFilled as default } +export default IconSettingsBackupRestoreOutlinedFilled diff --git a/src/IconSettingsBackupRestoreRounded.tsx b/src/IconSettingsBackupRestoreRounded.tsx index 070496608..d2e181ac8 100644 --- a/src/IconSettingsBackupRestoreRounded.tsx +++ b/src/IconSettingsBackupRestoreRounded.tsx @@ -10,4 +10,4 @@ const IconSettingsBackupRestoreRounded: React.FC = ({ ) -export { IconSettingsBackupRestoreRounded as default } +export default IconSettingsBackupRestoreRounded diff --git a/src/IconSettingsBackupRestoreRoundedFilled.tsx b/src/IconSettingsBackupRestoreRoundedFilled.tsx index b966f1797..89ad7557c 100644 --- a/src/IconSettingsBackupRestoreRoundedFilled.tsx +++ b/src/IconSettingsBackupRestoreRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconSettingsBackupRestoreRoundedFilled: React.FC = ({ ) -export { IconSettingsBackupRestoreRoundedFilled as default } +export default IconSettingsBackupRestoreRoundedFilled diff --git a/src/IconSettingsBackupRestoreSharp.tsx b/src/IconSettingsBackupRestoreSharp.tsx index 795707103..414def867 100644 --- a/src/IconSettingsBackupRestoreSharp.tsx +++ b/src/IconSettingsBackupRestoreSharp.tsx @@ -8,4 +8,4 @@ const IconSettingsBackupRestoreSharp: React.FC = ({ ...props }) => ( ) -export { IconSettingsBackupRestoreSharp as default } +export default IconSettingsBackupRestoreSharp diff --git a/src/IconSettingsBackupRestoreSharpFilled.tsx b/src/IconSettingsBackupRestoreSharpFilled.tsx index cbd025eb4..f8f2ceb5b 100644 --- a/src/IconSettingsBackupRestoreSharpFilled.tsx +++ b/src/IconSettingsBackupRestoreSharpFilled.tsx @@ -10,4 +10,4 @@ const IconSettingsBackupRestoreSharpFilled: React.FC = ({ ) -export { IconSettingsBackupRestoreSharpFilled as default } +export default IconSettingsBackupRestoreSharpFilled diff --git a/src/IconSettingsBluetoothOutlined.tsx b/src/IconSettingsBluetoothOutlined.tsx index fd0c1cd77..82773209b 100644 --- a/src/IconSettingsBluetoothOutlined.tsx +++ b/src/IconSettingsBluetoothOutlined.tsx @@ -8,4 +8,4 @@ const IconSettingsBluetoothOutlined: React.FC = ({ ...props }) => ( ) -export { IconSettingsBluetoothOutlined as default } +export default IconSettingsBluetoothOutlined diff --git a/src/IconSettingsBluetoothOutlinedFilled.tsx b/src/IconSettingsBluetoothOutlinedFilled.tsx index 54068011f..b4d865229 100644 --- a/src/IconSettingsBluetoothOutlinedFilled.tsx +++ b/src/IconSettingsBluetoothOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconSettingsBluetoothOutlinedFilled: React.FC = ({ ) -export { IconSettingsBluetoothOutlinedFilled as default } +export default IconSettingsBluetoothOutlinedFilled diff --git a/src/IconSettingsBluetoothRounded.tsx b/src/IconSettingsBluetoothRounded.tsx index deff09f0f..6526d3642 100644 --- a/src/IconSettingsBluetoothRounded.tsx +++ b/src/IconSettingsBluetoothRounded.tsx @@ -8,4 +8,4 @@ const IconSettingsBluetoothRounded: React.FC = ({ ...props }) => ( ) -export { IconSettingsBluetoothRounded as default } +export default IconSettingsBluetoothRounded diff --git a/src/IconSettingsBluetoothRoundedFilled.tsx b/src/IconSettingsBluetoothRoundedFilled.tsx index da2e499a6..4ed0aebac 100644 --- a/src/IconSettingsBluetoothRoundedFilled.tsx +++ b/src/IconSettingsBluetoothRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconSettingsBluetoothRoundedFilled: React.FC = ({ ) -export { IconSettingsBluetoothRoundedFilled as default } +export default IconSettingsBluetoothRoundedFilled diff --git a/src/IconSettingsBluetoothSharp.tsx b/src/IconSettingsBluetoothSharp.tsx index a344daca3..9f84c7106 100644 --- a/src/IconSettingsBluetoothSharp.tsx +++ b/src/IconSettingsBluetoothSharp.tsx @@ -8,4 +8,4 @@ const IconSettingsBluetoothSharp: React.FC = ({ ...props }) => ( ) -export { IconSettingsBluetoothSharp as default } +export default IconSettingsBluetoothSharp diff --git a/src/IconSettingsBluetoothSharpFilled.tsx b/src/IconSettingsBluetoothSharpFilled.tsx index 8c5d5efca..e82d1cf34 100644 --- a/src/IconSettingsBluetoothSharpFilled.tsx +++ b/src/IconSettingsBluetoothSharpFilled.tsx @@ -10,4 +10,4 @@ const IconSettingsBluetoothSharpFilled: React.FC = ({ ) -export { IconSettingsBluetoothSharpFilled as default } +export default IconSettingsBluetoothSharpFilled diff --git a/src/IconSettingsBrightnessOutlined.tsx b/src/IconSettingsBrightnessOutlined.tsx index 8ae401938..47bd6b003 100644 --- a/src/IconSettingsBrightnessOutlined.tsx +++ b/src/IconSettingsBrightnessOutlined.tsx @@ -8,4 +8,4 @@ const IconSettingsBrightnessOutlined: React.FC = ({ ...props }) => ( ) -export { IconSettingsBrightnessOutlined as default } +export default IconSettingsBrightnessOutlined diff --git a/src/IconSettingsBrightnessOutlinedFilled.tsx b/src/IconSettingsBrightnessOutlinedFilled.tsx index 48e83be50..f5f0cbe76 100644 --- a/src/IconSettingsBrightnessOutlinedFilled.tsx +++ b/src/IconSettingsBrightnessOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconSettingsBrightnessOutlinedFilled: React.FC = ({ ) -export { IconSettingsBrightnessOutlinedFilled as default } +export default IconSettingsBrightnessOutlinedFilled diff --git a/src/IconSettingsBrightnessRounded.tsx b/src/IconSettingsBrightnessRounded.tsx index 1e40b9479..84309f853 100644 --- a/src/IconSettingsBrightnessRounded.tsx +++ b/src/IconSettingsBrightnessRounded.tsx @@ -8,4 +8,4 @@ const IconSettingsBrightnessRounded: React.FC = ({ ...props }) => ( ) -export { IconSettingsBrightnessRounded as default } +export default IconSettingsBrightnessRounded diff --git a/src/IconSettingsBrightnessRoundedFilled.tsx b/src/IconSettingsBrightnessRoundedFilled.tsx index 05a565dbc..5ac740c0a 100644 --- a/src/IconSettingsBrightnessRoundedFilled.tsx +++ b/src/IconSettingsBrightnessRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconSettingsBrightnessRoundedFilled: React.FC = ({ ) -export { IconSettingsBrightnessRoundedFilled as default } +export default IconSettingsBrightnessRoundedFilled diff --git a/src/IconSettingsBrightnessSharp.tsx b/src/IconSettingsBrightnessSharp.tsx index 6951bd7dd..d6f9e5419 100644 --- a/src/IconSettingsBrightnessSharp.tsx +++ b/src/IconSettingsBrightnessSharp.tsx @@ -8,4 +8,4 @@ const IconSettingsBrightnessSharp: React.FC = ({ ...props }) => ( ) -export { IconSettingsBrightnessSharp as default } +export default IconSettingsBrightnessSharp diff --git a/src/IconSettingsBrightnessSharpFilled.tsx b/src/IconSettingsBrightnessSharpFilled.tsx index 07bf8c7cb..eade27898 100644 --- a/src/IconSettingsBrightnessSharpFilled.tsx +++ b/src/IconSettingsBrightnessSharpFilled.tsx @@ -10,4 +10,4 @@ const IconSettingsBrightnessSharpFilled: React.FC = ({ ) -export { IconSettingsBrightnessSharpFilled as default } +export default IconSettingsBrightnessSharpFilled diff --git a/src/IconSettingsCellOutlined.tsx b/src/IconSettingsCellOutlined.tsx index 45faebbdc..68364915b 100644 --- a/src/IconSettingsCellOutlined.tsx +++ b/src/IconSettingsCellOutlined.tsx @@ -8,4 +8,4 @@ const IconSettingsCellOutlined: React.FC = ({ ...props }) => ( ) -export { IconSettingsCellOutlined as default } +export default IconSettingsCellOutlined diff --git a/src/IconSettingsCellOutlinedFilled.tsx b/src/IconSettingsCellOutlinedFilled.tsx index 4bb139dae..a20089484 100644 --- a/src/IconSettingsCellOutlinedFilled.tsx +++ b/src/IconSettingsCellOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconSettingsCellOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconSettingsCellOutlinedFilled as default } +export default IconSettingsCellOutlinedFilled diff --git a/src/IconSettingsCellRounded.tsx b/src/IconSettingsCellRounded.tsx index 380bd5b2b..7cb98f87b 100644 --- a/src/IconSettingsCellRounded.tsx +++ b/src/IconSettingsCellRounded.tsx @@ -8,4 +8,4 @@ const IconSettingsCellRounded: React.FC = ({ ...props }) => ( ) -export { IconSettingsCellRounded as default } +export default IconSettingsCellRounded diff --git a/src/IconSettingsCellRoundedFilled.tsx b/src/IconSettingsCellRoundedFilled.tsx index 80a446ad5..91f7d0a4e 100644 --- a/src/IconSettingsCellRoundedFilled.tsx +++ b/src/IconSettingsCellRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconSettingsCellRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconSettingsCellRoundedFilled as default } +export default IconSettingsCellRoundedFilled diff --git a/src/IconSettingsCellSharp.tsx b/src/IconSettingsCellSharp.tsx index 9a540428b..f1ff84ccd 100644 --- a/src/IconSettingsCellSharp.tsx +++ b/src/IconSettingsCellSharp.tsx @@ -8,4 +8,4 @@ const IconSettingsCellSharp: React.FC = ({ ...props }) => ( ) -export { IconSettingsCellSharp as default } +export default IconSettingsCellSharp diff --git a/src/IconSettingsCellSharpFilled.tsx b/src/IconSettingsCellSharpFilled.tsx index 9eb4570f5..178fcc329 100644 --- a/src/IconSettingsCellSharpFilled.tsx +++ b/src/IconSettingsCellSharpFilled.tsx @@ -8,4 +8,4 @@ const IconSettingsCellSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconSettingsCellSharpFilled as default } +export default IconSettingsCellSharpFilled diff --git a/src/IconSettingsCinematicBlurOutlined.tsx b/src/IconSettingsCinematicBlurOutlined.tsx index 34d70d7ac..198e5d74e 100644 --- a/src/IconSettingsCinematicBlurOutlined.tsx +++ b/src/IconSettingsCinematicBlurOutlined.tsx @@ -10,4 +10,4 @@ const IconSettingsCinematicBlurOutlined: React.FC = ({ ) -export { IconSettingsCinematicBlurOutlined as default } +export default IconSettingsCinematicBlurOutlined diff --git a/src/IconSettingsCinematicBlurOutlinedFilled.tsx b/src/IconSettingsCinematicBlurOutlinedFilled.tsx index 1bb5bb462..9aae20c72 100644 --- a/src/IconSettingsCinematicBlurOutlinedFilled.tsx +++ b/src/IconSettingsCinematicBlurOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconSettingsCinematicBlurOutlinedFilled: React.FC = ({ ) -export { IconSettingsCinematicBlurOutlinedFilled as default } +export default IconSettingsCinematicBlurOutlinedFilled diff --git a/src/IconSettingsCinematicBlurRounded.tsx b/src/IconSettingsCinematicBlurRounded.tsx index 89eb34687..aec355f90 100644 --- a/src/IconSettingsCinematicBlurRounded.tsx +++ b/src/IconSettingsCinematicBlurRounded.tsx @@ -10,4 +10,4 @@ const IconSettingsCinematicBlurRounded: React.FC = ({ ) -export { IconSettingsCinematicBlurRounded as default } +export default IconSettingsCinematicBlurRounded diff --git a/src/IconSettingsCinematicBlurRoundedFilled.tsx b/src/IconSettingsCinematicBlurRoundedFilled.tsx index 49b911d53..d8f6d36ee 100644 --- a/src/IconSettingsCinematicBlurRoundedFilled.tsx +++ b/src/IconSettingsCinematicBlurRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconSettingsCinematicBlurRoundedFilled: React.FC = ({ ) -export { IconSettingsCinematicBlurRoundedFilled as default } +export default IconSettingsCinematicBlurRoundedFilled diff --git a/src/IconSettingsCinematicBlurSharp.tsx b/src/IconSettingsCinematicBlurSharp.tsx index c30c5fb57..503e24f07 100644 --- a/src/IconSettingsCinematicBlurSharp.tsx +++ b/src/IconSettingsCinematicBlurSharp.tsx @@ -8,4 +8,4 @@ const IconSettingsCinematicBlurSharp: React.FC = ({ ...props }) => ( ) -export { IconSettingsCinematicBlurSharp as default } +export default IconSettingsCinematicBlurSharp diff --git a/src/IconSettingsCinematicBlurSharpFilled.tsx b/src/IconSettingsCinematicBlurSharpFilled.tsx index 7e90d219f..342f5e7db 100644 --- a/src/IconSettingsCinematicBlurSharpFilled.tsx +++ b/src/IconSettingsCinematicBlurSharpFilled.tsx @@ -10,4 +10,4 @@ const IconSettingsCinematicBlurSharpFilled: React.FC = ({ ) -export { IconSettingsCinematicBlurSharpFilled as default } +export default IconSettingsCinematicBlurSharpFilled diff --git a/src/IconSettingsEthernetOutlined.tsx b/src/IconSettingsEthernetOutlined.tsx index 221119071..8ef10f19b 100644 --- a/src/IconSettingsEthernetOutlined.tsx +++ b/src/IconSettingsEthernetOutlined.tsx @@ -8,4 +8,4 @@ const IconSettingsEthernetOutlined: React.FC = ({ ...props }) => ( ) -export { IconSettingsEthernetOutlined as default } +export default IconSettingsEthernetOutlined diff --git a/src/IconSettingsEthernetOutlinedFilled.tsx b/src/IconSettingsEthernetOutlinedFilled.tsx index 162dfbd55..d622c6144 100644 --- a/src/IconSettingsEthernetOutlinedFilled.tsx +++ b/src/IconSettingsEthernetOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconSettingsEthernetOutlinedFilled: React.FC = ({ ) -export { IconSettingsEthernetOutlinedFilled as default } +export default IconSettingsEthernetOutlinedFilled diff --git a/src/IconSettingsEthernetRounded.tsx b/src/IconSettingsEthernetRounded.tsx index cca70661e..82f2724a1 100644 --- a/src/IconSettingsEthernetRounded.tsx +++ b/src/IconSettingsEthernetRounded.tsx @@ -8,4 +8,4 @@ const IconSettingsEthernetRounded: React.FC = ({ ...props }) => ( ) -export { IconSettingsEthernetRounded as default } +export default IconSettingsEthernetRounded diff --git a/src/IconSettingsEthernetRoundedFilled.tsx b/src/IconSettingsEthernetRoundedFilled.tsx index 4eb508ae7..e10a6a551 100644 --- a/src/IconSettingsEthernetRoundedFilled.tsx +++ b/src/IconSettingsEthernetRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconSettingsEthernetRoundedFilled: React.FC = ({ ) -export { IconSettingsEthernetRoundedFilled as default } +export default IconSettingsEthernetRoundedFilled diff --git a/src/IconSettingsEthernetSharp.tsx b/src/IconSettingsEthernetSharp.tsx index 27c616aa1..c26ae7342 100644 --- a/src/IconSettingsEthernetSharp.tsx +++ b/src/IconSettingsEthernetSharp.tsx @@ -8,4 +8,4 @@ const IconSettingsEthernetSharp: React.FC = ({ ...props }) => ( ) -export { IconSettingsEthernetSharp as default } +export default IconSettingsEthernetSharp diff --git a/src/IconSettingsEthernetSharpFilled.tsx b/src/IconSettingsEthernetSharpFilled.tsx index 25af3b9a8..5df640793 100644 --- a/src/IconSettingsEthernetSharpFilled.tsx +++ b/src/IconSettingsEthernetSharpFilled.tsx @@ -8,4 +8,4 @@ const IconSettingsEthernetSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconSettingsEthernetSharpFilled as default } +export default IconSettingsEthernetSharpFilled diff --git a/src/IconSettingsHeartOutlined.tsx b/src/IconSettingsHeartOutlined.tsx index d6b4650e3..88de58e1e 100644 --- a/src/IconSettingsHeartOutlined.tsx +++ b/src/IconSettingsHeartOutlined.tsx @@ -8,4 +8,4 @@ const IconSettingsHeartOutlined: React.FC = ({ ...props }) => ( ) -export { IconSettingsHeartOutlined as default } +export default IconSettingsHeartOutlined diff --git a/src/IconSettingsHeartOutlinedFilled.tsx b/src/IconSettingsHeartOutlinedFilled.tsx index 307e27b0d..ed3896362 100644 --- a/src/IconSettingsHeartOutlinedFilled.tsx +++ b/src/IconSettingsHeartOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconSettingsHeartOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconSettingsHeartOutlinedFilled as default } +export default IconSettingsHeartOutlinedFilled diff --git a/src/IconSettingsHeartRounded.tsx b/src/IconSettingsHeartRounded.tsx index 0cc716de4..1c1f8f514 100644 --- a/src/IconSettingsHeartRounded.tsx +++ b/src/IconSettingsHeartRounded.tsx @@ -8,4 +8,4 @@ const IconSettingsHeartRounded: React.FC = ({ ...props }) => ( ) -export { IconSettingsHeartRounded as default } +export default IconSettingsHeartRounded diff --git a/src/IconSettingsHeartRoundedFilled.tsx b/src/IconSettingsHeartRoundedFilled.tsx index c85ac5030..ad09dc7c3 100644 --- a/src/IconSettingsHeartRoundedFilled.tsx +++ b/src/IconSettingsHeartRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconSettingsHeartRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconSettingsHeartRoundedFilled as default } +export default IconSettingsHeartRoundedFilled diff --git a/src/IconSettingsHeartSharp.tsx b/src/IconSettingsHeartSharp.tsx index 67370c826..61986a623 100644 --- a/src/IconSettingsHeartSharp.tsx +++ b/src/IconSettingsHeartSharp.tsx @@ -8,4 +8,4 @@ const IconSettingsHeartSharp: React.FC = ({ ...props }) => ( ) -export { IconSettingsHeartSharp as default } +export default IconSettingsHeartSharp diff --git a/src/IconSettingsHeartSharpFilled.tsx b/src/IconSettingsHeartSharpFilled.tsx index e6df72adb..03c4c8aef 100644 --- a/src/IconSettingsHeartSharpFilled.tsx +++ b/src/IconSettingsHeartSharpFilled.tsx @@ -8,4 +8,4 @@ const IconSettingsHeartSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconSettingsHeartSharpFilled as default } +export default IconSettingsHeartSharpFilled diff --git a/src/IconSettingsInputAntennaOutlined.tsx b/src/IconSettingsInputAntennaOutlined.tsx index 78af2dd7d..95c0dfb45 100644 --- a/src/IconSettingsInputAntennaOutlined.tsx +++ b/src/IconSettingsInputAntennaOutlined.tsx @@ -10,4 +10,4 @@ const IconSettingsInputAntennaOutlined: React.FC = ({ ) -export { IconSettingsInputAntennaOutlined as default } +export default IconSettingsInputAntennaOutlined diff --git a/src/IconSettingsInputAntennaOutlinedFilled.tsx b/src/IconSettingsInputAntennaOutlinedFilled.tsx index 15da2b444..9f2f1651a 100644 --- a/src/IconSettingsInputAntennaOutlinedFilled.tsx +++ b/src/IconSettingsInputAntennaOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconSettingsInputAntennaOutlinedFilled: React.FC = ({ ) -export { IconSettingsInputAntennaOutlinedFilled as default } +export default IconSettingsInputAntennaOutlinedFilled diff --git a/src/IconSettingsInputAntennaRounded.tsx b/src/IconSettingsInputAntennaRounded.tsx index d3ad20803..d3523cc13 100644 --- a/src/IconSettingsInputAntennaRounded.tsx +++ b/src/IconSettingsInputAntennaRounded.tsx @@ -8,4 +8,4 @@ const IconSettingsInputAntennaRounded: React.FC = ({ ...props }) => ( ) -export { IconSettingsInputAntennaRounded as default } +export default IconSettingsInputAntennaRounded diff --git a/src/IconSettingsInputAntennaRoundedFilled.tsx b/src/IconSettingsInputAntennaRoundedFilled.tsx index 0c00ba679..140a9348f 100644 --- a/src/IconSettingsInputAntennaRoundedFilled.tsx +++ b/src/IconSettingsInputAntennaRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconSettingsInputAntennaRoundedFilled: React.FC = ({ ) -export { IconSettingsInputAntennaRoundedFilled as default } +export default IconSettingsInputAntennaRoundedFilled diff --git a/src/IconSettingsInputAntennaSharp.tsx b/src/IconSettingsInputAntennaSharp.tsx index c311a3b54..c7364d9a2 100644 --- a/src/IconSettingsInputAntennaSharp.tsx +++ b/src/IconSettingsInputAntennaSharp.tsx @@ -8,4 +8,4 @@ const IconSettingsInputAntennaSharp: React.FC = ({ ...props }) => ( ) -export { IconSettingsInputAntennaSharp as default } +export default IconSettingsInputAntennaSharp diff --git a/src/IconSettingsInputAntennaSharpFilled.tsx b/src/IconSettingsInputAntennaSharpFilled.tsx index d64d04927..701d1599f 100644 --- a/src/IconSettingsInputAntennaSharpFilled.tsx +++ b/src/IconSettingsInputAntennaSharpFilled.tsx @@ -10,4 +10,4 @@ const IconSettingsInputAntennaSharpFilled: React.FC = ({ ) -export { IconSettingsInputAntennaSharpFilled as default } +export default IconSettingsInputAntennaSharpFilled diff --git a/src/IconSettingsInputComponentOutlined.tsx b/src/IconSettingsInputComponentOutlined.tsx index afa5fecc0..57f900bb0 100644 --- a/src/IconSettingsInputComponentOutlined.tsx +++ b/src/IconSettingsInputComponentOutlined.tsx @@ -10,4 +10,4 @@ const IconSettingsInputComponentOutlined: React.FC = ({ ) -export { IconSettingsInputComponentOutlined as default } +export default IconSettingsInputComponentOutlined diff --git a/src/IconSettingsInputComponentOutlinedFilled.tsx b/src/IconSettingsInputComponentOutlinedFilled.tsx index 77c5e9ae8..e05584bc8 100644 --- a/src/IconSettingsInputComponentOutlinedFilled.tsx +++ b/src/IconSettingsInputComponentOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconSettingsInputComponentOutlinedFilled: React.FC = ({ ) -export { IconSettingsInputComponentOutlinedFilled as default } +export default IconSettingsInputComponentOutlinedFilled diff --git a/src/IconSettingsInputComponentRounded.tsx b/src/IconSettingsInputComponentRounded.tsx index 947a317f2..5acafd5d3 100644 --- a/src/IconSettingsInputComponentRounded.tsx +++ b/src/IconSettingsInputComponentRounded.tsx @@ -10,4 +10,4 @@ const IconSettingsInputComponentRounded: React.FC = ({ ) -export { IconSettingsInputComponentRounded as default } +export default IconSettingsInputComponentRounded diff --git a/src/IconSettingsInputComponentRoundedFilled.tsx b/src/IconSettingsInputComponentRoundedFilled.tsx index 837ab3a27..bba35008d 100644 --- a/src/IconSettingsInputComponentRoundedFilled.tsx +++ b/src/IconSettingsInputComponentRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconSettingsInputComponentRoundedFilled: React.FC = ({ ) -export { IconSettingsInputComponentRoundedFilled as default } +export default IconSettingsInputComponentRoundedFilled diff --git a/src/IconSettingsInputComponentSharp.tsx b/src/IconSettingsInputComponentSharp.tsx index 65849f6cf..b33f31248 100644 --- a/src/IconSettingsInputComponentSharp.tsx +++ b/src/IconSettingsInputComponentSharp.tsx @@ -8,4 +8,4 @@ const IconSettingsInputComponentSharp: React.FC = ({ ...props }) => ( ) -export { IconSettingsInputComponentSharp as default } +export default IconSettingsInputComponentSharp diff --git a/src/IconSettingsInputComponentSharpFilled.tsx b/src/IconSettingsInputComponentSharpFilled.tsx index 711f4ace9..2e493668f 100644 --- a/src/IconSettingsInputComponentSharpFilled.tsx +++ b/src/IconSettingsInputComponentSharpFilled.tsx @@ -10,4 +10,4 @@ const IconSettingsInputComponentSharpFilled: React.FC = ({ ) -export { IconSettingsInputComponentSharpFilled as default } +export default IconSettingsInputComponentSharpFilled diff --git a/src/IconSettingsInputHdmiOutlined.tsx b/src/IconSettingsInputHdmiOutlined.tsx index a37097fc4..e894ce750 100644 --- a/src/IconSettingsInputHdmiOutlined.tsx +++ b/src/IconSettingsInputHdmiOutlined.tsx @@ -8,4 +8,4 @@ const IconSettingsInputHdmiOutlined: React.FC = ({ ...props }) => ( ) -export { IconSettingsInputHdmiOutlined as default } +export default IconSettingsInputHdmiOutlined diff --git a/src/IconSettingsInputHdmiOutlinedFilled.tsx b/src/IconSettingsInputHdmiOutlinedFilled.tsx index d687db50b..121710c92 100644 --- a/src/IconSettingsInputHdmiOutlinedFilled.tsx +++ b/src/IconSettingsInputHdmiOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconSettingsInputHdmiOutlinedFilled: React.FC = ({ ) -export { IconSettingsInputHdmiOutlinedFilled as default } +export default IconSettingsInputHdmiOutlinedFilled diff --git a/src/IconSettingsInputHdmiRounded.tsx b/src/IconSettingsInputHdmiRounded.tsx index 58188c221..85c3f3d6a 100644 --- a/src/IconSettingsInputHdmiRounded.tsx +++ b/src/IconSettingsInputHdmiRounded.tsx @@ -8,4 +8,4 @@ const IconSettingsInputHdmiRounded: React.FC = ({ ...props }) => ( ) -export { IconSettingsInputHdmiRounded as default } +export default IconSettingsInputHdmiRounded diff --git a/src/IconSettingsInputHdmiRoundedFilled.tsx b/src/IconSettingsInputHdmiRoundedFilled.tsx index b21124b9d..094be9539 100644 --- a/src/IconSettingsInputHdmiRoundedFilled.tsx +++ b/src/IconSettingsInputHdmiRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconSettingsInputHdmiRoundedFilled: React.FC = ({ ) -export { IconSettingsInputHdmiRoundedFilled as default } +export default IconSettingsInputHdmiRoundedFilled diff --git a/src/IconSettingsInputHdmiSharp.tsx b/src/IconSettingsInputHdmiSharp.tsx index a8f24f362..52c1e4c17 100644 --- a/src/IconSettingsInputHdmiSharp.tsx +++ b/src/IconSettingsInputHdmiSharp.tsx @@ -8,4 +8,4 @@ const IconSettingsInputHdmiSharp: React.FC = ({ ...props }) => ( ) -export { IconSettingsInputHdmiSharp as default } +export default IconSettingsInputHdmiSharp diff --git a/src/IconSettingsInputHdmiSharpFilled.tsx b/src/IconSettingsInputHdmiSharpFilled.tsx index 46924a6cb..1b3044f3b 100644 --- a/src/IconSettingsInputHdmiSharpFilled.tsx +++ b/src/IconSettingsInputHdmiSharpFilled.tsx @@ -10,4 +10,4 @@ const IconSettingsInputHdmiSharpFilled: React.FC = ({ ) -export { IconSettingsInputHdmiSharpFilled as default } +export default IconSettingsInputHdmiSharpFilled diff --git a/src/IconSettingsInputSvideoOutlined.tsx b/src/IconSettingsInputSvideoOutlined.tsx index ae2027816..2d4c9d649 100644 --- a/src/IconSettingsInputSvideoOutlined.tsx +++ b/src/IconSettingsInputSvideoOutlined.tsx @@ -8,4 +8,4 @@ const IconSettingsInputSvideoOutlined: React.FC = ({ ...props }) => ( ) -export { IconSettingsInputSvideoOutlined as default } +export default IconSettingsInputSvideoOutlined diff --git a/src/IconSettingsInputSvideoOutlinedFilled.tsx b/src/IconSettingsInputSvideoOutlinedFilled.tsx index 5bfbea9b4..b32713ac7 100644 --- a/src/IconSettingsInputSvideoOutlinedFilled.tsx +++ b/src/IconSettingsInputSvideoOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconSettingsInputSvideoOutlinedFilled: React.FC = ({ ) -export { IconSettingsInputSvideoOutlinedFilled as default } +export default IconSettingsInputSvideoOutlinedFilled diff --git a/src/IconSettingsInputSvideoRounded.tsx b/src/IconSettingsInputSvideoRounded.tsx index 8749a7a83..d53f4bd6a 100644 --- a/src/IconSettingsInputSvideoRounded.tsx +++ b/src/IconSettingsInputSvideoRounded.tsx @@ -8,4 +8,4 @@ const IconSettingsInputSvideoRounded: React.FC = ({ ...props }) => ( ) -export { IconSettingsInputSvideoRounded as default } +export default IconSettingsInputSvideoRounded diff --git a/src/IconSettingsInputSvideoRoundedFilled.tsx b/src/IconSettingsInputSvideoRoundedFilled.tsx index 3b208bad9..7e57728e7 100644 --- a/src/IconSettingsInputSvideoRoundedFilled.tsx +++ b/src/IconSettingsInputSvideoRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconSettingsInputSvideoRoundedFilled: React.FC = ({ ) -export { IconSettingsInputSvideoRoundedFilled as default } +export default IconSettingsInputSvideoRoundedFilled diff --git a/src/IconSettingsInputSvideoSharp.tsx b/src/IconSettingsInputSvideoSharp.tsx index 6e38ef8b3..70a4844af 100644 --- a/src/IconSettingsInputSvideoSharp.tsx +++ b/src/IconSettingsInputSvideoSharp.tsx @@ -8,4 +8,4 @@ const IconSettingsInputSvideoSharp: React.FC = ({ ...props }) => ( ) -export { IconSettingsInputSvideoSharp as default } +export default IconSettingsInputSvideoSharp diff --git a/src/IconSettingsInputSvideoSharpFilled.tsx b/src/IconSettingsInputSvideoSharpFilled.tsx index e804c2e82..756278a62 100644 --- a/src/IconSettingsInputSvideoSharpFilled.tsx +++ b/src/IconSettingsInputSvideoSharpFilled.tsx @@ -10,4 +10,4 @@ const IconSettingsInputSvideoSharpFilled: React.FC = ({ ) -export { IconSettingsInputSvideoSharpFilled as default } +export default IconSettingsInputSvideoSharpFilled diff --git a/src/IconSettingsMotionModeOutlined.tsx b/src/IconSettingsMotionModeOutlined.tsx index aa6d90a33..c4ac2edb8 100644 --- a/src/IconSettingsMotionModeOutlined.tsx +++ b/src/IconSettingsMotionModeOutlined.tsx @@ -8,4 +8,4 @@ const IconSettingsMotionModeOutlined: React.FC = ({ ...props }) => ( ) -export { IconSettingsMotionModeOutlined as default } +export default IconSettingsMotionModeOutlined diff --git a/src/IconSettingsMotionModeOutlinedFilled.tsx b/src/IconSettingsMotionModeOutlinedFilled.tsx index 35fbe4e37..5be4ed92f 100644 --- a/src/IconSettingsMotionModeOutlinedFilled.tsx +++ b/src/IconSettingsMotionModeOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconSettingsMotionModeOutlinedFilled: React.FC = ({ ) -export { IconSettingsMotionModeOutlinedFilled as default } +export default IconSettingsMotionModeOutlinedFilled diff --git a/src/IconSettingsMotionModeRounded.tsx b/src/IconSettingsMotionModeRounded.tsx index 35411837b..4a46c35e3 100644 --- a/src/IconSettingsMotionModeRounded.tsx +++ b/src/IconSettingsMotionModeRounded.tsx @@ -8,4 +8,4 @@ const IconSettingsMotionModeRounded: React.FC = ({ ...props }) => ( ) -export { IconSettingsMotionModeRounded as default } +export default IconSettingsMotionModeRounded diff --git a/src/IconSettingsMotionModeRoundedFilled.tsx b/src/IconSettingsMotionModeRoundedFilled.tsx index 74cd1bd04..a1e2a6ccf 100644 --- a/src/IconSettingsMotionModeRoundedFilled.tsx +++ b/src/IconSettingsMotionModeRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconSettingsMotionModeRoundedFilled: React.FC = ({ ) -export { IconSettingsMotionModeRoundedFilled as default } +export default IconSettingsMotionModeRoundedFilled diff --git a/src/IconSettingsMotionModeSharp.tsx b/src/IconSettingsMotionModeSharp.tsx index 80c547c86..a842669ed 100644 --- a/src/IconSettingsMotionModeSharp.tsx +++ b/src/IconSettingsMotionModeSharp.tsx @@ -8,4 +8,4 @@ const IconSettingsMotionModeSharp: React.FC = ({ ...props }) => ( ) -export { IconSettingsMotionModeSharp as default } +export default IconSettingsMotionModeSharp diff --git a/src/IconSettingsMotionModeSharpFilled.tsx b/src/IconSettingsMotionModeSharpFilled.tsx index 70a93dc88..d0f382858 100644 --- a/src/IconSettingsMotionModeSharpFilled.tsx +++ b/src/IconSettingsMotionModeSharpFilled.tsx @@ -10,4 +10,4 @@ const IconSettingsMotionModeSharpFilled: React.FC = ({ ) -export { IconSettingsMotionModeSharpFilled as default } +export default IconSettingsMotionModeSharpFilled diff --git a/src/IconSettingsNightSightOutlined.tsx b/src/IconSettingsNightSightOutlined.tsx index d762dfdf7..179b4c6aa 100644 --- a/src/IconSettingsNightSightOutlined.tsx +++ b/src/IconSettingsNightSightOutlined.tsx @@ -8,4 +8,4 @@ const IconSettingsNightSightOutlined: React.FC = ({ ...props }) => ( ) -export { IconSettingsNightSightOutlined as default } +export default IconSettingsNightSightOutlined diff --git a/src/IconSettingsNightSightOutlinedFilled.tsx b/src/IconSettingsNightSightOutlinedFilled.tsx index d842133cb..571d7b648 100644 --- a/src/IconSettingsNightSightOutlinedFilled.tsx +++ b/src/IconSettingsNightSightOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconSettingsNightSightOutlinedFilled: React.FC = ({ ) -export { IconSettingsNightSightOutlinedFilled as default } +export default IconSettingsNightSightOutlinedFilled diff --git a/src/IconSettingsNightSightRounded.tsx b/src/IconSettingsNightSightRounded.tsx index 78a1564a2..f27c7f91d 100644 --- a/src/IconSettingsNightSightRounded.tsx +++ b/src/IconSettingsNightSightRounded.tsx @@ -8,4 +8,4 @@ const IconSettingsNightSightRounded: React.FC = ({ ...props }) => ( ) -export { IconSettingsNightSightRounded as default } +export default IconSettingsNightSightRounded diff --git a/src/IconSettingsNightSightRoundedFilled.tsx b/src/IconSettingsNightSightRoundedFilled.tsx index 523782af9..0aeb70c28 100644 --- a/src/IconSettingsNightSightRoundedFilled.tsx +++ b/src/IconSettingsNightSightRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconSettingsNightSightRoundedFilled: React.FC = ({ ) -export { IconSettingsNightSightRoundedFilled as default } +export default IconSettingsNightSightRoundedFilled diff --git a/src/IconSettingsNightSightSharp.tsx b/src/IconSettingsNightSightSharp.tsx index eecc05220..7d3c46b28 100644 --- a/src/IconSettingsNightSightSharp.tsx +++ b/src/IconSettingsNightSightSharp.tsx @@ -8,4 +8,4 @@ const IconSettingsNightSightSharp: React.FC = ({ ...props }) => ( ) -export { IconSettingsNightSightSharp as default } +export default IconSettingsNightSightSharp diff --git a/src/IconSettingsNightSightSharpFilled.tsx b/src/IconSettingsNightSightSharpFilled.tsx index 291bf4a7f..67170458a 100644 --- a/src/IconSettingsNightSightSharpFilled.tsx +++ b/src/IconSettingsNightSightSharpFilled.tsx @@ -10,4 +10,4 @@ const IconSettingsNightSightSharpFilled: React.FC = ({ ) -export { IconSettingsNightSightSharpFilled as default } +export default IconSettingsNightSightSharpFilled diff --git a/src/IconSettingsOutlined.tsx b/src/IconSettingsOutlined.tsx index 65cc1c2f6..910d102cb 100644 --- a/src/IconSettingsOutlined.tsx +++ b/src/IconSettingsOutlined.tsx @@ -8,4 +8,4 @@ const IconSettingsOutlined: React.FC = ({ ...props }) => ( ) -export { IconSettingsOutlined as default } +export default IconSettingsOutlined diff --git a/src/IconSettingsOutlinedFilled.tsx b/src/IconSettingsOutlinedFilled.tsx index 0186ab05f..de546dec0 100644 --- a/src/IconSettingsOutlinedFilled.tsx +++ b/src/IconSettingsOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconSettingsOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconSettingsOutlinedFilled as default } +export default IconSettingsOutlinedFilled diff --git a/src/IconSettingsOverscanOutlined.tsx b/src/IconSettingsOverscanOutlined.tsx index 11cc3f899..6bfd13dab 100644 --- a/src/IconSettingsOverscanOutlined.tsx +++ b/src/IconSettingsOverscanOutlined.tsx @@ -8,4 +8,4 @@ const IconSettingsOverscanOutlined: React.FC = ({ ...props }) => ( ) -export { IconSettingsOverscanOutlined as default } +export default IconSettingsOverscanOutlined diff --git a/src/IconSettingsOverscanOutlinedFilled.tsx b/src/IconSettingsOverscanOutlinedFilled.tsx index 1968daf36..16ad243ec 100644 --- a/src/IconSettingsOverscanOutlinedFilled.tsx +++ b/src/IconSettingsOverscanOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconSettingsOverscanOutlinedFilled: React.FC = ({ ) -export { IconSettingsOverscanOutlinedFilled as default } +export default IconSettingsOverscanOutlinedFilled diff --git a/src/IconSettingsOverscanRounded.tsx b/src/IconSettingsOverscanRounded.tsx index c523736f8..2a414c155 100644 --- a/src/IconSettingsOverscanRounded.tsx +++ b/src/IconSettingsOverscanRounded.tsx @@ -8,4 +8,4 @@ const IconSettingsOverscanRounded: React.FC = ({ ...props }) => ( ) -export { IconSettingsOverscanRounded as default } +export default IconSettingsOverscanRounded diff --git a/src/IconSettingsOverscanRoundedFilled.tsx b/src/IconSettingsOverscanRoundedFilled.tsx index 1dd7ebfdc..eccf0154a 100644 --- a/src/IconSettingsOverscanRoundedFilled.tsx +++ b/src/IconSettingsOverscanRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconSettingsOverscanRoundedFilled: React.FC = ({ ) -export { IconSettingsOverscanRoundedFilled as default } +export default IconSettingsOverscanRoundedFilled diff --git a/src/IconSettingsOverscanSharp.tsx b/src/IconSettingsOverscanSharp.tsx index 4c9ca59fd..f815972d7 100644 --- a/src/IconSettingsOverscanSharp.tsx +++ b/src/IconSettingsOverscanSharp.tsx @@ -8,4 +8,4 @@ const IconSettingsOverscanSharp: React.FC = ({ ...props }) => ( ) -export { IconSettingsOverscanSharp as default } +export default IconSettingsOverscanSharp diff --git a/src/IconSettingsOverscanSharpFilled.tsx b/src/IconSettingsOverscanSharpFilled.tsx index 61b704d34..596ce2911 100644 --- a/src/IconSettingsOverscanSharpFilled.tsx +++ b/src/IconSettingsOverscanSharpFilled.tsx @@ -8,4 +8,4 @@ const IconSettingsOverscanSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconSettingsOverscanSharpFilled as default } +export default IconSettingsOverscanSharpFilled diff --git a/src/IconSettingsPanoramaOutlined.tsx b/src/IconSettingsPanoramaOutlined.tsx index 98fc58571..dd2b4b38b 100644 --- a/src/IconSettingsPanoramaOutlined.tsx +++ b/src/IconSettingsPanoramaOutlined.tsx @@ -8,4 +8,4 @@ const IconSettingsPanoramaOutlined: React.FC = ({ ...props }) => ( ) -export { IconSettingsPanoramaOutlined as default } +export default IconSettingsPanoramaOutlined diff --git a/src/IconSettingsPanoramaOutlinedFilled.tsx b/src/IconSettingsPanoramaOutlinedFilled.tsx index 9692b00a3..b3e5d11e9 100644 --- a/src/IconSettingsPanoramaOutlinedFilled.tsx +++ b/src/IconSettingsPanoramaOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconSettingsPanoramaOutlinedFilled: React.FC = ({ ) -export { IconSettingsPanoramaOutlinedFilled as default } +export default IconSettingsPanoramaOutlinedFilled diff --git a/src/IconSettingsPanoramaRounded.tsx b/src/IconSettingsPanoramaRounded.tsx index 184786546..a99eb12f4 100644 --- a/src/IconSettingsPanoramaRounded.tsx +++ b/src/IconSettingsPanoramaRounded.tsx @@ -8,4 +8,4 @@ const IconSettingsPanoramaRounded: React.FC = ({ ...props }) => ( ) -export { IconSettingsPanoramaRounded as default } +export default IconSettingsPanoramaRounded diff --git a/src/IconSettingsPanoramaRoundedFilled.tsx b/src/IconSettingsPanoramaRoundedFilled.tsx index 05ed7509a..cc4358443 100644 --- a/src/IconSettingsPanoramaRoundedFilled.tsx +++ b/src/IconSettingsPanoramaRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconSettingsPanoramaRoundedFilled: React.FC = ({ ) -export { IconSettingsPanoramaRoundedFilled as default } +export default IconSettingsPanoramaRoundedFilled diff --git a/src/IconSettingsPanoramaSharp.tsx b/src/IconSettingsPanoramaSharp.tsx index 133180c98..af6a81f08 100644 --- a/src/IconSettingsPanoramaSharp.tsx +++ b/src/IconSettingsPanoramaSharp.tsx @@ -8,4 +8,4 @@ const IconSettingsPanoramaSharp: React.FC = ({ ...props }) => ( ) -export { IconSettingsPanoramaSharp as default } +export default IconSettingsPanoramaSharp diff --git a/src/IconSettingsPanoramaSharpFilled.tsx b/src/IconSettingsPanoramaSharpFilled.tsx index db9591864..bdc6f76cf 100644 --- a/src/IconSettingsPanoramaSharpFilled.tsx +++ b/src/IconSettingsPanoramaSharpFilled.tsx @@ -8,4 +8,4 @@ const IconSettingsPanoramaSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconSettingsPanoramaSharpFilled as default } +export default IconSettingsPanoramaSharpFilled diff --git a/src/IconSettingsPhoneOutlined.tsx b/src/IconSettingsPhoneOutlined.tsx index c42bca27b..8da18249d 100644 --- a/src/IconSettingsPhoneOutlined.tsx +++ b/src/IconSettingsPhoneOutlined.tsx @@ -8,4 +8,4 @@ const IconSettingsPhoneOutlined: React.FC = ({ ...props }) => ( ) -export { IconSettingsPhoneOutlined as default } +export default IconSettingsPhoneOutlined diff --git a/src/IconSettingsPhoneOutlinedFilled.tsx b/src/IconSettingsPhoneOutlinedFilled.tsx index b39b92822..35f4e2b13 100644 --- a/src/IconSettingsPhoneOutlinedFilled.tsx +++ b/src/IconSettingsPhoneOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconSettingsPhoneOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconSettingsPhoneOutlinedFilled as default } +export default IconSettingsPhoneOutlinedFilled diff --git a/src/IconSettingsPhoneRounded.tsx b/src/IconSettingsPhoneRounded.tsx index 46eb5d44d..e66fae3a1 100644 --- a/src/IconSettingsPhoneRounded.tsx +++ b/src/IconSettingsPhoneRounded.tsx @@ -8,4 +8,4 @@ const IconSettingsPhoneRounded: React.FC = ({ ...props }) => ( ) -export { IconSettingsPhoneRounded as default } +export default IconSettingsPhoneRounded diff --git a/src/IconSettingsPhoneRoundedFilled.tsx b/src/IconSettingsPhoneRoundedFilled.tsx index ba8cf4249..7de58eb83 100644 --- a/src/IconSettingsPhoneRoundedFilled.tsx +++ b/src/IconSettingsPhoneRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconSettingsPhoneRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconSettingsPhoneRoundedFilled as default } +export default IconSettingsPhoneRoundedFilled diff --git a/src/IconSettingsPhoneSharp.tsx b/src/IconSettingsPhoneSharp.tsx index 51324c59b..12d2159f5 100644 --- a/src/IconSettingsPhoneSharp.tsx +++ b/src/IconSettingsPhoneSharp.tsx @@ -8,4 +8,4 @@ const IconSettingsPhoneSharp: React.FC = ({ ...props }) => ( ) -export { IconSettingsPhoneSharp as default } +export default IconSettingsPhoneSharp diff --git a/src/IconSettingsPhoneSharpFilled.tsx b/src/IconSettingsPhoneSharpFilled.tsx index 80f98bfc8..c4481ac3b 100644 --- a/src/IconSettingsPhoneSharpFilled.tsx +++ b/src/IconSettingsPhoneSharpFilled.tsx @@ -8,4 +8,4 @@ const IconSettingsPhoneSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconSettingsPhoneSharpFilled as default } +export default IconSettingsPhoneSharpFilled diff --git a/src/IconSettingsPhotoCameraOutlined.tsx b/src/IconSettingsPhotoCameraOutlined.tsx index dcf23575d..b170ddb51 100644 --- a/src/IconSettingsPhotoCameraOutlined.tsx +++ b/src/IconSettingsPhotoCameraOutlined.tsx @@ -8,4 +8,4 @@ const IconSettingsPhotoCameraOutlined: React.FC = ({ ...props }) => ( ) -export { IconSettingsPhotoCameraOutlined as default } +export default IconSettingsPhotoCameraOutlined diff --git a/src/IconSettingsPhotoCameraOutlinedFilled.tsx b/src/IconSettingsPhotoCameraOutlinedFilled.tsx index 9ad7fc322..09920af08 100644 --- a/src/IconSettingsPhotoCameraOutlinedFilled.tsx +++ b/src/IconSettingsPhotoCameraOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconSettingsPhotoCameraOutlinedFilled: React.FC = ({ ) -export { IconSettingsPhotoCameraOutlinedFilled as default } +export default IconSettingsPhotoCameraOutlinedFilled diff --git a/src/IconSettingsPhotoCameraRounded.tsx b/src/IconSettingsPhotoCameraRounded.tsx index 016cab942..72427caa5 100644 --- a/src/IconSettingsPhotoCameraRounded.tsx +++ b/src/IconSettingsPhotoCameraRounded.tsx @@ -8,4 +8,4 @@ const IconSettingsPhotoCameraRounded: React.FC = ({ ...props }) => ( ) -export { IconSettingsPhotoCameraRounded as default } +export default IconSettingsPhotoCameraRounded diff --git a/src/IconSettingsPhotoCameraRoundedFilled.tsx b/src/IconSettingsPhotoCameraRoundedFilled.tsx index 74dd5ef84..230fc4673 100644 --- a/src/IconSettingsPhotoCameraRoundedFilled.tsx +++ b/src/IconSettingsPhotoCameraRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconSettingsPhotoCameraRoundedFilled: React.FC = ({ ) -export { IconSettingsPhotoCameraRoundedFilled as default } +export default IconSettingsPhotoCameraRoundedFilled diff --git a/src/IconSettingsPhotoCameraSharp.tsx b/src/IconSettingsPhotoCameraSharp.tsx index 3c919146f..693b650b4 100644 --- a/src/IconSettingsPhotoCameraSharp.tsx +++ b/src/IconSettingsPhotoCameraSharp.tsx @@ -8,4 +8,4 @@ const IconSettingsPhotoCameraSharp: React.FC = ({ ...props }) => ( ) -export { IconSettingsPhotoCameraSharp as default } +export default IconSettingsPhotoCameraSharp diff --git a/src/IconSettingsPhotoCameraSharpFilled.tsx b/src/IconSettingsPhotoCameraSharpFilled.tsx index c3ad64208..8a1ab65d7 100644 --- a/src/IconSettingsPhotoCameraSharpFilled.tsx +++ b/src/IconSettingsPhotoCameraSharpFilled.tsx @@ -10,4 +10,4 @@ const IconSettingsPhotoCameraSharpFilled: React.FC = ({ ) -export { IconSettingsPhotoCameraSharpFilled as default } +export default IconSettingsPhotoCameraSharpFilled diff --git a/src/IconSettingsPowerOutlined.tsx b/src/IconSettingsPowerOutlined.tsx index 7e3d6c82e..e4d6719f4 100644 --- a/src/IconSettingsPowerOutlined.tsx +++ b/src/IconSettingsPowerOutlined.tsx @@ -8,4 +8,4 @@ const IconSettingsPowerOutlined: React.FC = ({ ...props }) => ( ) -export { IconSettingsPowerOutlined as default } +export default IconSettingsPowerOutlined diff --git a/src/IconSettingsPowerOutlinedFilled.tsx b/src/IconSettingsPowerOutlinedFilled.tsx index fd4c1f031..290a91842 100644 --- a/src/IconSettingsPowerOutlinedFilled.tsx +++ b/src/IconSettingsPowerOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconSettingsPowerOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconSettingsPowerOutlinedFilled as default } +export default IconSettingsPowerOutlinedFilled diff --git a/src/IconSettingsPowerRounded.tsx b/src/IconSettingsPowerRounded.tsx index 49da8e59c..7a65daac5 100644 --- a/src/IconSettingsPowerRounded.tsx +++ b/src/IconSettingsPowerRounded.tsx @@ -8,4 +8,4 @@ const IconSettingsPowerRounded: React.FC = ({ ...props }) => ( ) -export { IconSettingsPowerRounded as default } +export default IconSettingsPowerRounded diff --git a/src/IconSettingsPowerRoundedFilled.tsx b/src/IconSettingsPowerRoundedFilled.tsx index efa9a6e42..1e5aad361 100644 --- a/src/IconSettingsPowerRoundedFilled.tsx +++ b/src/IconSettingsPowerRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconSettingsPowerRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconSettingsPowerRoundedFilled as default } +export default IconSettingsPowerRoundedFilled diff --git a/src/IconSettingsPowerSharp.tsx b/src/IconSettingsPowerSharp.tsx index 762f4f5ea..a2003e8ed 100644 --- a/src/IconSettingsPowerSharp.tsx +++ b/src/IconSettingsPowerSharp.tsx @@ -8,4 +8,4 @@ const IconSettingsPowerSharp: React.FC = ({ ...props }) => ( ) -export { IconSettingsPowerSharp as default } +export default IconSettingsPowerSharp diff --git a/src/IconSettingsPowerSharpFilled.tsx b/src/IconSettingsPowerSharpFilled.tsx index 2aae74fc9..a4bb667c5 100644 --- a/src/IconSettingsPowerSharpFilled.tsx +++ b/src/IconSettingsPowerSharpFilled.tsx @@ -8,4 +8,4 @@ const IconSettingsPowerSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconSettingsPowerSharpFilled as default } +export default IconSettingsPowerSharpFilled diff --git a/src/IconSettingsRemoteOutlined.tsx b/src/IconSettingsRemoteOutlined.tsx index 2cf2d77f7..3c3ce1b3d 100644 --- a/src/IconSettingsRemoteOutlined.tsx +++ b/src/IconSettingsRemoteOutlined.tsx @@ -8,4 +8,4 @@ const IconSettingsRemoteOutlined: React.FC = ({ ...props }) => ( ) -export { IconSettingsRemoteOutlined as default } +export default IconSettingsRemoteOutlined diff --git a/src/IconSettingsRemoteOutlinedFilled.tsx b/src/IconSettingsRemoteOutlinedFilled.tsx index 3c745f112..65d9f24b4 100644 --- a/src/IconSettingsRemoteOutlinedFilled.tsx +++ b/src/IconSettingsRemoteOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconSettingsRemoteOutlinedFilled: React.FC = ({ ) -export { IconSettingsRemoteOutlinedFilled as default } +export default IconSettingsRemoteOutlinedFilled diff --git a/src/IconSettingsRemoteRounded.tsx b/src/IconSettingsRemoteRounded.tsx index 244390b30..93641bc69 100644 --- a/src/IconSettingsRemoteRounded.tsx +++ b/src/IconSettingsRemoteRounded.tsx @@ -8,4 +8,4 @@ const IconSettingsRemoteRounded: React.FC = ({ ...props }) => ( ) -export { IconSettingsRemoteRounded as default } +export default IconSettingsRemoteRounded diff --git a/src/IconSettingsRemoteRoundedFilled.tsx b/src/IconSettingsRemoteRoundedFilled.tsx index e72fb86d3..a80d495da 100644 --- a/src/IconSettingsRemoteRoundedFilled.tsx +++ b/src/IconSettingsRemoteRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconSettingsRemoteRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconSettingsRemoteRoundedFilled as default } +export default IconSettingsRemoteRoundedFilled diff --git a/src/IconSettingsRemoteSharp.tsx b/src/IconSettingsRemoteSharp.tsx index 3ef842305..d2bd2fe5f 100644 --- a/src/IconSettingsRemoteSharp.tsx +++ b/src/IconSettingsRemoteSharp.tsx @@ -8,4 +8,4 @@ const IconSettingsRemoteSharp: React.FC = ({ ...props }) => ( ) -export { IconSettingsRemoteSharp as default } +export default IconSettingsRemoteSharp diff --git a/src/IconSettingsRemoteSharpFilled.tsx b/src/IconSettingsRemoteSharpFilled.tsx index 8faef1c44..6f701420e 100644 --- a/src/IconSettingsRemoteSharpFilled.tsx +++ b/src/IconSettingsRemoteSharpFilled.tsx @@ -8,4 +8,4 @@ const IconSettingsRemoteSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconSettingsRemoteSharpFilled as default } +export default IconSettingsRemoteSharpFilled diff --git a/src/IconSettingsRounded.tsx b/src/IconSettingsRounded.tsx index d4d96811f..5beb57675 100644 --- a/src/IconSettingsRounded.tsx +++ b/src/IconSettingsRounded.tsx @@ -8,4 +8,4 @@ const IconSettingsRounded: React.FC = ({ ...props }) => ( ) -export { IconSettingsRounded as default } +export default IconSettingsRounded diff --git a/src/IconSettingsRoundedFilled.tsx b/src/IconSettingsRoundedFilled.tsx index f582b5293..ca926f3f0 100644 --- a/src/IconSettingsRoundedFilled.tsx +++ b/src/IconSettingsRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconSettingsRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconSettingsRoundedFilled as default } +export default IconSettingsRoundedFilled diff --git a/src/IconSettingsSharp.tsx b/src/IconSettingsSharp.tsx index 8a53ba31b..c11c4b75a 100644 --- a/src/IconSettingsSharp.tsx +++ b/src/IconSettingsSharp.tsx @@ -8,4 +8,4 @@ const IconSettingsSharp: React.FC = ({ ...props }) => ( ) -export { IconSettingsSharp as default } +export default IconSettingsSharp diff --git a/src/IconSettingsSharpFilled.tsx b/src/IconSettingsSharpFilled.tsx index e4ec0daaf..ade00f092 100644 --- a/src/IconSettingsSharpFilled.tsx +++ b/src/IconSettingsSharpFilled.tsx @@ -8,4 +8,4 @@ const IconSettingsSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconSettingsSharpFilled as default } +export default IconSettingsSharpFilled diff --git a/src/IconSettingsSlowMotionOutlined.tsx b/src/IconSettingsSlowMotionOutlined.tsx index ae881c636..6ff839b28 100644 --- a/src/IconSettingsSlowMotionOutlined.tsx +++ b/src/IconSettingsSlowMotionOutlined.tsx @@ -8,4 +8,4 @@ const IconSettingsSlowMotionOutlined: React.FC = ({ ...props }) => ( ) -export { IconSettingsSlowMotionOutlined as default } +export default IconSettingsSlowMotionOutlined diff --git a/src/IconSettingsSlowMotionOutlinedFilled.tsx b/src/IconSettingsSlowMotionOutlinedFilled.tsx index 11fbad5aa..92b805d54 100644 --- a/src/IconSettingsSlowMotionOutlinedFilled.tsx +++ b/src/IconSettingsSlowMotionOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconSettingsSlowMotionOutlinedFilled: React.FC = ({ ) -export { IconSettingsSlowMotionOutlinedFilled as default } +export default IconSettingsSlowMotionOutlinedFilled diff --git a/src/IconSettingsSlowMotionRounded.tsx b/src/IconSettingsSlowMotionRounded.tsx index 3ddae0e7e..fc7b85ba1 100644 --- a/src/IconSettingsSlowMotionRounded.tsx +++ b/src/IconSettingsSlowMotionRounded.tsx @@ -8,4 +8,4 @@ const IconSettingsSlowMotionRounded: React.FC = ({ ...props }) => ( ) -export { IconSettingsSlowMotionRounded as default } +export default IconSettingsSlowMotionRounded diff --git a/src/IconSettingsSlowMotionRoundedFilled.tsx b/src/IconSettingsSlowMotionRoundedFilled.tsx index d3878eaec..f08e0035a 100644 --- a/src/IconSettingsSlowMotionRoundedFilled.tsx +++ b/src/IconSettingsSlowMotionRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconSettingsSlowMotionRoundedFilled: React.FC = ({ ) -export { IconSettingsSlowMotionRoundedFilled as default } +export default IconSettingsSlowMotionRoundedFilled diff --git a/src/IconSettingsSlowMotionSharp.tsx b/src/IconSettingsSlowMotionSharp.tsx index 1368b2bd7..7b4be7dd5 100644 --- a/src/IconSettingsSlowMotionSharp.tsx +++ b/src/IconSettingsSlowMotionSharp.tsx @@ -8,4 +8,4 @@ const IconSettingsSlowMotionSharp: React.FC = ({ ...props }) => ( ) -export { IconSettingsSlowMotionSharp as default } +export default IconSettingsSlowMotionSharp diff --git a/src/IconSettingsSlowMotionSharpFilled.tsx b/src/IconSettingsSlowMotionSharpFilled.tsx index 36a3061f5..ceb84a73d 100644 --- a/src/IconSettingsSlowMotionSharpFilled.tsx +++ b/src/IconSettingsSlowMotionSharpFilled.tsx @@ -10,4 +10,4 @@ const IconSettingsSlowMotionSharpFilled: React.FC = ({ ) -export { IconSettingsSlowMotionSharpFilled as default } +export default IconSettingsSlowMotionSharpFilled diff --git a/src/IconSettingsSystemDaydreamOutlined.tsx b/src/IconSettingsSystemDaydreamOutlined.tsx index 3e1d8e463..2f1ec2eab 100644 --- a/src/IconSettingsSystemDaydreamOutlined.tsx +++ b/src/IconSettingsSystemDaydreamOutlined.tsx @@ -10,4 +10,4 @@ const IconSettingsSystemDaydreamOutlined: React.FC = ({ ) -export { IconSettingsSystemDaydreamOutlined as default } +export default IconSettingsSystemDaydreamOutlined diff --git a/src/IconSettingsSystemDaydreamOutlinedFilled.tsx b/src/IconSettingsSystemDaydreamOutlinedFilled.tsx index dc3caca35..4854142a0 100644 --- a/src/IconSettingsSystemDaydreamOutlinedFilled.tsx +++ b/src/IconSettingsSystemDaydreamOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconSettingsSystemDaydreamOutlinedFilled: React.FC = ({ ) -export { IconSettingsSystemDaydreamOutlinedFilled as default } +export default IconSettingsSystemDaydreamOutlinedFilled diff --git a/src/IconSettingsSystemDaydreamRounded.tsx b/src/IconSettingsSystemDaydreamRounded.tsx index 6528325c2..a994ee42e 100644 --- a/src/IconSettingsSystemDaydreamRounded.tsx +++ b/src/IconSettingsSystemDaydreamRounded.tsx @@ -10,4 +10,4 @@ const IconSettingsSystemDaydreamRounded: React.FC = ({ ) -export { IconSettingsSystemDaydreamRounded as default } +export default IconSettingsSystemDaydreamRounded diff --git a/src/IconSettingsSystemDaydreamRoundedFilled.tsx b/src/IconSettingsSystemDaydreamRoundedFilled.tsx index 1fb9311ef..e9d954e20 100644 --- a/src/IconSettingsSystemDaydreamRoundedFilled.tsx +++ b/src/IconSettingsSystemDaydreamRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconSettingsSystemDaydreamRoundedFilled: React.FC = ({ ) -export { IconSettingsSystemDaydreamRoundedFilled as default } +export default IconSettingsSystemDaydreamRoundedFilled diff --git a/src/IconSettingsSystemDaydreamSharp.tsx b/src/IconSettingsSystemDaydreamSharp.tsx index 2ccc5d4e1..870a617c7 100644 --- a/src/IconSettingsSystemDaydreamSharp.tsx +++ b/src/IconSettingsSystemDaydreamSharp.tsx @@ -8,4 +8,4 @@ const IconSettingsSystemDaydreamSharp: React.FC = ({ ...props }) => ( ) -export { IconSettingsSystemDaydreamSharp as default } +export default IconSettingsSystemDaydreamSharp diff --git a/src/IconSettingsSystemDaydreamSharpFilled.tsx b/src/IconSettingsSystemDaydreamSharpFilled.tsx index 9f0f00fe6..956d353d5 100644 --- a/src/IconSettingsSystemDaydreamSharpFilled.tsx +++ b/src/IconSettingsSystemDaydreamSharpFilled.tsx @@ -10,4 +10,4 @@ const IconSettingsSystemDaydreamSharpFilled: React.FC = ({ ) -export { IconSettingsSystemDaydreamSharpFilled as default } +export default IconSettingsSystemDaydreamSharpFilled diff --git a/src/IconSettingsTimelapseOutlined.tsx b/src/IconSettingsTimelapseOutlined.tsx index 72349ee98..6cd1c18db 100644 --- a/src/IconSettingsTimelapseOutlined.tsx +++ b/src/IconSettingsTimelapseOutlined.tsx @@ -8,4 +8,4 @@ const IconSettingsTimelapseOutlined: React.FC = ({ ...props }) => ( ) -export { IconSettingsTimelapseOutlined as default } +export default IconSettingsTimelapseOutlined diff --git a/src/IconSettingsTimelapseOutlinedFilled.tsx b/src/IconSettingsTimelapseOutlinedFilled.tsx index e46d519e7..ed5a26875 100644 --- a/src/IconSettingsTimelapseOutlinedFilled.tsx +++ b/src/IconSettingsTimelapseOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconSettingsTimelapseOutlinedFilled: React.FC = ({ ) -export { IconSettingsTimelapseOutlinedFilled as default } +export default IconSettingsTimelapseOutlinedFilled diff --git a/src/IconSettingsTimelapseRounded.tsx b/src/IconSettingsTimelapseRounded.tsx index ae925cfbd..bbaa6130b 100644 --- a/src/IconSettingsTimelapseRounded.tsx +++ b/src/IconSettingsTimelapseRounded.tsx @@ -8,4 +8,4 @@ const IconSettingsTimelapseRounded: React.FC = ({ ...props }) => ( ) -export { IconSettingsTimelapseRounded as default } +export default IconSettingsTimelapseRounded diff --git a/src/IconSettingsTimelapseRoundedFilled.tsx b/src/IconSettingsTimelapseRoundedFilled.tsx index 84eec7cc6..563c7ab3b 100644 --- a/src/IconSettingsTimelapseRoundedFilled.tsx +++ b/src/IconSettingsTimelapseRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconSettingsTimelapseRoundedFilled: React.FC = ({ ) -export { IconSettingsTimelapseRoundedFilled as default } +export default IconSettingsTimelapseRoundedFilled diff --git a/src/IconSettingsTimelapseSharp.tsx b/src/IconSettingsTimelapseSharp.tsx index 188a1b76a..da459ef50 100644 --- a/src/IconSettingsTimelapseSharp.tsx +++ b/src/IconSettingsTimelapseSharp.tsx @@ -8,4 +8,4 @@ const IconSettingsTimelapseSharp: React.FC = ({ ...props }) => ( ) -export { IconSettingsTimelapseSharp as default } +export default IconSettingsTimelapseSharp diff --git a/src/IconSettingsTimelapseSharpFilled.tsx b/src/IconSettingsTimelapseSharpFilled.tsx index f99bab870..7e72633f3 100644 --- a/src/IconSettingsTimelapseSharpFilled.tsx +++ b/src/IconSettingsTimelapseSharpFilled.tsx @@ -10,4 +10,4 @@ const IconSettingsTimelapseSharpFilled: React.FC = ({ ) -export { IconSettingsTimelapseSharpFilled as default } +export default IconSettingsTimelapseSharpFilled diff --git a/src/IconSettingsVideoCameraOutlined.tsx b/src/IconSettingsVideoCameraOutlined.tsx index 833a160dc..cd84bcf9b 100644 --- a/src/IconSettingsVideoCameraOutlined.tsx +++ b/src/IconSettingsVideoCameraOutlined.tsx @@ -8,4 +8,4 @@ const IconSettingsVideoCameraOutlined: React.FC = ({ ...props }) => ( ) -export { IconSettingsVideoCameraOutlined as default } +export default IconSettingsVideoCameraOutlined diff --git a/src/IconSettingsVideoCameraOutlinedFilled.tsx b/src/IconSettingsVideoCameraOutlinedFilled.tsx index c564f8048..c24017875 100644 --- a/src/IconSettingsVideoCameraOutlinedFilled.tsx +++ b/src/IconSettingsVideoCameraOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconSettingsVideoCameraOutlinedFilled: React.FC = ({ ) -export { IconSettingsVideoCameraOutlinedFilled as default } +export default IconSettingsVideoCameraOutlinedFilled diff --git a/src/IconSettingsVideoCameraRounded.tsx b/src/IconSettingsVideoCameraRounded.tsx index 462cb6abc..3f0314195 100644 --- a/src/IconSettingsVideoCameraRounded.tsx +++ b/src/IconSettingsVideoCameraRounded.tsx @@ -8,4 +8,4 @@ const IconSettingsVideoCameraRounded: React.FC = ({ ...props }) => ( ) -export { IconSettingsVideoCameraRounded as default } +export default IconSettingsVideoCameraRounded diff --git a/src/IconSettingsVideoCameraRoundedFilled.tsx b/src/IconSettingsVideoCameraRoundedFilled.tsx index 5bae946f7..ce963ee67 100644 --- a/src/IconSettingsVideoCameraRoundedFilled.tsx +++ b/src/IconSettingsVideoCameraRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconSettingsVideoCameraRoundedFilled: React.FC = ({ ) -export { IconSettingsVideoCameraRoundedFilled as default } +export default IconSettingsVideoCameraRoundedFilled diff --git a/src/IconSettingsVideoCameraSharp.tsx b/src/IconSettingsVideoCameraSharp.tsx index d0fba9762..f7b09c0de 100644 --- a/src/IconSettingsVideoCameraSharp.tsx +++ b/src/IconSettingsVideoCameraSharp.tsx @@ -8,4 +8,4 @@ const IconSettingsVideoCameraSharp: React.FC = ({ ...props }) => ( ) -export { IconSettingsVideoCameraSharp as default } +export default IconSettingsVideoCameraSharp diff --git a/src/IconSettingsVideoCameraSharpFilled.tsx b/src/IconSettingsVideoCameraSharpFilled.tsx index f16700671..09db838d9 100644 --- a/src/IconSettingsVideoCameraSharpFilled.tsx +++ b/src/IconSettingsVideoCameraSharpFilled.tsx @@ -10,4 +10,4 @@ const IconSettingsVideoCameraSharpFilled: React.FC = ({ ) -export { IconSettingsVideoCameraSharpFilled as default } +export default IconSettingsVideoCameraSharpFilled diff --git a/src/IconSettingsVoiceOutlined.tsx b/src/IconSettingsVoiceOutlined.tsx index 885937b34..484f70c0e 100644 --- a/src/IconSettingsVoiceOutlined.tsx +++ b/src/IconSettingsVoiceOutlined.tsx @@ -8,4 +8,4 @@ const IconSettingsVoiceOutlined: React.FC = ({ ...props }) => ( ) -export { IconSettingsVoiceOutlined as default } +export default IconSettingsVoiceOutlined diff --git a/src/IconSettingsVoiceOutlinedFilled.tsx b/src/IconSettingsVoiceOutlinedFilled.tsx index 84cee7d60..d99844cc7 100644 --- a/src/IconSettingsVoiceOutlinedFilled.tsx +++ b/src/IconSettingsVoiceOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconSettingsVoiceOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconSettingsVoiceOutlinedFilled as default } +export default IconSettingsVoiceOutlinedFilled diff --git a/src/IconSettingsVoiceRounded.tsx b/src/IconSettingsVoiceRounded.tsx index cd4db28ea..48cc82e30 100644 --- a/src/IconSettingsVoiceRounded.tsx +++ b/src/IconSettingsVoiceRounded.tsx @@ -8,4 +8,4 @@ const IconSettingsVoiceRounded: React.FC = ({ ...props }) => ( ) -export { IconSettingsVoiceRounded as default } +export default IconSettingsVoiceRounded diff --git a/src/IconSettingsVoiceRoundedFilled.tsx b/src/IconSettingsVoiceRoundedFilled.tsx index cb4beae9a..683a68ac0 100644 --- a/src/IconSettingsVoiceRoundedFilled.tsx +++ b/src/IconSettingsVoiceRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconSettingsVoiceRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconSettingsVoiceRoundedFilled as default } +export default IconSettingsVoiceRoundedFilled diff --git a/src/IconSettingsVoiceSharp.tsx b/src/IconSettingsVoiceSharp.tsx index 90a57cfee..77b6f5d4c 100644 --- a/src/IconSettingsVoiceSharp.tsx +++ b/src/IconSettingsVoiceSharp.tsx @@ -8,4 +8,4 @@ const IconSettingsVoiceSharp: React.FC = ({ ...props }) => ( ) -export { IconSettingsVoiceSharp as default } +export default IconSettingsVoiceSharp diff --git a/src/IconSettingsVoiceSharpFilled.tsx b/src/IconSettingsVoiceSharpFilled.tsx index 42c11b69e..cd4ab30b4 100644 --- a/src/IconSettingsVoiceSharpFilled.tsx +++ b/src/IconSettingsVoiceSharpFilled.tsx @@ -8,4 +8,4 @@ const IconSettingsVoiceSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconSettingsVoiceSharpFilled as default } +export default IconSettingsVoiceSharpFilled diff --git a/src/IconSettopComponentOutlined.tsx b/src/IconSettopComponentOutlined.tsx index f2ebb8a14..c01cebb30 100644 --- a/src/IconSettopComponentOutlined.tsx +++ b/src/IconSettopComponentOutlined.tsx @@ -8,4 +8,4 @@ const IconSettopComponentOutlined: React.FC = ({ ...props }) => ( ) -export { IconSettopComponentOutlined as default } +export default IconSettopComponentOutlined diff --git a/src/IconSettopComponentOutlinedFilled.tsx b/src/IconSettopComponentOutlinedFilled.tsx index 5ee2d2caf..fdda94518 100644 --- a/src/IconSettopComponentOutlinedFilled.tsx +++ b/src/IconSettopComponentOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconSettopComponentOutlinedFilled: React.FC = ({ ) -export { IconSettopComponentOutlinedFilled as default } +export default IconSettopComponentOutlinedFilled diff --git a/src/IconSettopComponentRounded.tsx b/src/IconSettopComponentRounded.tsx index 56cccddf7..ff505edfd 100644 --- a/src/IconSettopComponentRounded.tsx +++ b/src/IconSettopComponentRounded.tsx @@ -8,4 +8,4 @@ const IconSettopComponentRounded: React.FC = ({ ...props }) => ( ) -export { IconSettopComponentRounded as default } +export default IconSettopComponentRounded diff --git a/src/IconSettopComponentRoundedFilled.tsx b/src/IconSettopComponentRoundedFilled.tsx index e317c155d..b71f85e2a 100644 --- a/src/IconSettopComponentRoundedFilled.tsx +++ b/src/IconSettopComponentRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconSettopComponentRoundedFilled: React.FC = ({ ) -export { IconSettopComponentRoundedFilled as default } +export default IconSettopComponentRoundedFilled diff --git a/src/IconSettopComponentSharp.tsx b/src/IconSettopComponentSharp.tsx index cbb5d02ac..791f04536 100644 --- a/src/IconSettopComponentSharp.tsx +++ b/src/IconSettopComponentSharp.tsx @@ -8,4 +8,4 @@ const IconSettopComponentSharp: React.FC = ({ ...props }) => ( ) -export { IconSettopComponentSharp as default } +export default IconSettopComponentSharp diff --git a/src/IconSettopComponentSharpFilled.tsx b/src/IconSettopComponentSharpFilled.tsx index 2986f6991..af1d10c0a 100644 --- a/src/IconSettopComponentSharpFilled.tsx +++ b/src/IconSettopComponentSharpFilled.tsx @@ -8,4 +8,4 @@ const IconSettopComponentSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconSettopComponentSharpFilled as default } +export default IconSettopComponentSharpFilled diff --git a/src/IconSevereColdOutlined.tsx b/src/IconSevereColdOutlined.tsx index f72386d99..40b4fe4d7 100644 --- a/src/IconSevereColdOutlined.tsx +++ b/src/IconSevereColdOutlined.tsx @@ -8,4 +8,4 @@ const IconSevereColdOutlined: React.FC = ({ ...props }) => ( ) -export { IconSevereColdOutlined as default } +export default IconSevereColdOutlined diff --git a/src/IconSevereColdOutlinedFilled.tsx b/src/IconSevereColdOutlinedFilled.tsx index 85244d17d..4c673d7f4 100644 --- a/src/IconSevereColdOutlinedFilled.tsx +++ b/src/IconSevereColdOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconSevereColdOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconSevereColdOutlinedFilled as default } +export default IconSevereColdOutlinedFilled diff --git a/src/IconSevereColdRounded.tsx b/src/IconSevereColdRounded.tsx index b205e9777..af16ee5c8 100644 --- a/src/IconSevereColdRounded.tsx +++ b/src/IconSevereColdRounded.tsx @@ -8,4 +8,4 @@ const IconSevereColdRounded: React.FC = ({ ...props }) => ( ) -export { IconSevereColdRounded as default } +export default IconSevereColdRounded diff --git a/src/IconSevereColdRoundedFilled.tsx b/src/IconSevereColdRoundedFilled.tsx index 4b2f4914c..d684a535a 100644 --- a/src/IconSevereColdRoundedFilled.tsx +++ b/src/IconSevereColdRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconSevereColdRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconSevereColdRoundedFilled as default } +export default IconSevereColdRoundedFilled diff --git a/src/IconSevereColdSharp.tsx b/src/IconSevereColdSharp.tsx index e76436590..017c3e8ea 100644 --- a/src/IconSevereColdSharp.tsx +++ b/src/IconSevereColdSharp.tsx @@ -8,4 +8,4 @@ const IconSevereColdSharp: React.FC = ({ ...props }) => ( ) -export { IconSevereColdSharp as default } +export default IconSevereColdSharp diff --git a/src/IconSevereColdSharpFilled.tsx b/src/IconSevereColdSharpFilled.tsx index 46ec50b7f..f4dddbe3d 100644 --- a/src/IconSevereColdSharpFilled.tsx +++ b/src/IconSevereColdSharpFilled.tsx @@ -8,4 +8,4 @@ const IconSevereColdSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconSevereColdSharpFilled as default } +export default IconSevereColdSharpFilled diff --git a/src/IconShadowAddOutlined.tsx b/src/IconShadowAddOutlined.tsx index ab6ea75aa..72bc17958 100644 --- a/src/IconShadowAddOutlined.tsx +++ b/src/IconShadowAddOutlined.tsx @@ -8,4 +8,4 @@ const IconShadowAddOutlined: React.FC = ({ ...props }) => ( ) -export { IconShadowAddOutlined as default } +export default IconShadowAddOutlined diff --git a/src/IconShadowAddOutlinedFilled.tsx b/src/IconShadowAddOutlinedFilled.tsx index 868dfe271..9ce2e6c65 100644 --- a/src/IconShadowAddOutlinedFilled.tsx +++ b/src/IconShadowAddOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconShadowAddOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconShadowAddOutlinedFilled as default } +export default IconShadowAddOutlinedFilled diff --git a/src/IconShadowAddRounded.tsx b/src/IconShadowAddRounded.tsx index 245df842d..6f95b6bc8 100644 --- a/src/IconShadowAddRounded.tsx +++ b/src/IconShadowAddRounded.tsx @@ -8,4 +8,4 @@ const IconShadowAddRounded: React.FC = ({ ...props }) => ( ) -export { IconShadowAddRounded as default } +export default IconShadowAddRounded diff --git a/src/IconShadowAddRoundedFilled.tsx b/src/IconShadowAddRoundedFilled.tsx index 676a40aab..50d649260 100644 --- a/src/IconShadowAddRoundedFilled.tsx +++ b/src/IconShadowAddRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconShadowAddRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconShadowAddRoundedFilled as default } +export default IconShadowAddRoundedFilled diff --git a/src/IconShadowAddSharp.tsx b/src/IconShadowAddSharp.tsx index c64277983..a70843b01 100644 --- a/src/IconShadowAddSharp.tsx +++ b/src/IconShadowAddSharp.tsx @@ -8,4 +8,4 @@ const IconShadowAddSharp: React.FC = ({ ...props }) => ( ) -export { IconShadowAddSharp as default } +export default IconShadowAddSharp diff --git a/src/IconShadowAddSharpFilled.tsx b/src/IconShadowAddSharpFilled.tsx index c5ffab9f1..44367d93e 100644 --- a/src/IconShadowAddSharpFilled.tsx +++ b/src/IconShadowAddSharpFilled.tsx @@ -8,4 +8,4 @@ const IconShadowAddSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconShadowAddSharpFilled as default } +export default IconShadowAddSharpFilled diff --git a/src/IconShadowMinusOutlined.tsx b/src/IconShadowMinusOutlined.tsx index 764c95755..0ae5d8d8a 100644 --- a/src/IconShadowMinusOutlined.tsx +++ b/src/IconShadowMinusOutlined.tsx @@ -8,4 +8,4 @@ const IconShadowMinusOutlined: React.FC = ({ ...props }) => ( ) -export { IconShadowMinusOutlined as default } +export default IconShadowMinusOutlined diff --git a/src/IconShadowMinusOutlinedFilled.tsx b/src/IconShadowMinusOutlinedFilled.tsx index 42774bd8c..09a876704 100644 --- a/src/IconShadowMinusOutlinedFilled.tsx +++ b/src/IconShadowMinusOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconShadowMinusOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconShadowMinusOutlinedFilled as default } +export default IconShadowMinusOutlinedFilled diff --git a/src/IconShadowMinusRounded.tsx b/src/IconShadowMinusRounded.tsx index 00b77209b..4bf508fe9 100644 --- a/src/IconShadowMinusRounded.tsx +++ b/src/IconShadowMinusRounded.tsx @@ -8,4 +8,4 @@ const IconShadowMinusRounded: React.FC = ({ ...props }) => ( ) -export { IconShadowMinusRounded as default } +export default IconShadowMinusRounded diff --git a/src/IconShadowMinusRoundedFilled.tsx b/src/IconShadowMinusRoundedFilled.tsx index 93e1f1689..9d4c72678 100644 --- a/src/IconShadowMinusRoundedFilled.tsx +++ b/src/IconShadowMinusRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconShadowMinusRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconShadowMinusRoundedFilled as default } +export default IconShadowMinusRoundedFilled diff --git a/src/IconShadowMinusSharp.tsx b/src/IconShadowMinusSharp.tsx index 77f450ce8..3b3e5b355 100644 --- a/src/IconShadowMinusSharp.tsx +++ b/src/IconShadowMinusSharp.tsx @@ -8,4 +8,4 @@ const IconShadowMinusSharp: React.FC = ({ ...props }) => ( ) -export { IconShadowMinusSharp as default } +export default IconShadowMinusSharp diff --git a/src/IconShadowMinusSharpFilled.tsx b/src/IconShadowMinusSharpFilled.tsx index 37b7055c0..7dd47f493 100644 --- a/src/IconShadowMinusSharpFilled.tsx +++ b/src/IconShadowMinusSharpFilled.tsx @@ -8,4 +8,4 @@ const IconShadowMinusSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconShadowMinusSharpFilled as default } +export default IconShadowMinusSharpFilled diff --git a/src/IconShadowOutlined.tsx b/src/IconShadowOutlined.tsx index 128071652..b92752e6f 100644 --- a/src/IconShadowOutlined.tsx +++ b/src/IconShadowOutlined.tsx @@ -8,4 +8,4 @@ const IconShadowOutlined: React.FC = ({ ...props }) => ( ) -export { IconShadowOutlined as default } +export default IconShadowOutlined diff --git a/src/IconShadowOutlinedFilled.tsx b/src/IconShadowOutlinedFilled.tsx index 329c6b94d..67811c035 100644 --- a/src/IconShadowOutlinedFilled.tsx +++ b/src/IconShadowOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconShadowOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconShadowOutlinedFilled as default } +export default IconShadowOutlinedFilled diff --git a/src/IconShadowRounded.tsx b/src/IconShadowRounded.tsx index 92277d53f..930a7d451 100644 --- a/src/IconShadowRounded.tsx +++ b/src/IconShadowRounded.tsx @@ -8,4 +8,4 @@ const IconShadowRounded: React.FC = ({ ...props }) => ( ) -export { IconShadowRounded as default } +export default IconShadowRounded diff --git a/src/IconShadowRoundedFilled.tsx b/src/IconShadowRoundedFilled.tsx index c75609f9b..9f93917e0 100644 --- a/src/IconShadowRoundedFilled.tsx +++ b/src/IconShadowRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconShadowRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconShadowRoundedFilled as default } +export default IconShadowRoundedFilled diff --git a/src/IconShadowSharp.tsx b/src/IconShadowSharp.tsx index b35faa4c4..754bf433e 100644 --- a/src/IconShadowSharp.tsx +++ b/src/IconShadowSharp.tsx @@ -8,4 +8,4 @@ const IconShadowSharp: React.FC = ({ ...props }) => ( ) -export { IconShadowSharp as default } +export default IconShadowSharp diff --git a/src/IconShadowSharpFilled.tsx b/src/IconShadowSharpFilled.tsx index 55bb05f63..defbd64f2 100644 --- a/src/IconShadowSharpFilled.tsx +++ b/src/IconShadowSharpFilled.tsx @@ -8,4 +8,4 @@ const IconShadowSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconShadowSharpFilled as default } +export default IconShadowSharpFilled diff --git a/src/IconShapeLineOutlined.tsx b/src/IconShapeLineOutlined.tsx index 6f81891ac..09f54ea05 100644 --- a/src/IconShapeLineOutlined.tsx +++ b/src/IconShapeLineOutlined.tsx @@ -8,4 +8,4 @@ const IconShapeLineOutlined: React.FC = ({ ...props }) => ( ) -export { IconShapeLineOutlined as default } +export default IconShapeLineOutlined diff --git a/src/IconShapeLineOutlinedFilled.tsx b/src/IconShapeLineOutlinedFilled.tsx index 268061bbe..50166605b 100644 --- a/src/IconShapeLineOutlinedFilled.tsx +++ b/src/IconShapeLineOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconShapeLineOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconShapeLineOutlinedFilled as default } +export default IconShapeLineOutlinedFilled diff --git a/src/IconShapeLineRounded.tsx b/src/IconShapeLineRounded.tsx index efb28c74f..3906f6338 100644 --- a/src/IconShapeLineRounded.tsx +++ b/src/IconShapeLineRounded.tsx @@ -8,4 +8,4 @@ const IconShapeLineRounded: React.FC = ({ ...props }) => ( ) -export { IconShapeLineRounded as default } +export default IconShapeLineRounded diff --git a/src/IconShapeLineRoundedFilled.tsx b/src/IconShapeLineRoundedFilled.tsx index b130ce194..fa5af34e7 100644 --- a/src/IconShapeLineRoundedFilled.tsx +++ b/src/IconShapeLineRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconShapeLineRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconShapeLineRoundedFilled as default } +export default IconShapeLineRoundedFilled diff --git a/src/IconShapeLineSharp.tsx b/src/IconShapeLineSharp.tsx index 767b1bdd6..22f743b11 100644 --- a/src/IconShapeLineSharp.tsx +++ b/src/IconShapeLineSharp.tsx @@ -8,4 +8,4 @@ const IconShapeLineSharp: React.FC = ({ ...props }) => ( ) -export { IconShapeLineSharp as default } +export default IconShapeLineSharp diff --git a/src/IconShapeLineSharpFilled.tsx b/src/IconShapeLineSharpFilled.tsx index 765f6188d..cb30ab7c9 100644 --- a/src/IconShapeLineSharpFilled.tsx +++ b/src/IconShapeLineSharpFilled.tsx @@ -8,4 +8,4 @@ const IconShapeLineSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconShapeLineSharpFilled as default } +export default IconShapeLineSharpFilled diff --git a/src/IconShapesOutlined.tsx b/src/IconShapesOutlined.tsx index 1b50848d3..f4ddde439 100644 --- a/src/IconShapesOutlined.tsx +++ b/src/IconShapesOutlined.tsx @@ -8,4 +8,4 @@ const IconShapesOutlined: React.FC = ({ ...props }) => ( ) -export { IconShapesOutlined as default } +export default IconShapesOutlined diff --git a/src/IconShapesOutlinedFilled.tsx b/src/IconShapesOutlinedFilled.tsx index bc46ec07d..d0d09c3d6 100644 --- a/src/IconShapesOutlinedFilled.tsx +++ b/src/IconShapesOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconShapesOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconShapesOutlinedFilled as default } +export default IconShapesOutlinedFilled diff --git a/src/IconShapesRounded.tsx b/src/IconShapesRounded.tsx index 3e66718b2..ebef1c9d4 100644 --- a/src/IconShapesRounded.tsx +++ b/src/IconShapesRounded.tsx @@ -8,4 +8,4 @@ const IconShapesRounded: React.FC = ({ ...props }) => ( ) -export { IconShapesRounded as default } +export default IconShapesRounded diff --git a/src/IconShapesRoundedFilled.tsx b/src/IconShapesRoundedFilled.tsx index df343a447..f380292b7 100644 --- a/src/IconShapesRoundedFilled.tsx +++ b/src/IconShapesRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconShapesRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconShapesRoundedFilled as default } +export default IconShapesRoundedFilled diff --git a/src/IconShapesSharp.tsx b/src/IconShapesSharp.tsx index 11424c009..d3fc3ba00 100644 --- a/src/IconShapesSharp.tsx +++ b/src/IconShapesSharp.tsx @@ -8,4 +8,4 @@ const IconShapesSharp: React.FC = ({ ...props }) => ( ) -export { IconShapesSharp as default } +export default IconShapesSharp diff --git a/src/IconShapesSharpFilled.tsx b/src/IconShapesSharpFilled.tsx index 911ccf5c2..8ff3e442e 100644 --- a/src/IconShapesSharpFilled.tsx +++ b/src/IconShapesSharpFilled.tsx @@ -8,4 +8,4 @@ const IconShapesSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconShapesSharpFilled as default } +export default IconShapesSharpFilled diff --git a/src/IconShareLocationOutlined.tsx b/src/IconShareLocationOutlined.tsx index b396cb3cb..482da70af 100644 --- a/src/IconShareLocationOutlined.tsx +++ b/src/IconShareLocationOutlined.tsx @@ -8,4 +8,4 @@ const IconShareLocationOutlined: React.FC = ({ ...props }) => ( ) -export { IconShareLocationOutlined as default } +export default IconShareLocationOutlined diff --git a/src/IconShareLocationOutlinedFilled.tsx b/src/IconShareLocationOutlinedFilled.tsx index 62b1d3938..cd01454a9 100644 --- a/src/IconShareLocationOutlinedFilled.tsx +++ b/src/IconShareLocationOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconShareLocationOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconShareLocationOutlinedFilled as default } +export default IconShareLocationOutlinedFilled diff --git a/src/IconShareLocationRounded.tsx b/src/IconShareLocationRounded.tsx index 8de07d23a..d988cb9f4 100644 --- a/src/IconShareLocationRounded.tsx +++ b/src/IconShareLocationRounded.tsx @@ -8,4 +8,4 @@ const IconShareLocationRounded: React.FC = ({ ...props }) => ( ) -export { IconShareLocationRounded as default } +export default IconShareLocationRounded diff --git a/src/IconShareLocationRoundedFilled.tsx b/src/IconShareLocationRoundedFilled.tsx index 360b679ff..8fce9a57a 100644 --- a/src/IconShareLocationRoundedFilled.tsx +++ b/src/IconShareLocationRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconShareLocationRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconShareLocationRoundedFilled as default } +export default IconShareLocationRoundedFilled diff --git a/src/IconShareLocationSharp.tsx b/src/IconShareLocationSharp.tsx index 2fc593c63..85f984110 100644 --- a/src/IconShareLocationSharp.tsx +++ b/src/IconShareLocationSharp.tsx @@ -8,4 +8,4 @@ const IconShareLocationSharp: React.FC = ({ ...props }) => ( ) -export { IconShareLocationSharp as default } +export default IconShareLocationSharp diff --git a/src/IconShareLocationSharpFilled.tsx b/src/IconShareLocationSharpFilled.tsx index 88e0bab8e..8ac00cf43 100644 --- a/src/IconShareLocationSharpFilled.tsx +++ b/src/IconShareLocationSharpFilled.tsx @@ -8,4 +8,4 @@ const IconShareLocationSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconShareLocationSharpFilled as default } +export default IconShareLocationSharpFilled diff --git a/src/IconShareOffOutlined.tsx b/src/IconShareOffOutlined.tsx index dc9b9f644..e8e0a14dc 100644 --- a/src/IconShareOffOutlined.tsx +++ b/src/IconShareOffOutlined.tsx @@ -8,4 +8,4 @@ const IconShareOffOutlined: React.FC = ({ ...props }) => ( ) -export { IconShareOffOutlined as default } +export default IconShareOffOutlined diff --git a/src/IconShareOffOutlinedFilled.tsx b/src/IconShareOffOutlinedFilled.tsx index 19e7bf0ca..04c19fb28 100644 --- a/src/IconShareOffOutlinedFilled.tsx +++ b/src/IconShareOffOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconShareOffOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconShareOffOutlinedFilled as default } +export default IconShareOffOutlinedFilled diff --git a/src/IconShareOffRounded.tsx b/src/IconShareOffRounded.tsx index b1199a5ca..1f683c6ce 100644 --- a/src/IconShareOffRounded.tsx +++ b/src/IconShareOffRounded.tsx @@ -8,4 +8,4 @@ const IconShareOffRounded: React.FC = ({ ...props }) => ( ) -export { IconShareOffRounded as default } +export default IconShareOffRounded diff --git a/src/IconShareOffRoundedFilled.tsx b/src/IconShareOffRoundedFilled.tsx index 9680e337d..d9b96fd51 100644 --- a/src/IconShareOffRoundedFilled.tsx +++ b/src/IconShareOffRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconShareOffRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconShareOffRoundedFilled as default } +export default IconShareOffRoundedFilled diff --git a/src/IconShareOffSharp.tsx b/src/IconShareOffSharp.tsx index 813b83dff..6d39d4e28 100644 --- a/src/IconShareOffSharp.tsx +++ b/src/IconShareOffSharp.tsx @@ -8,4 +8,4 @@ const IconShareOffSharp: React.FC = ({ ...props }) => ( ) -export { IconShareOffSharp as default } +export default IconShareOffSharp diff --git a/src/IconShareOffSharpFilled.tsx b/src/IconShareOffSharpFilled.tsx index d6de67586..97be7aea4 100644 --- a/src/IconShareOffSharpFilled.tsx +++ b/src/IconShareOffSharpFilled.tsx @@ -8,4 +8,4 @@ const IconShareOffSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconShareOffSharpFilled as default } +export default IconShareOffSharpFilled diff --git a/src/IconShareOutlined.tsx b/src/IconShareOutlined.tsx index f7ae6bc53..5ef23fb18 100644 --- a/src/IconShareOutlined.tsx +++ b/src/IconShareOutlined.tsx @@ -8,4 +8,4 @@ const IconShareOutlined: React.FC = ({ ...props }) => ( ) -export { IconShareOutlined as default } +export default IconShareOutlined diff --git a/src/IconShareOutlinedFilled.tsx b/src/IconShareOutlinedFilled.tsx index 42013ed56..2ec6d7bc1 100644 --- a/src/IconShareOutlinedFilled.tsx +++ b/src/IconShareOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconShareOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconShareOutlinedFilled as default } +export default IconShareOutlinedFilled diff --git a/src/IconShareReviewsOutlined.tsx b/src/IconShareReviewsOutlined.tsx index 302f4a11f..3497ef6c8 100644 --- a/src/IconShareReviewsOutlined.tsx +++ b/src/IconShareReviewsOutlined.tsx @@ -8,4 +8,4 @@ const IconShareReviewsOutlined: React.FC = ({ ...props }) => ( ) -export { IconShareReviewsOutlined as default } +export default IconShareReviewsOutlined diff --git a/src/IconShareReviewsOutlinedFilled.tsx b/src/IconShareReviewsOutlinedFilled.tsx index 5cd042518..0baca3634 100644 --- a/src/IconShareReviewsOutlinedFilled.tsx +++ b/src/IconShareReviewsOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconShareReviewsOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconShareReviewsOutlinedFilled as default } +export default IconShareReviewsOutlinedFilled diff --git a/src/IconShareReviewsRounded.tsx b/src/IconShareReviewsRounded.tsx index 3e88e8942..8b75f3b66 100644 --- a/src/IconShareReviewsRounded.tsx +++ b/src/IconShareReviewsRounded.tsx @@ -8,4 +8,4 @@ const IconShareReviewsRounded: React.FC = ({ ...props }) => ( ) -export { IconShareReviewsRounded as default } +export default IconShareReviewsRounded diff --git a/src/IconShareReviewsRoundedFilled.tsx b/src/IconShareReviewsRoundedFilled.tsx index ace97ea09..5790dcd7f 100644 --- a/src/IconShareReviewsRoundedFilled.tsx +++ b/src/IconShareReviewsRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconShareReviewsRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconShareReviewsRoundedFilled as default } +export default IconShareReviewsRoundedFilled diff --git a/src/IconShareReviewsSharp.tsx b/src/IconShareReviewsSharp.tsx index 82e0098bd..234ba19f2 100644 --- a/src/IconShareReviewsSharp.tsx +++ b/src/IconShareReviewsSharp.tsx @@ -8,4 +8,4 @@ const IconShareReviewsSharp: React.FC = ({ ...props }) => ( ) -export { IconShareReviewsSharp as default } +export default IconShareReviewsSharp diff --git a/src/IconShareReviewsSharpFilled.tsx b/src/IconShareReviewsSharpFilled.tsx index f678d28cb..fd30a3748 100644 --- a/src/IconShareReviewsSharpFilled.tsx +++ b/src/IconShareReviewsSharpFilled.tsx @@ -8,4 +8,4 @@ const IconShareReviewsSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconShareReviewsSharpFilled as default } +export default IconShareReviewsSharpFilled diff --git a/src/IconShareRounded.tsx b/src/IconShareRounded.tsx index 02484b81c..7821203a8 100644 --- a/src/IconShareRounded.tsx +++ b/src/IconShareRounded.tsx @@ -8,4 +8,4 @@ const IconShareRounded: React.FC = ({ ...props }) => ( ) -export { IconShareRounded as default } +export default IconShareRounded diff --git a/src/IconShareRoundedFilled.tsx b/src/IconShareRoundedFilled.tsx index a122dacb8..813687d5f 100644 --- a/src/IconShareRoundedFilled.tsx +++ b/src/IconShareRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconShareRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconShareRoundedFilled as default } +export default IconShareRoundedFilled diff --git a/src/IconShareSharp.tsx b/src/IconShareSharp.tsx index b97e4b4f9..12c13bbe4 100644 --- a/src/IconShareSharp.tsx +++ b/src/IconShareSharp.tsx @@ -8,4 +8,4 @@ const IconShareSharp: React.FC = ({ ...props }) => ( ) -export { IconShareSharp as default } +export default IconShareSharp diff --git a/src/IconShareSharpFilled.tsx b/src/IconShareSharpFilled.tsx index 3ae7674b1..08a271b4e 100644 --- a/src/IconShareSharpFilled.tsx +++ b/src/IconShareSharpFilled.tsx @@ -8,4 +8,4 @@ const IconShareSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconShareSharpFilled as default } +export default IconShareSharpFilled diff --git a/src/IconShareWindowsOutlined.tsx b/src/IconShareWindowsOutlined.tsx index 3c21320c6..49eaab3ba 100644 --- a/src/IconShareWindowsOutlined.tsx +++ b/src/IconShareWindowsOutlined.tsx @@ -8,4 +8,4 @@ const IconShareWindowsOutlined: React.FC = ({ ...props }) => ( ) -export { IconShareWindowsOutlined as default } +export default IconShareWindowsOutlined diff --git a/src/IconShareWindowsOutlinedFilled.tsx b/src/IconShareWindowsOutlinedFilled.tsx index 11989e89d..7c0b617c3 100644 --- a/src/IconShareWindowsOutlinedFilled.tsx +++ b/src/IconShareWindowsOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconShareWindowsOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconShareWindowsOutlinedFilled as default } +export default IconShareWindowsOutlinedFilled diff --git a/src/IconShareWindowsRounded.tsx b/src/IconShareWindowsRounded.tsx index 03b29db09..ee4186a5a 100644 --- a/src/IconShareWindowsRounded.tsx +++ b/src/IconShareWindowsRounded.tsx @@ -8,4 +8,4 @@ const IconShareWindowsRounded: React.FC = ({ ...props }) => ( ) -export { IconShareWindowsRounded as default } +export default IconShareWindowsRounded diff --git a/src/IconShareWindowsRoundedFilled.tsx b/src/IconShareWindowsRoundedFilled.tsx index b9c4e10c7..53aefb842 100644 --- a/src/IconShareWindowsRoundedFilled.tsx +++ b/src/IconShareWindowsRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconShareWindowsRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconShareWindowsRoundedFilled as default } +export default IconShareWindowsRoundedFilled diff --git a/src/IconShareWindowsSharp.tsx b/src/IconShareWindowsSharp.tsx index 0aa047434..f26e0db2a 100644 --- a/src/IconShareWindowsSharp.tsx +++ b/src/IconShareWindowsSharp.tsx @@ -8,4 +8,4 @@ const IconShareWindowsSharp: React.FC = ({ ...props }) => ( ) -export { IconShareWindowsSharp as default } +export default IconShareWindowsSharp diff --git a/src/IconShareWindowsSharpFilled.tsx b/src/IconShareWindowsSharpFilled.tsx index aa2c6a63a..1c3516415 100644 --- a/src/IconShareWindowsSharpFilled.tsx +++ b/src/IconShareWindowsSharpFilled.tsx @@ -8,4 +8,4 @@ const IconShareWindowsSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconShareWindowsSharpFilled as default } +export default IconShareWindowsSharpFilled diff --git a/src/IconSheetsRtlOutlined.tsx b/src/IconSheetsRtlOutlined.tsx index 0f2c1aa07..250491b4e 100644 --- a/src/IconSheetsRtlOutlined.tsx +++ b/src/IconSheetsRtlOutlined.tsx @@ -8,4 +8,4 @@ const IconSheetsRtlOutlined: React.FC = ({ ...props }) => ( ) -export { IconSheetsRtlOutlined as default } +export default IconSheetsRtlOutlined diff --git a/src/IconSheetsRtlOutlinedFilled.tsx b/src/IconSheetsRtlOutlinedFilled.tsx index 4d75e36de..bf49480ed 100644 --- a/src/IconSheetsRtlOutlinedFilled.tsx +++ b/src/IconSheetsRtlOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconSheetsRtlOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconSheetsRtlOutlinedFilled as default } +export default IconSheetsRtlOutlinedFilled diff --git a/src/IconSheetsRtlRounded.tsx b/src/IconSheetsRtlRounded.tsx index 8d1d1aaa9..dae8895ac 100644 --- a/src/IconSheetsRtlRounded.tsx +++ b/src/IconSheetsRtlRounded.tsx @@ -8,4 +8,4 @@ const IconSheetsRtlRounded: React.FC = ({ ...props }) => ( ) -export { IconSheetsRtlRounded as default } +export default IconSheetsRtlRounded diff --git a/src/IconSheetsRtlRoundedFilled.tsx b/src/IconSheetsRtlRoundedFilled.tsx index 55c8d5d8e..8d7006852 100644 --- a/src/IconSheetsRtlRoundedFilled.tsx +++ b/src/IconSheetsRtlRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconSheetsRtlRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconSheetsRtlRoundedFilled as default } +export default IconSheetsRtlRoundedFilled diff --git a/src/IconSheetsRtlSharp.tsx b/src/IconSheetsRtlSharp.tsx index b84beb70e..76178c1c7 100644 --- a/src/IconSheetsRtlSharp.tsx +++ b/src/IconSheetsRtlSharp.tsx @@ -8,4 +8,4 @@ const IconSheetsRtlSharp: React.FC = ({ ...props }) => ( ) -export { IconSheetsRtlSharp as default } +export default IconSheetsRtlSharp diff --git a/src/IconSheetsRtlSharpFilled.tsx b/src/IconSheetsRtlSharpFilled.tsx index 78399d472..6f097bedf 100644 --- a/src/IconSheetsRtlSharpFilled.tsx +++ b/src/IconSheetsRtlSharpFilled.tsx @@ -8,4 +8,4 @@ const IconSheetsRtlSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconSheetsRtlSharpFilled as default } +export default IconSheetsRtlSharpFilled diff --git a/src/IconShelfAutoHideOutlined.tsx b/src/IconShelfAutoHideOutlined.tsx index 7be8c6346..2ffeccd6d 100644 --- a/src/IconShelfAutoHideOutlined.tsx +++ b/src/IconShelfAutoHideOutlined.tsx @@ -8,4 +8,4 @@ const IconShelfAutoHideOutlined: React.FC = ({ ...props }) => ( ) -export { IconShelfAutoHideOutlined as default } +export default IconShelfAutoHideOutlined diff --git a/src/IconShelfAutoHideOutlinedFilled.tsx b/src/IconShelfAutoHideOutlinedFilled.tsx index 3ad1100e1..159a9189e 100644 --- a/src/IconShelfAutoHideOutlinedFilled.tsx +++ b/src/IconShelfAutoHideOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconShelfAutoHideOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconShelfAutoHideOutlinedFilled as default } +export default IconShelfAutoHideOutlinedFilled diff --git a/src/IconShelfAutoHideRounded.tsx b/src/IconShelfAutoHideRounded.tsx index daef9bce5..28304b0bb 100644 --- a/src/IconShelfAutoHideRounded.tsx +++ b/src/IconShelfAutoHideRounded.tsx @@ -8,4 +8,4 @@ const IconShelfAutoHideRounded: React.FC = ({ ...props }) => ( ) -export { IconShelfAutoHideRounded as default } +export default IconShelfAutoHideRounded diff --git a/src/IconShelfAutoHideRoundedFilled.tsx b/src/IconShelfAutoHideRoundedFilled.tsx index fcdb9455e..d8f92d046 100644 --- a/src/IconShelfAutoHideRoundedFilled.tsx +++ b/src/IconShelfAutoHideRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconShelfAutoHideRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconShelfAutoHideRoundedFilled as default } +export default IconShelfAutoHideRoundedFilled diff --git a/src/IconShelfAutoHideSharp.tsx b/src/IconShelfAutoHideSharp.tsx index 11f1bc437..4b62c7ef5 100644 --- a/src/IconShelfAutoHideSharp.tsx +++ b/src/IconShelfAutoHideSharp.tsx @@ -8,4 +8,4 @@ const IconShelfAutoHideSharp: React.FC = ({ ...props }) => ( ) -export { IconShelfAutoHideSharp as default } +export default IconShelfAutoHideSharp diff --git a/src/IconShelfAutoHideSharpFilled.tsx b/src/IconShelfAutoHideSharpFilled.tsx index b0a798938..c771d17fb 100644 --- a/src/IconShelfAutoHideSharpFilled.tsx +++ b/src/IconShelfAutoHideSharpFilled.tsx @@ -8,4 +8,4 @@ const IconShelfAutoHideSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconShelfAutoHideSharpFilled as default } +export default IconShelfAutoHideSharpFilled diff --git a/src/IconShelfPositionOutlined.tsx b/src/IconShelfPositionOutlined.tsx index 8a9ba57e8..03c7773f9 100644 --- a/src/IconShelfPositionOutlined.tsx +++ b/src/IconShelfPositionOutlined.tsx @@ -8,4 +8,4 @@ const IconShelfPositionOutlined: React.FC = ({ ...props }) => ( ) -export { IconShelfPositionOutlined as default } +export default IconShelfPositionOutlined diff --git a/src/IconShelfPositionOutlinedFilled.tsx b/src/IconShelfPositionOutlinedFilled.tsx index 1bea5dbd2..7a66a1cba 100644 --- a/src/IconShelfPositionOutlinedFilled.tsx +++ b/src/IconShelfPositionOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconShelfPositionOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconShelfPositionOutlinedFilled as default } +export default IconShelfPositionOutlinedFilled diff --git a/src/IconShelfPositionRounded.tsx b/src/IconShelfPositionRounded.tsx index 0ded51a57..e95c15349 100644 --- a/src/IconShelfPositionRounded.tsx +++ b/src/IconShelfPositionRounded.tsx @@ -8,4 +8,4 @@ const IconShelfPositionRounded: React.FC = ({ ...props }) => ( ) -export { IconShelfPositionRounded as default } +export default IconShelfPositionRounded diff --git a/src/IconShelfPositionRoundedFilled.tsx b/src/IconShelfPositionRoundedFilled.tsx index 5bf86c78c..67358686c 100644 --- a/src/IconShelfPositionRoundedFilled.tsx +++ b/src/IconShelfPositionRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconShelfPositionRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconShelfPositionRoundedFilled as default } +export default IconShelfPositionRoundedFilled diff --git a/src/IconShelfPositionSharp.tsx b/src/IconShelfPositionSharp.tsx index 0a935fb1e..4616ca13e 100644 --- a/src/IconShelfPositionSharp.tsx +++ b/src/IconShelfPositionSharp.tsx @@ -8,4 +8,4 @@ const IconShelfPositionSharp: React.FC = ({ ...props }) => ( ) -export { IconShelfPositionSharp as default } +export default IconShelfPositionSharp diff --git a/src/IconShelfPositionSharpFilled.tsx b/src/IconShelfPositionSharpFilled.tsx index aa802e35e..87bd10ec1 100644 --- a/src/IconShelfPositionSharpFilled.tsx +++ b/src/IconShelfPositionSharpFilled.tsx @@ -8,4 +8,4 @@ const IconShelfPositionSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconShelfPositionSharpFilled as default } +export default IconShelfPositionSharpFilled diff --git a/src/IconShelvesOutlined.tsx b/src/IconShelvesOutlined.tsx index 6a28467ea..c93731f2d 100644 --- a/src/IconShelvesOutlined.tsx +++ b/src/IconShelvesOutlined.tsx @@ -8,4 +8,4 @@ const IconShelvesOutlined: React.FC = ({ ...props }) => ( ) -export { IconShelvesOutlined as default } +export default IconShelvesOutlined diff --git a/src/IconShelvesOutlinedFilled.tsx b/src/IconShelvesOutlinedFilled.tsx index bb12f9e8f..a56bda01c 100644 --- a/src/IconShelvesOutlinedFilled.tsx +++ b/src/IconShelvesOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconShelvesOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconShelvesOutlinedFilled as default } +export default IconShelvesOutlinedFilled diff --git a/src/IconShelvesRounded.tsx b/src/IconShelvesRounded.tsx index fc31a0a64..e270cea65 100644 --- a/src/IconShelvesRounded.tsx +++ b/src/IconShelvesRounded.tsx @@ -8,4 +8,4 @@ const IconShelvesRounded: React.FC = ({ ...props }) => ( ) -export { IconShelvesRounded as default } +export default IconShelvesRounded diff --git a/src/IconShelvesRoundedFilled.tsx b/src/IconShelvesRoundedFilled.tsx index b4ea0e3c8..935b5f24d 100644 --- a/src/IconShelvesRoundedFilled.tsx +++ b/src/IconShelvesRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconShelvesRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconShelvesRoundedFilled as default } +export default IconShelvesRoundedFilled diff --git a/src/IconShelvesSharp.tsx b/src/IconShelvesSharp.tsx index ea6335f2b..0f3951335 100644 --- a/src/IconShelvesSharp.tsx +++ b/src/IconShelvesSharp.tsx @@ -8,4 +8,4 @@ const IconShelvesSharp: React.FC = ({ ...props }) => ( ) -export { IconShelvesSharp as default } +export default IconShelvesSharp diff --git a/src/IconShelvesSharpFilled.tsx b/src/IconShelvesSharpFilled.tsx index 98548d0de..8a3976971 100644 --- a/src/IconShelvesSharpFilled.tsx +++ b/src/IconShelvesSharpFilled.tsx @@ -8,4 +8,4 @@ const IconShelvesSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconShelvesSharpFilled as default } +export default IconShelvesSharpFilled diff --git a/src/IconShieldLockOutlined.tsx b/src/IconShieldLockOutlined.tsx index d75783bb8..4aa2ca022 100644 --- a/src/IconShieldLockOutlined.tsx +++ b/src/IconShieldLockOutlined.tsx @@ -8,4 +8,4 @@ const IconShieldLockOutlined: React.FC = ({ ...props }) => ( ) -export { IconShieldLockOutlined as default } +export default IconShieldLockOutlined diff --git a/src/IconShieldLockOutlinedFilled.tsx b/src/IconShieldLockOutlinedFilled.tsx index c8e4d1c13..be2289349 100644 --- a/src/IconShieldLockOutlinedFilled.tsx +++ b/src/IconShieldLockOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconShieldLockOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconShieldLockOutlinedFilled as default } +export default IconShieldLockOutlinedFilled diff --git a/src/IconShieldLockRounded.tsx b/src/IconShieldLockRounded.tsx index 1e320347e..0ea2abe46 100644 --- a/src/IconShieldLockRounded.tsx +++ b/src/IconShieldLockRounded.tsx @@ -8,4 +8,4 @@ const IconShieldLockRounded: React.FC = ({ ...props }) => ( ) -export { IconShieldLockRounded as default } +export default IconShieldLockRounded diff --git a/src/IconShieldLockRoundedFilled.tsx b/src/IconShieldLockRoundedFilled.tsx index 2858149d5..26d334cf6 100644 --- a/src/IconShieldLockRoundedFilled.tsx +++ b/src/IconShieldLockRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconShieldLockRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconShieldLockRoundedFilled as default } +export default IconShieldLockRoundedFilled diff --git a/src/IconShieldLockSharp.tsx b/src/IconShieldLockSharp.tsx index e953ba2da..4e956fb11 100644 --- a/src/IconShieldLockSharp.tsx +++ b/src/IconShieldLockSharp.tsx @@ -8,4 +8,4 @@ const IconShieldLockSharp: React.FC = ({ ...props }) => ( ) -export { IconShieldLockSharp as default } +export default IconShieldLockSharp diff --git a/src/IconShieldLockSharpFilled.tsx b/src/IconShieldLockSharpFilled.tsx index d3e46e4c9..c71c7ba26 100644 --- a/src/IconShieldLockSharpFilled.tsx +++ b/src/IconShieldLockSharpFilled.tsx @@ -8,4 +8,4 @@ const IconShieldLockSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconShieldLockSharpFilled as default } +export default IconShieldLockSharpFilled diff --git a/src/IconShieldLockedOutlined.tsx b/src/IconShieldLockedOutlined.tsx index 7e4546701..d1321af4b 100644 --- a/src/IconShieldLockedOutlined.tsx +++ b/src/IconShieldLockedOutlined.tsx @@ -8,4 +8,4 @@ const IconShieldLockedOutlined: React.FC = ({ ...props }) => ( ) -export { IconShieldLockedOutlined as default } +export default IconShieldLockedOutlined diff --git a/src/IconShieldLockedOutlinedFilled.tsx b/src/IconShieldLockedOutlinedFilled.tsx index da5212714..69a18512b 100644 --- a/src/IconShieldLockedOutlinedFilled.tsx +++ b/src/IconShieldLockedOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconShieldLockedOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconShieldLockedOutlinedFilled as default } +export default IconShieldLockedOutlinedFilled diff --git a/src/IconShieldLockedRounded.tsx b/src/IconShieldLockedRounded.tsx index 227fef98a..cf472c575 100644 --- a/src/IconShieldLockedRounded.tsx +++ b/src/IconShieldLockedRounded.tsx @@ -8,4 +8,4 @@ const IconShieldLockedRounded: React.FC = ({ ...props }) => ( ) -export { IconShieldLockedRounded as default } +export default IconShieldLockedRounded diff --git a/src/IconShieldLockedRoundedFilled.tsx b/src/IconShieldLockedRoundedFilled.tsx index 2b62f11cb..5c197369c 100644 --- a/src/IconShieldLockedRoundedFilled.tsx +++ b/src/IconShieldLockedRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconShieldLockedRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconShieldLockedRoundedFilled as default } +export default IconShieldLockedRoundedFilled diff --git a/src/IconShieldLockedSharp.tsx b/src/IconShieldLockedSharp.tsx index 0d4c87e0d..5de504802 100644 --- a/src/IconShieldLockedSharp.tsx +++ b/src/IconShieldLockedSharp.tsx @@ -8,4 +8,4 @@ const IconShieldLockedSharp: React.FC = ({ ...props }) => ( ) -export { IconShieldLockedSharp as default } +export default IconShieldLockedSharp diff --git a/src/IconShieldLockedSharpFilled.tsx b/src/IconShieldLockedSharpFilled.tsx index b97c0e502..211e0d757 100644 --- a/src/IconShieldLockedSharpFilled.tsx +++ b/src/IconShieldLockedSharpFilled.tsx @@ -8,4 +8,4 @@ const IconShieldLockedSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconShieldLockedSharpFilled as default } +export default IconShieldLockedSharpFilled diff --git a/src/IconShieldMoonOutlined.tsx b/src/IconShieldMoonOutlined.tsx index 2c7617584..e7cd1d176 100644 --- a/src/IconShieldMoonOutlined.tsx +++ b/src/IconShieldMoonOutlined.tsx @@ -8,4 +8,4 @@ const IconShieldMoonOutlined: React.FC = ({ ...props }) => ( ) -export { IconShieldMoonOutlined as default } +export default IconShieldMoonOutlined diff --git a/src/IconShieldMoonOutlinedFilled.tsx b/src/IconShieldMoonOutlinedFilled.tsx index 536d24dd3..bfd66ddd1 100644 --- a/src/IconShieldMoonOutlinedFilled.tsx +++ b/src/IconShieldMoonOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconShieldMoonOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconShieldMoonOutlinedFilled as default } +export default IconShieldMoonOutlinedFilled diff --git a/src/IconShieldMoonRounded.tsx b/src/IconShieldMoonRounded.tsx index d90467bf5..1ac87b1be 100644 --- a/src/IconShieldMoonRounded.tsx +++ b/src/IconShieldMoonRounded.tsx @@ -8,4 +8,4 @@ const IconShieldMoonRounded: React.FC = ({ ...props }) => ( ) -export { IconShieldMoonRounded as default } +export default IconShieldMoonRounded diff --git a/src/IconShieldMoonRoundedFilled.tsx b/src/IconShieldMoonRoundedFilled.tsx index 5cd6c3657..33ffffe67 100644 --- a/src/IconShieldMoonRoundedFilled.tsx +++ b/src/IconShieldMoonRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconShieldMoonRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconShieldMoonRoundedFilled as default } +export default IconShieldMoonRoundedFilled diff --git a/src/IconShieldMoonSharp.tsx b/src/IconShieldMoonSharp.tsx index 3d430afda..bebe45526 100644 --- a/src/IconShieldMoonSharp.tsx +++ b/src/IconShieldMoonSharp.tsx @@ -8,4 +8,4 @@ const IconShieldMoonSharp: React.FC = ({ ...props }) => ( ) -export { IconShieldMoonSharp as default } +export default IconShieldMoonSharp diff --git a/src/IconShieldMoonSharpFilled.tsx b/src/IconShieldMoonSharpFilled.tsx index eaa2be9ca..43be5c9bc 100644 --- a/src/IconShieldMoonSharpFilled.tsx +++ b/src/IconShieldMoonSharpFilled.tsx @@ -8,4 +8,4 @@ const IconShieldMoonSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconShieldMoonSharpFilled as default } +export default IconShieldMoonSharpFilled diff --git a/src/IconShieldOutlined.tsx b/src/IconShieldOutlined.tsx index 4ca1c86a0..c5cf3d48a 100644 --- a/src/IconShieldOutlined.tsx +++ b/src/IconShieldOutlined.tsx @@ -8,4 +8,4 @@ const IconShieldOutlined: React.FC = ({ ...props }) => ( ) -export { IconShieldOutlined as default } +export default IconShieldOutlined diff --git a/src/IconShieldOutlinedFilled.tsx b/src/IconShieldOutlinedFilled.tsx index cca063af4..8b58e1dad 100644 --- a/src/IconShieldOutlinedFilled.tsx +++ b/src/IconShieldOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconShieldOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconShieldOutlinedFilled as default } +export default IconShieldOutlinedFilled diff --git a/src/IconShieldPersonOutlined.tsx b/src/IconShieldPersonOutlined.tsx index b09dca84e..39594ae6c 100644 --- a/src/IconShieldPersonOutlined.tsx +++ b/src/IconShieldPersonOutlined.tsx @@ -8,4 +8,4 @@ const IconShieldPersonOutlined: React.FC = ({ ...props }) => ( ) -export { IconShieldPersonOutlined as default } +export default IconShieldPersonOutlined diff --git a/src/IconShieldPersonOutlinedFilled.tsx b/src/IconShieldPersonOutlinedFilled.tsx index f75a22600..b75b86ae3 100644 --- a/src/IconShieldPersonOutlinedFilled.tsx +++ b/src/IconShieldPersonOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconShieldPersonOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconShieldPersonOutlinedFilled as default } +export default IconShieldPersonOutlinedFilled diff --git a/src/IconShieldPersonRounded.tsx b/src/IconShieldPersonRounded.tsx index 3e4e8e2c2..ceacd13d3 100644 --- a/src/IconShieldPersonRounded.tsx +++ b/src/IconShieldPersonRounded.tsx @@ -8,4 +8,4 @@ const IconShieldPersonRounded: React.FC = ({ ...props }) => ( ) -export { IconShieldPersonRounded as default } +export default IconShieldPersonRounded diff --git a/src/IconShieldPersonRoundedFilled.tsx b/src/IconShieldPersonRoundedFilled.tsx index 8cde20cbd..acf48345e 100644 --- a/src/IconShieldPersonRoundedFilled.tsx +++ b/src/IconShieldPersonRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconShieldPersonRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconShieldPersonRoundedFilled as default } +export default IconShieldPersonRoundedFilled diff --git a/src/IconShieldPersonSharp.tsx b/src/IconShieldPersonSharp.tsx index d327b321c..3e663a3c2 100644 --- a/src/IconShieldPersonSharp.tsx +++ b/src/IconShieldPersonSharp.tsx @@ -8,4 +8,4 @@ const IconShieldPersonSharp: React.FC = ({ ...props }) => ( ) -export { IconShieldPersonSharp as default } +export default IconShieldPersonSharp diff --git a/src/IconShieldPersonSharpFilled.tsx b/src/IconShieldPersonSharpFilled.tsx index 7bfa2cfef..e5ee8c501 100644 --- a/src/IconShieldPersonSharpFilled.tsx +++ b/src/IconShieldPersonSharpFilled.tsx @@ -8,4 +8,4 @@ const IconShieldPersonSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconShieldPersonSharpFilled as default } +export default IconShieldPersonSharpFilled diff --git a/src/IconShieldQuestionOutlined.tsx b/src/IconShieldQuestionOutlined.tsx index c30ed06bf..0665f7b87 100644 --- a/src/IconShieldQuestionOutlined.tsx +++ b/src/IconShieldQuestionOutlined.tsx @@ -8,4 +8,4 @@ const IconShieldQuestionOutlined: React.FC = ({ ...props }) => ( ) -export { IconShieldQuestionOutlined as default } +export default IconShieldQuestionOutlined diff --git a/src/IconShieldQuestionOutlinedFilled.tsx b/src/IconShieldQuestionOutlinedFilled.tsx index 2941d77db..3cbe935af 100644 --- a/src/IconShieldQuestionOutlinedFilled.tsx +++ b/src/IconShieldQuestionOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconShieldQuestionOutlinedFilled: React.FC = ({ ) -export { IconShieldQuestionOutlinedFilled as default } +export default IconShieldQuestionOutlinedFilled diff --git a/src/IconShieldQuestionRounded.tsx b/src/IconShieldQuestionRounded.tsx index 2c131e0ef..52dd5d060 100644 --- a/src/IconShieldQuestionRounded.tsx +++ b/src/IconShieldQuestionRounded.tsx @@ -8,4 +8,4 @@ const IconShieldQuestionRounded: React.FC = ({ ...props }) => ( ) -export { IconShieldQuestionRounded as default } +export default IconShieldQuestionRounded diff --git a/src/IconShieldQuestionRoundedFilled.tsx b/src/IconShieldQuestionRoundedFilled.tsx index 93a504d75..443038341 100644 --- a/src/IconShieldQuestionRoundedFilled.tsx +++ b/src/IconShieldQuestionRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconShieldQuestionRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconShieldQuestionRoundedFilled as default } +export default IconShieldQuestionRoundedFilled diff --git a/src/IconShieldQuestionSharp.tsx b/src/IconShieldQuestionSharp.tsx index ab1b5340a..0928f08b2 100644 --- a/src/IconShieldQuestionSharp.tsx +++ b/src/IconShieldQuestionSharp.tsx @@ -8,4 +8,4 @@ const IconShieldQuestionSharp: React.FC = ({ ...props }) => ( ) -export { IconShieldQuestionSharp as default } +export default IconShieldQuestionSharp diff --git a/src/IconShieldQuestionSharpFilled.tsx b/src/IconShieldQuestionSharpFilled.tsx index 531ce162b..f3c7156d6 100644 --- a/src/IconShieldQuestionSharpFilled.tsx +++ b/src/IconShieldQuestionSharpFilled.tsx @@ -8,4 +8,4 @@ const IconShieldQuestionSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconShieldQuestionSharpFilled as default } +export default IconShieldQuestionSharpFilled diff --git a/src/IconShieldRounded.tsx b/src/IconShieldRounded.tsx index 7e65b2724..a7be8018b 100644 --- a/src/IconShieldRounded.tsx +++ b/src/IconShieldRounded.tsx @@ -8,4 +8,4 @@ const IconShieldRounded: React.FC = ({ ...props }) => ( ) -export { IconShieldRounded as default } +export default IconShieldRounded diff --git a/src/IconShieldRoundedFilled.tsx b/src/IconShieldRoundedFilled.tsx index 098ab56e6..cb97794ec 100644 --- a/src/IconShieldRoundedFilled.tsx +++ b/src/IconShieldRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconShieldRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconShieldRoundedFilled as default } +export default IconShieldRoundedFilled diff --git a/src/IconShieldSharp.tsx b/src/IconShieldSharp.tsx index c3e2e7752..af872fc15 100644 --- a/src/IconShieldSharp.tsx +++ b/src/IconShieldSharp.tsx @@ -8,4 +8,4 @@ const IconShieldSharp: React.FC = ({ ...props }) => ( ) -export { IconShieldSharp as default } +export default IconShieldSharp diff --git a/src/IconShieldSharpFilled.tsx b/src/IconShieldSharpFilled.tsx index 9d3e823c8..35f068365 100644 --- a/src/IconShieldSharpFilled.tsx +++ b/src/IconShieldSharpFilled.tsx @@ -8,4 +8,4 @@ const IconShieldSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconShieldSharpFilled as default } +export default IconShieldSharpFilled diff --git a/src/IconShieldWithHeartOutlined.tsx b/src/IconShieldWithHeartOutlined.tsx index 3ccf1e090..33581311b 100644 --- a/src/IconShieldWithHeartOutlined.tsx +++ b/src/IconShieldWithHeartOutlined.tsx @@ -8,4 +8,4 @@ const IconShieldWithHeartOutlined: React.FC = ({ ...props }) => ( ) -export { IconShieldWithHeartOutlined as default } +export default IconShieldWithHeartOutlined diff --git a/src/IconShieldWithHeartOutlinedFilled.tsx b/src/IconShieldWithHeartOutlinedFilled.tsx index be5f66814..773dee2fd 100644 --- a/src/IconShieldWithHeartOutlinedFilled.tsx +++ b/src/IconShieldWithHeartOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconShieldWithHeartOutlinedFilled: React.FC = ({ ) -export { IconShieldWithHeartOutlinedFilled as default } +export default IconShieldWithHeartOutlinedFilled diff --git a/src/IconShieldWithHeartRounded.tsx b/src/IconShieldWithHeartRounded.tsx index 23a3d1f78..6afb50fd6 100644 --- a/src/IconShieldWithHeartRounded.tsx +++ b/src/IconShieldWithHeartRounded.tsx @@ -8,4 +8,4 @@ const IconShieldWithHeartRounded: React.FC = ({ ...props }) => ( ) -export { IconShieldWithHeartRounded as default } +export default IconShieldWithHeartRounded diff --git a/src/IconShieldWithHeartRoundedFilled.tsx b/src/IconShieldWithHeartRoundedFilled.tsx index 26ea740c2..3caa7bc54 100644 --- a/src/IconShieldWithHeartRoundedFilled.tsx +++ b/src/IconShieldWithHeartRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconShieldWithHeartRoundedFilled: React.FC = ({ ) -export { IconShieldWithHeartRoundedFilled as default } +export default IconShieldWithHeartRoundedFilled diff --git a/src/IconShieldWithHeartSharp.tsx b/src/IconShieldWithHeartSharp.tsx index 2e739db1d..2bf996fc0 100644 --- a/src/IconShieldWithHeartSharp.tsx +++ b/src/IconShieldWithHeartSharp.tsx @@ -8,4 +8,4 @@ const IconShieldWithHeartSharp: React.FC = ({ ...props }) => ( ) -export { IconShieldWithHeartSharp as default } +export default IconShieldWithHeartSharp diff --git a/src/IconShieldWithHeartSharpFilled.tsx b/src/IconShieldWithHeartSharpFilled.tsx index 429389b26..bda186619 100644 --- a/src/IconShieldWithHeartSharpFilled.tsx +++ b/src/IconShieldWithHeartSharpFilled.tsx @@ -8,4 +8,4 @@ const IconShieldWithHeartSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconShieldWithHeartSharpFilled as default } +export default IconShieldWithHeartSharpFilled diff --git a/src/IconShieldWithHouseOutlined.tsx b/src/IconShieldWithHouseOutlined.tsx index 1237d88b9..a3bc07c7c 100644 --- a/src/IconShieldWithHouseOutlined.tsx +++ b/src/IconShieldWithHouseOutlined.tsx @@ -8,4 +8,4 @@ const IconShieldWithHouseOutlined: React.FC = ({ ...props }) => ( ) -export { IconShieldWithHouseOutlined as default } +export default IconShieldWithHouseOutlined diff --git a/src/IconShieldWithHouseOutlinedFilled.tsx b/src/IconShieldWithHouseOutlinedFilled.tsx index 3dcdd8bea..6acba1109 100644 --- a/src/IconShieldWithHouseOutlinedFilled.tsx +++ b/src/IconShieldWithHouseOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconShieldWithHouseOutlinedFilled: React.FC = ({ ) -export { IconShieldWithHouseOutlinedFilled as default } +export default IconShieldWithHouseOutlinedFilled diff --git a/src/IconShieldWithHouseRounded.tsx b/src/IconShieldWithHouseRounded.tsx index 95488806c..1a32bf295 100644 --- a/src/IconShieldWithHouseRounded.tsx +++ b/src/IconShieldWithHouseRounded.tsx @@ -8,4 +8,4 @@ const IconShieldWithHouseRounded: React.FC = ({ ...props }) => ( ) -export { IconShieldWithHouseRounded as default } +export default IconShieldWithHouseRounded diff --git a/src/IconShieldWithHouseRoundedFilled.tsx b/src/IconShieldWithHouseRoundedFilled.tsx index eec9c0f68..c5adce3e7 100644 --- a/src/IconShieldWithHouseRoundedFilled.tsx +++ b/src/IconShieldWithHouseRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconShieldWithHouseRoundedFilled: React.FC = ({ ) -export { IconShieldWithHouseRoundedFilled as default } +export default IconShieldWithHouseRoundedFilled diff --git a/src/IconShieldWithHouseSharp.tsx b/src/IconShieldWithHouseSharp.tsx index 00aaa753c..4408158d1 100644 --- a/src/IconShieldWithHouseSharp.tsx +++ b/src/IconShieldWithHouseSharp.tsx @@ -8,4 +8,4 @@ const IconShieldWithHouseSharp: React.FC = ({ ...props }) => ( ) -export { IconShieldWithHouseSharp as default } +export default IconShieldWithHouseSharp diff --git a/src/IconShieldWithHouseSharpFilled.tsx b/src/IconShieldWithHouseSharpFilled.tsx index ef8859dba..17d90fbb5 100644 --- a/src/IconShieldWithHouseSharpFilled.tsx +++ b/src/IconShieldWithHouseSharpFilled.tsx @@ -8,4 +8,4 @@ const IconShieldWithHouseSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconShieldWithHouseSharpFilled as default } +export default IconShieldWithHouseSharpFilled diff --git a/src/IconShiftLockOffOutlined.tsx b/src/IconShiftLockOffOutlined.tsx index 7140ae03a..085c325a8 100644 --- a/src/IconShiftLockOffOutlined.tsx +++ b/src/IconShiftLockOffOutlined.tsx @@ -8,4 +8,4 @@ const IconShiftLockOffOutlined: React.FC = ({ ...props }) => ( ) -export { IconShiftLockOffOutlined as default } +export default IconShiftLockOffOutlined diff --git a/src/IconShiftLockOffOutlinedFilled.tsx b/src/IconShiftLockOffOutlinedFilled.tsx index 444650fd1..834733e81 100644 --- a/src/IconShiftLockOffOutlinedFilled.tsx +++ b/src/IconShiftLockOffOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconShiftLockOffOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconShiftLockOffOutlinedFilled as default } +export default IconShiftLockOffOutlinedFilled diff --git a/src/IconShiftLockOffRounded.tsx b/src/IconShiftLockOffRounded.tsx index bbfcb539c..0cd006cd1 100644 --- a/src/IconShiftLockOffRounded.tsx +++ b/src/IconShiftLockOffRounded.tsx @@ -8,4 +8,4 @@ const IconShiftLockOffRounded: React.FC = ({ ...props }) => ( ) -export { IconShiftLockOffRounded as default } +export default IconShiftLockOffRounded diff --git a/src/IconShiftLockOffRoundedFilled.tsx b/src/IconShiftLockOffRoundedFilled.tsx index b4469d649..54e2a29d6 100644 --- a/src/IconShiftLockOffRoundedFilled.tsx +++ b/src/IconShiftLockOffRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconShiftLockOffRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconShiftLockOffRoundedFilled as default } +export default IconShiftLockOffRoundedFilled diff --git a/src/IconShiftLockOffSharp.tsx b/src/IconShiftLockOffSharp.tsx index b48dfe8a4..073fcc9d0 100644 --- a/src/IconShiftLockOffSharp.tsx +++ b/src/IconShiftLockOffSharp.tsx @@ -8,4 +8,4 @@ const IconShiftLockOffSharp: React.FC = ({ ...props }) => ( ) -export { IconShiftLockOffSharp as default } +export default IconShiftLockOffSharp diff --git a/src/IconShiftLockOffSharpFilled.tsx b/src/IconShiftLockOffSharpFilled.tsx index 163352b8b..02440ee9f 100644 --- a/src/IconShiftLockOffSharpFilled.tsx +++ b/src/IconShiftLockOffSharpFilled.tsx @@ -8,4 +8,4 @@ const IconShiftLockOffSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconShiftLockOffSharpFilled as default } +export default IconShiftLockOffSharpFilled diff --git a/src/IconShiftLockOutlined.tsx b/src/IconShiftLockOutlined.tsx index e638fea96..7d4759dd1 100644 --- a/src/IconShiftLockOutlined.tsx +++ b/src/IconShiftLockOutlined.tsx @@ -8,4 +8,4 @@ const IconShiftLockOutlined: React.FC = ({ ...props }) => ( ) -export { IconShiftLockOutlined as default } +export default IconShiftLockOutlined diff --git a/src/IconShiftLockOutlinedFilled.tsx b/src/IconShiftLockOutlinedFilled.tsx index 5f063682d..a41432091 100644 --- a/src/IconShiftLockOutlinedFilled.tsx +++ b/src/IconShiftLockOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconShiftLockOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconShiftLockOutlinedFilled as default } +export default IconShiftLockOutlinedFilled diff --git a/src/IconShiftLockRounded.tsx b/src/IconShiftLockRounded.tsx index cfb8f0ab9..53451119c 100644 --- a/src/IconShiftLockRounded.tsx +++ b/src/IconShiftLockRounded.tsx @@ -8,4 +8,4 @@ const IconShiftLockRounded: React.FC = ({ ...props }) => ( ) -export { IconShiftLockRounded as default } +export default IconShiftLockRounded diff --git a/src/IconShiftLockRoundedFilled.tsx b/src/IconShiftLockRoundedFilled.tsx index 8a3b2f1b4..eadc570fc 100644 --- a/src/IconShiftLockRoundedFilled.tsx +++ b/src/IconShiftLockRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconShiftLockRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconShiftLockRoundedFilled as default } +export default IconShiftLockRoundedFilled diff --git a/src/IconShiftLockSharp.tsx b/src/IconShiftLockSharp.tsx index 52467d45d..343f7c724 100644 --- a/src/IconShiftLockSharp.tsx +++ b/src/IconShiftLockSharp.tsx @@ -8,4 +8,4 @@ const IconShiftLockSharp: React.FC = ({ ...props }) => ( ) -export { IconShiftLockSharp as default } +export default IconShiftLockSharp diff --git a/src/IconShiftLockSharpFilled.tsx b/src/IconShiftLockSharpFilled.tsx index e0272e419..05cccea18 100644 --- a/src/IconShiftLockSharpFilled.tsx +++ b/src/IconShiftLockSharpFilled.tsx @@ -8,4 +8,4 @@ const IconShiftLockSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconShiftLockSharpFilled as default } +export default IconShiftLockSharpFilled diff --git a/src/IconShiftOutlined.tsx b/src/IconShiftOutlined.tsx index 7c7dcf5e7..c55bc7d15 100644 --- a/src/IconShiftOutlined.tsx +++ b/src/IconShiftOutlined.tsx @@ -8,4 +8,4 @@ const IconShiftOutlined: React.FC = ({ ...props }) => ( ) -export { IconShiftOutlined as default } +export default IconShiftOutlined diff --git a/src/IconShiftOutlinedFilled.tsx b/src/IconShiftOutlinedFilled.tsx index ada39d24c..094495c0f 100644 --- a/src/IconShiftOutlinedFilled.tsx +++ b/src/IconShiftOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconShiftOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconShiftOutlinedFilled as default } +export default IconShiftOutlinedFilled diff --git a/src/IconShiftRounded.tsx b/src/IconShiftRounded.tsx index e39f87f44..b891fc17b 100644 --- a/src/IconShiftRounded.tsx +++ b/src/IconShiftRounded.tsx @@ -8,4 +8,4 @@ const IconShiftRounded: React.FC = ({ ...props }) => ( ) -export { IconShiftRounded as default } +export default IconShiftRounded diff --git a/src/IconShiftRoundedFilled.tsx b/src/IconShiftRoundedFilled.tsx index f93861fee..bbdd1634f 100644 --- a/src/IconShiftRoundedFilled.tsx +++ b/src/IconShiftRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconShiftRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconShiftRoundedFilled as default } +export default IconShiftRoundedFilled diff --git a/src/IconShiftSharp.tsx b/src/IconShiftSharp.tsx index 0ffca648d..a5ac1971a 100644 --- a/src/IconShiftSharp.tsx +++ b/src/IconShiftSharp.tsx @@ -8,4 +8,4 @@ const IconShiftSharp: React.FC = ({ ...props }) => ( ) -export { IconShiftSharp as default } +export default IconShiftSharp diff --git a/src/IconShiftSharpFilled.tsx b/src/IconShiftSharpFilled.tsx index c81005af6..74ed4dedc 100644 --- a/src/IconShiftSharpFilled.tsx +++ b/src/IconShiftSharpFilled.tsx @@ -8,4 +8,4 @@ const IconShiftSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconShiftSharpFilled as default } +export default IconShiftSharpFilled diff --git a/src/IconShopOutlined.tsx b/src/IconShopOutlined.tsx index 1e0c70521..c84c524d5 100644 --- a/src/IconShopOutlined.tsx +++ b/src/IconShopOutlined.tsx @@ -8,4 +8,4 @@ const IconShopOutlined: React.FC = ({ ...props }) => ( ) -export { IconShopOutlined as default } +export default IconShopOutlined diff --git a/src/IconShopOutlinedFilled.tsx b/src/IconShopOutlinedFilled.tsx index 2a7b56ebb..cfe4d510b 100644 --- a/src/IconShopOutlinedFilled.tsx +++ b/src/IconShopOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconShopOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconShopOutlinedFilled as default } +export default IconShopOutlinedFilled diff --git a/src/IconShopRounded.tsx b/src/IconShopRounded.tsx index dee3075f1..4eea1519e 100644 --- a/src/IconShopRounded.tsx +++ b/src/IconShopRounded.tsx @@ -8,4 +8,4 @@ const IconShopRounded: React.FC = ({ ...props }) => ( ) -export { IconShopRounded as default } +export default IconShopRounded diff --git a/src/IconShopRoundedFilled.tsx b/src/IconShopRoundedFilled.tsx index 1a48384d2..f5d83edb3 100644 --- a/src/IconShopRoundedFilled.tsx +++ b/src/IconShopRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconShopRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconShopRoundedFilled as default } +export default IconShopRoundedFilled diff --git a/src/IconShopSharp.tsx b/src/IconShopSharp.tsx index 39e805e75..c81af53bb 100644 --- a/src/IconShopSharp.tsx +++ b/src/IconShopSharp.tsx @@ -8,4 +8,4 @@ const IconShopSharp: React.FC = ({ ...props }) => ( ) -export { IconShopSharp as default } +export default IconShopSharp diff --git a/src/IconShopSharpFilled.tsx b/src/IconShopSharpFilled.tsx index cca1e63d8..bbf67fe59 100644 --- a/src/IconShopSharpFilled.tsx +++ b/src/IconShopSharpFilled.tsx @@ -8,4 +8,4 @@ const IconShopSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconShopSharpFilled as default } +export default IconShopSharpFilled diff --git a/src/IconShopTwoOutlined.tsx b/src/IconShopTwoOutlined.tsx index d175c8d07..f6d47e03f 100644 --- a/src/IconShopTwoOutlined.tsx +++ b/src/IconShopTwoOutlined.tsx @@ -8,4 +8,4 @@ const IconShopTwoOutlined: React.FC = ({ ...props }) => ( ) -export { IconShopTwoOutlined as default } +export default IconShopTwoOutlined diff --git a/src/IconShopTwoOutlinedFilled.tsx b/src/IconShopTwoOutlinedFilled.tsx index d75bbf8dc..f8cae527f 100644 --- a/src/IconShopTwoOutlinedFilled.tsx +++ b/src/IconShopTwoOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconShopTwoOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconShopTwoOutlinedFilled as default } +export default IconShopTwoOutlinedFilled diff --git a/src/IconShopTwoRounded.tsx b/src/IconShopTwoRounded.tsx index 3d0489cdc..e2f176def 100644 --- a/src/IconShopTwoRounded.tsx +++ b/src/IconShopTwoRounded.tsx @@ -8,4 +8,4 @@ const IconShopTwoRounded: React.FC = ({ ...props }) => ( ) -export { IconShopTwoRounded as default } +export default IconShopTwoRounded diff --git a/src/IconShopTwoRoundedFilled.tsx b/src/IconShopTwoRoundedFilled.tsx index 98e4aced3..e3d07b72a 100644 --- a/src/IconShopTwoRoundedFilled.tsx +++ b/src/IconShopTwoRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconShopTwoRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconShopTwoRoundedFilled as default } +export default IconShopTwoRoundedFilled diff --git a/src/IconShopTwoSharp.tsx b/src/IconShopTwoSharp.tsx index 4b7229a2d..e145605cc 100644 --- a/src/IconShopTwoSharp.tsx +++ b/src/IconShopTwoSharp.tsx @@ -8,4 +8,4 @@ const IconShopTwoSharp: React.FC = ({ ...props }) => ( ) -export { IconShopTwoSharp as default } +export default IconShopTwoSharp diff --git a/src/IconShopTwoSharpFilled.tsx b/src/IconShopTwoSharpFilled.tsx index d58dcc493..76be9bc39 100644 --- a/src/IconShopTwoSharpFilled.tsx +++ b/src/IconShopTwoSharpFilled.tsx @@ -8,4 +8,4 @@ const IconShopTwoSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconShopTwoSharpFilled as default } +export default IconShopTwoSharpFilled diff --git a/src/IconShoppingBagOutlined.tsx b/src/IconShoppingBagOutlined.tsx index 0ac5f0db0..ef3af436b 100644 --- a/src/IconShoppingBagOutlined.tsx +++ b/src/IconShoppingBagOutlined.tsx @@ -8,4 +8,4 @@ const IconShoppingBagOutlined: React.FC = ({ ...props }) => ( ) -export { IconShoppingBagOutlined as default } +export default IconShoppingBagOutlined diff --git a/src/IconShoppingBagOutlinedFilled.tsx b/src/IconShoppingBagOutlinedFilled.tsx index 1c39f891e..8a539fd42 100644 --- a/src/IconShoppingBagOutlinedFilled.tsx +++ b/src/IconShoppingBagOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconShoppingBagOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconShoppingBagOutlinedFilled as default } +export default IconShoppingBagOutlinedFilled diff --git a/src/IconShoppingBagRounded.tsx b/src/IconShoppingBagRounded.tsx index b9aa0a685..45e8af868 100644 --- a/src/IconShoppingBagRounded.tsx +++ b/src/IconShoppingBagRounded.tsx @@ -8,4 +8,4 @@ const IconShoppingBagRounded: React.FC = ({ ...props }) => ( ) -export { IconShoppingBagRounded as default } +export default IconShoppingBagRounded diff --git a/src/IconShoppingBagRoundedFilled.tsx b/src/IconShoppingBagRoundedFilled.tsx index 765183898..948d909ce 100644 --- a/src/IconShoppingBagRoundedFilled.tsx +++ b/src/IconShoppingBagRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconShoppingBagRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconShoppingBagRoundedFilled as default } +export default IconShoppingBagRoundedFilled diff --git a/src/IconShoppingBagSharp.tsx b/src/IconShoppingBagSharp.tsx index 2f618f0ae..4135cd829 100644 --- a/src/IconShoppingBagSharp.tsx +++ b/src/IconShoppingBagSharp.tsx @@ -8,4 +8,4 @@ const IconShoppingBagSharp: React.FC = ({ ...props }) => ( ) -export { IconShoppingBagSharp as default } +export default IconShoppingBagSharp diff --git a/src/IconShoppingBagSharpFilled.tsx b/src/IconShoppingBagSharpFilled.tsx index 9aaec7e8f..636f6e8c9 100644 --- a/src/IconShoppingBagSharpFilled.tsx +++ b/src/IconShoppingBagSharpFilled.tsx @@ -8,4 +8,4 @@ const IconShoppingBagSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconShoppingBagSharpFilled as default } +export default IconShoppingBagSharpFilled diff --git a/src/IconShoppingBasketOutlined.tsx b/src/IconShoppingBasketOutlined.tsx index 647c90ecc..9221df4f1 100644 --- a/src/IconShoppingBasketOutlined.tsx +++ b/src/IconShoppingBasketOutlined.tsx @@ -8,4 +8,4 @@ const IconShoppingBasketOutlined: React.FC = ({ ...props }) => ( ) -export { IconShoppingBasketOutlined as default } +export default IconShoppingBasketOutlined diff --git a/src/IconShoppingBasketOutlinedFilled.tsx b/src/IconShoppingBasketOutlinedFilled.tsx index cd926f373..fd9d61a38 100644 --- a/src/IconShoppingBasketOutlinedFilled.tsx +++ b/src/IconShoppingBasketOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconShoppingBasketOutlinedFilled: React.FC = ({ ) -export { IconShoppingBasketOutlinedFilled as default } +export default IconShoppingBasketOutlinedFilled diff --git a/src/IconShoppingBasketRounded.tsx b/src/IconShoppingBasketRounded.tsx index 8f5ec64fd..6048de766 100644 --- a/src/IconShoppingBasketRounded.tsx +++ b/src/IconShoppingBasketRounded.tsx @@ -8,4 +8,4 @@ const IconShoppingBasketRounded: React.FC = ({ ...props }) => ( ) -export { IconShoppingBasketRounded as default } +export default IconShoppingBasketRounded diff --git a/src/IconShoppingBasketRoundedFilled.tsx b/src/IconShoppingBasketRoundedFilled.tsx index 4029f0812..c6ddb896f 100644 --- a/src/IconShoppingBasketRoundedFilled.tsx +++ b/src/IconShoppingBasketRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconShoppingBasketRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconShoppingBasketRoundedFilled as default } +export default IconShoppingBasketRoundedFilled diff --git a/src/IconShoppingBasketSharp.tsx b/src/IconShoppingBasketSharp.tsx index 02eb6a500..90a41e862 100644 --- a/src/IconShoppingBasketSharp.tsx +++ b/src/IconShoppingBasketSharp.tsx @@ -8,4 +8,4 @@ const IconShoppingBasketSharp: React.FC = ({ ...props }) => ( ) -export { IconShoppingBasketSharp as default } +export default IconShoppingBasketSharp diff --git a/src/IconShoppingBasketSharpFilled.tsx b/src/IconShoppingBasketSharpFilled.tsx index aef1c6b93..0b820c0a5 100644 --- a/src/IconShoppingBasketSharpFilled.tsx +++ b/src/IconShoppingBasketSharpFilled.tsx @@ -8,4 +8,4 @@ const IconShoppingBasketSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconShoppingBasketSharpFilled as default } +export default IconShoppingBasketSharpFilled diff --git a/src/IconShoppingCartCheckoutOutlined.tsx b/src/IconShoppingCartCheckoutOutlined.tsx index 53f5c4260..a0c078d20 100644 --- a/src/IconShoppingCartCheckoutOutlined.tsx +++ b/src/IconShoppingCartCheckoutOutlined.tsx @@ -10,4 +10,4 @@ const IconShoppingCartCheckoutOutlined: React.FC = ({ ) -export { IconShoppingCartCheckoutOutlined as default } +export default IconShoppingCartCheckoutOutlined diff --git a/src/IconShoppingCartCheckoutOutlinedFilled.tsx b/src/IconShoppingCartCheckoutOutlinedFilled.tsx index 965bb63e2..cb54448a0 100644 --- a/src/IconShoppingCartCheckoutOutlinedFilled.tsx +++ b/src/IconShoppingCartCheckoutOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconShoppingCartCheckoutOutlinedFilled: React.FC = ({ ) -export { IconShoppingCartCheckoutOutlinedFilled as default } +export default IconShoppingCartCheckoutOutlinedFilled diff --git a/src/IconShoppingCartCheckoutRounded.tsx b/src/IconShoppingCartCheckoutRounded.tsx index 7e6e048d2..dea947e16 100644 --- a/src/IconShoppingCartCheckoutRounded.tsx +++ b/src/IconShoppingCartCheckoutRounded.tsx @@ -8,4 +8,4 @@ const IconShoppingCartCheckoutRounded: React.FC = ({ ...props }) => ( ) -export { IconShoppingCartCheckoutRounded as default } +export default IconShoppingCartCheckoutRounded diff --git a/src/IconShoppingCartCheckoutRoundedFilled.tsx b/src/IconShoppingCartCheckoutRoundedFilled.tsx index 4f67659b2..c0afda77a 100644 --- a/src/IconShoppingCartCheckoutRoundedFilled.tsx +++ b/src/IconShoppingCartCheckoutRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconShoppingCartCheckoutRoundedFilled: React.FC = ({ ) -export { IconShoppingCartCheckoutRoundedFilled as default } +export default IconShoppingCartCheckoutRoundedFilled diff --git a/src/IconShoppingCartCheckoutSharp.tsx b/src/IconShoppingCartCheckoutSharp.tsx index cdb6f0517..b2e92b6f1 100644 --- a/src/IconShoppingCartCheckoutSharp.tsx +++ b/src/IconShoppingCartCheckoutSharp.tsx @@ -8,4 +8,4 @@ const IconShoppingCartCheckoutSharp: React.FC = ({ ...props }) => ( ) -export { IconShoppingCartCheckoutSharp as default } +export default IconShoppingCartCheckoutSharp diff --git a/src/IconShoppingCartCheckoutSharpFilled.tsx b/src/IconShoppingCartCheckoutSharpFilled.tsx index f5d907b92..c544fceb8 100644 --- a/src/IconShoppingCartCheckoutSharpFilled.tsx +++ b/src/IconShoppingCartCheckoutSharpFilled.tsx @@ -10,4 +10,4 @@ const IconShoppingCartCheckoutSharpFilled: React.FC = ({ ) -export { IconShoppingCartCheckoutSharpFilled as default } +export default IconShoppingCartCheckoutSharpFilled diff --git a/src/IconShoppingCartOffOutlined.tsx b/src/IconShoppingCartOffOutlined.tsx index 765c34d51..f7f52614a 100644 --- a/src/IconShoppingCartOffOutlined.tsx +++ b/src/IconShoppingCartOffOutlined.tsx @@ -8,4 +8,4 @@ const IconShoppingCartOffOutlined: React.FC = ({ ...props }) => ( ) -export { IconShoppingCartOffOutlined as default } +export default IconShoppingCartOffOutlined diff --git a/src/IconShoppingCartOffOutlinedFilled.tsx b/src/IconShoppingCartOffOutlinedFilled.tsx index 9ec1be02c..ee6bb89bb 100644 --- a/src/IconShoppingCartOffOutlinedFilled.tsx +++ b/src/IconShoppingCartOffOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconShoppingCartOffOutlinedFilled: React.FC = ({ ) -export { IconShoppingCartOffOutlinedFilled as default } +export default IconShoppingCartOffOutlinedFilled diff --git a/src/IconShoppingCartOffRounded.tsx b/src/IconShoppingCartOffRounded.tsx index 560631d23..70d67806b 100644 --- a/src/IconShoppingCartOffRounded.tsx +++ b/src/IconShoppingCartOffRounded.tsx @@ -8,4 +8,4 @@ const IconShoppingCartOffRounded: React.FC = ({ ...props }) => ( ) -export { IconShoppingCartOffRounded as default } +export default IconShoppingCartOffRounded diff --git a/src/IconShoppingCartOffRoundedFilled.tsx b/src/IconShoppingCartOffRoundedFilled.tsx index bb822931c..e0e69b84b 100644 --- a/src/IconShoppingCartOffRoundedFilled.tsx +++ b/src/IconShoppingCartOffRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconShoppingCartOffRoundedFilled: React.FC = ({ ) -export { IconShoppingCartOffRoundedFilled as default } +export default IconShoppingCartOffRoundedFilled diff --git a/src/IconShoppingCartOffSharp.tsx b/src/IconShoppingCartOffSharp.tsx index 45d2f4126..6d96f30ef 100644 --- a/src/IconShoppingCartOffSharp.tsx +++ b/src/IconShoppingCartOffSharp.tsx @@ -8,4 +8,4 @@ const IconShoppingCartOffSharp: React.FC = ({ ...props }) => ( ) -export { IconShoppingCartOffSharp as default } +export default IconShoppingCartOffSharp diff --git a/src/IconShoppingCartOffSharpFilled.tsx b/src/IconShoppingCartOffSharpFilled.tsx index dab249bf0..bc75135ef 100644 --- a/src/IconShoppingCartOffSharpFilled.tsx +++ b/src/IconShoppingCartOffSharpFilled.tsx @@ -8,4 +8,4 @@ const IconShoppingCartOffSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconShoppingCartOffSharpFilled as default } +export default IconShoppingCartOffSharpFilled diff --git a/src/IconShoppingCartOutlined.tsx b/src/IconShoppingCartOutlined.tsx index 58833b5bc..2def7672c 100644 --- a/src/IconShoppingCartOutlined.tsx +++ b/src/IconShoppingCartOutlined.tsx @@ -8,4 +8,4 @@ const IconShoppingCartOutlined: React.FC = ({ ...props }) => ( ) -export { IconShoppingCartOutlined as default } +export default IconShoppingCartOutlined diff --git a/src/IconShoppingCartOutlinedFilled.tsx b/src/IconShoppingCartOutlinedFilled.tsx index 73d36d8b7..758819993 100644 --- a/src/IconShoppingCartOutlinedFilled.tsx +++ b/src/IconShoppingCartOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconShoppingCartOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconShoppingCartOutlinedFilled as default } +export default IconShoppingCartOutlinedFilled diff --git a/src/IconShoppingCartRounded.tsx b/src/IconShoppingCartRounded.tsx index 113e5724f..6683cd2ab 100644 --- a/src/IconShoppingCartRounded.tsx +++ b/src/IconShoppingCartRounded.tsx @@ -8,4 +8,4 @@ const IconShoppingCartRounded: React.FC = ({ ...props }) => ( ) -export { IconShoppingCartRounded as default } +export default IconShoppingCartRounded diff --git a/src/IconShoppingCartRoundedFilled.tsx b/src/IconShoppingCartRoundedFilled.tsx index 0b8e8093c..b6120a4dc 100644 --- a/src/IconShoppingCartRoundedFilled.tsx +++ b/src/IconShoppingCartRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconShoppingCartRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconShoppingCartRoundedFilled as default } +export default IconShoppingCartRoundedFilled diff --git a/src/IconShoppingCartSharp.tsx b/src/IconShoppingCartSharp.tsx index f84b6f15a..5df0895c0 100644 --- a/src/IconShoppingCartSharp.tsx +++ b/src/IconShoppingCartSharp.tsx @@ -8,4 +8,4 @@ const IconShoppingCartSharp: React.FC = ({ ...props }) => ( ) -export { IconShoppingCartSharp as default } +export default IconShoppingCartSharp diff --git a/src/IconShoppingCartSharpFilled.tsx b/src/IconShoppingCartSharpFilled.tsx index 2dd0696eb..8ea7f3544 100644 --- a/src/IconShoppingCartSharpFilled.tsx +++ b/src/IconShoppingCartSharpFilled.tsx @@ -8,4 +8,4 @@ const IconShoppingCartSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconShoppingCartSharpFilled as default } +export default IconShoppingCartSharpFilled diff --git a/src/IconShoppingmodeOutlined.tsx b/src/IconShoppingmodeOutlined.tsx index b60419855..e71bdccf2 100644 --- a/src/IconShoppingmodeOutlined.tsx +++ b/src/IconShoppingmodeOutlined.tsx @@ -8,4 +8,4 @@ const IconShoppingmodeOutlined: React.FC = ({ ...props }) => ( ) -export { IconShoppingmodeOutlined as default } +export default IconShoppingmodeOutlined diff --git a/src/IconShoppingmodeOutlinedFilled.tsx b/src/IconShoppingmodeOutlinedFilled.tsx index 1d6efe608..7b00f18b5 100644 --- a/src/IconShoppingmodeOutlinedFilled.tsx +++ b/src/IconShoppingmodeOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconShoppingmodeOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconShoppingmodeOutlinedFilled as default } +export default IconShoppingmodeOutlinedFilled diff --git a/src/IconShoppingmodeRounded.tsx b/src/IconShoppingmodeRounded.tsx index 0c73c4dd9..aec6d2719 100644 --- a/src/IconShoppingmodeRounded.tsx +++ b/src/IconShoppingmodeRounded.tsx @@ -8,4 +8,4 @@ const IconShoppingmodeRounded: React.FC = ({ ...props }) => ( ) -export { IconShoppingmodeRounded as default } +export default IconShoppingmodeRounded diff --git a/src/IconShoppingmodeRoundedFilled.tsx b/src/IconShoppingmodeRoundedFilled.tsx index 476507f73..c98188ee8 100644 --- a/src/IconShoppingmodeRoundedFilled.tsx +++ b/src/IconShoppingmodeRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconShoppingmodeRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconShoppingmodeRoundedFilled as default } +export default IconShoppingmodeRoundedFilled diff --git a/src/IconShoppingmodeSharp.tsx b/src/IconShoppingmodeSharp.tsx index c593317e3..610c93620 100644 --- a/src/IconShoppingmodeSharp.tsx +++ b/src/IconShoppingmodeSharp.tsx @@ -8,4 +8,4 @@ const IconShoppingmodeSharp: React.FC = ({ ...props }) => ( ) -export { IconShoppingmodeSharp as default } +export default IconShoppingmodeSharp diff --git a/src/IconShoppingmodeSharpFilled.tsx b/src/IconShoppingmodeSharpFilled.tsx index fa0274dd1..419e089f7 100644 --- a/src/IconShoppingmodeSharpFilled.tsx +++ b/src/IconShoppingmodeSharpFilled.tsx @@ -8,4 +8,4 @@ const IconShoppingmodeSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconShoppingmodeSharpFilled as default } +export default IconShoppingmodeSharpFilled diff --git a/src/IconShortStayOutlined.tsx b/src/IconShortStayOutlined.tsx index 693a47e51..1a515c05e 100644 --- a/src/IconShortStayOutlined.tsx +++ b/src/IconShortStayOutlined.tsx @@ -8,4 +8,4 @@ const IconShortStayOutlined: React.FC = ({ ...props }) => ( ) -export { IconShortStayOutlined as default } +export default IconShortStayOutlined diff --git a/src/IconShortStayOutlinedFilled.tsx b/src/IconShortStayOutlinedFilled.tsx index 16c911fa1..c64f97a39 100644 --- a/src/IconShortStayOutlinedFilled.tsx +++ b/src/IconShortStayOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconShortStayOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconShortStayOutlinedFilled as default } +export default IconShortStayOutlinedFilled diff --git a/src/IconShortStayRounded.tsx b/src/IconShortStayRounded.tsx index 6dd03e0eb..c4a215c84 100644 --- a/src/IconShortStayRounded.tsx +++ b/src/IconShortStayRounded.tsx @@ -8,4 +8,4 @@ const IconShortStayRounded: React.FC = ({ ...props }) => ( ) -export { IconShortStayRounded as default } +export default IconShortStayRounded diff --git a/src/IconShortStayRoundedFilled.tsx b/src/IconShortStayRoundedFilled.tsx index f65847c28..a6065d222 100644 --- a/src/IconShortStayRoundedFilled.tsx +++ b/src/IconShortStayRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconShortStayRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconShortStayRoundedFilled as default } +export default IconShortStayRoundedFilled diff --git a/src/IconShortStaySharp.tsx b/src/IconShortStaySharp.tsx index d44ab9627..1b3289f06 100644 --- a/src/IconShortStaySharp.tsx +++ b/src/IconShortStaySharp.tsx @@ -8,4 +8,4 @@ const IconShortStaySharp: React.FC = ({ ...props }) => ( ) -export { IconShortStaySharp as default } +export default IconShortStaySharp diff --git a/src/IconShortStaySharpFilled.tsx b/src/IconShortStaySharpFilled.tsx index 06cf5326d..e53ddb5e5 100644 --- a/src/IconShortStaySharpFilled.tsx +++ b/src/IconShortStaySharpFilled.tsx @@ -8,4 +8,4 @@ const IconShortStaySharpFilled: React.FC = ({ ...props }) => ( ) -export { IconShortStaySharpFilled as default } +export default IconShortStaySharpFilled diff --git a/src/IconShortTextOutlined.tsx b/src/IconShortTextOutlined.tsx index ad347de85..8b29e97fb 100644 --- a/src/IconShortTextOutlined.tsx +++ b/src/IconShortTextOutlined.tsx @@ -8,4 +8,4 @@ const IconShortTextOutlined: React.FC = ({ ...props }) => ( ) -export { IconShortTextOutlined as default } +export default IconShortTextOutlined diff --git a/src/IconShortTextOutlinedFilled.tsx b/src/IconShortTextOutlinedFilled.tsx index 6a0dd7157..dcf0ec2db 100644 --- a/src/IconShortTextOutlinedFilled.tsx +++ b/src/IconShortTextOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconShortTextOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconShortTextOutlinedFilled as default } +export default IconShortTextOutlinedFilled diff --git a/src/IconShortTextRounded.tsx b/src/IconShortTextRounded.tsx index 31cbbf796..8ffa343bf 100644 --- a/src/IconShortTextRounded.tsx +++ b/src/IconShortTextRounded.tsx @@ -8,4 +8,4 @@ const IconShortTextRounded: React.FC = ({ ...props }) => ( ) -export { IconShortTextRounded as default } +export default IconShortTextRounded diff --git a/src/IconShortTextRoundedFilled.tsx b/src/IconShortTextRoundedFilled.tsx index a9d6d5da9..67ccd4201 100644 --- a/src/IconShortTextRoundedFilled.tsx +++ b/src/IconShortTextRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconShortTextRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconShortTextRoundedFilled as default } +export default IconShortTextRoundedFilled diff --git a/src/IconShortTextSharp.tsx b/src/IconShortTextSharp.tsx index ee6e2d09f..24947e607 100644 --- a/src/IconShortTextSharp.tsx +++ b/src/IconShortTextSharp.tsx @@ -8,4 +8,4 @@ const IconShortTextSharp: React.FC = ({ ...props }) => ( ) -export { IconShortTextSharp as default } +export default IconShortTextSharp diff --git a/src/IconShortTextSharpFilled.tsx b/src/IconShortTextSharpFilled.tsx index 86dc7f292..501adfa70 100644 --- a/src/IconShortTextSharpFilled.tsx +++ b/src/IconShortTextSharpFilled.tsx @@ -8,4 +8,4 @@ const IconShortTextSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconShortTextSharpFilled as default } +export default IconShortTextSharpFilled diff --git a/src/IconShowChartOutlined.tsx b/src/IconShowChartOutlined.tsx index 18e0da3d9..f60f97739 100644 --- a/src/IconShowChartOutlined.tsx +++ b/src/IconShowChartOutlined.tsx @@ -8,4 +8,4 @@ const IconShowChartOutlined: React.FC = ({ ...props }) => ( ) -export { IconShowChartOutlined as default } +export default IconShowChartOutlined diff --git a/src/IconShowChartOutlinedFilled.tsx b/src/IconShowChartOutlinedFilled.tsx index a131ebd93..0f8d0973c 100644 --- a/src/IconShowChartOutlinedFilled.tsx +++ b/src/IconShowChartOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconShowChartOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconShowChartOutlinedFilled as default } +export default IconShowChartOutlinedFilled diff --git a/src/IconShowChartRounded.tsx b/src/IconShowChartRounded.tsx index 95d592eb6..14e79ddd4 100644 --- a/src/IconShowChartRounded.tsx +++ b/src/IconShowChartRounded.tsx @@ -8,4 +8,4 @@ const IconShowChartRounded: React.FC = ({ ...props }) => ( ) -export { IconShowChartRounded as default } +export default IconShowChartRounded diff --git a/src/IconShowChartRoundedFilled.tsx b/src/IconShowChartRoundedFilled.tsx index d6acdca4f..e380185bf 100644 --- a/src/IconShowChartRoundedFilled.tsx +++ b/src/IconShowChartRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconShowChartRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconShowChartRoundedFilled as default } +export default IconShowChartRoundedFilled diff --git a/src/IconShowChartSharp.tsx b/src/IconShowChartSharp.tsx index fbe58d939..e3034341c 100644 --- a/src/IconShowChartSharp.tsx +++ b/src/IconShowChartSharp.tsx @@ -8,4 +8,4 @@ const IconShowChartSharp: React.FC = ({ ...props }) => ( ) -export { IconShowChartSharp as default } +export default IconShowChartSharp diff --git a/src/IconShowChartSharpFilled.tsx b/src/IconShowChartSharpFilled.tsx index 52c96839c..a2161b827 100644 --- a/src/IconShowChartSharpFilled.tsx +++ b/src/IconShowChartSharpFilled.tsx @@ -8,4 +8,4 @@ const IconShowChartSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconShowChartSharpFilled as default } +export default IconShowChartSharpFilled diff --git a/src/IconShowerOutlined.tsx b/src/IconShowerOutlined.tsx index e94080f3f..c8e072434 100644 --- a/src/IconShowerOutlined.tsx +++ b/src/IconShowerOutlined.tsx @@ -8,4 +8,4 @@ const IconShowerOutlined: React.FC = ({ ...props }) => ( ) -export { IconShowerOutlined as default } +export default IconShowerOutlined diff --git a/src/IconShowerOutlinedFilled.tsx b/src/IconShowerOutlinedFilled.tsx index 657afd403..47edccacc 100644 --- a/src/IconShowerOutlinedFilled.tsx +++ b/src/IconShowerOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconShowerOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconShowerOutlinedFilled as default } +export default IconShowerOutlinedFilled diff --git a/src/IconShowerRounded.tsx b/src/IconShowerRounded.tsx index c2844da81..e419078d5 100644 --- a/src/IconShowerRounded.tsx +++ b/src/IconShowerRounded.tsx @@ -8,4 +8,4 @@ const IconShowerRounded: React.FC = ({ ...props }) => ( ) -export { IconShowerRounded as default } +export default IconShowerRounded diff --git a/src/IconShowerRoundedFilled.tsx b/src/IconShowerRoundedFilled.tsx index 08ed6159a..2acd18e3f 100644 --- a/src/IconShowerRoundedFilled.tsx +++ b/src/IconShowerRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconShowerRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconShowerRoundedFilled as default } +export default IconShowerRoundedFilled diff --git a/src/IconShowerSharp.tsx b/src/IconShowerSharp.tsx index cb983b171..378316b9c 100644 --- a/src/IconShowerSharp.tsx +++ b/src/IconShowerSharp.tsx @@ -8,4 +8,4 @@ const IconShowerSharp: React.FC = ({ ...props }) => ( ) -export { IconShowerSharp as default } +export default IconShowerSharp diff --git a/src/IconShowerSharpFilled.tsx b/src/IconShowerSharpFilled.tsx index 27e4b885c..a6c6a1abc 100644 --- a/src/IconShowerSharpFilled.tsx +++ b/src/IconShowerSharpFilled.tsx @@ -8,4 +8,4 @@ const IconShowerSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconShowerSharpFilled as default } +export default IconShowerSharpFilled diff --git a/src/IconShuffleOnOutlined.tsx b/src/IconShuffleOnOutlined.tsx index fef14dbdc..6740635d1 100644 --- a/src/IconShuffleOnOutlined.tsx +++ b/src/IconShuffleOnOutlined.tsx @@ -8,4 +8,4 @@ const IconShuffleOnOutlined: React.FC = ({ ...props }) => ( ) -export { IconShuffleOnOutlined as default } +export default IconShuffleOnOutlined diff --git a/src/IconShuffleOnOutlinedFilled.tsx b/src/IconShuffleOnOutlinedFilled.tsx index 419671a44..b024e77ec 100644 --- a/src/IconShuffleOnOutlinedFilled.tsx +++ b/src/IconShuffleOnOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconShuffleOnOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconShuffleOnOutlinedFilled as default } +export default IconShuffleOnOutlinedFilled diff --git a/src/IconShuffleOnRounded.tsx b/src/IconShuffleOnRounded.tsx index 3196f8ea7..aa7723843 100644 --- a/src/IconShuffleOnRounded.tsx +++ b/src/IconShuffleOnRounded.tsx @@ -8,4 +8,4 @@ const IconShuffleOnRounded: React.FC = ({ ...props }) => ( ) -export { IconShuffleOnRounded as default } +export default IconShuffleOnRounded diff --git a/src/IconShuffleOnRoundedFilled.tsx b/src/IconShuffleOnRoundedFilled.tsx index 7e48ae0af..0df343cac 100644 --- a/src/IconShuffleOnRoundedFilled.tsx +++ b/src/IconShuffleOnRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconShuffleOnRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconShuffleOnRoundedFilled as default } +export default IconShuffleOnRoundedFilled diff --git a/src/IconShuffleOnSharp.tsx b/src/IconShuffleOnSharp.tsx index 94898e498..c94260597 100644 --- a/src/IconShuffleOnSharp.tsx +++ b/src/IconShuffleOnSharp.tsx @@ -8,4 +8,4 @@ const IconShuffleOnSharp: React.FC = ({ ...props }) => ( ) -export { IconShuffleOnSharp as default } +export default IconShuffleOnSharp diff --git a/src/IconShuffleOnSharpFilled.tsx b/src/IconShuffleOnSharpFilled.tsx index 36cc7e0c9..930205c02 100644 --- a/src/IconShuffleOnSharpFilled.tsx +++ b/src/IconShuffleOnSharpFilled.tsx @@ -8,4 +8,4 @@ const IconShuffleOnSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconShuffleOnSharpFilled as default } +export default IconShuffleOnSharpFilled diff --git a/src/IconShuffleOutlined.tsx b/src/IconShuffleOutlined.tsx index 995039f8d..365d1f141 100644 --- a/src/IconShuffleOutlined.tsx +++ b/src/IconShuffleOutlined.tsx @@ -8,4 +8,4 @@ const IconShuffleOutlined: React.FC = ({ ...props }) => ( ) -export { IconShuffleOutlined as default } +export default IconShuffleOutlined diff --git a/src/IconShuffleOutlinedFilled.tsx b/src/IconShuffleOutlinedFilled.tsx index 00efb1dae..33be65537 100644 --- a/src/IconShuffleOutlinedFilled.tsx +++ b/src/IconShuffleOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconShuffleOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconShuffleOutlinedFilled as default } +export default IconShuffleOutlinedFilled diff --git a/src/IconShuffleRounded.tsx b/src/IconShuffleRounded.tsx index dcb890d0c..5c7eb9192 100644 --- a/src/IconShuffleRounded.tsx +++ b/src/IconShuffleRounded.tsx @@ -8,4 +8,4 @@ const IconShuffleRounded: React.FC = ({ ...props }) => ( ) -export { IconShuffleRounded as default } +export default IconShuffleRounded diff --git a/src/IconShuffleRoundedFilled.tsx b/src/IconShuffleRoundedFilled.tsx index b71e67487..c902ce325 100644 --- a/src/IconShuffleRoundedFilled.tsx +++ b/src/IconShuffleRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconShuffleRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconShuffleRoundedFilled as default } +export default IconShuffleRoundedFilled diff --git a/src/IconShuffleSharp.tsx b/src/IconShuffleSharp.tsx index 23137a15c..7afed91b9 100644 --- a/src/IconShuffleSharp.tsx +++ b/src/IconShuffleSharp.tsx @@ -8,4 +8,4 @@ const IconShuffleSharp: React.FC = ({ ...props }) => ( ) -export { IconShuffleSharp as default } +export default IconShuffleSharp diff --git a/src/IconShuffleSharpFilled.tsx b/src/IconShuffleSharpFilled.tsx index 1732af41c..510f32f9c 100644 --- a/src/IconShuffleSharpFilled.tsx +++ b/src/IconShuffleSharpFilled.tsx @@ -8,4 +8,4 @@ const IconShuffleSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconShuffleSharpFilled as default } +export default IconShuffleSharpFilled diff --git a/src/IconShutterSpeedAddOutlined.tsx b/src/IconShutterSpeedAddOutlined.tsx index 51a15b171..b9bbd84b3 100644 --- a/src/IconShutterSpeedAddOutlined.tsx +++ b/src/IconShutterSpeedAddOutlined.tsx @@ -8,4 +8,4 @@ const IconShutterSpeedAddOutlined: React.FC = ({ ...props }) => ( ) -export { IconShutterSpeedAddOutlined as default } +export default IconShutterSpeedAddOutlined diff --git a/src/IconShutterSpeedAddOutlinedFilled.tsx b/src/IconShutterSpeedAddOutlinedFilled.tsx index 0bca89289..6805f3cee 100644 --- a/src/IconShutterSpeedAddOutlinedFilled.tsx +++ b/src/IconShutterSpeedAddOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconShutterSpeedAddOutlinedFilled: React.FC = ({ ) -export { IconShutterSpeedAddOutlinedFilled as default } +export default IconShutterSpeedAddOutlinedFilled diff --git a/src/IconShutterSpeedAddRounded.tsx b/src/IconShutterSpeedAddRounded.tsx index 976be853d..f3cdcab67 100644 --- a/src/IconShutterSpeedAddRounded.tsx +++ b/src/IconShutterSpeedAddRounded.tsx @@ -8,4 +8,4 @@ const IconShutterSpeedAddRounded: React.FC = ({ ...props }) => ( ) -export { IconShutterSpeedAddRounded as default } +export default IconShutterSpeedAddRounded diff --git a/src/IconShutterSpeedAddRoundedFilled.tsx b/src/IconShutterSpeedAddRoundedFilled.tsx index 8d5f55087..91c8148c3 100644 --- a/src/IconShutterSpeedAddRoundedFilled.tsx +++ b/src/IconShutterSpeedAddRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconShutterSpeedAddRoundedFilled: React.FC = ({ ) -export { IconShutterSpeedAddRoundedFilled as default } +export default IconShutterSpeedAddRoundedFilled diff --git a/src/IconShutterSpeedAddSharp.tsx b/src/IconShutterSpeedAddSharp.tsx index a00b00091..a6dcc80d7 100644 --- a/src/IconShutterSpeedAddSharp.tsx +++ b/src/IconShutterSpeedAddSharp.tsx @@ -8,4 +8,4 @@ const IconShutterSpeedAddSharp: React.FC = ({ ...props }) => ( ) -export { IconShutterSpeedAddSharp as default } +export default IconShutterSpeedAddSharp diff --git a/src/IconShutterSpeedAddSharpFilled.tsx b/src/IconShutterSpeedAddSharpFilled.tsx index 9494f2a3d..61c25ca7d 100644 --- a/src/IconShutterSpeedAddSharpFilled.tsx +++ b/src/IconShutterSpeedAddSharpFilled.tsx @@ -8,4 +8,4 @@ const IconShutterSpeedAddSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconShutterSpeedAddSharpFilled as default } +export default IconShutterSpeedAddSharpFilled diff --git a/src/IconShutterSpeedMinusOutlined.tsx b/src/IconShutterSpeedMinusOutlined.tsx index 8d0fb3522..7fb30e86f 100644 --- a/src/IconShutterSpeedMinusOutlined.tsx +++ b/src/IconShutterSpeedMinusOutlined.tsx @@ -8,4 +8,4 @@ const IconShutterSpeedMinusOutlined: React.FC = ({ ...props }) => ( ) -export { IconShutterSpeedMinusOutlined as default } +export default IconShutterSpeedMinusOutlined diff --git a/src/IconShutterSpeedMinusOutlinedFilled.tsx b/src/IconShutterSpeedMinusOutlinedFilled.tsx index fc3e3e5ac..6e3604de7 100644 --- a/src/IconShutterSpeedMinusOutlinedFilled.tsx +++ b/src/IconShutterSpeedMinusOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconShutterSpeedMinusOutlinedFilled: React.FC = ({ ) -export { IconShutterSpeedMinusOutlinedFilled as default } +export default IconShutterSpeedMinusOutlinedFilled diff --git a/src/IconShutterSpeedMinusRounded.tsx b/src/IconShutterSpeedMinusRounded.tsx index 60795f1ae..62d6370d6 100644 --- a/src/IconShutterSpeedMinusRounded.tsx +++ b/src/IconShutterSpeedMinusRounded.tsx @@ -8,4 +8,4 @@ const IconShutterSpeedMinusRounded: React.FC = ({ ...props }) => ( ) -export { IconShutterSpeedMinusRounded as default } +export default IconShutterSpeedMinusRounded diff --git a/src/IconShutterSpeedMinusRoundedFilled.tsx b/src/IconShutterSpeedMinusRoundedFilled.tsx index a5c746fbf..04e7830f2 100644 --- a/src/IconShutterSpeedMinusRoundedFilled.tsx +++ b/src/IconShutterSpeedMinusRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconShutterSpeedMinusRoundedFilled: React.FC = ({ ) -export { IconShutterSpeedMinusRoundedFilled as default } +export default IconShutterSpeedMinusRoundedFilled diff --git a/src/IconShutterSpeedMinusSharp.tsx b/src/IconShutterSpeedMinusSharp.tsx index 1fcd8c674..7aee1f15d 100644 --- a/src/IconShutterSpeedMinusSharp.tsx +++ b/src/IconShutterSpeedMinusSharp.tsx @@ -8,4 +8,4 @@ const IconShutterSpeedMinusSharp: React.FC = ({ ...props }) => ( ) -export { IconShutterSpeedMinusSharp as default } +export default IconShutterSpeedMinusSharp diff --git a/src/IconShutterSpeedMinusSharpFilled.tsx b/src/IconShutterSpeedMinusSharpFilled.tsx index 6e542e952..a4e9736ae 100644 --- a/src/IconShutterSpeedMinusSharpFilled.tsx +++ b/src/IconShutterSpeedMinusSharpFilled.tsx @@ -10,4 +10,4 @@ const IconShutterSpeedMinusSharpFilled: React.FC = ({ ) -export { IconShutterSpeedMinusSharpFilled as default } +export default IconShutterSpeedMinusSharpFilled diff --git a/src/IconShutterSpeedOutlinedFilled.tsx b/src/IconShutterSpeedOutlinedFilled.tsx index 138852f27..c7370954d 100644 --- a/src/IconShutterSpeedOutlinedFilled.tsx +++ b/src/IconShutterSpeedOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconShutterSpeedOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconShutterSpeedOutlinedFilled as default } +export default IconShutterSpeedOutlinedFilled diff --git a/src/IconShutterSpeedRounded.tsx b/src/IconShutterSpeedRounded.tsx index 79d6e9340..f71356d93 100644 --- a/src/IconShutterSpeedRounded.tsx +++ b/src/IconShutterSpeedRounded.tsx @@ -8,4 +8,4 @@ const IconShutterSpeedRounded: React.FC = ({ ...props }) => ( ) -export { IconShutterSpeedRounded as default } +export default IconShutterSpeedRounded diff --git a/src/IconShutterSpeedRoundedFilled.tsx b/src/IconShutterSpeedRoundedFilled.tsx index ac6acba48..6b550f881 100644 --- a/src/IconShutterSpeedRoundedFilled.tsx +++ b/src/IconShutterSpeedRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconShutterSpeedRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconShutterSpeedRoundedFilled as default } +export default IconShutterSpeedRoundedFilled diff --git a/src/IconShutterSpeedSharp.tsx b/src/IconShutterSpeedSharp.tsx index 21787f605..a46f9d862 100644 --- a/src/IconShutterSpeedSharp.tsx +++ b/src/IconShutterSpeedSharp.tsx @@ -8,4 +8,4 @@ const IconShutterSpeedSharp: React.FC = ({ ...props }) => ( ) -export { IconShutterSpeedSharp as default } +export default IconShutterSpeedSharp diff --git a/src/IconShutterSpeedSharpFilled.tsx b/src/IconShutterSpeedSharpFilled.tsx index db65644ab..758304a7d 100644 --- a/src/IconShutterSpeedSharpFilled.tsx +++ b/src/IconShutterSpeedSharpFilled.tsx @@ -8,4 +8,4 @@ const IconShutterSpeedSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconShutterSpeedSharpFilled as default } +export default IconShutterSpeedSharpFilled diff --git a/src/IconSickOutlined.tsx b/src/IconSickOutlined.tsx index a718c27c1..c1f619f74 100644 --- a/src/IconSickOutlined.tsx +++ b/src/IconSickOutlined.tsx @@ -8,4 +8,4 @@ const IconSickOutlined: React.FC = ({ ...props }) => ( ) -export { IconSickOutlined as default } +export default IconSickOutlined diff --git a/src/IconSickOutlinedFilled.tsx b/src/IconSickOutlinedFilled.tsx index d7ce926fe..3b957a184 100644 --- a/src/IconSickOutlinedFilled.tsx +++ b/src/IconSickOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconSickOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconSickOutlinedFilled as default } +export default IconSickOutlinedFilled diff --git a/src/IconSickRounded.tsx b/src/IconSickRounded.tsx index b0ba1f42e..7f6334b42 100644 --- a/src/IconSickRounded.tsx +++ b/src/IconSickRounded.tsx @@ -8,4 +8,4 @@ const IconSickRounded: React.FC = ({ ...props }) => ( ) -export { IconSickRounded as default } +export default IconSickRounded diff --git a/src/IconSickRoundedFilled.tsx b/src/IconSickRoundedFilled.tsx index 58209d00c..b7dcac7ae 100644 --- a/src/IconSickRoundedFilled.tsx +++ b/src/IconSickRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconSickRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconSickRoundedFilled as default } +export default IconSickRoundedFilled diff --git a/src/IconSickSharp.tsx b/src/IconSickSharp.tsx index ccbfee418..8f69cad60 100644 --- a/src/IconSickSharp.tsx +++ b/src/IconSickSharp.tsx @@ -8,4 +8,4 @@ const IconSickSharp: React.FC = ({ ...props }) => ( ) -export { IconSickSharp as default } +export default IconSickSharp diff --git a/src/IconSickSharpFilled.tsx b/src/IconSickSharpFilled.tsx index 948a580c6..bc6ec69f5 100644 --- a/src/IconSickSharpFilled.tsx +++ b/src/IconSickSharpFilled.tsx @@ -8,4 +8,4 @@ const IconSickSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconSickSharpFilled as default } +export default IconSickSharpFilled diff --git a/src/IconSideNavigationOutlined.tsx b/src/IconSideNavigationOutlined.tsx index a84cd7349..dd29a4b35 100644 --- a/src/IconSideNavigationOutlined.tsx +++ b/src/IconSideNavigationOutlined.tsx @@ -8,4 +8,4 @@ const IconSideNavigationOutlined: React.FC = ({ ...props }) => ( ) -export { IconSideNavigationOutlined as default } +export default IconSideNavigationOutlined diff --git a/src/IconSideNavigationOutlinedFilled.tsx b/src/IconSideNavigationOutlinedFilled.tsx index 898f95202..56b9fbd7c 100644 --- a/src/IconSideNavigationOutlinedFilled.tsx +++ b/src/IconSideNavigationOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconSideNavigationOutlinedFilled: React.FC = ({ ) -export { IconSideNavigationOutlinedFilled as default } +export default IconSideNavigationOutlinedFilled diff --git a/src/IconSideNavigationRounded.tsx b/src/IconSideNavigationRounded.tsx index 9aae4f3ed..e6d719cf1 100644 --- a/src/IconSideNavigationRounded.tsx +++ b/src/IconSideNavigationRounded.tsx @@ -8,4 +8,4 @@ const IconSideNavigationRounded: React.FC = ({ ...props }) => ( ) -export { IconSideNavigationRounded as default } +export default IconSideNavigationRounded diff --git a/src/IconSideNavigationRoundedFilled.tsx b/src/IconSideNavigationRoundedFilled.tsx index 663e86794..4ebe83955 100644 --- a/src/IconSideNavigationRoundedFilled.tsx +++ b/src/IconSideNavigationRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconSideNavigationRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconSideNavigationRoundedFilled as default } +export default IconSideNavigationRoundedFilled diff --git a/src/IconSideNavigationSharp.tsx b/src/IconSideNavigationSharp.tsx index a7d118b20..2ab82f15c 100644 --- a/src/IconSideNavigationSharp.tsx +++ b/src/IconSideNavigationSharp.tsx @@ -8,4 +8,4 @@ const IconSideNavigationSharp: React.FC = ({ ...props }) => ( ) -export { IconSideNavigationSharp as default } +export default IconSideNavigationSharp diff --git a/src/IconSideNavigationSharpFilled.tsx b/src/IconSideNavigationSharpFilled.tsx index b9defef77..d1982d2d6 100644 --- a/src/IconSideNavigationSharpFilled.tsx +++ b/src/IconSideNavigationSharpFilled.tsx @@ -8,4 +8,4 @@ const IconSideNavigationSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconSideNavigationSharpFilled as default } +export default IconSideNavigationSharpFilled diff --git a/src/IconSignLanguageOutlined.tsx b/src/IconSignLanguageOutlined.tsx index f07b0c0ea..ec1dc471d 100644 --- a/src/IconSignLanguageOutlined.tsx +++ b/src/IconSignLanguageOutlined.tsx @@ -8,4 +8,4 @@ const IconSignLanguageOutlined: React.FC = ({ ...props }) => ( ) -export { IconSignLanguageOutlined as default } +export default IconSignLanguageOutlined diff --git a/src/IconSignLanguageOutlinedFilled.tsx b/src/IconSignLanguageOutlinedFilled.tsx index 2932bade3..e79acd1e4 100644 --- a/src/IconSignLanguageOutlinedFilled.tsx +++ b/src/IconSignLanguageOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconSignLanguageOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconSignLanguageOutlinedFilled as default } +export default IconSignLanguageOutlinedFilled diff --git a/src/IconSignLanguageRounded.tsx b/src/IconSignLanguageRounded.tsx index 72e995921..f8a7cac83 100644 --- a/src/IconSignLanguageRounded.tsx +++ b/src/IconSignLanguageRounded.tsx @@ -8,4 +8,4 @@ const IconSignLanguageRounded: React.FC = ({ ...props }) => ( ) -export { IconSignLanguageRounded as default } +export default IconSignLanguageRounded diff --git a/src/IconSignLanguageRoundedFilled.tsx b/src/IconSignLanguageRoundedFilled.tsx index 7f215d3fb..1a362e7db 100644 --- a/src/IconSignLanguageRoundedFilled.tsx +++ b/src/IconSignLanguageRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconSignLanguageRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconSignLanguageRoundedFilled as default } +export default IconSignLanguageRoundedFilled diff --git a/src/IconSignLanguageSharp.tsx b/src/IconSignLanguageSharp.tsx index 5281960bc..b21915d68 100644 --- a/src/IconSignLanguageSharp.tsx +++ b/src/IconSignLanguageSharp.tsx @@ -8,4 +8,4 @@ const IconSignLanguageSharp: React.FC = ({ ...props }) => ( ) -export { IconSignLanguageSharp as default } +export default IconSignLanguageSharp diff --git a/src/IconSignLanguageSharpFilled.tsx b/src/IconSignLanguageSharpFilled.tsx index 686555097..795ed149b 100644 --- a/src/IconSignLanguageSharpFilled.tsx +++ b/src/IconSignLanguageSharpFilled.tsx @@ -8,4 +8,4 @@ const IconSignLanguageSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconSignLanguageSharpFilled as default } +export default IconSignLanguageSharpFilled diff --git a/src/IconSignalCellular0BarOutlined.tsx b/src/IconSignalCellular0BarOutlined.tsx index 9df6ed73e..af8d14963 100644 --- a/src/IconSignalCellular0BarOutlined.tsx +++ b/src/IconSignalCellular0BarOutlined.tsx @@ -8,4 +8,4 @@ const IconSignalCellular0BarOutlined: React.FC = ({ ...props }) => ( ) -export { IconSignalCellular0BarOutlined as default } +export default IconSignalCellular0BarOutlined diff --git a/src/IconSignalCellular0BarOutlinedFilled.tsx b/src/IconSignalCellular0BarOutlinedFilled.tsx index 9c0ad091b..372c79cc4 100644 --- a/src/IconSignalCellular0BarOutlinedFilled.tsx +++ b/src/IconSignalCellular0BarOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconSignalCellular0BarOutlinedFilled: React.FC = ({ ) -export { IconSignalCellular0BarOutlinedFilled as default } +export default IconSignalCellular0BarOutlinedFilled diff --git a/src/IconSignalCellular0BarRounded.tsx b/src/IconSignalCellular0BarRounded.tsx index fd0d6e72c..60c5f39b9 100644 --- a/src/IconSignalCellular0BarRounded.tsx +++ b/src/IconSignalCellular0BarRounded.tsx @@ -8,4 +8,4 @@ const IconSignalCellular0BarRounded: React.FC = ({ ...props }) => ( ) -export { IconSignalCellular0BarRounded as default } +export default IconSignalCellular0BarRounded diff --git a/src/IconSignalCellular0BarRoundedFilled.tsx b/src/IconSignalCellular0BarRoundedFilled.tsx index 941811f49..6424ab7f2 100644 --- a/src/IconSignalCellular0BarRoundedFilled.tsx +++ b/src/IconSignalCellular0BarRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconSignalCellular0BarRoundedFilled: React.FC = ({ ) -export { IconSignalCellular0BarRoundedFilled as default } +export default IconSignalCellular0BarRoundedFilled diff --git a/src/IconSignalCellular0BarSharp.tsx b/src/IconSignalCellular0BarSharp.tsx index 833249bdd..620072271 100644 --- a/src/IconSignalCellular0BarSharp.tsx +++ b/src/IconSignalCellular0BarSharp.tsx @@ -8,4 +8,4 @@ const IconSignalCellular0BarSharp: React.FC = ({ ...props }) => ( ) -export { IconSignalCellular0BarSharp as default } +export default IconSignalCellular0BarSharp diff --git a/src/IconSignalCellular0BarSharpFilled.tsx b/src/IconSignalCellular0BarSharpFilled.tsx index 3d865b646..be28ab65e 100644 --- a/src/IconSignalCellular0BarSharpFilled.tsx +++ b/src/IconSignalCellular0BarSharpFilled.tsx @@ -10,4 +10,4 @@ const IconSignalCellular0BarSharpFilled: React.FC = ({ ) -export { IconSignalCellular0BarSharpFilled as default } +export default IconSignalCellular0BarSharpFilled diff --git a/src/IconSignalCellular1BarOutlined.tsx b/src/IconSignalCellular1BarOutlined.tsx index ce67a1bdb..be9d7f6dd 100644 --- a/src/IconSignalCellular1BarOutlined.tsx +++ b/src/IconSignalCellular1BarOutlined.tsx @@ -8,4 +8,4 @@ const IconSignalCellular1BarOutlined: React.FC = ({ ...props }) => ( ) -export { IconSignalCellular1BarOutlined as default } +export default IconSignalCellular1BarOutlined diff --git a/src/IconSignalCellular1BarOutlinedFilled.tsx b/src/IconSignalCellular1BarOutlinedFilled.tsx index c519c3458..a82bade42 100644 --- a/src/IconSignalCellular1BarOutlinedFilled.tsx +++ b/src/IconSignalCellular1BarOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconSignalCellular1BarOutlinedFilled: React.FC = ({ ) -export { IconSignalCellular1BarOutlinedFilled as default } +export default IconSignalCellular1BarOutlinedFilled diff --git a/src/IconSignalCellular1BarRounded.tsx b/src/IconSignalCellular1BarRounded.tsx index 9f9894ef8..b122cb0c8 100644 --- a/src/IconSignalCellular1BarRounded.tsx +++ b/src/IconSignalCellular1BarRounded.tsx @@ -8,4 +8,4 @@ const IconSignalCellular1BarRounded: React.FC = ({ ...props }) => ( ) -export { IconSignalCellular1BarRounded as default } +export default IconSignalCellular1BarRounded diff --git a/src/IconSignalCellular1BarRoundedFilled.tsx b/src/IconSignalCellular1BarRoundedFilled.tsx index 17ca8fdab..989d939fd 100644 --- a/src/IconSignalCellular1BarRoundedFilled.tsx +++ b/src/IconSignalCellular1BarRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconSignalCellular1BarRoundedFilled: React.FC = ({ ) -export { IconSignalCellular1BarRoundedFilled as default } +export default IconSignalCellular1BarRoundedFilled diff --git a/src/IconSignalCellular1BarSharp.tsx b/src/IconSignalCellular1BarSharp.tsx index a5da9b20e..4ed63f7b6 100644 --- a/src/IconSignalCellular1BarSharp.tsx +++ b/src/IconSignalCellular1BarSharp.tsx @@ -8,4 +8,4 @@ const IconSignalCellular1BarSharp: React.FC = ({ ...props }) => ( ) -export { IconSignalCellular1BarSharp as default } +export default IconSignalCellular1BarSharp diff --git a/src/IconSignalCellular1BarSharpFilled.tsx b/src/IconSignalCellular1BarSharpFilled.tsx index 426595545..c36b6a268 100644 --- a/src/IconSignalCellular1BarSharpFilled.tsx +++ b/src/IconSignalCellular1BarSharpFilled.tsx @@ -10,4 +10,4 @@ const IconSignalCellular1BarSharpFilled: React.FC = ({ ) -export { IconSignalCellular1BarSharpFilled as default } +export default IconSignalCellular1BarSharpFilled diff --git a/src/IconSignalCellular2BarOutlined.tsx b/src/IconSignalCellular2BarOutlined.tsx index 68b04ed39..c7b969ab5 100644 --- a/src/IconSignalCellular2BarOutlined.tsx +++ b/src/IconSignalCellular2BarOutlined.tsx @@ -8,4 +8,4 @@ const IconSignalCellular2BarOutlined: React.FC = ({ ...props }) => ( ) -export { IconSignalCellular2BarOutlined as default } +export default IconSignalCellular2BarOutlined diff --git a/src/IconSignalCellular2BarOutlinedFilled.tsx b/src/IconSignalCellular2BarOutlinedFilled.tsx index 78201d40f..e68f35b88 100644 --- a/src/IconSignalCellular2BarOutlinedFilled.tsx +++ b/src/IconSignalCellular2BarOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconSignalCellular2BarOutlinedFilled: React.FC = ({ ) -export { IconSignalCellular2BarOutlinedFilled as default } +export default IconSignalCellular2BarOutlinedFilled diff --git a/src/IconSignalCellular2BarRounded.tsx b/src/IconSignalCellular2BarRounded.tsx index d8bd0eece..3e8b87fde 100644 --- a/src/IconSignalCellular2BarRounded.tsx +++ b/src/IconSignalCellular2BarRounded.tsx @@ -8,4 +8,4 @@ const IconSignalCellular2BarRounded: React.FC = ({ ...props }) => ( ) -export { IconSignalCellular2BarRounded as default } +export default IconSignalCellular2BarRounded diff --git a/src/IconSignalCellular2BarRoundedFilled.tsx b/src/IconSignalCellular2BarRoundedFilled.tsx index 978aad490..de07aa663 100644 --- a/src/IconSignalCellular2BarRoundedFilled.tsx +++ b/src/IconSignalCellular2BarRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconSignalCellular2BarRoundedFilled: React.FC = ({ ) -export { IconSignalCellular2BarRoundedFilled as default } +export default IconSignalCellular2BarRoundedFilled diff --git a/src/IconSignalCellular2BarSharp.tsx b/src/IconSignalCellular2BarSharp.tsx index aa9755260..d36f7f89b 100644 --- a/src/IconSignalCellular2BarSharp.tsx +++ b/src/IconSignalCellular2BarSharp.tsx @@ -8,4 +8,4 @@ const IconSignalCellular2BarSharp: React.FC = ({ ...props }) => ( ) -export { IconSignalCellular2BarSharp as default } +export default IconSignalCellular2BarSharp diff --git a/src/IconSignalCellular2BarSharpFilled.tsx b/src/IconSignalCellular2BarSharpFilled.tsx index e83cc34a7..6b4753b46 100644 --- a/src/IconSignalCellular2BarSharpFilled.tsx +++ b/src/IconSignalCellular2BarSharpFilled.tsx @@ -10,4 +10,4 @@ const IconSignalCellular2BarSharpFilled: React.FC = ({ ) -export { IconSignalCellular2BarSharpFilled as default } +export default IconSignalCellular2BarSharpFilled diff --git a/src/IconSignalCellular3BarOutlined.tsx b/src/IconSignalCellular3BarOutlined.tsx index 5586d2953..f48d42d90 100644 --- a/src/IconSignalCellular3BarOutlined.tsx +++ b/src/IconSignalCellular3BarOutlined.tsx @@ -8,4 +8,4 @@ const IconSignalCellular3BarOutlined: React.FC = ({ ...props }) => ( ) -export { IconSignalCellular3BarOutlined as default } +export default IconSignalCellular3BarOutlined diff --git a/src/IconSignalCellular3BarOutlinedFilled.tsx b/src/IconSignalCellular3BarOutlinedFilled.tsx index a22a66489..e6365ecad 100644 --- a/src/IconSignalCellular3BarOutlinedFilled.tsx +++ b/src/IconSignalCellular3BarOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconSignalCellular3BarOutlinedFilled: React.FC = ({ ) -export { IconSignalCellular3BarOutlinedFilled as default } +export default IconSignalCellular3BarOutlinedFilled diff --git a/src/IconSignalCellular3BarRounded.tsx b/src/IconSignalCellular3BarRounded.tsx index e6f36ea91..d9bc9efaa 100644 --- a/src/IconSignalCellular3BarRounded.tsx +++ b/src/IconSignalCellular3BarRounded.tsx @@ -8,4 +8,4 @@ const IconSignalCellular3BarRounded: React.FC = ({ ...props }) => ( ) -export { IconSignalCellular3BarRounded as default } +export default IconSignalCellular3BarRounded diff --git a/src/IconSignalCellular3BarRoundedFilled.tsx b/src/IconSignalCellular3BarRoundedFilled.tsx index f603c1ff7..ef3042656 100644 --- a/src/IconSignalCellular3BarRoundedFilled.tsx +++ b/src/IconSignalCellular3BarRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconSignalCellular3BarRoundedFilled: React.FC = ({ ) -export { IconSignalCellular3BarRoundedFilled as default } +export default IconSignalCellular3BarRoundedFilled diff --git a/src/IconSignalCellular3BarSharp.tsx b/src/IconSignalCellular3BarSharp.tsx index 87ca76e00..6948c75ee 100644 --- a/src/IconSignalCellular3BarSharp.tsx +++ b/src/IconSignalCellular3BarSharp.tsx @@ -8,4 +8,4 @@ const IconSignalCellular3BarSharp: React.FC = ({ ...props }) => ( ) -export { IconSignalCellular3BarSharp as default } +export default IconSignalCellular3BarSharp diff --git a/src/IconSignalCellular3BarSharpFilled.tsx b/src/IconSignalCellular3BarSharpFilled.tsx index 4c1603be4..74d680e98 100644 --- a/src/IconSignalCellular3BarSharpFilled.tsx +++ b/src/IconSignalCellular3BarSharpFilled.tsx @@ -10,4 +10,4 @@ const IconSignalCellular3BarSharpFilled: React.FC = ({ ) -export { IconSignalCellular3BarSharpFilled as default } +export default IconSignalCellular3BarSharpFilled diff --git a/src/IconSignalCellular4BarOutlined.tsx b/src/IconSignalCellular4BarOutlined.tsx index b78448034..ce3fe0378 100644 --- a/src/IconSignalCellular4BarOutlined.tsx +++ b/src/IconSignalCellular4BarOutlined.tsx @@ -8,4 +8,4 @@ const IconSignalCellular4BarOutlined: React.FC = ({ ...props }) => ( ) -export { IconSignalCellular4BarOutlined as default } +export default IconSignalCellular4BarOutlined diff --git a/src/IconSignalCellular4BarOutlinedFilled.tsx b/src/IconSignalCellular4BarOutlinedFilled.tsx index fbb02691f..64ce28b3c 100644 --- a/src/IconSignalCellular4BarOutlinedFilled.tsx +++ b/src/IconSignalCellular4BarOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconSignalCellular4BarOutlinedFilled: React.FC = ({ ) -export { IconSignalCellular4BarOutlinedFilled as default } +export default IconSignalCellular4BarOutlinedFilled diff --git a/src/IconSignalCellular4BarRounded.tsx b/src/IconSignalCellular4BarRounded.tsx index 19e1b80c2..325f19953 100644 --- a/src/IconSignalCellular4BarRounded.tsx +++ b/src/IconSignalCellular4BarRounded.tsx @@ -8,4 +8,4 @@ const IconSignalCellular4BarRounded: React.FC = ({ ...props }) => ( ) -export { IconSignalCellular4BarRounded as default } +export default IconSignalCellular4BarRounded diff --git a/src/IconSignalCellular4BarRoundedFilled.tsx b/src/IconSignalCellular4BarRoundedFilled.tsx index 2e21f60be..1d227423a 100644 --- a/src/IconSignalCellular4BarRoundedFilled.tsx +++ b/src/IconSignalCellular4BarRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconSignalCellular4BarRoundedFilled: React.FC = ({ ) -export { IconSignalCellular4BarRoundedFilled as default } +export default IconSignalCellular4BarRoundedFilled diff --git a/src/IconSignalCellular4BarSharp.tsx b/src/IconSignalCellular4BarSharp.tsx index 503659bbb..8c1fdd929 100644 --- a/src/IconSignalCellular4BarSharp.tsx +++ b/src/IconSignalCellular4BarSharp.tsx @@ -8,4 +8,4 @@ const IconSignalCellular4BarSharp: React.FC = ({ ...props }) => ( ) -export { IconSignalCellular4BarSharp as default } +export default IconSignalCellular4BarSharp diff --git a/src/IconSignalCellular4BarSharpFilled.tsx b/src/IconSignalCellular4BarSharpFilled.tsx index 099999e36..a3a7e5bb3 100644 --- a/src/IconSignalCellular4BarSharpFilled.tsx +++ b/src/IconSignalCellular4BarSharpFilled.tsx @@ -10,4 +10,4 @@ const IconSignalCellular4BarSharpFilled: React.FC = ({ ) -export { IconSignalCellular4BarSharpFilled as default } +export default IconSignalCellular4BarSharpFilled diff --git a/src/IconSignalCellularAddOutlined.tsx b/src/IconSignalCellularAddOutlined.tsx index e9f4c3bd4..d0f3fa02d 100644 --- a/src/IconSignalCellularAddOutlined.tsx +++ b/src/IconSignalCellularAddOutlined.tsx @@ -8,4 +8,4 @@ const IconSignalCellularAddOutlined: React.FC = ({ ...props }) => ( ) -export { IconSignalCellularAddOutlined as default } +export default IconSignalCellularAddOutlined diff --git a/src/IconSignalCellularAddOutlinedFilled.tsx b/src/IconSignalCellularAddOutlinedFilled.tsx index 4e38cfa75..4c813ddcb 100644 --- a/src/IconSignalCellularAddOutlinedFilled.tsx +++ b/src/IconSignalCellularAddOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconSignalCellularAddOutlinedFilled: React.FC = ({ ) -export { IconSignalCellularAddOutlinedFilled as default } +export default IconSignalCellularAddOutlinedFilled diff --git a/src/IconSignalCellularAddRounded.tsx b/src/IconSignalCellularAddRounded.tsx index 32131f78d..94dab791e 100644 --- a/src/IconSignalCellularAddRounded.tsx +++ b/src/IconSignalCellularAddRounded.tsx @@ -8,4 +8,4 @@ const IconSignalCellularAddRounded: React.FC = ({ ...props }) => ( ) -export { IconSignalCellularAddRounded as default } +export default IconSignalCellularAddRounded diff --git a/src/IconSignalCellularAddRoundedFilled.tsx b/src/IconSignalCellularAddRoundedFilled.tsx index 9945b2c5b..77a2702b0 100644 --- a/src/IconSignalCellularAddRoundedFilled.tsx +++ b/src/IconSignalCellularAddRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconSignalCellularAddRoundedFilled: React.FC = ({ ) -export { IconSignalCellularAddRoundedFilled as default } +export default IconSignalCellularAddRoundedFilled diff --git a/src/IconSignalCellularAddSharp.tsx b/src/IconSignalCellularAddSharp.tsx index 4a59a6d1e..29915a5e9 100644 --- a/src/IconSignalCellularAddSharp.tsx +++ b/src/IconSignalCellularAddSharp.tsx @@ -8,4 +8,4 @@ const IconSignalCellularAddSharp: React.FC = ({ ...props }) => ( ) -export { IconSignalCellularAddSharp as default } +export default IconSignalCellularAddSharp diff --git a/src/IconSignalCellularAddSharpFilled.tsx b/src/IconSignalCellularAddSharpFilled.tsx index 2aff0493d..dfb722b77 100644 --- a/src/IconSignalCellularAddSharpFilled.tsx +++ b/src/IconSignalCellularAddSharpFilled.tsx @@ -10,4 +10,4 @@ const IconSignalCellularAddSharpFilled: React.FC = ({ ) -export { IconSignalCellularAddSharpFilled as default } +export default IconSignalCellularAddSharpFilled diff --git a/src/IconSignalCellularAlt1BarOutlined.tsx b/src/IconSignalCellularAlt1BarOutlined.tsx index 39454bea0..c01513ffa 100644 --- a/src/IconSignalCellularAlt1BarOutlined.tsx +++ b/src/IconSignalCellularAlt1BarOutlined.tsx @@ -10,4 +10,4 @@ const IconSignalCellularAlt1BarOutlined: React.FC = ({ ) -export { IconSignalCellularAlt1BarOutlined as default } +export default IconSignalCellularAlt1BarOutlined diff --git a/src/IconSignalCellularAlt1BarOutlinedFilled.tsx b/src/IconSignalCellularAlt1BarOutlinedFilled.tsx index 9b6d3ad89..6c26a6faf 100644 --- a/src/IconSignalCellularAlt1BarOutlinedFilled.tsx +++ b/src/IconSignalCellularAlt1BarOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconSignalCellularAlt1BarOutlinedFilled: React.FC = ({ ) -export { IconSignalCellularAlt1BarOutlinedFilled as default } +export default IconSignalCellularAlt1BarOutlinedFilled diff --git a/src/IconSignalCellularAlt1BarRounded.tsx b/src/IconSignalCellularAlt1BarRounded.tsx index 739f85129..29b0cbcde 100644 --- a/src/IconSignalCellularAlt1BarRounded.tsx +++ b/src/IconSignalCellularAlt1BarRounded.tsx @@ -10,4 +10,4 @@ const IconSignalCellularAlt1BarRounded: React.FC = ({ ) -export { IconSignalCellularAlt1BarRounded as default } +export default IconSignalCellularAlt1BarRounded diff --git a/src/IconSignalCellularAlt1BarRoundedFilled.tsx b/src/IconSignalCellularAlt1BarRoundedFilled.tsx index 60b06c208..efe65df0d 100644 --- a/src/IconSignalCellularAlt1BarRoundedFilled.tsx +++ b/src/IconSignalCellularAlt1BarRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconSignalCellularAlt1BarRoundedFilled: React.FC = ({ ) -export { IconSignalCellularAlt1BarRoundedFilled as default } +export default IconSignalCellularAlt1BarRoundedFilled diff --git a/src/IconSignalCellularAlt1BarSharp.tsx b/src/IconSignalCellularAlt1BarSharp.tsx index 1a16a94a0..ad24a23f8 100644 --- a/src/IconSignalCellularAlt1BarSharp.tsx +++ b/src/IconSignalCellularAlt1BarSharp.tsx @@ -8,4 +8,4 @@ const IconSignalCellularAlt1BarSharp: React.FC = ({ ...props }) => ( ) -export { IconSignalCellularAlt1BarSharp as default } +export default IconSignalCellularAlt1BarSharp diff --git a/src/IconSignalCellularAlt1BarSharpFilled.tsx b/src/IconSignalCellularAlt1BarSharpFilled.tsx index eec4a0c9f..2a46dcf60 100644 --- a/src/IconSignalCellularAlt1BarSharpFilled.tsx +++ b/src/IconSignalCellularAlt1BarSharpFilled.tsx @@ -10,4 +10,4 @@ const IconSignalCellularAlt1BarSharpFilled: React.FC = ({ ) -export { IconSignalCellularAlt1BarSharpFilled as default } +export default IconSignalCellularAlt1BarSharpFilled diff --git a/src/IconSignalCellularAlt2BarOutlined.tsx b/src/IconSignalCellularAlt2BarOutlined.tsx index dee98fa6a..1b49a7afa 100644 --- a/src/IconSignalCellularAlt2BarOutlined.tsx +++ b/src/IconSignalCellularAlt2BarOutlined.tsx @@ -10,4 +10,4 @@ const IconSignalCellularAlt2BarOutlined: React.FC = ({ ) -export { IconSignalCellularAlt2BarOutlined as default } +export default IconSignalCellularAlt2BarOutlined diff --git a/src/IconSignalCellularAlt2BarOutlinedFilled.tsx b/src/IconSignalCellularAlt2BarOutlinedFilled.tsx index 7b3dbf163..7e7491baf 100644 --- a/src/IconSignalCellularAlt2BarOutlinedFilled.tsx +++ b/src/IconSignalCellularAlt2BarOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconSignalCellularAlt2BarOutlinedFilled: React.FC = ({ ) -export { IconSignalCellularAlt2BarOutlinedFilled as default } +export default IconSignalCellularAlt2BarOutlinedFilled diff --git a/src/IconSignalCellularAlt2BarRounded.tsx b/src/IconSignalCellularAlt2BarRounded.tsx index 2a027f25c..7a9ae72ab 100644 --- a/src/IconSignalCellularAlt2BarRounded.tsx +++ b/src/IconSignalCellularAlt2BarRounded.tsx @@ -10,4 +10,4 @@ const IconSignalCellularAlt2BarRounded: React.FC = ({ ) -export { IconSignalCellularAlt2BarRounded as default } +export default IconSignalCellularAlt2BarRounded diff --git a/src/IconSignalCellularAlt2BarRoundedFilled.tsx b/src/IconSignalCellularAlt2BarRoundedFilled.tsx index 5e8515e94..aaea47d5e 100644 --- a/src/IconSignalCellularAlt2BarRoundedFilled.tsx +++ b/src/IconSignalCellularAlt2BarRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconSignalCellularAlt2BarRoundedFilled: React.FC = ({ ) -export { IconSignalCellularAlt2BarRoundedFilled as default } +export default IconSignalCellularAlt2BarRoundedFilled diff --git a/src/IconSignalCellularAlt2BarSharp.tsx b/src/IconSignalCellularAlt2BarSharp.tsx index 39f9a3e23..e3b947bff 100644 --- a/src/IconSignalCellularAlt2BarSharp.tsx +++ b/src/IconSignalCellularAlt2BarSharp.tsx @@ -8,4 +8,4 @@ const IconSignalCellularAlt2BarSharp: React.FC = ({ ...props }) => ( ) -export { IconSignalCellularAlt2BarSharp as default } +export default IconSignalCellularAlt2BarSharp diff --git a/src/IconSignalCellularAlt2BarSharpFilled.tsx b/src/IconSignalCellularAlt2BarSharpFilled.tsx index 1eae9ce6c..685223a01 100644 --- a/src/IconSignalCellularAlt2BarSharpFilled.tsx +++ b/src/IconSignalCellularAlt2BarSharpFilled.tsx @@ -10,4 +10,4 @@ const IconSignalCellularAlt2BarSharpFilled: React.FC = ({ ) -export { IconSignalCellularAlt2BarSharpFilled as default } +export default IconSignalCellularAlt2BarSharpFilled diff --git a/src/IconSignalCellularAltOutlined.tsx b/src/IconSignalCellularAltOutlined.tsx index 2908cb32d..a0ec731db 100644 --- a/src/IconSignalCellularAltOutlined.tsx +++ b/src/IconSignalCellularAltOutlined.tsx @@ -8,4 +8,4 @@ const IconSignalCellularAltOutlined: React.FC = ({ ...props }) => ( ) -export { IconSignalCellularAltOutlined as default } +export default IconSignalCellularAltOutlined diff --git a/src/IconSignalCellularAltOutlinedFilled.tsx b/src/IconSignalCellularAltOutlinedFilled.tsx index a394fe9ae..b9c3f7b10 100644 --- a/src/IconSignalCellularAltOutlinedFilled.tsx +++ b/src/IconSignalCellularAltOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconSignalCellularAltOutlinedFilled: React.FC = ({ ) -export { IconSignalCellularAltOutlinedFilled as default } +export default IconSignalCellularAltOutlinedFilled diff --git a/src/IconSignalCellularAltRounded.tsx b/src/IconSignalCellularAltRounded.tsx index a76d1173c..fa0c45871 100644 --- a/src/IconSignalCellularAltRounded.tsx +++ b/src/IconSignalCellularAltRounded.tsx @@ -8,4 +8,4 @@ const IconSignalCellularAltRounded: React.FC = ({ ...props }) => ( ) -export { IconSignalCellularAltRounded as default } +export default IconSignalCellularAltRounded diff --git a/src/IconSignalCellularAltRoundedFilled.tsx b/src/IconSignalCellularAltRoundedFilled.tsx index bd3ea78f7..57692248d 100644 --- a/src/IconSignalCellularAltRoundedFilled.tsx +++ b/src/IconSignalCellularAltRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconSignalCellularAltRoundedFilled: React.FC = ({ ) -export { IconSignalCellularAltRoundedFilled as default } +export default IconSignalCellularAltRoundedFilled diff --git a/src/IconSignalCellularAltSharp.tsx b/src/IconSignalCellularAltSharp.tsx index c8d9fd8e3..4b7f03c8b 100644 --- a/src/IconSignalCellularAltSharp.tsx +++ b/src/IconSignalCellularAltSharp.tsx @@ -8,4 +8,4 @@ const IconSignalCellularAltSharp: React.FC = ({ ...props }) => ( ) -export { IconSignalCellularAltSharp as default } +export default IconSignalCellularAltSharp diff --git a/src/IconSignalCellularAltSharpFilled.tsx b/src/IconSignalCellularAltSharpFilled.tsx index 27d08c544..53cabc1f1 100644 --- a/src/IconSignalCellularAltSharpFilled.tsx +++ b/src/IconSignalCellularAltSharpFilled.tsx @@ -10,4 +10,4 @@ const IconSignalCellularAltSharpFilled: React.FC = ({ ) -export { IconSignalCellularAltSharpFilled as default } +export default IconSignalCellularAltSharpFilled diff --git a/src/IconSignalCellularConnectedNoInternet0BarOutlined.tsx b/src/IconSignalCellularConnectedNoInternet0BarOutlined.tsx index 323b5ab5b..9135fa564 100644 --- a/src/IconSignalCellularConnectedNoInternet0BarOutlined.tsx +++ b/src/IconSignalCellularConnectedNoInternet0BarOutlined.tsx @@ -10,4 +10,4 @@ const IconSignalCellularConnectedNoInternet0BarOutlined: React.FC< ) -export { IconSignalCellularConnectedNoInternet0BarOutlined as default } +export default IconSignalCellularConnectedNoInternet0BarOutlined diff --git a/src/IconSignalCellularConnectedNoInternet0BarOutlinedFilled.tsx b/src/IconSignalCellularConnectedNoInternet0BarOutlinedFilled.tsx index bd8305c06..c0ca00e15 100644 --- a/src/IconSignalCellularConnectedNoInternet0BarOutlinedFilled.tsx +++ b/src/IconSignalCellularConnectedNoInternet0BarOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconSignalCellularConnectedNoInternet0BarOutlinedFilled: React.FC< ) -export { IconSignalCellularConnectedNoInternet0BarOutlinedFilled as default } +export default IconSignalCellularConnectedNoInternet0BarOutlinedFilled diff --git a/src/IconSignalCellularConnectedNoInternet0BarRounded.tsx b/src/IconSignalCellularConnectedNoInternet0BarRounded.tsx index 7f90c7dc5..0f1701b68 100644 --- a/src/IconSignalCellularConnectedNoInternet0BarRounded.tsx +++ b/src/IconSignalCellularConnectedNoInternet0BarRounded.tsx @@ -10,4 +10,4 @@ const IconSignalCellularConnectedNoInternet0BarRounded: React.FC = ({ ) -export { IconSignalCellularConnectedNoInternet0BarRounded as default } +export default IconSignalCellularConnectedNoInternet0BarRounded diff --git a/src/IconSignalCellularConnectedNoInternet0BarRoundedFilled.tsx b/src/IconSignalCellularConnectedNoInternet0BarRoundedFilled.tsx index fa23a9c83..9ed577f8f 100644 --- a/src/IconSignalCellularConnectedNoInternet0BarRoundedFilled.tsx +++ b/src/IconSignalCellularConnectedNoInternet0BarRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconSignalCellularConnectedNoInternet0BarRoundedFilled: React.FC< ) -export { IconSignalCellularConnectedNoInternet0BarRoundedFilled as default } +export default IconSignalCellularConnectedNoInternet0BarRoundedFilled diff --git a/src/IconSignalCellularConnectedNoInternet0BarSharp.tsx b/src/IconSignalCellularConnectedNoInternet0BarSharp.tsx index 3c73425f1..974e8f406 100644 --- a/src/IconSignalCellularConnectedNoInternet0BarSharp.tsx +++ b/src/IconSignalCellularConnectedNoInternet0BarSharp.tsx @@ -10,4 +10,4 @@ const IconSignalCellularConnectedNoInternet0BarSharp: React.FC = ({ ) -export { IconSignalCellularConnectedNoInternet0BarSharp as default } +export default IconSignalCellularConnectedNoInternet0BarSharp diff --git a/src/IconSignalCellularConnectedNoInternet0BarSharpFilled.tsx b/src/IconSignalCellularConnectedNoInternet0BarSharpFilled.tsx index 045177e89..84198c57a 100644 --- a/src/IconSignalCellularConnectedNoInternet0BarSharpFilled.tsx +++ b/src/IconSignalCellularConnectedNoInternet0BarSharpFilled.tsx @@ -10,4 +10,4 @@ const IconSignalCellularConnectedNoInternet0BarSharpFilled: React.FC< ) -export { IconSignalCellularConnectedNoInternet0BarSharpFilled as default } +export default IconSignalCellularConnectedNoInternet0BarSharpFilled diff --git a/src/IconSignalCellularConnectedNoInternet4BarOutlined.tsx b/src/IconSignalCellularConnectedNoInternet4BarOutlined.tsx index 298f4161d..24f8cdecf 100644 --- a/src/IconSignalCellularConnectedNoInternet4BarOutlined.tsx +++ b/src/IconSignalCellularConnectedNoInternet4BarOutlined.tsx @@ -10,4 +10,4 @@ const IconSignalCellularConnectedNoInternet4BarOutlined: React.FC< ) -export { IconSignalCellularConnectedNoInternet4BarOutlined as default } +export default IconSignalCellularConnectedNoInternet4BarOutlined diff --git a/src/IconSignalCellularConnectedNoInternet4BarOutlinedFilled.tsx b/src/IconSignalCellularConnectedNoInternet4BarOutlinedFilled.tsx index 40a2c52cf..dd49bde49 100644 --- a/src/IconSignalCellularConnectedNoInternet4BarOutlinedFilled.tsx +++ b/src/IconSignalCellularConnectedNoInternet4BarOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconSignalCellularConnectedNoInternet4BarOutlinedFilled: React.FC< ) -export { IconSignalCellularConnectedNoInternet4BarOutlinedFilled as default } +export default IconSignalCellularConnectedNoInternet4BarOutlinedFilled diff --git a/src/IconSignalCellularConnectedNoInternet4BarRounded.tsx b/src/IconSignalCellularConnectedNoInternet4BarRounded.tsx index 25e77c4bd..fbdb0c0bb 100644 --- a/src/IconSignalCellularConnectedNoInternet4BarRounded.tsx +++ b/src/IconSignalCellularConnectedNoInternet4BarRounded.tsx @@ -10,4 +10,4 @@ const IconSignalCellularConnectedNoInternet4BarRounded: React.FC = ({ ) -export { IconSignalCellularConnectedNoInternet4BarRounded as default } +export default IconSignalCellularConnectedNoInternet4BarRounded diff --git a/src/IconSignalCellularConnectedNoInternet4BarRoundedFilled.tsx b/src/IconSignalCellularConnectedNoInternet4BarRoundedFilled.tsx index 2eb723f7e..26f1637c6 100644 --- a/src/IconSignalCellularConnectedNoInternet4BarRoundedFilled.tsx +++ b/src/IconSignalCellularConnectedNoInternet4BarRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconSignalCellularConnectedNoInternet4BarRoundedFilled: React.FC< ) -export { IconSignalCellularConnectedNoInternet4BarRoundedFilled as default } +export default IconSignalCellularConnectedNoInternet4BarRoundedFilled diff --git a/src/IconSignalCellularConnectedNoInternet4BarSharp.tsx b/src/IconSignalCellularConnectedNoInternet4BarSharp.tsx index 8f54a89fd..9eba423c3 100644 --- a/src/IconSignalCellularConnectedNoInternet4BarSharp.tsx +++ b/src/IconSignalCellularConnectedNoInternet4BarSharp.tsx @@ -10,4 +10,4 @@ const IconSignalCellularConnectedNoInternet4BarSharp: React.FC = ({ ) -export { IconSignalCellularConnectedNoInternet4BarSharp as default } +export default IconSignalCellularConnectedNoInternet4BarSharp diff --git a/src/IconSignalCellularConnectedNoInternet4BarSharpFilled.tsx b/src/IconSignalCellularConnectedNoInternet4BarSharpFilled.tsx index 27133dc88..8c37eaaf2 100644 --- a/src/IconSignalCellularConnectedNoInternet4BarSharpFilled.tsx +++ b/src/IconSignalCellularConnectedNoInternet4BarSharpFilled.tsx @@ -10,4 +10,4 @@ const IconSignalCellularConnectedNoInternet4BarSharpFilled: React.FC< ) -export { IconSignalCellularConnectedNoInternet4BarSharpFilled as default } +export default IconSignalCellularConnectedNoInternet4BarSharpFilled diff --git a/src/IconSignalCellularNodataOutlined.tsx b/src/IconSignalCellularNodataOutlined.tsx index 2b20c7d03..73d5b649e 100644 --- a/src/IconSignalCellularNodataOutlined.tsx +++ b/src/IconSignalCellularNodataOutlined.tsx @@ -10,4 +10,4 @@ const IconSignalCellularNodataOutlined: React.FC = ({ ) -export { IconSignalCellularNodataOutlined as default } +export default IconSignalCellularNodataOutlined diff --git a/src/IconSignalCellularNodataOutlinedFilled.tsx b/src/IconSignalCellularNodataOutlinedFilled.tsx index f833922e5..3235ed2a6 100644 --- a/src/IconSignalCellularNodataOutlinedFilled.tsx +++ b/src/IconSignalCellularNodataOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconSignalCellularNodataOutlinedFilled: React.FC = ({ ) -export { IconSignalCellularNodataOutlinedFilled as default } +export default IconSignalCellularNodataOutlinedFilled diff --git a/src/IconSignalCellularNodataRounded.tsx b/src/IconSignalCellularNodataRounded.tsx index a544f1168..b3b0b6261 100644 --- a/src/IconSignalCellularNodataRounded.tsx +++ b/src/IconSignalCellularNodataRounded.tsx @@ -8,4 +8,4 @@ const IconSignalCellularNodataRounded: React.FC = ({ ...props }) => ( ) -export { IconSignalCellularNodataRounded as default } +export default IconSignalCellularNodataRounded diff --git a/src/IconSignalCellularNodataRoundedFilled.tsx b/src/IconSignalCellularNodataRoundedFilled.tsx index c59586001..e62773421 100644 --- a/src/IconSignalCellularNodataRoundedFilled.tsx +++ b/src/IconSignalCellularNodataRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconSignalCellularNodataRoundedFilled: React.FC = ({ ) -export { IconSignalCellularNodataRoundedFilled as default } +export default IconSignalCellularNodataRoundedFilled diff --git a/src/IconSignalCellularNodataSharp.tsx b/src/IconSignalCellularNodataSharp.tsx index afa4e2d60..baf106587 100644 --- a/src/IconSignalCellularNodataSharp.tsx +++ b/src/IconSignalCellularNodataSharp.tsx @@ -8,4 +8,4 @@ const IconSignalCellularNodataSharp: React.FC = ({ ...props }) => ( ) -export { IconSignalCellularNodataSharp as default } +export default IconSignalCellularNodataSharp diff --git a/src/IconSignalCellularNodataSharpFilled.tsx b/src/IconSignalCellularNodataSharpFilled.tsx index 332a38741..8bd2467e5 100644 --- a/src/IconSignalCellularNodataSharpFilled.tsx +++ b/src/IconSignalCellularNodataSharpFilled.tsx @@ -10,4 +10,4 @@ const IconSignalCellularNodataSharpFilled: React.FC = ({ ) -export { IconSignalCellularNodataSharpFilled as default } +export default IconSignalCellularNodataSharpFilled diff --git a/src/IconSignalCellularNullOutlinedFilled.tsx b/src/IconSignalCellularNullOutlinedFilled.tsx index 8555850d7..064d5ba9f 100644 --- a/src/IconSignalCellularNullOutlinedFilled.tsx +++ b/src/IconSignalCellularNullOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconSignalCellularNullOutlinedFilled: React.FC = ({ ) -export { IconSignalCellularNullOutlinedFilled as default } +export default IconSignalCellularNullOutlinedFilled diff --git a/src/IconSignalCellularNullRounded.tsx b/src/IconSignalCellularNullRounded.tsx index 6c3c5bc17..472c09c8f 100644 --- a/src/IconSignalCellularNullRounded.tsx +++ b/src/IconSignalCellularNullRounded.tsx @@ -8,4 +8,4 @@ const IconSignalCellularNullRounded: React.FC = ({ ...props }) => ( ) -export { IconSignalCellularNullRounded as default } +export default IconSignalCellularNullRounded diff --git a/src/IconSignalCellularNullRoundedFilled.tsx b/src/IconSignalCellularNullRoundedFilled.tsx index e1256da26..7ca9a4d64 100644 --- a/src/IconSignalCellularNullRoundedFilled.tsx +++ b/src/IconSignalCellularNullRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconSignalCellularNullRoundedFilled: React.FC = ({ ) -export { IconSignalCellularNullRoundedFilled as default } +export default IconSignalCellularNullRoundedFilled diff --git a/src/IconSignalCellularNullSharp.tsx b/src/IconSignalCellularNullSharp.tsx index de10d402c..f7065ac1b 100644 --- a/src/IconSignalCellularNullSharp.tsx +++ b/src/IconSignalCellularNullSharp.tsx @@ -8,4 +8,4 @@ const IconSignalCellularNullSharp: React.FC = ({ ...props }) => ( ) -export { IconSignalCellularNullSharp as default } +export default IconSignalCellularNullSharp diff --git a/src/IconSignalCellularNullSharpFilled.tsx b/src/IconSignalCellularNullSharpFilled.tsx index 450405c93..faca435b7 100644 --- a/src/IconSignalCellularNullSharpFilled.tsx +++ b/src/IconSignalCellularNullSharpFilled.tsx @@ -10,4 +10,4 @@ const IconSignalCellularNullSharpFilled: React.FC = ({ ) -export { IconSignalCellularNullSharpFilled as default } +export default IconSignalCellularNullSharpFilled diff --git a/src/IconSignalCellularOffOutlined.tsx b/src/IconSignalCellularOffOutlined.tsx index ddd72f85b..321a7f5d3 100644 --- a/src/IconSignalCellularOffOutlined.tsx +++ b/src/IconSignalCellularOffOutlined.tsx @@ -8,4 +8,4 @@ const IconSignalCellularOffOutlined: React.FC = ({ ...props }) => ( ) -export { IconSignalCellularOffOutlined as default } +export default IconSignalCellularOffOutlined diff --git a/src/IconSignalCellularOffOutlinedFilled.tsx b/src/IconSignalCellularOffOutlinedFilled.tsx index 665ca5449..1a29a91d3 100644 --- a/src/IconSignalCellularOffOutlinedFilled.tsx +++ b/src/IconSignalCellularOffOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconSignalCellularOffOutlinedFilled: React.FC = ({ ) -export { IconSignalCellularOffOutlinedFilled as default } +export default IconSignalCellularOffOutlinedFilled diff --git a/src/IconSignalCellularOffRounded.tsx b/src/IconSignalCellularOffRounded.tsx index 6e2b63607..e6061f404 100644 --- a/src/IconSignalCellularOffRounded.tsx +++ b/src/IconSignalCellularOffRounded.tsx @@ -8,4 +8,4 @@ const IconSignalCellularOffRounded: React.FC = ({ ...props }) => ( ) -export { IconSignalCellularOffRounded as default } +export default IconSignalCellularOffRounded diff --git a/src/IconSignalCellularOffRoundedFilled.tsx b/src/IconSignalCellularOffRoundedFilled.tsx index 74dcf7cc9..62e5d3b29 100644 --- a/src/IconSignalCellularOffRoundedFilled.tsx +++ b/src/IconSignalCellularOffRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconSignalCellularOffRoundedFilled: React.FC = ({ ) -export { IconSignalCellularOffRoundedFilled as default } +export default IconSignalCellularOffRoundedFilled diff --git a/src/IconSignalCellularOffSharp.tsx b/src/IconSignalCellularOffSharp.tsx index c7daa1c52..b3142bc6b 100644 --- a/src/IconSignalCellularOffSharp.tsx +++ b/src/IconSignalCellularOffSharp.tsx @@ -8,4 +8,4 @@ const IconSignalCellularOffSharp: React.FC = ({ ...props }) => ( ) -export { IconSignalCellularOffSharp as default } +export default IconSignalCellularOffSharp diff --git a/src/IconSignalCellularOffSharpFilled.tsx b/src/IconSignalCellularOffSharpFilled.tsx index 081c2d699..6b4518b6b 100644 --- a/src/IconSignalCellularOffSharpFilled.tsx +++ b/src/IconSignalCellularOffSharpFilled.tsx @@ -10,4 +10,4 @@ const IconSignalCellularOffSharpFilled: React.FC = ({ ) -export { IconSignalCellularOffSharpFilled as default } +export default IconSignalCellularOffSharpFilled diff --git a/src/IconSignalCellularPauseOutlined.tsx b/src/IconSignalCellularPauseOutlined.tsx index 7d8ed8119..5c8396d33 100644 --- a/src/IconSignalCellularPauseOutlined.tsx +++ b/src/IconSignalCellularPauseOutlined.tsx @@ -8,4 +8,4 @@ const IconSignalCellularPauseOutlined: React.FC = ({ ...props }) => ( ) -export { IconSignalCellularPauseOutlined as default } +export default IconSignalCellularPauseOutlined diff --git a/src/IconSignalCellularPauseOutlinedFilled.tsx b/src/IconSignalCellularPauseOutlinedFilled.tsx index 94f73333b..15c40c3ea 100644 --- a/src/IconSignalCellularPauseOutlinedFilled.tsx +++ b/src/IconSignalCellularPauseOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconSignalCellularPauseOutlinedFilled: React.FC = ({ ) -export { IconSignalCellularPauseOutlinedFilled as default } +export default IconSignalCellularPauseOutlinedFilled diff --git a/src/IconSignalCellularPauseRounded.tsx b/src/IconSignalCellularPauseRounded.tsx index 9ebc0c380..03fca0a25 100644 --- a/src/IconSignalCellularPauseRounded.tsx +++ b/src/IconSignalCellularPauseRounded.tsx @@ -8,4 +8,4 @@ const IconSignalCellularPauseRounded: React.FC = ({ ...props }) => ( ) -export { IconSignalCellularPauseRounded as default } +export default IconSignalCellularPauseRounded diff --git a/src/IconSignalCellularPauseRoundedFilled.tsx b/src/IconSignalCellularPauseRoundedFilled.tsx index 8503234aa..d814903e0 100644 --- a/src/IconSignalCellularPauseRoundedFilled.tsx +++ b/src/IconSignalCellularPauseRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconSignalCellularPauseRoundedFilled: React.FC = ({ ) -export { IconSignalCellularPauseRoundedFilled as default } +export default IconSignalCellularPauseRoundedFilled diff --git a/src/IconSignalCellularPauseSharp.tsx b/src/IconSignalCellularPauseSharp.tsx index dfedb7e89..0498a8ab8 100644 --- a/src/IconSignalCellularPauseSharp.tsx +++ b/src/IconSignalCellularPauseSharp.tsx @@ -8,4 +8,4 @@ const IconSignalCellularPauseSharp: React.FC = ({ ...props }) => ( ) -export { IconSignalCellularPauseSharp as default } +export default IconSignalCellularPauseSharp diff --git a/src/IconSignalCellularPauseSharpFilled.tsx b/src/IconSignalCellularPauseSharpFilled.tsx index 2bbaa90b9..bbb195de9 100644 --- a/src/IconSignalCellularPauseSharpFilled.tsx +++ b/src/IconSignalCellularPauseSharpFilled.tsx @@ -10,4 +10,4 @@ const IconSignalCellularPauseSharpFilled: React.FC = ({ ) -export { IconSignalCellularPauseSharpFilled as default } +export default IconSignalCellularPauseSharpFilled diff --git a/src/IconSignalDisconnectedOutlined.tsx b/src/IconSignalDisconnectedOutlined.tsx index 41bef2a66..38093a44e 100644 --- a/src/IconSignalDisconnectedOutlined.tsx +++ b/src/IconSignalDisconnectedOutlined.tsx @@ -8,4 +8,4 @@ const IconSignalDisconnectedOutlined: React.FC = ({ ...props }) => ( ) -export { IconSignalDisconnectedOutlined as default } +export default IconSignalDisconnectedOutlined diff --git a/src/IconSignalDisconnectedOutlinedFilled.tsx b/src/IconSignalDisconnectedOutlinedFilled.tsx index b1b56115a..5cf95ee4a 100644 --- a/src/IconSignalDisconnectedOutlinedFilled.tsx +++ b/src/IconSignalDisconnectedOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconSignalDisconnectedOutlinedFilled: React.FC = ({ ) -export { IconSignalDisconnectedOutlinedFilled as default } +export default IconSignalDisconnectedOutlinedFilled diff --git a/src/IconSignalDisconnectedRounded.tsx b/src/IconSignalDisconnectedRounded.tsx index c9a4dfde3..2d7b2b76e 100644 --- a/src/IconSignalDisconnectedRounded.tsx +++ b/src/IconSignalDisconnectedRounded.tsx @@ -8,4 +8,4 @@ const IconSignalDisconnectedRounded: React.FC = ({ ...props }) => ( ) -export { IconSignalDisconnectedRounded as default } +export default IconSignalDisconnectedRounded diff --git a/src/IconSignalDisconnectedRoundedFilled.tsx b/src/IconSignalDisconnectedRoundedFilled.tsx index 5baafd4cc..65e610b83 100644 --- a/src/IconSignalDisconnectedRoundedFilled.tsx +++ b/src/IconSignalDisconnectedRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconSignalDisconnectedRoundedFilled: React.FC = ({ ) -export { IconSignalDisconnectedRoundedFilled as default } +export default IconSignalDisconnectedRoundedFilled diff --git a/src/IconSignalDisconnectedSharp.tsx b/src/IconSignalDisconnectedSharp.tsx index c7c55cc7b..5f3619cbe 100644 --- a/src/IconSignalDisconnectedSharp.tsx +++ b/src/IconSignalDisconnectedSharp.tsx @@ -8,4 +8,4 @@ const IconSignalDisconnectedSharp: React.FC = ({ ...props }) => ( ) -export { IconSignalDisconnectedSharp as default } +export default IconSignalDisconnectedSharp diff --git a/src/IconSignalDisconnectedSharpFilled.tsx b/src/IconSignalDisconnectedSharpFilled.tsx index 03ef3f095..d21c21ff0 100644 --- a/src/IconSignalDisconnectedSharpFilled.tsx +++ b/src/IconSignalDisconnectedSharpFilled.tsx @@ -10,4 +10,4 @@ const IconSignalDisconnectedSharpFilled: React.FC = ({ ) -export { IconSignalDisconnectedSharpFilled as default } +export default IconSignalDisconnectedSharpFilled diff --git a/src/IconSignalWifi0BarOutlined.tsx b/src/IconSignalWifi0BarOutlined.tsx index 87db570af..416385760 100644 --- a/src/IconSignalWifi0BarOutlined.tsx +++ b/src/IconSignalWifi0BarOutlined.tsx @@ -8,4 +8,4 @@ const IconSignalWifi0BarOutlined: React.FC = ({ ...props }) => ( ) -export { IconSignalWifi0BarOutlined as default } +export default IconSignalWifi0BarOutlined diff --git a/src/IconSignalWifi0BarOutlinedFilled.tsx b/src/IconSignalWifi0BarOutlinedFilled.tsx index 4beeef3f2..ee29630d3 100644 --- a/src/IconSignalWifi0BarOutlinedFilled.tsx +++ b/src/IconSignalWifi0BarOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconSignalWifi0BarOutlinedFilled: React.FC = ({ ) -export { IconSignalWifi0BarOutlinedFilled as default } +export default IconSignalWifi0BarOutlinedFilled diff --git a/src/IconSignalWifi0BarRounded.tsx b/src/IconSignalWifi0BarRounded.tsx index afaabdecd..1721afcdc 100644 --- a/src/IconSignalWifi0BarRounded.tsx +++ b/src/IconSignalWifi0BarRounded.tsx @@ -8,4 +8,4 @@ const IconSignalWifi0BarRounded: React.FC = ({ ...props }) => ( ) -export { IconSignalWifi0BarRounded as default } +export default IconSignalWifi0BarRounded diff --git a/src/IconSignalWifi0BarRoundedFilled.tsx b/src/IconSignalWifi0BarRoundedFilled.tsx index 25c621d1d..074214b4e 100644 --- a/src/IconSignalWifi0BarRoundedFilled.tsx +++ b/src/IconSignalWifi0BarRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconSignalWifi0BarRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconSignalWifi0BarRoundedFilled as default } +export default IconSignalWifi0BarRoundedFilled diff --git a/src/IconSignalWifi0BarSharp.tsx b/src/IconSignalWifi0BarSharp.tsx index 5e4f8ecb7..9c1dc8777 100644 --- a/src/IconSignalWifi0BarSharp.tsx +++ b/src/IconSignalWifi0BarSharp.tsx @@ -8,4 +8,4 @@ const IconSignalWifi0BarSharp: React.FC = ({ ...props }) => ( ) -export { IconSignalWifi0BarSharp as default } +export default IconSignalWifi0BarSharp diff --git a/src/IconSignalWifi0BarSharpFilled.tsx b/src/IconSignalWifi0BarSharpFilled.tsx index 367068fba..1308eb435 100644 --- a/src/IconSignalWifi0BarSharpFilled.tsx +++ b/src/IconSignalWifi0BarSharpFilled.tsx @@ -8,4 +8,4 @@ const IconSignalWifi0BarSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconSignalWifi0BarSharpFilled as default } +export default IconSignalWifi0BarSharpFilled diff --git a/src/IconSignalWifi4BarOutlined.tsx b/src/IconSignalWifi4BarOutlined.tsx index f353e24d4..fc258e0ad 100644 --- a/src/IconSignalWifi4BarOutlined.tsx +++ b/src/IconSignalWifi4BarOutlined.tsx @@ -8,4 +8,4 @@ const IconSignalWifi4BarOutlined: React.FC = ({ ...props }) => ( ) -export { IconSignalWifi4BarOutlined as default } +export default IconSignalWifi4BarOutlined diff --git a/src/IconSignalWifi4BarOutlinedFilled.tsx b/src/IconSignalWifi4BarOutlinedFilled.tsx index ae842b2fc..17400fe2b 100644 --- a/src/IconSignalWifi4BarOutlinedFilled.tsx +++ b/src/IconSignalWifi4BarOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconSignalWifi4BarOutlinedFilled: React.FC = ({ ) -export { IconSignalWifi4BarOutlinedFilled as default } +export default IconSignalWifi4BarOutlinedFilled diff --git a/src/IconSignalWifi4BarRounded.tsx b/src/IconSignalWifi4BarRounded.tsx index 2c900b290..9a176dd61 100644 --- a/src/IconSignalWifi4BarRounded.tsx +++ b/src/IconSignalWifi4BarRounded.tsx @@ -8,4 +8,4 @@ const IconSignalWifi4BarRounded: React.FC = ({ ...props }) => ( ) -export { IconSignalWifi4BarRounded as default } +export default IconSignalWifi4BarRounded diff --git a/src/IconSignalWifi4BarRoundedFilled.tsx b/src/IconSignalWifi4BarRoundedFilled.tsx index c35f8842a..adad5d6fd 100644 --- a/src/IconSignalWifi4BarRoundedFilled.tsx +++ b/src/IconSignalWifi4BarRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconSignalWifi4BarRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconSignalWifi4BarRoundedFilled as default } +export default IconSignalWifi4BarRoundedFilled diff --git a/src/IconSignalWifi4BarSharp.tsx b/src/IconSignalWifi4BarSharp.tsx index 15b851f24..47981b00b 100644 --- a/src/IconSignalWifi4BarSharp.tsx +++ b/src/IconSignalWifi4BarSharp.tsx @@ -8,4 +8,4 @@ const IconSignalWifi4BarSharp: React.FC = ({ ...props }) => ( ) -export { IconSignalWifi4BarSharp as default } +export default IconSignalWifi4BarSharp diff --git a/src/IconSignalWifi4BarSharpFilled.tsx b/src/IconSignalWifi4BarSharpFilled.tsx index 189b3312c..2a5a797a3 100644 --- a/src/IconSignalWifi4BarSharpFilled.tsx +++ b/src/IconSignalWifi4BarSharpFilled.tsx @@ -8,4 +8,4 @@ const IconSignalWifi4BarSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconSignalWifi4BarSharpFilled as default } +export default IconSignalWifi4BarSharpFilled diff --git a/src/IconSignalWifiBadOutlined.tsx b/src/IconSignalWifiBadOutlined.tsx index dd3e8eb4c..31d55589c 100644 --- a/src/IconSignalWifiBadOutlined.tsx +++ b/src/IconSignalWifiBadOutlined.tsx @@ -8,4 +8,4 @@ const IconSignalWifiBadOutlined: React.FC = ({ ...props }) => ( ) -export { IconSignalWifiBadOutlined as default } +export default IconSignalWifiBadOutlined diff --git a/src/IconSignalWifiBadOutlinedFilled.tsx b/src/IconSignalWifiBadOutlinedFilled.tsx index f11d7c9a2..a56c3f0e2 100644 --- a/src/IconSignalWifiBadOutlinedFilled.tsx +++ b/src/IconSignalWifiBadOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconSignalWifiBadOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconSignalWifiBadOutlinedFilled as default } +export default IconSignalWifiBadOutlinedFilled diff --git a/src/IconSignalWifiBadRounded.tsx b/src/IconSignalWifiBadRounded.tsx index 82feb3abb..b2c4b764d 100644 --- a/src/IconSignalWifiBadRounded.tsx +++ b/src/IconSignalWifiBadRounded.tsx @@ -8,4 +8,4 @@ const IconSignalWifiBadRounded: React.FC = ({ ...props }) => ( ) -export { IconSignalWifiBadRounded as default } +export default IconSignalWifiBadRounded diff --git a/src/IconSignalWifiBadRoundedFilled.tsx b/src/IconSignalWifiBadRoundedFilled.tsx index 09a7049e0..ffa50c048 100644 --- a/src/IconSignalWifiBadRoundedFilled.tsx +++ b/src/IconSignalWifiBadRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconSignalWifiBadRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconSignalWifiBadRoundedFilled as default } +export default IconSignalWifiBadRoundedFilled diff --git a/src/IconSignalWifiBadSharp.tsx b/src/IconSignalWifiBadSharp.tsx index ed5c205dd..53c30d553 100644 --- a/src/IconSignalWifiBadSharp.tsx +++ b/src/IconSignalWifiBadSharp.tsx @@ -8,4 +8,4 @@ const IconSignalWifiBadSharp: React.FC = ({ ...props }) => ( ) -export { IconSignalWifiBadSharp as default } +export default IconSignalWifiBadSharp diff --git a/src/IconSignalWifiBadSharpFilled.tsx b/src/IconSignalWifiBadSharpFilled.tsx index a2230f0bb..323208290 100644 --- a/src/IconSignalWifiBadSharpFilled.tsx +++ b/src/IconSignalWifiBadSharpFilled.tsx @@ -8,4 +8,4 @@ const IconSignalWifiBadSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconSignalWifiBadSharpFilled as default } +export default IconSignalWifiBadSharpFilled diff --git a/src/IconSignalWifiOffOutlined.tsx b/src/IconSignalWifiOffOutlined.tsx index e017308a7..dfcb884f9 100644 --- a/src/IconSignalWifiOffOutlined.tsx +++ b/src/IconSignalWifiOffOutlined.tsx @@ -8,4 +8,4 @@ const IconSignalWifiOffOutlined: React.FC = ({ ...props }) => ( ) -export { IconSignalWifiOffOutlined as default } +export default IconSignalWifiOffOutlined diff --git a/src/IconSignalWifiOffOutlinedFilled.tsx b/src/IconSignalWifiOffOutlinedFilled.tsx index 9ed8a1c41..7ed55d0b6 100644 --- a/src/IconSignalWifiOffOutlinedFilled.tsx +++ b/src/IconSignalWifiOffOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconSignalWifiOffOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconSignalWifiOffOutlinedFilled as default } +export default IconSignalWifiOffOutlinedFilled diff --git a/src/IconSignalWifiOffRounded.tsx b/src/IconSignalWifiOffRounded.tsx index 2e0d09ea7..3ad5033e8 100644 --- a/src/IconSignalWifiOffRounded.tsx +++ b/src/IconSignalWifiOffRounded.tsx @@ -8,4 +8,4 @@ const IconSignalWifiOffRounded: React.FC = ({ ...props }) => ( ) -export { IconSignalWifiOffRounded as default } +export default IconSignalWifiOffRounded diff --git a/src/IconSignalWifiOffRoundedFilled.tsx b/src/IconSignalWifiOffRoundedFilled.tsx index bea9f4d24..7590c42bd 100644 --- a/src/IconSignalWifiOffRoundedFilled.tsx +++ b/src/IconSignalWifiOffRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconSignalWifiOffRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconSignalWifiOffRoundedFilled as default } +export default IconSignalWifiOffRoundedFilled diff --git a/src/IconSignalWifiOffSharp.tsx b/src/IconSignalWifiOffSharp.tsx index 84c1687b3..038a6158d 100644 --- a/src/IconSignalWifiOffSharp.tsx +++ b/src/IconSignalWifiOffSharp.tsx @@ -8,4 +8,4 @@ const IconSignalWifiOffSharp: React.FC = ({ ...props }) => ( ) -export { IconSignalWifiOffSharp as default } +export default IconSignalWifiOffSharp diff --git a/src/IconSignalWifiOffSharpFilled.tsx b/src/IconSignalWifiOffSharpFilled.tsx index 60ae8c727..59183acab 100644 --- a/src/IconSignalWifiOffSharpFilled.tsx +++ b/src/IconSignalWifiOffSharpFilled.tsx @@ -8,4 +8,4 @@ const IconSignalWifiOffSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconSignalWifiOffSharpFilled as default } +export default IconSignalWifiOffSharpFilled diff --git a/src/IconSignalWifiStatusbarNotConnectedOutlined.tsx b/src/IconSignalWifiStatusbarNotConnectedOutlined.tsx index c38a83e0a..85866ec7a 100644 --- a/src/IconSignalWifiStatusbarNotConnectedOutlined.tsx +++ b/src/IconSignalWifiStatusbarNotConnectedOutlined.tsx @@ -10,4 +10,4 @@ const IconSignalWifiStatusbarNotConnectedOutlined: React.FC = ({ ) -export { IconSignalWifiStatusbarNotConnectedOutlined as default } +export default IconSignalWifiStatusbarNotConnectedOutlined diff --git a/src/IconSignalWifiStatusbarNotConnectedOutlinedFilled.tsx b/src/IconSignalWifiStatusbarNotConnectedOutlinedFilled.tsx index 0f70dc717..82962f315 100644 --- a/src/IconSignalWifiStatusbarNotConnectedOutlinedFilled.tsx +++ b/src/IconSignalWifiStatusbarNotConnectedOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconSignalWifiStatusbarNotConnectedOutlinedFilled: React.FC< ) -export { IconSignalWifiStatusbarNotConnectedOutlinedFilled as default } +export default IconSignalWifiStatusbarNotConnectedOutlinedFilled diff --git a/src/IconSignalWifiStatusbarNotConnectedRounded.tsx b/src/IconSignalWifiStatusbarNotConnectedRounded.tsx index c6b82c576..b169dd6a9 100644 --- a/src/IconSignalWifiStatusbarNotConnectedRounded.tsx +++ b/src/IconSignalWifiStatusbarNotConnectedRounded.tsx @@ -10,4 +10,4 @@ const IconSignalWifiStatusbarNotConnectedRounded: React.FC = ({ ) -export { IconSignalWifiStatusbarNotConnectedRounded as default } +export default IconSignalWifiStatusbarNotConnectedRounded diff --git a/src/IconSignalWifiStatusbarNotConnectedRoundedFilled.tsx b/src/IconSignalWifiStatusbarNotConnectedRoundedFilled.tsx index 3aca5a09c..fb64507de 100644 --- a/src/IconSignalWifiStatusbarNotConnectedRoundedFilled.tsx +++ b/src/IconSignalWifiStatusbarNotConnectedRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconSignalWifiStatusbarNotConnectedRoundedFilled: React.FC = ({ ) -export { IconSignalWifiStatusbarNotConnectedRoundedFilled as default } +export default IconSignalWifiStatusbarNotConnectedRoundedFilled diff --git a/src/IconSignalWifiStatusbarNotConnectedSharp.tsx b/src/IconSignalWifiStatusbarNotConnectedSharp.tsx index 2b211a725..685bdf756 100644 --- a/src/IconSignalWifiStatusbarNotConnectedSharp.tsx +++ b/src/IconSignalWifiStatusbarNotConnectedSharp.tsx @@ -10,4 +10,4 @@ const IconSignalWifiStatusbarNotConnectedSharp: React.FC = ({ ) -export { IconSignalWifiStatusbarNotConnectedSharp as default } +export default IconSignalWifiStatusbarNotConnectedSharp diff --git a/src/IconSignalWifiStatusbarNotConnectedSharpFilled.tsx b/src/IconSignalWifiStatusbarNotConnectedSharpFilled.tsx index 4cd2eab3f..147152b16 100644 --- a/src/IconSignalWifiStatusbarNotConnectedSharpFilled.tsx +++ b/src/IconSignalWifiStatusbarNotConnectedSharpFilled.tsx @@ -10,4 +10,4 @@ const IconSignalWifiStatusbarNotConnectedSharpFilled: React.FC = ({ ) -export { IconSignalWifiStatusbarNotConnectedSharpFilled as default } +export default IconSignalWifiStatusbarNotConnectedSharpFilled diff --git a/src/IconSignalWifiStatusbarNullOutlined.tsx b/src/IconSignalWifiStatusbarNullOutlined.tsx index 84c8f3cfc..8350e5469 100644 --- a/src/IconSignalWifiStatusbarNullOutlined.tsx +++ b/src/IconSignalWifiStatusbarNullOutlined.tsx @@ -10,4 +10,4 @@ const IconSignalWifiStatusbarNullOutlined: React.FC = ({ ) -export { IconSignalWifiStatusbarNullOutlined as default } +export default IconSignalWifiStatusbarNullOutlined diff --git a/src/IconSignalWifiStatusbarNullOutlinedFilled.tsx b/src/IconSignalWifiStatusbarNullOutlinedFilled.tsx index 408026044..ef1ebf649 100644 --- a/src/IconSignalWifiStatusbarNullOutlinedFilled.tsx +++ b/src/IconSignalWifiStatusbarNullOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconSignalWifiStatusbarNullOutlinedFilled: React.FC = ({ ) -export { IconSignalWifiStatusbarNullOutlinedFilled as default } +export default IconSignalWifiStatusbarNullOutlinedFilled diff --git a/src/IconSignalWifiStatusbarNullRounded.tsx b/src/IconSignalWifiStatusbarNullRounded.tsx index 6b24add23..402920ffa 100644 --- a/src/IconSignalWifiStatusbarNullRounded.tsx +++ b/src/IconSignalWifiStatusbarNullRounded.tsx @@ -10,4 +10,4 @@ const IconSignalWifiStatusbarNullRounded: React.FC = ({ ) -export { IconSignalWifiStatusbarNullRounded as default } +export default IconSignalWifiStatusbarNullRounded diff --git a/src/IconSignalWifiStatusbarNullRoundedFilled.tsx b/src/IconSignalWifiStatusbarNullRoundedFilled.tsx index 2d7babbe7..07554cdb8 100644 --- a/src/IconSignalWifiStatusbarNullRoundedFilled.tsx +++ b/src/IconSignalWifiStatusbarNullRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconSignalWifiStatusbarNullRoundedFilled: React.FC = ({ ) -export { IconSignalWifiStatusbarNullRoundedFilled as default } +export default IconSignalWifiStatusbarNullRoundedFilled diff --git a/src/IconSignalWifiStatusbarNullSharp.tsx b/src/IconSignalWifiStatusbarNullSharp.tsx index 1c43dfbb6..3c3a3468e 100644 --- a/src/IconSignalWifiStatusbarNullSharp.tsx +++ b/src/IconSignalWifiStatusbarNullSharp.tsx @@ -10,4 +10,4 @@ const IconSignalWifiStatusbarNullSharp: React.FC = ({ ) -export { IconSignalWifiStatusbarNullSharp as default } +export default IconSignalWifiStatusbarNullSharp diff --git a/src/IconSignalWifiStatusbarNullSharpFilled.tsx b/src/IconSignalWifiStatusbarNullSharpFilled.tsx index 76d87e61f..91b47df2c 100644 --- a/src/IconSignalWifiStatusbarNullSharpFilled.tsx +++ b/src/IconSignalWifiStatusbarNullSharpFilled.tsx @@ -10,4 +10,4 @@ const IconSignalWifiStatusbarNullSharpFilled: React.FC = ({ ) -export { IconSignalWifiStatusbarNullSharpFilled as default } +export default IconSignalWifiStatusbarNullSharpFilled diff --git a/src/IconSignatureOutlined.tsx b/src/IconSignatureOutlined.tsx index bb5ffa707..9b5160941 100644 --- a/src/IconSignatureOutlined.tsx +++ b/src/IconSignatureOutlined.tsx @@ -8,4 +8,4 @@ const IconSignatureOutlined: React.FC = ({ ...props }) => ( ) -export { IconSignatureOutlined as default } +export default IconSignatureOutlined diff --git a/src/IconSignatureOutlinedFilled.tsx b/src/IconSignatureOutlinedFilled.tsx index e481ea7e3..d524843f4 100644 --- a/src/IconSignatureOutlinedFilled.tsx +++ b/src/IconSignatureOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconSignatureOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconSignatureOutlinedFilled as default } +export default IconSignatureOutlinedFilled diff --git a/src/IconSignatureRounded.tsx b/src/IconSignatureRounded.tsx index 81d2b6ee7..661288f20 100644 --- a/src/IconSignatureRounded.tsx +++ b/src/IconSignatureRounded.tsx @@ -8,4 +8,4 @@ const IconSignatureRounded: React.FC = ({ ...props }) => ( ) -export { IconSignatureRounded as default } +export default IconSignatureRounded diff --git a/src/IconSignatureRoundedFilled.tsx b/src/IconSignatureRoundedFilled.tsx index e4b218db3..c54cf55f4 100644 --- a/src/IconSignatureRoundedFilled.tsx +++ b/src/IconSignatureRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconSignatureRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconSignatureRoundedFilled as default } +export default IconSignatureRoundedFilled diff --git a/src/IconSignatureSharp.tsx b/src/IconSignatureSharp.tsx index 860ccfa36..926ed1b5a 100644 --- a/src/IconSignatureSharp.tsx +++ b/src/IconSignatureSharp.tsx @@ -8,4 +8,4 @@ const IconSignatureSharp: React.FC = ({ ...props }) => ( ) -export { IconSignatureSharp as default } +export default IconSignatureSharp diff --git a/src/IconSignatureSharpFilled.tsx b/src/IconSignatureSharpFilled.tsx index a578b6650..853f55e0f 100644 --- a/src/IconSignatureSharpFilled.tsx +++ b/src/IconSignatureSharpFilled.tsx @@ -8,4 +8,4 @@ const IconSignatureSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconSignatureSharpFilled as default } +export default IconSignatureSharpFilled diff --git a/src/IconSignpostOutlined.tsx b/src/IconSignpostOutlined.tsx index 5be15de75..48b955281 100644 --- a/src/IconSignpostOutlined.tsx +++ b/src/IconSignpostOutlined.tsx @@ -8,4 +8,4 @@ const IconSignpostOutlined: React.FC = ({ ...props }) => ( ) -export { IconSignpostOutlined as default } +export default IconSignpostOutlined diff --git a/src/IconSignpostOutlinedFilled.tsx b/src/IconSignpostOutlinedFilled.tsx index f90b5a25b..53151d8eb 100644 --- a/src/IconSignpostOutlinedFilled.tsx +++ b/src/IconSignpostOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconSignpostOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconSignpostOutlinedFilled as default } +export default IconSignpostOutlinedFilled diff --git a/src/IconSignpostRounded.tsx b/src/IconSignpostRounded.tsx index 303b31828..9bd2c72d2 100644 --- a/src/IconSignpostRounded.tsx +++ b/src/IconSignpostRounded.tsx @@ -8,4 +8,4 @@ const IconSignpostRounded: React.FC = ({ ...props }) => ( ) -export { IconSignpostRounded as default } +export default IconSignpostRounded diff --git a/src/IconSignpostRoundedFilled.tsx b/src/IconSignpostRoundedFilled.tsx index 021d21d75..bae46a2ed 100644 --- a/src/IconSignpostRoundedFilled.tsx +++ b/src/IconSignpostRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconSignpostRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconSignpostRoundedFilled as default } +export default IconSignpostRoundedFilled diff --git a/src/IconSignpostSharp.tsx b/src/IconSignpostSharp.tsx index 8a7699185..7c2beca81 100644 --- a/src/IconSignpostSharp.tsx +++ b/src/IconSignpostSharp.tsx @@ -8,4 +8,4 @@ const IconSignpostSharp: React.FC = ({ ...props }) => ( ) -export { IconSignpostSharp as default } +export default IconSignpostSharp diff --git a/src/IconSignpostSharpFilled.tsx b/src/IconSignpostSharpFilled.tsx index 20500ec51..10539ebd4 100644 --- a/src/IconSignpostSharpFilled.tsx +++ b/src/IconSignpostSharpFilled.tsx @@ -8,4 +8,4 @@ const IconSignpostSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconSignpostSharpFilled as default } +export default IconSignpostSharpFilled diff --git a/src/IconSimCardDownloadOutlined.tsx b/src/IconSimCardDownloadOutlined.tsx index 37164605b..d3720e0ef 100644 --- a/src/IconSimCardDownloadOutlined.tsx +++ b/src/IconSimCardDownloadOutlined.tsx @@ -8,4 +8,4 @@ const IconSimCardDownloadOutlined: React.FC = ({ ...props }) => ( ) -export { IconSimCardDownloadOutlined as default } +export default IconSimCardDownloadOutlined diff --git a/src/IconSimCardDownloadOutlinedFilled.tsx b/src/IconSimCardDownloadOutlinedFilled.tsx index 389063096..b4f5070a5 100644 --- a/src/IconSimCardDownloadOutlinedFilled.tsx +++ b/src/IconSimCardDownloadOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconSimCardDownloadOutlinedFilled: React.FC = ({ ) -export { IconSimCardDownloadOutlinedFilled as default } +export default IconSimCardDownloadOutlinedFilled diff --git a/src/IconSimCardDownloadRounded.tsx b/src/IconSimCardDownloadRounded.tsx index 640e072f1..78ec0ad2e 100644 --- a/src/IconSimCardDownloadRounded.tsx +++ b/src/IconSimCardDownloadRounded.tsx @@ -8,4 +8,4 @@ const IconSimCardDownloadRounded: React.FC = ({ ...props }) => ( ) -export { IconSimCardDownloadRounded as default } +export default IconSimCardDownloadRounded diff --git a/src/IconSimCardDownloadRoundedFilled.tsx b/src/IconSimCardDownloadRoundedFilled.tsx index de0202399..68dd1c41d 100644 --- a/src/IconSimCardDownloadRoundedFilled.tsx +++ b/src/IconSimCardDownloadRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconSimCardDownloadRoundedFilled: React.FC = ({ ) -export { IconSimCardDownloadRoundedFilled as default } +export default IconSimCardDownloadRoundedFilled diff --git a/src/IconSimCardDownloadSharp.tsx b/src/IconSimCardDownloadSharp.tsx index 9effc11e0..9b82d8c69 100644 --- a/src/IconSimCardDownloadSharp.tsx +++ b/src/IconSimCardDownloadSharp.tsx @@ -8,4 +8,4 @@ const IconSimCardDownloadSharp: React.FC = ({ ...props }) => ( ) -export { IconSimCardDownloadSharp as default } +export default IconSimCardDownloadSharp diff --git a/src/IconSimCardDownloadSharpFilled.tsx b/src/IconSimCardDownloadSharpFilled.tsx index b39cebebc..295730913 100644 --- a/src/IconSimCardDownloadSharpFilled.tsx +++ b/src/IconSimCardDownloadSharpFilled.tsx @@ -8,4 +8,4 @@ const IconSimCardDownloadSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconSimCardDownloadSharpFilled as default } +export default IconSimCardDownloadSharpFilled diff --git a/src/IconSimCardOutlined.tsx b/src/IconSimCardOutlined.tsx index 0da11e1e1..bc122b51c 100644 --- a/src/IconSimCardOutlined.tsx +++ b/src/IconSimCardOutlined.tsx @@ -8,4 +8,4 @@ const IconSimCardOutlined: React.FC = ({ ...props }) => ( ) -export { IconSimCardOutlined as default } +export default IconSimCardOutlined diff --git a/src/IconSimCardOutlinedFilled.tsx b/src/IconSimCardOutlinedFilled.tsx index f0a5e6a82..23adf1642 100644 --- a/src/IconSimCardOutlinedFilled.tsx +++ b/src/IconSimCardOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconSimCardOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconSimCardOutlinedFilled as default } +export default IconSimCardOutlinedFilled diff --git a/src/IconSimCardRounded.tsx b/src/IconSimCardRounded.tsx index 20bff80ae..125cfe4e1 100644 --- a/src/IconSimCardRounded.tsx +++ b/src/IconSimCardRounded.tsx @@ -8,4 +8,4 @@ const IconSimCardRounded: React.FC = ({ ...props }) => ( ) -export { IconSimCardRounded as default } +export default IconSimCardRounded diff --git a/src/IconSimCardRoundedFilled.tsx b/src/IconSimCardRoundedFilled.tsx index cb3fa6e44..4d0f39cfe 100644 --- a/src/IconSimCardRoundedFilled.tsx +++ b/src/IconSimCardRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconSimCardRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconSimCardRoundedFilled as default } +export default IconSimCardRoundedFilled diff --git a/src/IconSimCardSharp.tsx b/src/IconSimCardSharp.tsx index 68d70864d..68b1aec79 100644 --- a/src/IconSimCardSharp.tsx +++ b/src/IconSimCardSharp.tsx @@ -8,4 +8,4 @@ const IconSimCardSharp: React.FC = ({ ...props }) => ( ) -export { IconSimCardSharp as default } +export default IconSimCardSharp diff --git a/src/IconSimCardSharpFilled.tsx b/src/IconSimCardSharpFilled.tsx index b290b424a..74fbdcca0 100644 --- a/src/IconSimCardSharpFilled.tsx +++ b/src/IconSimCardSharpFilled.tsx @@ -8,4 +8,4 @@ const IconSimCardSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconSimCardSharpFilled as default } +export default IconSimCardSharpFilled diff --git a/src/IconSingleBedOutlined.tsx b/src/IconSingleBedOutlined.tsx index c481b6ddc..ee913b0d7 100644 --- a/src/IconSingleBedOutlined.tsx +++ b/src/IconSingleBedOutlined.tsx @@ -8,4 +8,4 @@ const IconSingleBedOutlined: React.FC = ({ ...props }) => ( ) -export { IconSingleBedOutlined as default } +export default IconSingleBedOutlined diff --git a/src/IconSingleBedOutlinedFilled.tsx b/src/IconSingleBedOutlinedFilled.tsx index cb86b4087..facd243a1 100644 --- a/src/IconSingleBedOutlinedFilled.tsx +++ b/src/IconSingleBedOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconSingleBedOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconSingleBedOutlinedFilled as default } +export default IconSingleBedOutlinedFilled diff --git a/src/IconSingleBedRounded.tsx b/src/IconSingleBedRounded.tsx index 269717261..29db66215 100644 --- a/src/IconSingleBedRounded.tsx +++ b/src/IconSingleBedRounded.tsx @@ -8,4 +8,4 @@ const IconSingleBedRounded: React.FC = ({ ...props }) => ( ) -export { IconSingleBedRounded as default } +export default IconSingleBedRounded diff --git a/src/IconSingleBedRoundedFilled.tsx b/src/IconSingleBedRoundedFilled.tsx index 03f0e3a78..bc3be9d67 100644 --- a/src/IconSingleBedRoundedFilled.tsx +++ b/src/IconSingleBedRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconSingleBedRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconSingleBedRoundedFilled as default } +export default IconSingleBedRoundedFilled diff --git a/src/IconSingleBedSharp.tsx b/src/IconSingleBedSharp.tsx index c4931e74f..2a7defdbd 100644 --- a/src/IconSingleBedSharp.tsx +++ b/src/IconSingleBedSharp.tsx @@ -8,4 +8,4 @@ const IconSingleBedSharp: React.FC = ({ ...props }) => ( ) -export { IconSingleBedSharp as default } +export default IconSingleBedSharp diff --git a/src/IconSingleBedSharpFilled.tsx b/src/IconSingleBedSharpFilled.tsx index 813dfe89a..2843635f0 100644 --- a/src/IconSingleBedSharpFilled.tsx +++ b/src/IconSingleBedSharpFilled.tsx @@ -8,4 +8,4 @@ const IconSingleBedSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconSingleBedSharpFilled as default } +export default IconSingleBedSharpFilled diff --git a/src/IconSipOutlined.tsx b/src/IconSipOutlined.tsx index d3d766084..915741b0b 100644 --- a/src/IconSipOutlined.tsx +++ b/src/IconSipOutlined.tsx @@ -8,4 +8,4 @@ const IconSipOutlined: React.FC = ({ ...props }) => ( ) -export { IconSipOutlined as default } +export default IconSipOutlined diff --git a/src/IconSipOutlinedFilled.tsx b/src/IconSipOutlinedFilled.tsx index eab295069..583b10d91 100644 --- a/src/IconSipOutlinedFilled.tsx +++ b/src/IconSipOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconSipOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconSipOutlinedFilled as default } +export default IconSipOutlinedFilled diff --git a/src/IconSipRounded.tsx b/src/IconSipRounded.tsx index 9fc15d05b..062c57971 100644 --- a/src/IconSipRounded.tsx +++ b/src/IconSipRounded.tsx @@ -8,4 +8,4 @@ const IconSipRounded: React.FC = ({ ...props }) => ( ) -export { IconSipRounded as default } +export default IconSipRounded diff --git a/src/IconSipRoundedFilled.tsx b/src/IconSipRoundedFilled.tsx index 2a72ed09a..be9d1cf16 100644 --- a/src/IconSipRoundedFilled.tsx +++ b/src/IconSipRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconSipRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconSipRoundedFilled as default } +export default IconSipRoundedFilled diff --git a/src/IconSipSharp.tsx b/src/IconSipSharp.tsx index 96c928e42..fd87a7e56 100644 --- a/src/IconSipSharp.tsx +++ b/src/IconSipSharp.tsx @@ -8,4 +8,4 @@ const IconSipSharp: React.FC = ({ ...props }) => ( ) -export { IconSipSharp as default } +export default IconSipSharp diff --git a/src/IconSipSharpFilled.tsx b/src/IconSipSharpFilled.tsx index c9156593c..cbce26f84 100644 --- a/src/IconSipSharpFilled.tsx +++ b/src/IconSipSharpFilled.tsx @@ -8,4 +8,4 @@ const IconSipSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconSipSharpFilled as default } +export default IconSipSharpFilled diff --git a/src/IconSkateboardingOutlined.tsx b/src/IconSkateboardingOutlined.tsx index 4e3f5321e..486a0dfd6 100644 --- a/src/IconSkateboardingOutlined.tsx +++ b/src/IconSkateboardingOutlined.tsx @@ -8,4 +8,4 @@ const IconSkateboardingOutlined: React.FC = ({ ...props }) => ( ) -export { IconSkateboardingOutlined as default } +export default IconSkateboardingOutlined diff --git a/src/IconSkateboardingOutlinedFilled.tsx b/src/IconSkateboardingOutlinedFilled.tsx index e2b3cb53b..f111e954f 100644 --- a/src/IconSkateboardingOutlinedFilled.tsx +++ b/src/IconSkateboardingOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconSkateboardingOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconSkateboardingOutlinedFilled as default } +export default IconSkateboardingOutlinedFilled diff --git a/src/IconSkateboardingRounded.tsx b/src/IconSkateboardingRounded.tsx index 658239f7d..195b4de3a 100644 --- a/src/IconSkateboardingRounded.tsx +++ b/src/IconSkateboardingRounded.tsx @@ -8,4 +8,4 @@ const IconSkateboardingRounded: React.FC = ({ ...props }) => ( ) -export { IconSkateboardingRounded as default } +export default IconSkateboardingRounded diff --git a/src/IconSkateboardingRoundedFilled.tsx b/src/IconSkateboardingRoundedFilled.tsx index 6a393c572..fa21fa01f 100644 --- a/src/IconSkateboardingRoundedFilled.tsx +++ b/src/IconSkateboardingRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconSkateboardingRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconSkateboardingRoundedFilled as default } +export default IconSkateboardingRoundedFilled diff --git a/src/IconSkateboardingSharp.tsx b/src/IconSkateboardingSharp.tsx index ddb6b422d..b17f8f60f 100644 --- a/src/IconSkateboardingSharp.tsx +++ b/src/IconSkateboardingSharp.tsx @@ -8,4 +8,4 @@ const IconSkateboardingSharp: React.FC = ({ ...props }) => ( ) -export { IconSkateboardingSharp as default } +export default IconSkateboardingSharp diff --git a/src/IconSkateboardingSharpFilled.tsx b/src/IconSkateboardingSharpFilled.tsx index 27429d963..dcfdc6c6d 100644 --- a/src/IconSkateboardingSharpFilled.tsx +++ b/src/IconSkateboardingSharpFilled.tsx @@ -8,4 +8,4 @@ const IconSkateboardingSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconSkateboardingSharpFilled as default } +export default IconSkateboardingSharpFilled diff --git a/src/IconSkeletonOutlined.tsx b/src/IconSkeletonOutlined.tsx index 50eb23a05..8e823ace4 100644 --- a/src/IconSkeletonOutlined.tsx +++ b/src/IconSkeletonOutlined.tsx @@ -8,4 +8,4 @@ const IconSkeletonOutlined: React.FC = ({ ...props }) => ( ) -export { IconSkeletonOutlined as default } +export default IconSkeletonOutlined diff --git a/src/IconSkeletonOutlinedFilled.tsx b/src/IconSkeletonOutlinedFilled.tsx index 6ed5f785e..de7c1c34e 100644 --- a/src/IconSkeletonOutlinedFilled.tsx +++ b/src/IconSkeletonOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconSkeletonOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconSkeletonOutlinedFilled as default } +export default IconSkeletonOutlinedFilled diff --git a/src/IconSkeletonRounded.tsx b/src/IconSkeletonRounded.tsx index 3356eb032..6aec965b8 100644 --- a/src/IconSkeletonRounded.tsx +++ b/src/IconSkeletonRounded.tsx @@ -8,4 +8,4 @@ const IconSkeletonRounded: React.FC = ({ ...props }) => ( ) -export { IconSkeletonRounded as default } +export default IconSkeletonRounded diff --git a/src/IconSkeletonRoundedFilled.tsx b/src/IconSkeletonRoundedFilled.tsx index e4ca43d35..a5a7afe98 100644 --- a/src/IconSkeletonRoundedFilled.tsx +++ b/src/IconSkeletonRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconSkeletonRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconSkeletonRoundedFilled as default } +export default IconSkeletonRoundedFilled diff --git a/src/IconSkeletonSharp.tsx b/src/IconSkeletonSharp.tsx index c6ea9df9c..7e3975c4f 100644 --- a/src/IconSkeletonSharp.tsx +++ b/src/IconSkeletonSharp.tsx @@ -8,4 +8,4 @@ const IconSkeletonSharp: React.FC = ({ ...props }) => ( ) -export { IconSkeletonSharp as default } +export default IconSkeletonSharp diff --git a/src/IconSkeletonSharpFilled.tsx b/src/IconSkeletonSharpFilled.tsx index b262fa500..77b8b3481 100644 --- a/src/IconSkeletonSharpFilled.tsx +++ b/src/IconSkeletonSharpFilled.tsx @@ -8,4 +8,4 @@ const IconSkeletonSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconSkeletonSharpFilled as default } +export default IconSkeletonSharpFilled diff --git a/src/IconSkilletCooktopOutlined.tsx b/src/IconSkilletCooktopOutlined.tsx index 0fff11132..1cf5231e0 100644 --- a/src/IconSkilletCooktopOutlined.tsx +++ b/src/IconSkilletCooktopOutlined.tsx @@ -8,4 +8,4 @@ const IconSkilletCooktopOutlined: React.FC = ({ ...props }) => ( ) -export { IconSkilletCooktopOutlined as default } +export default IconSkilletCooktopOutlined diff --git a/src/IconSkilletCooktopOutlinedFilled.tsx b/src/IconSkilletCooktopOutlinedFilled.tsx index d6be595ba..6f15d271a 100644 --- a/src/IconSkilletCooktopOutlinedFilled.tsx +++ b/src/IconSkilletCooktopOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconSkilletCooktopOutlinedFilled: React.FC = ({ ) -export { IconSkilletCooktopOutlinedFilled as default } +export default IconSkilletCooktopOutlinedFilled diff --git a/src/IconSkilletCooktopRounded.tsx b/src/IconSkilletCooktopRounded.tsx index be58538f3..a3d83a083 100644 --- a/src/IconSkilletCooktopRounded.tsx +++ b/src/IconSkilletCooktopRounded.tsx @@ -8,4 +8,4 @@ const IconSkilletCooktopRounded: React.FC = ({ ...props }) => ( ) -export { IconSkilletCooktopRounded as default } +export default IconSkilletCooktopRounded diff --git a/src/IconSkilletCooktopRoundedFilled.tsx b/src/IconSkilletCooktopRoundedFilled.tsx index a7dc6192f..d2e0b2306 100644 --- a/src/IconSkilletCooktopRoundedFilled.tsx +++ b/src/IconSkilletCooktopRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconSkilletCooktopRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconSkilletCooktopRoundedFilled as default } +export default IconSkilletCooktopRoundedFilled diff --git a/src/IconSkilletCooktopSharp.tsx b/src/IconSkilletCooktopSharp.tsx index b7be2b84a..e2ada7a10 100644 --- a/src/IconSkilletCooktopSharp.tsx +++ b/src/IconSkilletCooktopSharp.tsx @@ -8,4 +8,4 @@ const IconSkilletCooktopSharp: React.FC = ({ ...props }) => ( ) -export { IconSkilletCooktopSharp as default } +export default IconSkilletCooktopSharp diff --git a/src/IconSkilletCooktopSharpFilled.tsx b/src/IconSkilletCooktopSharpFilled.tsx index f8b2542b6..d0bd49928 100644 --- a/src/IconSkilletCooktopSharpFilled.tsx +++ b/src/IconSkilletCooktopSharpFilled.tsx @@ -8,4 +8,4 @@ const IconSkilletCooktopSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconSkilletCooktopSharpFilled as default } +export default IconSkilletCooktopSharpFilled diff --git a/src/IconSkilletOutlined.tsx b/src/IconSkilletOutlined.tsx index 2bb524d7d..d5f409200 100644 --- a/src/IconSkilletOutlined.tsx +++ b/src/IconSkilletOutlined.tsx @@ -8,4 +8,4 @@ const IconSkilletOutlined: React.FC = ({ ...props }) => ( ) -export { IconSkilletOutlined as default } +export default IconSkilletOutlined diff --git a/src/IconSkilletOutlinedFilled.tsx b/src/IconSkilletOutlinedFilled.tsx index bc857554a..8d142dddb 100644 --- a/src/IconSkilletOutlinedFilled.tsx +++ b/src/IconSkilletOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconSkilletOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconSkilletOutlinedFilled as default } +export default IconSkilletOutlinedFilled diff --git a/src/IconSkilletRounded.tsx b/src/IconSkilletRounded.tsx index 498570c0f..832fc6a73 100644 --- a/src/IconSkilletRounded.tsx +++ b/src/IconSkilletRounded.tsx @@ -8,4 +8,4 @@ const IconSkilletRounded: React.FC = ({ ...props }) => ( ) -export { IconSkilletRounded as default } +export default IconSkilletRounded diff --git a/src/IconSkilletRoundedFilled.tsx b/src/IconSkilletRoundedFilled.tsx index 419302e7b..c0144817e 100644 --- a/src/IconSkilletRoundedFilled.tsx +++ b/src/IconSkilletRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconSkilletRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconSkilletRoundedFilled as default } +export default IconSkilletRoundedFilled diff --git a/src/IconSkilletSharp.tsx b/src/IconSkilletSharp.tsx index cc7b7b3e4..9b595556e 100644 --- a/src/IconSkilletSharp.tsx +++ b/src/IconSkilletSharp.tsx @@ -8,4 +8,4 @@ const IconSkilletSharp: React.FC = ({ ...props }) => ( ) -export { IconSkilletSharp as default } +export default IconSkilletSharp diff --git a/src/IconSkilletSharpFilled.tsx b/src/IconSkilletSharpFilled.tsx index 1ac7ba891..3197dda6d 100644 --- a/src/IconSkilletSharpFilled.tsx +++ b/src/IconSkilletSharpFilled.tsx @@ -8,4 +8,4 @@ const IconSkilletSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconSkilletSharpFilled as default } +export default IconSkilletSharpFilled diff --git a/src/IconSkipNextOutlined.tsx b/src/IconSkipNextOutlined.tsx index 40cffca4a..45d22345c 100644 --- a/src/IconSkipNextOutlined.tsx +++ b/src/IconSkipNextOutlined.tsx @@ -8,4 +8,4 @@ const IconSkipNextOutlined: React.FC = ({ ...props }) => ( ) -export { IconSkipNextOutlined as default } +export default IconSkipNextOutlined diff --git a/src/IconSkipNextOutlinedFilled.tsx b/src/IconSkipNextOutlinedFilled.tsx index 12299900e..7d00b2932 100644 --- a/src/IconSkipNextOutlinedFilled.tsx +++ b/src/IconSkipNextOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconSkipNextOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconSkipNextOutlinedFilled as default } +export default IconSkipNextOutlinedFilled diff --git a/src/IconSkipNextRounded.tsx b/src/IconSkipNextRounded.tsx index 5f96117ff..7ead10657 100644 --- a/src/IconSkipNextRounded.tsx +++ b/src/IconSkipNextRounded.tsx @@ -8,4 +8,4 @@ const IconSkipNextRounded: React.FC = ({ ...props }) => ( ) -export { IconSkipNextRounded as default } +export default IconSkipNextRounded diff --git a/src/IconSkipNextRoundedFilled.tsx b/src/IconSkipNextRoundedFilled.tsx index d862d50db..4e2879d45 100644 --- a/src/IconSkipNextRoundedFilled.tsx +++ b/src/IconSkipNextRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconSkipNextRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconSkipNextRoundedFilled as default } +export default IconSkipNextRoundedFilled diff --git a/src/IconSkipNextSharp.tsx b/src/IconSkipNextSharp.tsx index 4688a8a6c..9cefb5af2 100644 --- a/src/IconSkipNextSharp.tsx +++ b/src/IconSkipNextSharp.tsx @@ -8,4 +8,4 @@ const IconSkipNextSharp: React.FC = ({ ...props }) => ( ) -export { IconSkipNextSharp as default } +export default IconSkipNextSharp diff --git a/src/IconSkipNextSharpFilled.tsx b/src/IconSkipNextSharpFilled.tsx index 0c5d6b1b6..2c18a3a4d 100644 --- a/src/IconSkipNextSharpFilled.tsx +++ b/src/IconSkipNextSharpFilled.tsx @@ -8,4 +8,4 @@ const IconSkipNextSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconSkipNextSharpFilled as default } +export default IconSkipNextSharpFilled diff --git a/src/IconSkipPreviousOutlined.tsx b/src/IconSkipPreviousOutlined.tsx index fc0c3002c..02c6aadc7 100644 --- a/src/IconSkipPreviousOutlined.tsx +++ b/src/IconSkipPreviousOutlined.tsx @@ -8,4 +8,4 @@ const IconSkipPreviousOutlined: React.FC = ({ ...props }) => ( ) -export { IconSkipPreviousOutlined as default } +export default IconSkipPreviousOutlined diff --git a/src/IconSkipPreviousOutlinedFilled.tsx b/src/IconSkipPreviousOutlinedFilled.tsx index 609172965..724746797 100644 --- a/src/IconSkipPreviousOutlinedFilled.tsx +++ b/src/IconSkipPreviousOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconSkipPreviousOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconSkipPreviousOutlinedFilled as default } +export default IconSkipPreviousOutlinedFilled diff --git a/src/IconSkipPreviousRounded.tsx b/src/IconSkipPreviousRounded.tsx index 3531b5084..464f124ee 100644 --- a/src/IconSkipPreviousRounded.tsx +++ b/src/IconSkipPreviousRounded.tsx @@ -8,4 +8,4 @@ const IconSkipPreviousRounded: React.FC = ({ ...props }) => ( ) -export { IconSkipPreviousRounded as default } +export default IconSkipPreviousRounded diff --git a/src/IconSkipPreviousRoundedFilled.tsx b/src/IconSkipPreviousRoundedFilled.tsx index 4ac407458..6e70b9bf2 100644 --- a/src/IconSkipPreviousRoundedFilled.tsx +++ b/src/IconSkipPreviousRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconSkipPreviousRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconSkipPreviousRoundedFilled as default } +export default IconSkipPreviousRoundedFilled diff --git a/src/IconSkipPreviousSharp.tsx b/src/IconSkipPreviousSharp.tsx index aeab5e869..ff7f9e684 100644 --- a/src/IconSkipPreviousSharp.tsx +++ b/src/IconSkipPreviousSharp.tsx @@ -8,4 +8,4 @@ const IconSkipPreviousSharp: React.FC = ({ ...props }) => ( ) -export { IconSkipPreviousSharp as default } +export default IconSkipPreviousSharp diff --git a/src/IconSkipPreviousSharpFilled.tsx b/src/IconSkipPreviousSharpFilled.tsx index e2341b01a..c59f5af63 100644 --- a/src/IconSkipPreviousSharpFilled.tsx +++ b/src/IconSkipPreviousSharpFilled.tsx @@ -8,4 +8,4 @@ const IconSkipPreviousSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconSkipPreviousSharpFilled as default } +export default IconSkipPreviousSharpFilled diff --git a/src/IconSkullOutlined.tsx b/src/IconSkullOutlined.tsx index 66a41dfad..aeb57922a 100644 --- a/src/IconSkullOutlined.tsx +++ b/src/IconSkullOutlined.tsx @@ -8,4 +8,4 @@ const IconSkullOutlined: React.FC = ({ ...props }) => ( ) -export { IconSkullOutlined as default } +export default IconSkullOutlined diff --git a/src/IconSkullOutlinedFilled.tsx b/src/IconSkullOutlinedFilled.tsx index 0d558ce4d..da2ceacde 100644 --- a/src/IconSkullOutlinedFilled.tsx +++ b/src/IconSkullOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconSkullOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconSkullOutlinedFilled as default } +export default IconSkullOutlinedFilled diff --git a/src/IconSkullRounded.tsx b/src/IconSkullRounded.tsx index 2d55d5ea0..72bed5671 100644 --- a/src/IconSkullRounded.tsx +++ b/src/IconSkullRounded.tsx @@ -8,4 +8,4 @@ const IconSkullRounded: React.FC = ({ ...props }) => ( ) -export { IconSkullRounded as default } +export default IconSkullRounded diff --git a/src/IconSkullRoundedFilled.tsx b/src/IconSkullRoundedFilled.tsx index 9bb8d8de7..bbbfd2f14 100644 --- a/src/IconSkullRoundedFilled.tsx +++ b/src/IconSkullRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconSkullRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconSkullRoundedFilled as default } +export default IconSkullRoundedFilled diff --git a/src/IconSkullSharp.tsx b/src/IconSkullSharp.tsx index 16595253a..4333c6d2f 100644 --- a/src/IconSkullSharp.tsx +++ b/src/IconSkullSharp.tsx @@ -8,4 +8,4 @@ const IconSkullSharp: React.FC = ({ ...props }) => ( ) -export { IconSkullSharp as default } +export default IconSkullSharp diff --git a/src/IconSkullSharpFilled.tsx b/src/IconSkullSharpFilled.tsx index c2dc37a01..7cef682a1 100644 --- a/src/IconSkullSharpFilled.tsx +++ b/src/IconSkullSharpFilled.tsx @@ -8,4 +8,4 @@ const IconSkullSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconSkullSharpFilled as default } +export default IconSkullSharpFilled diff --git a/src/IconSlabSerifOutlined.tsx b/src/IconSlabSerifOutlined.tsx index 6b5e6428d..a05497404 100644 --- a/src/IconSlabSerifOutlined.tsx +++ b/src/IconSlabSerifOutlined.tsx @@ -8,4 +8,4 @@ const IconSlabSerifOutlined: React.FC = ({ ...props }) => ( ) -export { IconSlabSerifOutlined as default } +export default IconSlabSerifOutlined diff --git a/src/IconSlabSerifOutlinedFilled.tsx b/src/IconSlabSerifOutlinedFilled.tsx index fa9fcabbf..32f68ae9c 100644 --- a/src/IconSlabSerifOutlinedFilled.tsx +++ b/src/IconSlabSerifOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconSlabSerifOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconSlabSerifOutlinedFilled as default } +export default IconSlabSerifOutlinedFilled diff --git a/src/IconSlabSerifRounded.tsx b/src/IconSlabSerifRounded.tsx index 59747da15..ec12fcc04 100644 --- a/src/IconSlabSerifRounded.tsx +++ b/src/IconSlabSerifRounded.tsx @@ -8,4 +8,4 @@ const IconSlabSerifRounded: React.FC = ({ ...props }) => ( ) -export { IconSlabSerifRounded as default } +export default IconSlabSerifRounded diff --git a/src/IconSlabSerifRoundedFilled.tsx b/src/IconSlabSerifRoundedFilled.tsx index 2908d41a6..1b6195837 100644 --- a/src/IconSlabSerifRoundedFilled.tsx +++ b/src/IconSlabSerifRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconSlabSerifRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconSlabSerifRoundedFilled as default } +export default IconSlabSerifRoundedFilled diff --git a/src/IconSlabSerifSharp.tsx b/src/IconSlabSerifSharp.tsx index 4c74f30fb..f55201198 100644 --- a/src/IconSlabSerifSharp.tsx +++ b/src/IconSlabSerifSharp.tsx @@ -8,4 +8,4 @@ const IconSlabSerifSharp: React.FC = ({ ...props }) => ( ) -export { IconSlabSerifSharp as default } +export default IconSlabSerifSharp diff --git a/src/IconSlabSerifSharpFilled.tsx b/src/IconSlabSerifSharpFilled.tsx index 30e1c0c0e..9f2b7d8b0 100644 --- a/src/IconSlabSerifSharpFilled.tsx +++ b/src/IconSlabSerifSharpFilled.tsx @@ -8,4 +8,4 @@ const IconSlabSerifSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconSlabSerifSharpFilled as default } +export default IconSlabSerifSharpFilled diff --git a/src/IconSleddingOutlined.tsx b/src/IconSleddingOutlined.tsx index 0816f7991..bf75335ac 100644 --- a/src/IconSleddingOutlined.tsx +++ b/src/IconSleddingOutlined.tsx @@ -8,4 +8,4 @@ const IconSleddingOutlined: React.FC = ({ ...props }) => ( ) -export { IconSleddingOutlined as default } +export default IconSleddingOutlined diff --git a/src/IconSleddingOutlinedFilled.tsx b/src/IconSleddingOutlinedFilled.tsx index 1fa716777..0258473c2 100644 --- a/src/IconSleddingOutlinedFilled.tsx +++ b/src/IconSleddingOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconSleddingOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconSleddingOutlinedFilled as default } +export default IconSleddingOutlinedFilled diff --git a/src/IconSleddingRounded.tsx b/src/IconSleddingRounded.tsx index 104ff39af..6abbc9366 100644 --- a/src/IconSleddingRounded.tsx +++ b/src/IconSleddingRounded.tsx @@ -8,4 +8,4 @@ const IconSleddingRounded: React.FC = ({ ...props }) => ( ) -export { IconSleddingRounded as default } +export default IconSleddingRounded diff --git a/src/IconSleddingRoundedFilled.tsx b/src/IconSleddingRoundedFilled.tsx index 361f7bc0a..984e4c3a6 100644 --- a/src/IconSleddingRoundedFilled.tsx +++ b/src/IconSleddingRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconSleddingRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconSleddingRoundedFilled as default } +export default IconSleddingRoundedFilled diff --git a/src/IconSleddingSharp.tsx b/src/IconSleddingSharp.tsx index 3b13711c7..5cea65bc9 100644 --- a/src/IconSleddingSharp.tsx +++ b/src/IconSleddingSharp.tsx @@ -8,4 +8,4 @@ const IconSleddingSharp: React.FC = ({ ...props }) => ( ) -export { IconSleddingSharp as default } +export default IconSleddingSharp diff --git a/src/IconSleddingSharpFilled.tsx b/src/IconSleddingSharpFilled.tsx index d88369187..7b73466a5 100644 --- a/src/IconSleddingSharpFilled.tsx +++ b/src/IconSleddingSharpFilled.tsx @@ -8,4 +8,4 @@ const IconSleddingSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconSleddingSharpFilled as default } +export default IconSleddingSharpFilled diff --git a/src/IconSleepScoreOutlined.tsx b/src/IconSleepScoreOutlined.tsx index f5258b758..40f16c5c7 100644 --- a/src/IconSleepScoreOutlined.tsx +++ b/src/IconSleepScoreOutlined.tsx @@ -8,4 +8,4 @@ const IconSleepScoreOutlined: React.FC = ({ ...props }) => ( ) -export { IconSleepScoreOutlined as default } +export default IconSleepScoreOutlined diff --git a/src/IconSleepScoreOutlinedFilled.tsx b/src/IconSleepScoreOutlinedFilled.tsx index 94060b82e..b9ab1f47c 100644 --- a/src/IconSleepScoreOutlinedFilled.tsx +++ b/src/IconSleepScoreOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconSleepScoreOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconSleepScoreOutlinedFilled as default } +export default IconSleepScoreOutlinedFilled diff --git a/src/IconSleepScoreRounded.tsx b/src/IconSleepScoreRounded.tsx index 4be0c53e8..49eaa3a74 100644 --- a/src/IconSleepScoreRounded.tsx +++ b/src/IconSleepScoreRounded.tsx @@ -8,4 +8,4 @@ const IconSleepScoreRounded: React.FC = ({ ...props }) => ( ) -export { IconSleepScoreRounded as default } +export default IconSleepScoreRounded diff --git a/src/IconSleepScoreRoundedFilled.tsx b/src/IconSleepScoreRoundedFilled.tsx index 41b699dd6..4d7122e16 100644 --- a/src/IconSleepScoreRoundedFilled.tsx +++ b/src/IconSleepScoreRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconSleepScoreRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconSleepScoreRoundedFilled as default } +export default IconSleepScoreRoundedFilled diff --git a/src/IconSleepScoreSharp.tsx b/src/IconSleepScoreSharp.tsx index b5e678e76..c8cd43159 100644 --- a/src/IconSleepScoreSharp.tsx +++ b/src/IconSleepScoreSharp.tsx @@ -8,4 +8,4 @@ const IconSleepScoreSharp: React.FC = ({ ...props }) => ( ) -export { IconSleepScoreSharp as default } +export default IconSleepScoreSharp diff --git a/src/IconSleepScoreSharpFilled.tsx b/src/IconSleepScoreSharpFilled.tsx index c3e66309e..2b7e9f548 100644 --- a/src/IconSleepScoreSharpFilled.tsx +++ b/src/IconSleepScoreSharpFilled.tsx @@ -8,4 +8,4 @@ const IconSleepScoreSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconSleepScoreSharpFilled as default } +export default IconSleepScoreSharpFilled diff --git a/src/IconSlideLibraryOutlined.tsx b/src/IconSlideLibraryOutlined.tsx index 4be227641..e3d1cf7b1 100644 --- a/src/IconSlideLibraryOutlined.tsx +++ b/src/IconSlideLibraryOutlined.tsx @@ -8,4 +8,4 @@ const IconSlideLibraryOutlined: React.FC = ({ ...props }) => ( ) -export { IconSlideLibraryOutlined as default } +export default IconSlideLibraryOutlined diff --git a/src/IconSlideLibraryOutlinedFilled.tsx b/src/IconSlideLibraryOutlinedFilled.tsx index 09f68dfe8..b3098f01e 100644 --- a/src/IconSlideLibraryOutlinedFilled.tsx +++ b/src/IconSlideLibraryOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconSlideLibraryOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconSlideLibraryOutlinedFilled as default } +export default IconSlideLibraryOutlinedFilled diff --git a/src/IconSlideLibraryRounded.tsx b/src/IconSlideLibraryRounded.tsx index 3456e48e4..2468677bb 100644 --- a/src/IconSlideLibraryRounded.tsx +++ b/src/IconSlideLibraryRounded.tsx @@ -8,4 +8,4 @@ const IconSlideLibraryRounded: React.FC = ({ ...props }) => ( ) -export { IconSlideLibraryRounded as default } +export default IconSlideLibraryRounded diff --git a/src/IconSlideLibraryRoundedFilled.tsx b/src/IconSlideLibraryRoundedFilled.tsx index c336f6fd1..8095b881e 100644 --- a/src/IconSlideLibraryRoundedFilled.tsx +++ b/src/IconSlideLibraryRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconSlideLibraryRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconSlideLibraryRoundedFilled as default } +export default IconSlideLibraryRoundedFilled diff --git a/src/IconSlideLibrarySharp.tsx b/src/IconSlideLibrarySharp.tsx index 744a25dcc..60dc17122 100644 --- a/src/IconSlideLibrarySharp.tsx +++ b/src/IconSlideLibrarySharp.tsx @@ -8,4 +8,4 @@ const IconSlideLibrarySharp: React.FC = ({ ...props }) => ( ) -export { IconSlideLibrarySharp as default } +export default IconSlideLibrarySharp diff --git a/src/IconSlideLibrarySharpFilled.tsx b/src/IconSlideLibrarySharpFilled.tsx index f1c8ad4db..845462bfc 100644 --- a/src/IconSlideLibrarySharpFilled.tsx +++ b/src/IconSlideLibrarySharpFilled.tsx @@ -8,4 +8,4 @@ const IconSlideLibrarySharpFilled: React.FC = ({ ...props }) => ( ) -export { IconSlideLibrarySharpFilled as default } +export default IconSlideLibrarySharpFilled diff --git a/src/IconSlidersOutlined.tsx b/src/IconSlidersOutlined.tsx index 7c92fcb4c..7638beaf1 100644 --- a/src/IconSlidersOutlined.tsx +++ b/src/IconSlidersOutlined.tsx @@ -8,4 +8,4 @@ const IconSlidersOutlined: React.FC = ({ ...props }) => ( ) -export { IconSlidersOutlined as default } +export default IconSlidersOutlined diff --git a/src/IconSlidersOutlinedFilled.tsx b/src/IconSlidersOutlinedFilled.tsx index e690348e8..ccfe63aa1 100644 --- a/src/IconSlidersOutlinedFilled.tsx +++ b/src/IconSlidersOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconSlidersOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconSlidersOutlinedFilled as default } +export default IconSlidersOutlinedFilled diff --git a/src/IconSlidersRounded.tsx b/src/IconSlidersRounded.tsx index dc57a3490..ecccfb768 100644 --- a/src/IconSlidersRounded.tsx +++ b/src/IconSlidersRounded.tsx @@ -8,4 +8,4 @@ const IconSlidersRounded: React.FC = ({ ...props }) => ( ) -export { IconSlidersRounded as default } +export default IconSlidersRounded diff --git a/src/IconSlidersRoundedFilled.tsx b/src/IconSlidersRoundedFilled.tsx index 8a8c4c92e..208808ac6 100644 --- a/src/IconSlidersRoundedFilled.tsx +++ b/src/IconSlidersRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconSlidersRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconSlidersRoundedFilled as default } +export default IconSlidersRoundedFilled diff --git a/src/IconSlidersSharp.tsx b/src/IconSlidersSharp.tsx index 4bd1847d2..0cab29182 100644 --- a/src/IconSlidersSharp.tsx +++ b/src/IconSlidersSharp.tsx @@ -8,4 +8,4 @@ const IconSlidersSharp: React.FC = ({ ...props }) => ( ) -export { IconSlidersSharp as default } +export default IconSlidersSharp diff --git a/src/IconSlidersSharpFilled.tsx b/src/IconSlidersSharpFilled.tsx index 6737f4e8a..e6a730afe 100644 --- a/src/IconSlidersSharpFilled.tsx +++ b/src/IconSlidersSharpFilled.tsx @@ -8,4 +8,4 @@ const IconSlidersSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconSlidersSharpFilled as default } +export default IconSlidersSharpFilled diff --git a/src/IconSlideshowOutlined.tsx b/src/IconSlideshowOutlined.tsx index 29e7290d6..c9988cb29 100644 --- a/src/IconSlideshowOutlined.tsx +++ b/src/IconSlideshowOutlined.tsx @@ -8,4 +8,4 @@ const IconSlideshowOutlined: React.FC = ({ ...props }) => ( ) -export { IconSlideshowOutlined as default } +export default IconSlideshowOutlined diff --git a/src/IconSlideshowOutlinedFilled.tsx b/src/IconSlideshowOutlinedFilled.tsx index 83384e1ff..c2e71775b 100644 --- a/src/IconSlideshowOutlinedFilled.tsx +++ b/src/IconSlideshowOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconSlideshowOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconSlideshowOutlinedFilled as default } +export default IconSlideshowOutlinedFilled diff --git a/src/IconSlideshowRounded.tsx b/src/IconSlideshowRounded.tsx index 4c2587af0..0d0995fe1 100644 --- a/src/IconSlideshowRounded.tsx +++ b/src/IconSlideshowRounded.tsx @@ -8,4 +8,4 @@ const IconSlideshowRounded: React.FC = ({ ...props }) => ( ) -export { IconSlideshowRounded as default } +export default IconSlideshowRounded diff --git a/src/IconSlideshowRoundedFilled.tsx b/src/IconSlideshowRoundedFilled.tsx index d0519b63c..6e534e130 100644 --- a/src/IconSlideshowRoundedFilled.tsx +++ b/src/IconSlideshowRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconSlideshowRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconSlideshowRoundedFilled as default } +export default IconSlideshowRoundedFilled diff --git a/src/IconSlideshowSharp.tsx b/src/IconSlideshowSharp.tsx index 443a62b20..d7c99a52a 100644 --- a/src/IconSlideshowSharp.tsx +++ b/src/IconSlideshowSharp.tsx @@ -8,4 +8,4 @@ const IconSlideshowSharp: React.FC = ({ ...props }) => ( ) -export { IconSlideshowSharp as default } +export default IconSlideshowSharp diff --git a/src/IconSlideshowSharpFilled.tsx b/src/IconSlideshowSharpFilled.tsx index 9d70876f5..a887872ab 100644 --- a/src/IconSlideshowSharpFilled.tsx +++ b/src/IconSlideshowSharpFilled.tsx @@ -8,4 +8,4 @@ const IconSlideshowSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconSlideshowSharpFilled as default } +export default IconSlideshowSharpFilled diff --git a/src/IconSlowMotionVideoOutlined.tsx b/src/IconSlowMotionVideoOutlined.tsx index 26e1479e9..e9720d72f 100644 --- a/src/IconSlowMotionVideoOutlined.tsx +++ b/src/IconSlowMotionVideoOutlined.tsx @@ -8,4 +8,4 @@ const IconSlowMotionVideoOutlined: React.FC = ({ ...props }) => ( ) -export { IconSlowMotionVideoOutlined as default } +export default IconSlowMotionVideoOutlined diff --git a/src/IconSlowMotionVideoOutlinedFilled.tsx b/src/IconSlowMotionVideoOutlinedFilled.tsx index 10bb0b13c..161e96f21 100644 --- a/src/IconSlowMotionVideoOutlinedFilled.tsx +++ b/src/IconSlowMotionVideoOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconSlowMotionVideoOutlinedFilled: React.FC = ({ ) -export { IconSlowMotionVideoOutlinedFilled as default } +export default IconSlowMotionVideoOutlinedFilled diff --git a/src/IconSlowMotionVideoRounded.tsx b/src/IconSlowMotionVideoRounded.tsx index 110824e1d..8ff32803c 100644 --- a/src/IconSlowMotionVideoRounded.tsx +++ b/src/IconSlowMotionVideoRounded.tsx @@ -8,4 +8,4 @@ const IconSlowMotionVideoRounded: React.FC = ({ ...props }) => ( ) -export { IconSlowMotionVideoRounded as default } +export default IconSlowMotionVideoRounded diff --git a/src/IconSlowMotionVideoRoundedFilled.tsx b/src/IconSlowMotionVideoRoundedFilled.tsx index 6d02ada5e..e0b99e5e5 100644 --- a/src/IconSlowMotionVideoRoundedFilled.tsx +++ b/src/IconSlowMotionVideoRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconSlowMotionVideoRoundedFilled: React.FC = ({ ) -export { IconSlowMotionVideoRoundedFilled as default } +export default IconSlowMotionVideoRoundedFilled diff --git a/src/IconSlowMotionVideoSharp.tsx b/src/IconSlowMotionVideoSharp.tsx index 3e5672f15..faa2754e7 100644 --- a/src/IconSlowMotionVideoSharp.tsx +++ b/src/IconSlowMotionVideoSharp.tsx @@ -8,4 +8,4 @@ const IconSlowMotionVideoSharp: React.FC = ({ ...props }) => ( ) -export { IconSlowMotionVideoSharp as default } +export default IconSlowMotionVideoSharp diff --git a/src/IconSlowMotionVideoSharpFilled.tsx b/src/IconSlowMotionVideoSharpFilled.tsx index 7a6d65c28..12a649049 100644 --- a/src/IconSlowMotionVideoSharpFilled.tsx +++ b/src/IconSlowMotionVideoSharpFilled.tsx @@ -8,4 +8,4 @@ const IconSlowMotionVideoSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconSlowMotionVideoSharpFilled as default } +export default IconSlowMotionVideoSharpFilled diff --git a/src/IconSmartCardReaderOffOutlined.tsx b/src/IconSmartCardReaderOffOutlined.tsx index b49d0652c..163e73a9e 100644 --- a/src/IconSmartCardReaderOffOutlined.tsx +++ b/src/IconSmartCardReaderOffOutlined.tsx @@ -8,4 +8,4 @@ const IconSmartCardReaderOffOutlined: React.FC = ({ ...props }) => ( ) -export { IconSmartCardReaderOffOutlined as default } +export default IconSmartCardReaderOffOutlined diff --git a/src/IconSmartCardReaderOffOutlinedFilled.tsx b/src/IconSmartCardReaderOffOutlinedFilled.tsx index 9edbb8234..2647c9d70 100644 --- a/src/IconSmartCardReaderOffOutlinedFilled.tsx +++ b/src/IconSmartCardReaderOffOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconSmartCardReaderOffOutlinedFilled: React.FC = ({ ) -export { IconSmartCardReaderOffOutlinedFilled as default } +export default IconSmartCardReaderOffOutlinedFilled diff --git a/src/IconSmartCardReaderOffRounded.tsx b/src/IconSmartCardReaderOffRounded.tsx index b1841fcea..cb1d949b4 100644 --- a/src/IconSmartCardReaderOffRounded.tsx +++ b/src/IconSmartCardReaderOffRounded.tsx @@ -8,4 +8,4 @@ const IconSmartCardReaderOffRounded: React.FC = ({ ...props }) => ( ) -export { IconSmartCardReaderOffRounded as default } +export default IconSmartCardReaderOffRounded diff --git a/src/IconSmartCardReaderOffRoundedFilled.tsx b/src/IconSmartCardReaderOffRoundedFilled.tsx index b51473eea..8fdcf780f 100644 --- a/src/IconSmartCardReaderOffRoundedFilled.tsx +++ b/src/IconSmartCardReaderOffRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconSmartCardReaderOffRoundedFilled: React.FC = ({ ) -export { IconSmartCardReaderOffRoundedFilled as default } +export default IconSmartCardReaderOffRoundedFilled diff --git a/src/IconSmartCardReaderOffSharp.tsx b/src/IconSmartCardReaderOffSharp.tsx index a282624ca..956a00030 100644 --- a/src/IconSmartCardReaderOffSharp.tsx +++ b/src/IconSmartCardReaderOffSharp.tsx @@ -8,4 +8,4 @@ const IconSmartCardReaderOffSharp: React.FC = ({ ...props }) => ( ) -export { IconSmartCardReaderOffSharp as default } +export default IconSmartCardReaderOffSharp diff --git a/src/IconSmartCardReaderOffSharpFilled.tsx b/src/IconSmartCardReaderOffSharpFilled.tsx index 3c1dd82e4..bd9bbb4df 100644 --- a/src/IconSmartCardReaderOffSharpFilled.tsx +++ b/src/IconSmartCardReaderOffSharpFilled.tsx @@ -10,4 +10,4 @@ const IconSmartCardReaderOffSharpFilled: React.FC = ({ ) -export { IconSmartCardReaderOffSharpFilled as default } +export default IconSmartCardReaderOffSharpFilled diff --git a/src/IconSmartCardReaderOutlined.tsx b/src/IconSmartCardReaderOutlined.tsx index e95d1d920..e0368d8b0 100644 --- a/src/IconSmartCardReaderOutlined.tsx +++ b/src/IconSmartCardReaderOutlined.tsx @@ -8,4 +8,4 @@ const IconSmartCardReaderOutlined: React.FC = ({ ...props }) => ( ) -export { IconSmartCardReaderOutlined as default } +export default IconSmartCardReaderOutlined diff --git a/src/IconSmartCardReaderOutlinedFilled.tsx b/src/IconSmartCardReaderOutlinedFilled.tsx index ce7abd3ff..fddb74567 100644 --- a/src/IconSmartCardReaderOutlinedFilled.tsx +++ b/src/IconSmartCardReaderOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconSmartCardReaderOutlinedFilled: React.FC = ({ ) -export { IconSmartCardReaderOutlinedFilled as default } +export default IconSmartCardReaderOutlinedFilled diff --git a/src/IconSmartCardReaderRounded.tsx b/src/IconSmartCardReaderRounded.tsx index 40cb227a5..16c954a40 100644 --- a/src/IconSmartCardReaderRounded.tsx +++ b/src/IconSmartCardReaderRounded.tsx @@ -8,4 +8,4 @@ const IconSmartCardReaderRounded: React.FC = ({ ...props }) => ( ) -export { IconSmartCardReaderRounded as default } +export default IconSmartCardReaderRounded diff --git a/src/IconSmartCardReaderRoundedFilled.tsx b/src/IconSmartCardReaderRoundedFilled.tsx index 839fc4c6a..624dae480 100644 --- a/src/IconSmartCardReaderRoundedFilled.tsx +++ b/src/IconSmartCardReaderRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconSmartCardReaderRoundedFilled: React.FC = ({ ) -export { IconSmartCardReaderRoundedFilled as default } +export default IconSmartCardReaderRoundedFilled diff --git a/src/IconSmartCardReaderSharp.tsx b/src/IconSmartCardReaderSharp.tsx index 663dee3b9..8ca45fbd4 100644 --- a/src/IconSmartCardReaderSharp.tsx +++ b/src/IconSmartCardReaderSharp.tsx @@ -8,4 +8,4 @@ const IconSmartCardReaderSharp: React.FC = ({ ...props }) => ( ) -export { IconSmartCardReaderSharp as default } +export default IconSmartCardReaderSharp diff --git a/src/IconSmartCardReaderSharpFilled.tsx b/src/IconSmartCardReaderSharpFilled.tsx index 9f39a8621..b320c1482 100644 --- a/src/IconSmartCardReaderSharpFilled.tsx +++ b/src/IconSmartCardReaderSharpFilled.tsx @@ -8,4 +8,4 @@ const IconSmartCardReaderSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconSmartCardReaderSharpFilled as default } +export default IconSmartCardReaderSharpFilled diff --git a/src/IconSmartDisplayOutlined.tsx b/src/IconSmartDisplayOutlined.tsx index 3b84e19a7..518812df5 100644 --- a/src/IconSmartDisplayOutlined.tsx +++ b/src/IconSmartDisplayOutlined.tsx @@ -8,4 +8,4 @@ const IconSmartDisplayOutlined: React.FC = ({ ...props }) => ( ) -export { IconSmartDisplayOutlined as default } +export default IconSmartDisplayOutlined diff --git a/src/IconSmartDisplayOutlinedFilled.tsx b/src/IconSmartDisplayOutlinedFilled.tsx index 4f78e9b4a..af384803c 100644 --- a/src/IconSmartDisplayOutlinedFilled.tsx +++ b/src/IconSmartDisplayOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconSmartDisplayOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconSmartDisplayOutlinedFilled as default } +export default IconSmartDisplayOutlinedFilled diff --git a/src/IconSmartDisplayRounded.tsx b/src/IconSmartDisplayRounded.tsx index ecf3963e1..438956213 100644 --- a/src/IconSmartDisplayRounded.tsx +++ b/src/IconSmartDisplayRounded.tsx @@ -8,4 +8,4 @@ const IconSmartDisplayRounded: React.FC = ({ ...props }) => ( ) -export { IconSmartDisplayRounded as default } +export default IconSmartDisplayRounded diff --git a/src/IconSmartDisplayRoundedFilled.tsx b/src/IconSmartDisplayRoundedFilled.tsx index 7c7439d88..b1ec6d082 100644 --- a/src/IconSmartDisplayRoundedFilled.tsx +++ b/src/IconSmartDisplayRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconSmartDisplayRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconSmartDisplayRoundedFilled as default } +export default IconSmartDisplayRoundedFilled diff --git a/src/IconSmartDisplaySharp.tsx b/src/IconSmartDisplaySharp.tsx index a8f27ca19..eb747e26f 100644 --- a/src/IconSmartDisplaySharp.tsx +++ b/src/IconSmartDisplaySharp.tsx @@ -8,4 +8,4 @@ const IconSmartDisplaySharp: React.FC = ({ ...props }) => ( ) -export { IconSmartDisplaySharp as default } +export default IconSmartDisplaySharp diff --git a/src/IconSmartDisplaySharpFilled.tsx b/src/IconSmartDisplaySharpFilled.tsx index 695d07be8..1d353efc1 100644 --- a/src/IconSmartDisplaySharpFilled.tsx +++ b/src/IconSmartDisplaySharpFilled.tsx @@ -8,4 +8,4 @@ const IconSmartDisplaySharpFilled: React.FC = ({ ...props }) => ( ) -export { IconSmartDisplaySharpFilled as default } +export default IconSmartDisplaySharpFilled diff --git a/src/IconSmartOutletOutlined.tsx b/src/IconSmartOutletOutlined.tsx index 6105d3135..4b066b36a 100644 --- a/src/IconSmartOutletOutlined.tsx +++ b/src/IconSmartOutletOutlined.tsx @@ -8,4 +8,4 @@ const IconSmartOutletOutlined: React.FC = ({ ...props }) => ( ) -export { IconSmartOutletOutlined as default } +export default IconSmartOutletOutlined diff --git a/src/IconSmartOutletOutlinedFilled.tsx b/src/IconSmartOutletOutlinedFilled.tsx index 1d8be5349..8556ecade 100644 --- a/src/IconSmartOutletOutlinedFilled.tsx +++ b/src/IconSmartOutletOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconSmartOutletOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconSmartOutletOutlinedFilled as default } +export default IconSmartOutletOutlinedFilled diff --git a/src/IconSmartOutletRounded.tsx b/src/IconSmartOutletRounded.tsx index ebfbca7ba..2b4c7322d 100644 --- a/src/IconSmartOutletRounded.tsx +++ b/src/IconSmartOutletRounded.tsx @@ -8,4 +8,4 @@ const IconSmartOutletRounded: React.FC = ({ ...props }) => ( ) -export { IconSmartOutletRounded as default } +export default IconSmartOutletRounded diff --git a/src/IconSmartOutletRoundedFilled.tsx b/src/IconSmartOutletRoundedFilled.tsx index 964ddf1d4..987afb4c1 100644 --- a/src/IconSmartOutletRoundedFilled.tsx +++ b/src/IconSmartOutletRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconSmartOutletRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconSmartOutletRoundedFilled as default } +export default IconSmartOutletRoundedFilled diff --git a/src/IconSmartOutletSharp.tsx b/src/IconSmartOutletSharp.tsx index a3ba2644b..05100b594 100644 --- a/src/IconSmartOutletSharp.tsx +++ b/src/IconSmartOutletSharp.tsx @@ -8,4 +8,4 @@ const IconSmartOutletSharp: React.FC = ({ ...props }) => ( ) -export { IconSmartOutletSharp as default } +export default IconSmartOutletSharp diff --git a/src/IconSmartOutletSharpFilled.tsx b/src/IconSmartOutletSharpFilled.tsx index d90974abc..dc539d4c7 100644 --- a/src/IconSmartOutletSharpFilled.tsx +++ b/src/IconSmartOutletSharpFilled.tsx @@ -8,4 +8,4 @@ const IconSmartOutletSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconSmartOutletSharpFilled as default } +export default IconSmartOutletSharpFilled diff --git a/src/IconSmartScreenOutlined.tsx b/src/IconSmartScreenOutlined.tsx index 2402be92e..94be71496 100644 --- a/src/IconSmartScreenOutlined.tsx +++ b/src/IconSmartScreenOutlined.tsx @@ -8,4 +8,4 @@ const IconSmartScreenOutlined: React.FC = ({ ...props }) => ( ) -export { IconSmartScreenOutlined as default } +export default IconSmartScreenOutlined diff --git a/src/IconSmartScreenOutlinedFilled.tsx b/src/IconSmartScreenOutlinedFilled.tsx index 489b1a96e..326835a7e 100644 --- a/src/IconSmartScreenOutlinedFilled.tsx +++ b/src/IconSmartScreenOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconSmartScreenOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconSmartScreenOutlinedFilled as default } +export default IconSmartScreenOutlinedFilled diff --git a/src/IconSmartScreenRounded.tsx b/src/IconSmartScreenRounded.tsx index 7c76e3416..a45a92909 100644 --- a/src/IconSmartScreenRounded.tsx +++ b/src/IconSmartScreenRounded.tsx @@ -8,4 +8,4 @@ const IconSmartScreenRounded: React.FC = ({ ...props }) => ( ) -export { IconSmartScreenRounded as default } +export default IconSmartScreenRounded diff --git a/src/IconSmartScreenRoundedFilled.tsx b/src/IconSmartScreenRoundedFilled.tsx index e290254b7..85ae8374b 100644 --- a/src/IconSmartScreenRoundedFilled.tsx +++ b/src/IconSmartScreenRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconSmartScreenRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconSmartScreenRoundedFilled as default } +export default IconSmartScreenRoundedFilled diff --git a/src/IconSmartScreenSharp.tsx b/src/IconSmartScreenSharp.tsx index b9aed12c7..f989f02ab 100644 --- a/src/IconSmartScreenSharp.tsx +++ b/src/IconSmartScreenSharp.tsx @@ -8,4 +8,4 @@ const IconSmartScreenSharp: React.FC = ({ ...props }) => ( ) -export { IconSmartScreenSharp as default } +export default IconSmartScreenSharp diff --git a/src/IconSmartScreenSharpFilled.tsx b/src/IconSmartScreenSharpFilled.tsx index 456c37304..cb2da38e6 100644 --- a/src/IconSmartScreenSharpFilled.tsx +++ b/src/IconSmartScreenSharpFilled.tsx @@ -8,4 +8,4 @@ const IconSmartScreenSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconSmartScreenSharpFilled as default } +export default IconSmartScreenSharpFilled diff --git a/src/IconSmartToyOutlined.tsx b/src/IconSmartToyOutlined.tsx index fb66c4473..64245a4a2 100644 --- a/src/IconSmartToyOutlined.tsx +++ b/src/IconSmartToyOutlined.tsx @@ -8,4 +8,4 @@ const IconSmartToyOutlined: React.FC = ({ ...props }) => ( ) -export { IconSmartToyOutlined as default } +export default IconSmartToyOutlined diff --git a/src/IconSmartToyOutlinedFilled.tsx b/src/IconSmartToyOutlinedFilled.tsx index fb2f8a348..704ce3c4c 100644 --- a/src/IconSmartToyOutlinedFilled.tsx +++ b/src/IconSmartToyOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconSmartToyOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconSmartToyOutlinedFilled as default } +export default IconSmartToyOutlinedFilled diff --git a/src/IconSmartToyRounded.tsx b/src/IconSmartToyRounded.tsx index 5401999c6..dcd96d39f 100644 --- a/src/IconSmartToyRounded.tsx +++ b/src/IconSmartToyRounded.tsx @@ -8,4 +8,4 @@ const IconSmartToyRounded: React.FC = ({ ...props }) => ( ) -export { IconSmartToyRounded as default } +export default IconSmartToyRounded diff --git a/src/IconSmartToyRoundedFilled.tsx b/src/IconSmartToyRoundedFilled.tsx index 25c0418ac..658191097 100644 --- a/src/IconSmartToyRoundedFilled.tsx +++ b/src/IconSmartToyRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconSmartToyRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconSmartToyRoundedFilled as default } +export default IconSmartToyRoundedFilled diff --git a/src/IconSmartToySharp.tsx b/src/IconSmartToySharp.tsx index ef5db92ac..8eba6c7c9 100644 --- a/src/IconSmartToySharp.tsx +++ b/src/IconSmartToySharp.tsx @@ -8,4 +8,4 @@ const IconSmartToySharp: React.FC = ({ ...props }) => ( ) -export { IconSmartToySharp as default } +export default IconSmartToySharp diff --git a/src/IconSmartToySharpFilled.tsx b/src/IconSmartToySharpFilled.tsx index 7a0e61758..0ee153048 100644 --- a/src/IconSmartToySharpFilled.tsx +++ b/src/IconSmartToySharpFilled.tsx @@ -8,4 +8,4 @@ const IconSmartToySharpFilled: React.FC = ({ ...props }) => ( ) -export { IconSmartToySharpFilled as default } +export default IconSmartToySharpFilled diff --git a/src/IconSmartphoneCameraOutlined.tsx b/src/IconSmartphoneCameraOutlined.tsx index 1ebf935d4..eaba52b10 100644 --- a/src/IconSmartphoneCameraOutlined.tsx +++ b/src/IconSmartphoneCameraOutlined.tsx @@ -8,4 +8,4 @@ const IconSmartphoneCameraOutlined: React.FC = ({ ...props }) => ( ) -export { IconSmartphoneCameraOutlined as default } +export default IconSmartphoneCameraOutlined diff --git a/src/IconSmartphoneCameraOutlinedFilled.tsx b/src/IconSmartphoneCameraOutlinedFilled.tsx index 69a1031fa..9080abfde 100644 --- a/src/IconSmartphoneCameraOutlinedFilled.tsx +++ b/src/IconSmartphoneCameraOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconSmartphoneCameraOutlinedFilled: React.FC = ({ ) -export { IconSmartphoneCameraOutlinedFilled as default } +export default IconSmartphoneCameraOutlinedFilled diff --git a/src/IconSmartphoneCameraRounded.tsx b/src/IconSmartphoneCameraRounded.tsx index 709134e53..70fe3d456 100644 --- a/src/IconSmartphoneCameraRounded.tsx +++ b/src/IconSmartphoneCameraRounded.tsx @@ -8,4 +8,4 @@ const IconSmartphoneCameraRounded: React.FC = ({ ...props }) => ( ) -export { IconSmartphoneCameraRounded as default } +export default IconSmartphoneCameraRounded diff --git a/src/IconSmartphoneCameraRoundedFilled.tsx b/src/IconSmartphoneCameraRoundedFilled.tsx index 95f837457..2d2b37dfd 100644 --- a/src/IconSmartphoneCameraRoundedFilled.tsx +++ b/src/IconSmartphoneCameraRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconSmartphoneCameraRoundedFilled: React.FC = ({ ) -export { IconSmartphoneCameraRoundedFilled as default } +export default IconSmartphoneCameraRoundedFilled diff --git a/src/IconSmartphoneCameraSharp.tsx b/src/IconSmartphoneCameraSharp.tsx index ecef39ebb..6eaf5fe02 100644 --- a/src/IconSmartphoneCameraSharp.tsx +++ b/src/IconSmartphoneCameraSharp.tsx @@ -8,4 +8,4 @@ const IconSmartphoneCameraSharp: React.FC = ({ ...props }) => ( ) -export { IconSmartphoneCameraSharp as default } +export default IconSmartphoneCameraSharp diff --git a/src/IconSmartphoneCameraSharpFilled.tsx b/src/IconSmartphoneCameraSharpFilled.tsx index e5fbf747e..a06333bc2 100644 --- a/src/IconSmartphoneCameraSharpFilled.tsx +++ b/src/IconSmartphoneCameraSharpFilled.tsx @@ -8,4 +8,4 @@ const IconSmartphoneCameraSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconSmartphoneCameraSharpFilled as default } +export default IconSmartphoneCameraSharpFilled diff --git a/src/IconSmartphoneOutlined.tsx b/src/IconSmartphoneOutlined.tsx index 8d1debed4..869c92693 100644 --- a/src/IconSmartphoneOutlined.tsx +++ b/src/IconSmartphoneOutlined.tsx @@ -8,4 +8,4 @@ const IconSmartphoneOutlined: React.FC = ({ ...props }) => ( ) -export { IconSmartphoneOutlined as default } +export default IconSmartphoneOutlined diff --git a/src/IconSmartphoneOutlinedFilled.tsx b/src/IconSmartphoneOutlinedFilled.tsx index 881fe1024..52fc8619b 100644 --- a/src/IconSmartphoneOutlinedFilled.tsx +++ b/src/IconSmartphoneOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconSmartphoneOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconSmartphoneOutlinedFilled as default } +export default IconSmartphoneOutlinedFilled diff --git a/src/IconSmartphoneRounded.tsx b/src/IconSmartphoneRounded.tsx index 4f19f638c..edce5ac7b 100644 --- a/src/IconSmartphoneRounded.tsx +++ b/src/IconSmartphoneRounded.tsx @@ -8,4 +8,4 @@ const IconSmartphoneRounded: React.FC = ({ ...props }) => ( ) -export { IconSmartphoneRounded as default } +export default IconSmartphoneRounded diff --git a/src/IconSmartphoneRoundedFilled.tsx b/src/IconSmartphoneRoundedFilled.tsx index 212fcb8ce..16dc68e6c 100644 --- a/src/IconSmartphoneRoundedFilled.tsx +++ b/src/IconSmartphoneRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconSmartphoneRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconSmartphoneRoundedFilled as default } +export default IconSmartphoneRoundedFilled diff --git a/src/IconSmartphoneSharp.tsx b/src/IconSmartphoneSharp.tsx index fa69c0d9f..51f4fbc98 100644 --- a/src/IconSmartphoneSharp.tsx +++ b/src/IconSmartphoneSharp.tsx @@ -8,4 +8,4 @@ const IconSmartphoneSharp: React.FC = ({ ...props }) => ( ) -export { IconSmartphoneSharp as default } +export default IconSmartphoneSharp diff --git a/src/IconSmartphoneSharpFilled.tsx b/src/IconSmartphoneSharpFilled.tsx index 1a441e5bd..cdaab20da 100644 --- a/src/IconSmartphoneSharpFilled.tsx +++ b/src/IconSmartphoneSharpFilled.tsx @@ -8,4 +8,4 @@ const IconSmartphoneSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconSmartphoneSharpFilled as default } +export default IconSmartphoneSharpFilled diff --git a/src/IconSmbShareOutlined.tsx b/src/IconSmbShareOutlined.tsx index 2605d96ec..0ad691e5e 100644 --- a/src/IconSmbShareOutlined.tsx +++ b/src/IconSmbShareOutlined.tsx @@ -8,4 +8,4 @@ const IconSmbShareOutlined: React.FC = ({ ...props }) => ( ) -export { IconSmbShareOutlined as default } +export default IconSmbShareOutlined diff --git a/src/IconSmbShareOutlinedFilled.tsx b/src/IconSmbShareOutlinedFilled.tsx index 67e91a03f..d7a57db22 100644 --- a/src/IconSmbShareOutlinedFilled.tsx +++ b/src/IconSmbShareOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconSmbShareOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconSmbShareOutlinedFilled as default } +export default IconSmbShareOutlinedFilled diff --git a/src/IconSmbShareRounded.tsx b/src/IconSmbShareRounded.tsx index 32b004dac..644c9bd2d 100644 --- a/src/IconSmbShareRounded.tsx +++ b/src/IconSmbShareRounded.tsx @@ -8,4 +8,4 @@ const IconSmbShareRounded: React.FC = ({ ...props }) => ( ) -export { IconSmbShareRounded as default } +export default IconSmbShareRounded diff --git a/src/IconSmbShareRoundedFilled.tsx b/src/IconSmbShareRoundedFilled.tsx index df0fe3697..cdd7d73d0 100644 --- a/src/IconSmbShareRoundedFilled.tsx +++ b/src/IconSmbShareRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconSmbShareRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconSmbShareRoundedFilled as default } +export default IconSmbShareRoundedFilled diff --git a/src/IconSmbShareSharp.tsx b/src/IconSmbShareSharp.tsx index 99dc3a5de..34f718b7d 100644 --- a/src/IconSmbShareSharp.tsx +++ b/src/IconSmbShareSharp.tsx @@ -8,4 +8,4 @@ const IconSmbShareSharp: React.FC = ({ ...props }) => ( ) -export { IconSmbShareSharp as default } +export default IconSmbShareSharp diff --git a/src/IconSmbShareSharpFilled.tsx b/src/IconSmbShareSharpFilled.tsx index 54a51a628..0de4ab8df 100644 --- a/src/IconSmbShareSharpFilled.tsx +++ b/src/IconSmbShareSharpFilled.tsx @@ -8,4 +8,4 @@ const IconSmbShareSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconSmbShareSharpFilled as default } +export default IconSmbShareSharpFilled diff --git a/src/IconSmokeFreeOutlined.tsx b/src/IconSmokeFreeOutlined.tsx index 30b5fc8ea..c3230a0e1 100644 --- a/src/IconSmokeFreeOutlined.tsx +++ b/src/IconSmokeFreeOutlined.tsx @@ -8,4 +8,4 @@ const IconSmokeFreeOutlined: React.FC = ({ ...props }) => ( ) -export { IconSmokeFreeOutlined as default } +export default IconSmokeFreeOutlined diff --git a/src/IconSmokeFreeOutlinedFilled.tsx b/src/IconSmokeFreeOutlinedFilled.tsx index 782c8f639..7ebc0aec1 100644 --- a/src/IconSmokeFreeOutlinedFilled.tsx +++ b/src/IconSmokeFreeOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconSmokeFreeOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconSmokeFreeOutlinedFilled as default } +export default IconSmokeFreeOutlinedFilled diff --git a/src/IconSmokeFreeRounded.tsx b/src/IconSmokeFreeRounded.tsx index 705714a78..aad02e23b 100644 --- a/src/IconSmokeFreeRounded.tsx +++ b/src/IconSmokeFreeRounded.tsx @@ -8,4 +8,4 @@ const IconSmokeFreeRounded: React.FC = ({ ...props }) => ( ) -export { IconSmokeFreeRounded as default } +export default IconSmokeFreeRounded diff --git a/src/IconSmokeFreeRoundedFilled.tsx b/src/IconSmokeFreeRoundedFilled.tsx index 10dee2653..5a6718d13 100644 --- a/src/IconSmokeFreeRoundedFilled.tsx +++ b/src/IconSmokeFreeRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconSmokeFreeRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconSmokeFreeRoundedFilled as default } +export default IconSmokeFreeRoundedFilled diff --git a/src/IconSmokeFreeSharp.tsx b/src/IconSmokeFreeSharp.tsx index 48b62ef10..2df7288f9 100644 --- a/src/IconSmokeFreeSharp.tsx +++ b/src/IconSmokeFreeSharp.tsx @@ -8,4 +8,4 @@ const IconSmokeFreeSharp: React.FC = ({ ...props }) => ( ) -export { IconSmokeFreeSharp as default } +export default IconSmokeFreeSharp diff --git a/src/IconSmokeFreeSharpFilled.tsx b/src/IconSmokeFreeSharpFilled.tsx index 82b4a8c31..e1099dad5 100644 --- a/src/IconSmokeFreeSharpFilled.tsx +++ b/src/IconSmokeFreeSharpFilled.tsx @@ -8,4 +8,4 @@ const IconSmokeFreeSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconSmokeFreeSharpFilled as default } +export default IconSmokeFreeSharpFilled diff --git a/src/IconSmokingRoomsOutlined.tsx b/src/IconSmokingRoomsOutlined.tsx index bb19b670a..e5225201a 100644 --- a/src/IconSmokingRoomsOutlined.tsx +++ b/src/IconSmokingRoomsOutlined.tsx @@ -8,4 +8,4 @@ const IconSmokingRoomsOutlined: React.FC = ({ ...props }) => ( ) -export { IconSmokingRoomsOutlined as default } +export default IconSmokingRoomsOutlined diff --git a/src/IconSmokingRoomsOutlinedFilled.tsx b/src/IconSmokingRoomsOutlinedFilled.tsx index 05894061b..25622b763 100644 --- a/src/IconSmokingRoomsOutlinedFilled.tsx +++ b/src/IconSmokingRoomsOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconSmokingRoomsOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconSmokingRoomsOutlinedFilled as default } +export default IconSmokingRoomsOutlinedFilled diff --git a/src/IconSmokingRoomsRounded.tsx b/src/IconSmokingRoomsRounded.tsx index aaebe2bdb..eed7780ea 100644 --- a/src/IconSmokingRoomsRounded.tsx +++ b/src/IconSmokingRoomsRounded.tsx @@ -8,4 +8,4 @@ const IconSmokingRoomsRounded: React.FC = ({ ...props }) => ( ) -export { IconSmokingRoomsRounded as default } +export default IconSmokingRoomsRounded diff --git a/src/IconSmokingRoomsRoundedFilled.tsx b/src/IconSmokingRoomsRoundedFilled.tsx index 4b9c822d5..9dc7c1c8e 100644 --- a/src/IconSmokingRoomsRoundedFilled.tsx +++ b/src/IconSmokingRoomsRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconSmokingRoomsRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconSmokingRoomsRoundedFilled as default } +export default IconSmokingRoomsRoundedFilled diff --git a/src/IconSmokingRoomsSharp.tsx b/src/IconSmokingRoomsSharp.tsx index 539a8275d..df6455d58 100644 --- a/src/IconSmokingRoomsSharp.tsx +++ b/src/IconSmokingRoomsSharp.tsx @@ -8,4 +8,4 @@ const IconSmokingRoomsSharp: React.FC = ({ ...props }) => ( ) -export { IconSmokingRoomsSharp as default } +export default IconSmokingRoomsSharp diff --git a/src/IconSmokingRoomsSharpFilled.tsx b/src/IconSmokingRoomsSharpFilled.tsx index e4db361aa..a5c70862f 100644 --- a/src/IconSmokingRoomsSharpFilled.tsx +++ b/src/IconSmokingRoomsSharpFilled.tsx @@ -8,4 +8,4 @@ const IconSmokingRoomsSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconSmokingRoomsSharpFilled as default } +export default IconSmokingRoomsSharpFilled diff --git a/src/IconSmsOutlined.tsx b/src/IconSmsOutlined.tsx index f5fcad269..45a3623f9 100644 --- a/src/IconSmsOutlined.tsx +++ b/src/IconSmsOutlined.tsx @@ -8,4 +8,4 @@ const IconSmsOutlined: React.FC = ({ ...props }) => ( ) -export { IconSmsOutlined as default } +export default IconSmsOutlined diff --git a/src/IconSmsOutlinedFilled.tsx b/src/IconSmsOutlinedFilled.tsx index 53cefba2b..25b646b67 100644 --- a/src/IconSmsOutlinedFilled.tsx +++ b/src/IconSmsOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconSmsOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconSmsOutlinedFilled as default } +export default IconSmsOutlinedFilled diff --git a/src/IconSmsRounded.tsx b/src/IconSmsRounded.tsx index aca75db56..3b6c7fd43 100644 --- a/src/IconSmsRounded.tsx +++ b/src/IconSmsRounded.tsx @@ -8,4 +8,4 @@ const IconSmsRounded: React.FC = ({ ...props }) => ( ) -export { IconSmsRounded as default } +export default IconSmsRounded diff --git a/src/IconSmsRoundedFilled.tsx b/src/IconSmsRoundedFilled.tsx index 225295619..8e30d635c 100644 --- a/src/IconSmsRoundedFilled.tsx +++ b/src/IconSmsRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconSmsRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconSmsRoundedFilled as default } +export default IconSmsRoundedFilled diff --git a/src/IconSmsSharp.tsx b/src/IconSmsSharp.tsx index 693c93862..4ee98c8dc 100644 --- a/src/IconSmsSharp.tsx +++ b/src/IconSmsSharp.tsx @@ -8,4 +8,4 @@ const IconSmsSharp: React.FC = ({ ...props }) => ( ) -export { IconSmsSharp as default } +export default IconSmsSharp diff --git a/src/IconSmsSharpFilled.tsx b/src/IconSmsSharpFilled.tsx index a81627d7c..358a64e56 100644 --- a/src/IconSmsSharpFilled.tsx +++ b/src/IconSmsSharpFilled.tsx @@ -8,4 +8,4 @@ const IconSmsSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconSmsSharpFilled as default } +export default IconSmsSharpFilled diff --git a/src/IconSnippetFolderOutlined.tsx b/src/IconSnippetFolderOutlined.tsx index b0b00a553..bed64221b 100644 --- a/src/IconSnippetFolderOutlined.tsx +++ b/src/IconSnippetFolderOutlined.tsx @@ -8,4 +8,4 @@ const IconSnippetFolderOutlined: React.FC = ({ ...props }) => ( ) -export { IconSnippetFolderOutlined as default } +export default IconSnippetFolderOutlined diff --git a/src/IconSnippetFolderOutlinedFilled.tsx b/src/IconSnippetFolderOutlinedFilled.tsx index affd90bcf..397e09271 100644 --- a/src/IconSnippetFolderOutlinedFilled.tsx +++ b/src/IconSnippetFolderOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconSnippetFolderOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconSnippetFolderOutlinedFilled as default } +export default IconSnippetFolderOutlinedFilled diff --git a/src/IconSnippetFolderRounded.tsx b/src/IconSnippetFolderRounded.tsx index f34f28bc1..dc3cf6133 100644 --- a/src/IconSnippetFolderRounded.tsx +++ b/src/IconSnippetFolderRounded.tsx @@ -8,4 +8,4 @@ const IconSnippetFolderRounded: React.FC = ({ ...props }) => ( ) -export { IconSnippetFolderRounded as default } +export default IconSnippetFolderRounded diff --git a/src/IconSnippetFolderRoundedFilled.tsx b/src/IconSnippetFolderRoundedFilled.tsx index 2a1c78519..9cbfdddc6 100644 --- a/src/IconSnippetFolderRoundedFilled.tsx +++ b/src/IconSnippetFolderRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconSnippetFolderRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconSnippetFolderRoundedFilled as default } +export default IconSnippetFolderRoundedFilled diff --git a/src/IconSnippetFolderSharp.tsx b/src/IconSnippetFolderSharp.tsx index b64f50831..e672c2c0c 100644 --- a/src/IconSnippetFolderSharp.tsx +++ b/src/IconSnippetFolderSharp.tsx @@ -8,4 +8,4 @@ const IconSnippetFolderSharp: React.FC = ({ ...props }) => ( ) -export { IconSnippetFolderSharp as default } +export default IconSnippetFolderSharp diff --git a/src/IconSnippetFolderSharpFilled.tsx b/src/IconSnippetFolderSharpFilled.tsx index db21b2f33..2369b711d 100644 --- a/src/IconSnippetFolderSharpFilled.tsx +++ b/src/IconSnippetFolderSharpFilled.tsx @@ -8,4 +8,4 @@ const IconSnippetFolderSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconSnippetFolderSharpFilled as default } +export default IconSnippetFolderSharpFilled diff --git a/src/IconSnoozeOutlined.tsx b/src/IconSnoozeOutlined.tsx index 9a07628c1..3d56456bb 100644 --- a/src/IconSnoozeOutlined.tsx +++ b/src/IconSnoozeOutlined.tsx @@ -8,4 +8,4 @@ const IconSnoozeOutlined: React.FC = ({ ...props }) => ( ) -export { IconSnoozeOutlined as default } +export default IconSnoozeOutlined diff --git a/src/IconSnoozeOutlinedFilled.tsx b/src/IconSnoozeOutlinedFilled.tsx index 0e9bea5f7..d56a10c58 100644 --- a/src/IconSnoozeOutlinedFilled.tsx +++ b/src/IconSnoozeOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconSnoozeOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconSnoozeOutlinedFilled as default } +export default IconSnoozeOutlinedFilled diff --git a/src/IconSnoozeRounded.tsx b/src/IconSnoozeRounded.tsx index fc72bdd90..ee790201d 100644 --- a/src/IconSnoozeRounded.tsx +++ b/src/IconSnoozeRounded.tsx @@ -8,4 +8,4 @@ const IconSnoozeRounded: React.FC = ({ ...props }) => ( ) -export { IconSnoozeRounded as default } +export default IconSnoozeRounded diff --git a/src/IconSnoozeRoundedFilled.tsx b/src/IconSnoozeRoundedFilled.tsx index 5486eadd4..3b1d413ce 100644 --- a/src/IconSnoozeRoundedFilled.tsx +++ b/src/IconSnoozeRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconSnoozeRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconSnoozeRoundedFilled as default } +export default IconSnoozeRoundedFilled diff --git a/src/IconSnoozeSharp.tsx b/src/IconSnoozeSharp.tsx index a37dc2443..b41c378c6 100644 --- a/src/IconSnoozeSharp.tsx +++ b/src/IconSnoozeSharp.tsx @@ -8,4 +8,4 @@ const IconSnoozeSharp: React.FC = ({ ...props }) => ( ) -export { IconSnoozeSharp as default } +export default IconSnoozeSharp diff --git a/src/IconSnoozeSharpFilled.tsx b/src/IconSnoozeSharpFilled.tsx index 7e86449e3..bcaec8743 100644 --- a/src/IconSnoozeSharpFilled.tsx +++ b/src/IconSnoozeSharpFilled.tsx @@ -8,4 +8,4 @@ const IconSnoozeSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconSnoozeSharpFilled as default } +export default IconSnoozeSharpFilled diff --git a/src/IconSnowboardingOutlined.tsx b/src/IconSnowboardingOutlined.tsx index 5f903f88f..ede800bc4 100644 --- a/src/IconSnowboardingOutlined.tsx +++ b/src/IconSnowboardingOutlined.tsx @@ -8,4 +8,4 @@ const IconSnowboardingOutlined: React.FC = ({ ...props }) => ( ) -export { IconSnowboardingOutlined as default } +export default IconSnowboardingOutlined diff --git a/src/IconSnowboardingOutlinedFilled.tsx b/src/IconSnowboardingOutlinedFilled.tsx index 077586470..eb371c0c4 100644 --- a/src/IconSnowboardingOutlinedFilled.tsx +++ b/src/IconSnowboardingOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconSnowboardingOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconSnowboardingOutlinedFilled as default } +export default IconSnowboardingOutlinedFilled diff --git a/src/IconSnowboardingRounded.tsx b/src/IconSnowboardingRounded.tsx index 886279963..2907ea484 100644 --- a/src/IconSnowboardingRounded.tsx +++ b/src/IconSnowboardingRounded.tsx @@ -8,4 +8,4 @@ const IconSnowboardingRounded: React.FC = ({ ...props }) => ( ) -export { IconSnowboardingRounded as default } +export default IconSnowboardingRounded diff --git a/src/IconSnowboardingRoundedFilled.tsx b/src/IconSnowboardingRoundedFilled.tsx index 2595b9852..432cbe56d 100644 --- a/src/IconSnowboardingRoundedFilled.tsx +++ b/src/IconSnowboardingRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconSnowboardingRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconSnowboardingRoundedFilled as default } +export default IconSnowboardingRoundedFilled diff --git a/src/IconSnowboardingSharp.tsx b/src/IconSnowboardingSharp.tsx index bb0d89995..1628b32c9 100644 --- a/src/IconSnowboardingSharp.tsx +++ b/src/IconSnowboardingSharp.tsx @@ -8,4 +8,4 @@ const IconSnowboardingSharp: React.FC = ({ ...props }) => ( ) -export { IconSnowboardingSharp as default } +export default IconSnowboardingSharp diff --git a/src/IconSnowboardingSharpFilled.tsx b/src/IconSnowboardingSharpFilled.tsx index 0118cedb9..926a8e1ed 100644 --- a/src/IconSnowboardingSharpFilled.tsx +++ b/src/IconSnowboardingSharpFilled.tsx @@ -8,4 +8,4 @@ const IconSnowboardingSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconSnowboardingSharpFilled as default } +export default IconSnowboardingSharpFilled diff --git a/src/IconSnowingHeavyOutlined.tsx b/src/IconSnowingHeavyOutlined.tsx index 3bdb633d2..c78e3424a 100644 --- a/src/IconSnowingHeavyOutlined.tsx +++ b/src/IconSnowingHeavyOutlined.tsx @@ -8,4 +8,4 @@ const IconSnowingHeavyOutlined: React.FC = ({ ...props }) => ( ) -export { IconSnowingHeavyOutlined as default } +export default IconSnowingHeavyOutlined diff --git a/src/IconSnowingHeavyOutlinedFilled.tsx b/src/IconSnowingHeavyOutlinedFilled.tsx index e2cafb782..fb5790283 100644 --- a/src/IconSnowingHeavyOutlinedFilled.tsx +++ b/src/IconSnowingHeavyOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconSnowingHeavyOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconSnowingHeavyOutlinedFilled as default } +export default IconSnowingHeavyOutlinedFilled diff --git a/src/IconSnowingHeavyRounded.tsx b/src/IconSnowingHeavyRounded.tsx index af27c766a..43318a55c 100644 --- a/src/IconSnowingHeavyRounded.tsx +++ b/src/IconSnowingHeavyRounded.tsx @@ -8,4 +8,4 @@ const IconSnowingHeavyRounded: React.FC = ({ ...props }) => ( ) -export { IconSnowingHeavyRounded as default } +export default IconSnowingHeavyRounded diff --git a/src/IconSnowingHeavyRoundedFilled.tsx b/src/IconSnowingHeavyRoundedFilled.tsx index 8b21daa93..1dcc45553 100644 --- a/src/IconSnowingHeavyRoundedFilled.tsx +++ b/src/IconSnowingHeavyRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconSnowingHeavyRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconSnowingHeavyRoundedFilled as default } +export default IconSnowingHeavyRoundedFilled diff --git a/src/IconSnowingHeavySharp.tsx b/src/IconSnowingHeavySharp.tsx index 21230f17c..f49bf1263 100644 --- a/src/IconSnowingHeavySharp.tsx +++ b/src/IconSnowingHeavySharp.tsx @@ -8,4 +8,4 @@ const IconSnowingHeavySharp: React.FC = ({ ...props }) => ( ) -export { IconSnowingHeavySharp as default } +export default IconSnowingHeavySharp diff --git a/src/IconSnowingHeavySharpFilled.tsx b/src/IconSnowingHeavySharpFilled.tsx index 762ab34b7..1776098a9 100644 --- a/src/IconSnowingHeavySharpFilled.tsx +++ b/src/IconSnowingHeavySharpFilled.tsx @@ -8,4 +8,4 @@ const IconSnowingHeavySharpFilled: React.FC = ({ ...props }) => ( ) -export { IconSnowingHeavySharpFilled as default } +export default IconSnowingHeavySharpFilled diff --git a/src/IconSnowingOutlined.tsx b/src/IconSnowingOutlined.tsx index 63af18d78..b3a9ed13d 100644 --- a/src/IconSnowingOutlined.tsx +++ b/src/IconSnowingOutlined.tsx @@ -8,4 +8,4 @@ const IconSnowingOutlined: React.FC = ({ ...props }) => ( ) -export { IconSnowingOutlined as default } +export default IconSnowingOutlined diff --git a/src/IconSnowingOutlinedFilled.tsx b/src/IconSnowingOutlinedFilled.tsx index cf0d7f2fe..2d67cdcf3 100644 --- a/src/IconSnowingOutlinedFilled.tsx +++ b/src/IconSnowingOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconSnowingOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconSnowingOutlinedFilled as default } +export default IconSnowingOutlinedFilled diff --git a/src/IconSnowingRounded.tsx b/src/IconSnowingRounded.tsx index 7f04fb5ff..1cefc1562 100644 --- a/src/IconSnowingRounded.tsx +++ b/src/IconSnowingRounded.tsx @@ -8,4 +8,4 @@ const IconSnowingRounded: React.FC = ({ ...props }) => ( ) -export { IconSnowingRounded as default } +export default IconSnowingRounded diff --git a/src/IconSnowingRoundedFilled.tsx b/src/IconSnowingRoundedFilled.tsx index 8c2604fa8..754711fe2 100644 --- a/src/IconSnowingRoundedFilled.tsx +++ b/src/IconSnowingRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconSnowingRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconSnowingRoundedFilled as default } +export default IconSnowingRoundedFilled diff --git a/src/IconSnowingSharp.tsx b/src/IconSnowingSharp.tsx index 9cad24900..20b4ffb3b 100644 --- a/src/IconSnowingSharp.tsx +++ b/src/IconSnowingSharp.tsx @@ -8,4 +8,4 @@ const IconSnowingSharp: React.FC = ({ ...props }) => ( ) -export { IconSnowingSharp as default } +export default IconSnowingSharp diff --git a/src/IconSnowingSharpFilled.tsx b/src/IconSnowingSharpFilled.tsx index 118bf7330..9c2de7d11 100644 --- a/src/IconSnowingSharpFilled.tsx +++ b/src/IconSnowingSharpFilled.tsx @@ -8,4 +8,4 @@ const IconSnowingSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconSnowingSharpFilled as default } +export default IconSnowingSharpFilled diff --git a/src/IconSnowmobileOutlined.tsx b/src/IconSnowmobileOutlined.tsx index cbb888898..97f326ef9 100644 --- a/src/IconSnowmobileOutlined.tsx +++ b/src/IconSnowmobileOutlined.tsx @@ -8,4 +8,4 @@ const IconSnowmobileOutlined: React.FC = ({ ...props }) => ( ) -export { IconSnowmobileOutlined as default } +export default IconSnowmobileOutlined diff --git a/src/IconSnowmobileOutlinedFilled.tsx b/src/IconSnowmobileOutlinedFilled.tsx index 880be1260..79c91c69f 100644 --- a/src/IconSnowmobileOutlinedFilled.tsx +++ b/src/IconSnowmobileOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconSnowmobileOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconSnowmobileOutlinedFilled as default } +export default IconSnowmobileOutlinedFilled diff --git a/src/IconSnowmobileRounded.tsx b/src/IconSnowmobileRounded.tsx index b6a853699..8299eb437 100644 --- a/src/IconSnowmobileRounded.tsx +++ b/src/IconSnowmobileRounded.tsx @@ -8,4 +8,4 @@ const IconSnowmobileRounded: React.FC = ({ ...props }) => ( ) -export { IconSnowmobileRounded as default } +export default IconSnowmobileRounded diff --git a/src/IconSnowmobileRoundedFilled.tsx b/src/IconSnowmobileRoundedFilled.tsx index 2030ef339..e3848d043 100644 --- a/src/IconSnowmobileRoundedFilled.tsx +++ b/src/IconSnowmobileRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconSnowmobileRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconSnowmobileRoundedFilled as default } +export default IconSnowmobileRoundedFilled diff --git a/src/IconSnowmobileSharp.tsx b/src/IconSnowmobileSharp.tsx index 87c492307..dd6bc9080 100644 --- a/src/IconSnowmobileSharp.tsx +++ b/src/IconSnowmobileSharp.tsx @@ -8,4 +8,4 @@ const IconSnowmobileSharp: React.FC = ({ ...props }) => ( ) -export { IconSnowmobileSharp as default } +export default IconSnowmobileSharp diff --git a/src/IconSnowmobileSharpFilled.tsx b/src/IconSnowmobileSharpFilled.tsx index 7c9a178fd..eb42b72b8 100644 --- a/src/IconSnowmobileSharpFilled.tsx +++ b/src/IconSnowmobileSharpFilled.tsx @@ -8,4 +8,4 @@ const IconSnowmobileSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconSnowmobileSharpFilled as default } +export default IconSnowmobileSharpFilled diff --git a/src/IconSnowshoeingOutlined.tsx b/src/IconSnowshoeingOutlined.tsx index 8ef2dbba7..7e034baed 100644 --- a/src/IconSnowshoeingOutlined.tsx +++ b/src/IconSnowshoeingOutlined.tsx @@ -8,4 +8,4 @@ const IconSnowshoeingOutlined: React.FC = ({ ...props }) => ( ) -export { IconSnowshoeingOutlined as default } +export default IconSnowshoeingOutlined diff --git a/src/IconSnowshoeingOutlinedFilled.tsx b/src/IconSnowshoeingOutlinedFilled.tsx index 818b0189e..dde8d68bc 100644 --- a/src/IconSnowshoeingOutlinedFilled.tsx +++ b/src/IconSnowshoeingOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconSnowshoeingOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconSnowshoeingOutlinedFilled as default } +export default IconSnowshoeingOutlinedFilled diff --git a/src/IconSnowshoeingRounded.tsx b/src/IconSnowshoeingRounded.tsx index f804a2a9e..129ab7085 100644 --- a/src/IconSnowshoeingRounded.tsx +++ b/src/IconSnowshoeingRounded.tsx @@ -8,4 +8,4 @@ const IconSnowshoeingRounded: React.FC = ({ ...props }) => ( ) -export { IconSnowshoeingRounded as default } +export default IconSnowshoeingRounded diff --git a/src/IconSnowshoeingRoundedFilled.tsx b/src/IconSnowshoeingRoundedFilled.tsx index 1893f641d..340b5afc8 100644 --- a/src/IconSnowshoeingRoundedFilled.tsx +++ b/src/IconSnowshoeingRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconSnowshoeingRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconSnowshoeingRoundedFilled as default } +export default IconSnowshoeingRoundedFilled diff --git a/src/IconSnowshoeingSharp.tsx b/src/IconSnowshoeingSharp.tsx index 95f785a4e..447fb24cb 100644 --- a/src/IconSnowshoeingSharp.tsx +++ b/src/IconSnowshoeingSharp.tsx @@ -8,4 +8,4 @@ const IconSnowshoeingSharp: React.FC = ({ ...props }) => ( ) -export { IconSnowshoeingSharp as default } +export default IconSnowshoeingSharp diff --git a/src/IconSnowshoeingSharpFilled.tsx b/src/IconSnowshoeingSharpFilled.tsx index c3f02d13c..0666e5295 100644 --- a/src/IconSnowshoeingSharpFilled.tsx +++ b/src/IconSnowshoeingSharpFilled.tsx @@ -8,4 +8,4 @@ const IconSnowshoeingSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconSnowshoeingSharpFilled as default } +export default IconSnowshoeingSharpFilled diff --git a/src/IconSoapOutlined.tsx b/src/IconSoapOutlined.tsx index 346b80d0b..be91f9710 100644 --- a/src/IconSoapOutlined.tsx +++ b/src/IconSoapOutlined.tsx @@ -8,4 +8,4 @@ const IconSoapOutlined: React.FC = ({ ...props }) => ( ) -export { IconSoapOutlined as default } +export default IconSoapOutlined diff --git a/src/IconSoapOutlinedFilled.tsx b/src/IconSoapOutlinedFilled.tsx index 3acc9428e..ef7977757 100644 --- a/src/IconSoapOutlinedFilled.tsx +++ b/src/IconSoapOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconSoapOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconSoapOutlinedFilled as default } +export default IconSoapOutlinedFilled diff --git a/src/IconSoapRounded.tsx b/src/IconSoapRounded.tsx index c5efd1f53..2a5ae4361 100644 --- a/src/IconSoapRounded.tsx +++ b/src/IconSoapRounded.tsx @@ -8,4 +8,4 @@ const IconSoapRounded: React.FC = ({ ...props }) => ( ) -export { IconSoapRounded as default } +export default IconSoapRounded diff --git a/src/IconSoapRoundedFilled.tsx b/src/IconSoapRoundedFilled.tsx index c56af7c36..bc88af79c 100644 --- a/src/IconSoapRoundedFilled.tsx +++ b/src/IconSoapRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconSoapRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconSoapRoundedFilled as default } +export default IconSoapRoundedFilled diff --git a/src/IconSoapSharp.tsx b/src/IconSoapSharp.tsx index faaa04fa1..8f95377b1 100644 --- a/src/IconSoapSharp.tsx +++ b/src/IconSoapSharp.tsx @@ -8,4 +8,4 @@ const IconSoapSharp: React.FC = ({ ...props }) => ( ) -export { IconSoapSharp as default } +export default IconSoapSharp diff --git a/src/IconSoapSharpFilled.tsx b/src/IconSoapSharpFilled.tsx index 522eb29e6..7233c1e29 100644 --- a/src/IconSoapSharpFilled.tsx +++ b/src/IconSoapSharpFilled.tsx @@ -8,4 +8,4 @@ const IconSoapSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconSoapSharpFilled as default } +export default IconSoapSharpFilled diff --git a/src/IconSocialDistanceOutlined.tsx b/src/IconSocialDistanceOutlined.tsx index bce04f24a..e83b5af6f 100644 --- a/src/IconSocialDistanceOutlined.tsx +++ b/src/IconSocialDistanceOutlined.tsx @@ -8,4 +8,4 @@ const IconSocialDistanceOutlined: React.FC = ({ ...props }) => ( ) -export { IconSocialDistanceOutlined as default } +export default IconSocialDistanceOutlined diff --git a/src/IconSocialDistanceOutlinedFilled.tsx b/src/IconSocialDistanceOutlinedFilled.tsx index 73d2bc6b5..3b06e6f8d 100644 --- a/src/IconSocialDistanceOutlinedFilled.tsx +++ b/src/IconSocialDistanceOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconSocialDistanceOutlinedFilled: React.FC = ({ ) -export { IconSocialDistanceOutlinedFilled as default } +export default IconSocialDistanceOutlinedFilled diff --git a/src/IconSocialDistanceRounded.tsx b/src/IconSocialDistanceRounded.tsx index 9ffe90e30..f45751a94 100644 --- a/src/IconSocialDistanceRounded.tsx +++ b/src/IconSocialDistanceRounded.tsx @@ -8,4 +8,4 @@ const IconSocialDistanceRounded: React.FC = ({ ...props }) => ( ) -export { IconSocialDistanceRounded as default } +export default IconSocialDistanceRounded diff --git a/src/IconSocialDistanceRoundedFilled.tsx b/src/IconSocialDistanceRoundedFilled.tsx index 9a679fec8..ba8a7a47f 100644 --- a/src/IconSocialDistanceRoundedFilled.tsx +++ b/src/IconSocialDistanceRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconSocialDistanceRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconSocialDistanceRoundedFilled as default } +export default IconSocialDistanceRoundedFilled diff --git a/src/IconSocialDistanceSharp.tsx b/src/IconSocialDistanceSharp.tsx index e5cd32e22..5863244ef 100644 --- a/src/IconSocialDistanceSharp.tsx +++ b/src/IconSocialDistanceSharp.tsx @@ -8,4 +8,4 @@ const IconSocialDistanceSharp: React.FC = ({ ...props }) => ( ) -export { IconSocialDistanceSharp as default } +export default IconSocialDistanceSharp diff --git a/src/IconSocialDistanceSharpFilled.tsx b/src/IconSocialDistanceSharpFilled.tsx index 6543add75..c70c72875 100644 --- a/src/IconSocialDistanceSharpFilled.tsx +++ b/src/IconSocialDistanceSharpFilled.tsx @@ -8,4 +8,4 @@ const IconSocialDistanceSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconSocialDistanceSharpFilled as default } +export default IconSocialDistanceSharpFilled diff --git a/src/IconSocialLeaderboardOutlined.tsx b/src/IconSocialLeaderboardOutlined.tsx index 7199b6c1e..1df5230e6 100644 --- a/src/IconSocialLeaderboardOutlined.tsx +++ b/src/IconSocialLeaderboardOutlined.tsx @@ -8,4 +8,4 @@ const IconSocialLeaderboardOutlined: React.FC = ({ ...props }) => ( ) -export { IconSocialLeaderboardOutlined as default } +export default IconSocialLeaderboardOutlined diff --git a/src/IconSocialLeaderboardOutlinedFilled.tsx b/src/IconSocialLeaderboardOutlinedFilled.tsx index 0adfb4906..317c5bc5d 100644 --- a/src/IconSocialLeaderboardOutlinedFilled.tsx +++ b/src/IconSocialLeaderboardOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconSocialLeaderboardOutlinedFilled: React.FC = ({ ) -export { IconSocialLeaderboardOutlinedFilled as default } +export default IconSocialLeaderboardOutlinedFilled diff --git a/src/IconSocialLeaderboardRounded.tsx b/src/IconSocialLeaderboardRounded.tsx index 1e0e5778b..9caadab5b 100644 --- a/src/IconSocialLeaderboardRounded.tsx +++ b/src/IconSocialLeaderboardRounded.tsx @@ -8,4 +8,4 @@ const IconSocialLeaderboardRounded: React.FC = ({ ...props }) => ( ) -export { IconSocialLeaderboardRounded as default } +export default IconSocialLeaderboardRounded diff --git a/src/IconSocialLeaderboardRoundedFilled.tsx b/src/IconSocialLeaderboardRoundedFilled.tsx index d03fe8251..4205f9e73 100644 --- a/src/IconSocialLeaderboardRoundedFilled.tsx +++ b/src/IconSocialLeaderboardRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconSocialLeaderboardRoundedFilled: React.FC = ({ ) -export { IconSocialLeaderboardRoundedFilled as default } +export default IconSocialLeaderboardRoundedFilled diff --git a/src/IconSocialLeaderboardSharp.tsx b/src/IconSocialLeaderboardSharp.tsx index d2db67bf5..d39373a5f 100644 --- a/src/IconSocialLeaderboardSharp.tsx +++ b/src/IconSocialLeaderboardSharp.tsx @@ -8,4 +8,4 @@ const IconSocialLeaderboardSharp: React.FC = ({ ...props }) => ( ) -export { IconSocialLeaderboardSharp as default } +export default IconSocialLeaderboardSharp diff --git a/src/IconSocialLeaderboardSharpFilled.tsx b/src/IconSocialLeaderboardSharpFilled.tsx index 2a3a86bac..65bdfab69 100644 --- a/src/IconSocialLeaderboardSharpFilled.tsx +++ b/src/IconSocialLeaderboardSharpFilled.tsx @@ -10,4 +10,4 @@ const IconSocialLeaderboardSharpFilled: React.FC = ({ ) -export { IconSocialLeaderboardSharpFilled as default } +export default IconSocialLeaderboardSharpFilled diff --git a/src/IconSolarPowerOutlined.tsx b/src/IconSolarPowerOutlined.tsx index 270f7fd2c..6d4ac4db1 100644 --- a/src/IconSolarPowerOutlined.tsx +++ b/src/IconSolarPowerOutlined.tsx @@ -8,4 +8,4 @@ const IconSolarPowerOutlined: React.FC = ({ ...props }) => ( ) -export { IconSolarPowerOutlined as default } +export default IconSolarPowerOutlined diff --git a/src/IconSolarPowerOutlinedFilled.tsx b/src/IconSolarPowerOutlinedFilled.tsx index 636140619..c4db89c02 100644 --- a/src/IconSolarPowerOutlinedFilled.tsx +++ b/src/IconSolarPowerOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconSolarPowerOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconSolarPowerOutlinedFilled as default } +export default IconSolarPowerOutlinedFilled diff --git a/src/IconSolarPowerRounded.tsx b/src/IconSolarPowerRounded.tsx index 17bd6f29a..6296e65d3 100644 --- a/src/IconSolarPowerRounded.tsx +++ b/src/IconSolarPowerRounded.tsx @@ -8,4 +8,4 @@ const IconSolarPowerRounded: React.FC = ({ ...props }) => ( ) -export { IconSolarPowerRounded as default } +export default IconSolarPowerRounded diff --git a/src/IconSolarPowerRoundedFilled.tsx b/src/IconSolarPowerRoundedFilled.tsx index 65ecf8ab0..baa842165 100644 --- a/src/IconSolarPowerRoundedFilled.tsx +++ b/src/IconSolarPowerRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconSolarPowerRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconSolarPowerRoundedFilled as default } +export default IconSolarPowerRoundedFilled diff --git a/src/IconSolarPowerSharp.tsx b/src/IconSolarPowerSharp.tsx index 64241a46a..b2b3da8d2 100644 --- a/src/IconSolarPowerSharp.tsx +++ b/src/IconSolarPowerSharp.tsx @@ -8,4 +8,4 @@ const IconSolarPowerSharp: React.FC = ({ ...props }) => ( ) -export { IconSolarPowerSharp as default } +export default IconSolarPowerSharp diff --git a/src/IconSolarPowerSharpFilled.tsx b/src/IconSolarPowerSharpFilled.tsx index 1e5dd77ed..1a7f29090 100644 --- a/src/IconSolarPowerSharpFilled.tsx +++ b/src/IconSolarPowerSharpFilled.tsx @@ -8,4 +8,4 @@ const IconSolarPowerSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconSolarPowerSharpFilled as default } +export default IconSolarPowerSharpFilled diff --git a/src/IconSortByAlphaOutlined.tsx b/src/IconSortByAlphaOutlined.tsx index f2c4ae513..d12f9855f 100644 --- a/src/IconSortByAlphaOutlined.tsx +++ b/src/IconSortByAlphaOutlined.tsx @@ -8,4 +8,4 @@ const IconSortByAlphaOutlined: React.FC = ({ ...props }) => ( ) -export { IconSortByAlphaOutlined as default } +export default IconSortByAlphaOutlined diff --git a/src/IconSortByAlphaOutlinedFilled.tsx b/src/IconSortByAlphaOutlinedFilled.tsx index b2c25c034..ad7229fa4 100644 --- a/src/IconSortByAlphaOutlinedFilled.tsx +++ b/src/IconSortByAlphaOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconSortByAlphaOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconSortByAlphaOutlinedFilled as default } +export default IconSortByAlphaOutlinedFilled diff --git a/src/IconSortByAlphaRounded.tsx b/src/IconSortByAlphaRounded.tsx index 2487c1fdf..40018d7f4 100644 --- a/src/IconSortByAlphaRounded.tsx +++ b/src/IconSortByAlphaRounded.tsx @@ -8,4 +8,4 @@ const IconSortByAlphaRounded: React.FC = ({ ...props }) => ( ) -export { IconSortByAlphaRounded as default } +export default IconSortByAlphaRounded diff --git a/src/IconSortByAlphaRoundedFilled.tsx b/src/IconSortByAlphaRoundedFilled.tsx index c0f0fd33f..3ae921ffa 100644 --- a/src/IconSortByAlphaRoundedFilled.tsx +++ b/src/IconSortByAlphaRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconSortByAlphaRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconSortByAlphaRoundedFilled as default } +export default IconSortByAlphaRoundedFilled diff --git a/src/IconSortByAlphaSharp.tsx b/src/IconSortByAlphaSharp.tsx index 22ffcfadd..39126511b 100644 --- a/src/IconSortByAlphaSharp.tsx +++ b/src/IconSortByAlphaSharp.tsx @@ -8,4 +8,4 @@ const IconSortByAlphaSharp: React.FC = ({ ...props }) => ( ) -export { IconSortByAlphaSharp as default } +export default IconSortByAlphaSharp diff --git a/src/IconSortByAlphaSharpFilled.tsx b/src/IconSortByAlphaSharpFilled.tsx index aad00299a..d7c9b924f 100644 --- a/src/IconSortByAlphaSharpFilled.tsx +++ b/src/IconSortByAlphaSharpFilled.tsx @@ -8,4 +8,4 @@ const IconSortByAlphaSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconSortByAlphaSharpFilled as default } +export default IconSortByAlphaSharpFilled diff --git a/src/IconSortOutlined.tsx b/src/IconSortOutlined.tsx index 4d35e0bd9..e2071e882 100644 --- a/src/IconSortOutlined.tsx +++ b/src/IconSortOutlined.tsx @@ -8,4 +8,4 @@ const IconSortOutlined: React.FC = ({ ...props }) => ( ) -export { IconSortOutlined as default } +export default IconSortOutlined diff --git a/src/IconSortOutlinedFilled.tsx b/src/IconSortOutlinedFilled.tsx index ac4cc8816..28cf9c621 100644 --- a/src/IconSortOutlinedFilled.tsx +++ b/src/IconSortOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconSortOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconSortOutlinedFilled as default } +export default IconSortOutlinedFilled diff --git a/src/IconSortRounded.tsx b/src/IconSortRounded.tsx index d577b4d52..54d807899 100644 --- a/src/IconSortRounded.tsx +++ b/src/IconSortRounded.tsx @@ -8,4 +8,4 @@ const IconSortRounded: React.FC = ({ ...props }) => ( ) -export { IconSortRounded as default } +export default IconSortRounded diff --git a/src/IconSortRoundedFilled.tsx b/src/IconSortRoundedFilled.tsx index d6268f333..ac9ac1be1 100644 --- a/src/IconSortRoundedFilled.tsx +++ b/src/IconSortRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconSortRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconSortRoundedFilled as default } +export default IconSortRoundedFilled diff --git a/src/IconSortSharp.tsx b/src/IconSortSharp.tsx index 1df18c43f..e4f6c0677 100644 --- a/src/IconSortSharp.tsx +++ b/src/IconSortSharp.tsx @@ -8,4 +8,4 @@ const IconSortSharp: React.FC = ({ ...props }) => ( ) -export { IconSortSharp as default } +export default IconSortSharp diff --git a/src/IconSortSharpFilled.tsx b/src/IconSortSharpFilled.tsx index b9d3ca843..c2a0c089c 100644 --- a/src/IconSortSharpFilled.tsx +++ b/src/IconSortSharpFilled.tsx @@ -8,4 +8,4 @@ const IconSortSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconSortSharpFilled as default } +export default IconSortSharpFilled diff --git a/src/IconSosOutlined.tsx b/src/IconSosOutlined.tsx index d216357cb..8631616e4 100644 --- a/src/IconSosOutlined.tsx +++ b/src/IconSosOutlined.tsx @@ -8,4 +8,4 @@ const IconSosOutlined: React.FC = ({ ...props }) => ( ) -export { IconSosOutlined as default } +export default IconSosOutlined diff --git a/src/IconSosOutlinedFilled.tsx b/src/IconSosOutlinedFilled.tsx index 1b93b4ad7..527748530 100644 --- a/src/IconSosOutlinedFilled.tsx +++ b/src/IconSosOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconSosOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconSosOutlinedFilled as default } +export default IconSosOutlinedFilled diff --git a/src/IconSosRounded.tsx b/src/IconSosRounded.tsx index bb3a36d58..d8176f8dc 100644 --- a/src/IconSosRounded.tsx +++ b/src/IconSosRounded.tsx @@ -8,4 +8,4 @@ const IconSosRounded: React.FC = ({ ...props }) => ( ) -export { IconSosRounded as default } +export default IconSosRounded diff --git a/src/IconSosRoundedFilled.tsx b/src/IconSosRoundedFilled.tsx index 2ae20fb38..d1fba28ca 100644 --- a/src/IconSosRoundedFilled.tsx +++ b/src/IconSosRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconSosRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconSosRoundedFilled as default } +export default IconSosRoundedFilled diff --git a/src/IconSosSharp.tsx b/src/IconSosSharp.tsx index 30ed1aef8..b9271b17a 100644 --- a/src/IconSosSharp.tsx +++ b/src/IconSosSharp.tsx @@ -8,4 +8,4 @@ const IconSosSharp: React.FC = ({ ...props }) => ( ) -export { IconSosSharp as default } +export default IconSosSharp diff --git a/src/IconSosSharpFilled.tsx b/src/IconSosSharpFilled.tsx index aaed73def..5104a191c 100644 --- a/src/IconSosSharpFilled.tsx +++ b/src/IconSosSharpFilled.tsx @@ -8,4 +8,4 @@ const IconSosSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconSosSharpFilled as default } +export default IconSosSharpFilled diff --git a/src/IconSoundDetectionDogBarkingOutlined.tsx b/src/IconSoundDetectionDogBarkingOutlined.tsx index e9964c85f..7384b33bb 100644 --- a/src/IconSoundDetectionDogBarkingOutlined.tsx +++ b/src/IconSoundDetectionDogBarkingOutlined.tsx @@ -10,4 +10,4 @@ const IconSoundDetectionDogBarkingOutlined: React.FC = ({ ) -export { IconSoundDetectionDogBarkingOutlined as default } +export default IconSoundDetectionDogBarkingOutlined diff --git a/src/IconSoundDetectionDogBarkingOutlinedFilled.tsx b/src/IconSoundDetectionDogBarkingOutlinedFilled.tsx index 6a34eb461..224fd4fa8 100644 --- a/src/IconSoundDetectionDogBarkingOutlinedFilled.tsx +++ b/src/IconSoundDetectionDogBarkingOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconSoundDetectionDogBarkingOutlinedFilled: React.FC = ({ ) -export { IconSoundDetectionDogBarkingOutlinedFilled as default } +export default IconSoundDetectionDogBarkingOutlinedFilled diff --git a/src/IconSoundDetectionDogBarkingRounded.tsx b/src/IconSoundDetectionDogBarkingRounded.tsx index ad302a992..89e726cb7 100644 --- a/src/IconSoundDetectionDogBarkingRounded.tsx +++ b/src/IconSoundDetectionDogBarkingRounded.tsx @@ -10,4 +10,4 @@ const IconSoundDetectionDogBarkingRounded: React.FC = ({ ) -export { IconSoundDetectionDogBarkingRounded as default } +export default IconSoundDetectionDogBarkingRounded diff --git a/src/IconSoundDetectionDogBarkingRoundedFilled.tsx b/src/IconSoundDetectionDogBarkingRoundedFilled.tsx index af66a30b5..f389ffd2e 100644 --- a/src/IconSoundDetectionDogBarkingRoundedFilled.tsx +++ b/src/IconSoundDetectionDogBarkingRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconSoundDetectionDogBarkingRoundedFilled: React.FC = ({ ) -export { IconSoundDetectionDogBarkingRoundedFilled as default } +export default IconSoundDetectionDogBarkingRoundedFilled diff --git a/src/IconSoundDetectionDogBarkingSharp.tsx b/src/IconSoundDetectionDogBarkingSharp.tsx index 8d1ae7bf0..7469b85e9 100644 --- a/src/IconSoundDetectionDogBarkingSharp.tsx +++ b/src/IconSoundDetectionDogBarkingSharp.tsx @@ -10,4 +10,4 @@ const IconSoundDetectionDogBarkingSharp: React.FC = ({ ) -export { IconSoundDetectionDogBarkingSharp as default } +export default IconSoundDetectionDogBarkingSharp diff --git a/src/IconSoundDetectionDogBarkingSharpFilled.tsx b/src/IconSoundDetectionDogBarkingSharpFilled.tsx index 0f64e1ff6..1dea7924c 100644 --- a/src/IconSoundDetectionDogBarkingSharpFilled.tsx +++ b/src/IconSoundDetectionDogBarkingSharpFilled.tsx @@ -10,4 +10,4 @@ const IconSoundDetectionDogBarkingSharpFilled: React.FC = ({ ) -export { IconSoundDetectionDogBarkingSharpFilled as default } +export default IconSoundDetectionDogBarkingSharpFilled diff --git a/src/IconSoundDetectionGlassBreakOutlined.tsx b/src/IconSoundDetectionGlassBreakOutlined.tsx index ba6433849..d6d220b53 100644 --- a/src/IconSoundDetectionGlassBreakOutlined.tsx +++ b/src/IconSoundDetectionGlassBreakOutlined.tsx @@ -10,4 +10,4 @@ const IconSoundDetectionGlassBreakOutlined: React.FC = ({ ) -export { IconSoundDetectionGlassBreakOutlined as default } +export default IconSoundDetectionGlassBreakOutlined diff --git a/src/IconSoundDetectionGlassBreakOutlinedFilled.tsx b/src/IconSoundDetectionGlassBreakOutlinedFilled.tsx index e5c147cb2..cee7759b9 100644 --- a/src/IconSoundDetectionGlassBreakOutlinedFilled.tsx +++ b/src/IconSoundDetectionGlassBreakOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconSoundDetectionGlassBreakOutlinedFilled: React.FC = ({ ) -export { IconSoundDetectionGlassBreakOutlinedFilled as default } +export default IconSoundDetectionGlassBreakOutlinedFilled diff --git a/src/IconSoundDetectionGlassBreakRounded.tsx b/src/IconSoundDetectionGlassBreakRounded.tsx index 001115f9c..37533e173 100644 --- a/src/IconSoundDetectionGlassBreakRounded.tsx +++ b/src/IconSoundDetectionGlassBreakRounded.tsx @@ -10,4 +10,4 @@ const IconSoundDetectionGlassBreakRounded: React.FC = ({ ) -export { IconSoundDetectionGlassBreakRounded as default } +export default IconSoundDetectionGlassBreakRounded diff --git a/src/IconSoundDetectionGlassBreakRoundedFilled.tsx b/src/IconSoundDetectionGlassBreakRoundedFilled.tsx index 2d423428c..8a6347f8f 100644 --- a/src/IconSoundDetectionGlassBreakRoundedFilled.tsx +++ b/src/IconSoundDetectionGlassBreakRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconSoundDetectionGlassBreakRoundedFilled: React.FC = ({ ) -export { IconSoundDetectionGlassBreakRoundedFilled as default } +export default IconSoundDetectionGlassBreakRoundedFilled diff --git a/src/IconSoundDetectionGlassBreakSharp.tsx b/src/IconSoundDetectionGlassBreakSharp.tsx index bd5464229..482c49f79 100644 --- a/src/IconSoundDetectionGlassBreakSharp.tsx +++ b/src/IconSoundDetectionGlassBreakSharp.tsx @@ -10,4 +10,4 @@ const IconSoundDetectionGlassBreakSharp: React.FC = ({ ) -export { IconSoundDetectionGlassBreakSharp as default } +export default IconSoundDetectionGlassBreakSharp diff --git a/src/IconSoundDetectionGlassBreakSharpFilled.tsx b/src/IconSoundDetectionGlassBreakSharpFilled.tsx index 9eed2bcac..c5b9c46b5 100644 --- a/src/IconSoundDetectionGlassBreakSharpFilled.tsx +++ b/src/IconSoundDetectionGlassBreakSharpFilled.tsx @@ -10,4 +10,4 @@ const IconSoundDetectionGlassBreakSharpFilled: React.FC = ({ ) -export { IconSoundDetectionGlassBreakSharpFilled as default } +export default IconSoundDetectionGlassBreakSharpFilled diff --git a/src/IconSoundDetectionLoudSoundOutlined.tsx b/src/IconSoundDetectionLoudSoundOutlined.tsx index b4a477a91..43ba31c05 100644 --- a/src/IconSoundDetectionLoudSoundOutlined.tsx +++ b/src/IconSoundDetectionLoudSoundOutlined.tsx @@ -10,4 +10,4 @@ const IconSoundDetectionLoudSoundOutlined: React.FC = ({ ) -export { IconSoundDetectionLoudSoundOutlined as default } +export default IconSoundDetectionLoudSoundOutlined diff --git a/src/IconSoundDetectionLoudSoundOutlinedFilled.tsx b/src/IconSoundDetectionLoudSoundOutlinedFilled.tsx index 2e041b57d..8ab66559d 100644 --- a/src/IconSoundDetectionLoudSoundOutlinedFilled.tsx +++ b/src/IconSoundDetectionLoudSoundOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconSoundDetectionLoudSoundOutlinedFilled: React.FC = ({ ) -export { IconSoundDetectionLoudSoundOutlinedFilled as default } +export default IconSoundDetectionLoudSoundOutlinedFilled diff --git a/src/IconSoundDetectionLoudSoundRounded.tsx b/src/IconSoundDetectionLoudSoundRounded.tsx index 4651d55ef..763e1faa8 100644 --- a/src/IconSoundDetectionLoudSoundRounded.tsx +++ b/src/IconSoundDetectionLoudSoundRounded.tsx @@ -10,4 +10,4 @@ const IconSoundDetectionLoudSoundRounded: React.FC = ({ ) -export { IconSoundDetectionLoudSoundRounded as default } +export default IconSoundDetectionLoudSoundRounded diff --git a/src/IconSoundDetectionLoudSoundRoundedFilled.tsx b/src/IconSoundDetectionLoudSoundRoundedFilled.tsx index d76f69d1f..f1ba15579 100644 --- a/src/IconSoundDetectionLoudSoundRoundedFilled.tsx +++ b/src/IconSoundDetectionLoudSoundRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconSoundDetectionLoudSoundRoundedFilled: React.FC = ({ ) -export { IconSoundDetectionLoudSoundRoundedFilled as default } +export default IconSoundDetectionLoudSoundRoundedFilled diff --git a/src/IconSoundDetectionLoudSoundSharp.tsx b/src/IconSoundDetectionLoudSoundSharp.tsx index 4f647b828..98910feb6 100644 --- a/src/IconSoundDetectionLoudSoundSharp.tsx +++ b/src/IconSoundDetectionLoudSoundSharp.tsx @@ -10,4 +10,4 @@ const IconSoundDetectionLoudSoundSharp: React.FC = ({ ) -export { IconSoundDetectionLoudSoundSharp as default } +export default IconSoundDetectionLoudSoundSharp diff --git a/src/IconSoundDetectionLoudSoundSharpFilled.tsx b/src/IconSoundDetectionLoudSoundSharpFilled.tsx index 1811d0dd0..0933ce2c6 100644 --- a/src/IconSoundDetectionLoudSoundSharpFilled.tsx +++ b/src/IconSoundDetectionLoudSoundSharpFilled.tsx @@ -10,4 +10,4 @@ const IconSoundDetectionLoudSoundSharpFilled: React.FC = ({ ) -export { IconSoundDetectionLoudSoundSharpFilled as default } +export default IconSoundDetectionLoudSoundSharpFilled diff --git a/src/IconSoundSamplerOutlined.tsx b/src/IconSoundSamplerOutlined.tsx index e6a84edb9..19d6df139 100644 --- a/src/IconSoundSamplerOutlined.tsx +++ b/src/IconSoundSamplerOutlined.tsx @@ -8,4 +8,4 @@ const IconSoundSamplerOutlined: React.FC = ({ ...props }) => ( ) -export { IconSoundSamplerOutlined as default } +export default IconSoundSamplerOutlined diff --git a/src/IconSoundSamplerOutlinedFilled.tsx b/src/IconSoundSamplerOutlinedFilled.tsx index 8395875d8..27201094a 100644 --- a/src/IconSoundSamplerOutlinedFilled.tsx +++ b/src/IconSoundSamplerOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconSoundSamplerOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconSoundSamplerOutlinedFilled as default } +export default IconSoundSamplerOutlinedFilled diff --git a/src/IconSoundSamplerRounded.tsx b/src/IconSoundSamplerRounded.tsx index 3a015502f..56f946e74 100644 --- a/src/IconSoundSamplerRounded.tsx +++ b/src/IconSoundSamplerRounded.tsx @@ -8,4 +8,4 @@ const IconSoundSamplerRounded: React.FC = ({ ...props }) => ( ) -export { IconSoundSamplerRounded as default } +export default IconSoundSamplerRounded diff --git a/src/IconSoundSamplerRoundedFilled.tsx b/src/IconSoundSamplerRoundedFilled.tsx index d96661b95..95d3e019d 100644 --- a/src/IconSoundSamplerRoundedFilled.tsx +++ b/src/IconSoundSamplerRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconSoundSamplerRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconSoundSamplerRoundedFilled as default } +export default IconSoundSamplerRoundedFilled diff --git a/src/IconSoundSamplerSharp.tsx b/src/IconSoundSamplerSharp.tsx index 3946004d0..75cc15800 100644 --- a/src/IconSoundSamplerSharp.tsx +++ b/src/IconSoundSamplerSharp.tsx @@ -8,4 +8,4 @@ const IconSoundSamplerSharp: React.FC = ({ ...props }) => ( ) -export { IconSoundSamplerSharp as default } +export default IconSoundSamplerSharp diff --git a/src/IconSoundSamplerSharpFilled.tsx b/src/IconSoundSamplerSharpFilled.tsx index c159d323d..0a411d111 100644 --- a/src/IconSoundSamplerSharpFilled.tsx +++ b/src/IconSoundSamplerSharpFilled.tsx @@ -8,4 +8,4 @@ const IconSoundSamplerSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconSoundSamplerSharpFilled as default } +export default IconSoundSamplerSharpFilled diff --git a/src/IconSoupKitchenOutlined.tsx b/src/IconSoupKitchenOutlined.tsx index 1c60abdab..a11f9d8e5 100644 --- a/src/IconSoupKitchenOutlined.tsx +++ b/src/IconSoupKitchenOutlined.tsx @@ -8,4 +8,4 @@ const IconSoupKitchenOutlined: React.FC = ({ ...props }) => ( ) -export { IconSoupKitchenOutlined as default } +export default IconSoupKitchenOutlined diff --git a/src/IconSoupKitchenOutlinedFilled.tsx b/src/IconSoupKitchenOutlinedFilled.tsx index 9835314aa..96602ef64 100644 --- a/src/IconSoupKitchenOutlinedFilled.tsx +++ b/src/IconSoupKitchenOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconSoupKitchenOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconSoupKitchenOutlinedFilled as default } +export default IconSoupKitchenOutlinedFilled diff --git a/src/IconSoupKitchenRounded.tsx b/src/IconSoupKitchenRounded.tsx index f642f9b17..fbfe01b0f 100644 --- a/src/IconSoupKitchenRounded.tsx +++ b/src/IconSoupKitchenRounded.tsx @@ -8,4 +8,4 @@ const IconSoupKitchenRounded: React.FC = ({ ...props }) => ( ) -export { IconSoupKitchenRounded as default } +export default IconSoupKitchenRounded diff --git a/src/IconSoupKitchenRoundedFilled.tsx b/src/IconSoupKitchenRoundedFilled.tsx index 45c326ebe..156a8e9e1 100644 --- a/src/IconSoupKitchenRoundedFilled.tsx +++ b/src/IconSoupKitchenRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconSoupKitchenRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconSoupKitchenRoundedFilled as default } +export default IconSoupKitchenRoundedFilled diff --git a/src/IconSoupKitchenSharp.tsx b/src/IconSoupKitchenSharp.tsx index 84563f28c..009dedbbb 100644 --- a/src/IconSoupKitchenSharp.tsx +++ b/src/IconSoupKitchenSharp.tsx @@ -8,4 +8,4 @@ const IconSoupKitchenSharp: React.FC = ({ ...props }) => ( ) -export { IconSoupKitchenSharp as default } +export default IconSoupKitchenSharp diff --git a/src/IconSoupKitchenSharpFilled.tsx b/src/IconSoupKitchenSharpFilled.tsx index 9ed9098f5..973ee4e46 100644 --- a/src/IconSoupKitchenSharpFilled.tsx +++ b/src/IconSoupKitchenSharpFilled.tsx @@ -8,4 +8,4 @@ const IconSoupKitchenSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconSoupKitchenSharpFilled as default } +export default IconSoupKitchenSharpFilled diff --git a/src/IconSourceEnvironmentOutlined.tsx b/src/IconSourceEnvironmentOutlined.tsx index 0a14139b6..f2613cfaa 100644 --- a/src/IconSourceEnvironmentOutlined.tsx +++ b/src/IconSourceEnvironmentOutlined.tsx @@ -8,4 +8,4 @@ const IconSourceEnvironmentOutlined: React.FC = ({ ...props }) => ( ) -export { IconSourceEnvironmentOutlined as default } +export default IconSourceEnvironmentOutlined diff --git a/src/IconSourceEnvironmentOutlinedFilled.tsx b/src/IconSourceEnvironmentOutlinedFilled.tsx index 206f676a0..6afaa0ffb 100644 --- a/src/IconSourceEnvironmentOutlinedFilled.tsx +++ b/src/IconSourceEnvironmentOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconSourceEnvironmentOutlinedFilled: React.FC = ({ ) -export { IconSourceEnvironmentOutlinedFilled as default } +export default IconSourceEnvironmentOutlinedFilled diff --git a/src/IconSourceEnvironmentRounded.tsx b/src/IconSourceEnvironmentRounded.tsx index a6af46809..4383f5c54 100644 --- a/src/IconSourceEnvironmentRounded.tsx +++ b/src/IconSourceEnvironmentRounded.tsx @@ -8,4 +8,4 @@ const IconSourceEnvironmentRounded: React.FC = ({ ...props }) => ( ) -export { IconSourceEnvironmentRounded as default } +export default IconSourceEnvironmentRounded diff --git a/src/IconSourceEnvironmentRoundedFilled.tsx b/src/IconSourceEnvironmentRoundedFilled.tsx index 66e3cd60a..b4190b6d7 100644 --- a/src/IconSourceEnvironmentRoundedFilled.tsx +++ b/src/IconSourceEnvironmentRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconSourceEnvironmentRoundedFilled: React.FC = ({ ) -export { IconSourceEnvironmentRoundedFilled as default } +export default IconSourceEnvironmentRoundedFilled diff --git a/src/IconSourceEnvironmentSharp.tsx b/src/IconSourceEnvironmentSharp.tsx index 7848aa6d6..82e3b6400 100644 --- a/src/IconSourceEnvironmentSharp.tsx +++ b/src/IconSourceEnvironmentSharp.tsx @@ -8,4 +8,4 @@ const IconSourceEnvironmentSharp: React.FC = ({ ...props }) => ( ) -export { IconSourceEnvironmentSharp as default } +export default IconSourceEnvironmentSharp diff --git a/src/IconSourceEnvironmentSharpFilled.tsx b/src/IconSourceEnvironmentSharpFilled.tsx index e22a6a77c..be58486fe 100644 --- a/src/IconSourceEnvironmentSharpFilled.tsx +++ b/src/IconSourceEnvironmentSharpFilled.tsx @@ -10,4 +10,4 @@ const IconSourceEnvironmentSharpFilled: React.FC = ({ ) -export { IconSourceEnvironmentSharpFilled as default } +export default IconSourceEnvironmentSharpFilled diff --git a/src/IconSourceNotesOutlined.tsx b/src/IconSourceNotesOutlined.tsx index e9024192d..cf5b41fd4 100644 --- a/src/IconSourceNotesOutlined.tsx +++ b/src/IconSourceNotesOutlined.tsx @@ -8,4 +8,4 @@ const IconSourceNotesOutlined: React.FC = ({ ...props }) => ( ) -export { IconSourceNotesOutlined as default } +export default IconSourceNotesOutlined diff --git a/src/IconSourceNotesOutlinedFilled.tsx b/src/IconSourceNotesOutlinedFilled.tsx index 06018b869..1548923db 100644 --- a/src/IconSourceNotesOutlinedFilled.tsx +++ b/src/IconSourceNotesOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconSourceNotesOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconSourceNotesOutlinedFilled as default } +export default IconSourceNotesOutlinedFilled diff --git a/src/IconSourceNotesRounded.tsx b/src/IconSourceNotesRounded.tsx index 3b4cc10b3..98e81eae6 100644 --- a/src/IconSourceNotesRounded.tsx +++ b/src/IconSourceNotesRounded.tsx @@ -8,4 +8,4 @@ const IconSourceNotesRounded: React.FC = ({ ...props }) => ( ) -export { IconSourceNotesRounded as default } +export default IconSourceNotesRounded diff --git a/src/IconSourceNotesRoundedFilled.tsx b/src/IconSourceNotesRoundedFilled.tsx index 6ded9ec35..2bf2858ac 100644 --- a/src/IconSourceNotesRoundedFilled.tsx +++ b/src/IconSourceNotesRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconSourceNotesRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconSourceNotesRoundedFilled as default } +export default IconSourceNotesRoundedFilled diff --git a/src/IconSourceNotesSharp.tsx b/src/IconSourceNotesSharp.tsx index 3a64bb373..a488a7712 100644 --- a/src/IconSourceNotesSharp.tsx +++ b/src/IconSourceNotesSharp.tsx @@ -8,4 +8,4 @@ const IconSourceNotesSharp: React.FC = ({ ...props }) => ( ) -export { IconSourceNotesSharp as default } +export default IconSourceNotesSharp diff --git a/src/IconSourceNotesSharpFilled.tsx b/src/IconSourceNotesSharpFilled.tsx index a97abf9e7..d17f77597 100644 --- a/src/IconSourceNotesSharpFilled.tsx +++ b/src/IconSourceNotesSharpFilled.tsx @@ -8,4 +8,4 @@ const IconSourceNotesSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconSourceNotesSharpFilled as default } +export default IconSourceNotesSharpFilled diff --git a/src/IconSouthAmericaOutlined.tsx b/src/IconSouthAmericaOutlined.tsx index 9609ee780..f0f6512b1 100644 --- a/src/IconSouthAmericaOutlined.tsx +++ b/src/IconSouthAmericaOutlined.tsx @@ -8,4 +8,4 @@ const IconSouthAmericaOutlined: React.FC = ({ ...props }) => ( ) -export { IconSouthAmericaOutlined as default } +export default IconSouthAmericaOutlined diff --git a/src/IconSouthAmericaOutlinedFilled.tsx b/src/IconSouthAmericaOutlinedFilled.tsx index 8d70316d6..badc31c42 100644 --- a/src/IconSouthAmericaOutlinedFilled.tsx +++ b/src/IconSouthAmericaOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconSouthAmericaOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconSouthAmericaOutlinedFilled as default } +export default IconSouthAmericaOutlinedFilled diff --git a/src/IconSouthAmericaRounded.tsx b/src/IconSouthAmericaRounded.tsx index 2e94b1dfa..33052861c 100644 --- a/src/IconSouthAmericaRounded.tsx +++ b/src/IconSouthAmericaRounded.tsx @@ -8,4 +8,4 @@ const IconSouthAmericaRounded: React.FC = ({ ...props }) => ( ) -export { IconSouthAmericaRounded as default } +export default IconSouthAmericaRounded diff --git a/src/IconSouthAmericaRoundedFilled.tsx b/src/IconSouthAmericaRoundedFilled.tsx index c37bfddbe..8da2ccf48 100644 --- a/src/IconSouthAmericaRoundedFilled.tsx +++ b/src/IconSouthAmericaRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconSouthAmericaRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconSouthAmericaRoundedFilled as default } +export default IconSouthAmericaRoundedFilled diff --git a/src/IconSouthAmericaSharp.tsx b/src/IconSouthAmericaSharp.tsx index 2b671d74c..b06ba1029 100644 --- a/src/IconSouthAmericaSharp.tsx +++ b/src/IconSouthAmericaSharp.tsx @@ -8,4 +8,4 @@ const IconSouthAmericaSharp: React.FC = ({ ...props }) => ( ) -export { IconSouthAmericaSharp as default } +export default IconSouthAmericaSharp diff --git a/src/IconSouthAmericaSharpFilled.tsx b/src/IconSouthAmericaSharpFilled.tsx index 583b2c375..e8649202a 100644 --- a/src/IconSouthAmericaSharpFilled.tsx +++ b/src/IconSouthAmericaSharpFilled.tsx @@ -8,4 +8,4 @@ const IconSouthAmericaSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconSouthAmericaSharpFilled as default } +export default IconSouthAmericaSharpFilled diff --git a/src/IconSouthEastOutlined.tsx b/src/IconSouthEastOutlined.tsx index 448ee549b..1a69dbd47 100644 --- a/src/IconSouthEastOutlined.tsx +++ b/src/IconSouthEastOutlined.tsx @@ -8,4 +8,4 @@ const IconSouthEastOutlined: React.FC = ({ ...props }) => ( ) -export { IconSouthEastOutlined as default } +export default IconSouthEastOutlined diff --git a/src/IconSouthEastOutlinedFilled.tsx b/src/IconSouthEastOutlinedFilled.tsx index f1992270c..f936bdc26 100644 --- a/src/IconSouthEastOutlinedFilled.tsx +++ b/src/IconSouthEastOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconSouthEastOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconSouthEastOutlinedFilled as default } +export default IconSouthEastOutlinedFilled diff --git a/src/IconSouthEastRounded.tsx b/src/IconSouthEastRounded.tsx index 2d33b0bfa..e5e2deabb 100644 --- a/src/IconSouthEastRounded.tsx +++ b/src/IconSouthEastRounded.tsx @@ -8,4 +8,4 @@ const IconSouthEastRounded: React.FC = ({ ...props }) => ( ) -export { IconSouthEastRounded as default } +export default IconSouthEastRounded diff --git a/src/IconSouthEastRoundedFilled.tsx b/src/IconSouthEastRoundedFilled.tsx index 9471e2399..d8ab938cb 100644 --- a/src/IconSouthEastRoundedFilled.tsx +++ b/src/IconSouthEastRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconSouthEastRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconSouthEastRoundedFilled as default } +export default IconSouthEastRoundedFilled diff --git a/src/IconSouthEastSharp.tsx b/src/IconSouthEastSharp.tsx index 08e4a7f9a..9b4af2fb1 100644 --- a/src/IconSouthEastSharp.tsx +++ b/src/IconSouthEastSharp.tsx @@ -8,4 +8,4 @@ const IconSouthEastSharp: React.FC = ({ ...props }) => ( ) -export { IconSouthEastSharp as default } +export default IconSouthEastSharp diff --git a/src/IconSouthEastSharpFilled.tsx b/src/IconSouthEastSharpFilled.tsx index d81764fd2..56ae0dd6a 100644 --- a/src/IconSouthEastSharpFilled.tsx +++ b/src/IconSouthEastSharpFilled.tsx @@ -8,4 +8,4 @@ const IconSouthEastSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconSouthEastSharpFilled as default } +export default IconSouthEastSharpFilled diff --git a/src/IconSouthOutlined.tsx b/src/IconSouthOutlined.tsx index 2a39a23bb..015a1c0d6 100644 --- a/src/IconSouthOutlined.tsx +++ b/src/IconSouthOutlined.tsx @@ -8,4 +8,4 @@ const IconSouthOutlined: React.FC = ({ ...props }) => ( ) -export { IconSouthOutlined as default } +export default IconSouthOutlined diff --git a/src/IconSouthOutlinedFilled.tsx b/src/IconSouthOutlinedFilled.tsx index 552e5c98c..cac7fcf8c 100644 --- a/src/IconSouthOutlinedFilled.tsx +++ b/src/IconSouthOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconSouthOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconSouthOutlinedFilled as default } +export default IconSouthOutlinedFilled diff --git a/src/IconSouthRounded.tsx b/src/IconSouthRounded.tsx index 59e28880e..ba021f83f 100644 --- a/src/IconSouthRounded.tsx +++ b/src/IconSouthRounded.tsx @@ -8,4 +8,4 @@ const IconSouthRounded: React.FC = ({ ...props }) => ( ) -export { IconSouthRounded as default } +export default IconSouthRounded diff --git a/src/IconSouthRoundedFilled.tsx b/src/IconSouthRoundedFilled.tsx index aa0f67411..c7f04fe75 100644 --- a/src/IconSouthRoundedFilled.tsx +++ b/src/IconSouthRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconSouthRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconSouthRoundedFilled as default } +export default IconSouthRoundedFilled diff --git a/src/IconSouthSharp.tsx b/src/IconSouthSharp.tsx index 603e2c4b8..9378d78ac 100644 --- a/src/IconSouthSharp.tsx +++ b/src/IconSouthSharp.tsx @@ -8,4 +8,4 @@ const IconSouthSharp: React.FC = ({ ...props }) => ( ) -export { IconSouthSharp as default } +export default IconSouthSharp diff --git a/src/IconSouthSharpFilled.tsx b/src/IconSouthSharpFilled.tsx index b57336cd7..e01b4b276 100644 --- a/src/IconSouthSharpFilled.tsx +++ b/src/IconSouthSharpFilled.tsx @@ -8,4 +8,4 @@ const IconSouthSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconSouthSharpFilled as default } +export default IconSouthSharpFilled diff --git a/src/IconSouthWestOutlined.tsx b/src/IconSouthWestOutlined.tsx index f9612e99a..b539a24e9 100644 --- a/src/IconSouthWestOutlined.tsx +++ b/src/IconSouthWestOutlined.tsx @@ -8,4 +8,4 @@ const IconSouthWestOutlined: React.FC = ({ ...props }) => ( ) -export { IconSouthWestOutlined as default } +export default IconSouthWestOutlined diff --git a/src/IconSouthWestOutlinedFilled.tsx b/src/IconSouthWestOutlinedFilled.tsx index 20c3f5d46..8b279451b 100644 --- a/src/IconSouthWestOutlinedFilled.tsx +++ b/src/IconSouthWestOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconSouthWestOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconSouthWestOutlinedFilled as default } +export default IconSouthWestOutlinedFilled diff --git a/src/IconSouthWestRounded.tsx b/src/IconSouthWestRounded.tsx index a5a376991..b959dd486 100644 --- a/src/IconSouthWestRounded.tsx +++ b/src/IconSouthWestRounded.tsx @@ -8,4 +8,4 @@ const IconSouthWestRounded: React.FC = ({ ...props }) => ( ) -export { IconSouthWestRounded as default } +export default IconSouthWestRounded diff --git a/src/IconSouthWestRoundedFilled.tsx b/src/IconSouthWestRoundedFilled.tsx index c1b9588e9..b74b2126c 100644 --- a/src/IconSouthWestRoundedFilled.tsx +++ b/src/IconSouthWestRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconSouthWestRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconSouthWestRoundedFilled as default } +export default IconSouthWestRoundedFilled diff --git a/src/IconSouthWestSharp.tsx b/src/IconSouthWestSharp.tsx index 5b2789c3f..a7a88e397 100644 --- a/src/IconSouthWestSharp.tsx +++ b/src/IconSouthWestSharp.tsx @@ -8,4 +8,4 @@ const IconSouthWestSharp: React.FC = ({ ...props }) => ( ) -export { IconSouthWestSharp as default } +export default IconSouthWestSharp diff --git a/src/IconSouthWestSharpFilled.tsx b/src/IconSouthWestSharpFilled.tsx index 8038cf2c0..f071d0a5f 100644 --- a/src/IconSouthWestSharpFilled.tsx +++ b/src/IconSouthWestSharpFilled.tsx @@ -8,4 +8,4 @@ const IconSouthWestSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconSouthWestSharpFilled as default } +export default IconSouthWestSharpFilled diff --git a/src/IconSpaOutlined.tsx b/src/IconSpaOutlined.tsx index a642c500d..2058686e4 100644 --- a/src/IconSpaOutlined.tsx +++ b/src/IconSpaOutlined.tsx @@ -8,4 +8,4 @@ const IconSpaOutlined: React.FC = ({ ...props }) => ( ) -export { IconSpaOutlined as default } +export default IconSpaOutlined diff --git a/src/IconSpaOutlinedFilled.tsx b/src/IconSpaOutlinedFilled.tsx index 468ee0c91..480c173a9 100644 --- a/src/IconSpaOutlinedFilled.tsx +++ b/src/IconSpaOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconSpaOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconSpaOutlinedFilled as default } +export default IconSpaOutlinedFilled diff --git a/src/IconSpaRounded.tsx b/src/IconSpaRounded.tsx index 8bfcc3bc8..24f45df66 100644 --- a/src/IconSpaRounded.tsx +++ b/src/IconSpaRounded.tsx @@ -8,4 +8,4 @@ const IconSpaRounded: React.FC = ({ ...props }) => ( ) -export { IconSpaRounded as default } +export default IconSpaRounded diff --git a/src/IconSpaRoundedFilled.tsx b/src/IconSpaRoundedFilled.tsx index 5209a15aa..8e2500006 100644 --- a/src/IconSpaRoundedFilled.tsx +++ b/src/IconSpaRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconSpaRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconSpaRoundedFilled as default } +export default IconSpaRoundedFilled diff --git a/src/IconSpaSharp.tsx b/src/IconSpaSharp.tsx index ecd1d68e7..67fb8c668 100644 --- a/src/IconSpaSharp.tsx +++ b/src/IconSpaSharp.tsx @@ -8,4 +8,4 @@ const IconSpaSharp: React.FC = ({ ...props }) => ( ) -export { IconSpaSharp as default } +export default IconSpaSharp diff --git a/src/IconSpaSharpFilled.tsx b/src/IconSpaSharpFilled.tsx index d22e37fef..b10c32350 100644 --- a/src/IconSpaSharpFilled.tsx +++ b/src/IconSpaSharpFilled.tsx @@ -8,4 +8,4 @@ const IconSpaSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconSpaSharpFilled as default } +export default IconSpaSharpFilled diff --git a/src/IconSpaceBarOutlined.tsx b/src/IconSpaceBarOutlined.tsx index 079ee47c4..f8b69a91d 100644 --- a/src/IconSpaceBarOutlined.tsx +++ b/src/IconSpaceBarOutlined.tsx @@ -8,4 +8,4 @@ const IconSpaceBarOutlined: React.FC = ({ ...props }) => ( ) -export { IconSpaceBarOutlined as default } +export default IconSpaceBarOutlined diff --git a/src/IconSpaceBarOutlinedFilled.tsx b/src/IconSpaceBarOutlinedFilled.tsx index bd5a38c3a..1d68db117 100644 --- a/src/IconSpaceBarOutlinedFilled.tsx +++ b/src/IconSpaceBarOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconSpaceBarOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconSpaceBarOutlinedFilled as default } +export default IconSpaceBarOutlinedFilled diff --git a/src/IconSpaceBarRounded.tsx b/src/IconSpaceBarRounded.tsx index 3ab13ed3f..af8863db1 100644 --- a/src/IconSpaceBarRounded.tsx +++ b/src/IconSpaceBarRounded.tsx @@ -8,4 +8,4 @@ const IconSpaceBarRounded: React.FC = ({ ...props }) => ( ) -export { IconSpaceBarRounded as default } +export default IconSpaceBarRounded diff --git a/src/IconSpaceBarRoundedFilled.tsx b/src/IconSpaceBarRoundedFilled.tsx index 49fc2e923..5accc0f7b 100644 --- a/src/IconSpaceBarRoundedFilled.tsx +++ b/src/IconSpaceBarRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconSpaceBarRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconSpaceBarRoundedFilled as default } +export default IconSpaceBarRoundedFilled diff --git a/src/IconSpaceBarSharp.tsx b/src/IconSpaceBarSharp.tsx index 625c9bd5d..3fcbacb38 100644 --- a/src/IconSpaceBarSharp.tsx +++ b/src/IconSpaceBarSharp.tsx @@ -8,4 +8,4 @@ const IconSpaceBarSharp: React.FC = ({ ...props }) => ( ) -export { IconSpaceBarSharp as default } +export default IconSpaceBarSharp diff --git a/src/IconSpaceBarSharpFilled.tsx b/src/IconSpaceBarSharpFilled.tsx index 06621f8ef..5ee13b235 100644 --- a/src/IconSpaceBarSharpFilled.tsx +++ b/src/IconSpaceBarSharpFilled.tsx @@ -8,4 +8,4 @@ const IconSpaceBarSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconSpaceBarSharpFilled as default } +export default IconSpaceBarSharpFilled diff --git a/src/IconSpaceDashboardOutlined.tsx b/src/IconSpaceDashboardOutlined.tsx index b2b483665..b01c02b16 100644 --- a/src/IconSpaceDashboardOutlined.tsx +++ b/src/IconSpaceDashboardOutlined.tsx @@ -8,4 +8,4 @@ const IconSpaceDashboardOutlined: React.FC = ({ ...props }) => ( ) -export { IconSpaceDashboardOutlined as default } +export default IconSpaceDashboardOutlined diff --git a/src/IconSpaceDashboardOutlinedFilled.tsx b/src/IconSpaceDashboardOutlinedFilled.tsx index 2887d94fc..8831c4f80 100644 --- a/src/IconSpaceDashboardOutlinedFilled.tsx +++ b/src/IconSpaceDashboardOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconSpaceDashboardOutlinedFilled: React.FC = ({ ) -export { IconSpaceDashboardOutlinedFilled as default } +export default IconSpaceDashboardOutlinedFilled diff --git a/src/IconSpaceDashboardRounded.tsx b/src/IconSpaceDashboardRounded.tsx index f357d043c..8aaa2ccdb 100644 --- a/src/IconSpaceDashboardRounded.tsx +++ b/src/IconSpaceDashboardRounded.tsx @@ -8,4 +8,4 @@ const IconSpaceDashboardRounded: React.FC = ({ ...props }) => ( ) -export { IconSpaceDashboardRounded as default } +export default IconSpaceDashboardRounded diff --git a/src/IconSpaceDashboardRoundedFilled.tsx b/src/IconSpaceDashboardRoundedFilled.tsx index 7f69d56fa..40e90f4d6 100644 --- a/src/IconSpaceDashboardRoundedFilled.tsx +++ b/src/IconSpaceDashboardRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconSpaceDashboardRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconSpaceDashboardRoundedFilled as default } +export default IconSpaceDashboardRoundedFilled diff --git a/src/IconSpaceDashboardSharp.tsx b/src/IconSpaceDashboardSharp.tsx index 69f95b297..71d9eaa8f 100644 --- a/src/IconSpaceDashboardSharp.tsx +++ b/src/IconSpaceDashboardSharp.tsx @@ -8,4 +8,4 @@ const IconSpaceDashboardSharp: React.FC = ({ ...props }) => ( ) -export { IconSpaceDashboardSharp as default } +export default IconSpaceDashboardSharp diff --git a/src/IconSpaceDashboardSharpFilled.tsx b/src/IconSpaceDashboardSharpFilled.tsx index e85ef809d..a611db0b2 100644 --- a/src/IconSpaceDashboardSharpFilled.tsx +++ b/src/IconSpaceDashboardSharpFilled.tsx @@ -8,4 +8,4 @@ const IconSpaceDashboardSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconSpaceDashboardSharpFilled as default } +export default IconSpaceDashboardSharpFilled diff --git a/src/IconSpatialAudioOffOutlined.tsx b/src/IconSpatialAudioOffOutlined.tsx index 0d7c4f9d7..79ce267f3 100644 --- a/src/IconSpatialAudioOffOutlined.tsx +++ b/src/IconSpatialAudioOffOutlined.tsx @@ -8,4 +8,4 @@ const IconSpatialAudioOffOutlined: React.FC = ({ ...props }) => ( ) -export { IconSpatialAudioOffOutlined as default } +export default IconSpatialAudioOffOutlined diff --git a/src/IconSpatialAudioOffOutlinedFilled.tsx b/src/IconSpatialAudioOffOutlinedFilled.tsx index 7697ab320..9a0958827 100644 --- a/src/IconSpatialAudioOffOutlinedFilled.tsx +++ b/src/IconSpatialAudioOffOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconSpatialAudioOffOutlinedFilled: React.FC = ({ ) -export { IconSpatialAudioOffOutlinedFilled as default } +export default IconSpatialAudioOffOutlinedFilled diff --git a/src/IconSpatialAudioOffRounded.tsx b/src/IconSpatialAudioOffRounded.tsx index 5e170ea21..9605c2e8f 100644 --- a/src/IconSpatialAudioOffRounded.tsx +++ b/src/IconSpatialAudioOffRounded.tsx @@ -8,4 +8,4 @@ const IconSpatialAudioOffRounded: React.FC = ({ ...props }) => ( ) -export { IconSpatialAudioOffRounded as default } +export default IconSpatialAudioOffRounded diff --git a/src/IconSpatialAudioOffRoundedFilled.tsx b/src/IconSpatialAudioOffRoundedFilled.tsx index 431c48629..ae09bf58e 100644 --- a/src/IconSpatialAudioOffRoundedFilled.tsx +++ b/src/IconSpatialAudioOffRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconSpatialAudioOffRoundedFilled: React.FC = ({ ) -export { IconSpatialAudioOffRoundedFilled as default } +export default IconSpatialAudioOffRoundedFilled diff --git a/src/IconSpatialAudioOffSharp.tsx b/src/IconSpatialAudioOffSharp.tsx index f8ffdf206..6a7c69d47 100644 --- a/src/IconSpatialAudioOffSharp.tsx +++ b/src/IconSpatialAudioOffSharp.tsx @@ -8,4 +8,4 @@ const IconSpatialAudioOffSharp: React.FC = ({ ...props }) => ( ) -export { IconSpatialAudioOffSharp as default } +export default IconSpatialAudioOffSharp diff --git a/src/IconSpatialAudioOffSharpFilled.tsx b/src/IconSpatialAudioOffSharpFilled.tsx index 8ca104b58..ffad6f2eb 100644 --- a/src/IconSpatialAudioOffSharpFilled.tsx +++ b/src/IconSpatialAudioOffSharpFilled.tsx @@ -8,4 +8,4 @@ const IconSpatialAudioOffSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconSpatialAudioOffSharpFilled as default } +export default IconSpatialAudioOffSharpFilled diff --git a/src/IconSpatialAudioOutlined.tsx b/src/IconSpatialAudioOutlined.tsx index d367e1973..ebedc81d2 100644 --- a/src/IconSpatialAudioOutlined.tsx +++ b/src/IconSpatialAudioOutlined.tsx @@ -8,4 +8,4 @@ const IconSpatialAudioOutlined: React.FC = ({ ...props }) => ( ) -export { IconSpatialAudioOutlined as default } +export default IconSpatialAudioOutlined diff --git a/src/IconSpatialAudioOutlinedFilled.tsx b/src/IconSpatialAudioOutlinedFilled.tsx index 4c6181a55..722e1afbd 100644 --- a/src/IconSpatialAudioOutlinedFilled.tsx +++ b/src/IconSpatialAudioOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconSpatialAudioOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconSpatialAudioOutlinedFilled as default } +export default IconSpatialAudioOutlinedFilled diff --git a/src/IconSpatialAudioRounded.tsx b/src/IconSpatialAudioRounded.tsx index 2d9e4d091..85987f51b 100644 --- a/src/IconSpatialAudioRounded.tsx +++ b/src/IconSpatialAudioRounded.tsx @@ -8,4 +8,4 @@ const IconSpatialAudioRounded: React.FC = ({ ...props }) => ( ) -export { IconSpatialAudioRounded as default } +export default IconSpatialAudioRounded diff --git a/src/IconSpatialAudioRoundedFilled.tsx b/src/IconSpatialAudioRoundedFilled.tsx index 3f5b133e4..c40b5ca3f 100644 --- a/src/IconSpatialAudioRoundedFilled.tsx +++ b/src/IconSpatialAudioRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconSpatialAudioRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconSpatialAudioRoundedFilled as default } +export default IconSpatialAudioRoundedFilled diff --git a/src/IconSpatialAudioSharp.tsx b/src/IconSpatialAudioSharp.tsx index a75bec500..a5bc37182 100644 --- a/src/IconSpatialAudioSharp.tsx +++ b/src/IconSpatialAudioSharp.tsx @@ -8,4 +8,4 @@ const IconSpatialAudioSharp: React.FC = ({ ...props }) => ( ) -export { IconSpatialAudioSharp as default } +export default IconSpatialAudioSharp diff --git a/src/IconSpatialAudioSharpFilled.tsx b/src/IconSpatialAudioSharpFilled.tsx index 5d32b7450..48a9221e1 100644 --- a/src/IconSpatialAudioSharpFilled.tsx +++ b/src/IconSpatialAudioSharpFilled.tsx @@ -8,4 +8,4 @@ const IconSpatialAudioSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconSpatialAudioSharpFilled as default } +export default IconSpatialAudioSharpFilled diff --git a/src/IconSpatialSpeakerOutlined.tsx b/src/IconSpatialSpeakerOutlined.tsx index de050d233..0ccaa7a38 100644 --- a/src/IconSpatialSpeakerOutlined.tsx +++ b/src/IconSpatialSpeakerOutlined.tsx @@ -8,4 +8,4 @@ const IconSpatialSpeakerOutlined: React.FC = ({ ...props }) => ( ) -export { IconSpatialSpeakerOutlined as default } +export default IconSpatialSpeakerOutlined diff --git a/src/IconSpatialSpeakerOutlinedFilled.tsx b/src/IconSpatialSpeakerOutlinedFilled.tsx index 3e535a223..bd478ce3f 100644 --- a/src/IconSpatialSpeakerOutlinedFilled.tsx +++ b/src/IconSpatialSpeakerOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconSpatialSpeakerOutlinedFilled: React.FC = ({ ) -export { IconSpatialSpeakerOutlinedFilled as default } +export default IconSpatialSpeakerOutlinedFilled diff --git a/src/IconSpatialSpeakerRounded.tsx b/src/IconSpatialSpeakerRounded.tsx index 78cb82653..768576213 100644 --- a/src/IconSpatialSpeakerRounded.tsx +++ b/src/IconSpatialSpeakerRounded.tsx @@ -8,4 +8,4 @@ const IconSpatialSpeakerRounded: React.FC = ({ ...props }) => ( ) -export { IconSpatialSpeakerRounded as default } +export default IconSpatialSpeakerRounded diff --git a/src/IconSpatialSpeakerRoundedFilled.tsx b/src/IconSpatialSpeakerRoundedFilled.tsx index 1a019040b..e13aece43 100644 --- a/src/IconSpatialSpeakerRoundedFilled.tsx +++ b/src/IconSpatialSpeakerRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconSpatialSpeakerRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconSpatialSpeakerRoundedFilled as default } +export default IconSpatialSpeakerRoundedFilled diff --git a/src/IconSpatialSpeakerSharp.tsx b/src/IconSpatialSpeakerSharp.tsx index cd923e189..20a20fcc3 100644 --- a/src/IconSpatialSpeakerSharp.tsx +++ b/src/IconSpatialSpeakerSharp.tsx @@ -8,4 +8,4 @@ const IconSpatialSpeakerSharp: React.FC = ({ ...props }) => ( ) -export { IconSpatialSpeakerSharp as default } +export default IconSpatialSpeakerSharp diff --git a/src/IconSpatialSpeakerSharpFilled.tsx b/src/IconSpatialSpeakerSharpFilled.tsx index dde2c768b..1b286b788 100644 --- a/src/IconSpatialSpeakerSharpFilled.tsx +++ b/src/IconSpatialSpeakerSharpFilled.tsx @@ -8,4 +8,4 @@ const IconSpatialSpeakerSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconSpatialSpeakerSharpFilled as default } +export default IconSpatialSpeakerSharpFilled diff --git a/src/IconSpatialTrackingOutlined.tsx b/src/IconSpatialTrackingOutlined.tsx index 077092090..eb93c0007 100644 --- a/src/IconSpatialTrackingOutlined.tsx +++ b/src/IconSpatialTrackingOutlined.tsx @@ -8,4 +8,4 @@ const IconSpatialTrackingOutlined: React.FC = ({ ...props }) => ( ) -export { IconSpatialTrackingOutlined as default } +export default IconSpatialTrackingOutlined diff --git a/src/IconSpatialTrackingOutlinedFilled.tsx b/src/IconSpatialTrackingOutlinedFilled.tsx index 158ed8972..502d0cec1 100644 --- a/src/IconSpatialTrackingOutlinedFilled.tsx +++ b/src/IconSpatialTrackingOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconSpatialTrackingOutlinedFilled: React.FC = ({ ) -export { IconSpatialTrackingOutlinedFilled as default } +export default IconSpatialTrackingOutlinedFilled diff --git a/src/IconSpatialTrackingRounded.tsx b/src/IconSpatialTrackingRounded.tsx index b2d2514ec..1a4fd9f22 100644 --- a/src/IconSpatialTrackingRounded.tsx +++ b/src/IconSpatialTrackingRounded.tsx @@ -8,4 +8,4 @@ const IconSpatialTrackingRounded: React.FC = ({ ...props }) => ( ) -export { IconSpatialTrackingRounded as default } +export default IconSpatialTrackingRounded diff --git a/src/IconSpatialTrackingRoundedFilled.tsx b/src/IconSpatialTrackingRoundedFilled.tsx index 332ac7a0f..2119d0dcc 100644 --- a/src/IconSpatialTrackingRoundedFilled.tsx +++ b/src/IconSpatialTrackingRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconSpatialTrackingRoundedFilled: React.FC = ({ ) -export { IconSpatialTrackingRoundedFilled as default } +export default IconSpatialTrackingRoundedFilled diff --git a/src/IconSpatialTrackingSharp.tsx b/src/IconSpatialTrackingSharp.tsx index 8a87e1d08..806064bb6 100644 --- a/src/IconSpatialTrackingSharp.tsx +++ b/src/IconSpatialTrackingSharp.tsx @@ -8,4 +8,4 @@ const IconSpatialTrackingSharp: React.FC = ({ ...props }) => ( ) -export { IconSpatialTrackingSharp as default } +export default IconSpatialTrackingSharp diff --git a/src/IconSpatialTrackingSharpFilled.tsx b/src/IconSpatialTrackingSharpFilled.tsx index ba4159e2e..ebdaae103 100644 --- a/src/IconSpatialTrackingSharpFilled.tsx +++ b/src/IconSpatialTrackingSharpFilled.tsx @@ -8,4 +8,4 @@ const IconSpatialTrackingSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconSpatialTrackingSharpFilled as default } +export default IconSpatialTrackingSharpFilled diff --git a/src/IconSpeakerGroupOutlined.tsx b/src/IconSpeakerGroupOutlined.tsx index 996a84483..54b333847 100644 --- a/src/IconSpeakerGroupOutlined.tsx +++ b/src/IconSpeakerGroupOutlined.tsx @@ -8,4 +8,4 @@ const IconSpeakerGroupOutlined: React.FC = ({ ...props }) => ( ) -export { IconSpeakerGroupOutlined as default } +export default IconSpeakerGroupOutlined diff --git a/src/IconSpeakerGroupOutlinedFilled.tsx b/src/IconSpeakerGroupOutlinedFilled.tsx index 27b29ff1a..9a1a93ecc 100644 --- a/src/IconSpeakerGroupOutlinedFilled.tsx +++ b/src/IconSpeakerGroupOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconSpeakerGroupOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconSpeakerGroupOutlinedFilled as default } +export default IconSpeakerGroupOutlinedFilled diff --git a/src/IconSpeakerGroupRounded.tsx b/src/IconSpeakerGroupRounded.tsx index 7c88d5c6a..f95f3b370 100644 --- a/src/IconSpeakerGroupRounded.tsx +++ b/src/IconSpeakerGroupRounded.tsx @@ -8,4 +8,4 @@ const IconSpeakerGroupRounded: React.FC = ({ ...props }) => ( ) -export { IconSpeakerGroupRounded as default } +export default IconSpeakerGroupRounded diff --git a/src/IconSpeakerGroupRoundedFilled.tsx b/src/IconSpeakerGroupRoundedFilled.tsx index 9814eed14..d35eaf6df 100644 --- a/src/IconSpeakerGroupRoundedFilled.tsx +++ b/src/IconSpeakerGroupRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconSpeakerGroupRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconSpeakerGroupRoundedFilled as default } +export default IconSpeakerGroupRoundedFilled diff --git a/src/IconSpeakerGroupSharp.tsx b/src/IconSpeakerGroupSharp.tsx index d15582cb4..99c0ecf7a 100644 --- a/src/IconSpeakerGroupSharp.tsx +++ b/src/IconSpeakerGroupSharp.tsx @@ -8,4 +8,4 @@ const IconSpeakerGroupSharp: React.FC = ({ ...props }) => ( ) -export { IconSpeakerGroupSharp as default } +export default IconSpeakerGroupSharp diff --git a/src/IconSpeakerGroupSharpFilled.tsx b/src/IconSpeakerGroupSharpFilled.tsx index 627b9a918..e95cbf076 100644 --- a/src/IconSpeakerGroupSharpFilled.tsx +++ b/src/IconSpeakerGroupSharpFilled.tsx @@ -8,4 +8,4 @@ const IconSpeakerGroupSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconSpeakerGroupSharpFilled as default } +export default IconSpeakerGroupSharpFilled diff --git a/src/IconSpeakerNotesOffOutlined.tsx b/src/IconSpeakerNotesOffOutlined.tsx index a894b9788..2e4cc1027 100644 --- a/src/IconSpeakerNotesOffOutlined.tsx +++ b/src/IconSpeakerNotesOffOutlined.tsx @@ -8,4 +8,4 @@ const IconSpeakerNotesOffOutlined: React.FC = ({ ...props }) => ( ) -export { IconSpeakerNotesOffOutlined as default } +export default IconSpeakerNotesOffOutlined diff --git a/src/IconSpeakerNotesOffOutlinedFilled.tsx b/src/IconSpeakerNotesOffOutlinedFilled.tsx index 753ff892c..b4eea55d7 100644 --- a/src/IconSpeakerNotesOffOutlinedFilled.tsx +++ b/src/IconSpeakerNotesOffOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconSpeakerNotesOffOutlinedFilled: React.FC = ({ ) -export { IconSpeakerNotesOffOutlinedFilled as default } +export default IconSpeakerNotesOffOutlinedFilled diff --git a/src/IconSpeakerNotesOffRounded.tsx b/src/IconSpeakerNotesOffRounded.tsx index 48c24f5f0..f9a99f93d 100644 --- a/src/IconSpeakerNotesOffRounded.tsx +++ b/src/IconSpeakerNotesOffRounded.tsx @@ -8,4 +8,4 @@ const IconSpeakerNotesOffRounded: React.FC = ({ ...props }) => ( ) -export { IconSpeakerNotesOffRounded as default } +export default IconSpeakerNotesOffRounded diff --git a/src/IconSpeakerNotesOffRoundedFilled.tsx b/src/IconSpeakerNotesOffRoundedFilled.tsx index 94916ebe9..af481de2e 100644 --- a/src/IconSpeakerNotesOffRoundedFilled.tsx +++ b/src/IconSpeakerNotesOffRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconSpeakerNotesOffRoundedFilled: React.FC = ({ ) -export { IconSpeakerNotesOffRoundedFilled as default } +export default IconSpeakerNotesOffRoundedFilled diff --git a/src/IconSpeakerNotesOffSharp.tsx b/src/IconSpeakerNotesOffSharp.tsx index ac6680a95..474832641 100644 --- a/src/IconSpeakerNotesOffSharp.tsx +++ b/src/IconSpeakerNotesOffSharp.tsx @@ -8,4 +8,4 @@ const IconSpeakerNotesOffSharp: React.FC = ({ ...props }) => ( ) -export { IconSpeakerNotesOffSharp as default } +export default IconSpeakerNotesOffSharp diff --git a/src/IconSpeakerNotesOffSharpFilled.tsx b/src/IconSpeakerNotesOffSharpFilled.tsx index 8aa20b344..b333f8044 100644 --- a/src/IconSpeakerNotesOffSharpFilled.tsx +++ b/src/IconSpeakerNotesOffSharpFilled.tsx @@ -8,4 +8,4 @@ const IconSpeakerNotesOffSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconSpeakerNotesOffSharpFilled as default } +export default IconSpeakerNotesOffSharpFilled diff --git a/src/IconSpeakerNotesOutlined.tsx b/src/IconSpeakerNotesOutlined.tsx index c6339b22f..6a8d3a88b 100644 --- a/src/IconSpeakerNotesOutlined.tsx +++ b/src/IconSpeakerNotesOutlined.tsx @@ -8,4 +8,4 @@ const IconSpeakerNotesOutlined: React.FC = ({ ...props }) => ( ) -export { IconSpeakerNotesOutlined as default } +export default IconSpeakerNotesOutlined diff --git a/src/IconSpeakerNotesOutlinedFilled.tsx b/src/IconSpeakerNotesOutlinedFilled.tsx index a116e6d34..b3b12aa59 100644 --- a/src/IconSpeakerNotesOutlinedFilled.tsx +++ b/src/IconSpeakerNotesOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconSpeakerNotesOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconSpeakerNotesOutlinedFilled as default } +export default IconSpeakerNotesOutlinedFilled diff --git a/src/IconSpeakerNotesRounded.tsx b/src/IconSpeakerNotesRounded.tsx index 4cdcc1ab2..20f206ea4 100644 --- a/src/IconSpeakerNotesRounded.tsx +++ b/src/IconSpeakerNotesRounded.tsx @@ -8,4 +8,4 @@ const IconSpeakerNotesRounded: React.FC = ({ ...props }) => ( ) -export { IconSpeakerNotesRounded as default } +export default IconSpeakerNotesRounded diff --git a/src/IconSpeakerNotesRoundedFilled.tsx b/src/IconSpeakerNotesRoundedFilled.tsx index 6d2777beb..43be449c2 100644 --- a/src/IconSpeakerNotesRoundedFilled.tsx +++ b/src/IconSpeakerNotesRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconSpeakerNotesRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconSpeakerNotesRoundedFilled as default } +export default IconSpeakerNotesRoundedFilled diff --git a/src/IconSpeakerNotesSharp.tsx b/src/IconSpeakerNotesSharp.tsx index db3ce1778..5915215a0 100644 --- a/src/IconSpeakerNotesSharp.tsx +++ b/src/IconSpeakerNotesSharp.tsx @@ -8,4 +8,4 @@ const IconSpeakerNotesSharp: React.FC = ({ ...props }) => ( ) -export { IconSpeakerNotesSharp as default } +export default IconSpeakerNotesSharp diff --git a/src/IconSpeakerNotesSharpFilled.tsx b/src/IconSpeakerNotesSharpFilled.tsx index c9c3f0f9e..d9f595b61 100644 --- a/src/IconSpeakerNotesSharpFilled.tsx +++ b/src/IconSpeakerNotesSharpFilled.tsx @@ -8,4 +8,4 @@ const IconSpeakerNotesSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconSpeakerNotesSharpFilled as default } +export default IconSpeakerNotesSharpFilled diff --git a/src/IconSpeakerOutlined.tsx b/src/IconSpeakerOutlined.tsx index a1c9364a9..f2608c011 100644 --- a/src/IconSpeakerOutlined.tsx +++ b/src/IconSpeakerOutlined.tsx @@ -8,4 +8,4 @@ const IconSpeakerOutlined: React.FC = ({ ...props }) => ( ) -export { IconSpeakerOutlined as default } +export default IconSpeakerOutlined diff --git a/src/IconSpeakerOutlinedFilled.tsx b/src/IconSpeakerOutlinedFilled.tsx index 4f7d16af7..53f16d404 100644 --- a/src/IconSpeakerOutlinedFilled.tsx +++ b/src/IconSpeakerOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconSpeakerOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconSpeakerOutlinedFilled as default } +export default IconSpeakerOutlinedFilled diff --git a/src/IconSpeakerPhoneOutlined.tsx b/src/IconSpeakerPhoneOutlined.tsx index ab79fbbfb..f9e93896e 100644 --- a/src/IconSpeakerPhoneOutlined.tsx +++ b/src/IconSpeakerPhoneOutlined.tsx @@ -8,4 +8,4 @@ const IconSpeakerPhoneOutlined: React.FC = ({ ...props }) => ( ) -export { IconSpeakerPhoneOutlined as default } +export default IconSpeakerPhoneOutlined diff --git a/src/IconSpeakerPhoneOutlinedFilled.tsx b/src/IconSpeakerPhoneOutlinedFilled.tsx index e4ffb6518..7a29dcd90 100644 --- a/src/IconSpeakerPhoneOutlinedFilled.tsx +++ b/src/IconSpeakerPhoneOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconSpeakerPhoneOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconSpeakerPhoneOutlinedFilled as default } +export default IconSpeakerPhoneOutlinedFilled diff --git a/src/IconSpeakerPhoneRounded.tsx b/src/IconSpeakerPhoneRounded.tsx index ad653bd86..9507090b3 100644 --- a/src/IconSpeakerPhoneRounded.tsx +++ b/src/IconSpeakerPhoneRounded.tsx @@ -8,4 +8,4 @@ const IconSpeakerPhoneRounded: React.FC = ({ ...props }) => ( ) -export { IconSpeakerPhoneRounded as default } +export default IconSpeakerPhoneRounded diff --git a/src/IconSpeakerPhoneRoundedFilled.tsx b/src/IconSpeakerPhoneRoundedFilled.tsx index 6e1707d2f..9b596012a 100644 --- a/src/IconSpeakerPhoneRoundedFilled.tsx +++ b/src/IconSpeakerPhoneRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconSpeakerPhoneRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconSpeakerPhoneRoundedFilled as default } +export default IconSpeakerPhoneRoundedFilled diff --git a/src/IconSpeakerPhoneSharp.tsx b/src/IconSpeakerPhoneSharp.tsx index 2becf15aa..4626afe08 100644 --- a/src/IconSpeakerPhoneSharp.tsx +++ b/src/IconSpeakerPhoneSharp.tsx @@ -8,4 +8,4 @@ const IconSpeakerPhoneSharp: React.FC = ({ ...props }) => ( ) -export { IconSpeakerPhoneSharp as default } +export default IconSpeakerPhoneSharp diff --git a/src/IconSpeakerPhoneSharpFilled.tsx b/src/IconSpeakerPhoneSharpFilled.tsx index 31881e2ae..72dc7e32a 100644 --- a/src/IconSpeakerPhoneSharpFilled.tsx +++ b/src/IconSpeakerPhoneSharpFilled.tsx @@ -8,4 +8,4 @@ const IconSpeakerPhoneSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconSpeakerPhoneSharpFilled as default } +export default IconSpeakerPhoneSharpFilled diff --git a/src/IconSpeakerRounded.tsx b/src/IconSpeakerRounded.tsx index c55fde37a..30e8c98db 100644 --- a/src/IconSpeakerRounded.tsx +++ b/src/IconSpeakerRounded.tsx @@ -8,4 +8,4 @@ const IconSpeakerRounded: React.FC = ({ ...props }) => ( ) -export { IconSpeakerRounded as default } +export default IconSpeakerRounded diff --git a/src/IconSpeakerRoundedFilled.tsx b/src/IconSpeakerRoundedFilled.tsx index 2036e9b4a..c8050f097 100644 --- a/src/IconSpeakerRoundedFilled.tsx +++ b/src/IconSpeakerRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconSpeakerRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconSpeakerRoundedFilled as default } +export default IconSpeakerRoundedFilled diff --git a/src/IconSpeakerSharp.tsx b/src/IconSpeakerSharp.tsx index 567123829..30faaa920 100644 --- a/src/IconSpeakerSharp.tsx +++ b/src/IconSpeakerSharp.tsx @@ -8,4 +8,4 @@ const IconSpeakerSharp: React.FC = ({ ...props }) => ( ) -export { IconSpeakerSharp as default } +export default IconSpeakerSharp diff --git a/src/IconSpeakerSharpFilled.tsx b/src/IconSpeakerSharpFilled.tsx index 6ba47c1ba..6a25b3531 100644 --- a/src/IconSpeakerSharpFilled.tsx +++ b/src/IconSpeakerSharpFilled.tsx @@ -8,4 +8,4 @@ const IconSpeakerSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconSpeakerSharpFilled as default } +export default IconSpeakerSharpFilled diff --git a/src/IconSpecialCharacterOutlined.tsx b/src/IconSpecialCharacterOutlined.tsx index fecbd431b..dfbf5f96e 100644 --- a/src/IconSpecialCharacterOutlined.tsx +++ b/src/IconSpecialCharacterOutlined.tsx @@ -8,4 +8,4 @@ const IconSpecialCharacterOutlined: React.FC = ({ ...props }) => ( ) -export { IconSpecialCharacterOutlined as default } +export default IconSpecialCharacterOutlined diff --git a/src/IconSpecialCharacterOutlinedFilled.tsx b/src/IconSpecialCharacterOutlinedFilled.tsx index f945daee5..05c77e8c4 100644 --- a/src/IconSpecialCharacterOutlinedFilled.tsx +++ b/src/IconSpecialCharacterOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconSpecialCharacterOutlinedFilled: React.FC = ({ ) -export { IconSpecialCharacterOutlinedFilled as default } +export default IconSpecialCharacterOutlinedFilled diff --git a/src/IconSpecialCharacterRounded.tsx b/src/IconSpecialCharacterRounded.tsx index 3ee76eeaf..2b99fe174 100644 --- a/src/IconSpecialCharacterRounded.tsx +++ b/src/IconSpecialCharacterRounded.tsx @@ -8,4 +8,4 @@ const IconSpecialCharacterRounded: React.FC = ({ ...props }) => ( ) -export { IconSpecialCharacterRounded as default } +export default IconSpecialCharacterRounded diff --git a/src/IconSpecialCharacterRoundedFilled.tsx b/src/IconSpecialCharacterRoundedFilled.tsx index 6144a5fdf..6a6f9dc2b 100644 --- a/src/IconSpecialCharacterRoundedFilled.tsx +++ b/src/IconSpecialCharacterRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconSpecialCharacterRoundedFilled: React.FC = ({ ) -export { IconSpecialCharacterRoundedFilled as default } +export default IconSpecialCharacterRoundedFilled diff --git a/src/IconSpecialCharacterSharp.tsx b/src/IconSpecialCharacterSharp.tsx index aa281ad41..497a066d1 100644 --- a/src/IconSpecialCharacterSharp.tsx +++ b/src/IconSpecialCharacterSharp.tsx @@ -8,4 +8,4 @@ const IconSpecialCharacterSharp: React.FC = ({ ...props }) => ( ) -export { IconSpecialCharacterSharp as default } +export default IconSpecialCharacterSharp diff --git a/src/IconSpecialCharacterSharpFilled.tsx b/src/IconSpecialCharacterSharpFilled.tsx index 19e634456..5473bd1f5 100644 --- a/src/IconSpecialCharacterSharpFilled.tsx +++ b/src/IconSpecialCharacterSharpFilled.tsx @@ -8,4 +8,4 @@ const IconSpecialCharacterSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconSpecialCharacterSharpFilled as default } +export default IconSpecialCharacterSharpFilled diff --git a/src/IconSpecificGravityOutlined.tsx b/src/IconSpecificGravityOutlined.tsx index dd9a78b4c..73de25de4 100644 --- a/src/IconSpecificGravityOutlined.tsx +++ b/src/IconSpecificGravityOutlined.tsx @@ -8,4 +8,4 @@ const IconSpecificGravityOutlined: React.FC = ({ ...props }) => ( ) -export { IconSpecificGravityOutlined as default } +export default IconSpecificGravityOutlined diff --git a/src/IconSpecificGravityOutlinedFilled.tsx b/src/IconSpecificGravityOutlinedFilled.tsx index 4050f5255..c2fdd767b 100644 --- a/src/IconSpecificGravityOutlinedFilled.tsx +++ b/src/IconSpecificGravityOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconSpecificGravityOutlinedFilled: React.FC = ({ ) -export { IconSpecificGravityOutlinedFilled as default } +export default IconSpecificGravityOutlinedFilled diff --git a/src/IconSpecificGravityRounded.tsx b/src/IconSpecificGravityRounded.tsx index dff904f49..9a347d51b 100644 --- a/src/IconSpecificGravityRounded.tsx +++ b/src/IconSpecificGravityRounded.tsx @@ -8,4 +8,4 @@ const IconSpecificGravityRounded: React.FC = ({ ...props }) => ( ) -export { IconSpecificGravityRounded as default } +export default IconSpecificGravityRounded diff --git a/src/IconSpecificGravityRoundedFilled.tsx b/src/IconSpecificGravityRoundedFilled.tsx index 79bb79012..7ef1500c2 100644 --- a/src/IconSpecificGravityRoundedFilled.tsx +++ b/src/IconSpecificGravityRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconSpecificGravityRoundedFilled: React.FC = ({ ) -export { IconSpecificGravityRoundedFilled as default } +export default IconSpecificGravityRoundedFilled diff --git a/src/IconSpecificGravitySharp.tsx b/src/IconSpecificGravitySharp.tsx index 3af45b1f1..a5792b97c 100644 --- a/src/IconSpecificGravitySharp.tsx +++ b/src/IconSpecificGravitySharp.tsx @@ -8,4 +8,4 @@ const IconSpecificGravitySharp: React.FC = ({ ...props }) => ( ) -export { IconSpecificGravitySharp as default } +export default IconSpecificGravitySharp diff --git a/src/IconSpecificGravitySharpFilled.tsx b/src/IconSpecificGravitySharpFilled.tsx index 0a9162c07..8956a9f4e 100644 --- a/src/IconSpecificGravitySharpFilled.tsx +++ b/src/IconSpecificGravitySharpFilled.tsx @@ -8,4 +8,4 @@ const IconSpecificGravitySharpFilled: React.FC = ({ ...props }) => ( ) -export { IconSpecificGravitySharpFilled as default } +export default IconSpecificGravitySharpFilled diff --git a/src/IconSpeechToTextOutlined.tsx b/src/IconSpeechToTextOutlined.tsx index 2a012adcf..4fd09bdd8 100644 --- a/src/IconSpeechToTextOutlined.tsx +++ b/src/IconSpeechToTextOutlined.tsx @@ -8,4 +8,4 @@ const IconSpeechToTextOutlined: React.FC = ({ ...props }) => ( ) -export { IconSpeechToTextOutlined as default } +export default IconSpeechToTextOutlined diff --git a/src/IconSpeechToTextOutlinedFilled.tsx b/src/IconSpeechToTextOutlinedFilled.tsx index d44d437c4..0d25d2ad5 100644 --- a/src/IconSpeechToTextOutlinedFilled.tsx +++ b/src/IconSpeechToTextOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconSpeechToTextOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconSpeechToTextOutlinedFilled as default } +export default IconSpeechToTextOutlinedFilled diff --git a/src/IconSpeechToTextRounded.tsx b/src/IconSpeechToTextRounded.tsx index 89ec7beb6..8abc2718b 100644 --- a/src/IconSpeechToTextRounded.tsx +++ b/src/IconSpeechToTextRounded.tsx @@ -8,4 +8,4 @@ const IconSpeechToTextRounded: React.FC = ({ ...props }) => ( ) -export { IconSpeechToTextRounded as default } +export default IconSpeechToTextRounded diff --git a/src/IconSpeechToTextRoundedFilled.tsx b/src/IconSpeechToTextRoundedFilled.tsx index 6ff666d61..7d1773c27 100644 --- a/src/IconSpeechToTextRoundedFilled.tsx +++ b/src/IconSpeechToTextRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconSpeechToTextRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconSpeechToTextRoundedFilled as default } +export default IconSpeechToTextRoundedFilled diff --git a/src/IconSpeechToTextSharp.tsx b/src/IconSpeechToTextSharp.tsx index aaccc7ee9..b4db384e9 100644 --- a/src/IconSpeechToTextSharp.tsx +++ b/src/IconSpeechToTextSharp.tsx @@ -8,4 +8,4 @@ const IconSpeechToTextSharp: React.FC = ({ ...props }) => ( ) -export { IconSpeechToTextSharp as default } +export default IconSpeechToTextSharp diff --git a/src/IconSpeechToTextSharpFilled.tsx b/src/IconSpeechToTextSharpFilled.tsx index f7e99928e..b61df617d 100644 --- a/src/IconSpeechToTextSharpFilled.tsx +++ b/src/IconSpeechToTextSharpFilled.tsx @@ -8,4 +8,4 @@ const IconSpeechToTextSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconSpeechToTextSharpFilled as default } +export default IconSpeechToTextSharpFilled diff --git a/src/IconSpeed025Outlined.tsx b/src/IconSpeed025Outlined.tsx index e5a444a92..af6590827 100644 --- a/src/IconSpeed025Outlined.tsx +++ b/src/IconSpeed025Outlined.tsx @@ -8,4 +8,4 @@ const IconSpeed025Outlined: React.FC = ({ ...props }) => ( ) -export { IconSpeed025Outlined as default } +export default IconSpeed025Outlined diff --git a/src/IconSpeed025OutlinedFilled.tsx b/src/IconSpeed025OutlinedFilled.tsx index 36bc96b78..d867b5a0b 100644 --- a/src/IconSpeed025OutlinedFilled.tsx +++ b/src/IconSpeed025OutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconSpeed025OutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconSpeed025OutlinedFilled as default } +export default IconSpeed025OutlinedFilled diff --git a/src/IconSpeed025Rounded.tsx b/src/IconSpeed025Rounded.tsx index 620357be2..bf1a56573 100644 --- a/src/IconSpeed025Rounded.tsx +++ b/src/IconSpeed025Rounded.tsx @@ -8,4 +8,4 @@ const IconSpeed025Rounded: React.FC = ({ ...props }) => ( ) -export { IconSpeed025Rounded as default } +export default IconSpeed025Rounded diff --git a/src/IconSpeed025RoundedFilled.tsx b/src/IconSpeed025RoundedFilled.tsx index 16a3d1e68..653b2d0c9 100644 --- a/src/IconSpeed025RoundedFilled.tsx +++ b/src/IconSpeed025RoundedFilled.tsx @@ -8,4 +8,4 @@ const IconSpeed025RoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconSpeed025RoundedFilled as default } +export default IconSpeed025RoundedFilled diff --git a/src/IconSpeed025Sharp.tsx b/src/IconSpeed025Sharp.tsx index 90646158d..9f124a536 100644 --- a/src/IconSpeed025Sharp.tsx +++ b/src/IconSpeed025Sharp.tsx @@ -8,4 +8,4 @@ const IconSpeed025Sharp: React.FC = ({ ...props }) => ( ) -export { IconSpeed025Sharp as default } +export default IconSpeed025Sharp diff --git a/src/IconSpeed025SharpFilled.tsx b/src/IconSpeed025SharpFilled.tsx index eeda2cc06..82fa8439d 100644 --- a/src/IconSpeed025SharpFilled.tsx +++ b/src/IconSpeed025SharpFilled.tsx @@ -8,4 +8,4 @@ const IconSpeed025SharpFilled: React.FC = ({ ...props }) => ( ) -export { IconSpeed025SharpFilled as default } +export default IconSpeed025SharpFilled diff --git a/src/IconSpeed02xOutlined.tsx b/src/IconSpeed02xOutlined.tsx index 5012c5d91..421e06b74 100644 --- a/src/IconSpeed02xOutlined.tsx +++ b/src/IconSpeed02xOutlined.tsx @@ -8,4 +8,4 @@ const IconSpeed02xOutlined: React.FC = ({ ...props }) => ( ) -export { IconSpeed02xOutlined as default } +export default IconSpeed02xOutlined diff --git a/src/IconSpeed02xOutlinedFilled.tsx b/src/IconSpeed02xOutlinedFilled.tsx index f27d574c3..3e5ca46d5 100644 --- a/src/IconSpeed02xOutlinedFilled.tsx +++ b/src/IconSpeed02xOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconSpeed02xOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconSpeed02xOutlinedFilled as default } +export default IconSpeed02xOutlinedFilled diff --git a/src/IconSpeed02xRounded.tsx b/src/IconSpeed02xRounded.tsx index 9a479ebd2..aaa593aea 100644 --- a/src/IconSpeed02xRounded.tsx +++ b/src/IconSpeed02xRounded.tsx @@ -8,4 +8,4 @@ const IconSpeed02xRounded: React.FC = ({ ...props }) => ( ) -export { IconSpeed02xRounded as default } +export default IconSpeed02xRounded diff --git a/src/IconSpeed02xRoundedFilled.tsx b/src/IconSpeed02xRoundedFilled.tsx index 304b1208b..3fd5f3904 100644 --- a/src/IconSpeed02xRoundedFilled.tsx +++ b/src/IconSpeed02xRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconSpeed02xRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconSpeed02xRoundedFilled as default } +export default IconSpeed02xRoundedFilled diff --git a/src/IconSpeed02xSharp.tsx b/src/IconSpeed02xSharp.tsx index dbc0a4090..f373c8d34 100644 --- a/src/IconSpeed02xSharp.tsx +++ b/src/IconSpeed02xSharp.tsx @@ -8,4 +8,4 @@ const IconSpeed02xSharp: React.FC = ({ ...props }) => ( ) -export { IconSpeed02xSharp as default } +export default IconSpeed02xSharp diff --git a/src/IconSpeed02xSharpFilled.tsx b/src/IconSpeed02xSharpFilled.tsx index 3de193d3e..b86c9f636 100644 --- a/src/IconSpeed02xSharpFilled.tsx +++ b/src/IconSpeed02xSharpFilled.tsx @@ -8,4 +8,4 @@ const IconSpeed02xSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconSpeed02xSharpFilled as default } +export default IconSpeed02xSharpFilled diff --git a/src/IconSpeed05Outlined.tsx b/src/IconSpeed05Outlined.tsx index 9c774974c..df50ea125 100644 --- a/src/IconSpeed05Outlined.tsx +++ b/src/IconSpeed05Outlined.tsx @@ -8,4 +8,4 @@ const IconSpeed05Outlined: React.FC = ({ ...props }) => ( ) -export { IconSpeed05Outlined as default } +export default IconSpeed05Outlined diff --git a/src/IconSpeed05OutlinedFilled.tsx b/src/IconSpeed05OutlinedFilled.tsx index 2ff059a14..25670b65c 100644 --- a/src/IconSpeed05OutlinedFilled.tsx +++ b/src/IconSpeed05OutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconSpeed05OutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconSpeed05OutlinedFilled as default } +export default IconSpeed05OutlinedFilled diff --git a/src/IconSpeed05Rounded.tsx b/src/IconSpeed05Rounded.tsx index a87b71493..afd49ddd6 100644 --- a/src/IconSpeed05Rounded.tsx +++ b/src/IconSpeed05Rounded.tsx @@ -8,4 +8,4 @@ const IconSpeed05Rounded: React.FC = ({ ...props }) => ( ) -export { IconSpeed05Rounded as default } +export default IconSpeed05Rounded diff --git a/src/IconSpeed05RoundedFilled.tsx b/src/IconSpeed05RoundedFilled.tsx index 659296b88..76fd0e28a 100644 --- a/src/IconSpeed05RoundedFilled.tsx +++ b/src/IconSpeed05RoundedFilled.tsx @@ -8,4 +8,4 @@ const IconSpeed05RoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconSpeed05RoundedFilled as default } +export default IconSpeed05RoundedFilled diff --git a/src/IconSpeed05Sharp.tsx b/src/IconSpeed05Sharp.tsx index c78640d54..097c2b83a 100644 --- a/src/IconSpeed05Sharp.tsx +++ b/src/IconSpeed05Sharp.tsx @@ -8,4 +8,4 @@ const IconSpeed05Sharp: React.FC = ({ ...props }) => ( ) -export { IconSpeed05Sharp as default } +export default IconSpeed05Sharp diff --git a/src/IconSpeed05SharpFilled.tsx b/src/IconSpeed05SharpFilled.tsx index 97e417613..006d1d7ce 100644 --- a/src/IconSpeed05SharpFilled.tsx +++ b/src/IconSpeed05SharpFilled.tsx @@ -8,4 +8,4 @@ const IconSpeed05SharpFilled: React.FC = ({ ...props }) => ( ) -export { IconSpeed05SharpFilled as default } +export default IconSpeed05SharpFilled diff --git a/src/IconSpeed05xOutlined.tsx b/src/IconSpeed05xOutlined.tsx index 6d1138f19..8d0c4f0fc 100644 --- a/src/IconSpeed05xOutlined.tsx +++ b/src/IconSpeed05xOutlined.tsx @@ -8,4 +8,4 @@ const IconSpeed05xOutlined: React.FC = ({ ...props }) => ( ) -export { IconSpeed05xOutlined as default } +export default IconSpeed05xOutlined diff --git a/src/IconSpeed05xOutlinedFilled.tsx b/src/IconSpeed05xOutlinedFilled.tsx index f2e467d3b..e6734f993 100644 --- a/src/IconSpeed05xOutlinedFilled.tsx +++ b/src/IconSpeed05xOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconSpeed05xOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconSpeed05xOutlinedFilled as default } +export default IconSpeed05xOutlinedFilled diff --git a/src/IconSpeed05xRounded.tsx b/src/IconSpeed05xRounded.tsx index 01270bcd4..4b1eabf91 100644 --- a/src/IconSpeed05xRounded.tsx +++ b/src/IconSpeed05xRounded.tsx @@ -8,4 +8,4 @@ const IconSpeed05xRounded: React.FC = ({ ...props }) => ( ) -export { IconSpeed05xRounded as default } +export default IconSpeed05xRounded diff --git a/src/IconSpeed05xRoundedFilled.tsx b/src/IconSpeed05xRoundedFilled.tsx index 43313927b..72096a70b 100644 --- a/src/IconSpeed05xRoundedFilled.tsx +++ b/src/IconSpeed05xRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconSpeed05xRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconSpeed05xRoundedFilled as default } +export default IconSpeed05xRoundedFilled diff --git a/src/IconSpeed05xSharp.tsx b/src/IconSpeed05xSharp.tsx index 3f59c258d..a321ece4e 100644 --- a/src/IconSpeed05xSharp.tsx +++ b/src/IconSpeed05xSharp.tsx @@ -8,4 +8,4 @@ const IconSpeed05xSharp: React.FC = ({ ...props }) => ( ) -export { IconSpeed05xSharp as default } +export default IconSpeed05xSharp diff --git a/src/IconSpeed05xSharpFilled.tsx b/src/IconSpeed05xSharpFilled.tsx index 371634819..c10164fdc 100644 --- a/src/IconSpeed05xSharpFilled.tsx +++ b/src/IconSpeed05xSharpFilled.tsx @@ -8,4 +8,4 @@ const IconSpeed05xSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconSpeed05xSharpFilled as default } +export default IconSpeed05xSharpFilled diff --git a/src/IconSpeed075Outlined.tsx b/src/IconSpeed075Outlined.tsx index 19bd13cbe..0f5d5a6a6 100644 --- a/src/IconSpeed075Outlined.tsx +++ b/src/IconSpeed075Outlined.tsx @@ -8,4 +8,4 @@ const IconSpeed075Outlined: React.FC = ({ ...props }) => ( ) -export { IconSpeed075Outlined as default } +export default IconSpeed075Outlined diff --git a/src/IconSpeed075OutlinedFilled.tsx b/src/IconSpeed075OutlinedFilled.tsx index 28763c262..ad45f1bc9 100644 --- a/src/IconSpeed075OutlinedFilled.tsx +++ b/src/IconSpeed075OutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconSpeed075OutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconSpeed075OutlinedFilled as default } +export default IconSpeed075OutlinedFilled diff --git a/src/IconSpeed075Rounded.tsx b/src/IconSpeed075Rounded.tsx index 9dda7e119..fd7428459 100644 --- a/src/IconSpeed075Rounded.tsx +++ b/src/IconSpeed075Rounded.tsx @@ -8,4 +8,4 @@ const IconSpeed075Rounded: React.FC = ({ ...props }) => ( ) -export { IconSpeed075Rounded as default } +export default IconSpeed075Rounded diff --git a/src/IconSpeed075RoundedFilled.tsx b/src/IconSpeed075RoundedFilled.tsx index 4cd6b796b..6883da9d8 100644 --- a/src/IconSpeed075RoundedFilled.tsx +++ b/src/IconSpeed075RoundedFilled.tsx @@ -8,4 +8,4 @@ const IconSpeed075RoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconSpeed075RoundedFilled as default } +export default IconSpeed075RoundedFilled diff --git a/src/IconSpeed075Sharp.tsx b/src/IconSpeed075Sharp.tsx index eac31c15c..e7b7a41ea 100644 --- a/src/IconSpeed075Sharp.tsx +++ b/src/IconSpeed075Sharp.tsx @@ -8,4 +8,4 @@ const IconSpeed075Sharp: React.FC = ({ ...props }) => ( ) -export { IconSpeed075Sharp as default } +export default IconSpeed075Sharp diff --git a/src/IconSpeed075SharpFilled.tsx b/src/IconSpeed075SharpFilled.tsx index aee106a87..7ed55bd5f 100644 --- a/src/IconSpeed075SharpFilled.tsx +++ b/src/IconSpeed075SharpFilled.tsx @@ -8,4 +8,4 @@ const IconSpeed075SharpFilled: React.FC = ({ ...props }) => ( ) -export { IconSpeed075SharpFilled as default } +export default IconSpeed075SharpFilled diff --git a/src/IconSpeed07xOutlined.tsx b/src/IconSpeed07xOutlined.tsx index ec16877bf..ed1620df4 100644 --- a/src/IconSpeed07xOutlined.tsx +++ b/src/IconSpeed07xOutlined.tsx @@ -8,4 +8,4 @@ const IconSpeed07xOutlined: React.FC = ({ ...props }) => ( ) -export { IconSpeed07xOutlined as default } +export default IconSpeed07xOutlined diff --git a/src/IconSpeed07xOutlinedFilled.tsx b/src/IconSpeed07xOutlinedFilled.tsx index e14f8ee18..7cfec6ab0 100644 --- a/src/IconSpeed07xOutlinedFilled.tsx +++ b/src/IconSpeed07xOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconSpeed07xOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconSpeed07xOutlinedFilled as default } +export default IconSpeed07xOutlinedFilled diff --git a/src/IconSpeed07xRounded.tsx b/src/IconSpeed07xRounded.tsx index f474a767f..9182d69fc 100644 --- a/src/IconSpeed07xRounded.tsx +++ b/src/IconSpeed07xRounded.tsx @@ -8,4 +8,4 @@ const IconSpeed07xRounded: React.FC = ({ ...props }) => ( ) -export { IconSpeed07xRounded as default } +export default IconSpeed07xRounded diff --git a/src/IconSpeed07xRoundedFilled.tsx b/src/IconSpeed07xRoundedFilled.tsx index ba2a546e4..8d696bff5 100644 --- a/src/IconSpeed07xRoundedFilled.tsx +++ b/src/IconSpeed07xRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconSpeed07xRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconSpeed07xRoundedFilled as default } +export default IconSpeed07xRoundedFilled diff --git a/src/IconSpeed07xSharp.tsx b/src/IconSpeed07xSharp.tsx index f9b4d4356..599ecdced 100644 --- a/src/IconSpeed07xSharp.tsx +++ b/src/IconSpeed07xSharp.tsx @@ -8,4 +8,4 @@ const IconSpeed07xSharp: React.FC = ({ ...props }) => ( ) -export { IconSpeed07xSharp as default } +export default IconSpeed07xSharp diff --git a/src/IconSpeed07xSharpFilled.tsx b/src/IconSpeed07xSharpFilled.tsx index 79e6802e1..8784f3f9e 100644 --- a/src/IconSpeed07xSharpFilled.tsx +++ b/src/IconSpeed07xSharpFilled.tsx @@ -8,4 +8,4 @@ const IconSpeed07xSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconSpeed07xSharpFilled as default } +export default IconSpeed07xSharpFilled diff --git a/src/IconSpeed125Outlined.tsx b/src/IconSpeed125Outlined.tsx index f7972e848..590430cf9 100644 --- a/src/IconSpeed125Outlined.tsx +++ b/src/IconSpeed125Outlined.tsx @@ -8,4 +8,4 @@ const IconSpeed125Outlined: React.FC = ({ ...props }) => ( ) -export { IconSpeed125Outlined as default } +export default IconSpeed125Outlined diff --git a/src/IconSpeed125OutlinedFilled.tsx b/src/IconSpeed125OutlinedFilled.tsx index 7ba14497d..d7b3384f4 100644 --- a/src/IconSpeed125OutlinedFilled.tsx +++ b/src/IconSpeed125OutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconSpeed125OutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconSpeed125OutlinedFilled as default } +export default IconSpeed125OutlinedFilled diff --git a/src/IconSpeed125Rounded.tsx b/src/IconSpeed125Rounded.tsx index 975f61547..607d1df80 100644 --- a/src/IconSpeed125Rounded.tsx +++ b/src/IconSpeed125Rounded.tsx @@ -8,4 +8,4 @@ const IconSpeed125Rounded: React.FC = ({ ...props }) => ( ) -export { IconSpeed125Rounded as default } +export default IconSpeed125Rounded diff --git a/src/IconSpeed125RoundedFilled.tsx b/src/IconSpeed125RoundedFilled.tsx index 263911553..4cefd8799 100644 --- a/src/IconSpeed125RoundedFilled.tsx +++ b/src/IconSpeed125RoundedFilled.tsx @@ -8,4 +8,4 @@ const IconSpeed125RoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconSpeed125RoundedFilled as default } +export default IconSpeed125RoundedFilled diff --git a/src/IconSpeed125Sharp.tsx b/src/IconSpeed125Sharp.tsx index afc212ad6..c7652e234 100644 --- a/src/IconSpeed125Sharp.tsx +++ b/src/IconSpeed125Sharp.tsx @@ -8,4 +8,4 @@ const IconSpeed125Sharp: React.FC = ({ ...props }) => ( ) -export { IconSpeed125Sharp as default } +export default IconSpeed125Sharp diff --git a/src/IconSpeed125SharpFilled.tsx b/src/IconSpeed125SharpFilled.tsx index 8ea18b27a..a6be3eed3 100644 --- a/src/IconSpeed125SharpFilled.tsx +++ b/src/IconSpeed125SharpFilled.tsx @@ -8,4 +8,4 @@ const IconSpeed125SharpFilled: React.FC = ({ ...props }) => ( ) -export { IconSpeed125SharpFilled as default } +export default IconSpeed125SharpFilled diff --git a/src/IconSpeed12Outlined.tsx b/src/IconSpeed12Outlined.tsx index 7bdc9c374..301f7c353 100644 --- a/src/IconSpeed12Outlined.tsx +++ b/src/IconSpeed12Outlined.tsx @@ -8,4 +8,4 @@ const IconSpeed12Outlined: React.FC = ({ ...props }) => ( ) -export { IconSpeed12Outlined as default } +export default IconSpeed12Outlined diff --git a/src/IconSpeed12OutlinedFilled.tsx b/src/IconSpeed12OutlinedFilled.tsx index c35cb4565..cecc0f198 100644 --- a/src/IconSpeed12OutlinedFilled.tsx +++ b/src/IconSpeed12OutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconSpeed12OutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconSpeed12OutlinedFilled as default } +export default IconSpeed12OutlinedFilled diff --git a/src/IconSpeed12Rounded.tsx b/src/IconSpeed12Rounded.tsx index 4472ff179..087d9cbad 100644 --- a/src/IconSpeed12Rounded.tsx +++ b/src/IconSpeed12Rounded.tsx @@ -8,4 +8,4 @@ const IconSpeed12Rounded: React.FC = ({ ...props }) => ( ) -export { IconSpeed12Rounded as default } +export default IconSpeed12Rounded diff --git a/src/IconSpeed12RoundedFilled.tsx b/src/IconSpeed12RoundedFilled.tsx index 58c351a57..64b624462 100644 --- a/src/IconSpeed12RoundedFilled.tsx +++ b/src/IconSpeed12RoundedFilled.tsx @@ -8,4 +8,4 @@ const IconSpeed12RoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconSpeed12RoundedFilled as default } +export default IconSpeed12RoundedFilled diff --git a/src/IconSpeed12Sharp.tsx b/src/IconSpeed12Sharp.tsx index 689844e54..45fecc425 100644 --- a/src/IconSpeed12Sharp.tsx +++ b/src/IconSpeed12Sharp.tsx @@ -8,4 +8,4 @@ const IconSpeed12Sharp: React.FC = ({ ...props }) => ( ) -export { IconSpeed12Sharp as default } +export default IconSpeed12Sharp diff --git a/src/IconSpeed12SharpFilled.tsx b/src/IconSpeed12SharpFilled.tsx index ef9018180..462bdae88 100644 --- a/src/IconSpeed12SharpFilled.tsx +++ b/src/IconSpeed12SharpFilled.tsx @@ -8,4 +8,4 @@ const IconSpeed12SharpFilled: React.FC = ({ ...props }) => ( ) -export { IconSpeed12SharpFilled as default } +export default IconSpeed12SharpFilled diff --git a/src/IconSpeed12xOutlined.tsx b/src/IconSpeed12xOutlined.tsx index b3d9e0f23..ec763ef4f 100644 --- a/src/IconSpeed12xOutlined.tsx +++ b/src/IconSpeed12xOutlined.tsx @@ -8,4 +8,4 @@ const IconSpeed12xOutlined: React.FC = ({ ...props }) => ( ) -export { IconSpeed12xOutlined as default } +export default IconSpeed12xOutlined diff --git a/src/IconSpeed12xOutlinedFilled.tsx b/src/IconSpeed12xOutlinedFilled.tsx index 064094a89..4a2b3d4d0 100644 --- a/src/IconSpeed12xOutlinedFilled.tsx +++ b/src/IconSpeed12xOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconSpeed12xOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconSpeed12xOutlinedFilled as default } +export default IconSpeed12xOutlinedFilled diff --git a/src/IconSpeed12xRounded.tsx b/src/IconSpeed12xRounded.tsx index 90dcaafb3..6a9762cf9 100644 --- a/src/IconSpeed12xRounded.tsx +++ b/src/IconSpeed12xRounded.tsx @@ -8,4 +8,4 @@ const IconSpeed12xRounded: React.FC = ({ ...props }) => ( ) -export { IconSpeed12xRounded as default } +export default IconSpeed12xRounded diff --git a/src/IconSpeed12xRoundedFilled.tsx b/src/IconSpeed12xRoundedFilled.tsx index 323f8d46b..95a34a345 100644 --- a/src/IconSpeed12xRoundedFilled.tsx +++ b/src/IconSpeed12xRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconSpeed12xRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconSpeed12xRoundedFilled as default } +export default IconSpeed12xRoundedFilled diff --git a/src/IconSpeed12xSharp.tsx b/src/IconSpeed12xSharp.tsx index 5aba721a4..467ee8141 100644 --- a/src/IconSpeed12xSharp.tsx +++ b/src/IconSpeed12xSharp.tsx @@ -8,4 +8,4 @@ const IconSpeed12xSharp: React.FC = ({ ...props }) => ( ) -export { IconSpeed12xSharp as default } +export default IconSpeed12xSharp diff --git a/src/IconSpeed12xSharpFilled.tsx b/src/IconSpeed12xSharpFilled.tsx index 5196cc497..c1ed1285a 100644 --- a/src/IconSpeed12xSharpFilled.tsx +++ b/src/IconSpeed12xSharpFilled.tsx @@ -8,4 +8,4 @@ const IconSpeed12xSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconSpeed12xSharpFilled as default } +export default IconSpeed12xSharpFilled diff --git a/src/IconSpeed15Outlined.tsx b/src/IconSpeed15Outlined.tsx index 195fd2f1a..f81f471e4 100644 --- a/src/IconSpeed15Outlined.tsx +++ b/src/IconSpeed15Outlined.tsx @@ -8,4 +8,4 @@ const IconSpeed15Outlined: React.FC = ({ ...props }) => ( ) -export { IconSpeed15Outlined as default } +export default IconSpeed15Outlined diff --git a/src/IconSpeed15OutlinedFilled.tsx b/src/IconSpeed15OutlinedFilled.tsx index 8f7454fdb..f7999fe88 100644 --- a/src/IconSpeed15OutlinedFilled.tsx +++ b/src/IconSpeed15OutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconSpeed15OutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconSpeed15OutlinedFilled as default } +export default IconSpeed15OutlinedFilled diff --git a/src/IconSpeed15Rounded.tsx b/src/IconSpeed15Rounded.tsx index 8ef0c0d61..f257fabef 100644 --- a/src/IconSpeed15Rounded.tsx +++ b/src/IconSpeed15Rounded.tsx @@ -8,4 +8,4 @@ const IconSpeed15Rounded: React.FC = ({ ...props }) => ( ) -export { IconSpeed15Rounded as default } +export default IconSpeed15Rounded diff --git a/src/IconSpeed15RoundedFilled.tsx b/src/IconSpeed15RoundedFilled.tsx index d49aa6cd7..d49caef00 100644 --- a/src/IconSpeed15RoundedFilled.tsx +++ b/src/IconSpeed15RoundedFilled.tsx @@ -8,4 +8,4 @@ const IconSpeed15RoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconSpeed15RoundedFilled as default } +export default IconSpeed15RoundedFilled diff --git a/src/IconSpeed15Sharp.tsx b/src/IconSpeed15Sharp.tsx index 70f3f8307..840a83462 100644 --- a/src/IconSpeed15Sharp.tsx +++ b/src/IconSpeed15Sharp.tsx @@ -8,4 +8,4 @@ const IconSpeed15Sharp: React.FC = ({ ...props }) => ( ) -export { IconSpeed15Sharp as default } +export default IconSpeed15Sharp diff --git a/src/IconSpeed15SharpFilled.tsx b/src/IconSpeed15SharpFilled.tsx index ac85a1589..d0712d8c8 100644 --- a/src/IconSpeed15SharpFilled.tsx +++ b/src/IconSpeed15SharpFilled.tsx @@ -8,4 +8,4 @@ const IconSpeed15SharpFilled: React.FC = ({ ...props }) => ( ) -export { IconSpeed15SharpFilled as default } +export default IconSpeed15SharpFilled diff --git a/src/IconSpeed15xOutlined.tsx b/src/IconSpeed15xOutlined.tsx index c73caa95d..8d6e7a810 100644 --- a/src/IconSpeed15xOutlined.tsx +++ b/src/IconSpeed15xOutlined.tsx @@ -8,4 +8,4 @@ const IconSpeed15xOutlined: React.FC = ({ ...props }) => ( ) -export { IconSpeed15xOutlined as default } +export default IconSpeed15xOutlined diff --git a/src/IconSpeed15xOutlinedFilled.tsx b/src/IconSpeed15xOutlinedFilled.tsx index 98573338f..c2c95bb80 100644 --- a/src/IconSpeed15xOutlinedFilled.tsx +++ b/src/IconSpeed15xOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconSpeed15xOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconSpeed15xOutlinedFilled as default } +export default IconSpeed15xOutlinedFilled diff --git a/src/IconSpeed15xRounded.tsx b/src/IconSpeed15xRounded.tsx index 5a1f85a09..e78267d69 100644 --- a/src/IconSpeed15xRounded.tsx +++ b/src/IconSpeed15xRounded.tsx @@ -8,4 +8,4 @@ const IconSpeed15xRounded: React.FC = ({ ...props }) => ( ) -export { IconSpeed15xRounded as default } +export default IconSpeed15xRounded diff --git a/src/IconSpeed15xRoundedFilled.tsx b/src/IconSpeed15xRoundedFilled.tsx index 4a81aab47..5d9b79be7 100644 --- a/src/IconSpeed15xRoundedFilled.tsx +++ b/src/IconSpeed15xRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconSpeed15xRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconSpeed15xRoundedFilled as default } +export default IconSpeed15xRoundedFilled diff --git a/src/IconSpeed15xSharp.tsx b/src/IconSpeed15xSharp.tsx index be4c62716..116d2ee4a 100644 --- a/src/IconSpeed15xSharp.tsx +++ b/src/IconSpeed15xSharp.tsx @@ -8,4 +8,4 @@ const IconSpeed15xSharp: React.FC = ({ ...props }) => ( ) -export { IconSpeed15xSharp as default } +export default IconSpeed15xSharp diff --git a/src/IconSpeed15xSharpFilled.tsx b/src/IconSpeed15xSharpFilled.tsx index 505bf83e4..949e09f18 100644 --- a/src/IconSpeed15xSharpFilled.tsx +++ b/src/IconSpeed15xSharpFilled.tsx @@ -8,4 +8,4 @@ const IconSpeed15xSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconSpeed15xSharpFilled as default } +export default IconSpeed15xSharpFilled diff --git a/src/IconSpeed175Outlined.tsx b/src/IconSpeed175Outlined.tsx index 8f9f9cbad..cff429d22 100644 --- a/src/IconSpeed175Outlined.tsx +++ b/src/IconSpeed175Outlined.tsx @@ -8,4 +8,4 @@ const IconSpeed175Outlined: React.FC = ({ ...props }) => ( ) -export { IconSpeed175Outlined as default } +export default IconSpeed175Outlined diff --git a/src/IconSpeed175OutlinedFilled.tsx b/src/IconSpeed175OutlinedFilled.tsx index 9a35b10c9..ac9311cf2 100644 --- a/src/IconSpeed175OutlinedFilled.tsx +++ b/src/IconSpeed175OutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconSpeed175OutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconSpeed175OutlinedFilled as default } +export default IconSpeed175OutlinedFilled diff --git a/src/IconSpeed175Rounded.tsx b/src/IconSpeed175Rounded.tsx index cd8063ffc..d77beb107 100644 --- a/src/IconSpeed175Rounded.tsx +++ b/src/IconSpeed175Rounded.tsx @@ -8,4 +8,4 @@ const IconSpeed175Rounded: React.FC = ({ ...props }) => ( ) -export { IconSpeed175Rounded as default } +export default IconSpeed175Rounded diff --git a/src/IconSpeed175RoundedFilled.tsx b/src/IconSpeed175RoundedFilled.tsx index c4dffd1d4..7602a4678 100644 --- a/src/IconSpeed175RoundedFilled.tsx +++ b/src/IconSpeed175RoundedFilled.tsx @@ -8,4 +8,4 @@ const IconSpeed175RoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconSpeed175RoundedFilled as default } +export default IconSpeed175RoundedFilled diff --git a/src/IconSpeed175Sharp.tsx b/src/IconSpeed175Sharp.tsx index 38d8cadaf..660b2df57 100644 --- a/src/IconSpeed175Sharp.tsx +++ b/src/IconSpeed175Sharp.tsx @@ -8,4 +8,4 @@ const IconSpeed175Sharp: React.FC = ({ ...props }) => ( ) -export { IconSpeed175Sharp as default } +export default IconSpeed175Sharp diff --git a/src/IconSpeed175SharpFilled.tsx b/src/IconSpeed175SharpFilled.tsx index deb322cbf..828902fdf 100644 --- a/src/IconSpeed175SharpFilled.tsx +++ b/src/IconSpeed175SharpFilled.tsx @@ -8,4 +8,4 @@ const IconSpeed175SharpFilled: React.FC = ({ ...props }) => ( ) -export { IconSpeed175SharpFilled as default } +export default IconSpeed175SharpFilled diff --git a/src/IconSpeed17xOutlined.tsx b/src/IconSpeed17xOutlined.tsx index b9eeb98dd..da7cb33c4 100644 --- a/src/IconSpeed17xOutlined.tsx +++ b/src/IconSpeed17xOutlined.tsx @@ -8,4 +8,4 @@ const IconSpeed17xOutlined: React.FC = ({ ...props }) => ( ) -export { IconSpeed17xOutlined as default } +export default IconSpeed17xOutlined diff --git a/src/IconSpeed17xOutlinedFilled.tsx b/src/IconSpeed17xOutlinedFilled.tsx index dbad4e826..6836a0283 100644 --- a/src/IconSpeed17xOutlinedFilled.tsx +++ b/src/IconSpeed17xOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconSpeed17xOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconSpeed17xOutlinedFilled as default } +export default IconSpeed17xOutlinedFilled diff --git a/src/IconSpeed17xRounded.tsx b/src/IconSpeed17xRounded.tsx index eb3e819b3..9165aed44 100644 --- a/src/IconSpeed17xRounded.tsx +++ b/src/IconSpeed17xRounded.tsx @@ -8,4 +8,4 @@ const IconSpeed17xRounded: React.FC = ({ ...props }) => ( ) -export { IconSpeed17xRounded as default } +export default IconSpeed17xRounded diff --git a/src/IconSpeed17xRoundedFilled.tsx b/src/IconSpeed17xRoundedFilled.tsx index 0667f0e82..444746100 100644 --- a/src/IconSpeed17xRoundedFilled.tsx +++ b/src/IconSpeed17xRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconSpeed17xRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconSpeed17xRoundedFilled as default } +export default IconSpeed17xRoundedFilled diff --git a/src/IconSpeed17xSharp.tsx b/src/IconSpeed17xSharp.tsx index ddaf43265..f14116770 100644 --- a/src/IconSpeed17xSharp.tsx +++ b/src/IconSpeed17xSharp.tsx @@ -8,4 +8,4 @@ const IconSpeed17xSharp: React.FC = ({ ...props }) => ( ) -export { IconSpeed17xSharp as default } +export default IconSpeed17xSharp diff --git a/src/IconSpeed17xSharpFilled.tsx b/src/IconSpeed17xSharpFilled.tsx index 184daf728..dfa5851b7 100644 --- a/src/IconSpeed17xSharpFilled.tsx +++ b/src/IconSpeed17xSharpFilled.tsx @@ -8,4 +8,4 @@ const IconSpeed17xSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconSpeed17xSharpFilled as default } +export default IconSpeed17xSharpFilled diff --git a/src/IconSpeed2xOutlined.tsx b/src/IconSpeed2xOutlined.tsx index d599c990c..dfdfb42bc 100644 --- a/src/IconSpeed2xOutlined.tsx +++ b/src/IconSpeed2xOutlined.tsx @@ -8,4 +8,4 @@ const IconSpeed2xOutlined: React.FC = ({ ...props }) => ( ) -export { IconSpeed2xOutlined as default } +export default IconSpeed2xOutlined diff --git a/src/IconSpeed2xOutlinedFilled.tsx b/src/IconSpeed2xOutlinedFilled.tsx index 3889c64e9..516104314 100644 --- a/src/IconSpeed2xOutlinedFilled.tsx +++ b/src/IconSpeed2xOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconSpeed2xOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconSpeed2xOutlinedFilled as default } +export default IconSpeed2xOutlinedFilled diff --git a/src/IconSpeed2xRounded.tsx b/src/IconSpeed2xRounded.tsx index 5c3e42aba..316626fa7 100644 --- a/src/IconSpeed2xRounded.tsx +++ b/src/IconSpeed2xRounded.tsx @@ -8,4 +8,4 @@ const IconSpeed2xRounded: React.FC = ({ ...props }) => ( ) -export { IconSpeed2xRounded as default } +export default IconSpeed2xRounded diff --git a/src/IconSpeed2xRoundedFilled.tsx b/src/IconSpeed2xRoundedFilled.tsx index a8aeddc6b..00d370e38 100644 --- a/src/IconSpeed2xRoundedFilled.tsx +++ b/src/IconSpeed2xRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconSpeed2xRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconSpeed2xRoundedFilled as default } +export default IconSpeed2xRoundedFilled diff --git a/src/IconSpeed2xSharp.tsx b/src/IconSpeed2xSharp.tsx index 55feef866..3149a5f84 100644 --- a/src/IconSpeed2xSharp.tsx +++ b/src/IconSpeed2xSharp.tsx @@ -8,4 +8,4 @@ const IconSpeed2xSharp: React.FC = ({ ...props }) => ( ) -export { IconSpeed2xSharp as default } +export default IconSpeed2xSharp diff --git a/src/IconSpeed2xSharpFilled.tsx b/src/IconSpeed2xSharpFilled.tsx index 850e36a73..e98116e16 100644 --- a/src/IconSpeed2xSharpFilled.tsx +++ b/src/IconSpeed2xSharpFilled.tsx @@ -8,4 +8,4 @@ const IconSpeed2xSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconSpeed2xSharpFilled as default } +export default IconSpeed2xSharpFilled diff --git a/src/IconSpeedCameraOutlined.tsx b/src/IconSpeedCameraOutlined.tsx index c4d7f3adc..f23654cd6 100644 --- a/src/IconSpeedCameraOutlined.tsx +++ b/src/IconSpeedCameraOutlined.tsx @@ -8,4 +8,4 @@ const IconSpeedCameraOutlined: React.FC = ({ ...props }) => ( ) -export { IconSpeedCameraOutlined as default } +export default IconSpeedCameraOutlined diff --git a/src/IconSpeedCameraOutlinedFilled.tsx b/src/IconSpeedCameraOutlinedFilled.tsx index 29a7ae6c6..266a3b141 100644 --- a/src/IconSpeedCameraOutlinedFilled.tsx +++ b/src/IconSpeedCameraOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconSpeedCameraOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconSpeedCameraOutlinedFilled as default } +export default IconSpeedCameraOutlinedFilled diff --git a/src/IconSpeedCameraRounded.tsx b/src/IconSpeedCameraRounded.tsx index e28af3bb9..b634d3c2b 100644 --- a/src/IconSpeedCameraRounded.tsx +++ b/src/IconSpeedCameraRounded.tsx @@ -8,4 +8,4 @@ const IconSpeedCameraRounded: React.FC = ({ ...props }) => ( ) -export { IconSpeedCameraRounded as default } +export default IconSpeedCameraRounded diff --git a/src/IconSpeedCameraRoundedFilled.tsx b/src/IconSpeedCameraRoundedFilled.tsx index 9197ad75a..6fbb8f4ae 100644 --- a/src/IconSpeedCameraRoundedFilled.tsx +++ b/src/IconSpeedCameraRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconSpeedCameraRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconSpeedCameraRoundedFilled as default } +export default IconSpeedCameraRoundedFilled diff --git a/src/IconSpeedCameraSharp.tsx b/src/IconSpeedCameraSharp.tsx index 649be2732..bbc8f7297 100644 --- a/src/IconSpeedCameraSharp.tsx +++ b/src/IconSpeedCameraSharp.tsx @@ -8,4 +8,4 @@ const IconSpeedCameraSharp: React.FC = ({ ...props }) => ( ) -export { IconSpeedCameraSharp as default } +export default IconSpeedCameraSharp diff --git a/src/IconSpeedCameraSharpFilled.tsx b/src/IconSpeedCameraSharpFilled.tsx index 836aeab20..dc98c3408 100644 --- a/src/IconSpeedCameraSharpFilled.tsx +++ b/src/IconSpeedCameraSharpFilled.tsx @@ -8,4 +8,4 @@ const IconSpeedCameraSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconSpeedCameraSharpFilled as default } +export default IconSpeedCameraSharpFilled diff --git a/src/IconSpeedOutlined.tsx b/src/IconSpeedOutlined.tsx index cb98625fb..40641a802 100644 --- a/src/IconSpeedOutlined.tsx +++ b/src/IconSpeedOutlined.tsx @@ -8,4 +8,4 @@ const IconSpeedOutlined: React.FC = ({ ...props }) => ( ) -export { IconSpeedOutlined as default } +export default IconSpeedOutlined diff --git a/src/IconSpeedOutlinedFilled.tsx b/src/IconSpeedOutlinedFilled.tsx index 2f72b7cae..f72cce1dd 100644 --- a/src/IconSpeedOutlinedFilled.tsx +++ b/src/IconSpeedOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconSpeedOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconSpeedOutlinedFilled as default } +export default IconSpeedOutlinedFilled diff --git a/src/IconSpeedRounded.tsx b/src/IconSpeedRounded.tsx index 71183ac08..5253272a7 100644 --- a/src/IconSpeedRounded.tsx +++ b/src/IconSpeedRounded.tsx @@ -8,4 +8,4 @@ const IconSpeedRounded: React.FC = ({ ...props }) => ( ) -export { IconSpeedRounded as default } +export default IconSpeedRounded diff --git a/src/IconSpeedRoundedFilled.tsx b/src/IconSpeedRoundedFilled.tsx index 7acdbe443..934bdb761 100644 --- a/src/IconSpeedRoundedFilled.tsx +++ b/src/IconSpeedRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconSpeedRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconSpeedRoundedFilled as default } +export default IconSpeedRoundedFilled diff --git a/src/IconSpeedSharp.tsx b/src/IconSpeedSharp.tsx index 55942c9c0..e71dd4ff5 100644 --- a/src/IconSpeedSharp.tsx +++ b/src/IconSpeedSharp.tsx @@ -8,4 +8,4 @@ const IconSpeedSharp: React.FC = ({ ...props }) => ( ) -export { IconSpeedSharp as default } +export default IconSpeedSharp diff --git a/src/IconSpeedSharpFilled.tsx b/src/IconSpeedSharpFilled.tsx index f22340984..a94f37e53 100644 --- a/src/IconSpeedSharpFilled.tsx +++ b/src/IconSpeedSharpFilled.tsx @@ -8,4 +8,4 @@ const IconSpeedSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconSpeedSharpFilled as default } +export default IconSpeedSharpFilled diff --git a/src/IconSpellcheckOutlined.tsx b/src/IconSpellcheckOutlined.tsx index e51bbc77a..bbba4d9b5 100644 --- a/src/IconSpellcheckOutlined.tsx +++ b/src/IconSpellcheckOutlined.tsx @@ -8,4 +8,4 @@ const IconSpellcheckOutlined: React.FC = ({ ...props }) => ( ) -export { IconSpellcheckOutlined as default } +export default IconSpellcheckOutlined diff --git a/src/IconSpellcheckOutlinedFilled.tsx b/src/IconSpellcheckOutlinedFilled.tsx index 2987d60a1..ba7f6d414 100644 --- a/src/IconSpellcheckOutlinedFilled.tsx +++ b/src/IconSpellcheckOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconSpellcheckOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconSpellcheckOutlinedFilled as default } +export default IconSpellcheckOutlinedFilled diff --git a/src/IconSpellcheckRounded.tsx b/src/IconSpellcheckRounded.tsx index da95f2d3f..8f19532b0 100644 --- a/src/IconSpellcheckRounded.tsx +++ b/src/IconSpellcheckRounded.tsx @@ -8,4 +8,4 @@ const IconSpellcheckRounded: React.FC = ({ ...props }) => ( ) -export { IconSpellcheckRounded as default } +export default IconSpellcheckRounded diff --git a/src/IconSpellcheckRoundedFilled.tsx b/src/IconSpellcheckRoundedFilled.tsx index 02afcc99b..f960c85b3 100644 --- a/src/IconSpellcheckRoundedFilled.tsx +++ b/src/IconSpellcheckRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconSpellcheckRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconSpellcheckRoundedFilled as default } +export default IconSpellcheckRoundedFilled diff --git a/src/IconSpellcheckSharp.tsx b/src/IconSpellcheckSharp.tsx index 911f8a4c2..73f210b43 100644 --- a/src/IconSpellcheckSharp.tsx +++ b/src/IconSpellcheckSharp.tsx @@ -8,4 +8,4 @@ const IconSpellcheckSharp: React.FC = ({ ...props }) => ( ) -export { IconSpellcheckSharp as default } +export default IconSpellcheckSharp diff --git a/src/IconSpellcheckSharpFilled.tsx b/src/IconSpellcheckSharpFilled.tsx index e03172b76..4976aea54 100644 --- a/src/IconSpellcheckSharpFilled.tsx +++ b/src/IconSpellcheckSharpFilled.tsx @@ -8,4 +8,4 @@ const IconSpellcheckSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconSpellcheckSharpFilled as default } +export default IconSpellcheckSharpFilled diff --git a/src/IconSplitscreenAddOutlined.tsx b/src/IconSplitscreenAddOutlined.tsx index 4e830feae..297f3e92d 100644 --- a/src/IconSplitscreenAddOutlined.tsx +++ b/src/IconSplitscreenAddOutlined.tsx @@ -8,4 +8,4 @@ const IconSplitscreenAddOutlined: React.FC = ({ ...props }) => ( ) -export { IconSplitscreenAddOutlined as default } +export default IconSplitscreenAddOutlined diff --git a/src/IconSplitscreenAddOutlinedFilled.tsx b/src/IconSplitscreenAddOutlinedFilled.tsx index df0a27636..fb9154bf0 100644 --- a/src/IconSplitscreenAddOutlinedFilled.tsx +++ b/src/IconSplitscreenAddOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconSplitscreenAddOutlinedFilled: React.FC = ({ ) -export { IconSplitscreenAddOutlinedFilled as default } +export default IconSplitscreenAddOutlinedFilled diff --git a/src/IconSplitscreenAddRounded.tsx b/src/IconSplitscreenAddRounded.tsx index d588d7c19..61063f6e8 100644 --- a/src/IconSplitscreenAddRounded.tsx +++ b/src/IconSplitscreenAddRounded.tsx @@ -8,4 +8,4 @@ const IconSplitscreenAddRounded: React.FC = ({ ...props }) => ( ) -export { IconSplitscreenAddRounded as default } +export default IconSplitscreenAddRounded diff --git a/src/IconSplitscreenAddRoundedFilled.tsx b/src/IconSplitscreenAddRoundedFilled.tsx index 389fbce4f..2e53bfe75 100644 --- a/src/IconSplitscreenAddRoundedFilled.tsx +++ b/src/IconSplitscreenAddRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconSplitscreenAddRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconSplitscreenAddRoundedFilled as default } +export default IconSplitscreenAddRoundedFilled diff --git a/src/IconSplitscreenAddSharp.tsx b/src/IconSplitscreenAddSharp.tsx index 4b71895b5..b692526d0 100644 --- a/src/IconSplitscreenAddSharp.tsx +++ b/src/IconSplitscreenAddSharp.tsx @@ -8,4 +8,4 @@ const IconSplitscreenAddSharp: React.FC = ({ ...props }) => ( ) -export { IconSplitscreenAddSharp as default } +export default IconSplitscreenAddSharp diff --git a/src/IconSplitscreenAddSharpFilled.tsx b/src/IconSplitscreenAddSharpFilled.tsx index 8e428f41d..3b026fd5b 100644 --- a/src/IconSplitscreenAddSharpFilled.tsx +++ b/src/IconSplitscreenAddSharpFilled.tsx @@ -8,4 +8,4 @@ const IconSplitscreenAddSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconSplitscreenAddSharpFilled as default } +export default IconSplitscreenAddSharpFilled diff --git a/src/IconSplitscreenBottomOutlined.tsx b/src/IconSplitscreenBottomOutlined.tsx index 5c9b21a25..7df7c3680 100644 --- a/src/IconSplitscreenBottomOutlined.tsx +++ b/src/IconSplitscreenBottomOutlined.tsx @@ -8,4 +8,4 @@ const IconSplitscreenBottomOutlined: React.FC = ({ ...props }) => ( ) -export { IconSplitscreenBottomOutlined as default } +export default IconSplitscreenBottomOutlined diff --git a/src/IconSplitscreenBottomOutlinedFilled.tsx b/src/IconSplitscreenBottomOutlinedFilled.tsx index 57e24ddb0..eb7758dcf 100644 --- a/src/IconSplitscreenBottomOutlinedFilled.tsx +++ b/src/IconSplitscreenBottomOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconSplitscreenBottomOutlinedFilled: React.FC = ({ ) -export { IconSplitscreenBottomOutlinedFilled as default } +export default IconSplitscreenBottomOutlinedFilled diff --git a/src/IconSplitscreenBottomRounded.tsx b/src/IconSplitscreenBottomRounded.tsx index 9c322dd05..f6669a28d 100644 --- a/src/IconSplitscreenBottomRounded.tsx +++ b/src/IconSplitscreenBottomRounded.tsx @@ -8,4 +8,4 @@ const IconSplitscreenBottomRounded: React.FC = ({ ...props }) => ( ) -export { IconSplitscreenBottomRounded as default } +export default IconSplitscreenBottomRounded diff --git a/src/IconSplitscreenBottomRoundedFilled.tsx b/src/IconSplitscreenBottomRoundedFilled.tsx index 0dc8b4cde..e35a2eaad 100644 --- a/src/IconSplitscreenBottomRoundedFilled.tsx +++ b/src/IconSplitscreenBottomRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconSplitscreenBottomRoundedFilled: React.FC = ({ ) -export { IconSplitscreenBottomRoundedFilled as default } +export default IconSplitscreenBottomRoundedFilled diff --git a/src/IconSplitscreenBottomSharp.tsx b/src/IconSplitscreenBottomSharp.tsx index f0950e7fd..6f24d9962 100644 --- a/src/IconSplitscreenBottomSharp.tsx +++ b/src/IconSplitscreenBottomSharp.tsx @@ -8,4 +8,4 @@ const IconSplitscreenBottomSharp: React.FC = ({ ...props }) => ( ) -export { IconSplitscreenBottomSharp as default } +export default IconSplitscreenBottomSharp diff --git a/src/IconSplitscreenBottomSharpFilled.tsx b/src/IconSplitscreenBottomSharpFilled.tsx index c961ca0f8..00a86b4e7 100644 --- a/src/IconSplitscreenBottomSharpFilled.tsx +++ b/src/IconSplitscreenBottomSharpFilled.tsx @@ -10,4 +10,4 @@ const IconSplitscreenBottomSharpFilled: React.FC = ({ ) -export { IconSplitscreenBottomSharpFilled as default } +export default IconSplitscreenBottomSharpFilled diff --git a/src/IconSplitscreenLandscapeOutlined.tsx b/src/IconSplitscreenLandscapeOutlined.tsx index a0c7e2f14..2c6a07880 100644 --- a/src/IconSplitscreenLandscapeOutlined.tsx +++ b/src/IconSplitscreenLandscapeOutlined.tsx @@ -10,4 +10,4 @@ const IconSplitscreenLandscapeOutlined: React.FC = ({ ) -export { IconSplitscreenLandscapeOutlined as default } +export default IconSplitscreenLandscapeOutlined diff --git a/src/IconSplitscreenLandscapeOutlinedFilled.tsx b/src/IconSplitscreenLandscapeOutlinedFilled.tsx index a53bec1d1..881db972d 100644 --- a/src/IconSplitscreenLandscapeOutlinedFilled.tsx +++ b/src/IconSplitscreenLandscapeOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconSplitscreenLandscapeOutlinedFilled: React.FC = ({ ) -export { IconSplitscreenLandscapeOutlinedFilled as default } +export default IconSplitscreenLandscapeOutlinedFilled diff --git a/src/IconSplitscreenLandscapeRounded.tsx b/src/IconSplitscreenLandscapeRounded.tsx index c1782ad3f..ede685e76 100644 --- a/src/IconSplitscreenLandscapeRounded.tsx +++ b/src/IconSplitscreenLandscapeRounded.tsx @@ -8,4 +8,4 @@ const IconSplitscreenLandscapeRounded: React.FC = ({ ...props }) => ( ) -export { IconSplitscreenLandscapeRounded as default } +export default IconSplitscreenLandscapeRounded diff --git a/src/IconSplitscreenLandscapeRoundedFilled.tsx b/src/IconSplitscreenLandscapeRoundedFilled.tsx index 2a1d589d4..baa94d555 100644 --- a/src/IconSplitscreenLandscapeRoundedFilled.tsx +++ b/src/IconSplitscreenLandscapeRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconSplitscreenLandscapeRoundedFilled: React.FC = ({ ) -export { IconSplitscreenLandscapeRoundedFilled as default } +export default IconSplitscreenLandscapeRoundedFilled diff --git a/src/IconSplitscreenLandscapeSharp.tsx b/src/IconSplitscreenLandscapeSharp.tsx index f09c1ad1e..333496769 100644 --- a/src/IconSplitscreenLandscapeSharp.tsx +++ b/src/IconSplitscreenLandscapeSharp.tsx @@ -8,4 +8,4 @@ const IconSplitscreenLandscapeSharp: React.FC = ({ ...props }) => ( ) -export { IconSplitscreenLandscapeSharp as default } +export default IconSplitscreenLandscapeSharp diff --git a/src/IconSplitscreenLandscapeSharpFilled.tsx b/src/IconSplitscreenLandscapeSharpFilled.tsx index 004165ebe..1c137e003 100644 --- a/src/IconSplitscreenLandscapeSharpFilled.tsx +++ b/src/IconSplitscreenLandscapeSharpFilled.tsx @@ -10,4 +10,4 @@ const IconSplitscreenLandscapeSharpFilled: React.FC = ({ ) -export { IconSplitscreenLandscapeSharpFilled as default } +export default IconSplitscreenLandscapeSharpFilled diff --git a/src/IconSplitscreenLeftOutlined.tsx b/src/IconSplitscreenLeftOutlined.tsx index 4ce03f408..38e43b43b 100644 --- a/src/IconSplitscreenLeftOutlined.tsx +++ b/src/IconSplitscreenLeftOutlined.tsx @@ -8,4 +8,4 @@ const IconSplitscreenLeftOutlined: React.FC = ({ ...props }) => ( ) -export { IconSplitscreenLeftOutlined as default } +export default IconSplitscreenLeftOutlined diff --git a/src/IconSplitscreenLeftOutlinedFilled.tsx b/src/IconSplitscreenLeftOutlinedFilled.tsx index f761e2d00..da03f7c6e 100644 --- a/src/IconSplitscreenLeftOutlinedFilled.tsx +++ b/src/IconSplitscreenLeftOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconSplitscreenLeftOutlinedFilled: React.FC = ({ ) -export { IconSplitscreenLeftOutlinedFilled as default } +export default IconSplitscreenLeftOutlinedFilled diff --git a/src/IconSplitscreenLeftRounded.tsx b/src/IconSplitscreenLeftRounded.tsx index 3111efb05..567bb8a0a 100644 --- a/src/IconSplitscreenLeftRounded.tsx +++ b/src/IconSplitscreenLeftRounded.tsx @@ -8,4 +8,4 @@ const IconSplitscreenLeftRounded: React.FC = ({ ...props }) => ( ) -export { IconSplitscreenLeftRounded as default } +export default IconSplitscreenLeftRounded diff --git a/src/IconSplitscreenLeftRoundedFilled.tsx b/src/IconSplitscreenLeftRoundedFilled.tsx index 6cc1896b0..d14e98060 100644 --- a/src/IconSplitscreenLeftRoundedFilled.tsx +++ b/src/IconSplitscreenLeftRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconSplitscreenLeftRoundedFilled: React.FC = ({ ) -export { IconSplitscreenLeftRoundedFilled as default } +export default IconSplitscreenLeftRoundedFilled diff --git a/src/IconSplitscreenLeftSharp.tsx b/src/IconSplitscreenLeftSharp.tsx index a36154b27..94df4f0a9 100644 --- a/src/IconSplitscreenLeftSharp.tsx +++ b/src/IconSplitscreenLeftSharp.tsx @@ -8,4 +8,4 @@ const IconSplitscreenLeftSharp: React.FC = ({ ...props }) => ( ) -export { IconSplitscreenLeftSharp as default } +export default IconSplitscreenLeftSharp diff --git a/src/IconSplitscreenLeftSharpFilled.tsx b/src/IconSplitscreenLeftSharpFilled.tsx index 9e0601626..3cdbd092e 100644 --- a/src/IconSplitscreenLeftSharpFilled.tsx +++ b/src/IconSplitscreenLeftSharpFilled.tsx @@ -8,4 +8,4 @@ const IconSplitscreenLeftSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconSplitscreenLeftSharpFilled as default } +export default IconSplitscreenLeftSharpFilled diff --git a/src/IconSplitscreenOutlined.tsx b/src/IconSplitscreenOutlined.tsx index d6a2010e6..098a91d0e 100644 --- a/src/IconSplitscreenOutlined.tsx +++ b/src/IconSplitscreenOutlined.tsx @@ -8,4 +8,4 @@ const IconSplitscreenOutlined: React.FC = ({ ...props }) => ( ) -export { IconSplitscreenOutlined as default } +export default IconSplitscreenOutlined diff --git a/src/IconSplitscreenOutlinedFilled.tsx b/src/IconSplitscreenOutlinedFilled.tsx index 679cae12d..2d2edc5b0 100644 --- a/src/IconSplitscreenOutlinedFilled.tsx +++ b/src/IconSplitscreenOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconSplitscreenOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconSplitscreenOutlinedFilled as default } +export default IconSplitscreenOutlinedFilled diff --git a/src/IconSplitscreenPortraitOutlined.tsx b/src/IconSplitscreenPortraitOutlined.tsx index 76250d1d9..efacb4d66 100644 --- a/src/IconSplitscreenPortraitOutlined.tsx +++ b/src/IconSplitscreenPortraitOutlined.tsx @@ -8,4 +8,4 @@ const IconSplitscreenPortraitOutlined: React.FC = ({ ...props }) => ( ) -export { IconSplitscreenPortraitOutlined as default } +export default IconSplitscreenPortraitOutlined diff --git a/src/IconSplitscreenPortraitOutlinedFilled.tsx b/src/IconSplitscreenPortraitOutlinedFilled.tsx index 621d4ed70..63c0072b8 100644 --- a/src/IconSplitscreenPortraitOutlinedFilled.tsx +++ b/src/IconSplitscreenPortraitOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconSplitscreenPortraitOutlinedFilled: React.FC = ({ ) -export { IconSplitscreenPortraitOutlinedFilled as default } +export default IconSplitscreenPortraitOutlinedFilled diff --git a/src/IconSplitscreenPortraitRounded.tsx b/src/IconSplitscreenPortraitRounded.tsx index 2e3e1ebfe..2be3c4339 100644 --- a/src/IconSplitscreenPortraitRounded.tsx +++ b/src/IconSplitscreenPortraitRounded.tsx @@ -8,4 +8,4 @@ const IconSplitscreenPortraitRounded: React.FC = ({ ...props }) => ( ) -export { IconSplitscreenPortraitRounded as default } +export default IconSplitscreenPortraitRounded diff --git a/src/IconSplitscreenPortraitRoundedFilled.tsx b/src/IconSplitscreenPortraitRoundedFilled.tsx index 7ca74c53c..f7fbcc5bf 100644 --- a/src/IconSplitscreenPortraitRoundedFilled.tsx +++ b/src/IconSplitscreenPortraitRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconSplitscreenPortraitRoundedFilled: React.FC = ({ ) -export { IconSplitscreenPortraitRoundedFilled as default } +export default IconSplitscreenPortraitRoundedFilled diff --git a/src/IconSplitscreenPortraitSharp.tsx b/src/IconSplitscreenPortraitSharp.tsx index 8fa6d7235..81e6e69f7 100644 --- a/src/IconSplitscreenPortraitSharp.tsx +++ b/src/IconSplitscreenPortraitSharp.tsx @@ -8,4 +8,4 @@ const IconSplitscreenPortraitSharp: React.FC = ({ ...props }) => ( ) -export { IconSplitscreenPortraitSharp as default } +export default IconSplitscreenPortraitSharp diff --git a/src/IconSplitscreenPortraitSharpFilled.tsx b/src/IconSplitscreenPortraitSharpFilled.tsx index ffafdfb3f..aa75377be 100644 --- a/src/IconSplitscreenPortraitSharpFilled.tsx +++ b/src/IconSplitscreenPortraitSharpFilled.tsx @@ -10,4 +10,4 @@ const IconSplitscreenPortraitSharpFilled: React.FC = ({ ) -export { IconSplitscreenPortraitSharpFilled as default } +export default IconSplitscreenPortraitSharpFilled diff --git a/src/IconSplitscreenRightOutlined.tsx b/src/IconSplitscreenRightOutlined.tsx index 0763b1713..11f876073 100644 --- a/src/IconSplitscreenRightOutlined.tsx +++ b/src/IconSplitscreenRightOutlined.tsx @@ -8,4 +8,4 @@ const IconSplitscreenRightOutlined: React.FC = ({ ...props }) => ( ) -export { IconSplitscreenRightOutlined as default } +export default IconSplitscreenRightOutlined diff --git a/src/IconSplitscreenRightOutlinedFilled.tsx b/src/IconSplitscreenRightOutlinedFilled.tsx index 0d82f4ac1..79c36df59 100644 --- a/src/IconSplitscreenRightOutlinedFilled.tsx +++ b/src/IconSplitscreenRightOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconSplitscreenRightOutlinedFilled: React.FC = ({ ) -export { IconSplitscreenRightOutlinedFilled as default } +export default IconSplitscreenRightOutlinedFilled diff --git a/src/IconSplitscreenRightRounded.tsx b/src/IconSplitscreenRightRounded.tsx index adeba9d7d..7fc1b97ac 100644 --- a/src/IconSplitscreenRightRounded.tsx +++ b/src/IconSplitscreenRightRounded.tsx @@ -8,4 +8,4 @@ const IconSplitscreenRightRounded: React.FC = ({ ...props }) => ( ) -export { IconSplitscreenRightRounded as default } +export default IconSplitscreenRightRounded diff --git a/src/IconSplitscreenRightRoundedFilled.tsx b/src/IconSplitscreenRightRoundedFilled.tsx index 09cd81b64..17af5ec83 100644 --- a/src/IconSplitscreenRightRoundedFilled.tsx +++ b/src/IconSplitscreenRightRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconSplitscreenRightRoundedFilled: React.FC = ({ ) -export { IconSplitscreenRightRoundedFilled as default } +export default IconSplitscreenRightRoundedFilled diff --git a/src/IconSplitscreenRightSharp.tsx b/src/IconSplitscreenRightSharp.tsx index bc637c214..66fb6dcd0 100644 --- a/src/IconSplitscreenRightSharp.tsx +++ b/src/IconSplitscreenRightSharp.tsx @@ -8,4 +8,4 @@ const IconSplitscreenRightSharp: React.FC = ({ ...props }) => ( ) -export { IconSplitscreenRightSharp as default } +export default IconSplitscreenRightSharp diff --git a/src/IconSplitscreenRightSharpFilled.tsx b/src/IconSplitscreenRightSharpFilled.tsx index 5f461f17c..69e59f1e4 100644 --- a/src/IconSplitscreenRightSharpFilled.tsx +++ b/src/IconSplitscreenRightSharpFilled.tsx @@ -8,4 +8,4 @@ const IconSplitscreenRightSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconSplitscreenRightSharpFilled as default } +export default IconSplitscreenRightSharpFilled diff --git a/src/IconSplitscreenRounded.tsx b/src/IconSplitscreenRounded.tsx index 55ecd307a..9e86d136f 100644 --- a/src/IconSplitscreenRounded.tsx +++ b/src/IconSplitscreenRounded.tsx @@ -8,4 +8,4 @@ const IconSplitscreenRounded: React.FC = ({ ...props }) => ( ) -export { IconSplitscreenRounded as default } +export default IconSplitscreenRounded diff --git a/src/IconSplitscreenRoundedFilled.tsx b/src/IconSplitscreenRoundedFilled.tsx index 079b680ae..767bd8d59 100644 --- a/src/IconSplitscreenRoundedFilled.tsx +++ b/src/IconSplitscreenRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconSplitscreenRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconSplitscreenRoundedFilled as default } +export default IconSplitscreenRoundedFilled diff --git a/src/IconSplitscreenSharp.tsx b/src/IconSplitscreenSharp.tsx index f4ebe5377..3e32acdb6 100644 --- a/src/IconSplitscreenSharp.tsx +++ b/src/IconSplitscreenSharp.tsx @@ -8,4 +8,4 @@ const IconSplitscreenSharp: React.FC = ({ ...props }) => ( ) -export { IconSplitscreenSharp as default } +export default IconSplitscreenSharp diff --git a/src/IconSplitscreenSharpFilled.tsx b/src/IconSplitscreenSharpFilled.tsx index 0064e2533..8645fd9ef 100644 --- a/src/IconSplitscreenSharpFilled.tsx +++ b/src/IconSplitscreenSharpFilled.tsx @@ -8,4 +8,4 @@ const IconSplitscreenSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconSplitscreenSharpFilled as default } +export default IconSplitscreenSharpFilled diff --git a/src/IconSplitscreenTopOutlined.tsx b/src/IconSplitscreenTopOutlined.tsx index 73fe08580..89219e299 100644 --- a/src/IconSplitscreenTopOutlined.tsx +++ b/src/IconSplitscreenTopOutlined.tsx @@ -8,4 +8,4 @@ const IconSplitscreenTopOutlined: React.FC = ({ ...props }) => ( ) -export { IconSplitscreenTopOutlined as default } +export default IconSplitscreenTopOutlined diff --git a/src/IconSplitscreenTopOutlinedFilled.tsx b/src/IconSplitscreenTopOutlinedFilled.tsx index 384b4c3a3..dc99ac270 100644 --- a/src/IconSplitscreenTopOutlinedFilled.tsx +++ b/src/IconSplitscreenTopOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconSplitscreenTopOutlinedFilled: React.FC = ({ ) -export { IconSplitscreenTopOutlinedFilled as default } +export default IconSplitscreenTopOutlinedFilled diff --git a/src/IconSplitscreenTopRounded.tsx b/src/IconSplitscreenTopRounded.tsx index 166927574..bf8f44d4a 100644 --- a/src/IconSplitscreenTopRounded.tsx +++ b/src/IconSplitscreenTopRounded.tsx @@ -8,4 +8,4 @@ const IconSplitscreenTopRounded: React.FC = ({ ...props }) => ( ) -export { IconSplitscreenTopRounded as default } +export default IconSplitscreenTopRounded diff --git a/src/IconSplitscreenTopRoundedFilled.tsx b/src/IconSplitscreenTopRoundedFilled.tsx index 723bb2f35..ca4008295 100644 --- a/src/IconSplitscreenTopRoundedFilled.tsx +++ b/src/IconSplitscreenTopRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconSplitscreenTopRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconSplitscreenTopRoundedFilled as default } +export default IconSplitscreenTopRoundedFilled diff --git a/src/IconSplitscreenTopSharp.tsx b/src/IconSplitscreenTopSharp.tsx index 3fa3617ef..2ad0486f9 100644 --- a/src/IconSplitscreenTopSharp.tsx +++ b/src/IconSplitscreenTopSharp.tsx @@ -8,4 +8,4 @@ const IconSplitscreenTopSharp: React.FC = ({ ...props }) => ( ) -export { IconSplitscreenTopSharp as default } +export default IconSplitscreenTopSharp diff --git a/src/IconSplitscreenTopSharpFilled.tsx b/src/IconSplitscreenTopSharpFilled.tsx index 3f309a3a1..1d573a9ce 100644 --- a/src/IconSplitscreenTopSharpFilled.tsx +++ b/src/IconSplitscreenTopSharpFilled.tsx @@ -8,4 +8,4 @@ const IconSplitscreenTopSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconSplitscreenTopSharpFilled as default } +export default IconSplitscreenTopSharpFilled diff --git a/src/IconSplitscreenVerticalAddOutlined.tsx b/src/IconSplitscreenVerticalAddOutlined.tsx index c54de528a..bed44ab0d 100644 --- a/src/IconSplitscreenVerticalAddOutlined.tsx +++ b/src/IconSplitscreenVerticalAddOutlined.tsx @@ -10,4 +10,4 @@ const IconSplitscreenVerticalAddOutlined: React.FC = ({ ) -export { IconSplitscreenVerticalAddOutlined as default } +export default IconSplitscreenVerticalAddOutlined diff --git a/src/IconSplitscreenVerticalAddOutlinedFilled.tsx b/src/IconSplitscreenVerticalAddOutlinedFilled.tsx index 69b3ad6ab..b0c1af9a2 100644 --- a/src/IconSplitscreenVerticalAddOutlinedFilled.tsx +++ b/src/IconSplitscreenVerticalAddOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconSplitscreenVerticalAddOutlinedFilled: React.FC = ({ ) -export { IconSplitscreenVerticalAddOutlinedFilled as default } +export default IconSplitscreenVerticalAddOutlinedFilled diff --git a/src/IconSplitscreenVerticalAddRounded.tsx b/src/IconSplitscreenVerticalAddRounded.tsx index 24bff96c9..d282020b2 100644 --- a/src/IconSplitscreenVerticalAddRounded.tsx +++ b/src/IconSplitscreenVerticalAddRounded.tsx @@ -10,4 +10,4 @@ const IconSplitscreenVerticalAddRounded: React.FC = ({ ) -export { IconSplitscreenVerticalAddRounded as default } +export default IconSplitscreenVerticalAddRounded diff --git a/src/IconSplitscreenVerticalAddRoundedFilled.tsx b/src/IconSplitscreenVerticalAddRoundedFilled.tsx index 6f637f5f1..454544133 100644 --- a/src/IconSplitscreenVerticalAddRoundedFilled.tsx +++ b/src/IconSplitscreenVerticalAddRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconSplitscreenVerticalAddRoundedFilled: React.FC = ({ ) -export { IconSplitscreenVerticalAddRoundedFilled as default } +export default IconSplitscreenVerticalAddRoundedFilled diff --git a/src/IconSplitscreenVerticalAddSharp.tsx b/src/IconSplitscreenVerticalAddSharp.tsx index c1dc31ec7..c2ab2402f 100644 --- a/src/IconSplitscreenVerticalAddSharp.tsx +++ b/src/IconSplitscreenVerticalAddSharp.tsx @@ -8,4 +8,4 @@ const IconSplitscreenVerticalAddSharp: React.FC = ({ ...props }) => ( ) -export { IconSplitscreenVerticalAddSharp as default } +export default IconSplitscreenVerticalAddSharp diff --git a/src/IconSplitscreenVerticalAddSharpFilled.tsx b/src/IconSplitscreenVerticalAddSharpFilled.tsx index 738be848d..fd300998f 100644 --- a/src/IconSplitscreenVerticalAddSharpFilled.tsx +++ b/src/IconSplitscreenVerticalAddSharpFilled.tsx @@ -10,4 +10,4 @@ const IconSplitscreenVerticalAddSharpFilled: React.FC = ({ ) -export { IconSplitscreenVerticalAddSharpFilled as default } +export default IconSplitscreenVerticalAddSharpFilled diff --git a/src/IconSpo2Outlined.tsx b/src/IconSpo2Outlined.tsx index 9b24a1926..35f702f46 100644 --- a/src/IconSpo2Outlined.tsx +++ b/src/IconSpo2Outlined.tsx @@ -8,4 +8,4 @@ const IconSpo2Outlined: React.FC = ({ ...props }) => ( ) -export { IconSpo2Outlined as default } +export default IconSpo2Outlined diff --git a/src/IconSpo2OutlinedFilled.tsx b/src/IconSpo2OutlinedFilled.tsx index 5fb435727..b4063c89a 100644 --- a/src/IconSpo2OutlinedFilled.tsx +++ b/src/IconSpo2OutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconSpo2OutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconSpo2OutlinedFilled as default } +export default IconSpo2OutlinedFilled diff --git a/src/IconSpo2Rounded.tsx b/src/IconSpo2Rounded.tsx index 791f4cdc3..afbdb3639 100644 --- a/src/IconSpo2Rounded.tsx +++ b/src/IconSpo2Rounded.tsx @@ -8,4 +8,4 @@ const IconSpo2Rounded: React.FC = ({ ...props }) => ( ) -export { IconSpo2Rounded as default } +export default IconSpo2Rounded diff --git a/src/IconSpo2RoundedFilled.tsx b/src/IconSpo2RoundedFilled.tsx index ce6658dde..b84bf6a04 100644 --- a/src/IconSpo2RoundedFilled.tsx +++ b/src/IconSpo2RoundedFilled.tsx @@ -8,4 +8,4 @@ const IconSpo2RoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconSpo2RoundedFilled as default } +export default IconSpo2RoundedFilled diff --git a/src/IconSpo2Sharp.tsx b/src/IconSpo2Sharp.tsx index 6c3c4c0e1..599e5a9e3 100644 --- a/src/IconSpo2Sharp.tsx +++ b/src/IconSpo2Sharp.tsx @@ -8,4 +8,4 @@ const IconSpo2Sharp: React.FC = ({ ...props }) => ( ) -export { IconSpo2Sharp as default } +export default IconSpo2Sharp diff --git a/src/IconSpo2SharpFilled.tsx b/src/IconSpo2SharpFilled.tsx index 544c0943a..b5fcc743c 100644 --- a/src/IconSpo2SharpFilled.tsx +++ b/src/IconSpo2SharpFilled.tsx @@ -8,4 +8,4 @@ const IconSpo2SharpFilled: React.FC = ({ ...props }) => ( ) -export { IconSpo2SharpFilled as default } +export default IconSpo2SharpFilled diff --git a/src/IconSpokeOutlined.tsx b/src/IconSpokeOutlined.tsx index 1c4471e25..bbfeb6225 100644 --- a/src/IconSpokeOutlined.tsx +++ b/src/IconSpokeOutlined.tsx @@ -8,4 +8,4 @@ const IconSpokeOutlined: React.FC = ({ ...props }) => ( ) -export { IconSpokeOutlined as default } +export default IconSpokeOutlined diff --git a/src/IconSpokeOutlinedFilled.tsx b/src/IconSpokeOutlinedFilled.tsx index 23f462fc8..4641b13a7 100644 --- a/src/IconSpokeOutlinedFilled.tsx +++ b/src/IconSpokeOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconSpokeOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconSpokeOutlinedFilled as default } +export default IconSpokeOutlinedFilled diff --git a/src/IconSpokeRounded.tsx b/src/IconSpokeRounded.tsx index 773661218..88eb8391e 100644 --- a/src/IconSpokeRounded.tsx +++ b/src/IconSpokeRounded.tsx @@ -8,4 +8,4 @@ const IconSpokeRounded: React.FC = ({ ...props }) => ( ) -export { IconSpokeRounded as default } +export default IconSpokeRounded diff --git a/src/IconSpokeRoundedFilled.tsx b/src/IconSpokeRoundedFilled.tsx index 59fc4b65b..b1a404bb7 100644 --- a/src/IconSpokeRoundedFilled.tsx +++ b/src/IconSpokeRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconSpokeRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconSpokeRoundedFilled as default } +export default IconSpokeRoundedFilled diff --git a/src/IconSpokeSharp.tsx b/src/IconSpokeSharp.tsx index 79a51c66f..704b6f257 100644 --- a/src/IconSpokeSharp.tsx +++ b/src/IconSpokeSharp.tsx @@ -8,4 +8,4 @@ const IconSpokeSharp: React.FC = ({ ...props }) => ( ) -export { IconSpokeSharp as default } +export default IconSpokeSharp diff --git a/src/IconSpokeSharpFilled.tsx b/src/IconSpokeSharpFilled.tsx index e296146ab..03b76c742 100644 --- a/src/IconSpokeSharpFilled.tsx +++ b/src/IconSpokeSharpFilled.tsx @@ -8,4 +8,4 @@ const IconSpokeSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconSpokeSharpFilled as default } +export default IconSpokeSharpFilled diff --git a/src/IconSportsAndOutdoorsOutlined.tsx b/src/IconSportsAndOutdoorsOutlined.tsx index 19be10400..adcc35955 100644 --- a/src/IconSportsAndOutdoorsOutlined.tsx +++ b/src/IconSportsAndOutdoorsOutlined.tsx @@ -8,4 +8,4 @@ const IconSportsAndOutdoorsOutlined: React.FC = ({ ...props }) => ( ) -export { IconSportsAndOutdoorsOutlined as default } +export default IconSportsAndOutdoorsOutlined diff --git a/src/IconSportsAndOutdoorsOutlinedFilled.tsx b/src/IconSportsAndOutdoorsOutlinedFilled.tsx index f91556402..fbaf5443a 100644 --- a/src/IconSportsAndOutdoorsOutlinedFilled.tsx +++ b/src/IconSportsAndOutdoorsOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconSportsAndOutdoorsOutlinedFilled: React.FC = ({ ) -export { IconSportsAndOutdoorsOutlinedFilled as default } +export default IconSportsAndOutdoorsOutlinedFilled diff --git a/src/IconSportsAndOutdoorsRounded.tsx b/src/IconSportsAndOutdoorsRounded.tsx index 8747c0ee9..5d698c5e3 100644 --- a/src/IconSportsAndOutdoorsRounded.tsx +++ b/src/IconSportsAndOutdoorsRounded.tsx @@ -8,4 +8,4 @@ const IconSportsAndOutdoorsRounded: React.FC = ({ ...props }) => ( ) -export { IconSportsAndOutdoorsRounded as default } +export default IconSportsAndOutdoorsRounded diff --git a/src/IconSportsAndOutdoorsRoundedFilled.tsx b/src/IconSportsAndOutdoorsRoundedFilled.tsx index fd8f2ae09..726b0096f 100644 --- a/src/IconSportsAndOutdoorsRoundedFilled.tsx +++ b/src/IconSportsAndOutdoorsRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconSportsAndOutdoorsRoundedFilled: React.FC = ({ ) -export { IconSportsAndOutdoorsRoundedFilled as default } +export default IconSportsAndOutdoorsRoundedFilled diff --git a/src/IconSportsAndOutdoorsSharp.tsx b/src/IconSportsAndOutdoorsSharp.tsx index b5e6c7333..a38bda7a0 100644 --- a/src/IconSportsAndOutdoorsSharp.tsx +++ b/src/IconSportsAndOutdoorsSharp.tsx @@ -8,4 +8,4 @@ const IconSportsAndOutdoorsSharp: React.FC = ({ ...props }) => ( ) -export { IconSportsAndOutdoorsSharp as default } +export default IconSportsAndOutdoorsSharp diff --git a/src/IconSportsAndOutdoorsSharpFilled.tsx b/src/IconSportsAndOutdoorsSharpFilled.tsx index 5a1112953..6aae1c228 100644 --- a/src/IconSportsAndOutdoorsSharpFilled.tsx +++ b/src/IconSportsAndOutdoorsSharpFilled.tsx @@ -10,4 +10,4 @@ const IconSportsAndOutdoorsSharpFilled: React.FC = ({ ) -export { IconSportsAndOutdoorsSharpFilled as default } +export default IconSportsAndOutdoorsSharpFilled diff --git a/src/IconSportsBarOutlined.tsx b/src/IconSportsBarOutlined.tsx index 32be7b947..8c8e7ae98 100644 --- a/src/IconSportsBarOutlined.tsx +++ b/src/IconSportsBarOutlined.tsx @@ -8,4 +8,4 @@ const IconSportsBarOutlined: React.FC = ({ ...props }) => ( ) -export { IconSportsBarOutlined as default } +export default IconSportsBarOutlined diff --git a/src/IconSportsBarOutlinedFilled.tsx b/src/IconSportsBarOutlinedFilled.tsx index 973b272f7..b3af2c7ce 100644 --- a/src/IconSportsBarOutlinedFilled.tsx +++ b/src/IconSportsBarOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconSportsBarOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconSportsBarOutlinedFilled as default } +export default IconSportsBarOutlinedFilled diff --git a/src/IconSportsBarRounded.tsx b/src/IconSportsBarRounded.tsx index 274c197a9..3f09bd55a 100644 --- a/src/IconSportsBarRounded.tsx +++ b/src/IconSportsBarRounded.tsx @@ -8,4 +8,4 @@ const IconSportsBarRounded: React.FC = ({ ...props }) => ( ) -export { IconSportsBarRounded as default } +export default IconSportsBarRounded diff --git a/src/IconSportsBarRoundedFilled.tsx b/src/IconSportsBarRoundedFilled.tsx index 08f767e30..f552cf24e 100644 --- a/src/IconSportsBarRoundedFilled.tsx +++ b/src/IconSportsBarRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconSportsBarRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconSportsBarRoundedFilled as default } +export default IconSportsBarRoundedFilled diff --git a/src/IconSportsBarSharp.tsx b/src/IconSportsBarSharp.tsx index 63396d4be..3cc330f55 100644 --- a/src/IconSportsBarSharp.tsx +++ b/src/IconSportsBarSharp.tsx @@ -8,4 +8,4 @@ const IconSportsBarSharp: React.FC = ({ ...props }) => ( ) -export { IconSportsBarSharp as default } +export default IconSportsBarSharp diff --git a/src/IconSportsBarSharpFilled.tsx b/src/IconSportsBarSharpFilled.tsx index 0918bb263..8e51ea0fd 100644 --- a/src/IconSportsBarSharpFilled.tsx +++ b/src/IconSportsBarSharpFilled.tsx @@ -8,4 +8,4 @@ const IconSportsBarSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconSportsBarSharpFilled as default } +export default IconSportsBarSharpFilled diff --git a/src/IconSportsBaseballOutlined.tsx b/src/IconSportsBaseballOutlined.tsx index ac902dc2f..4203b5ddd 100644 --- a/src/IconSportsBaseballOutlined.tsx +++ b/src/IconSportsBaseballOutlined.tsx @@ -8,4 +8,4 @@ const IconSportsBaseballOutlined: React.FC = ({ ...props }) => ( ) -export { IconSportsBaseballOutlined as default } +export default IconSportsBaseballOutlined diff --git a/src/IconSportsBaseballOutlinedFilled.tsx b/src/IconSportsBaseballOutlinedFilled.tsx index c44bcdcb5..1304f3098 100644 --- a/src/IconSportsBaseballOutlinedFilled.tsx +++ b/src/IconSportsBaseballOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconSportsBaseballOutlinedFilled: React.FC = ({ ) -export { IconSportsBaseballOutlinedFilled as default } +export default IconSportsBaseballOutlinedFilled diff --git a/src/IconSportsBaseballRounded.tsx b/src/IconSportsBaseballRounded.tsx index e613fa6f1..fa8c2fa40 100644 --- a/src/IconSportsBaseballRounded.tsx +++ b/src/IconSportsBaseballRounded.tsx @@ -8,4 +8,4 @@ const IconSportsBaseballRounded: React.FC = ({ ...props }) => ( ) -export { IconSportsBaseballRounded as default } +export default IconSportsBaseballRounded diff --git a/src/IconSportsBaseballRoundedFilled.tsx b/src/IconSportsBaseballRoundedFilled.tsx index 83a9c190a..2f802436b 100644 --- a/src/IconSportsBaseballRoundedFilled.tsx +++ b/src/IconSportsBaseballRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconSportsBaseballRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconSportsBaseballRoundedFilled as default } +export default IconSportsBaseballRoundedFilled diff --git a/src/IconSportsBaseballSharp.tsx b/src/IconSportsBaseballSharp.tsx index 31081488b..dfab4bf65 100644 --- a/src/IconSportsBaseballSharp.tsx +++ b/src/IconSportsBaseballSharp.tsx @@ -8,4 +8,4 @@ const IconSportsBaseballSharp: React.FC = ({ ...props }) => ( ) -export { IconSportsBaseballSharp as default } +export default IconSportsBaseballSharp diff --git a/src/IconSportsBaseballSharpFilled.tsx b/src/IconSportsBaseballSharpFilled.tsx index b4297e089..8bec2805e 100644 --- a/src/IconSportsBaseballSharpFilled.tsx +++ b/src/IconSportsBaseballSharpFilled.tsx @@ -8,4 +8,4 @@ const IconSportsBaseballSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconSportsBaseballSharpFilled as default } +export default IconSportsBaseballSharpFilled diff --git a/src/IconSportsBasketballOutlined.tsx b/src/IconSportsBasketballOutlined.tsx index 3212908b5..eb3bf545c 100644 --- a/src/IconSportsBasketballOutlined.tsx +++ b/src/IconSportsBasketballOutlined.tsx @@ -8,4 +8,4 @@ const IconSportsBasketballOutlined: React.FC = ({ ...props }) => ( ) -export { IconSportsBasketballOutlined as default } +export default IconSportsBasketballOutlined diff --git a/src/IconSportsBasketballOutlinedFilled.tsx b/src/IconSportsBasketballOutlinedFilled.tsx index 33e720ca6..55b699584 100644 --- a/src/IconSportsBasketballOutlinedFilled.tsx +++ b/src/IconSportsBasketballOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconSportsBasketballOutlinedFilled: React.FC = ({ ) -export { IconSportsBasketballOutlinedFilled as default } +export default IconSportsBasketballOutlinedFilled diff --git a/src/IconSportsBasketballRounded.tsx b/src/IconSportsBasketballRounded.tsx index da8e45dac..64fe87953 100644 --- a/src/IconSportsBasketballRounded.tsx +++ b/src/IconSportsBasketballRounded.tsx @@ -8,4 +8,4 @@ const IconSportsBasketballRounded: React.FC = ({ ...props }) => ( ) -export { IconSportsBasketballRounded as default } +export default IconSportsBasketballRounded diff --git a/src/IconSportsBasketballRoundedFilled.tsx b/src/IconSportsBasketballRoundedFilled.tsx index 4c26865c2..fcf5e858c 100644 --- a/src/IconSportsBasketballRoundedFilled.tsx +++ b/src/IconSportsBasketballRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconSportsBasketballRoundedFilled: React.FC = ({ ) -export { IconSportsBasketballRoundedFilled as default } +export default IconSportsBasketballRoundedFilled diff --git a/src/IconSportsBasketballSharp.tsx b/src/IconSportsBasketballSharp.tsx index 6ad416342..0acf19fbd 100644 --- a/src/IconSportsBasketballSharp.tsx +++ b/src/IconSportsBasketballSharp.tsx @@ -8,4 +8,4 @@ const IconSportsBasketballSharp: React.FC = ({ ...props }) => ( ) -export { IconSportsBasketballSharp as default } +export default IconSportsBasketballSharp diff --git a/src/IconSportsBasketballSharpFilled.tsx b/src/IconSportsBasketballSharpFilled.tsx index 6a95cf83e..aa5350dc5 100644 --- a/src/IconSportsBasketballSharpFilled.tsx +++ b/src/IconSportsBasketballSharpFilled.tsx @@ -8,4 +8,4 @@ const IconSportsBasketballSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconSportsBasketballSharpFilled as default } +export default IconSportsBasketballSharpFilled diff --git a/src/IconSportsCricketOutlined.tsx b/src/IconSportsCricketOutlined.tsx index b2f7d349d..61cb64318 100644 --- a/src/IconSportsCricketOutlined.tsx +++ b/src/IconSportsCricketOutlined.tsx @@ -8,4 +8,4 @@ const IconSportsCricketOutlined: React.FC = ({ ...props }) => ( ) -export { IconSportsCricketOutlined as default } +export default IconSportsCricketOutlined diff --git a/src/IconSportsCricketOutlinedFilled.tsx b/src/IconSportsCricketOutlinedFilled.tsx index 9e905c275..92b57ce83 100644 --- a/src/IconSportsCricketOutlinedFilled.tsx +++ b/src/IconSportsCricketOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconSportsCricketOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconSportsCricketOutlinedFilled as default } +export default IconSportsCricketOutlinedFilled diff --git a/src/IconSportsCricketRounded.tsx b/src/IconSportsCricketRounded.tsx index 304250bf4..3944bdd89 100644 --- a/src/IconSportsCricketRounded.tsx +++ b/src/IconSportsCricketRounded.tsx @@ -8,4 +8,4 @@ const IconSportsCricketRounded: React.FC = ({ ...props }) => ( ) -export { IconSportsCricketRounded as default } +export default IconSportsCricketRounded diff --git a/src/IconSportsCricketRoundedFilled.tsx b/src/IconSportsCricketRoundedFilled.tsx index c532d3146..ca2b0f3dc 100644 --- a/src/IconSportsCricketRoundedFilled.tsx +++ b/src/IconSportsCricketRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconSportsCricketRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconSportsCricketRoundedFilled as default } +export default IconSportsCricketRoundedFilled diff --git a/src/IconSportsCricketSharp.tsx b/src/IconSportsCricketSharp.tsx index e8c23f31e..884d7e852 100644 --- a/src/IconSportsCricketSharp.tsx +++ b/src/IconSportsCricketSharp.tsx @@ -8,4 +8,4 @@ const IconSportsCricketSharp: React.FC = ({ ...props }) => ( ) -export { IconSportsCricketSharp as default } +export default IconSportsCricketSharp diff --git a/src/IconSportsCricketSharpFilled.tsx b/src/IconSportsCricketSharpFilled.tsx index 50f520026..b88776964 100644 --- a/src/IconSportsCricketSharpFilled.tsx +++ b/src/IconSportsCricketSharpFilled.tsx @@ -8,4 +8,4 @@ const IconSportsCricketSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconSportsCricketSharpFilled as default } +export default IconSportsCricketSharpFilled diff --git a/src/IconSportsEsportsOutlined.tsx b/src/IconSportsEsportsOutlined.tsx index b4f7f0ce5..e3329b254 100644 --- a/src/IconSportsEsportsOutlined.tsx +++ b/src/IconSportsEsportsOutlined.tsx @@ -8,4 +8,4 @@ const IconSportsEsportsOutlined: React.FC = ({ ...props }) => ( ) -export { IconSportsEsportsOutlined as default } +export default IconSportsEsportsOutlined diff --git a/src/IconSportsEsportsOutlinedFilled.tsx b/src/IconSportsEsportsOutlinedFilled.tsx index 4a1520490..c43d0187d 100644 --- a/src/IconSportsEsportsOutlinedFilled.tsx +++ b/src/IconSportsEsportsOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconSportsEsportsOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconSportsEsportsOutlinedFilled as default } +export default IconSportsEsportsOutlinedFilled diff --git a/src/IconSportsEsportsRounded.tsx b/src/IconSportsEsportsRounded.tsx index 5f17bdfab..fec8f7b95 100644 --- a/src/IconSportsEsportsRounded.tsx +++ b/src/IconSportsEsportsRounded.tsx @@ -8,4 +8,4 @@ const IconSportsEsportsRounded: React.FC = ({ ...props }) => ( ) -export { IconSportsEsportsRounded as default } +export default IconSportsEsportsRounded diff --git a/src/IconSportsEsportsRoundedFilled.tsx b/src/IconSportsEsportsRoundedFilled.tsx index 06a13daec..da598239d 100644 --- a/src/IconSportsEsportsRoundedFilled.tsx +++ b/src/IconSportsEsportsRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconSportsEsportsRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconSportsEsportsRoundedFilled as default } +export default IconSportsEsportsRoundedFilled diff --git a/src/IconSportsEsportsSharp.tsx b/src/IconSportsEsportsSharp.tsx index 6c0bc8c09..498da6f52 100644 --- a/src/IconSportsEsportsSharp.tsx +++ b/src/IconSportsEsportsSharp.tsx @@ -8,4 +8,4 @@ const IconSportsEsportsSharp: React.FC = ({ ...props }) => ( ) -export { IconSportsEsportsSharp as default } +export default IconSportsEsportsSharp diff --git a/src/IconSportsEsportsSharpFilled.tsx b/src/IconSportsEsportsSharpFilled.tsx index 0d7ea2779..60b7aaa14 100644 --- a/src/IconSportsEsportsSharpFilled.tsx +++ b/src/IconSportsEsportsSharpFilled.tsx @@ -8,4 +8,4 @@ const IconSportsEsportsSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconSportsEsportsSharpFilled as default } +export default IconSportsEsportsSharpFilled diff --git a/src/IconSportsFootballOutlined.tsx b/src/IconSportsFootballOutlined.tsx index abeeaefa2..64cf675d4 100644 --- a/src/IconSportsFootballOutlined.tsx +++ b/src/IconSportsFootballOutlined.tsx @@ -8,4 +8,4 @@ const IconSportsFootballOutlined: React.FC = ({ ...props }) => ( ) -export { IconSportsFootballOutlined as default } +export default IconSportsFootballOutlined diff --git a/src/IconSportsFootballOutlinedFilled.tsx b/src/IconSportsFootballOutlinedFilled.tsx index 2581ef836..47aa2b458 100644 --- a/src/IconSportsFootballOutlinedFilled.tsx +++ b/src/IconSportsFootballOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconSportsFootballOutlinedFilled: React.FC = ({ ) -export { IconSportsFootballOutlinedFilled as default } +export default IconSportsFootballOutlinedFilled diff --git a/src/IconSportsFootballRounded.tsx b/src/IconSportsFootballRounded.tsx index b469722e4..a8aa2af60 100644 --- a/src/IconSportsFootballRounded.tsx +++ b/src/IconSportsFootballRounded.tsx @@ -8,4 +8,4 @@ const IconSportsFootballRounded: React.FC = ({ ...props }) => ( ) -export { IconSportsFootballRounded as default } +export default IconSportsFootballRounded diff --git a/src/IconSportsFootballRoundedFilled.tsx b/src/IconSportsFootballRoundedFilled.tsx index 91116cb59..d44848929 100644 --- a/src/IconSportsFootballRoundedFilled.tsx +++ b/src/IconSportsFootballRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconSportsFootballRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconSportsFootballRoundedFilled as default } +export default IconSportsFootballRoundedFilled diff --git a/src/IconSportsFootballSharp.tsx b/src/IconSportsFootballSharp.tsx index 37f265073..9dd30a5fa 100644 --- a/src/IconSportsFootballSharp.tsx +++ b/src/IconSportsFootballSharp.tsx @@ -8,4 +8,4 @@ const IconSportsFootballSharp: React.FC = ({ ...props }) => ( ) -export { IconSportsFootballSharp as default } +export default IconSportsFootballSharp diff --git a/src/IconSportsFootballSharpFilled.tsx b/src/IconSportsFootballSharpFilled.tsx index 8056abd8d..06ca87081 100644 --- a/src/IconSportsFootballSharpFilled.tsx +++ b/src/IconSportsFootballSharpFilled.tsx @@ -8,4 +8,4 @@ const IconSportsFootballSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconSportsFootballSharpFilled as default } +export default IconSportsFootballSharpFilled diff --git a/src/IconSportsGolfOutlined.tsx b/src/IconSportsGolfOutlined.tsx index f554624a8..bc9878bba 100644 --- a/src/IconSportsGolfOutlined.tsx +++ b/src/IconSportsGolfOutlined.tsx @@ -8,4 +8,4 @@ const IconSportsGolfOutlined: React.FC = ({ ...props }) => ( ) -export { IconSportsGolfOutlined as default } +export default IconSportsGolfOutlined diff --git a/src/IconSportsGolfOutlinedFilled.tsx b/src/IconSportsGolfOutlinedFilled.tsx index bce9312df..3ae4f2bb1 100644 --- a/src/IconSportsGolfOutlinedFilled.tsx +++ b/src/IconSportsGolfOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconSportsGolfOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconSportsGolfOutlinedFilled as default } +export default IconSportsGolfOutlinedFilled diff --git a/src/IconSportsGolfRounded.tsx b/src/IconSportsGolfRounded.tsx index b3c722272..4d3b1524c 100644 --- a/src/IconSportsGolfRounded.tsx +++ b/src/IconSportsGolfRounded.tsx @@ -8,4 +8,4 @@ const IconSportsGolfRounded: React.FC = ({ ...props }) => ( ) -export { IconSportsGolfRounded as default } +export default IconSportsGolfRounded diff --git a/src/IconSportsGolfRoundedFilled.tsx b/src/IconSportsGolfRoundedFilled.tsx index e7b684132..4fec43960 100644 --- a/src/IconSportsGolfRoundedFilled.tsx +++ b/src/IconSportsGolfRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconSportsGolfRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconSportsGolfRoundedFilled as default } +export default IconSportsGolfRoundedFilled diff --git a/src/IconSportsGolfSharp.tsx b/src/IconSportsGolfSharp.tsx index 23543ed85..cbb02ddca 100644 --- a/src/IconSportsGolfSharp.tsx +++ b/src/IconSportsGolfSharp.tsx @@ -8,4 +8,4 @@ const IconSportsGolfSharp: React.FC = ({ ...props }) => ( ) -export { IconSportsGolfSharp as default } +export default IconSportsGolfSharp diff --git a/src/IconSportsGolfSharpFilled.tsx b/src/IconSportsGolfSharpFilled.tsx index 23ecc5a9d..b5ab61658 100644 --- a/src/IconSportsGolfSharpFilled.tsx +++ b/src/IconSportsGolfSharpFilled.tsx @@ -8,4 +8,4 @@ const IconSportsGolfSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconSportsGolfSharpFilled as default } +export default IconSportsGolfSharpFilled diff --git a/src/IconSportsGymnasticsOutlined.tsx b/src/IconSportsGymnasticsOutlined.tsx index b20d4de82..c412fdf09 100644 --- a/src/IconSportsGymnasticsOutlined.tsx +++ b/src/IconSportsGymnasticsOutlined.tsx @@ -8,4 +8,4 @@ const IconSportsGymnasticsOutlined: React.FC = ({ ...props }) => ( ) -export { IconSportsGymnasticsOutlined as default } +export default IconSportsGymnasticsOutlined diff --git a/src/IconSportsGymnasticsOutlinedFilled.tsx b/src/IconSportsGymnasticsOutlinedFilled.tsx index dd2340961..a980ae76e 100644 --- a/src/IconSportsGymnasticsOutlinedFilled.tsx +++ b/src/IconSportsGymnasticsOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconSportsGymnasticsOutlinedFilled: React.FC = ({ ) -export { IconSportsGymnasticsOutlinedFilled as default } +export default IconSportsGymnasticsOutlinedFilled diff --git a/src/IconSportsGymnasticsRounded.tsx b/src/IconSportsGymnasticsRounded.tsx index 5c81234c1..e7248c898 100644 --- a/src/IconSportsGymnasticsRounded.tsx +++ b/src/IconSportsGymnasticsRounded.tsx @@ -8,4 +8,4 @@ const IconSportsGymnasticsRounded: React.FC = ({ ...props }) => ( ) -export { IconSportsGymnasticsRounded as default } +export default IconSportsGymnasticsRounded diff --git a/src/IconSportsGymnasticsRoundedFilled.tsx b/src/IconSportsGymnasticsRoundedFilled.tsx index 855b91046..99caf0476 100644 --- a/src/IconSportsGymnasticsRoundedFilled.tsx +++ b/src/IconSportsGymnasticsRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconSportsGymnasticsRoundedFilled: React.FC = ({ ) -export { IconSportsGymnasticsRoundedFilled as default } +export default IconSportsGymnasticsRoundedFilled diff --git a/src/IconSportsGymnasticsSharp.tsx b/src/IconSportsGymnasticsSharp.tsx index d000f6d42..cb72dd9ad 100644 --- a/src/IconSportsGymnasticsSharp.tsx +++ b/src/IconSportsGymnasticsSharp.tsx @@ -8,4 +8,4 @@ const IconSportsGymnasticsSharp: React.FC = ({ ...props }) => ( ) -export { IconSportsGymnasticsSharp as default } +export default IconSportsGymnasticsSharp diff --git a/src/IconSportsGymnasticsSharpFilled.tsx b/src/IconSportsGymnasticsSharpFilled.tsx index bbc20774c..eb62eb755 100644 --- a/src/IconSportsGymnasticsSharpFilled.tsx +++ b/src/IconSportsGymnasticsSharpFilled.tsx @@ -8,4 +8,4 @@ const IconSportsGymnasticsSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconSportsGymnasticsSharpFilled as default } +export default IconSportsGymnasticsSharpFilled diff --git a/src/IconSportsHandballOutlined.tsx b/src/IconSportsHandballOutlined.tsx index 7eb0df47e..287162713 100644 --- a/src/IconSportsHandballOutlined.tsx +++ b/src/IconSportsHandballOutlined.tsx @@ -8,4 +8,4 @@ const IconSportsHandballOutlined: React.FC = ({ ...props }) => ( ) -export { IconSportsHandballOutlined as default } +export default IconSportsHandballOutlined diff --git a/src/IconSportsHandballOutlinedFilled.tsx b/src/IconSportsHandballOutlinedFilled.tsx index 43ad0c4da..8a6126580 100644 --- a/src/IconSportsHandballOutlinedFilled.tsx +++ b/src/IconSportsHandballOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconSportsHandballOutlinedFilled: React.FC = ({ ) -export { IconSportsHandballOutlinedFilled as default } +export default IconSportsHandballOutlinedFilled diff --git a/src/IconSportsHandballRounded.tsx b/src/IconSportsHandballRounded.tsx index 55784ffbe..684fd4b24 100644 --- a/src/IconSportsHandballRounded.tsx +++ b/src/IconSportsHandballRounded.tsx @@ -8,4 +8,4 @@ const IconSportsHandballRounded: React.FC = ({ ...props }) => ( ) -export { IconSportsHandballRounded as default } +export default IconSportsHandballRounded diff --git a/src/IconSportsHandballRoundedFilled.tsx b/src/IconSportsHandballRoundedFilled.tsx index e1bdbbc33..3fa61d965 100644 --- a/src/IconSportsHandballRoundedFilled.tsx +++ b/src/IconSportsHandballRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconSportsHandballRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconSportsHandballRoundedFilled as default } +export default IconSportsHandballRoundedFilled diff --git a/src/IconSportsHandballSharp.tsx b/src/IconSportsHandballSharp.tsx index ffb1b3397..4c693e66e 100644 --- a/src/IconSportsHandballSharp.tsx +++ b/src/IconSportsHandballSharp.tsx @@ -8,4 +8,4 @@ const IconSportsHandballSharp: React.FC = ({ ...props }) => ( ) -export { IconSportsHandballSharp as default } +export default IconSportsHandballSharp diff --git a/src/IconSportsHandballSharpFilled.tsx b/src/IconSportsHandballSharpFilled.tsx index 4c93b8f62..f148eec2e 100644 --- a/src/IconSportsHandballSharpFilled.tsx +++ b/src/IconSportsHandballSharpFilled.tsx @@ -8,4 +8,4 @@ const IconSportsHandballSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconSportsHandballSharpFilled as default } +export default IconSportsHandballSharpFilled diff --git a/src/IconSportsHockeyOutlined.tsx b/src/IconSportsHockeyOutlined.tsx index 0a122f4a4..61bd67437 100644 --- a/src/IconSportsHockeyOutlined.tsx +++ b/src/IconSportsHockeyOutlined.tsx @@ -8,4 +8,4 @@ const IconSportsHockeyOutlined: React.FC = ({ ...props }) => ( ) -export { IconSportsHockeyOutlined as default } +export default IconSportsHockeyOutlined diff --git a/src/IconSportsHockeyOutlinedFilled.tsx b/src/IconSportsHockeyOutlinedFilled.tsx index ff63a9892..d9cb30b31 100644 --- a/src/IconSportsHockeyOutlinedFilled.tsx +++ b/src/IconSportsHockeyOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconSportsHockeyOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconSportsHockeyOutlinedFilled as default } +export default IconSportsHockeyOutlinedFilled diff --git a/src/IconSportsHockeyRounded.tsx b/src/IconSportsHockeyRounded.tsx index 65b8598d4..577386d40 100644 --- a/src/IconSportsHockeyRounded.tsx +++ b/src/IconSportsHockeyRounded.tsx @@ -8,4 +8,4 @@ const IconSportsHockeyRounded: React.FC = ({ ...props }) => ( ) -export { IconSportsHockeyRounded as default } +export default IconSportsHockeyRounded diff --git a/src/IconSportsHockeyRoundedFilled.tsx b/src/IconSportsHockeyRoundedFilled.tsx index 29d826bc4..d24d11097 100644 --- a/src/IconSportsHockeyRoundedFilled.tsx +++ b/src/IconSportsHockeyRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconSportsHockeyRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconSportsHockeyRoundedFilled as default } +export default IconSportsHockeyRoundedFilled diff --git a/src/IconSportsHockeySharp.tsx b/src/IconSportsHockeySharp.tsx index 17379b33a..e84e61a0f 100644 --- a/src/IconSportsHockeySharp.tsx +++ b/src/IconSportsHockeySharp.tsx @@ -8,4 +8,4 @@ const IconSportsHockeySharp: React.FC = ({ ...props }) => ( ) -export { IconSportsHockeySharp as default } +export default IconSportsHockeySharp diff --git a/src/IconSportsHockeySharpFilled.tsx b/src/IconSportsHockeySharpFilled.tsx index 4964343e8..571533d59 100644 --- a/src/IconSportsHockeySharpFilled.tsx +++ b/src/IconSportsHockeySharpFilled.tsx @@ -8,4 +8,4 @@ const IconSportsHockeySharpFilled: React.FC = ({ ...props }) => ( ) -export { IconSportsHockeySharpFilled as default } +export default IconSportsHockeySharpFilled diff --git a/src/IconSportsKabaddiOutlined.tsx b/src/IconSportsKabaddiOutlined.tsx index 2fe0a7bda..ac97ca18a 100644 --- a/src/IconSportsKabaddiOutlined.tsx +++ b/src/IconSportsKabaddiOutlined.tsx @@ -8,4 +8,4 @@ const IconSportsKabaddiOutlined: React.FC = ({ ...props }) => ( ) -export { IconSportsKabaddiOutlined as default } +export default IconSportsKabaddiOutlined diff --git a/src/IconSportsKabaddiOutlinedFilled.tsx b/src/IconSportsKabaddiOutlinedFilled.tsx index 2d1d9e96b..6ce608434 100644 --- a/src/IconSportsKabaddiOutlinedFilled.tsx +++ b/src/IconSportsKabaddiOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconSportsKabaddiOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconSportsKabaddiOutlinedFilled as default } +export default IconSportsKabaddiOutlinedFilled diff --git a/src/IconSportsKabaddiRounded.tsx b/src/IconSportsKabaddiRounded.tsx index 13aa0f9d8..959abe16a 100644 --- a/src/IconSportsKabaddiRounded.tsx +++ b/src/IconSportsKabaddiRounded.tsx @@ -8,4 +8,4 @@ const IconSportsKabaddiRounded: React.FC = ({ ...props }) => ( ) -export { IconSportsKabaddiRounded as default } +export default IconSportsKabaddiRounded diff --git a/src/IconSportsKabaddiRoundedFilled.tsx b/src/IconSportsKabaddiRoundedFilled.tsx index 026ea9255..05f81abc8 100644 --- a/src/IconSportsKabaddiRoundedFilled.tsx +++ b/src/IconSportsKabaddiRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconSportsKabaddiRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconSportsKabaddiRoundedFilled as default } +export default IconSportsKabaddiRoundedFilled diff --git a/src/IconSportsKabaddiSharp.tsx b/src/IconSportsKabaddiSharp.tsx index 473a394f2..647a70d16 100644 --- a/src/IconSportsKabaddiSharp.tsx +++ b/src/IconSportsKabaddiSharp.tsx @@ -8,4 +8,4 @@ const IconSportsKabaddiSharp: React.FC = ({ ...props }) => ( ) -export { IconSportsKabaddiSharp as default } +export default IconSportsKabaddiSharp diff --git a/src/IconSportsKabaddiSharpFilled.tsx b/src/IconSportsKabaddiSharpFilled.tsx index 88fbbdcdf..5706d98c4 100644 --- a/src/IconSportsKabaddiSharpFilled.tsx +++ b/src/IconSportsKabaddiSharpFilled.tsx @@ -8,4 +8,4 @@ const IconSportsKabaddiSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconSportsKabaddiSharpFilled as default } +export default IconSportsKabaddiSharpFilled diff --git a/src/IconSportsMartialArtsOutlined.tsx b/src/IconSportsMartialArtsOutlined.tsx index eaca3b3b8..37d8a3902 100644 --- a/src/IconSportsMartialArtsOutlined.tsx +++ b/src/IconSportsMartialArtsOutlined.tsx @@ -8,4 +8,4 @@ const IconSportsMartialArtsOutlined: React.FC = ({ ...props }) => ( ) -export { IconSportsMartialArtsOutlined as default } +export default IconSportsMartialArtsOutlined diff --git a/src/IconSportsMartialArtsOutlinedFilled.tsx b/src/IconSportsMartialArtsOutlinedFilled.tsx index 8821918f2..023b9b1b6 100644 --- a/src/IconSportsMartialArtsOutlinedFilled.tsx +++ b/src/IconSportsMartialArtsOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconSportsMartialArtsOutlinedFilled: React.FC = ({ ) -export { IconSportsMartialArtsOutlinedFilled as default } +export default IconSportsMartialArtsOutlinedFilled diff --git a/src/IconSportsMartialArtsRounded.tsx b/src/IconSportsMartialArtsRounded.tsx index 43bb9f00b..4095e6161 100644 --- a/src/IconSportsMartialArtsRounded.tsx +++ b/src/IconSportsMartialArtsRounded.tsx @@ -8,4 +8,4 @@ const IconSportsMartialArtsRounded: React.FC = ({ ...props }) => ( ) -export { IconSportsMartialArtsRounded as default } +export default IconSportsMartialArtsRounded diff --git a/src/IconSportsMartialArtsRoundedFilled.tsx b/src/IconSportsMartialArtsRoundedFilled.tsx index df25a76e3..ca95a5e31 100644 --- a/src/IconSportsMartialArtsRoundedFilled.tsx +++ b/src/IconSportsMartialArtsRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconSportsMartialArtsRoundedFilled: React.FC = ({ ) -export { IconSportsMartialArtsRoundedFilled as default } +export default IconSportsMartialArtsRoundedFilled diff --git a/src/IconSportsMartialArtsSharp.tsx b/src/IconSportsMartialArtsSharp.tsx index e38b1ad46..2b2987359 100644 --- a/src/IconSportsMartialArtsSharp.tsx +++ b/src/IconSportsMartialArtsSharp.tsx @@ -8,4 +8,4 @@ const IconSportsMartialArtsSharp: React.FC = ({ ...props }) => ( ) -export { IconSportsMartialArtsSharp as default } +export default IconSportsMartialArtsSharp diff --git a/src/IconSportsMartialArtsSharpFilled.tsx b/src/IconSportsMartialArtsSharpFilled.tsx index 2e0b49f47..c1d0bffde 100644 --- a/src/IconSportsMartialArtsSharpFilled.tsx +++ b/src/IconSportsMartialArtsSharpFilled.tsx @@ -10,4 +10,4 @@ const IconSportsMartialArtsSharpFilled: React.FC = ({ ) -export { IconSportsMartialArtsSharpFilled as default } +export default IconSportsMartialArtsSharpFilled diff --git a/src/IconSportsMmaOutlined.tsx b/src/IconSportsMmaOutlined.tsx index dca9a89d4..fc21f0afa 100644 --- a/src/IconSportsMmaOutlined.tsx +++ b/src/IconSportsMmaOutlined.tsx @@ -8,4 +8,4 @@ const IconSportsMmaOutlined: React.FC = ({ ...props }) => ( ) -export { IconSportsMmaOutlined as default } +export default IconSportsMmaOutlined diff --git a/src/IconSportsMmaOutlinedFilled.tsx b/src/IconSportsMmaOutlinedFilled.tsx index fbabc093a..3d2a4a267 100644 --- a/src/IconSportsMmaOutlinedFilled.tsx +++ b/src/IconSportsMmaOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconSportsMmaOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconSportsMmaOutlinedFilled as default } +export default IconSportsMmaOutlinedFilled diff --git a/src/IconSportsMmaRounded.tsx b/src/IconSportsMmaRounded.tsx index a5637b60b..5edd3ff32 100644 --- a/src/IconSportsMmaRounded.tsx +++ b/src/IconSportsMmaRounded.tsx @@ -8,4 +8,4 @@ const IconSportsMmaRounded: React.FC = ({ ...props }) => ( ) -export { IconSportsMmaRounded as default } +export default IconSportsMmaRounded diff --git a/src/IconSportsMmaRoundedFilled.tsx b/src/IconSportsMmaRoundedFilled.tsx index 6975cbd29..6b71a67ac 100644 --- a/src/IconSportsMmaRoundedFilled.tsx +++ b/src/IconSportsMmaRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconSportsMmaRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconSportsMmaRoundedFilled as default } +export default IconSportsMmaRoundedFilled diff --git a/src/IconSportsMmaSharp.tsx b/src/IconSportsMmaSharp.tsx index 50b769f14..6b66296c1 100644 --- a/src/IconSportsMmaSharp.tsx +++ b/src/IconSportsMmaSharp.tsx @@ -8,4 +8,4 @@ const IconSportsMmaSharp: React.FC = ({ ...props }) => ( ) -export { IconSportsMmaSharp as default } +export default IconSportsMmaSharp diff --git a/src/IconSportsMmaSharpFilled.tsx b/src/IconSportsMmaSharpFilled.tsx index 56c31483b..c307f2ff9 100644 --- a/src/IconSportsMmaSharpFilled.tsx +++ b/src/IconSportsMmaSharpFilled.tsx @@ -8,4 +8,4 @@ const IconSportsMmaSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconSportsMmaSharpFilled as default } +export default IconSportsMmaSharpFilled diff --git a/src/IconSportsMotorsportsOutlined.tsx b/src/IconSportsMotorsportsOutlined.tsx index 6f4259927..8cf6f6898 100644 --- a/src/IconSportsMotorsportsOutlined.tsx +++ b/src/IconSportsMotorsportsOutlined.tsx @@ -8,4 +8,4 @@ const IconSportsMotorsportsOutlined: React.FC = ({ ...props }) => ( ) -export { IconSportsMotorsportsOutlined as default } +export default IconSportsMotorsportsOutlined diff --git a/src/IconSportsMotorsportsOutlinedFilled.tsx b/src/IconSportsMotorsportsOutlinedFilled.tsx index 7ba77559d..822e4b226 100644 --- a/src/IconSportsMotorsportsOutlinedFilled.tsx +++ b/src/IconSportsMotorsportsOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconSportsMotorsportsOutlinedFilled: React.FC = ({ ) -export { IconSportsMotorsportsOutlinedFilled as default } +export default IconSportsMotorsportsOutlinedFilled diff --git a/src/IconSportsMotorsportsRounded.tsx b/src/IconSportsMotorsportsRounded.tsx index 9e9d3df84..8b12f89f8 100644 --- a/src/IconSportsMotorsportsRounded.tsx +++ b/src/IconSportsMotorsportsRounded.tsx @@ -8,4 +8,4 @@ const IconSportsMotorsportsRounded: React.FC = ({ ...props }) => ( ) -export { IconSportsMotorsportsRounded as default } +export default IconSportsMotorsportsRounded diff --git a/src/IconSportsMotorsportsRoundedFilled.tsx b/src/IconSportsMotorsportsRoundedFilled.tsx index 0b555854a..367dbfd5a 100644 --- a/src/IconSportsMotorsportsRoundedFilled.tsx +++ b/src/IconSportsMotorsportsRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconSportsMotorsportsRoundedFilled: React.FC = ({ ) -export { IconSportsMotorsportsRoundedFilled as default } +export default IconSportsMotorsportsRoundedFilled diff --git a/src/IconSportsMotorsportsSharp.tsx b/src/IconSportsMotorsportsSharp.tsx index 4460ab965..861d080c5 100644 --- a/src/IconSportsMotorsportsSharp.tsx +++ b/src/IconSportsMotorsportsSharp.tsx @@ -8,4 +8,4 @@ const IconSportsMotorsportsSharp: React.FC = ({ ...props }) => ( ) -export { IconSportsMotorsportsSharp as default } +export default IconSportsMotorsportsSharp diff --git a/src/IconSportsMotorsportsSharpFilled.tsx b/src/IconSportsMotorsportsSharpFilled.tsx index c0d3d06d6..9210f8b9d 100644 --- a/src/IconSportsMotorsportsSharpFilled.tsx +++ b/src/IconSportsMotorsportsSharpFilled.tsx @@ -10,4 +10,4 @@ const IconSportsMotorsportsSharpFilled: React.FC = ({ ) -export { IconSportsMotorsportsSharpFilled as default } +export default IconSportsMotorsportsSharpFilled diff --git a/src/IconSportsOutlined.tsx b/src/IconSportsOutlined.tsx index 0eec96ac1..9751252c5 100644 --- a/src/IconSportsOutlined.tsx +++ b/src/IconSportsOutlined.tsx @@ -8,4 +8,4 @@ const IconSportsOutlined: React.FC = ({ ...props }) => ( ) -export { IconSportsOutlined as default } +export default IconSportsOutlined diff --git a/src/IconSportsOutlinedFilled.tsx b/src/IconSportsOutlinedFilled.tsx index dfad86649..b67636d97 100644 --- a/src/IconSportsOutlinedFilled.tsx +++ b/src/IconSportsOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconSportsOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconSportsOutlinedFilled as default } +export default IconSportsOutlinedFilled diff --git a/src/IconSportsRounded.tsx b/src/IconSportsRounded.tsx index 8dfea8b91..159ddac32 100644 --- a/src/IconSportsRounded.tsx +++ b/src/IconSportsRounded.tsx @@ -8,4 +8,4 @@ const IconSportsRounded: React.FC = ({ ...props }) => ( ) -export { IconSportsRounded as default } +export default IconSportsRounded diff --git a/src/IconSportsRoundedFilled.tsx b/src/IconSportsRoundedFilled.tsx index ee77e2557..63e7f3a25 100644 --- a/src/IconSportsRoundedFilled.tsx +++ b/src/IconSportsRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconSportsRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconSportsRoundedFilled as default } +export default IconSportsRoundedFilled diff --git a/src/IconSportsRugbyOutlined.tsx b/src/IconSportsRugbyOutlined.tsx index e7d5e894a..6ddee9be4 100644 --- a/src/IconSportsRugbyOutlined.tsx +++ b/src/IconSportsRugbyOutlined.tsx @@ -8,4 +8,4 @@ const IconSportsRugbyOutlined: React.FC = ({ ...props }) => ( ) -export { IconSportsRugbyOutlined as default } +export default IconSportsRugbyOutlined diff --git a/src/IconSportsRugbyOutlinedFilled.tsx b/src/IconSportsRugbyOutlinedFilled.tsx index 783ddddb4..4cb023328 100644 --- a/src/IconSportsRugbyOutlinedFilled.tsx +++ b/src/IconSportsRugbyOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconSportsRugbyOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconSportsRugbyOutlinedFilled as default } +export default IconSportsRugbyOutlinedFilled diff --git a/src/IconSportsRugbyRounded.tsx b/src/IconSportsRugbyRounded.tsx index 7c3ceccc0..4c546dae0 100644 --- a/src/IconSportsRugbyRounded.tsx +++ b/src/IconSportsRugbyRounded.tsx @@ -8,4 +8,4 @@ const IconSportsRugbyRounded: React.FC = ({ ...props }) => ( ) -export { IconSportsRugbyRounded as default } +export default IconSportsRugbyRounded diff --git a/src/IconSportsRugbyRoundedFilled.tsx b/src/IconSportsRugbyRoundedFilled.tsx index 68bc4b8bb..89198b7af 100644 --- a/src/IconSportsRugbyRoundedFilled.tsx +++ b/src/IconSportsRugbyRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconSportsRugbyRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconSportsRugbyRoundedFilled as default } +export default IconSportsRugbyRoundedFilled diff --git a/src/IconSportsRugbySharp.tsx b/src/IconSportsRugbySharp.tsx index 3a12a8954..d07f30ab8 100644 --- a/src/IconSportsRugbySharp.tsx +++ b/src/IconSportsRugbySharp.tsx @@ -8,4 +8,4 @@ const IconSportsRugbySharp: React.FC = ({ ...props }) => ( ) -export { IconSportsRugbySharp as default } +export default IconSportsRugbySharp diff --git a/src/IconSportsRugbySharpFilled.tsx b/src/IconSportsRugbySharpFilled.tsx index 08b68893b..4a7bf0da6 100644 --- a/src/IconSportsRugbySharpFilled.tsx +++ b/src/IconSportsRugbySharpFilled.tsx @@ -8,4 +8,4 @@ const IconSportsRugbySharpFilled: React.FC = ({ ...props }) => ( ) -export { IconSportsRugbySharpFilled as default } +export default IconSportsRugbySharpFilled diff --git a/src/IconSportsScoreOutlined.tsx b/src/IconSportsScoreOutlined.tsx index 859e75ae8..5f127cb39 100644 --- a/src/IconSportsScoreOutlined.tsx +++ b/src/IconSportsScoreOutlined.tsx @@ -8,4 +8,4 @@ const IconSportsScoreOutlined: React.FC = ({ ...props }) => ( ) -export { IconSportsScoreOutlined as default } +export default IconSportsScoreOutlined diff --git a/src/IconSportsScoreOutlinedFilled.tsx b/src/IconSportsScoreOutlinedFilled.tsx index 9e5fd9901..8dcb3d699 100644 --- a/src/IconSportsScoreOutlinedFilled.tsx +++ b/src/IconSportsScoreOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconSportsScoreOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconSportsScoreOutlinedFilled as default } +export default IconSportsScoreOutlinedFilled diff --git a/src/IconSportsScoreRounded.tsx b/src/IconSportsScoreRounded.tsx index 147c0cfa3..14b085fe7 100644 --- a/src/IconSportsScoreRounded.tsx +++ b/src/IconSportsScoreRounded.tsx @@ -8,4 +8,4 @@ const IconSportsScoreRounded: React.FC = ({ ...props }) => ( ) -export { IconSportsScoreRounded as default } +export default IconSportsScoreRounded diff --git a/src/IconSportsScoreRoundedFilled.tsx b/src/IconSportsScoreRoundedFilled.tsx index dc5618bc8..9273efe72 100644 --- a/src/IconSportsScoreRoundedFilled.tsx +++ b/src/IconSportsScoreRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconSportsScoreRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconSportsScoreRoundedFilled as default } +export default IconSportsScoreRoundedFilled diff --git a/src/IconSportsScoreSharp.tsx b/src/IconSportsScoreSharp.tsx index aad0f8c0c..63129c1ac 100644 --- a/src/IconSportsScoreSharp.tsx +++ b/src/IconSportsScoreSharp.tsx @@ -8,4 +8,4 @@ const IconSportsScoreSharp: React.FC = ({ ...props }) => ( ) -export { IconSportsScoreSharp as default } +export default IconSportsScoreSharp diff --git a/src/IconSportsScoreSharpFilled.tsx b/src/IconSportsScoreSharpFilled.tsx index ec30aea24..59cf6d30d 100644 --- a/src/IconSportsScoreSharpFilled.tsx +++ b/src/IconSportsScoreSharpFilled.tsx @@ -8,4 +8,4 @@ const IconSportsScoreSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconSportsScoreSharpFilled as default } +export default IconSportsScoreSharpFilled diff --git a/src/IconSportsSharp.tsx b/src/IconSportsSharp.tsx index b1c01ec07..6b69fb773 100644 --- a/src/IconSportsSharp.tsx +++ b/src/IconSportsSharp.tsx @@ -8,4 +8,4 @@ const IconSportsSharp: React.FC = ({ ...props }) => ( ) -export { IconSportsSharp as default } +export default IconSportsSharp diff --git a/src/IconSportsSharpFilled.tsx b/src/IconSportsSharpFilled.tsx index 6d389b98b..223e70026 100644 --- a/src/IconSportsSharpFilled.tsx +++ b/src/IconSportsSharpFilled.tsx @@ -8,4 +8,4 @@ const IconSportsSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconSportsSharpFilled as default } +export default IconSportsSharpFilled diff --git a/src/IconSportsSoccerOutlined.tsx b/src/IconSportsSoccerOutlined.tsx index c0fd7097d..bddbacd28 100644 --- a/src/IconSportsSoccerOutlined.tsx +++ b/src/IconSportsSoccerOutlined.tsx @@ -8,4 +8,4 @@ const IconSportsSoccerOutlined: React.FC = ({ ...props }) => ( ) -export { IconSportsSoccerOutlined as default } +export default IconSportsSoccerOutlined diff --git a/src/IconSportsSoccerOutlinedFilled.tsx b/src/IconSportsSoccerOutlinedFilled.tsx index bb5335913..3102aef85 100644 --- a/src/IconSportsSoccerOutlinedFilled.tsx +++ b/src/IconSportsSoccerOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconSportsSoccerOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconSportsSoccerOutlinedFilled as default } +export default IconSportsSoccerOutlinedFilled diff --git a/src/IconSportsSoccerRounded.tsx b/src/IconSportsSoccerRounded.tsx index b1da4db61..a483fa734 100644 --- a/src/IconSportsSoccerRounded.tsx +++ b/src/IconSportsSoccerRounded.tsx @@ -8,4 +8,4 @@ const IconSportsSoccerRounded: React.FC = ({ ...props }) => ( ) -export { IconSportsSoccerRounded as default } +export default IconSportsSoccerRounded diff --git a/src/IconSportsSoccerRoundedFilled.tsx b/src/IconSportsSoccerRoundedFilled.tsx index b1de5d87c..4591010f4 100644 --- a/src/IconSportsSoccerRoundedFilled.tsx +++ b/src/IconSportsSoccerRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconSportsSoccerRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconSportsSoccerRoundedFilled as default } +export default IconSportsSoccerRoundedFilled diff --git a/src/IconSportsSoccerSharp.tsx b/src/IconSportsSoccerSharp.tsx index c9c172bf0..aa8e6553e 100644 --- a/src/IconSportsSoccerSharp.tsx +++ b/src/IconSportsSoccerSharp.tsx @@ -8,4 +8,4 @@ const IconSportsSoccerSharp: React.FC = ({ ...props }) => ( ) -export { IconSportsSoccerSharp as default } +export default IconSportsSoccerSharp diff --git a/src/IconSportsSoccerSharpFilled.tsx b/src/IconSportsSoccerSharpFilled.tsx index 9a598e72c..46a30cf9a 100644 --- a/src/IconSportsSoccerSharpFilled.tsx +++ b/src/IconSportsSoccerSharpFilled.tsx @@ -8,4 +8,4 @@ const IconSportsSoccerSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconSportsSoccerSharpFilled as default } +export default IconSportsSoccerSharpFilled diff --git a/src/IconSportsTennisOutlined.tsx b/src/IconSportsTennisOutlined.tsx index 41d3831a7..cb1d7dfc3 100644 --- a/src/IconSportsTennisOutlined.tsx +++ b/src/IconSportsTennisOutlined.tsx @@ -8,4 +8,4 @@ const IconSportsTennisOutlined: React.FC = ({ ...props }) => ( ) -export { IconSportsTennisOutlined as default } +export default IconSportsTennisOutlined diff --git a/src/IconSportsTennisOutlinedFilled.tsx b/src/IconSportsTennisOutlinedFilled.tsx index 12c6415a0..13964ed3d 100644 --- a/src/IconSportsTennisOutlinedFilled.tsx +++ b/src/IconSportsTennisOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconSportsTennisOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconSportsTennisOutlinedFilled as default } +export default IconSportsTennisOutlinedFilled diff --git a/src/IconSportsTennisRounded.tsx b/src/IconSportsTennisRounded.tsx index 87c9c6988..2d519721c 100644 --- a/src/IconSportsTennisRounded.tsx +++ b/src/IconSportsTennisRounded.tsx @@ -8,4 +8,4 @@ const IconSportsTennisRounded: React.FC = ({ ...props }) => ( ) -export { IconSportsTennisRounded as default } +export default IconSportsTennisRounded diff --git a/src/IconSportsTennisRoundedFilled.tsx b/src/IconSportsTennisRoundedFilled.tsx index 8f5e5afc6..c386e864f 100644 --- a/src/IconSportsTennisRoundedFilled.tsx +++ b/src/IconSportsTennisRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconSportsTennisRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconSportsTennisRoundedFilled as default } +export default IconSportsTennisRoundedFilled diff --git a/src/IconSportsTennisSharp.tsx b/src/IconSportsTennisSharp.tsx index 17778b230..799834e20 100644 --- a/src/IconSportsTennisSharp.tsx +++ b/src/IconSportsTennisSharp.tsx @@ -8,4 +8,4 @@ const IconSportsTennisSharp: React.FC = ({ ...props }) => ( ) -export { IconSportsTennisSharp as default } +export default IconSportsTennisSharp diff --git a/src/IconSportsTennisSharpFilled.tsx b/src/IconSportsTennisSharpFilled.tsx index 005c93c2c..87d2b10b8 100644 --- a/src/IconSportsTennisSharpFilled.tsx +++ b/src/IconSportsTennisSharpFilled.tsx @@ -8,4 +8,4 @@ const IconSportsTennisSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconSportsTennisSharpFilled as default } +export default IconSportsTennisSharpFilled diff --git a/src/IconSportsVolleyballOutlined.tsx b/src/IconSportsVolleyballOutlined.tsx index b0028bef1..9cb91363c 100644 --- a/src/IconSportsVolleyballOutlined.tsx +++ b/src/IconSportsVolleyballOutlined.tsx @@ -8,4 +8,4 @@ const IconSportsVolleyballOutlined: React.FC = ({ ...props }) => ( ) -export { IconSportsVolleyballOutlined as default } +export default IconSportsVolleyballOutlined diff --git a/src/IconSportsVolleyballOutlinedFilled.tsx b/src/IconSportsVolleyballOutlinedFilled.tsx index a5b981d5e..ce81ab3a0 100644 --- a/src/IconSportsVolleyballOutlinedFilled.tsx +++ b/src/IconSportsVolleyballOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconSportsVolleyballOutlinedFilled: React.FC = ({ ) -export { IconSportsVolleyballOutlinedFilled as default } +export default IconSportsVolleyballOutlinedFilled diff --git a/src/IconSportsVolleyballRounded.tsx b/src/IconSportsVolleyballRounded.tsx index d9a1c5d26..baad8e614 100644 --- a/src/IconSportsVolleyballRounded.tsx +++ b/src/IconSportsVolleyballRounded.tsx @@ -8,4 +8,4 @@ const IconSportsVolleyballRounded: React.FC = ({ ...props }) => ( ) -export { IconSportsVolleyballRounded as default } +export default IconSportsVolleyballRounded diff --git a/src/IconSportsVolleyballRoundedFilled.tsx b/src/IconSportsVolleyballRoundedFilled.tsx index 1e63ed63f..e608526c7 100644 --- a/src/IconSportsVolleyballRoundedFilled.tsx +++ b/src/IconSportsVolleyballRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconSportsVolleyballRoundedFilled: React.FC = ({ ) -export { IconSportsVolleyballRoundedFilled as default } +export default IconSportsVolleyballRoundedFilled diff --git a/src/IconSportsVolleyballSharp.tsx b/src/IconSportsVolleyballSharp.tsx index 37d7ca6b4..2a6af1477 100644 --- a/src/IconSportsVolleyballSharp.tsx +++ b/src/IconSportsVolleyballSharp.tsx @@ -8,4 +8,4 @@ const IconSportsVolleyballSharp: React.FC = ({ ...props }) => ( ) -export { IconSportsVolleyballSharp as default } +export default IconSportsVolleyballSharp diff --git a/src/IconSportsVolleyballSharpFilled.tsx b/src/IconSportsVolleyballSharpFilled.tsx index 9879452bf..d96fa3f9b 100644 --- a/src/IconSportsVolleyballSharpFilled.tsx +++ b/src/IconSportsVolleyballSharpFilled.tsx @@ -8,4 +8,4 @@ const IconSportsVolleyballSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconSportsVolleyballSharpFilled as default } +export default IconSportsVolleyballSharpFilled diff --git a/src/IconSprinklerOutlined.tsx b/src/IconSprinklerOutlined.tsx index 50a5fb7f2..77f8c82f8 100644 --- a/src/IconSprinklerOutlined.tsx +++ b/src/IconSprinklerOutlined.tsx @@ -8,4 +8,4 @@ const IconSprinklerOutlined: React.FC = ({ ...props }) => ( ) -export { IconSprinklerOutlined as default } +export default IconSprinklerOutlined diff --git a/src/IconSprinklerOutlinedFilled.tsx b/src/IconSprinklerOutlinedFilled.tsx index ba543f1cf..f5d076d1d 100644 --- a/src/IconSprinklerOutlinedFilled.tsx +++ b/src/IconSprinklerOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconSprinklerOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconSprinklerOutlinedFilled as default } +export default IconSprinklerOutlinedFilled diff --git a/src/IconSprinklerRounded.tsx b/src/IconSprinklerRounded.tsx index 68845cf5b..583aa2537 100644 --- a/src/IconSprinklerRounded.tsx +++ b/src/IconSprinklerRounded.tsx @@ -8,4 +8,4 @@ const IconSprinklerRounded: React.FC = ({ ...props }) => ( ) -export { IconSprinklerRounded as default } +export default IconSprinklerRounded diff --git a/src/IconSprinklerRoundedFilled.tsx b/src/IconSprinklerRoundedFilled.tsx index 10a57e917..eb400ea9d 100644 --- a/src/IconSprinklerRoundedFilled.tsx +++ b/src/IconSprinklerRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconSprinklerRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconSprinklerRoundedFilled as default } +export default IconSprinklerRoundedFilled diff --git a/src/IconSprinklerSharp.tsx b/src/IconSprinklerSharp.tsx index f5ec91ce3..018fcbb43 100644 --- a/src/IconSprinklerSharp.tsx +++ b/src/IconSprinklerSharp.tsx @@ -8,4 +8,4 @@ const IconSprinklerSharp: React.FC = ({ ...props }) => ( ) -export { IconSprinklerSharp as default } +export default IconSprinklerSharp diff --git a/src/IconSprinklerSharpFilled.tsx b/src/IconSprinklerSharpFilled.tsx index f0063187e..b7fbaf605 100644 --- a/src/IconSprinklerSharpFilled.tsx +++ b/src/IconSprinklerSharpFilled.tsx @@ -8,4 +8,4 @@ const IconSprinklerSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconSprinklerSharpFilled as default } +export default IconSprinklerSharpFilled diff --git a/src/IconSprintOutlined.tsx b/src/IconSprintOutlined.tsx index ce0813b8d..9e65f12fb 100644 --- a/src/IconSprintOutlined.tsx +++ b/src/IconSprintOutlined.tsx @@ -8,4 +8,4 @@ const IconSprintOutlined: React.FC = ({ ...props }) => ( ) -export { IconSprintOutlined as default } +export default IconSprintOutlined diff --git a/src/IconSprintOutlinedFilled.tsx b/src/IconSprintOutlinedFilled.tsx index 3aef81148..e85c86c0f 100644 --- a/src/IconSprintOutlinedFilled.tsx +++ b/src/IconSprintOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconSprintOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconSprintOutlinedFilled as default } +export default IconSprintOutlinedFilled diff --git a/src/IconSprintRounded.tsx b/src/IconSprintRounded.tsx index e53164a50..c3c8e71ae 100644 --- a/src/IconSprintRounded.tsx +++ b/src/IconSprintRounded.tsx @@ -8,4 +8,4 @@ const IconSprintRounded: React.FC = ({ ...props }) => ( ) -export { IconSprintRounded as default } +export default IconSprintRounded diff --git a/src/IconSprintRoundedFilled.tsx b/src/IconSprintRoundedFilled.tsx index 5dc1503e4..51f1b1db6 100644 --- a/src/IconSprintRoundedFilled.tsx +++ b/src/IconSprintRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconSprintRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconSprintRoundedFilled as default } +export default IconSprintRoundedFilled diff --git a/src/IconSprintSharp.tsx b/src/IconSprintSharp.tsx index c15c17ca6..16621b9f5 100644 --- a/src/IconSprintSharp.tsx +++ b/src/IconSprintSharp.tsx @@ -8,4 +8,4 @@ const IconSprintSharp: React.FC = ({ ...props }) => ( ) -export { IconSprintSharp as default } +export default IconSprintSharp diff --git a/src/IconSprintSharpFilled.tsx b/src/IconSprintSharpFilled.tsx index 488d71b49..dc675641d 100644 --- a/src/IconSprintSharpFilled.tsx +++ b/src/IconSprintSharpFilled.tsx @@ -8,4 +8,4 @@ const IconSprintSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconSprintSharpFilled as default } +export default IconSprintSharpFilled diff --git a/src/IconSquareFootOutlined.tsx b/src/IconSquareFootOutlined.tsx index 3e94f2693..c272c9692 100644 --- a/src/IconSquareFootOutlined.tsx +++ b/src/IconSquareFootOutlined.tsx @@ -8,4 +8,4 @@ const IconSquareFootOutlined: React.FC = ({ ...props }) => ( ) -export { IconSquareFootOutlined as default } +export default IconSquareFootOutlined diff --git a/src/IconSquareFootOutlinedFilled.tsx b/src/IconSquareFootOutlinedFilled.tsx index b0e59dc45..f656f1c97 100644 --- a/src/IconSquareFootOutlinedFilled.tsx +++ b/src/IconSquareFootOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconSquareFootOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconSquareFootOutlinedFilled as default } +export default IconSquareFootOutlinedFilled diff --git a/src/IconSquareFootRounded.tsx b/src/IconSquareFootRounded.tsx index 1e6ed582b..c740b9881 100644 --- a/src/IconSquareFootRounded.tsx +++ b/src/IconSquareFootRounded.tsx @@ -8,4 +8,4 @@ const IconSquareFootRounded: React.FC = ({ ...props }) => ( ) -export { IconSquareFootRounded as default } +export default IconSquareFootRounded diff --git a/src/IconSquareFootRoundedFilled.tsx b/src/IconSquareFootRoundedFilled.tsx index e4a5bbc5c..f3531df3e 100644 --- a/src/IconSquareFootRoundedFilled.tsx +++ b/src/IconSquareFootRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconSquareFootRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconSquareFootRoundedFilled as default } +export default IconSquareFootRoundedFilled diff --git a/src/IconSquareFootSharp.tsx b/src/IconSquareFootSharp.tsx index d6bbf726c..51ce130aa 100644 --- a/src/IconSquareFootSharp.tsx +++ b/src/IconSquareFootSharp.tsx @@ -8,4 +8,4 @@ const IconSquareFootSharp: React.FC = ({ ...props }) => ( ) -export { IconSquareFootSharp as default } +export default IconSquareFootSharp diff --git a/src/IconSquareFootSharpFilled.tsx b/src/IconSquareFootSharpFilled.tsx index 299e80401..be1f44291 100644 --- a/src/IconSquareFootSharpFilled.tsx +++ b/src/IconSquareFootSharpFilled.tsx @@ -8,4 +8,4 @@ const IconSquareFootSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconSquareFootSharpFilled as default } +export default IconSquareFootSharpFilled diff --git a/src/IconSquareOutlined.tsx b/src/IconSquareOutlined.tsx index 3167f1cc6..6fd27f214 100644 --- a/src/IconSquareOutlined.tsx +++ b/src/IconSquareOutlined.tsx @@ -8,4 +8,4 @@ const IconSquareOutlined: React.FC = ({ ...props }) => ( ) -export { IconSquareOutlined as default } +export default IconSquareOutlined diff --git a/src/IconSquareOutlinedFilled.tsx b/src/IconSquareOutlinedFilled.tsx index b2c8d4a5d..9e44fbd59 100644 --- a/src/IconSquareOutlinedFilled.tsx +++ b/src/IconSquareOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconSquareOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconSquareOutlinedFilled as default } +export default IconSquareOutlinedFilled diff --git a/src/IconSquareRounded.tsx b/src/IconSquareRounded.tsx index e21eca9e1..abd4bdb17 100644 --- a/src/IconSquareRounded.tsx +++ b/src/IconSquareRounded.tsx @@ -8,4 +8,4 @@ const IconSquareRounded: React.FC = ({ ...props }) => ( ) -export { IconSquareRounded as default } +export default IconSquareRounded diff --git a/src/IconSquareRoundedFilled.tsx b/src/IconSquareRoundedFilled.tsx index cdd3c17d2..b62f79ece 100644 --- a/src/IconSquareRoundedFilled.tsx +++ b/src/IconSquareRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconSquareRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconSquareRoundedFilled as default } +export default IconSquareRoundedFilled diff --git a/src/IconSquareSharp.tsx b/src/IconSquareSharp.tsx index 0415c43af..912d1b337 100644 --- a/src/IconSquareSharp.tsx +++ b/src/IconSquareSharp.tsx @@ -8,4 +8,4 @@ const IconSquareSharp: React.FC = ({ ...props }) => ( ) -export { IconSquareSharp as default } +export default IconSquareSharp diff --git a/src/IconSquareSharpFilled.tsx b/src/IconSquareSharpFilled.tsx index 2766606fc..7bee68e72 100644 --- a/src/IconSquareSharpFilled.tsx +++ b/src/IconSquareSharpFilled.tsx @@ -8,4 +8,4 @@ const IconSquareSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconSquareSharpFilled as default } +export default IconSquareSharpFilled diff --git a/src/IconSsidChartOutlined.tsx b/src/IconSsidChartOutlined.tsx index 26988202b..5d7fd55fc 100644 --- a/src/IconSsidChartOutlined.tsx +++ b/src/IconSsidChartOutlined.tsx @@ -8,4 +8,4 @@ const IconSsidChartOutlined: React.FC = ({ ...props }) => ( ) -export { IconSsidChartOutlined as default } +export default IconSsidChartOutlined diff --git a/src/IconSsidChartOutlinedFilled.tsx b/src/IconSsidChartOutlinedFilled.tsx index ca021ef03..1a4c2f968 100644 --- a/src/IconSsidChartOutlinedFilled.tsx +++ b/src/IconSsidChartOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconSsidChartOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconSsidChartOutlinedFilled as default } +export default IconSsidChartOutlinedFilled diff --git a/src/IconSsidChartRounded.tsx b/src/IconSsidChartRounded.tsx index aa32f9451..f3adea50f 100644 --- a/src/IconSsidChartRounded.tsx +++ b/src/IconSsidChartRounded.tsx @@ -8,4 +8,4 @@ const IconSsidChartRounded: React.FC = ({ ...props }) => ( ) -export { IconSsidChartRounded as default } +export default IconSsidChartRounded diff --git a/src/IconSsidChartRoundedFilled.tsx b/src/IconSsidChartRoundedFilled.tsx index 3c2be26c8..536903ecc 100644 --- a/src/IconSsidChartRoundedFilled.tsx +++ b/src/IconSsidChartRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconSsidChartRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconSsidChartRoundedFilled as default } +export default IconSsidChartRoundedFilled diff --git a/src/IconSsidChartSharp.tsx b/src/IconSsidChartSharp.tsx index 3977741c0..b8e8f6852 100644 --- a/src/IconSsidChartSharp.tsx +++ b/src/IconSsidChartSharp.tsx @@ -8,4 +8,4 @@ const IconSsidChartSharp: React.FC = ({ ...props }) => ( ) -export { IconSsidChartSharp as default } +export default IconSsidChartSharp diff --git a/src/IconSsidChartSharpFilled.tsx b/src/IconSsidChartSharpFilled.tsx index 506729531..a7bb8c718 100644 --- a/src/IconSsidChartSharpFilled.tsx +++ b/src/IconSsidChartSharpFilled.tsx @@ -8,4 +8,4 @@ const IconSsidChartSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconSsidChartSharpFilled as default } +export default IconSsidChartSharpFilled diff --git a/src/IconStackHexagonOutlined.tsx b/src/IconStackHexagonOutlined.tsx index af825c267..9f7724694 100644 --- a/src/IconStackHexagonOutlined.tsx +++ b/src/IconStackHexagonOutlined.tsx @@ -8,4 +8,4 @@ const IconStackHexagonOutlined: React.FC = ({ ...props }) => ( ) -export { IconStackHexagonOutlined as default } +export default IconStackHexagonOutlined diff --git a/src/IconStackHexagonOutlinedFilled.tsx b/src/IconStackHexagonOutlinedFilled.tsx index 184a9b53a..e24788286 100644 --- a/src/IconStackHexagonOutlinedFilled.tsx +++ b/src/IconStackHexagonOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconStackHexagonOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconStackHexagonOutlinedFilled as default } +export default IconStackHexagonOutlinedFilled diff --git a/src/IconStackHexagonRounded.tsx b/src/IconStackHexagonRounded.tsx index b7787f5a8..5bb0f4c84 100644 --- a/src/IconStackHexagonRounded.tsx +++ b/src/IconStackHexagonRounded.tsx @@ -8,4 +8,4 @@ const IconStackHexagonRounded: React.FC = ({ ...props }) => ( ) -export { IconStackHexagonRounded as default } +export default IconStackHexagonRounded diff --git a/src/IconStackHexagonRoundedFilled.tsx b/src/IconStackHexagonRoundedFilled.tsx index 7b311ce2d..f673b883f 100644 --- a/src/IconStackHexagonRoundedFilled.tsx +++ b/src/IconStackHexagonRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconStackHexagonRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconStackHexagonRoundedFilled as default } +export default IconStackHexagonRoundedFilled diff --git a/src/IconStackHexagonSharp.tsx b/src/IconStackHexagonSharp.tsx index 7fcd296f2..78eda2810 100644 --- a/src/IconStackHexagonSharp.tsx +++ b/src/IconStackHexagonSharp.tsx @@ -8,4 +8,4 @@ const IconStackHexagonSharp: React.FC = ({ ...props }) => ( ) -export { IconStackHexagonSharp as default } +export default IconStackHexagonSharp diff --git a/src/IconStackHexagonSharpFilled.tsx b/src/IconStackHexagonSharpFilled.tsx index 13de09786..a3e4eccd6 100644 --- a/src/IconStackHexagonSharpFilled.tsx +++ b/src/IconStackHexagonSharpFilled.tsx @@ -8,4 +8,4 @@ const IconStackHexagonSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconStackHexagonSharpFilled as default } +export default IconStackHexagonSharpFilled diff --git a/src/IconStackOffOutlined.tsx b/src/IconStackOffOutlined.tsx index 21a007994..21ac01c16 100644 --- a/src/IconStackOffOutlined.tsx +++ b/src/IconStackOffOutlined.tsx @@ -8,4 +8,4 @@ const IconStackOffOutlined: React.FC = ({ ...props }) => ( ) -export { IconStackOffOutlined as default } +export default IconStackOffOutlined diff --git a/src/IconStackOffOutlinedFilled.tsx b/src/IconStackOffOutlinedFilled.tsx index 28187dcd1..8f844a5fb 100644 --- a/src/IconStackOffOutlinedFilled.tsx +++ b/src/IconStackOffOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconStackOffOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconStackOffOutlinedFilled as default } +export default IconStackOffOutlinedFilled diff --git a/src/IconStackOffRounded.tsx b/src/IconStackOffRounded.tsx index 104623973..a2da19c3d 100644 --- a/src/IconStackOffRounded.tsx +++ b/src/IconStackOffRounded.tsx @@ -8,4 +8,4 @@ const IconStackOffRounded: React.FC = ({ ...props }) => ( ) -export { IconStackOffRounded as default } +export default IconStackOffRounded diff --git a/src/IconStackOffRoundedFilled.tsx b/src/IconStackOffRoundedFilled.tsx index 314b74b34..a5d100433 100644 --- a/src/IconStackOffRoundedFilled.tsx +++ b/src/IconStackOffRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconStackOffRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconStackOffRoundedFilled as default } +export default IconStackOffRoundedFilled diff --git a/src/IconStackOffSharp.tsx b/src/IconStackOffSharp.tsx index e901a1253..a93e32c26 100644 --- a/src/IconStackOffSharp.tsx +++ b/src/IconStackOffSharp.tsx @@ -8,4 +8,4 @@ const IconStackOffSharp: React.FC = ({ ...props }) => ( ) -export { IconStackOffSharp as default } +export default IconStackOffSharp diff --git a/src/IconStackOffSharpFilled.tsx b/src/IconStackOffSharpFilled.tsx index eace6ead7..0dfb82122 100644 --- a/src/IconStackOffSharpFilled.tsx +++ b/src/IconStackOffSharpFilled.tsx @@ -8,4 +8,4 @@ const IconStackOffSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconStackOffSharpFilled as default } +export default IconStackOffSharpFilled diff --git a/src/IconStackOutlined.tsx b/src/IconStackOutlined.tsx index 44fe565f7..f36008c62 100644 --- a/src/IconStackOutlined.tsx +++ b/src/IconStackOutlined.tsx @@ -8,4 +8,4 @@ const IconStackOutlined: React.FC = ({ ...props }) => ( ) -export { IconStackOutlined as default } +export default IconStackOutlined diff --git a/src/IconStackOutlinedFilled.tsx b/src/IconStackOutlinedFilled.tsx index c8e9a44d9..26a200f84 100644 --- a/src/IconStackOutlinedFilled.tsx +++ b/src/IconStackOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconStackOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconStackOutlinedFilled as default } +export default IconStackOutlinedFilled diff --git a/src/IconStackRounded.tsx b/src/IconStackRounded.tsx index b7d87bed8..8c0fab4f1 100644 --- a/src/IconStackRounded.tsx +++ b/src/IconStackRounded.tsx @@ -8,4 +8,4 @@ const IconStackRounded: React.FC = ({ ...props }) => ( ) -export { IconStackRounded as default } +export default IconStackRounded diff --git a/src/IconStackRoundedFilled.tsx b/src/IconStackRoundedFilled.tsx index e5cccc293..0441dcb4e 100644 --- a/src/IconStackRoundedFilled.tsx +++ b/src/IconStackRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconStackRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconStackRoundedFilled as default } +export default IconStackRoundedFilled diff --git a/src/IconStackSharp.tsx b/src/IconStackSharp.tsx index 3259da9fd..18e9e9567 100644 --- a/src/IconStackSharp.tsx +++ b/src/IconStackSharp.tsx @@ -8,4 +8,4 @@ const IconStackSharp: React.FC = ({ ...props }) => ( ) -export { IconStackSharp as default } +export default IconStackSharp diff --git a/src/IconStackSharpFilled.tsx b/src/IconStackSharpFilled.tsx index 34149d477..9a15972cc 100644 --- a/src/IconStackSharpFilled.tsx +++ b/src/IconStackSharpFilled.tsx @@ -8,4 +8,4 @@ const IconStackSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconStackSharpFilled as default } +export default IconStackSharpFilled diff --git a/src/IconStackStarOutlined.tsx b/src/IconStackStarOutlined.tsx index 85866a0f1..c9e7574a3 100644 --- a/src/IconStackStarOutlined.tsx +++ b/src/IconStackStarOutlined.tsx @@ -8,4 +8,4 @@ const IconStackStarOutlined: React.FC = ({ ...props }) => ( ) -export { IconStackStarOutlined as default } +export default IconStackStarOutlined diff --git a/src/IconStackStarOutlinedFilled.tsx b/src/IconStackStarOutlinedFilled.tsx index 68fc2ecd2..9baa4d1f5 100644 --- a/src/IconStackStarOutlinedFilled.tsx +++ b/src/IconStackStarOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconStackStarOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconStackStarOutlinedFilled as default } +export default IconStackStarOutlinedFilled diff --git a/src/IconStackStarRounded.tsx b/src/IconStackStarRounded.tsx index 42b1e9549..e80ff0c3e 100644 --- a/src/IconStackStarRounded.tsx +++ b/src/IconStackStarRounded.tsx @@ -8,4 +8,4 @@ const IconStackStarRounded: React.FC = ({ ...props }) => ( ) -export { IconStackStarRounded as default } +export default IconStackStarRounded diff --git a/src/IconStackStarRoundedFilled.tsx b/src/IconStackStarRoundedFilled.tsx index 9142968d7..c851da6b8 100644 --- a/src/IconStackStarRoundedFilled.tsx +++ b/src/IconStackStarRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconStackStarRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconStackStarRoundedFilled as default } +export default IconStackStarRoundedFilled diff --git a/src/IconStackStarSharp.tsx b/src/IconStackStarSharp.tsx index 512ad6cf7..8731f3a4c 100644 --- a/src/IconStackStarSharp.tsx +++ b/src/IconStackStarSharp.tsx @@ -8,4 +8,4 @@ const IconStackStarSharp: React.FC = ({ ...props }) => ( ) -export { IconStackStarSharp as default } +export default IconStackStarSharp diff --git a/src/IconStackStarSharpFilled.tsx b/src/IconStackStarSharpFilled.tsx index 0aa5b7919..8d81775a1 100644 --- a/src/IconStackStarSharpFilled.tsx +++ b/src/IconStackStarSharpFilled.tsx @@ -8,4 +8,4 @@ const IconStackStarSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconStackStarSharpFilled as default } +export default IconStackStarSharpFilled diff --git a/src/IconStackedBarChartOutlined.tsx b/src/IconStackedBarChartOutlined.tsx index 28e13b076..c7daa6081 100644 --- a/src/IconStackedBarChartOutlined.tsx +++ b/src/IconStackedBarChartOutlined.tsx @@ -8,4 +8,4 @@ const IconStackedBarChartOutlined: React.FC = ({ ...props }) => ( ) -export { IconStackedBarChartOutlined as default } +export default IconStackedBarChartOutlined diff --git a/src/IconStackedBarChartOutlinedFilled.tsx b/src/IconStackedBarChartOutlinedFilled.tsx index f6da857fa..4dfe9d889 100644 --- a/src/IconStackedBarChartOutlinedFilled.tsx +++ b/src/IconStackedBarChartOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconStackedBarChartOutlinedFilled: React.FC = ({ ) -export { IconStackedBarChartOutlinedFilled as default } +export default IconStackedBarChartOutlinedFilled diff --git a/src/IconStackedBarChartRounded.tsx b/src/IconStackedBarChartRounded.tsx index 64a85e3dd..1e574a6d6 100644 --- a/src/IconStackedBarChartRounded.tsx +++ b/src/IconStackedBarChartRounded.tsx @@ -8,4 +8,4 @@ const IconStackedBarChartRounded: React.FC = ({ ...props }) => ( ) -export { IconStackedBarChartRounded as default } +export default IconStackedBarChartRounded diff --git a/src/IconStackedBarChartRoundedFilled.tsx b/src/IconStackedBarChartRoundedFilled.tsx index c62b25f4d..aef0ad321 100644 --- a/src/IconStackedBarChartRoundedFilled.tsx +++ b/src/IconStackedBarChartRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconStackedBarChartRoundedFilled: React.FC = ({ ) -export { IconStackedBarChartRoundedFilled as default } +export default IconStackedBarChartRoundedFilled diff --git a/src/IconStackedBarChartSharp.tsx b/src/IconStackedBarChartSharp.tsx index ae839d47f..e73a15036 100644 --- a/src/IconStackedBarChartSharp.tsx +++ b/src/IconStackedBarChartSharp.tsx @@ -8,4 +8,4 @@ const IconStackedBarChartSharp: React.FC = ({ ...props }) => ( ) -export { IconStackedBarChartSharp as default } +export default IconStackedBarChartSharp diff --git a/src/IconStackedBarChartSharpFilled.tsx b/src/IconStackedBarChartSharpFilled.tsx index a150f45a3..97d3e6a77 100644 --- a/src/IconStackedBarChartSharpFilled.tsx +++ b/src/IconStackedBarChartSharpFilled.tsx @@ -8,4 +8,4 @@ const IconStackedBarChartSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconStackedBarChartSharpFilled as default } +export default IconStackedBarChartSharpFilled diff --git a/src/IconStackedEmailOutlined.tsx b/src/IconStackedEmailOutlined.tsx index 1f480b3a0..74f1ce4bb 100644 --- a/src/IconStackedEmailOutlined.tsx +++ b/src/IconStackedEmailOutlined.tsx @@ -8,4 +8,4 @@ const IconStackedEmailOutlined: React.FC = ({ ...props }) => ( ) -export { IconStackedEmailOutlined as default } +export default IconStackedEmailOutlined diff --git a/src/IconStackedEmailOutlinedFilled.tsx b/src/IconStackedEmailOutlinedFilled.tsx index 251a8058a..a5ffbb6b7 100644 --- a/src/IconStackedEmailOutlinedFilled.tsx +++ b/src/IconStackedEmailOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconStackedEmailOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconStackedEmailOutlinedFilled as default } +export default IconStackedEmailOutlinedFilled diff --git a/src/IconStackedEmailRounded.tsx b/src/IconStackedEmailRounded.tsx index 0eba1a871..38b09ae98 100644 --- a/src/IconStackedEmailRounded.tsx +++ b/src/IconStackedEmailRounded.tsx @@ -8,4 +8,4 @@ const IconStackedEmailRounded: React.FC = ({ ...props }) => ( ) -export { IconStackedEmailRounded as default } +export default IconStackedEmailRounded diff --git a/src/IconStackedEmailRoundedFilled.tsx b/src/IconStackedEmailRoundedFilled.tsx index b601e4f57..cbe49cf17 100644 --- a/src/IconStackedEmailRoundedFilled.tsx +++ b/src/IconStackedEmailRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconStackedEmailRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconStackedEmailRoundedFilled as default } +export default IconStackedEmailRoundedFilled diff --git a/src/IconStackedEmailSharp.tsx b/src/IconStackedEmailSharp.tsx index c0c55fb9d..7e93361b2 100644 --- a/src/IconStackedEmailSharp.tsx +++ b/src/IconStackedEmailSharp.tsx @@ -8,4 +8,4 @@ const IconStackedEmailSharp: React.FC = ({ ...props }) => ( ) -export { IconStackedEmailSharp as default } +export default IconStackedEmailSharp diff --git a/src/IconStackedEmailSharpFilled.tsx b/src/IconStackedEmailSharpFilled.tsx index 4b00f45d8..e8f22ad43 100644 --- a/src/IconStackedEmailSharpFilled.tsx +++ b/src/IconStackedEmailSharpFilled.tsx @@ -8,4 +8,4 @@ const IconStackedEmailSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconStackedEmailSharpFilled as default } +export default IconStackedEmailSharpFilled diff --git a/src/IconStackedInboxOutlined.tsx b/src/IconStackedInboxOutlined.tsx index 71031235c..24a64e02e 100644 --- a/src/IconStackedInboxOutlined.tsx +++ b/src/IconStackedInboxOutlined.tsx @@ -8,4 +8,4 @@ const IconStackedInboxOutlined: React.FC = ({ ...props }) => ( ) -export { IconStackedInboxOutlined as default } +export default IconStackedInboxOutlined diff --git a/src/IconStackedInboxOutlinedFilled.tsx b/src/IconStackedInboxOutlinedFilled.tsx index 8a2c26e76..4d30228c9 100644 --- a/src/IconStackedInboxOutlinedFilled.tsx +++ b/src/IconStackedInboxOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconStackedInboxOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconStackedInboxOutlinedFilled as default } +export default IconStackedInboxOutlinedFilled diff --git a/src/IconStackedInboxRounded.tsx b/src/IconStackedInboxRounded.tsx index 69dd03500..fded466ed 100644 --- a/src/IconStackedInboxRounded.tsx +++ b/src/IconStackedInboxRounded.tsx @@ -8,4 +8,4 @@ const IconStackedInboxRounded: React.FC = ({ ...props }) => ( ) -export { IconStackedInboxRounded as default } +export default IconStackedInboxRounded diff --git a/src/IconStackedInboxRoundedFilled.tsx b/src/IconStackedInboxRoundedFilled.tsx index 89998705e..a939834ed 100644 --- a/src/IconStackedInboxRoundedFilled.tsx +++ b/src/IconStackedInboxRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconStackedInboxRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconStackedInboxRoundedFilled as default } +export default IconStackedInboxRoundedFilled diff --git a/src/IconStackedInboxSharp.tsx b/src/IconStackedInboxSharp.tsx index e3a7c7981..05b4b615c 100644 --- a/src/IconStackedInboxSharp.tsx +++ b/src/IconStackedInboxSharp.tsx @@ -8,4 +8,4 @@ const IconStackedInboxSharp: React.FC = ({ ...props }) => ( ) -export { IconStackedInboxSharp as default } +export default IconStackedInboxSharp diff --git a/src/IconStackedInboxSharpFilled.tsx b/src/IconStackedInboxSharpFilled.tsx index 49ad28ccc..717e6a523 100644 --- a/src/IconStackedInboxSharpFilled.tsx +++ b/src/IconStackedInboxSharpFilled.tsx @@ -8,4 +8,4 @@ const IconStackedInboxSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconStackedInboxSharpFilled as default } +export default IconStackedInboxSharpFilled diff --git a/src/IconStackedLineChartOutlined.tsx b/src/IconStackedLineChartOutlined.tsx index e259be03f..3c74b96c4 100644 --- a/src/IconStackedLineChartOutlined.tsx +++ b/src/IconStackedLineChartOutlined.tsx @@ -8,4 +8,4 @@ const IconStackedLineChartOutlined: React.FC = ({ ...props }) => ( ) -export { IconStackedLineChartOutlined as default } +export default IconStackedLineChartOutlined diff --git a/src/IconStackedLineChartOutlinedFilled.tsx b/src/IconStackedLineChartOutlinedFilled.tsx index a9b7b3f2b..3051844e8 100644 --- a/src/IconStackedLineChartOutlinedFilled.tsx +++ b/src/IconStackedLineChartOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconStackedLineChartOutlinedFilled: React.FC = ({ ) -export { IconStackedLineChartOutlinedFilled as default } +export default IconStackedLineChartOutlinedFilled diff --git a/src/IconStackedLineChartRounded.tsx b/src/IconStackedLineChartRounded.tsx index 6359581dc..7e141b914 100644 --- a/src/IconStackedLineChartRounded.tsx +++ b/src/IconStackedLineChartRounded.tsx @@ -8,4 +8,4 @@ const IconStackedLineChartRounded: React.FC = ({ ...props }) => ( ) -export { IconStackedLineChartRounded as default } +export default IconStackedLineChartRounded diff --git a/src/IconStackedLineChartRoundedFilled.tsx b/src/IconStackedLineChartRoundedFilled.tsx index a3f8e2d8c..7c9d19361 100644 --- a/src/IconStackedLineChartRoundedFilled.tsx +++ b/src/IconStackedLineChartRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconStackedLineChartRoundedFilled: React.FC = ({ ) -export { IconStackedLineChartRoundedFilled as default } +export default IconStackedLineChartRoundedFilled diff --git a/src/IconStackedLineChartSharp.tsx b/src/IconStackedLineChartSharp.tsx index 9625cbe4b..f6c354c3f 100644 --- a/src/IconStackedLineChartSharp.tsx +++ b/src/IconStackedLineChartSharp.tsx @@ -8,4 +8,4 @@ const IconStackedLineChartSharp: React.FC = ({ ...props }) => ( ) -export { IconStackedLineChartSharp as default } +export default IconStackedLineChartSharp diff --git a/src/IconStackedLineChartSharpFilled.tsx b/src/IconStackedLineChartSharpFilled.tsx index 63b2ac1bf..924d33f7f 100644 --- a/src/IconStackedLineChartSharpFilled.tsx +++ b/src/IconStackedLineChartSharpFilled.tsx @@ -8,4 +8,4 @@ const IconStackedLineChartSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconStackedLineChartSharpFilled as default } +export default IconStackedLineChartSharpFilled diff --git a/src/IconStacksOutlined.tsx b/src/IconStacksOutlined.tsx index 910d9f5c4..a91978e32 100644 --- a/src/IconStacksOutlined.tsx +++ b/src/IconStacksOutlined.tsx @@ -8,4 +8,4 @@ const IconStacksOutlined: React.FC = ({ ...props }) => ( ) -export { IconStacksOutlined as default } +export default IconStacksOutlined diff --git a/src/IconStacksOutlinedFilled.tsx b/src/IconStacksOutlinedFilled.tsx index d65e7bf01..12db7d673 100644 --- a/src/IconStacksOutlinedFilled.tsx +++ b/src/IconStacksOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconStacksOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconStacksOutlinedFilled as default } +export default IconStacksOutlinedFilled diff --git a/src/IconStacksRounded.tsx b/src/IconStacksRounded.tsx index cb96dbf09..fad4b1cd5 100644 --- a/src/IconStacksRounded.tsx +++ b/src/IconStacksRounded.tsx @@ -8,4 +8,4 @@ const IconStacksRounded: React.FC = ({ ...props }) => ( ) -export { IconStacksRounded as default } +export default IconStacksRounded diff --git a/src/IconStacksRoundedFilled.tsx b/src/IconStacksRoundedFilled.tsx index e98b15a87..103aea139 100644 --- a/src/IconStacksRoundedFilled.tsx +++ b/src/IconStacksRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconStacksRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconStacksRoundedFilled as default } +export default IconStacksRoundedFilled diff --git a/src/IconStacksSharp.tsx b/src/IconStacksSharp.tsx index b7203a448..763ca31cd 100644 --- a/src/IconStacksSharp.tsx +++ b/src/IconStacksSharp.tsx @@ -8,4 +8,4 @@ const IconStacksSharp: React.FC = ({ ...props }) => ( ) -export { IconStacksSharp as default } +export default IconStacksSharp diff --git a/src/IconStacksSharpFilled.tsx b/src/IconStacksSharpFilled.tsx index 9b30dfa07..3cb1d95b0 100644 --- a/src/IconStacksSharpFilled.tsx +++ b/src/IconStacksSharpFilled.tsx @@ -8,4 +8,4 @@ const IconStacksSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconStacksSharpFilled as default } +export default IconStacksSharpFilled diff --git a/src/IconStadiaControllerOutlined.tsx b/src/IconStadiaControllerOutlined.tsx index cc12a5dac..d9e95b197 100644 --- a/src/IconStadiaControllerOutlined.tsx +++ b/src/IconStadiaControllerOutlined.tsx @@ -8,4 +8,4 @@ const IconStadiaControllerOutlined: React.FC = ({ ...props }) => ( ) -export { IconStadiaControllerOutlined as default } +export default IconStadiaControllerOutlined diff --git a/src/IconStadiaControllerOutlinedFilled.tsx b/src/IconStadiaControllerOutlinedFilled.tsx index 6bb0db9d0..438b96680 100644 --- a/src/IconStadiaControllerOutlinedFilled.tsx +++ b/src/IconStadiaControllerOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconStadiaControllerOutlinedFilled: React.FC = ({ ) -export { IconStadiaControllerOutlinedFilled as default } +export default IconStadiaControllerOutlinedFilled diff --git a/src/IconStadiaControllerRounded.tsx b/src/IconStadiaControllerRounded.tsx index 453edc200..57458f19d 100644 --- a/src/IconStadiaControllerRounded.tsx +++ b/src/IconStadiaControllerRounded.tsx @@ -8,4 +8,4 @@ const IconStadiaControllerRounded: React.FC = ({ ...props }) => ( ) -export { IconStadiaControllerRounded as default } +export default IconStadiaControllerRounded diff --git a/src/IconStadiaControllerRoundedFilled.tsx b/src/IconStadiaControllerRoundedFilled.tsx index bd2bc2538..47105b5cd 100644 --- a/src/IconStadiaControllerRoundedFilled.tsx +++ b/src/IconStadiaControllerRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconStadiaControllerRoundedFilled: React.FC = ({ ) -export { IconStadiaControllerRoundedFilled as default } +export default IconStadiaControllerRoundedFilled diff --git a/src/IconStadiaControllerSharp.tsx b/src/IconStadiaControllerSharp.tsx index 9981cc278..f754fe6bf 100644 --- a/src/IconStadiaControllerSharp.tsx +++ b/src/IconStadiaControllerSharp.tsx @@ -8,4 +8,4 @@ const IconStadiaControllerSharp: React.FC = ({ ...props }) => ( ) -export { IconStadiaControllerSharp as default } +export default IconStadiaControllerSharp diff --git a/src/IconStadiaControllerSharpFilled.tsx b/src/IconStadiaControllerSharpFilled.tsx index 888818c7c..b9b6cc961 100644 --- a/src/IconStadiaControllerSharpFilled.tsx +++ b/src/IconStadiaControllerSharpFilled.tsx @@ -8,4 +8,4 @@ const IconStadiaControllerSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconStadiaControllerSharpFilled as default } +export default IconStadiaControllerSharpFilled diff --git a/src/IconStadiumOutlined.tsx b/src/IconStadiumOutlined.tsx index 4f010b70d..45dee0b50 100644 --- a/src/IconStadiumOutlined.tsx +++ b/src/IconStadiumOutlined.tsx @@ -8,4 +8,4 @@ const IconStadiumOutlined: React.FC = ({ ...props }) => ( ) -export { IconStadiumOutlined as default } +export default IconStadiumOutlined diff --git a/src/IconStadiumOutlinedFilled.tsx b/src/IconStadiumOutlinedFilled.tsx index ab14c8786..3f2f9b9c6 100644 --- a/src/IconStadiumOutlinedFilled.tsx +++ b/src/IconStadiumOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconStadiumOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconStadiumOutlinedFilled as default } +export default IconStadiumOutlinedFilled diff --git a/src/IconStadiumRounded.tsx b/src/IconStadiumRounded.tsx index aa42b01e3..3a9943e0b 100644 --- a/src/IconStadiumRounded.tsx +++ b/src/IconStadiumRounded.tsx @@ -8,4 +8,4 @@ const IconStadiumRounded: React.FC = ({ ...props }) => ( ) -export { IconStadiumRounded as default } +export default IconStadiumRounded diff --git a/src/IconStadiumRoundedFilled.tsx b/src/IconStadiumRoundedFilled.tsx index 1f9843a5e..6a0160b14 100644 --- a/src/IconStadiumRoundedFilled.tsx +++ b/src/IconStadiumRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconStadiumRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconStadiumRoundedFilled as default } +export default IconStadiumRoundedFilled diff --git a/src/IconStadiumSharp.tsx b/src/IconStadiumSharp.tsx index 09d7a910e..8696745c9 100644 --- a/src/IconStadiumSharp.tsx +++ b/src/IconStadiumSharp.tsx @@ -8,4 +8,4 @@ const IconStadiumSharp: React.FC = ({ ...props }) => ( ) -export { IconStadiumSharp as default } +export default IconStadiumSharp diff --git a/src/IconStadiumSharpFilled.tsx b/src/IconStadiumSharpFilled.tsx index 068e6d9cf..92599e9a7 100644 --- a/src/IconStadiumSharpFilled.tsx +++ b/src/IconStadiumSharpFilled.tsx @@ -8,4 +8,4 @@ const IconStadiumSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconStadiumSharpFilled as default } +export default IconStadiumSharpFilled diff --git a/src/IconStairs2Outlined.tsx b/src/IconStairs2Outlined.tsx index 0110f6ba9..b3314bcbc 100644 --- a/src/IconStairs2Outlined.tsx +++ b/src/IconStairs2Outlined.tsx @@ -8,4 +8,4 @@ const IconStairs2Outlined: React.FC = ({ ...props }) => ( ) -export { IconStairs2Outlined as default } +export default IconStairs2Outlined diff --git a/src/IconStairs2OutlinedFilled.tsx b/src/IconStairs2OutlinedFilled.tsx index 7a8fe0773..7bc277044 100644 --- a/src/IconStairs2OutlinedFilled.tsx +++ b/src/IconStairs2OutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconStairs2OutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconStairs2OutlinedFilled as default } +export default IconStairs2OutlinedFilled diff --git a/src/IconStairs2Rounded.tsx b/src/IconStairs2Rounded.tsx index 518c07677..11e33d5cd 100644 --- a/src/IconStairs2Rounded.tsx +++ b/src/IconStairs2Rounded.tsx @@ -8,4 +8,4 @@ const IconStairs2Rounded: React.FC = ({ ...props }) => ( ) -export { IconStairs2Rounded as default } +export default IconStairs2Rounded diff --git a/src/IconStairs2RoundedFilled.tsx b/src/IconStairs2RoundedFilled.tsx index 5636b47cb..773f4bfa4 100644 --- a/src/IconStairs2RoundedFilled.tsx +++ b/src/IconStairs2RoundedFilled.tsx @@ -8,4 +8,4 @@ const IconStairs2RoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconStairs2RoundedFilled as default } +export default IconStairs2RoundedFilled diff --git a/src/IconStairs2Sharp.tsx b/src/IconStairs2Sharp.tsx index 63d66d37e..64c47b368 100644 --- a/src/IconStairs2Sharp.tsx +++ b/src/IconStairs2Sharp.tsx @@ -8,4 +8,4 @@ const IconStairs2Sharp: React.FC = ({ ...props }) => ( ) -export { IconStairs2Sharp as default } +export default IconStairs2Sharp diff --git a/src/IconStairs2SharpFilled.tsx b/src/IconStairs2SharpFilled.tsx index 41d266010..392fb3a39 100644 --- a/src/IconStairs2SharpFilled.tsx +++ b/src/IconStairs2SharpFilled.tsx @@ -8,4 +8,4 @@ const IconStairs2SharpFilled: React.FC = ({ ...props }) => ( ) -export { IconStairs2SharpFilled as default } +export default IconStairs2SharpFilled diff --git a/src/IconStairsOutlined.tsx b/src/IconStairsOutlined.tsx index a463eaf61..37c349155 100644 --- a/src/IconStairsOutlined.tsx +++ b/src/IconStairsOutlined.tsx @@ -8,4 +8,4 @@ const IconStairsOutlined: React.FC = ({ ...props }) => ( ) -export { IconStairsOutlined as default } +export default IconStairsOutlined diff --git a/src/IconStairsOutlinedFilled.tsx b/src/IconStairsOutlinedFilled.tsx index 2b907dc8c..5db27ed88 100644 --- a/src/IconStairsOutlinedFilled.tsx +++ b/src/IconStairsOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconStairsOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconStairsOutlinedFilled as default } +export default IconStairsOutlinedFilled diff --git a/src/IconStairsRounded.tsx b/src/IconStairsRounded.tsx index d404ebe89..1de86d697 100644 --- a/src/IconStairsRounded.tsx +++ b/src/IconStairsRounded.tsx @@ -8,4 +8,4 @@ const IconStairsRounded: React.FC = ({ ...props }) => ( ) -export { IconStairsRounded as default } +export default IconStairsRounded diff --git a/src/IconStairsRoundedFilled.tsx b/src/IconStairsRoundedFilled.tsx index 6f366baaf..f225a667a 100644 --- a/src/IconStairsRoundedFilled.tsx +++ b/src/IconStairsRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconStairsRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconStairsRoundedFilled as default } +export default IconStairsRoundedFilled diff --git a/src/IconStairsSharp.tsx b/src/IconStairsSharp.tsx index 8f31ceed4..25a1adeea 100644 --- a/src/IconStairsSharp.tsx +++ b/src/IconStairsSharp.tsx @@ -8,4 +8,4 @@ const IconStairsSharp: React.FC = ({ ...props }) => ( ) -export { IconStairsSharp as default } +export default IconStairsSharp diff --git a/src/IconStairsSharpFilled.tsx b/src/IconStairsSharpFilled.tsx index e93acccbc..b44b3b1c8 100644 --- a/src/IconStairsSharpFilled.tsx +++ b/src/IconStairsSharpFilled.tsx @@ -8,4 +8,4 @@ const IconStairsSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconStairsSharpFilled as default } +export default IconStairsSharpFilled diff --git a/src/IconStarHalfOutlined.tsx b/src/IconStarHalfOutlined.tsx index d96e4416f..eeede5e2b 100644 --- a/src/IconStarHalfOutlined.tsx +++ b/src/IconStarHalfOutlined.tsx @@ -8,4 +8,4 @@ const IconStarHalfOutlined: React.FC = ({ ...props }) => ( ) -export { IconStarHalfOutlined as default } +export default IconStarHalfOutlined diff --git a/src/IconStarHalfOutlinedFilled.tsx b/src/IconStarHalfOutlinedFilled.tsx index fa34c3d80..5cb247e0b 100644 --- a/src/IconStarHalfOutlinedFilled.tsx +++ b/src/IconStarHalfOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconStarHalfOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconStarHalfOutlinedFilled as default } +export default IconStarHalfOutlinedFilled diff --git a/src/IconStarHalfRounded.tsx b/src/IconStarHalfRounded.tsx index adf27d84e..42852305c 100644 --- a/src/IconStarHalfRounded.tsx +++ b/src/IconStarHalfRounded.tsx @@ -8,4 +8,4 @@ const IconStarHalfRounded: React.FC = ({ ...props }) => ( ) -export { IconStarHalfRounded as default } +export default IconStarHalfRounded diff --git a/src/IconStarHalfRoundedFilled.tsx b/src/IconStarHalfRoundedFilled.tsx index 68af70b08..b2f906939 100644 --- a/src/IconStarHalfRoundedFilled.tsx +++ b/src/IconStarHalfRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconStarHalfRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconStarHalfRoundedFilled as default } +export default IconStarHalfRoundedFilled diff --git a/src/IconStarHalfSharp.tsx b/src/IconStarHalfSharp.tsx index 1254dc5ef..77243539f 100644 --- a/src/IconStarHalfSharp.tsx +++ b/src/IconStarHalfSharp.tsx @@ -8,4 +8,4 @@ const IconStarHalfSharp: React.FC = ({ ...props }) => ( ) -export { IconStarHalfSharp as default } +export default IconStarHalfSharp diff --git a/src/IconStarHalfSharpFilled.tsx b/src/IconStarHalfSharpFilled.tsx index 4cb27f02b..8566d1d5a 100644 --- a/src/IconStarHalfSharpFilled.tsx +++ b/src/IconStarHalfSharpFilled.tsx @@ -8,4 +8,4 @@ const IconStarHalfSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconStarHalfSharpFilled as default } +export default IconStarHalfSharpFilled diff --git a/src/IconStarOutlined.tsx b/src/IconStarOutlined.tsx index cf1ce6f31..27aefcd09 100644 --- a/src/IconStarOutlined.tsx +++ b/src/IconStarOutlined.tsx @@ -8,4 +8,4 @@ const IconStarOutlined: React.FC = ({ ...props }) => ( ) -export { IconStarOutlined as default } +export default IconStarOutlined diff --git a/src/IconStarOutlinedFilled.tsx b/src/IconStarOutlinedFilled.tsx index f5639491f..eb65f5497 100644 --- a/src/IconStarOutlinedFilled.tsx +++ b/src/IconStarOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconStarOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconStarOutlinedFilled as default } +export default IconStarOutlinedFilled diff --git a/src/IconStarRateHalfOutlined.tsx b/src/IconStarRateHalfOutlined.tsx index 151211c6b..2c43bf46c 100644 --- a/src/IconStarRateHalfOutlined.tsx +++ b/src/IconStarRateHalfOutlined.tsx @@ -8,4 +8,4 @@ const IconStarRateHalfOutlined: React.FC = ({ ...props }) => ( ) -export { IconStarRateHalfOutlined as default } +export default IconStarRateHalfOutlined diff --git a/src/IconStarRateHalfOutlinedFilled.tsx b/src/IconStarRateHalfOutlinedFilled.tsx index 736821e37..5260c90d1 100644 --- a/src/IconStarRateHalfOutlinedFilled.tsx +++ b/src/IconStarRateHalfOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconStarRateHalfOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconStarRateHalfOutlinedFilled as default } +export default IconStarRateHalfOutlinedFilled diff --git a/src/IconStarRateHalfRounded.tsx b/src/IconStarRateHalfRounded.tsx index c63ef6712..5355bae48 100644 --- a/src/IconStarRateHalfRounded.tsx +++ b/src/IconStarRateHalfRounded.tsx @@ -8,4 +8,4 @@ const IconStarRateHalfRounded: React.FC = ({ ...props }) => ( ) -export { IconStarRateHalfRounded as default } +export default IconStarRateHalfRounded diff --git a/src/IconStarRateHalfRoundedFilled.tsx b/src/IconStarRateHalfRoundedFilled.tsx index 01a5591ef..24753a09e 100644 --- a/src/IconStarRateHalfRoundedFilled.tsx +++ b/src/IconStarRateHalfRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconStarRateHalfRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconStarRateHalfRoundedFilled as default } +export default IconStarRateHalfRoundedFilled diff --git a/src/IconStarRateHalfSharp.tsx b/src/IconStarRateHalfSharp.tsx index b3ef2468e..d2e994e9c 100644 --- a/src/IconStarRateHalfSharp.tsx +++ b/src/IconStarRateHalfSharp.tsx @@ -8,4 +8,4 @@ const IconStarRateHalfSharp: React.FC = ({ ...props }) => ( ) -export { IconStarRateHalfSharp as default } +export default IconStarRateHalfSharp diff --git a/src/IconStarRateHalfSharpFilled.tsx b/src/IconStarRateHalfSharpFilled.tsx index efb43a25a..09cb9bcad 100644 --- a/src/IconStarRateHalfSharpFilled.tsx +++ b/src/IconStarRateHalfSharpFilled.tsx @@ -8,4 +8,4 @@ const IconStarRateHalfSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconStarRateHalfSharpFilled as default } +export default IconStarRateHalfSharpFilled diff --git a/src/IconStarRateOutlined.tsx b/src/IconStarRateOutlined.tsx index c5d3ab216..6bdb04536 100644 --- a/src/IconStarRateOutlined.tsx +++ b/src/IconStarRateOutlined.tsx @@ -8,4 +8,4 @@ const IconStarRateOutlined: React.FC = ({ ...props }) => ( ) -export { IconStarRateOutlined as default } +export default IconStarRateOutlined diff --git a/src/IconStarRateOutlinedFilled.tsx b/src/IconStarRateOutlinedFilled.tsx index eead0d37e..296f8ed7d 100644 --- a/src/IconStarRateOutlinedFilled.tsx +++ b/src/IconStarRateOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconStarRateOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconStarRateOutlinedFilled as default } +export default IconStarRateOutlinedFilled diff --git a/src/IconStarRateRounded.tsx b/src/IconStarRateRounded.tsx index 5df78bdce..84c69ff11 100644 --- a/src/IconStarRateRounded.tsx +++ b/src/IconStarRateRounded.tsx @@ -8,4 +8,4 @@ const IconStarRateRounded: React.FC = ({ ...props }) => ( ) -export { IconStarRateRounded as default } +export default IconStarRateRounded diff --git a/src/IconStarRateRoundedFilled.tsx b/src/IconStarRateRoundedFilled.tsx index 12652328c..9129d7b72 100644 --- a/src/IconStarRateRoundedFilled.tsx +++ b/src/IconStarRateRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconStarRateRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconStarRateRoundedFilled as default } +export default IconStarRateRoundedFilled diff --git a/src/IconStarRateSharp.tsx b/src/IconStarRateSharp.tsx index c70841850..950d2c31f 100644 --- a/src/IconStarRateSharp.tsx +++ b/src/IconStarRateSharp.tsx @@ -8,4 +8,4 @@ const IconStarRateSharp: React.FC = ({ ...props }) => ( ) -export { IconStarRateSharp as default } +export default IconStarRateSharp diff --git a/src/IconStarRateSharpFilled.tsx b/src/IconStarRateSharpFilled.tsx index 794c948cf..1047167e6 100644 --- a/src/IconStarRateSharpFilled.tsx +++ b/src/IconStarRateSharpFilled.tsx @@ -8,4 +8,4 @@ const IconStarRateSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconStarRateSharpFilled as default } +export default IconStarRateSharpFilled diff --git a/src/IconStarRounded.tsx b/src/IconStarRounded.tsx index 933b663d3..4e58f6905 100644 --- a/src/IconStarRounded.tsx +++ b/src/IconStarRounded.tsx @@ -8,4 +8,4 @@ const IconStarRounded: React.FC = ({ ...props }) => ( ) -export { IconStarRounded as default } +export default IconStarRounded diff --git a/src/IconStarRoundedFilled.tsx b/src/IconStarRoundedFilled.tsx index 7a1fae22f..9509c2ffd 100644 --- a/src/IconStarRoundedFilled.tsx +++ b/src/IconStarRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconStarRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconStarRoundedFilled as default } +export default IconStarRoundedFilled diff --git a/src/IconStarSharp.tsx b/src/IconStarSharp.tsx index 6481fcfcc..878c1c152 100644 --- a/src/IconStarSharp.tsx +++ b/src/IconStarSharp.tsx @@ -8,4 +8,4 @@ const IconStarSharp: React.FC = ({ ...props }) => ( ) -export { IconStarSharp as default } +export default IconStarSharp diff --git a/src/IconStarSharpFilled.tsx b/src/IconStarSharpFilled.tsx index f11075240..d2c1fa74a 100644 --- a/src/IconStarSharpFilled.tsx +++ b/src/IconStarSharpFilled.tsx @@ -8,4 +8,4 @@ const IconStarSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconStarSharpFilled as default } +export default IconStarSharpFilled diff --git a/src/IconStarsOutlined.tsx b/src/IconStarsOutlined.tsx index 95d890e05..52e4d29b3 100644 --- a/src/IconStarsOutlined.tsx +++ b/src/IconStarsOutlined.tsx @@ -8,4 +8,4 @@ const IconStarsOutlined: React.FC = ({ ...props }) => ( ) -export { IconStarsOutlined as default } +export default IconStarsOutlined diff --git a/src/IconStarsOutlinedFilled.tsx b/src/IconStarsOutlinedFilled.tsx index 8bef2f135..d683b318c 100644 --- a/src/IconStarsOutlinedFilled.tsx +++ b/src/IconStarsOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconStarsOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconStarsOutlinedFilled as default } +export default IconStarsOutlinedFilled diff --git a/src/IconStarsRounded.tsx b/src/IconStarsRounded.tsx index 5d2189ea6..488b6241d 100644 --- a/src/IconStarsRounded.tsx +++ b/src/IconStarsRounded.tsx @@ -8,4 +8,4 @@ const IconStarsRounded: React.FC = ({ ...props }) => ( ) -export { IconStarsRounded as default } +export default IconStarsRounded diff --git a/src/IconStarsRoundedFilled.tsx b/src/IconStarsRoundedFilled.tsx index 4a67c3f0e..350257211 100644 --- a/src/IconStarsRoundedFilled.tsx +++ b/src/IconStarsRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconStarsRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconStarsRoundedFilled as default } +export default IconStarsRoundedFilled diff --git a/src/IconStarsSharp.tsx b/src/IconStarsSharp.tsx index 183871492..6ac2973f7 100644 --- a/src/IconStarsSharp.tsx +++ b/src/IconStarsSharp.tsx @@ -8,4 +8,4 @@ const IconStarsSharp: React.FC = ({ ...props }) => ( ) -export { IconStarsSharp as default } +export default IconStarsSharp diff --git a/src/IconStarsSharpFilled.tsx b/src/IconStarsSharpFilled.tsx index 4719d215e..bb0b32aa1 100644 --- a/src/IconStarsSharpFilled.tsx +++ b/src/IconStarsSharpFilled.tsx @@ -8,4 +8,4 @@ const IconStarsSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconStarsSharpFilled as default } +export default IconStarsSharpFilled diff --git a/src/IconStartOutlined.tsx b/src/IconStartOutlined.tsx index 958f0f4db..1457c6976 100644 --- a/src/IconStartOutlined.tsx +++ b/src/IconStartOutlined.tsx @@ -8,4 +8,4 @@ const IconStartOutlined: React.FC = ({ ...props }) => ( ) -export { IconStartOutlined as default } +export default IconStartOutlined diff --git a/src/IconStartOutlinedFilled.tsx b/src/IconStartOutlinedFilled.tsx index b61cd20c1..d0469b5df 100644 --- a/src/IconStartOutlinedFilled.tsx +++ b/src/IconStartOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconStartOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconStartOutlinedFilled as default } +export default IconStartOutlinedFilled diff --git a/src/IconStartRounded.tsx b/src/IconStartRounded.tsx index ccb962439..728f58bbe 100644 --- a/src/IconStartRounded.tsx +++ b/src/IconStartRounded.tsx @@ -8,4 +8,4 @@ const IconStartRounded: React.FC = ({ ...props }) => ( ) -export { IconStartRounded as default } +export default IconStartRounded diff --git a/src/IconStartRoundedFilled.tsx b/src/IconStartRoundedFilled.tsx index b6e1892fa..66aaed0a7 100644 --- a/src/IconStartRoundedFilled.tsx +++ b/src/IconStartRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconStartRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconStartRoundedFilled as default } +export default IconStartRoundedFilled diff --git a/src/IconStartSharp.tsx b/src/IconStartSharp.tsx index 8b0ee10f3..d07e11823 100644 --- a/src/IconStartSharp.tsx +++ b/src/IconStartSharp.tsx @@ -8,4 +8,4 @@ const IconStartSharp: React.FC = ({ ...props }) => ( ) -export { IconStartSharp as default } +export default IconStartSharp diff --git a/src/IconStartSharpFilled.tsx b/src/IconStartSharpFilled.tsx index 362caa983..b346c9bc0 100644 --- a/src/IconStartSharpFilled.tsx +++ b/src/IconStartSharpFilled.tsx @@ -8,4 +8,4 @@ const IconStartSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconStartSharpFilled as default } +export default IconStartSharpFilled diff --git a/src/IconStat0Outlined.tsx b/src/IconStat0Outlined.tsx index 439470792..929326922 100644 --- a/src/IconStat0Outlined.tsx +++ b/src/IconStat0Outlined.tsx @@ -8,4 +8,4 @@ const IconStat0Outlined: React.FC = ({ ...props }) => ( ) -export { IconStat0Outlined as default } +export default IconStat0Outlined diff --git a/src/IconStat0OutlinedFilled.tsx b/src/IconStat0OutlinedFilled.tsx index 0d33441f3..ec3ed8a58 100644 --- a/src/IconStat0OutlinedFilled.tsx +++ b/src/IconStat0OutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconStat0OutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconStat0OutlinedFilled as default } +export default IconStat0OutlinedFilled diff --git a/src/IconStat0Rounded.tsx b/src/IconStat0Rounded.tsx index baf15db1d..0704d5145 100644 --- a/src/IconStat0Rounded.tsx +++ b/src/IconStat0Rounded.tsx @@ -8,4 +8,4 @@ const IconStat0Rounded: React.FC = ({ ...props }) => ( ) -export { IconStat0Rounded as default } +export default IconStat0Rounded diff --git a/src/IconStat0RoundedFilled.tsx b/src/IconStat0RoundedFilled.tsx index 4611a5f32..669ad91ef 100644 --- a/src/IconStat0RoundedFilled.tsx +++ b/src/IconStat0RoundedFilled.tsx @@ -8,4 +8,4 @@ const IconStat0RoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconStat0RoundedFilled as default } +export default IconStat0RoundedFilled diff --git a/src/IconStat0Sharp.tsx b/src/IconStat0Sharp.tsx index b730935f7..314196f81 100644 --- a/src/IconStat0Sharp.tsx +++ b/src/IconStat0Sharp.tsx @@ -8,4 +8,4 @@ const IconStat0Sharp: React.FC = ({ ...props }) => ( ) -export { IconStat0Sharp as default } +export default IconStat0Sharp diff --git a/src/IconStat0SharpFilled.tsx b/src/IconStat0SharpFilled.tsx index 32b65ef1b..c11ab0d96 100644 --- a/src/IconStat0SharpFilled.tsx +++ b/src/IconStat0SharpFilled.tsx @@ -8,4 +8,4 @@ const IconStat0SharpFilled: React.FC = ({ ...props }) => ( ) -export { IconStat0SharpFilled as default } +export default IconStat0SharpFilled diff --git a/src/IconStat1Outlined.tsx b/src/IconStat1Outlined.tsx index 17171f001..23e2c23d3 100644 --- a/src/IconStat1Outlined.tsx +++ b/src/IconStat1Outlined.tsx @@ -8,4 +8,4 @@ const IconStat1Outlined: React.FC = ({ ...props }) => ( ) -export { IconStat1Outlined as default } +export default IconStat1Outlined diff --git a/src/IconStat1OutlinedFilled.tsx b/src/IconStat1OutlinedFilled.tsx index a0059b423..363a65c6e 100644 --- a/src/IconStat1OutlinedFilled.tsx +++ b/src/IconStat1OutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconStat1OutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconStat1OutlinedFilled as default } +export default IconStat1OutlinedFilled diff --git a/src/IconStat1Rounded.tsx b/src/IconStat1Rounded.tsx index 2fc09fbae..2411d250f 100644 --- a/src/IconStat1Rounded.tsx +++ b/src/IconStat1Rounded.tsx @@ -8,4 +8,4 @@ const IconStat1Rounded: React.FC = ({ ...props }) => ( ) -export { IconStat1Rounded as default } +export default IconStat1Rounded diff --git a/src/IconStat1RoundedFilled.tsx b/src/IconStat1RoundedFilled.tsx index 2c62aceef..cf7f9f064 100644 --- a/src/IconStat1RoundedFilled.tsx +++ b/src/IconStat1RoundedFilled.tsx @@ -8,4 +8,4 @@ const IconStat1RoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconStat1RoundedFilled as default } +export default IconStat1RoundedFilled diff --git a/src/IconStat1Sharp.tsx b/src/IconStat1Sharp.tsx index fbabb3974..e93b1157c 100644 --- a/src/IconStat1Sharp.tsx +++ b/src/IconStat1Sharp.tsx @@ -8,4 +8,4 @@ const IconStat1Sharp: React.FC = ({ ...props }) => ( ) -export { IconStat1Sharp as default } +export default IconStat1Sharp diff --git a/src/IconStat1SharpFilled.tsx b/src/IconStat1SharpFilled.tsx index 02f517507..225e8fceb 100644 --- a/src/IconStat1SharpFilled.tsx +++ b/src/IconStat1SharpFilled.tsx @@ -8,4 +8,4 @@ const IconStat1SharpFilled: React.FC = ({ ...props }) => ( ) -export { IconStat1SharpFilled as default } +export default IconStat1SharpFilled diff --git a/src/IconStat2Outlined.tsx b/src/IconStat2Outlined.tsx index d765c7f03..f9e18efc7 100644 --- a/src/IconStat2Outlined.tsx +++ b/src/IconStat2Outlined.tsx @@ -8,4 +8,4 @@ const IconStat2Outlined: React.FC = ({ ...props }) => ( ) -export { IconStat2Outlined as default } +export default IconStat2Outlined diff --git a/src/IconStat2OutlinedFilled.tsx b/src/IconStat2OutlinedFilled.tsx index 5d622e847..5ad6301e7 100644 --- a/src/IconStat2OutlinedFilled.tsx +++ b/src/IconStat2OutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconStat2OutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconStat2OutlinedFilled as default } +export default IconStat2OutlinedFilled diff --git a/src/IconStat2Rounded.tsx b/src/IconStat2Rounded.tsx index 07230236d..f28b832a4 100644 --- a/src/IconStat2Rounded.tsx +++ b/src/IconStat2Rounded.tsx @@ -8,4 +8,4 @@ const IconStat2Rounded: React.FC = ({ ...props }) => ( ) -export { IconStat2Rounded as default } +export default IconStat2Rounded diff --git a/src/IconStat2RoundedFilled.tsx b/src/IconStat2RoundedFilled.tsx index 5256a6ebe..537216cf4 100644 --- a/src/IconStat2RoundedFilled.tsx +++ b/src/IconStat2RoundedFilled.tsx @@ -8,4 +8,4 @@ const IconStat2RoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconStat2RoundedFilled as default } +export default IconStat2RoundedFilled diff --git a/src/IconStat2Sharp.tsx b/src/IconStat2Sharp.tsx index 29fcd8960..166da0b45 100644 --- a/src/IconStat2Sharp.tsx +++ b/src/IconStat2Sharp.tsx @@ -8,4 +8,4 @@ const IconStat2Sharp: React.FC = ({ ...props }) => ( ) -export { IconStat2Sharp as default } +export default IconStat2Sharp diff --git a/src/IconStat2SharpFilled.tsx b/src/IconStat2SharpFilled.tsx index ec6f3e4e4..a09576379 100644 --- a/src/IconStat2SharpFilled.tsx +++ b/src/IconStat2SharpFilled.tsx @@ -8,4 +8,4 @@ const IconStat2SharpFilled: React.FC = ({ ...props }) => ( ) -export { IconStat2SharpFilled as default } +export default IconStat2SharpFilled diff --git a/src/IconStat3Outlined.tsx b/src/IconStat3Outlined.tsx index 8f7a0f3b7..958724d27 100644 --- a/src/IconStat3Outlined.tsx +++ b/src/IconStat3Outlined.tsx @@ -8,4 +8,4 @@ const IconStat3Outlined: React.FC = ({ ...props }) => ( ) -export { IconStat3Outlined as default } +export default IconStat3Outlined diff --git a/src/IconStat3OutlinedFilled.tsx b/src/IconStat3OutlinedFilled.tsx index 3d2debc4d..0ec014645 100644 --- a/src/IconStat3OutlinedFilled.tsx +++ b/src/IconStat3OutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconStat3OutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconStat3OutlinedFilled as default } +export default IconStat3OutlinedFilled diff --git a/src/IconStat3Rounded.tsx b/src/IconStat3Rounded.tsx index 4b6c7d90a..fc1ca2eb2 100644 --- a/src/IconStat3Rounded.tsx +++ b/src/IconStat3Rounded.tsx @@ -8,4 +8,4 @@ const IconStat3Rounded: React.FC = ({ ...props }) => ( ) -export { IconStat3Rounded as default } +export default IconStat3Rounded diff --git a/src/IconStat3RoundedFilled.tsx b/src/IconStat3RoundedFilled.tsx index 4f4fa1748..2bdae7913 100644 --- a/src/IconStat3RoundedFilled.tsx +++ b/src/IconStat3RoundedFilled.tsx @@ -8,4 +8,4 @@ const IconStat3RoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconStat3RoundedFilled as default } +export default IconStat3RoundedFilled diff --git a/src/IconStat3Sharp.tsx b/src/IconStat3Sharp.tsx index 36038574d..058d0d087 100644 --- a/src/IconStat3Sharp.tsx +++ b/src/IconStat3Sharp.tsx @@ -8,4 +8,4 @@ const IconStat3Sharp: React.FC = ({ ...props }) => ( ) -export { IconStat3Sharp as default } +export default IconStat3Sharp diff --git a/src/IconStat3SharpFilled.tsx b/src/IconStat3SharpFilled.tsx index c6ad7db71..686278fcf 100644 --- a/src/IconStat3SharpFilled.tsx +++ b/src/IconStat3SharpFilled.tsx @@ -8,4 +8,4 @@ const IconStat3SharpFilled: React.FC = ({ ...props }) => ( ) -export { IconStat3SharpFilled as default } +export default IconStat3SharpFilled diff --git a/src/IconStatMinus1Outlined.tsx b/src/IconStatMinus1Outlined.tsx index 5c3ac097f..bcc804d76 100644 --- a/src/IconStatMinus1Outlined.tsx +++ b/src/IconStatMinus1Outlined.tsx @@ -8,4 +8,4 @@ const IconStatMinus1Outlined: React.FC = ({ ...props }) => ( ) -export { IconStatMinus1Outlined as default } +export default IconStatMinus1Outlined diff --git a/src/IconStatMinus1OutlinedFilled.tsx b/src/IconStatMinus1OutlinedFilled.tsx index 4c1293dea..26c564a89 100644 --- a/src/IconStatMinus1OutlinedFilled.tsx +++ b/src/IconStatMinus1OutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconStatMinus1OutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconStatMinus1OutlinedFilled as default } +export default IconStatMinus1OutlinedFilled diff --git a/src/IconStatMinus1Rounded.tsx b/src/IconStatMinus1Rounded.tsx index de9f75117..1ada97f22 100644 --- a/src/IconStatMinus1Rounded.tsx +++ b/src/IconStatMinus1Rounded.tsx @@ -8,4 +8,4 @@ const IconStatMinus1Rounded: React.FC = ({ ...props }) => ( ) -export { IconStatMinus1Rounded as default } +export default IconStatMinus1Rounded diff --git a/src/IconStatMinus1RoundedFilled.tsx b/src/IconStatMinus1RoundedFilled.tsx index eb994a9fc..52e444b09 100644 --- a/src/IconStatMinus1RoundedFilled.tsx +++ b/src/IconStatMinus1RoundedFilled.tsx @@ -8,4 +8,4 @@ const IconStatMinus1RoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconStatMinus1RoundedFilled as default } +export default IconStatMinus1RoundedFilled diff --git a/src/IconStatMinus1Sharp.tsx b/src/IconStatMinus1Sharp.tsx index 4f612b347..1468deaf1 100644 --- a/src/IconStatMinus1Sharp.tsx +++ b/src/IconStatMinus1Sharp.tsx @@ -8,4 +8,4 @@ const IconStatMinus1Sharp: React.FC = ({ ...props }) => ( ) -export { IconStatMinus1Sharp as default } +export default IconStatMinus1Sharp diff --git a/src/IconStatMinus1SharpFilled.tsx b/src/IconStatMinus1SharpFilled.tsx index eeb49372f..3cb423728 100644 --- a/src/IconStatMinus1SharpFilled.tsx +++ b/src/IconStatMinus1SharpFilled.tsx @@ -8,4 +8,4 @@ const IconStatMinus1SharpFilled: React.FC = ({ ...props }) => ( ) -export { IconStatMinus1SharpFilled as default } +export default IconStatMinus1SharpFilled diff --git a/src/IconStatMinus2Outlined.tsx b/src/IconStatMinus2Outlined.tsx index 63348631c..3c039b0d2 100644 --- a/src/IconStatMinus2Outlined.tsx +++ b/src/IconStatMinus2Outlined.tsx @@ -8,4 +8,4 @@ const IconStatMinus2Outlined: React.FC = ({ ...props }) => ( ) -export { IconStatMinus2Outlined as default } +export default IconStatMinus2Outlined diff --git a/src/IconStatMinus2OutlinedFilled.tsx b/src/IconStatMinus2OutlinedFilled.tsx index 13efb0c20..4f0e9eb19 100644 --- a/src/IconStatMinus2OutlinedFilled.tsx +++ b/src/IconStatMinus2OutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconStatMinus2OutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconStatMinus2OutlinedFilled as default } +export default IconStatMinus2OutlinedFilled diff --git a/src/IconStatMinus2Rounded.tsx b/src/IconStatMinus2Rounded.tsx index f19e28c8b..447630fa0 100644 --- a/src/IconStatMinus2Rounded.tsx +++ b/src/IconStatMinus2Rounded.tsx @@ -8,4 +8,4 @@ const IconStatMinus2Rounded: React.FC = ({ ...props }) => ( ) -export { IconStatMinus2Rounded as default } +export default IconStatMinus2Rounded diff --git a/src/IconStatMinus2RoundedFilled.tsx b/src/IconStatMinus2RoundedFilled.tsx index 9e87390a9..14b95019a 100644 --- a/src/IconStatMinus2RoundedFilled.tsx +++ b/src/IconStatMinus2RoundedFilled.tsx @@ -8,4 +8,4 @@ const IconStatMinus2RoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconStatMinus2RoundedFilled as default } +export default IconStatMinus2RoundedFilled diff --git a/src/IconStatMinus2Sharp.tsx b/src/IconStatMinus2Sharp.tsx index d05e2477b..a751d0ec5 100644 --- a/src/IconStatMinus2Sharp.tsx +++ b/src/IconStatMinus2Sharp.tsx @@ -8,4 +8,4 @@ const IconStatMinus2Sharp: React.FC = ({ ...props }) => ( ) -export { IconStatMinus2Sharp as default } +export default IconStatMinus2Sharp diff --git a/src/IconStatMinus2SharpFilled.tsx b/src/IconStatMinus2SharpFilled.tsx index 2a443e1a6..3f4aaea5f 100644 --- a/src/IconStatMinus2SharpFilled.tsx +++ b/src/IconStatMinus2SharpFilled.tsx @@ -8,4 +8,4 @@ const IconStatMinus2SharpFilled: React.FC = ({ ...props }) => ( ) -export { IconStatMinus2SharpFilled as default } +export default IconStatMinus2SharpFilled diff --git a/src/IconStatMinus3Outlined.tsx b/src/IconStatMinus3Outlined.tsx index 72dd8ecfa..98608fd49 100644 --- a/src/IconStatMinus3Outlined.tsx +++ b/src/IconStatMinus3Outlined.tsx @@ -8,4 +8,4 @@ const IconStatMinus3Outlined: React.FC = ({ ...props }) => ( ) -export { IconStatMinus3Outlined as default } +export default IconStatMinus3Outlined diff --git a/src/IconStatMinus3OutlinedFilled.tsx b/src/IconStatMinus3OutlinedFilled.tsx index 1184f19a5..ff2bc9648 100644 --- a/src/IconStatMinus3OutlinedFilled.tsx +++ b/src/IconStatMinus3OutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconStatMinus3OutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconStatMinus3OutlinedFilled as default } +export default IconStatMinus3OutlinedFilled diff --git a/src/IconStatMinus3Rounded.tsx b/src/IconStatMinus3Rounded.tsx index c0303c685..8301af54f 100644 --- a/src/IconStatMinus3Rounded.tsx +++ b/src/IconStatMinus3Rounded.tsx @@ -8,4 +8,4 @@ const IconStatMinus3Rounded: React.FC = ({ ...props }) => ( ) -export { IconStatMinus3Rounded as default } +export default IconStatMinus3Rounded diff --git a/src/IconStatMinus3RoundedFilled.tsx b/src/IconStatMinus3RoundedFilled.tsx index 8343e2b7e..a1bd7d0a3 100644 --- a/src/IconStatMinus3RoundedFilled.tsx +++ b/src/IconStatMinus3RoundedFilled.tsx @@ -8,4 +8,4 @@ const IconStatMinus3RoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconStatMinus3RoundedFilled as default } +export default IconStatMinus3RoundedFilled diff --git a/src/IconStatMinus3Sharp.tsx b/src/IconStatMinus3Sharp.tsx index d4dd7081c..bec068c3f 100644 --- a/src/IconStatMinus3Sharp.tsx +++ b/src/IconStatMinus3Sharp.tsx @@ -8,4 +8,4 @@ const IconStatMinus3Sharp: React.FC = ({ ...props }) => ( ) -export { IconStatMinus3Sharp as default } +export default IconStatMinus3Sharp diff --git a/src/IconStatMinus3SharpFilled.tsx b/src/IconStatMinus3SharpFilled.tsx index bd5a4ada3..b0e5f4d00 100644 --- a/src/IconStatMinus3SharpFilled.tsx +++ b/src/IconStatMinus3SharpFilled.tsx @@ -8,4 +8,4 @@ const IconStatMinus3SharpFilled: React.FC = ({ ...props }) => ( ) -export { IconStatMinus3SharpFilled as default } +export default IconStatMinus3SharpFilled diff --git a/src/IconStayCurrentLandscapeOutlined.tsx b/src/IconStayCurrentLandscapeOutlined.tsx index c4f32f36c..31fe13212 100644 --- a/src/IconStayCurrentLandscapeOutlined.tsx +++ b/src/IconStayCurrentLandscapeOutlined.tsx @@ -10,4 +10,4 @@ const IconStayCurrentLandscapeOutlined: React.FC = ({ ) -export { IconStayCurrentLandscapeOutlined as default } +export default IconStayCurrentLandscapeOutlined diff --git a/src/IconStayCurrentLandscapeOutlinedFilled.tsx b/src/IconStayCurrentLandscapeOutlinedFilled.tsx index 9543ed511..372762eda 100644 --- a/src/IconStayCurrentLandscapeOutlinedFilled.tsx +++ b/src/IconStayCurrentLandscapeOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconStayCurrentLandscapeOutlinedFilled: React.FC = ({ ) -export { IconStayCurrentLandscapeOutlinedFilled as default } +export default IconStayCurrentLandscapeOutlinedFilled diff --git a/src/IconStayCurrentLandscapeRounded.tsx b/src/IconStayCurrentLandscapeRounded.tsx index e9673f9a3..c9bfbee28 100644 --- a/src/IconStayCurrentLandscapeRounded.tsx +++ b/src/IconStayCurrentLandscapeRounded.tsx @@ -8,4 +8,4 @@ const IconStayCurrentLandscapeRounded: React.FC = ({ ...props }) => ( ) -export { IconStayCurrentLandscapeRounded as default } +export default IconStayCurrentLandscapeRounded diff --git a/src/IconStayCurrentLandscapeRoundedFilled.tsx b/src/IconStayCurrentLandscapeRoundedFilled.tsx index 8c206c9d8..4e4499c54 100644 --- a/src/IconStayCurrentLandscapeRoundedFilled.tsx +++ b/src/IconStayCurrentLandscapeRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconStayCurrentLandscapeRoundedFilled: React.FC = ({ ) -export { IconStayCurrentLandscapeRoundedFilled as default } +export default IconStayCurrentLandscapeRoundedFilled diff --git a/src/IconStayCurrentLandscapeSharp.tsx b/src/IconStayCurrentLandscapeSharp.tsx index ef066dbb2..7e76a94dd 100644 --- a/src/IconStayCurrentLandscapeSharp.tsx +++ b/src/IconStayCurrentLandscapeSharp.tsx @@ -8,4 +8,4 @@ const IconStayCurrentLandscapeSharp: React.FC = ({ ...props }) => ( ) -export { IconStayCurrentLandscapeSharp as default } +export default IconStayCurrentLandscapeSharp diff --git a/src/IconStayCurrentLandscapeSharpFilled.tsx b/src/IconStayCurrentLandscapeSharpFilled.tsx index 88fab021b..f37830072 100644 --- a/src/IconStayCurrentLandscapeSharpFilled.tsx +++ b/src/IconStayCurrentLandscapeSharpFilled.tsx @@ -10,4 +10,4 @@ const IconStayCurrentLandscapeSharpFilled: React.FC = ({ ) -export { IconStayCurrentLandscapeSharpFilled as default } +export default IconStayCurrentLandscapeSharpFilled diff --git a/src/IconStayCurrentPortraitOutlined.tsx b/src/IconStayCurrentPortraitOutlined.tsx index 2fb2d1589..936fa4f62 100644 --- a/src/IconStayCurrentPortraitOutlined.tsx +++ b/src/IconStayCurrentPortraitOutlined.tsx @@ -8,4 +8,4 @@ const IconStayCurrentPortraitOutlined: React.FC = ({ ...props }) => ( ) -export { IconStayCurrentPortraitOutlined as default } +export default IconStayCurrentPortraitOutlined diff --git a/src/IconStayCurrentPortraitOutlinedFilled.tsx b/src/IconStayCurrentPortraitOutlinedFilled.tsx index 38cc55399..58bd86995 100644 --- a/src/IconStayCurrentPortraitOutlinedFilled.tsx +++ b/src/IconStayCurrentPortraitOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconStayCurrentPortraitOutlinedFilled: React.FC = ({ ) -export { IconStayCurrentPortraitOutlinedFilled as default } +export default IconStayCurrentPortraitOutlinedFilled diff --git a/src/IconStayCurrentPortraitRounded.tsx b/src/IconStayCurrentPortraitRounded.tsx index 2bbefef8b..45195638f 100644 --- a/src/IconStayCurrentPortraitRounded.tsx +++ b/src/IconStayCurrentPortraitRounded.tsx @@ -8,4 +8,4 @@ const IconStayCurrentPortraitRounded: React.FC = ({ ...props }) => ( ) -export { IconStayCurrentPortraitRounded as default } +export default IconStayCurrentPortraitRounded diff --git a/src/IconStayCurrentPortraitRoundedFilled.tsx b/src/IconStayCurrentPortraitRoundedFilled.tsx index d1f83154f..24a66cdfd 100644 --- a/src/IconStayCurrentPortraitRoundedFilled.tsx +++ b/src/IconStayCurrentPortraitRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconStayCurrentPortraitRoundedFilled: React.FC = ({ ) -export { IconStayCurrentPortraitRoundedFilled as default } +export default IconStayCurrentPortraitRoundedFilled diff --git a/src/IconStayCurrentPortraitSharp.tsx b/src/IconStayCurrentPortraitSharp.tsx index 0013f0d1b..825304451 100644 --- a/src/IconStayCurrentPortraitSharp.tsx +++ b/src/IconStayCurrentPortraitSharp.tsx @@ -8,4 +8,4 @@ const IconStayCurrentPortraitSharp: React.FC = ({ ...props }) => ( ) -export { IconStayCurrentPortraitSharp as default } +export default IconStayCurrentPortraitSharp diff --git a/src/IconStayCurrentPortraitSharpFilled.tsx b/src/IconStayCurrentPortraitSharpFilled.tsx index 11ea48a25..712f4dd23 100644 --- a/src/IconStayCurrentPortraitSharpFilled.tsx +++ b/src/IconStayCurrentPortraitSharpFilled.tsx @@ -10,4 +10,4 @@ const IconStayCurrentPortraitSharpFilled: React.FC = ({ ) -export { IconStayCurrentPortraitSharpFilled as default } +export default IconStayCurrentPortraitSharpFilled diff --git a/src/IconStayPrimaryLandscapeOutlined.tsx b/src/IconStayPrimaryLandscapeOutlined.tsx index e27dacb04..660444e46 100644 --- a/src/IconStayPrimaryLandscapeOutlined.tsx +++ b/src/IconStayPrimaryLandscapeOutlined.tsx @@ -10,4 +10,4 @@ const IconStayPrimaryLandscapeOutlined: React.FC = ({ ) -export { IconStayPrimaryLandscapeOutlined as default } +export default IconStayPrimaryLandscapeOutlined diff --git a/src/IconStayPrimaryLandscapeOutlinedFilled.tsx b/src/IconStayPrimaryLandscapeOutlinedFilled.tsx index f946bbd27..7d844340b 100644 --- a/src/IconStayPrimaryLandscapeOutlinedFilled.tsx +++ b/src/IconStayPrimaryLandscapeOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconStayPrimaryLandscapeOutlinedFilled: React.FC = ({ ) -export { IconStayPrimaryLandscapeOutlinedFilled as default } +export default IconStayPrimaryLandscapeOutlinedFilled diff --git a/src/IconStayPrimaryLandscapeRounded.tsx b/src/IconStayPrimaryLandscapeRounded.tsx index b2a844865..d9c4ddb36 100644 --- a/src/IconStayPrimaryLandscapeRounded.tsx +++ b/src/IconStayPrimaryLandscapeRounded.tsx @@ -8,4 +8,4 @@ const IconStayPrimaryLandscapeRounded: React.FC = ({ ...props }) => ( ) -export { IconStayPrimaryLandscapeRounded as default } +export default IconStayPrimaryLandscapeRounded diff --git a/src/IconStayPrimaryLandscapeRoundedFilled.tsx b/src/IconStayPrimaryLandscapeRoundedFilled.tsx index f09454d5a..16b3bc217 100644 --- a/src/IconStayPrimaryLandscapeRoundedFilled.tsx +++ b/src/IconStayPrimaryLandscapeRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconStayPrimaryLandscapeRoundedFilled: React.FC = ({ ) -export { IconStayPrimaryLandscapeRoundedFilled as default } +export default IconStayPrimaryLandscapeRoundedFilled diff --git a/src/IconStayPrimaryLandscapeSharp.tsx b/src/IconStayPrimaryLandscapeSharp.tsx index 3d10375cb..9e6e43520 100644 --- a/src/IconStayPrimaryLandscapeSharp.tsx +++ b/src/IconStayPrimaryLandscapeSharp.tsx @@ -8,4 +8,4 @@ const IconStayPrimaryLandscapeSharp: React.FC = ({ ...props }) => ( ) -export { IconStayPrimaryLandscapeSharp as default } +export default IconStayPrimaryLandscapeSharp diff --git a/src/IconStayPrimaryLandscapeSharpFilled.tsx b/src/IconStayPrimaryLandscapeSharpFilled.tsx index 0a6997ac9..b7eaa5e6e 100644 --- a/src/IconStayPrimaryLandscapeSharpFilled.tsx +++ b/src/IconStayPrimaryLandscapeSharpFilled.tsx @@ -10,4 +10,4 @@ const IconStayPrimaryLandscapeSharpFilled: React.FC = ({ ) -export { IconStayPrimaryLandscapeSharpFilled as default } +export default IconStayPrimaryLandscapeSharpFilled diff --git a/src/IconStayPrimaryPortraitOutlined.tsx b/src/IconStayPrimaryPortraitOutlined.tsx index 3a3483908..846240fcf 100644 --- a/src/IconStayPrimaryPortraitOutlined.tsx +++ b/src/IconStayPrimaryPortraitOutlined.tsx @@ -8,4 +8,4 @@ const IconStayPrimaryPortraitOutlined: React.FC = ({ ...props }) => ( ) -export { IconStayPrimaryPortraitOutlined as default } +export default IconStayPrimaryPortraitOutlined diff --git a/src/IconStayPrimaryPortraitOutlinedFilled.tsx b/src/IconStayPrimaryPortraitOutlinedFilled.tsx index 7ac22339f..02b13c0a6 100644 --- a/src/IconStayPrimaryPortraitOutlinedFilled.tsx +++ b/src/IconStayPrimaryPortraitOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconStayPrimaryPortraitOutlinedFilled: React.FC = ({ ) -export { IconStayPrimaryPortraitOutlinedFilled as default } +export default IconStayPrimaryPortraitOutlinedFilled diff --git a/src/IconStayPrimaryPortraitRounded.tsx b/src/IconStayPrimaryPortraitRounded.tsx index 5e9911265..bb12d273f 100644 --- a/src/IconStayPrimaryPortraitRounded.tsx +++ b/src/IconStayPrimaryPortraitRounded.tsx @@ -8,4 +8,4 @@ const IconStayPrimaryPortraitRounded: React.FC = ({ ...props }) => ( ) -export { IconStayPrimaryPortraitRounded as default } +export default IconStayPrimaryPortraitRounded diff --git a/src/IconStayPrimaryPortraitRoundedFilled.tsx b/src/IconStayPrimaryPortraitRoundedFilled.tsx index 4d45638d2..0ad366fb6 100644 --- a/src/IconStayPrimaryPortraitRoundedFilled.tsx +++ b/src/IconStayPrimaryPortraitRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconStayPrimaryPortraitRoundedFilled: React.FC = ({ ) -export { IconStayPrimaryPortraitRoundedFilled as default } +export default IconStayPrimaryPortraitRoundedFilled diff --git a/src/IconStayPrimaryPortraitSharp.tsx b/src/IconStayPrimaryPortraitSharp.tsx index a1c694ef4..0cd292bf4 100644 --- a/src/IconStayPrimaryPortraitSharp.tsx +++ b/src/IconStayPrimaryPortraitSharp.tsx @@ -8,4 +8,4 @@ const IconStayPrimaryPortraitSharp: React.FC = ({ ...props }) => ( ) -export { IconStayPrimaryPortraitSharp as default } +export default IconStayPrimaryPortraitSharp diff --git a/src/IconStayPrimaryPortraitSharpFilled.tsx b/src/IconStayPrimaryPortraitSharpFilled.tsx index 888f13d83..1a8086449 100644 --- a/src/IconStayPrimaryPortraitSharpFilled.tsx +++ b/src/IconStayPrimaryPortraitSharpFilled.tsx @@ -10,4 +10,4 @@ const IconStayPrimaryPortraitSharpFilled: React.FC = ({ ) -export { IconStayPrimaryPortraitSharpFilled as default } +export default IconStayPrimaryPortraitSharpFilled diff --git a/src/IconStepIntoOutlined.tsx b/src/IconStepIntoOutlined.tsx index 2ad153d46..64b8b9124 100644 --- a/src/IconStepIntoOutlined.tsx +++ b/src/IconStepIntoOutlined.tsx @@ -8,4 +8,4 @@ const IconStepIntoOutlined: React.FC = ({ ...props }) => ( ) -export { IconStepIntoOutlined as default } +export default IconStepIntoOutlined diff --git a/src/IconStepIntoOutlinedFilled.tsx b/src/IconStepIntoOutlinedFilled.tsx index 13110ed02..10b19002e 100644 --- a/src/IconStepIntoOutlinedFilled.tsx +++ b/src/IconStepIntoOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconStepIntoOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconStepIntoOutlinedFilled as default } +export default IconStepIntoOutlinedFilled diff --git a/src/IconStepIntoRounded.tsx b/src/IconStepIntoRounded.tsx index 67bf8751c..efdd7383f 100644 --- a/src/IconStepIntoRounded.tsx +++ b/src/IconStepIntoRounded.tsx @@ -8,4 +8,4 @@ const IconStepIntoRounded: React.FC = ({ ...props }) => ( ) -export { IconStepIntoRounded as default } +export default IconStepIntoRounded diff --git a/src/IconStepIntoRoundedFilled.tsx b/src/IconStepIntoRoundedFilled.tsx index de1b9f1d4..946d67b75 100644 --- a/src/IconStepIntoRoundedFilled.tsx +++ b/src/IconStepIntoRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconStepIntoRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconStepIntoRoundedFilled as default } +export default IconStepIntoRoundedFilled diff --git a/src/IconStepIntoSharp.tsx b/src/IconStepIntoSharp.tsx index 1005ddbc8..5c262f72f 100644 --- a/src/IconStepIntoSharp.tsx +++ b/src/IconStepIntoSharp.tsx @@ -8,4 +8,4 @@ const IconStepIntoSharp: React.FC = ({ ...props }) => ( ) -export { IconStepIntoSharp as default } +export default IconStepIntoSharp diff --git a/src/IconStepIntoSharpFilled.tsx b/src/IconStepIntoSharpFilled.tsx index 93649dcdc..d92fd9e1c 100644 --- a/src/IconStepIntoSharpFilled.tsx +++ b/src/IconStepIntoSharpFilled.tsx @@ -8,4 +8,4 @@ const IconStepIntoSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconStepIntoSharpFilled as default } +export default IconStepIntoSharpFilled diff --git a/src/IconStepOutOutlined.tsx b/src/IconStepOutOutlined.tsx index e8a34e392..6e3172584 100644 --- a/src/IconStepOutOutlined.tsx +++ b/src/IconStepOutOutlined.tsx @@ -8,4 +8,4 @@ const IconStepOutOutlined: React.FC = ({ ...props }) => ( ) -export { IconStepOutOutlined as default } +export default IconStepOutOutlined diff --git a/src/IconStepOutOutlinedFilled.tsx b/src/IconStepOutOutlinedFilled.tsx index 9279c66e0..0082cce0f 100644 --- a/src/IconStepOutOutlinedFilled.tsx +++ b/src/IconStepOutOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconStepOutOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconStepOutOutlinedFilled as default } +export default IconStepOutOutlinedFilled diff --git a/src/IconStepOutRounded.tsx b/src/IconStepOutRounded.tsx index 74ae82fa3..09f1b0416 100644 --- a/src/IconStepOutRounded.tsx +++ b/src/IconStepOutRounded.tsx @@ -8,4 +8,4 @@ const IconStepOutRounded: React.FC = ({ ...props }) => ( ) -export { IconStepOutRounded as default } +export default IconStepOutRounded diff --git a/src/IconStepOutRoundedFilled.tsx b/src/IconStepOutRoundedFilled.tsx index fdac88478..af3d4b341 100644 --- a/src/IconStepOutRoundedFilled.tsx +++ b/src/IconStepOutRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconStepOutRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconStepOutRoundedFilled as default } +export default IconStepOutRoundedFilled diff --git a/src/IconStepOutSharp.tsx b/src/IconStepOutSharp.tsx index d5d56fc1c..b74ff3a0c 100644 --- a/src/IconStepOutSharp.tsx +++ b/src/IconStepOutSharp.tsx @@ -8,4 +8,4 @@ const IconStepOutSharp: React.FC = ({ ...props }) => ( ) -export { IconStepOutSharp as default } +export default IconStepOutSharp diff --git a/src/IconStepOutSharpFilled.tsx b/src/IconStepOutSharpFilled.tsx index a321388b8..98034fa67 100644 --- a/src/IconStepOutSharpFilled.tsx +++ b/src/IconStepOutSharpFilled.tsx @@ -8,4 +8,4 @@ const IconStepOutSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconStepOutSharpFilled as default } +export default IconStepOutSharpFilled diff --git a/src/IconStepOutlined.tsx b/src/IconStepOutlined.tsx index 63d49530c..73188a177 100644 --- a/src/IconStepOutlined.tsx +++ b/src/IconStepOutlined.tsx @@ -8,4 +8,4 @@ const IconStepOutlined: React.FC = ({ ...props }) => ( ) -export { IconStepOutlined as default } +export default IconStepOutlined diff --git a/src/IconStepOutlinedFilled.tsx b/src/IconStepOutlinedFilled.tsx index 1f4806510..22a7c508f 100644 --- a/src/IconStepOutlinedFilled.tsx +++ b/src/IconStepOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconStepOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconStepOutlinedFilled as default } +export default IconStepOutlinedFilled diff --git a/src/IconStepOverOutlined.tsx b/src/IconStepOverOutlined.tsx index 8e1f7e30b..863e6d73e 100644 --- a/src/IconStepOverOutlined.tsx +++ b/src/IconStepOverOutlined.tsx @@ -8,4 +8,4 @@ const IconStepOverOutlined: React.FC = ({ ...props }) => ( ) -export { IconStepOverOutlined as default } +export default IconStepOverOutlined diff --git a/src/IconStepOverOutlinedFilled.tsx b/src/IconStepOverOutlinedFilled.tsx index 4a4c44cef..f7657b02e 100644 --- a/src/IconStepOverOutlinedFilled.tsx +++ b/src/IconStepOverOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconStepOverOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconStepOverOutlinedFilled as default } +export default IconStepOverOutlinedFilled diff --git a/src/IconStepOverRounded.tsx b/src/IconStepOverRounded.tsx index 6cb591a1e..d31e0fa06 100644 --- a/src/IconStepOverRounded.tsx +++ b/src/IconStepOverRounded.tsx @@ -8,4 +8,4 @@ const IconStepOverRounded: React.FC = ({ ...props }) => ( ) -export { IconStepOverRounded as default } +export default IconStepOverRounded diff --git a/src/IconStepOverRoundedFilled.tsx b/src/IconStepOverRoundedFilled.tsx index 185ffc51f..daab2bd46 100644 --- a/src/IconStepOverRoundedFilled.tsx +++ b/src/IconStepOverRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconStepOverRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconStepOverRoundedFilled as default } +export default IconStepOverRoundedFilled diff --git a/src/IconStepOverSharp.tsx b/src/IconStepOverSharp.tsx index 71b2d81b5..8c68cbe10 100644 --- a/src/IconStepOverSharp.tsx +++ b/src/IconStepOverSharp.tsx @@ -8,4 +8,4 @@ const IconStepOverSharp: React.FC = ({ ...props }) => ( ) -export { IconStepOverSharp as default } +export default IconStepOverSharp diff --git a/src/IconStepOverSharpFilled.tsx b/src/IconStepOverSharpFilled.tsx index 294842783..399beec3c 100644 --- a/src/IconStepOverSharpFilled.tsx +++ b/src/IconStepOverSharpFilled.tsx @@ -8,4 +8,4 @@ const IconStepOverSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconStepOverSharpFilled as default } +export default IconStepOverSharpFilled diff --git a/src/IconStepRounded.tsx b/src/IconStepRounded.tsx index 3e6a7b8d4..4e99d557c 100644 --- a/src/IconStepRounded.tsx +++ b/src/IconStepRounded.tsx @@ -8,4 +8,4 @@ const IconStepRounded: React.FC = ({ ...props }) => ( ) -export { IconStepRounded as default } +export default IconStepRounded diff --git a/src/IconStepRoundedFilled.tsx b/src/IconStepRoundedFilled.tsx index 0f4c739fc..6d4d1b69e 100644 --- a/src/IconStepRoundedFilled.tsx +++ b/src/IconStepRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconStepRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconStepRoundedFilled as default } +export default IconStepRoundedFilled diff --git a/src/IconStepSharp.tsx b/src/IconStepSharp.tsx index adfd3908c..14bd7d92f 100644 --- a/src/IconStepSharp.tsx +++ b/src/IconStepSharp.tsx @@ -8,4 +8,4 @@ const IconStepSharp: React.FC = ({ ...props }) => ( ) -export { IconStepSharp as default } +export default IconStepSharp diff --git a/src/IconStepSharpFilled.tsx b/src/IconStepSharpFilled.tsx index 695515575..9b56936a8 100644 --- a/src/IconStepSharpFilled.tsx +++ b/src/IconStepSharpFilled.tsx @@ -8,4 +8,4 @@ const IconStepSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconStepSharpFilled as default } +export default IconStepSharpFilled diff --git a/src/IconSteppersOutlined.tsx b/src/IconSteppersOutlined.tsx index c865ff130..588cd1bbf 100644 --- a/src/IconSteppersOutlined.tsx +++ b/src/IconSteppersOutlined.tsx @@ -8,4 +8,4 @@ const IconSteppersOutlined: React.FC = ({ ...props }) => ( ) -export { IconSteppersOutlined as default } +export default IconSteppersOutlined diff --git a/src/IconSteppersOutlinedFilled.tsx b/src/IconSteppersOutlinedFilled.tsx index e76df1d77..295db78c7 100644 --- a/src/IconSteppersOutlinedFilled.tsx +++ b/src/IconSteppersOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconSteppersOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconSteppersOutlinedFilled as default } +export default IconSteppersOutlinedFilled diff --git a/src/IconSteppersRounded.tsx b/src/IconSteppersRounded.tsx index 21d7e1287..64dfd148f 100644 --- a/src/IconSteppersRounded.tsx +++ b/src/IconSteppersRounded.tsx @@ -8,4 +8,4 @@ const IconSteppersRounded: React.FC = ({ ...props }) => ( ) -export { IconSteppersRounded as default } +export default IconSteppersRounded diff --git a/src/IconSteppersRoundedFilled.tsx b/src/IconSteppersRoundedFilled.tsx index 2c8a8ab2e..13ab8c185 100644 --- a/src/IconSteppersRoundedFilled.tsx +++ b/src/IconSteppersRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconSteppersRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconSteppersRoundedFilled as default } +export default IconSteppersRoundedFilled diff --git a/src/IconSteppersSharp.tsx b/src/IconSteppersSharp.tsx index bc5798f6b..6abf0e557 100644 --- a/src/IconSteppersSharp.tsx +++ b/src/IconSteppersSharp.tsx @@ -8,4 +8,4 @@ const IconSteppersSharp: React.FC = ({ ...props }) => ( ) -export { IconSteppersSharp as default } +export default IconSteppersSharp diff --git a/src/IconSteppersSharpFilled.tsx b/src/IconSteppersSharpFilled.tsx index 44648110a..9b9702717 100644 --- a/src/IconSteppersSharpFilled.tsx +++ b/src/IconSteppersSharpFilled.tsx @@ -8,4 +8,4 @@ const IconSteppersSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconSteppersSharpFilled as default } +export default IconSteppersSharpFilled diff --git a/src/IconStepsOutlined.tsx b/src/IconStepsOutlined.tsx index 7258b07d8..45760f8c6 100644 --- a/src/IconStepsOutlined.tsx +++ b/src/IconStepsOutlined.tsx @@ -8,4 +8,4 @@ const IconStepsOutlined: React.FC = ({ ...props }) => ( ) -export { IconStepsOutlined as default } +export default IconStepsOutlined diff --git a/src/IconStepsOutlinedFilled.tsx b/src/IconStepsOutlinedFilled.tsx index d60f280ea..ac5164c01 100644 --- a/src/IconStepsOutlinedFilled.tsx +++ b/src/IconStepsOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconStepsOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconStepsOutlinedFilled as default } +export default IconStepsOutlinedFilled diff --git a/src/IconStepsRounded.tsx b/src/IconStepsRounded.tsx index 95c4dc63e..3ae2c7196 100644 --- a/src/IconStepsRounded.tsx +++ b/src/IconStepsRounded.tsx @@ -8,4 +8,4 @@ const IconStepsRounded: React.FC = ({ ...props }) => ( ) -export { IconStepsRounded as default } +export default IconStepsRounded diff --git a/src/IconStepsRoundedFilled.tsx b/src/IconStepsRoundedFilled.tsx index 659e9dc3c..308cbe980 100644 --- a/src/IconStepsRoundedFilled.tsx +++ b/src/IconStepsRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconStepsRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconStepsRoundedFilled as default } +export default IconStepsRoundedFilled diff --git a/src/IconStepsSharp.tsx b/src/IconStepsSharp.tsx index c3353445f..a27db534e 100644 --- a/src/IconStepsSharp.tsx +++ b/src/IconStepsSharp.tsx @@ -8,4 +8,4 @@ const IconStepsSharp: React.FC = ({ ...props }) => ( ) -export { IconStepsSharp as default } +export default IconStepsSharp diff --git a/src/IconStepsSharpFilled.tsx b/src/IconStepsSharpFilled.tsx index 118379fb9..cdeb13639 100644 --- a/src/IconStepsSharpFilled.tsx +++ b/src/IconStepsSharpFilled.tsx @@ -8,4 +8,4 @@ const IconStepsSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconStepsSharpFilled as default } +export default IconStepsSharpFilled diff --git a/src/IconStethoscopeArrowOutlined.tsx b/src/IconStethoscopeArrowOutlined.tsx index db84dd2a0..408397966 100644 --- a/src/IconStethoscopeArrowOutlined.tsx +++ b/src/IconStethoscopeArrowOutlined.tsx @@ -8,4 +8,4 @@ const IconStethoscopeArrowOutlined: React.FC = ({ ...props }) => ( ) -export { IconStethoscopeArrowOutlined as default } +export default IconStethoscopeArrowOutlined diff --git a/src/IconStethoscopeArrowOutlinedFilled.tsx b/src/IconStethoscopeArrowOutlinedFilled.tsx index 1bfe7b5cf..0b9bfa2f0 100644 --- a/src/IconStethoscopeArrowOutlinedFilled.tsx +++ b/src/IconStethoscopeArrowOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconStethoscopeArrowOutlinedFilled: React.FC = ({ ) -export { IconStethoscopeArrowOutlinedFilled as default } +export default IconStethoscopeArrowOutlinedFilled diff --git a/src/IconStethoscopeArrowRounded.tsx b/src/IconStethoscopeArrowRounded.tsx index dba6a8b7b..f7b2e7903 100644 --- a/src/IconStethoscopeArrowRounded.tsx +++ b/src/IconStethoscopeArrowRounded.tsx @@ -8,4 +8,4 @@ const IconStethoscopeArrowRounded: React.FC = ({ ...props }) => ( ) -export { IconStethoscopeArrowRounded as default } +export default IconStethoscopeArrowRounded diff --git a/src/IconStethoscopeArrowRoundedFilled.tsx b/src/IconStethoscopeArrowRoundedFilled.tsx index 1022cd8da..579520dfa 100644 --- a/src/IconStethoscopeArrowRoundedFilled.tsx +++ b/src/IconStethoscopeArrowRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconStethoscopeArrowRoundedFilled: React.FC = ({ ) -export { IconStethoscopeArrowRoundedFilled as default } +export default IconStethoscopeArrowRoundedFilled diff --git a/src/IconStethoscopeArrowSharp.tsx b/src/IconStethoscopeArrowSharp.tsx index ffc3ed99f..3304caeba 100644 --- a/src/IconStethoscopeArrowSharp.tsx +++ b/src/IconStethoscopeArrowSharp.tsx @@ -8,4 +8,4 @@ const IconStethoscopeArrowSharp: React.FC = ({ ...props }) => ( ) -export { IconStethoscopeArrowSharp as default } +export default IconStethoscopeArrowSharp diff --git a/src/IconStethoscopeArrowSharpFilled.tsx b/src/IconStethoscopeArrowSharpFilled.tsx index c7533f192..35549ffa4 100644 --- a/src/IconStethoscopeArrowSharpFilled.tsx +++ b/src/IconStethoscopeArrowSharpFilled.tsx @@ -8,4 +8,4 @@ const IconStethoscopeArrowSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconStethoscopeArrowSharpFilled as default } +export default IconStethoscopeArrowSharpFilled diff --git a/src/IconStethoscopeCheckOutlined.tsx b/src/IconStethoscopeCheckOutlined.tsx index 87a1fd6b9..d1e811828 100644 --- a/src/IconStethoscopeCheckOutlined.tsx +++ b/src/IconStethoscopeCheckOutlined.tsx @@ -8,4 +8,4 @@ const IconStethoscopeCheckOutlined: React.FC = ({ ...props }) => ( ) -export { IconStethoscopeCheckOutlined as default } +export default IconStethoscopeCheckOutlined diff --git a/src/IconStethoscopeCheckOutlinedFilled.tsx b/src/IconStethoscopeCheckOutlinedFilled.tsx index c1329a741..ab98293bd 100644 --- a/src/IconStethoscopeCheckOutlinedFilled.tsx +++ b/src/IconStethoscopeCheckOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconStethoscopeCheckOutlinedFilled: React.FC = ({ ) -export { IconStethoscopeCheckOutlinedFilled as default } +export default IconStethoscopeCheckOutlinedFilled diff --git a/src/IconStethoscopeCheckRounded.tsx b/src/IconStethoscopeCheckRounded.tsx index 656b1cb6e..262be0e60 100644 --- a/src/IconStethoscopeCheckRounded.tsx +++ b/src/IconStethoscopeCheckRounded.tsx @@ -8,4 +8,4 @@ const IconStethoscopeCheckRounded: React.FC = ({ ...props }) => ( ) -export { IconStethoscopeCheckRounded as default } +export default IconStethoscopeCheckRounded diff --git a/src/IconStethoscopeCheckRoundedFilled.tsx b/src/IconStethoscopeCheckRoundedFilled.tsx index 996a98257..b560babbc 100644 --- a/src/IconStethoscopeCheckRoundedFilled.tsx +++ b/src/IconStethoscopeCheckRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconStethoscopeCheckRoundedFilled: React.FC = ({ ) -export { IconStethoscopeCheckRoundedFilled as default } +export default IconStethoscopeCheckRoundedFilled diff --git a/src/IconStethoscopeCheckSharp.tsx b/src/IconStethoscopeCheckSharp.tsx index f3d5b0024..9770f75e0 100644 --- a/src/IconStethoscopeCheckSharp.tsx +++ b/src/IconStethoscopeCheckSharp.tsx @@ -8,4 +8,4 @@ const IconStethoscopeCheckSharp: React.FC = ({ ...props }) => ( ) -export { IconStethoscopeCheckSharp as default } +export default IconStethoscopeCheckSharp diff --git a/src/IconStethoscopeCheckSharpFilled.tsx b/src/IconStethoscopeCheckSharpFilled.tsx index f8ddd2db7..238491737 100644 --- a/src/IconStethoscopeCheckSharpFilled.tsx +++ b/src/IconStethoscopeCheckSharpFilled.tsx @@ -8,4 +8,4 @@ const IconStethoscopeCheckSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconStethoscopeCheckSharpFilled as default } +export default IconStethoscopeCheckSharpFilled diff --git a/src/IconStethoscopeOutlined.tsx b/src/IconStethoscopeOutlined.tsx index 548bd9f6d..2643dfdc3 100644 --- a/src/IconStethoscopeOutlined.tsx +++ b/src/IconStethoscopeOutlined.tsx @@ -8,4 +8,4 @@ const IconStethoscopeOutlined: React.FC = ({ ...props }) => ( ) -export { IconStethoscopeOutlined as default } +export default IconStethoscopeOutlined diff --git a/src/IconStethoscopeOutlinedFilled.tsx b/src/IconStethoscopeOutlinedFilled.tsx index 90715c4bb..a103500b8 100644 --- a/src/IconStethoscopeOutlinedFilled.tsx +++ b/src/IconStethoscopeOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconStethoscopeOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconStethoscopeOutlinedFilled as default } +export default IconStethoscopeOutlinedFilled diff --git a/src/IconStethoscopeRounded.tsx b/src/IconStethoscopeRounded.tsx index 50367a44c..9eaa3b05b 100644 --- a/src/IconStethoscopeRounded.tsx +++ b/src/IconStethoscopeRounded.tsx @@ -8,4 +8,4 @@ const IconStethoscopeRounded: React.FC = ({ ...props }) => ( ) -export { IconStethoscopeRounded as default } +export default IconStethoscopeRounded diff --git a/src/IconStethoscopeRoundedFilled.tsx b/src/IconStethoscopeRoundedFilled.tsx index d17314521..d015b01bc 100644 --- a/src/IconStethoscopeRoundedFilled.tsx +++ b/src/IconStethoscopeRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconStethoscopeRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconStethoscopeRoundedFilled as default } +export default IconStethoscopeRoundedFilled diff --git a/src/IconStethoscopeSharp.tsx b/src/IconStethoscopeSharp.tsx index d54b82e07..4874ea849 100644 --- a/src/IconStethoscopeSharp.tsx +++ b/src/IconStethoscopeSharp.tsx @@ -8,4 +8,4 @@ const IconStethoscopeSharp: React.FC = ({ ...props }) => ( ) -export { IconStethoscopeSharp as default } +export default IconStethoscopeSharp diff --git a/src/IconStethoscopeSharpFilled.tsx b/src/IconStethoscopeSharpFilled.tsx index c67c966fb..a306f20b4 100644 --- a/src/IconStethoscopeSharpFilled.tsx +++ b/src/IconStethoscopeSharpFilled.tsx @@ -8,4 +8,4 @@ const IconStethoscopeSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconStethoscopeSharpFilled as default } +export default IconStethoscopeSharpFilled diff --git a/src/IconStickyNote2Outlined.tsx b/src/IconStickyNote2Outlined.tsx index 7c8d2df30..73e2e83b0 100644 --- a/src/IconStickyNote2Outlined.tsx +++ b/src/IconStickyNote2Outlined.tsx @@ -8,4 +8,4 @@ const IconStickyNote2Outlined: React.FC = ({ ...props }) => ( ) -export { IconStickyNote2Outlined as default } +export default IconStickyNote2Outlined diff --git a/src/IconStickyNote2OutlinedFilled.tsx b/src/IconStickyNote2OutlinedFilled.tsx index f89e8a16a..fa8fe431d 100644 --- a/src/IconStickyNote2OutlinedFilled.tsx +++ b/src/IconStickyNote2OutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconStickyNote2OutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconStickyNote2OutlinedFilled as default } +export default IconStickyNote2OutlinedFilled diff --git a/src/IconStickyNote2Rounded.tsx b/src/IconStickyNote2Rounded.tsx index 0bce8a3a0..c1594a01b 100644 --- a/src/IconStickyNote2Rounded.tsx +++ b/src/IconStickyNote2Rounded.tsx @@ -8,4 +8,4 @@ const IconStickyNote2Rounded: React.FC = ({ ...props }) => ( ) -export { IconStickyNote2Rounded as default } +export default IconStickyNote2Rounded diff --git a/src/IconStickyNote2RoundedFilled.tsx b/src/IconStickyNote2RoundedFilled.tsx index f528e91a7..84db17e1e 100644 --- a/src/IconStickyNote2RoundedFilled.tsx +++ b/src/IconStickyNote2RoundedFilled.tsx @@ -8,4 +8,4 @@ const IconStickyNote2RoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconStickyNote2RoundedFilled as default } +export default IconStickyNote2RoundedFilled diff --git a/src/IconStickyNote2Sharp.tsx b/src/IconStickyNote2Sharp.tsx index 171e780a8..b26cda53a 100644 --- a/src/IconStickyNote2Sharp.tsx +++ b/src/IconStickyNote2Sharp.tsx @@ -8,4 +8,4 @@ const IconStickyNote2Sharp: React.FC = ({ ...props }) => ( ) -export { IconStickyNote2Sharp as default } +export default IconStickyNote2Sharp diff --git a/src/IconStickyNote2SharpFilled.tsx b/src/IconStickyNote2SharpFilled.tsx index 425d6810b..739052c15 100644 --- a/src/IconStickyNote2SharpFilled.tsx +++ b/src/IconStickyNote2SharpFilled.tsx @@ -8,4 +8,4 @@ const IconStickyNote2SharpFilled: React.FC = ({ ...props }) => ( ) -export { IconStickyNote2SharpFilled as default } +export default IconStickyNote2SharpFilled diff --git a/src/IconStickyNoteOutlined.tsx b/src/IconStickyNoteOutlined.tsx index c658f3bbe..3c69d7b2b 100644 --- a/src/IconStickyNoteOutlined.tsx +++ b/src/IconStickyNoteOutlined.tsx @@ -8,4 +8,4 @@ const IconStickyNoteOutlined: React.FC = ({ ...props }) => ( ) -export { IconStickyNoteOutlined as default } +export default IconStickyNoteOutlined diff --git a/src/IconStickyNoteOutlinedFilled.tsx b/src/IconStickyNoteOutlinedFilled.tsx index 1ba9d1c96..8bf44c5be 100644 --- a/src/IconStickyNoteOutlinedFilled.tsx +++ b/src/IconStickyNoteOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconStickyNoteOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconStickyNoteOutlinedFilled as default } +export default IconStickyNoteOutlinedFilled diff --git a/src/IconStickyNoteRounded.tsx b/src/IconStickyNoteRounded.tsx index 052e3ba83..2b37f9d16 100644 --- a/src/IconStickyNoteRounded.tsx +++ b/src/IconStickyNoteRounded.tsx @@ -8,4 +8,4 @@ const IconStickyNoteRounded: React.FC = ({ ...props }) => ( ) -export { IconStickyNoteRounded as default } +export default IconStickyNoteRounded diff --git a/src/IconStickyNoteRoundedFilled.tsx b/src/IconStickyNoteRoundedFilled.tsx index a22c16bfc..45e1da0b7 100644 --- a/src/IconStickyNoteRoundedFilled.tsx +++ b/src/IconStickyNoteRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconStickyNoteRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconStickyNoteRoundedFilled as default } +export default IconStickyNoteRoundedFilled diff --git a/src/IconStickyNoteSharp.tsx b/src/IconStickyNoteSharp.tsx index e2b1f5df8..05ce14699 100644 --- a/src/IconStickyNoteSharp.tsx +++ b/src/IconStickyNoteSharp.tsx @@ -8,4 +8,4 @@ const IconStickyNoteSharp: React.FC = ({ ...props }) => ( ) -export { IconStickyNoteSharp as default } +export default IconStickyNoteSharp diff --git a/src/IconStickyNoteSharpFilled.tsx b/src/IconStickyNoteSharpFilled.tsx index 9c50f11ac..819cbd756 100644 --- a/src/IconStickyNoteSharpFilled.tsx +++ b/src/IconStickyNoteSharpFilled.tsx @@ -8,4 +8,4 @@ const IconStickyNoteSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconStickyNoteSharpFilled as default } +export default IconStickyNoteSharpFilled diff --git a/src/IconStockMediaOutlined.tsx b/src/IconStockMediaOutlined.tsx index 0f20a8a00..d157f3725 100644 --- a/src/IconStockMediaOutlined.tsx +++ b/src/IconStockMediaOutlined.tsx @@ -8,4 +8,4 @@ const IconStockMediaOutlined: React.FC = ({ ...props }) => ( ) -export { IconStockMediaOutlined as default } +export default IconStockMediaOutlined diff --git a/src/IconStockMediaOutlinedFilled.tsx b/src/IconStockMediaOutlinedFilled.tsx index 9b8a1e611..7a564d66d 100644 --- a/src/IconStockMediaOutlinedFilled.tsx +++ b/src/IconStockMediaOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconStockMediaOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconStockMediaOutlinedFilled as default } +export default IconStockMediaOutlinedFilled diff --git a/src/IconStockMediaRounded.tsx b/src/IconStockMediaRounded.tsx index 2b3f89062..dd6ffcb23 100644 --- a/src/IconStockMediaRounded.tsx +++ b/src/IconStockMediaRounded.tsx @@ -8,4 +8,4 @@ const IconStockMediaRounded: React.FC = ({ ...props }) => ( ) -export { IconStockMediaRounded as default } +export default IconStockMediaRounded diff --git a/src/IconStockMediaRoundedFilled.tsx b/src/IconStockMediaRoundedFilled.tsx index e7f85585a..5396d6701 100644 --- a/src/IconStockMediaRoundedFilled.tsx +++ b/src/IconStockMediaRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconStockMediaRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconStockMediaRoundedFilled as default } +export default IconStockMediaRoundedFilled diff --git a/src/IconStockMediaSharp.tsx b/src/IconStockMediaSharp.tsx index c96024c4c..4250338f8 100644 --- a/src/IconStockMediaSharp.tsx +++ b/src/IconStockMediaSharp.tsx @@ -8,4 +8,4 @@ const IconStockMediaSharp: React.FC = ({ ...props }) => ( ) -export { IconStockMediaSharp as default } +export default IconStockMediaSharp diff --git a/src/IconStockMediaSharpFilled.tsx b/src/IconStockMediaSharpFilled.tsx index 352d3d1c7..b5f88141c 100644 --- a/src/IconStockMediaSharpFilled.tsx +++ b/src/IconStockMediaSharpFilled.tsx @@ -8,4 +8,4 @@ const IconStockMediaSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconStockMediaSharpFilled as default } +export default IconStockMediaSharpFilled diff --git a/src/IconStockpotOutlined.tsx b/src/IconStockpotOutlined.tsx index 302205442..721e9f5e1 100644 --- a/src/IconStockpotOutlined.tsx +++ b/src/IconStockpotOutlined.tsx @@ -8,4 +8,4 @@ const IconStockpotOutlined: React.FC = ({ ...props }) => ( ) -export { IconStockpotOutlined as default } +export default IconStockpotOutlined diff --git a/src/IconStockpotOutlinedFilled.tsx b/src/IconStockpotOutlinedFilled.tsx index 305c06ce4..843e85f6f 100644 --- a/src/IconStockpotOutlinedFilled.tsx +++ b/src/IconStockpotOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconStockpotOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconStockpotOutlinedFilled as default } +export default IconStockpotOutlinedFilled diff --git a/src/IconStockpotRounded.tsx b/src/IconStockpotRounded.tsx index 19cc04266..b5ae52021 100644 --- a/src/IconStockpotRounded.tsx +++ b/src/IconStockpotRounded.tsx @@ -8,4 +8,4 @@ const IconStockpotRounded: React.FC = ({ ...props }) => ( ) -export { IconStockpotRounded as default } +export default IconStockpotRounded diff --git a/src/IconStockpotRoundedFilled.tsx b/src/IconStockpotRoundedFilled.tsx index 8b4dfc5ed..8d5602a3a 100644 --- a/src/IconStockpotRoundedFilled.tsx +++ b/src/IconStockpotRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconStockpotRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconStockpotRoundedFilled as default } +export default IconStockpotRoundedFilled diff --git a/src/IconStockpotSharp.tsx b/src/IconStockpotSharp.tsx index 01d633016..5ea2a040c 100644 --- a/src/IconStockpotSharp.tsx +++ b/src/IconStockpotSharp.tsx @@ -8,4 +8,4 @@ const IconStockpotSharp: React.FC = ({ ...props }) => ( ) -export { IconStockpotSharp as default } +export default IconStockpotSharp diff --git a/src/IconStockpotSharpFilled.tsx b/src/IconStockpotSharpFilled.tsx index 253952104..791aaf91c 100644 --- a/src/IconStockpotSharpFilled.tsx +++ b/src/IconStockpotSharpFilled.tsx @@ -8,4 +8,4 @@ const IconStockpotSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconStockpotSharpFilled as default } +export default IconStockpotSharpFilled diff --git a/src/IconStopCircleOutlined.tsx b/src/IconStopCircleOutlined.tsx index a092d44e7..ad1fdb74d 100644 --- a/src/IconStopCircleOutlined.tsx +++ b/src/IconStopCircleOutlined.tsx @@ -8,4 +8,4 @@ const IconStopCircleOutlined: React.FC = ({ ...props }) => ( ) -export { IconStopCircleOutlined as default } +export default IconStopCircleOutlined diff --git a/src/IconStopCircleOutlinedFilled.tsx b/src/IconStopCircleOutlinedFilled.tsx index 7b8dc5c0f..fc5ecc695 100644 --- a/src/IconStopCircleOutlinedFilled.tsx +++ b/src/IconStopCircleOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconStopCircleOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconStopCircleOutlinedFilled as default } +export default IconStopCircleOutlinedFilled diff --git a/src/IconStopCircleRounded.tsx b/src/IconStopCircleRounded.tsx index 1246d029c..b6aa7b989 100644 --- a/src/IconStopCircleRounded.tsx +++ b/src/IconStopCircleRounded.tsx @@ -8,4 +8,4 @@ const IconStopCircleRounded: React.FC = ({ ...props }) => ( ) -export { IconStopCircleRounded as default } +export default IconStopCircleRounded diff --git a/src/IconStopCircleRoundedFilled.tsx b/src/IconStopCircleRoundedFilled.tsx index 4010ee859..0533477fd 100644 --- a/src/IconStopCircleRoundedFilled.tsx +++ b/src/IconStopCircleRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconStopCircleRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconStopCircleRoundedFilled as default } +export default IconStopCircleRoundedFilled diff --git a/src/IconStopCircleSharp.tsx b/src/IconStopCircleSharp.tsx index 6b96d4f5e..9784d7efb 100644 --- a/src/IconStopCircleSharp.tsx +++ b/src/IconStopCircleSharp.tsx @@ -8,4 +8,4 @@ const IconStopCircleSharp: React.FC = ({ ...props }) => ( ) -export { IconStopCircleSharp as default } +export default IconStopCircleSharp diff --git a/src/IconStopCircleSharpFilled.tsx b/src/IconStopCircleSharpFilled.tsx index 6e2d2018d..dd003a09b 100644 --- a/src/IconStopCircleSharpFilled.tsx +++ b/src/IconStopCircleSharpFilled.tsx @@ -8,4 +8,4 @@ const IconStopCircleSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconStopCircleSharpFilled as default } +export default IconStopCircleSharpFilled diff --git a/src/IconStopOutlined.tsx b/src/IconStopOutlined.tsx index 1de19b54f..2e2c15419 100644 --- a/src/IconStopOutlined.tsx +++ b/src/IconStopOutlined.tsx @@ -8,4 +8,4 @@ const IconStopOutlined: React.FC = ({ ...props }) => ( ) -export { IconStopOutlined as default } +export default IconStopOutlined diff --git a/src/IconStopOutlinedFilled.tsx b/src/IconStopOutlinedFilled.tsx index f1ef583a0..ca51f387e 100644 --- a/src/IconStopOutlinedFilled.tsx +++ b/src/IconStopOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconStopOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconStopOutlinedFilled as default } +export default IconStopOutlinedFilled diff --git a/src/IconStopRounded.tsx b/src/IconStopRounded.tsx index 0c0fe6daf..d04d7fa79 100644 --- a/src/IconStopRounded.tsx +++ b/src/IconStopRounded.tsx @@ -8,4 +8,4 @@ const IconStopRounded: React.FC = ({ ...props }) => ( ) -export { IconStopRounded as default } +export default IconStopRounded diff --git a/src/IconStopRoundedFilled.tsx b/src/IconStopRoundedFilled.tsx index f019cb4ab..cb70cdbcf 100644 --- a/src/IconStopRoundedFilled.tsx +++ b/src/IconStopRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconStopRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconStopRoundedFilled as default } +export default IconStopRoundedFilled diff --git a/src/IconStopScreenShareOutlined.tsx b/src/IconStopScreenShareOutlined.tsx index 51d340e38..c4df1aeb5 100644 --- a/src/IconStopScreenShareOutlined.tsx +++ b/src/IconStopScreenShareOutlined.tsx @@ -8,4 +8,4 @@ const IconStopScreenShareOutlined: React.FC = ({ ...props }) => ( ) -export { IconStopScreenShareOutlined as default } +export default IconStopScreenShareOutlined diff --git a/src/IconStopScreenShareOutlinedFilled.tsx b/src/IconStopScreenShareOutlinedFilled.tsx index 91fc5012e..b1fbee07d 100644 --- a/src/IconStopScreenShareOutlinedFilled.tsx +++ b/src/IconStopScreenShareOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconStopScreenShareOutlinedFilled: React.FC = ({ ) -export { IconStopScreenShareOutlinedFilled as default } +export default IconStopScreenShareOutlinedFilled diff --git a/src/IconStopScreenShareRounded.tsx b/src/IconStopScreenShareRounded.tsx index fc7860124..702b07787 100644 --- a/src/IconStopScreenShareRounded.tsx +++ b/src/IconStopScreenShareRounded.tsx @@ -8,4 +8,4 @@ const IconStopScreenShareRounded: React.FC = ({ ...props }) => ( ) -export { IconStopScreenShareRounded as default } +export default IconStopScreenShareRounded diff --git a/src/IconStopScreenShareRoundedFilled.tsx b/src/IconStopScreenShareRoundedFilled.tsx index 398a650ed..e5dbff573 100644 --- a/src/IconStopScreenShareRoundedFilled.tsx +++ b/src/IconStopScreenShareRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconStopScreenShareRoundedFilled: React.FC = ({ ) -export { IconStopScreenShareRoundedFilled as default } +export default IconStopScreenShareRoundedFilled diff --git a/src/IconStopScreenShareSharp.tsx b/src/IconStopScreenShareSharp.tsx index c307ada07..5d8b7e6a7 100644 --- a/src/IconStopScreenShareSharp.tsx +++ b/src/IconStopScreenShareSharp.tsx @@ -8,4 +8,4 @@ const IconStopScreenShareSharp: React.FC = ({ ...props }) => ( ) -export { IconStopScreenShareSharp as default } +export default IconStopScreenShareSharp diff --git a/src/IconStopScreenShareSharpFilled.tsx b/src/IconStopScreenShareSharpFilled.tsx index b65672340..7de158f75 100644 --- a/src/IconStopScreenShareSharpFilled.tsx +++ b/src/IconStopScreenShareSharpFilled.tsx @@ -8,4 +8,4 @@ const IconStopScreenShareSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconStopScreenShareSharpFilled as default } +export default IconStopScreenShareSharpFilled diff --git a/src/IconStopSharp.tsx b/src/IconStopSharp.tsx index e27098032..3b2fc0bcf 100644 --- a/src/IconStopSharp.tsx +++ b/src/IconStopSharp.tsx @@ -8,4 +8,4 @@ const IconStopSharp: React.FC = ({ ...props }) => ( ) -export { IconStopSharp as default } +export default IconStopSharp diff --git a/src/IconStopSharpFilled.tsx b/src/IconStopSharpFilled.tsx index b30e18c6e..80a1ea901 100644 --- a/src/IconStopSharpFilled.tsx +++ b/src/IconStopSharpFilled.tsx @@ -8,4 +8,4 @@ const IconStopSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconStopSharpFilled as default } +export default IconStopSharpFilled diff --git a/src/IconStorageOutlined.tsx b/src/IconStorageOutlined.tsx index 4cbba1ba3..601301e92 100644 --- a/src/IconStorageOutlined.tsx +++ b/src/IconStorageOutlined.tsx @@ -8,4 +8,4 @@ const IconStorageOutlined: React.FC = ({ ...props }) => ( ) -export { IconStorageOutlined as default } +export default IconStorageOutlined diff --git a/src/IconStorageOutlinedFilled.tsx b/src/IconStorageOutlinedFilled.tsx index b56507827..3ecf333a2 100644 --- a/src/IconStorageOutlinedFilled.tsx +++ b/src/IconStorageOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconStorageOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconStorageOutlinedFilled as default } +export default IconStorageOutlinedFilled diff --git a/src/IconStorageRounded.tsx b/src/IconStorageRounded.tsx index 2f768b3d3..846a6f6ba 100644 --- a/src/IconStorageRounded.tsx +++ b/src/IconStorageRounded.tsx @@ -8,4 +8,4 @@ const IconStorageRounded: React.FC = ({ ...props }) => ( ) -export { IconStorageRounded as default } +export default IconStorageRounded diff --git a/src/IconStorageRoundedFilled.tsx b/src/IconStorageRoundedFilled.tsx index 87896a9dc..00becfcef 100644 --- a/src/IconStorageRoundedFilled.tsx +++ b/src/IconStorageRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconStorageRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconStorageRoundedFilled as default } +export default IconStorageRoundedFilled diff --git a/src/IconStorageSharp.tsx b/src/IconStorageSharp.tsx index 0d3e3af52..d488bb4e7 100644 --- a/src/IconStorageSharp.tsx +++ b/src/IconStorageSharp.tsx @@ -8,4 +8,4 @@ const IconStorageSharp: React.FC = ({ ...props }) => ( ) -export { IconStorageSharp as default } +export default IconStorageSharp diff --git a/src/IconStorageSharpFilled.tsx b/src/IconStorageSharpFilled.tsx index 2d2273f17..043469ec8 100644 --- a/src/IconStorageSharpFilled.tsx +++ b/src/IconStorageSharpFilled.tsx @@ -8,4 +8,4 @@ const IconStorageSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconStorageSharpFilled as default } +export default IconStorageSharpFilled diff --git a/src/IconStoreOutlined.tsx b/src/IconStoreOutlined.tsx index 57d7fffa2..fd2760d72 100644 --- a/src/IconStoreOutlined.tsx +++ b/src/IconStoreOutlined.tsx @@ -8,4 +8,4 @@ const IconStoreOutlined: React.FC = ({ ...props }) => ( ) -export { IconStoreOutlined as default } +export default IconStoreOutlined diff --git a/src/IconStoreOutlinedFilled.tsx b/src/IconStoreOutlinedFilled.tsx index 9ba695d7d..cef55041d 100644 --- a/src/IconStoreOutlinedFilled.tsx +++ b/src/IconStoreOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconStoreOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconStoreOutlinedFilled as default } +export default IconStoreOutlinedFilled diff --git a/src/IconStoreRounded.tsx b/src/IconStoreRounded.tsx index fb83e591c..7bc1225d9 100644 --- a/src/IconStoreRounded.tsx +++ b/src/IconStoreRounded.tsx @@ -8,4 +8,4 @@ const IconStoreRounded: React.FC = ({ ...props }) => ( ) -export { IconStoreRounded as default } +export default IconStoreRounded diff --git a/src/IconStoreRoundedFilled.tsx b/src/IconStoreRoundedFilled.tsx index 9583896ae..c8033ad20 100644 --- a/src/IconStoreRoundedFilled.tsx +++ b/src/IconStoreRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconStoreRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconStoreRoundedFilled as default } +export default IconStoreRoundedFilled diff --git a/src/IconStoreSharp.tsx b/src/IconStoreSharp.tsx index 4d24768c8..073478179 100644 --- a/src/IconStoreSharp.tsx +++ b/src/IconStoreSharp.tsx @@ -8,4 +8,4 @@ const IconStoreSharp: React.FC = ({ ...props }) => ( ) -export { IconStoreSharp as default } +export default IconStoreSharp diff --git a/src/IconStoreSharpFilled.tsx b/src/IconStoreSharpFilled.tsx index 56c5359f0..a37693bed 100644 --- a/src/IconStoreSharpFilled.tsx +++ b/src/IconStoreSharpFilled.tsx @@ -8,4 +8,4 @@ const IconStoreSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconStoreSharpFilled as default } +export default IconStoreSharpFilled diff --git a/src/IconStorefrontOutlined.tsx b/src/IconStorefrontOutlined.tsx index 27201fa32..32210aa8c 100644 --- a/src/IconStorefrontOutlined.tsx +++ b/src/IconStorefrontOutlined.tsx @@ -8,4 +8,4 @@ const IconStorefrontOutlined: React.FC = ({ ...props }) => ( ) -export { IconStorefrontOutlined as default } +export default IconStorefrontOutlined diff --git a/src/IconStorefrontOutlinedFilled.tsx b/src/IconStorefrontOutlinedFilled.tsx index 0f19aa7f5..2f25e5d38 100644 --- a/src/IconStorefrontOutlinedFilled.tsx +++ b/src/IconStorefrontOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconStorefrontOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconStorefrontOutlinedFilled as default } +export default IconStorefrontOutlinedFilled diff --git a/src/IconStorefrontRounded.tsx b/src/IconStorefrontRounded.tsx index 4cc314161..c3cd8df9f 100644 --- a/src/IconStorefrontRounded.tsx +++ b/src/IconStorefrontRounded.tsx @@ -8,4 +8,4 @@ const IconStorefrontRounded: React.FC = ({ ...props }) => ( ) -export { IconStorefrontRounded as default } +export default IconStorefrontRounded diff --git a/src/IconStorefrontRoundedFilled.tsx b/src/IconStorefrontRoundedFilled.tsx index 50a14dc28..a8fa06bc6 100644 --- a/src/IconStorefrontRoundedFilled.tsx +++ b/src/IconStorefrontRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconStorefrontRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconStorefrontRoundedFilled as default } +export default IconStorefrontRoundedFilled diff --git a/src/IconStorefrontSharp.tsx b/src/IconStorefrontSharp.tsx index 7dac0017c..a99a05f77 100644 --- a/src/IconStorefrontSharp.tsx +++ b/src/IconStorefrontSharp.tsx @@ -8,4 +8,4 @@ const IconStorefrontSharp: React.FC = ({ ...props }) => ( ) -export { IconStorefrontSharp as default } +export default IconStorefrontSharp diff --git a/src/IconStorefrontSharpFilled.tsx b/src/IconStorefrontSharpFilled.tsx index 5d1562204..b969856a7 100644 --- a/src/IconStorefrontSharpFilled.tsx +++ b/src/IconStorefrontSharpFilled.tsx @@ -8,4 +8,4 @@ const IconStorefrontSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconStorefrontSharpFilled as default } +export default IconStorefrontSharpFilled diff --git a/src/IconStormOutlined.tsx b/src/IconStormOutlined.tsx index 5fbf95409..39fd908dc 100644 --- a/src/IconStormOutlined.tsx +++ b/src/IconStormOutlined.tsx @@ -8,4 +8,4 @@ const IconStormOutlined: React.FC = ({ ...props }) => ( ) -export { IconStormOutlined as default } +export default IconStormOutlined diff --git a/src/IconStormOutlinedFilled.tsx b/src/IconStormOutlinedFilled.tsx index 763b3a500..45063be2f 100644 --- a/src/IconStormOutlinedFilled.tsx +++ b/src/IconStormOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconStormOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconStormOutlinedFilled as default } +export default IconStormOutlinedFilled diff --git a/src/IconStormRounded.tsx b/src/IconStormRounded.tsx index f6e29e489..e6408addb 100644 --- a/src/IconStormRounded.tsx +++ b/src/IconStormRounded.tsx @@ -8,4 +8,4 @@ const IconStormRounded: React.FC = ({ ...props }) => ( ) -export { IconStormRounded as default } +export default IconStormRounded diff --git a/src/IconStormRoundedFilled.tsx b/src/IconStormRoundedFilled.tsx index eb7774c56..b77430842 100644 --- a/src/IconStormRoundedFilled.tsx +++ b/src/IconStormRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconStormRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconStormRoundedFilled as default } +export default IconStormRoundedFilled diff --git a/src/IconStormSharp.tsx b/src/IconStormSharp.tsx index 959fe87dc..6ea5a6c2b 100644 --- a/src/IconStormSharp.tsx +++ b/src/IconStormSharp.tsx @@ -8,4 +8,4 @@ const IconStormSharp: React.FC = ({ ...props }) => ( ) -export { IconStormSharp as default } +export default IconStormSharp diff --git a/src/IconStormSharpFilled.tsx b/src/IconStormSharpFilled.tsx index c7caf3856..2d8ded416 100644 --- a/src/IconStormSharpFilled.tsx +++ b/src/IconStormSharpFilled.tsx @@ -8,4 +8,4 @@ const IconStormSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconStormSharpFilled as default } +export default IconStormSharpFilled diff --git a/src/IconStraightOutlined.tsx b/src/IconStraightOutlined.tsx index 894d61b53..e42fc5cbd 100644 --- a/src/IconStraightOutlined.tsx +++ b/src/IconStraightOutlined.tsx @@ -8,4 +8,4 @@ const IconStraightOutlined: React.FC = ({ ...props }) => ( ) -export { IconStraightOutlined as default } +export default IconStraightOutlined diff --git a/src/IconStraightOutlinedFilled.tsx b/src/IconStraightOutlinedFilled.tsx index 665f990f0..f0ccf1fac 100644 --- a/src/IconStraightOutlinedFilled.tsx +++ b/src/IconStraightOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconStraightOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconStraightOutlinedFilled as default } +export default IconStraightOutlinedFilled diff --git a/src/IconStraightRounded.tsx b/src/IconStraightRounded.tsx index d0aa979a9..83b67d75d 100644 --- a/src/IconStraightRounded.tsx +++ b/src/IconStraightRounded.tsx @@ -8,4 +8,4 @@ const IconStraightRounded: React.FC = ({ ...props }) => ( ) -export { IconStraightRounded as default } +export default IconStraightRounded diff --git a/src/IconStraightRoundedFilled.tsx b/src/IconStraightRoundedFilled.tsx index 878b266db..139da5880 100644 --- a/src/IconStraightRoundedFilled.tsx +++ b/src/IconStraightRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconStraightRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconStraightRoundedFilled as default } +export default IconStraightRoundedFilled diff --git a/src/IconStraightSharp.tsx b/src/IconStraightSharp.tsx index 800f0820b..92664ed04 100644 --- a/src/IconStraightSharp.tsx +++ b/src/IconStraightSharp.tsx @@ -8,4 +8,4 @@ const IconStraightSharp: React.FC = ({ ...props }) => ( ) -export { IconStraightSharp as default } +export default IconStraightSharp diff --git a/src/IconStraightSharpFilled.tsx b/src/IconStraightSharpFilled.tsx index 5efbdb0b1..b35f48a42 100644 --- a/src/IconStraightSharpFilled.tsx +++ b/src/IconStraightSharpFilled.tsx @@ -8,4 +8,4 @@ const IconStraightSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconStraightSharpFilled as default } +export default IconStraightSharpFilled diff --git a/src/IconStraightenOutlined.tsx b/src/IconStraightenOutlined.tsx index 6a678e0ae..c8d8768a3 100644 --- a/src/IconStraightenOutlined.tsx +++ b/src/IconStraightenOutlined.tsx @@ -8,4 +8,4 @@ const IconStraightenOutlined: React.FC = ({ ...props }) => ( ) -export { IconStraightenOutlined as default } +export default IconStraightenOutlined diff --git a/src/IconStraightenOutlinedFilled.tsx b/src/IconStraightenOutlinedFilled.tsx index 560b22d1e..4fb86bcfe 100644 --- a/src/IconStraightenOutlinedFilled.tsx +++ b/src/IconStraightenOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconStraightenOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconStraightenOutlinedFilled as default } +export default IconStraightenOutlinedFilled diff --git a/src/IconStraightenRounded.tsx b/src/IconStraightenRounded.tsx index a62618394..e87a46c51 100644 --- a/src/IconStraightenRounded.tsx +++ b/src/IconStraightenRounded.tsx @@ -8,4 +8,4 @@ const IconStraightenRounded: React.FC = ({ ...props }) => ( ) -export { IconStraightenRounded as default } +export default IconStraightenRounded diff --git a/src/IconStraightenRoundedFilled.tsx b/src/IconStraightenRoundedFilled.tsx index 14f3d38d4..4da3f7a7c 100644 --- a/src/IconStraightenRoundedFilled.tsx +++ b/src/IconStraightenRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconStraightenRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconStraightenRoundedFilled as default } +export default IconStraightenRoundedFilled diff --git a/src/IconStraightenSharp.tsx b/src/IconStraightenSharp.tsx index 5435ede8d..1c6a1c4b5 100644 --- a/src/IconStraightenSharp.tsx +++ b/src/IconStraightenSharp.tsx @@ -8,4 +8,4 @@ const IconStraightenSharp: React.FC = ({ ...props }) => ( ) -export { IconStraightenSharp as default } +export default IconStraightenSharp diff --git a/src/IconStraightenSharpFilled.tsx b/src/IconStraightenSharpFilled.tsx index ba3763f7e..f5c418369 100644 --- a/src/IconStraightenSharpFilled.tsx +++ b/src/IconStraightenSharpFilled.tsx @@ -8,4 +8,4 @@ const IconStraightenSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconStraightenSharpFilled as default } +export default IconStraightenSharpFilled diff --git a/src/IconStrategyOutlined.tsx b/src/IconStrategyOutlined.tsx index 9abde21b5..8c04ef681 100644 --- a/src/IconStrategyOutlined.tsx +++ b/src/IconStrategyOutlined.tsx @@ -8,4 +8,4 @@ const IconStrategyOutlined: React.FC = ({ ...props }) => ( ) -export { IconStrategyOutlined as default } +export default IconStrategyOutlined diff --git a/src/IconStrategyOutlinedFilled.tsx b/src/IconStrategyOutlinedFilled.tsx index 3083b7344..5029a3f51 100644 --- a/src/IconStrategyOutlinedFilled.tsx +++ b/src/IconStrategyOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconStrategyOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconStrategyOutlinedFilled as default } +export default IconStrategyOutlinedFilled diff --git a/src/IconStrategyRounded.tsx b/src/IconStrategyRounded.tsx index bfd34449d..b426ccf7f 100644 --- a/src/IconStrategyRounded.tsx +++ b/src/IconStrategyRounded.tsx @@ -8,4 +8,4 @@ const IconStrategyRounded: React.FC = ({ ...props }) => ( ) -export { IconStrategyRounded as default } +export default IconStrategyRounded diff --git a/src/IconStrategyRoundedFilled.tsx b/src/IconStrategyRoundedFilled.tsx index 44722b840..6f5e4c97e 100644 --- a/src/IconStrategyRoundedFilled.tsx +++ b/src/IconStrategyRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconStrategyRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconStrategyRoundedFilled as default } +export default IconStrategyRoundedFilled diff --git a/src/IconStrategySharp.tsx b/src/IconStrategySharp.tsx index 93b1cd3bc..10c9aab7e 100644 --- a/src/IconStrategySharp.tsx +++ b/src/IconStrategySharp.tsx @@ -8,4 +8,4 @@ const IconStrategySharp: React.FC = ({ ...props }) => ( ) -export { IconStrategySharp as default } +export default IconStrategySharp diff --git a/src/IconStrategySharpFilled.tsx b/src/IconStrategySharpFilled.tsx index dfdbaca08..77ec392a5 100644 --- a/src/IconStrategySharpFilled.tsx +++ b/src/IconStrategySharpFilled.tsx @@ -8,4 +8,4 @@ const IconStrategySharpFilled: React.FC = ({ ...props }) => ( ) -export { IconStrategySharpFilled as default } +export default IconStrategySharpFilled diff --git a/src/IconStreamAppsOutlined.tsx b/src/IconStreamAppsOutlined.tsx index 899524be8..8ab5d989e 100644 --- a/src/IconStreamAppsOutlined.tsx +++ b/src/IconStreamAppsOutlined.tsx @@ -8,4 +8,4 @@ const IconStreamAppsOutlined: React.FC = ({ ...props }) => ( ) -export { IconStreamAppsOutlined as default } +export default IconStreamAppsOutlined diff --git a/src/IconStreamAppsOutlinedFilled.tsx b/src/IconStreamAppsOutlinedFilled.tsx index 61ee24f02..ae6d0d70e 100644 --- a/src/IconStreamAppsOutlinedFilled.tsx +++ b/src/IconStreamAppsOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconStreamAppsOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconStreamAppsOutlinedFilled as default } +export default IconStreamAppsOutlinedFilled diff --git a/src/IconStreamAppsRounded.tsx b/src/IconStreamAppsRounded.tsx index 20beb675f..36d6a73da 100644 --- a/src/IconStreamAppsRounded.tsx +++ b/src/IconStreamAppsRounded.tsx @@ -8,4 +8,4 @@ const IconStreamAppsRounded: React.FC = ({ ...props }) => ( ) -export { IconStreamAppsRounded as default } +export default IconStreamAppsRounded diff --git a/src/IconStreamAppsRoundedFilled.tsx b/src/IconStreamAppsRoundedFilled.tsx index 4f4b32522..f04b98570 100644 --- a/src/IconStreamAppsRoundedFilled.tsx +++ b/src/IconStreamAppsRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconStreamAppsRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconStreamAppsRoundedFilled as default } +export default IconStreamAppsRoundedFilled diff --git a/src/IconStreamAppsSharp.tsx b/src/IconStreamAppsSharp.tsx index f97d2593c..45ea40d83 100644 --- a/src/IconStreamAppsSharp.tsx +++ b/src/IconStreamAppsSharp.tsx @@ -8,4 +8,4 @@ const IconStreamAppsSharp: React.FC = ({ ...props }) => ( ) -export { IconStreamAppsSharp as default } +export default IconStreamAppsSharp diff --git a/src/IconStreamAppsSharpFilled.tsx b/src/IconStreamAppsSharpFilled.tsx index c20a0290e..b6f40a15f 100644 --- a/src/IconStreamAppsSharpFilled.tsx +++ b/src/IconStreamAppsSharpFilled.tsx @@ -8,4 +8,4 @@ const IconStreamAppsSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconStreamAppsSharpFilled as default } +export default IconStreamAppsSharpFilled diff --git a/src/IconStreamOutlined.tsx b/src/IconStreamOutlined.tsx index 7f7ad16d6..7bd7b9715 100644 --- a/src/IconStreamOutlined.tsx +++ b/src/IconStreamOutlined.tsx @@ -8,4 +8,4 @@ const IconStreamOutlined: React.FC = ({ ...props }) => ( ) -export { IconStreamOutlined as default } +export default IconStreamOutlined diff --git a/src/IconStreamOutlinedFilled.tsx b/src/IconStreamOutlinedFilled.tsx index 7a0fe9242..80e117bbe 100644 --- a/src/IconStreamOutlinedFilled.tsx +++ b/src/IconStreamOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconStreamOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconStreamOutlinedFilled as default } +export default IconStreamOutlinedFilled diff --git a/src/IconStreamRounded.tsx b/src/IconStreamRounded.tsx index 254c7c4e7..14e4be81e 100644 --- a/src/IconStreamRounded.tsx +++ b/src/IconStreamRounded.tsx @@ -8,4 +8,4 @@ const IconStreamRounded: React.FC = ({ ...props }) => ( ) -export { IconStreamRounded as default } +export default IconStreamRounded diff --git a/src/IconStreamRoundedFilled.tsx b/src/IconStreamRoundedFilled.tsx index 7f47cdfde..6642b84e0 100644 --- a/src/IconStreamRoundedFilled.tsx +++ b/src/IconStreamRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconStreamRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconStreamRoundedFilled as default } +export default IconStreamRoundedFilled diff --git a/src/IconStreamSharp.tsx b/src/IconStreamSharp.tsx index 615285278..27cf533b0 100644 --- a/src/IconStreamSharp.tsx +++ b/src/IconStreamSharp.tsx @@ -8,4 +8,4 @@ const IconStreamSharp: React.FC = ({ ...props }) => ( ) -export { IconStreamSharp as default } +export default IconStreamSharp diff --git a/src/IconStreamSharpFilled.tsx b/src/IconStreamSharpFilled.tsx index 8b0bb3c15..24a5940e9 100644 --- a/src/IconStreamSharpFilled.tsx +++ b/src/IconStreamSharpFilled.tsx @@ -8,4 +8,4 @@ const IconStreamSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconStreamSharpFilled as default } +export default IconStreamSharpFilled diff --git a/src/IconStreetviewOutlined.tsx b/src/IconStreetviewOutlined.tsx index 9140837b8..15965e6bf 100644 --- a/src/IconStreetviewOutlined.tsx +++ b/src/IconStreetviewOutlined.tsx @@ -8,4 +8,4 @@ const IconStreetviewOutlined: React.FC = ({ ...props }) => ( ) -export { IconStreetviewOutlined as default } +export default IconStreetviewOutlined diff --git a/src/IconStreetviewOutlinedFilled.tsx b/src/IconStreetviewOutlinedFilled.tsx index a73dc37eb..b5791d911 100644 --- a/src/IconStreetviewOutlinedFilled.tsx +++ b/src/IconStreetviewOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconStreetviewOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconStreetviewOutlinedFilled as default } +export default IconStreetviewOutlinedFilled diff --git a/src/IconStreetviewRounded.tsx b/src/IconStreetviewRounded.tsx index 47d3f1302..73bb7cc15 100644 --- a/src/IconStreetviewRounded.tsx +++ b/src/IconStreetviewRounded.tsx @@ -8,4 +8,4 @@ const IconStreetviewRounded: React.FC = ({ ...props }) => ( ) -export { IconStreetviewRounded as default } +export default IconStreetviewRounded diff --git a/src/IconStreetviewRoundedFilled.tsx b/src/IconStreetviewRoundedFilled.tsx index d3d8412d6..aa1e407cf 100644 --- a/src/IconStreetviewRoundedFilled.tsx +++ b/src/IconStreetviewRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconStreetviewRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconStreetviewRoundedFilled as default } +export default IconStreetviewRoundedFilled diff --git a/src/IconStreetviewSharp.tsx b/src/IconStreetviewSharp.tsx index 09abb94fb..056470aeb 100644 --- a/src/IconStreetviewSharp.tsx +++ b/src/IconStreetviewSharp.tsx @@ -8,4 +8,4 @@ const IconStreetviewSharp: React.FC = ({ ...props }) => ( ) -export { IconStreetviewSharp as default } +export default IconStreetviewSharp diff --git a/src/IconStreetviewSharpFilled.tsx b/src/IconStreetviewSharpFilled.tsx index c1f1a5448..1bc243eb1 100644 --- a/src/IconStreetviewSharpFilled.tsx +++ b/src/IconStreetviewSharpFilled.tsx @@ -8,4 +8,4 @@ const IconStreetviewSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconStreetviewSharpFilled as default } +export default IconStreetviewSharpFilled diff --git a/src/IconStressManagementOutlined.tsx b/src/IconStressManagementOutlined.tsx index f26c5b695..0529d0fd4 100644 --- a/src/IconStressManagementOutlined.tsx +++ b/src/IconStressManagementOutlined.tsx @@ -8,4 +8,4 @@ const IconStressManagementOutlined: React.FC = ({ ...props }) => ( ) -export { IconStressManagementOutlined as default } +export default IconStressManagementOutlined diff --git a/src/IconStressManagementOutlinedFilled.tsx b/src/IconStressManagementOutlinedFilled.tsx index 56a5e28ba..deb7c482f 100644 --- a/src/IconStressManagementOutlinedFilled.tsx +++ b/src/IconStressManagementOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconStressManagementOutlinedFilled: React.FC = ({ ) -export { IconStressManagementOutlinedFilled as default } +export default IconStressManagementOutlinedFilled diff --git a/src/IconStressManagementRounded.tsx b/src/IconStressManagementRounded.tsx index 04c7f0283..5e3d03886 100644 --- a/src/IconStressManagementRounded.tsx +++ b/src/IconStressManagementRounded.tsx @@ -8,4 +8,4 @@ const IconStressManagementRounded: React.FC = ({ ...props }) => ( ) -export { IconStressManagementRounded as default } +export default IconStressManagementRounded diff --git a/src/IconStressManagementRoundedFilled.tsx b/src/IconStressManagementRoundedFilled.tsx index de82b0507..b4be19b44 100644 --- a/src/IconStressManagementRoundedFilled.tsx +++ b/src/IconStressManagementRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconStressManagementRoundedFilled: React.FC = ({ ) -export { IconStressManagementRoundedFilled as default } +export default IconStressManagementRoundedFilled diff --git a/src/IconStressManagementSharp.tsx b/src/IconStressManagementSharp.tsx index 1d8851d08..2d0d1c10d 100644 --- a/src/IconStressManagementSharp.tsx +++ b/src/IconStressManagementSharp.tsx @@ -8,4 +8,4 @@ const IconStressManagementSharp: React.FC = ({ ...props }) => ( ) -export { IconStressManagementSharp as default } +export default IconStressManagementSharp diff --git a/src/IconStressManagementSharpFilled.tsx b/src/IconStressManagementSharpFilled.tsx index 9b1db1c48..5aa0ce61c 100644 --- a/src/IconStressManagementSharpFilled.tsx +++ b/src/IconStressManagementSharpFilled.tsx @@ -8,4 +8,4 @@ const IconStressManagementSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconStressManagementSharpFilled as default } +export default IconStressManagementSharpFilled diff --git a/src/IconStrikethroughSOutlined.tsx b/src/IconStrikethroughSOutlined.tsx index 2bf2c398c..0b9bfb372 100644 --- a/src/IconStrikethroughSOutlined.tsx +++ b/src/IconStrikethroughSOutlined.tsx @@ -8,4 +8,4 @@ const IconStrikethroughSOutlined: React.FC = ({ ...props }) => ( ) -export { IconStrikethroughSOutlined as default } +export default IconStrikethroughSOutlined diff --git a/src/IconStrikethroughSOutlinedFilled.tsx b/src/IconStrikethroughSOutlinedFilled.tsx index 7b61cde91..3b6d9ecf6 100644 --- a/src/IconStrikethroughSOutlinedFilled.tsx +++ b/src/IconStrikethroughSOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconStrikethroughSOutlinedFilled: React.FC = ({ ) -export { IconStrikethroughSOutlinedFilled as default } +export default IconStrikethroughSOutlinedFilled diff --git a/src/IconStrikethroughSRounded.tsx b/src/IconStrikethroughSRounded.tsx index cff03ce2f..1a91a778e 100644 --- a/src/IconStrikethroughSRounded.tsx +++ b/src/IconStrikethroughSRounded.tsx @@ -8,4 +8,4 @@ const IconStrikethroughSRounded: React.FC = ({ ...props }) => ( ) -export { IconStrikethroughSRounded as default } +export default IconStrikethroughSRounded diff --git a/src/IconStrikethroughSRoundedFilled.tsx b/src/IconStrikethroughSRoundedFilled.tsx index 4e750a686..76e2bd840 100644 --- a/src/IconStrikethroughSRoundedFilled.tsx +++ b/src/IconStrikethroughSRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconStrikethroughSRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconStrikethroughSRoundedFilled as default } +export default IconStrikethroughSRoundedFilled diff --git a/src/IconStrikethroughSSharp.tsx b/src/IconStrikethroughSSharp.tsx index 1b9a73d7f..5a211bdc1 100644 --- a/src/IconStrikethroughSSharp.tsx +++ b/src/IconStrikethroughSSharp.tsx @@ -8,4 +8,4 @@ const IconStrikethroughSSharp: React.FC = ({ ...props }) => ( ) -export { IconStrikethroughSSharp as default } +export default IconStrikethroughSSharp diff --git a/src/IconStrikethroughSSharpFilled.tsx b/src/IconStrikethroughSSharpFilled.tsx index d1709557d..aae988565 100644 --- a/src/IconStrikethroughSSharpFilled.tsx +++ b/src/IconStrikethroughSSharpFilled.tsx @@ -8,4 +8,4 @@ const IconStrikethroughSSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconStrikethroughSSharpFilled as default } +export default IconStrikethroughSSharpFilled diff --git a/src/IconStrokeFullOutlined.tsx b/src/IconStrokeFullOutlined.tsx index 0a779b6f5..b3f09cadf 100644 --- a/src/IconStrokeFullOutlined.tsx +++ b/src/IconStrokeFullOutlined.tsx @@ -8,4 +8,4 @@ const IconStrokeFullOutlined: React.FC = ({ ...props }) => ( ) -export { IconStrokeFullOutlined as default } +export default IconStrokeFullOutlined diff --git a/src/IconStrokeFullOutlinedFilled.tsx b/src/IconStrokeFullOutlinedFilled.tsx index 804c19479..8f9b3a6aa 100644 --- a/src/IconStrokeFullOutlinedFilled.tsx +++ b/src/IconStrokeFullOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconStrokeFullOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconStrokeFullOutlinedFilled as default } +export default IconStrokeFullOutlinedFilled diff --git a/src/IconStrokeFullRounded.tsx b/src/IconStrokeFullRounded.tsx index 5f3119ef9..0147ac020 100644 --- a/src/IconStrokeFullRounded.tsx +++ b/src/IconStrokeFullRounded.tsx @@ -8,4 +8,4 @@ const IconStrokeFullRounded: React.FC = ({ ...props }) => ( ) -export { IconStrokeFullRounded as default } +export default IconStrokeFullRounded diff --git a/src/IconStrokeFullRoundedFilled.tsx b/src/IconStrokeFullRoundedFilled.tsx index 87815f419..707828cd8 100644 --- a/src/IconStrokeFullRoundedFilled.tsx +++ b/src/IconStrokeFullRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconStrokeFullRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconStrokeFullRoundedFilled as default } +export default IconStrokeFullRoundedFilled diff --git a/src/IconStrokeFullSharp.tsx b/src/IconStrokeFullSharp.tsx index 693735ef8..ec4d1fad6 100644 --- a/src/IconStrokeFullSharp.tsx +++ b/src/IconStrokeFullSharp.tsx @@ -8,4 +8,4 @@ const IconStrokeFullSharp: React.FC = ({ ...props }) => ( ) -export { IconStrokeFullSharp as default } +export default IconStrokeFullSharp diff --git a/src/IconStrokeFullSharpFilled.tsx b/src/IconStrokeFullSharpFilled.tsx index 2f0a77a32..4b47fc007 100644 --- a/src/IconStrokeFullSharpFilled.tsx +++ b/src/IconStrokeFullSharpFilled.tsx @@ -8,4 +8,4 @@ const IconStrokeFullSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconStrokeFullSharpFilled as default } +export default IconStrokeFullSharpFilled diff --git a/src/IconStrokePartialOutlined.tsx b/src/IconStrokePartialOutlined.tsx index 488700251..99b11175a 100644 --- a/src/IconStrokePartialOutlined.tsx +++ b/src/IconStrokePartialOutlined.tsx @@ -8,4 +8,4 @@ const IconStrokePartialOutlined: React.FC = ({ ...props }) => ( ) -export { IconStrokePartialOutlined as default } +export default IconStrokePartialOutlined diff --git a/src/IconStrokePartialOutlinedFilled.tsx b/src/IconStrokePartialOutlinedFilled.tsx index cd7c4471d..b87fe770a 100644 --- a/src/IconStrokePartialOutlinedFilled.tsx +++ b/src/IconStrokePartialOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconStrokePartialOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconStrokePartialOutlinedFilled as default } +export default IconStrokePartialOutlinedFilled diff --git a/src/IconStrokePartialRounded.tsx b/src/IconStrokePartialRounded.tsx index abe8f111b..4d8cc5946 100644 --- a/src/IconStrokePartialRounded.tsx +++ b/src/IconStrokePartialRounded.tsx @@ -8,4 +8,4 @@ const IconStrokePartialRounded: React.FC = ({ ...props }) => ( ) -export { IconStrokePartialRounded as default } +export default IconStrokePartialRounded diff --git a/src/IconStrokePartialRoundedFilled.tsx b/src/IconStrokePartialRoundedFilled.tsx index 0b12f4905..3e46165db 100644 --- a/src/IconStrokePartialRoundedFilled.tsx +++ b/src/IconStrokePartialRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconStrokePartialRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconStrokePartialRoundedFilled as default } +export default IconStrokePartialRoundedFilled diff --git a/src/IconStrokePartialSharp.tsx b/src/IconStrokePartialSharp.tsx index 9a5291c8d..6c69fd680 100644 --- a/src/IconStrokePartialSharp.tsx +++ b/src/IconStrokePartialSharp.tsx @@ -8,4 +8,4 @@ const IconStrokePartialSharp: React.FC = ({ ...props }) => ( ) -export { IconStrokePartialSharp as default } +export default IconStrokePartialSharp diff --git a/src/IconStrokePartialSharpFilled.tsx b/src/IconStrokePartialSharpFilled.tsx index 51626bf70..a91add216 100644 --- a/src/IconStrokePartialSharpFilled.tsx +++ b/src/IconStrokePartialSharpFilled.tsx @@ -8,4 +8,4 @@ const IconStrokePartialSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconStrokePartialSharpFilled as default } +export default IconStrokePartialSharpFilled diff --git a/src/IconStrollerOutlined.tsx b/src/IconStrollerOutlined.tsx index 09638f4f0..0d53d02aa 100644 --- a/src/IconStrollerOutlined.tsx +++ b/src/IconStrollerOutlined.tsx @@ -8,4 +8,4 @@ const IconStrollerOutlined: React.FC = ({ ...props }) => ( ) -export { IconStrollerOutlined as default } +export default IconStrollerOutlined diff --git a/src/IconStrollerOutlinedFilled.tsx b/src/IconStrollerOutlinedFilled.tsx index cadde1b16..6be730002 100644 --- a/src/IconStrollerOutlinedFilled.tsx +++ b/src/IconStrollerOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconStrollerOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconStrollerOutlinedFilled as default } +export default IconStrollerOutlinedFilled diff --git a/src/IconStrollerRounded.tsx b/src/IconStrollerRounded.tsx index 2988493dc..8ab73ca95 100644 --- a/src/IconStrollerRounded.tsx +++ b/src/IconStrollerRounded.tsx @@ -8,4 +8,4 @@ const IconStrollerRounded: React.FC = ({ ...props }) => ( ) -export { IconStrollerRounded as default } +export default IconStrollerRounded diff --git a/src/IconStrollerRoundedFilled.tsx b/src/IconStrollerRoundedFilled.tsx index c03af1bcb..06c26e141 100644 --- a/src/IconStrollerRoundedFilled.tsx +++ b/src/IconStrollerRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconStrollerRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconStrollerRoundedFilled as default } +export default IconStrollerRoundedFilled diff --git a/src/IconStrollerSharp.tsx b/src/IconStrollerSharp.tsx index c10cdf04f..1dcda6094 100644 --- a/src/IconStrollerSharp.tsx +++ b/src/IconStrollerSharp.tsx @@ -8,4 +8,4 @@ const IconStrollerSharp: React.FC = ({ ...props }) => ( ) -export { IconStrollerSharp as default } +export default IconStrollerSharp diff --git a/src/IconStrollerSharpFilled.tsx b/src/IconStrollerSharpFilled.tsx index 9fe1ca0a9..30b555f73 100644 --- a/src/IconStrollerSharpFilled.tsx +++ b/src/IconStrollerSharpFilled.tsx @@ -8,4 +8,4 @@ const IconStrollerSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconStrollerSharpFilled as default } +export default IconStrollerSharpFilled diff --git a/src/IconStyleOutlined.tsx b/src/IconStyleOutlined.tsx index 4e60f77fc..b65528df7 100644 --- a/src/IconStyleOutlined.tsx +++ b/src/IconStyleOutlined.tsx @@ -8,4 +8,4 @@ const IconStyleOutlined: React.FC = ({ ...props }) => ( ) -export { IconStyleOutlined as default } +export default IconStyleOutlined diff --git a/src/IconStyleOutlinedFilled.tsx b/src/IconStyleOutlinedFilled.tsx index 548f64ca1..0b6ac5cce 100644 --- a/src/IconStyleOutlinedFilled.tsx +++ b/src/IconStyleOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconStyleOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconStyleOutlinedFilled as default } +export default IconStyleOutlinedFilled diff --git a/src/IconStyleRounded.tsx b/src/IconStyleRounded.tsx index 7bcf93e98..ad8bd9281 100644 --- a/src/IconStyleRounded.tsx +++ b/src/IconStyleRounded.tsx @@ -8,4 +8,4 @@ const IconStyleRounded: React.FC = ({ ...props }) => ( ) -export { IconStyleRounded as default } +export default IconStyleRounded diff --git a/src/IconStyleRoundedFilled.tsx b/src/IconStyleRoundedFilled.tsx index f884efe74..8024b5501 100644 --- a/src/IconStyleRoundedFilled.tsx +++ b/src/IconStyleRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconStyleRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconStyleRoundedFilled as default } +export default IconStyleRoundedFilled diff --git a/src/IconStyleSharp.tsx b/src/IconStyleSharp.tsx index 8c89c4d45..e66794e87 100644 --- a/src/IconStyleSharp.tsx +++ b/src/IconStyleSharp.tsx @@ -8,4 +8,4 @@ const IconStyleSharp: React.FC = ({ ...props }) => ( ) -export { IconStyleSharp as default } +export default IconStyleSharp diff --git a/src/IconStyleSharpFilled.tsx b/src/IconStyleSharpFilled.tsx index 9fb2f8ddb..a51a28ad2 100644 --- a/src/IconStyleSharpFilled.tsx +++ b/src/IconStyleSharpFilled.tsx @@ -8,4 +8,4 @@ const IconStyleSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconStyleSharpFilled as default } +export default IconStyleSharpFilled diff --git a/src/IconStylerOutlined.tsx b/src/IconStylerOutlined.tsx index df79c207e..765c7f964 100644 --- a/src/IconStylerOutlined.tsx +++ b/src/IconStylerOutlined.tsx @@ -8,4 +8,4 @@ const IconStylerOutlined: React.FC = ({ ...props }) => ( ) -export { IconStylerOutlined as default } +export default IconStylerOutlined diff --git a/src/IconStylerOutlinedFilled.tsx b/src/IconStylerOutlinedFilled.tsx index f1241124c..7134eac6a 100644 --- a/src/IconStylerOutlinedFilled.tsx +++ b/src/IconStylerOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconStylerOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconStylerOutlinedFilled as default } +export default IconStylerOutlinedFilled diff --git a/src/IconStylerRounded.tsx b/src/IconStylerRounded.tsx index 3502eebcd..42c031f5d 100644 --- a/src/IconStylerRounded.tsx +++ b/src/IconStylerRounded.tsx @@ -8,4 +8,4 @@ const IconStylerRounded: React.FC = ({ ...props }) => ( ) -export { IconStylerRounded as default } +export default IconStylerRounded diff --git a/src/IconStylerRoundedFilled.tsx b/src/IconStylerRoundedFilled.tsx index 9e24a1147..276aced88 100644 --- a/src/IconStylerRoundedFilled.tsx +++ b/src/IconStylerRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconStylerRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconStylerRoundedFilled as default } +export default IconStylerRoundedFilled diff --git a/src/IconStylerSharp.tsx b/src/IconStylerSharp.tsx index 547bfc622..097b964d2 100644 --- a/src/IconStylerSharp.tsx +++ b/src/IconStylerSharp.tsx @@ -8,4 +8,4 @@ const IconStylerSharp: React.FC = ({ ...props }) => ( ) -export { IconStylerSharp as default } +export default IconStylerSharp diff --git a/src/IconStylerSharpFilled.tsx b/src/IconStylerSharpFilled.tsx index 8ef3bfab7..29524f0c7 100644 --- a/src/IconStylerSharpFilled.tsx +++ b/src/IconStylerSharpFilled.tsx @@ -8,4 +8,4 @@ const IconStylerSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconStylerSharpFilled as default } +export default IconStylerSharpFilled diff --git a/src/IconStylusLaserPointerOutlined.tsx b/src/IconStylusLaserPointerOutlined.tsx index c65843c70..2a4655d41 100644 --- a/src/IconStylusLaserPointerOutlined.tsx +++ b/src/IconStylusLaserPointerOutlined.tsx @@ -8,4 +8,4 @@ const IconStylusLaserPointerOutlined: React.FC = ({ ...props }) => ( ) -export { IconStylusLaserPointerOutlined as default } +export default IconStylusLaserPointerOutlined diff --git a/src/IconStylusLaserPointerOutlinedFilled.tsx b/src/IconStylusLaserPointerOutlinedFilled.tsx index 1b1796d82..958c0bb12 100644 --- a/src/IconStylusLaserPointerOutlinedFilled.tsx +++ b/src/IconStylusLaserPointerOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconStylusLaserPointerOutlinedFilled: React.FC = ({ ) -export { IconStylusLaserPointerOutlinedFilled as default } +export default IconStylusLaserPointerOutlinedFilled diff --git a/src/IconStylusLaserPointerRounded.tsx b/src/IconStylusLaserPointerRounded.tsx index 015b1cabc..49a35e065 100644 --- a/src/IconStylusLaserPointerRounded.tsx +++ b/src/IconStylusLaserPointerRounded.tsx @@ -8,4 +8,4 @@ const IconStylusLaserPointerRounded: React.FC = ({ ...props }) => ( ) -export { IconStylusLaserPointerRounded as default } +export default IconStylusLaserPointerRounded diff --git a/src/IconStylusLaserPointerRoundedFilled.tsx b/src/IconStylusLaserPointerRoundedFilled.tsx index 2e2950162..63ff90d7b 100644 --- a/src/IconStylusLaserPointerRoundedFilled.tsx +++ b/src/IconStylusLaserPointerRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconStylusLaserPointerRoundedFilled: React.FC = ({ ) -export { IconStylusLaserPointerRoundedFilled as default } +export default IconStylusLaserPointerRoundedFilled diff --git a/src/IconStylusLaserPointerSharp.tsx b/src/IconStylusLaserPointerSharp.tsx index e1849d801..788778307 100644 --- a/src/IconStylusLaserPointerSharp.tsx +++ b/src/IconStylusLaserPointerSharp.tsx @@ -8,4 +8,4 @@ const IconStylusLaserPointerSharp: React.FC = ({ ...props }) => ( ) -export { IconStylusLaserPointerSharp as default } +export default IconStylusLaserPointerSharp diff --git a/src/IconStylusLaserPointerSharpFilled.tsx b/src/IconStylusLaserPointerSharpFilled.tsx index 52f3d9d58..c6aba4a73 100644 --- a/src/IconStylusLaserPointerSharpFilled.tsx +++ b/src/IconStylusLaserPointerSharpFilled.tsx @@ -10,4 +10,4 @@ const IconStylusLaserPointerSharpFilled: React.FC = ({ ) -export { IconStylusLaserPointerSharpFilled as default } +export default IconStylusLaserPointerSharpFilled diff --git a/src/IconStylusNoteOutlined.tsx b/src/IconStylusNoteOutlined.tsx index 8ee7506ab..87c34b437 100644 --- a/src/IconStylusNoteOutlined.tsx +++ b/src/IconStylusNoteOutlined.tsx @@ -8,4 +8,4 @@ const IconStylusNoteOutlined: React.FC = ({ ...props }) => ( ) -export { IconStylusNoteOutlined as default } +export default IconStylusNoteOutlined diff --git a/src/IconStylusNoteOutlinedFilled.tsx b/src/IconStylusNoteOutlinedFilled.tsx index 58a75ec12..bb6de56a2 100644 --- a/src/IconStylusNoteOutlinedFilled.tsx +++ b/src/IconStylusNoteOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconStylusNoteOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconStylusNoteOutlinedFilled as default } +export default IconStylusNoteOutlinedFilled diff --git a/src/IconStylusNoteRounded.tsx b/src/IconStylusNoteRounded.tsx index c1a9686e6..0cd4ef09c 100644 --- a/src/IconStylusNoteRounded.tsx +++ b/src/IconStylusNoteRounded.tsx @@ -8,4 +8,4 @@ const IconStylusNoteRounded: React.FC = ({ ...props }) => ( ) -export { IconStylusNoteRounded as default } +export default IconStylusNoteRounded diff --git a/src/IconStylusNoteRoundedFilled.tsx b/src/IconStylusNoteRoundedFilled.tsx index 110e13728..59409c060 100644 --- a/src/IconStylusNoteRoundedFilled.tsx +++ b/src/IconStylusNoteRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconStylusNoteRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconStylusNoteRoundedFilled as default } +export default IconStylusNoteRoundedFilled diff --git a/src/IconStylusNoteSharp.tsx b/src/IconStylusNoteSharp.tsx index 525c2007c..1a6350981 100644 --- a/src/IconStylusNoteSharp.tsx +++ b/src/IconStylusNoteSharp.tsx @@ -8,4 +8,4 @@ const IconStylusNoteSharp: React.FC = ({ ...props }) => ( ) -export { IconStylusNoteSharp as default } +export default IconStylusNoteSharp diff --git a/src/IconStylusNoteSharpFilled.tsx b/src/IconStylusNoteSharpFilled.tsx index 92d0cc23e..fa1e131d6 100644 --- a/src/IconStylusNoteSharpFilled.tsx +++ b/src/IconStylusNoteSharpFilled.tsx @@ -8,4 +8,4 @@ const IconStylusNoteSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconStylusNoteSharpFilled as default } +export default IconStylusNoteSharpFilled diff --git a/src/IconStylusOutlined.tsx b/src/IconStylusOutlined.tsx index aa3fa1096..454578008 100644 --- a/src/IconStylusOutlined.tsx +++ b/src/IconStylusOutlined.tsx @@ -8,4 +8,4 @@ const IconStylusOutlined: React.FC = ({ ...props }) => ( ) -export { IconStylusOutlined as default } +export default IconStylusOutlined diff --git a/src/IconStylusOutlinedFilled.tsx b/src/IconStylusOutlinedFilled.tsx index c4d487760..379e5e9f3 100644 --- a/src/IconStylusOutlinedFilled.tsx +++ b/src/IconStylusOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconStylusOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconStylusOutlinedFilled as default } +export default IconStylusOutlinedFilled diff --git a/src/IconStylusRounded.tsx b/src/IconStylusRounded.tsx index ea2814109..b13a7fdb4 100644 --- a/src/IconStylusRounded.tsx +++ b/src/IconStylusRounded.tsx @@ -8,4 +8,4 @@ const IconStylusRounded: React.FC = ({ ...props }) => ( ) -export { IconStylusRounded as default } +export default IconStylusRounded diff --git a/src/IconStylusRoundedFilled.tsx b/src/IconStylusRoundedFilled.tsx index e5b8be540..668bfe469 100644 --- a/src/IconStylusRoundedFilled.tsx +++ b/src/IconStylusRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconStylusRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconStylusRoundedFilled as default } +export default IconStylusRoundedFilled diff --git a/src/IconStylusSharp.tsx b/src/IconStylusSharp.tsx index d812e1f32..bde0db610 100644 --- a/src/IconStylusSharp.tsx +++ b/src/IconStylusSharp.tsx @@ -8,4 +8,4 @@ const IconStylusSharp: React.FC = ({ ...props }) => ( ) -export { IconStylusSharp as default } +export default IconStylusSharp diff --git a/src/IconStylusSharpFilled.tsx b/src/IconStylusSharpFilled.tsx index 2024499d1..2a73b181f 100644 --- a/src/IconStylusSharpFilled.tsx +++ b/src/IconStylusSharpFilled.tsx @@ -8,4 +8,4 @@ const IconStylusSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconStylusSharpFilled as default } +export default IconStylusSharpFilled diff --git a/src/IconSubdirectoryArrowLeftOutlined.tsx b/src/IconSubdirectoryArrowLeftOutlined.tsx index b76d5cdf6..61ffeca9d 100644 --- a/src/IconSubdirectoryArrowLeftOutlined.tsx +++ b/src/IconSubdirectoryArrowLeftOutlined.tsx @@ -10,4 +10,4 @@ const IconSubdirectoryArrowLeftOutlined: React.FC = ({ ) -export { IconSubdirectoryArrowLeftOutlined as default } +export default IconSubdirectoryArrowLeftOutlined diff --git a/src/IconSubdirectoryArrowLeftOutlinedFilled.tsx b/src/IconSubdirectoryArrowLeftOutlinedFilled.tsx index 22315a7ef..e204d6c1b 100644 --- a/src/IconSubdirectoryArrowLeftOutlinedFilled.tsx +++ b/src/IconSubdirectoryArrowLeftOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconSubdirectoryArrowLeftOutlinedFilled: React.FC = ({ ) -export { IconSubdirectoryArrowLeftOutlinedFilled as default } +export default IconSubdirectoryArrowLeftOutlinedFilled diff --git a/src/IconSubdirectoryArrowLeftRounded.tsx b/src/IconSubdirectoryArrowLeftRounded.tsx index 44f2f8cd2..a8fa01b08 100644 --- a/src/IconSubdirectoryArrowLeftRounded.tsx +++ b/src/IconSubdirectoryArrowLeftRounded.tsx @@ -10,4 +10,4 @@ const IconSubdirectoryArrowLeftRounded: React.FC = ({ ) -export { IconSubdirectoryArrowLeftRounded as default } +export default IconSubdirectoryArrowLeftRounded diff --git a/src/IconSubdirectoryArrowLeftRoundedFilled.tsx b/src/IconSubdirectoryArrowLeftRoundedFilled.tsx index fa2ff2392..6a06397b7 100644 --- a/src/IconSubdirectoryArrowLeftRoundedFilled.tsx +++ b/src/IconSubdirectoryArrowLeftRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconSubdirectoryArrowLeftRoundedFilled: React.FC = ({ ) -export { IconSubdirectoryArrowLeftRoundedFilled as default } +export default IconSubdirectoryArrowLeftRoundedFilled diff --git a/src/IconSubdirectoryArrowLeftSharp.tsx b/src/IconSubdirectoryArrowLeftSharp.tsx index 18689e846..1aa7c8592 100644 --- a/src/IconSubdirectoryArrowLeftSharp.tsx +++ b/src/IconSubdirectoryArrowLeftSharp.tsx @@ -8,4 +8,4 @@ const IconSubdirectoryArrowLeftSharp: React.FC = ({ ...props }) => ( ) -export { IconSubdirectoryArrowLeftSharp as default } +export default IconSubdirectoryArrowLeftSharp diff --git a/src/IconSubdirectoryArrowLeftSharpFilled.tsx b/src/IconSubdirectoryArrowLeftSharpFilled.tsx index 26b50a4ec..a0c61e10b 100644 --- a/src/IconSubdirectoryArrowLeftSharpFilled.tsx +++ b/src/IconSubdirectoryArrowLeftSharpFilled.tsx @@ -10,4 +10,4 @@ const IconSubdirectoryArrowLeftSharpFilled: React.FC = ({ ) -export { IconSubdirectoryArrowLeftSharpFilled as default } +export default IconSubdirectoryArrowLeftSharpFilled diff --git a/src/IconSubdirectoryArrowRightOutlined.tsx b/src/IconSubdirectoryArrowRightOutlined.tsx index 229e8a08d..5b756af19 100644 --- a/src/IconSubdirectoryArrowRightOutlined.tsx +++ b/src/IconSubdirectoryArrowRightOutlined.tsx @@ -10,4 +10,4 @@ const IconSubdirectoryArrowRightOutlined: React.FC = ({ ) -export { IconSubdirectoryArrowRightOutlined as default } +export default IconSubdirectoryArrowRightOutlined diff --git a/src/IconSubdirectoryArrowRightOutlinedFilled.tsx b/src/IconSubdirectoryArrowRightOutlinedFilled.tsx index 3ab9c6cfd..d980a60ce 100644 --- a/src/IconSubdirectoryArrowRightOutlinedFilled.tsx +++ b/src/IconSubdirectoryArrowRightOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconSubdirectoryArrowRightOutlinedFilled: React.FC = ({ ) -export { IconSubdirectoryArrowRightOutlinedFilled as default } +export default IconSubdirectoryArrowRightOutlinedFilled diff --git a/src/IconSubdirectoryArrowRightRounded.tsx b/src/IconSubdirectoryArrowRightRounded.tsx index 6b45c8b79..556daa161 100644 --- a/src/IconSubdirectoryArrowRightRounded.tsx +++ b/src/IconSubdirectoryArrowRightRounded.tsx @@ -10,4 +10,4 @@ const IconSubdirectoryArrowRightRounded: React.FC = ({ ) -export { IconSubdirectoryArrowRightRounded as default } +export default IconSubdirectoryArrowRightRounded diff --git a/src/IconSubdirectoryArrowRightRoundedFilled.tsx b/src/IconSubdirectoryArrowRightRoundedFilled.tsx index 65503c2fb..dbacf1ba8 100644 --- a/src/IconSubdirectoryArrowRightRoundedFilled.tsx +++ b/src/IconSubdirectoryArrowRightRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconSubdirectoryArrowRightRoundedFilled: React.FC = ({ ) -export { IconSubdirectoryArrowRightRoundedFilled as default } +export default IconSubdirectoryArrowRightRoundedFilled diff --git a/src/IconSubdirectoryArrowRightSharp.tsx b/src/IconSubdirectoryArrowRightSharp.tsx index 97c521abc..007c4d32d 100644 --- a/src/IconSubdirectoryArrowRightSharp.tsx +++ b/src/IconSubdirectoryArrowRightSharp.tsx @@ -8,4 +8,4 @@ const IconSubdirectoryArrowRightSharp: React.FC = ({ ...props }) => ( ) -export { IconSubdirectoryArrowRightSharp as default } +export default IconSubdirectoryArrowRightSharp diff --git a/src/IconSubdirectoryArrowRightSharpFilled.tsx b/src/IconSubdirectoryArrowRightSharpFilled.tsx index 3e91fb9a8..96fd9b00b 100644 --- a/src/IconSubdirectoryArrowRightSharpFilled.tsx +++ b/src/IconSubdirectoryArrowRightSharpFilled.tsx @@ -10,4 +10,4 @@ const IconSubdirectoryArrowRightSharpFilled: React.FC = ({ ) -export { IconSubdirectoryArrowRightSharpFilled as default } +export default IconSubdirectoryArrowRightSharpFilled diff --git a/src/IconSubheaderOutlined.tsx b/src/IconSubheaderOutlined.tsx index 6dcf80059..0d7624ab2 100644 --- a/src/IconSubheaderOutlined.tsx +++ b/src/IconSubheaderOutlined.tsx @@ -8,4 +8,4 @@ const IconSubheaderOutlined: React.FC = ({ ...props }) => ( ) -export { IconSubheaderOutlined as default } +export default IconSubheaderOutlined diff --git a/src/IconSubheaderOutlinedFilled.tsx b/src/IconSubheaderOutlinedFilled.tsx index 30c2bf714..031b4dc6d 100644 --- a/src/IconSubheaderOutlinedFilled.tsx +++ b/src/IconSubheaderOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconSubheaderOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconSubheaderOutlinedFilled as default } +export default IconSubheaderOutlinedFilled diff --git a/src/IconSubheaderRounded.tsx b/src/IconSubheaderRounded.tsx index 3c23526c6..1f5256ad1 100644 --- a/src/IconSubheaderRounded.tsx +++ b/src/IconSubheaderRounded.tsx @@ -8,4 +8,4 @@ const IconSubheaderRounded: React.FC = ({ ...props }) => ( ) -export { IconSubheaderRounded as default } +export default IconSubheaderRounded diff --git a/src/IconSubheaderRoundedFilled.tsx b/src/IconSubheaderRoundedFilled.tsx index a07d62336..908695542 100644 --- a/src/IconSubheaderRoundedFilled.tsx +++ b/src/IconSubheaderRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconSubheaderRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconSubheaderRoundedFilled as default } +export default IconSubheaderRoundedFilled diff --git a/src/IconSubheaderSharp.tsx b/src/IconSubheaderSharp.tsx index daf760fe8..1b0fb70ca 100644 --- a/src/IconSubheaderSharp.tsx +++ b/src/IconSubheaderSharp.tsx @@ -8,4 +8,4 @@ const IconSubheaderSharp: React.FC = ({ ...props }) => ( ) -export { IconSubheaderSharp as default } +export default IconSubheaderSharp diff --git a/src/IconSubheaderSharpFilled.tsx b/src/IconSubheaderSharpFilled.tsx index e1bdd4ea1..89cc6015d 100644 --- a/src/IconSubheaderSharpFilled.tsx +++ b/src/IconSubheaderSharpFilled.tsx @@ -8,4 +8,4 @@ const IconSubheaderSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconSubheaderSharpFilled as default } +export default IconSubheaderSharpFilled diff --git a/src/IconSubjectOutlined.tsx b/src/IconSubjectOutlined.tsx index 319320040..0689b2db5 100644 --- a/src/IconSubjectOutlined.tsx +++ b/src/IconSubjectOutlined.tsx @@ -8,4 +8,4 @@ const IconSubjectOutlined: React.FC = ({ ...props }) => ( ) -export { IconSubjectOutlined as default } +export default IconSubjectOutlined diff --git a/src/IconSubjectOutlinedFilled.tsx b/src/IconSubjectOutlinedFilled.tsx index e5255450c..fc93ea65b 100644 --- a/src/IconSubjectOutlinedFilled.tsx +++ b/src/IconSubjectOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconSubjectOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconSubjectOutlinedFilled as default } +export default IconSubjectOutlinedFilled diff --git a/src/IconSubjectRounded.tsx b/src/IconSubjectRounded.tsx index 2795ce437..587382c17 100644 --- a/src/IconSubjectRounded.tsx +++ b/src/IconSubjectRounded.tsx @@ -8,4 +8,4 @@ const IconSubjectRounded: React.FC = ({ ...props }) => ( ) -export { IconSubjectRounded as default } +export default IconSubjectRounded diff --git a/src/IconSubjectRoundedFilled.tsx b/src/IconSubjectRoundedFilled.tsx index 32dc89659..c95fcf7a5 100644 --- a/src/IconSubjectRoundedFilled.tsx +++ b/src/IconSubjectRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconSubjectRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconSubjectRoundedFilled as default } +export default IconSubjectRoundedFilled diff --git a/src/IconSubjectSharp.tsx b/src/IconSubjectSharp.tsx index 073d1301f..7c61f9ee9 100644 --- a/src/IconSubjectSharp.tsx +++ b/src/IconSubjectSharp.tsx @@ -8,4 +8,4 @@ const IconSubjectSharp: React.FC = ({ ...props }) => ( ) -export { IconSubjectSharp as default } +export default IconSubjectSharp diff --git a/src/IconSubjectSharpFilled.tsx b/src/IconSubjectSharpFilled.tsx index 978f772c3..4ba33a2ce 100644 --- a/src/IconSubjectSharpFilled.tsx +++ b/src/IconSubjectSharpFilled.tsx @@ -8,4 +8,4 @@ const IconSubjectSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconSubjectSharpFilled as default } +export default IconSubjectSharpFilled diff --git a/src/IconSubscriptOutlined.tsx b/src/IconSubscriptOutlined.tsx index 7e7f5f0c4..1cc275aaa 100644 --- a/src/IconSubscriptOutlined.tsx +++ b/src/IconSubscriptOutlined.tsx @@ -8,4 +8,4 @@ const IconSubscriptOutlined: React.FC = ({ ...props }) => ( ) -export { IconSubscriptOutlined as default } +export default IconSubscriptOutlined diff --git a/src/IconSubscriptOutlinedFilled.tsx b/src/IconSubscriptOutlinedFilled.tsx index b093cd49d..9ab2af2b6 100644 --- a/src/IconSubscriptOutlinedFilled.tsx +++ b/src/IconSubscriptOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconSubscriptOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconSubscriptOutlinedFilled as default } +export default IconSubscriptOutlinedFilled diff --git a/src/IconSubscriptRounded.tsx b/src/IconSubscriptRounded.tsx index 6257947eb..64a179c8a 100644 --- a/src/IconSubscriptRounded.tsx +++ b/src/IconSubscriptRounded.tsx @@ -8,4 +8,4 @@ const IconSubscriptRounded: React.FC = ({ ...props }) => ( ) -export { IconSubscriptRounded as default } +export default IconSubscriptRounded diff --git a/src/IconSubscriptRoundedFilled.tsx b/src/IconSubscriptRoundedFilled.tsx index 5fcdb8667..6c1cdc264 100644 --- a/src/IconSubscriptRoundedFilled.tsx +++ b/src/IconSubscriptRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconSubscriptRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconSubscriptRoundedFilled as default } +export default IconSubscriptRoundedFilled diff --git a/src/IconSubscriptSharp.tsx b/src/IconSubscriptSharp.tsx index d62ba97b7..ea38c9c36 100644 --- a/src/IconSubscriptSharp.tsx +++ b/src/IconSubscriptSharp.tsx @@ -8,4 +8,4 @@ const IconSubscriptSharp: React.FC = ({ ...props }) => ( ) -export { IconSubscriptSharp as default } +export default IconSubscriptSharp diff --git a/src/IconSubscriptSharpFilled.tsx b/src/IconSubscriptSharpFilled.tsx index 3b79c6b21..4cabfe7c7 100644 --- a/src/IconSubscriptSharpFilled.tsx +++ b/src/IconSubscriptSharpFilled.tsx @@ -8,4 +8,4 @@ const IconSubscriptSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconSubscriptSharpFilled as default } +export default IconSubscriptSharpFilled diff --git a/src/IconSubscriptionsOutlined.tsx b/src/IconSubscriptionsOutlined.tsx index 4214e6701..c481e88c3 100644 --- a/src/IconSubscriptionsOutlined.tsx +++ b/src/IconSubscriptionsOutlined.tsx @@ -8,4 +8,4 @@ const IconSubscriptionsOutlined: React.FC = ({ ...props }) => ( ) -export { IconSubscriptionsOutlined as default } +export default IconSubscriptionsOutlined diff --git a/src/IconSubscriptionsOutlinedFilled.tsx b/src/IconSubscriptionsOutlinedFilled.tsx index 4ae4d537f..66b8158d2 100644 --- a/src/IconSubscriptionsOutlinedFilled.tsx +++ b/src/IconSubscriptionsOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconSubscriptionsOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconSubscriptionsOutlinedFilled as default } +export default IconSubscriptionsOutlinedFilled diff --git a/src/IconSubscriptionsRounded.tsx b/src/IconSubscriptionsRounded.tsx index edefc9bfc..283851d9b 100644 --- a/src/IconSubscriptionsRounded.tsx +++ b/src/IconSubscriptionsRounded.tsx @@ -8,4 +8,4 @@ const IconSubscriptionsRounded: React.FC = ({ ...props }) => ( ) -export { IconSubscriptionsRounded as default } +export default IconSubscriptionsRounded diff --git a/src/IconSubscriptionsRoundedFilled.tsx b/src/IconSubscriptionsRoundedFilled.tsx index 3d7b570fc..1fff5b55c 100644 --- a/src/IconSubscriptionsRoundedFilled.tsx +++ b/src/IconSubscriptionsRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconSubscriptionsRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconSubscriptionsRoundedFilled as default } +export default IconSubscriptionsRoundedFilled diff --git a/src/IconSubscriptionsSharp.tsx b/src/IconSubscriptionsSharp.tsx index bc04e6933..54527366a 100644 --- a/src/IconSubscriptionsSharp.tsx +++ b/src/IconSubscriptionsSharp.tsx @@ -8,4 +8,4 @@ const IconSubscriptionsSharp: React.FC = ({ ...props }) => ( ) -export { IconSubscriptionsSharp as default } +export default IconSubscriptionsSharp diff --git a/src/IconSubscriptionsSharpFilled.tsx b/src/IconSubscriptionsSharpFilled.tsx index fe493b73f..7484bbc02 100644 --- a/src/IconSubscriptionsSharpFilled.tsx +++ b/src/IconSubscriptionsSharpFilled.tsx @@ -8,4 +8,4 @@ const IconSubscriptionsSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconSubscriptionsSharpFilled as default } +export default IconSubscriptionsSharpFilled diff --git a/src/IconSubtitlesOffOutlined.tsx b/src/IconSubtitlesOffOutlined.tsx index 81df74706..d9d611f86 100644 --- a/src/IconSubtitlesOffOutlined.tsx +++ b/src/IconSubtitlesOffOutlined.tsx @@ -8,4 +8,4 @@ const IconSubtitlesOffOutlined: React.FC = ({ ...props }) => ( ) -export { IconSubtitlesOffOutlined as default } +export default IconSubtitlesOffOutlined diff --git a/src/IconSubtitlesOffOutlinedFilled.tsx b/src/IconSubtitlesOffOutlinedFilled.tsx index 6e2e3ec0d..c44602096 100644 --- a/src/IconSubtitlesOffOutlinedFilled.tsx +++ b/src/IconSubtitlesOffOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconSubtitlesOffOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconSubtitlesOffOutlinedFilled as default } +export default IconSubtitlesOffOutlinedFilled diff --git a/src/IconSubtitlesOffRounded.tsx b/src/IconSubtitlesOffRounded.tsx index 1a8f7ead1..e787a1f8c 100644 --- a/src/IconSubtitlesOffRounded.tsx +++ b/src/IconSubtitlesOffRounded.tsx @@ -8,4 +8,4 @@ const IconSubtitlesOffRounded: React.FC = ({ ...props }) => ( ) -export { IconSubtitlesOffRounded as default } +export default IconSubtitlesOffRounded diff --git a/src/IconSubtitlesOffRoundedFilled.tsx b/src/IconSubtitlesOffRoundedFilled.tsx index 4b7e3c9c6..e6a2d5631 100644 --- a/src/IconSubtitlesOffRoundedFilled.tsx +++ b/src/IconSubtitlesOffRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconSubtitlesOffRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconSubtitlesOffRoundedFilled as default } +export default IconSubtitlesOffRoundedFilled diff --git a/src/IconSubtitlesOffSharp.tsx b/src/IconSubtitlesOffSharp.tsx index 516e63200..6dab64ad8 100644 --- a/src/IconSubtitlesOffSharp.tsx +++ b/src/IconSubtitlesOffSharp.tsx @@ -8,4 +8,4 @@ const IconSubtitlesOffSharp: React.FC = ({ ...props }) => ( ) -export { IconSubtitlesOffSharp as default } +export default IconSubtitlesOffSharp diff --git a/src/IconSubtitlesOffSharpFilled.tsx b/src/IconSubtitlesOffSharpFilled.tsx index 945e1d41f..e8aa61780 100644 --- a/src/IconSubtitlesOffSharpFilled.tsx +++ b/src/IconSubtitlesOffSharpFilled.tsx @@ -8,4 +8,4 @@ const IconSubtitlesOffSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconSubtitlesOffSharpFilled as default } +export default IconSubtitlesOffSharpFilled diff --git a/src/IconSubtitlesOutlined.tsx b/src/IconSubtitlesOutlined.tsx index 13462aa66..07902ebd5 100644 --- a/src/IconSubtitlesOutlined.tsx +++ b/src/IconSubtitlesOutlined.tsx @@ -8,4 +8,4 @@ const IconSubtitlesOutlined: React.FC = ({ ...props }) => ( ) -export { IconSubtitlesOutlined as default } +export default IconSubtitlesOutlined diff --git a/src/IconSubtitlesOutlinedFilled.tsx b/src/IconSubtitlesOutlinedFilled.tsx index 9abbabdc8..edc5cfcb7 100644 --- a/src/IconSubtitlesOutlinedFilled.tsx +++ b/src/IconSubtitlesOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconSubtitlesOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconSubtitlesOutlinedFilled as default } +export default IconSubtitlesOutlinedFilled diff --git a/src/IconSubtitlesRounded.tsx b/src/IconSubtitlesRounded.tsx index 0097becaa..b1febeef3 100644 --- a/src/IconSubtitlesRounded.tsx +++ b/src/IconSubtitlesRounded.tsx @@ -8,4 +8,4 @@ const IconSubtitlesRounded: React.FC = ({ ...props }) => ( ) -export { IconSubtitlesRounded as default } +export default IconSubtitlesRounded diff --git a/src/IconSubtitlesRoundedFilled.tsx b/src/IconSubtitlesRoundedFilled.tsx index 54ed02081..681be437f 100644 --- a/src/IconSubtitlesRoundedFilled.tsx +++ b/src/IconSubtitlesRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconSubtitlesRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconSubtitlesRoundedFilled as default } +export default IconSubtitlesRoundedFilled diff --git a/src/IconSubtitlesSharp.tsx b/src/IconSubtitlesSharp.tsx index bd9fa2035..7ab7e38de 100644 --- a/src/IconSubtitlesSharp.tsx +++ b/src/IconSubtitlesSharp.tsx @@ -8,4 +8,4 @@ const IconSubtitlesSharp: React.FC = ({ ...props }) => ( ) -export { IconSubtitlesSharp as default } +export default IconSubtitlesSharp diff --git a/src/IconSubtitlesSharpFilled.tsx b/src/IconSubtitlesSharpFilled.tsx index 3bf5f8f0d..da989df4a 100644 --- a/src/IconSubtitlesSharpFilled.tsx +++ b/src/IconSubtitlesSharpFilled.tsx @@ -8,4 +8,4 @@ const IconSubtitlesSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconSubtitlesSharpFilled as default } +export default IconSubtitlesSharpFilled diff --git a/src/IconSubwayOutlined.tsx b/src/IconSubwayOutlined.tsx index eda0aa434..650d9e613 100644 --- a/src/IconSubwayOutlined.tsx +++ b/src/IconSubwayOutlined.tsx @@ -8,4 +8,4 @@ const IconSubwayOutlined: React.FC = ({ ...props }) => ( ) -export { IconSubwayOutlined as default } +export default IconSubwayOutlined diff --git a/src/IconSubwayOutlinedFilled.tsx b/src/IconSubwayOutlinedFilled.tsx index a93895b0a..f47f8a6ef 100644 --- a/src/IconSubwayOutlinedFilled.tsx +++ b/src/IconSubwayOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconSubwayOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconSubwayOutlinedFilled as default } +export default IconSubwayOutlinedFilled diff --git a/src/IconSubwayRounded.tsx b/src/IconSubwayRounded.tsx index 2a8d13c16..e9e69b21c 100644 --- a/src/IconSubwayRounded.tsx +++ b/src/IconSubwayRounded.tsx @@ -8,4 +8,4 @@ const IconSubwayRounded: React.FC = ({ ...props }) => ( ) -export { IconSubwayRounded as default } +export default IconSubwayRounded diff --git a/src/IconSubwayRoundedFilled.tsx b/src/IconSubwayRoundedFilled.tsx index 3cc6d33a9..02b9485cd 100644 --- a/src/IconSubwayRoundedFilled.tsx +++ b/src/IconSubwayRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconSubwayRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconSubwayRoundedFilled as default } +export default IconSubwayRoundedFilled diff --git a/src/IconSubwaySharp.tsx b/src/IconSubwaySharp.tsx index 146746c57..ca7aa1e97 100644 --- a/src/IconSubwaySharp.tsx +++ b/src/IconSubwaySharp.tsx @@ -8,4 +8,4 @@ const IconSubwaySharp: React.FC = ({ ...props }) => ( ) -export { IconSubwaySharp as default } +export default IconSubwaySharp diff --git a/src/IconSubwaySharpFilled.tsx b/src/IconSubwaySharpFilled.tsx index c57ec7b8d..93699dd60 100644 --- a/src/IconSubwaySharpFilled.tsx +++ b/src/IconSubwaySharpFilled.tsx @@ -8,4 +8,4 @@ const IconSubwaySharpFilled: React.FC = ({ ...props }) => ( ) -export { IconSubwaySharpFilled as default } +export default IconSubwaySharpFilled diff --git a/src/IconSummarizeOutlined.tsx b/src/IconSummarizeOutlined.tsx index c62da66e8..9d8abd446 100644 --- a/src/IconSummarizeOutlined.tsx +++ b/src/IconSummarizeOutlined.tsx @@ -8,4 +8,4 @@ const IconSummarizeOutlined: React.FC = ({ ...props }) => ( ) -export { IconSummarizeOutlined as default } +export default IconSummarizeOutlined diff --git a/src/IconSummarizeOutlinedFilled.tsx b/src/IconSummarizeOutlinedFilled.tsx index ae3fe1974..f540a0546 100644 --- a/src/IconSummarizeOutlinedFilled.tsx +++ b/src/IconSummarizeOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconSummarizeOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconSummarizeOutlinedFilled as default } +export default IconSummarizeOutlinedFilled diff --git a/src/IconSummarizeRounded.tsx b/src/IconSummarizeRounded.tsx index 0ba7f23bf..28db5ec4a 100644 --- a/src/IconSummarizeRounded.tsx +++ b/src/IconSummarizeRounded.tsx @@ -8,4 +8,4 @@ const IconSummarizeRounded: React.FC = ({ ...props }) => ( ) -export { IconSummarizeRounded as default } +export default IconSummarizeRounded diff --git a/src/IconSummarizeRoundedFilled.tsx b/src/IconSummarizeRoundedFilled.tsx index b10bcbee1..2c68896cd 100644 --- a/src/IconSummarizeRoundedFilled.tsx +++ b/src/IconSummarizeRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconSummarizeRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconSummarizeRoundedFilled as default } +export default IconSummarizeRoundedFilled diff --git a/src/IconSummarizeSharp.tsx b/src/IconSummarizeSharp.tsx index 4936b2f9f..7860c182b 100644 --- a/src/IconSummarizeSharp.tsx +++ b/src/IconSummarizeSharp.tsx @@ -8,4 +8,4 @@ const IconSummarizeSharp: React.FC = ({ ...props }) => ( ) -export { IconSummarizeSharp as default } +export default IconSummarizeSharp diff --git a/src/IconSummarizeSharpFilled.tsx b/src/IconSummarizeSharpFilled.tsx index 9fe3ccd75..24c9a6da7 100644 --- a/src/IconSummarizeSharpFilled.tsx +++ b/src/IconSummarizeSharpFilled.tsx @@ -8,4 +8,4 @@ const IconSummarizeSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconSummarizeSharpFilled as default } +export default IconSummarizeSharpFilled diff --git a/src/IconSunnyOutlined.tsx b/src/IconSunnyOutlined.tsx index fe14e8f74..3ab6bdf46 100644 --- a/src/IconSunnyOutlined.tsx +++ b/src/IconSunnyOutlined.tsx @@ -8,4 +8,4 @@ const IconSunnyOutlined: React.FC = ({ ...props }) => ( ) -export { IconSunnyOutlined as default } +export default IconSunnyOutlined diff --git a/src/IconSunnyOutlinedFilled.tsx b/src/IconSunnyOutlinedFilled.tsx index 4a983fabb..2d12c23c6 100644 --- a/src/IconSunnyOutlinedFilled.tsx +++ b/src/IconSunnyOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconSunnyOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconSunnyOutlinedFilled as default } +export default IconSunnyOutlinedFilled diff --git a/src/IconSunnyRounded.tsx b/src/IconSunnyRounded.tsx index 3c5ee48c2..539d22b25 100644 --- a/src/IconSunnyRounded.tsx +++ b/src/IconSunnyRounded.tsx @@ -8,4 +8,4 @@ const IconSunnyRounded: React.FC = ({ ...props }) => ( ) -export { IconSunnyRounded as default } +export default IconSunnyRounded diff --git a/src/IconSunnyRoundedFilled.tsx b/src/IconSunnyRoundedFilled.tsx index 6505d8326..1c9818d05 100644 --- a/src/IconSunnyRoundedFilled.tsx +++ b/src/IconSunnyRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconSunnyRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconSunnyRoundedFilled as default } +export default IconSunnyRoundedFilled diff --git a/src/IconSunnySharp.tsx b/src/IconSunnySharp.tsx index 0e314544d..c0ebf02a1 100644 --- a/src/IconSunnySharp.tsx +++ b/src/IconSunnySharp.tsx @@ -8,4 +8,4 @@ const IconSunnySharp: React.FC = ({ ...props }) => ( ) -export { IconSunnySharp as default } +export default IconSunnySharp diff --git a/src/IconSunnySharpFilled.tsx b/src/IconSunnySharpFilled.tsx index 7cb448ea4..bfd2ce878 100644 --- a/src/IconSunnySharpFilled.tsx +++ b/src/IconSunnySharpFilled.tsx @@ -8,4 +8,4 @@ const IconSunnySharpFilled: React.FC = ({ ...props }) => ( ) -export { IconSunnySharpFilled as default } +export default IconSunnySharpFilled diff --git a/src/IconSunnySnowingOutlined.tsx b/src/IconSunnySnowingOutlined.tsx index 1998c2f8c..ce7beff42 100644 --- a/src/IconSunnySnowingOutlined.tsx +++ b/src/IconSunnySnowingOutlined.tsx @@ -8,4 +8,4 @@ const IconSunnySnowingOutlined: React.FC = ({ ...props }) => ( ) -export { IconSunnySnowingOutlined as default } +export default IconSunnySnowingOutlined diff --git a/src/IconSunnySnowingOutlinedFilled.tsx b/src/IconSunnySnowingOutlinedFilled.tsx index 414bab534..36e41b91c 100644 --- a/src/IconSunnySnowingOutlinedFilled.tsx +++ b/src/IconSunnySnowingOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconSunnySnowingOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconSunnySnowingOutlinedFilled as default } +export default IconSunnySnowingOutlinedFilled diff --git a/src/IconSunnySnowingRounded.tsx b/src/IconSunnySnowingRounded.tsx index 21f0fd308..b9223c860 100644 --- a/src/IconSunnySnowingRounded.tsx +++ b/src/IconSunnySnowingRounded.tsx @@ -8,4 +8,4 @@ const IconSunnySnowingRounded: React.FC = ({ ...props }) => ( ) -export { IconSunnySnowingRounded as default } +export default IconSunnySnowingRounded diff --git a/src/IconSunnySnowingRoundedFilled.tsx b/src/IconSunnySnowingRoundedFilled.tsx index e74f86a17..98a5b65e9 100644 --- a/src/IconSunnySnowingRoundedFilled.tsx +++ b/src/IconSunnySnowingRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconSunnySnowingRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconSunnySnowingRoundedFilled as default } +export default IconSunnySnowingRoundedFilled diff --git a/src/IconSunnySnowingSharp.tsx b/src/IconSunnySnowingSharp.tsx index 0e8d1912a..5722c9613 100644 --- a/src/IconSunnySnowingSharp.tsx +++ b/src/IconSunnySnowingSharp.tsx @@ -8,4 +8,4 @@ const IconSunnySnowingSharp: React.FC = ({ ...props }) => ( ) -export { IconSunnySnowingSharp as default } +export default IconSunnySnowingSharp diff --git a/src/IconSunnySnowingSharpFilled.tsx b/src/IconSunnySnowingSharpFilled.tsx index 464bddc70..c5af3a2ae 100644 --- a/src/IconSunnySnowingSharpFilled.tsx +++ b/src/IconSunnySnowingSharpFilled.tsx @@ -8,4 +8,4 @@ const IconSunnySnowingSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconSunnySnowingSharpFilled as default } +export default IconSunnySnowingSharpFilled diff --git a/src/IconSuperscriptOutlined.tsx b/src/IconSuperscriptOutlined.tsx index 42a234187..30723b650 100644 --- a/src/IconSuperscriptOutlined.tsx +++ b/src/IconSuperscriptOutlined.tsx @@ -8,4 +8,4 @@ const IconSuperscriptOutlined: React.FC = ({ ...props }) => ( ) -export { IconSuperscriptOutlined as default } +export default IconSuperscriptOutlined diff --git a/src/IconSuperscriptOutlinedFilled.tsx b/src/IconSuperscriptOutlinedFilled.tsx index 4e1dccdeb..a2868b563 100644 --- a/src/IconSuperscriptOutlinedFilled.tsx +++ b/src/IconSuperscriptOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconSuperscriptOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconSuperscriptOutlinedFilled as default } +export default IconSuperscriptOutlinedFilled diff --git a/src/IconSuperscriptRounded.tsx b/src/IconSuperscriptRounded.tsx index 6d284c36f..91a723f87 100644 --- a/src/IconSuperscriptRounded.tsx +++ b/src/IconSuperscriptRounded.tsx @@ -8,4 +8,4 @@ const IconSuperscriptRounded: React.FC = ({ ...props }) => ( ) -export { IconSuperscriptRounded as default } +export default IconSuperscriptRounded diff --git a/src/IconSuperscriptRoundedFilled.tsx b/src/IconSuperscriptRoundedFilled.tsx index eef17b01f..eccafa74c 100644 --- a/src/IconSuperscriptRoundedFilled.tsx +++ b/src/IconSuperscriptRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconSuperscriptRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconSuperscriptRoundedFilled as default } +export default IconSuperscriptRoundedFilled diff --git a/src/IconSuperscriptSharp.tsx b/src/IconSuperscriptSharp.tsx index fc26d22b0..20bf25139 100644 --- a/src/IconSuperscriptSharp.tsx +++ b/src/IconSuperscriptSharp.tsx @@ -8,4 +8,4 @@ const IconSuperscriptSharp: React.FC = ({ ...props }) => ( ) -export { IconSuperscriptSharp as default } +export default IconSuperscriptSharp diff --git a/src/IconSuperscriptSharpFilled.tsx b/src/IconSuperscriptSharpFilled.tsx index 3a154a67e..7be89c18e 100644 --- a/src/IconSuperscriptSharpFilled.tsx +++ b/src/IconSuperscriptSharpFilled.tsx @@ -8,4 +8,4 @@ const IconSuperscriptSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconSuperscriptSharpFilled as default } +export default IconSuperscriptSharpFilled diff --git a/src/IconSupervisedUserCircleOffOutlined.tsx b/src/IconSupervisedUserCircleOffOutlined.tsx index 6017e7fc8..9a0116de5 100644 --- a/src/IconSupervisedUserCircleOffOutlined.tsx +++ b/src/IconSupervisedUserCircleOffOutlined.tsx @@ -10,4 +10,4 @@ const IconSupervisedUserCircleOffOutlined: React.FC = ({ ) -export { IconSupervisedUserCircleOffOutlined as default } +export default IconSupervisedUserCircleOffOutlined diff --git a/src/IconSupervisedUserCircleOffOutlinedFilled.tsx b/src/IconSupervisedUserCircleOffOutlinedFilled.tsx index 71d96a282..e13c88c20 100644 --- a/src/IconSupervisedUserCircleOffOutlinedFilled.tsx +++ b/src/IconSupervisedUserCircleOffOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconSupervisedUserCircleOffOutlinedFilled: React.FC = ({ ) -export { IconSupervisedUserCircleOffOutlinedFilled as default } +export default IconSupervisedUserCircleOffOutlinedFilled diff --git a/src/IconSupervisedUserCircleOffRounded.tsx b/src/IconSupervisedUserCircleOffRounded.tsx index d50c2d173..bb725e499 100644 --- a/src/IconSupervisedUserCircleOffRounded.tsx +++ b/src/IconSupervisedUserCircleOffRounded.tsx @@ -10,4 +10,4 @@ const IconSupervisedUserCircleOffRounded: React.FC = ({ ) -export { IconSupervisedUserCircleOffRounded as default } +export default IconSupervisedUserCircleOffRounded diff --git a/src/IconSupervisedUserCircleOffRoundedFilled.tsx b/src/IconSupervisedUserCircleOffRoundedFilled.tsx index bb309c43e..abec92631 100644 --- a/src/IconSupervisedUserCircleOffRoundedFilled.tsx +++ b/src/IconSupervisedUserCircleOffRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconSupervisedUserCircleOffRoundedFilled: React.FC = ({ ) -export { IconSupervisedUserCircleOffRoundedFilled as default } +export default IconSupervisedUserCircleOffRoundedFilled diff --git a/src/IconSupervisedUserCircleOffSharp.tsx b/src/IconSupervisedUserCircleOffSharp.tsx index 70857731a..56965f0a2 100644 --- a/src/IconSupervisedUserCircleOffSharp.tsx +++ b/src/IconSupervisedUserCircleOffSharp.tsx @@ -10,4 +10,4 @@ const IconSupervisedUserCircleOffSharp: React.FC = ({ ) -export { IconSupervisedUserCircleOffSharp as default } +export default IconSupervisedUserCircleOffSharp diff --git a/src/IconSupervisedUserCircleOffSharpFilled.tsx b/src/IconSupervisedUserCircleOffSharpFilled.tsx index 0926d3c9d..efb3e14c7 100644 --- a/src/IconSupervisedUserCircleOffSharpFilled.tsx +++ b/src/IconSupervisedUserCircleOffSharpFilled.tsx @@ -10,4 +10,4 @@ const IconSupervisedUserCircleOffSharpFilled: React.FC = ({ ) -export { IconSupervisedUserCircleOffSharpFilled as default } +export default IconSupervisedUserCircleOffSharpFilled diff --git a/src/IconSupervisedUserCircleOutlined.tsx b/src/IconSupervisedUserCircleOutlined.tsx index 9513911eb..b031a8cde 100644 --- a/src/IconSupervisedUserCircleOutlined.tsx +++ b/src/IconSupervisedUserCircleOutlined.tsx @@ -10,4 +10,4 @@ const IconSupervisedUserCircleOutlined: React.FC = ({ ) -export { IconSupervisedUserCircleOutlined as default } +export default IconSupervisedUserCircleOutlined diff --git a/src/IconSupervisedUserCircleOutlinedFilled.tsx b/src/IconSupervisedUserCircleOutlinedFilled.tsx index a62c9c41b..2e85f97fe 100644 --- a/src/IconSupervisedUserCircleOutlinedFilled.tsx +++ b/src/IconSupervisedUserCircleOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconSupervisedUserCircleOutlinedFilled: React.FC = ({ ) -export { IconSupervisedUserCircleOutlinedFilled as default } +export default IconSupervisedUserCircleOutlinedFilled diff --git a/src/IconSupervisedUserCircleRounded.tsx b/src/IconSupervisedUserCircleRounded.tsx index 2c3f27406..c9ea32f4e 100644 --- a/src/IconSupervisedUserCircleRounded.tsx +++ b/src/IconSupervisedUserCircleRounded.tsx @@ -8,4 +8,4 @@ const IconSupervisedUserCircleRounded: React.FC = ({ ...props }) => ( ) -export { IconSupervisedUserCircleRounded as default } +export default IconSupervisedUserCircleRounded diff --git a/src/IconSupervisedUserCircleRoundedFilled.tsx b/src/IconSupervisedUserCircleRoundedFilled.tsx index 4853fcda9..af9f5488f 100644 --- a/src/IconSupervisedUserCircleRoundedFilled.tsx +++ b/src/IconSupervisedUserCircleRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconSupervisedUserCircleRoundedFilled: React.FC = ({ ) -export { IconSupervisedUserCircleRoundedFilled as default } +export default IconSupervisedUserCircleRoundedFilled diff --git a/src/IconSupervisedUserCircleSharp.tsx b/src/IconSupervisedUserCircleSharp.tsx index 573c57c94..57f8a3abd 100644 --- a/src/IconSupervisedUserCircleSharp.tsx +++ b/src/IconSupervisedUserCircleSharp.tsx @@ -8,4 +8,4 @@ const IconSupervisedUserCircleSharp: React.FC = ({ ...props }) => ( ) -export { IconSupervisedUserCircleSharp as default } +export default IconSupervisedUserCircleSharp diff --git a/src/IconSupervisedUserCircleSharpFilled.tsx b/src/IconSupervisedUserCircleSharpFilled.tsx index 407dd8f72..201092555 100644 --- a/src/IconSupervisedUserCircleSharpFilled.tsx +++ b/src/IconSupervisedUserCircleSharpFilled.tsx @@ -10,4 +10,4 @@ const IconSupervisedUserCircleSharpFilled: React.FC = ({ ) -export { IconSupervisedUserCircleSharpFilled as default } +export default IconSupervisedUserCircleSharpFilled diff --git a/src/IconSupervisorAccountOutlined.tsx b/src/IconSupervisorAccountOutlined.tsx index 487bfe78d..003a4ed55 100644 --- a/src/IconSupervisorAccountOutlined.tsx +++ b/src/IconSupervisorAccountOutlined.tsx @@ -8,4 +8,4 @@ const IconSupervisorAccountOutlined: React.FC = ({ ...props }) => ( ) -export { IconSupervisorAccountOutlined as default } +export default IconSupervisorAccountOutlined diff --git a/src/IconSupervisorAccountOutlinedFilled.tsx b/src/IconSupervisorAccountOutlinedFilled.tsx index dba0779bf..3fda0c6c5 100644 --- a/src/IconSupervisorAccountOutlinedFilled.tsx +++ b/src/IconSupervisorAccountOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconSupervisorAccountOutlinedFilled: React.FC = ({ ) -export { IconSupervisorAccountOutlinedFilled as default } +export default IconSupervisorAccountOutlinedFilled diff --git a/src/IconSupervisorAccountRounded.tsx b/src/IconSupervisorAccountRounded.tsx index c1d5635db..5487b2d4c 100644 --- a/src/IconSupervisorAccountRounded.tsx +++ b/src/IconSupervisorAccountRounded.tsx @@ -8,4 +8,4 @@ const IconSupervisorAccountRounded: React.FC = ({ ...props }) => ( ) -export { IconSupervisorAccountRounded as default } +export default IconSupervisorAccountRounded diff --git a/src/IconSupervisorAccountRoundedFilled.tsx b/src/IconSupervisorAccountRoundedFilled.tsx index 0a6d258bc..b9cf73d17 100644 --- a/src/IconSupervisorAccountRoundedFilled.tsx +++ b/src/IconSupervisorAccountRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconSupervisorAccountRoundedFilled: React.FC = ({ ) -export { IconSupervisorAccountRoundedFilled as default } +export default IconSupervisorAccountRoundedFilled diff --git a/src/IconSupervisorAccountSharp.tsx b/src/IconSupervisorAccountSharp.tsx index b855ee3c6..7d1d99649 100644 --- a/src/IconSupervisorAccountSharp.tsx +++ b/src/IconSupervisorAccountSharp.tsx @@ -8,4 +8,4 @@ const IconSupervisorAccountSharp: React.FC = ({ ...props }) => ( ) -export { IconSupervisorAccountSharp as default } +export default IconSupervisorAccountSharp diff --git a/src/IconSupervisorAccountSharpFilled.tsx b/src/IconSupervisorAccountSharpFilled.tsx index 46b5caea5..f9b67157f 100644 --- a/src/IconSupervisorAccountSharpFilled.tsx +++ b/src/IconSupervisorAccountSharpFilled.tsx @@ -10,4 +10,4 @@ const IconSupervisorAccountSharpFilled: React.FC = ({ ) -export { IconSupervisorAccountSharpFilled as default } +export default IconSupervisorAccountSharpFilled diff --git a/src/IconSupportAgentOutlined.tsx b/src/IconSupportAgentOutlined.tsx index a691a2207..6d4e12335 100644 --- a/src/IconSupportAgentOutlined.tsx +++ b/src/IconSupportAgentOutlined.tsx @@ -8,4 +8,4 @@ const IconSupportAgentOutlined: React.FC = ({ ...props }) => ( ) -export { IconSupportAgentOutlined as default } +export default IconSupportAgentOutlined diff --git a/src/IconSupportAgentOutlinedFilled.tsx b/src/IconSupportAgentOutlinedFilled.tsx index 4773f382a..ce8d559a2 100644 --- a/src/IconSupportAgentOutlinedFilled.tsx +++ b/src/IconSupportAgentOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconSupportAgentOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconSupportAgentOutlinedFilled as default } +export default IconSupportAgentOutlinedFilled diff --git a/src/IconSupportAgentRounded.tsx b/src/IconSupportAgentRounded.tsx index 8dd250c5b..108f314cd 100644 --- a/src/IconSupportAgentRounded.tsx +++ b/src/IconSupportAgentRounded.tsx @@ -8,4 +8,4 @@ const IconSupportAgentRounded: React.FC = ({ ...props }) => ( ) -export { IconSupportAgentRounded as default } +export default IconSupportAgentRounded diff --git a/src/IconSupportAgentRoundedFilled.tsx b/src/IconSupportAgentRoundedFilled.tsx index 6d64546ad..f52056bdc 100644 --- a/src/IconSupportAgentRoundedFilled.tsx +++ b/src/IconSupportAgentRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconSupportAgentRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconSupportAgentRoundedFilled as default } +export default IconSupportAgentRoundedFilled diff --git a/src/IconSupportAgentSharp.tsx b/src/IconSupportAgentSharp.tsx index 6a873cd8d..02e3f19ed 100644 --- a/src/IconSupportAgentSharp.tsx +++ b/src/IconSupportAgentSharp.tsx @@ -8,4 +8,4 @@ const IconSupportAgentSharp: React.FC = ({ ...props }) => ( ) -export { IconSupportAgentSharp as default } +export default IconSupportAgentSharp diff --git a/src/IconSupportAgentSharpFilled.tsx b/src/IconSupportAgentSharpFilled.tsx index 768bc7598..3984c865c 100644 --- a/src/IconSupportAgentSharpFilled.tsx +++ b/src/IconSupportAgentSharpFilled.tsx @@ -8,4 +8,4 @@ const IconSupportAgentSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconSupportAgentSharpFilled as default } +export default IconSupportAgentSharpFilled diff --git a/src/IconSupportOutlined.tsx b/src/IconSupportOutlined.tsx index d9ed32239..c86d4c4f9 100644 --- a/src/IconSupportOutlined.tsx +++ b/src/IconSupportOutlined.tsx @@ -8,4 +8,4 @@ const IconSupportOutlined: React.FC = ({ ...props }) => ( ) -export { IconSupportOutlined as default } +export default IconSupportOutlined diff --git a/src/IconSupportOutlinedFilled.tsx b/src/IconSupportOutlinedFilled.tsx index 0cc9870d6..f96053dc0 100644 --- a/src/IconSupportOutlinedFilled.tsx +++ b/src/IconSupportOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconSupportOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconSupportOutlinedFilled as default } +export default IconSupportOutlinedFilled diff --git a/src/IconSupportRounded.tsx b/src/IconSupportRounded.tsx index 78ea1adec..babb650d6 100644 --- a/src/IconSupportRounded.tsx +++ b/src/IconSupportRounded.tsx @@ -8,4 +8,4 @@ const IconSupportRounded: React.FC = ({ ...props }) => ( ) -export { IconSupportRounded as default } +export default IconSupportRounded diff --git a/src/IconSupportRoundedFilled.tsx b/src/IconSupportRoundedFilled.tsx index 61495f063..f1a427814 100644 --- a/src/IconSupportRoundedFilled.tsx +++ b/src/IconSupportRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconSupportRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconSupportRoundedFilled as default } +export default IconSupportRoundedFilled diff --git a/src/IconSupportSharp.tsx b/src/IconSupportSharp.tsx index c3baa7e7f..d78f60de4 100644 --- a/src/IconSupportSharp.tsx +++ b/src/IconSupportSharp.tsx @@ -8,4 +8,4 @@ const IconSupportSharp: React.FC = ({ ...props }) => ( ) -export { IconSupportSharp as default } +export default IconSupportSharp diff --git a/src/IconSupportSharpFilled.tsx b/src/IconSupportSharpFilled.tsx index 94795bb7b..c31c17baf 100644 --- a/src/IconSupportSharpFilled.tsx +++ b/src/IconSupportSharpFilled.tsx @@ -8,4 +8,4 @@ const IconSupportSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconSupportSharpFilled as default } +export default IconSupportSharpFilled diff --git a/src/IconSurfingOutlined.tsx b/src/IconSurfingOutlined.tsx index 0bbfa6e6e..6abbf9315 100644 --- a/src/IconSurfingOutlined.tsx +++ b/src/IconSurfingOutlined.tsx @@ -8,4 +8,4 @@ const IconSurfingOutlined: React.FC = ({ ...props }) => ( ) -export { IconSurfingOutlined as default } +export default IconSurfingOutlined diff --git a/src/IconSurfingOutlinedFilled.tsx b/src/IconSurfingOutlinedFilled.tsx index 1b04bd0a0..ba0b3e996 100644 --- a/src/IconSurfingOutlinedFilled.tsx +++ b/src/IconSurfingOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconSurfingOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconSurfingOutlinedFilled as default } +export default IconSurfingOutlinedFilled diff --git a/src/IconSurfingRounded.tsx b/src/IconSurfingRounded.tsx index dbc9099f8..152b71ae3 100644 --- a/src/IconSurfingRounded.tsx +++ b/src/IconSurfingRounded.tsx @@ -8,4 +8,4 @@ const IconSurfingRounded: React.FC = ({ ...props }) => ( ) -export { IconSurfingRounded as default } +export default IconSurfingRounded diff --git a/src/IconSurfingRoundedFilled.tsx b/src/IconSurfingRoundedFilled.tsx index 7126f1bb3..123e2fb37 100644 --- a/src/IconSurfingRoundedFilled.tsx +++ b/src/IconSurfingRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconSurfingRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconSurfingRoundedFilled as default } +export default IconSurfingRoundedFilled diff --git a/src/IconSurfingSharp.tsx b/src/IconSurfingSharp.tsx index f2c2c2852..80bf5f14c 100644 --- a/src/IconSurfingSharp.tsx +++ b/src/IconSurfingSharp.tsx @@ -8,4 +8,4 @@ const IconSurfingSharp: React.FC = ({ ...props }) => ( ) -export { IconSurfingSharp as default } +export default IconSurfingSharp diff --git a/src/IconSurfingSharpFilled.tsx b/src/IconSurfingSharpFilled.tsx index 9f8666b7e..443988267 100644 --- a/src/IconSurfingSharpFilled.tsx +++ b/src/IconSurfingSharpFilled.tsx @@ -8,4 +8,4 @@ const IconSurfingSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconSurfingSharpFilled as default } +export default IconSurfingSharpFilled diff --git a/src/IconSurgicalOutlined.tsx b/src/IconSurgicalOutlined.tsx index 1e78dd035..b7c60eb26 100644 --- a/src/IconSurgicalOutlined.tsx +++ b/src/IconSurgicalOutlined.tsx @@ -8,4 +8,4 @@ const IconSurgicalOutlined: React.FC = ({ ...props }) => ( ) -export { IconSurgicalOutlined as default } +export default IconSurgicalOutlined diff --git a/src/IconSurgicalOutlinedFilled.tsx b/src/IconSurgicalOutlinedFilled.tsx index 01b415c8e..006060e80 100644 --- a/src/IconSurgicalOutlinedFilled.tsx +++ b/src/IconSurgicalOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconSurgicalOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconSurgicalOutlinedFilled as default } +export default IconSurgicalOutlinedFilled diff --git a/src/IconSurgicalRounded.tsx b/src/IconSurgicalRounded.tsx index 0196e809f..b1155fe7b 100644 --- a/src/IconSurgicalRounded.tsx +++ b/src/IconSurgicalRounded.tsx @@ -8,4 +8,4 @@ const IconSurgicalRounded: React.FC = ({ ...props }) => ( ) -export { IconSurgicalRounded as default } +export default IconSurgicalRounded diff --git a/src/IconSurgicalRoundedFilled.tsx b/src/IconSurgicalRoundedFilled.tsx index b9f01515d..42faef41f 100644 --- a/src/IconSurgicalRoundedFilled.tsx +++ b/src/IconSurgicalRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconSurgicalRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconSurgicalRoundedFilled as default } +export default IconSurgicalRoundedFilled diff --git a/src/IconSurgicalSharp.tsx b/src/IconSurgicalSharp.tsx index 699aa19f4..a6ec0f37b 100644 --- a/src/IconSurgicalSharp.tsx +++ b/src/IconSurgicalSharp.tsx @@ -8,4 +8,4 @@ const IconSurgicalSharp: React.FC = ({ ...props }) => ( ) -export { IconSurgicalSharp as default } +export default IconSurgicalSharp diff --git a/src/IconSurgicalSharpFilled.tsx b/src/IconSurgicalSharpFilled.tsx index 56a5bd73b..4bf476e85 100644 --- a/src/IconSurgicalSharpFilled.tsx +++ b/src/IconSurgicalSharpFilled.tsx @@ -8,4 +8,4 @@ const IconSurgicalSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconSurgicalSharpFilled as default } +export default IconSurgicalSharpFilled diff --git a/src/IconSurroundSoundOutlined.tsx b/src/IconSurroundSoundOutlined.tsx index 4d5870311..1fe22695e 100644 --- a/src/IconSurroundSoundOutlined.tsx +++ b/src/IconSurroundSoundOutlined.tsx @@ -8,4 +8,4 @@ const IconSurroundSoundOutlined: React.FC = ({ ...props }) => ( ) -export { IconSurroundSoundOutlined as default } +export default IconSurroundSoundOutlined diff --git a/src/IconSurroundSoundOutlinedFilled.tsx b/src/IconSurroundSoundOutlinedFilled.tsx index e6e4136c1..f43ee6517 100644 --- a/src/IconSurroundSoundOutlinedFilled.tsx +++ b/src/IconSurroundSoundOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconSurroundSoundOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconSurroundSoundOutlinedFilled as default } +export default IconSurroundSoundOutlinedFilled diff --git a/src/IconSurroundSoundRounded.tsx b/src/IconSurroundSoundRounded.tsx index 4d204addc..fb17ba1f1 100644 --- a/src/IconSurroundSoundRounded.tsx +++ b/src/IconSurroundSoundRounded.tsx @@ -8,4 +8,4 @@ const IconSurroundSoundRounded: React.FC = ({ ...props }) => ( ) -export { IconSurroundSoundRounded as default } +export default IconSurroundSoundRounded diff --git a/src/IconSurroundSoundRoundedFilled.tsx b/src/IconSurroundSoundRoundedFilled.tsx index 16429502e..9b6fd42eb 100644 --- a/src/IconSurroundSoundRoundedFilled.tsx +++ b/src/IconSurroundSoundRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconSurroundSoundRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconSurroundSoundRoundedFilled as default } +export default IconSurroundSoundRoundedFilled diff --git a/src/IconSurroundSoundSharp.tsx b/src/IconSurroundSoundSharp.tsx index 65f580b1d..1ea9d5fc7 100644 --- a/src/IconSurroundSoundSharp.tsx +++ b/src/IconSurroundSoundSharp.tsx @@ -8,4 +8,4 @@ const IconSurroundSoundSharp: React.FC = ({ ...props }) => ( ) -export { IconSurroundSoundSharp as default } +export default IconSurroundSoundSharp diff --git a/src/IconSurroundSoundSharpFilled.tsx b/src/IconSurroundSoundSharpFilled.tsx index ac69f4206..366172d0a 100644 --- a/src/IconSurroundSoundSharpFilled.tsx +++ b/src/IconSurroundSoundSharpFilled.tsx @@ -8,4 +8,4 @@ const IconSurroundSoundSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconSurroundSoundSharpFilled as default } +export default IconSurroundSoundSharpFilled diff --git a/src/IconSwapCallsOutlined.tsx b/src/IconSwapCallsOutlined.tsx index 5b0f65e78..2eebf8539 100644 --- a/src/IconSwapCallsOutlined.tsx +++ b/src/IconSwapCallsOutlined.tsx @@ -8,4 +8,4 @@ const IconSwapCallsOutlined: React.FC = ({ ...props }) => ( ) -export { IconSwapCallsOutlined as default } +export default IconSwapCallsOutlined diff --git a/src/IconSwapCallsOutlinedFilled.tsx b/src/IconSwapCallsOutlinedFilled.tsx index 7f13861f6..7fb5a867c 100644 --- a/src/IconSwapCallsOutlinedFilled.tsx +++ b/src/IconSwapCallsOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconSwapCallsOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconSwapCallsOutlinedFilled as default } +export default IconSwapCallsOutlinedFilled diff --git a/src/IconSwapCallsRounded.tsx b/src/IconSwapCallsRounded.tsx index 3eff777e3..1ca1da09d 100644 --- a/src/IconSwapCallsRounded.tsx +++ b/src/IconSwapCallsRounded.tsx @@ -8,4 +8,4 @@ const IconSwapCallsRounded: React.FC = ({ ...props }) => ( ) -export { IconSwapCallsRounded as default } +export default IconSwapCallsRounded diff --git a/src/IconSwapCallsRoundedFilled.tsx b/src/IconSwapCallsRoundedFilled.tsx index 1a333d27f..4e472ad09 100644 --- a/src/IconSwapCallsRoundedFilled.tsx +++ b/src/IconSwapCallsRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconSwapCallsRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconSwapCallsRoundedFilled as default } +export default IconSwapCallsRoundedFilled diff --git a/src/IconSwapCallsSharp.tsx b/src/IconSwapCallsSharp.tsx index b1b9e170b..8b000e342 100644 --- a/src/IconSwapCallsSharp.tsx +++ b/src/IconSwapCallsSharp.tsx @@ -8,4 +8,4 @@ const IconSwapCallsSharp: React.FC = ({ ...props }) => ( ) -export { IconSwapCallsSharp as default } +export default IconSwapCallsSharp diff --git a/src/IconSwapCallsSharpFilled.tsx b/src/IconSwapCallsSharpFilled.tsx index 020d20252..726511466 100644 --- a/src/IconSwapCallsSharpFilled.tsx +++ b/src/IconSwapCallsSharpFilled.tsx @@ -8,4 +8,4 @@ const IconSwapCallsSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconSwapCallsSharpFilled as default } +export default IconSwapCallsSharpFilled diff --git a/src/IconSwapDrivingAppsOutlined.tsx b/src/IconSwapDrivingAppsOutlined.tsx index e2e446afc..0ed731979 100644 --- a/src/IconSwapDrivingAppsOutlined.tsx +++ b/src/IconSwapDrivingAppsOutlined.tsx @@ -8,4 +8,4 @@ const IconSwapDrivingAppsOutlined: React.FC = ({ ...props }) => ( ) -export { IconSwapDrivingAppsOutlined as default } +export default IconSwapDrivingAppsOutlined diff --git a/src/IconSwapDrivingAppsOutlinedFilled.tsx b/src/IconSwapDrivingAppsOutlinedFilled.tsx index 571d25bef..e89f30968 100644 --- a/src/IconSwapDrivingAppsOutlinedFilled.tsx +++ b/src/IconSwapDrivingAppsOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconSwapDrivingAppsOutlinedFilled: React.FC = ({ ) -export { IconSwapDrivingAppsOutlinedFilled as default } +export default IconSwapDrivingAppsOutlinedFilled diff --git a/src/IconSwapDrivingAppsRounded.tsx b/src/IconSwapDrivingAppsRounded.tsx index de2bf67bc..4f64b0155 100644 --- a/src/IconSwapDrivingAppsRounded.tsx +++ b/src/IconSwapDrivingAppsRounded.tsx @@ -8,4 +8,4 @@ const IconSwapDrivingAppsRounded: React.FC = ({ ...props }) => ( ) -export { IconSwapDrivingAppsRounded as default } +export default IconSwapDrivingAppsRounded diff --git a/src/IconSwapDrivingAppsRoundedFilled.tsx b/src/IconSwapDrivingAppsRoundedFilled.tsx index 3924b6d7d..852e5ee8c 100644 --- a/src/IconSwapDrivingAppsRoundedFilled.tsx +++ b/src/IconSwapDrivingAppsRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconSwapDrivingAppsRoundedFilled: React.FC = ({ ) -export { IconSwapDrivingAppsRoundedFilled as default } +export default IconSwapDrivingAppsRoundedFilled diff --git a/src/IconSwapDrivingAppsSharp.tsx b/src/IconSwapDrivingAppsSharp.tsx index 0dcfccee6..5c602de84 100644 --- a/src/IconSwapDrivingAppsSharp.tsx +++ b/src/IconSwapDrivingAppsSharp.tsx @@ -8,4 +8,4 @@ const IconSwapDrivingAppsSharp: React.FC = ({ ...props }) => ( ) -export { IconSwapDrivingAppsSharp as default } +export default IconSwapDrivingAppsSharp diff --git a/src/IconSwapDrivingAppsSharpFilled.tsx b/src/IconSwapDrivingAppsSharpFilled.tsx index 9a8d4768c..5ff4cc87f 100644 --- a/src/IconSwapDrivingAppsSharpFilled.tsx +++ b/src/IconSwapDrivingAppsSharpFilled.tsx @@ -8,4 +8,4 @@ const IconSwapDrivingAppsSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconSwapDrivingAppsSharpFilled as default } +export default IconSwapDrivingAppsSharpFilled diff --git a/src/IconSwapDrivingAppsWheelOutlined.tsx b/src/IconSwapDrivingAppsWheelOutlined.tsx index b68f0892d..0ee2a09f6 100644 --- a/src/IconSwapDrivingAppsWheelOutlined.tsx +++ b/src/IconSwapDrivingAppsWheelOutlined.tsx @@ -10,4 +10,4 @@ const IconSwapDrivingAppsWheelOutlined: React.FC = ({ ) -export { IconSwapDrivingAppsWheelOutlined as default } +export default IconSwapDrivingAppsWheelOutlined diff --git a/src/IconSwapDrivingAppsWheelOutlinedFilled.tsx b/src/IconSwapDrivingAppsWheelOutlinedFilled.tsx index 1e7b4a5eb..104ff1033 100644 --- a/src/IconSwapDrivingAppsWheelOutlinedFilled.tsx +++ b/src/IconSwapDrivingAppsWheelOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconSwapDrivingAppsWheelOutlinedFilled: React.FC = ({ ) -export { IconSwapDrivingAppsWheelOutlinedFilled as default } +export default IconSwapDrivingAppsWheelOutlinedFilled diff --git a/src/IconSwapDrivingAppsWheelRounded.tsx b/src/IconSwapDrivingAppsWheelRounded.tsx index 8b2466fd8..bf58bd08f 100644 --- a/src/IconSwapDrivingAppsWheelRounded.tsx +++ b/src/IconSwapDrivingAppsWheelRounded.tsx @@ -8,4 +8,4 @@ const IconSwapDrivingAppsWheelRounded: React.FC = ({ ...props }) => ( ) -export { IconSwapDrivingAppsWheelRounded as default } +export default IconSwapDrivingAppsWheelRounded diff --git a/src/IconSwapDrivingAppsWheelRoundedFilled.tsx b/src/IconSwapDrivingAppsWheelRoundedFilled.tsx index e9709f015..42416badc 100644 --- a/src/IconSwapDrivingAppsWheelRoundedFilled.tsx +++ b/src/IconSwapDrivingAppsWheelRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconSwapDrivingAppsWheelRoundedFilled: React.FC = ({ ) -export { IconSwapDrivingAppsWheelRoundedFilled as default } +export default IconSwapDrivingAppsWheelRoundedFilled diff --git a/src/IconSwapDrivingAppsWheelSharp.tsx b/src/IconSwapDrivingAppsWheelSharp.tsx index 2942c7cd5..072497219 100644 --- a/src/IconSwapDrivingAppsWheelSharp.tsx +++ b/src/IconSwapDrivingAppsWheelSharp.tsx @@ -8,4 +8,4 @@ const IconSwapDrivingAppsWheelSharp: React.FC = ({ ...props }) => ( ) -export { IconSwapDrivingAppsWheelSharp as default } +export default IconSwapDrivingAppsWheelSharp diff --git a/src/IconSwapDrivingAppsWheelSharpFilled.tsx b/src/IconSwapDrivingAppsWheelSharpFilled.tsx index 5a77fff87..e6504f1cf 100644 --- a/src/IconSwapDrivingAppsWheelSharpFilled.tsx +++ b/src/IconSwapDrivingAppsWheelSharpFilled.tsx @@ -10,4 +10,4 @@ const IconSwapDrivingAppsWheelSharpFilled: React.FC = ({ ) -export { IconSwapDrivingAppsWheelSharpFilled as default } +export default IconSwapDrivingAppsWheelSharpFilled diff --git a/src/IconSwapHorizOutlined.tsx b/src/IconSwapHorizOutlined.tsx index 9d8af3f41..8d2ef1a1e 100644 --- a/src/IconSwapHorizOutlined.tsx +++ b/src/IconSwapHorizOutlined.tsx @@ -8,4 +8,4 @@ const IconSwapHorizOutlined: React.FC = ({ ...props }) => ( ) -export { IconSwapHorizOutlined as default } +export default IconSwapHorizOutlined diff --git a/src/IconSwapHorizOutlinedFilled.tsx b/src/IconSwapHorizOutlinedFilled.tsx index 4e83a51df..8fe6d7c6c 100644 --- a/src/IconSwapHorizOutlinedFilled.tsx +++ b/src/IconSwapHorizOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconSwapHorizOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconSwapHorizOutlinedFilled as default } +export default IconSwapHorizOutlinedFilled diff --git a/src/IconSwapHorizRounded.tsx b/src/IconSwapHorizRounded.tsx index d5212bd2f..fed917f62 100644 --- a/src/IconSwapHorizRounded.tsx +++ b/src/IconSwapHorizRounded.tsx @@ -8,4 +8,4 @@ const IconSwapHorizRounded: React.FC = ({ ...props }) => ( ) -export { IconSwapHorizRounded as default } +export default IconSwapHorizRounded diff --git a/src/IconSwapHorizRoundedFilled.tsx b/src/IconSwapHorizRoundedFilled.tsx index f24d75cf9..780ef7177 100644 --- a/src/IconSwapHorizRoundedFilled.tsx +++ b/src/IconSwapHorizRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconSwapHorizRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconSwapHorizRoundedFilled as default } +export default IconSwapHorizRoundedFilled diff --git a/src/IconSwapHorizSharp.tsx b/src/IconSwapHorizSharp.tsx index 801352c57..5b8118b6c 100644 --- a/src/IconSwapHorizSharp.tsx +++ b/src/IconSwapHorizSharp.tsx @@ -8,4 +8,4 @@ const IconSwapHorizSharp: React.FC = ({ ...props }) => ( ) -export { IconSwapHorizSharp as default } +export default IconSwapHorizSharp diff --git a/src/IconSwapHorizSharpFilled.tsx b/src/IconSwapHorizSharpFilled.tsx index 9d361c52e..e551b22f0 100644 --- a/src/IconSwapHorizSharpFilled.tsx +++ b/src/IconSwapHorizSharpFilled.tsx @@ -8,4 +8,4 @@ const IconSwapHorizSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconSwapHorizSharpFilled as default } +export default IconSwapHorizSharpFilled diff --git a/src/IconSwapHorizontalCircleOutlined.tsx b/src/IconSwapHorizontalCircleOutlined.tsx index b94124a8f..d95f54813 100644 --- a/src/IconSwapHorizontalCircleOutlined.tsx +++ b/src/IconSwapHorizontalCircleOutlined.tsx @@ -10,4 +10,4 @@ const IconSwapHorizontalCircleOutlined: React.FC = ({ ) -export { IconSwapHorizontalCircleOutlined as default } +export default IconSwapHorizontalCircleOutlined diff --git a/src/IconSwapHorizontalCircleOutlinedFilled.tsx b/src/IconSwapHorizontalCircleOutlinedFilled.tsx index 3133e47a0..69b404a56 100644 --- a/src/IconSwapHorizontalCircleOutlinedFilled.tsx +++ b/src/IconSwapHorizontalCircleOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconSwapHorizontalCircleOutlinedFilled: React.FC = ({ ) -export { IconSwapHorizontalCircleOutlinedFilled as default } +export default IconSwapHorizontalCircleOutlinedFilled diff --git a/src/IconSwapHorizontalCircleRounded.tsx b/src/IconSwapHorizontalCircleRounded.tsx index a5f007cfe..3c963e4b2 100644 --- a/src/IconSwapHorizontalCircleRounded.tsx +++ b/src/IconSwapHorizontalCircleRounded.tsx @@ -8,4 +8,4 @@ const IconSwapHorizontalCircleRounded: React.FC = ({ ...props }) => ( ) -export { IconSwapHorizontalCircleRounded as default } +export default IconSwapHorizontalCircleRounded diff --git a/src/IconSwapHorizontalCircleRoundedFilled.tsx b/src/IconSwapHorizontalCircleRoundedFilled.tsx index aa893a8c7..489fbaf2e 100644 --- a/src/IconSwapHorizontalCircleRoundedFilled.tsx +++ b/src/IconSwapHorizontalCircleRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconSwapHorizontalCircleRoundedFilled: React.FC = ({ ) -export { IconSwapHorizontalCircleRoundedFilled as default } +export default IconSwapHorizontalCircleRoundedFilled diff --git a/src/IconSwapHorizontalCircleSharp.tsx b/src/IconSwapHorizontalCircleSharp.tsx index 6671d62d0..c63472f92 100644 --- a/src/IconSwapHorizontalCircleSharp.tsx +++ b/src/IconSwapHorizontalCircleSharp.tsx @@ -8,4 +8,4 @@ const IconSwapHorizontalCircleSharp: React.FC = ({ ...props }) => ( ) -export { IconSwapHorizontalCircleSharp as default } +export default IconSwapHorizontalCircleSharp diff --git a/src/IconSwapHorizontalCircleSharpFilled.tsx b/src/IconSwapHorizontalCircleSharpFilled.tsx index fbcbfd395..12490af28 100644 --- a/src/IconSwapHorizontalCircleSharpFilled.tsx +++ b/src/IconSwapHorizontalCircleSharpFilled.tsx @@ -10,4 +10,4 @@ const IconSwapHorizontalCircleSharpFilled: React.FC = ({ ) -export { IconSwapHorizontalCircleSharpFilled as default } +export default IconSwapHorizontalCircleSharpFilled diff --git a/src/IconSwapVertOutlined.tsx b/src/IconSwapVertOutlined.tsx index 0a30921a1..751f72656 100644 --- a/src/IconSwapVertOutlined.tsx +++ b/src/IconSwapVertOutlined.tsx @@ -8,4 +8,4 @@ const IconSwapVertOutlined: React.FC = ({ ...props }) => ( ) -export { IconSwapVertOutlined as default } +export default IconSwapVertOutlined diff --git a/src/IconSwapVertOutlinedFilled.tsx b/src/IconSwapVertOutlinedFilled.tsx index 684bcd6d2..dda8f43e5 100644 --- a/src/IconSwapVertOutlinedFilled.tsx +++ b/src/IconSwapVertOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconSwapVertOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconSwapVertOutlinedFilled as default } +export default IconSwapVertOutlinedFilled diff --git a/src/IconSwapVertRounded.tsx b/src/IconSwapVertRounded.tsx index 480aac853..0abb55222 100644 --- a/src/IconSwapVertRounded.tsx +++ b/src/IconSwapVertRounded.tsx @@ -8,4 +8,4 @@ const IconSwapVertRounded: React.FC = ({ ...props }) => ( ) -export { IconSwapVertRounded as default } +export default IconSwapVertRounded diff --git a/src/IconSwapVertRoundedFilled.tsx b/src/IconSwapVertRoundedFilled.tsx index 516b8781b..c26ea1375 100644 --- a/src/IconSwapVertRoundedFilled.tsx +++ b/src/IconSwapVertRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconSwapVertRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconSwapVertRoundedFilled as default } +export default IconSwapVertRoundedFilled diff --git a/src/IconSwapVertSharp.tsx b/src/IconSwapVertSharp.tsx index 504aa9f4e..98a11d58e 100644 --- a/src/IconSwapVertSharp.tsx +++ b/src/IconSwapVertSharp.tsx @@ -8,4 +8,4 @@ const IconSwapVertSharp: React.FC = ({ ...props }) => ( ) -export { IconSwapVertSharp as default } +export default IconSwapVertSharp diff --git a/src/IconSwapVertSharpFilled.tsx b/src/IconSwapVertSharpFilled.tsx index e3a1e6c6b..f55c604c7 100644 --- a/src/IconSwapVertSharpFilled.tsx +++ b/src/IconSwapVertSharpFilled.tsx @@ -8,4 +8,4 @@ const IconSwapVertSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconSwapVertSharpFilled as default } +export default IconSwapVertSharpFilled diff --git a/src/IconSwapVerticalCircleOutlined.tsx b/src/IconSwapVerticalCircleOutlined.tsx index c864df2c1..c29070197 100644 --- a/src/IconSwapVerticalCircleOutlined.tsx +++ b/src/IconSwapVerticalCircleOutlined.tsx @@ -8,4 +8,4 @@ const IconSwapVerticalCircleOutlined: React.FC = ({ ...props }) => ( ) -export { IconSwapVerticalCircleOutlined as default } +export default IconSwapVerticalCircleOutlined diff --git a/src/IconSwapVerticalCircleOutlinedFilled.tsx b/src/IconSwapVerticalCircleOutlinedFilled.tsx index 0d3f3ee19..4fdc4beea 100644 --- a/src/IconSwapVerticalCircleOutlinedFilled.tsx +++ b/src/IconSwapVerticalCircleOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconSwapVerticalCircleOutlinedFilled: React.FC = ({ ) -export { IconSwapVerticalCircleOutlinedFilled as default } +export default IconSwapVerticalCircleOutlinedFilled diff --git a/src/IconSwapVerticalCircleRounded.tsx b/src/IconSwapVerticalCircleRounded.tsx index f83552c23..01ce3af53 100644 --- a/src/IconSwapVerticalCircleRounded.tsx +++ b/src/IconSwapVerticalCircleRounded.tsx @@ -8,4 +8,4 @@ const IconSwapVerticalCircleRounded: React.FC = ({ ...props }) => ( ) -export { IconSwapVerticalCircleRounded as default } +export default IconSwapVerticalCircleRounded diff --git a/src/IconSwapVerticalCircleRoundedFilled.tsx b/src/IconSwapVerticalCircleRoundedFilled.tsx index f2503015a..357ca12b6 100644 --- a/src/IconSwapVerticalCircleRoundedFilled.tsx +++ b/src/IconSwapVerticalCircleRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconSwapVerticalCircleRoundedFilled: React.FC = ({ ) -export { IconSwapVerticalCircleRoundedFilled as default } +export default IconSwapVerticalCircleRoundedFilled diff --git a/src/IconSwapVerticalCircleSharp.tsx b/src/IconSwapVerticalCircleSharp.tsx index 52d62707c..18d83ba5c 100644 --- a/src/IconSwapVerticalCircleSharp.tsx +++ b/src/IconSwapVerticalCircleSharp.tsx @@ -8,4 +8,4 @@ const IconSwapVerticalCircleSharp: React.FC = ({ ...props }) => ( ) -export { IconSwapVerticalCircleSharp as default } +export default IconSwapVerticalCircleSharp diff --git a/src/IconSwapVerticalCircleSharpFilled.tsx b/src/IconSwapVerticalCircleSharpFilled.tsx index a5834d2c1..eccff0a43 100644 --- a/src/IconSwapVerticalCircleSharpFilled.tsx +++ b/src/IconSwapVerticalCircleSharpFilled.tsx @@ -10,4 +10,4 @@ const IconSwapVerticalCircleSharpFilled: React.FC = ({ ) -export { IconSwapVerticalCircleSharpFilled as default } +export default IconSwapVerticalCircleSharpFilled diff --git a/src/IconSweepOutlined.tsx b/src/IconSweepOutlined.tsx index fe46e289d..0cee23a01 100644 --- a/src/IconSweepOutlined.tsx +++ b/src/IconSweepOutlined.tsx @@ -8,4 +8,4 @@ const IconSweepOutlined: React.FC = ({ ...props }) => ( ) -export { IconSweepOutlined as default } +export default IconSweepOutlined diff --git a/src/IconSweepOutlinedFilled.tsx b/src/IconSweepOutlinedFilled.tsx index eec9a1753..ad5bf1c69 100644 --- a/src/IconSweepOutlinedFilled.tsx +++ b/src/IconSweepOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconSweepOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconSweepOutlinedFilled as default } +export default IconSweepOutlinedFilled diff --git a/src/IconSweepRounded.tsx b/src/IconSweepRounded.tsx index 9c4849517..a238e8729 100644 --- a/src/IconSweepRounded.tsx +++ b/src/IconSweepRounded.tsx @@ -8,4 +8,4 @@ const IconSweepRounded: React.FC = ({ ...props }) => ( ) -export { IconSweepRounded as default } +export default IconSweepRounded diff --git a/src/IconSweepRoundedFilled.tsx b/src/IconSweepRoundedFilled.tsx index 5ac96887e..a066948fe 100644 --- a/src/IconSweepRoundedFilled.tsx +++ b/src/IconSweepRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconSweepRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconSweepRoundedFilled as default } +export default IconSweepRoundedFilled diff --git a/src/IconSweepSharp.tsx b/src/IconSweepSharp.tsx index 357d77384..77dc87d21 100644 --- a/src/IconSweepSharp.tsx +++ b/src/IconSweepSharp.tsx @@ -8,4 +8,4 @@ const IconSweepSharp: React.FC = ({ ...props }) => ( ) -export { IconSweepSharp as default } +export default IconSweepSharp diff --git a/src/IconSweepSharpFilled.tsx b/src/IconSweepSharpFilled.tsx index 7d403e410..38dbfab03 100644 --- a/src/IconSweepSharpFilled.tsx +++ b/src/IconSweepSharpFilled.tsx @@ -8,4 +8,4 @@ const IconSweepSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconSweepSharpFilled as default } +export default IconSweepSharpFilled diff --git a/src/IconSwipeDownAltOutlined.tsx b/src/IconSwipeDownAltOutlined.tsx index 8e2eb6ed6..ff1da2aa5 100644 --- a/src/IconSwipeDownAltOutlined.tsx +++ b/src/IconSwipeDownAltOutlined.tsx @@ -8,4 +8,4 @@ const IconSwipeDownAltOutlined: React.FC = ({ ...props }) => ( ) -export { IconSwipeDownAltOutlined as default } +export default IconSwipeDownAltOutlined diff --git a/src/IconSwipeDownAltOutlinedFilled.tsx b/src/IconSwipeDownAltOutlinedFilled.tsx index ec5a10ebb..1e22a79ae 100644 --- a/src/IconSwipeDownAltOutlinedFilled.tsx +++ b/src/IconSwipeDownAltOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconSwipeDownAltOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconSwipeDownAltOutlinedFilled as default } +export default IconSwipeDownAltOutlinedFilled diff --git a/src/IconSwipeDownAltRounded.tsx b/src/IconSwipeDownAltRounded.tsx index e0b9775a1..9ec94998e 100644 --- a/src/IconSwipeDownAltRounded.tsx +++ b/src/IconSwipeDownAltRounded.tsx @@ -8,4 +8,4 @@ const IconSwipeDownAltRounded: React.FC = ({ ...props }) => ( ) -export { IconSwipeDownAltRounded as default } +export default IconSwipeDownAltRounded diff --git a/src/IconSwipeDownAltRoundedFilled.tsx b/src/IconSwipeDownAltRoundedFilled.tsx index d4575a48f..c40de5017 100644 --- a/src/IconSwipeDownAltRoundedFilled.tsx +++ b/src/IconSwipeDownAltRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconSwipeDownAltRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconSwipeDownAltRoundedFilled as default } +export default IconSwipeDownAltRoundedFilled diff --git a/src/IconSwipeDownAltSharp.tsx b/src/IconSwipeDownAltSharp.tsx index f549106d7..d318a8f5a 100644 --- a/src/IconSwipeDownAltSharp.tsx +++ b/src/IconSwipeDownAltSharp.tsx @@ -8,4 +8,4 @@ const IconSwipeDownAltSharp: React.FC = ({ ...props }) => ( ) -export { IconSwipeDownAltSharp as default } +export default IconSwipeDownAltSharp diff --git a/src/IconSwipeDownAltSharpFilled.tsx b/src/IconSwipeDownAltSharpFilled.tsx index 87f465c55..97b2ddf3c 100644 --- a/src/IconSwipeDownAltSharpFilled.tsx +++ b/src/IconSwipeDownAltSharpFilled.tsx @@ -8,4 +8,4 @@ const IconSwipeDownAltSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconSwipeDownAltSharpFilled as default } +export default IconSwipeDownAltSharpFilled diff --git a/src/IconSwipeDownOutlined.tsx b/src/IconSwipeDownOutlined.tsx index f5029bd27..112153c7e 100644 --- a/src/IconSwipeDownOutlined.tsx +++ b/src/IconSwipeDownOutlined.tsx @@ -8,4 +8,4 @@ const IconSwipeDownOutlined: React.FC = ({ ...props }) => ( ) -export { IconSwipeDownOutlined as default } +export default IconSwipeDownOutlined diff --git a/src/IconSwipeDownOutlinedFilled.tsx b/src/IconSwipeDownOutlinedFilled.tsx index cd88d2a17..7241fbb4f 100644 --- a/src/IconSwipeDownOutlinedFilled.tsx +++ b/src/IconSwipeDownOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconSwipeDownOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconSwipeDownOutlinedFilled as default } +export default IconSwipeDownOutlinedFilled diff --git a/src/IconSwipeDownRounded.tsx b/src/IconSwipeDownRounded.tsx index ac2deef19..835e52e69 100644 --- a/src/IconSwipeDownRounded.tsx +++ b/src/IconSwipeDownRounded.tsx @@ -8,4 +8,4 @@ const IconSwipeDownRounded: React.FC = ({ ...props }) => ( ) -export { IconSwipeDownRounded as default } +export default IconSwipeDownRounded diff --git a/src/IconSwipeDownRoundedFilled.tsx b/src/IconSwipeDownRoundedFilled.tsx index 852768a25..a6d46f54c 100644 --- a/src/IconSwipeDownRoundedFilled.tsx +++ b/src/IconSwipeDownRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconSwipeDownRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconSwipeDownRoundedFilled as default } +export default IconSwipeDownRoundedFilled diff --git a/src/IconSwipeDownSharp.tsx b/src/IconSwipeDownSharp.tsx index 7d39abca0..db04a52d7 100644 --- a/src/IconSwipeDownSharp.tsx +++ b/src/IconSwipeDownSharp.tsx @@ -8,4 +8,4 @@ const IconSwipeDownSharp: React.FC = ({ ...props }) => ( ) -export { IconSwipeDownSharp as default } +export default IconSwipeDownSharp diff --git a/src/IconSwipeDownSharpFilled.tsx b/src/IconSwipeDownSharpFilled.tsx index 9b5051be0..c2a0a3936 100644 --- a/src/IconSwipeDownSharpFilled.tsx +++ b/src/IconSwipeDownSharpFilled.tsx @@ -8,4 +8,4 @@ const IconSwipeDownSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconSwipeDownSharpFilled as default } +export default IconSwipeDownSharpFilled diff --git a/src/IconSwipeLeftAltOutlined.tsx b/src/IconSwipeLeftAltOutlined.tsx index 5562f64e6..8d81574e6 100644 --- a/src/IconSwipeLeftAltOutlined.tsx +++ b/src/IconSwipeLeftAltOutlined.tsx @@ -8,4 +8,4 @@ const IconSwipeLeftAltOutlined: React.FC = ({ ...props }) => ( ) -export { IconSwipeLeftAltOutlined as default } +export default IconSwipeLeftAltOutlined diff --git a/src/IconSwipeLeftAltOutlinedFilled.tsx b/src/IconSwipeLeftAltOutlinedFilled.tsx index 7659bcce2..850dc5c25 100644 --- a/src/IconSwipeLeftAltOutlinedFilled.tsx +++ b/src/IconSwipeLeftAltOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconSwipeLeftAltOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconSwipeLeftAltOutlinedFilled as default } +export default IconSwipeLeftAltOutlinedFilled diff --git a/src/IconSwipeLeftAltRounded.tsx b/src/IconSwipeLeftAltRounded.tsx index 460708958..5721d3f45 100644 --- a/src/IconSwipeLeftAltRounded.tsx +++ b/src/IconSwipeLeftAltRounded.tsx @@ -8,4 +8,4 @@ const IconSwipeLeftAltRounded: React.FC = ({ ...props }) => ( ) -export { IconSwipeLeftAltRounded as default } +export default IconSwipeLeftAltRounded diff --git a/src/IconSwipeLeftAltRoundedFilled.tsx b/src/IconSwipeLeftAltRoundedFilled.tsx index 3de4f468a..9f641604f 100644 --- a/src/IconSwipeLeftAltRoundedFilled.tsx +++ b/src/IconSwipeLeftAltRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconSwipeLeftAltRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconSwipeLeftAltRoundedFilled as default } +export default IconSwipeLeftAltRoundedFilled diff --git a/src/IconSwipeLeftAltSharp.tsx b/src/IconSwipeLeftAltSharp.tsx index 569fdcbef..920d51c1d 100644 --- a/src/IconSwipeLeftAltSharp.tsx +++ b/src/IconSwipeLeftAltSharp.tsx @@ -8,4 +8,4 @@ const IconSwipeLeftAltSharp: React.FC = ({ ...props }) => ( ) -export { IconSwipeLeftAltSharp as default } +export default IconSwipeLeftAltSharp diff --git a/src/IconSwipeLeftAltSharpFilled.tsx b/src/IconSwipeLeftAltSharpFilled.tsx index ef95f3748..5b8f4fd74 100644 --- a/src/IconSwipeLeftAltSharpFilled.tsx +++ b/src/IconSwipeLeftAltSharpFilled.tsx @@ -8,4 +8,4 @@ const IconSwipeLeftAltSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconSwipeLeftAltSharpFilled as default } +export default IconSwipeLeftAltSharpFilled diff --git a/src/IconSwipeLeftOutlined.tsx b/src/IconSwipeLeftOutlined.tsx index 4a3892a8d..f19d0a139 100644 --- a/src/IconSwipeLeftOutlined.tsx +++ b/src/IconSwipeLeftOutlined.tsx @@ -8,4 +8,4 @@ const IconSwipeLeftOutlined: React.FC = ({ ...props }) => ( ) -export { IconSwipeLeftOutlined as default } +export default IconSwipeLeftOutlined diff --git a/src/IconSwipeLeftOutlinedFilled.tsx b/src/IconSwipeLeftOutlinedFilled.tsx index d8b623730..a21bd6c1a 100644 --- a/src/IconSwipeLeftOutlinedFilled.tsx +++ b/src/IconSwipeLeftOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconSwipeLeftOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconSwipeLeftOutlinedFilled as default } +export default IconSwipeLeftOutlinedFilled diff --git a/src/IconSwipeLeftRounded.tsx b/src/IconSwipeLeftRounded.tsx index 5755b5f0c..6bd68aa07 100644 --- a/src/IconSwipeLeftRounded.tsx +++ b/src/IconSwipeLeftRounded.tsx @@ -8,4 +8,4 @@ const IconSwipeLeftRounded: React.FC = ({ ...props }) => ( ) -export { IconSwipeLeftRounded as default } +export default IconSwipeLeftRounded diff --git a/src/IconSwipeLeftRoundedFilled.tsx b/src/IconSwipeLeftRoundedFilled.tsx index 23e7d1a52..cf3bf7489 100644 --- a/src/IconSwipeLeftRoundedFilled.tsx +++ b/src/IconSwipeLeftRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconSwipeLeftRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconSwipeLeftRoundedFilled as default } +export default IconSwipeLeftRoundedFilled diff --git a/src/IconSwipeLeftSharp.tsx b/src/IconSwipeLeftSharp.tsx index 148a27f09..1a7fd63f9 100644 --- a/src/IconSwipeLeftSharp.tsx +++ b/src/IconSwipeLeftSharp.tsx @@ -8,4 +8,4 @@ const IconSwipeLeftSharp: React.FC = ({ ...props }) => ( ) -export { IconSwipeLeftSharp as default } +export default IconSwipeLeftSharp diff --git a/src/IconSwipeLeftSharpFilled.tsx b/src/IconSwipeLeftSharpFilled.tsx index a86775af8..f31a9cb3f 100644 --- a/src/IconSwipeLeftSharpFilled.tsx +++ b/src/IconSwipeLeftSharpFilled.tsx @@ -8,4 +8,4 @@ const IconSwipeLeftSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconSwipeLeftSharpFilled as default } +export default IconSwipeLeftSharpFilled diff --git a/src/IconSwipeOutlined.tsx b/src/IconSwipeOutlined.tsx index cb637858d..2ee1d98fe 100644 --- a/src/IconSwipeOutlined.tsx +++ b/src/IconSwipeOutlined.tsx @@ -8,4 +8,4 @@ const IconSwipeOutlined: React.FC = ({ ...props }) => ( ) -export { IconSwipeOutlined as default } +export default IconSwipeOutlined diff --git a/src/IconSwipeOutlinedFilled.tsx b/src/IconSwipeOutlinedFilled.tsx index 3eea8bccf..00fa832cc 100644 --- a/src/IconSwipeOutlinedFilled.tsx +++ b/src/IconSwipeOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconSwipeOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconSwipeOutlinedFilled as default } +export default IconSwipeOutlinedFilled diff --git a/src/IconSwipeRightAltOutlined.tsx b/src/IconSwipeRightAltOutlined.tsx index ab737a6d6..1bdacac27 100644 --- a/src/IconSwipeRightAltOutlined.tsx +++ b/src/IconSwipeRightAltOutlined.tsx @@ -8,4 +8,4 @@ const IconSwipeRightAltOutlined: React.FC = ({ ...props }) => ( ) -export { IconSwipeRightAltOutlined as default } +export default IconSwipeRightAltOutlined diff --git a/src/IconSwipeRightAltOutlinedFilled.tsx b/src/IconSwipeRightAltOutlinedFilled.tsx index d50e1d9f7..fe749e2f7 100644 --- a/src/IconSwipeRightAltOutlinedFilled.tsx +++ b/src/IconSwipeRightAltOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconSwipeRightAltOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconSwipeRightAltOutlinedFilled as default } +export default IconSwipeRightAltOutlinedFilled diff --git a/src/IconSwipeRightAltRounded.tsx b/src/IconSwipeRightAltRounded.tsx index 4ef413e06..02c78cf56 100644 --- a/src/IconSwipeRightAltRounded.tsx +++ b/src/IconSwipeRightAltRounded.tsx @@ -8,4 +8,4 @@ const IconSwipeRightAltRounded: React.FC = ({ ...props }) => ( ) -export { IconSwipeRightAltRounded as default } +export default IconSwipeRightAltRounded diff --git a/src/IconSwipeRightAltRoundedFilled.tsx b/src/IconSwipeRightAltRoundedFilled.tsx index dc7294352..80ee8fce7 100644 --- a/src/IconSwipeRightAltRoundedFilled.tsx +++ b/src/IconSwipeRightAltRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconSwipeRightAltRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconSwipeRightAltRoundedFilled as default } +export default IconSwipeRightAltRoundedFilled diff --git a/src/IconSwipeRightAltSharp.tsx b/src/IconSwipeRightAltSharp.tsx index d2ece226e..b45d8b975 100644 --- a/src/IconSwipeRightAltSharp.tsx +++ b/src/IconSwipeRightAltSharp.tsx @@ -8,4 +8,4 @@ const IconSwipeRightAltSharp: React.FC = ({ ...props }) => ( ) -export { IconSwipeRightAltSharp as default } +export default IconSwipeRightAltSharp diff --git a/src/IconSwipeRightAltSharpFilled.tsx b/src/IconSwipeRightAltSharpFilled.tsx index 8598e3cc0..4013cb326 100644 --- a/src/IconSwipeRightAltSharpFilled.tsx +++ b/src/IconSwipeRightAltSharpFilled.tsx @@ -8,4 +8,4 @@ const IconSwipeRightAltSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconSwipeRightAltSharpFilled as default } +export default IconSwipeRightAltSharpFilled diff --git a/src/IconSwipeRightOutlined.tsx b/src/IconSwipeRightOutlined.tsx index 420de5829..67f914645 100644 --- a/src/IconSwipeRightOutlined.tsx +++ b/src/IconSwipeRightOutlined.tsx @@ -8,4 +8,4 @@ const IconSwipeRightOutlined: React.FC = ({ ...props }) => ( ) -export { IconSwipeRightOutlined as default } +export default IconSwipeRightOutlined diff --git a/src/IconSwipeRightOutlinedFilled.tsx b/src/IconSwipeRightOutlinedFilled.tsx index dfe374702..42d034a7b 100644 --- a/src/IconSwipeRightOutlinedFilled.tsx +++ b/src/IconSwipeRightOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconSwipeRightOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconSwipeRightOutlinedFilled as default } +export default IconSwipeRightOutlinedFilled diff --git a/src/IconSwipeRightRounded.tsx b/src/IconSwipeRightRounded.tsx index 013e38fb3..80268838e 100644 --- a/src/IconSwipeRightRounded.tsx +++ b/src/IconSwipeRightRounded.tsx @@ -8,4 +8,4 @@ const IconSwipeRightRounded: React.FC = ({ ...props }) => ( ) -export { IconSwipeRightRounded as default } +export default IconSwipeRightRounded diff --git a/src/IconSwipeRightRoundedFilled.tsx b/src/IconSwipeRightRoundedFilled.tsx index 5d11af9b5..1b9566ebf 100644 --- a/src/IconSwipeRightRoundedFilled.tsx +++ b/src/IconSwipeRightRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconSwipeRightRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconSwipeRightRoundedFilled as default } +export default IconSwipeRightRoundedFilled diff --git a/src/IconSwipeRightSharp.tsx b/src/IconSwipeRightSharp.tsx index e02717d66..f1501fdf9 100644 --- a/src/IconSwipeRightSharp.tsx +++ b/src/IconSwipeRightSharp.tsx @@ -8,4 +8,4 @@ const IconSwipeRightSharp: React.FC = ({ ...props }) => ( ) -export { IconSwipeRightSharp as default } +export default IconSwipeRightSharp diff --git a/src/IconSwipeRightSharpFilled.tsx b/src/IconSwipeRightSharpFilled.tsx index 62beb1506..3cf7b2906 100644 --- a/src/IconSwipeRightSharpFilled.tsx +++ b/src/IconSwipeRightSharpFilled.tsx @@ -8,4 +8,4 @@ const IconSwipeRightSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconSwipeRightSharpFilled as default } +export default IconSwipeRightSharpFilled diff --git a/src/IconSwipeRounded.tsx b/src/IconSwipeRounded.tsx index ffde6c515..e9e1abebb 100644 --- a/src/IconSwipeRounded.tsx +++ b/src/IconSwipeRounded.tsx @@ -8,4 +8,4 @@ const IconSwipeRounded: React.FC = ({ ...props }) => ( ) -export { IconSwipeRounded as default } +export default IconSwipeRounded diff --git a/src/IconSwipeRoundedFilled.tsx b/src/IconSwipeRoundedFilled.tsx index 2ee705d86..8e8834232 100644 --- a/src/IconSwipeRoundedFilled.tsx +++ b/src/IconSwipeRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconSwipeRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconSwipeRoundedFilled as default } +export default IconSwipeRoundedFilled diff --git a/src/IconSwipeSharp.tsx b/src/IconSwipeSharp.tsx index c08adf39d..44501e8f1 100644 --- a/src/IconSwipeSharp.tsx +++ b/src/IconSwipeSharp.tsx @@ -8,4 +8,4 @@ const IconSwipeSharp: React.FC = ({ ...props }) => ( ) -export { IconSwipeSharp as default } +export default IconSwipeSharp diff --git a/src/IconSwipeSharpFilled.tsx b/src/IconSwipeSharpFilled.tsx index aea364c26..89555d008 100644 --- a/src/IconSwipeSharpFilled.tsx +++ b/src/IconSwipeSharpFilled.tsx @@ -8,4 +8,4 @@ const IconSwipeSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconSwipeSharpFilled as default } +export default IconSwipeSharpFilled diff --git a/src/IconSwipeUpAltOutlined.tsx b/src/IconSwipeUpAltOutlined.tsx index 2e2d4d39b..030432c11 100644 --- a/src/IconSwipeUpAltOutlined.tsx +++ b/src/IconSwipeUpAltOutlined.tsx @@ -8,4 +8,4 @@ const IconSwipeUpAltOutlined: React.FC = ({ ...props }) => ( ) -export { IconSwipeUpAltOutlined as default } +export default IconSwipeUpAltOutlined diff --git a/src/IconSwipeUpAltOutlinedFilled.tsx b/src/IconSwipeUpAltOutlinedFilled.tsx index 6c13cd2ce..8f29bb609 100644 --- a/src/IconSwipeUpAltOutlinedFilled.tsx +++ b/src/IconSwipeUpAltOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconSwipeUpAltOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconSwipeUpAltOutlinedFilled as default } +export default IconSwipeUpAltOutlinedFilled diff --git a/src/IconSwipeUpAltRounded.tsx b/src/IconSwipeUpAltRounded.tsx index 1449cc47a..853eb11ad 100644 --- a/src/IconSwipeUpAltRounded.tsx +++ b/src/IconSwipeUpAltRounded.tsx @@ -8,4 +8,4 @@ const IconSwipeUpAltRounded: React.FC = ({ ...props }) => ( ) -export { IconSwipeUpAltRounded as default } +export default IconSwipeUpAltRounded diff --git a/src/IconSwipeUpAltRoundedFilled.tsx b/src/IconSwipeUpAltRoundedFilled.tsx index 804ada283..824aa13d8 100644 --- a/src/IconSwipeUpAltRoundedFilled.tsx +++ b/src/IconSwipeUpAltRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconSwipeUpAltRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconSwipeUpAltRoundedFilled as default } +export default IconSwipeUpAltRoundedFilled diff --git a/src/IconSwipeUpAltSharp.tsx b/src/IconSwipeUpAltSharp.tsx index 5c6718ad0..ccc4ef17a 100644 --- a/src/IconSwipeUpAltSharp.tsx +++ b/src/IconSwipeUpAltSharp.tsx @@ -8,4 +8,4 @@ const IconSwipeUpAltSharp: React.FC = ({ ...props }) => ( ) -export { IconSwipeUpAltSharp as default } +export default IconSwipeUpAltSharp diff --git a/src/IconSwipeUpAltSharpFilled.tsx b/src/IconSwipeUpAltSharpFilled.tsx index 4a644c2d4..803d80e0d 100644 --- a/src/IconSwipeUpAltSharpFilled.tsx +++ b/src/IconSwipeUpAltSharpFilled.tsx @@ -8,4 +8,4 @@ const IconSwipeUpAltSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconSwipeUpAltSharpFilled as default } +export default IconSwipeUpAltSharpFilled diff --git a/src/IconSwipeUpOutlined.tsx b/src/IconSwipeUpOutlined.tsx index 80ceb6689..c9bbdcd64 100644 --- a/src/IconSwipeUpOutlined.tsx +++ b/src/IconSwipeUpOutlined.tsx @@ -8,4 +8,4 @@ const IconSwipeUpOutlined: React.FC = ({ ...props }) => ( ) -export { IconSwipeUpOutlined as default } +export default IconSwipeUpOutlined diff --git a/src/IconSwipeUpOutlinedFilled.tsx b/src/IconSwipeUpOutlinedFilled.tsx index df1ee9707..19fd826ee 100644 --- a/src/IconSwipeUpOutlinedFilled.tsx +++ b/src/IconSwipeUpOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconSwipeUpOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconSwipeUpOutlinedFilled as default } +export default IconSwipeUpOutlinedFilled diff --git a/src/IconSwipeUpRounded.tsx b/src/IconSwipeUpRounded.tsx index 0c15e9b77..65ac82653 100644 --- a/src/IconSwipeUpRounded.tsx +++ b/src/IconSwipeUpRounded.tsx @@ -8,4 +8,4 @@ const IconSwipeUpRounded: React.FC = ({ ...props }) => ( ) -export { IconSwipeUpRounded as default } +export default IconSwipeUpRounded diff --git a/src/IconSwipeUpRoundedFilled.tsx b/src/IconSwipeUpRoundedFilled.tsx index 82d81c49a..3d27119e0 100644 --- a/src/IconSwipeUpRoundedFilled.tsx +++ b/src/IconSwipeUpRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconSwipeUpRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconSwipeUpRoundedFilled as default } +export default IconSwipeUpRoundedFilled diff --git a/src/IconSwipeUpSharp.tsx b/src/IconSwipeUpSharp.tsx index af1c96e10..fc1d3260c 100644 --- a/src/IconSwipeUpSharp.tsx +++ b/src/IconSwipeUpSharp.tsx @@ -8,4 +8,4 @@ const IconSwipeUpSharp: React.FC = ({ ...props }) => ( ) -export { IconSwipeUpSharp as default } +export default IconSwipeUpSharp diff --git a/src/IconSwipeUpSharpFilled.tsx b/src/IconSwipeUpSharpFilled.tsx index ddf66ef20..e35b4746d 100644 --- a/src/IconSwipeUpSharpFilled.tsx +++ b/src/IconSwipeUpSharpFilled.tsx @@ -8,4 +8,4 @@ const IconSwipeUpSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconSwipeUpSharpFilled as default } +export default IconSwipeUpSharpFilled diff --git a/src/IconSwipeVerticalOutlined.tsx b/src/IconSwipeVerticalOutlined.tsx index b439dbda4..821e0bf55 100644 --- a/src/IconSwipeVerticalOutlined.tsx +++ b/src/IconSwipeVerticalOutlined.tsx @@ -8,4 +8,4 @@ const IconSwipeVerticalOutlined: React.FC = ({ ...props }) => ( ) -export { IconSwipeVerticalOutlined as default } +export default IconSwipeVerticalOutlined diff --git a/src/IconSwipeVerticalOutlinedFilled.tsx b/src/IconSwipeVerticalOutlinedFilled.tsx index 52f18aab0..c42114d2c 100644 --- a/src/IconSwipeVerticalOutlinedFilled.tsx +++ b/src/IconSwipeVerticalOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconSwipeVerticalOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconSwipeVerticalOutlinedFilled as default } +export default IconSwipeVerticalOutlinedFilled diff --git a/src/IconSwipeVerticalRounded.tsx b/src/IconSwipeVerticalRounded.tsx index 9c8cd938b..8d5e90440 100644 --- a/src/IconSwipeVerticalRounded.tsx +++ b/src/IconSwipeVerticalRounded.tsx @@ -8,4 +8,4 @@ const IconSwipeVerticalRounded: React.FC = ({ ...props }) => ( ) -export { IconSwipeVerticalRounded as default } +export default IconSwipeVerticalRounded diff --git a/src/IconSwipeVerticalRoundedFilled.tsx b/src/IconSwipeVerticalRoundedFilled.tsx index 6ebae6437..9f0edc155 100644 --- a/src/IconSwipeVerticalRoundedFilled.tsx +++ b/src/IconSwipeVerticalRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconSwipeVerticalRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconSwipeVerticalRoundedFilled as default } +export default IconSwipeVerticalRoundedFilled diff --git a/src/IconSwipeVerticalSharp.tsx b/src/IconSwipeVerticalSharp.tsx index 186f06376..486408615 100644 --- a/src/IconSwipeVerticalSharp.tsx +++ b/src/IconSwipeVerticalSharp.tsx @@ -8,4 +8,4 @@ const IconSwipeVerticalSharp: React.FC = ({ ...props }) => ( ) -export { IconSwipeVerticalSharp as default } +export default IconSwipeVerticalSharp diff --git a/src/IconSwipeVerticalSharpFilled.tsx b/src/IconSwipeVerticalSharpFilled.tsx index 05bfdb62b..37e8f4aab 100644 --- a/src/IconSwipeVerticalSharpFilled.tsx +++ b/src/IconSwipeVerticalSharpFilled.tsx @@ -8,4 +8,4 @@ const IconSwipeVerticalSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconSwipeVerticalSharpFilled as default } +export default IconSwipeVerticalSharpFilled diff --git a/src/IconSwitchAccess2Outlined.tsx b/src/IconSwitchAccess2Outlined.tsx index 8a5a41dd1..c71de7aba 100644 --- a/src/IconSwitchAccess2Outlined.tsx +++ b/src/IconSwitchAccess2Outlined.tsx @@ -8,4 +8,4 @@ const IconSwitchAccess2Outlined: React.FC = ({ ...props }) => ( ) -export { IconSwitchAccess2Outlined as default } +export default IconSwitchAccess2Outlined diff --git a/src/IconSwitchAccess2OutlinedFilled.tsx b/src/IconSwitchAccess2OutlinedFilled.tsx index 255430fbd..6d4f1fc98 100644 --- a/src/IconSwitchAccess2OutlinedFilled.tsx +++ b/src/IconSwitchAccess2OutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconSwitchAccess2OutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconSwitchAccess2OutlinedFilled as default } +export default IconSwitchAccess2OutlinedFilled diff --git a/src/IconSwitchAccess2Rounded.tsx b/src/IconSwitchAccess2Rounded.tsx index 0e28f3437..65863cd8a 100644 --- a/src/IconSwitchAccess2Rounded.tsx +++ b/src/IconSwitchAccess2Rounded.tsx @@ -8,4 +8,4 @@ const IconSwitchAccess2Rounded: React.FC = ({ ...props }) => ( ) -export { IconSwitchAccess2Rounded as default } +export default IconSwitchAccess2Rounded diff --git a/src/IconSwitchAccess2RoundedFilled.tsx b/src/IconSwitchAccess2RoundedFilled.tsx index 48abcb71c..39ba80da6 100644 --- a/src/IconSwitchAccess2RoundedFilled.tsx +++ b/src/IconSwitchAccess2RoundedFilled.tsx @@ -8,4 +8,4 @@ const IconSwitchAccess2RoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconSwitchAccess2RoundedFilled as default } +export default IconSwitchAccess2RoundedFilled diff --git a/src/IconSwitchAccess2Sharp.tsx b/src/IconSwitchAccess2Sharp.tsx index ba5a055c2..153e187aa 100644 --- a/src/IconSwitchAccess2Sharp.tsx +++ b/src/IconSwitchAccess2Sharp.tsx @@ -8,4 +8,4 @@ const IconSwitchAccess2Sharp: React.FC = ({ ...props }) => ( ) -export { IconSwitchAccess2Sharp as default } +export default IconSwitchAccess2Sharp diff --git a/src/IconSwitchAccess2SharpFilled.tsx b/src/IconSwitchAccess2SharpFilled.tsx index 8a4caf500..98bc01357 100644 --- a/src/IconSwitchAccess2SharpFilled.tsx +++ b/src/IconSwitchAccess2SharpFilled.tsx @@ -8,4 +8,4 @@ const IconSwitchAccess2SharpFilled: React.FC = ({ ...props }) => ( ) -export { IconSwitchAccess2SharpFilled as default } +export default IconSwitchAccess2SharpFilled diff --git a/src/IconSwitchAccessOutlined.tsx b/src/IconSwitchAccessOutlined.tsx index c28cad0e6..ca932c4e8 100644 --- a/src/IconSwitchAccessOutlined.tsx +++ b/src/IconSwitchAccessOutlined.tsx @@ -8,4 +8,4 @@ const IconSwitchAccessOutlined: React.FC = ({ ...props }) => ( ) -export { IconSwitchAccessOutlined as default } +export default IconSwitchAccessOutlined diff --git a/src/IconSwitchAccessOutlinedFilled.tsx b/src/IconSwitchAccessOutlinedFilled.tsx index 58bbd0739..b4cdd1f85 100644 --- a/src/IconSwitchAccessOutlinedFilled.tsx +++ b/src/IconSwitchAccessOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconSwitchAccessOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconSwitchAccessOutlinedFilled as default } +export default IconSwitchAccessOutlinedFilled diff --git a/src/IconSwitchAccessRounded.tsx b/src/IconSwitchAccessRounded.tsx index e0ceb7d24..fde9e3cbe 100644 --- a/src/IconSwitchAccessRounded.tsx +++ b/src/IconSwitchAccessRounded.tsx @@ -8,4 +8,4 @@ const IconSwitchAccessRounded: React.FC = ({ ...props }) => ( ) -export { IconSwitchAccessRounded as default } +export default IconSwitchAccessRounded diff --git a/src/IconSwitchAccessRoundedFilled.tsx b/src/IconSwitchAccessRoundedFilled.tsx index e2a45544a..42399f54a 100644 --- a/src/IconSwitchAccessRoundedFilled.tsx +++ b/src/IconSwitchAccessRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconSwitchAccessRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconSwitchAccessRoundedFilled as default } +export default IconSwitchAccessRoundedFilled diff --git a/src/IconSwitchAccessSharp.tsx b/src/IconSwitchAccessSharp.tsx index e050975b4..a1fd40942 100644 --- a/src/IconSwitchAccessSharp.tsx +++ b/src/IconSwitchAccessSharp.tsx @@ -8,4 +8,4 @@ const IconSwitchAccessSharp: React.FC = ({ ...props }) => ( ) -export { IconSwitchAccessSharp as default } +export default IconSwitchAccessSharp diff --git a/src/IconSwitchAccessSharpFilled.tsx b/src/IconSwitchAccessSharpFilled.tsx index 295bd15ee..5532d56f7 100644 --- a/src/IconSwitchAccessSharpFilled.tsx +++ b/src/IconSwitchAccessSharpFilled.tsx @@ -8,4 +8,4 @@ const IconSwitchAccessSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconSwitchAccessSharpFilled as default } +export default IconSwitchAccessSharpFilled diff --git a/src/IconSwitchAccessShortcutAddOutlined.tsx b/src/IconSwitchAccessShortcutAddOutlined.tsx index a01da4ba7..902fd58ae 100644 --- a/src/IconSwitchAccessShortcutAddOutlined.tsx +++ b/src/IconSwitchAccessShortcutAddOutlined.tsx @@ -10,4 +10,4 @@ const IconSwitchAccessShortcutAddOutlined: React.FC = ({ ) -export { IconSwitchAccessShortcutAddOutlined as default } +export default IconSwitchAccessShortcutAddOutlined diff --git a/src/IconSwitchAccessShortcutAddOutlinedFilled.tsx b/src/IconSwitchAccessShortcutAddOutlinedFilled.tsx index 1cccdda05..e8f4aac99 100644 --- a/src/IconSwitchAccessShortcutAddOutlinedFilled.tsx +++ b/src/IconSwitchAccessShortcutAddOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconSwitchAccessShortcutAddOutlinedFilled: React.FC = ({ ) -export { IconSwitchAccessShortcutAddOutlinedFilled as default } +export default IconSwitchAccessShortcutAddOutlinedFilled diff --git a/src/IconSwitchAccessShortcutAddRounded.tsx b/src/IconSwitchAccessShortcutAddRounded.tsx index e0ff25e94..e69cae5e8 100644 --- a/src/IconSwitchAccessShortcutAddRounded.tsx +++ b/src/IconSwitchAccessShortcutAddRounded.tsx @@ -10,4 +10,4 @@ const IconSwitchAccessShortcutAddRounded: React.FC = ({ ) -export { IconSwitchAccessShortcutAddRounded as default } +export default IconSwitchAccessShortcutAddRounded diff --git a/src/IconSwitchAccessShortcutAddRoundedFilled.tsx b/src/IconSwitchAccessShortcutAddRoundedFilled.tsx index d6c73ee03..7d032965d 100644 --- a/src/IconSwitchAccessShortcutAddRoundedFilled.tsx +++ b/src/IconSwitchAccessShortcutAddRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconSwitchAccessShortcutAddRoundedFilled: React.FC = ({ ) -export { IconSwitchAccessShortcutAddRoundedFilled as default } +export default IconSwitchAccessShortcutAddRoundedFilled diff --git a/src/IconSwitchAccessShortcutAddSharp.tsx b/src/IconSwitchAccessShortcutAddSharp.tsx index c0240fbc9..2386724e5 100644 --- a/src/IconSwitchAccessShortcutAddSharp.tsx +++ b/src/IconSwitchAccessShortcutAddSharp.tsx @@ -10,4 +10,4 @@ const IconSwitchAccessShortcutAddSharp: React.FC = ({ ) -export { IconSwitchAccessShortcutAddSharp as default } +export default IconSwitchAccessShortcutAddSharp diff --git a/src/IconSwitchAccessShortcutAddSharpFilled.tsx b/src/IconSwitchAccessShortcutAddSharpFilled.tsx index df09a029a..d37eb015e 100644 --- a/src/IconSwitchAccessShortcutAddSharpFilled.tsx +++ b/src/IconSwitchAccessShortcutAddSharpFilled.tsx @@ -10,4 +10,4 @@ const IconSwitchAccessShortcutAddSharpFilled: React.FC = ({ ) -export { IconSwitchAccessShortcutAddSharpFilled as default } +export default IconSwitchAccessShortcutAddSharpFilled diff --git a/src/IconSwitchAccessShortcutOutlined.tsx b/src/IconSwitchAccessShortcutOutlined.tsx index b426cc792..0c3520e15 100644 --- a/src/IconSwitchAccessShortcutOutlined.tsx +++ b/src/IconSwitchAccessShortcutOutlined.tsx @@ -10,4 +10,4 @@ const IconSwitchAccessShortcutOutlined: React.FC = ({ ) -export { IconSwitchAccessShortcutOutlined as default } +export default IconSwitchAccessShortcutOutlined diff --git a/src/IconSwitchAccessShortcutOutlinedFilled.tsx b/src/IconSwitchAccessShortcutOutlinedFilled.tsx index ac764eab8..ccb6f5a61 100644 --- a/src/IconSwitchAccessShortcutOutlinedFilled.tsx +++ b/src/IconSwitchAccessShortcutOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconSwitchAccessShortcutOutlinedFilled: React.FC = ({ ) -export { IconSwitchAccessShortcutOutlinedFilled as default } +export default IconSwitchAccessShortcutOutlinedFilled diff --git a/src/IconSwitchAccessShortcutRounded.tsx b/src/IconSwitchAccessShortcutRounded.tsx index 2212cca38..18957fd48 100644 --- a/src/IconSwitchAccessShortcutRounded.tsx +++ b/src/IconSwitchAccessShortcutRounded.tsx @@ -8,4 +8,4 @@ const IconSwitchAccessShortcutRounded: React.FC = ({ ...props }) => ( ) -export { IconSwitchAccessShortcutRounded as default } +export default IconSwitchAccessShortcutRounded diff --git a/src/IconSwitchAccessShortcutRoundedFilled.tsx b/src/IconSwitchAccessShortcutRoundedFilled.tsx index 396e069da..44094b335 100644 --- a/src/IconSwitchAccessShortcutRoundedFilled.tsx +++ b/src/IconSwitchAccessShortcutRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconSwitchAccessShortcutRoundedFilled: React.FC = ({ ) -export { IconSwitchAccessShortcutRoundedFilled as default } +export default IconSwitchAccessShortcutRoundedFilled diff --git a/src/IconSwitchAccessShortcutSharp.tsx b/src/IconSwitchAccessShortcutSharp.tsx index 25be3726f..51758bbbf 100644 --- a/src/IconSwitchAccessShortcutSharp.tsx +++ b/src/IconSwitchAccessShortcutSharp.tsx @@ -8,4 +8,4 @@ const IconSwitchAccessShortcutSharp: React.FC = ({ ...props }) => ( ) -export { IconSwitchAccessShortcutSharp as default } +export default IconSwitchAccessShortcutSharp diff --git a/src/IconSwitchAccessShortcutSharpFilled.tsx b/src/IconSwitchAccessShortcutSharpFilled.tsx index a81ac3a5d..4f55d44d5 100644 --- a/src/IconSwitchAccessShortcutSharpFilled.tsx +++ b/src/IconSwitchAccessShortcutSharpFilled.tsx @@ -10,4 +10,4 @@ const IconSwitchAccessShortcutSharpFilled: React.FC = ({ ) -export { IconSwitchAccessShortcutSharpFilled as default } +export default IconSwitchAccessShortcutSharpFilled diff --git a/src/IconSwitchAccountOutlined.tsx b/src/IconSwitchAccountOutlined.tsx index cdb402426..8dd26f0f9 100644 --- a/src/IconSwitchAccountOutlined.tsx +++ b/src/IconSwitchAccountOutlined.tsx @@ -8,4 +8,4 @@ const IconSwitchAccountOutlined: React.FC = ({ ...props }) => ( ) -export { IconSwitchAccountOutlined as default } +export default IconSwitchAccountOutlined diff --git a/src/IconSwitchAccountOutlinedFilled.tsx b/src/IconSwitchAccountOutlinedFilled.tsx index 6360a2e4f..9f25495c8 100644 --- a/src/IconSwitchAccountOutlinedFilled.tsx +++ b/src/IconSwitchAccountOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconSwitchAccountOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconSwitchAccountOutlinedFilled as default } +export default IconSwitchAccountOutlinedFilled diff --git a/src/IconSwitchAccountRounded.tsx b/src/IconSwitchAccountRounded.tsx index dee663547..e284c56d6 100644 --- a/src/IconSwitchAccountRounded.tsx +++ b/src/IconSwitchAccountRounded.tsx @@ -8,4 +8,4 @@ const IconSwitchAccountRounded: React.FC = ({ ...props }) => ( ) -export { IconSwitchAccountRounded as default } +export default IconSwitchAccountRounded diff --git a/src/IconSwitchAccountRoundedFilled.tsx b/src/IconSwitchAccountRoundedFilled.tsx index 57ee62efc..6644fae39 100644 --- a/src/IconSwitchAccountRoundedFilled.tsx +++ b/src/IconSwitchAccountRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconSwitchAccountRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconSwitchAccountRoundedFilled as default } +export default IconSwitchAccountRoundedFilled diff --git a/src/IconSwitchAccountSharp.tsx b/src/IconSwitchAccountSharp.tsx index e82448fe5..4fbd88ec8 100644 --- a/src/IconSwitchAccountSharp.tsx +++ b/src/IconSwitchAccountSharp.tsx @@ -8,4 +8,4 @@ const IconSwitchAccountSharp: React.FC = ({ ...props }) => ( ) -export { IconSwitchAccountSharp as default } +export default IconSwitchAccountSharp diff --git a/src/IconSwitchAccountSharpFilled.tsx b/src/IconSwitchAccountSharpFilled.tsx index b1a3016d0..dc178f479 100644 --- a/src/IconSwitchAccountSharpFilled.tsx +++ b/src/IconSwitchAccountSharpFilled.tsx @@ -8,4 +8,4 @@ const IconSwitchAccountSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconSwitchAccountSharpFilled as default } +export default IconSwitchAccountSharpFilled diff --git a/src/IconSwitchCameraOutlined.tsx b/src/IconSwitchCameraOutlined.tsx index 05c48045f..78d8f2a81 100644 --- a/src/IconSwitchCameraOutlined.tsx +++ b/src/IconSwitchCameraOutlined.tsx @@ -8,4 +8,4 @@ const IconSwitchCameraOutlined: React.FC = ({ ...props }) => ( ) -export { IconSwitchCameraOutlined as default } +export default IconSwitchCameraOutlined diff --git a/src/IconSwitchCameraOutlinedFilled.tsx b/src/IconSwitchCameraOutlinedFilled.tsx index fd24a2e7d..c0a3caefb 100644 --- a/src/IconSwitchCameraOutlinedFilled.tsx +++ b/src/IconSwitchCameraOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconSwitchCameraOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconSwitchCameraOutlinedFilled as default } +export default IconSwitchCameraOutlinedFilled diff --git a/src/IconSwitchCameraRounded.tsx b/src/IconSwitchCameraRounded.tsx index 7b888d51c..f07ef69a0 100644 --- a/src/IconSwitchCameraRounded.tsx +++ b/src/IconSwitchCameraRounded.tsx @@ -8,4 +8,4 @@ const IconSwitchCameraRounded: React.FC = ({ ...props }) => ( ) -export { IconSwitchCameraRounded as default } +export default IconSwitchCameraRounded diff --git a/src/IconSwitchCameraRoundedFilled.tsx b/src/IconSwitchCameraRoundedFilled.tsx index e59fe4def..53ca0646c 100644 --- a/src/IconSwitchCameraRoundedFilled.tsx +++ b/src/IconSwitchCameraRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconSwitchCameraRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconSwitchCameraRoundedFilled as default } +export default IconSwitchCameraRoundedFilled diff --git a/src/IconSwitchCameraSharp.tsx b/src/IconSwitchCameraSharp.tsx index a7c785c34..0cf7485d9 100644 --- a/src/IconSwitchCameraSharp.tsx +++ b/src/IconSwitchCameraSharp.tsx @@ -8,4 +8,4 @@ const IconSwitchCameraSharp: React.FC = ({ ...props }) => ( ) -export { IconSwitchCameraSharp as default } +export default IconSwitchCameraSharp diff --git a/src/IconSwitchCameraSharpFilled.tsx b/src/IconSwitchCameraSharpFilled.tsx index abe1c561e..10f9c037b 100644 --- a/src/IconSwitchCameraSharpFilled.tsx +++ b/src/IconSwitchCameraSharpFilled.tsx @@ -8,4 +8,4 @@ const IconSwitchCameraSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconSwitchCameraSharpFilled as default } +export default IconSwitchCameraSharpFilled diff --git a/src/IconSwitchLeftOutlined.tsx b/src/IconSwitchLeftOutlined.tsx index f91e8db31..19b96500f 100644 --- a/src/IconSwitchLeftOutlined.tsx +++ b/src/IconSwitchLeftOutlined.tsx @@ -8,4 +8,4 @@ const IconSwitchLeftOutlined: React.FC = ({ ...props }) => ( ) -export { IconSwitchLeftOutlined as default } +export default IconSwitchLeftOutlined diff --git a/src/IconSwitchLeftOutlinedFilled.tsx b/src/IconSwitchLeftOutlinedFilled.tsx index ba32e7675..266864386 100644 --- a/src/IconSwitchLeftOutlinedFilled.tsx +++ b/src/IconSwitchLeftOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconSwitchLeftOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconSwitchLeftOutlinedFilled as default } +export default IconSwitchLeftOutlinedFilled diff --git a/src/IconSwitchLeftRounded.tsx b/src/IconSwitchLeftRounded.tsx index ea37b0931..fc330b459 100644 --- a/src/IconSwitchLeftRounded.tsx +++ b/src/IconSwitchLeftRounded.tsx @@ -8,4 +8,4 @@ const IconSwitchLeftRounded: React.FC = ({ ...props }) => ( ) -export { IconSwitchLeftRounded as default } +export default IconSwitchLeftRounded diff --git a/src/IconSwitchLeftRoundedFilled.tsx b/src/IconSwitchLeftRoundedFilled.tsx index 69e623c60..5d7112dc7 100644 --- a/src/IconSwitchLeftRoundedFilled.tsx +++ b/src/IconSwitchLeftRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconSwitchLeftRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconSwitchLeftRoundedFilled as default } +export default IconSwitchLeftRoundedFilled diff --git a/src/IconSwitchLeftSharp.tsx b/src/IconSwitchLeftSharp.tsx index 2e026e440..831842086 100644 --- a/src/IconSwitchLeftSharp.tsx +++ b/src/IconSwitchLeftSharp.tsx @@ -8,4 +8,4 @@ const IconSwitchLeftSharp: React.FC = ({ ...props }) => ( ) -export { IconSwitchLeftSharp as default } +export default IconSwitchLeftSharp diff --git a/src/IconSwitchLeftSharpFilled.tsx b/src/IconSwitchLeftSharpFilled.tsx index 9f1a5d314..fb022cbcc 100644 --- a/src/IconSwitchLeftSharpFilled.tsx +++ b/src/IconSwitchLeftSharpFilled.tsx @@ -8,4 +8,4 @@ const IconSwitchLeftSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconSwitchLeftSharpFilled as default } +export default IconSwitchLeftSharpFilled diff --git a/src/IconSwitchOutlined.tsx b/src/IconSwitchOutlined.tsx index ba6547e17..38e300291 100644 --- a/src/IconSwitchOutlined.tsx +++ b/src/IconSwitchOutlined.tsx @@ -8,4 +8,4 @@ const IconSwitchOutlined: React.FC = ({ ...props }) => ( ) -export { IconSwitchOutlined as default } +export default IconSwitchOutlined diff --git a/src/IconSwitchOutlinedFilled.tsx b/src/IconSwitchOutlinedFilled.tsx index 7c7b98c5d..2c33f5b2c 100644 --- a/src/IconSwitchOutlinedFilled.tsx +++ b/src/IconSwitchOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconSwitchOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconSwitchOutlinedFilled as default } +export default IconSwitchOutlinedFilled diff --git a/src/IconSwitchRightOutlined.tsx b/src/IconSwitchRightOutlined.tsx index a71a142aa..ccfe6aaa1 100644 --- a/src/IconSwitchRightOutlined.tsx +++ b/src/IconSwitchRightOutlined.tsx @@ -8,4 +8,4 @@ const IconSwitchRightOutlined: React.FC = ({ ...props }) => ( ) -export { IconSwitchRightOutlined as default } +export default IconSwitchRightOutlined diff --git a/src/IconSwitchRightOutlinedFilled.tsx b/src/IconSwitchRightOutlinedFilled.tsx index 9aa3a4ea8..c1bbea46e 100644 --- a/src/IconSwitchRightOutlinedFilled.tsx +++ b/src/IconSwitchRightOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconSwitchRightOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconSwitchRightOutlinedFilled as default } +export default IconSwitchRightOutlinedFilled diff --git a/src/IconSwitchRightRounded.tsx b/src/IconSwitchRightRounded.tsx index 8e5d48e68..c1af20f0f 100644 --- a/src/IconSwitchRightRounded.tsx +++ b/src/IconSwitchRightRounded.tsx @@ -8,4 +8,4 @@ const IconSwitchRightRounded: React.FC = ({ ...props }) => ( ) -export { IconSwitchRightRounded as default } +export default IconSwitchRightRounded diff --git a/src/IconSwitchRightRoundedFilled.tsx b/src/IconSwitchRightRoundedFilled.tsx index dfa9ccd07..e34414a51 100644 --- a/src/IconSwitchRightRoundedFilled.tsx +++ b/src/IconSwitchRightRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconSwitchRightRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconSwitchRightRoundedFilled as default } +export default IconSwitchRightRoundedFilled diff --git a/src/IconSwitchRightSharp.tsx b/src/IconSwitchRightSharp.tsx index 27a9bbc53..e9302f18b 100644 --- a/src/IconSwitchRightSharp.tsx +++ b/src/IconSwitchRightSharp.tsx @@ -8,4 +8,4 @@ const IconSwitchRightSharp: React.FC = ({ ...props }) => ( ) -export { IconSwitchRightSharp as default } +export default IconSwitchRightSharp diff --git a/src/IconSwitchRightSharpFilled.tsx b/src/IconSwitchRightSharpFilled.tsx index 7baa73b83..fe5d6d76c 100644 --- a/src/IconSwitchRightSharpFilled.tsx +++ b/src/IconSwitchRightSharpFilled.tsx @@ -8,4 +8,4 @@ const IconSwitchRightSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconSwitchRightSharpFilled as default } +export default IconSwitchRightSharpFilled diff --git a/src/IconSwitchRounded.tsx b/src/IconSwitchRounded.tsx index 10f012304..3937ac62d 100644 --- a/src/IconSwitchRounded.tsx +++ b/src/IconSwitchRounded.tsx @@ -8,4 +8,4 @@ const IconSwitchRounded: React.FC = ({ ...props }) => ( ) -export { IconSwitchRounded as default } +export default IconSwitchRounded diff --git a/src/IconSwitchRoundedFilled.tsx b/src/IconSwitchRoundedFilled.tsx index 44f740437..6e9d9d9d1 100644 --- a/src/IconSwitchRoundedFilled.tsx +++ b/src/IconSwitchRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconSwitchRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconSwitchRoundedFilled as default } +export default IconSwitchRoundedFilled diff --git a/src/IconSwitchSharp.tsx b/src/IconSwitchSharp.tsx index 286c07d12..bdb5ab80d 100644 --- a/src/IconSwitchSharp.tsx +++ b/src/IconSwitchSharp.tsx @@ -8,4 +8,4 @@ const IconSwitchSharp: React.FC = ({ ...props }) => ( ) -export { IconSwitchSharp as default } +export default IconSwitchSharp diff --git a/src/IconSwitchSharpFilled.tsx b/src/IconSwitchSharpFilled.tsx index ad7f1e358..0e3c4dbe9 100644 --- a/src/IconSwitchSharpFilled.tsx +++ b/src/IconSwitchSharpFilled.tsx @@ -8,4 +8,4 @@ const IconSwitchSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconSwitchSharpFilled as default } +export default IconSwitchSharpFilled diff --git a/src/IconSwitchVideoOutlined.tsx b/src/IconSwitchVideoOutlined.tsx index 71e9d5fd4..eccbf523c 100644 --- a/src/IconSwitchVideoOutlined.tsx +++ b/src/IconSwitchVideoOutlined.tsx @@ -8,4 +8,4 @@ const IconSwitchVideoOutlined: React.FC = ({ ...props }) => ( ) -export { IconSwitchVideoOutlined as default } +export default IconSwitchVideoOutlined diff --git a/src/IconSwitchVideoOutlinedFilled.tsx b/src/IconSwitchVideoOutlinedFilled.tsx index 6d3360fb0..b6c0daf48 100644 --- a/src/IconSwitchVideoOutlinedFilled.tsx +++ b/src/IconSwitchVideoOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconSwitchVideoOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconSwitchVideoOutlinedFilled as default } +export default IconSwitchVideoOutlinedFilled diff --git a/src/IconSwitchVideoRounded.tsx b/src/IconSwitchVideoRounded.tsx index 38073b2a3..a47fa1559 100644 --- a/src/IconSwitchVideoRounded.tsx +++ b/src/IconSwitchVideoRounded.tsx @@ -8,4 +8,4 @@ const IconSwitchVideoRounded: React.FC = ({ ...props }) => ( ) -export { IconSwitchVideoRounded as default } +export default IconSwitchVideoRounded diff --git a/src/IconSwitchVideoRoundedFilled.tsx b/src/IconSwitchVideoRoundedFilled.tsx index ec65d2579..cdf8a1586 100644 --- a/src/IconSwitchVideoRoundedFilled.tsx +++ b/src/IconSwitchVideoRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconSwitchVideoRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconSwitchVideoRoundedFilled as default } +export default IconSwitchVideoRoundedFilled diff --git a/src/IconSwitchVideoSharp.tsx b/src/IconSwitchVideoSharp.tsx index e60f2c26e..6914a1c72 100644 --- a/src/IconSwitchVideoSharp.tsx +++ b/src/IconSwitchVideoSharp.tsx @@ -8,4 +8,4 @@ const IconSwitchVideoSharp: React.FC = ({ ...props }) => ( ) -export { IconSwitchVideoSharp as default } +export default IconSwitchVideoSharp diff --git a/src/IconSwitchVideoSharpFilled.tsx b/src/IconSwitchVideoSharpFilled.tsx index ba14b6fac..cfee346e5 100644 --- a/src/IconSwitchVideoSharpFilled.tsx +++ b/src/IconSwitchVideoSharpFilled.tsx @@ -8,4 +8,4 @@ const IconSwitchVideoSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconSwitchVideoSharpFilled as default } +export default IconSwitchVideoSharpFilled diff --git a/src/IconSwitchesOutlined.tsx b/src/IconSwitchesOutlined.tsx index d50b2cded..494571761 100644 --- a/src/IconSwitchesOutlined.tsx +++ b/src/IconSwitchesOutlined.tsx @@ -8,4 +8,4 @@ const IconSwitchesOutlined: React.FC = ({ ...props }) => ( ) -export { IconSwitchesOutlined as default } +export default IconSwitchesOutlined diff --git a/src/IconSwitchesOutlinedFilled.tsx b/src/IconSwitchesOutlinedFilled.tsx index d8f6a55a2..4d071248c 100644 --- a/src/IconSwitchesOutlinedFilled.tsx +++ b/src/IconSwitchesOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconSwitchesOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconSwitchesOutlinedFilled as default } +export default IconSwitchesOutlinedFilled diff --git a/src/IconSwitchesRounded.tsx b/src/IconSwitchesRounded.tsx index a153f867f..b9b89fecd 100644 --- a/src/IconSwitchesRounded.tsx +++ b/src/IconSwitchesRounded.tsx @@ -8,4 +8,4 @@ const IconSwitchesRounded: React.FC = ({ ...props }) => ( ) -export { IconSwitchesRounded as default } +export default IconSwitchesRounded diff --git a/src/IconSwitchesRoundedFilled.tsx b/src/IconSwitchesRoundedFilled.tsx index ccff9041e..9d9d78afc 100644 --- a/src/IconSwitchesRoundedFilled.tsx +++ b/src/IconSwitchesRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconSwitchesRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconSwitchesRoundedFilled as default } +export default IconSwitchesRoundedFilled diff --git a/src/IconSwitchesSharp.tsx b/src/IconSwitchesSharp.tsx index 041012dbc..d48b22b86 100644 --- a/src/IconSwitchesSharp.tsx +++ b/src/IconSwitchesSharp.tsx @@ -8,4 +8,4 @@ const IconSwitchesSharp: React.FC = ({ ...props }) => ( ) -export { IconSwitchesSharp as default } +export default IconSwitchesSharp diff --git a/src/IconSwitchesSharpFilled.tsx b/src/IconSwitchesSharpFilled.tsx index 2389a06e8..b6d69787b 100644 --- a/src/IconSwitchesSharpFilled.tsx +++ b/src/IconSwitchesSharpFilled.tsx @@ -8,4 +8,4 @@ const IconSwitchesSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconSwitchesSharpFilled as default } +export default IconSwitchesSharpFilled diff --git a/src/IconSwordRoseOutlined.tsx b/src/IconSwordRoseOutlined.tsx index ea708e974..a86483a09 100644 --- a/src/IconSwordRoseOutlined.tsx +++ b/src/IconSwordRoseOutlined.tsx @@ -8,4 +8,4 @@ const IconSwordRoseOutlined: React.FC = ({ ...props }) => ( ) -export { IconSwordRoseOutlined as default } +export default IconSwordRoseOutlined diff --git a/src/IconSwordRoseOutlinedFilled.tsx b/src/IconSwordRoseOutlinedFilled.tsx index 4c5dfc2e4..0a6d09f95 100644 --- a/src/IconSwordRoseOutlinedFilled.tsx +++ b/src/IconSwordRoseOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconSwordRoseOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconSwordRoseOutlinedFilled as default } +export default IconSwordRoseOutlinedFilled diff --git a/src/IconSwordRoseRounded.tsx b/src/IconSwordRoseRounded.tsx index 74589e9bc..539343338 100644 --- a/src/IconSwordRoseRounded.tsx +++ b/src/IconSwordRoseRounded.tsx @@ -8,4 +8,4 @@ const IconSwordRoseRounded: React.FC = ({ ...props }) => ( ) -export { IconSwordRoseRounded as default } +export default IconSwordRoseRounded diff --git a/src/IconSwordRoseRoundedFilled.tsx b/src/IconSwordRoseRoundedFilled.tsx index 8271404b5..6e168ac6a 100644 --- a/src/IconSwordRoseRoundedFilled.tsx +++ b/src/IconSwordRoseRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconSwordRoseRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconSwordRoseRoundedFilled as default } +export default IconSwordRoseRoundedFilled diff --git a/src/IconSwordRoseSharp.tsx b/src/IconSwordRoseSharp.tsx index 9528fe346..42801171b 100644 --- a/src/IconSwordRoseSharp.tsx +++ b/src/IconSwordRoseSharp.tsx @@ -8,4 +8,4 @@ const IconSwordRoseSharp: React.FC = ({ ...props }) => ( ) -export { IconSwordRoseSharp as default } +export default IconSwordRoseSharp diff --git a/src/IconSwordRoseSharpFilled.tsx b/src/IconSwordRoseSharpFilled.tsx index fa8d27fa1..ebc6932c3 100644 --- a/src/IconSwordRoseSharpFilled.tsx +++ b/src/IconSwordRoseSharpFilled.tsx @@ -8,4 +8,4 @@ const IconSwordRoseSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconSwordRoseSharpFilled as default } +export default IconSwordRoseSharpFilled diff --git a/src/IconSwordsOutlined.tsx b/src/IconSwordsOutlined.tsx index 86110a71f..34d0f1b91 100644 --- a/src/IconSwordsOutlined.tsx +++ b/src/IconSwordsOutlined.tsx @@ -8,4 +8,4 @@ const IconSwordsOutlined: React.FC = ({ ...props }) => ( ) -export { IconSwordsOutlined as default } +export default IconSwordsOutlined diff --git a/src/IconSwordsOutlinedFilled.tsx b/src/IconSwordsOutlinedFilled.tsx index 20b93aee6..48fbe6599 100644 --- a/src/IconSwordsOutlinedFilled.tsx +++ b/src/IconSwordsOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconSwordsOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconSwordsOutlinedFilled as default } +export default IconSwordsOutlinedFilled diff --git a/src/IconSwordsRounded.tsx b/src/IconSwordsRounded.tsx index 301c8db4f..b0c6374d0 100644 --- a/src/IconSwordsRounded.tsx +++ b/src/IconSwordsRounded.tsx @@ -8,4 +8,4 @@ const IconSwordsRounded: React.FC = ({ ...props }) => ( ) -export { IconSwordsRounded as default } +export default IconSwordsRounded diff --git a/src/IconSwordsRoundedFilled.tsx b/src/IconSwordsRoundedFilled.tsx index bed286617..32041472f 100644 --- a/src/IconSwordsRoundedFilled.tsx +++ b/src/IconSwordsRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconSwordsRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconSwordsRoundedFilled as default } +export default IconSwordsRoundedFilled diff --git a/src/IconSwordsSharp.tsx b/src/IconSwordsSharp.tsx index e4bace597..2fa4f7c5a 100644 --- a/src/IconSwordsSharp.tsx +++ b/src/IconSwordsSharp.tsx @@ -8,4 +8,4 @@ const IconSwordsSharp: React.FC = ({ ...props }) => ( ) -export { IconSwordsSharp as default } +export default IconSwordsSharp diff --git a/src/IconSwordsSharpFilled.tsx b/src/IconSwordsSharpFilled.tsx index c821ab13d..7b6575d79 100644 --- a/src/IconSwordsSharpFilled.tsx +++ b/src/IconSwordsSharpFilled.tsx @@ -8,4 +8,4 @@ const IconSwordsSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconSwordsSharpFilled as default } +export default IconSwordsSharpFilled diff --git a/src/IconSymptomsOutlined.tsx b/src/IconSymptomsOutlined.tsx index 6e3620c8b..f541806cb 100644 --- a/src/IconSymptomsOutlined.tsx +++ b/src/IconSymptomsOutlined.tsx @@ -8,4 +8,4 @@ const IconSymptomsOutlined: React.FC = ({ ...props }) => ( ) -export { IconSymptomsOutlined as default } +export default IconSymptomsOutlined diff --git a/src/IconSymptomsOutlinedFilled.tsx b/src/IconSymptomsOutlinedFilled.tsx index 32d9a884a..86a5ab309 100644 --- a/src/IconSymptomsOutlinedFilled.tsx +++ b/src/IconSymptomsOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconSymptomsOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconSymptomsOutlinedFilled as default } +export default IconSymptomsOutlinedFilled diff --git a/src/IconSymptomsRounded.tsx b/src/IconSymptomsRounded.tsx index db59fbd94..1bcd2cf98 100644 --- a/src/IconSymptomsRounded.tsx +++ b/src/IconSymptomsRounded.tsx @@ -8,4 +8,4 @@ const IconSymptomsRounded: React.FC = ({ ...props }) => ( ) -export { IconSymptomsRounded as default } +export default IconSymptomsRounded diff --git a/src/IconSymptomsRoundedFilled.tsx b/src/IconSymptomsRoundedFilled.tsx index 0b33a4c93..6837b6337 100644 --- a/src/IconSymptomsRoundedFilled.tsx +++ b/src/IconSymptomsRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconSymptomsRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconSymptomsRoundedFilled as default } +export default IconSymptomsRoundedFilled diff --git a/src/IconSymptomsSharp.tsx b/src/IconSymptomsSharp.tsx index ef6e5c88a..6c6444580 100644 --- a/src/IconSymptomsSharp.tsx +++ b/src/IconSymptomsSharp.tsx @@ -8,4 +8,4 @@ const IconSymptomsSharp: React.FC = ({ ...props }) => ( ) -export { IconSymptomsSharp as default } +export default IconSymptomsSharp diff --git a/src/IconSymptomsSharpFilled.tsx b/src/IconSymptomsSharpFilled.tsx index 0861d80cc..d30c41f9c 100644 --- a/src/IconSymptomsSharpFilled.tsx +++ b/src/IconSymptomsSharpFilled.tsx @@ -8,4 +8,4 @@ const IconSymptomsSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconSymptomsSharpFilled as default } +export default IconSymptomsSharpFilled diff --git a/src/IconSynagogueOutlined.tsx b/src/IconSynagogueOutlined.tsx index 2c8728ab2..a80c55e28 100644 --- a/src/IconSynagogueOutlined.tsx +++ b/src/IconSynagogueOutlined.tsx @@ -8,4 +8,4 @@ const IconSynagogueOutlined: React.FC = ({ ...props }) => ( ) -export { IconSynagogueOutlined as default } +export default IconSynagogueOutlined diff --git a/src/IconSynagogueOutlinedFilled.tsx b/src/IconSynagogueOutlinedFilled.tsx index f48c1936f..3f02ecd4a 100644 --- a/src/IconSynagogueOutlinedFilled.tsx +++ b/src/IconSynagogueOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconSynagogueOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconSynagogueOutlinedFilled as default } +export default IconSynagogueOutlinedFilled diff --git a/src/IconSynagogueRounded.tsx b/src/IconSynagogueRounded.tsx index 3b0321ec8..a13a385ec 100644 --- a/src/IconSynagogueRounded.tsx +++ b/src/IconSynagogueRounded.tsx @@ -8,4 +8,4 @@ const IconSynagogueRounded: React.FC = ({ ...props }) => ( ) -export { IconSynagogueRounded as default } +export default IconSynagogueRounded diff --git a/src/IconSynagogueRoundedFilled.tsx b/src/IconSynagogueRoundedFilled.tsx index d831ac226..880738d33 100644 --- a/src/IconSynagogueRoundedFilled.tsx +++ b/src/IconSynagogueRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconSynagogueRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconSynagogueRoundedFilled as default } +export default IconSynagogueRoundedFilled diff --git a/src/IconSynagogueSharp.tsx b/src/IconSynagogueSharp.tsx index 03e0f3768..d9e378366 100644 --- a/src/IconSynagogueSharp.tsx +++ b/src/IconSynagogueSharp.tsx @@ -8,4 +8,4 @@ const IconSynagogueSharp: React.FC = ({ ...props }) => ( ) -export { IconSynagogueSharp as default } +export default IconSynagogueSharp diff --git a/src/IconSynagogueSharpFilled.tsx b/src/IconSynagogueSharpFilled.tsx index c5737b3bc..84f919c10 100644 --- a/src/IconSynagogueSharpFilled.tsx +++ b/src/IconSynagogueSharpFilled.tsx @@ -8,4 +8,4 @@ const IconSynagogueSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconSynagogueSharpFilled as default } +export default IconSynagogueSharpFilled diff --git a/src/IconSyncAltOutlined.tsx b/src/IconSyncAltOutlined.tsx index b67bab62f..10600e4d8 100644 --- a/src/IconSyncAltOutlined.tsx +++ b/src/IconSyncAltOutlined.tsx @@ -8,4 +8,4 @@ const IconSyncAltOutlined: React.FC = ({ ...props }) => ( ) -export { IconSyncAltOutlined as default } +export default IconSyncAltOutlined diff --git a/src/IconSyncAltOutlinedFilled.tsx b/src/IconSyncAltOutlinedFilled.tsx index 4f538b4a3..dd018cc09 100644 --- a/src/IconSyncAltOutlinedFilled.tsx +++ b/src/IconSyncAltOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconSyncAltOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconSyncAltOutlinedFilled as default } +export default IconSyncAltOutlinedFilled diff --git a/src/IconSyncAltRounded.tsx b/src/IconSyncAltRounded.tsx index b180ce850..e9c62be24 100644 --- a/src/IconSyncAltRounded.tsx +++ b/src/IconSyncAltRounded.tsx @@ -8,4 +8,4 @@ const IconSyncAltRounded: React.FC = ({ ...props }) => ( ) -export { IconSyncAltRounded as default } +export default IconSyncAltRounded diff --git a/src/IconSyncAltRoundedFilled.tsx b/src/IconSyncAltRoundedFilled.tsx index c3ff7e9d3..c16583f55 100644 --- a/src/IconSyncAltRoundedFilled.tsx +++ b/src/IconSyncAltRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconSyncAltRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconSyncAltRoundedFilled as default } +export default IconSyncAltRoundedFilled diff --git a/src/IconSyncAltSharp.tsx b/src/IconSyncAltSharp.tsx index 38205c795..50fa294d6 100644 --- a/src/IconSyncAltSharp.tsx +++ b/src/IconSyncAltSharp.tsx @@ -8,4 +8,4 @@ const IconSyncAltSharp: React.FC = ({ ...props }) => ( ) -export { IconSyncAltSharp as default } +export default IconSyncAltSharp diff --git a/src/IconSyncAltSharpFilled.tsx b/src/IconSyncAltSharpFilled.tsx index 2258df58d..b40f80722 100644 --- a/src/IconSyncAltSharpFilled.tsx +++ b/src/IconSyncAltSharpFilled.tsx @@ -8,4 +8,4 @@ const IconSyncAltSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconSyncAltSharpFilled as default } +export default IconSyncAltSharpFilled diff --git a/src/IconSyncDesktopOutlined.tsx b/src/IconSyncDesktopOutlined.tsx index 7db634455..5126b4e3a 100644 --- a/src/IconSyncDesktopOutlined.tsx +++ b/src/IconSyncDesktopOutlined.tsx @@ -8,4 +8,4 @@ const IconSyncDesktopOutlined: React.FC = ({ ...props }) => ( ) -export { IconSyncDesktopOutlined as default } +export default IconSyncDesktopOutlined diff --git a/src/IconSyncDesktopOutlinedFilled.tsx b/src/IconSyncDesktopOutlinedFilled.tsx index 78cd4932c..3f775abc9 100644 --- a/src/IconSyncDesktopOutlinedFilled.tsx +++ b/src/IconSyncDesktopOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconSyncDesktopOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconSyncDesktopOutlinedFilled as default } +export default IconSyncDesktopOutlinedFilled diff --git a/src/IconSyncDesktopRounded.tsx b/src/IconSyncDesktopRounded.tsx index 2c3d50e01..bc8df1663 100644 --- a/src/IconSyncDesktopRounded.tsx +++ b/src/IconSyncDesktopRounded.tsx @@ -8,4 +8,4 @@ const IconSyncDesktopRounded: React.FC = ({ ...props }) => ( ) -export { IconSyncDesktopRounded as default } +export default IconSyncDesktopRounded diff --git a/src/IconSyncDesktopRoundedFilled.tsx b/src/IconSyncDesktopRoundedFilled.tsx index 5a33d4cb7..16453094e 100644 --- a/src/IconSyncDesktopRoundedFilled.tsx +++ b/src/IconSyncDesktopRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconSyncDesktopRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconSyncDesktopRoundedFilled as default } +export default IconSyncDesktopRoundedFilled diff --git a/src/IconSyncDesktopSharp.tsx b/src/IconSyncDesktopSharp.tsx index a010dd5ff..4180119e3 100644 --- a/src/IconSyncDesktopSharp.tsx +++ b/src/IconSyncDesktopSharp.tsx @@ -8,4 +8,4 @@ const IconSyncDesktopSharp: React.FC = ({ ...props }) => ( ) -export { IconSyncDesktopSharp as default } +export default IconSyncDesktopSharp diff --git a/src/IconSyncDesktopSharpFilled.tsx b/src/IconSyncDesktopSharpFilled.tsx index 0a6e8d135..7cd0c59dc 100644 --- a/src/IconSyncDesktopSharpFilled.tsx +++ b/src/IconSyncDesktopSharpFilled.tsx @@ -8,4 +8,4 @@ const IconSyncDesktopSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconSyncDesktopSharpFilled as default } +export default IconSyncDesktopSharpFilled diff --git a/src/IconSyncDisabledOutlined.tsx b/src/IconSyncDisabledOutlined.tsx index b7a409fd2..a647f9d95 100644 --- a/src/IconSyncDisabledOutlined.tsx +++ b/src/IconSyncDisabledOutlined.tsx @@ -8,4 +8,4 @@ const IconSyncDisabledOutlined: React.FC = ({ ...props }) => ( ) -export { IconSyncDisabledOutlined as default } +export default IconSyncDisabledOutlined diff --git a/src/IconSyncDisabledOutlinedFilled.tsx b/src/IconSyncDisabledOutlinedFilled.tsx index 0f1d8f277..0be802fcd 100644 --- a/src/IconSyncDisabledOutlinedFilled.tsx +++ b/src/IconSyncDisabledOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconSyncDisabledOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconSyncDisabledOutlinedFilled as default } +export default IconSyncDisabledOutlinedFilled diff --git a/src/IconSyncDisabledRounded.tsx b/src/IconSyncDisabledRounded.tsx index 01253ab4b..b73be6527 100644 --- a/src/IconSyncDisabledRounded.tsx +++ b/src/IconSyncDisabledRounded.tsx @@ -8,4 +8,4 @@ const IconSyncDisabledRounded: React.FC = ({ ...props }) => ( ) -export { IconSyncDisabledRounded as default } +export default IconSyncDisabledRounded diff --git a/src/IconSyncDisabledRoundedFilled.tsx b/src/IconSyncDisabledRoundedFilled.tsx index ed73b7cc8..8a02107cb 100644 --- a/src/IconSyncDisabledRoundedFilled.tsx +++ b/src/IconSyncDisabledRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconSyncDisabledRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconSyncDisabledRoundedFilled as default } +export default IconSyncDisabledRoundedFilled diff --git a/src/IconSyncDisabledSharp.tsx b/src/IconSyncDisabledSharp.tsx index 298fe46d8..0b4e7b7ff 100644 --- a/src/IconSyncDisabledSharp.tsx +++ b/src/IconSyncDisabledSharp.tsx @@ -8,4 +8,4 @@ const IconSyncDisabledSharp: React.FC = ({ ...props }) => ( ) -export { IconSyncDisabledSharp as default } +export default IconSyncDisabledSharp diff --git a/src/IconSyncDisabledSharpFilled.tsx b/src/IconSyncDisabledSharpFilled.tsx index d9aaedc92..30bfcad2e 100644 --- a/src/IconSyncDisabledSharpFilled.tsx +++ b/src/IconSyncDisabledSharpFilled.tsx @@ -8,4 +8,4 @@ const IconSyncDisabledSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconSyncDisabledSharpFilled as default } +export default IconSyncDisabledSharpFilled diff --git a/src/IconSyncLockOutlined.tsx b/src/IconSyncLockOutlined.tsx index 8c454aecf..83654a206 100644 --- a/src/IconSyncLockOutlined.tsx +++ b/src/IconSyncLockOutlined.tsx @@ -8,4 +8,4 @@ const IconSyncLockOutlined: React.FC = ({ ...props }) => ( ) -export { IconSyncLockOutlined as default } +export default IconSyncLockOutlined diff --git a/src/IconSyncLockOutlinedFilled.tsx b/src/IconSyncLockOutlinedFilled.tsx index 408244878..b7b57a6b9 100644 --- a/src/IconSyncLockOutlinedFilled.tsx +++ b/src/IconSyncLockOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconSyncLockOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconSyncLockOutlinedFilled as default } +export default IconSyncLockOutlinedFilled diff --git a/src/IconSyncLockRounded.tsx b/src/IconSyncLockRounded.tsx index e359a426d..23074ff53 100644 --- a/src/IconSyncLockRounded.tsx +++ b/src/IconSyncLockRounded.tsx @@ -8,4 +8,4 @@ const IconSyncLockRounded: React.FC = ({ ...props }) => ( ) -export { IconSyncLockRounded as default } +export default IconSyncLockRounded diff --git a/src/IconSyncLockRoundedFilled.tsx b/src/IconSyncLockRoundedFilled.tsx index a0707c61a..61fc5dc36 100644 --- a/src/IconSyncLockRoundedFilled.tsx +++ b/src/IconSyncLockRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconSyncLockRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconSyncLockRoundedFilled as default } +export default IconSyncLockRoundedFilled diff --git a/src/IconSyncLockSharp.tsx b/src/IconSyncLockSharp.tsx index 20a84ed1d..0cea7d7c3 100644 --- a/src/IconSyncLockSharp.tsx +++ b/src/IconSyncLockSharp.tsx @@ -8,4 +8,4 @@ const IconSyncLockSharp: React.FC = ({ ...props }) => ( ) -export { IconSyncLockSharp as default } +export default IconSyncLockSharp diff --git a/src/IconSyncLockSharpFilled.tsx b/src/IconSyncLockSharpFilled.tsx index a37bdb5d7..be86e0c33 100644 --- a/src/IconSyncLockSharpFilled.tsx +++ b/src/IconSyncLockSharpFilled.tsx @@ -8,4 +8,4 @@ const IconSyncLockSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconSyncLockSharpFilled as default } +export default IconSyncLockSharpFilled diff --git a/src/IconSyncOutlined.tsx b/src/IconSyncOutlined.tsx index 7e51ba39b..cf29ef303 100644 --- a/src/IconSyncOutlined.tsx +++ b/src/IconSyncOutlined.tsx @@ -8,4 +8,4 @@ const IconSyncOutlined: React.FC = ({ ...props }) => ( ) -export { IconSyncOutlined as default } +export default IconSyncOutlined diff --git a/src/IconSyncOutlinedFilled.tsx b/src/IconSyncOutlinedFilled.tsx index 4a5947a3d..35c814bfb 100644 --- a/src/IconSyncOutlinedFilled.tsx +++ b/src/IconSyncOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconSyncOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconSyncOutlinedFilled as default } +export default IconSyncOutlinedFilled diff --git a/src/IconSyncProblemOutlined.tsx b/src/IconSyncProblemOutlined.tsx index 8e6f2c6cc..72e358ef9 100644 --- a/src/IconSyncProblemOutlined.tsx +++ b/src/IconSyncProblemOutlined.tsx @@ -8,4 +8,4 @@ const IconSyncProblemOutlined: React.FC = ({ ...props }) => ( ) -export { IconSyncProblemOutlined as default } +export default IconSyncProblemOutlined diff --git a/src/IconSyncProblemOutlinedFilled.tsx b/src/IconSyncProblemOutlinedFilled.tsx index 7a224bde6..0429aa928 100644 --- a/src/IconSyncProblemOutlinedFilled.tsx +++ b/src/IconSyncProblemOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconSyncProblemOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconSyncProblemOutlinedFilled as default } +export default IconSyncProblemOutlinedFilled diff --git a/src/IconSyncProblemRounded.tsx b/src/IconSyncProblemRounded.tsx index c6720b3df..562e4ec2b 100644 --- a/src/IconSyncProblemRounded.tsx +++ b/src/IconSyncProblemRounded.tsx @@ -8,4 +8,4 @@ const IconSyncProblemRounded: React.FC = ({ ...props }) => ( ) -export { IconSyncProblemRounded as default } +export default IconSyncProblemRounded diff --git a/src/IconSyncProblemRoundedFilled.tsx b/src/IconSyncProblemRoundedFilled.tsx index b5ab66edb..18a3edb14 100644 --- a/src/IconSyncProblemRoundedFilled.tsx +++ b/src/IconSyncProblemRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconSyncProblemRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconSyncProblemRoundedFilled as default } +export default IconSyncProblemRoundedFilled diff --git a/src/IconSyncProblemSharp.tsx b/src/IconSyncProblemSharp.tsx index 279f3b711..8950a20ff 100644 --- a/src/IconSyncProblemSharp.tsx +++ b/src/IconSyncProblemSharp.tsx @@ -8,4 +8,4 @@ const IconSyncProblemSharp: React.FC = ({ ...props }) => ( ) -export { IconSyncProblemSharp as default } +export default IconSyncProblemSharp diff --git a/src/IconSyncProblemSharpFilled.tsx b/src/IconSyncProblemSharpFilled.tsx index 4fe61bcab..a2c22594c 100644 --- a/src/IconSyncProblemSharpFilled.tsx +++ b/src/IconSyncProblemSharpFilled.tsx @@ -8,4 +8,4 @@ const IconSyncProblemSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconSyncProblemSharpFilled as default } +export default IconSyncProblemSharpFilled diff --git a/src/IconSyncRounded.tsx b/src/IconSyncRounded.tsx index cc4cda179..9bb22e8d3 100644 --- a/src/IconSyncRounded.tsx +++ b/src/IconSyncRounded.tsx @@ -8,4 +8,4 @@ const IconSyncRounded: React.FC = ({ ...props }) => ( ) -export { IconSyncRounded as default } +export default IconSyncRounded diff --git a/src/IconSyncRoundedFilled.tsx b/src/IconSyncRoundedFilled.tsx index e798c7613..2b2b8046b 100644 --- a/src/IconSyncRoundedFilled.tsx +++ b/src/IconSyncRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconSyncRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconSyncRoundedFilled as default } +export default IconSyncRoundedFilled diff --git a/src/IconSyncSavedLocallyOutlined.tsx b/src/IconSyncSavedLocallyOutlined.tsx index e9a7c7f0a..62833c26a 100644 --- a/src/IconSyncSavedLocallyOutlined.tsx +++ b/src/IconSyncSavedLocallyOutlined.tsx @@ -8,4 +8,4 @@ const IconSyncSavedLocallyOutlined: React.FC = ({ ...props }) => ( ) -export { IconSyncSavedLocallyOutlined as default } +export default IconSyncSavedLocallyOutlined diff --git a/src/IconSyncSavedLocallyOutlinedFilled.tsx b/src/IconSyncSavedLocallyOutlinedFilled.tsx index 92f73d62e..cdfd70eb9 100644 --- a/src/IconSyncSavedLocallyOutlinedFilled.tsx +++ b/src/IconSyncSavedLocallyOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconSyncSavedLocallyOutlinedFilled: React.FC = ({ ) -export { IconSyncSavedLocallyOutlinedFilled as default } +export default IconSyncSavedLocallyOutlinedFilled diff --git a/src/IconSyncSavedLocallyRounded.tsx b/src/IconSyncSavedLocallyRounded.tsx index 6ef5bf3d5..082ce2891 100644 --- a/src/IconSyncSavedLocallyRounded.tsx +++ b/src/IconSyncSavedLocallyRounded.tsx @@ -8,4 +8,4 @@ const IconSyncSavedLocallyRounded: React.FC = ({ ...props }) => ( ) -export { IconSyncSavedLocallyRounded as default } +export default IconSyncSavedLocallyRounded diff --git a/src/IconSyncSavedLocallyRoundedFilled.tsx b/src/IconSyncSavedLocallyRoundedFilled.tsx index 32b8ed75c..6c9b75ae2 100644 --- a/src/IconSyncSavedLocallyRoundedFilled.tsx +++ b/src/IconSyncSavedLocallyRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconSyncSavedLocallyRoundedFilled: React.FC = ({ ) -export { IconSyncSavedLocallyRoundedFilled as default } +export default IconSyncSavedLocallyRoundedFilled diff --git a/src/IconSyncSavedLocallySharp.tsx b/src/IconSyncSavedLocallySharp.tsx index 83819cf94..b8fcb9799 100644 --- a/src/IconSyncSavedLocallySharp.tsx +++ b/src/IconSyncSavedLocallySharp.tsx @@ -8,4 +8,4 @@ const IconSyncSavedLocallySharp: React.FC = ({ ...props }) => ( ) -export { IconSyncSavedLocallySharp as default } +export default IconSyncSavedLocallySharp diff --git a/src/IconSyncSavedLocallySharpFilled.tsx b/src/IconSyncSavedLocallySharpFilled.tsx index e06fef030..a5f9b72f7 100644 --- a/src/IconSyncSavedLocallySharpFilled.tsx +++ b/src/IconSyncSavedLocallySharpFilled.tsx @@ -8,4 +8,4 @@ const IconSyncSavedLocallySharpFilled: React.FC = ({ ...props }) => ( ) -export { IconSyncSavedLocallySharpFilled as default } +export default IconSyncSavedLocallySharpFilled diff --git a/src/IconSyncSharp.tsx b/src/IconSyncSharp.tsx index dd72c822e..4dbc58314 100644 --- a/src/IconSyncSharp.tsx +++ b/src/IconSyncSharp.tsx @@ -8,4 +8,4 @@ const IconSyncSharp: React.FC = ({ ...props }) => ( ) -export { IconSyncSharp as default } +export default IconSyncSharp diff --git a/src/IconSyncSharpFilled.tsx b/src/IconSyncSharpFilled.tsx index 95a1f660e..df50a95b4 100644 --- a/src/IconSyncSharpFilled.tsx +++ b/src/IconSyncSharpFilled.tsx @@ -8,4 +8,4 @@ const IconSyncSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconSyncSharpFilled as default } +export default IconSyncSharpFilled diff --git a/src/IconSyringeOutlined.tsx b/src/IconSyringeOutlined.tsx index a52f1ee83..792eebc44 100644 --- a/src/IconSyringeOutlined.tsx +++ b/src/IconSyringeOutlined.tsx @@ -8,4 +8,4 @@ const IconSyringeOutlined: React.FC = ({ ...props }) => ( ) -export { IconSyringeOutlined as default } +export default IconSyringeOutlined diff --git a/src/IconSyringeOutlinedFilled.tsx b/src/IconSyringeOutlinedFilled.tsx index 14da88e0d..532a030e0 100644 --- a/src/IconSyringeOutlinedFilled.tsx +++ b/src/IconSyringeOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconSyringeOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconSyringeOutlinedFilled as default } +export default IconSyringeOutlinedFilled diff --git a/src/IconSyringeRounded.tsx b/src/IconSyringeRounded.tsx index d354d3dd9..0d6f7c6b6 100644 --- a/src/IconSyringeRounded.tsx +++ b/src/IconSyringeRounded.tsx @@ -8,4 +8,4 @@ const IconSyringeRounded: React.FC = ({ ...props }) => ( ) -export { IconSyringeRounded as default } +export default IconSyringeRounded diff --git a/src/IconSyringeRoundedFilled.tsx b/src/IconSyringeRoundedFilled.tsx index 9b19c27f7..97df19774 100644 --- a/src/IconSyringeRoundedFilled.tsx +++ b/src/IconSyringeRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconSyringeRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconSyringeRoundedFilled as default } +export default IconSyringeRoundedFilled diff --git a/src/IconSyringeSharp.tsx b/src/IconSyringeSharp.tsx index d30603007..876ed42c8 100644 --- a/src/IconSyringeSharp.tsx +++ b/src/IconSyringeSharp.tsx @@ -8,4 +8,4 @@ const IconSyringeSharp: React.FC = ({ ...props }) => ( ) -export { IconSyringeSharp as default } +export default IconSyringeSharp diff --git a/src/IconSyringeSharpFilled.tsx b/src/IconSyringeSharpFilled.tsx index 0b98010ed..0cbc24554 100644 --- a/src/IconSyringeSharpFilled.tsx +++ b/src/IconSyringeSharpFilled.tsx @@ -8,4 +8,4 @@ const IconSyringeSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconSyringeSharpFilled as default } +export default IconSyringeSharpFilled diff --git a/src/IconSystemUpdateAltOutlined.tsx b/src/IconSystemUpdateAltOutlined.tsx index 1c9c0115e..3004ed4b3 100644 --- a/src/IconSystemUpdateAltOutlined.tsx +++ b/src/IconSystemUpdateAltOutlined.tsx @@ -8,4 +8,4 @@ const IconSystemUpdateAltOutlined: React.FC = ({ ...props }) => ( ) -export { IconSystemUpdateAltOutlined as default } +export default IconSystemUpdateAltOutlined diff --git a/src/IconSystemUpdateAltOutlinedFilled.tsx b/src/IconSystemUpdateAltOutlinedFilled.tsx index 7412f0cc0..9c8364c52 100644 --- a/src/IconSystemUpdateAltOutlinedFilled.tsx +++ b/src/IconSystemUpdateAltOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconSystemUpdateAltOutlinedFilled: React.FC = ({ ) -export { IconSystemUpdateAltOutlinedFilled as default } +export default IconSystemUpdateAltOutlinedFilled diff --git a/src/IconSystemUpdateAltRounded.tsx b/src/IconSystemUpdateAltRounded.tsx index d32dd746c..d0d383d9d 100644 --- a/src/IconSystemUpdateAltRounded.tsx +++ b/src/IconSystemUpdateAltRounded.tsx @@ -8,4 +8,4 @@ const IconSystemUpdateAltRounded: React.FC = ({ ...props }) => ( ) -export { IconSystemUpdateAltRounded as default } +export default IconSystemUpdateAltRounded diff --git a/src/IconSystemUpdateAltRoundedFilled.tsx b/src/IconSystemUpdateAltRoundedFilled.tsx index 8100f78ea..2204b1c10 100644 --- a/src/IconSystemUpdateAltRoundedFilled.tsx +++ b/src/IconSystemUpdateAltRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconSystemUpdateAltRoundedFilled: React.FC = ({ ) -export { IconSystemUpdateAltRoundedFilled as default } +export default IconSystemUpdateAltRoundedFilled diff --git a/src/IconSystemUpdateAltSharp.tsx b/src/IconSystemUpdateAltSharp.tsx index dc4cd6c26..d011e0410 100644 --- a/src/IconSystemUpdateAltSharp.tsx +++ b/src/IconSystemUpdateAltSharp.tsx @@ -8,4 +8,4 @@ const IconSystemUpdateAltSharp: React.FC = ({ ...props }) => ( ) -export { IconSystemUpdateAltSharp as default } +export default IconSystemUpdateAltSharp diff --git a/src/IconSystemUpdateAltSharpFilled.tsx b/src/IconSystemUpdateAltSharpFilled.tsx index 1eff15097..fc55be168 100644 --- a/src/IconSystemUpdateAltSharpFilled.tsx +++ b/src/IconSystemUpdateAltSharpFilled.tsx @@ -8,4 +8,4 @@ const IconSystemUpdateAltSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconSystemUpdateAltSharpFilled as default } +export default IconSystemUpdateAltSharpFilled diff --git a/src/IconSystemUpdateOutlined.tsx b/src/IconSystemUpdateOutlined.tsx index 98a9bbb1d..051660a40 100644 --- a/src/IconSystemUpdateOutlined.tsx +++ b/src/IconSystemUpdateOutlined.tsx @@ -8,4 +8,4 @@ const IconSystemUpdateOutlined: React.FC = ({ ...props }) => ( ) -export { IconSystemUpdateOutlined as default } +export default IconSystemUpdateOutlined diff --git a/src/IconSystemUpdateOutlinedFilled.tsx b/src/IconSystemUpdateOutlinedFilled.tsx index 44901cf42..b1c320292 100644 --- a/src/IconSystemUpdateOutlinedFilled.tsx +++ b/src/IconSystemUpdateOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconSystemUpdateOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconSystemUpdateOutlinedFilled as default } +export default IconSystemUpdateOutlinedFilled diff --git a/src/IconSystemUpdateRounded.tsx b/src/IconSystemUpdateRounded.tsx index e990b17b4..89acf0655 100644 --- a/src/IconSystemUpdateRounded.tsx +++ b/src/IconSystemUpdateRounded.tsx @@ -8,4 +8,4 @@ const IconSystemUpdateRounded: React.FC = ({ ...props }) => ( ) -export { IconSystemUpdateRounded as default } +export default IconSystemUpdateRounded diff --git a/src/IconSystemUpdateRoundedFilled.tsx b/src/IconSystemUpdateRoundedFilled.tsx index f712e66f8..0551711fe 100644 --- a/src/IconSystemUpdateRoundedFilled.tsx +++ b/src/IconSystemUpdateRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconSystemUpdateRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconSystemUpdateRoundedFilled as default } +export default IconSystemUpdateRoundedFilled diff --git a/src/IconSystemUpdateSharp.tsx b/src/IconSystemUpdateSharp.tsx index d02f3b677..37fb41166 100644 --- a/src/IconSystemUpdateSharp.tsx +++ b/src/IconSystemUpdateSharp.tsx @@ -8,4 +8,4 @@ const IconSystemUpdateSharp: React.FC = ({ ...props }) => ( ) -export { IconSystemUpdateSharp as default } +export default IconSystemUpdateSharp diff --git a/src/IconSystemUpdateSharpFilled.tsx b/src/IconSystemUpdateSharpFilled.tsx index 7cd40f072..ee0fa128d 100644 --- a/src/IconSystemUpdateSharpFilled.tsx +++ b/src/IconSystemUpdateSharpFilled.tsx @@ -8,4 +8,4 @@ const IconSystemUpdateSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconSystemUpdateSharpFilled as default } +export default IconSystemUpdateSharpFilled diff --git a/src/IconTabCloseOutlined.tsx b/src/IconTabCloseOutlined.tsx index 78cb864d5..271229e82 100644 --- a/src/IconTabCloseOutlined.tsx +++ b/src/IconTabCloseOutlined.tsx @@ -8,4 +8,4 @@ const IconTabCloseOutlined: React.FC = ({ ...props }) => ( ) -export { IconTabCloseOutlined as default } +export default IconTabCloseOutlined diff --git a/src/IconTabCloseOutlinedFilled.tsx b/src/IconTabCloseOutlinedFilled.tsx index f1b4f8196..e13554392 100644 --- a/src/IconTabCloseOutlinedFilled.tsx +++ b/src/IconTabCloseOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconTabCloseOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconTabCloseOutlinedFilled as default } +export default IconTabCloseOutlinedFilled diff --git a/src/IconTabCloseRightOutlined.tsx b/src/IconTabCloseRightOutlined.tsx index 94a985c8c..a36bc4482 100644 --- a/src/IconTabCloseRightOutlined.tsx +++ b/src/IconTabCloseRightOutlined.tsx @@ -8,4 +8,4 @@ const IconTabCloseRightOutlined: React.FC = ({ ...props }) => ( ) -export { IconTabCloseRightOutlined as default } +export default IconTabCloseRightOutlined diff --git a/src/IconTabCloseRightOutlinedFilled.tsx b/src/IconTabCloseRightOutlinedFilled.tsx index 6bd853328..ba3388998 100644 --- a/src/IconTabCloseRightOutlinedFilled.tsx +++ b/src/IconTabCloseRightOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconTabCloseRightOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconTabCloseRightOutlinedFilled as default } +export default IconTabCloseRightOutlinedFilled diff --git a/src/IconTabCloseRightRounded.tsx b/src/IconTabCloseRightRounded.tsx index 346c526b2..45f72c2fb 100644 --- a/src/IconTabCloseRightRounded.tsx +++ b/src/IconTabCloseRightRounded.tsx @@ -8,4 +8,4 @@ const IconTabCloseRightRounded: React.FC = ({ ...props }) => ( ) -export { IconTabCloseRightRounded as default } +export default IconTabCloseRightRounded diff --git a/src/IconTabCloseRightRoundedFilled.tsx b/src/IconTabCloseRightRoundedFilled.tsx index 9e2ead516..c1a1702f9 100644 --- a/src/IconTabCloseRightRoundedFilled.tsx +++ b/src/IconTabCloseRightRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconTabCloseRightRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconTabCloseRightRoundedFilled as default } +export default IconTabCloseRightRoundedFilled diff --git a/src/IconTabCloseRightSharp.tsx b/src/IconTabCloseRightSharp.tsx index 70b191edf..f6e583369 100644 --- a/src/IconTabCloseRightSharp.tsx +++ b/src/IconTabCloseRightSharp.tsx @@ -8,4 +8,4 @@ const IconTabCloseRightSharp: React.FC = ({ ...props }) => ( ) -export { IconTabCloseRightSharp as default } +export default IconTabCloseRightSharp diff --git a/src/IconTabCloseRightSharpFilled.tsx b/src/IconTabCloseRightSharpFilled.tsx index 7e22b3bd2..cf6756319 100644 --- a/src/IconTabCloseRightSharpFilled.tsx +++ b/src/IconTabCloseRightSharpFilled.tsx @@ -8,4 +8,4 @@ const IconTabCloseRightSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconTabCloseRightSharpFilled as default } +export default IconTabCloseRightSharpFilled diff --git a/src/IconTabCloseRounded.tsx b/src/IconTabCloseRounded.tsx index 16cb946ff..4bedf448a 100644 --- a/src/IconTabCloseRounded.tsx +++ b/src/IconTabCloseRounded.tsx @@ -8,4 +8,4 @@ const IconTabCloseRounded: React.FC = ({ ...props }) => ( ) -export { IconTabCloseRounded as default } +export default IconTabCloseRounded diff --git a/src/IconTabCloseRoundedFilled.tsx b/src/IconTabCloseRoundedFilled.tsx index 066276ce9..866741f0d 100644 --- a/src/IconTabCloseRoundedFilled.tsx +++ b/src/IconTabCloseRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconTabCloseRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconTabCloseRoundedFilled as default } +export default IconTabCloseRoundedFilled diff --git a/src/IconTabCloseSharp.tsx b/src/IconTabCloseSharp.tsx index 08dff3701..c46371916 100644 --- a/src/IconTabCloseSharp.tsx +++ b/src/IconTabCloseSharp.tsx @@ -8,4 +8,4 @@ const IconTabCloseSharp: React.FC = ({ ...props }) => ( ) -export { IconTabCloseSharp as default } +export default IconTabCloseSharp diff --git a/src/IconTabCloseSharpFilled.tsx b/src/IconTabCloseSharpFilled.tsx index 8808000b8..d40c38007 100644 --- a/src/IconTabCloseSharpFilled.tsx +++ b/src/IconTabCloseSharpFilled.tsx @@ -8,4 +8,4 @@ const IconTabCloseSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconTabCloseSharpFilled as default } +export default IconTabCloseSharpFilled diff --git a/src/IconTabDuplicateOutlined.tsx b/src/IconTabDuplicateOutlined.tsx index 9a3c09199..1ea1b4f55 100644 --- a/src/IconTabDuplicateOutlined.tsx +++ b/src/IconTabDuplicateOutlined.tsx @@ -8,4 +8,4 @@ const IconTabDuplicateOutlined: React.FC = ({ ...props }) => ( ) -export { IconTabDuplicateOutlined as default } +export default IconTabDuplicateOutlined diff --git a/src/IconTabDuplicateOutlinedFilled.tsx b/src/IconTabDuplicateOutlinedFilled.tsx index 55dbf3edc..bd6404c55 100644 --- a/src/IconTabDuplicateOutlinedFilled.tsx +++ b/src/IconTabDuplicateOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconTabDuplicateOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconTabDuplicateOutlinedFilled as default } +export default IconTabDuplicateOutlinedFilled diff --git a/src/IconTabDuplicateRounded.tsx b/src/IconTabDuplicateRounded.tsx index a93f8aef7..83d41cf94 100644 --- a/src/IconTabDuplicateRounded.tsx +++ b/src/IconTabDuplicateRounded.tsx @@ -8,4 +8,4 @@ const IconTabDuplicateRounded: React.FC = ({ ...props }) => ( ) -export { IconTabDuplicateRounded as default } +export default IconTabDuplicateRounded diff --git a/src/IconTabDuplicateRoundedFilled.tsx b/src/IconTabDuplicateRoundedFilled.tsx index c8f98da45..271a79436 100644 --- a/src/IconTabDuplicateRoundedFilled.tsx +++ b/src/IconTabDuplicateRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconTabDuplicateRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconTabDuplicateRoundedFilled as default } +export default IconTabDuplicateRoundedFilled diff --git a/src/IconTabDuplicateSharp.tsx b/src/IconTabDuplicateSharp.tsx index dd71dc323..c6b31a460 100644 --- a/src/IconTabDuplicateSharp.tsx +++ b/src/IconTabDuplicateSharp.tsx @@ -8,4 +8,4 @@ const IconTabDuplicateSharp: React.FC = ({ ...props }) => ( ) -export { IconTabDuplicateSharp as default } +export default IconTabDuplicateSharp diff --git a/src/IconTabDuplicateSharpFilled.tsx b/src/IconTabDuplicateSharpFilled.tsx index cdc8b6f11..14168099d 100644 --- a/src/IconTabDuplicateSharpFilled.tsx +++ b/src/IconTabDuplicateSharpFilled.tsx @@ -8,4 +8,4 @@ const IconTabDuplicateSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconTabDuplicateSharpFilled as default } +export default IconTabDuplicateSharpFilled diff --git a/src/IconTabGroupOutlined.tsx b/src/IconTabGroupOutlined.tsx index b82820177..869b25c51 100644 --- a/src/IconTabGroupOutlined.tsx +++ b/src/IconTabGroupOutlined.tsx @@ -8,4 +8,4 @@ const IconTabGroupOutlined: React.FC = ({ ...props }) => ( ) -export { IconTabGroupOutlined as default } +export default IconTabGroupOutlined diff --git a/src/IconTabGroupOutlinedFilled.tsx b/src/IconTabGroupOutlinedFilled.tsx index ef20a2ddd..f5f14aeeb 100644 --- a/src/IconTabGroupOutlinedFilled.tsx +++ b/src/IconTabGroupOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconTabGroupOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconTabGroupOutlinedFilled as default } +export default IconTabGroupOutlinedFilled diff --git a/src/IconTabGroupRounded.tsx b/src/IconTabGroupRounded.tsx index 9f54e0c53..9ce62ff00 100644 --- a/src/IconTabGroupRounded.tsx +++ b/src/IconTabGroupRounded.tsx @@ -8,4 +8,4 @@ const IconTabGroupRounded: React.FC = ({ ...props }) => ( ) -export { IconTabGroupRounded as default } +export default IconTabGroupRounded diff --git a/src/IconTabGroupRoundedFilled.tsx b/src/IconTabGroupRoundedFilled.tsx index 5db909bd6..9719575e4 100644 --- a/src/IconTabGroupRoundedFilled.tsx +++ b/src/IconTabGroupRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconTabGroupRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconTabGroupRoundedFilled as default } +export default IconTabGroupRoundedFilled diff --git a/src/IconTabGroupSharp.tsx b/src/IconTabGroupSharp.tsx index edb6bc8d8..a883146ee 100644 --- a/src/IconTabGroupSharp.tsx +++ b/src/IconTabGroupSharp.tsx @@ -8,4 +8,4 @@ const IconTabGroupSharp: React.FC = ({ ...props }) => ( ) -export { IconTabGroupSharp as default } +export default IconTabGroupSharp diff --git a/src/IconTabGroupSharpFilled.tsx b/src/IconTabGroupSharpFilled.tsx index 737871ac9..8e443d531 100644 --- a/src/IconTabGroupSharpFilled.tsx +++ b/src/IconTabGroupSharpFilled.tsx @@ -8,4 +8,4 @@ const IconTabGroupSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconTabGroupSharpFilled as default } +export default IconTabGroupSharpFilled diff --git a/src/IconTabInactiveOutlined.tsx b/src/IconTabInactiveOutlined.tsx index ea97453c2..10729e1ba 100644 --- a/src/IconTabInactiveOutlined.tsx +++ b/src/IconTabInactiveOutlined.tsx @@ -8,4 +8,4 @@ const IconTabInactiveOutlined: React.FC = ({ ...props }) => ( ) -export { IconTabInactiveOutlined as default } +export default IconTabInactiveOutlined diff --git a/src/IconTabInactiveOutlinedFilled.tsx b/src/IconTabInactiveOutlinedFilled.tsx index 4c32df3e5..35e6fa8ae 100644 --- a/src/IconTabInactiveOutlinedFilled.tsx +++ b/src/IconTabInactiveOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconTabInactiveOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconTabInactiveOutlinedFilled as default } +export default IconTabInactiveOutlinedFilled diff --git a/src/IconTabInactiveRounded.tsx b/src/IconTabInactiveRounded.tsx index 953502bbd..43fa52be9 100644 --- a/src/IconTabInactiveRounded.tsx +++ b/src/IconTabInactiveRounded.tsx @@ -8,4 +8,4 @@ const IconTabInactiveRounded: React.FC = ({ ...props }) => ( ) -export { IconTabInactiveRounded as default } +export default IconTabInactiveRounded diff --git a/src/IconTabInactiveRoundedFilled.tsx b/src/IconTabInactiveRoundedFilled.tsx index 75a626e01..f825f0c86 100644 --- a/src/IconTabInactiveRoundedFilled.tsx +++ b/src/IconTabInactiveRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconTabInactiveRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconTabInactiveRoundedFilled as default } +export default IconTabInactiveRoundedFilled diff --git a/src/IconTabInactiveSharp.tsx b/src/IconTabInactiveSharp.tsx index df70a21d4..de422a3bf 100644 --- a/src/IconTabInactiveSharp.tsx +++ b/src/IconTabInactiveSharp.tsx @@ -8,4 +8,4 @@ const IconTabInactiveSharp: React.FC = ({ ...props }) => ( ) -export { IconTabInactiveSharp as default } +export default IconTabInactiveSharp diff --git a/src/IconTabInactiveSharpFilled.tsx b/src/IconTabInactiveSharpFilled.tsx index 35f7289a5..a6c4e4364 100644 --- a/src/IconTabInactiveSharpFilled.tsx +++ b/src/IconTabInactiveSharpFilled.tsx @@ -8,4 +8,4 @@ const IconTabInactiveSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconTabInactiveSharpFilled as default } +export default IconTabInactiveSharpFilled diff --git a/src/IconTabMoveOutlined.tsx b/src/IconTabMoveOutlined.tsx index 81b716d23..9f237ea2a 100644 --- a/src/IconTabMoveOutlined.tsx +++ b/src/IconTabMoveOutlined.tsx @@ -8,4 +8,4 @@ const IconTabMoveOutlined: React.FC = ({ ...props }) => ( ) -export { IconTabMoveOutlined as default } +export default IconTabMoveOutlined diff --git a/src/IconTabMoveOutlinedFilled.tsx b/src/IconTabMoveOutlinedFilled.tsx index 24a24a2b8..30bfb8204 100644 --- a/src/IconTabMoveOutlinedFilled.tsx +++ b/src/IconTabMoveOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconTabMoveOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconTabMoveOutlinedFilled as default } +export default IconTabMoveOutlinedFilled diff --git a/src/IconTabMoveRounded.tsx b/src/IconTabMoveRounded.tsx index 21393d50d..ed48f01b3 100644 --- a/src/IconTabMoveRounded.tsx +++ b/src/IconTabMoveRounded.tsx @@ -8,4 +8,4 @@ const IconTabMoveRounded: React.FC = ({ ...props }) => ( ) -export { IconTabMoveRounded as default } +export default IconTabMoveRounded diff --git a/src/IconTabMoveRoundedFilled.tsx b/src/IconTabMoveRoundedFilled.tsx index 72e1c105a..7e273b286 100644 --- a/src/IconTabMoveRoundedFilled.tsx +++ b/src/IconTabMoveRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconTabMoveRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconTabMoveRoundedFilled as default } +export default IconTabMoveRoundedFilled diff --git a/src/IconTabMoveSharp.tsx b/src/IconTabMoveSharp.tsx index 9af91a1f2..e0ec573cc 100644 --- a/src/IconTabMoveSharp.tsx +++ b/src/IconTabMoveSharp.tsx @@ -8,4 +8,4 @@ const IconTabMoveSharp: React.FC = ({ ...props }) => ( ) -export { IconTabMoveSharp as default } +export default IconTabMoveSharp diff --git a/src/IconTabMoveSharpFilled.tsx b/src/IconTabMoveSharpFilled.tsx index 30ebfb59c..a55c03609 100644 --- a/src/IconTabMoveSharpFilled.tsx +++ b/src/IconTabMoveSharpFilled.tsx @@ -8,4 +8,4 @@ const IconTabMoveSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconTabMoveSharpFilled as default } +export default IconTabMoveSharpFilled diff --git a/src/IconTabNewRightOutlined.tsx b/src/IconTabNewRightOutlined.tsx index 6883802de..ab2c3edbe 100644 --- a/src/IconTabNewRightOutlined.tsx +++ b/src/IconTabNewRightOutlined.tsx @@ -8,4 +8,4 @@ const IconTabNewRightOutlined: React.FC = ({ ...props }) => ( ) -export { IconTabNewRightOutlined as default } +export default IconTabNewRightOutlined diff --git a/src/IconTabNewRightOutlinedFilled.tsx b/src/IconTabNewRightOutlinedFilled.tsx index c75e9011c..aa5a350e0 100644 --- a/src/IconTabNewRightOutlinedFilled.tsx +++ b/src/IconTabNewRightOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconTabNewRightOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconTabNewRightOutlinedFilled as default } +export default IconTabNewRightOutlinedFilled diff --git a/src/IconTabNewRightRounded.tsx b/src/IconTabNewRightRounded.tsx index 2c1cae303..0e0537516 100644 --- a/src/IconTabNewRightRounded.tsx +++ b/src/IconTabNewRightRounded.tsx @@ -8,4 +8,4 @@ const IconTabNewRightRounded: React.FC = ({ ...props }) => ( ) -export { IconTabNewRightRounded as default } +export default IconTabNewRightRounded diff --git a/src/IconTabNewRightRoundedFilled.tsx b/src/IconTabNewRightRoundedFilled.tsx index c649c55e1..7f3237d3d 100644 --- a/src/IconTabNewRightRoundedFilled.tsx +++ b/src/IconTabNewRightRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconTabNewRightRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconTabNewRightRoundedFilled as default } +export default IconTabNewRightRoundedFilled diff --git a/src/IconTabNewRightSharp.tsx b/src/IconTabNewRightSharp.tsx index 0bebd20e3..a1df50132 100644 --- a/src/IconTabNewRightSharp.tsx +++ b/src/IconTabNewRightSharp.tsx @@ -8,4 +8,4 @@ const IconTabNewRightSharp: React.FC = ({ ...props }) => ( ) -export { IconTabNewRightSharp as default } +export default IconTabNewRightSharp diff --git a/src/IconTabNewRightSharpFilled.tsx b/src/IconTabNewRightSharpFilled.tsx index 6119c2441..3684006c9 100644 --- a/src/IconTabNewRightSharpFilled.tsx +++ b/src/IconTabNewRightSharpFilled.tsx @@ -8,4 +8,4 @@ const IconTabNewRightSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconTabNewRightSharpFilled as default } +export default IconTabNewRightSharpFilled diff --git a/src/IconTabOutlined.tsx b/src/IconTabOutlined.tsx index 35c55081b..fab76c773 100644 --- a/src/IconTabOutlined.tsx +++ b/src/IconTabOutlined.tsx @@ -8,4 +8,4 @@ const IconTabOutlined: React.FC = ({ ...props }) => ( ) -export { IconTabOutlined as default } +export default IconTabOutlined diff --git a/src/IconTabOutlinedFilled.tsx b/src/IconTabOutlinedFilled.tsx index fdb5333e4..5cfae701d 100644 --- a/src/IconTabOutlinedFilled.tsx +++ b/src/IconTabOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconTabOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconTabOutlinedFilled as default } +export default IconTabOutlinedFilled diff --git a/src/IconTabRecentOutlined.tsx b/src/IconTabRecentOutlined.tsx index 4ed9b0890..c751f42c7 100644 --- a/src/IconTabRecentOutlined.tsx +++ b/src/IconTabRecentOutlined.tsx @@ -8,4 +8,4 @@ const IconTabRecentOutlined: React.FC = ({ ...props }) => ( ) -export { IconTabRecentOutlined as default } +export default IconTabRecentOutlined diff --git a/src/IconTabRecentOutlinedFilled.tsx b/src/IconTabRecentOutlinedFilled.tsx index 39eb47462..5ccb000af 100644 --- a/src/IconTabRecentOutlinedFilled.tsx +++ b/src/IconTabRecentOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconTabRecentOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconTabRecentOutlinedFilled as default } +export default IconTabRecentOutlinedFilled diff --git a/src/IconTabRecentRounded.tsx b/src/IconTabRecentRounded.tsx index f3022ecf4..f36a54303 100644 --- a/src/IconTabRecentRounded.tsx +++ b/src/IconTabRecentRounded.tsx @@ -8,4 +8,4 @@ const IconTabRecentRounded: React.FC = ({ ...props }) => ( ) -export { IconTabRecentRounded as default } +export default IconTabRecentRounded diff --git a/src/IconTabRecentRoundedFilled.tsx b/src/IconTabRecentRoundedFilled.tsx index 1b6c6c904..ef202641a 100644 --- a/src/IconTabRecentRoundedFilled.tsx +++ b/src/IconTabRecentRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconTabRecentRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconTabRecentRoundedFilled as default } +export default IconTabRecentRoundedFilled diff --git a/src/IconTabRecentSharp.tsx b/src/IconTabRecentSharp.tsx index b6b5aea36..38893b75c 100644 --- a/src/IconTabRecentSharp.tsx +++ b/src/IconTabRecentSharp.tsx @@ -8,4 +8,4 @@ const IconTabRecentSharp: React.FC = ({ ...props }) => ( ) -export { IconTabRecentSharp as default } +export default IconTabRecentSharp diff --git a/src/IconTabRecentSharpFilled.tsx b/src/IconTabRecentSharpFilled.tsx index 008416923..0bf0a9734 100644 --- a/src/IconTabRecentSharpFilled.tsx +++ b/src/IconTabRecentSharpFilled.tsx @@ -8,4 +8,4 @@ const IconTabRecentSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconTabRecentSharpFilled as default } +export default IconTabRecentSharpFilled diff --git a/src/IconTabRounded.tsx b/src/IconTabRounded.tsx index 245395ff7..33b477eed 100644 --- a/src/IconTabRounded.tsx +++ b/src/IconTabRounded.tsx @@ -8,4 +8,4 @@ const IconTabRounded: React.FC = ({ ...props }) => ( ) -export { IconTabRounded as default } +export default IconTabRounded diff --git a/src/IconTabRoundedFilled.tsx b/src/IconTabRoundedFilled.tsx index a3ac9e98a..844484ec7 100644 --- a/src/IconTabRoundedFilled.tsx +++ b/src/IconTabRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconTabRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconTabRoundedFilled as default } +export default IconTabRoundedFilled diff --git a/src/IconTabSharp.tsx b/src/IconTabSharp.tsx index 5493be6dd..d569813a4 100644 --- a/src/IconTabSharp.tsx +++ b/src/IconTabSharp.tsx @@ -8,4 +8,4 @@ const IconTabSharp: React.FC = ({ ...props }) => ( ) -export { IconTabSharp as default } +export default IconTabSharp diff --git a/src/IconTabSharpFilled.tsx b/src/IconTabSharpFilled.tsx index 538030de0..ae657b401 100644 --- a/src/IconTabSharpFilled.tsx +++ b/src/IconTabSharpFilled.tsx @@ -8,4 +8,4 @@ const IconTabSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconTabSharpFilled as default } +export default IconTabSharpFilled diff --git a/src/IconTabUnselectedOutlined.tsx b/src/IconTabUnselectedOutlined.tsx index f6a30e461..859fe03f8 100644 --- a/src/IconTabUnselectedOutlined.tsx +++ b/src/IconTabUnselectedOutlined.tsx @@ -8,4 +8,4 @@ const IconTabUnselectedOutlined: React.FC = ({ ...props }) => ( ) -export { IconTabUnselectedOutlined as default } +export default IconTabUnselectedOutlined diff --git a/src/IconTabUnselectedOutlinedFilled.tsx b/src/IconTabUnselectedOutlinedFilled.tsx index 0e2acd7a1..1691402d5 100644 --- a/src/IconTabUnselectedOutlinedFilled.tsx +++ b/src/IconTabUnselectedOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconTabUnselectedOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconTabUnselectedOutlinedFilled as default } +export default IconTabUnselectedOutlinedFilled diff --git a/src/IconTabUnselectedRounded.tsx b/src/IconTabUnselectedRounded.tsx index e614fc92e..10d0e37dc 100644 --- a/src/IconTabUnselectedRounded.tsx +++ b/src/IconTabUnselectedRounded.tsx @@ -8,4 +8,4 @@ const IconTabUnselectedRounded: React.FC = ({ ...props }) => ( ) -export { IconTabUnselectedRounded as default } +export default IconTabUnselectedRounded diff --git a/src/IconTabUnselectedRoundedFilled.tsx b/src/IconTabUnselectedRoundedFilled.tsx index 9ac09e40f..1003f5212 100644 --- a/src/IconTabUnselectedRoundedFilled.tsx +++ b/src/IconTabUnselectedRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconTabUnselectedRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconTabUnselectedRoundedFilled as default } +export default IconTabUnselectedRoundedFilled diff --git a/src/IconTabUnselectedSharp.tsx b/src/IconTabUnselectedSharp.tsx index b5660c2ae..6dc0af06d 100644 --- a/src/IconTabUnselectedSharp.tsx +++ b/src/IconTabUnselectedSharp.tsx @@ -8,4 +8,4 @@ const IconTabUnselectedSharp: React.FC = ({ ...props }) => ( ) -export { IconTabUnselectedSharp as default } +export default IconTabUnselectedSharp diff --git a/src/IconTabUnselectedSharpFilled.tsx b/src/IconTabUnselectedSharpFilled.tsx index 0443c5bec..f10848e8c 100644 --- a/src/IconTabUnselectedSharpFilled.tsx +++ b/src/IconTabUnselectedSharpFilled.tsx @@ -8,4 +8,4 @@ const IconTabUnselectedSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconTabUnselectedSharpFilled as default } +export default IconTabUnselectedSharpFilled diff --git a/src/IconTableBarOutlined.tsx b/src/IconTableBarOutlined.tsx index 499951764..a0b7f6ba9 100644 --- a/src/IconTableBarOutlined.tsx +++ b/src/IconTableBarOutlined.tsx @@ -8,4 +8,4 @@ const IconTableBarOutlined: React.FC = ({ ...props }) => ( ) -export { IconTableBarOutlined as default } +export default IconTableBarOutlined diff --git a/src/IconTableBarOutlinedFilled.tsx b/src/IconTableBarOutlinedFilled.tsx index 566a42cb6..7fa85eedf 100644 --- a/src/IconTableBarOutlinedFilled.tsx +++ b/src/IconTableBarOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconTableBarOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconTableBarOutlinedFilled as default } +export default IconTableBarOutlinedFilled diff --git a/src/IconTableBarRounded.tsx b/src/IconTableBarRounded.tsx index f24fff24b..5ff59df9e 100644 --- a/src/IconTableBarRounded.tsx +++ b/src/IconTableBarRounded.tsx @@ -8,4 +8,4 @@ const IconTableBarRounded: React.FC = ({ ...props }) => ( ) -export { IconTableBarRounded as default } +export default IconTableBarRounded diff --git a/src/IconTableBarRoundedFilled.tsx b/src/IconTableBarRoundedFilled.tsx index 6e1a62c19..3d5bcf02c 100644 --- a/src/IconTableBarRoundedFilled.tsx +++ b/src/IconTableBarRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconTableBarRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconTableBarRoundedFilled as default } +export default IconTableBarRoundedFilled diff --git a/src/IconTableBarSharp.tsx b/src/IconTableBarSharp.tsx index 9f59a76a5..9c57cd074 100644 --- a/src/IconTableBarSharp.tsx +++ b/src/IconTableBarSharp.tsx @@ -8,4 +8,4 @@ const IconTableBarSharp: React.FC = ({ ...props }) => ( ) -export { IconTableBarSharp as default } +export default IconTableBarSharp diff --git a/src/IconTableBarSharpFilled.tsx b/src/IconTableBarSharpFilled.tsx index 6bdb708af..18a2884de 100644 --- a/src/IconTableBarSharpFilled.tsx +++ b/src/IconTableBarSharpFilled.tsx @@ -8,4 +8,4 @@ const IconTableBarSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconTableBarSharpFilled as default } +export default IconTableBarSharpFilled diff --git a/src/IconTableChartOutlined.tsx b/src/IconTableChartOutlined.tsx index bb3016bde..be4135567 100644 --- a/src/IconTableChartOutlined.tsx +++ b/src/IconTableChartOutlined.tsx @@ -8,4 +8,4 @@ const IconTableChartOutlined: React.FC = ({ ...props }) => ( ) -export { IconTableChartOutlined as default } +export default IconTableChartOutlined diff --git a/src/IconTableChartOutlinedFilled.tsx b/src/IconTableChartOutlinedFilled.tsx index 19555b8a8..ba95d3214 100644 --- a/src/IconTableChartOutlinedFilled.tsx +++ b/src/IconTableChartOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconTableChartOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconTableChartOutlinedFilled as default } +export default IconTableChartOutlinedFilled diff --git a/src/IconTableChartRounded.tsx b/src/IconTableChartRounded.tsx index 912252783..152b5640e 100644 --- a/src/IconTableChartRounded.tsx +++ b/src/IconTableChartRounded.tsx @@ -8,4 +8,4 @@ const IconTableChartRounded: React.FC = ({ ...props }) => ( ) -export { IconTableChartRounded as default } +export default IconTableChartRounded diff --git a/src/IconTableChartRoundedFilled.tsx b/src/IconTableChartRoundedFilled.tsx index 2ab9f990c..9affe91b9 100644 --- a/src/IconTableChartRoundedFilled.tsx +++ b/src/IconTableChartRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconTableChartRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconTableChartRoundedFilled as default } +export default IconTableChartRoundedFilled diff --git a/src/IconTableChartSharp.tsx b/src/IconTableChartSharp.tsx index b48abac14..b09904937 100644 --- a/src/IconTableChartSharp.tsx +++ b/src/IconTableChartSharp.tsx @@ -8,4 +8,4 @@ const IconTableChartSharp: React.FC = ({ ...props }) => ( ) -export { IconTableChartSharp as default } +export default IconTableChartSharp diff --git a/src/IconTableChartSharpFilled.tsx b/src/IconTableChartSharpFilled.tsx index 95c9858dd..b9968d4fd 100644 --- a/src/IconTableChartSharpFilled.tsx +++ b/src/IconTableChartSharpFilled.tsx @@ -8,4 +8,4 @@ const IconTableChartSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconTableChartSharpFilled as default } +export default IconTableChartSharpFilled diff --git a/src/IconTableChartViewOutlined.tsx b/src/IconTableChartViewOutlined.tsx index cddd54e34..043ce9be5 100644 --- a/src/IconTableChartViewOutlined.tsx +++ b/src/IconTableChartViewOutlined.tsx @@ -8,4 +8,4 @@ const IconTableChartViewOutlined: React.FC = ({ ...props }) => ( ) -export { IconTableChartViewOutlined as default } +export default IconTableChartViewOutlined diff --git a/src/IconTableChartViewOutlinedFilled.tsx b/src/IconTableChartViewOutlinedFilled.tsx index 03e534262..18f2c983f 100644 --- a/src/IconTableChartViewOutlinedFilled.tsx +++ b/src/IconTableChartViewOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconTableChartViewOutlinedFilled: React.FC = ({ ) -export { IconTableChartViewOutlinedFilled as default } +export default IconTableChartViewOutlinedFilled diff --git a/src/IconTableChartViewRounded.tsx b/src/IconTableChartViewRounded.tsx index a463de74f..df1a5cf83 100644 --- a/src/IconTableChartViewRounded.tsx +++ b/src/IconTableChartViewRounded.tsx @@ -8,4 +8,4 @@ const IconTableChartViewRounded: React.FC = ({ ...props }) => ( ) -export { IconTableChartViewRounded as default } +export default IconTableChartViewRounded diff --git a/src/IconTableChartViewRoundedFilled.tsx b/src/IconTableChartViewRoundedFilled.tsx index c64934b40..e7a1687e8 100644 --- a/src/IconTableChartViewRoundedFilled.tsx +++ b/src/IconTableChartViewRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconTableChartViewRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconTableChartViewRoundedFilled as default } +export default IconTableChartViewRoundedFilled diff --git a/src/IconTableChartViewSharp.tsx b/src/IconTableChartViewSharp.tsx index 2c7a8b130..f9bda7c4e 100644 --- a/src/IconTableChartViewSharp.tsx +++ b/src/IconTableChartViewSharp.tsx @@ -8,4 +8,4 @@ const IconTableChartViewSharp: React.FC = ({ ...props }) => ( ) -export { IconTableChartViewSharp as default } +export default IconTableChartViewSharp diff --git a/src/IconTableChartViewSharpFilled.tsx b/src/IconTableChartViewSharpFilled.tsx index 8f56dbe2b..77d344c06 100644 --- a/src/IconTableChartViewSharpFilled.tsx +++ b/src/IconTableChartViewSharpFilled.tsx @@ -8,4 +8,4 @@ const IconTableChartViewSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconTableChartViewSharpFilled as default } +export default IconTableChartViewSharpFilled diff --git a/src/IconTableEyeOutlined.tsx b/src/IconTableEyeOutlined.tsx index 0d5258868..dc9835385 100644 --- a/src/IconTableEyeOutlined.tsx +++ b/src/IconTableEyeOutlined.tsx @@ -8,4 +8,4 @@ const IconTableEyeOutlined: React.FC = ({ ...props }) => ( ) -export { IconTableEyeOutlined as default } +export default IconTableEyeOutlined diff --git a/src/IconTableEyeOutlinedFilled.tsx b/src/IconTableEyeOutlinedFilled.tsx index a1b429ce9..92aa37481 100644 --- a/src/IconTableEyeOutlinedFilled.tsx +++ b/src/IconTableEyeOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconTableEyeOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconTableEyeOutlinedFilled as default } +export default IconTableEyeOutlinedFilled diff --git a/src/IconTableEyeRounded.tsx b/src/IconTableEyeRounded.tsx index 367f30d30..419a975bd 100644 --- a/src/IconTableEyeRounded.tsx +++ b/src/IconTableEyeRounded.tsx @@ -8,4 +8,4 @@ const IconTableEyeRounded: React.FC = ({ ...props }) => ( ) -export { IconTableEyeRounded as default } +export default IconTableEyeRounded diff --git a/src/IconTableEyeRoundedFilled.tsx b/src/IconTableEyeRoundedFilled.tsx index b629716bd..aaf37ec8b 100644 --- a/src/IconTableEyeRoundedFilled.tsx +++ b/src/IconTableEyeRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconTableEyeRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconTableEyeRoundedFilled as default } +export default IconTableEyeRoundedFilled diff --git a/src/IconTableEyeSharp.tsx b/src/IconTableEyeSharp.tsx index c82026092..ffb721f29 100644 --- a/src/IconTableEyeSharp.tsx +++ b/src/IconTableEyeSharp.tsx @@ -8,4 +8,4 @@ const IconTableEyeSharp: React.FC = ({ ...props }) => ( ) -export { IconTableEyeSharp as default } +export default IconTableEyeSharp diff --git a/src/IconTableEyeSharpFilled.tsx b/src/IconTableEyeSharpFilled.tsx index 1909f958d..2935a4f76 100644 --- a/src/IconTableEyeSharpFilled.tsx +++ b/src/IconTableEyeSharpFilled.tsx @@ -8,4 +8,4 @@ const IconTableEyeSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconTableEyeSharpFilled as default } +export default IconTableEyeSharpFilled diff --git a/src/IconTableLampOutlined.tsx b/src/IconTableLampOutlined.tsx index e24691c61..59f34e8c2 100644 --- a/src/IconTableLampOutlined.tsx +++ b/src/IconTableLampOutlined.tsx @@ -8,4 +8,4 @@ const IconTableLampOutlined: React.FC = ({ ...props }) => ( ) -export { IconTableLampOutlined as default } +export default IconTableLampOutlined diff --git a/src/IconTableLampOutlinedFilled.tsx b/src/IconTableLampOutlinedFilled.tsx index ee594bc70..0b9c0d4d7 100644 --- a/src/IconTableLampOutlinedFilled.tsx +++ b/src/IconTableLampOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconTableLampOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconTableLampOutlinedFilled as default } +export default IconTableLampOutlinedFilled diff --git a/src/IconTableLampRounded.tsx b/src/IconTableLampRounded.tsx index ad62c159e..d01c66ea1 100644 --- a/src/IconTableLampRounded.tsx +++ b/src/IconTableLampRounded.tsx @@ -8,4 +8,4 @@ const IconTableLampRounded: React.FC = ({ ...props }) => ( ) -export { IconTableLampRounded as default } +export default IconTableLampRounded diff --git a/src/IconTableLampRoundedFilled.tsx b/src/IconTableLampRoundedFilled.tsx index 427a3745b..b1e842b5d 100644 --- a/src/IconTableLampRoundedFilled.tsx +++ b/src/IconTableLampRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconTableLampRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconTableLampRoundedFilled as default } +export default IconTableLampRoundedFilled diff --git a/src/IconTableLampSharp.tsx b/src/IconTableLampSharp.tsx index 2d942700d..0f5863b26 100644 --- a/src/IconTableLampSharp.tsx +++ b/src/IconTableLampSharp.tsx @@ -8,4 +8,4 @@ const IconTableLampSharp: React.FC = ({ ...props }) => ( ) -export { IconTableLampSharp as default } +export default IconTableLampSharp diff --git a/src/IconTableLampSharpFilled.tsx b/src/IconTableLampSharpFilled.tsx index dde5a1c0b..28e81e467 100644 --- a/src/IconTableLampSharpFilled.tsx +++ b/src/IconTableLampSharpFilled.tsx @@ -8,4 +8,4 @@ const IconTableLampSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconTableLampSharpFilled as default } +export default IconTableLampSharpFilled diff --git a/src/IconTableOutlined.tsx b/src/IconTableOutlined.tsx index 7f2ec9033..d2e90f331 100644 --- a/src/IconTableOutlined.tsx +++ b/src/IconTableOutlined.tsx @@ -8,4 +8,4 @@ const IconTableOutlined: React.FC = ({ ...props }) => ( ) -export { IconTableOutlined as default } +export default IconTableOutlined diff --git a/src/IconTableOutlinedFilled.tsx b/src/IconTableOutlinedFilled.tsx index e0dda776b..af268986e 100644 --- a/src/IconTableOutlinedFilled.tsx +++ b/src/IconTableOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconTableOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconTableOutlinedFilled as default } +export default IconTableOutlinedFilled diff --git a/src/IconTableRestaurantOutlined.tsx b/src/IconTableRestaurantOutlined.tsx index 299a2222b..5931589b8 100644 --- a/src/IconTableRestaurantOutlined.tsx +++ b/src/IconTableRestaurantOutlined.tsx @@ -8,4 +8,4 @@ const IconTableRestaurantOutlined: React.FC = ({ ...props }) => ( ) -export { IconTableRestaurantOutlined as default } +export default IconTableRestaurantOutlined diff --git a/src/IconTableRestaurantOutlinedFilled.tsx b/src/IconTableRestaurantOutlinedFilled.tsx index 4af2267c8..9fe655920 100644 --- a/src/IconTableRestaurantOutlinedFilled.tsx +++ b/src/IconTableRestaurantOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconTableRestaurantOutlinedFilled: React.FC = ({ ) -export { IconTableRestaurantOutlinedFilled as default } +export default IconTableRestaurantOutlinedFilled diff --git a/src/IconTableRestaurantRounded.tsx b/src/IconTableRestaurantRounded.tsx index 965520731..d4522ed68 100644 --- a/src/IconTableRestaurantRounded.tsx +++ b/src/IconTableRestaurantRounded.tsx @@ -8,4 +8,4 @@ const IconTableRestaurantRounded: React.FC = ({ ...props }) => ( ) -export { IconTableRestaurantRounded as default } +export default IconTableRestaurantRounded diff --git a/src/IconTableRestaurantRoundedFilled.tsx b/src/IconTableRestaurantRoundedFilled.tsx index d95cfb7b3..c9f972c35 100644 --- a/src/IconTableRestaurantRoundedFilled.tsx +++ b/src/IconTableRestaurantRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconTableRestaurantRoundedFilled: React.FC = ({ ) -export { IconTableRestaurantRoundedFilled as default } +export default IconTableRestaurantRoundedFilled diff --git a/src/IconTableRestaurantSharp.tsx b/src/IconTableRestaurantSharp.tsx index f19cb891f..91afb4e8b 100644 --- a/src/IconTableRestaurantSharp.tsx +++ b/src/IconTableRestaurantSharp.tsx @@ -8,4 +8,4 @@ const IconTableRestaurantSharp: React.FC = ({ ...props }) => ( ) -export { IconTableRestaurantSharp as default } +export default IconTableRestaurantSharp diff --git a/src/IconTableRestaurantSharpFilled.tsx b/src/IconTableRestaurantSharpFilled.tsx index efb141df9..a87326b0c 100644 --- a/src/IconTableRestaurantSharpFilled.tsx +++ b/src/IconTableRestaurantSharpFilled.tsx @@ -8,4 +8,4 @@ const IconTableRestaurantSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconTableRestaurantSharpFilled as default } +export default IconTableRestaurantSharpFilled diff --git a/src/IconTableRounded.tsx b/src/IconTableRounded.tsx index 3e7927265..5f6aa73c6 100644 --- a/src/IconTableRounded.tsx +++ b/src/IconTableRounded.tsx @@ -8,4 +8,4 @@ const IconTableRounded: React.FC = ({ ...props }) => ( ) -export { IconTableRounded as default } +export default IconTableRounded diff --git a/src/IconTableRoundedFilled.tsx b/src/IconTableRoundedFilled.tsx index 8f26e73e6..5ea0dc33e 100644 --- a/src/IconTableRoundedFilled.tsx +++ b/src/IconTableRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconTableRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconTableRoundedFilled as default } +export default IconTableRoundedFilled diff --git a/src/IconTableRowsNarrowOutlined.tsx b/src/IconTableRowsNarrowOutlined.tsx index 26daa6d2a..2d10e5271 100644 --- a/src/IconTableRowsNarrowOutlined.tsx +++ b/src/IconTableRowsNarrowOutlined.tsx @@ -8,4 +8,4 @@ const IconTableRowsNarrowOutlined: React.FC = ({ ...props }) => ( ) -export { IconTableRowsNarrowOutlined as default } +export default IconTableRowsNarrowOutlined diff --git a/src/IconTableRowsNarrowOutlinedFilled.tsx b/src/IconTableRowsNarrowOutlinedFilled.tsx index eaabb179a..0820a063d 100644 --- a/src/IconTableRowsNarrowOutlinedFilled.tsx +++ b/src/IconTableRowsNarrowOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconTableRowsNarrowOutlinedFilled: React.FC = ({ ) -export { IconTableRowsNarrowOutlinedFilled as default } +export default IconTableRowsNarrowOutlinedFilled diff --git a/src/IconTableRowsNarrowRounded.tsx b/src/IconTableRowsNarrowRounded.tsx index 44a8ae28d..e7a1f9f5d 100644 --- a/src/IconTableRowsNarrowRounded.tsx +++ b/src/IconTableRowsNarrowRounded.tsx @@ -8,4 +8,4 @@ const IconTableRowsNarrowRounded: React.FC = ({ ...props }) => ( ) -export { IconTableRowsNarrowRounded as default } +export default IconTableRowsNarrowRounded diff --git a/src/IconTableRowsNarrowRoundedFilled.tsx b/src/IconTableRowsNarrowRoundedFilled.tsx index 924b154d7..4d7c11598 100644 --- a/src/IconTableRowsNarrowRoundedFilled.tsx +++ b/src/IconTableRowsNarrowRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconTableRowsNarrowRoundedFilled: React.FC = ({ ) -export { IconTableRowsNarrowRoundedFilled as default } +export default IconTableRowsNarrowRoundedFilled diff --git a/src/IconTableRowsNarrowSharp.tsx b/src/IconTableRowsNarrowSharp.tsx index b5f10e0fd..a44d4acdc 100644 --- a/src/IconTableRowsNarrowSharp.tsx +++ b/src/IconTableRowsNarrowSharp.tsx @@ -8,4 +8,4 @@ const IconTableRowsNarrowSharp: React.FC = ({ ...props }) => ( ) -export { IconTableRowsNarrowSharp as default } +export default IconTableRowsNarrowSharp diff --git a/src/IconTableRowsNarrowSharpFilled.tsx b/src/IconTableRowsNarrowSharpFilled.tsx index a6fd073db..2bead1010 100644 --- a/src/IconTableRowsNarrowSharpFilled.tsx +++ b/src/IconTableRowsNarrowSharpFilled.tsx @@ -8,4 +8,4 @@ const IconTableRowsNarrowSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconTableRowsNarrowSharpFilled as default } +export default IconTableRowsNarrowSharpFilled diff --git a/src/IconTableRowsOutlined.tsx b/src/IconTableRowsOutlined.tsx index 6244aa8b1..3b6f6f118 100644 --- a/src/IconTableRowsOutlined.tsx +++ b/src/IconTableRowsOutlined.tsx @@ -8,4 +8,4 @@ const IconTableRowsOutlined: React.FC = ({ ...props }) => ( ) -export { IconTableRowsOutlined as default } +export default IconTableRowsOutlined diff --git a/src/IconTableRowsOutlinedFilled.tsx b/src/IconTableRowsOutlinedFilled.tsx index ba316d4bb..d223f4160 100644 --- a/src/IconTableRowsOutlinedFilled.tsx +++ b/src/IconTableRowsOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconTableRowsOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconTableRowsOutlinedFilled as default } +export default IconTableRowsOutlinedFilled diff --git a/src/IconTableRowsRounded.tsx b/src/IconTableRowsRounded.tsx index 2d8bab1ff..34a14afb2 100644 --- a/src/IconTableRowsRounded.tsx +++ b/src/IconTableRowsRounded.tsx @@ -8,4 +8,4 @@ const IconTableRowsRounded: React.FC = ({ ...props }) => ( ) -export { IconTableRowsRounded as default } +export default IconTableRowsRounded diff --git a/src/IconTableRowsRoundedFilled.tsx b/src/IconTableRowsRoundedFilled.tsx index 85ec2882c..52de7220d 100644 --- a/src/IconTableRowsRoundedFilled.tsx +++ b/src/IconTableRowsRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconTableRowsRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconTableRowsRoundedFilled as default } +export default IconTableRowsRoundedFilled diff --git a/src/IconTableRowsSharp.tsx b/src/IconTableRowsSharp.tsx index 11ef6f196..121daf6fd 100644 --- a/src/IconTableRowsSharp.tsx +++ b/src/IconTableRowsSharp.tsx @@ -8,4 +8,4 @@ const IconTableRowsSharp: React.FC = ({ ...props }) => ( ) -export { IconTableRowsSharp as default } +export default IconTableRowsSharp diff --git a/src/IconTableRowsSharpFilled.tsx b/src/IconTableRowsSharpFilled.tsx index da16c1ba8..60b099ab4 100644 --- a/src/IconTableRowsSharpFilled.tsx +++ b/src/IconTableRowsSharpFilled.tsx @@ -8,4 +8,4 @@ const IconTableRowsSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconTableRowsSharpFilled as default } +export default IconTableRowsSharpFilled diff --git a/src/IconTableSharp.tsx b/src/IconTableSharp.tsx index 6ec6a8d1d..cf3f85afe 100644 --- a/src/IconTableSharp.tsx +++ b/src/IconTableSharp.tsx @@ -8,4 +8,4 @@ const IconTableSharp: React.FC = ({ ...props }) => ( ) -export { IconTableSharp as default } +export default IconTableSharp diff --git a/src/IconTableSharpFilled.tsx b/src/IconTableSharpFilled.tsx index 8ae17e0f5..740a29801 100644 --- a/src/IconTableSharpFilled.tsx +++ b/src/IconTableSharpFilled.tsx @@ -8,4 +8,4 @@ const IconTableSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconTableSharpFilled as default } +export default IconTableSharpFilled diff --git a/src/IconTableViewOutlined.tsx b/src/IconTableViewOutlined.tsx index fb6b7e8b3..e3aeead34 100644 --- a/src/IconTableViewOutlined.tsx +++ b/src/IconTableViewOutlined.tsx @@ -8,4 +8,4 @@ const IconTableViewOutlined: React.FC = ({ ...props }) => ( ) -export { IconTableViewOutlined as default } +export default IconTableViewOutlined diff --git a/src/IconTableViewOutlinedFilled.tsx b/src/IconTableViewOutlinedFilled.tsx index 5526cbd9d..25d018226 100644 --- a/src/IconTableViewOutlinedFilled.tsx +++ b/src/IconTableViewOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconTableViewOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconTableViewOutlinedFilled as default } +export default IconTableViewOutlinedFilled diff --git a/src/IconTableViewRounded.tsx b/src/IconTableViewRounded.tsx index a7d66d642..9d5dec54e 100644 --- a/src/IconTableViewRounded.tsx +++ b/src/IconTableViewRounded.tsx @@ -8,4 +8,4 @@ const IconTableViewRounded: React.FC = ({ ...props }) => ( ) -export { IconTableViewRounded as default } +export default IconTableViewRounded diff --git a/src/IconTableViewRoundedFilled.tsx b/src/IconTableViewRoundedFilled.tsx index 6a67fbd12..9d4b2d785 100644 --- a/src/IconTableViewRoundedFilled.tsx +++ b/src/IconTableViewRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconTableViewRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconTableViewRoundedFilled as default } +export default IconTableViewRoundedFilled diff --git a/src/IconTableViewSharp.tsx b/src/IconTableViewSharp.tsx index 861d29bcc..1edf1c55c 100644 --- a/src/IconTableViewSharp.tsx +++ b/src/IconTableViewSharp.tsx @@ -8,4 +8,4 @@ const IconTableViewSharp: React.FC = ({ ...props }) => ( ) -export { IconTableViewSharp as default } +export default IconTableViewSharp diff --git a/src/IconTableViewSharpFilled.tsx b/src/IconTableViewSharpFilled.tsx index 50ef4dffe..068bba752 100644 --- a/src/IconTableViewSharpFilled.tsx +++ b/src/IconTableViewSharpFilled.tsx @@ -8,4 +8,4 @@ const IconTableViewSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconTableViewSharpFilled as default } +export default IconTableViewSharpFilled diff --git a/src/IconTabletAndroidOutlined.tsx b/src/IconTabletAndroidOutlined.tsx index f73116cdd..2ac92abd2 100644 --- a/src/IconTabletAndroidOutlined.tsx +++ b/src/IconTabletAndroidOutlined.tsx @@ -8,4 +8,4 @@ const IconTabletAndroidOutlined: React.FC = ({ ...props }) => ( ) -export { IconTabletAndroidOutlined as default } +export default IconTabletAndroidOutlined diff --git a/src/IconTabletAndroidOutlinedFilled.tsx b/src/IconTabletAndroidOutlinedFilled.tsx index f90a9038a..6efd7f989 100644 --- a/src/IconTabletAndroidOutlinedFilled.tsx +++ b/src/IconTabletAndroidOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconTabletAndroidOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconTabletAndroidOutlinedFilled as default } +export default IconTabletAndroidOutlinedFilled diff --git a/src/IconTabletAndroidRounded.tsx b/src/IconTabletAndroidRounded.tsx index d5d161c02..f1cb35ed1 100644 --- a/src/IconTabletAndroidRounded.tsx +++ b/src/IconTabletAndroidRounded.tsx @@ -8,4 +8,4 @@ const IconTabletAndroidRounded: React.FC = ({ ...props }) => ( ) -export { IconTabletAndroidRounded as default } +export default IconTabletAndroidRounded diff --git a/src/IconTabletAndroidRoundedFilled.tsx b/src/IconTabletAndroidRoundedFilled.tsx index 3aa0c5b37..059d7bf64 100644 --- a/src/IconTabletAndroidRoundedFilled.tsx +++ b/src/IconTabletAndroidRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconTabletAndroidRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconTabletAndroidRoundedFilled as default } +export default IconTabletAndroidRoundedFilled diff --git a/src/IconTabletAndroidSharp.tsx b/src/IconTabletAndroidSharp.tsx index 7f89d9019..251bf8cf6 100644 --- a/src/IconTabletAndroidSharp.tsx +++ b/src/IconTabletAndroidSharp.tsx @@ -8,4 +8,4 @@ const IconTabletAndroidSharp: React.FC = ({ ...props }) => ( ) -export { IconTabletAndroidSharp as default } +export default IconTabletAndroidSharp diff --git a/src/IconTabletAndroidSharpFilled.tsx b/src/IconTabletAndroidSharpFilled.tsx index bb86f959e..f03537963 100644 --- a/src/IconTabletAndroidSharpFilled.tsx +++ b/src/IconTabletAndroidSharpFilled.tsx @@ -8,4 +8,4 @@ const IconTabletAndroidSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconTabletAndroidSharpFilled as default } +export default IconTabletAndroidSharpFilled diff --git a/src/IconTabletCameraOutlined.tsx b/src/IconTabletCameraOutlined.tsx index 1df1e7cd9..cdf329dd0 100644 --- a/src/IconTabletCameraOutlined.tsx +++ b/src/IconTabletCameraOutlined.tsx @@ -8,4 +8,4 @@ const IconTabletCameraOutlined: React.FC = ({ ...props }) => ( ) -export { IconTabletCameraOutlined as default } +export default IconTabletCameraOutlined diff --git a/src/IconTabletCameraOutlinedFilled.tsx b/src/IconTabletCameraOutlinedFilled.tsx index 6eaf68c7d..52881b874 100644 --- a/src/IconTabletCameraOutlinedFilled.tsx +++ b/src/IconTabletCameraOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconTabletCameraOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconTabletCameraOutlinedFilled as default } +export default IconTabletCameraOutlinedFilled diff --git a/src/IconTabletCameraRounded.tsx b/src/IconTabletCameraRounded.tsx index 413d14e8d..a859b2a68 100644 --- a/src/IconTabletCameraRounded.tsx +++ b/src/IconTabletCameraRounded.tsx @@ -8,4 +8,4 @@ const IconTabletCameraRounded: React.FC = ({ ...props }) => ( ) -export { IconTabletCameraRounded as default } +export default IconTabletCameraRounded diff --git a/src/IconTabletCameraRoundedFilled.tsx b/src/IconTabletCameraRoundedFilled.tsx index 1ffd42e9b..bbac3deb4 100644 --- a/src/IconTabletCameraRoundedFilled.tsx +++ b/src/IconTabletCameraRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconTabletCameraRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconTabletCameraRoundedFilled as default } +export default IconTabletCameraRoundedFilled diff --git a/src/IconTabletCameraSharp.tsx b/src/IconTabletCameraSharp.tsx index 818052072..dc44e9d8f 100644 --- a/src/IconTabletCameraSharp.tsx +++ b/src/IconTabletCameraSharp.tsx @@ -8,4 +8,4 @@ const IconTabletCameraSharp: React.FC = ({ ...props }) => ( ) -export { IconTabletCameraSharp as default } +export default IconTabletCameraSharp diff --git a/src/IconTabletCameraSharpFilled.tsx b/src/IconTabletCameraSharpFilled.tsx index 899974a89..74b7cb0f9 100644 --- a/src/IconTabletCameraSharpFilled.tsx +++ b/src/IconTabletCameraSharpFilled.tsx @@ -8,4 +8,4 @@ const IconTabletCameraSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconTabletCameraSharpFilled as default } +export default IconTabletCameraSharpFilled diff --git a/src/IconTabletMacOutlined.tsx b/src/IconTabletMacOutlined.tsx index b95ba5337..08fd70051 100644 --- a/src/IconTabletMacOutlined.tsx +++ b/src/IconTabletMacOutlined.tsx @@ -8,4 +8,4 @@ const IconTabletMacOutlined: React.FC = ({ ...props }) => ( ) -export { IconTabletMacOutlined as default } +export default IconTabletMacOutlined diff --git a/src/IconTabletMacOutlinedFilled.tsx b/src/IconTabletMacOutlinedFilled.tsx index 929618d21..46391f846 100644 --- a/src/IconTabletMacOutlinedFilled.tsx +++ b/src/IconTabletMacOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconTabletMacOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconTabletMacOutlinedFilled as default } +export default IconTabletMacOutlinedFilled diff --git a/src/IconTabletMacRounded.tsx b/src/IconTabletMacRounded.tsx index 10e3be636..2b7b4ec67 100644 --- a/src/IconTabletMacRounded.tsx +++ b/src/IconTabletMacRounded.tsx @@ -8,4 +8,4 @@ const IconTabletMacRounded: React.FC = ({ ...props }) => ( ) -export { IconTabletMacRounded as default } +export default IconTabletMacRounded diff --git a/src/IconTabletMacRoundedFilled.tsx b/src/IconTabletMacRoundedFilled.tsx index 9cecc0bb5..f7ec3f814 100644 --- a/src/IconTabletMacRoundedFilled.tsx +++ b/src/IconTabletMacRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconTabletMacRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconTabletMacRoundedFilled as default } +export default IconTabletMacRoundedFilled diff --git a/src/IconTabletMacSharp.tsx b/src/IconTabletMacSharp.tsx index 7be6a8a5d..905c00478 100644 --- a/src/IconTabletMacSharp.tsx +++ b/src/IconTabletMacSharp.tsx @@ -8,4 +8,4 @@ const IconTabletMacSharp: React.FC = ({ ...props }) => ( ) -export { IconTabletMacSharp as default } +export default IconTabletMacSharp diff --git a/src/IconTabletMacSharpFilled.tsx b/src/IconTabletMacSharpFilled.tsx index 0095f5d1c..dacf99abe 100644 --- a/src/IconTabletMacSharpFilled.tsx +++ b/src/IconTabletMacSharpFilled.tsx @@ -8,4 +8,4 @@ const IconTabletMacSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconTabletMacSharpFilled as default } +export default IconTabletMacSharpFilled diff --git a/src/IconTabletOutlined.tsx b/src/IconTabletOutlined.tsx index b1aa6cda2..786faed2c 100644 --- a/src/IconTabletOutlined.tsx +++ b/src/IconTabletOutlined.tsx @@ -8,4 +8,4 @@ const IconTabletOutlined: React.FC = ({ ...props }) => ( ) -export { IconTabletOutlined as default } +export default IconTabletOutlined diff --git a/src/IconTabletOutlinedFilled.tsx b/src/IconTabletOutlinedFilled.tsx index 1e641b99b..2319aab93 100644 --- a/src/IconTabletOutlinedFilled.tsx +++ b/src/IconTabletOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconTabletOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconTabletOutlinedFilled as default } +export default IconTabletOutlinedFilled diff --git a/src/IconTabletRounded.tsx b/src/IconTabletRounded.tsx index ed50acba4..f63dc25a1 100644 --- a/src/IconTabletRounded.tsx +++ b/src/IconTabletRounded.tsx @@ -8,4 +8,4 @@ const IconTabletRounded: React.FC = ({ ...props }) => ( ) -export { IconTabletRounded as default } +export default IconTabletRounded diff --git a/src/IconTabletRoundedFilled.tsx b/src/IconTabletRoundedFilled.tsx index 6f87aadde..762b8503b 100644 --- a/src/IconTabletRoundedFilled.tsx +++ b/src/IconTabletRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconTabletRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconTabletRoundedFilled as default } +export default IconTabletRoundedFilled diff --git a/src/IconTabletSharp.tsx b/src/IconTabletSharp.tsx index 152ba663f..0fb58cb73 100644 --- a/src/IconTabletSharp.tsx +++ b/src/IconTabletSharp.tsx @@ -8,4 +8,4 @@ const IconTabletSharp: React.FC = ({ ...props }) => ( ) -export { IconTabletSharp as default } +export default IconTabletSharp diff --git a/src/IconTabletSharpFilled.tsx b/src/IconTabletSharpFilled.tsx index c86286437..968c7bd9e 100644 --- a/src/IconTabletSharpFilled.tsx +++ b/src/IconTabletSharpFilled.tsx @@ -8,4 +8,4 @@ const IconTabletSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconTabletSharpFilled as default } +export default IconTabletSharpFilled diff --git a/src/IconTabsOutlined.tsx b/src/IconTabsOutlined.tsx index 44cd4e408..2093f3907 100644 --- a/src/IconTabsOutlined.tsx +++ b/src/IconTabsOutlined.tsx @@ -8,4 +8,4 @@ const IconTabsOutlined: React.FC = ({ ...props }) => ( ) -export { IconTabsOutlined as default } +export default IconTabsOutlined diff --git a/src/IconTabsOutlinedFilled.tsx b/src/IconTabsOutlinedFilled.tsx index 84f0f358d..e109e80f0 100644 --- a/src/IconTabsOutlinedFilled.tsx +++ b/src/IconTabsOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconTabsOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconTabsOutlinedFilled as default } +export default IconTabsOutlinedFilled diff --git a/src/IconTabsRounded.tsx b/src/IconTabsRounded.tsx index e538ab670..af10ae181 100644 --- a/src/IconTabsRounded.tsx +++ b/src/IconTabsRounded.tsx @@ -8,4 +8,4 @@ const IconTabsRounded: React.FC = ({ ...props }) => ( ) -export { IconTabsRounded as default } +export default IconTabsRounded diff --git a/src/IconTabsRoundedFilled.tsx b/src/IconTabsRoundedFilled.tsx index 7e18bcb98..ac4020756 100644 --- a/src/IconTabsRoundedFilled.tsx +++ b/src/IconTabsRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconTabsRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconTabsRoundedFilled as default } +export default IconTabsRoundedFilled diff --git a/src/IconTabsSharp.tsx b/src/IconTabsSharp.tsx index 70aa963f2..3ad7a8ee1 100644 --- a/src/IconTabsSharp.tsx +++ b/src/IconTabsSharp.tsx @@ -8,4 +8,4 @@ const IconTabsSharp: React.FC = ({ ...props }) => ( ) -export { IconTabsSharp as default } +export default IconTabsSharp diff --git a/src/IconTabsSharpFilled.tsx b/src/IconTabsSharpFilled.tsx index cbe835ad7..eb7647d1e 100644 --- a/src/IconTabsSharpFilled.tsx +++ b/src/IconTabsSharpFilled.tsx @@ -8,4 +8,4 @@ const IconTabsSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconTabsSharpFilled as default } +export default IconTabsSharpFilled diff --git a/src/IconTacticOutlined.tsx b/src/IconTacticOutlined.tsx index 512f2f54f..9e01cde72 100644 --- a/src/IconTacticOutlined.tsx +++ b/src/IconTacticOutlined.tsx @@ -8,4 +8,4 @@ const IconTacticOutlined: React.FC = ({ ...props }) => ( ) -export { IconTacticOutlined as default } +export default IconTacticOutlined diff --git a/src/IconTacticOutlinedFilled.tsx b/src/IconTacticOutlinedFilled.tsx index 01cc25847..0ec5ffe51 100644 --- a/src/IconTacticOutlinedFilled.tsx +++ b/src/IconTacticOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconTacticOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconTacticOutlinedFilled as default } +export default IconTacticOutlinedFilled diff --git a/src/IconTacticRounded.tsx b/src/IconTacticRounded.tsx index b8f53d576..eaa39d2e6 100644 --- a/src/IconTacticRounded.tsx +++ b/src/IconTacticRounded.tsx @@ -8,4 +8,4 @@ const IconTacticRounded: React.FC = ({ ...props }) => ( ) -export { IconTacticRounded as default } +export default IconTacticRounded diff --git a/src/IconTacticRoundedFilled.tsx b/src/IconTacticRoundedFilled.tsx index 9ba379e6e..1b6238419 100644 --- a/src/IconTacticRoundedFilled.tsx +++ b/src/IconTacticRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconTacticRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconTacticRoundedFilled as default } +export default IconTacticRoundedFilled diff --git a/src/IconTacticSharp.tsx b/src/IconTacticSharp.tsx index 36231e3db..25839ae72 100644 --- a/src/IconTacticSharp.tsx +++ b/src/IconTacticSharp.tsx @@ -8,4 +8,4 @@ const IconTacticSharp: React.FC = ({ ...props }) => ( ) -export { IconTacticSharp as default } +export default IconTacticSharp diff --git a/src/IconTacticSharpFilled.tsx b/src/IconTacticSharpFilled.tsx index b29e98053..6be556428 100644 --- a/src/IconTacticSharpFilled.tsx +++ b/src/IconTacticSharpFilled.tsx @@ -8,4 +8,4 @@ const IconTacticSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconTacticSharpFilled as default } +export default IconTacticSharpFilled diff --git a/src/IconTagOutlined.tsx b/src/IconTagOutlined.tsx index 363626201..0a3e5857d 100644 --- a/src/IconTagOutlined.tsx +++ b/src/IconTagOutlined.tsx @@ -8,4 +8,4 @@ const IconTagOutlined: React.FC = ({ ...props }) => ( ) -export { IconTagOutlined as default } +export default IconTagOutlined diff --git a/src/IconTagOutlinedFilled.tsx b/src/IconTagOutlinedFilled.tsx index f75017723..fc2ea05c3 100644 --- a/src/IconTagOutlinedFilled.tsx +++ b/src/IconTagOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconTagOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconTagOutlinedFilled as default } +export default IconTagOutlinedFilled diff --git a/src/IconTagRounded.tsx b/src/IconTagRounded.tsx index d49fb2288..0706eddb8 100644 --- a/src/IconTagRounded.tsx +++ b/src/IconTagRounded.tsx @@ -8,4 +8,4 @@ const IconTagRounded: React.FC = ({ ...props }) => ( ) -export { IconTagRounded as default } +export default IconTagRounded diff --git a/src/IconTagRoundedFilled.tsx b/src/IconTagRoundedFilled.tsx index aba858f52..81bf7479a 100644 --- a/src/IconTagRoundedFilled.tsx +++ b/src/IconTagRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconTagRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconTagRoundedFilled as default } +export default IconTagRoundedFilled diff --git a/src/IconTagSharp.tsx b/src/IconTagSharp.tsx index 870b6319f..c27410135 100644 --- a/src/IconTagSharp.tsx +++ b/src/IconTagSharp.tsx @@ -8,4 +8,4 @@ const IconTagSharp: React.FC = ({ ...props }) => ( ) -export { IconTagSharp as default } +export default IconTagSharp diff --git a/src/IconTagSharpFilled.tsx b/src/IconTagSharpFilled.tsx index 99f57976f..fbbe835a5 100644 --- a/src/IconTagSharpFilled.tsx +++ b/src/IconTagSharpFilled.tsx @@ -8,4 +8,4 @@ const IconTagSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconTagSharpFilled as default } +export default IconTagSharpFilled diff --git a/src/IconTakeoutDiningOutlined.tsx b/src/IconTakeoutDiningOutlined.tsx index 3c85868f5..4f41d1910 100644 --- a/src/IconTakeoutDiningOutlined.tsx +++ b/src/IconTakeoutDiningOutlined.tsx @@ -8,4 +8,4 @@ const IconTakeoutDiningOutlined: React.FC = ({ ...props }) => ( ) -export { IconTakeoutDiningOutlined as default } +export default IconTakeoutDiningOutlined diff --git a/src/IconTakeoutDiningOutlinedFilled.tsx b/src/IconTakeoutDiningOutlinedFilled.tsx index 5d5294da5..a3a96af16 100644 --- a/src/IconTakeoutDiningOutlinedFilled.tsx +++ b/src/IconTakeoutDiningOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconTakeoutDiningOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconTakeoutDiningOutlinedFilled as default } +export default IconTakeoutDiningOutlinedFilled diff --git a/src/IconTakeoutDiningRounded.tsx b/src/IconTakeoutDiningRounded.tsx index d6b79064f..eeb785792 100644 --- a/src/IconTakeoutDiningRounded.tsx +++ b/src/IconTakeoutDiningRounded.tsx @@ -8,4 +8,4 @@ const IconTakeoutDiningRounded: React.FC = ({ ...props }) => ( ) -export { IconTakeoutDiningRounded as default } +export default IconTakeoutDiningRounded diff --git a/src/IconTakeoutDiningRoundedFilled.tsx b/src/IconTakeoutDiningRoundedFilled.tsx index 7b859a323..9ece7eb23 100644 --- a/src/IconTakeoutDiningRoundedFilled.tsx +++ b/src/IconTakeoutDiningRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconTakeoutDiningRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconTakeoutDiningRoundedFilled as default } +export default IconTakeoutDiningRoundedFilled diff --git a/src/IconTakeoutDiningSharp.tsx b/src/IconTakeoutDiningSharp.tsx index ce8fb6b9f..20be17a86 100644 --- a/src/IconTakeoutDiningSharp.tsx +++ b/src/IconTakeoutDiningSharp.tsx @@ -8,4 +8,4 @@ const IconTakeoutDiningSharp: React.FC = ({ ...props }) => ( ) -export { IconTakeoutDiningSharp as default } +export default IconTakeoutDiningSharp diff --git a/src/IconTakeoutDiningSharpFilled.tsx b/src/IconTakeoutDiningSharpFilled.tsx index 97636bdd8..ea39bc630 100644 --- a/src/IconTakeoutDiningSharpFilled.tsx +++ b/src/IconTakeoutDiningSharpFilled.tsx @@ -8,4 +8,4 @@ const IconTakeoutDiningSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconTakeoutDiningSharpFilled as default } +export default IconTakeoutDiningSharpFilled diff --git a/src/IconTamperDetectionOffOutlined.tsx b/src/IconTamperDetectionOffOutlined.tsx index 594e573b5..c6203dbb0 100644 --- a/src/IconTamperDetectionOffOutlined.tsx +++ b/src/IconTamperDetectionOffOutlined.tsx @@ -8,4 +8,4 @@ const IconTamperDetectionOffOutlined: React.FC = ({ ...props }) => ( ) -export { IconTamperDetectionOffOutlined as default } +export default IconTamperDetectionOffOutlined diff --git a/src/IconTamperDetectionOffOutlinedFilled.tsx b/src/IconTamperDetectionOffOutlinedFilled.tsx index 625dd8ae2..303c449bf 100644 --- a/src/IconTamperDetectionOffOutlinedFilled.tsx +++ b/src/IconTamperDetectionOffOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconTamperDetectionOffOutlinedFilled: React.FC = ({ ) -export { IconTamperDetectionOffOutlinedFilled as default } +export default IconTamperDetectionOffOutlinedFilled diff --git a/src/IconTamperDetectionOffRounded.tsx b/src/IconTamperDetectionOffRounded.tsx index e1b68fd9c..241314356 100644 --- a/src/IconTamperDetectionOffRounded.tsx +++ b/src/IconTamperDetectionOffRounded.tsx @@ -8,4 +8,4 @@ const IconTamperDetectionOffRounded: React.FC = ({ ...props }) => ( ) -export { IconTamperDetectionOffRounded as default } +export default IconTamperDetectionOffRounded diff --git a/src/IconTamperDetectionOffRoundedFilled.tsx b/src/IconTamperDetectionOffRoundedFilled.tsx index e76a73016..2904235fd 100644 --- a/src/IconTamperDetectionOffRoundedFilled.tsx +++ b/src/IconTamperDetectionOffRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconTamperDetectionOffRoundedFilled: React.FC = ({ ) -export { IconTamperDetectionOffRoundedFilled as default } +export default IconTamperDetectionOffRoundedFilled diff --git a/src/IconTamperDetectionOffSharp.tsx b/src/IconTamperDetectionOffSharp.tsx index ea10d82ca..6ea302f90 100644 --- a/src/IconTamperDetectionOffSharp.tsx +++ b/src/IconTamperDetectionOffSharp.tsx @@ -8,4 +8,4 @@ const IconTamperDetectionOffSharp: React.FC = ({ ...props }) => ( ) -export { IconTamperDetectionOffSharp as default } +export default IconTamperDetectionOffSharp diff --git a/src/IconTamperDetectionOffSharpFilled.tsx b/src/IconTamperDetectionOffSharpFilled.tsx index 4725f88b7..a39f19828 100644 --- a/src/IconTamperDetectionOffSharpFilled.tsx +++ b/src/IconTamperDetectionOffSharpFilled.tsx @@ -10,4 +10,4 @@ const IconTamperDetectionOffSharpFilled: React.FC = ({ ) -export { IconTamperDetectionOffSharpFilled as default } +export default IconTamperDetectionOffSharpFilled diff --git a/src/IconTamperDetectionOnOutlined.tsx b/src/IconTamperDetectionOnOutlined.tsx index a88db3067..1e5abd13b 100644 --- a/src/IconTamperDetectionOnOutlined.tsx +++ b/src/IconTamperDetectionOnOutlined.tsx @@ -8,4 +8,4 @@ const IconTamperDetectionOnOutlined: React.FC = ({ ...props }) => ( ) -export { IconTamperDetectionOnOutlined as default } +export default IconTamperDetectionOnOutlined diff --git a/src/IconTamperDetectionOnOutlinedFilled.tsx b/src/IconTamperDetectionOnOutlinedFilled.tsx index d5f59513b..1a00f73d3 100644 --- a/src/IconTamperDetectionOnOutlinedFilled.tsx +++ b/src/IconTamperDetectionOnOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconTamperDetectionOnOutlinedFilled: React.FC = ({ ) -export { IconTamperDetectionOnOutlinedFilled as default } +export default IconTamperDetectionOnOutlinedFilled diff --git a/src/IconTamperDetectionOnRounded.tsx b/src/IconTamperDetectionOnRounded.tsx index e22d18614..89d2fa2aa 100644 --- a/src/IconTamperDetectionOnRounded.tsx +++ b/src/IconTamperDetectionOnRounded.tsx @@ -8,4 +8,4 @@ const IconTamperDetectionOnRounded: React.FC = ({ ...props }) => ( ) -export { IconTamperDetectionOnRounded as default } +export default IconTamperDetectionOnRounded diff --git a/src/IconTamperDetectionOnRoundedFilled.tsx b/src/IconTamperDetectionOnRoundedFilled.tsx index 9a57f60fc..825139615 100644 --- a/src/IconTamperDetectionOnRoundedFilled.tsx +++ b/src/IconTamperDetectionOnRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconTamperDetectionOnRoundedFilled: React.FC = ({ ) -export { IconTamperDetectionOnRoundedFilled as default } +export default IconTamperDetectionOnRoundedFilled diff --git a/src/IconTamperDetectionOnSharp.tsx b/src/IconTamperDetectionOnSharp.tsx index abe0d783f..483390816 100644 --- a/src/IconTamperDetectionOnSharp.tsx +++ b/src/IconTamperDetectionOnSharp.tsx @@ -8,4 +8,4 @@ const IconTamperDetectionOnSharp: React.FC = ({ ...props }) => ( ) -export { IconTamperDetectionOnSharp as default } +export default IconTamperDetectionOnSharp diff --git a/src/IconTamperDetectionOnSharpFilled.tsx b/src/IconTamperDetectionOnSharpFilled.tsx index 9817caac5..0a26dee6e 100644 --- a/src/IconTamperDetectionOnSharpFilled.tsx +++ b/src/IconTamperDetectionOnSharpFilled.tsx @@ -10,4 +10,4 @@ const IconTamperDetectionOnSharpFilled: React.FC = ({ ) -export { IconTamperDetectionOnSharpFilled as default } +export default IconTamperDetectionOnSharpFilled diff --git a/src/IconTapAndPlayOutlined.tsx b/src/IconTapAndPlayOutlined.tsx index a849919ca..a7b9cd8f6 100644 --- a/src/IconTapAndPlayOutlined.tsx +++ b/src/IconTapAndPlayOutlined.tsx @@ -8,4 +8,4 @@ const IconTapAndPlayOutlined: React.FC = ({ ...props }) => ( ) -export { IconTapAndPlayOutlined as default } +export default IconTapAndPlayOutlined diff --git a/src/IconTapAndPlayOutlinedFilled.tsx b/src/IconTapAndPlayOutlinedFilled.tsx index 80cc59857..01a3fc2dc 100644 --- a/src/IconTapAndPlayOutlinedFilled.tsx +++ b/src/IconTapAndPlayOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconTapAndPlayOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconTapAndPlayOutlinedFilled as default } +export default IconTapAndPlayOutlinedFilled diff --git a/src/IconTapAndPlayRounded.tsx b/src/IconTapAndPlayRounded.tsx index 4e0364676..9f858df26 100644 --- a/src/IconTapAndPlayRounded.tsx +++ b/src/IconTapAndPlayRounded.tsx @@ -8,4 +8,4 @@ const IconTapAndPlayRounded: React.FC = ({ ...props }) => ( ) -export { IconTapAndPlayRounded as default } +export default IconTapAndPlayRounded diff --git a/src/IconTapAndPlayRoundedFilled.tsx b/src/IconTapAndPlayRoundedFilled.tsx index fcc1ac198..a54f4568f 100644 --- a/src/IconTapAndPlayRoundedFilled.tsx +++ b/src/IconTapAndPlayRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconTapAndPlayRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconTapAndPlayRoundedFilled as default } +export default IconTapAndPlayRoundedFilled diff --git a/src/IconTapAndPlaySharp.tsx b/src/IconTapAndPlaySharp.tsx index cad059eab..21f244156 100644 --- a/src/IconTapAndPlaySharp.tsx +++ b/src/IconTapAndPlaySharp.tsx @@ -8,4 +8,4 @@ const IconTapAndPlaySharp: React.FC = ({ ...props }) => ( ) -export { IconTapAndPlaySharp as default } +export default IconTapAndPlaySharp diff --git a/src/IconTapAndPlaySharpFilled.tsx b/src/IconTapAndPlaySharpFilled.tsx index c40c92914..3a4b44e38 100644 --- a/src/IconTapAndPlaySharpFilled.tsx +++ b/src/IconTapAndPlaySharpFilled.tsx @@ -8,4 +8,4 @@ const IconTapAndPlaySharpFilled: React.FC = ({ ...props }) => ( ) -export { IconTapAndPlaySharpFilled as default } +export default IconTapAndPlaySharpFilled diff --git a/src/IconTapasOutlined.tsx b/src/IconTapasOutlined.tsx index b1cf168dc..b87cebbd3 100644 --- a/src/IconTapasOutlined.tsx +++ b/src/IconTapasOutlined.tsx @@ -8,4 +8,4 @@ const IconTapasOutlined: React.FC = ({ ...props }) => ( ) -export { IconTapasOutlined as default } +export default IconTapasOutlined diff --git a/src/IconTapasOutlinedFilled.tsx b/src/IconTapasOutlinedFilled.tsx index 9d3bf698c..ad7cf378a 100644 --- a/src/IconTapasOutlinedFilled.tsx +++ b/src/IconTapasOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconTapasOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconTapasOutlinedFilled as default } +export default IconTapasOutlinedFilled diff --git a/src/IconTapasRounded.tsx b/src/IconTapasRounded.tsx index f4c383cd3..f36499efb 100644 --- a/src/IconTapasRounded.tsx +++ b/src/IconTapasRounded.tsx @@ -8,4 +8,4 @@ const IconTapasRounded: React.FC = ({ ...props }) => ( ) -export { IconTapasRounded as default } +export default IconTapasRounded diff --git a/src/IconTapasRoundedFilled.tsx b/src/IconTapasRoundedFilled.tsx index 3da16a1b0..60ffe8248 100644 --- a/src/IconTapasRoundedFilled.tsx +++ b/src/IconTapasRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconTapasRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconTapasRoundedFilled as default } +export default IconTapasRoundedFilled diff --git a/src/IconTapasSharp.tsx b/src/IconTapasSharp.tsx index dfdeb9a73..042dc03d5 100644 --- a/src/IconTapasSharp.tsx +++ b/src/IconTapasSharp.tsx @@ -8,4 +8,4 @@ const IconTapasSharp: React.FC = ({ ...props }) => ( ) -export { IconTapasSharp as default } +export default IconTapasSharp diff --git a/src/IconTapasSharpFilled.tsx b/src/IconTapasSharpFilled.tsx index a9dbb7c80..49a617841 100644 --- a/src/IconTapasSharpFilled.tsx +++ b/src/IconTapasSharpFilled.tsx @@ -8,4 +8,4 @@ const IconTapasSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconTapasSharpFilled as default } +export default IconTapasSharpFilled diff --git a/src/IconTargetOutlined.tsx b/src/IconTargetOutlined.tsx index 76274e84c..21a3ce542 100644 --- a/src/IconTargetOutlined.tsx +++ b/src/IconTargetOutlined.tsx @@ -8,4 +8,4 @@ const IconTargetOutlined: React.FC = ({ ...props }) => ( ) -export { IconTargetOutlined as default } +export default IconTargetOutlined diff --git a/src/IconTargetOutlinedFilled.tsx b/src/IconTargetOutlinedFilled.tsx index 470941914..4e84b9ec6 100644 --- a/src/IconTargetOutlinedFilled.tsx +++ b/src/IconTargetOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconTargetOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconTargetOutlinedFilled as default } +export default IconTargetOutlinedFilled diff --git a/src/IconTargetRounded.tsx b/src/IconTargetRounded.tsx index 05c3e067d..4280562b4 100644 --- a/src/IconTargetRounded.tsx +++ b/src/IconTargetRounded.tsx @@ -8,4 +8,4 @@ const IconTargetRounded: React.FC = ({ ...props }) => ( ) -export { IconTargetRounded as default } +export default IconTargetRounded diff --git a/src/IconTargetRoundedFilled.tsx b/src/IconTargetRoundedFilled.tsx index 64f0e48b4..f997699af 100644 --- a/src/IconTargetRoundedFilled.tsx +++ b/src/IconTargetRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconTargetRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconTargetRoundedFilled as default } +export default IconTargetRoundedFilled diff --git a/src/IconTargetSharp.tsx b/src/IconTargetSharp.tsx index d188c32cd..68990b587 100644 --- a/src/IconTargetSharp.tsx +++ b/src/IconTargetSharp.tsx @@ -8,4 +8,4 @@ const IconTargetSharp: React.FC = ({ ...props }) => ( ) -export { IconTargetSharp as default } +export default IconTargetSharp diff --git a/src/IconTargetSharpFilled.tsx b/src/IconTargetSharpFilled.tsx index bb24ec15a..6805a0a0f 100644 --- a/src/IconTargetSharpFilled.tsx +++ b/src/IconTargetSharpFilled.tsx @@ -8,4 +8,4 @@ const IconTargetSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconTargetSharpFilled as default } +export default IconTargetSharpFilled diff --git a/src/IconTaskAltOutlined.tsx b/src/IconTaskAltOutlined.tsx index f13cbbea3..8dce8c111 100644 --- a/src/IconTaskAltOutlined.tsx +++ b/src/IconTaskAltOutlined.tsx @@ -8,4 +8,4 @@ const IconTaskAltOutlined: React.FC = ({ ...props }) => ( ) -export { IconTaskAltOutlined as default } +export default IconTaskAltOutlined diff --git a/src/IconTaskAltOutlinedFilled.tsx b/src/IconTaskAltOutlinedFilled.tsx index e10cb7802..e06d260ee 100644 --- a/src/IconTaskAltOutlinedFilled.tsx +++ b/src/IconTaskAltOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconTaskAltOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconTaskAltOutlinedFilled as default } +export default IconTaskAltOutlinedFilled diff --git a/src/IconTaskAltRounded.tsx b/src/IconTaskAltRounded.tsx index 1640d4282..432ffc8f6 100644 --- a/src/IconTaskAltRounded.tsx +++ b/src/IconTaskAltRounded.tsx @@ -8,4 +8,4 @@ const IconTaskAltRounded: React.FC = ({ ...props }) => ( ) -export { IconTaskAltRounded as default } +export default IconTaskAltRounded diff --git a/src/IconTaskAltRoundedFilled.tsx b/src/IconTaskAltRoundedFilled.tsx index 0a097513f..d6a6beac4 100644 --- a/src/IconTaskAltRoundedFilled.tsx +++ b/src/IconTaskAltRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconTaskAltRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconTaskAltRoundedFilled as default } +export default IconTaskAltRoundedFilled diff --git a/src/IconTaskAltSharp.tsx b/src/IconTaskAltSharp.tsx index c2a319a9f..b2a10ac25 100644 --- a/src/IconTaskAltSharp.tsx +++ b/src/IconTaskAltSharp.tsx @@ -8,4 +8,4 @@ const IconTaskAltSharp: React.FC = ({ ...props }) => ( ) -export { IconTaskAltSharp as default } +export default IconTaskAltSharp diff --git a/src/IconTaskAltSharpFilled.tsx b/src/IconTaskAltSharpFilled.tsx index 8db74cf64..d838c2f68 100644 --- a/src/IconTaskAltSharpFilled.tsx +++ b/src/IconTaskAltSharpFilled.tsx @@ -8,4 +8,4 @@ const IconTaskAltSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconTaskAltSharpFilled as default } +export default IconTaskAltSharpFilled diff --git a/src/IconTaskOutlined.tsx b/src/IconTaskOutlined.tsx index 404800462..8343c3dd2 100644 --- a/src/IconTaskOutlined.tsx +++ b/src/IconTaskOutlined.tsx @@ -8,4 +8,4 @@ const IconTaskOutlined: React.FC = ({ ...props }) => ( ) -export { IconTaskOutlined as default } +export default IconTaskOutlined diff --git a/src/IconTaskOutlinedFilled.tsx b/src/IconTaskOutlinedFilled.tsx index 40b057094..6ac15403a 100644 --- a/src/IconTaskOutlinedFilled.tsx +++ b/src/IconTaskOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconTaskOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconTaskOutlinedFilled as default } +export default IconTaskOutlinedFilled diff --git a/src/IconTaskRounded.tsx b/src/IconTaskRounded.tsx index bd165e6cf..6aa154bd7 100644 --- a/src/IconTaskRounded.tsx +++ b/src/IconTaskRounded.tsx @@ -8,4 +8,4 @@ const IconTaskRounded: React.FC = ({ ...props }) => ( ) -export { IconTaskRounded as default } +export default IconTaskRounded diff --git a/src/IconTaskRoundedFilled.tsx b/src/IconTaskRoundedFilled.tsx index 81e7abe2d..ad035163e 100644 --- a/src/IconTaskRoundedFilled.tsx +++ b/src/IconTaskRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconTaskRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconTaskRoundedFilled as default } +export default IconTaskRoundedFilled diff --git a/src/IconTaskSharp.tsx b/src/IconTaskSharp.tsx index 4c541eeff..0f39aadd6 100644 --- a/src/IconTaskSharp.tsx +++ b/src/IconTaskSharp.tsx @@ -8,4 +8,4 @@ const IconTaskSharp: React.FC = ({ ...props }) => ( ) -export { IconTaskSharp as default } +export default IconTaskSharp diff --git a/src/IconTaskSharpFilled.tsx b/src/IconTaskSharpFilled.tsx index 0663f6079..c96404e3c 100644 --- a/src/IconTaskSharpFilled.tsx +++ b/src/IconTaskSharpFilled.tsx @@ -8,4 +8,4 @@ const IconTaskSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconTaskSharpFilled as default } +export default IconTaskSharpFilled diff --git a/src/IconTauntOutlined.tsx b/src/IconTauntOutlined.tsx index cf8fba3c2..626358a39 100644 --- a/src/IconTauntOutlined.tsx +++ b/src/IconTauntOutlined.tsx @@ -8,4 +8,4 @@ const IconTauntOutlined: React.FC = ({ ...props }) => ( ) -export { IconTauntOutlined as default } +export default IconTauntOutlined diff --git a/src/IconTauntOutlinedFilled.tsx b/src/IconTauntOutlinedFilled.tsx index 2cb78c782..572369ccd 100644 --- a/src/IconTauntOutlinedFilled.tsx +++ b/src/IconTauntOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconTauntOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconTauntOutlinedFilled as default } +export default IconTauntOutlinedFilled diff --git a/src/IconTauntRounded.tsx b/src/IconTauntRounded.tsx index 3d8b65054..e1ff5fe68 100644 --- a/src/IconTauntRounded.tsx +++ b/src/IconTauntRounded.tsx @@ -8,4 +8,4 @@ const IconTauntRounded: React.FC = ({ ...props }) => ( ) -export { IconTauntRounded as default } +export default IconTauntRounded diff --git a/src/IconTauntRoundedFilled.tsx b/src/IconTauntRoundedFilled.tsx index 4f4560898..1b5be2347 100644 --- a/src/IconTauntRoundedFilled.tsx +++ b/src/IconTauntRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconTauntRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconTauntRoundedFilled as default } +export default IconTauntRoundedFilled diff --git a/src/IconTauntSharp.tsx b/src/IconTauntSharp.tsx index 51e8ef67e..99ef9cee1 100644 --- a/src/IconTauntSharp.tsx +++ b/src/IconTauntSharp.tsx @@ -8,4 +8,4 @@ const IconTauntSharp: React.FC = ({ ...props }) => ( ) -export { IconTauntSharp as default } +export default IconTauntSharp diff --git a/src/IconTauntSharpFilled.tsx b/src/IconTauntSharpFilled.tsx index 6b72c1ea2..dcae165fc 100644 --- a/src/IconTauntSharpFilled.tsx +++ b/src/IconTauntSharpFilled.tsx @@ -8,4 +8,4 @@ const IconTauntSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconTauntSharpFilled as default } +export default IconTauntSharpFilled diff --git a/src/IconTaxiAlertOutlined.tsx b/src/IconTaxiAlertOutlined.tsx index 6fe4ca52d..87a9e4175 100644 --- a/src/IconTaxiAlertOutlined.tsx +++ b/src/IconTaxiAlertOutlined.tsx @@ -8,4 +8,4 @@ const IconTaxiAlertOutlined: React.FC = ({ ...props }) => ( ) -export { IconTaxiAlertOutlined as default } +export default IconTaxiAlertOutlined diff --git a/src/IconTaxiAlertOutlinedFilled.tsx b/src/IconTaxiAlertOutlinedFilled.tsx index d1800de7a..2de9eef2f 100644 --- a/src/IconTaxiAlertOutlinedFilled.tsx +++ b/src/IconTaxiAlertOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconTaxiAlertOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconTaxiAlertOutlinedFilled as default } +export default IconTaxiAlertOutlinedFilled diff --git a/src/IconTaxiAlertRounded.tsx b/src/IconTaxiAlertRounded.tsx index ed59b9dbd..b4e58bd71 100644 --- a/src/IconTaxiAlertRounded.tsx +++ b/src/IconTaxiAlertRounded.tsx @@ -8,4 +8,4 @@ const IconTaxiAlertRounded: React.FC = ({ ...props }) => ( ) -export { IconTaxiAlertRounded as default } +export default IconTaxiAlertRounded diff --git a/src/IconTaxiAlertRoundedFilled.tsx b/src/IconTaxiAlertRoundedFilled.tsx index 0b4f01b53..ca02e0ff7 100644 --- a/src/IconTaxiAlertRoundedFilled.tsx +++ b/src/IconTaxiAlertRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconTaxiAlertRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconTaxiAlertRoundedFilled as default } +export default IconTaxiAlertRoundedFilled diff --git a/src/IconTaxiAlertSharp.tsx b/src/IconTaxiAlertSharp.tsx index a9866f208..f2b037507 100644 --- a/src/IconTaxiAlertSharp.tsx +++ b/src/IconTaxiAlertSharp.tsx @@ -8,4 +8,4 @@ const IconTaxiAlertSharp: React.FC = ({ ...props }) => ( ) -export { IconTaxiAlertSharp as default } +export default IconTaxiAlertSharp diff --git a/src/IconTaxiAlertSharpFilled.tsx b/src/IconTaxiAlertSharpFilled.tsx index 2dcb58be6..3315531ee 100644 --- a/src/IconTaxiAlertSharpFilled.tsx +++ b/src/IconTaxiAlertSharpFilled.tsx @@ -8,4 +8,4 @@ const IconTaxiAlertSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconTaxiAlertSharpFilled as default } +export default IconTaxiAlertSharpFilled diff --git a/src/IconTeamDashboardOutlined.tsx b/src/IconTeamDashboardOutlined.tsx index a6adf3286..fc24cb20a 100644 --- a/src/IconTeamDashboardOutlined.tsx +++ b/src/IconTeamDashboardOutlined.tsx @@ -8,4 +8,4 @@ const IconTeamDashboardOutlined: React.FC = ({ ...props }) => ( ) -export { IconTeamDashboardOutlined as default } +export default IconTeamDashboardOutlined diff --git a/src/IconTeamDashboardOutlinedFilled.tsx b/src/IconTeamDashboardOutlinedFilled.tsx index f459865eb..090c87dfb 100644 --- a/src/IconTeamDashboardOutlinedFilled.tsx +++ b/src/IconTeamDashboardOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconTeamDashboardOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconTeamDashboardOutlinedFilled as default } +export default IconTeamDashboardOutlinedFilled diff --git a/src/IconTeamDashboardRounded.tsx b/src/IconTeamDashboardRounded.tsx index 01c90efdd..d2b1df90f 100644 --- a/src/IconTeamDashboardRounded.tsx +++ b/src/IconTeamDashboardRounded.tsx @@ -8,4 +8,4 @@ const IconTeamDashboardRounded: React.FC = ({ ...props }) => ( ) -export { IconTeamDashboardRounded as default } +export default IconTeamDashboardRounded diff --git a/src/IconTeamDashboardRoundedFilled.tsx b/src/IconTeamDashboardRoundedFilled.tsx index 8d0b5ba7c..425817902 100644 --- a/src/IconTeamDashboardRoundedFilled.tsx +++ b/src/IconTeamDashboardRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconTeamDashboardRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconTeamDashboardRoundedFilled as default } +export default IconTeamDashboardRoundedFilled diff --git a/src/IconTeamDashboardSharp.tsx b/src/IconTeamDashboardSharp.tsx index 4da3b87ba..4d6fdd2b3 100644 --- a/src/IconTeamDashboardSharp.tsx +++ b/src/IconTeamDashboardSharp.tsx @@ -8,4 +8,4 @@ const IconTeamDashboardSharp: React.FC = ({ ...props }) => ( ) -export { IconTeamDashboardSharp as default } +export default IconTeamDashboardSharp diff --git a/src/IconTeamDashboardSharpFilled.tsx b/src/IconTeamDashboardSharpFilled.tsx index 6db655225..71b714adf 100644 --- a/src/IconTeamDashboardSharpFilled.tsx +++ b/src/IconTeamDashboardSharpFilled.tsx @@ -8,4 +8,4 @@ const IconTeamDashboardSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconTeamDashboardSharpFilled as default } +export default IconTeamDashboardSharpFilled diff --git a/src/IconTempPreferencesEcoOutlined.tsx b/src/IconTempPreferencesEcoOutlined.tsx index 30eabb1d6..cb03cb864 100644 --- a/src/IconTempPreferencesEcoOutlined.tsx +++ b/src/IconTempPreferencesEcoOutlined.tsx @@ -8,4 +8,4 @@ const IconTempPreferencesEcoOutlined: React.FC = ({ ...props }) => ( ) -export { IconTempPreferencesEcoOutlined as default } +export default IconTempPreferencesEcoOutlined diff --git a/src/IconTempPreferencesEcoOutlinedFilled.tsx b/src/IconTempPreferencesEcoOutlinedFilled.tsx index ae143fa44..8b7229355 100644 --- a/src/IconTempPreferencesEcoOutlinedFilled.tsx +++ b/src/IconTempPreferencesEcoOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconTempPreferencesEcoOutlinedFilled: React.FC = ({ ) -export { IconTempPreferencesEcoOutlinedFilled as default } +export default IconTempPreferencesEcoOutlinedFilled diff --git a/src/IconTempPreferencesEcoRounded.tsx b/src/IconTempPreferencesEcoRounded.tsx index 6be0e224b..1be181013 100644 --- a/src/IconTempPreferencesEcoRounded.tsx +++ b/src/IconTempPreferencesEcoRounded.tsx @@ -8,4 +8,4 @@ const IconTempPreferencesEcoRounded: React.FC = ({ ...props }) => ( ) -export { IconTempPreferencesEcoRounded as default } +export default IconTempPreferencesEcoRounded diff --git a/src/IconTempPreferencesEcoRoundedFilled.tsx b/src/IconTempPreferencesEcoRoundedFilled.tsx index 34c2d7c56..8a8abe6c8 100644 --- a/src/IconTempPreferencesEcoRoundedFilled.tsx +++ b/src/IconTempPreferencesEcoRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconTempPreferencesEcoRoundedFilled: React.FC = ({ ) -export { IconTempPreferencesEcoRoundedFilled as default } +export default IconTempPreferencesEcoRoundedFilled diff --git a/src/IconTempPreferencesEcoSharp.tsx b/src/IconTempPreferencesEcoSharp.tsx index 32897bdda..48f9dabc9 100644 --- a/src/IconTempPreferencesEcoSharp.tsx +++ b/src/IconTempPreferencesEcoSharp.tsx @@ -8,4 +8,4 @@ const IconTempPreferencesEcoSharp: React.FC = ({ ...props }) => ( ) -export { IconTempPreferencesEcoSharp as default } +export default IconTempPreferencesEcoSharp diff --git a/src/IconTempPreferencesEcoSharpFilled.tsx b/src/IconTempPreferencesEcoSharpFilled.tsx index ec8e5b653..ed8918774 100644 --- a/src/IconTempPreferencesEcoSharpFilled.tsx +++ b/src/IconTempPreferencesEcoSharpFilled.tsx @@ -10,4 +10,4 @@ const IconTempPreferencesEcoSharpFilled: React.FC = ({ ) -export { IconTempPreferencesEcoSharpFilled as default } +export default IconTempPreferencesEcoSharpFilled diff --git a/src/IconTempleBuddhistOutlined.tsx b/src/IconTempleBuddhistOutlined.tsx index 9c400e2e2..4cf640ff7 100644 --- a/src/IconTempleBuddhistOutlined.tsx +++ b/src/IconTempleBuddhistOutlined.tsx @@ -8,4 +8,4 @@ const IconTempleBuddhistOutlined: React.FC = ({ ...props }) => ( ) -export { IconTempleBuddhistOutlined as default } +export default IconTempleBuddhistOutlined diff --git a/src/IconTempleBuddhistOutlinedFilled.tsx b/src/IconTempleBuddhistOutlinedFilled.tsx index eecdd9e89..d037f854c 100644 --- a/src/IconTempleBuddhistOutlinedFilled.tsx +++ b/src/IconTempleBuddhistOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconTempleBuddhistOutlinedFilled: React.FC = ({ ) -export { IconTempleBuddhistOutlinedFilled as default } +export default IconTempleBuddhistOutlinedFilled diff --git a/src/IconTempleBuddhistRounded.tsx b/src/IconTempleBuddhistRounded.tsx index affd6c9fd..cf3b2b7d3 100644 --- a/src/IconTempleBuddhistRounded.tsx +++ b/src/IconTempleBuddhistRounded.tsx @@ -8,4 +8,4 @@ const IconTempleBuddhistRounded: React.FC = ({ ...props }) => ( ) -export { IconTempleBuddhistRounded as default } +export default IconTempleBuddhistRounded diff --git a/src/IconTempleBuddhistRoundedFilled.tsx b/src/IconTempleBuddhistRoundedFilled.tsx index c5b11d812..99bd6729f 100644 --- a/src/IconTempleBuddhistRoundedFilled.tsx +++ b/src/IconTempleBuddhistRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconTempleBuddhistRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconTempleBuddhistRoundedFilled as default } +export default IconTempleBuddhistRoundedFilled diff --git a/src/IconTempleBuddhistSharp.tsx b/src/IconTempleBuddhistSharp.tsx index ee7c1de05..4363c1f3e 100644 --- a/src/IconTempleBuddhistSharp.tsx +++ b/src/IconTempleBuddhistSharp.tsx @@ -8,4 +8,4 @@ const IconTempleBuddhistSharp: React.FC = ({ ...props }) => ( ) -export { IconTempleBuddhistSharp as default } +export default IconTempleBuddhistSharp diff --git a/src/IconTempleBuddhistSharpFilled.tsx b/src/IconTempleBuddhistSharpFilled.tsx index f36baa97b..165c26838 100644 --- a/src/IconTempleBuddhistSharpFilled.tsx +++ b/src/IconTempleBuddhistSharpFilled.tsx @@ -8,4 +8,4 @@ const IconTempleBuddhistSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconTempleBuddhistSharpFilled as default } +export default IconTempleBuddhistSharpFilled diff --git a/src/IconTempleHinduOutlined.tsx b/src/IconTempleHinduOutlined.tsx index 8f00cb527..798dc8f76 100644 --- a/src/IconTempleHinduOutlined.tsx +++ b/src/IconTempleHinduOutlined.tsx @@ -8,4 +8,4 @@ const IconTempleHinduOutlined: React.FC = ({ ...props }) => ( ) -export { IconTempleHinduOutlined as default } +export default IconTempleHinduOutlined diff --git a/src/IconTempleHinduOutlinedFilled.tsx b/src/IconTempleHinduOutlinedFilled.tsx index b97224825..104e57f20 100644 --- a/src/IconTempleHinduOutlinedFilled.tsx +++ b/src/IconTempleHinduOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconTempleHinduOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconTempleHinduOutlinedFilled as default } +export default IconTempleHinduOutlinedFilled diff --git a/src/IconTempleHinduRounded.tsx b/src/IconTempleHinduRounded.tsx index eefe99b04..1241f529e 100644 --- a/src/IconTempleHinduRounded.tsx +++ b/src/IconTempleHinduRounded.tsx @@ -8,4 +8,4 @@ const IconTempleHinduRounded: React.FC = ({ ...props }) => ( ) -export { IconTempleHinduRounded as default } +export default IconTempleHinduRounded diff --git a/src/IconTempleHinduRoundedFilled.tsx b/src/IconTempleHinduRoundedFilled.tsx index afac6ce78..381b5ca4c 100644 --- a/src/IconTempleHinduRoundedFilled.tsx +++ b/src/IconTempleHinduRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconTempleHinduRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconTempleHinduRoundedFilled as default } +export default IconTempleHinduRoundedFilled diff --git a/src/IconTempleHinduSharp.tsx b/src/IconTempleHinduSharp.tsx index cb2e63b6b..283cbf028 100644 --- a/src/IconTempleHinduSharp.tsx +++ b/src/IconTempleHinduSharp.tsx @@ -8,4 +8,4 @@ const IconTempleHinduSharp: React.FC = ({ ...props }) => ( ) -export { IconTempleHinduSharp as default } +export default IconTempleHinduSharp diff --git a/src/IconTempleHinduSharpFilled.tsx b/src/IconTempleHinduSharpFilled.tsx index e78be35be..302241df1 100644 --- a/src/IconTempleHinduSharpFilled.tsx +++ b/src/IconTempleHinduSharpFilled.tsx @@ -8,4 +8,4 @@ const IconTempleHinduSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconTempleHinduSharpFilled as default } +export default IconTempleHinduSharpFilled diff --git a/src/IconTenancyOutlined.tsx b/src/IconTenancyOutlined.tsx index 851024b15..3358dd38f 100644 --- a/src/IconTenancyOutlined.tsx +++ b/src/IconTenancyOutlined.tsx @@ -8,4 +8,4 @@ const IconTenancyOutlined: React.FC = ({ ...props }) => ( ) -export { IconTenancyOutlined as default } +export default IconTenancyOutlined diff --git a/src/IconTenancyOutlinedFilled.tsx b/src/IconTenancyOutlinedFilled.tsx index c8bfcbad3..63c930d8f 100644 --- a/src/IconTenancyOutlinedFilled.tsx +++ b/src/IconTenancyOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconTenancyOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconTenancyOutlinedFilled as default } +export default IconTenancyOutlinedFilled diff --git a/src/IconTenancyRounded.tsx b/src/IconTenancyRounded.tsx index e083905d9..fd8cc5875 100644 --- a/src/IconTenancyRounded.tsx +++ b/src/IconTenancyRounded.tsx @@ -8,4 +8,4 @@ const IconTenancyRounded: React.FC = ({ ...props }) => ( ) -export { IconTenancyRounded as default } +export default IconTenancyRounded diff --git a/src/IconTenancyRoundedFilled.tsx b/src/IconTenancyRoundedFilled.tsx index b84e8dcfa..48da047f8 100644 --- a/src/IconTenancyRoundedFilled.tsx +++ b/src/IconTenancyRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconTenancyRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconTenancyRoundedFilled as default } +export default IconTenancyRoundedFilled diff --git a/src/IconTenancySharp.tsx b/src/IconTenancySharp.tsx index 8e24edd26..d9b74da3d 100644 --- a/src/IconTenancySharp.tsx +++ b/src/IconTenancySharp.tsx @@ -8,4 +8,4 @@ const IconTenancySharp: React.FC = ({ ...props }) => ( ) -export { IconTenancySharp as default } +export default IconTenancySharp diff --git a/src/IconTenancySharpFilled.tsx b/src/IconTenancySharpFilled.tsx index b457f66c6..baacaae92 100644 --- a/src/IconTenancySharpFilled.tsx +++ b/src/IconTenancySharpFilled.tsx @@ -8,4 +8,4 @@ const IconTenancySharpFilled: React.FC = ({ ...props }) => ( ) -export { IconTenancySharpFilled as default } +export default IconTenancySharpFilled diff --git a/src/IconTerminalOutlined.tsx b/src/IconTerminalOutlined.tsx index 81242170b..f8379c382 100644 --- a/src/IconTerminalOutlined.tsx +++ b/src/IconTerminalOutlined.tsx @@ -8,4 +8,4 @@ const IconTerminalOutlined: React.FC = ({ ...props }) => ( ) -export { IconTerminalOutlined as default } +export default IconTerminalOutlined diff --git a/src/IconTerminalOutlinedFilled.tsx b/src/IconTerminalOutlinedFilled.tsx index 30f85cf3d..ea91aca40 100644 --- a/src/IconTerminalOutlinedFilled.tsx +++ b/src/IconTerminalOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconTerminalOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconTerminalOutlinedFilled as default } +export default IconTerminalOutlinedFilled diff --git a/src/IconTerminalRounded.tsx b/src/IconTerminalRounded.tsx index 90371f1a8..4f9fbe637 100644 --- a/src/IconTerminalRounded.tsx +++ b/src/IconTerminalRounded.tsx @@ -8,4 +8,4 @@ const IconTerminalRounded: React.FC = ({ ...props }) => ( ) -export { IconTerminalRounded as default } +export default IconTerminalRounded diff --git a/src/IconTerminalRoundedFilled.tsx b/src/IconTerminalRoundedFilled.tsx index 19bffbb07..74f027286 100644 --- a/src/IconTerminalRoundedFilled.tsx +++ b/src/IconTerminalRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconTerminalRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconTerminalRoundedFilled as default } +export default IconTerminalRoundedFilled diff --git a/src/IconTerminalSharp.tsx b/src/IconTerminalSharp.tsx index d42ab698f..11abeaa4f 100644 --- a/src/IconTerminalSharp.tsx +++ b/src/IconTerminalSharp.tsx @@ -8,4 +8,4 @@ const IconTerminalSharp: React.FC = ({ ...props }) => ( ) -export { IconTerminalSharp as default } +export default IconTerminalSharp diff --git a/src/IconTerminalSharpFilled.tsx b/src/IconTerminalSharpFilled.tsx index c1bc2c083..8424b6824 100644 --- a/src/IconTerminalSharpFilled.tsx +++ b/src/IconTerminalSharpFilled.tsx @@ -8,4 +8,4 @@ const IconTerminalSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconTerminalSharpFilled as default } +export default IconTerminalSharpFilled diff --git a/src/IconTextAdOutlined.tsx b/src/IconTextAdOutlined.tsx index e42ce22fd..e28b598b5 100644 --- a/src/IconTextAdOutlined.tsx +++ b/src/IconTextAdOutlined.tsx @@ -8,4 +8,4 @@ const IconTextAdOutlined: React.FC = ({ ...props }) => ( ) -export { IconTextAdOutlined as default } +export default IconTextAdOutlined diff --git a/src/IconTextAdOutlinedFilled.tsx b/src/IconTextAdOutlinedFilled.tsx index 8b2503931..b6892d940 100644 --- a/src/IconTextAdOutlinedFilled.tsx +++ b/src/IconTextAdOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconTextAdOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconTextAdOutlinedFilled as default } +export default IconTextAdOutlinedFilled diff --git a/src/IconTextAdRounded.tsx b/src/IconTextAdRounded.tsx index 5f969ee4d..db85c5682 100644 --- a/src/IconTextAdRounded.tsx +++ b/src/IconTextAdRounded.tsx @@ -8,4 +8,4 @@ const IconTextAdRounded: React.FC = ({ ...props }) => ( ) -export { IconTextAdRounded as default } +export default IconTextAdRounded diff --git a/src/IconTextAdRoundedFilled.tsx b/src/IconTextAdRoundedFilled.tsx index 7d682aeba..f3de8e577 100644 --- a/src/IconTextAdRoundedFilled.tsx +++ b/src/IconTextAdRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconTextAdRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconTextAdRoundedFilled as default } +export default IconTextAdRoundedFilled diff --git a/src/IconTextAdSharp.tsx b/src/IconTextAdSharp.tsx index 609444cd8..e505fe654 100644 --- a/src/IconTextAdSharp.tsx +++ b/src/IconTextAdSharp.tsx @@ -8,4 +8,4 @@ const IconTextAdSharp: React.FC = ({ ...props }) => ( ) -export { IconTextAdSharp as default } +export default IconTextAdSharp diff --git a/src/IconTextAdSharpFilled.tsx b/src/IconTextAdSharpFilled.tsx index acc60ae74..9b65f8883 100644 --- a/src/IconTextAdSharpFilled.tsx +++ b/src/IconTextAdSharpFilled.tsx @@ -8,4 +8,4 @@ const IconTextAdSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconTextAdSharpFilled as default } +export default IconTextAdSharpFilled diff --git a/src/IconTextDecreaseOutlined.tsx b/src/IconTextDecreaseOutlined.tsx index be45da5af..36645f6bb 100644 --- a/src/IconTextDecreaseOutlined.tsx +++ b/src/IconTextDecreaseOutlined.tsx @@ -8,4 +8,4 @@ const IconTextDecreaseOutlined: React.FC = ({ ...props }) => ( ) -export { IconTextDecreaseOutlined as default } +export default IconTextDecreaseOutlined diff --git a/src/IconTextDecreaseOutlinedFilled.tsx b/src/IconTextDecreaseOutlinedFilled.tsx index e55847fea..f8be4db42 100644 --- a/src/IconTextDecreaseOutlinedFilled.tsx +++ b/src/IconTextDecreaseOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconTextDecreaseOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconTextDecreaseOutlinedFilled as default } +export default IconTextDecreaseOutlinedFilled diff --git a/src/IconTextDecreaseRounded.tsx b/src/IconTextDecreaseRounded.tsx index 40f5db989..9e8cc3dad 100644 --- a/src/IconTextDecreaseRounded.tsx +++ b/src/IconTextDecreaseRounded.tsx @@ -8,4 +8,4 @@ const IconTextDecreaseRounded: React.FC = ({ ...props }) => ( ) -export { IconTextDecreaseRounded as default } +export default IconTextDecreaseRounded diff --git a/src/IconTextDecreaseRoundedFilled.tsx b/src/IconTextDecreaseRoundedFilled.tsx index d4755b4cc..a93ca9112 100644 --- a/src/IconTextDecreaseRoundedFilled.tsx +++ b/src/IconTextDecreaseRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconTextDecreaseRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconTextDecreaseRoundedFilled as default } +export default IconTextDecreaseRoundedFilled diff --git a/src/IconTextDecreaseSharp.tsx b/src/IconTextDecreaseSharp.tsx index 8339ee80e..ba73c2bd5 100644 --- a/src/IconTextDecreaseSharp.tsx +++ b/src/IconTextDecreaseSharp.tsx @@ -8,4 +8,4 @@ const IconTextDecreaseSharp: React.FC = ({ ...props }) => ( ) -export { IconTextDecreaseSharp as default } +export default IconTextDecreaseSharp diff --git a/src/IconTextDecreaseSharpFilled.tsx b/src/IconTextDecreaseSharpFilled.tsx index 30242bd80..435e11d78 100644 --- a/src/IconTextDecreaseSharpFilled.tsx +++ b/src/IconTextDecreaseSharpFilled.tsx @@ -8,4 +8,4 @@ const IconTextDecreaseSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconTextDecreaseSharpFilled as default } +export default IconTextDecreaseSharpFilled diff --git a/src/IconTextFieldsAltOutlined.tsx b/src/IconTextFieldsAltOutlined.tsx index d6e9322c1..e7ebe31a8 100644 --- a/src/IconTextFieldsAltOutlined.tsx +++ b/src/IconTextFieldsAltOutlined.tsx @@ -8,4 +8,4 @@ const IconTextFieldsAltOutlined: React.FC = ({ ...props }) => ( ) -export { IconTextFieldsAltOutlined as default } +export default IconTextFieldsAltOutlined diff --git a/src/IconTextFieldsAltOutlinedFilled.tsx b/src/IconTextFieldsAltOutlinedFilled.tsx index 18d18747b..9cc189206 100644 --- a/src/IconTextFieldsAltOutlinedFilled.tsx +++ b/src/IconTextFieldsAltOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconTextFieldsAltOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconTextFieldsAltOutlinedFilled as default } +export default IconTextFieldsAltOutlinedFilled diff --git a/src/IconTextFieldsAltRounded.tsx b/src/IconTextFieldsAltRounded.tsx index 796a4ecec..a549b48e9 100644 --- a/src/IconTextFieldsAltRounded.tsx +++ b/src/IconTextFieldsAltRounded.tsx @@ -8,4 +8,4 @@ const IconTextFieldsAltRounded: React.FC = ({ ...props }) => ( ) -export { IconTextFieldsAltRounded as default } +export default IconTextFieldsAltRounded diff --git a/src/IconTextFieldsAltRoundedFilled.tsx b/src/IconTextFieldsAltRoundedFilled.tsx index a8125fad9..16684d555 100644 --- a/src/IconTextFieldsAltRoundedFilled.tsx +++ b/src/IconTextFieldsAltRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconTextFieldsAltRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconTextFieldsAltRoundedFilled as default } +export default IconTextFieldsAltRoundedFilled diff --git a/src/IconTextFieldsAltSharp.tsx b/src/IconTextFieldsAltSharp.tsx index 8e939cf8b..26609f971 100644 --- a/src/IconTextFieldsAltSharp.tsx +++ b/src/IconTextFieldsAltSharp.tsx @@ -8,4 +8,4 @@ const IconTextFieldsAltSharp: React.FC = ({ ...props }) => ( ) -export { IconTextFieldsAltSharp as default } +export default IconTextFieldsAltSharp diff --git a/src/IconTextFieldsAltSharpFilled.tsx b/src/IconTextFieldsAltSharpFilled.tsx index ccf1d74e9..621a19898 100644 --- a/src/IconTextFieldsAltSharpFilled.tsx +++ b/src/IconTextFieldsAltSharpFilled.tsx @@ -8,4 +8,4 @@ const IconTextFieldsAltSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconTextFieldsAltSharpFilled as default } +export default IconTextFieldsAltSharpFilled diff --git a/src/IconTextFieldsOutlined.tsx b/src/IconTextFieldsOutlined.tsx index 692d36c6a..5af4e3c31 100644 --- a/src/IconTextFieldsOutlined.tsx +++ b/src/IconTextFieldsOutlined.tsx @@ -8,4 +8,4 @@ const IconTextFieldsOutlined: React.FC = ({ ...props }) => ( ) -export { IconTextFieldsOutlined as default } +export default IconTextFieldsOutlined diff --git a/src/IconTextFieldsOutlinedFilled.tsx b/src/IconTextFieldsOutlinedFilled.tsx index 57ee461c2..1aa7fb593 100644 --- a/src/IconTextFieldsOutlinedFilled.tsx +++ b/src/IconTextFieldsOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconTextFieldsOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconTextFieldsOutlinedFilled as default } +export default IconTextFieldsOutlinedFilled diff --git a/src/IconTextFieldsRounded.tsx b/src/IconTextFieldsRounded.tsx index adad59fe8..b25aa0829 100644 --- a/src/IconTextFieldsRounded.tsx +++ b/src/IconTextFieldsRounded.tsx @@ -8,4 +8,4 @@ const IconTextFieldsRounded: React.FC = ({ ...props }) => ( ) -export { IconTextFieldsRounded as default } +export default IconTextFieldsRounded diff --git a/src/IconTextFieldsRoundedFilled.tsx b/src/IconTextFieldsRoundedFilled.tsx index 7fb9875af..c8ecba247 100644 --- a/src/IconTextFieldsRoundedFilled.tsx +++ b/src/IconTextFieldsRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconTextFieldsRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconTextFieldsRoundedFilled as default } +export default IconTextFieldsRoundedFilled diff --git a/src/IconTextFieldsSharp.tsx b/src/IconTextFieldsSharp.tsx index d5f64caef..07d3e47f0 100644 --- a/src/IconTextFieldsSharp.tsx +++ b/src/IconTextFieldsSharp.tsx @@ -8,4 +8,4 @@ const IconTextFieldsSharp: React.FC = ({ ...props }) => ( ) -export { IconTextFieldsSharp as default } +export default IconTextFieldsSharp diff --git a/src/IconTextFieldsSharpFilled.tsx b/src/IconTextFieldsSharpFilled.tsx index 6176cb2b9..c67b392ee 100644 --- a/src/IconTextFieldsSharpFilled.tsx +++ b/src/IconTextFieldsSharpFilled.tsx @@ -8,4 +8,4 @@ const IconTextFieldsSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconTextFieldsSharpFilled as default } +export default IconTextFieldsSharpFilled diff --git a/src/IconTextFormatOutlined.tsx b/src/IconTextFormatOutlined.tsx index b4a9ccf8d..7c19fa734 100644 --- a/src/IconTextFormatOutlined.tsx +++ b/src/IconTextFormatOutlined.tsx @@ -8,4 +8,4 @@ const IconTextFormatOutlined: React.FC = ({ ...props }) => ( ) -export { IconTextFormatOutlined as default } +export default IconTextFormatOutlined diff --git a/src/IconTextFormatOutlinedFilled.tsx b/src/IconTextFormatOutlinedFilled.tsx index 402b52142..2058b72d6 100644 --- a/src/IconTextFormatOutlinedFilled.tsx +++ b/src/IconTextFormatOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconTextFormatOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconTextFormatOutlinedFilled as default } +export default IconTextFormatOutlinedFilled diff --git a/src/IconTextFormatRounded.tsx b/src/IconTextFormatRounded.tsx index 2555c2d1b..2265d67c6 100644 --- a/src/IconTextFormatRounded.tsx +++ b/src/IconTextFormatRounded.tsx @@ -8,4 +8,4 @@ const IconTextFormatRounded: React.FC = ({ ...props }) => ( ) -export { IconTextFormatRounded as default } +export default IconTextFormatRounded diff --git a/src/IconTextFormatRoundedFilled.tsx b/src/IconTextFormatRoundedFilled.tsx index 737db9723..b8ff69d6b 100644 --- a/src/IconTextFormatRoundedFilled.tsx +++ b/src/IconTextFormatRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconTextFormatRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconTextFormatRoundedFilled as default } +export default IconTextFormatRoundedFilled diff --git a/src/IconTextFormatSharp.tsx b/src/IconTextFormatSharp.tsx index 32e97d59d..0adfa9243 100644 --- a/src/IconTextFormatSharp.tsx +++ b/src/IconTextFormatSharp.tsx @@ -8,4 +8,4 @@ const IconTextFormatSharp: React.FC = ({ ...props }) => ( ) -export { IconTextFormatSharp as default } +export default IconTextFormatSharp diff --git a/src/IconTextFormatSharpFilled.tsx b/src/IconTextFormatSharpFilled.tsx index 5c223d5ac..723e95572 100644 --- a/src/IconTextFormatSharpFilled.tsx +++ b/src/IconTextFormatSharpFilled.tsx @@ -8,4 +8,4 @@ const IconTextFormatSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconTextFormatSharpFilled as default } +export default IconTextFormatSharpFilled diff --git a/src/IconTextIncreaseOutlined.tsx b/src/IconTextIncreaseOutlined.tsx index 4384f0a8e..70e6c3756 100644 --- a/src/IconTextIncreaseOutlined.tsx +++ b/src/IconTextIncreaseOutlined.tsx @@ -8,4 +8,4 @@ const IconTextIncreaseOutlined: React.FC = ({ ...props }) => ( ) -export { IconTextIncreaseOutlined as default } +export default IconTextIncreaseOutlined diff --git a/src/IconTextIncreaseOutlinedFilled.tsx b/src/IconTextIncreaseOutlinedFilled.tsx index 6f3b07979..d46ba50da 100644 --- a/src/IconTextIncreaseOutlinedFilled.tsx +++ b/src/IconTextIncreaseOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconTextIncreaseOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconTextIncreaseOutlinedFilled as default } +export default IconTextIncreaseOutlinedFilled diff --git a/src/IconTextIncreaseRounded.tsx b/src/IconTextIncreaseRounded.tsx index 1b14d43aa..9cfe01492 100644 --- a/src/IconTextIncreaseRounded.tsx +++ b/src/IconTextIncreaseRounded.tsx @@ -8,4 +8,4 @@ const IconTextIncreaseRounded: React.FC = ({ ...props }) => ( ) -export { IconTextIncreaseRounded as default } +export default IconTextIncreaseRounded diff --git a/src/IconTextIncreaseRoundedFilled.tsx b/src/IconTextIncreaseRoundedFilled.tsx index ce29cf114..d60006e5f 100644 --- a/src/IconTextIncreaseRoundedFilled.tsx +++ b/src/IconTextIncreaseRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconTextIncreaseRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconTextIncreaseRoundedFilled as default } +export default IconTextIncreaseRoundedFilled diff --git a/src/IconTextIncreaseSharp.tsx b/src/IconTextIncreaseSharp.tsx index 20571626b..f9d200623 100644 --- a/src/IconTextIncreaseSharp.tsx +++ b/src/IconTextIncreaseSharp.tsx @@ -8,4 +8,4 @@ const IconTextIncreaseSharp: React.FC = ({ ...props }) => ( ) -export { IconTextIncreaseSharp as default } +export default IconTextIncreaseSharp diff --git a/src/IconTextIncreaseSharpFilled.tsx b/src/IconTextIncreaseSharpFilled.tsx index 23274c4b5..955eb4ef1 100644 --- a/src/IconTextIncreaseSharpFilled.tsx +++ b/src/IconTextIncreaseSharpFilled.tsx @@ -8,4 +8,4 @@ const IconTextIncreaseSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconTextIncreaseSharpFilled as default } +export default IconTextIncreaseSharpFilled diff --git a/src/IconTextRotateUpOutlined.tsx b/src/IconTextRotateUpOutlined.tsx index 325b18cad..5200440db 100644 --- a/src/IconTextRotateUpOutlined.tsx +++ b/src/IconTextRotateUpOutlined.tsx @@ -8,4 +8,4 @@ const IconTextRotateUpOutlined: React.FC = ({ ...props }) => ( ) -export { IconTextRotateUpOutlined as default } +export default IconTextRotateUpOutlined diff --git a/src/IconTextRotateUpOutlinedFilled.tsx b/src/IconTextRotateUpOutlinedFilled.tsx index 5ecbd02a6..4ddec7cd2 100644 --- a/src/IconTextRotateUpOutlinedFilled.tsx +++ b/src/IconTextRotateUpOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconTextRotateUpOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconTextRotateUpOutlinedFilled as default } +export default IconTextRotateUpOutlinedFilled diff --git a/src/IconTextRotateUpRounded.tsx b/src/IconTextRotateUpRounded.tsx index 510ab880d..0d54c60a2 100644 --- a/src/IconTextRotateUpRounded.tsx +++ b/src/IconTextRotateUpRounded.tsx @@ -8,4 +8,4 @@ const IconTextRotateUpRounded: React.FC = ({ ...props }) => ( ) -export { IconTextRotateUpRounded as default } +export default IconTextRotateUpRounded diff --git a/src/IconTextRotateUpRoundedFilled.tsx b/src/IconTextRotateUpRoundedFilled.tsx index 42954d363..16bb17f75 100644 --- a/src/IconTextRotateUpRoundedFilled.tsx +++ b/src/IconTextRotateUpRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconTextRotateUpRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconTextRotateUpRoundedFilled as default } +export default IconTextRotateUpRoundedFilled diff --git a/src/IconTextRotateUpSharp.tsx b/src/IconTextRotateUpSharp.tsx index fd5061a84..0a87ca20b 100644 --- a/src/IconTextRotateUpSharp.tsx +++ b/src/IconTextRotateUpSharp.tsx @@ -8,4 +8,4 @@ const IconTextRotateUpSharp: React.FC = ({ ...props }) => ( ) -export { IconTextRotateUpSharp as default } +export default IconTextRotateUpSharp diff --git a/src/IconTextRotateUpSharpFilled.tsx b/src/IconTextRotateUpSharpFilled.tsx index be04877b3..a03dd8bc3 100644 --- a/src/IconTextRotateUpSharpFilled.tsx +++ b/src/IconTextRotateUpSharpFilled.tsx @@ -8,4 +8,4 @@ const IconTextRotateUpSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconTextRotateUpSharpFilled as default } +export default IconTextRotateUpSharpFilled diff --git a/src/IconTextRotateVerticalOutlined.tsx b/src/IconTextRotateVerticalOutlined.tsx index ac186a278..8153e5ceb 100644 --- a/src/IconTextRotateVerticalOutlined.tsx +++ b/src/IconTextRotateVerticalOutlined.tsx @@ -8,4 +8,4 @@ const IconTextRotateVerticalOutlined: React.FC = ({ ...props }) => ( ) -export { IconTextRotateVerticalOutlined as default } +export default IconTextRotateVerticalOutlined diff --git a/src/IconTextRotateVerticalOutlinedFilled.tsx b/src/IconTextRotateVerticalOutlinedFilled.tsx index 309ce3b78..78d8dceaf 100644 --- a/src/IconTextRotateVerticalOutlinedFilled.tsx +++ b/src/IconTextRotateVerticalOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconTextRotateVerticalOutlinedFilled: React.FC = ({ ) -export { IconTextRotateVerticalOutlinedFilled as default } +export default IconTextRotateVerticalOutlinedFilled diff --git a/src/IconTextRotateVerticalRounded.tsx b/src/IconTextRotateVerticalRounded.tsx index 3d4c5de2f..f67342c7b 100644 --- a/src/IconTextRotateVerticalRounded.tsx +++ b/src/IconTextRotateVerticalRounded.tsx @@ -8,4 +8,4 @@ const IconTextRotateVerticalRounded: React.FC = ({ ...props }) => ( ) -export { IconTextRotateVerticalRounded as default } +export default IconTextRotateVerticalRounded diff --git a/src/IconTextRotateVerticalRoundedFilled.tsx b/src/IconTextRotateVerticalRoundedFilled.tsx index ebb063d3c..ee067873b 100644 --- a/src/IconTextRotateVerticalRoundedFilled.tsx +++ b/src/IconTextRotateVerticalRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconTextRotateVerticalRoundedFilled: React.FC = ({ ) -export { IconTextRotateVerticalRoundedFilled as default } +export default IconTextRotateVerticalRoundedFilled diff --git a/src/IconTextRotateVerticalSharp.tsx b/src/IconTextRotateVerticalSharp.tsx index f35f87412..9d86aebb7 100644 --- a/src/IconTextRotateVerticalSharp.tsx +++ b/src/IconTextRotateVerticalSharp.tsx @@ -8,4 +8,4 @@ const IconTextRotateVerticalSharp: React.FC = ({ ...props }) => ( ) -export { IconTextRotateVerticalSharp as default } +export default IconTextRotateVerticalSharp diff --git a/src/IconTextRotateVerticalSharpFilled.tsx b/src/IconTextRotateVerticalSharpFilled.tsx index 8ed6bd49c..b9171aa3b 100644 --- a/src/IconTextRotateVerticalSharpFilled.tsx +++ b/src/IconTextRotateVerticalSharpFilled.tsx @@ -10,4 +10,4 @@ const IconTextRotateVerticalSharpFilled: React.FC = ({ ) -export { IconTextRotateVerticalSharpFilled as default } +export default IconTextRotateVerticalSharpFilled diff --git a/src/IconTextRotationAngledownOutlined.tsx b/src/IconTextRotationAngledownOutlined.tsx index 8234d095b..612fa75cc 100644 --- a/src/IconTextRotationAngledownOutlined.tsx +++ b/src/IconTextRotationAngledownOutlined.tsx @@ -10,4 +10,4 @@ const IconTextRotationAngledownOutlined: React.FC = ({ ) -export { IconTextRotationAngledownOutlined as default } +export default IconTextRotationAngledownOutlined diff --git a/src/IconTextRotationAngledownOutlinedFilled.tsx b/src/IconTextRotationAngledownOutlinedFilled.tsx index f2a9d1df8..eae5ba57d 100644 --- a/src/IconTextRotationAngledownOutlinedFilled.tsx +++ b/src/IconTextRotationAngledownOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconTextRotationAngledownOutlinedFilled: React.FC = ({ ) -export { IconTextRotationAngledownOutlinedFilled as default } +export default IconTextRotationAngledownOutlinedFilled diff --git a/src/IconTextRotationAngledownRounded.tsx b/src/IconTextRotationAngledownRounded.tsx index 1be1245ab..f82d9f161 100644 --- a/src/IconTextRotationAngledownRounded.tsx +++ b/src/IconTextRotationAngledownRounded.tsx @@ -10,4 +10,4 @@ const IconTextRotationAngledownRounded: React.FC = ({ ) -export { IconTextRotationAngledownRounded as default } +export default IconTextRotationAngledownRounded diff --git a/src/IconTextRotationAngledownRoundedFilled.tsx b/src/IconTextRotationAngledownRoundedFilled.tsx index 937da6539..71860a5e6 100644 --- a/src/IconTextRotationAngledownRoundedFilled.tsx +++ b/src/IconTextRotationAngledownRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconTextRotationAngledownRoundedFilled: React.FC = ({ ) -export { IconTextRotationAngledownRoundedFilled as default } +export default IconTextRotationAngledownRoundedFilled diff --git a/src/IconTextRotationAngledownSharp.tsx b/src/IconTextRotationAngledownSharp.tsx index c0a0167dd..0012b890c 100644 --- a/src/IconTextRotationAngledownSharp.tsx +++ b/src/IconTextRotationAngledownSharp.tsx @@ -8,4 +8,4 @@ const IconTextRotationAngledownSharp: React.FC = ({ ...props }) => ( ) -export { IconTextRotationAngledownSharp as default } +export default IconTextRotationAngledownSharp diff --git a/src/IconTextRotationAngledownSharpFilled.tsx b/src/IconTextRotationAngledownSharpFilled.tsx index 9e3b19e12..06bde8306 100644 --- a/src/IconTextRotationAngledownSharpFilled.tsx +++ b/src/IconTextRotationAngledownSharpFilled.tsx @@ -10,4 +10,4 @@ const IconTextRotationAngledownSharpFilled: React.FC = ({ ) -export { IconTextRotationAngledownSharpFilled as default } +export default IconTextRotationAngledownSharpFilled diff --git a/src/IconTextRotationAngleupOutlined.tsx b/src/IconTextRotationAngleupOutlined.tsx index b9fe8cf54..580feb60e 100644 --- a/src/IconTextRotationAngleupOutlined.tsx +++ b/src/IconTextRotationAngleupOutlined.tsx @@ -8,4 +8,4 @@ const IconTextRotationAngleupOutlined: React.FC = ({ ...props }) => ( ) -export { IconTextRotationAngleupOutlined as default } +export default IconTextRotationAngleupOutlined diff --git a/src/IconTextRotationAngleupOutlinedFilled.tsx b/src/IconTextRotationAngleupOutlinedFilled.tsx index 2b58e22f6..7fa3270e5 100644 --- a/src/IconTextRotationAngleupOutlinedFilled.tsx +++ b/src/IconTextRotationAngleupOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconTextRotationAngleupOutlinedFilled: React.FC = ({ ) -export { IconTextRotationAngleupOutlinedFilled as default } +export default IconTextRotationAngleupOutlinedFilled diff --git a/src/IconTextRotationAngleupRounded.tsx b/src/IconTextRotationAngleupRounded.tsx index 3933db9a2..cd329886c 100644 --- a/src/IconTextRotationAngleupRounded.tsx +++ b/src/IconTextRotationAngleupRounded.tsx @@ -8,4 +8,4 @@ const IconTextRotationAngleupRounded: React.FC = ({ ...props }) => ( ) -export { IconTextRotationAngleupRounded as default } +export default IconTextRotationAngleupRounded diff --git a/src/IconTextRotationAngleupRoundedFilled.tsx b/src/IconTextRotationAngleupRoundedFilled.tsx index 90c0ff2cd..e10bc344d 100644 --- a/src/IconTextRotationAngleupRoundedFilled.tsx +++ b/src/IconTextRotationAngleupRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconTextRotationAngleupRoundedFilled: React.FC = ({ ) -export { IconTextRotationAngleupRoundedFilled as default } +export default IconTextRotationAngleupRoundedFilled diff --git a/src/IconTextRotationAngleupSharp.tsx b/src/IconTextRotationAngleupSharp.tsx index e4b882972..904da4f81 100644 --- a/src/IconTextRotationAngleupSharp.tsx +++ b/src/IconTextRotationAngleupSharp.tsx @@ -8,4 +8,4 @@ const IconTextRotationAngleupSharp: React.FC = ({ ...props }) => ( ) -export { IconTextRotationAngleupSharp as default } +export default IconTextRotationAngleupSharp diff --git a/src/IconTextRotationAngleupSharpFilled.tsx b/src/IconTextRotationAngleupSharpFilled.tsx index 7595a80e5..21d744297 100644 --- a/src/IconTextRotationAngleupSharpFilled.tsx +++ b/src/IconTextRotationAngleupSharpFilled.tsx @@ -10,4 +10,4 @@ const IconTextRotationAngleupSharpFilled: React.FC = ({ ) -export { IconTextRotationAngleupSharpFilled as default } +export default IconTextRotationAngleupSharpFilled diff --git a/src/IconTextRotationDownOutlined.tsx b/src/IconTextRotationDownOutlined.tsx index d34d9d80e..0c7c8c49b 100644 --- a/src/IconTextRotationDownOutlined.tsx +++ b/src/IconTextRotationDownOutlined.tsx @@ -8,4 +8,4 @@ const IconTextRotationDownOutlined: React.FC = ({ ...props }) => ( ) -export { IconTextRotationDownOutlined as default } +export default IconTextRotationDownOutlined diff --git a/src/IconTextRotationDownOutlinedFilled.tsx b/src/IconTextRotationDownOutlinedFilled.tsx index c893c8b36..2b4297549 100644 --- a/src/IconTextRotationDownOutlinedFilled.tsx +++ b/src/IconTextRotationDownOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconTextRotationDownOutlinedFilled: React.FC = ({ ) -export { IconTextRotationDownOutlinedFilled as default } +export default IconTextRotationDownOutlinedFilled diff --git a/src/IconTextRotationDownRounded.tsx b/src/IconTextRotationDownRounded.tsx index d58ae80c2..6aaa3c3c5 100644 --- a/src/IconTextRotationDownRounded.tsx +++ b/src/IconTextRotationDownRounded.tsx @@ -8,4 +8,4 @@ const IconTextRotationDownRounded: React.FC = ({ ...props }) => ( ) -export { IconTextRotationDownRounded as default } +export default IconTextRotationDownRounded diff --git a/src/IconTextRotationDownRoundedFilled.tsx b/src/IconTextRotationDownRoundedFilled.tsx index 18a9bf8dd..c9eb9571a 100644 --- a/src/IconTextRotationDownRoundedFilled.tsx +++ b/src/IconTextRotationDownRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconTextRotationDownRoundedFilled: React.FC = ({ ) -export { IconTextRotationDownRoundedFilled as default } +export default IconTextRotationDownRoundedFilled diff --git a/src/IconTextRotationDownSharp.tsx b/src/IconTextRotationDownSharp.tsx index fd9f243c6..697d0173b 100644 --- a/src/IconTextRotationDownSharp.tsx +++ b/src/IconTextRotationDownSharp.tsx @@ -8,4 +8,4 @@ const IconTextRotationDownSharp: React.FC = ({ ...props }) => ( ) -export { IconTextRotationDownSharp as default } +export default IconTextRotationDownSharp diff --git a/src/IconTextRotationDownSharpFilled.tsx b/src/IconTextRotationDownSharpFilled.tsx index 0e3d870df..662126445 100644 --- a/src/IconTextRotationDownSharpFilled.tsx +++ b/src/IconTextRotationDownSharpFilled.tsx @@ -8,4 +8,4 @@ const IconTextRotationDownSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconTextRotationDownSharpFilled as default } +export default IconTextRotationDownSharpFilled diff --git a/src/IconTextRotationNoneOutlined.tsx b/src/IconTextRotationNoneOutlined.tsx index f148b39d8..5abb1c1aa 100644 --- a/src/IconTextRotationNoneOutlined.tsx +++ b/src/IconTextRotationNoneOutlined.tsx @@ -8,4 +8,4 @@ const IconTextRotationNoneOutlined: React.FC = ({ ...props }) => ( ) -export { IconTextRotationNoneOutlined as default } +export default IconTextRotationNoneOutlined diff --git a/src/IconTextRotationNoneOutlinedFilled.tsx b/src/IconTextRotationNoneOutlinedFilled.tsx index d32cd14bf..e6a62bc42 100644 --- a/src/IconTextRotationNoneOutlinedFilled.tsx +++ b/src/IconTextRotationNoneOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconTextRotationNoneOutlinedFilled: React.FC = ({ ) -export { IconTextRotationNoneOutlinedFilled as default } +export default IconTextRotationNoneOutlinedFilled diff --git a/src/IconTextRotationNoneRounded.tsx b/src/IconTextRotationNoneRounded.tsx index 8b2806e32..1f6ca01c9 100644 --- a/src/IconTextRotationNoneRounded.tsx +++ b/src/IconTextRotationNoneRounded.tsx @@ -8,4 +8,4 @@ const IconTextRotationNoneRounded: React.FC = ({ ...props }) => ( ) -export { IconTextRotationNoneRounded as default } +export default IconTextRotationNoneRounded diff --git a/src/IconTextRotationNoneRoundedFilled.tsx b/src/IconTextRotationNoneRoundedFilled.tsx index 981afd7b0..02ad28d6e 100644 --- a/src/IconTextRotationNoneRoundedFilled.tsx +++ b/src/IconTextRotationNoneRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconTextRotationNoneRoundedFilled: React.FC = ({ ) -export { IconTextRotationNoneRoundedFilled as default } +export default IconTextRotationNoneRoundedFilled diff --git a/src/IconTextRotationNoneSharp.tsx b/src/IconTextRotationNoneSharp.tsx index b9c1ce0ff..1a18d3573 100644 --- a/src/IconTextRotationNoneSharp.tsx +++ b/src/IconTextRotationNoneSharp.tsx @@ -8,4 +8,4 @@ const IconTextRotationNoneSharp: React.FC = ({ ...props }) => ( ) -export { IconTextRotationNoneSharp as default } +export default IconTextRotationNoneSharp diff --git a/src/IconTextRotationNoneSharpFilled.tsx b/src/IconTextRotationNoneSharpFilled.tsx index 1ca6eda4e..44cbee2d8 100644 --- a/src/IconTextRotationNoneSharpFilled.tsx +++ b/src/IconTextRotationNoneSharpFilled.tsx @@ -8,4 +8,4 @@ const IconTextRotationNoneSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconTextRotationNoneSharpFilled as default } +export default IconTextRotationNoneSharpFilled diff --git a/src/IconTextSelectEndOutlined.tsx b/src/IconTextSelectEndOutlined.tsx index ecd952d71..ec311cc36 100644 --- a/src/IconTextSelectEndOutlined.tsx +++ b/src/IconTextSelectEndOutlined.tsx @@ -8,4 +8,4 @@ const IconTextSelectEndOutlined: React.FC = ({ ...props }) => ( ) -export { IconTextSelectEndOutlined as default } +export default IconTextSelectEndOutlined diff --git a/src/IconTextSelectEndOutlinedFilled.tsx b/src/IconTextSelectEndOutlinedFilled.tsx index 9c01f58e5..b23ea7f53 100644 --- a/src/IconTextSelectEndOutlinedFilled.tsx +++ b/src/IconTextSelectEndOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconTextSelectEndOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconTextSelectEndOutlinedFilled as default } +export default IconTextSelectEndOutlinedFilled diff --git a/src/IconTextSelectEndRounded.tsx b/src/IconTextSelectEndRounded.tsx index f8af41cb2..f5cbd44bf 100644 --- a/src/IconTextSelectEndRounded.tsx +++ b/src/IconTextSelectEndRounded.tsx @@ -8,4 +8,4 @@ const IconTextSelectEndRounded: React.FC = ({ ...props }) => ( ) -export { IconTextSelectEndRounded as default } +export default IconTextSelectEndRounded diff --git a/src/IconTextSelectEndRoundedFilled.tsx b/src/IconTextSelectEndRoundedFilled.tsx index 95892c043..36eb60018 100644 --- a/src/IconTextSelectEndRoundedFilled.tsx +++ b/src/IconTextSelectEndRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconTextSelectEndRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconTextSelectEndRoundedFilled as default } +export default IconTextSelectEndRoundedFilled diff --git a/src/IconTextSelectEndSharp.tsx b/src/IconTextSelectEndSharp.tsx index 59e827eea..cf971cf17 100644 --- a/src/IconTextSelectEndSharp.tsx +++ b/src/IconTextSelectEndSharp.tsx @@ -8,4 +8,4 @@ const IconTextSelectEndSharp: React.FC = ({ ...props }) => ( ) -export { IconTextSelectEndSharp as default } +export default IconTextSelectEndSharp diff --git a/src/IconTextSelectEndSharpFilled.tsx b/src/IconTextSelectEndSharpFilled.tsx index b644d6ef6..dd1bd6e3c 100644 --- a/src/IconTextSelectEndSharpFilled.tsx +++ b/src/IconTextSelectEndSharpFilled.tsx @@ -8,4 +8,4 @@ const IconTextSelectEndSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconTextSelectEndSharpFilled as default } +export default IconTextSelectEndSharpFilled diff --git a/src/IconTextSelectJumpToBeginningOutlined.tsx b/src/IconTextSelectJumpToBeginningOutlined.tsx index 526ea4c97..ad0633582 100644 --- a/src/IconTextSelectJumpToBeginningOutlined.tsx +++ b/src/IconTextSelectJumpToBeginningOutlined.tsx @@ -10,4 +10,4 @@ const IconTextSelectJumpToBeginningOutlined: React.FC = ({ ) -export { IconTextSelectJumpToBeginningOutlined as default } +export default IconTextSelectJumpToBeginningOutlined diff --git a/src/IconTextSelectJumpToBeginningOutlinedFilled.tsx b/src/IconTextSelectJumpToBeginningOutlinedFilled.tsx index 668b3b6db..a5a74166d 100644 --- a/src/IconTextSelectJumpToBeginningOutlinedFilled.tsx +++ b/src/IconTextSelectJumpToBeginningOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconTextSelectJumpToBeginningOutlinedFilled: React.FC = ({ ) -export { IconTextSelectJumpToBeginningOutlinedFilled as default } +export default IconTextSelectJumpToBeginningOutlinedFilled diff --git a/src/IconTextSelectJumpToBeginningRounded.tsx b/src/IconTextSelectJumpToBeginningRounded.tsx index 3d647bcdb..76bd75061 100644 --- a/src/IconTextSelectJumpToBeginningRounded.tsx +++ b/src/IconTextSelectJumpToBeginningRounded.tsx @@ -10,4 +10,4 @@ const IconTextSelectJumpToBeginningRounded: React.FC = ({ ) -export { IconTextSelectJumpToBeginningRounded as default } +export default IconTextSelectJumpToBeginningRounded diff --git a/src/IconTextSelectJumpToBeginningRoundedFilled.tsx b/src/IconTextSelectJumpToBeginningRoundedFilled.tsx index 72e19c50f..51d6a53d4 100644 --- a/src/IconTextSelectJumpToBeginningRoundedFilled.tsx +++ b/src/IconTextSelectJumpToBeginningRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconTextSelectJumpToBeginningRoundedFilled: React.FC = ({ ) -export { IconTextSelectJumpToBeginningRoundedFilled as default } +export default IconTextSelectJumpToBeginningRoundedFilled diff --git a/src/IconTextSelectJumpToBeginningSharp.tsx b/src/IconTextSelectJumpToBeginningSharp.tsx index 11a79b861..22ef67405 100644 --- a/src/IconTextSelectJumpToBeginningSharp.tsx +++ b/src/IconTextSelectJumpToBeginningSharp.tsx @@ -10,4 +10,4 @@ const IconTextSelectJumpToBeginningSharp: React.FC = ({ ) -export { IconTextSelectJumpToBeginningSharp as default } +export default IconTextSelectJumpToBeginningSharp diff --git a/src/IconTextSelectJumpToBeginningSharpFilled.tsx b/src/IconTextSelectJumpToBeginningSharpFilled.tsx index 2718272c9..b5b14b271 100644 --- a/src/IconTextSelectJumpToBeginningSharpFilled.tsx +++ b/src/IconTextSelectJumpToBeginningSharpFilled.tsx @@ -10,4 +10,4 @@ const IconTextSelectJumpToBeginningSharpFilled: React.FC = ({ ) -export { IconTextSelectJumpToBeginningSharpFilled as default } +export default IconTextSelectJumpToBeginningSharpFilled diff --git a/src/IconTextSelectJumpToEndOutlined.tsx b/src/IconTextSelectJumpToEndOutlined.tsx index 64019c1ae..1b0d29253 100644 --- a/src/IconTextSelectJumpToEndOutlined.tsx +++ b/src/IconTextSelectJumpToEndOutlined.tsx @@ -8,4 +8,4 @@ const IconTextSelectJumpToEndOutlined: React.FC = ({ ...props }) => ( ) -export { IconTextSelectJumpToEndOutlined as default } +export default IconTextSelectJumpToEndOutlined diff --git a/src/IconTextSelectJumpToEndOutlinedFilled.tsx b/src/IconTextSelectJumpToEndOutlinedFilled.tsx index 457e4a3aa..2e2f46660 100644 --- a/src/IconTextSelectJumpToEndOutlinedFilled.tsx +++ b/src/IconTextSelectJumpToEndOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconTextSelectJumpToEndOutlinedFilled: React.FC = ({ ) -export { IconTextSelectJumpToEndOutlinedFilled as default } +export default IconTextSelectJumpToEndOutlinedFilled diff --git a/src/IconTextSelectJumpToEndRounded.tsx b/src/IconTextSelectJumpToEndRounded.tsx index df7742496..5174348b7 100644 --- a/src/IconTextSelectJumpToEndRounded.tsx +++ b/src/IconTextSelectJumpToEndRounded.tsx @@ -8,4 +8,4 @@ const IconTextSelectJumpToEndRounded: React.FC = ({ ...props }) => ( ) -export { IconTextSelectJumpToEndRounded as default } +export default IconTextSelectJumpToEndRounded diff --git a/src/IconTextSelectJumpToEndRoundedFilled.tsx b/src/IconTextSelectJumpToEndRoundedFilled.tsx index d6198edc3..256e69176 100644 --- a/src/IconTextSelectJumpToEndRoundedFilled.tsx +++ b/src/IconTextSelectJumpToEndRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconTextSelectJumpToEndRoundedFilled: React.FC = ({ ) -export { IconTextSelectJumpToEndRoundedFilled as default } +export default IconTextSelectJumpToEndRoundedFilled diff --git a/src/IconTextSelectJumpToEndSharp.tsx b/src/IconTextSelectJumpToEndSharp.tsx index a4b4140d0..6cd81d4ad 100644 --- a/src/IconTextSelectJumpToEndSharp.tsx +++ b/src/IconTextSelectJumpToEndSharp.tsx @@ -8,4 +8,4 @@ const IconTextSelectJumpToEndSharp: React.FC = ({ ...props }) => ( ) -export { IconTextSelectJumpToEndSharp as default } +export default IconTextSelectJumpToEndSharp diff --git a/src/IconTextSelectJumpToEndSharpFilled.tsx b/src/IconTextSelectJumpToEndSharpFilled.tsx index 49129d0ac..868651e95 100644 --- a/src/IconTextSelectJumpToEndSharpFilled.tsx +++ b/src/IconTextSelectJumpToEndSharpFilled.tsx @@ -10,4 +10,4 @@ const IconTextSelectJumpToEndSharpFilled: React.FC = ({ ) -export { IconTextSelectJumpToEndSharpFilled as default } +export default IconTextSelectJumpToEndSharpFilled diff --git a/src/IconTextSelectMoveBackCharacterOutlined.tsx b/src/IconTextSelectMoveBackCharacterOutlined.tsx index 4e203f318..17e40de89 100644 --- a/src/IconTextSelectMoveBackCharacterOutlined.tsx +++ b/src/IconTextSelectMoveBackCharacterOutlined.tsx @@ -10,4 +10,4 @@ const IconTextSelectMoveBackCharacterOutlined: React.FC = ({ ) -export { IconTextSelectMoveBackCharacterOutlined as default } +export default IconTextSelectMoveBackCharacterOutlined diff --git a/src/IconTextSelectMoveBackCharacterOutlinedFilled.tsx b/src/IconTextSelectMoveBackCharacterOutlinedFilled.tsx index 95fe49157..89c2c3a09 100644 --- a/src/IconTextSelectMoveBackCharacterOutlinedFilled.tsx +++ b/src/IconTextSelectMoveBackCharacterOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconTextSelectMoveBackCharacterOutlinedFilled: React.FC = ({ ) -export { IconTextSelectMoveBackCharacterOutlinedFilled as default } +export default IconTextSelectMoveBackCharacterOutlinedFilled diff --git a/src/IconTextSelectMoveBackCharacterRounded.tsx b/src/IconTextSelectMoveBackCharacterRounded.tsx index 63dc47d40..5b1321446 100644 --- a/src/IconTextSelectMoveBackCharacterRounded.tsx +++ b/src/IconTextSelectMoveBackCharacterRounded.tsx @@ -10,4 +10,4 @@ const IconTextSelectMoveBackCharacterRounded: React.FC = ({ ) -export { IconTextSelectMoveBackCharacterRounded as default } +export default IconTextSelectMoveBackCharacterRounded diff --git a/src/IconTextSelectMoveBackCharacterRoundedFilled.tsx b/src/IconTextSelectMoveBackCharacterRoundedFilled.tsx index 742b58905..be85b0ef6 100644 --- a/src/IconTextSelectMoveBackCharacterRoundedFilled.tsx +++ b/src/IconTextSelectMoveBackCharacterRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconTextSelectMoveBackCharacterRoundedFilled: React.FC = ({ ) -export { IconTextSelectMoveBackCharacterRoundedFilled as default } +export default IconTextSelectMoveBackCharacterRoundedFilled diff --git a/src/IconTextSelectMoveBackCharacterSharp.tsx b/src/IconTextSelectMoveBackCharacterSharp.tsx index b1b583fd5..dd7e6c93b 100644 --- a/src/IconTextSelectMoveBackCharacterSharp.tsx +++ b/src/IconTextSelectMoveBackCharacterSharp.tsx @@ -10,4 +10,4 @@ const IconTextSelectMoveBackCharacterSharp: React.FC = ({ ) -export { IconTextSelectMoveBackCharacterSharp as default } +export default IconTextSelectMoveBackCharacterSharp diff --git a/src/IconTextSelectMoveBackCharacterSharpFilled.tsx b/src/IconTextSelectMoveBackCharacterSharpFilled.tsx index dfd0173e6..e68716383 100644 --- a/src/IconTextSelectMoveBackCharacterSharpFilled.tsx +++ b/src/IconTextSelectMoveBackCharacterSharpFilled.tsx @@ -10,4 +10,4 @@ const IconTextSelectMoveBackCharacterSharpFilled: React.FC = ({ ) -export { IconTextSelectMoveBackCharacterSharpFilled as default } +export default IconTextSelectMoveBackCharacterSharpFilled diff --git a/src/IconTextSelectMoveBackWordOutlined.tsx b/src/IconTextSelectMoveBackWordOutlined.tsx index 01ab1386c..7d8ecc088 100644 --- a/src/IconTextSelectMoveBackWordOutlined.tsx +++ b/src/IconTextSelectMoveBackWordOutlined.tsx @@ -10,4 +10,4 @@ const IconTextSelectMoveBackWordOutlined: React.FC = ({ ) -export { IconTextSelectMoveBackWordOutlined as default } +export default IconTextSelectMoveBackWordOutlined diff --git a/src/IconTextSelectMoveBackWordOutlinedFilled.tsx b/src/IconTextSelectMoveBackWordOutlinedFilled.tsx index f6491fda5..b01d5b310 100644 --- a/src/IconTextSelectMoveBackWordOutlinedFilled.tsx +++ b/src/IconTextSelectMoveBackWordOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconTextSelectMoveBackWordOutlinedFilled: React.FC = ({ ) -export { IconTextSelectMoveBackWordOutlinedFilled as default } +export default IconTextSelectMoveBackWordOutlinedFilled diff --git a/src/IconTextSelectMoveBackWordRounded.tsx b/src/IconTextSelectMoveBackWordRounded.tsx index 94cf7ba02..1dad72f26 100644 --- a/src/IconTextSelectMoveBackWordRounded.tsx +++ b/src/IconTextSelectMoveBackWordRounded.tsx @@ -10,4 +10,4 @@ const IconTextSelectMoveBackWordRounded: React.FC = ({ ) -export { IconTextSelectMoveBackWordRounded as default } +export default IconTextSelectMoveBackWordRounded diff --git a/src/IconTextSelectMoveBackWordRoundedFilled.tsx b/src/IconTextSelectMoveBackWordRoundedFilled.tsx index dea076f8b..5888f8689 100644 --- a/src/IconTextSelectMoveBackWordRoundedFilled.tsx +++ b/src/IconTextSelectMoveBackWordRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconTextSelectMoveBackWordRoundedFilled: React.FC = ({ ) -export { IconTextSelectMoveBackWordRoundedFilled as default } +export default IconTextSelectMoveBackWordRoundedFilled diff --git a/src/IconTextSelectMoveBackWordSharp.tsx b/src/IconTextSelectMoveBackWordSharp.tsx index faa7fadc6..7bcd723a0 100644 --- a/src/IconTextSelectMoveBackWordSharp.tsx +++ b/src/IconTextSelectMoveBackWordSharp.tsx @@ -8,4 +8,4 @@ const IconTextSelectMoveBackWordSharp: React.FC = ({ ...props }) => ( ) -export { IconTextSelectMoveBackWordSharp as default } +export default IconTextSelectMoveBackWordSharp diff --git a/src/IconTextSelectMoveBackWordSharpFilled.tsx b/src/IconTextSelectMoveBackWordSharpFilled.tsx index dbe597133..9d1181eeb 100644 --- a/src/IconTextSelectMoveBackWordSharpFilled.tsx +++ b/src/IconTextSelectMoveBackWordSharpFilled.tsx @@ -10,4 +10,4 @@ const IconTextSelectMoveBackWordSharpFilled: React.FC = ({ ) -export { IconTextSelectMoveBackWordSharpFilled as default } +export default IconTextSelectMoveBackWordSharpFilled diff --git a/src/IconTextSelectMoveDownOutlined.tsx b/src/IconTextSelectMoveDownOutlined.tsx index 343d82586..1818d94a5 100644 --- a/src/IconTextSelectMoveDownOutlined.tsx +++ b/src/IconTextSelectMoveDownOutlined.tsx @@ -8,4 +8,4 @@ const IconTextSelectMoveDownOutlined: React.FC = ({ ...props }) => ( ) -export { IconTextSelectMoveDownOutlined as default } +export default IconTextSelectMoveDownOutlined diff --git a/src/IconTextSelectMoveDownOutlinedFilled.tsx b/src/IconTextSelectMoveDownOutlinedFilled.tsx index 2f2194640..c75e84bbc 100644 --- a/src/IconTextSelectMoveDownOutlinedFilled.tsx +++ b/src/IconTextSelectMoveDownOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconTextSelectMoveDownOutlinedFilled: React.FC = ({ ) -export { IconTextSelectMoveDownOutlinedFilled as default } +export default IconTextSelectMoveDownOutlinedFilled diff --git a/src/IconTextSelectMoveDownRounded.tsx b/src/IconTextSelectMoveDownRounded.tsx index 853b5fc96..b1748d3c9 100644 --- a/src/IconTextSelectMoveDownRounded.tsx +++ b/src/IconTextSelectMoveDownRounded.tsx @@ -8,4 +8,4 @@ const IconTextSelectMoveDownRounded: React.FC = ({ ...props }) => ( ) -export { IconTextSelectMoveDownRounded as default } +export default IconTextSelectMoveDownRounded diff --git a/src/IconTextSelectMoveDownRoundedFilled.tsx b/src/IconTextSelectMoveDownRoundedFilled.tsx index 3c2c41a70..04cf390be 100644 --- a/src/IconTextSelectMoveDownRoundedFilled.tsx +++ b/src/IconTextSelectMoveDownRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconTextSelectMoveDownRoundedFilled: React.FC = ({ ) -export { IconTextSelectMoveDownRoundedFilled as default } +export default IconTextSelectMoveDownRoundedFilled diff --git a/src/IconTextSelectMoveDownSharp.tsx b/src/IconTextSelectMoveDownSharp.tsx index f1e0e1938..bc500fbe6 100644 --- a/src/IconTextSelectMoveDownSharp.tsx +++ b/src/IconTextSelectMoveDownSharp.tsx @@ -8,4 +8,4 @@ const IconTextSelectMoveDownSharp: React.FC = ({ ...props }) => ( ) -export { IconTextSelectMoveDownSharp as default } +export default IconTextSelectMoveDownSharp diff --git a/src/IconTextSelectMoveDownSharpFilled.tsx b/src/IconTextSelectMoveDownSharpFilled.tsx index ee8ac5829..661260f9c 100644 --- a/src/IconTextSelectMoveDownSharpFilled.tsx +++ b/src/IconTextSelectMoveDownSharpFilled.tsx @@ -10,4 +10,4 @@ const IconTextSelectMoveDownSharpFilled: React.FC = ({ ) -export { IconTextSelectMoveDownSharpFilled as default } +export default IconTextSelectMoveDownSharpFilled diff --git a/src/IconTextSelectMoveForwardCharacterOutlined.tsx b/src/IconTextSelectMoveForwardCharacterOutlined.tsx index 505d66767..b84e4f769 100644 --- a/src/IconTextSelectMoveForwardCharacterOutlined.tsx +++ b/src/IconTextSelectMoveForwardCharacterOutlined.tsx @@ -10,4 +10,4 @@ const IconTextSelectMoveForwardCharacterOutlined: React.FC = ({ ) -export { IconTextSelectMoveForwardCharacterOutlined as default } +export default IconTextSelectMoveForwardCharacterOutlined diff --git a/src/IconTextSelectMoveForwardCharacterOutlinedFilled.tsx b/src/IconTextSelectMoveForwardCharacterOutlinedFilled.tsx index 82e57c18b..5559ec01e 100644 --- a/src/IconTextSelectMoveForwardCharacterOutlinedFilled.tsx +++ b/src/IconTextSelectMoveForwardCharacterOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconTextSelectMoveForwardCharacterOutlinedFilled: React.FC = ({ ) -export { IconTextSelectMoveForwardCharacterOutlinedFilled as default } +export default IconTextSelectMoveForwardCharacterOutlinedFilled diff --git a/src/IconTextSelectMoveForwardCharacterRounded.tsx b/src/IconTextSelectMoveForwardCharacterRounded.tsx index 2548ae53b..393eb4cb2 100644 --- a/src/IconTextSelectMoveForwardCharacterRounded.tsx +++ b/src/IconTextSelectMoveForwardCharacterRounded.tsx @@ -10,4 +10,4 @@ const IconTextSelectMoveForwardCharacterRounded: React.FC = ({ ) -export { IconTextSelectMoveForwardCharacterRounded as default } +export default IconTextSelectMoveForwardCharacterRounded diff --git a/src/IconTextSelectMoveForwardCharacterRoundedFilled.tsx b/src/IconTextSelectMoveForwardCharacterRoundedFilled.tsx index 6b0b73892..a40b26f95 100644 --- a/src/IconTextSelectMoveForwardCharacterRoundedFilled.tsx +++ b/src/IconTextSelectMoveForwardCharacterRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconTextSelectMoveForwardCharacterRoundedFilled: React.FC = ({ ) -export { IconTextSelectMoveForwardCharacterRoundedFilled as default } +export default IconTextSelectMoveForwardCharacterRoundedFilled diff --git a/src/IconTextSelectMoveForwardCharacterSharp.tsx b/src/IconTextSelectMoveForwardCharacterSharp.tsx index 9fa8200b7..4a575de79 100644 --- a/src/IconTextSelectMoveForwardCharacterSharp.tsx +++ b/src/IconTextSelectMoveForwardCharacterSharp.tsx @@ -10,4 +10,4 @@ const IconTextSelectMoveForwardCharacterSharp: React.FC = ({ ) -export { IconTextSelectMoveForwardCharacterSharp as default } +export default IconTextSelectMoveForwardCharacterSharp diff --git a/src/IconTextSelectMoveForwardCharacterSharpFilled.tsx b/src/IconTextSelectMoveForwardCharacterSharpFilled.tsx index 4f4e238f0..76d045cec 100644 --- a/src/IconTextSelectMoveForwardCharacterSharpFilled.tsx +++ b/src/IconTextSelectMoveForwardCharacterSharpFilled.tsx @@ -10,4 +10,4 @@ const IconTextSelectMoveForwardCharacterSharpFilled: React.FC = ({ ) -export { IconTextSelectMoveForwardCharacterSharpFilled as default } +export default IconTextSelectMoveForwardCharacterSharpFilled diff --git a/src/IconTextSelectMoveForwardWordOutlined.tsx b/src/IconTextSelectMoveForwardWordOutlined.tsx index a6f820737..94568ab87 100644 --- a/src/IconTextSelectMoveForwardWordOutlined.tsx +++ b/src/IconTextSelectMoveForwardWordOutlined.tsx @@ -10,4 +10,4 @@ const IconTextSelectMoveForwardWordOutlined: React.FC = ({ ) -export { IconTextSelectMoveForwardWordOutlined as default } +export default IconTextSelectMoveForwardWordOutlined diff --git a/src/IconTextSelectMoveForwardWordOutlinedFilled.tsx b/src/IconTextSelectMoveForwardWordOutlinedFilled.tsx index beeac1070..52b49d9a0 100644 --- a/src/IconTextSelectMoveForwardWordOutlinedFilled.tsx +++ b/src/IconTextSelectMoveForwardWordOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconTextSelectMoveForwardWordOutlinedFilled: React.FC = ({ ) -export { IconTextSelectMoveForwardWordOutlinedFilled as default } +export default IconTextSelectMoveForwardWordOutlinedFilled diff --git a/src/IconTextSelectMoveForwardWordRounded.tsx b/src/IconTextSelectMoveForwardWordRounded.tsx index 83dbfbd25..65039fbfd 100644 --- a/src/IconTextSelectMoveForwardWordRounded.tsx +++ b/src/IconTextSelectMoveForwardWordRounded.tsx @@ -10,4 +10,4 @@ const IconTextSelectMoveForwardWordRounded: React.FC = ({ ) -export { IconTextSelectMoveForwardWordRounded as default } +export default IconTextSelectMoveForwardWordRounded diff --git a/src/IconTextSelectMoveForwardWordRoundedFilled.tsx b/src/IconTextSelectMoveForwardWordRoundedFilled.tsx index 001dae37f..e9b9db79c 100644 --- a/src/IconTextSelectMoveForwardWordRoundedFilled.tsx +++ b/src/IconTextSelectMoveForwardWordRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconTextSelectMoveForwardWordRoundedFilled: React.FC = ({ ) -export { IconTextSelectMoveForwardWordRoundedFilled as default } +export default IconTextSelectMoveForwardWordRoundedFilled diff --git a/src/IconTextSelectMoveForwardWordSharp.tsx b/src/IconTextSelectMoveForwardWordSharp.tsx index efed1ff2d..1943e8025 100644 --- a/src/IconTextSelectMoveForwardWordSharp.tsx +++ b/src/IconTextSelectMoveForwardWordSharp.tsx @@ -10,4 +10,4 @@ const IconTextSelectMoveForwardWordSharp: React.FC = ({ ) -export { IconTextSelectMoveForwardWordSharp as default } +export default IconTextSelectMoveForwardWordSharp diff --git a/src/IconTextSelectMoveForwardWordSharpFilled.tsx b/src/IconTextSelectMoveForwardWordSharpFilled.tsx index 7e5f80772..a885ad8cd 100644 --- a/src/IconTextSelectMoveForwardWordSharpFilled.tsx +++ b/src/IconTextSelectMoveForwardWordSharpFilled.tsx @@ -10,4 +10,4 @@ const IconTextSelectMoveForwardWordSharpFilled: React.FC = ({ ) -export { IconTextSelectMoveForwardWordSharpFilled as default } +export default IconTextSelectMoveForwardWordSharpFilled diff --git a/src/IconTextSelectMoveUpOutlined.tsx b/src/IconTextSelectMoveUpOutlined.tsx index 9da198109..e028dc287 100644 --- a/src/IconTextSelectMoveUpOutlined.tsx +++ b/src/IconTextSelectMoveUpOutlined.tsx @@ -8,4 +8,4 @@ const IconTextSelectMoveUpOutlined: React.FC = ({ ...props }) => ( ) -export { IconTextSelectMoveUpOutlined as default } +export default IconTextSelectMoveUpOutlined diff --git a/src/IconTextSelectMoveUpOutlinedFilled.tsx b/src/IconTextSelectMoveUpOutlinedFilled.tsx index 75f27ae1c..5e6935bae 100644 --- a/src/IconTextSelectMoveUpOutlinedFilled.tsx +++ b/src/IconTextSelectMoveUpOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconTextSelectMoveUpOutlinedFilled: React.FC = ({ ) -export { IconTextSelectMoveUpOutlinedFilled as default } +export default IconTextSelectMoveUpOutlinedFilled diff --git a/src/IconTextSelectMoveUpRounded.tsx b/src/IconTextSelectMoveUpRounded.tsx index db9d10970..d76131387 100644 --- a/src/IconTextSelectMoveUpRounded.tsx +++ b/src/IconTextSelectMoveUpRounded.tsx @@ -8,4 +8,4 @@ const IconTextSelectMoveUpRounded: React.FC = ({ ...props }) => ( ) -export { IconTextSelectMoveUpRounded as default } +export default IconTextSelectMoveUpRounded diff --git a/src/IconTextSelectMoveUpRoundedFilled.tsx b/src/IconTextSelectMoveUpRoundedFilled.tsx index 4f898c933..44cf91613 100644 --- a/src/IconTextSelectMoveUpRoundedFilled.tsx +++ b/src/IconTextSelectMoveUpRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconTextSelectMoveUpRoundedFilled: React.FC = ({ ) -export { IconTextSelectMoveUpRoundedFilled as default } +export default IconTextSelectMoveUpRoundedFilled diff --git a/src/IconTextSelectMoveUpSharp.tsx b/src/IconTextSelectMoveUpSharp.tsx index cb1797bf4..60b427b65 100644 --- a/src/IconTextSelectMoveUpSharp.tsx +++ b/src/IconTextSelectMoveUpSharp.tsx @@ -8,4 +8,4 @@ const IconTextSelectMoveUpSharp: React.FC = ({ ...props }) => ( ) -export { IconTextSelectMoveUpSharp as default } +export default IconTextSelectMoveUpSharp diff --git a/src/IconTextSelectMoveUpSharpFilled.tsx b/src/IconTextSelectMoveUpSharpFilled.tsx index 30994af36..527184ce1 100644 --- a/src/IconTextSelectMoveUpSharpFilled.tsx +++ b/src/IconTextSelectMoveUpSharpFilled.tsx @@ -8,4 +8,4 @@ const IconTextSelectMoveUpSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconTextSelectMoveUpSharpFilled as default } +export default IconTextSelectMoveUpSharpFilled diff --git a/src/IconTextSelectStartOutlined.tsx b/src/IconTextSelectStartOutlined.tsx index a6e355673..974d5ab47 100644 --- a/src/IconTextSelectStartOutlined.tsx +++ b/src/IconTextSelectStartOutlined.tsx @@ -8,4 +8,4 @@ const IconTextSelectStartOutlined: React.FC = ({ ...props }) => ( ) -export { IconTextSelectStartOutlined as default } +export default IconTextSelectStartOutlined diff --git a/src/IconTextSelectStartOutlinedFilled.tsx b/src/IconTextSelectStartOutlinedFilled.tsx index 1d7324a6d..5503ba1e2 100644 --- a/src/IconTextSelectStartOutlinedFilled.tsx +++ b/src/IconTextSelectStartOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconTextSelectStartOutlinedFilled: React.FC = ({ ) -export { IconTextSelectStartOutlinedFilled as default } +export default IconTextSelectStartOutlinedFilled diff --git a/src/IconTextSelectStartRounded.tsx b/src/IconTextSelectStartRounded.tsx index 27c279478..3a6931193 100644 --- a/src/IconTextSelectStartRounded.tsx +++ b/src/IconTextSelectStartRounded.tsx @@ -8,4 +8,4 @@ const IconTextSelectStartRounded: React.FC = ({ ...props }) => ( ) -export { IconTextSelectStartRounded as default } +export default IconTextSelectStartRounded diff --git a/src/IconTextSelectStartRoundedFilled.tsx b/src/IconTextSelectStartRoundedFilled.tsx index bcc21be28..2eed5f329 100644 --- a/src/IconTextSelectStartRoundedFilled.tsx +++ b/src/IconTextSelectStartRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconTextSelectStartRoundedFilled: React.FC = ({ ) -export { IconTextSelectStartRoundedFilled as default } +export default IconTextSelectStartRoundedFilled diff --git a/src/IconTextSelectStartSharp.tsx b/src/IconTextSelectStartSharp.tsx index 9b380ef9f..de118f527 100644 --- a/src/IconTextSelectStartSharp.tsx +++ b/src/IconTextSelectStartSharp.tsx @@ -8,4 +8,4 @@ const IconTextSelectStartSharp: React.FC = ({ ...props }) => ( ) -export { IconTextSelectStartSharp as default } +export default IconTextSelectStartSharp diff --git a/src/IconTextSelectStartSharpFilled.tsx b/src/IconTextSelectStartSharpFilled.tsx index cfd9ced75..6c4688705 100644 --- a/src/IconTextSelectStartSharpFilled.tsx +++ b/src/IconTextSelectStartSharpFilled.tsx @@ -8,4 +8,4 @@ const IconTextSelectStartSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconTextSelectStartSharpFilled as default } +export default IconTextSelectStartSharpFilled diff --git a/src/IconTextSnippetOutlined.tsx b/src/IconTextSnippetOutlined.tsx index a4f5eb44d..6a3ea60df 100644 --- a/src/IconTextSnippetOutlined.tsx +++ b/src/IconTextSnippetOutlined.tsx @@ -8,4 +8,4 @@ const IconTextSnippetOutlined: React.FC = ({ ...props }) => ( ) -export { IconTextSnippetOutlined as default } +export default IconTextSnippetOutlined diff --git a/src/IconTextSnippetOutlinedFilled.tsx b/src/IconTextSnippetOutlinedFilled.tsx index eff51fa0d..28846d647 100644 --- a/src/IconTextSnippetOutlinedFilled.tsx +++ b/src/IconTextSnippetOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconTextSnippetOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconTextSnippetOutlinedFilled as default } +export default IconTextSnippetOutlinedFilled diff --git a/src/IconTextSnippetRounded.tsx b/src/IconTextSnippetRounded.tsx index 86338fe81..1e90bb232 100644 --- a/src/IconTextSnippetRounded.tsx +++ b/src/IconTextSnippetRounded.tsx @@ -8,4 +8,4 @@ const IconTextSnippetRounded: React.FC = ({ ...props }) => ( ) -export { IconTextSnippetRounded as default } +export default IconTextSnippetRounded diff --git a/src/IconTextSnippetRoundedFilled.tsx b/src/IconTextSnippetRoundedFilled.tsx index 07efd4b72..5e0d3dc6a 100644 --- a/src/IconTextSnippetRoundedFilled.tsx +++ b/src/IconTextSnippetRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconTextSnippetRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconTextSnippetRoundedFilled as default } +export default IconTextSnippetRoundedFilled diff --git a/src/IconTextSnippetSharp.tsx b/src/IconTextSnippetSharp.tsx index 9d3204337..789341e49 100644 --- a/src/IconTextSnippetSharp.tsx +++ b/src/IconTextSnippetSharp.tsx @@ -8,4 +8,4 @@ const IconTextSnippetSharp: React.FC = ({ ...props }) => ( ) -export { IconTextSnippetSharp as default } +export default IconTextSnippetSharp diff --git a/src/IconTextSnippetSharpFilled.tsx b/src/IconTextSnippetSharpFilled.tsx index adf4e6aa8..40c475b55 100644 --- a/src/IconTextSnippetSharpFilled.tsx +++ b/src/IconTextSnippetSharpFilled.tsx @@ -8,4 +8,4 @@ const IconTextSnippetSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconTextSnippetSharpFilled as default } +export default IconTextSnippetSharpFilled diff --git a/src/IconTextToSpeechOutlined.tsx b/src/IconTextToSpeechOutlined.tsx index fbdafcfb7..164ab6e94 100644 --- a/src/IconTextToSpeechOutlined.tsx +++ b/src/IconTextToSpeechOutlined.tsx @@ -8,4 +8,4 @@ const IconTextToSpeechOutlined: React.FC = ({ ...props }) => ( ) -export { IconTextToSpeechOutlined as default } +export default IconTextToSpeechOutlined diff --git a/src/IconTextToSpeechOutlinedFilled.tsx b/src/IconTextToSpeechOutlinedFilled.tsx index 9dcab1626..48e0e2ef2 100644 --- a/src/IconTextToSpeechOutlinedFilled.tsx +++ b/src/IconTextToSpeechOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconTextToSpeechOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconTextToSpeechOutlinedFilled as default } +export default IconTextToSpeechOutlinedFilled diff --git a/src/IconTextToSpeechRounded.tsx b/src/IconTextToSpeechRounded.tsx index 140902937..a4b3b2003 100644 --- a/src/IconTextToSpeechRounded.tsx +++ b/src/IconTextToSpeechRounded.tsx @@ -8,4 +8,4 @@ const IconTextToSpeechRounded: React.FC = ({ ...props }) => ( ) -export { IconTextToSpeechRounded as default } +export default IconTextToSpeechRounded diff --git a/src/IconTextToSpeechRoundedFilled.tsx b/src/IconTextToSpeechRoundedFilled.tsx index 3329f393b..7bfcce945 100644 --- a/src/IconTextToSpeechRoundedFilled.tsx +++ b/src/IconTextToSpeechRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconTextToSpeechRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconTextToSpeechRoundedFilled as default } +export default IconTextToSpeechRoundedFilled diff --git a/src/IconTextToSpeechSharp.tsx b/src/IconTextToSpeechSharp.tsx index a5cc077f6..b52b649af 100644 --- a/src/IconTextToSpeechSharp.tsx +++ b/src/IconTextToSpeechSharp.tsx @@ -8,4 +8,4 @@ const IconTextToSpeechSharp: React.FC = ({ ...props }) => ( ) -export { IconTextToSpeechSharp as default } +export default IconTextToSpeechSharp diff --git a/src/IconTextToSpeechSharpFilled.tsx b/src/IconTextToSpeechSharpFilled.tsx index 89daa9031..883641e38 100644 --- a/src/IconTextToSpeechSharpFilled.tsx +++ b/src/IconTextToSpeechSharpFilled.tsx @@ -8,4 +8,4 @@ const IconTextToSpeechSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconTextToSpeechSharpFilled as default } +export default IconTextToSpeechSharpFilled diff --git a/src/IconTextUpOutlined.tsx b/src/IconTextUpOutlined.tsx index c4f1f63c6..fecfe5999 100644 --- a/src/IconTextUpOutlined.tsx +++ b/src/IconTextUpOutlined.tsx @@ -8,4 +8,4 @@ const IconTextUpOutlined: React.FC = ({ ...props }) => ( ) -export { IconTextUpOutlined as default } +export default IconTextUpOutlined diff --git a/src/IconTextUpOutlinedFilled.tsx b/src/IconTextUpOutlinedFilled.tsx index 3adc3bdd2..061f649c2 100644 --- a/src/IconTextUpOutlinedFilled.tsx +++ b/src/IconTextUpOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconTextUpOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconTextUpOutlinedFilled as default } +export default IconTextUpOutlinedFilled diff --git a/src/IconTextUpRounded.tsx b/src/IconTextUpRounded.tsx index 464ded309..a1ed3c761 100644 --- a/src/IconTextUpRounded.tsx +++ b/src/IconTextUpRounded.tsx @@ -8,4 +8,4 @@ const IconTextUpRounded: React.FC = ({ ...props }) => ( ) -export { IconTextUpRounded as default } +export default IconTextUpRounded diff --git a/src/IconTextUpRoundedFilled.tsx b/src/IconTextUpRoundedFilled.tsx index f1aece897..c0011aec1 100644 --- a/src/IconTextUpRoundedFilled.tsx +++ b/src/IconTextUpRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconTextUpRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconTextUpRoundedFilled as default } +export default IconTextUpRoundedFilled diff --git a/src/IconTextUpSharp.tsx b/src/IconTextUpSharp.tsx index 222c40f51..1dd4dff86 100644 --- a/src/IconTextUpSharp.tsx +++ b/src/IconTextUpSharp.tsx @@ -8,4 +8,4 @@ const IconTextUpSharp: React.FC = ({ ...props }) => ( ) -export { IconTextUpSharp as default } +export default IconTextUpSharp diff --git a/src/IconTextUpSharpFilled.tsx b/src/IconTextUpSharpFilled.tsx index 8315cc2d4..4f74455d6 100644 --- a/src/IconTextUpSharpFilled.tsx +++ b/src/IconTextUpSharpFilled.tsx @@ -8,4 +8,4 @@ const IconTextUpSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconTextUpSharpFilled as default } +export default IconTextUpSharpFilled diff --git a/src/IconTextureAddOutlined.tsx b/src/IconTextureAddOutlined.tsx index fc5dec0bf..b142c297c 100644 --- a/src/IconTextureAddOutlined.tsx +++ b/src/IconTextureAddOutlined.tsx @@ -8,4 +8,4 @@ const IconTextureAddOutlined: React.FC = ({ ...props }) => ( ) -export { IconTextureAddOutlined as default } +export default IconTextureAddOutlined diff --git a/src/IconTextureAddOutlinedFilled.tsx b/src/IconTextureAddOutlinedFilled.tsx index 5c089dc56..e53a15a56 100644 --- a/src/IconTextureAddOutlinedFilled.tsx +++ b/src/IconTextureAddOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconTextureAddOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconTextureAddOutlinedFilled as default } +export default IconTextureAddOutlinedFilled diff --git a/src/IconTextureAddRounded.tsx b/src/IconTextureAddRounded.tsx index 0705ddcfc..3881a9a65 100644 --- a/src/IconTextureAddRounded.tsx +++ b/src/IconTextureAddRounded.tsx @@ -8,4 +8,4 @@ const IconTextureAddRounded: React.FC = ({ ...props }) => ( ) -export { IconTextureAddRounded as default } +export default IconTextureAddRounded diff --git a/src/IconTextureAddRoundedFilled.tsx b/src/IconTextureAddRoundedFilled.tsx index bfd66bf7e..d258d6c30 100644 --- a/src/IconTextureAddRoundedFilled.tsx +++ b/src/IconTextureAddRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconTextureAddRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconTextureAddRoundedFilled as default } +export default IconTextureAddRoundedFilled diff --git a/src/IconTextureAddSharp.tsx b/src/IconTextureAddSharp.tsx index 1e8567607..db78405e6 100644 --- a/src/IconTextureAddSharp.tsx +++ b/src/IconTextureAddSharp.tsx @@ -8,4 +8,4 @@ const IconTextureAddSharp: React.FC = ({ ...props }) => ( ) -export { IconTextureAddSharp as default } +export default IconTextureAddSharp diff --git a/src/IconTextureAddSharpFilled.tsx b/src/IconTextureAddSharpFilled.tsx index 18968827d..52e5ddf3f 100644 --- a/src/IconTextureAddSharpFilled.tsx +++ b/src/IconTextureAddSharpFilled.tsx @@ -8,4 +8,4 @@ const IconTextureAddSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconTextureAddSharpFilled as default } +export default IconTextureAddSharpFilled diff --git a/src/IconTextureMinusOutlined.tsx b/src/IconTextureMinusOutlined.tsx index db6324615..efa233c3d 100644 --- a/src/IconTextureMinusOutlined.tsx +++ b/src/IconTextureMinusOutlined.tsx @@ -8,4 +8,4 @@ const IconTextureMinusOutlined: React.FC = ({ ...props }) => ( ) -export { IconTextureMinusOutlined as default } +export default IconTextureMinusOutlined diff --git a/src/IconTextureMinusOutlinedFilled.tsx b/src/IconTextureMinusOutlinedFilled.tsx index 8830a5e33..4f9e5fdb9 100644 --- a/src/IconTextureMinusOutlinedFilled.tsx +++ b/src/IconTextureMinusOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconTextureMinusOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconTextureMinusOutlinedFilled as default } +export default IconTextureMinusOutlinedFilled diff --git a/src/IconTextureMinusRounded.tsx b/src/IconTextureMinusRounded.tsx index 01ec51f03..ab3aa073e 100644 --- a/src/IconTextureMinusRounded.tsx +++ b/src/IconTextureMinusRounded.tsx @@ -8,4 +8,4 @@ const IconTextureMinusRounded: React.FC = ({ ...props }) => ( ) -export { IconTextureMinusRounded as default } +export default IconTextureMinusRounded diff --git a/src/IconTextureMinusRoundedFilled.tsx b/src/IconTextureMinusRoundedFilled.tsx index 7ebca81d5..7dc31421d 100644 --- a/src/IconTextureMinusRoundedFilled.tsx +++ b/src/IconTextureMinusRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconTextureMinusRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconTextureMinusRoundedFilled as default } +export default IconTextureMinusRoundedFilled diff --git a/src/IconTextureMinusSharp.tsx b/src/IconTextureMinusSharp.tsx index 3efd526b2..042379cbe 100644 --- a/src/IconTextureMinusSharp.tsx +++ b/src/IconTextureMinusSharp.tsx @@ -8,4 +8,4 @@ const IconTextureMinusSharp: React.FC = ({ ...props }) => ( ) -export { IconTextureMinusSharp as default } +export default IconTextureMinusSharp diff --git a/src/IconTextureMinusSharpFilled.tsx b/src/IconTextureMinusSharpFilled.tsx index 9c4377dc2..c8401166c 100644 --- a/src/IconTextureMinusSharpFilled.tsx +++ b/src/IconTextureMinusSharpFilled.tsx @@ -8,4 +8,4 @@ const IconTextureMinusSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconTextureMinusSharpFilled as default } +export default IconTextureMinusSharpFilled diff --git a/src/IconTextureOutlined.tsx b/src/IconTextureOutlined.tsx index d48029657..5c0ab2113 100644 --- a/src/IconTextureOutlined.tsx +++ b/src/IconTextureOutlined.tsx @@ -8,4 +8,4 @@ const IconTextureOutlined: React.FC = ({ ...props }) => ( ) -export { IconTextureOutlined as default } +export default IconTextureOutlined diff --git a/src/IconTextureOutlinedFilled.tsx b/src/IconTextureOutlinedFilled.tsx index b5bf9f36d..ee534bf16 100644 --- a/src/IconTextureOutlinedFilled.tsx +++ b/src/IconTextureOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconTextureOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconTextureOutlinedFilled as default } +export default IconTextureOutlinedFilled diff --git a/src/IconTextureRounded.tsx b/src/IconTextureRounded.tsx index 61bb05f98..c153a59b5 100644 --- a/src/IconTextureRounded.tsx +++ b/src/IconTextureRounded.tsx @@ -8,4 +8,4 @@ const IconTextureRounded: React.FC = ({ ...props }) => ( ) -export { IconTextureRounded as default } +export default IconTextureRounded diff --git a/src/IconTextureRoundedFilled.tsx b/src/IconTextureRoundedFilled.tsx index 7ed93f677..2d9c92e84 100644 --- a/src/IconTextureRoundedFilled.tsx +++ b/src/IconTextureRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconTextureRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconTextureRoundedFilled as default } +export default IconTextureRoundedFilled diff --git a/src/IconTextureSharp.tsx b/src/IconTextureSharp.tsx index 6a7f3ae9b..bb61c2886 100644 --- a/src/IconTextureSharp.tsx +++ b/src/IconTextureSharp.tsx @@ -8,4 +8,4 @@ const IconTextureSharp: React.FC = ({ ...props }) => ( ) -export { IconTextureSharp as default } +export default IconTextureSharp diff --git a/src/IconTextureSharpFilled.tsx b/src/IconTextureSharpFilled.tsx index 9832fdd16..e7c5bbc7c 100644 --- a/src/IconTextureSharpFilled.tsx +++ b/src/IconTextureSharpFilled.tsx @@ -8,4 +8,4 @@ const IconTextureSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconTextureSharpFilled as default } +export default IconTextureSharpFilled diff --git a/src/IconTheaterComedyOutlined.tsx b/src/IconTheaterComedyOutlined.tsx index 33b07286b..786abf6c3 100644 --- a/src/IconTheaterComedyOutlined.tsx +++ b/src/IconTheaterComedyOutlined.tsx @@ -8,4 +8,4 @@ const IconTheaterComedyOutlined: React.FC = ({ ...props }) => ( ) -export { IconTheaterComedyOutlined as default } +export default IconTheaterComedyOutlined diff --git a/src/IconTheaterComedyOutlinedFilled.tsx b/src/IconTheaterComedyOutlinedFilled.tsx index d44e2e362..d1b8cf7cb 100644 --- a/src/IconTheaterComedyOutlinedFilled.tsx +++ b/src/IconTheaterComedyOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconTheaterComedyOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconTheaterComedyOutlinedFilled as default } +export default IconTheaterComedyOutlinedFilled diff --git a/src/IconTheaterComedyRounded.tsx b/src/IconTheaterComedyRounded.tsx index 516a1e693..f6af09230 100644 --- a/src/IconTheaterComedyRounded.tsx +++ b/src/IconTheaterComedyRounded.tsx @@ -8,4 +8,4 @@ const IconTheaterComedyRounded: React.FC = ({ ...props }) => ( ) -export { IconTheaterComedyRounded as default } +export default IconTheaterComedyRounded diff --git a/src/IconTheaterComedyRoundedFilled.tsx b/src/IconTheaterComedyRoundedFilled.tsx index 256390ccd..a4110aa5e 100644 --- a/src/IconTheaterComedyRoundedFilled.tsx +++ b/src/IconTheaterComedyRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconTheaterComedyRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconTheaterComedyRoundedFilled as default } +export default IconTheaterComedyRoundedFilled diff --git a/src/IconTheaterComedySharp.tsx b/src/IconTheaterComedySharp.tsx index 4b4be39d2..44a2b32fc 100644 --- a/src/IconTheaterComedySharp.tsx +++ b/src/IconTheaterComedySharp.tsx @@ -8,4 +8,4 @@ const IconTheaterComedySharp: React.FC = ({ ...props }) => ( ) -export { IconTheaterComedySharp as default } +export default IconTheaterComedySharp diff --git a/src/IconTheaterComedySharpFilled.tsx b/src/IconTheaterComedySharpFilled.tsx index b17614b9e..7dcf42be8 100644 --- a/src/IconTheaterComedySharpFilled.tsx +++ b/src/IconTheaterComedySharpFilled.tsx @@ -8,4 +8,4 @@ const IconTheaterComedySharpFilled: React.FC = ({ ...props }) => ( ) -export { IconTheaterComedySharpFilled as default } +export default IconTheaterComedySharpFilled diff --git a/src/IconTheatersOutlined.tsx b/src/IconTheatersOutlined.tsx index 9d8fe8109..56ee5b6a8 100644 --- a/src/IconTheatersOutlined.tsx +++ b/src/IconTheatersOutlined.tsx @@ -8,4 +8,4 @@ const IconTheatersOutlined: React.FC = ({ ...props }) => ( ) -export { IconTheatersOutlined as default } +export default IconTheatersOutlined diff --git a/src/IconTheatersOutlinedFilled.tsx b/src/IconTheatersOutlinedFilled.tsx index 4c4a02299..5f4292e53 100644 --- a/src/IconTheatersOutlinedFilled.tsx +++ b/src/IconTheatersOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconTheatersOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconTheatersOutlinedFilled as default } +export default IconTheatersOutlinedFilled diff --git a/src/IconTheatersRounded.tsx b/src/IconTheatersRounded.tsx index e4cb9498f..0e583e2a1 100644 --- a/src/IconTheatersRounded.tsx +++ b/src/IconTheatersRounded.tsx @@ -8,4 +8,4 @@ const IconTheatersRounded: React.FC = ({ ...props }) => ( ) -export { IconTheatersRounded as default } +export default IconTheatersRounded diff --git a/src/IconTheatersRoundedFilled.tsx b/src/IconTheatersRoundedFilled.tsx index d7ab79e72..be578e28e 100644 --- a/src/IconTheatersRoundedFilled.tsx +++ b/src/IconTheatersRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconTheatersRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconTheatersRoundedFilled as default } +export default IconTheatersRoundedFilled diff --git a/src/IconTheatersSharp.tsx b/src/IconTheatersSharp.tsx index af565535b..77a1ee669 100644 --- a/src/IconTheatersSharp.tsx +++ b/src/IconTheatersSharp.tsx @@ -8,4 +8,4 @@ const IconTheatersSharp: React.FC = ({ ...props }) => ( ) -export { IconTheatersSharp as default } +export default IconTheatersSharp diff --git a/src/IconTheatersSharpFilled.tsx b/src/IconTheatersSharpFilled.tsx index 82f0dc27c..d3bce3043 100644 --- a/src/IconTheatersSharpFilled.tsx +++ b/src/IconTheatersSharpFilled.tsx @@ -8,4 +8,4 @@ const IconTheatersSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconTheatersSharpFilled as default } +export default IconTheatersSharpFilled diff --git a/src/IconThermometerAddOutlined.tsx b/src/IconThermometerAddOutlined.tsx index cf0b770bc..68446cec5 100644 --- a/src/IconThermometerAddOutlined.tsx +++ b/src/IconThermometerAddOutlined.tsx @@ -8,4 +8,4 @@ const IconThermometerAddOutlined: React.FC = ({ ...props }) => ( ) -export { IconThermometerAddOutlined as default } +export default IconThermometerAddOutlined diff --git a/src/IconThermometerAddOutlinedFilled.tsx b/src/IconThermometerAddOutlinedFilled.tsx index 01d5e2798..9fd8c3111 100644 --- a/src/IconThermometerAddOutlinedFilled.tsx +++ b/src/IconThermometerAddOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconThermometerAddOutlinedFilled: React.FC = ({ ) -export { IconThermometerAddOutlinedFilled as default } +export default IconThermometerAddOutlinedFilled diff --git a/src/IconThermometerAddRounded.tsx b/src/IconThermometerAddRounded.tsx index c4c1614ec..ddde56c49 100644 --- a/src/IconThermometerAddRounded.tsx +++ b/src/IconThermometerAddRounded.tsx @@ -8,4 +8,4 @@ const IconThermometerAddRounded: React.FC = ({ ...props }) => ( ) -export { IconThermometerAddRounded as default } +export default IconThermometerAddRounded diff --git a/src/IconThermometerAddRoundedFilled.tsx b/src/IconThermometerAddRoundedFilled.tsx index 0e40577bd..fe71cb782 100644 --- a/src/IconThermometerAddRoundedFilled.tsx +++ b/src/IconThermometerAddRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconThermometerAddRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconThermometerAddRoundedFilled as default } +export default IconThermometerAddRoundedFilled diff --git a/src/IconThermometerAddSharp.tsx b/src/IconThermometerAddSharp.tsx index 606baf698..42618a4d0 100644 --- a/src/IconThermometerAddSharp.tsx +++ b/src/IconThermometerAddSharp.tsx @@ -8,4 +8,4 @@ const IconThermometerAddSharp: React.FC = ({ ...props }) => ( ) -export { IconThermometerAddSharp as default } +export default IconThermometerAddSharp diff --git a/src/IconThermometerAddSharpFilled.tsx b/src/IconThermometerAddSharpFilled.tsx index 0aba60410..778ab72d2 100644 --- a/src/IconThermometerAddSharpFilled.tsx +++ b/src/IconThermometerAddSharpFilled.tsx @@ -8,4 +8,4 @@ const IconThermometerAddSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconThermometerAddSharpFilled as default } +export default IconThermometerAddSharpFilled diff --git a/src/IconThermometerGainOutlined.tsx b/src/IconThermometerGainOutlined.tsx index 8b9ebb6df..cce797321 100644 --- a/src/IconThermometerGainOutlined.tsx +++ b/src/IconThermometerGainOutlined.tsx @@ -8,4 +8,4 @@ const IconThermometerGainOutlined: React.FC = ({ ...props }) => ( ) -export { IconThermometerGainOutlined as default } +export default IconThermometerGainOutlined diff --git a/src/IconThermometerGainOutlinedFilled.tsx b/src/IconThermometerGainOutlinedFilled.tsx index 24a89b0d7..223467aed 100644 --- a/src/IconThermometerGainOutlinedFilled.tsx +++ b/src/IconThermometerGainOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconThermometerGainOutlinedFilled: React.FC = ({ ) -export { IconThermometerGainOutlinedFilled as default } +export default IconThermometerGainOutlinedFilled diff --git a/src/IconThermometerGainRounded.tsx b/src/IconThermometerGainRounded.tsx index 36c068f30..75dede8b5 100644 --- a/src/IconThermometerGainRounded.tsx +++ b/src/IconThermometerGainRounded.tsx @@ -8,4 +8,4 @@ const IconThermometerGainRounded: React.FC = ({ ...props }) => ( ) -export { IconThermometerGainRounded as default } +export default IconThermometerGainRounded diff --git a/src/IconThermometerGainRoundedFilled.tsx b/src/IconThermometerGainRoundedFilled.tsx index 490221b59..1834ed863 100644 --- a/src/IconThermometerGainRoundedFilled.tsx +++ b/src/IconThermometerGainRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconThermometerGainRoundedFilled: React.FC = ({ ) -export { IconThermometerGainRoundedFilled as default } +export default IconThermometerGainRoundedFilled diff --git a/src/IconThermometerGainSharp.tsx b/src/IconThermometerGainSharp.tsx index bae98d387..232907a58 100644 --- a/src/IconThermometerGainSharp.tsx +++ b/src/IconThermometerGainSharp.tsx @@ -8,4 +8,4 @@ const IconThermometerGainSharp: React.FC = ({ ...props }) => ( ) -export { IconThermometerGainSharp as default } +export default IconThermometerGainSharp diff --git a/src/IconThermometerGainSharpFilled.tsx b/src/IconThermometerGainSharpFilled.tsx index 182559647..d8dd28a45 100644 --- a/src/IconThermometerGainSharpFilled.tsx +++ b/src/IconThermometerGainSharpFilled.tsx @@ -8,4 +8,4 @@ const IconThermometerGainSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconThermometerGainSharpFilled as default } +export default IconThermometerGainSharpFilled diff --git a/src/IconThermometerLossOutlined.tsx b/src/IconThermometerLossOutlined.tsx index f9e717e00..c8a399fe5 100644 --- a/src/IconThermometerLossOutlined.tsx +++ b/src/IconThermometerLossOutlined.tsx @@ -8,4 +8,4 @@ const IconThermometerLossOutlined: React.FC = ({ ...props }) => ( ) -export { IconThermometerLossOutlined as default } +export default IconThermometerLossOutlined diff --git a/src/IconThermometerLossOutlinedFilled.tsx b/src/IconThermometerLossOutlinedFilled.tsx index 6ed554192..6d3e62254 100644 --- a/src/IconThermometerLossOutlinedFilled.tsx +++ b/src/IconThermometerLossOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconThermometerLossOutlinedFilled: React.FC = ({ ) -export { IconThermometerLossOutlinedFilled as default } +export default IconThermometerLossOutlinedFilled diff --git a/src/IconThermometerLossRounded.tsx b/src/IconThermometerLossRounded.tsx index c8d17c5bb..e54cdb54d 100644 --- a/src/IconThermometerLossRounded.tsx +++ b/src/IconThermometerLossRounded.tsx @@ -8,4 +8,4 @@ const IconThermometerLossRounded: React.FC = ({ ...props }) => ( ) -export { IconThermometerLossRounded as default } +export default IconThermometerLossRounded diff --git a/src/IconThermometerLossRoundedFilled.tsx b/src/IconThermometerLossRoundedFilled.tsx index fe99fbb81..9e5750bb4 100644 --- a/src/IconThermometerLossRoundedFilled.tsx +++ b/src/IconThermometerLossRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconThermometerLossRoundedFilled: React.FC = ({ ) -export { IconThermometerLossRoundedFilled as default } +export default IconThermometerLossRoundedFilled diff --git a/src/IconThermometerLossSharp.tsx b/src/IconThermometerLossSharp.tsx index 0b9009418..f12fb80b9 100644 --- a/src/IconThermometerLossSharp.tsx +++ b/src/IconThermometerLossSharp.tsx @@ -8,4 +8,4 @@ const IconThermometerLossSharp: React.FC = ({ ...props }) => ( ) -export { IconThermometerLossSharp as default } +export default IconThermometerLossSharp diff --git a/src/IconThermometerLossSharpFilled.tsx b/src/IconThermometerLossSharpFilled.tsx index d2c8daea0..e33669136 100644 --- a/src/IconThermometerLossSharpFilled.tsx +++ b/src/IconThermometerLossSharpFilled.tsx @@ -8,4 +8,4 @@ const IconThermometerLossSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconThermometerLossSharpFilled as default } +export default IconThermometerLossSharpFilled diff --git a/src/IconThermometerMinusOutlined.tsx b/src/IconThermometerMinusOutlined.tsx index b451844d8..70be30d2f 100644 --- a/src/IconThermometerMinusOutlined.tsx +++ b/src/IconThermometerMinusOutlined.tsx @@ -8,4 +8,4 @@ const IconThermometerMinusOutlined: React.FC = ({ ...props }) => ( ) -export { IconThermometerMinusOutlined as default } +export default IconThermometerMinusOutlined diff --git a/src/IconThermometerMinusOutlinedFilled.tsx b/src/IconThermometerMinusOutlinedFilled.tsx index 813f2e3a4..28394239e 100644 --- a/src/IconThermometerMinusOutlinedFilled.tsx +++ b/src/IconThermometerMinusOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconThermometerMinusOutlinedFilled: React.FC = ({ ) -export { IconThermometerMinusOutlinedFilled as default } +export default IconThermometerMinusOutlinedFilled diff --git a/src/IconThermometerMinusRounded.tsx b/src/IconThermometerMinusRounded.tsx index b9d36976b..7b2221a38 100644 --- a/src/IconThermometerMinusRounded.tsx +++ b/src/IconThermometerMinusRounded.tsx @@ -8,4 +8,4 @@ const IconThermometerMinusRounded: React.FC = ({ ...props }) => ( ) -export { IconThermometerMinusRounded as default } +export default IconThermometerMinusRounded diff --git a/src/IconThermometerMinusRoundedFilled.tsx b/src/IconThermometerMinusRoundedFilled.tsx index 110756537..56804dbcc 100644 --- a/src/IconThermometerMinusRoundedFilled.tsx +++ b/src/IconThermometerMinusRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconThermometerMinusRoundedFilled: React.FC = ({ ) -export { IconThermometerMinusRoundedFilled as default } +export default IconThermometerMinusRoundedFilled diff --git a/src/IconThermometerMinusSharp.tsx b/src/IconThermometerMinusSharp.tsx index d15046325..dc6c0a720 100644 --- a/src/IconThermometerMinusSharp.tsx +++ b/src/IconThermometerMinusSharp.tsx @@ -8,4 +8,4 @@ const IconThermometerMinusSharp: React.FC = ({ ...props }) => ( ) -export { IconThermometerMinusSharp as default } +export default IconThermometerMinusSharp diff --git a/src/IconThermometerMinusSharpFilled.tsx b/src/IconThermometerMinusSharpFilled.tsx index 531cfb1aa..ec8d70c5a 100644 --- a/src/IconThermometerMinusSharpFilled.tsx +++ b/src/IconThermometerMinusSharpFilled.tsx @@ -8,4 +8,4 @@ const IconThermometerMinusSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconThermometerMinusSharpFilled as default } +export default IconThermometerMinusSharpFilled diff --git a/src/IconThermometerOutlined.tsx b/src/IconThermometerOutlined.tsx index 0bb51f32d..4bb4da9d5 100644 --- a/src/IconThermometerOutlined.tsx +++ b/src/IconThermometerOutlined.tsx @@ -8,4 +8,4 @@ const IconThermometerOutlined: React.FC = ({ ...props }) => ( ) -export { IconThermometerOutlined as default } +export default IconThermometerOutlined diff --git a/src/IconThermometerOutlinedFilled.tsx b/src/IconThermometerOutlinedFilled.tsx index e9bb66640..ec08a95b1 100644 --- a/src/IconThermometerOutlinedFilled.tsx +++ b/src/IconThermometerOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconThermometerOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconThermometerOutlinedFilled as default } +export default IconThermometerOutlinedFilled diff --git a/src/IconThermometerRounded.tsx b/src/IconThermometerRounded.tsx index 0b5fdbe2e..9393acb01 100644 --- a/src/IconThermometerRounded.tsx +++ b/src/IconThermometerRounded.tsx @@ -8,4 +8,4 @@ const IconThermometerRounded: React.FC = ({ ...props }) => ( ) -export { IconThermometerRounded as default } +export default IconThermometerRounded diff --git a/src/IconThermometerRoundedFilled.tsx b/src/IconThermometerRoundedFilled.tsx index 1b2597bc1..5cc7fb6e4 100644 --- a/src/IconThermometerRoundedFilled.tsx +++ b/src/IconThermometerRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconThermometerRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconThermometerRoundedFilled as default } +export default IconThermometerRoundedFilled diff --git a/src/IconThermometerSharp.tsx b/src/IconThermometerSharp.tsx index 1132e0870..543bbb4a7 100644 --- a/src/IconThermometerSharp.tsx +++ b/src/IconThermometerSharp.tsx @@ -8,4 +8,4 @@ const IconThermometerSharp: React.FC = ({ ...props }) => ( ) -export { IconThermometerSharp as default } +export default IconThermometerSharp diff --git a/src/IconThermometerSharpFilled.tsx b/src/IconThermometerSharpFilled.tsx index 3f52032d0..30a3909bf 100644 --- a/src/IconThermometerSharpFilled.tsx +++ b/src/IconThermometerSharpFilled.tsx @@ -8,4 +8,4 @@ const IconThermometerSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconThermometerSharpFilled as default } +export default IconThermometerSharpFilled diff --git a/src/IconThermostatAutoOutlined.tsx b/src/IconThermostatAutoOutlined.tsx index 7a78c7143..a91023097 100644 --- a/src/IconThermostatAutoOutlined.tsx +++ b/src/IconThermostatAutoOutlined.tsx @@ -8,4 +8,4 @@ const IconThermostatAutoOutlined: React.FC = ({ ...props }) => ( ) -export { IconThermostatAutoOutlined as default } +export default IconThermostatAutoOutlined diff --git a/src/IconThermostatAutoOutlinedFilled.tsx b/src/IconThermostatAutoOutlinedFilled.tsx index 75a82a858..447f8a826 100644 --- a/src/IconThermostatAutoOutlinedFilled.tsx +++ b/src/IconThermostatAutoOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconThermostatAutoOutlinedFilled: React.FC = ({ ) -export { IconThermostatAutoOutlinedFilled as default } +export default IconThermostatAutoOutlinedFilled diff --git a/src/IconThermostatAutoRounded.tsx b/src/IconThermostatAutoRounded.tsx index 44453e5b6..cecc1cc76 100644 --- a/src/IconThermostatAutoRounded.tsx +++ b/src/IconThermostatAutoRounded.tsx @@ -8,4 +8,4 @@ const IconThermostatAutoRounded: React.FC = ({ ...props }) => ( ) -export { IconThermostatAutoRounded as default } +export default IconThermostatAutoRounded diff --git a/src/IconThermostatAutoRoundedFilled.tsx b/src/IconThermostatAutoRoundedFilled.tsx index 50d3dbafd..f9486559c 100644 --- a/src/IconThermostatAutoRoundedFilled.tsx +++ b/src/IconThermostatAutoRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconThermostatAutoRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconThermostatAutoRoundedFilled as default } +export default IconThermostatAutoRoundedFilled diff --git a/src/IconThermostatAutoSharp.tsx b/src/IconThermostatAutoSharp.tsx index b5a499a75..f6fae7ae1 100644 --- a/src/IconThermostatAutoSharp.tsx +++ b/src/IconThermostatAutoSharp.tsx @@ -8,4 +8,4 @@ const IconThermostatAutoSharp: React.FC = ({ ...props }) => ( ) -export { IconThermostatAutoSharp as default } +export default IconThermostatAutoSharp diff --git a/src/IconThermostatAutoSharpFilled.tsx b/src/IconThermostatAutoSharpFilled.tsx index 2d733b046..fdf39f118 100644 --- a/src/IconThermostatAutoSharpFilled.tsx +++ b/src/IconThermostatAutoSharpFilled.tsx @@ -8,4 +8,4 @@ const IconThermostatAutoSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconThermostatAutoSharpFilled as default } +export default IconThermostatAutoSharpFilled diff --git a/src/IconThermostatCarbonOutlined.tsx b/src/IconThermostatCarbonOutlined.tsx index 4f0470fc0..bfb3760d8 100644 --- a/src/IconThermostatCarbonOutlined.tsx +++ b/src/IconThermostatCarbonOutlined.tsx @@ -8,4 +8,4 @@ const IconThermostatCarbonOutlined: React.FC = ({ ...props }) => ( ) -export { IconThermostatCarbonOutlined as default } +export default IconThermostatCarbonOutlined diff --git a/src/IconThermostatCarbonOutlinedFilled.tsx b/src/IconThermostatCarbonOutlinedFilled.tsx index 1d0f0c793..d3a1dc39a 100644 --- a/src/IconThermostatCarbonOutlinedFilled.tsx +++ b/src/IconThermostatCarbonOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconThermostatCarbonOutlinedFilled: React.FC = ({ ) -export { IconThermostatCarbonOutlinedFilled as default } +export default IconThermostatCarbonOutlinedFilled diff --git a/src/IconThermostatCarbonRounded.tsx b/src/IconThermostatCarbonRounded.tsx index cd32f3a85..3ede6d1ba 100644 --- a/src/IconThermostatCarbonRounded.tsx +++ b/src/IconThermostatCarbonRounded.tsx @@ -8,4 +8,4 @@ const IconThermostatCarbonRounded: React.FC = ({ ...props }) => ( ) -export { IconThermostatCarbonRounded as default } +export default IconThermostatCarbonRounded diff --git a/src/IconThermostatCarbonRoundedFilled.tsx b/src/IconThermostatCarbonRoundedFilled.tsx index 107181c5c..a1c7bce22 100644 --- a/src/IconThermostatCarbonRoundedFilled.tsx +++ b/src/IconThermostatCarbonRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconThermostatCarbonRoundedFilled: React.FC = ({ ) -export { IconThermostatCarbonRoundedFilled as default } +export default IconThermostatCarbonRoundedFilled diff --git a/src/IconThermostatCarbonSharp.tsx b/src/IconThermostatCarbonSharp.tsx index cfe8a5925..d03881682 100644 --- a/src/IconThermostatCarbonSharp.tsx +++ b/src/IconThermostatCarbonSharp.tsx @@ -8,4 +8,4 @@ const IconThermostatCarbonSharp: React.FC = ({ ...props }) => ( ) -export { IconThermostatCarbonSharp as default } +export default IconThermostatCarbonSharp diff --git a/src/IconThermostatCarbonSharpFilled.tsx b/src/IconThermostatCarbonSharpFilled.tsx index 011a074e0..4695db484 100644 --- a/src/IconThermostatCarbonSharpFilled.tsx +++ b/src/IconThermostatCarbonSharpFilled.tsx @@ -8,4 +8,4 @@ const IconThermostatCarbonSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconThermostatCarbonSharpFilled as default } +export default IconThermostatCarbonSharpFilled diff --git a/src/IconThermostatOutlined.tsx b/src/IconThermostatOutlined.tsx index dfcb90ed0..2bd6c60c9 100644 --- a/src/IconThermostatOutlined.tsx +++ b/src/IconThermostatOutlined.tsx @@ -8,4 +8,4 @@ const IconThermostatOutlined: React.FC = ({ ...props }) => ( ) -export { IconThermostatOutlined as default } +export default IconThermostatOutlined diff --git a/src/IconThermostatOutlinedFilled.tsx b/src/IconThermostatOutlinedFilled.tsx index c8ee6a871..d245ecb66 100644 --- a/src/IconThermostatOutlinedFilled.tsx +++ b/src/IconThermostatOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconThermostatOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconThermostatOutlinedFilled as default } +export default IconThermostatOutlinedFilled diff --git a/src/IconThermostatRounded.tsx b/src/IconThermostatRounded.tsx index d5630ffb7..a1744a3b5 100644 --- a/src/IconThermostatRounded.tsx +++ b/src/IconThermostatRounded.tsx @@ -8,4 +8,4 @@ const IconThermostatRounded: React.FC = ({ ...props }) => ( ) -export { IconThermostatRounded as default } +export default IconThermostatRounded diff --git a/src/IconThermostatRoundedFilled.tsx b/src/IconThermostatRoundedFilled.tsx index 5fc93f3a0..d924bace7 100644 --- a/src/IconThermostatRoundedFilled.tsx +++ b/src/IconThermostatRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconThermostatRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconThermostatRoundedFilled as default } +export default IconThermostatRoundedFilled diff --git a/src/IconThermostatSharp.tsx b/src/IconThermostatSharp.tsx index 864768bcb..a5fad80c4 100644 --- a/src/IconThermostatSharp.tsx +++ b/src/IconThermostatSharp.tsx @@ -8,4 +8,4 @@ const IconThermostatSharp: React.FC = ({ ...props }) => ( ) -export { IconThermostatSharp as default } +export default IconThermostatSharp diff --git a/src/IconThermostatSharpFilled.tsx b/src/IconThermostatSharpFilled.tsx index 065243102..40607ceec 100644 --- a/src/IconThermostatSharpFilled.tsx +++ b/src/IconThermostatSharpFilled.tsx @@ -8,4 +8,4 @@ const IconThermostatSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconThermostatSharpFilled as default } +export default IconThermostatSharpFilled diff --git a/src/IconThingsToDoOutlined.tsx b/src/IconThingsToDoOutlined.tsx index 3202e272f..45329c71e 100644 --- a/src/IconThingsToDoOutlined.tsx +++ b/src/IconThingsToDoOutlined.tsx @@ -8,4 +8,4 @@ const IconThingsToDoOutlined: React.FC = ({ ...props }) => ( ) -export { IconThingsToDoOutlined as default } +export default IconThingsToDoOutlined diff --git a/src/IconThingsToDoOutlinedFilled.tsx b/src/IconThingsToDoOutlinedFilled.tsx index 88f473ae6..cd0e3f861 100644 --- a/src/IconThingsToDoOutlinedFilled.tsx +++ b/src/IconThingsToDoOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconThingsToDoOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconThingsToDoOutlinedFilled as default } +export default IconThingsToDoOutlinedFilled diff --git a/src/IconThingsToDoRounded.tsx b/src/IconThingsToDoRounded.tsx index 213552058..8b36afb0e 100644 --- a/src/IconThingsToDoRounded.tsx +++ b/src/IconThingsToDoRounded.tsx @@ -8,4 +8,4 @@ const IconThingsToDoRounded: React.FC = ({ ...props }) => ( ) -export { IconThingsToDoRounded as default } +export default IconThingsToDoRounded diff --git a/src/IconThingsToDoRoundedFilled.tsx b/src/IconThingsToDoRoundedFilled.tsx index e0276bbd4..092f3b631 100644 --- a/src/IconThingsToDoRoundedFilled.tsx +++ b/src/IconThingsToDoRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconThingsToDoRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconThingsToDoRoundedFilled as default } +export default IconThingsToDoRoundedFilled diff --git a/src/IconThingsToDoSharp.tsx b/src/IconThingsToDoSharp.tsx index 5b5854843..02d8673ee 100644 --- a/src/IconThingsToDoSharp.tsx +++ b/src/IconThingsToDoSharp.tsx @@ -8,4 +8,4 @@ const IconThingsToDoSharp: React.FC = ({ ...props }) => ( ) -export { IconThingsToDoSharp as default } +export default IconThingsToDoSharp diff --git a/src/IconThingsToDoSharpFilled.tsx b/src/IconThingsToDoSharpFilled.tsx index 67e888efe..d8111bf13 100644 --- a/src/IconThingsToDoSharpFilled.tsx +++ b/src/IconThingsToDoSharpFilled.tsx @@ -8,4 +8,4 @@ const IconThingsToDoSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconThingsToDoSharpFilled as default } +export default IconThingsToDoSharpFilled diff --git a/src/IconThreadUnreadOutlined.tsx b/src/IconThreadUnreadOutlined.tsx index 2a2d79ef5..c5eb797b4 100644 --- a/src/IconThreadUnreadOutlined.tsx +++ b/src/IconThreadUnreadOutlined.tsx @@ -8,4 +8,4 @@ const IconThreadUnreadOutlined: React.FC = ({ ...props }) => ( ) -export { IconThreadUnreadOutlined as default } +export default IconThreadUnreadOutlined diff --git a/src/IconThreadUnreadOutlinedFilled.tsx b/src/IconThreadUnreadOutlinedFilled.tsx index e8bee2b03..510f9b17e 100644 --- a/src/IconThreadUnreadOutlinedFilled.tsx +++ b/src/IconThreadUnreadOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconThreadUnreadOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconThreadUnreadOutlinedFilled as default } +export default IconThreadUnreadOutlinedFilled diff --git a/src/IconThreadUnreadRounded.tsx b/src/IconThreadUnreadRounded.tsx index 111648783..2f40b818c 100644 --- a/src/IconThreadUnreadRounded.tsx +++ b/src/IconThreadUnreadRounded.tsx @@ -8,4 +8,4 @@ const IconThreadUnreadRounded: React.FC = ({ ...props }) => ( ) -export { IconThreadUnreadRounded as default } +export default IconThreadUnreadRounded diff --git a/src/IconThreadUnreadRoundedFilled.tsx b/src/IconThreadUnreadRoundedFilled.tsx index 8a1334a25..be919b0c9 100644 --- a/src/IconThreadUnreadRoundedFilled.tsx +++ b/src/IconThreadUnreadRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconThreadUnreadRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconThreadUnreadRoundedFilled as default } +export default IconThreadUnreadRoundedFilled diff --git a/src/IconThreadUnreadSharp.tsx b/src/IconThreadUnreadSharp.tsx index 50963faed..5e96f5549 100644 --- a/src/IconThreadUnreadSharp.tsx +++ b/src/IconThreadUnreadSharp.tsx @@ -8,4 +8,4 @@ const IconThreadUnreadSharp: React.FC = ({ ...props }) => ( ) -export { IconThreadUnreadSharp as default } +export default IconThreadUnreadSharp diff --git a/src/IconThreadUnreadSharpFilled.tsx b/src/IconThreadUnreadSharpFilled.tsx index e2acf27dc..a19cc2143 100644 --- a/src/IconThreadUnreadSharpFilled.tsx +++ b/src/IconThreadUnreadSharpFilled.tsx @@ -8,4 +8,4 @@ const IconThreadUnreadSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconThreadUnreadSharpFilled as default } +export default IconThreadUnreadSharpFilled diff --git a/src/IconThumbDownOutlined.tsx b/src/IconThumbDownOutlined.tsx index 8a0b61c37..3e772a49d 100644 --- a/src/IconThumbDownOutlined.tsx +++ b/src/IconThumbDownOutlined.tsx @@ -8,4 +8,4 @@ const IconThumbDownOutlined: React.FC = ({ ...props }) => ( ) -export { IconThumbDownOutlined as default } +export default IconThumbDownOutlined diff --git a/src/IconThumbDownOutlinedFilled.tsx b/src/IconThumbDownOutlinedFilled.tsx index 0be135752..753ed6779 100644 --- a/src/IconThumbDownOutlinedFilled.tsx +++ b/src/IconThumbDownOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconThumbDownOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconThumbDownOutlinedFilled as default } +export default IconThumbDownOutlinedFilled diff --git a/src/IconThumbDownRounded.tsx b/src/IconThumbDownRounded.tsx index 4174f2100..233b22c39 100644 --- a/src/IconThumbDownRounded.tsx +++ b/src/IconThumbDownRounded.tsx @@ -8,4 +8,4 @@ const IconThumbDownRounded: React.FC = ({ ...props }) => ( ) -export { IconThumbDownRounded as default } +export default IconThumbDownRounded diff --git a/src/IconThumbDownRoundedFilled.tsx b/src/IconThumbDownRoundedFilled.tsx index 1daebced6..15be22c85 100644 --- a/src/IconThumbDownRoundedFilled.tsx +++ b/src/IconThumbDownRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconThumbDownRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconThumbDownRoundedFilled as default } +export default IconThumbDownRoundedFilled diff --git a/src/IconThumbDownSharp.tsx b/src/IconThumbDownSharp.tsx index b36d2c7b8..378557c52 100644 --- a/src/IconThumbDownSharp.tsx +++ b/src/IconThumbDownSharp.tsx @@ -8,4 +8,4 @@ const IconThumbDownSharp: React.FC = ({ ...props }) => ( ) -export { IconThumbDownSharp as default } +export default IconThumbDownSharp diff --git a/src/IconThumbDownSharpFilled.tsx b/src/IconThumbDownSharpFilled.tsx index 0bced2bad..b7dd3757b 100644 --- a/src/IconThumbDownSharpFilled.tsx +++ b/src/IconThumbDownSharpFilled.tsx @@ -8,4 +8,4 @@ const IconThumbDownSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconThumbDownSharpFilled as default } +export default IconThumbDownSharpFilled diff --git a/src/IconThumbUpOutlined.tsx b/src/IconThumbUpOutlined.tsx index 9fb2d9cf7..b8e67a9da 100644 --- a/src/IconThumbUpOutlined.tsx +++ b/src/IconThumbUpOutlined.tsx @@ -8,4 +8,4 @@ const IconThumbUpOutlined: React.FC = ({ ...props }) => ( ) -export { IconThumbUpOutlined as default } +export default IconThumbUpOutlined diff --git a/src/IconThumbUpOutlinedFilled.tsx b/src/IconThumbUpOutlinedFilled.tsx index 9f95943db..fe2fbf4be 100644 --- a/src/IconThumbUpOutlinedFilled.tsx +++ b/src/IconThumbUpOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconThumbUpOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconThumbUpOutlinedFilled as default } +export default IconThumbUpOutlinedFilled diff --git a/src/IconThumbUpRounded.tsx b/src/IconThumbUpRounded.tsx index 0eafdb935..3341f648b 100644 --- a/src/IconThumbUpRounded.tsx +++ b/src/IconThumbUpRounded.tsx @@ -8,4 +8,4 @@ const IconThumbUpRounded: React.FC = ({ ...props }) => ( ) -export { IconThumbUpRounded as default } +export default IconThumbUpRounded diff --git a/src/IconThumbUpRoundedFilled.tsx b/src/IconThumbUpRoundedFilled.tsx index bd218c059..767f5cc55 100644 --- a/src/IconThumbUpRoundedFilled.tsx +++ b/src/IconThumbUpRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconThumbUpRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconThumbUpRoundedFilled as default } +export default IconThumbUpRoundedFilled diff --git a/src/IconThumbUpSharp.tsx b/src/IconThumbUpSharp.tsx index aee4e1eb0..e1e818091 100644 --- a/src/IconThumbUpSharp.tsx +++ b/src/IconThumbUpSharp.tsx @@ -8,4 +8,4 @@ const IconThumbUpSharp: React.FC = ({ ...props }) => ( ) -export { IconThumbUpSharp as default } +export default IconThumbUpSharp diff --git a/src/IconThumbUpSharpFilled.tsx b/src/IconThumbUpSharpFilled.tsx index 2359d858f..68558ecab 100644 --- a/src/IconThumbUpSharpFilled.tsx +++ b/src/IconThumbUpSharpFilled.tsx @@ -8,4 +8,4 @@ const IconThumbUpSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconThumbUpSharpFilled as default } +export default IconThumbUpSharpFilled diff --git a/src/IconThumbnailBarOutlined.tsx b/src/IconThumbnailBarOutlined.tsx index 28d4f8209..b58c1beac 100644 --- a/src/IconThumbnailBarOutlined.tsx +++ b/src/IconThumbnailBarOutlined.tsx @@ -8,4 +8,4 @@ const IconThumbnailBarOutlined: React.FC = ({ ...props }) => ( ) -export { IconThumbnailBarOutlined as default } +export default IconThumbnailBarOutlined diff --git a/src/IconThumbnailBarOutlinedFilled.tsx b/src/IconThumbnailBarOutlinedFilled.tsx index afaa40a81..56c217692 100644 --- a/src/IconThumbnailBarOutlinedFilled.tsx +++ b/src/IconThumbnailBarOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconThumbnailBarOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconThumbnailBarOutlinedFilled as default } +export default IconThumbnailBarOutlinedFilled diff --git a/src/IconThumbnailBarRounded.tsx b/src/IconThumbnailBarRounded.tsx index 94490c88e..a5762a518 100644 --- a/src/IconThumbnailBarRounded.tsx +++ b/src/IconThumbnailBarRounded.tsx @@ -8,4 +8,4 @@ const IconThumbnailBarRounded: React.FC = ({ ...props }) => ( ) -export { IconThumbnailBarRounded as default } +export default IconThumbnailBarRounded diff --git a/src/IconThumbnailBarRoundedFilled.tsx b/src/IconThumbnailBarRoundedFilled.tsx index 18c3d534d..2741d7f61 100644 --- a/src/IconThumbnailBarRoundedFilled.tsx +++ b/src/IconThumbnailBarRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconThumbnailBarRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconThumbnailBarRoundedFilled as default } +export default IconThumbnailBarRoundedFilled diff --git a/src/IconThumbnailBarSharp.tsx b/src/IconThumbnailBarSharp.tsx index 9ad5e77bb..50e98c53f 100644 --- a/src/IconThumbnailBarSharp.tsx +++ b/src/IconThumbnailBarSharp.tsx @@ -8,4 +8,4 @@ const IconThumbnailBarSharp: React.FC = ({ ...props }) => ( ) -export { IconThumbnailBarSharp as default } +export default IconThumbnailBarSharp diff --git a/src/IconThumbnailBarSharpFilled.tsx b/src/IconThumbnailBarSharpFilled.tsx index 7b7eebcc5..0eca2e8e5 100644 --- a/src/IconThumbnailBarSharpFilled.tsx +++ b/src/IconThumbnailBarSharpFilled.tsx @@ -8,4 +8,4 @@ const IconThumbnailBarSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconThumbnailBarSharpFilled as default } +export default IconThumbnailBarSharpFilled diff --git a/src/IconThumbsUpDownOutlined.tsx b/src/IconThumbsUpDownOutlined.tsx index f9d6744ea..4da6fac56 100644 --- a/src/IconThumbsUpDownOutlined.tsx +++ b/src/IconThumbsUpDownOutlined.tsx @@ -8,4 +8,4 @@ const IconThumbsUpDownOutlined: React.FC = ({ ...props }) => ( ) -export { IconThumbsUpDownOutlined as default } +export default IconThumbsUpDownOutlined diff --git a/src/IconThumbsUpDownOutlinedFilled.tsx b/src/IconThumbsUpDownOutlinedFilled.tsx index 712aca3b5..7eea35a47 100644 --- a/src/IconThumbsUpDownOutlinedFilled.tsx +++ b/src/IconThumbsUpDownOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconThumbsUpDownOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconThumbsUpDownOutlinedFilled as default } +export default IconThumbsUpDownOutlinedFilled diff --git a/src/IconThumbsUpDownRounded.tsx b/src/IconThumbsUpDownRounded.tsx index 48a9db3bf..036109835 100644 --- a/src/IconThumbsUpDownRounded.tsx +++ b/src/IconThumbsUpDownRounded.tsx @@ -8,4 +8,4 @@ const IconThumbsUpDownRounded: React.FC = ({ ...props }) => ( ) -export { IconThumbsUpDownRounded as default } +export default IconThumbsUpDownRounded diff --git a/src/IconThumbsUpDownRoundedFilled.tsx b/src/IconThumbsUpDownRoundedFilled.tsx index 785de2629..b8d05cc91 100644 --- a/src/IconThumbsUpDownRoundedFilled.tsx +++ b/src/IconThumbsUpDownRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconThumbsUpDownRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconThumbsUpDownRoundedFilled as default } +export default IconThumbsUpDownRoundedFilled diff --git a/src/IconThumbsUpDownSharp.tsx b/src/IconThumbsUpDownSharp.tsx index 1b44a64ec..e7891644c 100644 --- a/src/IconThumbsUpDownSharp.tsx +++ b/src/IconThumbsUpDownSharp.tsx @@ -8,4 +8,4 @@ const IconThumbsUpDownSharp: React.FC = ({ ...props }) => ( ) -export { IconThumbsUpDownSharp as default } +export default IconThumbsUpDownSharp diff --git a/src/IconThumbsUpDownSharpFilled.tsx b/src/IconThumbsUpDownSharpFilled.tsx index f7864b973..f61d1c37c 100644 --- a/src/IconThumbsUpDownSharpFilled.tsx +++ b/src/IconThumbsUpDownSharpFilled.tsx @@ -8,4 +8,4 @@ const IconThumbsUpDownSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconThumbsUpDownSharpFilled as default } +export default IconThumbsUpDownSharpFilled diff --git a/src/IconThunderstormOutlined.tsx b/src/IconThunderstormOutlined.tsx index 62acd7968..344bdfebb 100644 --- a/src/IconThunderstormOutlined.tsx +++ b/src/IconThunderstormOutlined.tsx @@ -8,4 +8,4 @@ const IconThunderstormOutlined: React.FC = ({ ...props }) => ( ) -export { IconThunderstormOutlined as default } +export default IconThunderstormOutlined diff --git a/src/IconThunderstormOutlinedFilled.tsx b/src/IconThunderstormOutlinedFilled.tsx index 28d9e4363..479c7d94a 100644 --- a/src/IconThunderstormOutlinedFilled.tsx +++ b/src/IconThunderstormOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconThunderstormOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconThunderstormOutlinedFilled as default } +export default IconThunderstormOutlinedFilled diff --git a/src/IconThunderstormRounded.tsx b/src/IconThunderstormRounded.tsx index 0dd8d67ef..ea89220ab 100644 --- a/src/IconThunderstormRounded.tsx +++ b/src/IconThunderstormRounded.tsx @@ -8,4 +8,4 @@ const IconThunderstormRounded: React.FC = ({ ...props }) => ( ) -export { IconThunderstormRounded as default } +export default IconThunderstormRounded diff --git a/src/IconThunderstormRoundedFilled.tsx b/src/IconThunderstormRoundedFilled.tsx index 98399887d..9d74d3923 100644 --- a/src/IconThunderstormRoundedFilled.tsx +++ b/src/IconThunderstormRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconThunderstormRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconThunderstormRoundedFilled as default } +export default IconThunderstormRoundedFilled diff --git a/src/IconThunderstormSharp.tsx b/src/IconThunderstormSharp.tsx index b0bd9fe70..35404b350 100644 --- a/src/IconThunderstormSharp.tsx +++ b/src/IconThunderstormSharp.tsx @@ -8,4 +8,4 @@ const IconThunderstormSharp: React.FC = ({ ...props }) => ( ) -export { IconThunderstormSharp as default } +export default IconThunderstormSharp diff --git a/src/IconThunderstormSharpFilled.tsx b/src/IconThunderstormSharpFilled.tsx index 5e1e4988b..b924dfcee 100644 --- a/src/IconThunderstormSharpFilled.tsx +++ b/src/IconThunderstormSharpFilled.tsx @@ -8,4 +8,4 @@ const IconThunderstormSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconThunderstormSharpFilled as default } +export default IconThunderstormSharpFilled diff --git a/src/IconTibiaAltOutlined.tsx b/src/IconTibiaAltOutlined.tsx index a181c2bcf..81ba43145 100644 --- a/src/IconTibiaAltOutlined.tsx +++ b/src/IconTibiaAltOutlined.tsx @@ -8,4 +8,4 @@ const IconTibiaAltOutlined: React.FC = ({ ...props }) => ( ) -export { IconTibiaAltOutlined as default } +export default IconTibiaAltOutlined diff --git a/src/IconTibiaAltOutlinedFilled.tsx b/src/IconTibiaAltOutlinedFilled.tsx index 9ca9cd6cd..06887dac5 100644 --- a/src/IconTibiaAltOutlinedFilled.tsx +++ b/src/IconTibiaAltOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconTibiaAltOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconTibiaAltOutlinedFilled as default } +export default IconTibiaAltOutlinedFilled diff --git a/src/IconTibiaAltRounded.tsx b/src/IconTibiaAltRounded.tsx index 5e8173647..f70a11c1e 100644 --- a/src/IconTibiaAltRounded.tsx +++ b/src/IconTibiaAltRounded.tsx @@ -8,4 +8,4 @@ const IconTibiaAltRounded: React.FC = ({ ...props }) => ( ) -export { IconTibiaAltRounded as default } +export default IconTibiaAltRounded diff --git a/src/IconTibiaAltRoundedFilled.tsx b/src/IconTibiaAltRoundedFilled.tsx index 65da9abe3..fbad5902b 100644 --- a/src/IconTibiaAltRoundedFilled.tsx +++ b/src/IconTibiaAltRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconTibiaAltRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconTibiaAltRoundedFilled as default } +export default IconTibiaAltRoundedFilled diff --git a/src/IconTibiaAltSharp.tsx b/src/IconTibiaAltSharp.tsx index b341bc481..18b9d0cc2 100644 --- a/src/IconTibiaAltSharp.tsx +++ b/src/IconTibiaAltSharp.tsx @@ -8,4 +8,4 @@ const IconTibiaAltSharp: React.FC = ({ ...props }) => ( ) -export { IconTibiaAltSharp as default } +export default IconTibiaAltSharp diff --git a/src/IconTibiaAltSharpFilled.tsx b/src/IconTibiaAltSharpFilled.tsx index 0975984a1..816f12a1d 100644 --- a/src/IconTibiaAltSharpFilled.tsx +++ b/src/IconTibiaAltSharpFilled.tsx @@ -8,4 +8,4 @@ const IconTibiaAltSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconTibiaAltSharpFilled as default } +export default IconTibiaAltSharpFilled diff --git a/src/IconTibiaOutlined.tsx b/src/IconTibiaOutlined.tsx index 7dc68ba41..0f94f558a 100644 --- a/src/IconTibiaOutlined.tsx +++ b/src/IconTibiaOutlined.tsx @@ -8,4 +8,4 @@ const IconTibiaOutlined: React.FC = ({ ...props }) => ( ) -export { IconTibiaOutlined as default } +export default IconTibiaOutlined diff --git a/src/IconTibiaOutlinedFilled.tsx b/src/IconTibiaOutlinedFilled.tsx index ede1c62e5..1dcf19f4b 100644 --- a/src/IconTibiaOutlinedFilled.tsx +++ b/src/IconTibiaOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconTibiaOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconTibiaOutlinedFilled as default } +export default IconTibiaOutlinedFilled diff --git a/src/IconTibiaRounded.tsx b/src/IconTibiaRounded.tsx index 2af80b8ec..351aa528d 100644 --- a/src/IconTibiaRounded.tsx +++ b/src/IconTibiaRounded.tsx @@ -8,4 +8,4 @@ const IconTibiaRounded: React.FC = ({ ...props }) => ( ) -export { IconTibiaRounded as default } +export default IconTibiaRounded diff --git a/src/IconTibiaRoundedFilled.tsx b/src/IconTibiaRoundedFilled.tsx index 9688f04ba..a7f223511 100644 --- a/src/IconTibiaRoundedFilled.tsx +++ b/src/IconTibiaRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconTibiaRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconTibiaRoundedFilled as default } +export default IconTibiaRoundedFilled diff --git a/src/IconTibiaSharp.tsx b/src/IconTibiaSharp.tsx index 124fd9a8a..b92d2b980 100644 --- a/src/IconTibiaSharp.tsx +++ b/src/IconTibiaSharp.tsx @@ -8,4 +8,4 @@ const IconTibiaSharp: React.FC = ({ ...props }) => ( ) -export { IconTibiaSharp as default } +export default IconTibiaSharp diff --git a/src/IconTibiaSharpFilled.tsx b/src/IconTibiaSharpFilled.tsx index 93a02bd0c..7369187b7 100644 --- a/src/IconTibiaSharpFilled.tsx +++ b/src/IconTibiaSharpFilled.tsx @@ -8,4 +8,4 @@ const IconTibiaSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconTibiaSharpFilled as default } +export default IconTibiaSharpFilled diff --git a/src/IconTimeAutoOutlined.tsx b/src/IconTimeAutoOutlined.tsx index cb1b7f253..fd3936804 100644 --- a/src/IconTimeAutoOutlined.tsx +++ b/src/IconTimeAutoOutlined.tsx @@ -8,4 +8,4 @@ const IconTimeAutoOutlined: React.FC = ({ ...props }) => ( ) -export { IconTimeAutoOutlined as default } +export default IconTimeAutoOutlined diff --git a/src/IconTimeAutoOutlinedFilled.tsx b/src/IconTimeAutoOutlinedFilled.tsx index 06ce48790..a941b3fe1 100644 --- a/src/IconTimeAutoOutlinedFilled.tsx +++ b/src/IconTimeAutoOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconTimeAutoOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconTimeAutoOutlinedFilled as default } +export default IconTimeAutoOutlinedFilled diff --git a/src/IconTimeAutoRounded.tsx b/src/IconTimeAutoRounded.tsx index abadea40d..862863c8d 100644 --- a/src/IconTimeAutoRounded.tsx +++ b/src/IconTimeAutoRounded.tsx @@ -8,4 +8,4 @@ const IconTimeAutoRounded: React.FC = ({ ...props }) => ( ) -export { IconTimeAutoRounded as default } +export default IconTimeAutoRounded diff --git a/src/IconTimeAutoRoundedFilled.tsx b/src/IconTimeAutoRoundedFilled.tsx index d963bccfd..9cc5f9a61 100644 --- a/src/IconTimeAutoRoundedFilled.tsx +++ b/src/IconTimeAutoRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconTimeAutoRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconTimeAutoRoundedFilled as default } +export default IconTimeAutoRoundedFilled diff --git a/src/IconTimeAutoSharp.tsx b/src/IconTimeAutoSharp.tsx index 46d62d3f2..021ff4f71 100644 --- a/src/IconTimeAutoSharp.tsx +++ b/src/IconTimeAutoSharp.tsx @@ -8,4 +8,4 @@ const IconTimeAutoSharp: React.FC = ({ ...props }) => ( ) -export { IconTimeAutoSharp as default } +export default IconTimeAutoSharp diff --git a/src/IconTimeAutoSharpFilled.tsx b/src/IconTimeAutoSharpFilled.tsx index 6d7422440..4ba8727a0 100644 --- a/src/IconTimeAutoSharpFilled.tsx +++ b/src/IconTimeAutoSharpFilled.tsx @@ -8,4 +8,4 @@ const IconTimeAutoSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconTimeAutoSharpFilled as default } +export default IconTimeAutoSharpFilled diff --git a/src/IconTimelapseOutlined.tsx b/src/IconTimelapseOutlined.tsx index 1831525ae..727a75281 100644 --- a/src/IconTimelapseOutlined.tsx +++ b/src/IconTimelapseOutlined.tsx @@ -8,4 +8,4 @@ const IconTimelapseOutlined: React.FC = ({ ...props }) => ( ) -export { IconTimelapseOutlined as default } +export default IconTimelapseOutlined diff --git a/src/IconTimelapseOutlinedFilled.tsx b/src/IconTimelapseOutlinedFilled.tsx index 9a1a2d6f3..965366fc7 100644 --- a/src/IconTimelapseOutlinedFilled.tsx +++ b/src/IconTimelapseOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconTimelapseOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconTimelapseOutlinedFilled as default } +export default IconTimelapseOutlinedFilled diff --git a/src/IconTimelapseRounded.tsx b/src/IconTimelapseRounded.tsx index 6c2cebd26..bb203a08b 100644 --- a/src/IconTimelapseRounded.tsx +++ b/src/IconTimelapseRounded.tsx @@ -8,4 +8,4 @@ const IconTimelapseRounded: React.FC = ({ ...props }) => ( ) -export { IconTimelapseRounded as default } +export default IconTimelapseRounded diff --git a/src/IconTimelapseRoundedFilled.tsx b/src/IconTimelapseRoundedFilled.tsx index 8f9b54b2f..9f5bba0d5 100644 --- a/src/IconTimelapseRoundedFilled.tsx +++ b/src/IconTimelapseRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconTimelapseRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconTimelapseRoundedFilled as default } +export default IconTimelapseRoundedFilled diff --git a/src/IconTimelapseSharp.tsx b/src/IconTimelapseSharp.tsx index 4d04b8ea6..569b3da58 100644 --- a/src/IconTimelapseSharp.tsx +++ b/src/IconTimelapseSharp.tsx @@ -8,4 +8,4 @@ const IconTimelapseSharp: React.FC = ({ ...props }) => ( ) -export { IconTimelapseSharp as default } +export default IconTimelapseSharp diff --git a/src/IconTimelapseSharpFilled.tsx b/src/IconTimelapseSharpFilled.tsx index 58bbf76cc..a628f83d5 100644 --- a/src/IconTimelapseSharpFilled.tsx +++ b/src/IconTimelapseSharpFilled.tsx @@ -8,4 +8,4 @@ const IconTimelapseSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconTimelapseSharpFilled as default } +export default IconTimelapseSharpFilled diff --git a/src/IconTimelineOutlined.tsx b/src/IconTimelineOutlined.tsx index 4a04d475a..8226b51b6 100644 --- a/src/IconTimelineOutlined.tsx +++ b/src/IconTimelineOutlined.tsx @@ -8,4 +8,4 @@ const IconTimelineOutlined: React.FC = ({ ...props }) => ( ) -export { IconTimelineOutlined as default } +export default IconTimelineOutlined diff --git a/src/IconTimelineOutlinedFilled.tsx b/src/IconTimelineOutlinedFilled.tsx index b383dbc8a..95f92cee2 100644 --- a/src/IconTimelineOutlinedFilled.tsx +++ b/src/IconTimelineOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconTimelineOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconTimelineOutlinedFilled as default } +export default IconTimelineOutlinedFilled diff --git a/src/IconTimelineRounded.tsx b/src/IconTimelineRounded.tsx index 75bdf4afd..2874d0859 100644 --- a/src/IconTimelineRounded.tsx +++ b/src/IconTimelineRounded.tsx @@ -8,4 +8,4 @@ const IconTimelineRounded: React.FC = ({ ...props }) => ( ) -export { IconTimelineRounded as default } +export default IconTimelineRounded diff --git a/src/IconTimelineRoundedFilled.tsx b/src/IconTimelineRoundedFilled.tsx index f061b5270..fe51acda2 100644 --- a/src/IconTimelineRoundedFilled.tsx +++ b/src/IconTimelineRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconTimelineRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconTimelineRoundedFilled as default } +export default IconTimelineRoundedFilled diff --git a/src/IconTimelineSharp.tsx b/src/IconTimelineSharp.tsx index f3082baf8..3ce032edd 100644 --- a/src/IconTimelineSharp.tsx +++ b/src/IconTimelineSharp.tsx @@ -8,4 +8,4 @@ const IconTimelineSharp: React.FC = ({ ...props }) => ( ) -export { IconTimelineSharp as default } +export default IconTimelineSharp diff --git a/src/IconTimelineSharpFilled.tsx b/src/IconTimelineSharpFilled.tsx index 014c15f18..8580a13db 100644 --- a/src/IconTimelineSharpFilled.tsx +++ b/src/IconTimelineSharpFilled.tsx @@ -8,4 +8,4 @@ const IconTimelineSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconTimelineSharpFilled as default } +export default IconTimelineSharpFilled diff --git a/src/IconTimer10Alt1Outlined.tsx b/src/IconTimer10Alt1Outlined.tsx index 2e76b34ed..73d6acf50 100644 --- a/src/IconTimer10Alt1Outlined.tsx +++ b/src/IconTimer10Alt1Outlined.tsx @@ -8,4 +8,4 @@ const IconTimer10Alt1Outlined: React.FC = ({ ...props }) => ( ) -export { IconTimer10Alt1Outlined as default } +export default IconTimer10Alt1Outlined diff --git a/src/IconTimer10Alt1OutlinedFilled.tsx b/src/IconTimer10Alt1OutlinedFilled.tsx index 520e516c8..2553e4667 100644 --- a/src/IconTimer10Alt1OutlinedFilled.tsx +++ b/src/IconTimer10Alt1OutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconTimer10Alt1OutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconTimer10Alt1OutlinedFilled as default } +export default IconTimer10Alt1OutlinedFilled diff --git a/src/IconTimer10Alt1Rounded.tsx b/src/IconTimer10Alt1Rounded.tsx index b7e2b1314..144c859f5 100644 --- a/src/IconTimer10Alt1Rounded.tsx +++ b/src/IconTimer10Alt1Rounded.tsx @@ -8,4 +8,4 @@ const IconTimer10Alt1Rounded: React.FC = ({ ...props }) => ( ) -export { IconTimer10Alt1Rounded as default } +export default IconTimer10Alt1Rounded diff --git a/src/IconTimer10Alt1RoundedFilled.tsx b/src/IconTimer10Alt1RoundedFilled.tsx index 9c67d6178..b41ace2a6 100644 --- a/src/IconTimer10Alt1RoundedFilled.tsx +++ b/src/IconTimer10Alt1RoundedFilled.tsx @@ -8,4 +8,4 @@ const IconTimer10Alt1RoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconTimer10Alt1RoundedFilled as default } +export default IconTimer10Alt1RoundedFilled diff --git a/src/IconTimer10Alt1Sharp.tsx b/src/IconTimer10Alt1Sharp.tsx index 2183e6f28..097119bd0 100644 --- a/src/IconTimer10Alt1Sharp.tsx +++ b/src/IconTimer10Alt1Sharp.tsx @@ -8,4 +8,4 @@ const IconTimer10Alt1Sharp: React.FC = ({ ...props }) => ( ) -export { IconTimer10Alt1Sharp as default } +export default IconTimer10Alt1Sharp diff --git a/src/IconTimer10Alt1SharpFilled.tsx b/src/IconTimer10Alt1SharpFilled.tsx index 761f5023e..1994feca3 100644 --- a/src/IconTimer10Alt1SharpFilled.tsx +++ b/src/IconTimer10Alt1SharpFilled.tsx @@ -8,4 +8,4 @@ const IconTimer10Alt1SharpFilled: React.FC = ({ ...props }) => ( ) -export { IconTimer10Alt1SharpFilled as default } +export default IconTimer10Alt1SharpFilled diff --git a/src/IconTimer10Outlined.tsx b/src/IconTimer10Outlined.tsx index 21300891b..7206f17c1 100644 --- a/src/IconTimer10Outlined.tsx +++ b/src/IconTimer10Outlined.tsx @@ -8,4 +8,4 @@ const IconTimer10Outlined: React.FC = ({ ...props }) => ( ) -export { IconTimer10Outlined as default } +export default IconTimer10Outlined diff --git a/src/IconTimer10OutlinedFilled.tsx b/src/IconTimer10OutlinedFilled.tsx index 139d9f846..ee3dd54b1 100644 --- a/src/IconTimer10OutlinedFilled.tsx +++ b/src/IconTimer10OutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconTimer10OutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconTimer10OutlinedFilled as default } +export default IconTimer10OutlinedFilled diff --git a/src/IconTimer10Rounded.tsx b/src/IconTimer10Rounded.tsx index 1c733b96a..a379f99e2 100644 --- a/src/IconTimer10Rounded.tsx +++ b/src/IconTimer10Rounded.tsx @@ -8,4 +8,4 @@ const IconTimer10Rounded: React.FC = ({ ...props }) => ( ) -export { IconTimer10Rounded as default } +export default IconTimer10Rounded diff --git a/src/IconTimer10RoundedFilled.tsx b/src/IconTimer10RoundedFilled.tsx index dbffb1662..3899c34b0 100644 --- a/src/IconTimer10RoundedFilled.tsx +++ b/src/IconTimer10RoundedFilled.tsx @@ -8,4 +8,4 @@ const IconTimer10RoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconTimer10RoundedFilled as default } +export default IconTimer10RoundedFilled diff --git a/src/IconTimer10SelectOutlined.tsx b/src/IconTimer10SelectOutlined.tsx index f8d952941..ed7599df9 100644 --- a/src/IconTimer10SelectOutlined.tsx +++ b/src/IconTimer10SelectOutlined.tsx @@ -8,4 +8,4 @@ const IconTimer10SelectOutlined: React.FC = ({ ...props }) => ( ) -export { IconTimer10SelectOutlined as default } +export default IconTimer10SelectOutlined diff --git a/src/IconTimer10SelectOutlinedFilled.tsx b/src/IconTimer10SelectOutlinedFilled.tsx index d77935da4..a9bac21e6 100644 --- a/src/IconTimer10SelectOutlinedFilled.tsx +++ b/src/IconTimer10SelectOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconTimer10SelectOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconTimer10SelectOutlinedFilled as default } +export default IconTimer10SelectOutlinedFilled diff --git a/src/IconTimer10SelectRounded.tsx b/src/IconTimer10SelectRounded.tsx index cab2df6e0..ff893f821 100644 --- a/src/IconTimer10SelectRounded.tsx +++ b/src/IconTimer10SelectRounded.tsx @@ -8,4 +8,4 @@ const IconTimer10SelectRounded: React.FC = ({ ...props }) => ( ) -export { IconTimer10SelectRounded as default } +export default IconTimer10SelectRounded diff --git a/src/IconTimer10SelectRoundedFilled.tsx b/src/IconTimer10SelectRoundedFilled.tsx index 2964ffdbb..bc472c5dc 100644 --- a/src/IconTimer10SelectRoundedFilled.tsx +++ b/src/IconTimer10SelectRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconTimer10SelectRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconTimer10SelectRoundedFilled as default } +export default IconTimer10SelectRoundedFilled diff --git a/src/IconTimer10SelectSharp.tsx b/src/IconTimer10SelectSharp.tsx index f953caeff..ab9e138aa 100644 --- a/src/IconTimer10SelectSharp.tsx +++ b/src/IconTimer10SelectSharp.tsx @@ -8,4 +8,4 @@ const IconTimer10SelectSharp: React.FC = ({ ...props }) => ( ) -export { IconTimer10SelectSharp as default } +export default IconTimer10SelectSharp diff --git a/src/IconTimer10SelectSharpFilled.tsx b/src/IconTimer10SelectSharpFilled.tsx index 7040df672..171857864 100644 --- a/src/IconTimer10SelectSharpFilled.tsx +++ b/src/IconTimer10SelectSharpFilled.tsx @@ -8,4 +8,4 @@ const IconTimer10SelectSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconTimer10SelectSharpFilled as default } +export default IconTimer10SelectSharpFilled diff --git a/src/IconTimer10Sharp.tsx b/src/IconTimer10Sharp.tsx index a918b6c8a..bb24d5b72 100644 --- a/src/IconTimer10Sharp.tsx +++ b/src/IconTimer10Sharp.tsx @@ -8,4 +8,4 @@ const IconTimer10Sharp: React.FC = ({ ...props }) => ( ) -export { IconTimer10Sharp as default } +export default IconTimer10Sharp diff --git a/src/IconTimer10SharpFilled.tsx b/src/IconTimer10SharpFilled.tsx index a4e0a1845..ca17a1ee8 100644 --- a/src/IconTimer10SharpFilled.tsx +++ b/src/IconTimer10SharpFilled.tsx @@ -8,4 +8,4 @@ const IconTimer10SharpFilled: React.FC = ({ ...props }) => ( ) -export { IconTimer10SharpFilled as default } +export default IconTimer10SharpFilled diff --git a/src/IconTimer3Alt1Outlined.tsx b/src/IconTimer3Alt1Outlined.tsx index c626f01a7..51da7e50d 100644 --- a/src/IconTimer3Alt1Outlined.tsx +++ b/src/IconTimer3Alt1Outlined.tsx @@ -8,4 +8,4 @@ const IconTimer3Alt1Outlined: React.FC = ({ ...props }) => ( ) -export { IconTimer3Alt1Outlined as default } +export default IconTimer3Alt1Outlined diff --git a/src/IconTimer3Alt1OutlinedFilled.tsx b/src/IconTimer3Alt1OutlinedFilled.tsx index 934346fc1..ac49022a9 100644 --- a/src/IconTimer3Alt1OutlinedFilled.tsx +++ b/src/IconTimer3Alt1OutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconTimer3Alt1OutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconTimer3Alt1OutlinedFilled as default } +export default IconTimer3Alt1OutlinedFilled diff --git a/src/IconTimer3Alt1Rounded.tsx b/src/IconTimer3Alt1Rounded.tsx index 04a4a6447..a56f6dc8f 100644 --- a/src/IconTimer3Alt1Rounded.tsx +++ b/src/IconTimer3Alt1Rounded.tsx @@ -8,4 +8,4 @@ const IconTimer3Alt1Rounded: React.FC = ({ ...props }) => ( ) -export { IconTimer3Alt1Rounded as default } +export default IconTimer3Alt1Rounded diff --git a/src/IconTimer3Alt1RoundedFilled.tsx b/src/IconTimer3Alt1RoundedFilled.tsx index 18a3d357e..64942f587 100644 --- a/src/IconTimer3Alt1RoundedFilled.tsx +++ b/src/IconTimer3Alt1RoundedFilled.tsx @@ -8,4 +8,4 @@ const IconTimer3Alt1RoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconTimer3Alt1RoundedFilled as default } +export default IconTimer3Alt1RoundedFilled diff --git a/src/IconTimer3Alt1Sharp.tsx b/src/IconTimer3Alt1Sharp.tsx index b2c0c0758..d7d983199 100644 --- a/src/IconTimer3Alt1Sharp.tsx +++ b/src/IconTimer3Alt1Sharp.tsx @@ -8,4 +8,4 @@ const IconTimer3Alt1Sharp: React.FC = ({ ...props }) => ( ) -export { IconTimer3Alt1Sharp as default } +export default IconTimer3Alt1Sharp diff --git a/src/IconTimer3Alt1SharpFilled.tsx b/src/IconTimer3Alt1SharpFilled.tsx index 1eec1acf4..c1e5e5649 100644 --- a/src/IconTimer3Alt1SharpFilled.tsx +++ b/src/IconTimer3Alt1SharpFilled.tsx @@ -8,4 +8,4 @@ const IconTimer3Alt1SharpFilled: React.FC = ({ ...props }) => ( ) -export { IconTimer3Alt1SharpFilled as default } +export default IconTimer3Alt1SharpFilled diff --git a/src/IconTimer3Outlined.tsx b/src/IconTimer3Outlined.tsx index 4a682270d..05144d579 100644 --- a/src/IconTimer3Outlined.tsx +++ b/src/IconTimer3Outlined.tsx @@ -8,4 +8,4 @@ const IconTimer3Outlined: React.FC = ({ ...props }) => ( ) -export { IconTimer3Outlined as default } +export default IconTimer3Outlined diff --git a/src/IconTimer3OutlinedFilled.tsx b/src/IconTimer3OutlinedFilled.tsx index 5785f32b0..ceddd8e29 100644 --- a/src/IconTimer3OutlinedFilled.tsx +++ b/src/IconTimer3OutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconTimer3OutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconTimer3OutlinedFilled as default } +export default IconTimer3OutlinedFilled diff --git a/src/IconTimer3Rounded.tsx b/src/IconTimer3Rounded.tsx index 68b1e8ac5..bb0a9acd2 100644 --- a/src/IconTimer3Rounded.tsx +++ b/src/IconTimer3Rounded.tsx @@ -8,4 +8,4 @@ const IconTimer3Rounded: React.FC = ({ ...props }) => ( ) -export { IconTimer3Rounded as default } +export default IconTimer3Rounded diff --git a/src/IconTimer3RoundedFilled.tsx b/src/IconTimer3RoundedFilled.tsx index ac95b9a92..04e88f1fb 100644 --- a/src/IconTimer3RoundedFilled.tsx +++ b/src/IconTimer3RoundedFilled.tsx @@ -8,4 +8,4 @@ const IconTimer3RoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconTimer3RoundedFilled as default } +export default IconTimer3RoundedFilled diff --git a/src/IconTimer3SelectOutlined.tsx b/src/IconTimer3SelectOutlined.tsx index 008de56b6..9cad65ae2 100644 --- a/src/IconTimer3SelectOutlined.tsx +++ b/src/IconTimer3SelectOutlined.tsx @@ -8,4 +8,4 @@ const IconTimer3SelectOutlined: React.FC = ({ ...props }) => ( ) -export { IconTimer3SelectOutlined as default } +export default IconTimer3SelectOutlined diff --git a/src/IconTimer3SelectOutlinedFilled.tsx b/src/IconTimer3SelectOutlinedFilled.tsx index 399d213e4..b45a6c218 100644 --- a/src/IconTimer3SelectOutlinedFilled.tsx +++ b/src/IconTimer3SelectOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconTimer3SelectOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconTimer3SelectOutlinedFilled as default } +export default IconTimer3SelectOutlinedFilled diff --git a/src/IconTimer3SelectRounded.tsx b/src/IconTimer3SelectRounded.tsx index cadb39d31..64e29ba46 100644 --- a/src/IconTimer3SelectRounded.tsx +++ b/src/IconTimer3SelectRounded.tsx @@ -8,4 +8,4 @@ const IconTimer3SelectRounded: React.FC = ({ ...props }) => ( ) -export { IconTimer3SelectRounded as default } +export default IconTimer3SelectRounded diff --git a/src/IconTimer3SelectRoundedFilled.tsx b/src/IconTimer3SelectRoundedFilled.tsx index 786585ae5..9e8020890 100644 --- a/src/IconTimer3SelectRoundedFilled.tsx +++ b/src/IconTimer3SelectRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconTimer3SelectRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconTimer3SelectRoundedFilled as default } +export default IconTimer3SelectRoundedFilled diff --git a/src/IconTimer3SelectSharp.tsx b/src/IconTimer3SelectSharp.tsx index 2cbb02f77..4e18c2e43 100644 --- a/src/IconTimer3SelectSharp.tsx +++ b/src/IconTimer3SelectSharp.tsx @@ -8,4 +8,4 @@ const IconTimer3SelectSharp: React.FC = ({ ...props }) => ( ) -export { IconTimer3SelectSharp as default } +export default IconTimer3SelectSharp diff --git a/src/IconTimer3SelectSharpFilled.tsx b/src/IconTimer3SelectSharpFilled.tsx index 555cd1e9e..dc456374a 100644 --- a/src/IconTimer3SelectSharpFilled.tsx +++ b/src/IconTimer3SelectSharpFilled.tsx @@ -8,4 +8,4 @@ const IconTimer3SelectSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconTimer3SelectSharpFilled as default } +export default IconTimer3SelectSharpFilled diff --git a/src/IconTimer3Sharp.tsx b/src/IconTimer3Sharp.tsx index aca2d1698..71ee19781 100644 --- a/src/IconTimer3Sharp.tsx +++ b/src/IconTimer3Sharp.tsx @@ -8,4 +8,4 @@ const IconTimer3Sharp: React.FC = ({ ...props }) => ( ) -export { IconTimer3Sharp as default } +export default IconTimer3Sharp diff --git a/src/IconTimer3SharpFilled.tsx b/src/IconTimer3SharpFilled.tsx index 535f5a503..0ca9ce825 100644 --- a/src/IconTimer3SharpFilled.tsx +++ b/src/IconTimer3SharpFilled.tsx @@ -8,4 +8,4 @@ const IconTimer3SharpFilled: React.FC = ({ ...props }) => ( ) -export { IconTimer3SharpFilled as default } +export default IconTimer3SharpFilled diff --git a/src/IconTimer5Outlined.tsx b/src/IconTimer5Outlined.tsx index 030b464b3..74861f62e 100644 --- a/src/IconTimer5Outlined.tsx +++ b/src/IconTimer5Outlined.tsx @@ -8,4 +8,4 @@ const IconTimer5Outlined: React.FC = ({ ...props }) => ( ) -export { IconTimer5Outlined as default } +export default IconTimer5Outlined diff --git a/src/IconTimer5OutlinedFilled.tsx b/src/IconTimer5OutlinedFilled.tsx index 47f5cbd0c..a1cf8b66b 100644 --- a/src/IconTimer5OutlinedFilled.tsx +++ b/src/IconTimer5OutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconTimer5OutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconTimer5OutlinedFilled as default } +export default IconTimer5OutlinedFilled diff --git a/src/IconTimer5Rounded.tsx b/src/IconTimer5Rounded.tsx index 8d5b20605..12ded83b8 100644 --- a/src/IconTimer5Rounded.tsx +++ b/src/IconTimer5Rounded.tsx @@ -8,4 +8,4 @@ const IconTimer5Rounded: React.FC = ({ ...props }) => ( ) -export { IconTimer5Rounded as default } +export default IconTimer5Rounded diff --git a/src/IconTimer5RoundedFilled.tsx b/src/IconTimer5RoundedFilled.tsx index d394e8921..00673cbc0 100644 --- a/src/IconTimer5RoundedFilled.tsx +++ b/src/IconTimer5RoundedFilled.tsx @@ -8,4 +8,4 @@ const IconTimer5RoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconTimer5RoundedFilled as default } +export default IconTimer5RoundedFilled diff --git a/src/IconTimer5Sharp.tsx b/src/IconTimer5Sharp.tsx index b59d15ffc..161005d40 100644 --- a/src/IconTimer5Sharp.tsx +++ b/src/IconTimer5Sharp.tsx @@ -8,4 +8,4 @@ const IconTimer5Sharp: React.FC = ({ ...props }) => ( ) -export { IconTimer5Sharp as default } +export default IconTimer5Sharp diff --git a/src/IconTimer5SharpFilled.tsx b/src/IconTimer5SharpFilled.tsx index 11681054f..c2b95d655 100644 --- a/src/IconTimer5SharpFilled.tsx +++ b/src/IconTimer5SharpFilled.tsx @@ -8,4 +8,4 @@ const IconTimer5SharpFilled: React.FC = ({ ...props }) => ( ) -export { IconTimer5SharpFilled as default } +export default IconTimer5SharpFilled diff --git a/src/IconTimer5ShutterOutlined.tsx b/src/IconTimer5ShutterOutlined.tsx index 6549e1092..fccac9e68 100644 --- a/src/IconTimer5ShutterOutlined.tsx +++ b/src/IconTimer5ShutterOutlined.tsx @@ -8,4 +8,4 @@ const IconTimer5ShutterOutlined: React.FC = ({ ...props }) => ( ) -export { IconTimer5ShutterOutlined as default } +export default IconTimer5ShutterOutlined diff --git a/src/IconTimer5ShutterOutlinedFilled.tsx b/src/IconTimer5ShutterOutlinedFilled.tsx index d0147cfd6..3b534c5fe 100644 --- a/src/IconTimer5ShutterOutlinedFilled.tsx +++ b/src/IconTimer5ShutterOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconTimer5ShutterOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconTimer5ShutterOutlinedFilled as default } +export default IconTimer5ShutterOutlinedFilled diff --git a/src/IconTimer5ShutterRounded.tsx b/src/IconTimer5ShutterRounded.tsx index ff54da77e..c09b3de6b 100644 --- a/src/IconTimer5ShutterRounded.tsx +++ b/src/IconTimer5ShutterRounded.tsx @@ -8,4 +8,4 @@ const IconTimer5ShutterRounded: React.FC = ({ ...props }) => ( ) -export { IconTimer5ShutterRounded as default } +export default IconTimer5ShutterRounded diff --git a/src/IconTimer5ShutterRoundedFilled.tsx b/src/IconTimer5ShutterRoundedFilled.tsx index 53d6be570..502e89f46 100644 --- a/src/IconTimer5ShutterRoundedFilled.tsx +++ b/src/IconTimer5ShutterRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconTimer5ShutterRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconTimer5ShutterRoundedFilled as default } +export default IconTimer5ShutterRoundedFilled diff --git a/src/IconTimer5ShutterSharp.tsx b/src/IconTimer5ShutterSharp.tsx index a02618e2e..3e4ec07d3 100644 --- a/src/IconTimer5ShutterSharp.tsx +++ b/src/IconTimer5ShutterSharp.tsx @@ -8,4 +8,4 @@ const IconTimer5ShutterSharp: React.FC = ({ ...props }) => ( ) -export { IconTimer5ShutterSharp as default } +export default IconTimer5ShutterSharp diff --git a/src/IconTimer5ShutterSharpFilled.tsx b/src/IconTimer5ShutterSharpFilled.tsx index c45f6a9cf..5cc99eb58 100644 --- a/src/IconTimer5ShutterSharpFilled.tsx +++ b/src/IconTimer5ShutterSharpFilled.tsx @@ -8,4 +8,4 @@ const IconTimer5ShutterSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconTimer5ShutterSharpFilled as default } +export default IconTimer5ShutterSharpFilled diff --git a/src/IconTimerOffOutlined.tsx b/src/IconTimerOffOutlined.tsx index 4216a2519..1ad63794a 100644 --- a/src/IconTimerOffOutlined.tsx +++ b/src/IconTimerOffOutlined.tsx @@ -8,4 +8,4 @@ const IconTimerOffOutlined: React.FC = ({ ...props }) => ( ) -export { IconTimerOffOutlined as default } +export default IconTimerOffOutlined diff --git a/src/IconTimerOffOutlinedFilled.tsx b/src/IconTimerOffOutlinedFilled.tsx index d6bd972e5..6c59f35ef 100644 --- a/src/IconTimerOffOutlinedFilled.tsx +++ b/src/IconTimerOffOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconTimerOffOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconTimerOffOutlinedFilled as default } +export default IconTimerOffOutlinedFilled diff --git a/src/IconTimerOffRounded.tsx b/src/IconTimerOffRounded.tsx index d318ddd17..002e69bae 100644 --- a/src/IconTimerOffRounded.tsx +++ b/src/IconTimerOffRounded.tsx @@ -8,4 +8,4 @@ const IconTimerOffRounded: React.FC = ({ ...props }) => ( ) -export { IconTimerOffRounded as default } +export default IconTimerOffRounded diff --git a/src/IconTimerOffRoundedFilled.tsx b/src/IconTimerOffRoundedFilled.tsx index 74d96af5b..ef878b836 100644 --- a/src/IconTimerOffRoundedFilled.tsx +++ b/src/IconTimerOffRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconTimerOffRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconTimerOffRoundedFilled as default } +export default IconTimerOffRoundedFilled diff --git a/src/IconTimerOffSharp.tsx b/src/IconTimerOffSharp.tsx index dce00c898..17e509ec5 100644 --- a/src/IconTimerOffSharp.tsx +++ b/src/IconTimerOffSharp.tsx @@ -8,4 +8,4 @@ const IconTimerOffSharp: React.FC = ({ ...props }) => ( ) -export { IconTimerOffSharp as default } +export default IconTimerOffSharp diff --git a/src/IconTimerOffSharpFilled.tsx b/src/IconTimerOffSharpFilled.tsx index d4453e954..d03163454 100644 --- a/src/IconTimerOffSharpFilled.tsx +++ b/src/IconTimerOffSharpFilled.tsx @@ -8,4 +8,4 @@ const IconTimerOffSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconTimerOffSharpFilled as default } +export default IconTimerOffSharpFilled diff --git a/src/IconTimerOutlined.tsx b/src/IconTimerOutlined.tsx index 43647a075..b572ea362 100644 --- a/src/IconTimerOutlined.tsx +++ b/src/IconTimerOutlined.tsx @@ -8,4 +8,4 @@ const IconTimerOutlined: React.FC = ({ ...props }) => ( ) -export { IconTimerOutlined as default } +export default IconTimerOutlined diff --git a/src/IconTimerOutlinedFilled.tsx b/src/IconTimerOutlinedFilled.tsx index b895fa1bd..389cf892f 100644 --- a/src/IconTimerOutlinedFilled.tsx +++ b/src/IconTimerOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconTimerOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconTimerOutlinedFilled as default } +export default IconTimerOutlinedFilled diff --git a/src/IconTimerPauseOutlined.tsx b/src/IconTimerPauseOutlined.tsx index 843ca42f9..bbadd8a89 100644 --- a/src/IconTimerPauseOutlined.tsx +++ b/src/IconTimerPauseOutlined.tsx @@ -8,4 +8,4 @@ const IconTimerPauseOutlined: React.FC = ({ ...props }) => ( ) -export { IconTimerPauseOutlined as default } +export default IconTimerPauseOutlined diff --git a/src/IconTimerPauseOutlinedFilled.tsx b/src/IconTimerPauseOutlinedFilled.tsx index bf6bad39f..6f479763f 100644 --- a/src/IconTimerPauseOutlinedFilled.tsx +++ b/src/IconTimerPauseOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconTimerPauseOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconTimerPauseOutlinedFilled as default } +export default IconTimerPauseOutlinedFilled diff --git a/src/IconTimerPauseRounded.tsx b/src/IconTimerPauseRounded.tsx index 138ed818d..6730859e6 100644 --- a/src/IconTimerPauseRounded.tsx +++ b/src/IconTimerPauseRounded.tsx @@ -8,4 +8,4 @@ const IconTimerPauseRounded: React.FC = ({ ...props }) => ( ) -export { IconTimerPauseRounded as default } +export default IconTimerPauseRounded diff --git a/src/IconTimerPauseRoundedFilled.tsx b/src/IconTimerPauseRoundedFilled.tsx index 023d7375e..b0d11eccc 100644 --- a/src/IconTimerPauseRoundedFilled.tsx +++ b/src/IconTimerPauseRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconTimerPauseRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconTimerPauseRoundedFilled as default } +export default IconTimerPauseRoundedFilled diff --git a/src/IconTimerPauseSharp.tsx b/src/IconTimerPauseSharp.tsx index 64dc4328e..b1ca33c00 100644 --- a/src/IconTimerPauseSharp.tsx +++ b/src/IconTimerPauseSharp.tsx @@ -8,4 +8,4 @@ const IconTimerPauseSharp: React.FC = ({ ...props }) => ( ) -export { IconTimerPauseSharp as default } +export default IconTimerPauseSharp diff --git a/src/IconTimerPauseSharpFilled.tsx b/src/IconTimerPauseSharpFilled.tsx index 67a5c1751..843027cba 100644 --- a/src/IconTimerPauseSharpFilled.tsx +++ b/src/IconTimerPauseSharpFilled.tsx @@ -8,4 +8,4 @@ const IconTimerPauseSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconTimerPauseSharpFilled as default } +export default IconTimerPauseSharpFilled diff --git a/src/IconTimerPlayOutlined.tsx b/src/IconTimerPlayOutlined.tsx index f4b409a48..0e8b847ee 100644 --- a/src/IconTimerPlayOutlined.tsx +++ b/src/IconTimerPlayOutlined.tsx @@ -8,4 +8,4 @@ const IconTimerPlayOutlined: React.FC = ({ ...props }) => ( ) -export { IconTimerPlayOutlined as default } +export default IconTimerPlayOutlined diff --git a/src/IconTimerPlayOutlinedFilled.tsx b/src/IconTimerPlayOutlinedFilled.tsx index d42953c02..c5d37a0a5 100644 --- a/src/IconTimerPlayOutlinedFilled.tsx +++ b/src/IconTimerPlayOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconTimerPlayOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconTimerPlayOutlinedFilled as default } +export default IconTimerPlayOutlinedFilled diff --git a/src/IconTimerPlayRounded.tsx b/src/IconTimerPlayRounded.tsx index 141f2b461..5015dfdec 100644 --- a/src/IconTimerPlayRounded.tsx +++ b/src/IconTimerPlayRounded.tsx @@ -8,4 +8,4 @@ const IconTimerPlayRounded: React.FC = ({ ...props }) => ( ) -export { IconTimerPlayRounded as default } +export default IconTimerPlayRounded diff --git a/src/IconTimerPlayRoundedFilled.tsx b/src/IconTimerPlayRoundedFilled.tsx index 941864d2c..c29775968 100644 --- a/src/IconTimerPlayRoundedFilled.tsx +++ b/src/IconTimerPlayRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconTimerPlayRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconTimerPlayRoundedFilled as default } +export default IconTimerPlayRoundedFilled diff --git a/src/IconTimerPlaySharp.tsx b/src/IconTimerPlaySharp.tsx index 3dae0e952..dd156d437 100644 --- a/src/IconTimerPlaySharp.tsx +++ b/src/IconTimerPlaySharp.tsx @@ -8,4 +8,4 @@ const IconTimerPlaySharp: React.FC = ({ ...props }) => ( ) -export { IconTimerPlaySharp as default } +export default IconTimerPlaySharp diff --git a/src/IconTimerPlaySharpFilled.tsx b/src/IconTimerPlaySharpFilled.tsx index 5c0ab3391..4616f51ef 100644 --- a/src/IconTimerPlaySharpFilled.tsx +++ b/src/IconTimerPlaySharpFilled.tsx @@ -8,4 +8,4 @@ const IconTimerPlaySharpFilled: React.FC = ({ ...props }) => ( ) -export { IconTimerPlaySharpFilled as default } +export default IconTimerPlaySharpFilled diff --git a/src/IconTimerRounded.tsx b/src/IconTimerRounded.tsx index 57424c343..f3c1e0d5d 100644 --- a/src/IconTimerRounded.tsx +++ b/src/IconTimerRounded.tsx @@ -8,4 +8,4 @@ const IconTimerRounded: React.FC = ({ ...props }) => ( ) -export { IconTimerRounded as default } +export default IconTimerRounded diff --git a/src/IconTimerRoundedFilled.tsx b/src/IconTimerRoundedFilled.tsx index e63736630..41c20c8e6 100644 --- a/src/IconTimerRoundedFilled.tsx +++ b/src/IconTimerRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconTimerRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconTimerRoundedFilled as default } +export default IconTimerRoundedFilled diff --git a/src/IconTimerSharp.tsx b/src/IconTimerSharp.tsx index c3714568b..713f5b1fd 100644 --- a/src/IconTimerSharp.tsx +++ b/src/IconTimerSharp.tsx @@ -8,4 +8,4 @@ const IconTimerSharp: React.FC = ({ ...props }) => ( ) -export { IconTimerSharp as default } +export default IconTimerSharp diff --git a/src/IconTimerSharpFilled.tsx b/src/IconTimerSharpFilled.tsx index 1eca6afa4..4994306f0 100644 --- a/src/IconTimerSharpFilled.tsx +++ b/src/IconTimerSharpFilled.tsx @@ -8,4 +8,4 @@ const IconTimerSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconTimerSharpFilled as default } +export default IconTimerSharpFilled diff --git a/src/IconTireRepairOutlined.tsx b/src/IconTireRepairOutlined.tsx index dfb2a3867..ff8f3467b 100644 --- a/src/IconTireRepairOutlined.tsx +++ b/src/IconTireRepairOutlined.tsx @@ -8,4 +8,4 @@ const IconTireRepairOutlined: React.FC = ({ ...props }) => ( ) -export { IconTireRepairOutlined as default } +export default IconTireRepairOutlined diff --git a/src/IconTireRepairOutlinedFilled.tsx b/src/IconTireRepairOutlinedFilled.tsx index 96ae0893c..6a674682d 100644 --- a/src/IconTireRepairOutlinedFilled.tsx +++ b/src/IconTireRepairOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconTireRepairOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconTireRepairOutlinedFilled as default } +export default IconTireRepairOutlinedFilled diff --git a/src/IconTireRepairRounded.tsx b/src/IconTireRepairRounded.tsx index f8c1764d2..2bc2d6aea 100644 --- a/src/IconTireRepairRounded.tsx +++ b/src/IconTireRepairRounded.tsx @@ -8,4 +8,4 @@ const IconTireRepairRounded: React.FC = ({ ...props }) => ( ) -export { IconTireRepairRounded as default } +export default IconTireRepairRounded diff --git a/src/IconTireRepairRoundedFilled.tsx b/src/IconTireRepairRoundedFilled.tsx index b3f9722b8..fe67aab6b 100644 --- a/src/IconTireRepairRoundedFilled.tsx +++ b/src/IconTireRepairRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconTireRepairRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconTireRepairRoundedFilled as default } +export default IconTireRepairRoundedFilled diff --git a/src/IconTireRepairSharp.tsx b/src/IconTireRepairSharp.tsx index 4a6979178..504144112 100644 --- a/src/IconTireRepairSharp.tsx +++ b/src/IconTireRepairSharp.tsx @@ -8,4 +8,4 @@ const IconTireRepairSharp: React.FC = ({ ...props }) => ( ) -export { IconTireRepairSharp as default } +export default IconTireRepairSharp diff --git a/src/IconTireRepairSharpFilled.tsx b/src/IconTireRepairSharpFilled.tsx index 68f0e5f58..4357088dd 100644 --- a/src/IconTireRepairSharpFilled.tsx +++ b/src/IconTireRepairSharpFilled.tsx @@ -8,4 +8,4 @@ const IconTireRepairSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconTireRepairSharpFilled as default } +export default IconTireRepairSharpFilled diff --git a/src/IconTitleOutlined.tsx b/src/IconTitleOutlined.tsx index 8e4de9c12..77e75c5d9 100644 --- a/src/IconTitleOutlined.tsx +++ b/src/IconTitleOutlined.tsx @@ -8,4 +8,4 @@ const IconTitleOutlined: React.FC = ({ ...props }) => ( ) -export { IconTitleOutlined as default } +export default IconTitleOutlined diff --git a/src/IconTitleOutlinedFilled.tsx b/src/IconTitleOutlinedFilled.tsx index 5d496985b..8d5f29f3b 100644 --- a/src/IconTitleOutlinedFilled.tsx +++ b/src/IconTitleOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconTitleOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconTitleOutlinedFilled as default } +export default IconTitleOutlinedFilled diff --git a/src/IconTitleRounded.tsx b/src/IconTitleRounded.tsx index 913653e04..2fc0af1f4 100644 --- a/src/IconTitleRounded.tsx +++ b/src/IconTitleRounded.tsx @@ -8,4 +8,4 @@ const IconTitleRounded: React.FC = ({ ...props }) => ( ) -export { IconTitleRounded as default } +export default IconTitleRounded diff --git a/src/IconTitleRoundedFilled.tsx b/src/IconTitleRoundedFilled.tsx index 651a5f9a5..b347d6483 100644 --- a/src/IconTitleRoundedFilled.tsx +++ b/src/IconTitleRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconTitleRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconTitleRoundedFilled as default } +export default IconTitleRoundedFilled diff --git a/src/IconTitleSharp.tsx b/src/IconTitleSharp.tsx index c753b0832..a1639c3f0 100644 --- a/src/IconTitleSharp.tsx +++ b/src/IconTitleSharp.tsx @@ -8,4 +8,4 @@ const IconTitleSharp: React.FC = ({ ...props }) => ( ) -export { IconTitleSharp as default } +export default IconTitleSharp diff --git a/src/IconTitleSharpFilled.tsx b/src/IconTitleSharpFilled.tsx index 4962adfdf..c268ba9e4 100644 --- a/src/IconTitleSharpFilled.tsx +++ b/src/IconTitleSharpFilled.tsx @@ -8,4 +8,4 @@ const IconTitleSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconTitleSharpFilled as default } +export default IconTitleSharpFilled diff --git a/src/IconTitlecaseOutlined.tsx b/src/IconTitlecaseOutlined.tsx index ac9c4b03b..b7e4a3418 100644 --- a/src/IconTitlecaseOutlined.tsx +++ b/src/IconTitlecaseOutlined.tsx @@ -8,4 +8,4 @@ const IconTitlecaseOutlined: React.FC = ({ ...props }) => ( ) -export { IconTitlecaseOutlined as default } +export default IconTitlecaseOutlined diff --git a/src/IconTitlecaseOutlinedFilled.tsx b/src/IconTitlecaseOutlinedFilled.tsx index a734ca9a4..2f8df06ec 100644 --- a/src/IconTitlecaseOutlinedFilled.tsx +++ b/src/IconTitlecaseOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconTitlecaseOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconTitlecaseOutlinedFilled as default } +export default IconTitlecaseOutlinedFilled diff --git a/src/IconTitlecaseRounded.tsx b/src/IconTitlecaseRounded.tsx index c0ddf61a5..ec752d521 100644 --- a/src/IconTitlecaseRounded.tsx +++ b/src/IconTitlecaseRounded.tsx @@ -8,4 +8,4 @@ const IconTitlecaseRounded: React.FC = ({ ...props }) => ( ) -export { IconTitlecaseRounded as default } +export default IconTitlecaseRounded diff --git a/src/IconTitlecaseRoundedFilled.tsx b/src/IconTitlecaseRoundedFilled.tsx index e0bc83321..512c3a001 100644 --- a/src/IconTitlecaseRoundedFilled.tsx +++ b/src/IconTitlecaseRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconTitlecaseRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconTitlecaseRoundedFilled as default } +export default IconTitlecaseRoundedFilled diff --git a/src/IconTitlecaseSharp.tsx b/src/IconTitlecaseSharp.tsx index 9d210997a..7a1ad0d2e 100644 --- a/src/IconTitlecaseSharp.tsx +++ b/src/IconTitlecaseSharp.tsx @@ -8,4 +8,4 @@ const IconTitlecaseSharp: React.FC = ({ ...props }) => ( ) -export { IconTitlecaseSharp as default } +export default IconTitlecaseSharp diff --git a/src/IconTitlecaseSharpFilled.tsx b/src/IconTitlecaseSharpFilled.tsx index 7e29e4797..db6641037 100644 --- a/src/IconTitlecaseSharpFilled.tsx +++ b/src/IconTitlecaseSharpFilled.tsx @@ -8,4 +8,4 @@ const IconTitlecaseSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconTitlecaseSharpFilled as default } +export default IconTitlecaseSharpFilled diff --git a/src/IconToastOutlined.tsx b/src/IconToastOutlined.tsx index c18abc92a..5d0db8ccb 100644 --- a/src/IconToastOutlined.tsx +++ b/src/IconToastOutlined.tsx @@ -8,4 +8,4 @@ const IconToastOutlined: React.FC = ({ ...props }) => ( ) -export { IconToastOutlined as default } +export default IconToastOutlined diff --git a/src/IconToastOutlinedFilled.tsx b/src/IconToastOutlinedFilled.tsx index 2e635d9e2..ece532bc2 100644 --- a/src/IconToastOutlinedFilled.tsx +++ b/src/IconToastOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconToastOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconToastOutlinedFilled as default } +export default IconToastOutlinedFilled diff --git a/src/IconToastRounded.tsx b/src/IconToastRounded.tsx index da1aa00ff..7dd6f8894 100644 --- a/src/IconToastRounded.tsx +++ b/src/IconToastRounded.tsx @@ -8,4 +8,4 @@ const IconToastRounded: React.FC = ({ ...props }) => ( ) -export { IconToastRounded as default } +export default IconToastRounded diff --git a/src/IconToastRoundedFilled.tsx b/src/IconToastRoundedFilled.tsx index 911b20dcd..a82a84e76 100644 --- a/src/IconToastRoundedFilled.tsx +++ b/src/IconToastRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconToastRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconToastRoundedFilled as default } +export default IconToastRoundedFilled diff --git a/src/IconToastSharp.tsx b/src/IconToastSharp.tsx index 404fe5bff..78e9eca80 100644 --- a/src/IconToastSharp.tsx +++ b/src/IconToastSharp.tsx @@ -8,4 +8,4 @@ const IconToastSharp: React.FC = ({ ...props }) => ( ) -export { IconToastSharp as default } +export default IconToastSharp diff --git a/src/IconToastSharpFilled.tsx b/src/IconToastSharpFilled.tsx index e4267313a..70549d8ce 100644 --- a/src/IconToastSharpFilled.tsx +++ b/src/IconToastSharpFilled.tsx @@ -8,4 +8,4 @@ const IconToastSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconToastSharpFilled as default } +export default IconToastSharpFilled diff --git a/src/IconTocOutlined.tsx b/src/IconTocOutlined.tsx index ab6fd5105..bbf654354 100644 --- a/src/IconTocOutlined.tsx +++ b/src/IconTocOutlined.tsx @@ -8,4 +8,4 @@ const IconTocOutlined: React.FC = ({ ...props }) => ( ) -export { IconTocOutlined as default } +export default IconTocOutlined diff --git a/src/IconTocOutlinedFilled.tsx b/src/IconTocOutlinedFilled.tsx index 5c7b0bcd3..d295e8f81 100644 --- a/src/IconTocOutlinedFilled.tsx +++ b/src/IconTocOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconTocOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconTocOutlinedFilled as default } +export default IconTocOutlinedFilled diff --git a/src/IconTocRounded.tsx b/src/IconTocRounded.tsx index 9ccc79351..1f32d2c27 100644 --- a/src/IconTocRounded.tsx +++ b/src/IconTocRounded.tsx @@ -8,4 +8,4 @@ const IconTocRounded: React.FC = ({ ...props }) => ( ) -export { IconTocRounded as default } +export default IconTocRounded diff --git a/src/IconTocRoundedFilled.tsx b/src/IconTocRoundedFilled.tsx index b6fadc954..1ca0a6812 100644 --- a/src/IconTocRoundedFilled.tsx +++ b/src/IconTocRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconTocRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconTocRoundedFilled as default } +export default IconTocRoundedFilled diff --git a/src/IconTocSharp.tsx b/src/IconTocSharp.tsx index ed374a022..6d8d4e1be 100644 --- a/src/IconTocSharp.tsx +++ b/src/IconTocSharp.tsx @@ -8,4 +8,4 @@ const IconTocSharp: React.FC = ({ ...props }) => ( ) -export { IconTocSharp as default } +export default IconTocSharp diff --git a/src/IconTocSharpFilled.tsx b/src/IconTocSharpFilled.tsx index 893a2c9c8..b0c6fe446 100644 --- a/src/IconTocSharpFilled.tsx +++ b/src/IconTocSharpFilled.tsx @@ -8,4 +8,4 @@ const IconTocSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconTocSharpFilled as default } +export default IconTocSharpFilled diff --git a/src/IconTodayOutlined.tsx b/src/IconTodayOutlined.tsx index 1769bdebe..0c824925f 100644 --- a/src/IconTodayOutlined.tsx +++ b/src/IconTodayOutlined.tsx @@ -8,4 +8,4 @@ const IconTodayOutlined: React.FC = ({ ...props }) => ( ) -export { IconTodayOutlined as default } +export default IconTodayOutlined diff --git a/src/IconTodayOutlinedFilled.tsx b/src/IconTodayOutlinedFilled.tsx index cd9989997..551963b8c 100644 --- a/src/IconTodayOutlinedFilled.tsx +++ b/src/IconTodayOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconTodayOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconTodayOutlinedFilled as default } +export default IconTodayOutlinedFilled diff --git a/src/IconTodayRounded.tsx b/src/IconTodayRounded.tsx index ade9427ac..ded292381 100644 --- a/src/IconTodayRounded.tsx +++ b/src/IconTodayRounded.tsx @@ -8,4 +8,4 @@ const IconTodayRounded: React.FC = ({ ...props }) => ( ) -export { IconTodayRounded as default } +export default IconTodayRounded diff --git a/src/IconTodayRoundedFilled.tsx b/src/IconTodayRoundedFilled.tsx index b18dbf3c7..8936f1000 100644 --- a/src/IconTodayRoundedFilled.tsx +++ b/src/IconTodayRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconTodayRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconTodayRoundedFilled as default } +export default IconTodayRoundedFilled diff --git a/src/IconTodaySharp.tsx b/src/IconTodaySharp.tsx index 4dd52a52f..9262c599b 100644 --- a/src/IconTodaySharp.tsx +++ b/src/IconTodaySharp.tsx @@ -8,4 +8,4 @@ const IconTodaySharp: React.FC = ({ ...props }) => ( ) -export { IconTodaySharp as default } +export default IconTodaySharp diff --git a/src/IconTodaySharpFilled.tsx b/src/IconTodaySharpFilled.tsx index 8eb05e9fc..a6ab26814 100644 --- a/src/IconTodaySharpFilled.tsx +++ b/src/IconTodaySharpFilled.tsx @@ -8,4 +8,4 @@ const IconTodaySharpFilled: React.FC = ({ ...props }) => ( ) -export { IconTodaySharpFilled as default } +export default IconTodaySharpFilled diff --git a/src/IconToggleOffOutlined.tsx b/src/IconToggleOffOutlined.tsx index 18c9bfdc4..19c7479e5 100644 --- a/src/IconToggleOffOutlined.tsx +++ b/src/IconToggleOffOutlined.tsx @@ -8,4 +8,4 @@ const IconToggleOffOutlined: React.FC = ({ ...props }) => ( ) -export { IconToggleOffOutlined as default } +export default IconToggleOffOutlined diff --git a/src/IconToggleOffOutlinedFilled.tsx b/src/IconToggleOffOutlinedFilled.tsx index 109994efb..9216cc0f7 100644 --- a/src/IconToggleOffOutlinedFilled.tsx +++ b/src/IconToggleOffOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconToggleOffOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconToggleOffOutlinedFilled as default } +export default IconToggleOffOutlinedFilled diff --git a/src/IconToggleOffRounded.tsx b/src/IconToggleOffRounded.tsx index 5ed7d30ca..7e32dd61e 100644 --- a/src/IconToggleOffRounded.tsx +++ b/src/IconToggleOffRounded.tsx @@ -8,4 +8,4 @@ const IconToggleOffRounded: React.FC = ({ ...props }) => ( ) -export { IconToggleOffRounded as default } +export default IconToggleOffRounded diff --git a/src/IconToggleOffRoundedFilled.tsx b/src/IconToggleOffRoundedFilled.tsx index 59c5adfec..2b185e697 100644 --- a/src/IconToggleOffRoundedFilled.tsx +++ b/src/IconToggleOffRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconToggleOffRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconToggleOffRoundedFilled as default } +export default IconToggleOffRoundedFilled diff --git a/src/IconToggleOffSharp.tsx b/src/IconToggleOffSharp.tsx index b1f90787b..7df639c41 100644 --- a/src/IconToggleOffSharp.tsx +++ b/src/IconToggleOffSharp.tsx @@ -8,4 +8,4 @@ const IconToggleOffSharp: React.FC = ({ ...props }) => ( ) -export { IconToggleOffSharp as default } +export default IconToggleOffSharp diff --git a/src/IconToggleOffSharpFilled.tsx b/src/IconToggleOffSharpFilled.tsx index d7bebb775..a7d975afa 100644 --- a/src/IconToggleOffSharpFilled.tsx +++ b/src/IconToggleOffSharpFilled.tsx @@ -8,4 +8,4 @@ const IconToggleOffSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconToggleOffSharpFilled as default } +export default IconToggleOffSharpFilled diff --git a/src/IconToggleOnOutlined.tsx b/src/IconToggleOnOutlined.tsx index 5c69a57f5..6d14b7dc0 100644 --- a/src/IconToggleOnOutlined.tsx +++ b/src/IconToggleOnOutlined.tsx @@ -8,4 +8,4 @@ const IconToggleOnOutlined: React.FC = ({ ...props }) => ( ) -export { IconToggleOnOutlined as default } +export default IconToggleOnOutlined diff --git a/src/IconToggleOnOutlinedFilled.tsx b/src/IconToggleOnOutlinedFilled.tsx index 7f5731a18..1b8145197 100644 --- a/src/IconToggleOnOutlinedFilled.tsx +++ b/src/IconToggleOnOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconToggleOnOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconToggleOnOutlinedFilled as default } +export default IconToggleOnOutlinedFilled diff --git a/src/IconToggleOnRounded.tsx b/src/IconToggleOnRounded.tsx index dc5f5caa2..6fd6ed504 100644 --- a/src/IconToggleOnRounded.tsx +++ b/src/IconToggleOnRounded.tsx @@ -8,4 +8,4 @@ const IconToggleOnRounded: React.FC = ({ ...props }) => ( ) -export { IconToggleOnRounded as default } +export default IconToggleOnRounded diff --git a/src/IconToggleOnRoundedFilled.tsx b/src/IconToggleOnRoundedFilled.tsx index 0c561f99f..64273f8b7 100644 --- a/src/IconToggleOnRoundedFilled.tsx +++ b/src/IconToggleOnRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconToggleOnRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconToggleOnRoundedFilled as default } +export default IconToggleOnRoundedFilled diff --git a/src/IconToggleOnSharp.tsx b/src/IconToggleOnSharp.tsx index 3fcf344b9..571a02fdf 100644 --- a/src/IconToggleOnSharp.tsx +++ b/src/IconToggleOnSharp.tsx @@ -8,4 +8,4 @@ const IconToggleOnSharp: React.FC = ({ ...props }) => ( ) -export { IconToggleOnSharp as default } +export default IconToggleOnSharp diff --git a/src/IconToggleOnSharpFilled.tsx b/src/IconToggleOnSharpFilled.tsx index b764c5caf..aeea44450 100644 --- a/src/IconToggleOnSharpFilled.tsx +++ b/src/IconToggleOnSharpFilled.tsx @@ -8,4 +8,4 @@ const IconToggleOnSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconToggleOnSharpFilled as default } +export default IconToggleOnSharpFilled diff --git a/src/IconTokenOutlined.tsx b/src/IconTokenOutlined.tsx index c73bb17bf..4c662cf58 100644 --- a/src/IconTokenOutlined.tsx +++ b/src/IconTokenOutlined.tsx @@ -8,4 +8,4 @@ const IconTokenOutlined: React.FC = ({ ...props }) => ( ) -export { IconTokenOutlined as default } +export default IconTokenOutlined diff --git a/src/IconTokenOutlinedFilled.tsx b/src/IconTokenOutlinedFilled.tsx index 64d1505b7..51fc198d2 100644 --- a/src/IconTokenOutlinedFilled.tsx +++ b/src/IconTokenOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconTokenOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconTokenOutlinedFilled as default } +export default IconTokenOutlinedFilled diff --git a/src/IconTokenRounded.tsx b/src/IconTokenRounded.tsx index 1ccfe0cd6..9bc9e54f2 100644 --- a/src/IconTokenRounded.tsx +++ b/src/IconTokenRounded.tsx @@ -8,4 +8,4 @@ const IconTokenRounded: React.FC = ({ ...props }) => ( ) -export { IconTokenRounded as default } +export default IconTokenRounded diff --git a/src/IconTokenRoundedFilled.tsx b/src/IconTokenRoundedFilled.tsx index 0ffb15886..2f16a74e5 100644 --- a/src/IconTokenRoundedFilled.tsx +++ b/src/IconTokenRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconTokenRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconTokenRoundedFilled as default } +export default IconTokenRoundedFilled diff --git a/src/IconTokenSharp.tsx b/src/IconTokenSharp.tsx index a3fd56fd2..e01075d12 100644 --- a/src/IconTokenSharp.tsx +++ b/src/IconTokenSharp.tsx @@ -8,4 +8,4 @@ const IconTokenSharp: React.FC = ({ ...props }) => ( ) -export { IconTokenSharp as default } +export default IconTokenSharp diff --git a/src/IconTokenSharpFilled.tsx b/src/IconTokenSharpFilled.tsx index 78bf976a4..ad385988e 100644 --- a/src/IconTokenSharpFilled.tsx +++ b/src/IconTokenSharpFilled.tsx @@ -8,4 +8,4 @@ const IconTokenSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconTokenSharpFilled as default } +export default IconTokenSharpFilled diff --git a/src/IconTollOutlined.tsx b/src/IconTollOutlined.tsx index 1f0221c47..7b66822d2 100644 --- a/src/IconTollOutlined.tsx +++ b/src/IconTollOutlined.tsx @@ -8,4 +8,4 @@ const IconTollOutlined: React.FC = ({ ...props }) => ( ) -export { IconTollOutlined as default } +export default IconTollOutlined diff --git a/src/IconTollOutlinedFilled.tsx b/src/IconTollOutlinedFilled.tsx index 3264a35b4..0e055a195 100644 --- a/src/IconTollOutlinedFilled.tsx +++ b/src/IconTollOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconTollOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconTollOutlinedFilled as default } +export default IconTollOutlinedFilled diff --git a/src/IconTollRounded.tsx b/src/IconTollRounded.tsx index 7b561f9d9..311b6b88d 100644 --- a/src/IconTollRounded.tsx +++ b/src/IconTollRounded.tsx @@ -8,4 +8,4 @@ const IconTollRounded: React.FC = ({ ...props }) => ( ) -export { IconTollRounded as default } +export default IconTollRounded diff --git a/src/IconTollRoundedFilled.tsx b/src/IconTollRoundedFilled.tsx index 93e133be1..2daf5f408 100644 --- a/src/IconTollRoundedFilled.tsx +++ b/src/IconTollRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconTollRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconTollRoundedFilled as default } +export default IconTollRoundedFilled diff --git a/src/IconTollSharp.tsx b/src/IconTollSharp.tsx index ccd380bfb..57a91f9c8 100644 --- a/src/IconTollSharp.tsx +++ b/src/IconTollSharp.tsx @@ -8,4 +8,4 @@ const IconTollSharp: React.FC = ({ ...props }) => ( ) -export { IconTollSharp as default } +export default IconTollSharp diff --git a/src/IconTollSharpFilled.tsx b/src/IconTollSharpFilled.tsx index ab60a7f50..a7a0381e8 100644 --- a/src/IconTollSharpFilled.tsx +++ b/src/IconTollSharpFilled.tsx @@ -8,4 +8,4 @@ const IconTollSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconTollSharpFilled as default } +export default IconTollSharpFilled diff --git a/src/IconTonalityOutlined.tsx b/src/IconTonalityOutlined.tsx index b888910c9..ed02b1471 100644 --- a/src/IconTonalityOutlined.tsx +++ b/src/IconTonalityOutlined.tsx @@ -8,4 +8,4 @@ const IconTonalityOutlined: React.FC = ({ ...props }) => ( ) -export { IconTonalityOutlined as default } +export default IconTonalityOutlined diff --git a/src/IconTonalityOutlinedFilled.tsx b/src/IconTonalityOutlinedFilled.tsx index 9b6f30e47..e426214a9 100644 --- a/src/IconTonalityOutlinedFilled.tsx +++ b/src/IconTonalityOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconTonalityOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconTonalityOutlinedFilled as default } +export default IconTonalityOutlinedFilled diff --git a/src/IconTonalityRounded.tsx b/src/IconTonalityRounded.tsx index 4fa351120..449b266dd 100644 --- a/src/IconTonalityRounded.tsx +++ b/src/IconTonalityRounded.tsx @@ -8,4 +8,4 @@ const IconTonalityRounded: React.FC = ({ ...props }) => ( ) -export { IconTonalityRounded as default } +export default IconTonalityRounded diff --git a/src/IconTonalityRoundedFilled.tsx b/src/IconTonalityRoundedFilled.tsx index 7795ce223..54f7fc8d2 100644 --- a/src/IconTonalityRoundedFilled.tsx +++ b/src/IconTonalityRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconTonalityRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconTonalityRoundedFilled as default } +export default IconTonalityRoundedFilled diff --git a/src/IconTonalitySharp.tsx b/src/IconTonalitySharp.tsx index 1301e382b..701078c6f 100644 --- a/src/IconTonalitySharp.tsx +++ b/src/IconTonalitySharp.tsx @@ -8,4 +8,4 @@ const IconTonalitySharp: React.FC = ({ ...props }) => ( ) -export { IconTonalitySharp as default } +export default IconTonalitySharp diff --git a/src/IconTonalitySharpFilled.tsx b/src/IconTonalitySharpFilled.tsx index ee14a866c..6cdcec10a 100644 --- a/src/IconTonalitySharpFilled.tsx +++ b/src/IconTonalitySharpFilled.tsx @@ -8,4 +8,4 @@ const IconTonalitySharpFilled: React.FC = ({ ...props }) => ( ) -export { IconTonalitySharpFilled as default } +export default IconTonalitySharpFilled diff --git a/src/IconToolbarOutlined.tsx b/src/IconToolbarOutlined.tsx index 0047f3c8e..25f2be805 100644 --- a/src/IconToolbarOutlined.tsx +++ b/src/IconToolbarOutlined.tsx @@ -8,4 +8,4 @@ const IconToolbarOutlined: React.FC = ({ ...props }) => ( ) -export { IconToolbarOutlined as default } +export default IconToolbarOutlined diff --git a/src/IconToolbarOutlinedFilled.tsx b/src/IconToolbarOutlinedFilled.tsx index 45e2e191d..99b9cc262 100644 --- a/src/IconToolbarOutlinedFilled.tsx +++ b/src/IconToolbarOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconToolbarOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconToolbarOutlinedFilled as default } +export default IconToolbarOutlinedFilled diff --git a/src/IconToolbarRounded.tsx b/src/IconToolbarRounded.tsx index c8c9c982f..0ebda380a 100644 --- a/src/IconToolbarRounded.tsx +++ b/src/IconToolbarRounded.tsx @@ -8,4 +8,4 @@ const IconToolbarRounded: React.FC = ({ ...props }) => ( ) -export { IconToolbarRounded as default } +export default IconToolbarRounded diff --git a/src/IconToolbarRoundedFilled.tsx b/src/IconToolbarRoundedFilled.tsx index 8307b992b..e2b61534b 100644 --- a/src/IconToolbarRoundedFilled.tsx +++ b/src/IconToolbarRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconToolbarRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconToolbarRoundedFilled as default } +export default IconToolbarRoundedFilled diff --git a/src/IconToolbarSharp.tsx b/src/IconToolbarSharp.tsx index 8e240c277..e7b066e15 100644 --- a/src/IconToolbarSharp.tsx +++ b/src/IconToolbarSharp.tsx @@ -8,4 +8,4 @@ const IconToolbarSharp: React.FC = ({ ...props }) => ( ) -export { IconToolbarSharp as default } +export default IconToolbarSharp diff --git a/src/IconToolbarSharpFilled.tsx b/src/IconToolbarSharpFilled.tsx index 33a609930..0b7fce044 100644 --- a/src/IconToolbarSharpFilled.tsx +++ b/src/IconToolbarSharpFilled.tsx @@ -8,4 +8,4 @@ const IconToolbarSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconToolbarSharpFilled as default } +export default IconToolbarSharpFilled diff --git a/src/IconToolsFlatHeadOutlined.tsx b/src/IconToolsFlatHeadOutlined.tsx index 4733f550c..0130e2db7 100644 --- a/src/IconToolsFlatHeadOutlined.tsx +++ b/src/IconToolsFlatHeadOutlined.tsx @@ -8,4 +8,4 @@ const IconToolsFlatHeadOutlined: React.FC = ({ ...props }) => ( ) -export { IconToolsFlatHeadOutlined as default } +export default IconToolsFlatHeadOutlined diff --git a/src/IconToolsFlatHeadOutlinedFilled.tsx b/src/IconToolsFlatHeadOutlinedFilled.tsx index 6620666ac..bc5e12d38 100644 --- a/src/IconToolsFlatHeadOutlinedFilled.tsx +++ b/src/IconToolsFlatHeadOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconToolsFlatHeadOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconToolsFlatHeadOutlinedFilled as default } +export default IconToolsFlatHeadOutlinedFilled diff --git a/src/IconToolsFlatHeadRounded.tsx b/src/IconToolsFlatHeadRounded.tsx index 36c6f1f9b..c51175dba 100644 --- a/src/IconToolsFlatHeadRounded.tsx +++ b/src/IconToolsFlatHeadRounded.tsx @@ -8,4 +8,4 @@ const IconToolsFlatHeadRounded: React.FC = ({ ...props }) => ( ) -export { IconToolsFlatHeadRounded as default } +export default IconToolsFlatHeadRounded diff --git a/src/IconToolsFlatHeadRoundedFilled.tsx b/src/IconToolsFlatHeadRoundedFilled.tsx index 88f5d5fce..8dd8540a4 100644 --- a/src/IconToolsFlatHeadRoundedFilled.tsx +++ b/src/IconToolsFlatHeadRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconToolsFlatHeadRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconToolsFlatHeadRoundedFilled as default } +export default IconToolsFlatHeadRoundedFilled diff --git a/src/IconToolsFlatHeadSharp.tsx b/src/IconToolsFlatHeadSharp.tsx index 37acf9cbc..73a13be61 100644 --- a/src/IconToolsFlatHeadSharp.tsx +++ b/src/IconToolsFlatHeadSharp.tsx @@ -8,4 +8,4 @@ const IconToolsFlatHeadSharp: React.FC = ({ ...props }) => ( ) -export { IconToolsFlatHeadSharp as default } +export default IconToolsFlatHeadSharp diff --git a/src/IconToolsFlatHeadSharpFilled.tsx b/src/IconToolsFlatHeadSharpFilled.tsx index 9d2cd41a5..039d055b6 100644 --- a/src/IconToolsFlatHeadSharpFilled.tsx +++ b/src/IconToolsFlatHeadSharpFilled.tsx @@ -8,4 +8,4 @@ const IconToolsFlatHeadSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconToolsFlatHeadSharpFilled as default } +export default IconToolsFlatHeadSharpFilled diff --git a/src/IconToolsInstallationKitOutlined.tsx b/src/IconToolsInstallationKitOutlined.tsx index 9572d1fae..8aac49f3c 100644 --- a/src/IconToolsInstallationKitOutlined.tsx +++ b/src/IconToolsInstallationKitOutlined.tsx @@ -10,4 +10,4 @@ const IconToolsInstallationKitOutlined: React.FC = ({ ) -export { IconToolsInstallationKitOutlined as default } +export default IconToolsInstallationKitOutlined diff --git a/src/IconToolsInstallationKitOutlinedFilled.tsx b/src/IconToolsInstallationKitOutlinedFilled.tsx index 9b6e2f935..bdc25915c 100644 --- a/src/IconToolsInstallationKitOutlinedFilled.tsx +++ b/src/IconToolsInstallationKitOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconToolsInstallationKitOutlinedFilled: React.FC = ({ ) -export { IconToolsInstallationKitOutlinedFilled as default } +export default IconToolsInstallationKitOutlinedFilled diff --git a/src/IconToolsInstallationKitRounded.tsx b/src/IconToolsInstallationKitRounded.tsx index 72382c6dd..91cc38f3b 100644 --- a/src/IconToolsInstallationKitRounded.tsx +++ b/src/IconToolsInstallationKitRounded.tsx @@ -8,4 +8,4 @@ const IconToolsInstallationKitRounded: React.FC = ({ ...props }) => ( ) -export { IconToolsInstallationKitRounded as default } +export default IconToolsInstallationKitRounded diff --git a/src/IconToolsInstallationKitRoundedFilled.tsx b/src/IconToolsInstallationKitRoundedFilled.tsx index 7afcb02ae..e817a81bc 100644 --- a/src/IconToolsInstallationKitRoundedFilled.tsx +++ b/src/IconToolsInstallationKitRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconToolsInstallationKitRoundedFilled: React.FC = ({ ) -export { IconToolsInstallationKitRoundedFilled as default } +export default IconToolsInstallationKitRoundedFilled diff --git a/src/IconToolsInstallationKitSharp.tsx b/src/IconToolsInstallationKitSharp.tsx index fe5baa287..b3bdc5227 100644 --- a/src/IconToolsInstallationKitSharp.tsx +++ b/src/IconToolsInstallationKitSharp.tsx @@ -8,4 +8,4 @@ const IconToolsInstallationKitSharp: React.FC = ({ ...props }) => ( ) -export { IconToolsInstallationKitSharp as default } +export default IconToolsInstallationKitSharp diff --git a/src/IconToolsInstallationKitSharpFilled.tsx b/src/IconToolsInstallationKitSharpFilled.tsx index eff1ebbd3..93b9a59d9 100644 --- a/src/IconToolsInstallationKitSharpFilled.tsx +++ b/src/IconToolsInstallationKitSharpFilled.tsx @@ -10,4 +10,4 @@ const IconToolsInstallationKitSharpFilled: React.FC = ({ ) -export { IconToolsInstallationKitSharpFilled as default } +export default IconToolsInstallationKitSharpFilled diff --git a/src/IconToolsLadderOutlined.tsx b/src/IconToolsLadderOutlined.tsx index c37d372f0..bd41f53ca 100644 --- a/src/IconToolsLadderOutlined.tsx +++ b/src/IconToolsLadderOutlined.tsx @@ -8,4 +8,4 @@ const IconToolsLadderOutlined: React.FC = ({ ...props }) => ( ) -export { IconToolsLadderOutlined as default } +export default IconToolsLadderOutlined diff --git a/src/IconToolsLadderOutlinedFilled.tsx b/src/IconToolsLadderOutlinedFilled.tsx index d3560d0b3..af810273b 100644 --- a/src/IconToolsLadderOutlinedFilled.tsx +++ b/src/IconToolsLadderOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconToolsLadderOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconToolsLadderOutlinedFilled as default } +export default IconToolsLadderOutlinedFilled diff --git a/src/IconToolsLadderRounded.tsx b/src/IconToolsLadderRounded.tsx index c7f1e2f5f..f88204448 100644 --- a/src/IconToolsLadderRounded.tsx +++ b/src/IconToolsLadderRounded.tsx @@ -8,4 +8,4 @@ const IconToolsLadderRounded: React.FC = ({ ...props }) => ( ) -export { IconToolsLadderRounded as default } +export default IconToolsLadderRounded diff --git a/src/IconToolsLadderRoundedFilled.tsx b/src/IconToolsLadderRoundedFilled.tsx index 795ba213f..7646ac44f 100644 --- a/src/IconToolsLadderRoundedFilled.tsx +++ b/src/IconToolsLadderRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconToolsLadderRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconToolsLadderRoundedFilled as default } +export default IconToolsLadderRoundedFilled diff --git a/src/IconToolsLadderSharp.tsx b/src/IconToolsLadderSharp.tsx index cc366ad21..070882a3a 100644 --- a/src/IconToolsLadderSharp.tsx +++ b/src/IconToolsLadderSharp.tsx @@ -8,4 +8,4 @@ const IconToolsLadderSharp: React.FC = ({ ...props }) => ( ) -export { IconToolsLadderSharp as default } +export default IconToolsLadderSharp diff --git a/src/IconToolsLadderSharpFilled.tsx b/src/IconToolsLadderSharpFilled.tsx index e1151931e..184db6262 100644 --- a/src/IconToolsLadderSharpFilled.tsx +++ b/src/IconToolsLadderSharpFilled.tsx @@ -8,4 +8,4 @@ const IconToolsLadderSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconToolsLadderSharpFilled as default } +export default IconToolsLadderSharpFilled diff --git a/src/IconToolsLevelOutlined.tsx b/src/IconToolsLevelOutlined.tsx index a6a629809..9ad04c6b4 100644 --- a/src/IconToolsLevelOutlined.tsx +++ b/src/IconToolsLevelOutlined.tsx @@ -8,4 +8,4 @@ const IconToolsLevelOutlined: React.FC = ({ ...props }) => ( ) -export { IconToolsLevelOutlined as default } +export default IconToolsLevelOutlined diff --git a/src/IconToolsLevelOutlinedFilled.tsx b/src/IconToolsLevelOutlinedFilled.tsx index 304fe1398..caac211fa 100644 --- a/src/IconToolsLevelOutlinedFilled.tsx +++ b/src/IconToolsLevelOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconToolsLevelOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconToolsLevelOutlinedFilled as default } +export default IconToolsLevelOutlinedFilled diff --git a/src/IconToolsLevelRounded.tsx b/src/IconToolsLevelRounded.tsx index 4d661fbd1..0f4247351 100644 --- a/src/IconToolsLevelRounded.tsx +++ b/src/IconToolsLevelRounded.tsx @@ -8,4 +8,4 @@ const IconToolsLevelRounded: React.FC = ({ ...props }) => ( ) -export { IconToolsLevelRounded as default } +export default IconToolsLevelRounded diff --git a/src/IconToolsLevelRoundedFilled.tsx b/src/IconToolsLevelRoundedFilled.tsx index 4435d276f..0d7fe4849 100644 --- a/src/IconToolsLevelRoundedFilled.tsx +++ b/src/IconToolsLevelRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconToolsLevelRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconToolsLevelRoundedFilled as default } +export default IconToolsLevelRoundedFilled diff --git a/src/IconToolsLevelSharp.tsx b/src/IconToolsLevelSharp.tsx index 8b7406fe9..c299af9d7 100644 --- a/src/IconToolsLevelSharp.tsx +++ b/src/IconToolsLevelSharp.tsx @@ -8,4 +8,4 @@ const IconToolsLevelSharp: React.FC = ({ ...props }) => ( ) -export { IconToolsLevelSharp as default } +export default IconToolsLevelSharp diff --git a/src/IconToolsLevelSharpFilled.tsx b/src/IconToolsLevelSharpFilled.tsx index 7ef7b33f5..fe15739b7 100644 --- a/src/IconToolsLevelSharpFilled.tsx +++ b/src/IconToolsLevelSharpFilled.tsx @@ -8,4 +8,4 @@ const IconToolsLevelSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconToolsLevelSharpFilled as default } +export default IconToolsLevelSharpFilled diff --git a/src/IconToolsPhillipsOutlined.tsx b/src/IconToolsPhillipsOutlined.tsx index 78f5d9cfc..3bb71b102 100644 --- a/src/IconToolsPhillipsOutlined.tsx +++ b/src/IconToolsPhillipsOutlined.tsx @@ -8,4 +8,4 @@ const IconToolsPhillipsOutlined: React.FC = ({ ...props }) => ( ) -export { IconToolsPhillipsOutlined as default } +export default IconToolsPhillipsOutlined diff --git a/src/IconToolsPhillipsOutlinedFilled.tsx b/src/IconToolsPhillipsOutlinedFilled.tsx index c789d2e50..9511d41ee 100644 --- a/src/IconToolsPhillipsOutlinedFilled.tsx +++ b/src/IconToolsPhillipsOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconToolsPhillipsOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconToolsPhillipsOutlinedFilled as default } +export default IconToolsPhillipsOutlinedFilled diff --git a/src/IconToolsPhillipsRounded.tsx b/src/IconToolsPhillipsRounded.tsx index dcdd8b80b..46c928252 100644 --- a/src/IconToolsPhillipsRounded.tsx +++ b/src/IconToolsPhillipsRounded.tsx @@ -8,4 +8,4 @@ const IconToolsPhillipsRounded: React.FC = ({ ...props }) => ( ) -export { IconToolsPhillipsRounded as default } +export default IconToolsPhillipsRounded diff --git a/src/IconToolsPhillipsRoundedFilled.tsx b/src/IconToolsPhillipsRoundedFilled.tsx index 23096713a..9959d1763 100644 --- a/src/IconToolsPhillipsRoundedFilled.tsx +++ b/src/IconToolsPhillipsRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconToolsPhillipsRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconToolsPhillipsRoundedFilled as default } +export default IconToolsPhillipsRoundedFilled diff --git a/src/IconToolsPhillipsSharp.tsx b/src/IconToolsPhillipsSharp.tsx index 91181c160..6d40fd495 100644 --- a/src/IconToolsPhillipsSharp.tsx +++ b/src/IconToolsPhillipsSharp.tsx @@ -8,4 +8,4 @@ const IconToolsPhillipsSharp: React.FC = ({ ...props }) => ( ) -export { IconToolsPhillipsSharp as default } +export default IconToolsPhillipsSharp diff --git a/src/IconToolsPhillipsSharpFilled.tsx b/src/IconToolsPhillipsSharpFilled.tsx index 576711cf3..336ccf493 100644 --- a/src/IconToolsPhillipsSharpFilled.tsx +++ b/src/IconToolsPhillipsSharpFilled.tsx @@ -8,4 +8,4 @@ const IconToolsPhillipsSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconToolsPhillipsSharpFilled as default } +export default IconToolsPhillipsSharpFilled diff --git a/src/IconToolsPliersWireStripperOutlined.tsx b/src/IconToolsPliersWireStripperOutlined.tsx index 9d6931fd3..52265c8d1 100644 --- a/src/IconToolsPliersWireStripperOutlined.tsx +++ b/src/IconToolsPliersWireStripperOutlined.tsx @@ -10,4 +10,4 @@ const IconToolsPliersWireStripperOutlined: React.FC = ({ ) -export { IconToolsPliersWireStripperOutlined as default } +export default IconToolsPliersWireStripperOutlined diff --git a/src/IconToolsPliersWireStripperOutlinedFilled.tsx b/src/IconToolsPliersWireStripperOutlinedFilled.tsx index 2c04ad1fa..6f0fded86 100644 --- a/src/IconToolsPliersWireStripperOutlinedFilled.tsx +++ b/src/IconToolsPliersWireStripperOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconToolsPliersWireStripperOutlinedFilled: React.FC = ({ ) -export { IconToolsPliersWireStripperOutlinedFilled as default } +export default IconToolsPliersWireStripperOutlinedFilled diff --git a/src/IconToolsPliersWireStripperRounded.tsx b/src/IconToolsPliersWireStripperRounded.tsx index 6026978db..67d64867e 100644 --- a/src/IconToolsPliersWireStripperRounded.tsx +++ b/src/IconToolsPliersWireStripperRounded.tsx @@ -10,4 +10,4 @@ const IconToolsPliersWireStripperRounded: React.FC = ({ ) -export { IconToolsPliersWireStripperRounded as default } +export default IconToolsPliersWireStripperRounded diff --git a/src/IconToolsPliersWireStripperRoundedFilled.tsx b/src/IconToolsPliersWireStripperRoundedFilled.tsx index 0c117c686..ca197966c 100644 --- a/src/IconToolsPliersWireStripperRoundedFilled.tsx +++ b/src/IconToolsPliersWireStripperRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconToolsPliersWireStripperRoundedFilled: React.FC = ({ ) -export { IconToolsPliersWireStripperRoundedFilled as default } +export default IconToolsPliersWireStripperRoundedFilled diff --git a/src/IconToolsPliersWireStripperSharp.tsx b/src/IconToolsPliersWireStripperSharp.tsx index d6428618f..42b01673c 100644 --- a/src/IconToolsPliersWireStripperSharp.tsx +++ b/src/IconToolsPliersWireStripperSharp.tsx @@ -10,4 +10,4 @@ const IconToolsPliersWireStripperSharp: React.FC = ({ ) -export { IconToolsPliersWireStripperSharp as default } +export default IconToolsPliersWireStripperSharp diff --git a/src/IconToolsPliersWireStripperSharpFilled.tsx b/src/IconToolsPliersWireStripperSharpFilled.tsx index 8ee395f8a..4b53f32f1 100644 --- a/src/IconToolsPliersWireStripperSharpFilled.tsx +++ b/src/IconToolsPliersWireStripperSharpFilled.tsx @@ -10,4 +10,4 @@ const IconToolsPliersWireStripperSharpFilled: React.FC = ({ ) -export { IconToolsPliersWireStripperSharpFilled as default } +export default IconToolsPliersWireStripperSharpFilled diff --git a/src/IconToolsPowerDrillOutlined.tsx b/src/IconToolsPowerDrillOutlined.tsx index c23fa3910..6edf33152 100644 --- a/src/IconToolsPowerDrillOutlined.tsx +++ b/src/IconToolsPowerDrillOutlined.tsx @@ -8,4 +8,4 @@ const IconToolsPowerDrillOutlined: React.FC = ({ ...props }) => ( ) -export { IconToolsPowerDrillOutlined as default } +export default IconToolsPowerDrillOutlined diff --git a/src/IconToolsPowerDrillOutlinedFilled.tsx b/src/IconToolsPowerDrillOutlinedFilled.tsx index 7ab0743a7..1e60a1674 100644 --- a/src/IconToolsPowerDrillOutlinedFilled.tsx +++ b/src/IconToolsPowerDrillOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconToolsPowerDrillOutlinedFilled: React.FC = ({ ) -export { IconToolsPowerDrillOutlinedFilled as default } +export default IconToolsPowerDrillOutlinedFilled diff --git a/src/IconToolsPowerDrillRounded.tsx b/src/IconToolsPowerDrillRounded.tsx index 49e2c731b..9bf62be10 100644 --- a/src/IconToolsPowerDrillRounded.tsx +++ b/src/IconToolsPowerDrillRounded.tsx @@ -8,4 +8,4 @@ const IconToolsPowerDrillRounded: React.FC = ({ ...props }) => ( ) -export { IconToolsPowerDrillRounded as default } +export default IconToolsPowerDrillRounded diff --git a/src/IconToolsPowerDrillRoundedFilled.tsx b/src/IconToolsPowerDrillRoundedFilled.tsx index d1a84c633..3039712f3 100644 --- a/src/IconToolsPowerDrillRoundedFilled.tsx +++ b/src/IconToolsPowerDrillRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconToolsPowerDrillRoundedFilled: React.FC = ({ ) -export { IconToolsPowerDrillRoundedFilled as default } +export default IconToolsPowerDrillRoundedFilled diff --git a/src/IconToolsPowerDrillSharp.tsx b/src/IconToolsPowerDrillSharp.tsx index 9f3b7864d..a23aa9e52 100644 --- a/src/IconToolsPowerDrillSharp.tsx +++ b/src/IconToolsPowerDrillSharp.tsx @@ -8,4 +8,4 @@ const IconToolsPowerDrillSharp: React.FC = ({ ...props }) => ( ) -export { IconToolsPowerDrillSharp as default } +export default IconToolsPowerDrillSharp diff --git a/src/IconToolsPowerDrillSharpFilled.tsx b/src/IconToolsPowerDrillSharpFilled.tsx index 5ef8e483f..5707c4661 100644 --- a/src/IconToolsPowerDrillSharpFilled.tsx +++ b/src/IconToolsPowerDrillSharpFilled.tsx @@ -8,4 +8,4 @@ const IconToolsPowerDrillSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconToolsPowerDrillSharpFilled as default } +export default IconToolsPowerDrillSharpFilled diff --git a/src/IconTooltipOutlined.tsx b/src/IconTooltipOutlined.tsx index eefa62c36..4ea205823 100644 --- a/src/IconTooltipOutlined.tsx +++ b/src/IconTooltipOutlined.tsx @@ -8,4 +8,4 @@ const IconTooltipOutlined: React.FC = ({ ...props }) => ( ) -export { IconTooltipOutlined as default } +export default IconTooltipOutlined diff --git a/src/IconTooltipOutlinedFilled.tsx b/src/IconTooltipOutlinedFilled.tsx index 9caf7aa5a..ede41a804 100644 --- a/src/IconTooltipOutlinedFilled.tsx +++ b/src/IconTooltipOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconTooltipOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconTooltipOutlinedFilled as default } +export default IconTooltipOutlinedFilled diff --git a/src/IconTooltipRounded.tsx b/src/IconTooltipRounded.tsx index 561632b82..91fe28dbd 100644 --- a/src/IconTooltipRounded.tsx +++ b/src/IconTooltipRounded.tsx @@ -8,4 +8,4 @@ const IconTooltipRounded: React.FC = ({ ...props }) => ( ) -export { IconTooltipRounded as default } +export default IconTooltipRounded diff --git a/src/IconTooltipRoundedFilled.tsx b/src/IconTooltipRoundedFilled.tsx index 276a080b3..83e47735c 100644 --- a/src/IconTooltipRoundedFilled.tsx +++ b/src/IconTooltipRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconTooltipRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconTooltipRoundedFilled as default } +export default IconTooltipRoundedFilled diff --git a/src/IconTooltipSharp.tsx b/src/IconTooltipSharp.tsx index 9248408c1..b75b116d4 100644 --- a/src/IconTooltipSharp.tsx +++ b/src/IconTooltipSharp.tsx @@ -8,4 +8,4 @@ const IconTooltipSharp: React.FC = ({ ...props }) => ( ) -export { IconTooltipSharp as default } +export default IconTooltipSharp diff --git a/src/IconTooltipSharpFilled.tsx b/src/IconTooltipSharpFilled.tsx index 1514a27cb..ac0abc6b1 100644 --- a/src/IconTooltipSharpFilled.tsx +++ b/src/IconTooltipSharpFilled.tsx @@ -8,4 +8,4 @@ const IconTooltipSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconTooltipSharpFilled as default } +export default IconTooltipSharpFilled diff --git a/src/IconTopPanelCloseOutlined.tsx b/src/IconTopPanelCloseOutlined.tsx index 067659d0d..25405eedb 100644 --- a/src/IconTopPanelCloseOutlined.tsx +++ b/src/IconTopPanelCloseOutlined.tsx @@ -8,4 +8,4 @@ const IconTopPanelCloseOutlined: React.FC = ({ ...props }) => ( ) -export { IconTopPanelCloseOutlined as default } +export default IconTopPanelCloseOutlined diff --git a/src/IconTopPanelCloseOutlinedFilled.tsx b/src/IconTopPanelCloseOutlinedFilled.tsx index 81c8316f7..94ffbab18 100644 --- a/src/IconTopPanelCloseOutlinedFilled.tsx +++ b/src/IconTopPanelCloseOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconTopPanelCloseOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconTopPanelCloseOutlinedFilled as default } +export default IconTopPanelCloseOutlinedFilled diff --git a/src/IconTopPanelCloseRounded.tsx b/src/IconTopPanelCloseRounded.tsx index 196a57234..c50f53bb8 100644 --- a/src/IconTopPanelCloseRounded.tsx +++ b/src/IconTopPanelCloseRounded.tsx @@ -8,4 +8,4 @@ const IconTopPanelCloseRounded: React.FC = ({ ...props }) => ( ) -export { IconTopPanelCloseRounded as default } +export default IconTopPanelCloseRounded diff --git a/src/IconTopPanelCloseRoundedFilled.tsx b/src/IconTopPanelCloseRoundedFilled.tsx index ea5675dad..feafa4153 100644 --- a/src/IconTopPanelCloseRoundedFilled.tsx +++ b/src/IconTopPanelCloseRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconTopPanelCloseRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconTopPanelCloseRoundedFilled as default } +export default IconTopPanelCloseRoundedFilled diff --git a/src/IconTopPanelCloseSharp.tsx b/src/IconTopPanelCloseSharp.tsx index b9a9fa132..88356870e 100644 --- a/src/IconTopPanelCloseSharp.tsx +++ b/src/IconTopPanelCloseSharp.tsx @@ -8,4 +8,4 @@ const IconTopPanelCloseSharp: React.FC = ({ ...props }) => ( ) -export { IconTopPanelCloseSharp as default } +export default IconTopPanelCloseSharp diff --git a/src/IconTopPanelCloseSharpFilled.tsx b/src/IconTopPanelCloseSharpFilled.tsx index a368c8242..99a6c7fc6 100644 --- a/src/IconTopPanelCloseSharpFilled.tsx +++ b/src/IconTopPanelCloseSharpFilled.tsx @@ -8,4 +8,4 @@ const IconTopPanelCloseSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconTopPanelCloseSharpFilled as default } +export default IconTopPanelCloseSharpFilled diff --git a/src/IconTopPanelOpenOutlined.tsx b/src/IconTopPanelOpenOutlined.tsx index a09376201..3c0b8f845 100644 --- a/src/IconTopPanelOpenOutlined.tsx +++ b/src/IconTopPanelOpenOutlined.tsx @@ -8,4 +8,4 @@ const IconTopPanelOpenOutlined: React.FC = ({ ...props }) => ( ) -export { IconTopPanelOpenOutlined as default } +export default IconTopPanelOpenOutlined diff --git a/src/IconTopPanelOpenOutlinedFilled.tsx b/src/IconTopPanelOpenOutlinedFilled.tsx index 25cfdcc1a..efba3e550 100644 --- a/src/IconTopPanelOpenOutlinedFilled.tsx +++ b/src/IconTopPanelOpenOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconTopPanelOpenOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconTopPanelOpenOutlinedFilled as default } +export default IconTopPanelOpenOutlinedFilled diff --git a/src/IconTopPanelOpenRounded.tsx b/src/IconTopPanelOpenRounded.tsx index 4927094ca..d2e5998a9 100644 --- a/src/IconTopPanelOpenRounded.tsx +++ b/src/IconTopPanelOpenRounded.tsx @@ -8,4 +8,4 @@ const IconTopPanelOpenRounded: React.FC = ({ ...props }) => ( ) -export { IconTopPanelOpenRounded as default } +export default IconTopPanelOpenRounded diff --git a/src/IconTopPanelOpenRoundedFilled.tsx b/src/IconTopPanelOpenRoundedFilled.tsx index ce589d7e6..d0cc53445 100644 --- a/src/IconTopPanelOpenRoundedFilled.tsx +++ b/src/IconTopPanelOpenRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconTopPanelOpenRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconTopPanelOpenRoundedFilled as default } +export default IconTopPanelOpenRoundedFilled diff --git a/src/IconTopPanelOpenSharp.tsx b/src/IconTopPanelOpenSharp.tsx index 9cc5fa4d6..2f16c42cb 100644 --- a/src/IconTopPanelOpenSharp.tsx +++ b/src/IconTopPanelOpenSharp.tsx @@ -8,4 +8,4 @@ const IconTopPanelOpenSharp: React.FC = ({ ...props }) => ( ) -export { IconTopPanelOpenSharp as default } +export default IconTopPanelOpenSharp diff --git a/src/IconTopPanelOpenSharpFilled.tsx b/src/IconTopPanelOpenSharpFilled.tsx index dffdaf873..2e21c6f81 100644 --- a/src/IconTopPanelOpenSharpFilled.tsx +++ b/src/IconTopPanelOpenSharpFilled.tsx @@ -8,4 +8,4 @@ const IconTopPanelOpenSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconTopPanelOpenSharpFilled as default } +export default IconTopPanelOpenSharpFilled diff --git a/src/IconTopicOutlined.tsx b/src/IconTopicOutlined.tsx index 3d09260be..af29eb7cc 100644 --- a/src/IconTopicOutlined.tsx +++ b/src/IconTopicOutlined.tsx @@ -8,4 +8,4 @@ const IconTopicOutlined: React.FC = ({ ...props }) => ( ) -export { IconTopicOutlined as default } +export default IconTopicOutlined diff --git a/src/IconTopicOutlinedFilled.tsx b/src/IconTopicOutlinedFilled.tsx index e3de218e3..6bd762122 100644 --- a/src/IconTopicOutlinedFilled.tsx +++ b/src/IconTopicOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconTopicOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconTopicOutlinedFilled as default } +export default IconTopicOutlinedFilled diff --git a/src/IconTopicRounded.tsx b/src/IconTopicRounded.tsx index 46aac5a98..458211b45 100644 --- a/src/IconTopicRounded.tsx +++ b/src/IconTopicRounded.tsx @@ -8,4 +8,4 @@ const IconTopicRounded: React.FC = ({ ...props }) => ( ) -export { IconTopicRounded as default } +export default IconTopicRounded diff --git a/src/IconTopicRoundedFilled.tsx b/src/IconTopicRoundedFilled.tsx index 6b1c7cfbc..9149f33e5 100644 --- a/src/IconTopicRoundedFilled.tsx +++ b/src/IconTopicRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconTopicRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconTopicRoundedFilled as default } +export default IconTopicRoundedFilled diff --git a/src/IconTopicSharp.tsx b/src/IconTopicSharp.tsx index 184363445..ed2cc7442 100644 --- a/src/IconTopicSharp.tsx +++ b/src/IconTopicSharp.tsx @@ -8,4 +8,4 @@ const IconTopicSharp: React.FC = ({ ...props }) => ( ) -export { IconTopicSharp as default } +export default IconTopicSharp diff --git a/src/IconTopicSharpFilled.tsx b/src/IconTopicSharpFilled.tsx index 1f86edd2d..10d092a28 100644 --- a/src/IconTopicSharpFilled.tsx +++ b/src/IconTopicSharpFilled.tsx @@ -8,4 +8,4 @@ const IconTopicSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconTopicSharpFilled as default } +export default IconTopicSharpFilled diff --git a/src/IconTornadoOutlined.tsx b/src/IconTornadoOutlined.tsx index 82a660f34..10fc06c0d 100644 --- a/src/IconTornadoOutlined.tsx +++ b/src/IconTornadoOutlined.tsx @@ -8,4 +8,4 @@ const IconTornadoOutlined: React.FC = ({ ...props }) => ( ) -export { IconTornadoOutlined as default } +export default IconTornadoOutlined diff --git a/src/IconTornadoOutlinedFilled.tsx b/src/IconTornadoOutlinedFilled.tsx index 6c9cf5ec3..3b294cc80 100644 --- a/src/IconTornadoOutlinedFilled.tsx +++ b/src/IconTornadoOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconTornadoOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconTornadoOutlinedFilled as default } +export default IconTornadoOutlinedFilled diff --git a/src/IconTornadoRounded.tsx b/src/IconTornadoRounded.tsx index 94a2ecf4e..df72e403d 100644 --- a/src/IconTornadoRounded.tsx +++ b/src/IconTornadoRounded.tsx @@ -8,4 +8,4 @@ const IconTornadoRounded: React.FC = ({ ...props }) => ( ) -export { IconTornadoRounded as default } +export default IconTornadoRounded diff --git a/src/IconTornadoRoundedFilled.tsx b/src/IconTornadoRoundedFilled.tsx index 6fd459ea4..1c9d08971 100644 --- a/src/IconTornadoRoundedFilled.tsx +++ b/src/IconTornadoRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconTornadoRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconTornadoRoundedFilled as default } +export default IconTornadoRoundedFilled diff --git a/src/IconTornadoSharp.tsx b/src/IconTornadoSharp.tsx index c8406b373..50469f236 100644 --- a/src/IconTornadoSharp.tsx +++ b/src/IconTornadoSharp.tsx @@ -8,4 +8,4 @@ const IconTornadoSharp: React.FC = ({ ...props }) => ( ) -export { IconTornadoSharp as default } +export default IconTornadoSharp diff --git a/src/IconTornadoSharpFilled.tsx b/src/IconTornadoSharpFilled.tsx index 27ae7de86..df7c8641a 100644 --- a/src/IconTornadoSharpFilled.tsx +++ b/src/IconTornadoSharpFilled.tsx @@ -8,4 +8,4 @@ const IconTornadoSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconTornadoSharpFilled as default } +export default IconTornadoSharpFilled diff --git a/src/IconTotalDissolvedSolidsOutlined.tsx b/src/IconTotalDissolvedSolidsOutlined.tsx index bba8c8388..68756b2ce 100644 --- a/src/IconTotalDissolvedSolidsOutlined.tsx +++ b/src/IconTotalDissolvedSolidsOutlined.tsx @@ -10,4 +10,4 @@ const IconTotalDissolvedSolidsOutlined: React.FC = ({ ) -export { IconTotalDissolvedSolidsOutlined as default } +export default IconTotalDissolvedSolidsOutlined diff --git a/src/IconTotalDissolvedSolidsOutlinedFilled.tsx b/src/IconTotalDissolvedSolidsOutlinedFilled.tsx index 2693c9f5a..7cbf0923e 100644 --- a/src/IconTotalDissolvedSolidsOutlinedFilled.tsx +++ b/src/IconTotalDissolvedSolidsOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconTotalDissolvedSolidsOutlinedFilled: React.FC = ({ ) -export { IconTotalDissolvedSolidsOutlinedFilled as default } +export default IconTotalDissolvedSolidsOutlinedFilled diff --git a/src/IconTotalDissolvedSolidsRounded.tsx b/src/IconTotalDissolvedSolidsRounded.tsx index 2f3f42892..04a299cfd 100644 --- a/src/IconTotalDissolvedSolidsRounded.tsx +++ b/src/IconTotalDissolvedSolidsRounded.tsx @@ -8,4 +8,4 @@ const IconTotalDissolvedSolidsRounded: React.FC = ({ ...props }) => ( ) -export { IconTotalDissolvedSolidsRounded as default } +export default IconTotalDissolvedSolidsRounded diff --git a/src/IconTotalDissolvedSolidsRoundedFilled.tsx b/src/IconTotalDissolvedSolidsRoundedFilled.tsx index 553a96890..a8ae00c0f 100644 --- a/src/IconTotalDissolvedSolidsRoundedFilled.tsx +++ b/src/IconTotalDissolvedSolidsRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconTotalDissolvedSolidsRoundedFilled: React.FC = ({ ) -export { IconTotalDissolvedSolidsRoundedFilled as default } +export default IconTotalDissolvedSolidsRoundedFilled diff --git a/src/IconTotalDissolvedSolidsSharp.tsx b/src/IconTotalDissolvedSolidsSharp.tsx index d2e5afc20..4c51e0913 100644 --- a/src/IconTotalDissolvedSolidsSharp.tsx +++ b/src/IconTotalDissolvedSolidsSharp.tsx @@ -8,4 +8,4 @@ const IconTotalDissolvedSolidsSharp: React.FC = ({ ...props }) => ( ) -export { IconTotalDissolvedSolidsSharp as default } +export default IconTotalDissolvedSolidsSharp diff --git a/src/IconTotalDissolvedSolidsSharpFilled.tsx b/src/IconTotalDissolvedSolidsSharpFilled.tsx index df78394a7..f1f803079 100644 --- a/src/IconTotalDissolvedSolidsSharpFilled.tsx +++ b/src/IconTotalDissolvedSolidsSharpFilled.tsx @@ -10,4 +10,4 @@ const IconTotalDissolvedSolidsSharpFilled: React.FC = ({ ) -export { IconTotalDissolvedSolidsSharpFilled as default } +export default IconTotalDissolvedSolidsSharpFilled diff --git a/src/IconTouchAppOutlined.tsx b/src/IconTouchAppOutlined.tsx index f83398157..296bca461 100644 --- a/src/IconTouchAppOutlined.tsx +++ b/src/IconTouchAppOutlined.tsx @@ -8,4 +8,4 @@ const IconTouchAppOutlined: React.FC = ({ ...props }) => ( ) -export { IconTouchAppOutlined as default } +export default IconTouchAppOutlined diff --git a/src/IconTouchAppOutlinedFilled.tsx b/src/IconTouchAppOutlinedFilled.tsx index 58d8009ab..412b0f56f 100644 --- a/src/IconTouchAppOutlinedFilled.tsx +++ b/src/IconTouchAppOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconTouchAppOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconTouchAppOutlinedFilled as default } +export default IconTouchAppOutlinedFilled diff --git a/src/IconTouchAppRounded.tsx b/src/IconTouchAppRounded.tsx index 96f0529a1..cd33c1702 100644 --- a/src/IconTouchAppRounded.tsx +++ b/src/IconTouchAppRounded.tsx @@ -8,4 +8,4 @@ const IconTouchAppRounded: React.FC = ({ ...props }) => ( ) -export { IconTouchAppRounded as default } +export default IconTouchAppRounded diff --git a/src/IconTouchAppRoundedFilled.tsx b/src/IconTouchAppRoundedFilled.tsx index 9ff729611..66abc2333 100644 --- a/src/IconTouchAppRoundedFilled.tsx +++ b/src/IconTouchAppRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconTouchAppRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconTouchAppRoundedFilled as default } +export default IconTouchAppRoundedFilled diff --git a/src/IconTouchAppSharp.tsx b/src/IconTouchAppSharp.tsx index 63206d7bb..25baf0b2a 100644 --- a/src/IconTouchAppSharp.tsx +++ b/src/IconTouchAppSharp.tsx @@ -8,4 +8,4 @@ const IconTouchAppSharp: React.FC = ({ ...props }) => ( ) -export { IconTouchAppSharp as default } +export default IconTouchAppSharp diff --git a/src/IconTouchAppSharpFilled.tsx b/src/IconTouchAppSharpFilled.tsx index 52d757d80..dc93a74ad 100644 --- a/src/IconTouchAppSharpFilled.tsx +++ b/src/IconTouchAppSharpFilled.tsx @@ -8,4 +8,4 @@ const IconTouchAppSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconTouchAppSharpFilled as default } +export default IconTouchAppSharpFilled diff --git a/src/IconTouchpadMouseOffOutlined.tsx b/src/IconTouchpadMouseOffOutlined.tsx index f6ac3c82b..e7551cc75 100644 --- a/src/IconTouchpadMouseOffOutlined.tsx +++ b/src/IconTouchpadMouseOffOutlined.tsx @@ -8,4 +8,4 @@ const IconTouchpadMouseOffOutlined: React.FC = ({ ...props }) => ( ) -export { IconTouchpadMouseOffOutlined as default } +export default IconTouchpadMouseOffOutlined diff --git a/src/IconTouchpadMouseOffOutlinedFilled.tsx b/src/IconTouchpadMouseOffOutlinedFilled.tsx index 133fe2010..1a74b7eb0 100644 --- a/src/IconTouchpadMouseOffOutlinedFilled.tsx +++ b/src/IconTouchpadMouseOffOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconTouchpadMouseOffOutlinedFilled: React.FC = ({ ) -export { IconTouchpadMouseOffOutlinedFilled as default } +export default IconTouchpadMouseOffOutlinedFilled diff --git a/src/IconTouchpadMouseOffRounded.tsx b/src/IconTouchpadMouseOffRounded.tsx index 6117277e5..10d7b85cc 100644 --- a/src/IconTouchpadMouseOffRounded.tsx +++ b/src/IconTouchpadMouseOffRounded.tsx @@ -8,4 +8,4 @@ const IconTouchpadMouseOffRounded: React.FC = ({ ...props }) => ( ) -export { IconTouchpadMouseOffRounded as default } +export default IconTouchpadMouseOffRounded diff --git a/src/IconTouchpadMouseOffRoundedFilled.tsx b/src/IconTouchpadMouseOffRoundedFilled.tsx index 87752b915..94ca9fb35 100644 --- a/src/IconTouchpadMouseOffRoundedFilled.tsx +++ b/src/IconTouchpadMouseOffRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconTouchpadMouseOffRoundedFilled: React.FC = ({ ) -export { IconTouchpadMouseOffRoundedFilled as default } +export default IconTouchpadMouseOffRoundedFilled diff --git a/src/IconTouchpadMouseOffSharp.tsx b/src/IconTouchpadMouseOffSharp.tsx index cf0038f9d..c68ef5189 100644 --- a/src/IconTouchpadMouseOffSharp.tsx +++ b/src/IconTouchpadMouseOffSharp.tsx @@ -8,4 +8,4 @@ const IconTouchpadMouseOffSharp: React.FC = ({ ...props }) => ( ) -export { IconTouchpadMouseOffSharp as default } +export default IconTouchpadMouseOffSharp diff --git a/src/IconTouchpadMouseOffSharpFilled.tsx b/src/IconTouchpadMouseOffSharpFilled.tsx index 500b7ef95..a8db0f1eb 100644 --- a/src/IconTouchpadMouseOffSharpFilled.tsx +++ b/src/IconTouchpadMouseOffSharpFilled.tsx @@ -8,4 +8,4 @@ const IconTouchpadMouseOffSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconTouchpadMouseOffSharpFilled as default } +export default IconTouchpadMouseOffSharpFilled diff --git a/src/IconTouchpadMouseOutlined.tsx b/src/IconTouchpadMouseOutlined.tsx index 390f03070..45b1ad6da 100644 --- a/src/IconTouchpadMouseOutlined.tsx +++ b/src/IconTouchpadMouseOutlined.tsx @@ -8,4 +8,4 @@ const IconTouchpadMouseOutlined: React.FC = ({ ...props }) => ( ) -export { IconTouchpadMouseOutlined as default } +export default IconTouchpadMouseOutlined diff --git a/src/IconTouchpadMouseOutlinedFilled.tsx b/src/IconTouchpadMouseOutlinedFilled.tsx index 4525e84fa..4119961ad 100644 --- a/src/IconTouchpadMouseOutlinedFilled.tsx +++ b/src/IconTouchpadMouseOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconTouchpadMouseOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconTouchpadMouseOutlinedFilled as default } +export default IconTouchpadMouseOutlinedFilled diff --git a/src/IconTouchpadMouseRounded.tsx b/src/IconTouchpadMouseRounded.tsx index 138eee0ba..3492dde88 100644 --- a/src/IconTouchpadMouseRounded.tsx +++ b/src/IconTouchpadMouseRounded.tsx @@ -8,4 +8,4 @@ const IconTouchpadMouseRounded: React.FC = ({ ...props }) => ( ) -export { IconTouchpadMouseRounded as default } +export default IconTouchpadMouseRounded diff --git a/src/IconTouchpadMouseRoundedFilled.tsx b/src/IconTouchpadMouseRoundedFilled.tsx index cbc107b46..df1f39fef 100644 --- a/src/IconTouchpadMouseRoundedFilled.tsx +++ b/src/IconTouchpadMouseRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconTouchpadMouseRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconTouchpadMouseRoundedFilled as default } +export default IconTouchpadMouseRoundedFilled diff --git a/src/IconTouchpadMouseSharp.tsx b/src/IconTouchpadMouseSharp.tsx index 6ac1290eb..31366a604 100644 --- a/src/IconTouchpadMouseSharp.tsx +++ b/src/IconTouchpadMouseSharp.tsx @@ -8,4 +8,4 @@ const IconTouchpadMouseSharp: React.FC = ({ ...props }) => ( ) -export { IconTouchpadMouseSharp as default } +export default IconTouchpadMouseSharp diff --git a/src/IconTouchpadMouseSharpFilled.tsx b/src/IconTouchpadMouseSharpFilled.tsx index 17be1a8f9..9104e343a 100644 --- a/src/IconTouchpadMouseSharpFilled.tsx +++ b/src/IconTouchpadMouseSharpFilled.tsx @@ -8,4 +8,4 @@ const IconTouchpadMouseSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconTouchpadMouseSharpFilled as default } +export default IconTouchpadMouseSharpFilled diff --git a/src/IconTourOutlined.tsx b/src/IconTourOutlined.tsx index a5fb141a7..b218f5eb5 100644 --- a/src/IconTourOutlined.tsx +++ b/src/IconTourOutlined.tsx @@ -8,4 +8,4 @@ const IconTourOutlined: React.FC = ({ ...props }) => ( ) -export { IconTourOutlined as default } +export default IconTourOutlined diff --git a/src/IconTourOutlinedFilled.tsx b/src/IconTourOutlinedFilled.tsx index 4542a2188..028c43706 100644 --- a/src/IconTourOutlinedFilled.tsx +++ b/src/IconTourOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconTourOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconTourOutlinedFilled as default } +export default IconTourOutlinedFilled diff --git a/src/IconTourRounded.tsx b/src/IconTourRounded.tsx index ced52b47d..586f0ef5a 100644 --- a/src/IconTourRounded.tsx +++ b/src/IconTourRounded.tsx @@ -8,4 +8,4 @@ const IconTourRounded: React.FC = ({ ...props }) => ( ) -export { IconTourRounded as default } +export default IconTourRounded diff --git a/src/IconTourRoundedFilled.tsx b/src/IconTourRoundedFilled.tsx index f377041d4..039ab264d 100644 --- a/src/IconTourRoundedFilled.tsx +++ b/src/IconTourRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconTourRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconTourRoundedFilled as default } +export default IconTourRoundedFilled diff --git a/src/IconTourSharp.tsx b/src/IconTourSharp.tsx index 9acbd6181..6f0948f1c 100644 --- a/src/IconTourSharp.tsx +++ b/src/IconTourSharp.tsx @@ -8,4 +8,4 @@ const IconTourSharp: React.FC = ({ ...props }) => ( ) -export { IconTourSharp as default } +export default IconTourSharp diff --git a/src/IconTourSharpFilled.tsx b/src/IconTourSharpFilled.tsx index 4e64da97a..4426069ac 100644 --- a/src/IconTourSharpFilled.tsx +++ b/src/IconTourSharpFilled.tsx @@ -8,4 +8,4 @@ const IconTourSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconTourSharpFilled as default } +export default IconTourSharpFilled diff --git a/src/IconToysAndGamesOutlined.tsx b/src/IconToysAndGamesOutlined.tsx index 3e085d674..c4c3cb4dd 100644 --- a/src/IconToysAndGamesOutlined.tsx +++ b/src/IconToysAndGamesOutlined.tsx @@ -8,4 +8,4 @@ const IconToysAndGamesOutlined: React.FC = ({ ...props }) => ( ) -export { IconToysAndGamesOutlined as default } +export default IconToysAndGamesOutlined diff --git a/src/IconToysAndGamesOutlinedFilled.tsx b/src/IconToysAndGamesOutlinedFilled.tsx index 337cf55c0..43c4c2c50 100644 --- a/src/IconToysAndGamesOutlinedFilled.tsx +++ b/src/IconToysAndGamesOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconToysAndGamesOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconToysAndGamesOutlinedFilled as default } +export default IconToysAndGamesOutlinedFilled diff --git a/src/IconToysAndGamesRounded.tsx b/src/IconToysAndGamesRounded.tsx index 26d387e58..1638f0afa 100644 --- a/src/IconToysAndGamesRounded.tsx +++ b/src/IconToysAndGamesRounded.tsx @@ -8,4 +8,4 @@ const IconToysAndGamesRounded: React.FC = ({ ...props }) => ( ) -export { IconToysAndGamesRounded as default } +export default IconToysAndGamesRounded diff --git a/src/IconToysAndGamesRoundedFilled.tsx b/src/IconToysAndGamesRoundedFilled.tsx index fc8b6edcb..b21839536 100644 --- a/src/IconToysAndGamesRoundedFilled.tsx +++ b/src/IconToysAndGamesRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconToysAndGamesRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconToysAndGamesRoundedFilled as default } +export default IconToysAndGamesRoundedFilled diff --git a/src/IconToysAndGamesSharp.tsx b/src/IconToysAndGamesSharp.tsx index caf1c7770..3d50d8814 100644 --- a/src/IconToysAndGamesSharp.tsx +++ b/src/IconToysAndGamesSharp.tsx @@ -8,4 +8,4 @@ const IconToysAndGamesSharp: React.FC = ({ ...props }) => ( ) -export { IconToysAndGamesSharp as default } +export default IconToysAndGamesSharp diff --git a/src/IconToysAndGamesSharpFilled.tsx b/src/IconToysAndGamesSharpFilled.tsx index 5a12698e2..b1e7f7c86 100644 --- a/src/IconToysAndGamesSharpFilled.tsx +++ b/src/IconToysAndGamesSharpFilled.tsx @@ -8,4 +8,4 @@ const IconToysAndGamesSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconToysAndGamesSharpFilled as default } +export default IconToysAndGamesSharpFilled diff --git a/src/IconToysFanOutlined.tsx b/src/IconToysFanOutlined.tsx index 420753ab8..5d15b4768 100644 --- a/src/IconToysFanOutlined.tsx +++ b/src/IconToysFanOutlined.tsx @@ -8,4 +8,4 @@ const IconToysFanOutlined: React.FC = ({ ...props }) => ( ) -export { IconToysFanOutlined as default } +export default IconToysFanOutlined diff --git a/src/IconToysFanOutlinedFilled.tsx b/src/IconToysFanOutlinedFilled.tsx index 6e768e408..f4e7e4a2f 100644 --- a/src/IconToysFanOutlinedFilled.tsx +++ b/src/IconToysFanOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconToysFanOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconToysFanOutlinedFilled as default } +export default IconToysFanOutlinedFilled diff --git a/src/IconToysFanRounded.tsx b/src/IconToysFanRounded.tsx index b980b2dc7..38b4fcf25 100644 --- a/src/IconToysFanRounded.tsx +++ b/src/IconToysFanRounded.tsx @@ -8,4 +8,4 @@ const IconToysFanRounded: React.FC = ({ ...props }) => ( ) -export { IconToysFanRounded as default } +export default IconToysFanRounded diff --git a/src/IconToysFanRoundedFilled.tsx b/src/IconToysFanRoundedFilled.tsx index 4f412611c..003d00c5c 100644 --- a/src/IconToysFanRoundedFilled.tsx +++ b/src/IconToysFanRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconToysFanRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconToysFanRoundedFilled as default } +export default IconToysFanRoundedFilled diff --git a/src/IconToysFanSharp.tsx b/src/IconToysFanSharp.tsx index 279418635..317d21f04 100644 --- a/src/IconToysFanSharp.tsx +++ b/src/IconToysFanSharp.tsx @@ -8,4 +8,4 @@ const IconToysFanSharp: React.FC = ({ ...props }) => ( ) -export { IconToysFanSharp as default } +export default IconToysFanSharp diff --git a/src/IconToysFanSharpFilled.tsx b/src/IconToysFanSharpFilled.tsx index 67936641f..136b9688d 100644 --- a/src/IconToysFanSharpFilled.tsx +++ b/src/IconToysFanSharpFilled.tsx @@ -8,4 +8,4 @@ const IconToysFanSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconToysFanSharpFilled as default } +export default IconToysFanSharpFilled diff --git a/src/IconToysOutlined.tsx b/src/IconToysOutlined.tsx index bb9dc3a0b..7f4aaa20b 100644 --- a/src/IconToysOutlined.tsx +++ b/src/IconToysOutlined.tsx @@ -8,4 +8,4 @@ const IconToysOutlined: React.FC = ({ ...props }) => ( ) -export { IconToysOutlined as default } +export default IconToysOutlined diff --git a/src/IconToysOutlinedFilled.tsx b/src/IconToysOutlinedFilled.tsx index 3d0fe7a80..de197291e 100644 --- a/src/IconToysOutlinedFilled.tsx +++ b/src/IconToysOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconToysOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconToysOutlinedFilled as default } +export default IconToysOutlinedFilled diff --git a/src/IconToysRounded.tsx b/src/IconToysRounded.tsx index 9b9e91108..7a9d3e1ad 100644 --- a/src/IconToysRounded.tsx +++ b/src/IconToysRounded.tsx @@ -8,4 +8,4 @@ const IconToysRounded: React.FC = ({ ...props }) => ( ) -export { IconToysRounded as default } +export default IconToysRounded diff --git a/src/IconToysRoundedFilled.tsx b/src/IconToysRoundedFilled.tsx index 85f28cc21..9c2e4ec27 100644 --- a/src/IconToysRoundedFilled.tsx +++ b/src/IconToysRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconToysRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconToysRoundedFilled as default } +export default IconToysRoundedFilled diff --git a/src/IconToysSharp.tsx b/src/IconToysSharp.tsx index 37c3b1659..6e4c66903 100644 --- a/src/IconToysSharp.tsx +++ b/src/IconToysSharp.tsx @@ -8,4 +8,4 @@ const IconToysSharp: React.FC = ({ ...props }) => ( ) -export { IconToysSharp as default } +export default IconToysSharp diff --git a/src/IconToysSharpFilled.tsx b/src/IconToysSharpFilled.tsx index 0cca016b5..b19d108c8 100644 --- a/src/IconToysSharpFilled.tsx +++ b/src/IconToysSharpFilled.tsx @@ -8,4 +8,4 @@ const IconToysSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconToysSharpFilled as default } +export default IconToysSharpFilled diff --git a/src/IconTrackChangesOutlined.tsx b/src/IconTrackChangesOutlined.tsx index 464139612..502e3310e 100644 --- a/src/IconTrackChangesOutlined.tsx +++ b/src/IconTrackChangesOutlined.tsx @@ -8,4 +8,4 @@ const IconTrackChangesOutlined: React.FC = ({ ...props }) => ( ) -export { IconTrackChangesOutlined as default } +export default IconTrackChangesOutlined diff --git a/src/IconTrackChangesOutlinedFilled.tsx b/src/IconTrackChangesOutlinedFilled.tsx index 3058b1d9d..4fff78bc1 100644 --- a/src/IconTrackChangesOutlinedFilled.tsx +++ b/src/IconTrackChangesOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconTrackChangesOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconTrackChangesOutlinedFilled as default } +export default IconTrackChangesOutlinedFilled diff --git a/src/IconTrackChangesRounded.tsx b/src/IconTrackChangesRounded.tsx index 4ea82bb67..d641bd067 100644 --- a/src/IconTrackChangesRounded.tsx +++ b/src/IconTrackChangesRounded.tsx @@ -8,4 +8,4 @@ const IconTrackChangesRounded: React.FC = ({ ...props }) => ( ) -export { IconTrackChangesRounded as default } +export default IconTrackChangesRounded diff --git a/src/IconTrackChangesRoundedFilled.tsx b/src/IconTrackChangesRoundedFilled.tsx index ee7f4b956..2f4a088a0 100644 --- a/src/IconTrackChangesRoundedFilled.tsx +++ b/src/IconTrackChangesRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconTrackChangesRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconTrackChangesRoundedFilled as default } +export default IconTrackChangesRoundedFilled diff --git a/src/IconTrackChangesSharp.tsx b/src/IconTrackChangesSharp.tsx index b33214116..293785307 100644 --- a/src/IconTrackChangesSharp.tsx +++ b/src/IconTrackChangesSharp.tsx @@ -8,4 +8,4 @@ const IconTrackChangesSharp: React.FC = ({ ...props }) => ( ) -export { IconTrackChangesSharp as default } +export default IconTrackChangesSharp diff --git a/src/IconTrackChangesSharpFilled.tsx b/src/IconTrackChangesSharpFilled.tsx index d8ee13157..16820a63d 100644 --- a/src/IconTrackChangesSharpFilled.tsx +++ b/src/IconTrackChangesSharpFilled.tsx @@ -8,4 +8,4 @@ const IconTrackChangesSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconTrackChangesSharpFilled as default } +export default IconTrackChangesSharpFilled diff --git a/src/IconTrackpadInput2Outlined.tsx b/src/IconTrackpadInput2Outlined.tsx index 4a28913ac..a0b880e72 100644 --- a/src/IconTrackpadInput2Outlined.tsx +++ b/src/IconTrackpadInput2Outlined.tsx @@ -8,4 +8,4 @@ const IconTrackpadInput2Outlined: React.FC = ({ ...props }) => ( ) -export { IconTrackpadInput2Outlined as default } +export default IconTrackpadInput2Outlined diff --git a/src/IconTrackpadInput2OutlinedFilled.tsx b/src/IconTrackpadInput2OutlinedFilled.tsx index 855c0ca05..512b6d109 100644 --- a/src/IconTrackpadInput2OutlinedFilled.tsx +++ b/src/IconTrackpadInput2OutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconTrackpadInput2OutlinedFilled: React.FC = ({ ) -export { IconTrackpadInput2OutlinedFilled as default } +export default IconTrackpadInput2OutlinedFilled diff --git a/src/IconTrackpadInput2Rounded.tsx b/src/IconTrackpadInput2Rounded.tsx index a14a071de..0c221fd33 100644 --- a/src/IconTrackpadInput2Rounded.tsx +++ b/src/IconTrackpadInput2Rounded.tsx @@ -8,4 +8,4 @@ const IconTrackpadInput2Rounded: React.FC = ({ ...props }) => ( ) -export { IconTrackpadInput2Rounded as default } +export default IconTrackpadInput2Rounded diff --git a/src/IconTrackpadInput2RoundedFilled.tsx b/src/IconTrackpadInput2RoundedFilled.tsx index 585ec61de..bd0b81bd7 100644 --- a/src/IconTrackpadInput2RoundedFilled.tsx +++ b/src/IconTrackpadInput2RoundedFilled.tsx @@ -8,4 +8,4 @@ const IconTrackpadInput2RoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconTrackpadInput2RoundedFilled as default } +export default IconTrackpadInput2RoundedFilled diff --git a/src/IconTrackpadInput2Sharp.tsx b/src/IconTrackpadInput2Sharp.tsx index f592c7250..629f26732 100644 --- a/src/IconTrackpadInput2Sharp.tsx +++ b/src/IconTrackpadInput2Sharp.tsx @@ -8,4 +8,4 @@ const IconTrackpadInput2Sharp: React.FC = ({ ...props }) => ( ) -export { IconTrackpadInput2Sharp as default } +export default IconTrackpadInput2Sharp diff --git a/src/IconTrackpadInput2SharpFilled.tsx b/src/IconTrackpadInput2SharpFilled.tsx index da5c316ad..3797d02fd 100644 --- a/src/IconTrackpadInput2SharpFilled.tsx +++ b/src/IconTrackpadInput2SharpFilled.tsx @@ -8,4 +8,4 @@ const IconTrackpadInput2SharpFilled: React.FC = ({ ...props }) => ( ) -export { IconTrackpadInput2SharpFilled as default } +export default IconTrackpadInput2SharpFilled diff --git a/src/IconTrackpadInput3Outlined.tsx b/src/IconTrackpadInput3Outlined.tsx index 741490ffd..e83541270 100644 --- a/src/IconTrackpadInput3Outlined.tsx +++ b/src/IconTrackpadInput3Outlined.tsx @@ -8,4 +8,4 @@ const IconTrackpadInput3Outlined: React.FC = ({ ...props }) => ( ) -export { IconTrackpadInput3Outlined as default } +export default IconTrackpadInput3Outlined diff --git a/src/IconTrackpadInput3OutlinedFilled.tsx b/src/IconTrackpadInput3OutlinedFilled.tsx index cd334db5e..bb63389d1 100644 --- a/src/IconTrackpadInput3OutlinedFilled.tsx +++ b/src/IconTrackpadInput3OutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconTrackpadInput3OutlinedFilled: React.FC = ({ ) -export { IconTrackpadInput3OutlinedFilled as default } +export default IconTrackpadInput3OutlinedFilled diff --git a/src/IconTrackpadInput3Rounded.tsx b/src/IconTrackpadInput3Rounded.tsx index 62b4fc079..05c0ecd2c 100644 --- a/src/IconTrackpadInput3Rounded.tsx +++ b/src/IconTrackpadInput3Rounded.tsx @@ -8,4 +8,4 @@ const IconTrackpadInput3Rounded: React.FC = ({ ...props }) => ( ) -export { IconTrackpadInput3Rounded as default } +export default IconTrackpadInput3Rounded diff --git a/src/IconTrackpadInput3RoundedFilled.tsx b/src/IconTrackpadInput3RoundedFilled.tsx index 642d98cc8..5aac86205 100644 --- a/src/IconTrackpadInput3RoundedFilled.tsx +++ b/src/IconTrackpadInput3RoundedFilled.tsx @@ -8,4 +8,4 @@ const IconTrackpadInput3RoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconTrackpadInput3RoundedFilled as default } +export default IconTrackpadInput3RoundedFilled diff --git a/src/IconTrackpadInput3Sharp.tsx b/src/IconTrackpadInput3Sharp.tsx index 0080e4852..9e6e21e02 100644 --- a/src/IconTrackpadInput3Sharp.tsx +++ b/src/IconTrackpadInput3Sharp.tsx @@ -8,4 +8,4 @@ const IconTrackpadInput3Sharp: React.FC = ({ ...props }) => ( ) -export { IconTrackpadInput3Sharp as default } +export default IconTrackpadInput3Sharp diff --git a/src/IconTrackpadInput3SharpFilled.tsx b/src/IconTrackpadInput3SharpFilled.tsx index b789442aa..a551b609f 100644 --- a/src/IconTrackpadInput3SharpFilled.tsx +++ b/src/IconTrackpadInput3SharpFilled.tsx @@ -8,4 +8,4 @@ const IconTrackpadInput3SharpFilled: React.FC = ({ ...props }) => ( ) -export { IconTrackpadInput3SharpFilled as default } +export default IconTrackpadInput3SharpFilled diff --git a/src/IconTrackpadInputOutlined.tsx b/src/IconTrackpadInputOutlined.tsx index 0119e9c87..d40b98133 100644 --- a/src/IconTrackpadInputOutlined.tsx +++ b/src/IconTrackpadInputOutlined.tsx @@ -8,4 +8,4 @@ const IconTrackpadInputOutlined: React.FC = ({ ...props }) => ( ) -export { IconTrackpadInputOutlined as default } +export default IconTrackpadInputOutlined diff --git a/src/IconTrackpadInputOutlinedFilled.tsx b/src/IconTrackpadInputOutlinedFilled.tsx index e10fb3a49..04e842210 100644 --- a/src/IconTrackpadInputOutlinedFilled.tsx +++ b/src/IconTrackpadInputOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconTrackpadInputOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconTrackpadInputOutlinedFilled as default } +export default IconTrackpadInputOutlinedFilled diff --git a/src/IconTrackpadInputRounded.tsx b/src/IconTrackpadInputRounded.tsx index e3c93ea6f..2b84a59ba 100644 --- a/src/IconTrackpadInputRounded.tsx +++ b/src/IconTrackpadInputRounded.tsx @@ -8,4 +8,4 @@ const IconTrackpadInputRounded: React.FC = ({ ...props }) => ( ) -export { IconTrackpadInputRounded as default } +export default IconTrackpadInputRounded diff --git a/src/IconTrackpadInputRoundedFilled.tsx b/src/IconTrackpadInputRoundedFilled.tsx index fe1e10a84..a9f75d08a 100644 --- a/src/IconTrackpadInputRoundedFilled.tsx +++ b/src/IconTrackpadInputRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconTrackpadInputRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconTrackpadInputRoundedFilled as default } +export default IconTrackpadInputRoundedFilled diff --git a/src/IconTrackpadInputSharp.tsx b/src/IconTrackpadInputSharp.tsx index c061427d3..9d9d8b154 100644 --- a/src/IconTrackpadInputSharp.tsx +++ b/src/IconTrackpadInputSharp.tsx @@ -8,4 +8,4 @@ const IconTrackpadInputSharp: React.FC = ({ ...props }) => ( ) -export { IconTrackpadInputSharp as default } +export default IconTrackpadInputSharp diff --git a/src/IconTrackpadInputSharpFilled.tsx b/src/IconTrackpadInputSharpFilled.tsx index 99202a5f7..b3e9a9341 100644 --- a/src/IconTrackpadInputSharpFilled.tsx +++ b/src/IconTrackpadInputSharpFilled.tsx @@ -8,4 +8,4 @@ const IconTrackpadInputSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconTrackpadInputSharpFilled as default } +export default IconTrackpadInputSharpFilled diff --git a/src/IconTrafficJamOutlined.tsx b/src/IconTrafficJamOutlined.tsx index fa688ab6d..df296beb5 100644 --- a/src/IconTrafficJamOutlined.tsx +++ b/src/IconTrafficJamOutlined.tsx @@ -8,4 +8,4 @@ const IconTrafficJamOutlined: React.FC = ({ ...props }) => ( ) -export { IconTrafficJamOutlined as default } +export default IconTrafficJamOutlined diff --git a/src/IconTrafficJamOutlinedFilled.tsx b/src/IconTrafficJamOutlinedFilled.tsx index f2cedac9d..a0325f47f 100644 --- a/src/IconTrafficJamOutlinedFilled.tsx +++ b/src/IconTrafficJamOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconTrafficJamOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconTrafficJamOutlinedFilled as default } +export default IconTrafficJamOutlinedFilled diff --git a/src/IconTrafficJamRounded.tsx b/src/IconTrafficJamRounded.tsx index 70d3dfda2..deaadb3a0 100644 --- a/src/IconTrafficJamRounded.tsx +++ b/src/IconTrafficJamRounded.tsx @@ -8,4 +8,4 @@ const IconTrafficJamRounded: React.FC = ({ ...props }) => ( ) -export { IconTrafficJamRounded as default } +export default IconTrafficJamRounded diff --git a/src/IconTrafficJamRoundedFilled.tsx b/src/IconTrafficJamRoundedFilled.tsx index 557933f5d..20fb97042 100644 --- a/src/IconTrafficJamRoundedFilled.tsx +++ b/src/IconTrafficJamRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconTrafficJamRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconTrafficJamRoundedFilled as default } +export default IconTrafficJamRoundedFilled diff --git a/src/IconTrafficJamSharp.tsx b/src/IconTrafficJamSharp.tsx index c95882069..83c95dd1d 100644 --- a/src/IconTrafficJamSharp.tsx +++ b/src/IconTrafficJamSharp.tsx @@ -8,4 +8,4 @@ const IconTrafficJamSharp: React.FC = ({ ...props }) => ( ) -export { IconTrafficJamSharp as default } +export default IconTrafficJamSharp diff --git a/src/IconTrafficJamSharpFilled.tsx b/src/IconTrafficJamSharpFilled.tsx index 90b9b7fdc..c29946c71 100644 --- a/src/IconTrafficJamSharpFilled.tsx +++ b/src/IconTrafficJamSharpFilled.tsx @@ -8,4 +8,4 @@ const IconTrafficJamSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconTrafficJamSharpFilled as default } +export default IconTrafficJamSharpFilled diff --git a/src/IconTrafficOutlined.tsx b/src/IconTrafficOutlined.tsx index 4e6ab75c4..b7f2d2af6 100644 --- a/src/IconTrafficOutlined.tsx +++ b/src/IconTrafficOutlined.tsx @@ -8,4 +8,4 @@ const IconTrafficOutlined: React.FC = ({ ...props }) => ( ) -export { IconTrafficOutlined as default } +export default IconTrafficOutlined diff --git a/src/IconTrafficOutlinedFilled.tsx b/src/IconTrafficOutlinedFilled.tsx index c05d2759e..bb2c84fb5 100644 --- a/src/IconTrafficOutlinedFilled.tsx +++ b/src/IconTrafficOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconTrafficOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconTrafficOutlinedFilled as default } +export default IconTrafficOutlinedFilled diff --git a/src/IconTrafficRounded.tsx b/src/IconTrafficRounded.tsx index fe9e4e0cf..547a77ff0 100644 --- a/src/IconTrafficRounded.tsx +++ b/src/IconTrafficRounded.tsx @@ -8,4 +8,4 @@ const IconTrafficRounded: React.FC = ({ ...props }) => ( ) -export { IconTrafficRounded as default } +export default IconTrafficRounded diff --git a/src/IconTrafficRoundedFilled.tsx b/src/IconTrafficRoundedFilled.tsx index b061b600d..d78392576 100644 --- a/src/IconTrafficRoundedFilled.tsx +++ b/src/IconTrafficRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconTrafficRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconTrafficRoundedFilled as default } +export default IconTrafficRoundedFilled diff --git a/src/IconTrafficSharp.tsx b/src/IconTrafficSharp.tsx index 413935dd1..6426b9c9e 100644 --- a/src/IconTrafficSharp.tsx +++ b/src/IconTrafficSharp.tsx @@ -8,4 +8,4 @@ const IconTrafficSharp: React.FC = ({ ...props }) => ( ) -export { IconTrafficSharp as default } +export default IconTrafficSharp diff --git a/src/IconTrafficSharpFilled.tsx b/src/IconTrafficSharpFilled.tsx index 256c50d93..889738a19 100644 --- a/src/IconTrafficSharpFilled.tsx +++ b/src/IconTrafficSharpFilled.tsx @@ -8,4 +8,4 @@ const IconTrafficSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconTrafficSharpFilled as default } +export default IconTrafficSharpFilled diff --git a/src/IconTrailLengthMediumOutlined.tsx b/src/IconTrailLengthMediumOutlined.tsx index 5d3e6dddb..1f4066e27 100644 --- a/src/IconTrailLengthMediumOutlined.tsx +++ b/src/IconTrailLengthMediumOutlined.tsx @@ -8,4 +8,4 @@ const IconTrailLengthMediumOutlined: React.FC = ({ ...props }) => ( ) -export { IconTrailLengthMediumOutlined as default } +export default IconTrailLengthMediumOutlined diff --git a/src/IconTrailLengthMediumOutlinedFilled.tsx b/src/IconTrailLengthMediumOutlinedFilled.tsx index 4e0cdbacd..84c0e8a62 100644 --- a/src/IconTrailLengthMediumOutlinedFilled.tsx +++ b/src/IconTrailLengthMediumOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconTrailLengthMediumOutlinedFilled: React.FC = ({ ) -export { IconTrailLengthMediumOutlinedFilled as default } +export default IconTrailLengthMediumOutlinedFilled diff --git a/src/IconTrailLengthMediumRounded.tsx b/src/IconTrailLengthMediumRounded.tsx index cfcd6af92..67df6a8bf 100644 --- a/src/IconTrailLengthMediumRounded.tsx +++ b/src/IconTrailLengthMediumRounded.tsx @@ -8,4 +8,4 @@ const IconTrailLengthMediumRounded: React.FC = ({ ...props }) => ( ) -export { IconTrailLengthMediumRounded as default } +export default IconTrailLengthMediumRounded diff --git a/src/IconTrailLengthMediumRoundedFilled.tsx b/src/IconTrailLengthMediumRoundedFilled.tsx index 630ea75aa..a6e59770b 100644 --- a/src/IconTrailLengthMediumRoundedFilled.tsx +++ b/src/IconTrailLengthMediumRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconTrailLengthMediumRoundedFilled: React.FC = ({ ) -export { IconTrailLengthMediumRoundedFilled as default } +export default IconTrailLengthMediumRoundedFilled diff --git a/src/IconTrailLengthMediumSharp.tsx b/src/IconTrailLengthMediumSharp.tsx index e93dd4018..426fd07cf 100644 --- a/src/IconTrailLengthMediumSharp.tsx +++ b/src/IconTrailLengthMediumSharp.tsx @@ -8,4 +8,4 @@ const IconTrailLengthMediumSharp: React.FC = ({ ...props }) => ( ) -export { IconTrailLengthMediumSharp as default } +export default IconTrailLengthMediumSharp diff --git a/src/IconTrailLengthMediumSharpFilled.tsx b/src/IconTrailLengthMediumSharpFilled.tsx index bcc2e9439..57954ab30 100644 --- a/src/IconTrailLengthMediumSharpFilled.tsx +++ b/src/IconTrailLengthMediumSharpFilled.tsx @@ -10,4 +10,4 @@ const IconTrailLengthMediumSharpFilled: React.FC = ({ ) -export { IconTrailLengthMediumSharpFilled as default } +export default IconTrailLengthMediumSharpFilled diff --git a/src/IconTrailLengthOutlined.tsx b/src/IconTrailLengthOutlined.tsx index 6f87aa8c5..4a42abdaf 100644 --- a/src/IconTrailLengthOutlined.tsx +++ b/src/IconTrailLengthOutlined.tsx @@ -8,4 +8,4 @@ const IconTrailLengthOutlined: React.FC = ({ ...props }) => ( ) -export { IconTrailLengthOutlined as default } +export default IconTrailLengthOutlined diff --git a/src/IconTrailLengthOutlinedFilled.tsx b/src/IconTrailLengthOutlinedFilled.tsx index fb42bed53..ce5608317 100644 --- a/src/IconTrailLengthOutlinedFilled.tsx +++ b/src/IconTrailLengthOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconTrailLengthOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconTrailLengthOutlinedFilled as default } +export default IconTrailLengthOutlinedFilled diff --git a/src/IconTrailLengthRounded.tsx b/src/IconTrailLengthRounded.tsx index b59f4f4ec..e570b2c59 100644 --- a/src/IconTrailLengthRounded.tsx +++ b/src/IconTrailLengthRounded.tsx @@ -8,4 +8,4 @@ const IconTrailLengthRounded: React.FC = ({ ...props }) => ( ) -export { IconTrailLengthRounded as default } +export default IconTrailLengthRounded diff --git a/src/IconTrailLengthRoundedFilled.tsx b/src/IconTrailLengthRoundedFilled.tsx index 0fb610e1b..5cd2b5a09 100644 --- a/src/IconTrailLengthRoundedFilled.tsx +++ b/src/IconTrailLengthRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconTrailLengthRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconTrailLengthRoundedFilled as default } +export default IconTrailLengthRoundedFilled diff --git a/src/IconTrailLengthSharp.tsx b/src/IconTrailLengthSharp.tsx index deda51245..e14f0c7a0 100644 --- a/src/IconTrailLengthSharp.tsx +++ b/src/IconTrailLengthSharp.tsx @@ -8,4 +8,4 @@ const IconTrailLengthSharp: React.FC = ({ ...props }) => ( ) -export { IconTrailLengthSharp as default } +export default IconTrailLengthSharp diff --git a/src/IconTrailLengthSharpFilled.tsx b/src/IconTrailLengthSharpFilled.tsx index b445023a0..5da32b5c5 100644 --- a/src/IconTrailLengthSharpFilled.tsx +++ b/src/IconTrailLengthSharpFilled.tsx @@ -8,4 +8,4 @@ const IconTrailLengthSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconTrailLengthSharpFilled as default } +export default IconTrailLengthSharpFilled diff --git a/src/IconTrailLengthShortOutlined.tsx b/src/IconTrailLengthShortOutlined.tsx index 45a67bb76..67b2fae8c 100644 --- a/src/IconTrailLengthShortOutlined.tsx +++ b/src/IconTrailLengthShortOutlined.tsx @@ -8,4 +8,4 @@ const IconTrailLengthShortOutlined: React.FC = ({ ...props }) => ( ) -export { IconTrailLengthShortOutlined as default } +export default IconTrailLengthShortOutlined diff --git a/src/IconTrailLengthShortOutlinedFilled.tsx b/src/IconTrailLengthShortOutlinedFilled.tsx index 5e9f17bc8..c0dd55706 100644 --- a/src/IconTrailLengthShortOutlinedFilled.tsx +++ b/src/IconTrailLengthShortOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconTrailLengthShortOutlinedFilled: React.FC = ({ ) -export { IconTrailLengthShortOutlinedFilled as default } +export default IconTrailLengthShortOutlinedFilled diff --git a/src/IconTrailLengthShortRounded.tsx b/src/IconTrailLengthShortRounded.tsx index f6a4f0e7c..6fe966b85 100644 --- a/src/IconTrailLengthShortRounded.tsx +++ b/src/IconTrailLengthShortRounded.tsx @@ -8,4 +8,4 @@ const IconTrailLengthShortRounded: React.FC = ({ ...props }) => ( ) -export { IconTrailLengthShortRounded as default } +export default IconTrailLengthShortRounded diff --git a/src/IconTrailLengthShortRoundedFilled.tsx b/src/IconTrailLengthShortRoundedFilled.tsx index b14499eb5..58a6beea5 100644 --- a/src/IconTrailLengthShortRoundedFilled.tsx +++ b/src/IconTrailLengthShortRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconTrailLengthShortRoundedFilled: React.FC = ({ ) -export { IconTrailLengthShortRoundedFilled as default } +export default IconTrailLengthShortRoundedFilled diff --git a/src/IconTrailLengthShortSharp.tsx b/src/IconTrailLengthShortSharp.tsx index b5bbd5840..b05ec3785 100644 --- a/src/IconTrailLengthShortSharp.tsx +++ b/src/IconTrailLengthShortSharp.tsx @@ -8,4 +8,4 @@ const IconTrailLengthShortSharp: React.FC = ({ ...props }) => ( ) -export { IconTrailLengthShortSharp as default } +export default IconTrailLengthShortSharp diff --git a/src/IconTrailLengthShortSharpFilled.tsx b/src/IconTrailLengthShortSharpFilled.tsx index 46262fc30..e037f7cad 100644 --- a/src/IconTrailLengthShortSharpFilled.tsx +++ b/src/IconTrailLengthShortSharpFilled.tsx @@ -8,4 +8,4 @@ const IconTrailLengthShortSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconTrailLengthShortSharpFilled as default } +export default IconTrailLengthShortSharpFilled diff --git a/src/IconTrainOutlined.tsx b/src/IconTrainOutlined.tsx index 3c1f0dbfa..c47dd01e4 100644 --- a/src/IconTrainOutlined.tsx +++ b/src/IconTrainOutlined.tsx @@ -8,4 +8,4 @@ const IconTrainOutlined: React.FC = ({ ...props }) => ( ) -export { IconTrainOutlined as default } +export default IconTrainOutlined diff --git a/src/IconTrainOutlinedFilled.tsx b/src/IconTrainOutlinedFilled.tsx index 3f0ed5599..85e8c6e10 100644 --- a/src/IconTrainOutlinedFilled.tsx +++ b/src/IconTrainOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconTrainOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconTrainOutlinedFilled as default } +export default IconTrainOutlinedFilled diff --git a/src/IconTrainRounded.tsx b/src/IconTrainRounded.tsx index afa68ea93..9bf9740fd 100644 --- a/src/IconTrainRounded.tsx +++ b/src/IconTrainRounded.tsx @@ -8,4 +8,4 @@ const IconTrainRounded: React.FC = ({ ...props }) => ( ) -export { IconTrainRounded as default } +export default IconTrainRounded diff --git a/src/IconTrainRoundedFilled.tsx b/src/IconTrainRoundedFilled.tsx index 6a3fdb18e..a9a293cf7 100644 --- a/src/IconTrainRoundedFilled.tsx +++ b/src/IconTrainRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconTrainRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconTrainRoundedFilled as default } +export default IconTrainRoundedFilled diff --git a/src/IconTrainSharp.tsx b/src/IconTrainSharp.tsx index 163b1724a..46674b52d 100644 --- a/src/IconTrainSharp.tsx +++ b/src/IconTrainSharp.tsx @@ -8,4 +8,4 @@ const IconTrainSharp: React.FC = ({ ...props }) => ( ) -export { IconTrainSharp as default } +export default IconTrainSharp diff --git a/src/IconTrainSharpFilled.tsx b/src/IconTrainSharpFilled.tsx index 4d6f817d1..67312614e 100644 --- a/src/IconTrainSharpFilled.tsx +++ b/src/IconTrainSharpFilled.tsx @@ -8,4 +8,4 @@ const IconTrainSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconTrainSharpFilled as default } +export default IconTrainSharpFilled diff --git a/src/IconTramOutlined.tsx b/src/IconTramOutlined.tsx index 235e961a9..701792bd5 100644 --- a/src/IconTramOutlined.tsx +++ b/src/IconTramOutlined.tsx @@ -8,4 +8,4 @@ const IconTramOutlined: React.FC = ({ ...props }) => ( ) -export { IconTramOutlined as default } +export default IconTramOutlined diff --git a/src/IconTramOutlinedFilled.tsx b/src/IconTramOutlinedFilled.tsx index 0f90c1c71..312cd0a16 100644 --- a/src/IconTramOutlinedFilled.tsx +++ b/src/IconTramOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconTramOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconTramOutlinedFilled as default } +export default IconTramOutlinedFilled diff --git a/src/IconTramRounded.tsx b/src/IconTramRounded.tsx index 87a237b5c..c0f7f76d9 100644 --- a/src/IconTramRounded.tsx +++ b/src/IconTramRounded.tsx @@ -8,4 +8,4 @@ const IconTramRounded: React.FC = ({ ...props }) => ( ) -export { IconTramRounded as default } +export default IconTramRounded diff --git a/src/IconTramRoundedFilled.tsx b/src/IconTramRoundedFilled.tsx index 2cb7cc76e..f2750c5c5 100644 --- a/src/IconTramRoundedFilled.tsx +++ b/src/IconTramRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconTramRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconTramRoundedFilled as default } +export default IconTramRoundedFilled diff --git a/src/IconTramSharp.tsx b/src/IconTramSharp.tsx index 7229ec85e..6f3903a14 100644 --- a/src/IconTramSharp.tsx +++ b/src/IconTramSharp.tsx @@ -8,4 +8,4 @@ const IconTramSharp: React.FC = ({ ...props }) => ( ) -export { IconTramSharp as default } +export default IconTramSharp diff --git a/src/IconTramSharpFilled.tsx b/src/IconTramSharpFilled.tsx index 9c28a0f93..cd6d1aaa3 100644 --- a/src/IconTramSharpFilled.tsx +++ b/src/IconTramSharpFilled.tsx @@ -8,4 +8,4 @@ const IconTramSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconTramSharpFilled as default } +export default IconTramSharpFilled diff --git a/src/IconTranscribeOutlined.tsx b/src/IconTranscribeOutlined.tsx index b1f781b90..e765540cc 100644 --- a/src/IconTranscribeOutlined.tsx +++ b/src/IconTranscribeOutlined.tsx @@ -8,4 +8,4 @@ const IconTranscribeOutlined: React.FC = ({ ...props }) => ( ) -export { IconTranscribeOutlined as default } +export default IconTranscribeOutlined diff --git a/src/IconTranscribeOutlinedFilled.tsx b/src/IconTranscribeOutlinedFilled.tsx index 64c8b1596..29ec4ca0e 100644 --- a/src/IconTranscribeOutlinedFilled.tsx +++ b/src/IconTranscribeOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconTranscribeOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconTranscribeOutlinedFilled as default } +export default IconTranscribeOutlinedFilled diff --git a/src/IconTranscribeRounded.tsx b/src/IconTranscribeRounded.tsx index 217ca1c1a..7248b7d8a 100644 --- a/src/IconTranscribeRounded.tsx +++ b/src/IconTranscribeRounded.tsx @@ -8,4 +8,4 @@ const IconTranscribeRounded: React.FC = ({ ...props }) => ( ) -export { IconTranscribeRounded as default } +export default IconTranscribeRounded diff --git a/src/IconTranscribeRoundedFilled.tsx b/src/IconTranscribeRoundedFilled.tsx index e8a1bb757..eda0a1166 100644 --- a/src/IconTranscribeRoundedFilled.tsx +++ b/src/IconTranscribeRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconTranscribeRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconTranscribeRoundedFilled as default } +export default IconTranscribeRoundedFilled diff --git a/src/IconTranscribeSharp.tsx b/src/IconTranscribeSharp.tsx index 77092e72b..c2c4cc999 100644 --- a/src/IconTranscribeSharp.tsx +++ b/src/IconTranscribeSharp.tsx @@ -8,4 +8,4 @@ const IconTranscribeSharp: React.FC = ({ ...props }) => ( ) -export { IconTranscribeSharp as default } +export default IconTranscribeSharp diff --git a/src/IconTranscribeSharpFilled.tsx b/src/IconTranscribeSharpFilled.tsx index 12b3f01ce..67aaab426 100644 --- a/src/IconTranscribeSharpFilled.tsx +++ b/src/IconTranscribeSharpFilled.tsx @@ -8,4 +8,4 @@ const IconTranscribeSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconTranscribeSharpFilled as default } +export default IconTranscribeSharpFilled diff --git a/src/IconTransferWithinAStationOutlined.tsx b/src/IconTransferWithinAStationOutlined.tsx index f13b7f851..c362aeb21 100644 --- a/src/IconTransferWithinAStationOutlined.tsx +++ b/src/IconTransferWithinAStationOutlined.tsx @@ -10,4 +10,4 @@ const IconTransferWithinAStationOutlined: React.FC = ({ ) -export { IconTransferWithinAStationOutlined as default } +export default IconTransferWithinAStationOutlined diff --git a/src/IconTransferWithinAStationOutlinedFilled.tsx b/src/IconTransferWithinAStationOutlinedFilled.tsx index dcf62ce73..03252306b 100644 --- a/src/IconTransferWithinAStationOutlinedFilled.tsx +++ b/src/IconTransferWithinAStationOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconTransferWithinAStationOutlinedFilled: React.FC = ({ ) -export { IconTransferWithinAStationOutlinedFilled as default } +export default IconTransferWithinAStationOutlinedFilled diff --git a/src/IconTransferWithinAStationRounded.tsx b/src/IconTransferWithinAStationRounded.tsx index d64aec257..9696b421a 100644 --- a/src/IconTransferWithinAStationRounded.tsx +++ b/src/IconTransferWithinAStationRounded.tsx @@ -10,4 +10,4 @@ const IconTransferWithinAStationRounded: React.FC = ({ ) -export { IconTransferWithinAStationRounded as default } +export default IconTransferWithinAStationRounded diff --git a/src/IconTransferWithinAStationRoundedFilled.tsx b/src/IconTransferWithinAStationRoundedFilled.tsx index 4795cb638..82dd4b967 100644 --- a/src/IconTransferWithinAStationRoundedFilled.tsx +++ b/src/IconTransferWithinAStationRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconTransferWithinAStationRoundedFilled: React.FC = ({ ) -export { IconTransferWithinAStationRoundedFilled as default } +export default IconTransferWithinAStationRoundedFilled diff --git a/src/IconTransferWithinAStationSharp.tsx b/src/IconTransferWithinAStationSharp.tsx index ad4dbe2f0..dac82ee06 100644 --- a/src/IconTransferWithinAStationSharp.tsx +++ b/src/IconTransferWithinAStationSharp.tsx @@ -8,4 +8,4 @@ const IconTransferWithinAStationSharp: React.FC = ({ ...props }) => ( ) -export { IconTransferWithinAStationSharp as default } +export default IconTransferWithinAStationSharp diff --git a/src/IconTransferWithinAStationSharpFilled.tsx b/src/IconTransferWithinAStationSharpFilled.tsx index c2a822a75..8fc066cb5 100644 --- a/src/IconTransferWithinAStationSharpFilled.tsx +++ b/src/IconTransferWithinAStationSharpFilled.tsx @@ -10,4 +10,4 @@ const IconTransferWithinAStationSharpFilled: React.FC = ({ ) -export { IconTransferWithinAStationSharpFilled as default } +export default IconTransferWithinAStationSharpFilled diff --git a/src/IconTransformOutlined.tsx b/src/IconTransformOutlined.tsx index 4a4285f12..8097a2b69 100644 --- a/src/IconTransformOutlined.tsx +++ b/src/IconTransformOutlined.tsx @@ -8,4 +8,4 @@ const IconTransformOutlined: React.FC = ({ ...props }) => ( ) -export { IconTransformOutlined as default } +export default IconTransformOutlined diff --git a/src/IconTransformOutlinedFilled.tsx b/src/IconTransformOutlinedFilled.tsx index 14a63634a..0e9366d65 100644 --- a/src/IconTransformOutlinedFilled.tsx +++ b/src/IconTransformOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconTransformOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconTransformOutlinedFilled as default } +export default IconTransformOutlinedFilled diff --git a/src/IconTransformRounded.tsx b/src/IconTransformRounded.tsx index 3a8a0d3b3..cb3998a98 100644 --- a/src/IconTransformRounded.tsx +++ b/src/IconTransformRounded.tsx @@ -8,4 +8,4 @@ const IconTransformRounded: React.FC = ({ ...props }) => ( ) -export { IconTransformRounded as default } +export default IconTransformRounded diff --git a/src/IconTransformRoundedFilled.tsx b/src/IconTransformRoundedFilled.tsx index 147262583..e7b8c0d19 100644 --- a/src/IconTransformRoundedFilled.tsx +++ b/src/IconTransformRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconTransformRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconTransformRoundedFilled as default } +export default IconTransformRoundedFilled diff --git a/src/IconTransformSharp.tsx b/src/IconTransformSharp.tsx index b72dc600a..ad7e1742b 100644 --- a/src/IconTransformSharp.tsx +++ b/src/IconTransformSharp.tsx @@ -8,4 +8,4 @@ const IconTransformSharp: React.FC = ({ ...props }) => ( ) -export { IconTransformSharp as default } +export default IconTransformSharp diff --git a/src/IconTransformSharpFilled.tsx b/src/IconTransformSharpFilled.tsx index 0375f28a4..9da54c2a2 100644 --- a/src/IconTransformSharpFilled.tsx +++ b/src/IconTransformSharpFilled.tsx @@ -8,4 +8,4 @@ const IconTransformSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconTransformSharpFilled as default } +export default IconTransformSharpFilled diff --git a/src/IconTransgenderOutlined.tsx b/src/IconTransgenderOutlined.tsx index fb9e8a95c..34e29f95e 100644 --- a/src/IconTransgenderOutlined.tsx +++ b/src/IconTransgenderOutlined.tsx @@ -8,4 +8,4 @@ const IconTransgenderOutlined: React.FC = ({ ...props }) => ( ) -export { IconTransgenderOutlined as default } +export default IconTransgenderOutlined diff --git a/src/IconTransgenderOutlinedFilled.tsx b/src/IconTransgenderOutlinedFilled.tsx index 73672ae92..85aa3bdd8 100644 --- a/src/IconTransgenderOutlinedFilled.tsx +++ b/src/IconTransgenderOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconTransgenderOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconTransgenderOutlinedFilled as default } +export default IconTransgenderOutlinedFilled diff --git a/src/IconTransgenderRounded.tsx b/src/IconTransgenderRounded.tsx index c7d246006..9e260730a 100644 --- a/src/IconTransgenderRounded.tsx +++ b/src/IconTransgenderRounded.tsx @@ -8,4 +8,4 @@ const IconTransgenderRounded: React.FC = ({ ...props }) => ( ) -export { IconTransgenderRounded as default } +export default IconTransgenderRounded diff --git a/src/IconTransgenderRoundedFilled.tsx b/src/IconTransgenderRoundedFilled.tsx index 38f2eaa48..d7e88723f 100644 --- a/src/IconTransgenderRoundedFilled.tsx +++ b/src/IconTransgenderRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconTransgenderRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconTransgenderRoundedFilled as default } +export default IconTransgenderRoundedFilled diff --git a/src/IconTransgenderSharp.tsx b/src/IconTransgenderSharp.tsx index 854131348..e8d96fde0 100644 --- a/src/IconTransgenderSharp.tsx +++ b/src/IconTransgenderSharp.tsx @@ -8,4 +8,4 @@ const IconTransgenderSharp: React.FC = ({ ...props }) => ( ) -export { IconTransgenderSharp as default } +export default IconTransgenderSharp diff --git a/src/IconTransgenderSharpFilled.tsx b/src/IconTransgenderSharpFilled.tsx index 9f85e3fea..afc9bd5e9 100644 --- a/src/IconTransgenderSharpFilled.tsx +++ b/src/IconTransgenderSharpFilled.tsx @@ -8,4 +8,4 @@ const IconTransgenderSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconTransgenderSharpFilled as default } +export default IconTransgenderSharpFilled diff --git a/src/IconTransitEnterexitOutlined.tsx b/src/IconTransitEnterexitOutlined.tsx index 21ab82120..87336ae2d 100644 --- a/src/IconTransitEnterexitOutlined.tsx +++ b/src/IconTransitEnterexitOutlined.tsx @@ -8,4 +8,4 @@ const IconTransitEnterexitOutlined: React.FC = ({ ...props }) => ( ) -export { IconTransitEnterexitOutlined as default } +export default IconTransitEnterexitOutlined diff --git a/src/IconTransitEnterexitOutlinedFilled.tsx b/src/IconTransitEnterexitOutlinedFilled.tsx index fef00f051..65f2dd950 100644 --- a/src/IconTransitEnterexitOutlinedFilled.tsx +++ b/src/IconTransitEnterexitOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconTransitEnterexitOutlinedFilled: React.FC = ({ ) -export { IconTransitEnterexitOutlinedFilled as default } +export default IconTransitEnterexitOutlinedFilled diff --git a/src/IconTransitEnterexitRounded.tsx b/src/IconTransitEnterexitRounded.tsx index 46a98f71f..891b642c0 100644 --- a/src/IconTransitEnterexitRounded.tsx +++ b/src/IconTransitEnterexitRounded.tsx @@ -8,4 +8,4 @@ const IconTransitEnterexitRounded: React.FC = ({ ...props }) => ( ) -export { IconTransitEnterexitRounded as default } +export default IconTransitEnterexitRounded diff --git a/src/IconTransitEnterexitRoundedFilled.tsx b/src/IconTransitEnterexitRoundedFilled.tsx index 51a8915ed..431ce6833 100644 --- a/src/IconTransitEnterexitRoundedFilled.tsx +++ b/src/IconTransitEnterexitRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconTransitEnterexitRoundedFilled: React.FC = ({ ) -export { IconTransitEnterexitRoundedFilled as default } +export default IconTransitEnterexitRoundedFilled diff --git a/src/IconTransitEnterexitSharp.tsx b/src/IconTransitEnterexitSharp.tsx index ffa27f124..87e51a3a4 100644 --- a/src/IconTransitEnterexitSharp.tsx +++ b/src/IconTransitEnterexitSharp.tsx @@ -8,4 +8,4 @@ const IconTransitEnterexitSharp: React.FC = ({ ...props }) => ( ) -export { IconTransitEnterexitSharp as default } +export default IconTransitEnterexitSharp diff --git a/src/IconTransitEnterexitSharpFilled.tsx b/src/IconTransitEnterexitSharpFilled.tsx index f1969c27c..656e5f506 100644 --- a/src/IconTransitEnterexitSharpFilled.tsx +++ b/src/IconTransitEnterexitSharpFilled.tsx @@ -8,4 +8,4 @@ const IconTransitEnterexitSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconTransitEnterexitSharpFilled as default } +export default IconTransitEnterexitSharpFilled diff --git a/src/IconTransitTicketOutlined.tsx b/src/IconTransitTicketOutlined.tsx index 554b86153..3aca9a347 100644 --- a/src/IconTransitTicketOutlined.tsx +++ b/src/IconTransitTicketOutlined.tsx @@ -8,4 +8,4 @@ const IconTransitTicketOutlined: React.FC = ({ ...props }) => ( ) -export { IconTransitTicketOutlined as default } +export default IconTransitTicketOutlined diff --git a/src/IconTransitTicketOutlinedFilled.tsx b/src/IconTransitTicketOutlinedFilled.tsx index d16dfc165..27c8dbb14 100644 --- a/src/IconTransitTicketOutlinedFilled.tsx +++ b/src/IconTransitTicketOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconTransitTicketOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconTransitTicketOutlinedFilled as default } +export default IconTransitTicketOutlinedFilled diff --git a/src/IconTransitTicketRounded.tsx b/src/IconTransitTicketRounded.tsx index c06e55c03..5bbaba1f6 100644 --- a/src/IconTransitTicketRounded.tsx +++ b/src/IconTransitTicketRounded.tsx @@ -8,4 +8,4 @@ const IconTransitTicketRounded: React.FC = ({ ...props }) => ( ) -export { IconTransitTicketRounded as default } +export default IconTransitTicketRounded diff --git a/src/IconTransitTicketRoundedFilled.tsx b/src/IconTransitTicketRoundedFilled.tsx index ca5620f18..ed3de3a31 100644 --- a/src/IconTransitTicketRoundedFilled.tsx +++ b/src/IconTransitTicketRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconTransitTicketRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconTransitTicketRoundedFilled as default } +export default IconTransitTicketRoundedFilled diff --git a/src/IconTransitTicketSharp.tsx b/src/IconTransitTicketSharp.tsx index 655d01e51..a2e634282 100644 --- a/src/IconTransitTicketSharp.tsx +++ b/src/IconTransitTicketSharp.tsx @@ -8,4 +8,4 @@ const IconTransitTicketSharp: React.FC = ({ ...props }) => ( ) -export { IconTransitTicketSharp as default } +export default IconTransitTicketSharp diff --git a/src/IconTransitTicketSharpFilled.tsx b/src/IconTransitTicketSharpFilled.tsx index b99a395a6..4539668e7 100644 --- a/src/IconTransitTicketSharpFilled.tsx +++ b/src/IconTransitTicketSharpFilled.tsx @@ -8,4 +8,4 @@ const IconTransitTicketSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconTransitTicketSharpFilled as default } +export default IconTransitTicketSharpFilled diff --git a/src/IconTransitionChopOutlined.tsx b/src/IconTransitionChopOutlined.tsx index a7865d57b..dc231ef24 100644 --- a/src/IconTransitionChopOutlined.tsx +++ b/src/IconTransitionChopOutlined.tsx @@ -8,4 +8,4 @@ const IconTransitionChopOutlined: React.FC = ({ ...props }) => ( ) -export { IconTransitionChopOutlined as default } +export default IconTransitionChopOutlined diff --git a/src/IconTransitionChopOutlinedFilled.tsx b/src/IconTransitionChopOutlinedFilled.tsx index 0f58fb3f8..46400f8fc 100644 --- a/src/IconTransitionChopOutlinedFilled.tsx +++ b/src/IconTransitionChopOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconTransitionChopOutlinedFilled: React.FC = ({ ) -export { IconTransitionChopOutlinedFilled as default } +export default IconTransitionChopOutlinedFilled diff --git a/src/IconTransitionChopRounded.tsx b/src/IconTransitionChopRounded.tsx index 1376741b1..02e1215a8 100644 --- a/src/IconTransitionChopRounded.tsx +++ b/src/IconTransitionChopRounded.tsx @@ -8,4 +8,4 @@ const IconTransitionChopRounded: React.FC = ({ ...props }) => ( ) -export { IconTransitionChopRounded as default } +export default IconTransitionChopRounded diff --git a/src/IconTransitionChopRoundedFilled.tsx b/src/IconTransitionChopRoundedFilled.tsx index 14b090269..975af963a 100644 --- a/src/IconTransitionChopRoundedFilled.tsx +++ b/src/IconTransitionChopRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconTransitionChopRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconTransitionChopRoundedFilled as default } +export default IconTransitionChopRoundedFilled diff --git a/src/IconTransitionChopSharp.tsx b/src/IconTransitionChopSharp.tsx index 3cb01bb38..00558ab4c 100644 --- a/src/IconTransitionChopSharp.tsx +++ b/src/IconTransitionChopSharp.tsx @@ -8,4 +8,4 @@ const IconTransitionChopSharp: React.FC = ({ ...props }) => ( ) -export { IconTransitionChopSharp as default } +export default IconTransitionChopSharp diff --git a/src/IconTransitionChopSharpFilled.tsx b/src/IconTransitionChopSharpFilled.tsx index 4ceaeb323..d95c64a43 100644 --- a/src/IconTransitionChopSharpFilled.tsx +++ b/src/IconTransitionChopSharpFilled.tsx @@ -8,4 +8,4 @@ const IconTransitionChopSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconTransitionChopSharpFilled as default } +export default IconTransitionChopSharpFilled diff --git a/src/IconTransitionDissolveOutlined.tsx b/src/IconTransitionDissolveOutlined.tsx index 6c3a85794..6874341a1 100644 --- a/src/IconTransitionDissolveOutlined.tsx +++ b/src/IconTransitionDissolveOutlined.tsx @@ -8,4 +8,4 @@ const IconTransitionDissolveOutlined: React.FC = ({ ...props }) => ( ) -export { IconTransitionDissolveOutlined as default } +export default IconTransitionDissolveOutlined diff --git a/src/IconTransitionDissolveOutlinedFilled.tsx b/src/IconTransitionDissolveOutlinedFilled.tsx index 49aebbad9..ea4137c24 100644 --- a/src/IconTransitionDissolveOutlinedFilled.tsx +++ b/src/IconTransitionDissolveOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconTransitionDissolveOutlinedFilled: React.FC = ({ ) -export { IconTransitionDissolveOutlinedFilled as default } +export default IconTransitionDissolveOutlinedFilled diff --git a/src/IconTransitionDissolveRounded.tsx b/src/IconTransitionDissolveRounded.tsx index 50365b5c5..7361e8945 100644 --- a/src/IconTransitionDissolveRounded.tsx +++ b/src/IconTransitionDissolveRounded.tsx @@ -8,4 +8,4 @@ const IconTransitionDissolveRounded: React.FC = ({ ...props }) => ( ) -export { IconTransitionDissolveRounded as default } +export default IconTransitionDissolveRounded diff --git a/src/IconTransitionDissolveRoundedFilled.tsx b/src/IconTransitionDissolveRoundedFilled.tsx index af0d7eddc..57cddb620 100644 --- a/src/IconTransitionDissolveRoundedFilled.tsx +++ b/src/IconTransitionDissolveRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconTransitionDissolveRoundedFilled: React.FC = ({ ) -export { IconTransitionDissolveRoundedFilled as default } +export default IconTransitionDissolveRoundedFilled diff --git a/src/IconTransitionDissolveSharp.tsx b/src/IconTransitionDissolveSharp.tsx index 7f6e54286..2b345bc19 100644 --- a/src/IconTransitionDissolveSharp.tsx +++ b/src/IconTransitionDissolveSharp.tsx @@ -8,4 +8,4 @@ const IconTransitionDissolveSharp: React.FC = ({ ...props }) => ( ) -export { IconTransitionDissolveSharp as default } +export default IconTransitionDissolveSharp diff --git a/src/IconTransitionDissolveSharpFilled.tsx b/src/IconTransitionDissolveSharpFilled.tsx index b08f3fdf6..27f26bafa 100644 --- a/src/IconTransitionDissolveSharpFilled.tsx +++ b/src/IconTransitionDissolveSharpFilled.tsx @@ -10,4 +10,4 @@ const IconTransitionDissolveSharpFilled: React.FC = ({ ) -export { IconTransitionDissolveSharpFilled as default } +export default IconTransitionDissolveSharpFilled diff --git a/src/IconTransitionFadeOutlined.tsx b/src/IconTransitionFadeOutlined.tsx index 1bf044980..9cc1cb0cb 100644 --- a/src/IconTransitionFadeOutlined.tsx +++ b/src/IconTransitionFadeOutlined.tsx @@ -8,4 +8,4 @@ const IconTransitionFadeOutlined: React.FC = ({ ...props }) => ( ) -export { IconTransitionFadeOutlined as default } +export default IconTransitionFadeOutlined diff --git a/src/IconTransitionFadeOutlinedFilled.tsx b/src/IconTransitionFadeOutlinedFilled.tsx index 56ebbd31e..8a80c1506 100644 --- a/src/IconTransitionFadeOutlinedFilled.tsx +++ b/src/IconTransitionFadeOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconTransitionFadeOutlinedFilled: React.FC = ({ ) -export { IconTransitionFadeOutlinedFilled as default } +export default IconTransitionFadeOutlinedFilled diff --git a/src/IconTransitionFadeRounded.tsx b/src/IconTransitionFadeRounded.tsx index 7b974e549..6ff69f0c3 100644 --- a/src/IconTransitionFadeRounded.tsx +++ b/src/IconTransitionFadeRounded.tsx @@ -8,4 +8,4 @@ const IconTransitionFadeRounded: React.FC = ({ ...props }) => ( ) -export { IconTransitionFadeRounded as default } +export default IconTransitionFadeRounded diff --git a/src/IconTransitionFadeRoundedFilled.tsx b/src/IconTransitionFadeRoundedFilled.tsx index 4668fa036..c6e7ef227 100644 --- a/src/IconTransitionFadeRoundedFilled.tsx +++ b/src/IconTransitionFadeRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconTransitionFadeRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconTransitionFadeRoundedFilled as default } +export default IconTransitionFadeRoundedFilled diff --git a/src/IconTransitionFadeSharp.tsx b/src/IconTransitionFadeSharp.tsx index c2328bbc9..dd0d8ca31 100644 --- a/src/IconTransitionFadeSharp.tsx +++ b/src/IconTransitionFadeSharp.tsx @@ -8,4 +8,4 @@ const IconTransitionFadeSharp: React.FC = ({ ...props }) => ( ) -export { IconTransitionFadeSharp as default } +export default IconTransitionFadeSharp diff --git a/src/IconTransitionFadeSharpFilled.tsx b/src/IconTransitionFadeSharpFilled.tsx index 471b53bc5..3b7065910 100644 --- a/src/IconTransitionFadeSharpFilled.tsx +++ b/src/IconTransitionFadeSharpFilled.tsx @@ -8,4 +8,4 @@ const IconTransitionFadeSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconTransitionFadeSharpFilled as default } +export default IconTransitionFadeSharpFilled diff --git a/src/IconTransitionPushOutlined.tsx b/src/IconTransitionPushOutlined.tsx index e4346d0bc..b0759ee6e 100644 --- a/src/IconTransitionPushOutlined.tsx +++ b/src/IconTransitionPushOutlined.tsx @@ -8,4 +8,4 @@ const IconTransitionPushOutlined: React.FC = ({ ...props }) => ( ) -export { IconTransitionPushOutlined as default } +export default IconTransitionPushOutlined diff --git a/src/IconTransitionPushOutlinedFilled.tsx b/src/IconTransitionPushOutlinedFilled.tsx index be416b983..89acb5ca5 100644 --- a/src/IconTransitionPushOutlinedFilled.tsx +++ b/src/IconTransitionPushOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconTransitionPushOutlinedFilled: React.FC = ({ ) -export { IconTransitionPushOutlinedFilled as default } +export default IconTransitionPushOutlinedFilled diff --git a/src/IconTransitionPushRounded.tsx b/src/IconTransitionPushRounded.tsx index 261de306a..7b2fff745 100644 --- a/src/IconTransitionPushRounded.tsx +++ b/src/IconTransitionPushRounded.tsx @@ -8,4 +8,4 @@ const IconTransitionPushRounded: React.FC = ({ ...props }) => ( ) -export { IconTransitionPushRounded as default } +export default IconTransitionPushRounded diff --git a/src/IconTransitionPushRoundedFilled.tsx b/src/IconTransitionPushRoundedFilled.tsx index c6d5dfc9c..cd004bbb4 100644 --- a/src/IconTransitionPushRoundedFilled.tsx +++ b/src/IconTransitionPushRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconTransitionPushRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconTransitionPushRoundedFilled as default } +export default IconTransitionPushRoundedFilled diff --git a/src/IconTransitionPushSharp.tsx b/src/IconTransitionPushSharp.tsx index f944e16ed..ebaa0e5e5 100644 --- a/src/IconTransitionPushSharp.tsx +++ b/src/IconTransitionPushSharp.tsx @@ -8,4 +8,4 @@ const IconTransitionPushSharp: React.FC = ({ ...props }) => ( ) -export { IconTransitionPushSharp as default } +export default IconTransitionPushSharp diff --git a/src/IconTransitionPushSharpFilled.tsx b/src/IconTransitionPushSharpFilled.tsx index d3b341adb..291e6c9b7 100644 --- a/src/IconTransitionPushSharpFilled.tsx +++ b/src/IconTransitionPushSharpFilled.tsx @@ -8,4 +8,4 @@ const IconTransitionPushSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconTransitionPushSharpFilled as default } +export default IconTransitionPushSharpFilled diff --git a/src/IconTransitionSlideOutlined.tsx b/src/IconTransitionSlideOutlined.tsx index bcf996752..b5e2b84fb 100644 --- a/src/IconTransitionSlideOutlined.tsx +++ b/src/IconTransitionSlideOutlined.tsx @@ -8,4 +8,4 @@ const IconTransitionSlideOutlined: React.FC = ({ ...props }) => ( ) -export { IconTransitionSlideOutlined as default } +export default IconTransitionSlideOutlined diff --git a/src/IconTransitionSlideOutlinedFilled.tsx b/src/IconTransitionSlideOutlinedFilled.tsx index 515587138..978e0324a 100644 --- a/src/IconTransitionSlideOutlinedFilled.tsx +++ b/src/IconTransitionSlideOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconTransitionSlideOutlinedFilled: React.FC = ({ ) -export { IconTransitionSlideOutlinedFilled as default } +export default IconTransitionSlideOutlinedFilled diff --git a/src/IconTransitionSlideRounded.tsx b/src/IconTransitionSlideRounded.tsx index d16e72b5a..036dbddf3 100644 --- a/src/IconTransitionSlideRounded.tsx +++ b/src/IconTransitionSlideRounded.tsx @@ -8,4 +8,4 @@ const IconTransitionSlideRounded: React.FC = ({ ...props }) => ( ) -export { IconTransitionSlideRounded as default } +export default IconTransitionSlideRounded diff --git a/src/IconTransitionSlideRoundedFilled.tsx b/src/IconTransitionSlideRoundedFilled.tsx index 70f158f24..635de7351 100644 --- a/src/IconTransitionSlideRoundedFilled.tsx +++ b/src/IconTransitionSlideRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconTransitionSlideRoundedFilled: React.FC = ({ ) -export { IconTransitionSlideRoundedFilled as default } +export default IconTransitionSlideRoundedFilled diff --git a/src/IconTransitionSlideSharp.tsx b/src/IconTransitionSlideSharp.tsx index de1c0ec4f..439f5b34a 100644 --- a/src/IconTransitionSlideSharp.tsx +++ b/src/IconTransitionSlideSharp.tsx @@ -8,4 +8,4 @@ const IconTransitionSlideSharp: React.FC = ({ ...props }) => ( ) -export { IconTransitionSlideSharp as default } +export default IconTransitionSlideSharp diff --git a/src/IconTransitionSlideSharpFilled.tsx b/src/IconTransitionSlideSharpFilled.tsx index 4222bf624..70a2d3953 100644 --- a/src/IconTransitionSlideSharpFilled.tsx +++ b/src/IconTransitionSlideSharpFilled.tsx @@ -8,4 +8,4 @@ const IconTransitionSlideSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconTransitionSlideSharpFilled as default } +export default IconTransitionSlideSharpFilled diff --git a/src/IconTranslateOutlined.tsx b/src/IconTranslateOutlined.tsx index 535138f95..116430c55 100644 --- a/src/IconTranslateOutlined.tsx +++ b/src/IconTranslateOutlined.tsx @@ -8,4 +8,4 @@ const IconTranslateOutlined: React.FC = ({ ...props }) => ( ) -export { IconTranslateOutlined as default } +export default IconTranslateOutlined diff --git a/src/IconTranslateOutlinedFilled.tsx b/src/IconTranslateOutlinedFilled.tsx index a1eaa5839..7c00bef1f 100644 --- a/src/IconTranslateOutlinedFilled.tsx +++ b/src/IconTranslateOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconTranslateOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconTranslateOutlinedFilled as default } +export default IconTranslateOutlinedFilled diff --git a/src/IconTranslateRounded.tsx b/src/IconTranslateRounded.tsx index 2188e0fee..90c289d58 100644 --- a/src/IconTranslateRounded.tsx +++ b/src/IconTranslateRounded.tsx @@ -8,4 +8,4 @@ const IconTranslateRounded: React.FC = ({ ...props }) => ( ) -export { IconTranslateRounded as default } +export default IconTranslateRounded diff --git a/src/IconTranslateRoundedFilled.tsx b/src/IconTranslateRoundedFilled.tsx index dc1eaea5d..91574b30f 100644 --- a/src/IconTranslateRoundedFilled.tsx +++ b/src/IconTranslateRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconTranslateRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconTranslateRoundedFilled as default } +export default IconTranslateRoundedFilled diff --git a/src/IconTranslateSharp.tsx b/src/IconTranslateSharp.tsx index b0c46b8eb..a2e74d72a 100644 --- a/src/IconTranslateSharp.tsx +++ b/src/IconTranslateSharp.tsx @@ -8,4 +8,4 @@ const IconTranslateSharp: React.FC = ({ ...props }) => ( ) -export { IconTranslateSharp as default } +export default IconTranslateSharp diff --git a/src/IconTranslateSharpFilled.tsx b/src/IconTranslateSharpFilled.tsx index 9bc8d31ed..a6ab644bb 100644 --- a/src/IconTranslateSharpFilled.tsx +++ b/src/IconTranslateSharpFilled.tsx @@ -8,4 +8,4 @@ const IconTranslateSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconTranslateSharpFilled as default } +export default IconTranslateSharpFilled diff --git a/src/IconTransportationOutlined.tsx b/src/IconTransportationOutlined.tsx index 9e15ca307..2f325351c 100644 --- a/src/IconTransportationOutlined.tsx +++ b/src/IconTransportationOutlined.tsx @@ -8,4 +8,4 @@ const IconTransportationOutlined: React.FC = ({ ...props }) => ( ) -export { IconTransportationOutlined as default } +export default IconTransportationOutlined diff --git a/src/IconTransportationOutlinedFilled.tsx b/src/IconTransportationOutlinedFilled.tsx index f84fff71d..7464ca990 100644 --- a/src/IconTransportationOutlinedFilled.tsx +++ b/src/IconTransportationOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconTransportationOutlinedFilled: React.FC = ({ ) -export { IconTransportationOutlinedFilled as default } +export default IconTransportationOutlinedFilled diff --git a/src/IconTransportationRounded.tsx b/src/IconTransportationRounded.tsx index d9e007562..89ba12e9d 100644 --- a/src/IconTransportationRounded.tsx +++ b/src/IconTransportationRounded.tsx @@ -8,4 +8,4 @@ const IconTransportationRounded: React.FC = ({ ...props }) => ( ) -export { IconTransportationRounded as default } +export default IconTransportationRounded diff --git a/src/IconTransportationRoundedFilled.tsx b/src/IconTransportationRoundedFilled.tsx index 7d472700f..9cabda78d 100644 --- a/src/IconTransportationRoundedFilled.tsx +++ b/src/IconTransportationRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconTransportationRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconTransportationRoundedFilled as default } +export default IconTransportationRoundedFilled diff --git a/src/IconTransportationSharp.tsx b/src/IconTransportationSharp.tsx index 87db4dcff..69bda4b2e 100644 --- a/src/IconTransportationSharp.tsx +++ b/src/IconTransportationSharp.tsx @@ -8,4 +8,4 @@ const IconTransportationSharp: React.FC = ({ ...props }) => ( ) -export { IconTransportationSharp as default } +export default IconTransportationSharp diff --git a/src/IconTransportationSharpFilled.tsx b/src/IconTransportationSharpFilled.tsx index 54a2d418e..cbf83bcbf 100644 --- a/src/IconTransportationSharpFilled.tsx +++ b/src/IconTransportationSharpFilled.tsx @@ -8,4 +8,4 @@ const IconTransportationSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconTransportationSharpFilled as default } +export default IconTransportationSharpFilled diff --git a/src/IconTravelExploreOutlined.tsx b/src/IconTravelExploreOutlined.tsx index 6bb5583fa..9a714a4c2 100644 --- a/src/IconTravelExploreOutlined.tsx +++ b/src/IconTravelExploreOutlined.tsx @@ -8,4 +8,4 @@ const IconTravelExploreOutlined: React.FC = ({ ...props }) => ( ) -export { IconTravelExploreOutlined as default } +export default IconTravelExploreOutlined diff --git a/src/IconTravelExploreOutlinedFilled.tsx b/src/IconTravelExploreOutlinedFilled.tsx index 941e82128..0cb8a7eaf 100644 --- a/src/IconTravelExploreOutlinedFilled.tsx +++ b/src/IconTravelExploreOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconTravelExploreOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconTravelExploreOutlinedFilled as default } +export default IconTravelExploreOutlinedFilled diff --git a/src/IconTravelExploreRounded.tsx b/src/IconTravelExploreRounded.tsx index d53f6b80e..1006e879d 100644 --- a/src/IconTravelExploreRounded.tsx +++ b/src/IconTravelExploreRounded.tsx @@ -8,4 +8,4 @@ const IconTravelExploreRounded: React.FC = ({ ...props }) => ( ) -export { IconTravelExploreRounded as default } +export default IconTravelExploreRounded diff --git a/src/IconTravelExploreRoundedFilled.tsx b/src/IconTravelExploreRoundedFilled.tsx index 923a66ad5..0f34435e2 100644 --- a/src/IconTravelExploreRoundedFilled.tsx +++ b/src/IconTravelExploreRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconTravelExploreRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconTravelExploreRoundedFilled as default } +export default IconTravelExploreRoundedFilled diff --git a/src/IconTravelExploreSharp.tsx b/src/IconTravelExploreSharp.tsx index 59f23cca1..f2534f8df 100644 --- a/src/IconTravelExploreSharp.tsx +++ b/src/IconTravelExploreSharp.tsx @@ -8,4 +8,4 @@ const IconTravelExploreSharp: React.FC = ({ ...props }) => ( ) -export { IconTravelExploreSharp as default } +export default IconTravelExploreSharp diff --git a/src/IconTravelExploreSharpFilled.tsx b/src/IconTravelExploreSharpFilled.tsx index 8fbf566f8..98aa5b9b4 100644 --- a/src/IconTravelExploreSharpFilled.tsx +++ b/src/IconTravelExploreSharpFilled.tsx @@ -8,4 +8,4 @@ const IconTravelExploreSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconTravelExploreSharpFilled as default } +export default IconTravelExploreSharpFilled diff --git a/src/IconTravelLuggageAndBagsOutlined.tsx b/src/IconTravelLuggageAndBagsOutlined.tsx index 7ad3b7092..6af186335 100644 --- a/src/IconTravelLuggageAndBagsOutlined.tsx +++ b/src/IconTravelLuggageAndBagsOutlined.tsx @@ -10,4 +10,4 @@ const IconTravelLuggageAndBagsOutlined: React.FC = ({ ) -export { IconTravelLuggageAndBagsOutlined as default } +export default IconTravelLuggageAndBagsOutlined diff --git a/src/IconTravelLuggageAndBagsOutlinedFilled.tsx b/src/IconTravelLuggageAndBagsOutlinedFilled.tsx index f9b75abe4..81b5c0467 100644 --- a/src/IconTravelLuggageAndBagsOutlinedFilled.tsx +++ b/src/IconTravelLuggageAndBagsOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconTravelLuggageAndBagsOutlinedFilled: React.FC = ({ ) -export { IconTravelLuggageAndBagsOutlinedFilled as default } +export default IconTravelLuggageAndBagsOutlinedFilled diff --git a/src/IconTravelLuggageAndBagsRounded.tsx b/src/IconTravelLuggageAndBagsRounded.tsx index 2ac04abd7..3b99c4946 100644 --- a/src/IconTravelLuggageAndBagsRounded.tsx +++ b/src/IconTravelLuggageAndBagsRounded.tsx @@ -8,4 +8,4 @@ const IconTravelLuggageAndBagsRounded: React.FC = ({ ...props }) => ( ) -export { IconTravelLuggageAndBagsRounded as default } +export default IconTravelLuggageAndBagsRounded diff --git a/src/IconTravelLuggageAndBagsRoundedFilled.tsx b/src/IconTravelLuggageAndBagsRoundedFilled.tsx index 2a49daea4..5427fc650 100644 --- a/src/IconTravelLuggageAndBagsRoundedFilled.tsx +++ b/src/IconTravelLuggageAndBagsRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconTravelLuggageAndBagsRoundedFilled: React.FC = ({ ) -export { IconTravelLuggageAndBagsRoundedFilled as default } +export default IconTravelLuggageAndBagsRoundedFilled diff --git a/src/IconTravelLuggageAndBagsSharp.tsx b/src/IconTravelLuggageAndBagsSharp.tsx index f8413d763..2126a3d6a 100644 --- a/src/IconTravelLuggageAndBagsSharp.tsx +++ b/src/IconTravelLuggageAndBagsSharp.tsx @@ -8,4 +8,4 @@ const IconTravelLuggageAndBagsSharp: React.FC = ({ ...props }) => ( ) -export { IconTravelLuggageAndBagsSharp as default } +export default IconTravelLuggageAndBagsSharp diff --git a/src/IconTravelLuggageAndBagsSharpFilled.tsx b/src/IconTravelLuggageAndBagsSharpFilled.tsx index e234dfe37..ab7605d0c 100644 --- a/src/IconTravelLuggageAndBagsSharpFilled.tsx +++ b/src/IconTravelLuggageAndBagsSharpFilled.tsx @@ -10,4 +10,4 @@ const IconTravelLuggageAndBagsSharpFilled: React.FC = ({ ) -export { IconTravelLuggageAndBagsSharpFilled as default } +export default IconTravelLuggageAndBagsSharpFilled diff --git a/src/IconTravelOutlined.tsx b/src/IconTravelOutlined.tsx index 7eb223c76..a6a64db4a 100644 --- a/src/IconTravelOutlined.tsx +++ b/src/IconTravelOutlined.tsx @@ -8,4 +8,4 @@ const IconTravelOutlined: React.FC = ({ ...props }) => ( ) -export { IconTravelOutlined as default } +export default IconTravelOutlined diff --git a/src/IconTravelOutlinedFilled.tsx b/src/IconTravelOutlinedFilled.tsx index 26f8f3498..d628de16e 100644 --- a/src/IconTravelOutlinedFilled.tsx +++ b/src/IconTravelOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconTravelOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconTravelOutlinedFilled as default } +export default IconTravelOutlinedFilled diff --git a/src/IconTravelRounded.tsx b/src/IconTravelRounded.tsx index 33b3238f2..578c979ca 100644 --- a/src/IconTravelRounded.tsx +++ b/src/IconTravelRounded.tsx @@ -8,4 +8,4 @@ const IconTravelRounded: React.FC = ({ ...props }) => ( ) -export { IconTravelRounded as default } +export default IconTravelRounded diff --git a/src/IconTravelRoundedFilled.tsx b/src/IconTravelRoundedFilled.tsx index 816054c1a..e80b196a0 100644 --- a/src/IconTravelRoundedFilled.tsx +++ b/src/IconTravelRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconTravelRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconTravelRoundedFilled as default } +export default IconTravelRoundedFilled diff --git a/src/IconTravelSharp.tsx b/src/IconTravelSharp.tsx index 43817127f..c44fadc70 100644 --- a/src/IconTravelSharp.tsx +++ b/src/IconTravelSharp.tsx @@ -8,4 +8,4 @@ const IconTravelSharp: React.FC = ({ ...props }) => ( ) -export { IconTravelSharp as default } +export default IconTravelSharp diff --git a/src/IconTravelSharpFilled.tsx b/src/IconTravelSharpFilled.tsx index b9ee7631e..eeaf50323 100644 --- a/src/IconTravelSharpFilled.tsx +++ b/src/IconTravelSharpFilled.tsx @@ -8,4 +8,4 @@ const IconTravelSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconTravelSharpFilled as default } +export default IconTravelSharpFilled diff --git a/src/IconTrendingDownOutlined.tsx b/src/IconTrendingDownOutlined.tsx index ff644a13d..9d9989f93 100644 --- a/src/IconTrendingDownOutlined.tsx +++ b/src/IconTrendingDownOutlined.tsx @@ -8,4 +8,4 @@ const IconTrendingDownOutlined: React.FC = ({ ...props }) => ( ) -export { IconTrendingDownOutlined as default } +export default IconTrendingDownOutlined diff --git a/src/IconTrendingDownOutlinedFilled.tsx b/src/IconTrendingDownOutlinedFilled.tsx index 9b75fea5b..f509a920f 100644 --- a/src/IconTrendingDownOutlinedFilled.tsx +++ b/src/IconTrendingDownOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconTrendingDownOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconTrendingDownOutlinedFilled as default } +export default IconTrendingDownOutlinedFilled diff --git a/src/IconTrendingDownRounded.tsx b/src/IconTrendingDownRounded.tsx index c01b0f370..0392e5a72 100644 --- a/src/IconTrendingDownRounded.tsx +++ b/src/IconTrendingDownRounded.tsx @@ -8,4 +8,4 @@ const IconTrendingDownRounded: React.FC = ({ ...props }) => ( ) -export { IconTrendingDownRounded as default } +export default IconTrendingDownRounded diff --git a/src/IconTrendingDownRoundedFilled.tsx b/src/IconTrendingDownRoundedFilled.tsx index db90c7a41..e3b8a1927 100644 --- a/src/IconTrendingDownRoundedFilled.tsx +++ b/src/IconTrendingDownRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconTrendingDownRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconTrendingDownRoundedFilled as default } +export default IconTrendingDownRoundedFilled diff --git a/src/IconTrendingDownSharp.tsx b/src/IconTrendingDownSharp.tsx index aac4dc299..fbac7fd9c 100644 --- a/src/IconTrendingDownSharp.tsx +++ b/src/IconTrendingDownSharp.tsx @@ -8,4 +8,4 @@ const IconTrendingDownSharp: React.FC = ({ ...props }) => ( ) -export { IconTrendingDownSharp as default } +export default IconTrendingDownSharp diff --git a/src/IconTrendingDownSharpFilled.tsx b/src/IconTrendingDownSharpFilled.tsx index 1ccb48e07..cdcfe1210 100644 --- a/src/IconTrendingDownSharpFilled.tsx +++ b/src/IconTrendingDownSharpFilled.tsx @@ -8,4 +8,4 @@ const IconTrendingDownSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconTrendingDownSharpFilled as default } +export default IconTrendingDownSharpFilled diff --git a/src/IconTrendingFlatOutlined.tsx b/src/IconTrendingFlatOutlined.tsx index f50ed6c16..0406fb72b 100644 --- a/src/IconTrendingFlatOutlined.tsx +++ b/src/IconTrendingFlatOutlined.tsx @@ -8,4 +8,4 @@ const IconTrendingFlatOutlined: React.FC = ({ ...props }) => ( ) -export { IconTrendingFlatOutlined as default } +export default IconTrendingFlatOutlined diff --git a/src/IconTrendingFlatOutlinedFilled.tsx b/src/IconTrendingFlatOutlinedFilled.tsx index 0f46b5176..d161d5f98 100644 --- a/src/IconTrendingFlatOutlinedFilled.tsx +++ b/src/IconTrendingFlatOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconTrendingFlatOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconTrendingFlatOutlinedFilled as default } +export default IconTrendingFlatOutlinedFilled diff --git a/src/IconTrendingFlatRounded.tsx b/src/IconTrendingFlatRounded.tsx index 494d0cca0..5649e60cc 100644 --- a/src/IconTrendingFlatRounded.tsx +++ b/src/IconTrendingFlatRounded.tsx @@ -8,4 +8,4 @@ const IconTrendingFlatRounded: React.FC = ({ ...props }) => ( ) -export { IconTrendingFlatRounded as default } +export default IconTrendingFlatRounded diff --git a/src/IconTrendingFlatRoundedFilled.tsx b/src/IconTrendingFlatRoundedFilled.tsx index 96be4d87d..e59821010 100644 --- a/src/IconTrendingFlatRoundedFilled.tsx +++ b/src/IconTrendingFlatRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconTrendingFlatRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconTrendingFlatRoundedFilled as default } +export default IconTrendingFlatRoundedFilled diff --git a/src/IconTrendingFlatSharp.tsx b/src/IconTrendingFlatSharp.tsx index 92c82c112..6719d6765 100644 --- a/src/IconTrendingFlatSharp.tsx +++ b/src/IconTrendingFlatSharp.tsx @@ -8,4 +8,4 @@ const IconTrendingFlatSharp: React.FC = ({ ...props }) => ( ) -export { IconTrendingFlatSharp as default } +export default IconTrendingFlatSharp diff --git a/src/IconTrendingFlatSharpFilled.tsx b/src/IconTrendingFlatSharpFilled.tsx index 6460532f8..9c78e369e 100644 --- a/src/IconTrendingFlatSharpFilled.tsx +++ b/src/IconTrendingFlatSharpFilled.tsx @@ -8,4 +8,4 @@ const IconTrendingFlatSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconTrendingFlatSharpFilled as default } +export default IconTrendingFlatSharpFilled diff --git a/src/IconTrendingUpOutlined.tsx b/src/IconTrendingUpOutlined.tsx index f2e82adc6..50c4bb9f0 100644 --- a/src/IconTrendingUpOutlined.tsx +++ b/src/IconTrendingUpOutlined.tsx @@ -8,4 +8,4 @@ const IconTrendingUpOutlined: React.FC = ({ ...props }) => ( ) -export { IconTrendingUpOutlined as default } +export default IconTrendingUpOutlined diff --git a/src/IconTrendingUpOutlinedFilled.tsx b/src/IconTrendingUpOutlinedFilled.tsx index 4a7d4bb74..418f64796 100644 --- a/src/IconTrendingUpOutlinedFilled.tsx +++ b/src/IconTrendingUpOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconTrendingUpOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconTrendingUpOutlinedFilled as default } +export default IconTrendingUpOutlinedFilled diff --git a/src/IconTrendingUpRounded.tsx b/src/IconTrendingUpRounded.tsx index 8b7c82dda..13e17a1bd 100644 --- a/src/IconTrendingUpRounded.tsx +++ b/src/IconTrendingUpRounded.tsx @@ -8,4 +8,4 @@ const IconTrendingUpRounded: React.FC = ({ ...props }) => ( ) -export { IconTrendingUpRounded as default } +export default IconTrendingUpRounded diff --git a/src/IconTrendingUpRoundedFilled.tsx b/src/IconTrendingUpRoundedFilled.tsx index 1a8868612..20c14010b 100644 --- a/src/IconTrendingUpRoundedFilled.tsx +++ b/src/IconTrendingUpRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconTrendingUpRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconTrendingUpRoundedFilled as default } +export default IconTrendingUpRoundedFilled diff --git a/src/IconTrendingUpSharp.tsx b/src/IconTrendingUpSharp.tsx index ed925cd3c..1f04ef78c 100644 --- a/src/IconTrendingUpSharp.tsx +++ b/src/IconTrendingUpSharp.tsx @@ -8,4 +8,4 @@ const IconTrendingUpSharp: React.FC = ({ ...props }) => ( ) -export { IconTrendingUpSharp as default } +export default IconTrendingUpSharp diff --git a/src/IconTrendingUpSharpFilled.tsx b/src/IconTrendingUpSharpFilled.tsx index 1dbb36dc2..aa98e6dda 100644 --- a/src/IconTrendingUpSharpFilled.tsx +++ b/src/IconTrendingUpSharpFilled.tsx @@ -8,4 +8,4 @@ const IconTrendingUpSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconTrendingUpSharpFilled as default } +export default IconTrendingUpSharpFilled diff --git a/src/IconTripOriginOutlined.tsx b/src/IconTripOriginOutlined.tsx index cc912c5f6..695eb0192 100644 --- a/src/IconTripOriginOutlined.tsx +++ b/src/IconTripOriginOutlined.tsx @@ -8,4 +8,4 @@ const IconTripOriginOutlined: React.FC = ({ ...props }) => ( ) -export { IconTripOriginOutlined as default } +export default IconTripOriginOutlined diff --git a/src/IconTripOriginOutlinedFilled.tsx b/src/IconTripOriginOutlinedFilled.tsx index 1413c6554..74dd11f7f 100644 --- a/src/IconTripOriginOutlinedFilled.tsx +++ b/src/IconTripOriginOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconTripOriginOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconTripOriginOutlinedFilled as default } +export default IconTripOriginOutlinedFilled diff --git a/src/IconTripOriginRounded.tsx b/src/IconTripOriginRounded.tsx index fdbcd0069..74ac1ab47 100644 --- a/src/IconTripOriginRounded.tsx +++ b/src/IconTripOriginRounded.tsx @@ -8,4 +8,4 @@ const IconTripOriginRounded: React.FC = ({ ...props }) => ( ) -export { IconTripOriginRounded as default } +export default IconTripOriginRounded diff --git a/src/IconTripOriginRoundedFilled.tsx b/src/IconTripOriginRoundedFilled.tsx index af7b2de82..f1bd28736 100644 --- a/src/IconTripOriginRoundedFilled.tsx +++ b/src/IconTripOriginRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconTripOriginRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconTripOriginRoundedFilled as default } +export default IconTripOriginRoundedFilled diff --git a/src/IconTripOriginSharp.tsx b/src/IconTripOriginSharp.tsx index 3c7674338..3e7c0a4af 100644 --- a/src/IconTripOriginSharp.tsx +++ b/src/IconTripOriginSharp.tsx @@ -8,4 +8,4 @@ const IconTripOriginSharp: React.FC = ({ ...props }) => ( ) -export { IconTripOriginSharp as default } +export default IconTripOriginSharp diff --git a/src/IconTripOriginSharpFilled.tsx b/src/IconTripOriginSharpFilled.tsx index 6047350f6..b7e73024b 100644 --- a/src/IconTripOriginSharpFilled.tsx +++ b/src/IconTripOriginSharpFilled.tsx @@ -8,4 +8,4 @@ const IconTripOriginSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconTripOriginSharpFilled as default } +export default IconTripOriginSharpFilled diff --git a/src/IconTripOutlined.tsx b/src/IconTripOutlined.tsx index e3da7a4d6..712f9790e 100644 --- a/src/IconTripOutlined.tsx +++ b/src/IconTripOutlined.tsx @@ -8,4 +8,4 @@ const IconTripOutlined: React.FC = ({ ...props }) => ( ) -export { IconTripOutlined as default } +export default IconTripOutlined diff --git a/src/IconTripOutlinedFilled.tsx b/src/IconTripOutlinedFilled.tsx index aa025b768..60c87a2c8 100644 --- a/src/IconTripOutlinedFilled.tsx +++ b/src/IconTripOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconTripOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconTripOutlinedFilled as default } +export default IconTripOutlinedFilled diff --git a/src/IconTripRounded.tsx b/src/IconTripRounded.tsx index 6a6afac57..c71b0718c 100644 --- a/src/IconTripRounded.tsx +++ b/src/IconTripRounded.tsx @@ -8,4 +8,4 @@ const IconTripRounded: React.FC = ({ ...props }) => ( ) -export { IconTripRounded as default } +export default IconTripRounded diff --git a/src/IconTripRoundedFilled.tsx b/src/IconTripRoundedFilled.tsx index d76cd4732..ba2839dc4 100644 --- a/src/IconTripRoundedFilled.tsx +++ b/src/IconTripRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconTripRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconTripRoundedFilled as default } +export default IconTripRoundedFilled diff --git a/src/IconTripSharp.tsx b/src/IconTripSharp.tsx index 5fa903bdd..dd847bb28 100644 --- a/src/IconTripSharp.tsx +++ b/src/IconTripSharp.tsx @@ -8,4 +8,4 @@ const IconTripSharp: React.FC = ({ ...props }) => ( ) -export { IconTripSharp as default } +export default IconTripSharp diff --git a/src/IconTripSharpFilled.tsx b/src/IconTripSharpFilled.tsx index 1241d1d5d..3181f9f22 100644 --- a/src/IconTripSharpFilled.tsx +++ b/src/IconTripSharpFilled.tsx @@ -8,4 +8,4 @@ const IconTripSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconTripSharpFilled as default } +export default IconTripSharpFilled diff --git a/src/IconTrolleyCableCarOutlined.tsx b/src/IconTrolleyCableCarOutlined.tsx index fc2cb7530..f881861a5 100644 --- a/src/IconTrolleyCableCarOutlined.tsx +++ b/src/IconTrolleyCableCarOutlined.tsx @@ -8,4 +8,4 @@ const IconTrolleyCableCarOutlined: React.FC = ({ ...props }) => ( ) -export { IconTrolleyCableCarOutlined as default } +export default IconTrolleyCableCarOutlined diff --git a/src/IconTrolleyCableCarOutlinedFilled.tsx b/src/IconTrolleyCableCarOutlinedFilled.tsx index 6b1d93cde..e7d0f00f4 100644 --- a/src/IconTrolleyCableCarOutlinedFilled.tsx +++ b/src/IconTrolleyCableCarOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconTrolleyCableCarOutlinedFilled: React.FC = ({ ) -export { IconTrolleyCableCarOutlinedFilled as default } +export default IconTrolleyCableCarOutlinedFilled diff --git a/src/IconTrolleyCableCarRounded.tsx b/src/IconTrolleyCableCarRounded.tsx index 9b6a06b78..3477ee046 100644 --- a/src/IconTrolleyCableCarRounded.tsx +++ b/src/IconTrolleyCableCarRounded.tsx @@ -8,4 +8,4 @@ const IconTrolleyCableCarRounded: React.FC = ({ ...props }) => ( ) -export { IconTrolleyCableCarRounded as default } +export default IconTrolleyCableCarRounded diff --git a/src/IconTrolleyCableCarRoundedFilled.tsx b/src/IconTrolleyCableCarRoundedFilled.tsx index 067165b61..e59c53028 100644 --- a/src/IconTrolleyCableCarRoundedFilled.tsx +++ b/src/IconTrolleyCableCarRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconTrolleyCableCarRoundedFilled: React.FC = ({ ) -export { IconTrolleyCableCarRoundedFilled as default } +export default IconTrolleyCableCarRoundedFilled diff --git a/src/IconTrolleyCableCarSharp.tsx b/src/IconTrolleyCableCarSharp.tsx index c7ffa7fce..0c2b89b03 100644 --- a/src/IconTrolleyCableCarSharp.tsx +++ b/src/IconTrolleyCableCarSharp.tsx @@ -8,4 +8,4 @@ const IconTrolleyCableCarSharp: React.FC = ({ ...props }) => ( ) -export { IconTrolleyCableCarSharp as default } +export default IconTrolleyCableCarSharp diff --git a/src/IconTrolleyCableCarSharpFilled.tsx b/src/IconTrolleyCableCarSharpFilled.tsx index 39aa33bdd..30ef2cd88 100644 --- a/src/IconTrolleyCableCarSharpFilled.tsx +++ b/src/IconTrolleyCableCarSharpFilled.tsx @@ -8,4 +8,4 @@ const IconTrolleyCableCarSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconTrolleyCableCarSharpFilled as default } +export default IconTrolleyCableCarSharpFilled diff --git a/src/IconTrolleyOutlined.tsx b/src/IconTrolleyOutlined.tsx index 19c9c6a20..df4cec0dc 100644 --- a/src/IconTrolleyOutlined.tsx +++ b/src/IconTrolleyOutlined.tsx @@ -8,4 +8,4 @@ const IconTrolleyOutlined: React.FC = ({ ...props }) => ( ) -export { IconTrolleyOutlined as default } +export default IconTrolleyOutlined diff --git a/src/IconTrolleyOutlinedFilled.tsx b/src/IconTrolleyOutlinedFilled.tsx index 3dd7bb198..ab66202ce 100644 --- a/src/IconTrolleyOutlinedFilled.tsx +++ b/src/IconTrolleyOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconTrolleyOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconTrolleyOutlinedFilled as default } +export default IconTrolleyOutlinedFilled diff --git a/src/IconTrolleyRounded.tsx b/src/IconTrolleyRounded.tsx index 1c4fa4232..bf8947850 100644 --- a/src/IconTrolleyRounded.tsx +++ b/src/IconTrolleyRounded.tsx @@ -8,4 +8,4 @@ const IconTrolleyRounded: React.FC = ({ ...props }) => ( ) -export { IconTrolleyRounded as default } +export default IconTrolleyRounded diff --git a/src/IconTrolleyRoundedFilled.tsx b/src/IconTrolleyRoundedFilled.tsx index 5c7e67246..fece398c2 100644 --- a/src/IconTrolleyRoundedFilled.tsx +++ b/src/IconTrolleyRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconTrolleyRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconTrolleyRoundedFilled as default } +export default IconTrolleyRoundedFilled diff --git a/src/IconTrolleySharp.tsx b/src/IconTrolleySharp.tsx index 2fe0e0a0b..4535f8b17 100644 --- a/src/IconTrolleySharp.tsx +++ b/src/IconTrolleySharp.tsx @@ -8,4 +8,4 @@ const IconTrolleySharp: React.FC = ({ ...props }) => ( ) -export { IconTrolleySharp as default } +export default IconTrolleySharp diff --git a/src/IconTrolleySharpFilled.tsx b/src/IconTrolleySharpFilled.tsx index e821a5c34..6149d7eeb 100644 --- a/src/IconTrolleySharpFilled.tsx +++ b/src/IconTrolleySharpFilled.tsx @@ -8,4 +8,4 @@ const IconTrolleySharpFilled: React.FC = ({ ...props }) => ( ) -export { IconTrolleySharpFilled as default } +export default IconTrolleySharpFilled diff --git a/src/IconTrophyOutlined.tsx b/src/IconTrophyOutlined.tsx index 1992dccbd..1159dd20c 100644 --- a/src/IconTrophyOutlined.tsx +++ b/src/IconTrophyOutlined.tsx @@ -8,4 +8,4 @@ const IconTrophyOutlined: React.FC = ({ ...props }) => ( ) -export { IconTrophyOutlined as default } +export default IconTrophyOutlined diff --git a/src/IconTrophyOutlinedFilled.tsx b/src/IconTrophyOutlinedFilled.tsx index 55d097333..e8206e602 100644 --- a/src/IconTrophyOutlinedFilled.tsx +++ b/src/IconTrophyOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconTrophyOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconTrophyOutlinedFilled as default } +export default IconTrophyOutlinedFilled diff --git a/src/IconTrophyRounded.tsx b/src/IconTrophyRounded.tsx index e496ef14a..38ad433e8 100644 --- a/src/IconTrophyRounded.tsx +++ b/src/IconTrophyRounded.tsx @@ -8,4 +8,4 @@ const IconTrophyRounded: React.FC = ({ ...props }) => ( ) -export { IconTrophyRounded as default } +export default IconTrophyRounded diff --git a/src/IconTrophyRoundedFilled.tsx b/src/IconTrophyRoundedFilled.tsx index 47ae4b21c..2e93a802c 100644 --- a/src/IconTrophyRoundedFilled.tsx +++ b/src/IconTrophyRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconTrophyRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconTrophyRoundedFilled as default } +export default IconTrophyRoundedFilled diff --git a/src/IconTrophySharp.tsx b/src/IconTrophySharp.tsx index 0021e464c..05af9e8e2 100644 --- a/src/IconTrophySharp.tsx +++ b/src/IconTrophySharp.tsx @@ -8,4 +8,4 @@ const IconTrophySharp: React.FC = ({ ...props }) => ( ) -export { IconTrophySharp as default } +export default IconTrophySharp diff --git a/src/IconTrophySharpFilled.tsx b/src/IconTrophySharpFilled.tsx index 554cb0982..ea095f1e4 100644 --- a/src/IconTrophySharpFilled.tsx +++ b/src/IconTrophySharpFilled.tsx @@ -8,4 +8,4 @@ const IconTrophySharpFilled: React.FC = ({ ...props }) => ( ) -export { IconTrophySharpFilled as default } +export default IconTrophySharpFilled diff --git a/src/IconTroubleshootOutlined.tsx b/src/IconTroubleshootOutlined.tsx index 2d424cc95..9bb5c72f2 100644 --- a/src/IconTroubleshootOutlined.tsx +++ b/src/IconTroubleshootOutlined.tsx @@ -8,4 +8,4 @@ const IconTroubleshootOutlined: React.FC = ({ ...props }) => ( ) -export { IconTroubleshootOutlined as default } +export default IconTroubleshootOutlined diff --git a/src/IconTroubleshootOutlinedFilled.tsx b/src/IconTroubleshootOutlinedFilled.tsx index 088913865..78806a172 100644 --- a/src/IconTroubleshootOutlinedFilled.tsx +++ b/src/IconTroubleshootOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconTroubleshootOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconTroubleshootOutlinedFilled as default } +export default IconTroubleshootOutlinedFilled diff --git a/src/IconTroubleshootRounded.tsx b/src/IconTroubleshootRounded.tsx index 4afa18ac8..1521a91f7 100644 --- a/src/IconTroubleshootRounded.tsx +++ b/src/IconTroubleshootRounded.tsx @@ -8,4 +8,4 @@ const IconTroubleshootRounded: React.FC = ({ ...props }) => ( ) -export { IconTroubleshootRounded as default } +export default IconTroubleshootRounded diff --git a/src/IconTroubleshootRoundedFilled.tsx b/src/IconTroubleshootRoundedFilled.tsx index b2d3bd25f..040d77f3c 100644 --- a/src/IconTroubleshootRoundedFilled.tsx +++ b/src/IconTroubleshootRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconTroubleshootRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconTroubleshootRoundedFilled as default } +export default IconTroubleshootRoundedFilled diff --git a/src/IconTroubleshootSharp.tsx b/src/IconTroubleshootSharp.tsx index 037cccb48..4cd055c17 100644 --- a/src/IconTroubleshootSharp.tsx +++ b/src/IconTroubleshootSharp.tsx @@ -8,4 +8,4 @@ const IconTroubleshootSharp: React.FC = ({ ...props }) => ( ) -export { IconTroubleshootSharp as default } +export default IconTroubleshootSharp diff --git a/src/IconTroubleshootSharpFilled.tsx b/src/IconTroubleshootSharpFilled.tsx index 91254f615..065707f93 100644 --- a/src/IconTroubleshootSharpFilled.tsx +++ b/src/IconTroubleshootSharpFilled.tsx @@ -8,4 +8,4 @@ const IconTroubleshootSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconTroubleshootSharpFilled as default } +export default IconTroubleshootSharpFilled diff --git a/src/IconTsunamiOutlined.tsx b/src/IconTsunamiOutlined.tsx index 70596223b..68f1ce17a 100644 --- a/src/IconTsunamiOutlined.tsx +++ b/src/IconTsunamiOutlined.tsx @@ -8,4 +8,4 @@ const IconTsunamiOutlined: React.FC = ({ ...props }) => ( ) -export { IconTsunamiOutlined as default } +export default IconTsunamiOutlined diff --git a/src/IconTsunamiOutlinedFilled.tsx b/src/IconTsunamiOutlinedFilled.tsx index 406827200..aa00b49a3 100644 --- a/src/IconTsunamiOutlinedFilled.tsx +++ b/src/IconTsunamiOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconTsunamiOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconTsunamiOutlinedFilled as default } +export default IconTsunamiOutlinedFilled diff --git a/src/IconTsunamiRounded.tsx b/src/IconTsunamiRounded.tsx index 7d9fdee2d..818a83c0f 100644 --- a/src/IconTsunamiRounded.tsx +++ b/src/IconTsunamiRounded.tsx @@ -8,4 +8,4 @@ const IconTsunamiRounded: React.FC = ({ ...props }) => ( ) -export { IconTsunamiRounded as default } +export default IconTsunamiRounded diff --git a/src/IconTsunamiRoundedFilled.tsx b/src/IconTsunamiRoundedFilled.tsx index 7c9b3963e..f7846939c 100644 --- a/src/IconTsunamiRoundedFilled.tsx +++ b/src/IconTsunamiRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconTsunamiRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconTsunamiRoundedFilled as default } +export default IconTsunamiRoundedFilled diff --git a/src/IconTsunamiSharp.tsx b/src/IconTsunamiSharp.tsx index be9da8880..fe54fab35 100644 --- a/src/IconTsunamiSharp.tsx +++ b/src/IconTsunamiSharp.tsx @@ -8,4 +8,4 @@ const IconTsunamiSharp: React.FC = ({ ...props }) => ( ) -export { IconTsunamiSharp as default } +export default IconTsunamiSharp diff --git a/src/IconTsunamiSharpFilled.tsx b/src/IconTsunamiSharpFilled.tsx index e3bc6b8f3..3b090a997 100644 --- a/src/IconTsunamiSharpFilled.tsx +++ b/src/IconTsunamiSharpFilled.tsx @@ -8,4 +8,4 @@ const IconTsunamiSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconTsunamiSharpFilled as default } +export default IconTsunamiSharpFilled diff --git a/src/IconTsvOutlined.tsx b/src/IconTsvOutlined.tsx index 45cdbc675..229dd0eff 100644 --- a/src/IconTsvOutlined.tsx +++ b/src/IconTsvOutlined.tsx @@ -8,4 +8,4 @@ const IconTsvOutlined: React.FC = ({ ...props }) => ( ) -export { IconTsvOutlined as default } +export default IconTsvOutlined diff --git a/src/IconTsvOutlinedFilled.tsx b/src/IconTsvOutlinedFilled.tsx index c9603e6b8..1dfe90d16 100644 --- a/src/IconTsvOutlinedFilled.tsx +++ b/src/IconTsvOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconTsvOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconTsvOutlinedFilled as default } +export default IconTsvOutlinedFilled diff --git a/src/IconTsvRounded.tsx b/src/IconTsvRounded.tsx index 51ee440fc..268ec204b 100644 --- a/src/IconTsvRounded.tsx +++ b/src/IconTsvRounded.tsx @@ -8,4 +8,4 @@ const IconTsvRounded: React.FC = ({ ...props }) => ( ) -export { IconTsvRounded as default } +export default IconTsvRounded diff --git a/src/IconTsvRoundedFilled.tsx b/src/IconTsvRoundedFilled.tsx index 5788278ed..7352e3e73 100644 --- a/src/IconTsvRoundedFilled.tsx +++ b/src/IconTsvRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconTsvRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconTsvRoundedFilled as default } +export default IconTsvRoundedFilled diff --git a/src/IconTsvSharp.tsx b/src/IconTsvSharp.tsx index d85666f4e..6d82bd8d0 100644 --- a/src/IconTsvSharp.tsx +++ b/src/IconTsvSharp.tsx @@ -8,4 +8,4 @@ const IconTsvSharp: React.FC = ({ ...props }) => ( ) -export { IconTsvSharp as default } +export default IconTsvSharp diff --git a/src/IconTsvSharpFilled.tsx b/src/IconTsvSharpFilled.tsx index a2559800b..0683b6232 100644 --- a/src/IconTsvSharpFilled.tsx +++ b/src/IconTsvSharpFilled.tsx @@ -8,4 +8,4 @@ const IconTsvSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconTsvSharpFilled as default } +export default IconTsvSharpFilled diff --git a/src/IconTtyOutlined.tsx b/src/IconTtyOutlined.tsx index 87e4d0c28..aacabcbfe 100644 --- a/src/IconTtyOutlined.tsx +++ b/src/IconTtyOutlined.tsx @@ -8,4 +8,4 @@ const IconTtyOutlined: React.FC = ({ ...props }) => ( ) -export { IconTtyOutlined as default } +export default IconTtyOutlined diff --git a/src/IconTtyOutlinedFilled.tsx b/src/IconTtyOutlinedFilled.tsx index c4e627fc1..2507f05b1 100644 --- a/src/IconTtyOutlinedFilled.tsx +++ b/src/IconTtyOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconTtyOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconTtyOutlinedFilled as default } +export default IconTtyOutlinedFilled diff --git a/src/IconTtyRounded.tsx b/src/IconTtyRounded.tsx index 74c82973a..aa786fc75 100644 --- a/src/IconTtyRounded.tsx +++ b/src/IconTtyRounded.tsx @@ -8,4 +8,4 @@ const IconTtyRounded: React.FC = ({ ...props }) => ( ) -export { IconTtyRounded as default } +export default IconTtyRounded diff --git a/src/IconTtyRoundedFilled.tsx b/src/IconTtyRoundedFilled.tsx index 52c879dd3..f0ef895c9 100644 --- a/src/IconTtyRoundedFilled.tsx +++ b/src/IconTtyRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconTtyRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconTtyRoundedFilled as default } +export default IconTtyRoundedFilled diff --git a/src/IconTtySharp.tsx b/src/IconTtySharp.tsx index 4d194a7be..5e4a9853a 100644 --- a/src/IconTtySharp.tsx +++ b/src/IconTtySharp.tsx @@ -8,4 +8,4 @@ const IconTtySharp: React.FC = ({ ...props }) => ( ) -export { IconTtySharp as default } +export default IconTtySharp diff --git a/src/IconTtySharpFilled.tsx b/src/IconTtySharpFilled.tsx index 8c325e512..4b907eb61 100644 --- a/src/IconTtySharpFilled.tsx +++ b/src/IconTtySharpFilled.tsx @@ -8,4 +8,4 @@ const IconTtySharpFilled: React.FC = ({ ...props }) => ( ) -export { IconTtySharpFilled as default } +export default IconTtySharpFilled diff --git a/src/IconTuneOutlined.tsx b/src/IconTuneOutlined.tsx index 905ac37d6..d07dc2210 100644 --- a/src/IconTuneOutlined.tsx +++ b/src/IconTuneOutlined.tsx @@ -8,4 +8,4 @@ const IconTuneOutlined: React.FC = ({ ...props }) => ( ) -export { IconTuneOutlined as default } +export default IconTuneOutlined diff --git a/src/IconTuneOutlinedFilled.tsx b/src/IconTuneOutlinedFilled.tsx index 49d4e945b..8e5f00ec7 100644 --- a/src/IconTuneOutlinedFilled.tsx +++ b/src/IconTuneOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconTuneOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconTuneOutlinedFilled as default } +export default IconTuneOutlinedFilled diff --git a/src/IconTuneRounded.tsx b/src/IconTuneRounded.tsx index 3785c2e6a..e5c7a50f3 100644 --- a/src/IconTuneRounded.tsx +++ b/src/IconTuneRounded.tsx @@ -8,4 +8,4 @@ const IconTuneRounded: React.FC = ({ ...props }) => ( ) -export { IconTuneRounded as default } +export default IconTuneRounded diff --git a/src/IconTuneRoundedFilled.tsx b/src/IconTuneRoundedFilled.tsx index ec7ea1cc9..cb6effdeb 100644 --- a/src/IconTuneRoundedFilled.tsx +++ b/src/IconTuneRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconTuneRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconTuneRoundedFilled as default } +export default IconTuneRoundedFilled diff --git a/src/IconTuneSharp.tsx b/src/IconTuneSharp.tsx index 4c59403e0..4b0682dbc 100644 --- a/src/IconTuneSharp.tsx +++ b/src/IconTuneSharp.tsx @@ -8,4 +8,4 @@ const IconTuneSharp: React.FC = ({ ...props }) => ( ) -export { IconTuneSharp as default } +export default IconTuneSharp diff --git a/src/IconTuneSharpFilled.tsx b/src/IconTuneSharpFilled.tsx index 49d337bf3..dc424e163 100644 --- a/src/IconTuneSharpFilled.tsx +++ b/src/IconTuneSharpFilled.tsx @@ -8,4 +8,4 @@ const IconTuneSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconTuneSharpFilled as default } +export default IconTuneSharpFilled diff --git a/src/IconTurnLeftOutlined.tsx b/src/IconTurnLeftOutlined.tsx index 59ee2c84f..37bf548e2 100644 --- a/src/IconTurnLeftOutlined.tsx +++ b/src/IconTurnLeftOutlined.tsx @@ -8,4 +8,4 @@ const IconTurnLeftOutlined: React.FC = ({ ...props }) => ( ) -export { IconTurnLeftOutlined as default } +export default IconTurnLeftOutlined diff --git a/src/IconTurnLeftOutlinedFilled.tsx b/src/IconTurnLeftOutlinedFilled.tsx index 8854dc8b8..1a85537aa 100644 --- a/src/IconTurnLeftOutlinedFilled.tsx +++ b/src/IconTurnLeftOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconTurnLeftOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconTurnLeftOutlinedFilled as default } +export default IconTurnLeftOutlinedFilled diff --git a/src/IconTurnLeftRounded.tsx b/src/IconTurnLeftRounded.tsx index 3da7002fa..cab95f2e3 100644 --- a/src/IconTurnLeftRounded.tsx +++ b/src/IconTurnLeftRounded.tsx @@ -8,4 +8,4 @@ const IconTurnLeftRounded: React.FC = ({ ...props }) => ( ) -export { IconTurnLeftRounded as default } +export default IconTurnLeftRounded diff --git a/src/IconTurnLeftRoundedFilled.tsx b/src/IconTurnLeftRoundedFilled.tsx index a4b9ae2e2..fc54dc01e 100644 --- a/src/IconTurnLeftRoundedFilled.tsx +++ b/src/IconTurnLeftRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconTurnLeftRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconTurnLeftRoundedFilled as default } +export default IconTurnLeftRoundedFilled diff --git a/src/IconTurnLeftSharp.tsx b/src/IconTurnLeftSharp.tsx index 1780bab44..e85a71efd 100644 --- a/src/IconTurnLeftSharp.tsx +++ b/src/IconTurnLeftSharp.tsx @@ -8,4 +8,4 @@ const IconTurnLeftSharp: React.FC = ({ ...props }) => ( ) -export { IconTurnLeftSharp as default } +export default IconTurnLeftSharp diff --git a/src/IconTurnLeftSharpFilled.tsx b/src/IconTurnLeftSharpFilled.tsx index 87f690130..e5a6e6216 100644 --- a/src/IconTurnLeftSharpFilled.tsx +++ b/src/IconTurnLeftSharpFilled.tsx @@ -8,4 +8,4 @@ const IconTurnLeftSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconTurnLeftSharpFilled as default } +export default IconTurnLeftSharpFilled diff --git a/src/IconTurnRightOutlined.tsx b/src/IconTurnRightOutlined.tsx index 40cf3f5b7..c479ad8d2 100644 --- a/src/IconTurnRightOutlined.tsx +++ b/src/IconTurnRightOutlined.tsx @@ -8,4 +8,4 @@ const IconTurnRightOutlined: React.FC = ({ ...props }) => ( ) -export { IconTurnRightOutlined as default } +export default IconTurnRightOutlined diff --git a/src/IconTurnRightOutlinedFilled.tsx b/src/IconTurnRightOutlinedFilled.tsx index 510accc88..f0b1980e0 100644 --- a/src/IconTurnRightOutlinedFilled.tsx +++ b/src/IconTurnRightOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconTurnRightOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconTurnRightOutlinedFilled as default } +export default IconTurnRightOutlinedFilled diff --git a/src/IconTurnRightRounded.tsx b/src/IconTurnRightRounded.tsx index e06f19478..3ab2b7eeb 100644 --- a/src/IconTurnRightRounded.tsx +++ b/src/IconTurnRightRounded.tsx @@ -8,4 +8,4 @@ const IconTurnRightRounded: React.FC = ({ ...props }) => ( ) -export { IconTurnRightRounded as default } +export default IconTurnRightRounded diff --git a/src/IconTurnRightRoundedFilled.tsx b/src/IconTurnRightRoundedFilled.tsx index 93b804f47..4388e5900 100644 --- a/src/IconTurnRightRoundedFilled.tsx +++ b/src/IconTurnRightRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconTurnRightRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconTurnRightRoundedFilled as default } +export default IconTurnRightRoundedFilled diff --git a/src/IconTurnRightSharp.tsx b/src/IconTurnRightSharp.tsx index 1fa686653..3b0a01f65 100644 --- a/src/IconTurnRightSharp.tsx +++ b/src/IconTurnRightSharp.tsx @@ -8,4 +8,4 @@ const IconTurnRightSharp: React.FC = ({ ...props }) => ( ) -export { IconTurnRightSharp as default } +export default IconTurnRightSharp diff --git a/src/IconTurnRightSharpFilled.tsx b/src/IconTurnRightSharpFilled.tsx index 0f4810b45..6ec275407 100644 --- a/src/IconTurnRightSharpFilled.tsx +++ b/src/IconTurnRightSharpFilled.tsx @@ -8,4 +8,4 @@ const IconTurnRightSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconTurnRightSharpFilled as default } +export default IconTurnRightSharpFilled diff --git a/src/IconTurnSharpLeftOutlined.tsx b/src/IconTurnSharpLeftOutlined.tsx index 8fc70b1ea..a70fccd1d 100644 --- a/src/IconTurnSharpLeftOutlined.tsx +++ b/src/IconTurnSharpLeftOutlined.tsx @@ -8,4 +8,4 @@ const IconTurnSharpLeftOutlined: React.FC = ({ ...props }) => ( ) -export { IconTurnSharpLeftOutlined as default } +export default IconTurnSharpLeftOutlined diff --git a/src/IconTurnSharpLeftOutlinedFilled.tsx b/src/IconTurnSharpLeftOutlinedFilled.tsx index f9fd2270d..389b9f2df 100644 --- a/src/IconTurnSharpLeftOutlinedFilled.tsx +++ b/src/IconTurnSharpLeftOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconTurnSharpLeftOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconTurnSharpLeftOutlinedFilled as default } +export default IconTurnSharpLeftOutlinedFilled diff --git a/src/IconTurnSharpLeftRounded.tsx b/src/IconTurnSharpLeftRounded.tsx index 9ba42d341..d6f3cc94d 100644 --- a/src/IconTurnSharpLeftRounded.tsx +++ b/src/IconTurnSharpLeftRounded.tsx @@ -8,4 +8,4 @@ const IconTurnSharpLeftRounded: React.FC = ({ ...props }) => ( ) -export { IconTurnSharpLeftRounded as default } +export default IconTurnSharpLeftRounded diff --git a/src/IconTurnSharpLeftRoundedFilled.tsx b/src/IconTurnSharpLeftRoundedFilled.tsx index d50cd5433..435a0a2a3 100644 --- a/src/IconTurnSharpLeftRoundedFilled.tsx +++ b/src/IconTurnSharpLeftRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconTurnSharpLeftRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconTurnSharpLeftRoundedFilled as default } +export default IconTurnSharpLeftRoundedFilled diff --git a/src/IconTurnSharpLeftSharp.tsx b/src/IconTurnSharpLeftSharp.tsx index d65a8e90d..7844badb0 100644 --- a/src/IconTurnSharpLeftSharp.tsx +++ b/src/IconTurnSharpLeftSharp.tsx @@ -8,4 +8,4 @@ const IconTurnSharpLeftSharp: React.FC = ({ ...props }) => ( ) -export { IconTurnSharpLeftSharp as default } +export default IconTurnSharpLeftSharp diff --git a/src/IconTurnSharpLeftSharpFilled.tsx b/src/IconTurnSharpLeftSharpFilled.tsx index 1210122e1..5d4f2aac5 100644 --- a/src/IconTurnSharpLeftSharpFilled.tsx +++ b/src/IconTurnSharpLeftSharpFilled.tsx @@ -8,4 +8,4 @@ const IconTurnSharpLeftSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconTurnSharpLeftSharpFilled as default } +export default IconTurnSharpLeftSharpFilled diff --git a/src/IconTurnSharpRightOutlined.tsx b/src/IconTurnSharpRightOutlined.tsx index 3117ac23d..10f7a9bf4 100644 --- a/src/IconTurnSharpRightOutlined.tsx +++ b/src/IconTurnSharpRightOutlined.tsx @@ -8,4 +8,4 @@ const IconTurnSharpRightOutlined: React.FC = ({ ...props }) => ( ) -export { IconTurnSharpRightOutlined as default } +export default IconTurnSharpRightOutlined diff --git a/src/IconTurnSharpRightOutlinedFilled.tsx b/src/IconTurnSharpRightOutlinedFilled.tsx index 19bf7946f..fa1b57740 100644 --- a/src/IconTurnSharpRightOutlinedFilled.tsx +++ b/src/IconTurnSharpRightOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconTurnSharpRightOutlinedFilled: React.FC = ({ ) -export { IconTurnSharpRightOutlinedFilled as default } +export default IconTurnSharpRightOutlinedFilled diff --git a/src/IconTurnSharpRightRounded.tsx b/src/IconTurnSharpRightRounded.tsx index 8a8a2f437..65b2532f6 100644 --- a/src/IconTurnSharpRightRounded.tsx +++ b/src/IconTurnSharpRightRounded.tsx @@ -8,4 +8,4 @@ const IconTurnSharpRightRounded: React.FC = ({ ...props }) => ( ) -export { IconTurnSharpRightRounded as default } +export default IconTurnSharpRightRounded diff --git a/src/IconTurnSharpRightRoundedFilled.tsx b/src/IconTurnSharpRightRoundedFilled.tsx index 8d5b8bd8b..563734838 100644 --- a/src/IconTurnSharpRightRoundedFilled.tsx +++ b/src/IconTurnSharpRightRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconTurnSharpRightRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconTurnSharpRightRoundedFilled as default } +export default IconTurnSharpRightRoundedFilled diff --git a/src/IconTurnSharpRightSharp.tsx b/src/IconTurnSharpRightSharp.tsx index 69a1065f9..ca3924ad4 100644 --- a/src/IconTurnSharpRightSharp.tsx +++ b/src/IconTurnSharpRightSharp.tsx @@ -8,4 +8,4 @@ const IconTurnSharpRightSharp: React.FC = ({ ...props }) => ( ) -export { IconTurnSharpRightSharp as default } +export default IconTurnSharpRightSharp diff --git a/src/IconTurnSharpRightSharpFilled.tsx b/src/IconTurnSharpRightSharpFilled.tsx index 8e79b9b5e..1d98348d5 100644 --- a/src/IconTurnSharpRightSharpFilled.tsx +++ b/src/IconTurnSharpRightSharpFilled.tsx @@ -8,4 +8,4 @@ const IconTurnSharpRightSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconTurnSharpRightSharpFilled as default } +export default IconTurnSharpRightSharpFilled diff --git a/src/IconTurnSlightLeftOutlined.tsx b/src/IconTurnSlightLeftOutlined.tsx index e51583eef..c639a062b 100644 --- a/src/IconTurnSlightLeftOutlined.tsx +++ b/src/IconTurnSlightLeftOutlined.tsx @@ -8,4 +8,4 @@ const IconTurnSlightLeftOutlined: React.FC = ({ ...props }) => ( ) -export { IconTurnSlightLeftOutlined as default } +export default IconTurnSlightLeftOutlined diff --git a/src/IconTurnSlightLeftOutlinedFilled.tsx b/src/IconTurnSlightLeftOutlinedFilled.tsx index d779e7298..d91e836c9 100644 --- a/src/IconTurnSlightLeftOutlinedFilled.tsx +++ b/src/IconTurnSlightLeftOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconTurnSlightLeftOutlinedFilled: React.FC = ({ ) -export { IconTurnSlightLeftOutlinedFilled as default } +export default IconTurnSlightLeftOutlinedFilled diff --git a/src/IconTurnSlightLeftRounded.tsx b/src/IconTurnSlightLeftRounded.tsx index d50d442f1..04014675a 100644 --- a/src/IconTurnSlightLeftRounded.tsx +++ b/src/IconTurnSlightLeftRounded.tsx @@ -8,4 +8,4 @@ const IconTurnSlightLeftRounded: React.FC = ({ ...props }) => ( ) -export { IconTurnSlightLeftRounded as default } +export default IconTurnSlightLeftRounded diff --git a/src/IconTurnSlightLeftRoundedFilled.tsx b/src/IconTurnSlightLeftRoundedFilled.tsx index 602f00951..dbb85941b 100644 --- a/src/IconTurnSlightLeftRoundedFilled.tsx +++ b/src/IconTurnSlightLeftRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconTurnSlightLeftRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconTurnSlightLeftRoundedFilled as default } +export default IconTurnSlightLeftRoundedFilled diff --git a/src/IconTurnSlightLeftSharp.tsx b/src/IconTurnSlightLeftSharp.tsx index f6057ee85..0f7048e90 100644 --- a/src/IconTurnSlightLeftSharp.tsx +++ b/src/IconTurnSlightLeftSharp.tsx @@ -8,4 +8,4 @@ const IconTurnSlightLeftSharp: React.FC = ({ ...props }) => ( ) -export { IconTurnSlightLeftSharp as default } +export default IconTurnSlightLeftSharp diff --git a/src/IconTurnSlightLeftSharpFilled.tsx b/src/IconTurnSlightLeftSharpFilled.tsx index 7ae286799..617b8c1b1 100644 --- a/src/IconTurnSlightLeftSharpFilled.tsx +++ b/src/IconTurnSlightLeftSharpFilled.tsx @@ -8,4 +8,4 @@ const IconTurnSlightLeftSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconTurnSlightLeftSharpFilled as default } +export default IconTurnSlightLeftSharpFilled diff --git a/src/IconTurnSlightRightOutlined.tsx b/src/IconTurnSlightRightOutlined.tsx index 7caa22a78..d424dff28 100644 --- a/src/IconTurnSlightRightOutlined.tsx +++ b/src/IconTurnSlightRightOutlined.tsx @@ -8,4 +8,4 @@ const IconTurnSlightRightOutlined: React.FC = ({ ...props }) => ( ) -export { IconTurnSlightRightOutlined as default } +export default IconTurnSlightRightOutlined diff --git a/src/IconTurnSlightRightOutlinedFilled.tsx b/src/IconTurnSlightRightOutlinedFilled.tsx index fe872d078..d72ed40fc 100644 --- a/src/IconTurnSlightRightOutlinedFilled.tsx +++ b/src/IconTurnSlightRightOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconTurnSlightRightOutlinedFilled: React.FC = ({ ) -export { IconTurnSlightRightOutlinedFilled as default } +export default IconTurnSlightRightOutlinedFilled diff --git a/src/IconTurnSlightRightRounded.tsx b/src/IconTurnSlightRightRounded.tsx index a2ff79ccb..2a10b0cbe 100644 --- a/src/IconTurnSlightRightRounded.tsx +++ b/src/IconTurnSlightRightRounded.tsx @@ -8,4 +8,4 @@ const IconTurnSlightRightRounded: React.FC = ({ ...props }) => ( ) -export { IconTurnSlightRightRounded as default } +export default IconTurnSlightRightRounded diff --git a/src/IconTurnSlightRightRoundedFilled.tsx b/src/IconTurnSlightRightRoundedFilled.tsx index c1a07c02b..175f1999d 100644 --- a/src/IconTurnSlightRightRoundedFilled.tsx +++ b/src/IconTurnSlightRightRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconTurnSlightRightRoundedFilled: React.FC = ({ ) -export { IconTurnSlightRightRoundedFilled as default } +export default IconTurnSlightRightRoundedFilled diff --git a/src/IconTurnSlightRightSharp.tsx b/src/IconTurnSlightRightSharp.tsx index acfa69909..8ce91a282 100644 --- a/src/IconTurnSlightRightSharp.tsx +++ b/src/IconTurnSlightRightSharp.tsx @@ -8,4 +8,4 @@ const IconTurnSlightRightSharp: React.FC = ({ ...props }) => ( ) -export { IconTurnSlightRightSharp as default } +export default IconTurnSlightRightSharp diff --git a/src/IconTurnSlightRightSharpFilled.tsx b/src/IconTurnSlightRightSharpFilled.tsx index 18487f312..a44c26d84 100644 --- a/src/IconTurnSlightRightSharpFilled.tsx +++ b/src/IconTurnSlightRightSharpFilled.tsx @@ -8,4 +8,4 @@ const IconTurnSlightRightSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconTurnSlightRightSharpFilled as default } +export default IconTurnSlightRightSharpFilled diff --git a/src/IconTvGenOutlined.tsx b/src/IconTvGenOutlined.tsx index 634d20a4d..39749113f 100644 --- a/src/IconTvGenOutlined.tsx +++ b/src/IconTvGenOutlined.tsx @@ -8,4 +8,4 @@ const IconTvGenOutlined: React.FC = ({ ...props }) => ( ) -export { IconTvGenOutlined as default } +export default IconTvGenOutlined diff --git a/src/IconTvGenOutlinedFilled.tsx b/src/IconTvGenOutlinedFilled.tsx index 8119a1795..025b59d32 100644 --- a/src/IconTvGenOutlinedFilled.tsx +++ b/src/IconTvGenOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconTvGenOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconTvGenOutlinedFilled as default } +export default IconTvGenOutlinedFilled diff --git a/src/IconTvGenRounded.tsx b/src/IconTvGenRounded.tsx index ac98049a8..dea10bcf9 100644 --- a/src/IconTvGenRounded.tsx +++ b/src/IconTvGenRounded.tsx @@ -8,4 +8,4 @@ const IconTvGenRounded: React.FC = ({ ...props }) => ( ) -export { IconTvGenRounded as default } +export default IconTvGenRounded diff --git a/src/IconTvGenRoundedFilled.tsx b/src/IconTvGenRoundedFilled.tsx index 4cffa42e1..ac655da5a 100644 --- a/src/IconTvGenRoundedFilled.tsx +++ b/src/IconTvGenRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconTvGenRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconTvGenRoundedFilled as default } +export default IconTvGenRoundedFilled diff --git a/src/IconTvGenSharp.tsx b/src/IconTvGenSharp.tsx index 0271cd0c4..1554b7eb5 100644 --- a/src/IconTvGenSharp.tsx +++ b/src/IconTvGenSharp.tsx @@ -8,4 +8,4 @@ const IconTvGenSharp: React.FC = ({ ...props }) => ( ) -export { IconTvGenSharp as default } +export default IconTvGenSharp diff --git a/src/IconTvGenSharpFilled.tsx b/src/IconTvGenSharpFilled.tsx index 81a96d58c..516b67e5f 100644 --- a/src/IconTvGenSharpFilled.tsx +++ b/src/IconTvGenSharpFilled.tsx @@ -8,4 +8,4 @@ const IconTvGenSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconTvGenSharpFilled as default } +export default IconTvGenSharpFilled diff --git a/src/IconTvGuideOutlined.tsx b/src/IconTvGuideOutlined.tsx index 209b46ce8..05f1edcb1 100644 --- a/src/IconTvGuideOutlined.tsx +++ b/src/IconTvGuideOutlined.tsx @@ -8,4 +8,4 @@ const IconTvGuideOutlined: React.FC = ({ ...props }) => ( ) -export { IconTvGuideOutlined as default } +export default IconTvGuideOutlined diff --git a/src/IconTvGuideOutlinedFilled.tsx b/src/IconTvGuideOutlinedFilled.tsx index a346299ce..ca423f79f 100644 --- a/src/IconTvGuideOutlinedFilled.tsx +++ b/src/IconTvGuideOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconTvGuideOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconTvGuideOutlinedFilled as default } +export default IconTvGuideOutlinedFilled diff --git a/src/IconTvGuideRounded.tsx b/src/IconTvGuideRounded.tsx index 1f4fb4a09..433cadeb2 100644 --- a/src/IconTvGuideRounded.tsx +++ b/src/IconTvGuideRounded.tsx @@ -8,4 +8,4 @@ const IconTvGuideRounded: React.FC = ({ ...props }) => ( ) -export { IconTvGuideRounded as default } +export default IconTvGuideRounded diff --git a/src/IconTvGuideRoundedFilled.tsx b/src/IconTvGuideRoundedFilled.tsx index 3c49d122c..5ad433036 100644 --- a/src/IconTvGuideRoundedFilled.tsx +++ b/src/IconTvGuideRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconTvGuideRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconTvGuideRoundedFilled as default } +export default IconTvGuideRoundedFilled diff --git a/src/IconTvGuideSharp.tsx b/src/IconTvGuideSharp.tsx index 054fe2716..b7d8c3a30 100644 --- a/src/IconTvGuideSharp.tsx +++ b/src/IconTvGuideSharp.tsx @@ -8,4 +8,4 @@ const IconTvGuideSharp: React.FC = ({ ...props }) => ( ) -export { IconTvGuideSharp as default } +export default IconTvGuideSharp diff --git a/src/IconTvGuideSharpFilled.tsx b/src/IconTvGuideSharpFilled.tsx index efd7db6df..c230bb282 100644 --- a/src/IconTvGuideSharpFilled.tsx +++ b/src/IconTvGuideSharpFilled.tsx @@ -8,4 +8,4 @@ const IconTvGuideSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconTvGuideSharpFilled as default } +export default IconTvGuideSharpFilled diff --git a/src/IconTvOffOutlined.tsx b/src/IconTvOffOutlined.tsx index 1b4aad411..e60583005 100644 --- a/src/IconTvOffOutlined.tsx +++ b/src/IconTvOffOutlined.tsx @@ -8,4 +8,4 @@ const IconTvOffOutlined: React.FC = ({ ...props }) => ( ) -export { IconTvOffOutlined as default } +export default IconTvOffOutlined diff --git a/src/IconTvOffOutlinedFilled.tsx b/src/IconTvOffOutlinedFilled.tsx index bbe10c5da..bb59e2644 100644 --- a/src/IconTvOffOutlinedFilled.tsx +++ b/src/IconTvOffOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconTvOffOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconTvOffOutlinedFilled as default } +export default IconTvOffOutlinedFilled diff --git a/src/IconTvOffRounded.tsx b/src/IconTvOffRounded.tsx index 4ffc6b9b1..128a74217 100644 --- a/src/IconTvOffRounded.tsx +++ b/src/IconTvOffRounded.tsx @@ -8,4 +8,4 @@ const IconTvOffRounded: React.FC = ({ ...props }) => ( ) -export { IconTvOffRounded as default } +export default IconTvOffRounded diff --git a/src/IconTvOffRoundedFilled.tsx b/src/IconTvOffRoundedFilled.tsx index 55029d201..3181fd161 100644 --- a/src/IconTvOffRoundedFilled.tsx +++ b/src/IconTvOffRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconTvOffRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconTvOffRoundedFilled as default } +export default IconTvOffRoundedFilled diff --git a/src/IconTvOffSharp.tsx b/src/IconTvOffSharp.tsx index 5863090c8..3ca00722f 100644 --- a/src/IconTvOffSharp.tsx +++ b/src/IconTvOffSharp.tsx @@ -8,4 +8,4 @@ const IconTvOffSharp: React.FC = ({ ...props }) => ( ) -export { IconTvOffSharp as default } +export default IconTvOffSharp diff --git a/src/IconTvOffSharpFilled.tsx b/src/IconTvOffSharpFilled.tsx index f631d1d1e..89b621481 100644 --- a/src/IconTvOffSharpFilled.tsx +++ b/src/IconTvOffSharpFilled.tsx @@ -8,4 +8,4 @@ const IconTvOffSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconTvOffSharpFilled as default } +export default IconTvOffSharpFilled diff --git a/src/IconTvOptionsEditChannelsOutlined.tsx b/src/IconTvOptionsEditChannelsOutlined.tsx index fb399f764..f4ec27ac1 100644 --- a/src/IconTvOptionsEditChannelsOutlined.tsx +++ b/src/IconTvOptionsEditChannelsOutlined.tsx @@ -10,4 +10,4 @@ const IconTvOptionsEditChannelsOutlined: React.FC = ({ ) -export { IconTvOptionsEditChannelsOutlined as default } +export default IconTvOptionsEditChannelsOutlined diff --git a/src/IconTvOptionsEditChannelsOutlinedFilled.tsx b/src/IconTvOptionsEditChannelsOutlinedFilled.tsx index bd5c4b36d..3371b6841 100644 --- a/src/IconTvOptionsEditChannelsOutlinedFilled.tsx +++ b/src/IconTvOptionsEditChannelsOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconTvOptionsEditChannelsOutlinedFilled: React.FC = ({ ) -export { IconTvOptionsEditChannelsOutlinedFilled as default } +export default IconTvOptionsEditChannelsOutlinedFilled diff --git a/src/IconTvOptionsEditChannelsRounded.tsx b/src/IconTvOptionsEditChannelsRounded.tsx index e974660be..e0c97a651 100644 --- a/src/IconTvOptionsEditChannelsRounded.tsx +++ b/src/IconTvOptionsEditChannelsRounded.tsx @@ -10,4 +10,4 @@ const IconTvOptionsEditChannelsRounded: React.FC = ({ ) -export { IconTvOptionsEditChannelsRounded as default } +export default IconTvOptionsEditChannelsRounded diff --git a/src/IconTvOptionsEditChannelsRoundedFilled.tsx b/src/IconTvOptionsEditChannelsRoundedFilled.tsx index b3af93fdd..0334df016 100644 --- a/src/IconTvOptionsEditChannelsRoundedFilled.tsx +++ b/src/IconTvOptionsEditChannelsRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconTvOptionsEditChannelsRoundedFilled: React.FC = ({ ) -export { IconTvOptionsEditChannelsRoundedFilled as default } +export default IconTvOptionsEditChannelsRoundedFilled diff --git a/src/IconTvOptionsEditChannelsSharp.tsx b/src/IconTvOptionsEditChannelsSharp.tsx index 37d7a5d1e..c11773fed 100644 --- a/src/IconTvOptionsEditChannelsSharp.tsx +++ b/src/IconTvOptionsEditChannelsSharp.tsx @@ -8,4 +8,4 @@ const IconTvOptionsEditChannelsSharp: React.FC = ({ ...props }) => ( ) -export { IconTvOptionsEditChannelsSharp as default } +export default IconTvOptionsEditChannelsSharp diff --git a/src/IconTvOptionsEditChannelsSharpFilled.tsx b/src/IconTvOptionsEditChannelsSharpFilled.tsx index 00eff0d50..c8adcc708 100644 --- a/src/IconTvOptionsEditChannelsSharpFilled.tsx +++ b/src/IconTvOptionsEditChannelsSharpFilled.tsx @@ -10,4 +10,4 @@ const IconTvOptionsEditChannelsSharpFilled: React.FC = ({ ) -export { IconTvOptionsEditChannelsSharpFilled as default } +export default IconTvOptionsEditChannelsSharpFilled diff --git a/src/IconTvOptionsInputSettingsOutlined.tsx b/src/IconTvOptionsInputSettingsOutlined.tsx index 19559618f..8e7788344 100644 --- a/src/IconTvOptionsInputSettingsOutlined.tsx +++ b/src/IconTvOptionsInputSettingsOutlined.tsx @@ -10,4 +10,4 @@ const IconTvOptionsInputSettingsOutlined: React.FC = ({ ) -export { IconTvOptionsInputSettingsOutlined as default } +export default IconTvOptionsInputSettingsOutlined diff --git a/src/IconTvOptionsInputSettingsOutlinedFilled.tsx b/src/IconTvOptionsInputSettingsOutlinedFilled.tsx index 06bee4d43..e6f14e9e2 100644 --- a/src/IconTvOptionsInputSettingsOutlinedFilled.tsx +++ b/src/IconTvOptionsInputSettingsOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconTvOptionsInputSettingsOutlinedFilled: React.FC = ({ ) -export { IconTvOptionsInputSettingsOutlinedFilled as default } +export default IconTvOptionsInputSettingsOutlinedFilled diff --git a/src/IconTvOptionsInputSettingsRounded.tsx b/src/IconTvOptionsInputSettingsRounded.tsx index 8462f2e92..53312d4b2 100644 --- a/src/IconTvOptionsInputSettingsRounded.tsx +++ b/src/IconTvOptionsInputSettingsRounded.tsx @@ -10,4 +10,4 @@ const IconTvOptionsInputSettingsRounded: React.FC = ({ ) -export { IconTvOptionsInputSettingsRounded as default } +export default IconTvOptionsInputSettingsRounded diff --git a/src/IconTvOptionsInputSettingsRoundedFilled.tsx b/src/IconTvOptionsInputSettingsRoundedFilled.tsx index 6bc4dfc42..8ee3e7663 100644 --- a/src/IconTvOptionsInputSettingsRoundedFilled.tsx +++ b/src/IconTvOptionsInputSettingsRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconTvOptionsInputSettingsRoundedFilled: React.FC = ({ ) -export { IconTvOptionsInputSettingsRoundedFilled as default } +export default IconTvOptionsInputSettingsRoundedFilled diff --git a/src/IconTvOptionsInputSettingsSharp.tsx b/src/IconTvOptionsInputSettingsSharp.tsx index 8d9610d42..1fdabfe9d 100644 --- a/src/IconTvOptionsInputSettingsSharp.tsx +++ b/src/IconTvOptionsInputSettingsSharp.tsx @@ -8,4 +8,4 @@ const IconTvOptionsInputSettingsSharp: React.FC = ({ ...props }) => ( ) -export { IconTvOptionsInputSettingsSharp as default } +export default IconTvOptionsInputSettingsSharp diff --git a/src/IconTvOptionsInputSettingsSharpFilled.tsx b/src/IconTvOptionsInputSettingsSharpFilled.tsx index 41474b113..cc9a43399 100644 --- a/src/IconTvOptionsInputSettingsSharpFilled.tsx +++ b/src/IconTvOptionsInputSettingsSharpFilled.tsx @@ -10,4 +10,4 @@ const IconTvOptionsInputSettingsSharpFilled: React.FC = ({ ) -export { IconTvOptionsInputSettingsSharpFilled as default } +export default IconTvOptionsInputSettingsSharpFilled diff --git a/src/IconTvOutlined.tsx b/src/IconTvOutlined.tsx index f1d202c64..af3e04e90 100644 --- a/src/IconTvOutlined.tsx +++ b/src/IconTvOutlined.tsx @@ -8,4 +8,4 @@ const IconTvOutlined: React.FC = ({ ...props }) => ( ) -export { IconTvOutlined as default } +export default IconTvOutlined diff --git a/src/IconTvOutlinedFilled.tsx b/src/IconTvOutlinedFilled.tsx index 052e6773f..40a14d9ff 100644 --- a/src/IconTvOutlinedFilled.tsx +++ b/src/IconTvOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconTvOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconTvOutlinedFilled as default } +export default IconTvOutlinedFilled diff --git a/src/IconTvRemoteOutlined.tsx b/src/IconTvRemoteOutlined.tsx index c7dfe0fbc..08cbabe7e 100644 --- a/src/IconTvRemoteOutlined.tsx +++ b/src/IconTvRemoteOutlined.tsx @@ -8,4 +8,4 @@ const IconTvRemoteOutlined: React.FC = ({ ...props }) => ( ) -export { IconTvRemoteOutlined as default } +export default IconTvRemoteOutlined diff --git a/src/IconTvRemoteOutlinedFilled.tsx b/src/IconTvRemoteOutlinedFilled.tsx index ddaeb0a40..8675d77e5 100644 --- a/src/IconTvRemoteOutlinedFilled.tsx +++ b/src/IconTvRemoteOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconTvRemoteOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconTvRemoteOutlinedFilled as default } +export default IconTvRemoteOutlinedFilled diff --git a/src/IconTvRemoteRounded.tsx b/src/IconTvRemoteRounded.tsx index 0fd226541..2e5fba37b 100644 --- a/src/IconTvRemoteRounded.tsx +++ b/src/IconTvRemoteRounded.tsx @@ -8,4 +8,4 @@ const IconTvRemoteRounded: React.FC = ({ ...props }) => ( ) -export { IconTvRemoteRounded as default } +export default IconTvRemoteRounded diff --git a/src/IconTvRemoteRoundedFilled.tsx b/src/IconTvRemoteRoundedFilled.tsx index 5cc3d5ec6..cc210fc50 100644 --- a/src/IconTvRemoteRoundedFilled.tsx +++ b/src/IconTvRemoteRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconTvRemoteRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconTvRemoteRoundedFilled as default } +export default IconTvRemoteRoundedFilled diff --git a/src/IconTvRemoteSharp.tsx b/src/IconTvRemoteSharp.tsx index c8bc8817e..22c6d1296 100644 --- a/src/IconTvRemoteSharp.tsx +++ b/src/IconTvRemoteSharp.tsx @@ -8,4 +8,4 @@ const IconTvRemoteSharp: React.FC = ({ ...props }) => ( ) -export { IconTvRemoteSharp as default } +export default IconTvRemoteSharp diff --git a/src/IconTvRemoteSharpFilled.tsx b/src/IconTvRemoteSharpFilled.tsx index 3a05bd191..5bd215432 100644 --- a/src/IconTvRemoteSharpFilled.tsx +++ b/src/IconTvRemoteSharpFilled.tsx @@ -8,4 +8,4 @@ const IconTvRemoteSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconTvRemoteSharpFilled as default } +export default IconTvRemoteSharpFilled diff --git a/src/IconTvRounded.tsx b/src/IconTvRounded.tsx index 1a8b4f952..f71865a28 100644 --- a/src/IconTvRounded.tsx +++ b/src/IconTvRounded.tsx @@ -8,4 +8,4 @@ const IconTvRounded: React.FC = ({ ...props }) => ( ) -export { IconTvRounded as default } +export default IconTvRounded diff --git a/src/IconTvRoundedFilled.tsx b/src/IconTvRoundedFilled.tsx index 5b41a801e..35c7ccd86 100644 --- a/src/IconTvRoundedFilled.tsx +++ b/src/IconTvRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconTvRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconTvRoundedFilled as default } +export default IconTvRoundedFilled diff --git a/src/IconTvSharp.tsx b/src/IconTvSharp.tsx index e0fe6ae5d..3a683e753 100644 --- a/src/IconTvSharp.tsx +++ b/src/IconTvSharp.tsx @@ -8,4 +8,4 @@ const IconTvSharp: React.FC = ({ ...props }) => ( ) -export { IconTvSharp as default } +export default IconTvSharp diff --git a/src/IconTvSharpFilled.tsx b/src/IconTvSharpFilled.tsx index 962f8a088..3671254cb 100644 --- a/src/IconTvSharpFilled.tsx +++ b/src/IconTvSharpFilled.tsx @@ -8,4 +8,4 @@ const IconTvSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconTvSharpFilled as default } +export default IconTvSharpFilled diff --git a/src/IconTvSigninOutlined.tsx b/src/IconTvSigninOutlined.tsx index 6efc96a39..f80ac983b 100644 --- a/src/IconTvSigninOutlined.tsx +++ b/src/IconTvSigninOutlined.tsx @@ -8,4 +8,4 @@ const IconTvSigninOutlined: React.FC = ({ ...props }) => ( ) -export { IconTvSigninOutlined as default } +export default IconTvSigninOutlined diff --git a/src/IconTvSigninOutlinedFilled.tsx b/src/IconTvSigninOutlinedFilled.tsx index 09c1abf1c..3fe9fc867 100644 --- a/src/IconTvSigninOutlinedFilled.tsx +++ b/src/IconTvSigninOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconTvSigninOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconTvSigninOutlinedFilled as default } +export default IconTvSigninOutlinedFilled diff --git a/src/IconTvSigninRounded.tsx b/src/IconTvSigninRounded.tsx index 39c6937fb..49d101171 100644 --- a/src/IconTvSigninRounded.tsx +++ b/src/IconTvSigninRounded.tsx @@ -8,4 +8,4 @@ const IconTvSigninRounded: React.FC = ({ ...props }) => ( ) -export { IconTvSigninRounded as default } +export default IconTvSigninRounded diff --git a/src/IconTvSigninRoundedFilled.tsx b/src/IconTvSigninRoundedFilled.tsx index ca3276d7e..90bbaea62 100644 --- a/src/IconTvSigninRoundedFilled.tsx +++ b/src/IconTvSigninRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconTvSigninRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconTvSigninRoundedFilled as default } +export default IconTvSigninRoundedFilled diff --git a/src/IconTvSigninSharp.tsx b/src/IconTvSigninSharp.tsx index c98c4dbf1..149a3fcc0 100644 --- a/src/IconTvSigninSharp.tsx +++ b/src/IconTvSigninSharp.tsx @@ -8,4 +8,4 @@ const IconTvSigninSharp: React.FC = ({ ...props }) => ( ) -export { IconTvSigninSharp as default } +export default IconTvSigninSharp diff --git a/src/IconTvSigninSharpFilled.tsx b/src/IconTvSigninSharpFilled.tsx index 14c99bf54..0debf663e 100644 --- a/src/IconTvSigninSharpFilled.tsx +++ b/src/IconTvSigninSharpFilled.tsx @@ -8,4 +8,4 @@ const IconTvSigninSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconTvSigninSharpFilled as default } +export default IconTvSigninSharpFilled diff --git a/src/IconTvWithAssistantOutlined.tsx b/src/IconTvWithAssistantOutlined.tsx index 736591ffc..bd3fd81d9 100644 --- a/src/IconTvWithAssistantOutlined.tsx +++ b/src/IconTvWithAssistantOutlined.tsx @@ -8,4 +8,4 @@ const IconTvWithAssistantOutlined: React.FC = ({ ...props }) => ( ) -export { IconTvWithAssistantOutlined as default } +export default IconTvWithAssistantOutlined diff --git a/src/IconTvWithAssistantOutlinedFilled.tsx b/src/IconTvWithAssistantOutlinedFilled.tsx index 80290de7c..24317a8db 100644 --- a/src/IconTvWithAssistantOutlinedFilled.tsx +++ b/src/IconTvWithAssistantOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconTvWithAssistantOutlinedFilled: React.FC = ({ ) -export { IconTvWithAssistantOutlinedFilled as default } +export default IconTvWithAssistantOutlinedFilled diff --git a/src/IconTvWithAssistantRounded.tsx b/src/IconTvWithAssistantRounded.tsx index e84d7a28d..a2abad68c 100644 --- a/src/IconTvWithAssistantRounded.tsx +++ b/src/IconTvWithAssistantRounded.tsx @@ -8,4 +8,4 @@ const IconTvWithAssistantRounded: React.FC = ({ ...props }) => ( ) -export { IconTvWithAssistantRounded as default } +export default IconTvWithAssistantRounded diff --git a/src/IconTvWithAssistantRoundedFilled.tsx b/src/IconTvWithAssistantRoundedFilled.tsx index a95aeec83..9e114356e 100644 --- a/src/IconTvWithAssistantRoundedFilled.tsx +++ b/src/IconTvWithAssistantRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconTvWithAssistantRoundedFilled: React.FC = ({ ) -export { IconTvWithAssistantRoundedFilled as default } +export default IconTvWithAssistantRoundedFilled diff --git a/src/IconTvWithAssistantSharp.tsx b/src/IconTvWithAssistantSharp.tsx index 33a2dcda4..6bfa7e256 100644 --- a/src/IconTvWithAssistantSharp.tsx +++ b/src/IconTvWithAssistantSharp.tsx @@ -8,4 +8,4 @@ const IconTvWithAssistantSharp: React.FC = ({ ...props }) => ( ) -export { IconTvWithAssistantSharp as default } +export default IconTvWithAssistantSharp diff --git a/src/IconTvWithAssistantSharpFilled.tsx b/src/IconTvWithAssistantSharpFilled.tsx index 919a397ae..aa389f318 100644 --- a/src/IconTvWithAssistantSharpFilled.tsx +++ b/src/IconTvWithAssistantSharpFilled.tsx @@ -8,4 +8,4 @@ const IconTvWithAssistantSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconTvWithAssistantSharpFilled as default } +export default IconTvWithAssistantSharpFilled diff --git a/src/IconTwoPagerOutlined.tsx b/src/IconTwoPagerOutlined.tsx index 72ba589fa..84ee48286 100644 --- a/src/IconTwoPagerOutlined.tsx +++ b/src/IconTwoPagerOutlined.tsx @@ -8,4 +8,4 @@ const IconTwoPagerOutlined: React.FC = ({ ...props }) => ( ) -export { IconTwoPagerOutlined as default } +export default IconTwoPagerOutlined diff --git a/src/IconTwoPagerOutlinedFilled.tsx b/src/IconTwoPagerOutlinedFilled.tsx index bca6feef5..f02e9eecd 100644 --- a/src/IconTwoPagerOutlinedFilled.tsx +++ b/src/IconTwoPagerOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconTwoPagerOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconTwoPagerOutlinedFilled as default } +export default IconTwoPagerOutlinedFilled diff --git a/src/IconTwoPagerRounded.tsx b/src/IconTwoPagerRounded.tsx index c34b11ba3..0dcf9257f 100644 --- a/src/IconTwoPagerRounded.tsx +++ b/src/IconTwoPagerRounded.tsx @@ -8,4 +8,4 @@ const IconTwoPagerRounded: React.FC = ({ ...props }) => ( ) -export { IconTwoPagerRounded as default } +export default IconTwoPagerRounded diff --git a/src/IconTwoPagerRoundedFilled.tsx b/src/IconTwoPagerRoundedFilled.tsx index d8921e9c7..9075a11be 100644 --- a/src/IconTwoPagerRoundedFilled.tsx +++ b/src/IconTwoPagerRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconTwoPagerRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconTwoPagerRoundedFilled as default } +export default IconTwoPagerRoundedFilled diff --git a/src/IconTwoPagerSharp.tsx b/src/IconTwoPagerSharp.tsx index ac2d07d28..dcaa60f29 100644 --- a/src/IconTwoPagerSharp.tsx +++ b/src/IconTwoPagerSharp.tsx @@ -8,4 +8,4 @@ const IconTwoPagerSharp: React.FC = ({ ...props }) => ( ) -export { IconTwoPagerSharp as default } +export default IconTwoPagerSharp diff --git a/src/IconTwoPagerSharpFilled.tsx b/src/IconTwoPagerSharpFilled.tsx index 72b3e5a9b..46b599fde 100644 --- a/src/IconTwoPagerSharpFilled.tsx +++ b/src/IconTwoPagerSharpFilled.tsx @@ -8,4 +8,4 @@ const IconTwoPagerSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconTwoPagerSharpFilled as default } +export default IconTwoPagerSharpFilled diff --git a/src/IconTwoWheelerOutlined.tsx b/src/IconTwoWheelerOutlined.tsx index 743ca3479..0d92fdb85 100644 --- a/src/IconTwoWheelerOutlined.tsx +++ b/src/IconTwoWheelerOutlined.tsx @@ -8,4 +8,4 @@ const IconTwoWheelerOutlined: React.FC = ({ ...props }) => ( ) -export { IconTwoWheelerOutlined as default } +export default IconTwoWheelerOutlined diff --git a/src/IconTwoWheelerOutlinedFilled.tsx b/src/IconTwoWheelerOutlinedFilled.tsx index dcabde890..f95bf4d1c 100644 --- a/src/IconTwoWheelerOutlinedFilled.tsx +++ b/src/IconTwoWheelerOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconTwoWheelerOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconTwoWheelerOutlinedFilled as default } +export default IconTwoWheelerOutlinedFilled diff --git a/src/IconTwoWheelerRounded.tsx b/src/IconTwoWheelerRounded.tsx index 41dc44884..87e2c853d 100644 --- a/src/IconTwoWheelerRounded.tsx +++ b/src/IconTwoWheelerRounded.tsx @@ -8,4 +8,4 @@ const IconTwoWheelerRounded: React.FC = ({ ...props }) => ( ) -export { IconTwoWheelerRounded as default } +export default IconTwoWheelerRounded diff --git a/src/IconTwoWheelerRoundedFilled.tsx b/src/IconTwoWheelerRoundedFilled.tsx index eb4910f3a..9786ba2c2 100644 --- a/src/IconTwoWheelerRoundedFilled.tsx +++ b/src/IconTwoWheelerRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconTwoWheelerRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconTwoWheelerRoundedFilled as default } +export default IconTwoWheelerRoundedFilled diff --git a/src/IconTwoWheelerSharp.tsx b/src/IconTwoWheelerSharp.tsx index ab40de006..86d762e18 100644 --- a/src/IconTwoWheelerSharp.tsx +++ b/src/IconTwoWheelerSharp.tsx @@ -8,4 +8,4 @@ const IconTwoWheelerSharp: React.FC = ({ ...props }) => ( ) -export { IconTwoWheelerSharp as default } +export default IconTwoWheelerSharp diff --git a/src/IconTwoWheelerSharpFilled.tsx b/src/IconTwoWheelerSharpFilled.tsx index bfb102511..6c4acd5ad 100644 --- a/src/IconTwoWheelerSharpFilled.tsx +++ b/src/IconTwoWheelerSharpFilled.tsx @@ -8,4 +8,4 @@ const IconTwoWheelerSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconTwoWheelerSharpFilled as default } +export default IconTwoWheelerSharpFilled diff --git a/src/IconTypeSpecimenOutlined.tsx b/src/IconTypeSpecimenOutlined.tsx index 897b3e318..9cdbe69bd 100644 --- a/src/IconTypeSpecimenOutlined.tsx +++ b/src/IconTypeSpecimenOutlined.tsx @@ -8,4 +8,4 @@ const IconTypeSpecimenOutlined: React.FC = ({ ...props }) => ( ) -export { IconTypeSpecimenOutlined as default } +export default IconTypeSpecimenOutlined diff --git a/src/IconTypeSpecimenOutlinedFilled.tsx b/src/IconTypeSpecimenOutlinedFilled.tsx index d7e0e48bb..e84993906 100644 --- a/src/IconTypeSpecimenOutlinedFilled.tsx +++ b/src/IconTypeSpecimenOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconTypeSpecimenOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconTypeSpecimenOutlinedFilled as default } +export default IconTypeSpecimenOutlinedFilled diff --git a/src/IconTypeSpecimenRounded.tsx b/src/IconTypeSpecimenRounded.tsx index 8db69828a..2a8f67e6d 100644 --- a/src/IconTypeSpecimenRounded.tsx +++ b/src/IconTypeSpecimenRounded.tsx @@ -8,4 +8,4 @@ const IconTypeSpecimenRounded: React.FC = ({ ...props }) => ( ) -export { IconTypeSpecimenRounded as default } +export default IconTypeSpecimenRounded diff --git a/src/IconTypeSpecimenRoundedFilled.tsx b/src/IconTypeSpecimenRoundedFilled.tsx index 9e48086d3..9d2632277 100644 --- a/src/IconTypeSpecimenRoundedFilled.tsx +++ b/src/IconTypeSpecimenRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconTypeSpecimenRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconTypeSpecimenRoundedFilled as default } +export default IconTypeSpecimenRoundedFilled diff --git a/src/IconTypeSpecimenSharp.tsx b/src/IconTypeSpecimenSharp.tsx index 93dc7ead8..1c3e2b945 100644 --- a/src/IconTypeSpecimenSharp.tsx +++ b/src/IconTypeSpecimenSharp.tsx @@ -8,4 +8,4 @@ const IconTypeSpecimenSharp: React.FC = ({ ...props }) => ( ) -export { IconTypeSpecimenSharp as default } +export default IconTypeSpecimenSharp diff --git a/src/IconTypeSpecimenSharpFilled.tsx b/src/IconTypeSpecimenSharpFilled.tsx index 09d33ed76..5f839f27d 100644 --- a/src/IconTypeSpecimenSharpFilled.tsx +++ b/src/IconTypeSpecimenSharpFilled.tsx @@ -8,4 +8,4 @@ const IconTypeSpecimenSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconTypeSpecimenSharpFilled as default } +export default IconTypeSpecimenSharpFilled diff --git a/src/IconUTurnLeftOutlined.tsx b/src/IconUTurnLeftOutlined.tsx index 6a878ba03..f295a967d 100644 --- a/src/IconUTurnLeftOutlined.tsx +++ b/src/IconUTurnLeftOutlined.tsx @@ -8,4 +8,4 @@ const IconUTurnLeftOutlined: React.FC = ({ ...props }) => ( ) -export { IconUTurnLeftOutlined as default } +export default IconUTurnLeftOutlined diff --git a/src/IconUTurnLeftOutlinedFilled.tsx b/src/IconUTurnLeftOutlinedFilled.tsx index 502abe699..d0704a20a 100644 --- a/src/IconUTurnLeftOutlinedFilled.tsx +++ b/src/IconUTurnLeftOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconUTurnLeftOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconUTurnLeftOutlinedFilled as default } +export default IconUTurnLeftOutlinedFilled diff --git a/src/IconUTurnLeftRounded.tsx b/src/IconUTurnLeftRounded.tsx index 248312bef..06dc8c364 100644 --- a/src/IconUTurnLeftRounded.tsx +++ b/src/IconUTurnLeftRounded.tsx @@ -8,4 +8,4 @@ const IconUTurnLeftRounded: React.FC = ({ ...props }) => ( ) -export { IconUTurnLeftRounded as default } +export default IconUTurnLeftRounded diff --git a/src/IconUTurnLeftRoundedFilled.tsx b/src/IconUTurnLeftRoundedFilled.tsx index 7698321c2..12d0f3e44 100644 --- a/src/IconUTurnLeftRoundedFilled.tsx +++ b/src/IconUTurnLeftRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconUTurnLeftRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconUTurnLeftRoundedFilled as default } +export default IconUTurnLeftRoundedFilled diff --git a/src/IconUTurnLeftSharp.tsx b/src/IconUTurnLeftSharp.tsx index 58dac703b..e84fb3683 100644 --- a/src/IconUTurnLeftSharp.tsx +++ b/src/IconUTurnLeftSharp.tsx @@ -8,4 +8,4 @@ const IconUTurnLeftSharp: React.FC = ({ ...props }) => ( ) -export { IconUTurnLeftSharp as default } +export default IconUTurnLeftSharp diff --git a/src/IconUTurnLeftSharpFilled.tsx b/src/IconUTurnLeftSharpFilled.tsx index 9dff7be3a..198707153 100644 --- a/src/IconUTurnLeftSharpFilled.tsx +++ b/src/IconUTurnLeftSharpFilled.tsx @@ -8,4 +8,4 @@ const IconUTurnLeftSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconUTurnLeftSharpFilled as default } +export default IconUTurnLeftSharpFilled diff --git a/src/IconUTurnRightOutlined.tsx b/src/IconUTurnRightOutlined.tsx index 798f34263..006df5db1 100644 --- a/src/IconUTurnRightOutlined.tsx +++ b/src/IconUTurnRightOutlined.tsx @@ -8,4 +8,4 @@ const IconUTurnRightOutlined: React.FC = ({ ...props }) => ( ) -export { IconUTurnRightOutlined as default } +export default IconUTurnRightOutlined diff --git a/src/IconUTurnRightOutlinedFilled.tsx b/src/IconUTurnRightOutlinedFilled.tsx index 7ce0d8b72..99a2ad6a6 100644 --- a/src/IconUTurnRightOutlinedFilled.tsx +++ b/src/IconUTurnRightOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconUTurnRightOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconUTurnRightOutlinedFilled as default } +export default IconUTurnRightOutlinedFilled diff --git a/src/IconUTurnRightRounded.tsx b/src/IconUTurnRightRounded.tsx index d510f70be..dc97135c9 100644 --- a/src/IconUTurnRightRounded.tsx +++ b/src/IconUTurnRightRounded.tsx @@ -8,4 +8,4 @@ const IconUTurnRightRounded: React.FC = ({ ...props }) => ( ) -export { IconUTurnRightRounded as default } +export default IconUTurnRightRounded diff --git a/src/IconUTurnRightRoundedFilled.tsx b/src/IconUTurnRightRoundedFilled.tsx index 20c809182..596c44d38 100644 --- a/src/IconUTurnRightRoundedFilled.tsx +++ b/src/IconUTurnRightRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconUTurnRightRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconUTurnRightRoundedFilled as default } +export default IconUTurnRightRoundedFilled diff --git a/src/IconUTurnRightSharp.tsx b/src/IconUTurnRightSharp.tsx index b4745ea05..401a7e40b 100644 --- a/src/IconUTurnRightSharp.tsx +++ b/src/IconUTurnRightSharp.tsx @@ -8,4 +8,4 @@ const IconUTurnRightSharp: React.FC = ({ ...props }) => ( ) -export { IconUTurnRightSharp as default } +export default IconUTurnRightSharp diff --git a/src/IconUTurnRightSharpFilled.tsx b/src/IconUTurnRightSharpFilled.tsx index 10b11f5f0..3feddd38c 100644 --- a/src/IconUTurnRightSharpFilled.tsx +++ b/src/IconUTurnRightSharpFilled.tsx @@ -8,4 +8,4 @@ const IconUTurnRightSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconUTurnRightSharpFilled as default } +export default IconUTurnRightSharpFilled diff --git a/src/IconUlnaRadiusAltOutlined.tsx b/src/IconUlnaRadiusAltOutlined.tsx index e5993c569..21ab58ced 100644 --- a/src/IconUlnaRadiusAltOutlined.tsx +++ b/src/IconUlnaRadiusAltOutlined.tsx @@ -8,4 +8,4 @@ const IconUlnaRadiusAltOutlined: React.FC = ({ ...props }) => ( ) -export { IconUlnaRadiusAltOutlined as default } +export default IconUlnaRadiusAltOutlined diff --git a/src/IconUlnaRadiusAltOutlinedFilled.tsx b/src/IconUlnaRadiusAltOutlinedFilled.tsx index c606982d4..95a7a4ed2 100644 --- a/src/IconUlnaRadiusAltOutlinedFilled.tsx +++ b/src/IconUlnaRadiusAltOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconUlnaRadiusAltOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconUlnaRadiusAltOutlinedFilled as default } +export default IconUlnaRadiusAltOutlinedFilled diff --git a/src/IconUlnaRadiusAltRounded.tsx b/src/IconUlnaRadiusAltRounded.tsx index b564bfa56..cdadf52ad 100644 --- a/src/IconUlnaRadiusAltRounded.tsx +++ b/src/IconUlnaRadiusAltRounded.tsx @@ -8,4 +8,4 @@ const IconUlnaRadiusAltRounded: React.FC = ({ ...props }) => ( ) -export { IconUlnaRadiusAltRounded as default } +export default IconUlnaRadiusAltRounded diff --git a/src/IconUlnaRadiusAltRoundedFilled.tsx b/src/IconUlnaRadiusAltRoundedFilled.tsx index 636de3c00..5254ef14f 100644 --- a/src/IconUlnaRadiusAltRoundedFilled.tsx +++ b/src/IconUlnaRadiusAltRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconUlnaRadiusAltRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconUlnaRadiusAltRoundedFilled as default } +export default IconUlnaRadiusAltRoundedFilled diff --git a/src/IconUlnaRadiusAltSharp.tsx b/src/IconUlnaRadiusAltSharp.tsx index 487f5862e..69622269c 100644 --- a/src/IconUlnaRadiusAltSharp.tsx +++ b/src/IconUlnaRadiusAltSharp.tsx @@ -8,4 +8,4 @@ const IconUlnaRadiusAltSharp: React.FC = ({ ...props }) => ( ) -export { IconUlnaRadiusAltSharp as default } +export default IconUlnaRadiusAltSharp diff --git a/src/IconUlnaRadiusAltSharpFilled.tsx b/src/IconUlnaRadiusAltSharpFilled.tsx index dd1523196..e2e7f412d 100644 --- a/src/IconUlnaRadiusAltSharpFilled.tsx +++ b/src/IconUlnaRadiusAltSharpFilled.tsx @@ -8,4 +8,4 @@ const IconUlnaRadiusAltSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconUlnaRadiusAltSharpFilled as default } +export default IconUlnaRadiusAltSharpFilled diff --git a/src/IconUlnaRadiusOutlined.tsx b/src/IconUlnaRadiusOutlined.tsx index 28942da7e..2ca2a3d2d 100644 --- a/src/IconUlnaRadiusOutlined.tsx +++ b/src/IconUlnaRadiusOutlined.tsx @@ -8,4 +8,4 @@ const IconUlnaRadiusOutlined: React.FC = ({ ...props }) => ( ) -export { IconUlnaRadiusOutlined as default } +export default IconUlnaRadiusOutlined diff --git a/src/IconUlnaRadiusOutlinedFilled.tsx b/src/IconUlnaRadiusOutlinedFilled.tsx index 56d86ed94..19cb29de6 100644 --- a/src/IconUlnaRadiusOutlinedFilled.tsx +++ b/src/IconUlnaRadiusOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconUlnaRadiusOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconUlnaRadiusOutlinedFilled as default } +export default IconUlnaRadiusOutlinedFilled diff --git a/src/IconUlnaRadiusRounded.tsx b/src/IconUlnaRadiusRounded.tsx index a33f2dd1c..18db01157 100644 --- a/src/IconUlnaRadiusRounded.tsx +++ b/src/IconUlnaRadiusRounded.tsx @@ -8,4 +8,4 @@ const IconUlnaRadiusRounded: React.FC = ({ ...props }) => ( ) -export { IconUlnaRadiusRounded as default } +export default IconUlnaRadiusRounded diff --git a/src/IconUlnaRadiusRoundedFilled.tsx b/src/IconUlnaRadiusRoundedFilled.tsx index b4f1f0c5b..7c39ce777 100644 --- a/src/IconUlnaRadiusRoundedFilled.tsx +++ b/src/IconUlnaRadiusRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconUlnaRadiusRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconUlnaRadiusRoundedFilled as default } +export default IconUlnaRadiusRoundedFilled diff --git a/src/IconUlnaRadiusSharp.tsx b/src/IconUlnaRadiusSharp.tsx index 61d6c08a6..6d00a1fe3 100644 --- a/src/IconUlnaRadiusSharp.tsx +++ b/src/IconUlnaRadiusSharp.tsx @@ -8,4 +8,4 @@ const IconUlnaRadiusSharp: React.FC = ({ ...props }) => ( ) -export { IconUlnaRadiusSharp as default } +export default IconUlnaRadiusSharp diff --git a/src/IconUlnaRadiusSharpFilled.tsx b/src/IconUlnaRadiusSharpFilled.tsx index a3edda95b..fcef409dd 100644 --- a/src/IconUlnaRadiusSharpFilled.tsx +++ b/src/IconUlnaRadiusSharpFilled.tsx @@ -8,4 +8,4 @@ const IconUlnaRadiusSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconUlnaRadiusSharpFilled as default } +export default IconUlnaRadiusSharpFilled diff --git a/src/IconUmbrellaOutlined.tsx b/src/IconUmbrellaOutlined.tsx index 0514a490a..c58d6745e 100644 --- a/src/IconUmbrellaOutlined.tsx +++ b/src/IconUmbrellaOutlined.tsx @@ -8,4 +8,4 @@ const IconUmbrellaOutlined: React.FC = ({ ...props }) => ( ) -export { IconUmbrellaOutlined as default } +export default IconUmbrellaOutlined diff --git a/src/IconUmbrellaOutlinedFilled.tsx b/src/IconUmbrellaOutlinedFilled.tsx index f21085841..2329303cf 100644 --- a/src/IconUmbrellaOutlinedFilled.tsx +++ b/src/IconUmbrellaOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconUmbrellaOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconUmbrellaOutlinedFilled as default } +export default IconUmbrellaOutlinedFilled diff --git a/src/IconUmbrellaRounded.tsx b/src/IconUmbrellaRounded.tsx index 53717718e..fd12d3623 100644 --- a/src/IconUmbrellaRounded.tsx +++ b/src/IconUmbrellaRounded.tsx @@ -8,4 +8,4 @@ const IconUmbrellaRounded: React.FC = ({ ...props }) => ( ) -export { IconUmbrellaRounded as default } +export default IconUmbrellaRounded diff --git a/src/IconUmbrellaRoundedFilled.tsx b/src/IconUmbrellaRoundedFilled.tsx index cdb59967a..bec008d8b 100644 --- a/src/IconUmbrellaRoundedFilled.tsx +++ b/src/IconUmbrellaRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconUmbrellaRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconUmbrellaRoundedFilled as default } +export default IconUmbrellaRoundedFilled diff --git a/src/IconUmbrellaSharp.tsx b/src/IconUmbrellaSharp.tsx index ce35241b6..dfba5202e 100644 --- a/src/IconUmbrellaSharp.tsx +++ b/src/IconUmbrellaSharp.tsx @@ -8,4 +8,4 @@ const IconUmbrellaSharp: React.FC = ({ ...props }) => ( ) -export { IconUmbrellaSharp as default } +export default IconUmbrellaSharp diff --git a/src/IconUmbrellaSharpFilled.tsx b/src/IconUmbrellaSharpFilled.tsx index 834a4f7e9..b649915f3 100644 --- a/src/IconUmbrellaSharpFilled.tsx +++ b/src/IconUmbrellaSharpFilled.tsx @@ -8,4 +8,4 @@ const IconUmbrellaSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconUmbrellaSharpFilled as default } +export default IconUmbrellaSharpFilled diff --git a/src/IconUnarchiveOutlined.tsx b/src/IconUnarchiveOutlined.tsx index 4c049d81e..406e73ae4 100644 --- a/src/IconUnarchiveOutlined.tsx +++ b/src/IconUnarchiveOutlined.tsx @@ -8,4 +8,4 @@ const IconUnarchiveOutlined: React.FC = ({ ...props }) => ( ) -export { IconUnarchiveOutlined as default } +export default IconUnarchiveOutlined diff --git a/src/IconUnarchiveOutlinedFilled.tsx b/src/IconUnarchiveOutlinedFilled.tsx index 6617585d1..fc040a3f8 100644 --- a/src/IconUnarchiveOutlinedFilled.tsx +++ b/src/IconUnarchiveOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconUnarchiveOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconUnarchiveOutlinedFilled as default } +export default IconUnarchiveOutlinedFilled diff --git a/src/IconUnarchiveRounded.tsx b/src/IconUnarchiveRounded.tsx index aaf792b6b..b095e43e8 100644 --- a/src/IconUnarchiveRounded.tsx +++ b/src/IconUnarchiveRounded.tsx @@ -8,4 +8,4 @@ const IconUnarchiveRounded: React.FC = ({ ...props }) => ( ) -export { IconUnarchiveRounded as default } +export default IconUnarchiveRounded diff --git a/src/IconUnarchiveRoundedFilled.tsx b/src/IconUnarchiveRoundedFilled.tsx index f126471eb..d6c4b58cb 100644 --- a/src/IconUnarchiveRoundedFilled.tsx +++ b/src/IconUnarchiveRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconUnarchiveRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconUnarchiveRoundedFilled as default } +export default IconUnarchiveRoundedFilled diff --git a/src/IconUnarchiveSharp.tsx b/src/IconUnarchiveSharp.tsx index 744a02a3e..69470c4ea 100644 --- a/src/IconUnarchiveSharp.tsx +++ b/src/IconUnarchiveSharp.tsx @@ -8,4 +8,4 @@ const IconUnarchiveSharp: React.FC = ({ ...props }) => ( ) -export { IconUnarchiveSharp as default } +export default IconUnarchiveSharp diff --git a/src/IconUnarchiveSharpFilled.tsx b/src/IconUnarchiveSharpFilled.tsx index 8f95cb78e..49a0a823b 100644 --- a/src/IconUnarchiveSharpFilled.tsx +++ b/src/IconUnarchiveSharpFilled.tsx @@ -8,4 +8,4 @@ const IconUnarchiveSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconUnarchiveSharpFilled as default } +export default IconUnarchiveSharpFilled diff --git a/src/IconUndoOutlined.tsx b/src/IconUndoOutlined.tsx index 3276541c9..2e267e94b 100644 --- a/src/IconUndoOutlined.tsx +++ b/src/IconUndoOutlined.tsx @@ -8,4 +8,4 @@ const IconUndoOutlined: React.FC = ({ ...props }) => ( ) -export { IconUndoOutlined as default } +export default IconUndoOutlined diff --git a/src/IconUndoOutlinedFilled.tsx b/src/IconUndoOutlinedFilled.tsx index a0722ba61..239a7162d 100644 --- a/src/IconUndoOutlinedFilled.tsx +++ b/src/IconUndoOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconUndoOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconUndoOutlinedFilled as default } +export default IconUndoOutlinedFilled diff --git a/src/IconUndoRounded.tsx b/src/IconUndoRounded.tsx index cac0f62e1..a677c0f0c 100644 --- a/src/IconUndoRounded.tsx +++ b/src/IconUndoRounded.tsx @@ -8,4 +8,4 @@ const IconUndoRounded: React.FC = ({ ...props }) => ( ) -export { IconUndoRounded as default } +export default IconUndoRounded diff --git a/src/IconUndoRoundedFilled.tsx b/src/IconUndoRoundedFilled.tsx index 48eb24fe2..c29beda3d 100644 --- a/src/IconUndoRoundedFilled.tsx +++ b/src/IconUndoRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconUndoRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconUndoRoundedFilled as default } +export default IconUndoRoundedFilled diff --git a/src/IconUndoSharp.tsx b/src/IconUndoSharp.tsx index 4587a8084..5e9db8cac 100644 --- a/src/IconUndoSharp.tsx +++ b/src/IconUndoSharp.tsx @@ -8,4 +8,4 @@ const IconUndoSharp: React.FC = ({ ...props }) => ( ) -export { IconUndoSharp as default } +export default IconUndoSharp diff --git a/src/IconUndoSharpFilled.tsx b/src/IconUndoSharpFilled.tsx index 35c2494ba..6183f5b3a 100644 --- a/src/IconUndoSharpFilled.tsx +++ b/src/IconUndoSharpFilled.tsx @@ -8,4 +8,4 @@ const IconUndoSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconUndoSharpFilled as default } +export default IconUndoSharpFilled diff --git a/src/IconUnfoldLessDoubleOutlined.tsx b/src/IconUnfoldLessDoubleOutlined.tsx index 8b7f64c8b..476c1e1dd 100644 --- a/src/IconUnfoldLessDoubleOutlined.tsx +++ b/src/IconUnfoldLessDoubleOutlined.tsx @@ -8,4 +8,4 @@ const IconUnfoldLessDoubleOutlined: React.FC = ({ ...props }) => ( ) -export { IconUnfoldLessDoubleOutlined as default } +export default IconUnfoldLessDoubleOutlined diff --git a/src/IconUnfoldLessDoubleOutlinedFilled.tsx b/src/IconUnfoldLessDoubleOutlinedFilled.tsx index 2ad955783..53a5b5592 100644 --- a/src/IconUnfoldLessDoubleOutlinedFilled.tsx +++ b/src/IconUnfoldLessDoubleOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconUnfoldLessDoubleOutlinedFilled: React.FC = ({ ) -export { IconUnfoldLessDoubleOutlinedFilled as default } +export default IconUnfoldLessDoubleOutlinedFilled diff --git a/src/IconUnfoldLessDoubleRounded.tsx b/src/IconUnfoldLessDoubleRounded.tsx index a734f3af2..0bf57cc9f 100644 --- a/src/IconUnfoldLessDoubleRounded.tsx +++ b/src/IconUnfoldLessDoubleRounded.tsx @@ -8,4 +8,4 @@ const IconUnfoldLessDoubleRounded: React.FC = ({ ...props }) => ( ) -export { IconUnfoldLessDoubleRounded as default } +export default IconUnfoldLessDoubleRounded diff --git a/src/IconUnfoldLessDoubleRoundedFilled.tsx b/src/IconUnfoldLessDoubleRoundedFilled.tsx index a0b9675ca..72879aa71 100644 --- a/src/IconUnfoldLessDoubleRoundedFilled.tsx +++ b/src/IconUnfoldLessDoubleRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconUnfoldLessDoubleRoundedFilled: React.FC = ({ ) -export { IconUnfoldLessDoubleRoundedFilled as default } +export default IconUnfoldLessDoubleRoundedFilled diff --git a/src/IconUnfoldLessDoubleSharp.tsx b/src/IconUnfoldLessDoubleSharp.tsx index a1b319ddc..1f1482e6b 100644 --- a/src/IconUnfoldLessDoubleSharp.tsx +++ b/src/IconUnfoldLessDoubleSharp.tsx @@ -8,4 +8,4 @@ const IconUnfoldLessDoubleSharp: React.FC = ({ ...props }) => ( ) -export { IconUnfoldLessDoubleSharp as default } +export default IconUnfoldLessDoubleSharp diff --git a/src/IconUnfoldLessDoubleSharpFilled.tsx b/src/IconUnfoldLessDoubleSharpFilled.tsx index 9631c5310..56f80e350 100644 --- a/src/IconUnfoldLessDoubleSharpFilled.tsx +++ b/src/IconUnfoldLessDoubleSharpFilled.tsx @@ -8,4 +8,4 @@ const IconUnfoldLessDoubleSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconUnfoldLessDoubleSharpFilled as default } +export default IconUnfoldLessDoubleSharpFilled diff --git a/src/IconUnfoldLessOutlined.tsx b/src/IconUnfoldLessOutlined.tsx index 0bdc940e3..3b89c5497 100644 --- a/src/IconUnfoldLessOutlined.tsx +++ b/src/IconUnfoldLessOutlined.tsx @@ -8,4 +8,4 @@ const IconUnfoldLessOutlined: React.FC = ({ ...props }) => ( ) -export { IconUnfoldLessOutlined as default } +export default IconUnfoldLessOutlined diff --git a/src/IconUnfoldLessOutlinedFilled.tsx b/src/IconUnfoldLessOutlinedFilled.tsx index 0fe5fa7d4..645346ff5 100644 --- a/src/IconUnfoldLessOutlinedFilled.tsx +++ b/src/IconUnfoldLessOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconUnfoldLessOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconUnfoldLessOutlinedFilled as default } +export default IconUnfoldLessOutlinedFilled diff --git a/src/IconUnfoldLessRounded.tsx b/src/IconUnfoldLessRounded.tsx index 0c651ed14..93a350012 100644 --- a/src/IconUnfoldLessRounded.tsx +++ b/src/IconUnfoldLessRounded.tsx @@ -8,4 +8,4 @@ const IconUnfoldLessRounded: React.FC = ({ ...props }) => ( ) -export { IconUnfoldLessRounded as default } +export default IconUnfoldLessRounded diff --git a/src/IconUnfoldLessRoundedFilled.tsx b/src/IconUnfoldLessRoundedFilled.tsx index 717f676b0..558ab03cd 100644 --- a/src/IconUnfoldLessRoundedFilled.tsx +++ b/src/IconUnfoldLessRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconUnfoldLessRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconUnfoldLessRoundedFilled as default } +export default IconUnfoldLessRoundedFilled diff --git a/src/IconUnfoldLessSharp.tsx b/src/IconUnfoldLessSharp.tsx index ff1e33409..7cfd529b8 100644 --- a/src/IconUnfoldLessSharp.tsx +++ b/src/IconUnfoldLessSharp.tsx @@ -8,4 +8,4 @@ const IconUnfoldLessSharp: React.FC = ({ ...props }) => ( ) -export { IconUnfoldLessSharp as default } +export default IconUnfoldLessSharp diff --git a/src/IconUnfoldLessSharpFilled.tsx b/src/IconUnfoldLessSharpFilled.tsx index ce736eb63..1d1e430b3 100644 --- a/src/IconUnfoldLessSharpFilled.tsx +++ b/src/IconUnfoldLessSharpFilled.tsx @@ -8,4 +8,4 @@ const IconUnfoldLessSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconUnfoldLessSharpFilled as default } +export default IconUnfoldLessSharpFilled diff --git a/src/IconUnfoldMoreDoubleOutlined.tsx b/src/IconUnfoldMoreDoubleOutlined.tsx index 76cb84a4e..933b7c43c 100644 --- a/src/IconUnfoldMoreDoubleOutlined.tsx +++ b/src/IconUnfoldMoreDoubleOutlined.tsx @@ -8,4 +8,4 @@ const IconUnfoldMoreDoubleOutlined: React.FC = ({ ...props }) => ( ) -export { IconUnfoldMoreDoubleOutlined as default } +export default IconUnfoldMoreDoubleOutlined diff --git a/src/IconUnfoldMoreDoubleOutlinedFilled.tsx b/src/IconUnfoldMoreDoubleOutlinedFilled.tsx index 9af0f9ba5..6e5953326 100644 --- a/src/IconUnfoldMoreDoubleOutlinedFilled.tsx +++ b/src/IconUnfoldMoreDoubleOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconUnfoldMoreDoubleOutlinedFilled: React.FC = ({ ) -export { IconUnfoldMoreDoubleOutlinedFilled as default } +export default IconUnfoldMoreDoubleOutlinedFilled diff --git a/src/IconUnfoldMoreDoubleRounded.tsx b/src/IconUnfoldMoreDoubleRounded.tsx index 82422594b..b32568900 100644 --- a/src/IconUnfoldMoreDoubleRounded.tsx +++ b/src/IconUnfoldMoreDoubleRounded.tsx @@ -8,4 +8,4 @@ const IconUnfoldMoreDoubleRounded: React.FC = ({ ...props }) => ( ) -export { IconUnfoldMoreDoubleRounded as default } +export default IconUnfoldMoreDoubleRounded diff --git a/src/IconUnfoldMoreDoubleRoundedFilled.tsx b/src/IconUnfoldMoreDoubleRoundedFilled.tsx index 9bd0d4c87..05f28aef2 100644 --- a/src/IconUnfoldMoreDoubleRoundedFilled.tsx +++ b/src/IconUnfoldMoreDoubleRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconUnfoldMoreDoubleRoundedFilled: React.FC = ({ ) -export { IconUnfoldMoreDoubleRoundedFilled as default } +export default IconUnfoldMoreDoubleRoundedFilled diff --git a/src/IconUnfoldMoreDoubleSharp.tsx b/src/IconUnfoldMoreDoubleSharp.tsx index 78d3ccbc6..c95267a13 100644 --- a/src/IconUnfoldMoreDoubleSharp.tsx +++ b/src/IconUnfoldMoreDoubleSharp.tsx @@ -8,4 +8,4 @@ const IconUnfoldMoreDoubleSharp: React.FC = ({ ...props }) => ( ) -export { IconUnfoldMoreDoubleSharp as default } +export default IconUnfoldMoreDoubleSharp diff --git a/src/IconUnfoldMoreDoubleSharpFilled.tsx b/src/IconUnfoldMoreDoubleSharpFilled.tsx index 951818c6d..ac83f927e 100644 --- a/src/IconUnfoldMoreDoubleSharpFilled.tsx +++ b/src/IconUnfoldMoreDoubleSharpFilled.tsx @@ -8,4 +8,4 @@ const IconUnfoldMoreDoubleSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconUnfoldMoreDoubleSharpFilled as default } +export default IconUnfoldMoreDoubleSharpFilled diff --git a/src/IconUnfoldMoreOutlined.tsx b/src/IconUnfoldMoreOutlined.tsx index 2c3de3bc6..c2020deb8 100644 --- a/src/IconUnfoldMoreOutlined.tsx +++ b/src/IconUnfoldMoreOutlined.tsx @@ -8,4 +8,4 @@ const IconUnfoldMoreOutlined: React.FC = ({ ...props }) => ( ) -export { IconUnfoldMoreOutlined as default } +export default IconUnfoldMoreOutlined diff --git a/src/IconUnfoldMoreOutlinedFilled.tsx b/src/IconUnfoldMoreOutlinedFilled.tsx index 44a2d6ef4..da580e45f 100644 --- a/src/IconUnfoldMoreOutlinedFilled.tsx +++ b/src/IconUnfoldMoreOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconUnfoldMoreOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconUnfoldMoreOutlinedFilled as default } +export default IconUnfoldMoreOutlinedFilled diff --git a/src/IconUnfoldMoreRounded.tsx b/src/IconUnfoldMoreRounded.tsx index 81ef30f53..248c6d3c0 100644 --- a/src/IconUnfoldMoreRounded.tsx +++ b/src/IconUnfoldMoreRounded.tsx @@ -8,4 +8,4 @@ const IconUnfoldMoreRounded: React.FC = ({ ...props }) => ( ) -export { IconUnfoldMoreRounded as default } +export default IconUnfoldMoreRounded diff --git a/src/IconUnfoldMoreRoundedFilled.tsx b/src/IconUnfoldMoreRoundedFilled.tsx index 4aad2244a..9d6982966 100644 --- a/src/IconUnfoldMoreRoundedFilled.tsx +++ b/src/IconUnfoldMoreRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconUnfoldMoreRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconUnfoldMoreRoundedFilled as default } +export default IconUnfoldMoreRoundedFilled diff --git a/src/IconUnfoldMoreSharp.tsx b/src/IconUnfoldMoreSharp.tsx index a098360bd..e9e5e767d 100644 --- a/src/IconUnfoldMoreSharp.tsx +++ b/src/IconUnfoldMoreSharp.tsx @@ -8,4 +8,4 @@ const IconUnfoldMoreSharp: React.FC = ({ ...props }) => ( ) -export { IconUnfoldMoreSharp as default } +export default IconUnfoldMoreSharp diff --git a/src/IconUnfoldMoreSharpFilled.tsx b/src/IconUnfoldMoreSharpFilled.tsx index 2a96d6ee3..77f1a1725 100644 --- a/src/IconUnfoldMoreSharpFilled.tsx +++ b/src/IconUnfoldMoreSharpFilled.tsx @@ -8,4 +8,4 @@ const IconUnfoldMoreSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconUnfoldMoreSharpFilled as default } +export default IconUnfoldMoreSharpFilled diff --git a/src/IconUngroupOutlined.tsx b/src/IconUngroupOutlined.tsx index d14d15f3e..2016baf33 100644 --- a/src/IconUngroupOutlined.tsx +++ b/src/IconUngroupOutlined.tsx @@ -8,4 +8,4 @@ const IconUngroupOutlined: React.FC = ({ ...props }) => ( ) -export { IconUngroupOutlined as default } +export default IconUngroupOutlined diff --git a/src/IconUngroupOutlinedFilled.tsx b/src/IconUngroupOutlinedFilled.tsx index 3020373c3..0f8e881e1 100644 --- a/src/IconUngroupOutlinedFilled.tsx +++ b/src/IconUngroupOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconUngroupOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconUngroupOutlinedFilled as default } +export default IconUngroupOutlinedFilled diff --git a/src/IconUngroupRounded.tsx b/src/IconUngroupRounded.tsx index a9bfd5fc0..de0a41123 100644 --- a/src/IconUngroupRounded.tsx +++ b/src/IconUngroupRounded.tsx @@ -8,4 +8,4 @@ const IconUngroupRounded: React.FC = ({ ...props }) => ( ) -export { IconUngroupRounded as default } +export default IconUngroupRounded diff --git a/src/IconUngroupRoundedFilled.tsx b/src/IconUngroupRoundedFilled.tsx index 359fae40a..fde8dc18c 100644 --- a/src/IconUngroupRoundedFilled.tsx +++ b/src/IconUngroupRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconUngroupRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconUngroupRoundedFilled as default } +export default IconUngroupRoundedFilled diff --git a/src/IconUngroupSharp.tsx b/src/IconUngroupSharp.tsx index c406e0ace..dd70449da 100644 --- a/src/IconUngroupSharp.tsx +++ b/src/IconUngroupSharp.tsx @@ -8,4 +8,4 @@ const IconUngroupSharp: React.FC = ({ ...props }) => ( ) -export { IconUngroupSharp as default } +export default IconUngroupSharp diff --git a/src/IconUngroupSharpFilled.tsx b/src/IconUngroupSharpFilled.tsx index 8dccda722..d83c06a02 100644 --- a/src/IconUngroupSharpFilled.tsx +++ b/src/IconUngroupSharpFilled.tsx @@ -8,4 +8,4 @@ const IconUngroupSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconUngroupSharpFilled as default } +export default IconUngroupSharpFilled diff --git a/src/IconUniversalCurrencyAltOutlined.tsx b/src/IconUniversalCurrencyAltOutlined.tsx index 780f235b7..e32d6f1d3 100644 --- a/src/IconUniversalCurrencyAltOutlined.tsx +++ b/src/IconUniversalCurrencyAltOutlined.tsx @@ -10,4 +10,4 @@ const IconUniversalCurrencyAltOutlined: React.FC = ({ ) -export { IconUniversalCurrencyAltOutlined as default } +export default IconUniversalCurrencyAltOutlined diff --git a/src/IconUniversalCurrencyAltOutlinedFilled.tsx b/src/IconUniversalCurrencyAltOutlinedFilled.tsx index de61db979..dc8aff926 100644 --- a/src/IconUniversalCurrencyAltOutlinedFilled.tsx +++ b/src/IconUniversalCurrencyAltOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconUniversalCurrencyAltOutlinedFilled: React.FC = ({ ) -export { IconUniversalCurrencyAltOutlinedFilled as default } +export default IconUniversalCurrencyAltOutlinedFilled diff --git a/src/IconUniversalCurrencyAltRounded.tsx b/src/IconUniversalCurrencyAltRounded.tsx index 53152dbff..52b404ec5 100644 --- a/src/IconUniversalCurrencyAltRounded.tsx +++ b/src/IconUniversalCurrencyAltRounded.tsx @@ -8,4 +8,4 @@ const IconUniversalCurrencyAltRounded: React.FC = ({ ...props }) => ( ) -export { IconUniversalCurrencyAltRounded as default } +export default IconUniversalCurrencyAltRounded diff --git a/src/IconUniversalCurrencyAltRoundedFilled.tsx b/src/IconUniversalCurrencyAltRoundedFilled.tsx index a40442df7..e16a3e115 100644 --- a/src/IconUniversalCurrencyAltRoundedFilled.tsx +++ b/src/IconUniversalCurrencyAltRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconUniversalCurrencyAltRoundedFilled: React.FC = ({ ) -export { IconUniversalCurrencyAltRoundedFilled as default } +export default IconUniversalCurrencyAltRoundedFilled diff --git a/src/IconUniversalCurrencyAltSharp.tsx b/src/IconUniversalCurrencyAltSharp.tsx index 63ce2e7dc..4e961fd3e 100644 --- a/src/IconUniversalCurrencyAltSharp.tsx +++ b/src/IconUniversalCurrencyAltSharp.tsx @@ -8,4 +8,4 @@ const IconUniversalCurrencyAltSharp: React.FC = ({ ...props }) => ( ) -export { IconUniversalCurrencyAltSharp as default } +export default IconUniversalCurrencyAltSharp diff --git a/src/IconUniversalCurrencyAltSharpFilled.tsx b/src/IconUniversalCurrencyAltSharpFilled.tsx index fa92388a4..626259af7 100644 --- a/src/IconUniversalCurrencyAltSharpFilled.tsx +++ b/src/IconUniversalCurrencyAltSharpFilled.tsx @@ -10,4 +10,4 @@ const IconUniversalCurrencyAltSharpFilled: React.FC = ({ ) -export { IconUniversalCurrencyAltSharpFilled as default } +export default IconUniversalCurrencyAltSharpFilled diff --git a/src/IconUniversalCurrencyOutlined.tsx b/src/IconUniversalCurrencyOutlined.tsx index e22f92762..191ee07ff 100644 --- a/src/IconUniversalCurrencyOutlined.tsx +++ b/src/IconUniversalCurrencyOutlined.tsx @@ -8,4 +8,4 @@ const IconUniversalCurrencyOutlined: React.FC = ({ ...props }) => ( ) -export { IconUniversalCurrencyOutlined as default } +export default IconUniversalCurrencyOutlined diff --git a/src/IconUniversalCurrencyOutlinedFilled.tsx b/src/IconUniversalCurrencyOutlinedFilled.tsx index 76be5d2a4..50cc0a554 100644 --- a/src/IconUniversalCurrencyOutlinedFilled.tsx +++ b/src/IconUniversalCurrencyOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconUniversalCurrencyOutlinedFilled: React.FC = ({ ) -export { IconUniversalCurrencyOutlinedFilled as default } +export default IconUniversalCurrencyOutlinedFilled diff --git a/src/IconUniversalCurrencyRounded.tsx b/src/IconUniversalCurrencyRounded.tsx index c13d971b1..f583b5808 100644 --- a/src/IconUniversalCurrencyRounded.tsx +++ b/src/IconUniversalCurrencyRounded.tsx @@ -8,4 +8,4 @@ const IconUniversalCurrencyRounded: React.FC = ({ ...props }) => ( ) -export { IconUniversalCurrencyRounded as default } +export default IconUniversalCurrencyRounded diff --git a/src/IconUniversalCurrencyRoundedFilled.tsx b/src/IconUniversalCurrencyRoundedFilled.tsx index cbc506387..d19337300 100644 --- a/src/IconUniversalCurrencyRoundedFilled.tsx +++ b/src/IconUniversalCurrencyRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconUniversalCurrencyRoundedFilled: React.FC = ({ ) -export { IconUniversalCurrencyRoundedFilled as default } +export default IconUniversalCurrencyRoundedFilled diff --git a/src/IconUniversalCurrencySharp.tsx b/src/IconUniversalCurrencySharp.tsx index d613382c7..b8f3c6d7e 100644 --- a/src/IconUniversalCurrencySharp.tsx +++ b/src/IconUniversalCurrencySharp.tsx @@ -8,4 +8,4 @@ const IconUniversalCurrencySharp: React.FC = ({ ...props }) => ( ) -export { IconUniversalCurrencySharp as default } +export default IconUniversalCurrencySharp diff --git a/src/IconUniversalCurrencySharpFilled.tsx b/src/IconUniversalCurrencySharpFilled.tsx index 9ee98cb1c..f2f66f6f3 100644 --- a/src/IconUniversalCurrencySharpFilled.tsx +++ b/src/IconUniversalCurrencySharpFilled.tsx @@ -10,4 +10,4 @@ const IconUniversalCurrencySharpFilled: React.FC = ({ ) -export { IconUniversalCurrencySharpFilled as default } +export default IconUniversalCurrencySharpFilled diff --git a/src/IconUniversalLocalOutlined.tsx b/src/IconUniversalLocalOutlined.tsx index cd6138d5c..4be227dbf 100644 --- a/src/IconUniversalLocalOutlined.tsx +++ b/src/IconUniversalLocalOutlined.tsx @@ -8,4 +8,4 @@ const IconUniversalLocalOutlined: React.FC = ({ ...props }) => ( ) -export { IconUniversalLocalOutlined as default } +export default IconUniversalLocalOutlined diff --git a/src/IconUniversalLocalOutlinedFilled.tsx b/src/IconUniversalLocalOutlinedFilled.tsx index ef4eff7e0..c48df03b7 100644 --- a/src/IconUniversalLocalOutlinedFilled.tsx +++ b/src/IconUniversalLocalOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconUniversalLocalOutlinedFilled: React.FC = ({ ) -export { IconUniversalLocalOutlinedFilled as default } +export default IconUniversalLocalOutlinedFilled diff --git a/src/IconUniversalLocalRounded.tsx b/src/IconUniversalLocalRounded.tsx index 68bb60a90..9dec2d1f2 100644 --- a/src/IconUniversalLocalRounded.tsx +++ b/src/IconUniversalLocalRounded.tsx @@ -8,4 +8,4 @@ const IconUniversalLocalRounded: React.FC = ({ ...props }) => ( ) -export { IconUniversalLocalRounded as default } +export default IconUniversalLocalRounded diff --git a/src/IconUniversalLocalRoundedFilled.tsx b/src/IconUniversalLocalRoundedFilled.tsx index 850d7b08a..e03c7c628 100644 --- a/src/IconUniversalLocalRoundedFilled.tsx +++ b/src/IconUniversalLocalRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconUniversalLocalRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconUniversalLocalRoundedFilled as default } +export default IconUniversalLocalRoundedFilled diff --git a/src/IconUniversalLocalSharp.tsx b/src/IconUniversalLocalSharp.tsx index 3b8c9fb9b..d291b8709 100644 --- a/src/IconUniversalLocalSharp.tsx +++ b/src/IconUniversalLocalSharp.tsx @@ -8,4 +8,4 @@ const IconUniversalLocalSharp: React.FC = ({ ...props }) => ( ) -export { IconUniversalLocalSharp as default } +export default IconUniversalLocalSharp diff --git a/src/IconUniversalLocalSharpFilled.tsx b/src/IconUniversalLocalSharpFilled.tsx index ee72b1b07..e5095570b 100644 --- a/src/IconUniversalLocalSharpFilled.tsx +++ b/src/IconUniversalLocalSharpFilled.tsx @@ -8,4 +8,4 @@ const IconUniversalLocalSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconUniversalLocalSharpFilled as default } +export default IconUniversalLocalSharpFilled diff --git a/src/IconUnknown2Outlined.tsx b/src/IconUnknown2Outlined.tsx index 1eb30ba85..af798dcde 100644 --- a/src/IconUnknown2Outlined.tsx +++ b/src/IconUnknown2Outlined.tsx @@ -8,4 +8,4 @@ const IconUnknown2Outlined: React.FC = ({ ...props }) => ( ) -export { IconUnknown2Outlined as default } +export default IconUnknown2Outlined diff --git a/src/IconUnknown2OutlinedFilled.tsx b/src/IconUnknown2OutlinedFilled.tsx index 619862fe7..3089aa2eb 100644 --- a/src/IconUnknown2OutlinedFilled.tsx +++ b/src/IconUnknown2OutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconUnknown2OutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconUnknown2OutlinedFilled as default } +export default IconUnknown2OutlinedFilled diff --git a/src/IconUnknown2Rounded.tsx b/src/IconUnknown2Rounded.tsx index a419e0ce0..530b275f7 100644 --- a/src/IconUnknown2Rounded.tsx +++ b/src/IconUnknown2Rounded.tsx @@ -8,4 +8,4 @@ const IconUnknown2Rounded: React.FC = ({ ...props }) => ( ) -export { IconUnknown2Rounded as default } +export default IconUnknown2Rounded diff --git a/src/IconUnknown2RoundedFilled.tsx b/src/IconUnknown2RoundedFilled.tsx index a64e3994f..f3852e61d 100644 --- a/src/IconUnknown2RoundedFilled.tsx +++ b/src/IconUnknown2RoundedFilled.tsx @@ -8,4 +8,4 @@ const IconUnknown2RoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconUnknown2RoundedFilled as default } +export default IconUnknown2RoundedFilled diff --git a/src/IconUnknown2Sharp.tsx b/src/IconUnknown2Sharp.tsx index f3fb14489..50f8666fb 100644 --- a/src/IconUnknown2Sharp.tsx +++ b/src/IconUnknown2Sharp.tsx @@ -8,4 +8,4 @@ const IconUnknown2Sharp: React.FC = ({ ...props }) => ( ) -export { IconUnknown2Sharp as default } +export default IconUnknown2Sharp diff --git a/src/IconUnknown2SharpFilled.tsx b/src/IconUnknown2SharpFilled.tsx index 563bc8c3b..f1295d8c8 100644 --- a/src/IconUnknown2SharpFilled.tsx +++ b/src/IconUnknown2SharpFilled.tsx @@ -8,4 +8,4 @@ const IconUnknown2SharpFilled: React.FC = ({ ...props }) => ( ) -export { IconUnknown2SharpFilled as default } +export default IconUnknown2SharpFilled diff --git a/src/IconUnknown5Outlined.tsx b/src/IconUnknown5Outlined.tsx index fd14bcec5..7e9565a58 100644 --- a/src/IconUnknown5Outlined.tsx +++ b/src/IconUnknown5Outlined.tsx @@ -8,4 +8,4 @@ const IconUnknown5Outlined: React.FC = ({ ...props }) => ( ) -export { IconUnknown5Outlined as default } +export default IconUnknown5Outlined diff --git a/src/IconUnknown5OutlinedFilled.tsx b/src/IconUnknown5OutlinedFilled.tsx index e347e1681..549b14fac 100644 --- a/src/IconUnknown5OutlinedFilled.tsx +++ b/src/IconUnknown5OutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconUnknown5OutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconUnknown5OutlinedFilled as default } +export default IconUnknown5OutlinedFilled diff --git a/src/IconUnknown5Rounded.tsx b/src/IconUnknown5Rounded.tsx index ffa2ca0b1..a92b816e4 100644 --- a/src/IconUnknown5Rounded.tsx +++ b/src/IconUnknown5Rounded.tsx @@ -8,4 +8,4 @@ const IconUnknown5Rounded: React.FC = ({ ...props }) => ( ) -export { IconUnknown5Rounded as default } +export default IconUnknown5Rounded diff --git a/src/IconUnknown5RoundedFilled.tsx b/src/IconUnknown5RoundedFilled.tsx index 7ec2d6345..cfb7067e9 100644 --- a/src/IconUnknown5RoundedFilled.tsx +++ b/src/IconUnknown5RoundedFilled.tsx @@ -8,4 +8,4 @@ const IconUnknown5RoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconUnknown5RoundedFilled as default } +export default IconUnknown5RoundedFilled diff --git a/src/IconUnknown5Sharp.tsx b/src/IconUnknown5Sharp.tsx index d8ebb4e04..183a9f9bb 100644 --- a/src/IconUnknown5Sharp.tsx +++ b/src/IconUnknown5Sharp.tsx @@ -8,4 +8,4 @@ const IconUnknown5Sharp: React.FC = ({ ...props }) => ( ) -export { IconUnknown5Sharp as default } +export default IconUnknown5Sharp diff --git a/src/IconUnknown5SharpFilled.tsx b/src/IconUnknown5SharpFilled.tsx index 362c7e919..55e870465 100644 --- a/src/IconUnknown5SharpFilled.tsx +++ b/src/IconUnknown5SharpFilled.tsx @@ -8,4 +8,4 @@ const IconUnknown5SharpFilled: React.FC = ({ ...props }) => ( ) -export { IconUnknown5SharpFilled as default } +export default IconUnknown5SharpFilled diff --git a/src/IconUnknown7Outlined.tsx b/src/IconUnknown7Outlined.tsx index 680a92834..084935b60 100644 --- a/src/IconUnknown7Outlined.tsx +++ b/src/IconUnknown7Outlined.tsx @@ -8,4 +8,4 @@ const IconUnknown7Outlined: React.FC = ({ ...props }) => ( ) -export { IconUnknown7Outlined as default } +export default IconUnknown7Outlined diff --git a/src/IconUnknown7OutlinedFilled.tsx b/src/IconUnknown7OutlinedFilled.tsx index d77bea229..6cda98ca7 100644 --- a/src/IconUnknown7OutlinedFilled.tsx +++ b/src/IconUnknown7OutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconUnknown7OutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconUnknown7OutlinedFilled as default } +export default IconUnknown7OutlinedFilled diff --git a/src/IconUnknown7Rounded.tsx b/src/IconUnknown7Rounded.tsx index 68613a129..3eeb02d27 100644 --- a/src/IconUnknown7Rounded.tsx +++ b/src/IconUnknown7Rounded.tsx @@ -8,4 +8,4 @@ const IconUnknown7Rounded: React.FC = ({ ...props }) => ( ) -export { IconUnknown7Rounded as default } +export default IconUnknown7Rounded diff --git a/src/IconUnknown7RoundedFilled.tsx b/src/IconUnknown7RoundedFilled.tsx index e09c64a00..4a78cb881 100644 --- a/src/IconUnknown7RoundedFilled.tsx +++ b/src/IconUnknown7RoundedFilled.tsx @@ -8,4 +8,4 @@ const IconUnknown7RoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconUnknown7RoundedFilled as default } +export default IconUnknown7RoundedFilled diff --git a/src/IconUnknown7Sharp.tsx b/src/IconUnknown7Sharp.tsx index d992c5552..82e642085 100644 --- a/src/IconUnknown7Sharp.tsx +++ b/src/IconUnknown7Sharp.tsx @@ -8,4 +8,4 @@ const IconUnknown7Sharp: React.FC = ({ ...props }) => ( ) -export { IconUnknown7Sharp as default } +export default IconUnknown7Sharp diff --git a/src/IconUnknown7SharpFilled.tsx b/src/IconUnknown7SharpFilled.tsx index f644f1c2d..46dc4dea3 100644 --- a/src/IconUnknown7SharpFilled.tsx +++ b/src/IconUnknown7SharpFilled.tsx @@ -8,4 +8,4 @@ const IconUnknown7SharpFilled: React.FC = ({ ...props }) => ( ) -export { IconUnknown7SharpFilled as default } +export default IconUnknown7SharpFilled diff --git a/src/IconUnknownDocumentOutlined.tsx b/src/IconUnknownDocumentOutlined.tsx index d776b3331..df4215c78 100644 --- a/src/IconUnknownDocumentOutlined.tsx +++ b/src/IconUnknownDocumentOutlined.tsx @@ -8,4 +8,4 @@ const IconUnknownDocumentOutlined: React.FC = ({ ...props }) => ( ) -export { IconUnknownDocumentOutlined as default } +export default IconUnknownDocumentOutlined diff --git a/src/IconUnknownDocumentOutlinedFilled.tsx b/src/IconUnknownDocumentOutlinedFilled.tsx index a68773153..0ce3f356a 100644 --- a/src/IconUnknownDocumentOutlinedFilled.tsx +++ b/src/IconUnknownDocumentOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconUnknownDocumentOutlinedFilled: React.FC = ({ ) -export { IconUnknownDocumentOutlinedFilled as default } +export default IconUnknownDocumentOutlinedFilled diff --git a/src/IconUnknownDocumentRounded.tsx b/src/IconUnknownDocumentRounded.tsx index 3c261df2b..f4fe54f18 100644 --- a/src/IconUnknownDocumentRounded.tsx +++ b/src/IconUnknownDocumentRounded.tsx @@ -8,4 +8,4 @@ const IconUnknownDocumentRounded: React.FC = ({ ...props }) => ( ) -export { IconUnknownDocumentRounded as default } +export default IconUnknownDocumentRounded diff --git a/src/IconUnknownDocumentRoundedFilled.tsx b/src/IconUnknownDocumentRoundedFilled.tsx index dd47247ca..831962aa7 100644 --- a/src/IconUnknownDocumentRoundedFilled.tsx +++ b/src/IconUnknownDocumentRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconUnknownDocumentRoundedFilled: React.FC = ({ ) -export { IconUnknownDocumentRoundedFilled as default } +export default IconUnknownDocumentRoundedFilled diff --git a/src/IconUnknownDocumentSharp.tsx b/src/IconUnknownDocumentSharp.tsx index 562425f2d..689367087 100644 --- a/src/IconUnknownDocumentSharp.tsx +++ b/src/IconUnknownDocumentSharp.tsx @@ -8,4 +8,4 @@ const IconUnknownDocumentSharp: React.FC = ({ ...props }) => ( ) -export { IconUnknownDocumentSharp as default } +export default IconUnknownDocumentSharp diff --git a/src/IconUnknownDocumentSharpFilled.tsx b/src/IconUnknownDocumentSharpFilled.tsx index 09d5c5e5d..c6fdcf1d7 100644 --- a/src/IconUnknownDocumentSharpFilled.tsx +++ b/src/IconUnknownDocumentSharpFilled.tsx @@ -8,4 +8,4 @@ const IconUnknownDocumentSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconUnknownDocumentSharpFilled as default } +export default IconUnknownDocumentSharpFilled diff --git a/src/IconUnknownMedOutlined.tsx b/src/IconUnknownMedOutlined.tsx index 2b1c37ba1..502c3ec5d 100644 --- a/src/IconUnknownMedOutlined.tsx +++ b/src/IconUnknownMedOutlined.tsx @@ -8,4 +8,4 @@ const IconUnknownMedOutlined: React.FC = ({ ...props }) => ( ) -export { IconUnknownMedOutlined as default } +export default IconUnknownMedOutlined diff --git a/src/IconUnknownMedOutlinedFilled.tsx b/src/IconUnknownMedOutlinedFilled.tsx index 2eee24393..ca96d4718 100644 --- a/src/IconUnknownMedOutlinedFilled.tsx +++ b/src/IconUnknownMedOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconUnknownMedOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconUnknownMedOutlinedFilled as default } +export default IconUnknownMedOutlinedFilled diff --git a/src/IconUnknownMedRounded.tsx b/src/IconUnknownMedRounded.tsx index a3cf1b329..b307b877c 100644 --- a/src/IconUnknownMedRounded.tsx +++ b/src/IconUnknownMedRounded.tsx @@ -8,4 +8,4 @@ const IconUnknownMedRounded: React.FC = ({ ...props }) => ( ) -export { IconUnknownMedRounded as default } +export default IconUnknownMedRounded diff --git a/src/IconUnknownMedRoundedFilled.tsx b/src/IconUnknownMedRoundedFilled.tsx index 204bb3e1e..a599db811 100644 --- a/src/IconUnknownMedRoundedFilled.tsx +++ b/src/IconUnknownMedRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconUnknownMedRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconUnknownMedRoundedFilled as default } +export default IconUnknownMedRoundedFilled diff --git a/src/IconUnknownMedSharp.tsx b/src/IconUnknownMedSharp.tsx index 8c29ae0f6..46f957873 100644 --- a/src/IconUnknownMedSharp.tsx +++ b/src/IconUnknownMedSharp.tsx @@ -8,4 +8,4 @@ const IconUnknownMedSharp: React.FC = ({ ...props }) => ( ) -export { IconUnknownMedSharp as default } +export default IconUnknownMedSharp diff --git a/src/IconUnknownMedSharpFilled.tsx b/src/IconUnknownMedSharpFilled.tsx index 5eea492af..470849287 100644 --- a/src/IconUnknownMedSharpFilled.tsx +++ b/src/IconUnknownMedSharpFilled.tsx @@ -8,4 +8,4 @@ const IconUnknownMedSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconUnknownMedSharpFilled as default } +export default IconUnknownMedSharpFilled diff --git a/src/IconUnlicenseOutlined.tsx b/src/IconUnlicenseOutlined.tsx index 8604cabb3..10d672506 100644 --- a/src/IconUnlicenseOutlined.tsx +++ b/src/IconUnlicenseOutlined.tsx @@ -8,4 +8,4 @@ const IconUnlicenseOutlined: React.FC = ({ ...props }) => ( ) -export { IconUnlicenseOutlined as default } +export default IconUnlicenseOutlined diff --git a/src/IconUnlicenseOutlinedFilled.tsx b/src/IconUnlicenseOutlinedFilled.tsx index 66dfdbd03..40ed393d0 100644 --- a/src/IconUnlicenseOutlinedFilled.tsx +++ b/src/IconUnlicenseOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconUnlicenseOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconUnlicenseOutlinedFilled as default } +export default IconUnlicenseOutlinedFilled diff --git a/src/IconUnlicenseRounded.tsx b/src/IconUnlicenseRounded.tsx index bca56c38f..12ce3fa25 100644 --- a/src/IconUnlicenseRounded.tsx +++ b/src/IconUnlicenseRounded.tsx @@ -8,4 +8,4 @@ const IconUnlicenseRounded: React.FC = ({ ...props }) => ( ) -export { IconUnlicenseRounded as default } +export default IconUnlicenseRounded diff --git a/src/IconUnlicenseRoundedFilled.tsx b/src/IconUnlicenseRoundedFilled.tsx index e2331470c..1c8e4e1fd 100644 --- a/src/IconUnlicenseRoundedFilled.tsx +++ b/src/IconUnlicenseRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconUnlicenseRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconUnlicenseRoundedFilled as default } +export default IconUnlicenseRoundedFilled diff --git a/src/IconUnlicenseSharp.tsx b/src/IconUnlicenseSharp.tsx index c509463c0..dfcd8d1a4 100644 --- a/src/IconUnlicenseSharp.tsx +++ b/src/IconUnlicenseSharp.tsx @@ -8,4 +8,4 @@ const IconUnlicenseSharp: React.FC = ({ ...props }) => ( ) -export { IconUnlicenseSharp as default } +export default IconUnlicenseSharp diff --git a/src/IconUnlicenseSharpFilled.tsx b/src/IconUnlicenseSharpFilled.tsx index df68918db..a60d28047 100644 --- a/src/IconUnlicenseSharpFilled.tsx +++ b/src/IconUnlicenseSharpFilled.tsx @@ -8,4 +8,4 @@ const IconUnlicenseSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconUnlicenseSharpFilled as default } +export default IconUnlicenseSharpFilled diff --git a/src/IconUnpavedRoadOutlined.tsx b/src/IconUnpavedRoadOutlined.tsx index 3cad5b378..314211033 100644 --- a/src/IconUnpavedRoadOutlined.tsx +++ b/src/IconUnpavedRoadOutlined.tsx @@ -8,4 +8,4 @@ const IconUnpavedRoadOutlined: React.FC = ({ ...props }) => ( ) -export { IconUnpavedRoadOutlined as default } +export default IconUnpavedRoadOutlined diff --git a/src/IconUnpavedRoadOutlinedFilled.tsx b/src/IconUnpavedRoadOutlinedFilled.tsx index 59d01ab67..8efbaf4be 100644 --- a/src/IconUnpavedRoadOutlinedFilled.tsx +++ b/src/IconUnpavedRoadOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconUnpavedRoadOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconUnpavedRoadOutlinedFilled as default } +export default IconUnpavedRoadOutlinedFilled diff --git a/src/IconUnpavedRoadRounded.tsx b/src/IconUnpavedRoadRounded.tsx index 9144bb851..70bfc3c96 100644 --- a/src/IconUnpavedRoadRounded.tsx +++ b/src/IconUnpavedRoadRounded.tsx @@ -8,4 +8,4 @@ const IconUnpavedRoadRounded: React.FC = ({ ...props }) => ( ) -export { IconUnpavedRoadRounded as default } +export default IconUnpavedRoadRounded diff --git a/src/IconUnpavedRoadRoundedFilled.tsx b/src/IconUnpavedRoadRoundedFilled.tsx index 47f695776..0efdb4886 100644 --- a/src/IconUnpavedRoadRoundedFilled.tsx +++ b/src/IconUnpavedRoadRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconUnpavedRoadRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconUnpavedRoadRoundedFilled as default } +export default IconUnpavedRoadRoundedFilled diff --git a/src/IconUnpavedRoadSharp.tsx b/src/IconUnpavedRoadSharp.tsx index 07af989f4..d3b01978b 100644 --- a/src/IconUnpavedRoadSharp.tsx +++ b/src/IconUnpavedRoadSharp.tsx @@ -8,4 +8,4 @@ const IconUnpavedRoadSharp: React.FC = ({ ...props }) => ( ) -export { IconUnpavedRoadSharp as default } +export default IconUnpavedRoadSharp diff --git a/src/IconUnpavedRoadSharpFilled.tsx b/src/IconUnpavedRoadSharpFilled.tsx index 57d30476e..5e71ad178 100644 --- a/src/IconUnpavedRoadSharpFilled.tsx +++ b/src/IconUnpavedRoadSharpFilled.tsx @@ -8,4 +8,4 @@ const IconUnpavedRoadSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconUnpavedRoadSharpFilled as default } +export default IconUnpavedRoadSharpFilled diff --git a/src/IconUnpublishedOutlined.tsx b/src/IconUnpublishedOutlined.tsx index 3ef21a564..4e60ccc10 100644 --- a/src/IconUnpublishedOutlined.tsx +++ b/src/IconUnpublishedOutlined.tsx @@ -8,4 +8,4 @@ const IconUnpublishedOutlined: React.FC = ({ ...props }) => ( ) -export { IconUnpublishedOutlined as default } +export default IconUnpublishedOutlined diff --git a/src/IconUnpublishedOutlinedFilled.tsx b/src/IconUnpublishedOutlinedFilled.tsx index d08f427e6..d16a20108 100644 --- a/src/IconUnpublishedOutlinedFilled.tsx +++ b/src/IconUnpublishedOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconUnpublishedOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconUnpublishedOutlinedFilled as default } +export default IconUnpublishedOutlinedFilled diff --git a/src/IconUnpublishedRounded.tsx b/src/IconUnpublishedRounded.tsx index 987906fa7..6af08b240 100644 --- a/src/IconUnpublishedRounded.tsx +++ b/src/IconUnpublishedRounded.tsx @@ -8,4 +8,4 @@ const IconUnpublishedRounded: React.FC = ({ ...props }) => ( ) -export { IconUnpublishedRounded as default } +export default IconUnpublishedRounded diff --git a/src/IconUnpublishedRoundedFilled.tsx b/src/IconUnpublishedRoundedFilled.tsx index 920ba0ddc..74b96a511 100644 --- a/src/IconUnpublishedRoundedFilled.tsx +++ b/src/IconUnpublishedRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconUnpublishedRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconUnpublishedRoundedFilled as default } +export default IconUnpublishedRoundedFilled diff --git a/src/IconUnpublishedSharp.tsx b/src/IconUnpublishedSharp.tsx index 1561190fb..acb1422b8 100644 --- a/src/IconUnpublishedSharp.tsx +++ b/src/IconUnpublishedSharp.tsx @@ -8,4 +8,4 @@ const IconUnpublishedSharp: React.FC = ({ ...props }) => ( ) -export { IconUnpublishedSharp as default } +export default IconUnpublishedSharp diff --git a/src/IconUnpublishedSharpFilled.tsx b/src/IconUnpublishedSharpFilled.tsx index a2878a4fc..0b66c785c 100644 --- a/src/IconUnpublishedSharpFilled.tsx +++ b/src/IconUnpublishedSharpFilled.tsx @@ -8,4 +8,4 @@ const IconUnpublishedSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconUnpublishedSharpFilled as default } +export default IconUnpublishedSharpFilled diff --git a/src/IconUnsubscribeOutlined.tsx b/src/IconUnsubscribeOutlined.tsx index 4e3e03c9d..996ae457f 100644 --- a/src/IconUnsubscribeOutlined.tsx +++ b/src/IconUnsubscribeOutlined.tsx @@ -8,4 +8,4 @@ const IconUnsubscribeOutlined: React.FC = ({ ...props }) => ( ) -export { IconUnsubscribeOutlined as default } +export default IconUnsubscribeOutlined diff --git a/src/IconUnsubscribeOutlinedFilled.tsx b/src/IconUnsubscribeOutlinedFilled.tsx index 0fa298106..7a3aa84d3 100644 --- a/src/IconUnsubscribeOutlinedFilled.tsx +++ b/src/IconUnsubscribeOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconUnsubscribeOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconUnsubscribeOutlinedFilled as default } +export default IconUnsubscribeOutlinedFilled diff --git a/src/IconUnsubscribeRounded.tsx b/src/IconUnsubscribeRounded.tsx index da71bf659..acff48574 100644 --- a/src/IconUnsubscribeRounded.tsx +++ b/src/IconUnsubscribeRounded.tsx @@ -8,4 +8,4 @@ const IconUnsubscribeRounded: React.FC = ({ ...props }) => ( ) -export { IconUnsubscribeRounded as default } +export default IconUnsubscribeRounded diff --git a/src/IconUnsubscribeRoundedFilled.tsx b/src/IconUnsubscribeRoundedFilled.tsx index 060b703e4..b92aa7c30 100644 --- a/src/IconUnsubscribeRoundedFilled.tsx +++ b/src/IconUnsubscribeRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconUnsubscribeRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconUnsubscribeRoundedFilled as default } +export default IconUnsubscribeRoundedFilled diff --git a/src/IconUnsubscribeSharp.tsx b/src/IconUnsubscribeSharp.tsx index 687640c4d..8d0002282 100644 --- a/src/IconUnsubscribeSharp.tsx +++ b/src/IconUnsubscribeSharp.tsx @@ -8,4 +8,4 @@ const IconUnsubscribeSharp: React.FC = ({ ...props }) => ( ) -export { IconUnsubscribeSharp as default } +export default IconUnsubscribeSharp diff --git a/src/IconUnsubscribeSharpFilled.tsx b/src/IconUnsubscribeSharpFilled.tsx index 23145dd62..c57cfa6e5 100644 --- a/src/IconUnsubscribeSharpFilled.tsx +++ b/src/IconUnsubscribeSharpFilled.tsx @@ -8,4 +8,4 @@ const IconUnsubscribeSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconUnsubscribeSharpFilled as default } +export default IconUnsubscribeSharpFilled diff --git a/src/IconUpcomingOutlined.tsx b/src/IconUpcomingOutlined.tsx index 98b278f44..dc2417c24 100644 --- a/src/IconUpcomingOutlined.tsx +++ b/src/IconUpcomingOutlined.tsx @@ -8,4 +8,4 @@ const IconUpcomingOutlined: React.FC = ({ ...props }) => ( ) -export { IconUpcomingOutlined as default } +export default IconUpcomingOutlined diff --git a/src/IconUpcomingOutlinedFilled.tsx b/src/IconUpcomingOutlinedFilled.tsx index 3e506ecf1..941280f2c 100644 --- a/src/IconUpcomingOutlinedFilled.tsx +++ b/src/IconUpcomingOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconUpcomingOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconUpcomingOutlinedFilled as default } +export default IconUpcomingOutlinedFilled diff --git a/src/IconUpcomingRounded.tsx b/src/IconUpcomingRounded.tsx index c2e2b0be1..3cef6a0d7 100644 --- a/src/IconUpcomingRounded.tsx +++ b/src/IconUpcomingRounded.tsx @@ -8,4 +8,4 @@ const IconUpcomingRounded: React.FC = ({ ...props }) => ( ) -export { IconUpcomingRounded as default } +export default IconUpcomingRounded diff --git a/src/IconUpcomingRoundedFilled.tsx b/src/IconUpcomingRoundedFilled.tsx index 816c0e825..3ce7bc775 100644 --- a/src/IconUpcomingRoundedFilled.tsx +++ b/src/IconUpcomingRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconUpcomingRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconUpcomingRoundedFilled as default } +export default IconUpcomingRoundedFilled diff --git a/src/IconUpcomingSharp.tsx b/src/IconUpcomingSharp.tsx index 5012c3e65..490eb685a 100644 --- a/src/IconUpcomingSharp.tsx +++ b/src/IconUpcomingSharp.tsx @@ -8,4 +8,4 @@ const IconUpcomingSharp: React.FC = ({ ...props }) => ( ) -export { IconUpcomingSharp as default } +export default IconUpcomingSharp diff --git a/src/IconUpcomingSharpFilled.tsx b/src/IconUpcomingSharpFilled.tsx index af0055dca..886fc5d76 100644 --- a/src/IconUpcomingSharpFilled.tsx +++ b/src/IconUpcomingSharpFilled.tsx @@ -8,4 +8,4 @@ const IconUpcomingSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconUpcomingSharpFilled as default } +export default IconUpcomingSharpFilled diff --git a/src/IconUpdateDisabledOutlined.tsx b/src/IconUpdateDisabledOutlined.tsx index 69d7fa563..95fa4b7dc 100644 --- a/src/IconUpdateDisabledOutlined.tsx +++ b/src/IconUpdateDisabledOutlined.tsx @@ -8,4 +8,4 @@ const IconUpdateDisabledOutlined: React.FC = ({ ...props }) => ( ) -export { IconUpdateDisabledOutlined as default } +export default IconUpdateDisabledOutlined diff --git a/src/IconUpdateDisabledOutlinedFilled.tsx b/src/IconUpdateDisabledOutlinedFilled.tsx index 4abb198f3..1fc65a11a 100644 --- a/src/IconUpdateDisabledOutlinedFilled.tsx +++ b/src/IconUpdateDisabledOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconUpdateDisabledOutlinedFilled: React.FC = ({ ) -export { IconUpdateDisabledOutlinedFilled as default } +export default IconUpdateDisabledOutlinedFilled diff --git a/src/IconUpdateDisabledRounded.tsx b/src/IconUpdateDisabledRounded.tsx index 604cfb089..ae9c7c587 100644 --- a/src/IconUpdateDisabledRounded.tsx +++ b/src/IconUpdateDisabledRounded.tsx @@ -8,4 +8,4 @@ const IconUpdateDisabledRounded: React.FC = ({ ...props }) => ( ) -export { IconUpdateDisabledRounded as default } +export default IconUpdateDisabledRounded diff --git a/src/IconUpdateDisabledRoundedFilled.tsx b/src/IconUpdateDisabledRoundedFilled.tsx index 1f557581c..717cad1d7 100644 --- a/src/IconUpdateDisabledRoundedFilled.tsx +++ b/src/IconUpdateDisabledRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconUpdateDisabledRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconUpdateDisabledRoundedFilled as default } +export default IconUpdateDisabledRoundedFilled diff --git a/src/IconUpdateDisabledSharp.tsx b/src/IconUpdateDisabledSharp.tsx index b27669ecf..f638fc13c 100644 --- a/src/IconUpdateDisabledSharp.tsx +++ b/src/IconUpdateDisabledSharp.tsx @@ -8,4 +8,4 @@ const IconUpdateDisabledSharp: React.FC = ({ ...props }) => ( ) -export { IconUpdateDisabledSharp as default } +export default IconUpdateDisabledSharp diff --git a/src/IconUpdateDisabledSharpFilled.tsx b/src/IconUpdateDisabledSharpFilled.tsx index 24b5294c5..586796dda 100644 --- a/src/IconUpdateDisabledSharpFilled.tsx +++ b/src/IconUpdateDisabledSharpFilled.tsx @@ -8,4 +8,4 @@ const IconUpdateDisabledSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconUpdateDisabledSharpFilled as default } +export default IconUpdateDisabledSharpFilled diff --git a/src/IconUpdateOutlined.tsx b/src/IconUpdateOutlined.tsx index 470bb49d4..4af19ebc9 100644 --- a/src/IconUpdateOutlined.tsx +++ b/src/IconUpdateOutlined.tsx @@ -8,4 +8,4 @@ const IconUpdateOutlined: React.FC = ({ ...props }) => ( ) -export { IconUpdateOutlined as default } +export default IconUpdateOutlined diff --git a/src/IconUpdateOutlinedFilled.tsx b/src/IconUpdateOutlinedFilled.tsx index 3fde84ffe..d74b5713d 100644 --- a/src/IconUpdateOutlinedFilled.tsx +++ b/src/IconUpdateOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconUpdateOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconUpdateOutlinedFilled as default } +export default IconUpdateOutlinedFilled diff --git a/src/IconUpdateRounded.tsx b/src/IconUpdateRounded.tsx index 5257ca202..90ebf6125 100644 --- a/src/IconUpdateRounded.tsx +++ b/src/IconUpdateRounded.tsx @@ -8,4 +8,4 @@ const IconUpdateRounded: React.FC = ({ ...props }) => ( ) -export { IconUpdateRounded as default } +export default IconUpdateRounded diff --git a/src/IconUpdateRoundedFilled.tsx b/src/IconUpdateRoundedFilled.tsx index 6b46474e4..5b927fe9b 100644 --- a/src/IconUpdateRoundedFilled.tsx +++ b/src/IconUpdateRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconUpdateRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconUpdateRoundedFilled as default } +export default IconUpdateRoundedFilled diff --git a/src/IconUpdateSharp.tsx b/src/IconUpdateSharp.tsx index 237daddf0..3fe5ffc8e 100644 --- a/src/IconUpdateSharp.tsx +++ b/src/IconUpdateSharp.tsx @@ -8,4 +8,4 @@ const IconUpdateSharp: React.FC = ({ ...props }) => ( ) -export { IconUpdateSharp as default } +export default IconUpdateSharp diff --git a/src/IconUpdateSharpFilled.tsx b/src/IconUpdateSharpFilled.tsx index 2d32a23a4..fe38ec0de 100644 --- a/src/IconUpdateSharpFilled.tsx +++ b/src/IconUpdateSharpFilled.tsx @@ -8,4 +8,4 @@ const IconUpdateSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconUpdateSharpFilled as default } +export default IconUpdateSharpFilled diff --git a/src/IconUpgradeOutlined.tsx b/src/IconUpgradeOutlined.tsx index ab28cfdf6..0a6e63366 100644 --- a/src/IconUpgradeOutlined.tsx +++ b/src/IconUpgradeOutlined.tsx @@ -8,4 +8,4 @@ const IconUpgradeOutlined: React.FC = ({ ...props }) => ( ) -export { IconUpgradeOutlined as default } +export default IconUpgradeOutlined diff --git a/src/IconUpgradeOutlinedFilled.tsx b/src/IconUpgradeOutlinedFilled.tsx index 420dd5696..ff10e423b 100644 --- a/src/IconUpgradeOutlinedFilled.tsx +++ b/src/IconUpgradeOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconUpgradeOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconUpgradeOutlinedFilled as default } +export default IconUpgradeOutlinedFilled diff --git a/src/IconUpgradeRounded.tsx b/src/IconUpgradeRounded.tsx index 62b99dde5..b53169c5e 100644 --- a/src/IconUpgradeRounded.tsx +++ b/src/IconUpgradeRounded.tsx @@ -8,4 +8,4 @@ const IconUpgradeRounded: React.FC = ({ ...props }) => ( ) -export { IconUpgradeRounded as default } +export default IconUpgradeRounded diff --git a/src/IconUpgradeRoundedFilled.tsx b/src/IconUpgradeRoundedFilled.tsx index 96a492f8c..ffcd6ce7f 100644 --- a/src/IconUpgradeRoundedFilled.tsx +++ b/src/IconUpgradeRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconUpgradeRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconUpgradeRoundedFilled as default } +export default IconUpgradeRoundedFilled diff --git a/src/IconUpgradeSharp.tsx b/src/IconUpgradeSharp.tsx index 762a1842c..3cccfbd4e 100644 --- a/src/IconUpgradeSharp.tsx +++ b/src/IconUpgradeSharp.tsx @@ -8,4 +8,4 @@ const IconUpgradeSharp: React.FC = ({ ...props }) => ( ) -export { IconUpgradeSharp as default } +export default IconUpgradeSharp diff --git a/src/IconUpgradeSharpFilled.tsx b/src/IconUpgradeSharpFilled.tsx index a90af1d63..dcba752f9 100644 --- a/src/IconUpgradeSharpFilled.tsx +++ b/src/IconUpgradeSharpFilled.tsx @@ -8,4 +8,4 @@ const IconUpgradeSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconUpgradeSharpFilled as default } +export default IconUpgradeSharpFilled diff --git a/src/IconUpload2Outlined.tsx b/src/IconUpload2Outlined.tsx index d14e60c27..cc652e669 100644 --- a/src/IconUpload2Outlined.tsx +++ b/src/IconUpload2Outlined.tsx @@ -8,4 +8,4 @@ const IconUpload2Outlined: React.FC = ({ ...props }) => ( ) -export { IconUpload2Outlined as default } +export default IconUpload2Outlined diff --git a/src/IconUpload2OutlinedFilled.tsx b/src/IconUpload2OutlinedFilled.tsx index 8da2d84d1..14c4795a8 100644 --- a/src/IconUpload2OutlinedFilled.tsx +++ b/src/IconUpload2OutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconUpload2OutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconUpload2OutlinedFilled as default } +export default IconUpload2OutlinedFilled diff --git a/src/IconUpload2Rounded.tsx b/src/IconUpload2Rounded.tsx index e8a5bd499..37d8d037a 100644 --- a/src/IconUpload2Rounded.tsx +++ b/src/IconUpload2Rounded.tsx @@ -8,4 +8,4 @@ const IconUpload2Rounded: React.FC = ({ ...props }) => ( ) -export { IconUpload2Rounded as default } +export default IconUpload2Rounded diff --git a/src/IconUpload2RoundedFilled.tsx b/src/IconUpload2RoundedFilled.tsx index 5f3cb0406..437aebe51 100644 --- a/src/IconUpload2RoundedFilled.tsx +++ b/src/IconUpload2RoundedFilled.tsx @@ -8,4 +8,4 @@ const IconUpload2RoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconUpload2RoundedFilled as default } +export default IconUpload2RoundedFilled diff --git a/src/IconUpload2Sharp.tsx b/src/IconUpload2Sharp.tsx index 10fcea935..2267276cc 100644 --- a/src/IconUpload2Sharp.tsx +++ b/src/IconUpload2Sharp.tsx @@ -8,4 +8,4 @@ const IconUpload2Sharp: React.FC = ({ ...props }) => ( ) -export { IconUpload2Sharp as default } +export default IconUpload2Sharp diff --git a/src/IconUpload2SharpFilled.tsx b/src/IconUpload2SharpFilled.tsx index 0fa893bee..15c31286e 100644 --- a/src/IconUpload2SharpFilled.tsx +++ b/src/IconUpload2SharpFilled.tsx @@ -8,4 +8,4 @@ const IconUpload2SharpFilled: React.FC = ({ ...props }) => ( ) -export { IconUpload2SharpFilled as default } +export default IconUpload2SharpFilled diff --git a/src/IconUploadFileOutlined.tsx b/src/IconUploadFileOutlined.tsx index d80259923..6b3b0c08b 100644 --- a/src/IconUploadFileOutlined.tsx +++ b/src/IconUploadFileOutlined.tsx @@ -8,4 +8,4 @@ const IconUploadFileOutlined: React.FC = ({ ...props }) => ( ) -export { IconUploadFileOutlined as default } +export default IconUploadFileOutlined diff --git a/src/IconUploadFileOutlinedFilled.tsx b/src/IconUploadFileOutlinedFilled.tsx index 8ba8615bd..ec3d746cf 100644 --- a/src/IconUploadFileOutlinedFilled.tsx +++ b/src/IconUploadFileOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconUploadFileOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconUploadFileOutlinedFilled as default } +export default IconUploadFileOutlinedFilled diff --git a/src/IconUploadFileRounded.tsx b/src/IconUploadFileRounded.tsx index d98a2a37c..91ff2ef77 100644 --- a/src/IconUploadFileRounded.tsx +++ b/src/IconUploadFileRounded.tsx @@ -8,4 +8,4 @@ const IconUploadFileRounded: React.FC = ({ ...props }) => ( ) -export { IconUploadFileRounded as default } +export default IconUploadFileRounded diff --git a/src/IconUploadFileRoundedFilled.tsx b/src/IconUploadFileRoundedFilled.tsx index 4233e2bc3..f5ee6cc70 100644 --- a/src/IconUploadFileRoundedFilled.tsx +++ b/src/IconUploadFileRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconUploadFileRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconUploadFileRoundedFilled as default } +export default IconUploadFileRoundedFilled diff --git a/src/IconUploadFileSharp.tsx b/src/IconUploadFileSharp.tsx index 511fa7359..9f112be66 100644 --- a/src/IconUploadFileSharp.tsx +++ b/src/IconUploadFileSharp.tsx @@ -8,4 +8,4 @@ const IconUploadFileSharp: React.FC = ({ ...props }) => ( ) -export { IconUploadFileSharp as default } +export default IconUploadFileSharp diff --git a/src/IconUploadFileSharpFilled.tsx b/src/IconUploadFileSharpFilled.tsx index 5edf15c9c..fa89a15e6 100644 --- a/src/IconUploadFileSharpFilled.tsx +++ b/src/IconUploadFileSharpFilled.tsx @@ -8,4 +8,4 @@ const IconUploadFileSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconUploadFileSharpFilled as default } +export default IconUploadFileSharpFilled diff --git a/src/IconUploadOutlined.tsx b/src/IconUploadOutlined.tsx index 3ca892631..1cad02cdc 100644 --- a/src/IconUploadOutlined.tsx +++ b/src/IconUploadOutlined.tsx @@ -8,4 +8,4 @@ const IconUploadOutlined: React.FC = ({ ...props }) => ( ) -export { IconUploadOutlined as default } +export default IconUploadOutlined diff --git a/src/IconUploadOutlinedFilled.tsx b/src/IconUploadOutlinedFilled.tsx index 3ffd89d90..37bbb55d6 100644 --- a/src/IconUploadOutlinedFilled.tsx +++ b/src/IconUploadOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconUploadOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconUploadOutlinedFilled as default } +export default IconUploadOutlinedFilled diff --git a/src/IconUploadRounded.tsx b/src/IconUploadRounded.tsx index 4493ca808..102428c48 100644 --- a/src/IconUploadRounded.tsx +++ b/src/IconUploadRounded.tsx @@ -8,4 +8,4 @@ const IconUploadRounded: React.FC = ({ ...props }) => ( ) -export { IconUploadRounded as default } +export default IconUploadRounded diff --git a/src/IconUploadRoundedFilled.tsx b/src/IconUploadRoundedFilled.tsx index de26d955c..59b5d9395 100644 --- a/src/IconUploadRoundedFilled.tsx +++ b/src/IconUploadRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconUploadRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconUploadRoundedFilled as default } +export default IconUploadRoundedFilled diff --git a/src/IconUploadSharp.tsx b/src/IconUploadSharp.tsx index de113e6ff..a1b90222e 100644 --- a/src/IconUploadSharp.tsx +++ b/src/IconUploadSharp.tsx @@ -8,4 +8,4 @@ const IconUploadSharp: React.FC = ({ ...props }) => ( ) -export { IconUploadSharp as default } +export default IconUploadSharp diff --git a/src/IconUploadSharpFilled.tsx b/src/IconUploadSharpFilled.tsx index a53b19d6e..6fd819089 100644 --- a/src/IconUploadSharpFilled.tsx +++ b/src/IconUploadSharpFilled.tsx @@ -8,4 +8,4 @@ const IconUploadSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconUploadSharpFilled as default } +export default IconUploadSharpFilled diff --git a/src/IconUppercaseOutlined.tsx b/src/IconUppercaseOutlined.tsx index d5fd57fa0..c96fb2d56 100644 --- a/src/IconUppercaseOutlined.tsx +++ b/src/IconUppercaseOutlined.tsx @@ -8,4 +8,4 @@ const IconUppercaseOutlined: React.FC = ({ ...props }) => ( ) -export { IconUppercaseOutlined as default } +export default IconUppercaseOutlined diff --git a/src/IconUppercaseOutlinedFilled.tsx b/src/IconUppercaseOutlinedFilled.tsx index 019381561..e8d818241 100644 --- a/src/IconUppercaseOutlinedFilled.tsx +++ b/src/IconUppercaseOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconUppercaseOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconUppercaseOutlinedFilled as default } +export default IconUppercaseOutlinedFilled diff --git a/src/IconUppercaseRounded.tsx b/src/IconUppercaseRounded.tsx index cf9fb024e..24eaa42cd 100644 --- a/src/IconUppercaseRounded.tsx +++ b/src/IconUppercaseRounded.tsx @@ -8,4 +8,4 @@ const IconUppercaseRounded: React.FC = ({ ...props }) => ( ) -export { IconUppercaseRounded as default } +export default IconUppercaseRounded diff --git a/src/IconUppercaseRoundedFilled.tsx b/src/IconUppercaseRoundedFilled.tsx index 8a12e29ca..7696758dc 100644 --- a/src/IconUppercaseRoundedFilled.tsx +++ b/src/IconUppercaseRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconUppercaseRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconUppercaseRoundedFilled as default } +export default IconUppercaseRoundedFilled diff --git a/src/IconUppercaseSharp.tsx b/src/IconUppercaseSharp.tsx index 7e6a72da5..ec691bc39 100644 --- a/src/IconUppercaseSharp.tsx +++ b/src/IconUppercaseSharp.tsx @@ -8,4 +8,4 @@ const IconUppercaseSharp: React.FC = ({ ...props }) => ( ) -export { IconUppercaseSharp as default } +export default IconUppercaseSharp diff --git a/src/IconUppercaseSharpFilled.tsx b/src/IconUppercaseSharpFilled.tsx index d05a76ab0..d07e8515b 100644 --- a/src/IconUppercaseSharpFilled.tsx +++ b/src/IconUppercaseSharpFilled.tsx @@ -8,4 +8,4 @@ const IconUppercaseSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconUppercaseSharpFilled as default } +export default IconUppercaseSharpFilled diff --git a/src/IconUrologyOutlined.tsx b/src/IconUrologyOutlined.tsx index ff5375876..3bb729fd3 100644 --- a/src/IconUrologyOutlined.tsx +++ b/src/IconUrologyOutlined.tsx @@ -8,4 +8,4 @@ const IconUrologyOutlined: React.FC = ({ ...props }) => ( ) -export { IconUrologyOutlined as default } +export default IconUrologyOutlined diff --git a/src/IconUrologyOutlinedFilled.tsx b/src/IconUrologyOutlinedFilled.tsx index 3c842aea3..4a5db5e45 100644 --- a/src/IconUrologyOutlinedFilled.tsx +++ b/src/IconUrologyOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconUrologyOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconUrologyOutlinedFilled as default } +export default IconUrologyOutlinedFilled diff --git a/src/IconUrologyRounded.tsx b/src/IconUrologyRounded.tsx index 9ee2afb5b..6dddd8780 100644 --- a/src/IconUrologyRounded.tsx +++ b/src/IconUrologyRounded.tsx @@ -8,4 +8,4 @@ const IconUrologyRounded: React.FC = ({ ...props }) => ( ) -export { IconUrologyRounded as default } +export default IconUrologyRounded diff --git a/src/IconUrologyRoundedFilled.tsx b/src/IconUrologyRoundedFilled.tsx index 85cfaadb5..1aad849df 100644 --- a/src/IconUrologyRoundedFilled.tsx +++ b/src/IconUrologyRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconUrologyRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconUrologyRoundedFilled as default } +export default IconUrologyRoundedFilled diff --git a/src/IconUrologySharp.tsx b/src/IconUrologySharp.tsx index 5e2bacd40..4cb5b8107 100644 --- a/src/IconUrologySharp.tsx +++ b/src/IconUrologySharp.tsx @@ -8,4 +8,4 @@ const IconUrologySharp: React.FC = ({ ...props }) => ( ) -export { IconUrologySharp as default } +export default IconUrologySharp diff --git a/src/IconUrologySharpFilled.tsx b/src/IconUrologySharpFilled.tsx index aa5a7f9cd..430c77935 100644 --- a/src/IconUrologySharpFilled.tsx +++ b/src/IconUrologySharpFilled.tsx @@ -8,4 +8,4 @@ const IconUrologySharpFilled: React.FC = ({ ...props }) => ( ) -export { IconUrologySharpFilled as default } +export default IconUrologySharpFilled diff --git a/src/IconUsbOffOutlined.tsx b/src/IconUsbOffOutlined.tsx index 3dbeea83d..d5f7c8f03 100644 --- a/src/IconUsbOffOutlined.tsx +++ b/src/IconUsbOffOutlined.tsx @@ -8,4 +8,4 @@ const IconUsbOffOutlined: React.FC = ({ ...props }) => ( ) -export { IconUsbOffOutlined as default } +export default IconUsbOffOutlined diff --git a/src/IconUsbOffOutlinedFilled.tsx b/src/IconUsbOffOutlinedFilled.tsx index 9c265212b..29b4cab8b 100644 --- a/src/IconUsbOffOutlinedFilled.tsx +++ b/src/IconUsbOffOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconUsbOffOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconUsbOffOutlinedFilled as default } +export default IconUsbOffOutlinedFilled diff --git a/src/IconUsbOffRounded.tsx b/src/IconUsbOffRounded.tsx index dc02d7cbe..0cf140d76 100644 --- a/src/IconUsbOffRounded.tsx +++ b/src/IconUsbOffRounded.tsx @@ -8,4 +8,4 @@ const IconUsbOffRounded: React.FC = ({ ...props }) => ( ) -export { IconUsbOffRounded as default } +export default IconUsbOffRounded diff --git a/src/IconUsbOffRoundedFilled.tsx b/src/IconUsbOffRoundedFilled.tsx index 8baa784f8..36e2c8f90 100644 --- a/src/IconUsbOffRoundedFilled.tsx +++ b/src/IconUsbOffRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconUsbOffRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconUsbOffRoundedFilled as default } +export default IconUsbOffRoundedFilled diff --git a/src/IconUsbOffSharp.tsx b/src/IconUsbOffSharp.tsx index c4b55c208..301fa3841 100644 --- a/src/IconUsbOffSharp.tsx +++ b/src/IconUsbOffSharp.tsx @@ -8,4 +8,4 @@ const IconUsbOffSharp: React.FC = ({ ...props }) => ( ) -export { IconUsbOffSharp as default } +export default IconUsbOffSharp diff --git a/src/IconUsbOffSharpFilled.tsx b/src/IconUsbOffSharpFilled.tsx index 3e8ed661f..7d3633b1c 100644 --- a/src/IconUsbOffSharpFilled.tsx +++ b/src/IconUsbOffSharpFilled.tsx @@ -8,4 +8,4 @@ const IconUsbOffSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconUsbOffSharpFilled as default } +export default IconUsbOffSharpFilled diff --git a/src/IconUsbOutlined.tsx b/src/IconUsbOutlined.tsx index acb4df46e..b7567ca3e 100644 --- a/src/IconUsbOutlined.tsx +++ b/src/IconUsbOutlined.tsx @@ -8,4 +8,4 @@ const IconUsbOutlined: React.FC = ({ ...props }) => ( ) -export { IconUsbOutlined as default } +export default IconUsbOutlined diff --git a/src/IconUsbOutlinedFilled.tsx b/src/IconUsbOutlinedFilled.tsx index 2725e416c..1f2402a58 100644 --- a/src/IconUsbOutlinedFilled.tsx +++ b/src/IconUsbOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconUsbOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconUsbOutlinedFilled as default } +export default IconUsbOutlinedFilled diff --git a/src/IconUsbRounded.tsx b/src/IconUsbRounded.tsx index eba35393a..939a2785a 100644 --- a/src/IconUsbRounded.tsx +++ b/src/IconUsbRounded.tsx @@ -8,4 +8,4 @@ const IconUsbRounded: React.FC = ({ ...props }) => ( ) -export { IconUsbRounded as default } +export default IconUsbRounded diff --git a/src/IconUsbRoundedFilled.tsx b/src/IconUsbRoundedFilled.tsx index fca38380e..b2a13a978 100644 --- a/src/IconUsbRoundedFilled.tsx +++ b/src/IconUsbRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconUsbRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconUsbRoundedFilled as default } +export default IconUsbRoundedFilled diff --git a/src/IconUsbSharp.tsx b/src/IconUsbSharp.tsx index 71da2f4f1..0696ebffa 100644 --- a/src/IconUsbSharp.tsx +++ b/src/IconUsbSharp.tsx @@ -8,4 +8,4 @@ const IconUsbSharp: React.FC = ({ ...props }) => ( ) -export { IconUsbSharp as default } +export default IconUsbSharp diff --git a/src/IconUsbSharpFilled.tsx b/src/IconUsbSharpFilled.tsx index 5acfac169..7e71a8a65 100644 --- a/src/IconUsbSharpFilled.tsx +++ b/src/IconUsbSharpFilled.tsx @@ -8,4 +8,4 @@ const IconUsbSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconUsbSharpFilled as default } +export default IconUsbSharpFilled diff --git a/src/IconUserAttributesOutlined.tsx b/src/IconUserAttributesOutlined.tsx index c11713749..42c638d39 100644 --- a/src/IconUserAttributesOutlined.tsx +++ b/src/IconUserAttributesOutlined.tsx @@ -8,4 +8,4 @@ const IconUserAttributesOutlined: React.FC = ({ ...props }) => ( ) -export { IconUserAttributesOutlined as default } +export default IconUserAttributesOutlined diff --git a/src/IconUserAttributesOutlinedFilled.tsx b/src/IconUserAttributesOutlinedFilled.tsx index fd05a7bb9..09fd0db08 100644 --- a/src/IconUserAttributesOutlinedFilled.tsx +++ b/src/IconUserAttributesOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconUserAttributesOutlinedFilled: React.FC = ({ ) -export { IconUserAttributesOutlinedFilled as default } +export default IconUserAttributesOutlinedFilled diff --git a/src/IconUserAttributesRounded.tsx b/src/IconUserAttributesRounded.tsx index 34d159e54..2d44f9960 100644 --- a/src/IconUserAttributesRounded.tsx +++ b/src/IconUserAttributesRounded.tsx @@ -8,4 +8,4 @@ const IconUserAttributesRounded: React.FC = ({ ...props }) => ( ) -export { IconUserAttributesRounded as default } +export default IconUserAttributesRounded diff --git a/src/IconUserAttributesRoundedFilled.tsx b/src/IconUserAttributesRoundedFilled.tsx index 3524fa783..ff74687e4 100644 --- a/src/IconUserAttributesRoundedFilled.tsx +++ b/src/IconUserAttributesRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconUserAttributesRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconUserAttributesRoundedFilled as default } +export default IconUserAttributesRoundedFilled diff --git a/src/IconUserAttributesSharp.tsx b/src/IconUserAttributesSharp.tsx index ea8b74362..b0c1edf05 100644 --- a/src/IconUserAttributesSharp.tsx +++ b/src/IconUserAttributesSharp.tsx @@ -8,4 +8,4 @@ const IconUserAttributesSharp: React.FC = ({ ...props }) => ( ) -export { IconUserAttributesSharp as default } +export default IconUserAttributesSharp diff --git a/src/IconUserAttributesSharpFilled.tsx b/src/IconUserAttributesSharpFilled.tsx index 40dcc4b83..2231ec5ea 100644 --- a/src/IconUserAttributesSharpFilled.tsx +++ b/src/IconUserAttributesSharpFilled.tsx @@ -8,4 +8,4 @@ const IconUserAttributesSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconUserAttributesSharpFilled as default } +export default IconUserAttributesSharpFilled diff --git a/src/IconVaccinesOutlined.tsx b/src/IconVaccinesOutlined.tsx index a9115ebbc..3f82e3d8b 100644 --- a/src/IconVaccinesOutlined.tsx +++ b/src/IconVaccinesOutlined.tsx @@ -8,4 +8,4 @@ const IconVaccinesOutlined: React.FC = ({ ...props }) => ( ) -export { IconVaccinesOutlined as default } +export default IconVaccinesOutlined diff --git a/src/IconVaccinesOutlinedFilled.tsx b/src/IconVaccinesOutlinedFilled.tsx index 4ceebc3ac..13cc434d9 100644 --- a/src/IconVaccinesOutlinedFilled.tsx +++ b/src/IconVaccinesOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconVaccinesOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconVaccinesOutlinedFilled as default } +export default IconVaccinesOutlinedFilled diff --git a/src/IconVaccinesRoundedFilled.tsx b/src/IconVaccinesRoundedFilled.tsx index aa7914ecf..1ae22e2c6 100644 --- a/src/IconVaccinesRoundedFilled.tsx +++ b/src/IconVaccinesRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconVaccinesRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconVaccinesRoundedFilled as default } +export default IconVaccinesRoundedFilled diff --git a/src/IconVaccinesSharp.tsx b/src/IconVaccinesSharp.tsx index 21b0ad124..060af2a7c 100644 --- a/src/IconVaccinesSharp.tsx +++ b/src/IconVaccinesSharp.tsx @@ -8,4 +8,4 @@ const IconVaccinesSharp: React.FC = ({ ...props }) => ( ) -export { IconVaccinesSharp as default } +export default IconVaccinesSharp diff --git a/src/IconVaccinesSharpFilled.tsx b/src/IconVaccinesSharpFilled.tsx index 33acedb70..57e59af71 100644 --- a/src/IconVaccinesSharpFilled.tsx +++ b/src/IconVaccinesSharpFilled.tsx @@ -8,4 +8,4 @@ const IconVaccinesSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconVaccinesSharpFilled as default } +export default IconVaccinesSharpFilled diff --git a/src/IconVacuumOutlined.tsx b/src/IconVacuumOutlined.tsx index 9436c821e..030efe348 100644 --- a/src/IconVacuumOutlined.tsx +++ b/src/IconVacuumOutlined.tsx @@ -8,4 +8,4 @@ const IconVacuumOutlined: React.FC = ({ ...props }) => ( ) -export { IconVacuumOutlined as default } +export default IconVacuumOutlined diff --git a/src/IconVacuumOutlinedFilled.tsx b/src/IconVacuumOutlinedFilled.tsx index 6e080e9a2..fbea70a9f 100644 --- a/src/IconVacuumOutlinedFilled.tsx +++ b/src/IconVacuumOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconVacuumOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconVacuumOutlinedFilled as default } +export default IconVacuumOutlinedFilled diff --git a/src/IconVacuumRounded.tsx b/src/IconVacuumRounded.tsx index d09c77031..7c39eb785 100644 --- a/src/IconVacuumRounded.tsx +++ b/src/IconVacuumRounded.tsx @@ -8,4 +8,4 @@ const IconVacuumRounded: React.FC = ({ ...props }) => ( ) -export { IconVacuumRounded as default } +export default IconVacuumRounded diff --git a/src/IconVacuumRoundedFilled.tsx b/src/IconVacuumRoundedFilled.tsx index a02816e76..6b880a8e4 100644 --- a/src/IconVacuumRoundedFilled.tsx +++ b/src/IconVacuumRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconVacuumRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconVacuumRoundedFilled as default } +export default IconVacuumRoundedFilled diff --git a/src/IconVacuumSharp.tsx b/src/IconVacuumSharp.tsx index a7405651e..22c023d7a 100644 --- a/src/IconVacuumSharp.tsx +++ b/src/IconVacuumSharp.tsx @@ -8,4 +8,4 @@ const IconVacuumSharp: React.FC = ({ ...props }) => ( ) -export { IconVacuumSharp as default } +export default IconVacuumSharp diff --git a/src/IconVacuumSharpFilled.tsx b/src/IconVacuumSharpFilled.tsx index 810f61100..b72438957 100644 --- a/src/IconVacuumSharpFilled.tsx +++ b/src/IconVacuumSharpFilled.tsx @@ -8,4 +8,4 @@ const IconVacuumSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconVacuumSharpFilled as default } +export default IconVacuumSharpFilled diff --git a/src/IconValveOutlined.tsx b/src/IconValveOutlined.tsx index 93adff926..98557f06e 100644 --- a/src/IconValveOutlined.tsx +++ b/src/IconValveOutlined.tsx @@ -8,4 +8,4 @@ const IconValveOutlined: React.FC = ({ ...props }) => ( ) -export { IconValveOutlined as default } +export default IconValveOutlined diff --git a/src/IconValveOutlinedFilled.tsx b/src/IconValveOutlinedFilled.tsx index 0f9bdab13..605f3237e 100644 --- a/src/IconValveOutlinedFilled.tsx +++ b/src/IconValveOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconValveOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconValveOutlinedFilled as default } +export default IconValveOutlinedFilled diff --git a/src/IconValveRounded.tsx b/src/IconValveRounded.tsx index 644d05616..9ae6f7ded 100644 --- a/src/IconValveRounded.tsx +++ b/src/IconValveRounded.tsx @@ -8,4 +8,4 @@ const IconValveRounded: React.FC = ({ ...props }) => ( ) -export { IconValveRounded as default } +export default IconValveRounded diff --git a/src/IconValveRoundedFilled.tsx b/src/IconValveRoundedFilled.tsx index 9bc334e53..5d80e0d68 100644 --- a/src/IconValveRoundedFilled.tsx +++ b/src/IconValveRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconValveRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconValveRoundedFilled as default } +export default IconValveRoundedFilled diff --git a/src/IconValveSharp.tsx b/src/IconValveSharp.tsx index db9566b71..58d8f4b71 100644 --- a/src/IconValveSharp.tsx +++ b/src/IconValveSharp.tsx @@ -8,4 +8,4 @@ const IconValveSharp: React.FC = ({ ...props }) => ( ) -export { IconValveSharp as default } +export default IconValveSharp diff --git a/src/IconValveSharpFilled.tsx b/src/IconValveSharpFilled.tsx index 6e2e82eb5..025b2c436 100644 --- a/src/IconValveSharpFilled.tsx +++ b/src/IconValveSharpFilled.tsx @@ -8,4 +8,4 @@ const IconValveSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconValveSharpFilled as default } +export default IconValveSharpFilled diff --git a/src/IconVapeFreeOutlined.tsx b/src/IconVapeFreeOutlined.tsx index fa7250457..0ea08693c 100644 --- a/src/IconVapeFreeOutlined.tsx +++ b/src/IconVapeFreeOutlined.tsx @@ -8,4 +8,4 @@ const IconVapeFreeOutlined: React.FC = ({ ...props }) => ( ) -export { IconVapeFreeOutlined as default } +export default IconVapeFreeOutlined diff --git a/src/IconVapeFreeOutlinedFilled.tsx b/src/IconVapeFreeOutlinedFilled.tsx index 69105d5bf..074e97dda 100644 --- a/src/IconVapeFreeOutlinedFilled.tsx +++ b/src/IconVapeFreeOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconVapeFreeOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconVapeFreeOutlinedFilled as default } +export default IconVapeFreeOutlinedFilled diff --git a/src/IconVapeFreeRounded.tsx b/src/IconVapeFreeRounded.tsx index 257ca6eba..7374fc33c 100644 --- a/src/IconVapeFreeRounded.tsx +++ b/src/IconVapeFreeRounded.tsx @@ -8,4 +8,4 @@ const IconVapeFreeRounded: React.FC = ({ ...props }) => ( ) -export { IconVapeFreeRounded as default } +export default IconVapeFreeRounded diff --git a/src/IconVapeFreeRoundedFilled.tsx b/src/IconVapeFreeRoundedFilled.tsx index 8e0ee54e2..55dcc898c 100644 --- a/src/IconVapeFreeRoundedFilled.tsx +++ b/src/IconVapeFreeRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconVapeFreeRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconVapeFreeRoundedFilled as default } +export default IconVapeFreeRoundedFilled diff --git a/src/IconVapeFreeSharp.tsx b/src/IconVapeFreeSharp.tsx index 2a92da731..286e38186 100644 --- a/src/IconVapeFreeSharp.tsx +++ b/src/IconVapeFreeSharp.tsx @@ -8,4 +8,4 @@ const IconVapeFreeSharp: React.FC = ({ ...props }) => ( ) -export { IconVapeFreeSharp as default } +export default IconVapeFreeSharp diff --git a/src/IconVapeFreeSharpFilled.tsx b/src/IconVapeFreeSharpFilled.tsx index 4c05bbc80..61110baf0 100644 --- a/src/IconVapeFreeSharpFilled.tsx +++ b/src/IconVapeFreeSharpFilled.tsx @@ -8,4 +8,4 @@ const IconVapeFreeSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconVapeFreeSharpFilled as default } +export default IconVapeFreeSharpFilled diff --git a/src/IconVapingRoomsOutlined.tsx b/src/IconVapingRoomsOutlined.tsx index b74dabd40..7be010adb 100644 --- a/src/IconVapingRoomsOutlined.tsx +++ b/src/IconVapingRoomsOutlined.tsx @@ -8,4 +8,4 @@ const IconVapingRoomsOutlined: React.FC = ({ ...props }) => ( ) -export { IconVapingRoomsOutlined as default } +export default IconVapingRoomsOutlined diff --git a/src/IconVapingRoomsOutlinedFilled.tsx b/src/IconVapingRoomsOutlinedFilled.tsx index 6a7c866c5..5e474f5fa 100644 --- a/src/IconVapingRoomsOutlinedFilled.tsx +++ b/src/IconVapingRoomsOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconVapingRoomsOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconVapingRoomsOutlinedFilled as default } +export default IconVapingRoomsOutlinedFilled diff --git a/src/IconVapingRoomsRounded.tsx b/src/IconVapingRoomsRounded.tsx index 2514d83ec..5b3b55410 100644 --- a/src/IconVapingRoomsRounded.tsx +++ b/src/IconVapingRoomsRounded.tsx @@ -8,4 +8,4 @@ const IconVapingRoomsRounded: React.FC = ({ ...props }) => ( ) -export { IconVapingRoomsRounded as default } +export default IconVapingRoomsRounded diff --git a/src/IconVapingRoomsRoundedFilled.tsx b/src/IconVapingRoomsRoundedFilled.tsx index b2670a333..b65b8f3ed 100644 --- a/src/IconVapingRoomsRoundedFilled.tsx +++ b/src/IconVapingRoomsRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconVapingRoomsRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconVapingRoomsRoundedFilled as default } +export default IconVapingRoomsRoundedFilled diff --git a/src/IconVapingRoomsSharp.tsx b/src/IconVapingRoomsSharp.tsx index e40ad8715..915364bbb 100644 --- a/src/IconVapingRoomsSharp.tsx +++ b/src/IconVapingRoomsSharp.tsx @@ -8,4 +8,4 @@ const IconVapingRoomsSharp: React.FC = ({ ...props }) => ( ) -export { IconVapingRoomsSharp as default } +export default IconVapingRoomsSharp diff --git a/src/IconVapingRoomsSharpFilled.tsx b/src/IconVapingRoomsSharpFilled.tsx index 5070a56be..14571a607 100644 --- a/src/IconVapingRoomsSharpFilled.tsx +++ b/src/IconVapingRoomsSharpFilled.tsx @@ -8,4 +8,4 @@ const IconVapingRoomsSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconVapingRoomsSharpFilled as default } +export default IconVapingRoomsSharpFilled diff --git a/src/IconVariableAddOutlined.tsx b/src/IconVariableAddOutlined.tsx index cb0527b08..dfd2c6ad0 100644 --- a/src/IconVariableAddOutlined.tsx +++ b/src/IconVariableAddOutlined.tsx @@ -8,4 +8,4 @@ const IconVariableAddOutlined: React.FC = ({ ...props }) => ( ) -export { IconVariableAddOutlined as default } +export default IconVariableAddOutlined diff --git a/src/IconVariableAddOutlinedFilled.tsx b/src/IconVariableAddOutlinedFilled.tsx index 64a10925c..fe1f07565 100644 --- a/src/IconVariableAddOutlinedFilled.tsx +++ b/src/IconVariableAddOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconVariableAddOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconVariableAddOutlinedFilled as default } +export default IconVariableAddOutlinedFilled diff --git a/src/IconVariableAddRounded.tsx b/src/IconVariableAddRounded.tsx index 87f928881..59489d562 100644 --- a/src/IconVariableAddRounded.tsx +++ b/src/IconVariableAddRounded.tsx @@ -8,4 +8,4 @@ const IconVariableAddRounded: React.FC = ({ ...props }) => ( ) -export { IconVariableAddRounded as default } +export default IconVariableAddRounded diff --git a/src/IconVariableAddRoundedFilled.tsx b/src/IconVariableAddRoundedFilled.tsx index eb9ce8a89..7920cbb4f 100644 --- a/src/IconVariableAddRoundedFilled.tsx +++ b/src/IconVariableAddRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconVariableAddRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconVariableAddRoundedFilled as default } +export default IconVariableAddRoundedFilled diff --git a/src/IconVariableAddSharp.tsx b/src/IconVariableAddSharp.tsx index 6ee66ab1e..17808eef4 100644 --- a/src/IconVariableAddSharp.tsx +++ b/src/IconVariableAddSharp.tsx @@ -8,4 +8,4 @@ const IconVariableAddSharp: React.FC = ({ ...props }) => ( ) -export { IconVariableAddSharp as default } +export default IconVariableAddSharp diff --git a/src/IconVariableAddSharpFilled.tsx b/src/IconVariableAddSharpFilled.tsx index 0914994ef..9ce2bbf30 100644 --- a/src/IconVariableAddSharpFilled.tsx +++ b/src/IconVariableAddSharpFilled.tsx @@ -8,4 +8,4 @@ const IconVariableAddSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconVariableAddSharpFilled as default } +export default IconVariableAddSharpFilled diff --git a/src/IconVariableInsertOutlined.tsx b/src/IconVariableInsertOutlined.tsx index 1f128d1cb..3e82fd3f0 100644 --- a/src/IconVariableInsertOutlined.tsx +++ b/src/IconVariableInsertOutlined.tsx @@ -8,4 +8,4 @@ const IconVariableInsertOutlined: React.FC = ({ ...props }) => ( ) -export { IconVariableInsertOutlined as default } +export default IconVariableInsertOutlined diff --git a/src/IconVariableInsertOutlinedFilled.tsx b/src/IconVariableInsertOutlinedFilled.tsx index 553c11323..3fdc83f0b 100644 --- a/src/IconVariableInsertOutlinedFilled.tsx +++ b/src/IconVariableInsertOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconVariableInsertOutlinedFilled: React.FC = ({ ) -export { IconVariableInsertOutlinedFilled as default } +export default IconVariableInsertOutlinedFilled diff --git a/src/IconVariableInsertRounded.tsx b/src/IconVariableInsertRounded.tsx index f5a81a483..9642d3ed3 100644 --- a/src/IconVariableInsertRounded.tsx +++ b/src/IconVariableInsertRounded.tsx @@ -8,4 +8,4 @@ const IconVariableInsertRounded: React.FC = ({ ...props }) => ( ) -export { IconVariableInsertRounded as default } +export default IconVariableInsertRounded diff --git a/src/IconVariableInsertRoundedFilled.tsx b/src/IconVariableInsertRoundedFilled.tsx index 45f7ad8a6..0e93384f1 100644 --- a/src/IconVariableInsertRoundedFilled.tsx +++ b/src/IconVariableInsertRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconVariableInsertRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconVariableInsertRoundedFilled as default } +export default IconVariableInsertRoundedFilled diff --git a/src/IconVariableInsertSharp.tsx b/src/IconVariableInsertSharp.tsx index 5cb951cd0..0e5541eef 100644 --- a/src/IconVariableInsertSharp.tsx +++ b/src/IconVariableInsertSharp.tsx @@ -8,4 +8,4 @@ const IconVariableInsertSharp: React.FC = ({ ...props }) => ( ) -export { IconVariableInsertSharp as default } +export default IconVariableInsertSharp diff --git a/src/IconVariableInsertSharpFilled.tsx b/src/IconVariableInsertSharpFilled.tsx index fea16d52c..a46f8965b 100644 --- a/src/IconVariableInsertSharpFilled.tsx +++ b/src/IconVariableInsertSharpFilled.tsx @@ -8,4 +8,4 @@ const IconVariableInsertSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconVariableInsertSharpFilled as default } +export default IconVariableInsertSharpFilled diff --git a/src/IconVariableRemoveOutlined.tsx b/src/IconVariableRemoveOutlined.tsx index 59c31b277..aa5763c3f 100644 --- a/src/IconVariableRemoveOutlined.tsx +++ b/src/IconVariableRemoveOutlined.tsx @@ -8,4 +8,4 @@ const IconVariableRemoveOutlined: React.FC = ({ ...props }) => ( ) -export { IconVariableRemoveOutlined as default } +export default IconVariableRemoveOutlined diff --git a/src/IconVariableRemoveOutlinedFilled.tsx b/src/IconVariableRemoveOutlinedFilled.tsx index 7de20dd8e..7f1e469f5 100644 --- a/src/IconVariableRemoveOutlinedFilled.tsx +++ b/src/IconVariableRemoveOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconVariableRemoveOutlinedFilled: React.FC = ({ ) -export { IconVariableRemoveOutlinedFilled as default } +export default IconVariableRemoveOutlinedFilled diff --git a/src/IconVariableRemoveRounded.tsx b/src/IconVariableRemoveRounded.tsx index 47fdc82fe..d197a0688 100644 --- a/src/IconVariableRemoveRounded.tsx +++ b/src/IconVariableRemoveRounded.tsx @@ -8,4 +8,4 @@ const IconVariableRemoveRounded: React.FC = ({ ...props }) => ( ) -export { IconVariableRemoveRounded as default } +export default IconVariableRemoveRounded diff --git a/src/IconVariableRemoveRoundedFilled.tsx b/src/IconVariableRemoveRoundedFilled.tsx index d68892b59..2365c0687 100644 --- a/src/IconVariableRemoveRoundedFilled.tsx +++ b/src/IconVariableRemoveRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconVariableRemoveRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconVariableRemoveRoundedFilled as default } +export default IconVariableRemoveRoundedFilled diff --git a/src/IconVariableRemoveSharp.tsx b/src/IconVariableRemoveSharp.tsx index 64de3bfae..cf23c804c 100644 --- a/src/IconVariableRemoveSharp.tsx +++ b/src/IconVariableRemoveSharp.tsx @@ -8,4 +8,4 @@ const IconVariableRemoveSharp: React.FC = ({ ...props }) => ( ) -export { IconVariableRemoveSharp as default } +export default IconVariableRemoveSharp diff --git a/src/IconVariableRemoveSharpFilled.tsx b/src/IconVariableRemoveSharpFilled.tsx index 510120501..3073bf6ab 100644 --- a/src/IconVariableRemoveSharpFilled.tsx +++ b/src/IconVariableRemoveSharpFilled.tsx @@ -8,4 +8,4 @@ const IconVariableRemoveSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconVariableRemoveSharpFilled as default } +export default IconVariableRemoveSharpFilled diff --git a/src/IconVariablesOutlined.tsx b/src/IconVariablesOutlined.tsx index 415559ab4..0ff9a1a5a 100644 --- a/src/IconVariablesOutlined.tsx +++ b/src/IconVariablesOutlined.tsx @@ -8,4 +8,4 @@ const IconVariablesOutlined: React.FC = ({ ...props }) => ( ) -export { IconVariablesOutlined as default } +export default IconVariablesOutlined diff --git a/src/IconVariablesOutlinedFilled.tsx b/src/IconVariablesOutlinedFilled.tsx index 8a5e7f186..112fdd83c 100644 --- a/src/IconVariablesOutlinedFilled.tsx +++ b/src/IconVariablesOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconVariablesOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconVariablesOutlinedFilled as default } +export default IconVariablesOutlinedFilled diff --git a/src/IconVariablesRounded.tsx b/src/IconVariablesRounded.tsx index e48978c61..52dae5115 100644 --- a/src/IconVariablesRounded.tsx +++ b/src/IconVariablesRounded.tsx @@ -8,4 +8,4 @@ const IconVariablesRounded: React.FC = ({ ...props }) => ( ) -export { IconVariablesRounded as default } +export default IconVariablesRounded diff --git a/src/IconVariablesRoundedFilled.tsx b/src/IconVariablesRoundedFilled.tsx index f1f5124cf..7a6e77b3a 100644 --- a/src/IconVariablesRoundedFilled.tsx +++ b/src/IconVariablesRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconVariablesRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconVariablesRoundedFilled as default } +export default IconVariablesRoundedFilled diff --git a/src/IconVariablesSharp.tsx b/src/IconVariablesSharp.tsx index ca5266899..ee0e1d704 100644 --- a/src/IconVariablesSharp.tsx +++ b/src/IconVariablesSharp.tsx @@ -8,4 +8,4 @@ const IconVariablesSharp: React.FC = ({ ...props }) => ( ) -export { IconVariablesSharp as default } +export default IconVariablesSharp diff --git a/src/IconVariablesSharpFilled.tsx b/src/IconVariablesSharpFilled.tsx index 5e263f8e6..d42992158 100644 --- a/src/IconVariablesSharpFilled.tsx +++ b/src/IconVariablesSharpFilled.tsx @@ -8,4 +8,4 @@ const IconVariablesSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconVariablesSharpFilled as default } +export default IconVariablesSharpFilled diff --git a/src/IconVentilatorOutlined.tsx b/src/IconVentilatorOutlined.tsx index 820330e9f..49fe59e53 100644 --- a/src/IconVentilatorOutlined.tsx +++ b/src/IconVentilatorOutlined.tsx @@ -8,4 +8,4 @@ const IconVentilatorOutlined: React.FC = ({ ...props }) => ( ) -export { IconVentilatorOutlined as default } +export default IconVentilatorOutlined diff --git a/src/IconVentilatorOutlinedFilled.tsx b/src/IconVentilatorOutlinedFilled.tsx index bc394baf2..619070e46 100644 --- a/src/IconVentilatorOutlinedFilled.tsx +++ b/src/IconVentilatorOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconVentilatorOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconVentilatorOutlinedFilled as default } +export default IconVentilatorOutlinedFilled diff --git a/src/IconVentilatorRounded.tsx b/src/IconVentilatorRounded.tsx index 7058cd5d6..c6b8d8bb2 100644 --- a/src/IconVentilatorRounded.tsx +++ b/src/IconVentilatorRounded.tsx @@ -8,4 +8,4 @@ const IconVentilatorRounded: React.FC = ({ ...props }) => ( ) -export { IconVentilatorRounded as default } +export default IconVentilatorRounded diff --git a/src/IconVentilatorRoundedFilled.tsx b/src/IconVentilatorRoundedFilled.tsx index 69439afa3..6efd20222 100644 --- a/src/IconVentilatorRoundedFilled.tsx +++ b/src/IconVentilatorRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconVentilatorRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconVentilatorRoundedFilled as default } +export default IconVentilatorRoundedFilled diff --git a/src/IconVentilatorSharp.tsx b/src/IconVentilatorSharp.tsx index 643e536ee..687497afc 100644 --- a/src/IconVentilatorSharp.tsx +++ b/src/IconVentilatorSharp.tsx @@ -8,4 +8,4 @@ const IconVentilatorSharp: React.FC = ({ ...props }) => ( ) -export { IconVentilatorSharp as default } +export default IconVentilatorSharp diff --git a/src/IconVentilatorSharpFilled.tsx b/src/IconVentilatorSharpFilled.tsx index 312bcd407..074641564 100644 --- a/src/IconVentilatorSharpFilled.tsx +++ b/src/IconVentilatorSharpFilled.tsx @@ -8,4 +8,4 @@ const IconVentilatorSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconVentilatorSharpFilled as default } +export default IconVentilatorSharpFilled diff --git a/src/IconVerifiedOutlined.tsx b/src/IconVerifiedOutlined.tsx index 573c719e2..120d9c87e 100644 --- a/src/IconVerifiedOutlined.tsx +++ b/src/IconVerifiedOutlined.tsx @@ -8,4 +8,4 @@ const IconVerifiedOutlined: React.FC = ({ ...props }) => ( ) -export { IconVerifiedOutlined as default } +export default IconVerifiedOutlined diff --git a/src/IconVerifiedOutlinedFilled.tsx b/src/IconVerifiedOutlinedFilled.tsx index 470475e8a..a78e2a80c 100644 --- a/src/IconVerifiedOutlinedFilled.tsx +++ b/src/IconVerifiedOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconVerifiedOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconVerifiedOutlinedFilled as default } +export default IconVerifiedOutlinedFilled diff --git a/src/IconVerifiedRounded.tsx b/src/IconVerifiedRounded.tsx index cb6f4ff53..a258fede0 100644 --- a/src/IconVerifiedRounded.tsx +++ b/src/IconVerifiedRounded.tsx @@ -8,4 +8,4 @@ const IconVerifiedRounded: React.FC = ({ ...props }) => ( ) -export { IconVerifiedRounded as default } +export default IconVerifiedRounded diff --git a/src/IconVerifiedRoundedFilled.tsx b/src/IconVerifiedRoundedFilled.tsx index 1594108d3..fcbcb1c8b 100644 --- a/src/IconVerifiedRoundedFilled.tsx +++ b/src/IconVerifiedRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconVerifiedRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconVerifiedRoundedFilled as default } +export default IconVerifiedRoundedFilled diff --git a/src/IconVerifiedSharp.tsx b/src/IconVerifiedSharp.tsx index 3cde745bf..e3ac8c676 100644 --- a/src/IconVerifiedSharp.tsx +++ b/src/IconVerifiedSharp.tsx @@ -8,4 +8,4 @@ const IconVerifiedSharp: React.FC = ({ ...props }) => ( ) -export { IconVerifiedSharp as default } +export default IconVerifiedSharp diff --git a/src/IconVerifiedSharpFilled.tsx b/src/IconVerifiedSharpFilled.tsx index 90dc2b9eb..21141b6a4 100644 --- a/src/IconVerifiedSharpFilled.tsx +++ b/src/IconVerifiedSharpFilled.tsx @@ -8,4 +8,4 @@ const IconVerifiedSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconVerifiedSharpFilled as default } +export default IconVerifiedSharpFilled diff --git a/src/IconVerifiedUserOutlined.tsx b/src/IconVerifiedUserOutlined.tsx index 3a9af6cd6..bd98c09bc 100644 --- a/src/IconVerifiedUserOutlined.tsx +++ b/src/IconVerifiedUserOutlined.tsx @@ -8,4 +8,4 @@ const IconVerifiedUserOutlined: React.FC = ({ ...props }) => ( ) -export { IconVerifiedUserOutlined as default } +export default IconVerifiedUserOutlined diff --git a/src/IconVerifiedUserOutlinedFilled.tsx b/src/IconVerifiedUserOutlinedFilled.tsx index aef7769f9..40d825f66 100644 --- a/src/IconVerifiedUserOutlinedFilled.tsx +++ b/src/IconVerifiedUserOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconVerifiedUserOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconVerifiedUserOutlinedFilled as default } +export default IconVerifiedUserOutlinedFilled diff --git a/src/IconVerifiedUserRounded.tsx b/src/IconVerifiedUserRounded.tsx index 839170d66..cca7c5670 100644 --- a/src/IconVerifiedUserRounded.tsx +++ b/src/IconVerifiedUserRounded.tsx @@ -8,4 +8,4 @@ const IconVerifiedUserRounded: React.FC = ({ ...props }) => ( ) -export { IconVerifiedUserRounded as default } +export default IconVerifiedUserRounded diff --git a/src/IconVerifiedUserRoundedFilled.tsx b/src/IconVerifiedUserRoundedFilled.tsx index b2863607a..84fefb28e 100644 --- a/src/IconVerifiedUserRoundedFilled.tsx +++ b/src/IconVerifiedUserRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconVerifiedUserRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconVerifiedUserRoundedFilled as default } +export default IconVerifiedUserRoundedFilled diff --git a/src/IconVerifiedUserSharp.tsx b/src/IconVerifiedUserSharp.tsx index 5636a97fd..ce3d43c59 100644 --- a/src/IconVerifiedUserSharp.tsx +++ b/src/IconVerifiedUserSharp.tsx @@ -8,4 +8,4 @@ const IconVerifiedUserSharp: React.FC = ({ ...props }) => ( ) -export { IconVerifiedUserSharp as default } +export default IconVerifiedUserSharp diff --git a/src/IconVerifiedUserSharpFilled.tsx b/src/IconVerifiedUserSharpFilled.tsx index 741d5b3f9..a9418a784 100644 --- a/src/IconVerifiedUserSharpFilled.tsx +++ b/src/IconVerifiedUserSharpFilled.tsx @@ -8,4 +8,4 @@ const IconVerifiedUserSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconVerifiedUserSharpFilled as default } +export default IconVerifiedUserSharpFilled diff --git a/src/IconVerticalAlignBottomOutlined.tsx b/src/IconVerticalAlignBottomOutlined.tsx index e5d92150c..dbc543201 100644 --- a/src/IconVerticalAlignBottomOutlined.tsx +++ b/src/IconVerticalAlignBottomOutlined.tsx @@ -8,4 +8,4 @@ const IconVerticalAlignBottomOutlined: React.FC = ({ ...props }) => ( ) -export { IconVerticalAlignBottomOutlined as default } +export default IconVerticalAlignBottomOutlined diff --git a/src/IconVerticalAlignBottomOutlinedFilled.tsx b/src/IconVerticalAlignBottomOutlinedFilled.tsx index 85e7bfedb..9bd01d9ba 100644 --- a/src/IconVerticalAlignBottomOutlinedFilled.tsx +++ b/src/IconVerticalAlignBottomOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconVerticalAlignBottomOutlinedFilled: React.FC = ({ ) -export { IconVerticalAlignBottomOutlinedFilled as default } +export default IconVerticalAlignBottomOutlinedFilled diff --git a/src/IconVerticalAlignBottomRounded.tsx b/src/IconVerticalAlignBottomRounded.tsx index f6f5adca2..0324bcfa7 100644 --- a/src/IconVerticalAlignBottomRounded.tsx +++ b/src/IconVerticalAlignBottomRounded.tsx @@ -8,4 +8,4 @@ const IconVerticalAlignBottomRounded: React.FC = ({ ...props }) => ( ) -export { IconVerticalAlignBottomRounded as default } +export default IconVerticalAlignBottomRounded diff --git a/src/IconVerticalAlignBottomRoundedFilled.tsx b/src/IconVerticalAlignBottomRoundedFilled.tsx index 0bfb7f4f0..c00d33c39 100644 --- a/src/IconVerticalAlignBottomRoundedFilled.tsx +++ b/src/IconVerticalAlignBottomRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconVerticalAlignBottomRoundedFilled: React.FC = ({ ) -export { IconVerticalAlignBottomRoundedFilled as default } +export default IconVerticalAlignBottomRoundedFilled diff --git a/src/IconVerticalAlignBottomSharp.tsx b/src/IconVerticalAlignBottomSharp.tsx index 70a152b4a..a53328e5b 100644 --- a/src/IconVerticalAlignBottomSharp.tsx +++ b/src/IconVerticalAlignBottomSharp.tsx @@ -8,4 +8,4 @@ const IconVerticalAlignBottomSharp: React.FC = ({ ...props }) => ( ) -export { IconVerticalAlignBottomSharp as default } +export default IconVerticalAlignBottomSharp diff --git a/src/IconVerticalAlignBottomSharpFilled.tsx b/src/IconVerticalAlignBottomSharpFilled.tsx index 3db4aa88a..3869971e0 100644 --- a/src/IconVerticalAlignBottomSharpFilled.tsx +++ b/src/IconVerticalAlignBottomSharpFilled.tsx @@ -10,4 +10,4 @@ const IconVerticalAlignBottomSharpFilled: React.FC = ({ ) -export { IconVerticalAlignBottomSharpFilled as default } +export default IconVerticalAlignBottomSharpFilled diff --git a/src/IconVerticalAlignCenterOutlined.tsx b/src/IconVerticalAlignCenterOutlined.tsx index 8927f55c0..6863a1795 100644 --- a/src/IconVerticalAlignCenterOutlined.tsx +++ b/src/IconVerticalAlignCenterOutlined.tsx @@ -8,4 +8,4 @@ const IconVerticalAlignCenterOutlined: React.FC = ({ ...props }) => ( ) -export { IconVerticalAlignCenterOutlined as default } +export default IconVerticalAlignCenterOutlined diff --git a/src/IconVerticalAlignCenterOutlinedFilled.tsx b/src/IconVerticalAlignCenterOutlinedFilled.tsx index a0a7e58ae..be36913f9 100644 --- a/src/IconVerticalAlignCenterOutlinedFilled.tsx +++ b/src/IconVerticalAlignCenterOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconVerticalAlignCenterOutlinedFilled: React.FC = ({ ) -export { IconVerticalAlignCenterOutlinedFilled as default } +export default IconVerticalAlignCenterOutlinedFilled diff --git a/src/IconVerticalAlignCenterRounded.tsx b/src/IconVerticalAlignCenterRounded.tsx index 1bb41bed9..7b83b128d 100644 --- a/src/IconVerticalAlignCenterRounded.tsx +++ b/src/IconVerticalAlignCenterRounded.tsx @@ -8,4 +8,4 @@ const IconVerticalAlignCenterRounded: React.FC = ({ ...props }) => ( ) -export { IconVerticalAlignCenterRounded as default } +export default IconVerticalAlignCenterRounded diff --git a/src/IconVerticalAlignCenterRoundedFilled.tsx b/src/IconVerticalAlignCenterRoundedFilled.tsx index 4a9c45e5e..2be0e737b 100644 --- a/src/IconVerticalAlignCenterRoundedFilled.tsx +++ b/src/IconVerticalAlignCenterRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconVerticalAlignCenterRoundedFilled: React.FC = ({ ) -export { IconVerticalAlignCenterRoundedFilled as default } +export default IconVerticalAlignCenterRoundedFilled diff --git a/src/IconVerticalAlignCenterSharp.tsx b/src/IconVerticalAlignCenterSharp.tsx index dc5b8f70a..a1ccfd3c1 100644 --- a/src/IconVerticalAlignCenterSharp.tsx +++ b/src/IconVerticalAlignCenterSharp.tsx @@ -8,4 +8,4 @@ const IconVerticalAlignCenterSharp: React.FC = ({ ...props }) => ( ) -export { IconVerticalAlignCenterSharp as default } +export default IconVerticalAlignCenterSharp diff --git a/src/IconVerticalAlignCenterSharpFilled.tsx b/src/IconVerticalAlignCenterSharpFilled.tsx index a8e1ef437..f5347dbfd 100644 --- a/src/IconVerticalAlignCenterSharpFilled.tsx +++ b/src/IconVerticalAlignCenterSharpFilled.tsx @@ -10,4 +10,4 @@ const IconVerticalAlignCenterSharpFilled: React.FC = ({ ) -export { IconVerticalAlignCenterSharpFilled as default } +export default IconVerticalAlignCenterSharpFilled diff --git a/src/IconVerticalAlignTopOutlined.tsx b/src/IconVerticalAlignTopOutlined.tsx index f341f4d48..81c3a5181 100644 --- a/src/IconVerticalAlignTopOutlined.tsx +++ b/src/IconVerticalAlignTopOutlined.tsx @@ -8,4 +8,4 @@ const IconVerticalAlignTopOutlined: React.FC = ({ ...props }) => ( ) -export { IconVerticalAlignTopOutlined as default } +export default IconVerticalAlignTopOutlined diff --git a/src/IconVerticalAlignTopOutlinedFilled.tsx b/src/IconVerticalAlignTopOutlinedFilled.tsx index 0ccaad117..0eaf67aa9 100644 --- a/src/IconVerticalAlignTopOutlinedFilled.tsx +++ b/src/IconVerticalAlignTopOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconVerticalAlignTopOutlinedFilled: React.FC = ({ ) -export { IconVerticalAlignTopOutlinedFilled as default } +export default IconVerticalAlignTopOutlinedFilled diff --git a/src/IconVerticalAlignTopRounded.tsx b/src/IconVerticalAlignTopRounded.tsx index 93ada5507..3f8de9f29 100644 --- a/src/IconVerticalAlignTopRounded.tsx +++ b/src/IconVerticalAlignTopRounded.tsx @@ -8,4 +8,4 @@ const IconVerticalAlignTopRounded: React.FC = ({ ...props }) => ( ) -export { IconVerticalAlignTopRounded as default } +export default IconVerticalAlignTopRounded diff --git a/src/IconVerticalAlignTopRoundedFilled.tsx b/src/IconVerticalAlignTopRoundedFilled.tsx index 19dfa35d4..b62fef26a 100644 --- a/src/IconVerticalAlignTopRoundedFilled.tsx +++ b/src/IconVerticalAlignTopRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconVerticalAlignTopRoundedFilled: React.FC = ({ ) -export { IconVerticalAlignTopRoundedFilled as default } +export default IconVerticalAlignTopRoundedFilled diff --git a/src/IconVerticalAlignTopSharp.tsx b/src/IconVerticalAlignTopSharp.tsx index ce00864ad..b9a1649a1 100644 --- a/src/IconVerticalAlignTopSharp.tsx +++ b/src/IconVerticalAlignTopSharp.tsx @@ -8,4 +8,4 @@ const IconVerticalAlignTopSharp: React.FC = ({ ...props }) => ( ) -export { IconVerticalAlignTopSharp as default } +export default IconVerticalAlignTopSharp diff --git a/src/IconVerticalAlignTopSharpFilled.tsx b/src/IconVerticalAlignTopSharpFilled.tsx index 510d2ab4b..dbe116871 100644 --- a/src/IconVerticalAlignTopSharpFilled.tsx +++ b/src/IconVerticalAlignTopSharpFilled.tsx @@ -8,4 +8,4 @@ const IconVerticalAlignTopSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconVerticalAlignTopSharpFilled as default } +export default IconVerticalAlignTopSharpFilled diff --git a/src/IconVerticalDistributeOutlined.tsx b/src/IconVerticalDistributeOutlined.tsx index be789d184..6601966d5 100644 --- a/src/IconVerticalDistributeOutlined.tsx +++ b/src/IconVerticalDistributeOutlined.tsx @@ -8,4 +8,4 @@ const IconVerticalDistributeOutlined: React.FC = ({ ...props }) => ( ) -export { IconVerticalDistributeOutlined as default } +export default IconVerticalDistributeOutlined diff --git a/src/IconVerticalDistributeOutlinedFilled.tsx b/src/IconVerticalDistributeOutlinedFilled.tsx index 64ab88058..bb6b9fed9 100644 --- a/src/IconVerticalDistributeOutlinedFilled.tsx +++ b/src/IconVerticalDistributeOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconVerticalDistributeOutlinedFilled: React.FC = ({ ) -export { IconVerticalDistributeOutlinedFilled as default } +export default IconVerticalDistributeOutlinedFilled diff --git a/src/IconVerticalDistributeRounded.tsx b/src/IconVerticalDistributeRounded.tsx index 3365dc101..a6070f299 100644 --- a/src/IconVerticalDistributeRounded.tsx +++ b/src/IconVerticalDistributeRounded.tsx @@ -8,4 +8,4 @@ const IconVerticalDistributeRounded: React.FC = ({ ...props }) => ( ) -export { IconVerticalDistributeRounded as default } +export default IconVerticalDistributeRounded diff --git a/src/IconVerticalDistributeRoundedFilled.tsx b/src/IconVerticalDistributeRoundedFilled.tsx index 09b07fe89..fe3398141 100644 --- a/src/IconVerticalDistributeRoundedFilled.tsx +++ b/src/IconVerticalDistributeRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconVerticalDistributeRoundedFilled: React.FC = ({ ) -export { IconVerticalDistributeRoundedFilled as default } +export default IconVerticalDistributeRoundedFilled diff --git a/src/IconVerticalDistributeSharp.tsx b/src/IconVerticalDistributeSharp.tsx index b526692ce..9c45fe35c 100644 --- a/src/IconVerticalDistributeSharp.tsx +++ b/src/IconVerticalDistributeSharp.tsx @@ -8,4 +8,4 @@ const IconVerticalDistributeSharp: React.FC = ({ ...props }) => ( ) -export { IconVerticalDistributeSharp as default } +export default IconVerticalDistributeSharp diff --git a/src/IconVerticalDistributeSharpFilled.tsx b/src/IconVerticalDistributeSharpFilled.tsx index 710b5c87d..5dd54a9b5 100644 --- a/src/IconVerticalDistributeSharpFilled.tsx +++ b/src/IconVerticalDistributeSharpFilled.tsx @@ -10,4 +10,4 @@ const IconVerticalDistributeSharpFilled: React.FC = ({ ) -export { IconVerticalDistributeSharpFilled as default } +export default IconVerticalDistributeSharpFilled diff --git a/src/IconVerticalShadesClosedOutlined.tsx b/src/IconVerticalShadesClosedOutlined.tsx index 6f73ebaee..34bf343a5 100644 --- a/src/IconVerticalShadesClosedOutlined.tsx +++ b/src/IconVerticalShadesClosedOutlined.tsx @@ -10,4 +10,4 @@ const IconVerticalShadesClosedOutlined: React.FC = ({ ) -export { IconVerticalShadesClosedOutlined as default } +export default IconVerticalShadesClosedOutlined diff --git a/src/IconVerticalShadesClosedOutlinedFilled.tsx b/src/IconVerticalShadesClosedOutlinedFilled.tsx index a72b5b37f..3b189a895 100644 --- a/src/IconVerticalShadesClosedOutlinedFilled.tsx +++ b/src/IconVerticalShadesClosedOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconVerticalShadesClosedOutlinedFilled: React.FC = ({ ) -export { IconVerticalShadesClosedOutlinedFilled as default } +export default IconVerticalShadesClosedOutlinedFilled diff --git a/src/IconVerticalShadesClosedRounded.tsx b/src/IconVerticalShadesClosedRounded.tsx index 03ef2b41d..8b289b6ab 100644 --- a/src/IconVerticalShadesClosedRounded.tsx +++ b/src/IconVerticalShadesClosedRounded.tsx @@ -8,4 +8,4 @@ const IconVerticalShadesClosedRounded: React.FC = ({ ...props }) => ( ) -export { IconVerticalShadesClosedRounded as default } +export default IconVerticalShadesClosedRounded diff --git a/src/IconVerticalShadesClosedRoundedFilled.tsx b/src/IconVerticalShadesClosedRoundedFilled.tsx index a0b46e999..66cc48f57 100644 --- a/src/IconVerticalShadesClosedRoundedFilled.tsx +++ b/src/IconVerticalShadesClosedRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconVerticalShadesClosedRoundedFilled: React.FC = ({ ) -export { IconVerticalShadesClosedRoundedFilled as default } +export default IconVerticalShadesClosedRoundedFilled diff --git a/src/IconVerticalShadesClosedSharp.tsx b/src/IconVerticalShadesClosedSharp.tsx index 1125b484d..e64496e05 100644 --- a/src/IconVerticalShadesClosedSharp.tsx +++ b/src/IconVerticalShadesClosedSharp.tsx @@ -8,4 +8,4 @@ const IconVerticalShadesClosedSharp: React.FC = ({ ...props }) => ( ) -export { IconVerticalShadesClosedSharp as default } +export default IconVerticalShadesClosedSharp diff --git a/src/IconVerticalShadesClosedSharpFilled.tsx b/src/IconVerticalShadesClosedSharpFilled.tsx index 5ff7862ca..6a4d8d7da 100644 --- a/src/IconVerticalShadesClosedSharpFilled.tsx +++ b/src/IconVerticalShadesClosedSharpFilled.tsx @@ -10,4 +10,4 @@ const IconVerticalShadesClosedSharpFilled: React.FC = ({ ) -export { IconVerticalShadesClosedSharpFilled as default } +export default IconVerticalShadesClosedSharpFilled diff --git a/src/IconVerticalShadesOutlined.tsx b/src/IconVerticalShadesOutlined.tsx index af81ddb70..39021f09a 100644 --- a/src/IconVerticalShadesOutlined.tsx +++ b/src/IconVerticalShadesOutlined.tsx @@ -8,4 +8,4 @@ const IconVerticalShadesOutlined: React.FC = ({ ...props }) => ( ) -export { IconVerticalShadesOutlined as default } +export default IconVerticalShadesOutlined diff --git a/src/IconVerticalShadesOutlinedFilled.tsx b/src/IconVerticalShadesOutlinedFilled.tsx index 641f3cfa5..45647e0f4 100644 --- a/src/IconVerticalShadesOutlinedFilled.tsx +++ b/src/IconVerticalShadesOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconVerticalShadesOutlinedFilled: React.FC = ({ ) -export { IconVerticalShadesOutlinedFilled as default } +export default IconVerticalShadesOutlinedFilled diff --git a/src/IconVerticalShadesRounded.tsx b/src/IconVerticalShadesRounded.tsx index d3f0653ea..93b000a4a 100644 --- a/src/IconVerticalShadesRounded.tsx +++ b/src/IconVerticalShadesRounded.tsx @@ -8,4 +8,4 @@ const IconVerticalShadesRounded: React.FC = ({ ...props }) => ( ) -export { IconVerticalShadesRounded as default } +export default IconVerticalShadesRounded diff --git a/src/IconVerticalShadesRoundedFilled.tsx b/src/IconVerticalShadesRoundedFilled.tsx index d4ad42c41..3df50ee48 100644 --- a/src/IconVerticalShadesRoundedFilled.tsx +++ b/src/IconVerticalShadesRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconVerticalShadesRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconVerticalShadesRoundedFilled as default } +export default IconVerticalShadesRoundedFilled diff --git a/src/IconVerticalShadesSharp.tsx b/src/IconVerticalShadesSharp.tsx index a9803ae17..04ecc490d 100644 --- a/src/IconVerticalShadesSharp.tsx +++ b/src/IconVerticalShadesSharp.tsx @@ -8,4 +8,4 @@ const IconVerticalShadesSharp: React.FC = ({ ...props }) => ( ) -export { IconVerticalShadesSharp as default } +export default IconVerticalShadesSharp diff --git a/src/IconVerticalShadesSharpFilled.tsx b/src/IconVerticalShadesSharpFilled.tsx index 9336af505..07cbc9d7a 100644 --- a/src/IconVerticalShadesSharpFilled.tsx +++ b/src/IconVerticalShadesSharpFilled.tsx @@ -8,4 +8,4 @@ const IconVerticalShadesSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconVerticalShadesSharpFilled as default } +export default IconVerticalShadesSharpFilled diff --git a/src/IconVerticalSplitOutlined.tsx b/src/IconVerticalSplitOutlined.tsx index ff2f3c5ba..bcb627438 100644 --- a/src/IconVerticalSplitOutlined.tsx +++ b/src/IconVerticalSplitOutlined.tsx @@ -8,4 +8,4 @@ const IconVerticalSplitOutlined: React.FC = ({ ...props }) => ( ) -export { IconVerticalSplitOutlined as default } +export default IconVerticalSplitOutlined diff --git a/src/IconVerticalSplitOutlinedFilled.tsx b/src/IconVerticalSplitOutlinedFilled.tsx index 76e46d43b..fcebc35ae 100644 --- a/src/IconVerticalSplitOutlinedFilled.tsx +++ b/src/IconVerticalSplitOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconVerticalSplitOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconVerticalSplitOutlinedFilled as default } +export default IconVerticalSplitOutlinedFilled diff --git a/src/IconVerticalSplitRounded.tsx b/src/IconVerticalSplitRounded.tsx index ffe293b78..3af5dd5e7 100644 --- a/src/IconVerticalSplitRounded.tsx +++ b/src/IconVerticalSplitRounded.tsx @@ -8,4 +8,4 @@ const IconVerticalSplitRounded: React.FC = ({ ...props }) => ( ) -export { IconVerticalSplitRounded as default } +export default IconVerticalSplitRounded diff --git a/src/IconVerticalSplitRoundedFilled.tsx b/src/IconVerticalSplitRoundedFilled.tsx index 780ed3060..864aecede 100644 --- a/src/IconVerticalSplitRoundedFilled.tsx +++ b/src/IconVerticalSplitRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconVerticalSplitRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconVerticalSplitRoundedFilled as default } +export default IconVerticalSplitRoundedFilled diff --git a/src/IconVerticalSplitSharp.tsx b/src/IconVerticalSplitSharp.tsx index d79ea328f..2419d6098 100644 --- a/src/IconVerticalSplitSharp.tsx +++ b/src/IconVerticalSplitSharp.tsx @@ -8,4 +8,4 @@ const IconVerticalSplitSharp: React.FC = ({ ...props }) => ( ) -export { IconVerticalSplitSharp as default } +export default IconVerticalSplitSharp diff --git a/src/IconVerticalSplitSharpFilled.tsx b/src/IconVerticalSplitSharpFilled.tsx index 94a7585a0..2990c31c7 100644 --- a/src/IconVerticalSplitSharpFilled.tsx +++ b/src/IconVerticalSplitSharpFilled.tsx @@ -8,4 +8,4 @@ const IconVerticalSplitSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconVerticalSplitSharpFilled as default } +export default IconVerticalSplitSharpFilled diff --git a/src/IconVibrationOutlined.tsx b/src/IconVibrationOutlined.tsx index 0c8bd974f..bfb3038bc 100644 --- a/src/IconVibrationOutlined.tsx +++ b/src/IconVibrationOutlined.tsx @@ -8,4 +8,4 @@ const IconVibrationOutlined: React.FC = ({ ...props }) => ( ) -export { IconVibrationOutlined as default } +export default IconVibrationOutlined diff --git a/src/IconVibrationOutlinedFilled.tsx b/src/IconVibrationOutlinedFilled.tsx index 50abd2e3e..0c3b7c167 100644 --- a/src/IconVibrationOutlinedFilled.tsx +++ b/src/IconVibrationOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconVibrationOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconVibrationOutlinedFilled as default } +export default IconVibrationOutlinedFilled diff --git a/src/IconVibrationRounded.tsx b/src/IconVibrationRounded.tsx index b93057f14..a3f4e3322 100644 --- a/src/IconVibrationRounded.tsx +++ b/src/IconVibrationRounded.tsx @@ -8,4 +8,4 @@ const IconVibrationRounded: React.FC = ({ ...props }) => ( ) -export { IconVibrationRounded as default } +export default IconVibrationRounded diff --git a/src/IconVibrationRoundedFilled.tsx b/src/IconVibrationRoundedFilled.tsx index a23d387b1..9b87d21df 100644 --- a/src/IconVibrationRoundedFilled.tsx +++ b/src/IconVibrationRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconVibrationRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconVibrationRoundedFilled as default } +export default IconVibrationRoundedFilled diff --git a/src/IconVibrationSharp.tsx b/src/IconVibrationSharp.tsx index 89bc88796..055f4ca8a 100644 --- a/src/IconVibrationSharp.tsx +++ b/src/IconVibrationSharp.tsx @@ -8,4 +8,4 @@ const IconVibrationSharp: React.FC = ({ ...props }) => ( ) -export { IconVibrationSharp as default } +export default IconVibrationSharp diff --git a/src/IconVibrationSharpFilled.tsx b/src/IconVibrationSharpFilled.tsx index 6fb543e02..01a66d4de 100644 --- a/src/IconVibrationSharpFilled.tsx +++ b/src/IconVibrationSharpFilled.tsx @@ -8,4 +8,4 @@ const IconVibrationSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconVibrationSharpFilled as default } +export default IconVibrationSharpFilled diff --git a/src/IconVideoCallOutlined.tsx b/src/IconVideoCallOutlined.tsx index 20faca105..4f5894374 100644 --- a/src/IconVideoCallOutlined.tsx +++ b/src/IconVideoCallOutlined.tsx @@ -8,4 +8,4 @@ const IconVideoCallOutlined: React.FC = ({ ...props }) => ( ) -export { IconVideoCallOutlined as default } +export default IconVideoCallOutlined diff --git a/src/IconVideoCallOutlinedFilled.tsx b/src/IconVideoCallOutlinedFilled.tsx index 90e1fc571..2aefd5036 100644 --- a/src/IconVideoCallOutlinedFilled.tsx +++ b/src/IconVideoCallOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconVideoCallOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconVideoCallOutlinedFilled as default } +export default IconVideoCallOutlinedFilled diff --git a/src/IconVideoCallRounded.tsx b/src/IconVideoCallRounded.tsx index b72b827e4..8a25b4e0f 100644 --- a/src/IconVideoCallRounded.tsx +++ b/src/IconVideoCallRounded.tsx @@ -8,4 +8,4 @@ const IconVideoCallRounded: React.FC = ({ ...props }) => ( ) -export { IconVideoCallRounded as default } +export default IconVideoCallRounded diff --git a/src/IconVideoCallRoundedFilled.tsx b/src/IconVideoCallRoundedFilled.tsx index c44137037..3d11337b4 100644 --- a/src/IconVideoCallRoundedFilled.tsx +++ b/src/IconVideoCallRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconVideoCallRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconVideoCallRoundedFilled as default } +export default IconVideoCallRoundedFilled diff --git a/src/IconVideoCallSharp.tsx b/src/IconVideoCallSharp.tsx index ebb209575..f938f13ee 100644 --- a/src/IconVideoCallSharp.tsx +++ b/src/IconVideoCallSharp.tsx @@ -8,4 +8,4 @@ const IconVideoCallSharp: React.FC = ({ ...props }) => ( ) -export { IconVideoCallSharp as default } +export default IconVideoCallSharp diff --git a/src/IconVideoCallSharpFilled.tsx b/src/IconVideoCallSharpFilled.tsx index 440c35357..41214154d 100644 --- a/src/IconVideoCallSharpFilled.tsx +++ b/src/IconVideoCallSharpFilled.tsx @@ -8,4 +8,4 @@ const IconVideoCallSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconVideoCallSharpFilled as default } +export default IconVideoCallSharpFilled diff --git a/src/IconVideoCameraBackAddOutlined.tsx b/src/IconVideoCameraBackAddOutlined.tsx index 65d8b4937..c5bb481ad 100644 --- a/src/IconVideoCameraBackAddOutlined.tsx +++ b/src/IconVideoCameraBackAddOutlined.tsx @@ -8,4 +8,4 @@ const IconVideoCameraBackAddOutlined: React.FC = ({ ...props }) => ( ) -export { IconVideoCameraBackAddOutlined as default } +export default IconVideoCameraBackAddOutlined diff --git a/src/IconVideoCameraBackAddOutlinedFilled.tsx b/src/IconVideoCameraBackAddOutlinedFilled.tsx index 839ab0af5..9f94c2d01 100644 --- a/src/IconVideoCameraBackAddOutlinedFilled.tsx +++ b/src/IconVideoCameraBackAddOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconVideoCameraBackAddOutlinedFilled: React.FC = ({ ) -export { IconVideoCameraBackAddOutlinedFilled as default } +export default IconVideoCameraBackAddOutlinedFilled diff --git a/src/IconVideoCameraBackAddRounded.tsx b/src/IconVideoCameraBackAddRounded.tsx index f83022199..aeef16c4a 100644 --- a/src/IconVideoCameraBackAddRounded.tsx +++ b/src/IconVideoCameraBackAddRounded.tsx @@ -8,4 +8,4 @@ const IconVideoCameraBackAddRounded: React.FC = ({ ...props }) => ( ) -export { IconVideoCameraBackAddRounded as default } +export default IconVideoCameraBackAddRounded diff --git a/src/IconVideoCameraBackAddRoundedFilled.tsx b/src/IconVideoCameraBackAddRoundedFilled.tsx index b6be0e890..3c6fc8ea9 100644 --- a/src/IconVideoCameraBackAddRoundedFilled.tsx +++ b/src/IconVideoCameraBackAddRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconVideoCameraBackAddRoundedFilled: React.FC = ({ ) -export { IconVideoCameraBackAddRoundedFilled as default } +export default IconVideoCameraBackAddRoundedFilled diff --git a/src/IconVideoCameraBackAddSharp.tsx b/src/IconVideoCameraBackAddSharp.tsx index b94bcc583..eb7319769 100644 --- a/src/IconVideoCameraBackAddSharp.tsx +++ b/src/IconVideoCameraBackAddSharp.tsx @@ -8,4 +8,4 @@ const IconVideoCameraBackAddSharp: React.FC = ({ ...props }) => ( ) -export { IconVideoCameraBackAddSharp as default } +export default IconVideoCameraBackAddSharp diff --git a/src/IconVideoCameraBackAddSharpFilled.tsx b/src/IconVideoCameraBackAddSharpFilled.tsx index 6ff7dc9fa..6f8f38693 100644 --- a/src/IconVideoCameraBackAddSharpFilled.tsx +++ b/src/IconVideoCameraBackAddSharpFilled.tsx @@ -10,4 +10,4 @@ const IconVideoCameraBackAddSharpFilled: React.FC = ({ ) -export { IconVideoCameraBackAddSharpFilled as default } +export default IconVideoCameraBackAddSharpFilled diff --git a/src/IconVideoCameraBackOutlined.tsx b/src/IconVideoCameraBackOutlined.tsx index fc5449419..1d321023f 100644 --- a/src/IconVideoCameraBackOutlined.tsx +++ b/src/IconVideoCameraBackOutlined.tsx @@ -8,4 +8,4 @@ const IconVideoCameraBackOutlined: React.FC = ({ ...props }) => ( ) -export { IconVideoCameraBackOutlined as default } +export default IconVideoCameraBackOutlined diff --git a/src/IconVideoCameraBackOutlinedFilled.tsx b/src/IconVideoCameraBackOutlinedFilled.tsx index e405c8c27..c3962393b 100644 --- a/src/IconVideoCameraBackOutlinedFilled.tsx +++ b/src/IconVideoCameraBackOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconVideoCameraBackOutlinedFilled: React.FC = ({ ) -export { IconVideoCameraBackOutlinedFilled as default } +export default IconVideoCameraBackOutlinedFilled diff --git a/src/IconVideoCameraBackRounded.tsx b/src/IconVideoCameraBackRounded.tsx index 45cabfeb2..4f23114a0 100644 --- a/src/IconVideoCameraBackRounded.tsx +++ b/src/IconVideoCameraBackRounded.tsx @@ -8,4 +8,4 @@ const IconVideoCameraBackRounded: React.FC = ({ ...props }) => ( ) -export { IconVideoCameraBackRounded as default } +export default IconVideoCameraBackRounded diff --git a/src/IconVideoCameraBackRoundedFilled.tsx b/src/IconVideoCameraBackRoundedFilled.tsx index 8af58c046..ef03215a5 100644 --- a/src/IconVideoCameraBackRoundedFilled.tsx +++ b/src/IconVideoCameraBackRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconVideoCameraBackRoundedFilled: React.FC = ({ ) -export { IconVideoCameraBackRoundedFilled as default } +export default IconVideoCameraBackRoundedFilled diff --git a/src/IconVideoCameraBackSharp.tsx b/src/IconVideoCameraBackSharp.tsx index acbea797d..41b3d0e1c 100644 --- a/src/IconVideoCameraBackSharp.tsx +++ b/src/IconVideoCameraBackSharp.tsx @@ -8,4 +8,4 @@ const IconVideoCameraBackSharp: React.FC = ({ ...props }) => ( ) -export { IconVideoCameraBackSharp as default } +export default IconVideoCameraBackSharp diff --git a/src/IconVideoCameraBackSharpFilled.tsx b/src/IconVideoCameraBackSharpFilled.tsx index e2c346adc..eb1bba819 100644 --- a/src/IconVideoCameraBackSharpFilled.tsx +++ b/src/IconVideoCameraBackSharpFilled.tsx @@ -8,4 +8,4 @@ const IconVideoCameraBackSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconVideoCameraBackSharpFilled as default } +export default IconVideoCameraBackSharpFilled diff --git a/src/IconVideoCameraFrontOffOutlined.tsx b/src/IconVideoCameraFrontOffOutlined.tsx index c8d810384..6a8182bf9 100644 --- a/src/IconVideoCameraFrontOffOutlined.tsx +++ b/src/IconVideoCameraFrontOffOutlined.tsx @@ -8,4 +8,4 @@ const IconVideoCameraFrontOffOutlined: React.FC = ({ ...props }) => ( ) -export { IconVideoCameraFrontOffOutlined as default } +export default IconVideoCameraFrontOffOutlined diff --git a/src/IconVideoCameraFrontOffOutlinedFilled.tsx b/src/IconVideoCameraFrontOffOutlinedFilled.tsx index 0d1d36642..e10ac4596 100644 --- a/src/IconVideoCameraFrontOffOutlinedFilled.tsx +++ b/src/IconVideoCameraFrontOffOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconVideoCameraFrontOffOutlinedFilled: React.FC = ({ ) -export { IconVideoCameraFrontOffOutlinedFilled as default } +export default IconVideoCameraFrontOffOutlinedFilled diff --git a/src/IconVideoCameraFrontOffRounded.tsx b/src/IconVideoCameraFrontOffRounded.tsx index 5e1c95281..e553e326a 100644 --- a/src/IconVideoCameraFrontOffRounded.tsx +++ b/src/IconVideoCameraFrontOffRounded.tsx @@ -8,4 +8,4 @@ const IconVideoCameraFrontOffRounded: React.FC = ({ ...props }) => ( ) -export { IconVideoCameraFrontOffRounded as default } +export default IconVideoCameraFrontOffRounded diff --git a/src/IconVideoCameraFrontOffRoundedFilled.tsx b/src/IconVideoCameraFrontOffRoundedFilled.tsx index e2612409b..63b75da1e 100644 --- a/src/IconVideoCameraFrontOffRoundedFilled.tsx +++ b/src/IconVideoCameraFrontOffRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconVideoCameraFrontOffRoundedFilled: React.FC = ({ ) -export { IconVideoCameraFrontOffRoundedFilled as default } +export default IconVideoCameraFrontOffRoundedFilled diff --git a/src/IconVideoCameraFrontOffSharp.tsx b/src/IconVideoCameraFrontOffSharp.tsx index 0b6e1f908..05e6bc60f 100644 --- a/src/IconVideoCameraFrontOffSharp.tsx +++ b/src/IconVideoCameraFrontOffSharp.tsx @@ -8,4 +8,4 @@ const IconVideoCameraFrontOffSharp: React.FC = ({ ...props }) => ( ) -export { IconVideoCameraFrontOffSharp as default } +export default IconVideoCameraFrontOffSharp diff --git a/src/IconVideoCameraFrontOffSharpFilled.tsx b/src/IconVideoCameraFrontOffSharpFilled.tsx index a9bd1fb10..d4bf45594 100644 --- a/src/IconVideoCameraFrontOffSharpFilled.tsx +++ b/src/IconVideoCameraFrontOffSharpFilled.tsx @@ -10,4 +10,4 @@ const IconVideoCameraFrontOffSharpFilled: React.FC = ({ ) -export { IconVideoCameraFrontOffSharpFilled as default } +export default IconVideoCameraFrontOffSharpFilled diff --git a/src/IconVideoCameraFrontOutlined.tsx b/src/IconVideoCameraFrontOutlined.tsx index 978bf53f3..332c75dab 100644 --- a/src/IconVideoCameraFrontOutlined.tsx +++ b/src/IconVideoCameraFrontOutlined.tsx @@ -8,4 +8,4 @@ const IconVideoCameraFrontOutlined: React.FC = ({ ...props }) => ( ) -export { IconVideoCameraFrontOutlined as default } +export default IconVideoCameraFrontOutlined diff --git a/src/IconVideoCameraFrontOutlinedFilled.tsx b/src/IconVideoCameraFrontOutlinedFilled.tsx index 9eed3682c..7e0380571 100644 --- a/src/IconVideoCameraFrontOutlinedFilled.tsx +++ b/src/IconVideoCameraFrontOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconVideoCameraFrontOutlinedFilled: React.FC = ({ ) -export { IconVideoCameraFrontOutlinedFilled as default } +export default IconVideoCameraFrontOutlinedFilled diff --git a/src/IconVideoCameraFrontRounded.tsx b/src/IconVideoCameraFrontRounded.tsx index 92a6f400e..caf38eaae 100644 --- a/src/IconVideoCameraFrontRounded.tsx +++ b/src/IconVideoCameraFrontRounded.tsx @@ -8,4 +8,4 @@ const IconVideoCameraFrontRounded: React.FC = ({ ...props }) => ( ) -export { IconVideoCameraFrontRounded as default } +export default IconVideoCameraFrontRounded diff --git a/src/IconVideoCameraFrontRoundedFilled.tsx b/src/IconVideoCameraFrontRoundedFilled.tsx index 11256b87a..71c47e776 100644 --- a/src/IconVideoCameraFrontRoundedFilled.tsx +++ b/src/IconVideoCameraFrontRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconVideoCameraFrontRoundedFilled: React.FC = ({ ) -export { IconVideoCameraFrontRoundedFilled as default } +export default IconVideoCameraFrontRoundedFilled diff --git a/src/IconVideoCameraFrontSharp.tsx b/src/IconVideoCameraFrontSharp.tsx index 76f305b4b..9dec9b303 100644 --- a/src/IconVideoCameraFrontSharp.tsx +++ b/src/IconVideoCameraFrontSharp.tsx @@ -8,4 +8,4 @@ const IconVideoCameraFrontSharp: React.FC = ({ ...props }) => ( ) -export { IconVideoCameraFrontSharp as default } +export default IconVideoCameraFrontSharp diff --git a/src/IconVideoCameraFrontSharpFilled.tsx b/src/IconVideoCameraFrontSharpFilled.tsx index 2a06e13d4..e5a68d9ec 100644 --- a/src/IconVideoCameraFrontSharpFilled.tsx +++ b/src/IconVideoCameraFrontSharpFilled.tsx @@ -8,4 +8,4 @@ const IconVideoCameraFrontSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconVideoCameraFrontSharpFilled as default } +export default IconVideoCameraFrontSharpFilled diff --git a/src/IconVideoChatOutlined.tsx b/src/IconVideoChatOutlined.tsx index d9b337138..d1c374238 100644 --- a/src/IconVideoChatOutlined.tsx +++ b/src/IconVideoChatOutlined.tsx @@ -8,4 +8,4 @@ const IconVideoChatOutlined: React.FC = ({ ...props }) => ( ) -export { IconVideoChatOutlined as default } +export default IconVideoChatOutlined diff --git a/src/IconVideoChatOutlinedFilled.tsx b/src/IconVideoChatOutlinedFilled.tsx index 5f1f0a134..54e628740 100644 --- a/src/IconVideoChatOutlinedFilled.tsx +++ b/src/IconVideoChatOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconVideoChatOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconVideoChatOutlinedFilled as default } +export default IconVideoChatOutlinedFilled diff --git a/src/IconVideoChatRounded.tsx b/src/IconVideoChatRounded.tsx index 5e112431c..6a6dd701c 100644 --- a/src/IconVideoChatRounded.tsx +++ b/src/IconVideoChatRounded.tsx @@ -8,4 +8,4 @@ const IconVideoChatRounded: React.FC = ({ ...props }) => ( ) -export { IconVideoChatRounded as default } +export default IconVideoChatRounded diff --git a/src/IconVideoChatRoundedFilled.tsx b/src/IconVideoChatRoundedFilled.tsx index b0a264448..67ee8805c 100644 --- a/src/IconVideoChatRoundedFilled.tsx +++ b/src/IconVideoChatRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconVideoChatRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconVideoChatRoundedFilled as default } +export default IconVideoChatRoundedFilled diff --git a/src/IconVideoChatSharp.tsx b/src/IconVideoChatSharp.tsx index 62d9316aa..5c18b4bc3 100644 --- a/src/IconVideoChatSharp.tsx +++ b/src/IconVideoChatSharp.tsx @@ -8,4 +8,4 @@ const IconVideoChatSharp: React.FC = ({ ...props }) => ( ) -export { IconVideoChatSharp as default } +export default IconVideoChatSharp diff --git a/src/IconVideoChatSharpFilled.tsx b/src/IconVideoChatSharpFilled.tsx index e8a3ea3de..84e9aea6b 100644 --- a/src/IconVideoChatSharpFilled.tsx +++ b/src/IconVideoChatSharpFilled.tsx @@ -8,4 +8,4 @@ const IconVideoChatSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconVideoChatSharpFilled as default } +export default IconVideoChatSharpFilled diff --git a/src/IconVideoFileOutlined.tsx b/src/IconVideoFileOutlined.tsx index df975b551..814329f6b 100644 --- a/src/IconVideoFileOutlined.tsx +++ b/src/IconVideoFileOutlined.tsx @@ -8,4 +8,4 @@ const IconVideoFileOutlined: React.FC = ({ ...props }) => ( ) -export { IconVideoFileOutlined as default } +export default IconVideoFileOutlined diff --git a/src/IconVideoFileOutlinedFilled.tsx b/src/IconVideoFileOutlinedFilled.tsx index 6ac746cdf..98ba29b69 100644 --- a/src/IconVideoFileOutlinedFilled.tsx +++ b/src/IconVideoFileOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconVideoFileOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconVideoFileOutlinedFilled as default } +export default IconVideoFileOutlinedFilled diff --git a/src/IconVideoFileRounded.tsx b/src/IconVideoFileRounded.tsx index faa7c4e11..70e5b78d9 100644 --- a/src/IconVideoFileRounded.tsx +++ b/src/IconVideoFileRounded.tsx @@ -8,4 +8,4 @@ const IconVideoFileRounded: React.FC = ({ ...props }) => ( ) -export { IconVideoFileRounded as default } +export default IconVideoFileRounded diff --git a/src/IconVideoFileRoundedFilled.tsx b/src/IconVideoFileRoundedFilled.tsx index 8fd17f8aa..aea68968f 100644 --- a/src/IconVideoFileRoundedFilled.tsx +++ b/src/IconVideoFileRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconVideoFileRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconVideoFileRoundedFilled as default } +export default IconVideoFileRoundedFilled diff --git a/src/IconVideoFileSharp.tsx b/src/IconVideoFileSharp.tsx index c47a47531..d1147c4dd 100644 --- a/src/IconVideoFileSharp.tsx +++ b/src/IconVideoFileSharp.tsx @@ -8,4 +8,4 @@ const IconVideoFileSharp: React.FC = ({ ...props }) => ( ) -export { IconVideoFileSharp as default } +export default IconVideoFileSharp diff --git a/src/IconVideoFileSharpFilled.tsx b/src/IconVideoFileSharpFilled.tsx index cfecf8add..cd5a40b91 100644 --- a/src/IconVideoFileSharpFilled.tsx +++ b/src/IconVideoFileSharpFilled.tsx @@ -8,4 +8,4 @@ const IconVideoFileSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconVideoFileSharpFilled as default } +export default IconVideoFileSharpFilled diff --git a/src/IconVideoLabelOutlined.tsx b/src/IconVideoLabelOutlined.tsx index 5ab252b97..f3d7f8747 100644 --- a/src/IconVideoLabelOutlined.tsx +++ b/src/IconVideoLabelOutlined.tsx @@ -8,4 +8,4 @@ const IconVideoLabelOutlined: React.FC = ({ ...props }) => ( ) -export { IconVideoLabelOutlined as default } +export default IconVideoLabelOutlined diff --git a/src/IconVideoLabelOutlinedFilled.tsx b/src/IconVideoLabelOutlinedFilled.tsx index 1ef3816c4..2b81ef721 100644 --- a/src/IconVideoLabelOutlinedFilled.tsx +++ b/src/IconVideoLabelOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconVideoLabelOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconVideoLabelOutlinedFilled as default } +export default IconVideoLabelOutlinedFilled diff --git a/src/IconVideoLabelRounded.tsx b/src/IconVideoLabelRounded.tsx index 78d7a6099..5eaf5320e 100644 --- a/src/IconVideoLabelRounded.tsx +++ b/src/IconVideoLabelRounded.tsx @@ -8,4 +8,4 @@ const IconVideoLabelRounded: React.FC = ({ ...props }) => ( ) -export { IconVideoLabelRounded as default } +export default IconVideoLabelRounded diff --git a/src/IconVideoLabelRoundedFilled.tsx b/src/IconVideoLabelRoundedFilled.tsx index 6819d1343..9666eab95 100644 --- a/src/IconVideoLabelRoundedFilled.tsx +++ b/src/IconVideoLabelRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconVideoLabelRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconVideoLabelRoundedFilled as default } +export default IconVideoLabelRoundedFilled diff --git a/src/IconVideoLabelSharp.tsx b/src/IconVideoLabelSharp.tsx index 5a7937a39..0535646b0 100644 --- a/src/IconVideoLabelSharp.tsx +++ b/src/IconVideoLabelSharp.tsx @@ -8,4 +8,4 @@ const IconVideoLabelSharp: React.FC = ({ ...props }) => ( ) -export { IconVideoLabelSharp as default } +export default IconVideoLabelSharp diff --git a/src/IconVideoLabelSharpFilled.tsx b/src/IconVideoLabelSharpFilled.tsx index 93dbfee8e..8e7c5725c 100644 --- a/src/IconVideoLabelSharpFilled.tsx +++ b/src/IconVideoLabelSharpFilled.tsx @@ -8,4 +8,4 @@ const IconVideoLabelSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconVideoLabelSharpFilled as default } +export default IconVideoLabelSharpFilled diff --git a/src/IconVideoLibraryOutlined.tsx b/src/IconVideoLibraryOutlined.tsx index 1b1adb6df..490b2b260 100644 --- a/src/IconVideoLibraryOutlined.tsx +++ b/src/IconVideoLibraryOutlined.tsx @@ -8,4 +8,4 @@ const IconVideoLibraryOutlined: React.FC = ({ ...props }) => ( ) -export { IconVideoLibraryOutlined as default } +export default IconVideoLibraryOutlined diff --git a/src/IconVideoLibraryOutlinedFilled.tsx b/src/IconVideoLibraryOutlinedFilled.tsx index 483de249a..dd5012357 100644 --- a/src/IconVideoLibraryOutlinedFilled.tsx +++ b/src/IconVideoLibraryOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconVideoLibraryOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconVideoLibraryOutlinedFilled as default } +export default IconVideoLibraryOutlinedFilled diff --git a/src/IconVideoLibraryRounded.tsx b/src/IconVideoLibraryRounded.tsx index 64dfcd203..4de4a699d 100644 --- a/src/IconVideoLibraryRounded.tsx +++ b/src/IconVideoLibraryRounded.tsx @@ -8,4 +8,4 @@ const IconVideoLibraryRounded: React.FC = ({ ...props }) => ( ) -export { IconVideoLibraryRounded as default } +export default IconVideoLibraryRounded diff --git a/src/IconVideoLibraryRoundedFilled.tsx b/src/IconVideoLibraryRoundedFilled.tsx index 106a66f9b..641ea22dd 100644 --- a/src/IconVideoLibraryRoundedFilled.tsx +++ b/src/IconVideoLibraryRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconVideoLibraryRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconVideoLibraryRoundedFilled as default } +export default IconVideoLibraryRoundedFilled diff --git a/src/IconVideoLibrarySharp.tsx b/src/IconVideoLibrarySharp.tsx index 38c805f8a..b959b03db 100644 --- a/src/IconVideoLibrarySharp.tsx +++ b/src/IconVideoLibrarySharp.tsx @@ -8,4 +8,4 @@ const IconVideoLibrarySharp: React.FC = ({ ...props }) => ( ) -export { IconVideoLibrarySharp as default } +export default IconVideoLibrarySharp diff --git a/src/IconVideoLibrarySharpFilled.tsx b/src/IconVideoLibrarySharpFilled.tsx index 730d23803..7da3bae17 100644 --- a/src/IconVideoLibrarySharpFilled.tsx +++ b/src/IconVideoLibrarySharpFilled.tsx @@ -8,4 +8,4 @@ const IconVideoLibrarySharpFilled: React.FC = ({ ...props }) => ( ) -export { IconVideoLibrarySharpFilled as default } +export default IconVideoLibrarySharpFilled diff --git a/src/IconVideoSearchOutlined.tsx b/src/IconVideoSearchOutlined.tsx index 7433ac14b..f340ea019 100644 --- a/src/IconVideoSearchOutlined.tsx +++ b/src/IconVideoSearchOutlined.tsx @@ -8,4 +8,4 @@ const IconVideoSearchOutlined: React.FC = ({ ...props }) => ( ) -export { IconVideoSearchOutlined as default } +export default IconVideoSearchOutlined diff --git a/src/IconVideoSearchOutlinedFilled.tsx b/src/IconVideoSearchOutlinedFilled.tsx index 0cf8511e2..9e35bf275 100644 --- a/src/IconVideoSearchOutlinedFilled.tsx +++ b/src/IconVideoSearchOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconVideoSearchOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconVideoSearchOutlinedFilled as default } +export default IconVideoSearchOutlinedFilled diff --git a/src/IconVideoSearchRounded.tsx b/src/IconVideoSearchRounded.tsx index 0de720fe9..dd3c93d5d 100644 --- a/src/IconVideoSearchRounded.tsx +++ b/src/IconVideoSearchRounded.tsx @@ -8,4 +8,4 @@ const IconVideoSearchRounded: React.FC = ({ ...props }) => ( ) -export { IconVideoSearchRounded as default } +export default IconVideoSearchRounded diff --git a/src/IconVideoSearchRoundedFilled.tsx b/src/IconVideoSearchRoundedFilled.tsx index 747e6f0a1..e81fccd4a 100644 --- a/src/IconVideoSearchRoundedFilled.tsx +++ b/src/IconVideoSearchRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconVideoSearchRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconVideoSearchRoundedFilled as default } +export default IconVideoSearchRoundedFilled diff --git a/src/IconVideoSearchSharp.tsx b/src/IconVideoSearchSharp.tsx index 0ed76b587..63abd874d 100644 --- a/src/IconVideoSearchSharp.tsx +++ b/src/IconVideoSearchSharp.tsx @@ -8,4 +8,4 @@ const IconVideoSearchSharp: React.FC = ({ ...props }) => ( ) -export { IconVideoSearchSharp as default } +export default IconVideoSearchSharp diff --git a/src/IconVideoSearchSharpFilled.tsx b/src/IconVideoSearchSharpFilled.tsx index 3910e5038..ac57f29d3 100644 --- a/src/IconVideoSearchSharpFilled.tsx +++ b/src/IconVideoSearchSharpFilled.tsx @@ -8,4 +8,4 @@ const IconVideoSearchSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconVideoSearchSharpFilled as default } +export default IconVideoSearchSharpFilled diff --git a/src/IconVideoSettingsOutlined.tsx b/src/IconVideoSettingsOutlined.tsx index 604e7c988..e1c2b5f4a 100644 --- a/src/IconVideoSettingsOutlined.tsx +++ b/src/IconVideoSettingsOutlined.tsx @@ -8,4 +8,4 @@ const IconVideoSettingsOutlined: React.FC = ({ ...props }) => ( ) -export { IconVideoSettingsOutlined as default } +export default IconVideoSettingsOutlined diff --git a/src/IconVideoSettingsOutlinedFilled.tsx b/src/IconVideoSettingsOutlinedFilled.tsx index 290e78eb6..bbdf645b4 100644 --- a/src/IconVideoSettingsOutlinedFilled.tsx +++ b/src/IconVideoSettingsOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconVideoSettingsOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconVideoSettingsOutlinedFilled as default } +export default IconVideoSettingsOutlinedFilled diff --git a/src/IconVideoSettingsRounded.tsx b/src/IconVideoSettingsRounded.tsx index 9306f9e06..bef016aaf 100644 --- a/src/IconVideoSettingsRounded.tsx +++ b/src/IconVideoSettingsRounded.tsx @@ -8,4 +8,4 @@ const IconVideoSettingsRounded: React.FC = ({ ...props }) => ( ) -export { IconVideoSettingsRounded as default } +export default IconVideoSettingsRounded diff --git a/src/IconVideoSettingsRoundedFilled.tsx b/src/IconVideoSettingsRoundedFilled.tsx index 1e8850089..9bd52bf36 100644 --- a/src/IconVideoSettingsRoundedFilled.tsx +++ b/src/IconVideoSettingsRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconVideoSettingsRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconVideoSettingsRoundedFilled as default } +export default IconVideoSettingsRoundedFilled diff --git a/src/IconVideoSettingsSharp.tsx b/src/IconVideoSettingsSharp.tsx index 177187515..b629da331 100644 --- a/src/IconVideoSettingsSharp.tsx +++ b/src/IconVideoSettingsSharp.tsx @@ -8,4 +8,4 @@ const IconVideoSettingsSharp: React.FC = ({ ...props }) => ( ) -export { IconVideoSettingsSharp as default } +export default IconVideoSettingsSharp diff --git a/src/IconVideoSettingsSharpFilled.tsx b/src/IconVideoSettingsSharpFilled.tsx index 6a9f476c9..289830c19 100644 --- a/src/IconVideoSettingsSharpFilled.tsx +++ b/src/IconVideoSettingsSharpFilled.tsx @@ -8,4 +8,4 @@ const IconVideoSettingsSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconVideoSettingsSharpFilled as default } +export default IconVideoSettingsSharpFilled diff --git a/src/IconVideoStableOutlined.tsx b/src/IconVideoStableOutlined.tsx index 179ad2343..7554698f1 100644 --- a/src/IconVideoStableOutlined.tsx +++ b/src/IconVideoStableOutlined.tsx @@ -8,4 +8,4 @@ const IconVideoStableOutlined: React.FC = ({ ...props }) => ( ) -export { IconVideoStableOutlined as default } +export default IconVideoStableOutlined diff --git a/src/IconVideoStableOutlinedFilled.tsx b/src/IconVideoStableOutlinedFilled.tsx index 0c2dc3848..1973106ff 100644 --- a/src/IconVideoStableOutlinedFilled.tsx +++ b/src/IconVideoStableOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconVideoStableOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconVideoStableOutlinedFilled as default } +export default IconVideoStableOutlinedFilled diff --git a/src/IconVideoStableRounded.tsx b/src/IconVideoStableRounded.tsx index eaf338747..a986f3437 100644 --- a/src/IconVideoStableRounded.tsx +++ b/src/IconVideoStableRounded.tsx @@ -8,4 +8,4 @@ const IconVideoStableRounded: React.FC = ({ ...props }) => ( ) -export { IconVideoStableRounded as default } +export default IconVideoStableRounded diff --git a/src/IconVideoStableRoundedFilled.tsx b/src/IconVideoStableRoundedFilled.tsx index 9b927aa85..06d00682c 100644 --- a/src/IconVideoStableRoundedFilled.tsx +++ b/src/IconVideoStableRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconVideoStableRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconVideoStableRoundedFilled as default } +export default IconVideoStableRoundedFilled diff --git a/src/IconVideoStableSharp.tsx b/src/IconVideoStableSharp.tsx index 27301d349..1a643b796 100644 --- a/src/IconVideoStableSharp.tsx +++ b/src/IconVideoStableSharp.tsx @@ -8,4 +8,4 @@ const IconVideoStableSharp: React.FC = ({ ...props }) => ( ) -export { IconVideoStableSharp as default } +export default IconVideoStableSharp diff --git a/src/IconVideoStableSharpFilled.tsx b/src/IconVideoStableSharpFilled.tsx index 9b999e890..ecb722bdb 100644 --- a/src/IconVideoStableSharpFilled.tsx +++ b/src/IconVideoStableSharpFilled.tsx @@ -8,4 +8,4 @@ const IconVideoStableSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconVideoStableSharpFilled as default } +export default IconVideoStableSharpFilled diff --git a/src/IconVideocamOffOutlined.tsx b/src/IconVideocamOffOutlined.tsx index 36a173bf3..9b874542a 100644 --- a/src/IconVideocamOffOutlined.tsx +++ b/src/IconVideocamOffOutlined.tsx @@ -8,4 +8,4 @@ const IconVideocamOffOutlined: React.FC = ({ ...props }) => ( ) -export { IconVideocamOffOutlined as default } +export default IconVideocamOffOutlined diff --git a/src/IconVideocamOffOutlinedFilled.tsx b/src/IconVideocamOffOutlinedFilled.tsx index 2a90ec35b..7dc710a4e 100644 --- a/src/IconVideocamOffOutlinedFilled.tsx +++ b/src/IconVideocamOffOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconVideocamOffOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconVideocamOffOutlinedFilled as default } +export default IconVideocamOffOutlinedFilled diff --git a/src/IconVideocamOffRounded.tsx b/src/IconVideocamOffRounded.tsx index 4747a1870..a79e8ecb2 100644 --- a/src/IconVideocamOffRounded.tsx +++ b/src/IconVideocamOffRounded.tsx @@ -8,4 +8,4 @@ const IconVideocamOffRounded: React.FC = ({ ...props }) => ( ) -export { IconVideocamOffRounded as default } +export default IconVideocamOffRounded diff --git a/src/IconVideocamOffRoundedFilled.tsx b/src/IconVideocamOffRoundedFilled.tsx index b445cdda7..47f24126d 100644 --- a/src/IconVideocamOffRoundedFilled.tsx +++ b/src/IconVideocamOffRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconVideocamOffRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconVideocamOffRoundedFilled as default } +export default IconVideocamOffRoundedFilled diff --git a/src/IconVideocamOffSharp.tsx b/src/IconVideocamOffSharp.tsx index 74aa2d295..4a76f02c4 100644 --- a/src/IconVideocamOffSharp.tsx +++ b/src/IconVideocamOffSharp.tsx @@ -8,4 +8,4 @@ const IconVideocamOffSharp: React.FC = ({ ...props }) => ( ) -export { IconVideocamOffSharp as default } +export default IconVideocamOffSharp diff --git a/src/IconVideocamOffSharpFilled.tsx b/src/IconVideocamOffSharpFilled.tsx index 8192c550d..882ded74e 100644 --- a/src/IconVideocamOffSharpFilled.tsx +++ b/src/IconVideocamOffSharpFilled.tsx @@ -8,4 +8,4 @@ const IconVideocamOffSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconVideocamOffSharpFilled as default } +export default IconVideocamOffSharpFilled diff --git a/src/IconVideocamOutlined.tsx b/src/IconVideocamOutlined.tsx index d96348b53..69808dd65 100644 --- a/src/IconVideocamOutlined.tsx +++ b/src/IconVideocamOutlined.tsx @@ -8,4 +8,4 @@ const IconVideocamOutlined: React.FC = ({ ...props }) => ( ) -export { IconVideocamOutlined as default } +export default IconVideocamOutlined diff --git a/src/IconVideocamOutlinedFilled.tsx b/src/IconVideocamOutlinedFilled.tsx index 8a0b6c167..0a93dabe7 100644 --- a/src/IconVideocamOutlinedFilled.tsx +++ b/src/IconVideocamOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconVideocamOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconVideocamOutlinedFilled as default } +export default IconVideocamOutlinedFilled diff --git a/src/IconVideocamRounded.tsx b/src/IconVideocamRounded.tsx index 61b163e29..fed5d8883 100644 --- a/src/IconVideocamRounded.tsx +++ b/src/IconVideocamRounded.tsx @@ -8,4 +8,4 @@ const IconVideocamRounded: React.FC = ({ ...props }) => ( ) -export { IconVideocamRounded as default } +export default IconVideocamRounded diff --git a/src/IconVideocamRoundedFilled.tsx b/src/IconVideocamRoundedFilled.tsx index 5284e8d06..136a6574d 100644 --- a/src/IconVideocamRoundedFilled.tsx +++ b/src/IconVideocamRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconVideocamRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconVideocamRoundedFilled as default } +export default IconVideocamRoundedFilled diff --git a/src/IconVideocamSharp.tsx b/src/IconVideocamSharp.tsx index 461acaaba..e7a4c3474 100644 --- a/src/IconVideocamSharp.tsx +++ b/src/IconVideocamSharp.tsx @@ -8,4 +8,4 @@ const IconVideocamSharp: React.FC = ({ ...props }) => ( ) -export { IconVideocamSharp as default } +export default IconVideocamSharp diff --git a/src/IconVideocamSharpFilled.tsx b/src/IconVideocamSharpFilled.tsx index a32d3fe0f..3b7e9b733 100644 --- a/src/IconVideocamSharpFilled.tsx +++ b/src/IconVideocamSharpFilled.tsx @@ -8,4 +8,4 @@ const IconVideocamSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconVideocamSharpFilled as default } +export default IconVideocamSharpFilled diff --git a/src/IconVideogameAssetOffOutlined.tsx b/src/IconVideogameAssetOffOutlined.tsx index b183f6104..8864ad07a 100644 --- a/src/IconVideogameAssetOffOutlined.tsx +++ b/src/IconVideogameAssetOffOutlined.tsx @@ -8,4 +8,4 @@ const IconVideogameAssetOffOutlined: React.FC = ({ ...props }) => ( ) -export { IconVideogameAssetOffOutlined as default } +export default IconVideogameAssetOffOutlined diff --git a/src/IconVideogameAssetOffOutlinedFilled.tsx b/src/IconVideogameAssetOffOutlinedFilled.tsx index c052aee01..c959221ac 100644 --- a/src/IconVideogameAssetOffOutlinedFilled.tsx +++ b/src/IconVideogameAssetOffOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconVideogameAssetOffOutlinedFilled: React.FC = ({ ) -export { IconVideogameAssetOffOutlinedFilled as default } +export default IconVideogameAssetOffOutlinedFilled diff --git a/src/IconVideogameAssetOffRounded.tsx b/src/IconVideogameAssetOffRounded.tsx index 382254014..3344ec2cd 100644 --- a/src/IconVideogameAssetOffRounded.tsx +++ b/src/IconVideogameAssetOffRounded.tsx @@ -8,4 +8,4 @@ const IconVideogameAssetOffRounded: React.FC = ({ ...props }) => ( ) -export { IconVideogameAssetOffRounded as default } +export default IconVideogameAssetOffRounded diff --git a/src/IconVideogameAssetOffRoundedFilled.tsx b/src/IconVideogameAssetOffRoundedFilled.tsx index 90220caee..d622e5ae7 100644 --- a/src/IconVideogameAssetOffRoundedFilled.tsx +++ b/src/IconVideogameAssetOffRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconVideogameAssetOffRoundedFilled: React.FC = ({ ) -export { IconVideogameAssetOffRoundedFilled as default } +export default IconVideogameAssetOffRoundedFilled diff --git a/src/IconVideogameAssetOffSharp.tsx b/src/IconVideogameAssetOffSharp.tsx index 4d99547fa..77285fd41 100644 --- a/src/IconVideogameAssetOffSharp.tsx +++ b/src/IconVideogameAssetOffSharp.tsx @@ -8,4 +8,4 @@ const IconVideogameAssetOffSharp: React.FC = ({ ...props }) => ( ) -export { IconVideogameAssetOffSharp as default } +export default IconVideogameAssetOffSharp diff --git a/src/IconVideogameAssetOffSharpFilled.tsx b/src/IconVideogameAssetOffSharpFilled.tsx index 7cd7279ad..d0c543838 100644 --- a/src/IconVideogameAssetOffSharpFilled.tsx +++ b/src/IconVideogameAssetOffSharpFilled.tsx @@ -10,4 +10,4 @@ const IconVideogameAssetOffSharpFilled: React.FC = ({ ) -export { IconVideogameAssetOffSharpFilled as default } +export default IconVideogameAssetOffSharpFilled diff --git a/src/IconVideogameAssetOutlined.tsx b/src/IconVideogameAssetOutlined.tsx index 627e1c6de..35d8c381e 100644 --- a/src/IconVideogameAssetOutlined.tsx +++ b/src/IconVideogameAssetOutlined.tsx @@ -8,4 +8,4 @@ const IconVideogameAssetOutlined: React.FC = ({ ...props }) => ( ) -export { IconVideogameAssetOutlined as default } +export default IconVideogameAssetOutlined diff --git a/src/IconVideogameAssetOutlinedFilled.tsx b/src/IconVideogameAssetOutlinedFilled.tsx index 74a0519b1..5dec332c9 100644 --- a/src/IconVideogameAssetOutlinedFilled.tsx +++ b/src/IconVideogameAssetOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconVideogameAssetOutlinedFilled: React.FC = ({ ) -export { IconVideogameAssetOutlinedFilled as default } +export default IconVideogameAssetOutlinedFilled diff --git a/src/IconVideogameAssetRounded.tsx b/src/IconVideogameAssetRounded.tsx index 67f63544c..278754b3c 100644 --- a/src/IconVideogameAssetRounded.tsx +++ b/src/IconVideogameAssetRounded.tsx @@ -8,4 +8,4 @@ const IconVideogameAssetRounded: React.FC = ({ ...props }) => ( ) -export { IconVideogameAssetRounded as default } +export default IconVideogameAssetRounded diff --git a/src/IconVideogameAssetRoundedFilled.tsx b/src/IconVideogameAssetRoundedFilled.tsx index 06a777c89..cd9bdfb1d 100644 --- a/src/IconVideogameAssetRoundedFilled.tsx +++ b/src/IconVideogameAssetRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconVideogameAssetRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconVideogameAssetRoundedFilled as default } +export default IconVideogameAssetRoundedFilled diff --git a/src/IconVideogameAssetSharp.tsx b/src/IconVideogameAssetSharp.tsx index 7445bf516..3aa386e28 100644 --- a/src/IconVideogameAssetSharp.tsx +++ b/src/IconVideogameAssetSharp.tsx @@ -8,4 +8,4 @@ const IconVideogameAssetSharp: React.FC = ({ ...props }) => ( ) -export { IconVideogameAssetSharp as default } +export default IconVideogameAssetSharp diff --git a/src/IconVideogameAssetSharpFilled.tsx b/src/IconVideogameAssetSharpFilled.tsx index c36fe9000..dbbb2029a 100644 --- a/src/IconVideogameAssetSharpFilled.tsx +++ b/src/IconVideogameAssetSharpFilled.tsx @@ -8,4 +8,4 @@ const IconVideogameAssetSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconVideogameAssetSharpFilled as default } +export default IconVideogameAssetSharpFilled diff --git a/src/IconViewAgendaOutlined.tsx b/src/IconViewAgendaOutlined.tsx index bac037f4c..32011d60e 100644 --- a/src/IconViewAgendaOutlined.tsx +++ b/src/IconViewAgendaOutlined.tsx @@ -8,4 +8,4 @@ const IconViewAgendaOutlined: React.FC = ({ ...props }) => ( ) -export { IconViewAgendaOutlined as default } +export default IconViewAgendaOutlined diff --git a/src/IconViewAgendaOutlinedFilled.tsx b/src/IconViewAgendaOutlinedFilled.tsx index f3e19d1b1..89616265d 100644 --- a/src/IconViewAgendaOutlinedFilled.tsx +++ b/src/IconViewAgendaOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconViewAgendaOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconViewAgendaOutlinedFilled as default } +export default IconViewAgendaOutlinedFilled diff --git a/src/IconViewAgendaRounded.tsx b/src/IconViewAgendaRounded.tsx index aaa7c9b0c..f509abfc7 100644 --- a/src/IconViewAgendaRounded.tsx +++ b/src/IconViewAgendaRounded.tsx @@ -8,4 +8,4 @@ const IconViewAgendaRounded: React.FC = ({ ...props }) => ( ) -export { IconViewAgendaRounded as default } +export default IconViewAgendaRounded diff --git a/src/IconViewAgendaRoundedFilled.tsx b/src/IconViewAgendaRoundedFilled.tsx index 8a5ab1c35..62b9ad81e 100644 --- a/src/IconViewAgendaRoundedFilled.tsx +++ b/src/IconViewAgendaRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconViewAgendaRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconViewAgendaRoundedFilled as default } +export default IconViewAgendaRoundedFilled diff --git a/src/IconViewAgendaSharp.tsx b/src/IconViewAgendaSharp.tsx index ecd4292d7..667548c0e 100644 --- a/src/IconViewAgendaSharp.tsx +++ b/src/IconViewAgendaSharp.tsx @@ -8,4 +8,4 @@ const IconViewAgendaSharp: React.FC = ({ ...props }) => ( ) -export { IconViewAgendaSharp as default } +export default IconViewAgendaSharp diff --git a/src/IconViewAgendaSharpFilled.tsx b/src/IconViewAgendaSharpFilled.tsx index 94073ed14..ca7eb129e 100644 --- a/src/IconViewAgendaSharpFilled.tsx +++ b/src/IconViewAgendaSharpFilled.tsx @@ -8,4 +8,4 @@ const IconViewAgendaSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconViewAgendaSharpFilled as default } +export default IconViewAgendaSharpFilled diff --git a/src/IconViewArrayOutlined.tsx b/src/IconViewArrayOutlined.tsx index 7a7e954c3..e5781f266 100644 --- a/src/IconViewArrayOutlined.tsx +++ b/src/IconViewArrayOutlined.tsx @@ -8,4 +8,4 @@ const IconViewArrayOutlined: React.FC = ({ ...props }) => ( ) -export { IconViewArrayOutlined as default } +export default IconViewArrayOutlined diff --git a/src/IconViewArrayOutlinedFilled.tsx b/src/IconViewArrayOutlinedFilled.tsx index 7db62a5ef..2f08f270d 100644 --- a/src/IconViewArrayOutlinedFilled.tsx +++ b/src/IconViewArrayOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconViewArrayOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconViewArrayOutlinedFilled as default } +export default IconViewArrayOutlinedFilled diff --git a/src/IconViewArrayRounded.tsx b/src/IconViewArrayRounded.tsx index d66a7f39c..9ebc1bef4 100644 --- a/src/IconViewArrayRounded.tsx +++ b/src/IconViewArrayRounded.tsx @@ -8,4 +8,4 @@ const IconViewArrayRounded: React.FC = ({ ...props }) => ( ) -export { IconViewArrayRounded as default } +export default IconViewArrayRounded diff --git a/src/IconViewArrayRoundedFilled.tsx b/src/IconViewArrayRoundedFilled.tsx index 16830a073..44aab7d08 100644 --- a/src/IconViewArrayRoundedFilled.tsx +++ b/src/IconViewArrayRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconViewArrayRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconViewArrayRoundedFilled as default } +export default IconViewArrayRoundedFilled diff --git a/src/IconViewArraySharp.tsx b/src/IconViewArraySharp.tsx index a8c879335..70efc4fc9 100644 --- a/src/IconViewArraySharp.tsx +++ b/src/IconViewArraySharp.tsx @@ -8,4 +8,4 @@ const IconViewArraySharp: React.FC = ({ ...props }) => ( ) -export { IconViewArraySharp as default } +export default IconViewArraySharp diff --git a/src/IconViewArraySharpFilled.tsx b/src/IconViewArraySharpFilled.tsx index c0bd905a6..69f0203eb 100644 --- a/src/IconViewArraySharpFilled.tsx +++ b/src/IconViewArraySharpFilled.tsx @@ -8,4 +8,4 @@ const IconViewArraySharpFilled: React.FC = ({ ...props }) => ( ) -export { IconViewArraySharpFilled as default } +export default IconViewArraySharpFilled diff --git a/src/IconViewCarouselOutlined.tsx b/src/IconViewCarouselOutlined.tsx index 7cf1d74ec..e03714d13 100644 --- a/src/IconViewCarouselOutlined.tsx +++ b/src/IconViewCarouselOutlined.tsx @@ -8,4 +8,4 @@ const IconViewCarouselOutlined: React.FC = ({ ...props }) => ( ) -export { IconViewCarouselOutlined as default } +export default IconViewCarouselOutlined diff --git a/src/IconViewCarouselOutlinedFilled.tsx b/src/IconViewCarouselOutlinedFilled.tsx index a91d1d99c..aa3fc9095 100644 --- a/src/IconViewCarouselOutlinedFilled.tsx +++ b/src/IconViewCarouselOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconViewCarouselOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconViewCarouselOutlinedFilled as default } +export default IconViewCarouselOutlinedFilled diff --git a/src/IconViewCarouselRounded.tsx b/src/IconViewCarouselRounded.tsx index 993d898a5..f603dbb8c 100644 --- a/src/IconViewCarouselRounded.tsx +++ b/src/IconViewCarouselRounded.tsx @@ -8,4 +8,4 @@ const IconViewCarouselRounded: React.FC = ({ ...props }) => ( ) -export { IconViewCarouselRounded as default } +export default IconViewCarouselRounded diff --git a/src/IconViewCarouselRoundedFilled.tsx b/src/IconViewCarouselRoundedFilled.tsx index 27834da26..933c16440 100644 --- a/src/IconViewCarouselRoundedFilled.tsx +++ b/src/IconViewCarouselRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconViewCarouselRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconViewCarouselRoundedFilled as default } +export default IconViewCarouselRoundedFilled diff --git a/src/IconViewCarouselSharp.tsx b/src/IconViewCarouselSharp.tsx index 576807ec9..4ef8ddf86 100644 --- a/src/IconViewCarouselSharp.tsx +++ b/src/IconViewCarouselSharp.tsx @@ -8,4 +8,4 @@ const IconViewCarouselSharp: React.FC = ({ ...props }) => ( ) -export { IconViewCarouselSharp as default } +export default IconViewCarouselSharp diff --git a/src/IconViewCarouselSharpFilled.tsx b/src/IconViewCarouselSharpFilled.tsx index f495bab7a..71eca2489 100644 --- a/src/IconViewCarouselSharpFilled.tsx +++ b/src/IconViewCarouselSharpFilled.tsx @@ -8,4 +8,4 @@ const IconViewCarouselSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconViewCarouselSharpFilled as default } +export default IconViewCarouselSharpFilled diff --git a/src/IconViewColumn2Outlined.tsx b/src/IconViewColumn2Outlined.tsx index 02ae99cfb..fabff3f56 100644 --- a/src/IconViewColumn2Outlined.tsx +++ b/src/IconViewColumn2Outlined.tsx @@ -8,4 +8,4 @@ const IconViewColumn2Outlined: React.FC = ({ ...props }) => ( ) -export { IconViewColumn2Outlined as default } +export default IconViewColumn2Outlined diff --git a/src/IconViewColumn2OutlinedFilled.tsx b/src/IconViewColumn2OutlinedFilled.tsx index f33dd33f1..645430cc7 100644 --- a/src/IconViewColumn2OutlinedFilled.tsx +++ b/src/IconViewColumn2OutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconViewColumn2OutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconViewColumn2OutlinedFilled as default } +export default IconViewColumn2OutlinedFilled diff --git a/src/IconViewColumn2Rounded.tsx b/src/IconViewColumn2Rounded.tsx index 0f06cfdb9..ce72498c4 100644 --- a/src/IconViewColumn2Rounded.tsx +++ b/src/IconViewColumn2Rounded.tsx @@ -8,4 +8,4 @@ const IconViewColumn2Rounded: React.FC = ({ ...props }) => ( ) -export { IconViewColumn2Rounded as default } +export default IconViewColumn2Rounded diff --git a/src/IconViewColumn2RoundedFilled.tsx b/src/IconViewColumn2RoundedFilled.tsx index 3b7c0eee7..7b5e50f20 100644 --- a/src/IconViewColumn2RoundedFilled.tsx +++ b/src/IconViewColumn2RoundedFilled.tsx @@ -8,4 +8,4 @@ const IconViewColumn2RoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconViewColumn2RoundedFilled as default } +export default IconViewColumn2RoundedFilled diff --git a/src/IconViewColumn2Sharp.tsx b/src/IconViewColumn2Sharp.tsx index 66b7561ec..4a2265842 100644 --- a/src/IconViewColumn2Sharp.tsx +++ b/src/IconViewColumn2Sharp.tsx @@ -8,4 +8,4 @@ const IconViewColumn2Sharp: React.FC = ({ ...props }) => ( ) -export { IconViewColumn2Sharp as default } +export default IconViewColumn2Sharp diff --git a/src/IconViewColumn2SharpFilled.tsx b/src/IconViewColumn2SharpFilled.tsx index 9b6e773dc..33c6e9329 100644 --- a/src/IconViewColumn2SharpFilled.tsx +++ b/src/IconViewColumn2SharpFilled.tsx @@ -8,4 +8,4 @@ const IconViewColumn2SharpFilled: React.FC = ({ ...props }) => ( ) -export { IconViewColumn2SharpFilled as default } +export default IconViewColumn2SharpFilled diff --git a/src/IconViewColumnOutlined.tsx b/src/IconViewColumnOutlined.tsx index 359b9c2bd..69dff0c2e 100644 --- a/src/IconViewColumnOutlined.tsx +++ b/src/IconViewColumnOutlined.tsx @@ -8,4 +8,4 @@ const IconViewColumnOutlined: React.FC = ({ ...props }) => ( ) -export { IconViewColumnOutlined as default } +export default IconViewColumnOutlined diff --git a/src/IconViewColumnOutlinedFilled.tsx b/src/IconViewColumnOutlinedFilled.tsx index b8ec84025..ee3387022 100644 --- a/src/IconViewColumnOutlinedFilled.tsx +++ b/src/IconViewColumnOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconViewColumnOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconViewColumnOutlinedFilled as default } +export default IconViewColumnOutlinedFilled diff --git a/src/IconViewColumnRounded.tsx b/src/IconViewColumnRounded.tsx index 320841887..69445995e 100644 --- a/src/IconViewColumnRounded.tsx +++ b/src/IconViewColumnRounded.tsx @@ -8,4 +8,4 @@ const IconViewColumnRounded: React.FC = ({ ...props }) => ( ) -export { IconViewColumnRounded as default } +export default IconViewColumnRounded diff --git a/src/IconViewColumnRoundedFilled.tsx b/src/IconViewColumnRoundedFilled.tsx index 901992174..9ff363170 100644 --- a/src/IconViewColumnRoundedFilled.tsx +++ b/src/IconViewColumnRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconViewColumnRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconViewColumnRoundedFilled as default } +export default IconViewColumnRoundedFilled diff --git a/src/IconViewColumnSharp.tsx b/src/IconViewColumnSharp.tsx index beb4e3a97..5787266eb 100644 --- a/src/IconViewColumnSharp.tsx +++ b/src/IconViewColumnSharp.tsx @@ -8,4 +8,4 @@ const IconViewColumnSharp: React.FC = ({ ...props }) => ( ) -export { IconViewColumnSharp as default } +export default IconViewColumnSharp diff --git a/src/IconViewColumnSharpFilled.tsx b/src/IconViewColumnSharpFilled.tsx index 2fae879cf..f22bc873b 100644 --- a/src/IconViewColumnSharpFilled.tsx +++ b/src/IconViewColumnSharpFilled.tsx @@ -8,4 +8,4 @@ const IconViewColumnSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconViewColumnSharpFilled as default } +export default IconViewColumnSharpFilled diff --git a/src/IconViewComfyAltOutlined.tsx b/src/IconViewComfyAltOutlined.tsx index 744d7c577..bf197e69e 100644 --- a/src/IconViewComfyAltOutlined.tsx +++ b/src/IconViewComfyAltOutlined.tsx @@ -8,4 +8,4 @@ const IconViewComfyAltOutlined: React.FC = ({ ...props }) => ( ) -export { IconViewComfyAltOutlined as default } +export default IconViewComfyAltOutlined diff --git a/src/IconViewComfyAltOutlinedFilled.tsx b/src/IconViewComfyAltOutlinedFilled.tsx index d7db68cee..824555b2d 100644 --- a/src/IconViewComfyAltOutlinedFilled.tsx +++ b/src/IconViewComfyAltOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconViewComfyAltOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconViewComfyAltOutlinedFilled as default } +export default IconViewComfyAltOutlinedFilled diff --git a/src/IconViewComfyAltRounded.tsx b/src/IconViewComfyAltRounded.tsx index 77e15ecda..5cffc0cbe 100644 --- a/src/IconViewComfyAltRounded.tsx +++ b/src/IconViewComfyAltRounded.tsx @@ -8,4 +8,4 @@ const IconViewComfyAltRounded: React.FC = ({ ...props }) => ( ) -export { IconViewComfyAltRounded as default } +export default IconViewComfyAltRounded diff --git a/src/IconViewComfyAltRoundedFilled.tsx b/src/IconViewComfyAltRoundedFilled.tsx index 9a8369311..5b3f5626c 100644 --- a/src/IconViewComfyAltRoundedFilled.tsx +++ b/src/IconViewComfyAltRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconViewComfyAltRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconViewComfyAltRoundedFilled as default } +export default IconViewComfyAltRoundedFilled diff --git a/src/IconViewComfyAltSharp.tsx b/src/IconViewComfyAltSharp.tsx index 28e5ed4d0..5491301e7 100644 --- a/src/IconViewComfyAltSharp.tsx +++ b/src/IconViewComfyAltSharp.tsx @@ -8,4 +8,4 @@ const IconViewComfyAltSharp: React.FC = ({ ...props }) => ( ) -export { IconViewComfyAltSharp as default } +export default IconViewComfyAltSharp diff --git a/src/IconViewComfyAltSharpFilled.tsx b/src/IconViewComfyAltSharpFilled.tsx index 60d59ffec..b9dc70234 100644 --- a/src/IconViewComfyAltSharpFilled.tsx +++ b/src/IconViewComfyAltSharpFilled.tsx @@ -8,4 +8,4 @@ const IconViewComfyAltSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconViewComfyAltSharpFilled as default } +export default IconViewComfyAltSharpFilled diff --git a/src/IconViewComfyOutlined.tsx b/src/IconViewComfyOutlined.tsx index 0d0b7502a..505f77a88 100644 --- a/src/IconViewComfyOutlined.tsx +++ b/src/IconViewComfyOutlined.tsx @@ -8,4 +8,4 @@ const IconViewComfyOutlined: React.FC = ({ ...props }) => ( ) -export { IconViewComfyOutlined as default } +export default IconViewComfyOutlined diff --git a/src/IconViewComfyOutlinedFilled.tsx b/src/IconViewComfyOutlinedFilled.tsx index 28c42487c..5c457fbc0 100644 --- a/src/IconViewComfyOutlinedFilled.tsx +++ b/src/IconViewComfyOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconViewComfyOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconViewComfyOutlinedFilled as default } +export default IconViewComfyOutlinedFilled diff --git a/src/IconViewComfyRounded.tsx b/src/IconViewComfyRounded.tsx index bd032fbf0..96ad9be42 100644 --- a/src/IconViewComfyRounded.tsx +++ b/src/IconViewComfyRounded.tsx @@ -8,4 +8,4 @@ const IconViewComfyRounded: React.FC = ({ ...props }) => ( ) -export { IconViewComfyRounded as default } +export default IconViewComfyRounded diff --git a/src/IconViewComfyRoundedFilled.tsx b/src/IconViewComfyRoundedFilled.tsx index 23395a8b0..9241cdeb0 100644 --- a/src/IconViewComfyRoundedFilled.tsx +++ b/src/IconViewComfyRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconViewComfyRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconViewComfyRoundedFilled as default } +export default IconViewComfyRoundedFilled diff --git a/src/IconViewComfySharp.tsx b/src/IconViewComfySharp.tsx index 5041fbbc4..63dff7fb8 100644 --- a/src/IconViewComfySharp.tsx +++ b/src/IconViewComfySharp.tsx @@ -8,4 +8,4 @@ const IconViewComfySharp: React.FC = ({ ...props }) => ( ) -export { IconViewComfySharp as default } +export default IconViewComfySharp diff --git a/src/IconViewComfySharpFilled.tsx b/src/IconViewComfySharpFilled.tsx index 00c988853..1050d8a35 100644 --- a/src/IconViewComfySharpFilled.tsx +++ b/src/IconViewComfySharpFilled.tsx @@ -8,4 +8,4 @@ const IconViewComfySharpFilled: React.FC = ({ ...props }) => ( ) -export { IconViewComfySharpFilled as default } +export default IconViewComfySharpFilled diff --git a/src/IconViewCompactAltOutlined.tsx b/src/IconViewCompactAltOutlined.tsx index 96ad0825f..d14ebefc3 100644 --- a/src/IconViewCompactAltOutlined.tsx +++ b/src/IconViewCompactAltOutlined.tsx @@ -8,4 +8,4 @@ const IconViewCompactAltOutlined: React.FC = ({ ...props }) => ( ) -export { IconViewCompactAltOutlined as default } +export default IconViewCompactAltOutlined diff --git a/src/IconViewCompactAltOutlinedFilled.tsx b/src/IconViewCompactAltOutlinedFilled.tsx index 07dd8273e..f55da6698 100644 --- a/src/IconViewCompactAltOutlinedFilled.tsx +++ b/src/IconViewCompactAltOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconViewCompactAltOutlinedFilled: React.FC = ({ ) -export { IconViewCompactAltOutlinedFilled as default } +export default IconViewCompactAltOutlinedFilled diff --git a/src/IconViewCompactAltRounded.tsx b/src/IconViewCompactAltRounded.tsx index 5dee4b317..38e7ec3db 100644 --- a/src/IconViewCompactAltRounded.tsx +++ b/src/IconViewCompactAltRounded.tsx @@ -8,4 +8,4 @@ const IconViewCompactAltRounded: React.FC = ({ ...props }) => ( ) -export { IconViewCompactAltRounded as default } +export default IconViewCompactAltRounded diff --git a/src/IconViewCompactAltRoundedFilled.tsx b/src/IconViewCompactAltRoundedFilled.tsx index a9b95e2fb..447b642d7 100644 --- a/src/IconViewCompactAltRoundedFilled.tsx +++ b/src/IconViewCompactAltRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconViewCompactAltRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconViewCompactAltRoundedFilled as default } +export default IconViewCompactAltRoundedFilled diff --git a/src/IconViewCompactAltSharp.tsx b/src/IconViewCompactAltSharp.tsx index 6f6beb437..536bc2238 100644 --- a/src/IconViewCompactAltSharp.tsx +++ b/src/IconViewCompactAltSharp.tsx @@ -8,4 +8,4 @@ const IconViewCompactAltSharp: React.FC = ({ ...props }) => ( ) -export { IconViewCompactAltSharp as default } +export default IconViewCompactAltSharp diff --git a/src/IconViewCompactAltSharpFilled.tsx b/src/IconViewCompactAltSharpFilled.tsx index cc13b8ec6..f83355ab3 100644 --- a/src/IconViewCompactAltSharpFilled.tsx +++ b/src/IconViewCompactAltSharpFilled.tsx @@ -8,4 +8,4 @@ const IconViewCompactAltSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconViewCompactAltSharpFilled as default } +export default IconViewCompactAltSharpFilled diff --git a/src/IconViewCompactOutlined.tsx b/src/IconViewCompactOutlined.tsx index faa550bf5..88c54ed23 100644 --- a/src/IconViewCompactOutlined.tsx +++ b/src/IconViewCompactOutlined.tsx @@ -8,4 +8,4 @@ const IconViewCompactOutlined: React.FC = ({ ...props }) => ( ) -export { IconViewCompactOutlined as default } +export default IconViewCompactOutlined diff --git a/src/IconViewCompactOutlinedFilled.tsx b/src/IconViewCompactOutlinedFilled.tsx index 1b13808c3..729234469 100644 --- a/src/IconViewCompactOutlinedFilled.tsx +++ b/src/IconViewCompactOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconViewCompactOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconViewCompactOutlinedFilled as default } +export default IconViewCompactOutlinedFilled diff --git a/src/IconViewCompactRounded.tsx b/src/IconViewCompactRounded.tsx index 860ceb4fd..305b14dfc 100644 --- a/src/IconViewCompactRounded.tsx +++ b/src/IconViewCompactRounded.tsx @@ -8,4 +8,4 @@ const IconViewCompactRounded: React.FC = ({ ...props }) => ( ) -export { IconViewCompactRounded as default } +export default IconViewCompactRounded diff --git a/src/IconViewCompactRoundedFilled.tsx b/src/IconViewCompactRoundedFilled.tsx index 2492abaee..0f11d18f3 100644 --- a/src/IconViewCompactRoundedFilled.tsx +++ b/src/IconViewCompactRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconViewCompactRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconViewCompactRoundedFilled as default } +export default IconViewCompactRoundedFilled diff --git a/src/IconViewCompactSharp.tsx b/src/IconViewCompactSharp.tsx index 5303f7191..caa1c61b9 100644 --- a/src/IconViewCompactSharp.tsx +++ b/src/IconViewCompactSharp.tsx @@ -8,4 +8,4 @@ const IconViewCompactSharp: React.FC = ({ ...props }) => ( ) -export { IconViewCompactSharp as default } +export default IconViewCompactSharp diff --git a/src/IconViewCompactSharpFilled.tsx b/src/IconViewCompactSharpFilled.tsx index fc5860ca0..65b2a51ef 100644 --- a/src/IconViewCompactSharpFilled.tsx +++ b/src/IconViewCompactSharpFilled.tsx @@ -8,4 +8,4 @@ const IconViewCompactSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconViewCompactSharpFilled as default } +export default IconViewCompactSharpFilled diff --git a/src/IconViewCozyOutlined.tsx b/src/IconViewCozyOutlined.tsx index 565ede82b..4ff989150 100644 --- a/src/IconViewCozyOutlined.tsx +++ b/src/IconViewCozyOutlined.tsx @@ -8,4 +8,4 @@ const IconViewCozyOutlined: React.FC = ({ ...props }) => ( ) -export { IconViewCozyOutlined as default } +export default IconViewCozyOutlined diff --git a/src/IconViewCozyOutlinedFilled.tsx b/src/IconViewCozyOutlinedFilled.tsx index c907aaf4e..6e9798d6b 100644 --- a/src/IconViewCozyOutlinedFilled.tsx +++ b/src/IconViewCozyOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconViewCozyOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconViewCozyOutlinedFilled as default } +export default IconViewCozyOutlinedFilled diff --git a/src/IconViewCozyRounded.tsx b/src/IconViewCozyRounded.tsx index e2dc0b3bf..cfbcb66dc 100644 --- a/src/IconViewCozyRounded.tsx +++ b/src/IconViewCozyRounded.tsx @@ -8,4 +8,4 @@ const IconViewCozyRounded: React.FC = ({ ...props }) => ( ) -export { IconViewCozyRounded as default } +export default IconViewCozyRounded diff --git a/src/IconViewCozyRoundedFilled.tsx b/src/IconViewCozyRoundedFilled.tsx index 891e69578..b81ca6970 100644 --- a/src/IconViewCozyRoundedFilled.tsx +++ b/src/IconViewCozyRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconViewCozyRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconViewCozyRoundedFilled as default } +export default IconViewCozyRoundedFilled diff --git a/src/IconViewCozySharp.tsx b/src/IconViewCozySharp.tsx index 85811a03c..57c1d5b3e 100644 --- a/src/IconViewCozySharp.tsx +++ b/src/IconViewCozySharp.tsx @@ -8,4 +8,4 @@ const IconViewCozySharp: React.FC = ({ ...props }) => ( ) -export { IconViewCozySharp as default } +export default IconViewCozySharp diff --git a/src/IconViewCozySharpFilled.tsx b/src/IconViewCozySharpFilled.tsx index 64f2d739d..fdbea04c7 100644 --- a/src/IconViewCozySharpFilled.tsx +++ b/src/IconViewCozySharpFilled.tsx @@ -8,4 +8,4 @@ const IconViewCozySharpFilled: React.FC = ({ ...props }) => ( ) -export { IconViewCozySharpFilled as default } +export default IconViewCozySharpFilled diff --git a/src/IconViewDayOutlined.tsx b/src/IconViewDayOutlined.tsx index 7c7877f98..3cf0c8c63 100644 --- a/src/IconViewDayOutlined.tsx +++ b/src/IconViewDayOutlined.tsx @@ -8,4 +8,4 @@ const IconViewDayOutlined: React.FC = ({ ...props }) => ( ) -export { IconViewDayOutlined as default } +export default IconViewDayOutlined diff --git a/src/IconViewDayOutlinedFilled.tsx b/src/IconViewDayOutlinedFilled.tsx index 7b0d58eb2..88ea64598 100644 --- a/src/IconViewDayOutlinedFilled.tsx +++ b/src/IconViewDayOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconViewDayOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconViewDayOutlinedFilled as default } +export default IconViewDayOutlinedFilled diff --git a/src/IconViewDayRounded.tsx b/src/IconViewDayRounded.tsx index 548f357bd..678c354ff 100644 --- a/src/IconViewDayRounded.tsx +++ b/src/IconViewDayRounded.tsx @@ -8,4 +8,4 @@ const IconViewDayRounded: React.FC = ({ ...props }) => ( ) -export { IconViewDayRounded as default } +export default IconViewDayRounded diff --git a/src/IconViewDayRoundedFilled.tsx b/src/IconViewDayRoundedFilled.tsx index ecb1a23cd..8e4ce6e27 100644 --- a/src/IconViewDayRoundedFilled.tsx +++ b/src/IconViewDayRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconViewDayRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconViewDayRoundedFilled as default } +export default IconViewDayRoundedFilled diff --git a/src/IconViewDaySharp.tsx b/src/IconViewDaySharp.tsx index d01bfa58c..a72df721b 100644 --- a/src/IconViewDaySharp.tsx +++ b/src/IconViewDaySharp.tsx @@ -8,4 +8,4 @@ const IconViewDaySharp: React.FC = ({ ...props }) => ( ) -export { IconViewDaySharp as default } +export default IconViewDaySharp diff --git a/src/IconViewDaySharpFilled.tsx b/src/IconViewDaySharpFilled.tsx index c3fb01416..7cae973c7 100644 --- a/src/IconViewDaySharpFilled.tsx +++ b/src/IconViewDaySharpFilled.tsx @@ -8,4 +8,4 @@ const IconViewDaySharpFilled: React.FC = ({ ...props }) => ( ) -export { IconViewDaySharpFilled as default } +export default IconViewDaySharpFilled diff --git a/src/IconViewHeadlineOutlined.tsx b/src/IconViewHeadlineOutlined.tsx index 23e4fd306..4f4d78bc1 100644 --- a/src/IconViewHeadlineOutlined.tsx +++ b/src/IconViewHeadlineOutlined.tsx @@ -8,4 +8,4 @@ const IconViewHeadlineOutlined: React.FC = ({ ...props }) => ( ) -export { IconViewHeadlineOutlined as default } +export default IconViewHeadlineOutlined diff --git a/src/IconViewHeadlineOutlinedFilled.tsx b/src/IconViewHeadlineOutlinedFilled.tsx index 24c7762ae..fb7191e56 100644 --- a/src/IconViewHeadlineOutlinedFilled.tsx +++ b/src/IconViewHeadlineOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconViewHeadlineOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconViewHeadlineOutlinedFilled as default } +export default IconViewHeadlineOutlinedFilled diff --git a/src/IconViewHeadlineRounded.tsx b/src/IconViewHeadlineRounded.tsx index 0df76dd98..50c5a64ed 100644 --- a/src/IconViewHeadlineRounded.tsx +++ b/src/IconViewHeadlineRounded.tsx @@ -8,4 +8,4 @@ const IconViewHeadlineRounded: React.FC = ({ ...props }) => ( ) -export { IconViewHeadlineRounded as default } +export default IconViewHeadlineRounded diff --git a/src/IconViewHeadlineRoundedFilled.tsx b/src/IconViewHeadlineRoundedFilled.tsx index 5f24303bb..ed9a99671 100644 --- a/src/IconViewHeadlineRoundedFilled.tsx +++ b/src/IconViewHeadlineRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconViewHeadlineRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconViewHeadlineRoundedFilled as default } +export default IconViewHeadlineRoundedFilled diff --git a/src/IconViewHeadlineSharp.tsx b/src/IconViewHeadlineSharp.tsx index 7dd960bcc..b57eceee5 100644 --- a/src/IconViewHeadlineSharp.tsx +++ b/src/IconViewHeadlineSharp.tsx @@ -8,4 +8,4 @@ const IconViewHeadlineSharp: React.FC = ({ ...props }) => ( ) -export { IconViewHeadlineSharp as default } +export default IconViewHeadlineSharp diff --git a/src/IconViewHeadlineSharpFilled.tsx b/src/IconViewHeadlineSharpFilled.tsx index 77802d091..0ac7315c2 100644 --- a/src/IconViewHeadlineSharpFilled.tsx +++ b/src/IconViewHeadlineSharpFilled.tsx @@ -8,4 +8,4 @@ const IconViewHeadlineSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconViewHeadlineSharpFilled as default } +export default IconViewHeadlineSharpFilled diff --git a/src/IconViewInArOffOutlined.tsx b/src/IconViewInArOffOutlined.tsx index bd226f464..0408a97ea 100644 --- a/src/IconViewInArOffOutlined.tsx +++ b/src/IconViewInArOffOutlined.tsx @@ -8,4 +8,4 @@ const IconViewInArOffOutlined: React.FC = ({ ...props }) => ( ) -export { IconViewInArOffOutlined as default } +export default IconViewInArOffOutlined diff --git a/src/IconViewInArOffOutlinedFilled.tsx b/src/IconViewInArOffOutlinedFilled.tsx index 549fe0d5b..f58ff1c1b 100644 --- a/src/IconViewInArOffOutlinedFilled.tsx +++ b/src/IconViewInArOffOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconViewInArOffOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconViewInArOffOutlinedFilled as default } +export default IconViewInArOffOutlinedFilled diff --git a/src/IconViewInArOffRounded.tsx b/src/IconViewInArOffRounded.tsx index 0afee0544..c360c12a1 100644 --- a/src/IconViewInArOffRounded.tsx +++ b/src/IconViewInArOffRounded.tsx @@ -8,4 +8,4 @@ const IconViewInArOffRounded: React.FC = ({ ...props }) => ( ) -export { IconViewInArOffRounded as default } +export default IconViewInArOffRounded diff --git a/src/IconViewInArOffRoundedFilled.tsx b/src/IconViewInArOffRoundedFilled.tsx index f057c56b8..397d67b59 100644 --- a/src/IconViewInArOffRoundedFilled.tsx +++ b/src/IconViewInArOffRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconViewInArOffRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconViewInArOffRoundedFilled as default } +export default IconViewInArOffRoundedFilled diff --git a/src/IconViewInArOffSharp.tsx b/src/IconViewInArOffSharp.tsx index 8d841f949..46f8f300c 100644 --- a/src/IconViewInArOffSharp.tsx +++ b/src/IconViewInArOffSharp.tsx @@ -8,4 +8,4 @@ const IconViewInArOffSharp: React.FC = ({ ...props }) => ( ) -export { IconViewInArOffSharp as default } +export default IconViewInArOffSharp diff --git a/src/IconViewInArOffSharpFilled.tsx b/src/IconViewInArOffSharpFilled.tsx index f41bbcefc..7aedb26d9 100644 --- a/src/IconViewInArOffSharpFilled.tsx +++ b/src/IconViewInArOffSharpFilled.tsx @@ -8,4 +8,4 @@ const IconViewInArOffSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconViewInArOffSharpFilled as default } +export default IconViewInArOffSharpFilled diff --git a/src/IconViewInArOutlined.tsx b/src/IconViewInArOutlined.tsx index 0694b1cb3..ea36169e6 100644 --- a/src/IconViewInArOutlined.tsx +++ b/src/IconViewInArOutlined.tsx @@ -8,4 +8,4 @@ const IconViewInArOutlined: React.FC = ({ ...props }) => ( ) -export { IconViewInArOutlined as default } +export default IconViewInArOutlined diff --git a/src/IconViewInArOutlinedFilled.tsx b/src/IconViewInArOutlinedFilled.tsx index 6f34fbcc9..c9ebed706 100644 --- a/src/IconViewInArOutlinedFilled.tsx +++ b/src/IconViewInArOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconViewInArOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconViewInArOutlinedFilled as default } +export default IconViewInArOutlinedFilled diff --git a/src/IconViewInArRounded.tsx b/src/IconViewInArRounded.tsx index 9b101fb83..dff0315d7 100644 --- a/src/IconViewInArRounded.tsx +++ b/src/IconViewInArRounded.tsx @@ -8,4 +8,4 @@ const IconViewInArRounded: React.FC = ({ ...props }) => ( ) -export { IconViewInArRounded as default } +export default IconViewInArRounded diff --git a/src/IconViewInArRoundedFilled.tsx b/src/IconViewInArRoundedFilled.tsx index 1cdf30622..b6d291fb6 100644 --- a/src/IconViewInArRoundedFilled.tsx +++ b/src/IconViewInArRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconViewInArRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconViewInArRoundedFilled as default } +export default IconViewInArRoundedFilled diff --git a/src/IconViewInArSharp.tsx b/src/IconViewInArSharp.tsx index 5c658229f..8bfdf9c2b 100644 --- a/src/IconViewInArSharp.tsx +++ b/src/IconViewInArSharp.tsx @@ -8,4 +8,4 @@ const IconViewInArSharp: React.FC = ({ ...props }) => ( ) -export { IconViewInArSharp as default } +export default IconViewInArSharp diff --git a/src/IconViewInArSharpFilled.tsx b/src/IconViewInArSharpFilled.tsx index 6d1bed719..58c8ed69f 100644 --- a/src/IconViewInArSharpFilled.tsx +++ b/src/IconViewInArSharpFilled.tsx @@ -8,4 +8,4 @@ const IconViewInArSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconViewInArSharpFilled as default } +export default IconViewInArSharpFilled diff --git a/src/IconViewKanbanOutlined.tsx b/src/IconViewKanbanOutlined.tsx index 5db9b1b6a..52de986c0 100644 --- a/src/IconViewKanbanOutlined.tsx +++ b/src/IconViewKanbanOutlined.tsx @@ -8,4 +8,4 @@ const IconViewKanbanOutlined: React.FC = ({ ...props }) => ( ) -export { IconViewKanbanOutlined as default } +export default IconViewKanbanOutlined diff --git a/src/IconViewKanbanOutlinedFilled.tsx b/src/IconViewKanbanOutlinedFilled.tsx index 37eeb6968..557f73ea4 100644 --- a/src/IconViewKanbanOutlinedFilled.tsx +++ b/src/IconViewKanbanOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconViewKanbanOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconViewKanbanOutlinedFilled as default } +export default IconViewKanbanOutlinedFilled diff --git a/src/IconViewKanbanRounded.tsx b/src/IconViewKanbanRounded.tsx index b40c1789e..ab337fecb 100644 --- a/src/IconViewKanbanRounded.tsx +++ b/src/IconViewKanbanRounded.tsx @@ -8,4 +8,4 @@ const IconViewKanbanRounded: React.FC = ({ ...props }) => ( ) -export { IconViewKanbanRounded as default } +export default IconViewKanbanRounded diff --git a/src/IconViewKanbanRoundedFilled.tsx b/src/IconViewKanbanRoundedFilled.tsx index a24d8ae37..885c3fa62 100644 --- a/src/IconViewKanbanRoundedFilled.tsx +++ b/src/IconViewKanbanRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconViewKanbanRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconViewKanbanRoundedFilled as default } +export default IconViewKanbanRoundedFilled diff --git a/src/IconViewKanbanSharp.tsx b/src/IconViewKanbanSharp.tsx index d6b1082b2..f86100191 100644 --- a/src/IconViewKanbanSharp.tsx +++ b/src/IconViewKanbanSharp.tsx @@ -8,4 +8,4 @@ const IconViewKanbanSharp: React.FC = ({ ...props }) => ( ) -export { IconViewKanbanSharp as default } +export default IconViewKanbanSharp diff --git a/src/IconViewKanbanSharpFilled.tsx b/src/IconViewKanbanSharpFilled.tsx index 943dfa7c6..28b59d532 100644 --- a/src/IconViewKanbanSharpFilled.tsx +++ b/src/IconViewKanbanSharpFilled.tsx @@ -8,4 +8,4 @@ const IconViewKanbanSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconViewKanbanSharpFilled as default } +export default IconViewKanbanSharpFilled diff --git a/src/IconViewListOutlined.tsx b/src/IconViewListOutlined.tsx index 130660074..ac7ddc219 100644 --- a/src/IconViewListOutlined.tsx +++ b/src/IconViewListOutlined.tsx @@ -8,4 +8,4 @@ const IconViewListOutlined: React.FC = ({ ...props }) => ( ) -export { IconViewListOutlined as default } +export default IconViewListOutlined diff --git a/src/IconViewListOutlinedFilled.tsx b/src/IconViewListOutlinedFilled.tsx index cf9c98332..6a38c12bd 100644 --- a/src/IconViewListOutlinedFilled.tsx +++ b/src/IconViewListOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconViewListOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconViewListOutlinedFilled as default } +export default IconViewListOutlinedFilled diff --git a/src/IconViewListRounded.tsx b/src/IconViewListRounded.tsx index 62980729b..591052a6c 100644 --- a/src/IconViewListRounded.tsx +++ b/src/IconViewListRounded.tsx @@ -8,4 +8,4 @@ const IconViewListRounded: React.FC = ({ ...props }) => ( ) -export { IconViewListRounded as default } +export default IconViewListRounded diff --git a/src/IconViewListRoundedFilled.tsx b/src/IconViewListRoundedFilled.tsx index ae5f289ca..a13be91ac 100644 --- a/src/IconViewListRoundedFilled.tsx +++ b/src/IconViewListRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconViewListRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconViewListRoundedFilled as default } +export default IconViewListRoundedFilled diff --git a/src/IconViewListSharp.tsx b/src/IconViewListSharp.tsx index f61616756..6d380a57d 100644 --- a/src/IconViewListSharp.tsx +++ b/src/IconViewListSharp.tsx @@ -8,4 +8,4 @@ const IconViewListSharp: React.FC = ({ ...props }) => ( ) -export { IconViewListSharp as default } +export default IconViewListSharp diff --git a/src/IconViewListSharpFilled.tsx b/src/IconViewListSharpFilled.tsx index 098a81e93..c974c4c94 100644 --- a/src/IconViewListSharpFilled.tsx +++ b/src/IconViewListSharpFilled.tsx @@ -8,4 +8,4 @@ const IconViewListSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconViewListSharpFilled as default } +export default IconViewListSharpFilled diff --git a/src/IconViewModuleOutlined.tsx b/src/IconViewModuleOutlined.tsx index 7c97f6839..48e114984 100644 --- a/src/IconViewModuleOutlined.tsx +++ b/src/IconViewModuleOutlined.tsx @@ -8,4 +8,4 @@ const IconViewModuleOutlined: React.FC = ({ ...props }) => ( ) -export { IconViewModuleOutlined as default } +export default IconViewModuleOutlined diff --git a/src/IconViewModuleOutlinedFilled.tsx b/src/IconViewModuleOutlinedFilled.tsx index 919cee020..350cfa69c 100644 --- a/src/IconViewModuleOutlinedFilled.tsx +++ b/src/IconViewModuleOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconViewModuleOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconViewModuleOutlinedFilled as default } +export default IconViewModuleOutlinedFilled diff --git a/src/IconViewModuleRounded.tsx b/src/IconViewModuleRounded.tsx index 779f2e8aa..8e02b4bf2 100644 --- a/src/IconViewModuleRounded.tsx +++ b/src/IconViewModuleRounded.tsx @@ -8,4 +8,4 @@ const IconViewModuleRounded: React.FC = ({ ...props }) => ( ) -export { IconViewModuleRounded as default } +export default IconViewModuleRounded diff --git a/src/IconViewModuleRoundedFilled.tsx b/src/IconViewModuleRoundedFilled.tsx index e274d3e06..a33ab27e2 100644 --- a/src/IconViewModuleRoundedFilled.tsx +++ b/src/IconViewModuleRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconViewModuleRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconViewModuleRoundedFilled as default } +export default IconViewModuleRoundedFilled diff --git a/src/IconViewModuleSharp.tsx b/src/IconViewModuleSharp.tsx index 6ec27b774..1bef1fb6a 100644 --- a/src/IconViewModuleSharp.tsx +++ b/src/IconViewModuleSharp.tsx @@ -8,4 +8,4 @@ const IconViewModuleSharp: React.FC = ({ ...props }) => ( ) -export { IconViewModuleSharp as default } +export default IconViewModuleSharp diff --git a/src/IconViewModuleSharpFilled.tsx b/src/IconViewModuleSharpFilled.tsx index 4bda3fbc2..ad56354ff 100644 --- a/src/IconViewModuleSharpFilled.tsx +++ b/src/IconViewModuleSharpFilled.tsx @@ -8,4 +8,4 @@ const IconViewModuleSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconViewModuleSharpFilled as default } +export default IconViewModuleSharpFilled diff --git a/src/IconViewObjectTrackOutlined.tsx b/src/IconViewObjectTrackOutlined.tsx index 6b59ce6b5..a8fde63a0 100644 --- a/src/IconViewObjectTrackOutlined.tsx +++ b/src/IconViewObjectTrackOutlined.tsx @@ -8,4 +8,4 @@ const IconViewObjectTrackOutlined: React.FC = ({ ...props }) => ( ) -export { IconViewObjectTrackOutlined as default } +export default IconViewObjectTrackOutlined diff --git a/src/IconViewObjectTrackOutlinedFilled.tsx b/src/IconViewObjectTrackOutlinedFilled.tsx index e73ba1cc3..c62a2e1f3 100644 --- a/src/IconViewObjectTrackOutlinedFilled.tsx +++ b/src/IconViewObjectTrackOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconViewObjectTrackOutlinedFilled: React.FC = ({ ) -export { IconViewObjectTrackOutlinedFilled as default } +export default IconViewObjectTrackOutlinedFilled diff --git a/src/IconViewObjectTrackRounded.tsx b/src/IconViewObjectTrackRounded.tsx index 88ee97f91..f5c6b5993 100644 --- a/src/IconViewObjectTrackRounded.tsx +++ b/src/IconViewObjectTrackRounded.tsx @@ -8,4 +8,4 @@ const IconViewObjectTrackRounded: React.FC = ({ ...props }) => ( ) -export { IconViewObjectTrackRounded as default } +export default IconViewObjectTrackRounded diff --git a/src/IconViewObjectTrackRoundedFilled.tsx b/src/IconViewObjectTrackRoundedFilled.tsx index b7c6253a8..d09f02f14 100644 --- a/src/IconViewObjectTrackRoundedFilled.tsx +++ b/src/IconViewObjectTrackRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconViewObjectTrackRoundedFilled: React.FC = ({ ) -export { IconViewObjectTrackRoundedFilled as default } +export default IconViewObjectTrackRoundedFilled diff --git a/src/IconViewObjectTrackSharp.tsx b/src/IconViewObjectTrackSharp.tsx index 77e19fa7a..81c4e278c 100644 --- a/src/IconViewObjectTrackSharp.tsx +++ b/src/IconViewObjectTrackSharp.tsx @@ -8,4 +8,4 @@ const IconViewObjectTrackSharp: React.FC = ({ ...props }) => ( ) -export { IconViewObjectTrackSharp as default } +export default IconViewObjectTrackSharp diff --git a/src/IconViewObjectTrackSharpFilled.tsx b/src/IconViewObjectTrackSharpFilled.tsx index 7f03c16f5..e34761cdd 100644 --- a/src/IconViewObjectTrackSharpFilled.tsx +++ b/src/IconViewObjectTrackSharpFilled.tsx @@ -8,4 +8,4 @@ const IconViewObjectTrackSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconViewObjectTrackSharpFilled as default } +export default IconViewObjectTrackSharpFilled diff --git a/src/IconViewQuiltOutlined.tsx b/src/IconViewQuiltOutlined.tsx index 6123cd1a4..613138497 100644 --- a/src/IconViewQuiltOutlined.tsx +++ b/src/IconViewQuiltOutlined.tsx @@ -8,4 +8,4 @@ const IconViewQuiltOutlined: React.FC = ({ ...props }) => ( ) -export { IconViewQuiltOutlined as default } +export default IconViewQuiltOutlined diff --git a/src/IconViewQuiltOutlinedFilled.tsx b/src/IconViewQuiltOutlinedFilled.tsx index 914a790ba..fafecbfba 100644 --- a/src/IconViewQuiltOutlinedFilled.tsx +++ b/src/IconViewQuiltOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconViewQuiltOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconViewQuiltOutlinedFilled as default } +export default IconViewQuiltOutlinedFilled diff --git a/src/IconViewQuiltRounded.tsx b/src/IconViewQuiltRounded.tsx index 9e07c233d..fdd172778 100644 --- a/src/IconViewQuiltRounded.tsx +++ b/src/IconViewQuiltRounded.tsx @@ -8,4 +8,4 @@ const IconViewQuiltRounded: React.FC = ({ ...props }) => ( ) -export { IconViewQuiltRounded as default } +export default IconViewQuiltRounded diff --git a/src/IconViewQuiltRoundedFilled.tsx b/src/IconViewQuiltRoundedFilled.tsx index 06330e065..7663272c0 100644 --- a/src/IconViewQuiltRoundedFilled.tsx +++ b/src/IconViewQuiltRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconViewQuiltRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconViewQuiltRoundedFilled as default } +export default IconViewQuiltRoundedFilled diff --git a/src/IconViewQuiltSharp.tsx b/src/IconViewQuiltSharp.tsx index c92b5a95f..bdc0882bc 100644 --- a/src/IconViewQuiltSharp.tsx +++ b/src/IconViewQuiltSharp.tsx @@ -8,4 +8,4 @@ const IconViewQuiltSharp: React.FC = ({ ...props }) => ( ) -export { IconViewQuiltSharp as default } +export default IconViewQuiltSharp diff --git a/src/IconViewQuiltSharpFilled.tsx b/src/IconViewQuiltSharpFilled.tsx index 316b41268..131f0cef8 100644 --- a/src/IconViewQuiltSharpFilled.tsx +++ b/src/IconViewQuiltSharpFilled.tsx @@ -8,4 +8,4 @@ const IconViewQuiltSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconViewQuiltSharpFilled as default } +export default IconViewQuiltSharpFilled diff --git a/src/IconViewRealSizeOutlined.tsx b/src/IconViewRealSizeOutlined.tsx index 4df9847d1..2574b238b 100644 --- a/src/IconViewRealSizeOutlined.tsx +++ b/src/IconViewRealSizeOutlined.tsx @@ -8,4 +8,4 @@ const IconViewRealSizeOutlined: React.FC = ({ ...props }) => ( ) -export { IconViewRealSizeOutlined as default } +export default IconViewRealSizeOutlined diff --git a/src/IconViewRealSizeOutlinedFilled.tsx b/src/IconViewRealSizeOutlinedFilled.tsx index f3cb5b6fa..503e5df47 100644 --- a/src/IconViewRealSizeOutlinedFilled.tsx +++ b/src/IconViewRealSizeOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconViewRealSizeOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconViewRealSizeOutlinedFilled as default } +export default IconViewRealSizeOutlinedFilled diff --git a/src/IconViewRealSizeRounded.tsx b/src/IconViewRealSizeRounded.tsx index 7879dfae6..cd2cbc7ca 100644 --- a/src/IconViewRealSizeRounded.tsx +++ b/src/IconViewRealSizeRounded.tsx @@ -8,4 +8,4 @@ const IconViewRealSizeRounded: React.FC = ({ ...props }) => ( ) -export { IconViewRealSizeRounded as default } +export default IconViewRealSizeRounded diff --git a/src/IconViewRealSizeRoundedFilled.tsx b/src/IconViewRealSizeRoundedFilled.tsx index eb5b71d3c..8a2505ea9 100644 --- a/src/IconViewRealSizeRoundedFilled.tsx +++ b/src/IconViewRealSizeRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconViewRealSizeRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconViewRealSizeRoundedFilled as default } +export default IconViewRealSizeRoundedFilled diff --git a/src/IconViewRealSizeSharp.tsx b/src/IconViewRealSizeSharp.tsx index 8a28c7d26..d5d6d206c 100644 --- a/src/IconViewRealSizeSharp.tsx +++ b/src/IconViewRealSizeSharp.tsx @@ -8,4 +8,4 @@ const IconViewRealSizeSharp: React.FC = ({ ...props }) => ( ) -export { IconViewRealSizeSharp as default } +export default IconViewRealSizeSharp diff --git a/src/IconViewRealSizeSharpFilled.tsx b/src/IconViewRealSizeSharpFilled.tsx index 8d1c73ee3..2acbb9dd1 100644 --- a/src/IconViewRealSizeSharpFilled.tsx +++ b/src/IconViewRealSizeSharpFilled.tsx @@ -8,4 +8,4 @@ const IconViewRealSizeSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconViewRealSizeSharpFilled as default } +export default IconViewRealSizeSharpFilled diff --git a/src/IconViewSidebarOutlined.tsx b/src/IconViewSidebarOutlined.tsx index be2cd9df5..5f0efce69 100644 --- a/src/IconViewSidebarOutlined.tsx +++ b/src/IconViewSidebarOutlined.tsx @@ -8,4 +8,4 @@ const IconViewSidebarOutlined: React.FC = ({ ...props }) => ( ) -export { IconViewSidebarOutlined as default } +export default IconViewSidebarOutlined diff --git a/src/IconViewSidebarOutlinedFilled.tsx b/src/IconViewSidebarOutlinedFilled.tsx index 71de526e6..f99c22d7d 100644 --- a/src/IconViewSidebarOutlinedFilled.tsx +++ b/src/IconViewSidebarOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconViewSidebarOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconViewSidebarOutlinedFilled as default } +export default IconViewSidebarOutlinedFilled diff --git a/src/IconViewSidebarRounded.tsx b/src/IconViewSidebarRounded.tsx index 80ba450e6..eb7195185 100644 --- a/src/IconViewSidebarRounded.tsx +++ b/src/IconViewSidebarRounded.tsx @@ -8,4 +8,4 @@ const IconViewSidebarRounded: React.FC = ({ ...props }) => ( ) -export { IconViewSidebarRounded as default } +export default IconViewSidebarRounded diff --git a/src/IconViewSidebarRoundedFilled.tsx b/src/IconViewSidebarRoundedFilled.tsx index 72243321a..6ee053f55 100644 --- a/src/IconViewSidebarRoundedFilled.tsx +++ b/src/IconViewSidebarRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconViewSidebarRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconViewSidebarRoundedFilled as default } +export default IconViewSidebarRoundedFilled diff --git a/src/IconViewSidebarSharp.tsx b/src/IconViewSidebarSharp.tsx index 3e8f13c1e..23f112e8d 100644 --- a/src/IconViewSidebarSharp.tsx +++ b/src/IconViewSidebarSharp.tsx @@ -8,4 +8,4 @@ const IconViewSidebarSharp: React.FC = ({ ...props }) => ( ) -export { IconViewSidebarSharp as default } +export default IconViewSidebarSharp diff --git a/src/IconViewSidebarSharpFilled.tsx b/src/IconViewSidebarSharpFilled.tsx index bd53a2f57..7ee4f8212 100644 --- a/src/IconViewSidebarSharpFilled.tsx +++ b/src/IconViewSidebarSharpFilled.tsx @@ -8,4 +8,4 @@ const IconViewSidebarSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconViewSidebarSharpFilled as default } +export default IconViewSidebarSharpFilled diff --git a/src/IconViewStreamOutlined.tsx b/src/IconViewStreamOutlined.tsx index ebbe8f204..8da3a1623 100644 --- a/src/IconViewStreamOutlined.tsx +++ b/src/IconViewStreamOutlined.tsx @@ -8,4 +8,4 @@ const IconViewStreamOutlined: React.FC = ({ ...props }) => ( ) -export { IconViewStreamOutlined as default } +export default IconViewStreamOutlined diff --git a/src/IconViewStreamOutlinedFilled.tsx b/src/IconViewStreamOutlinedFilled.tsx index 656105ce7..fc53da83e 100644 --- a/src/IconViewStreamOutlinedFilled.tsx +++ b/src/IconViewStreamOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconViewStreamOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconViewStreamOutlinedFilled as default } +export default IconViewStreamOutlinedFilled diff --git a/src/IconViewStreamRounded.tsx b/src/IconViewStreamRounded.tsx index 02a68c544..515d5f439 100644 --- a/src/IconViewStreamRounded.tsx +++ b/src/IconViewStreamRounded.tsx @@ -8,4 +8,4 @@ const IconViewStreamRounded: React.FC = ({ ...props }) => ( ) -export { IconViewStreamRounded as default } +export default IconViewStreamRounded diff --git a/src/IconViewStreamRoundedFilled.tsx b/src/IconViewStreamRoundedFilled.tsx index 5cac18f36..42032ae15 100644 --- a/src/IconViewStreamRoundedFilled.tsx +++ b/src/IconViewStreamRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconViewStreamRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconViewStreamRoundedFilled as default } +export default IconViewStreamRoundedFilled diff --git a/src/IconViewStreamSharp.tsx b/src/IconViewStreamSharp.tsx index 170d9d494..8ffb35f42 100644 --- a/src/IconViewStreamSharp.tsx +++ b/src/IconViewStreamSharp.tsx @@ -8,4 +8,4 @@ const IconViewStreamSharp: React.FC = ({ ...props }) => ( ) -export { IconViewStreamSharp as default } +export default IconViewStreamSharp diff --git a/src/IconViewStreamSharpFilled.tsx b/src/IconViewStreamSharpFilled.tsx index b7c8e8a7e..924a60d9c 100644 --- a/src/IconViewStreamSharpFilled.tsx +++ b/src/IconViewStreamSharpFilled.tsx @@ -8,4 +8,4 @@ const IconViewStreamSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconViewStreamSharpFilled as default } +export default IconViewStreamSharpFilled diff --git a/src/IconViewTimelineOutlined.tsx b/src/IconViewTimelineOutlined.tsx index db29d91db..07afa175b 100644 --- a/src/IconViewTimelineOutlined.tsx +++ b/src/IconViewTimelineOutlined.tsx @@ -8,4 +8,4 @@ const IconViewTimelineOutlined: React.FC = ({ ...props }) => ( ) -export { IconViewTimelineOutlined as default } +export default IconViewTimelineOutlined diff --git a/src/IconViewTimelineOutlinedFilled.tsx b/src/IconViewTimelineOutlinedFilled.tsx index d86f1c450..e8e495e47 100644 --- a/src/IconViewTimelineOutlinedFilled.tsx +++ b/src/IconViewTimelineOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconViewTimelineOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconViewTimelineOutlinedFilled as default } +export default IconViewTimelineOutlinedFilled diff --git a/src/IconViewTimelineRounded.tsx b/src/IconViewTimelineRounded.tsx index aa139f0d6..3e240ce1e 100644 --- a/src/IconViewTimelineRounded.tsx +++ b/src/IconViewTimelineRounded.tsx @@ -8,4 +8,4 @@ const IconViewTimelineRounded: React.FC = ({ ...props }) => ( ) -export { IconViewTimelineRounded as default } +export default IconViewTimelineRounded diff --git a/src/IconViewTimelineRoundedFilled.tsx b/src/IconViewTimelineRoundedFilled.tsx index 346695e0c..4c91a8f1b 100644 --- a/src/IconViewTimelineRoundedFilled.tsx +++ b/src/IconViewTimelineRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconViewTimelineRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconViewTimelineRoundedFilled as default } +export default IconViewTimelineRoundedFilled diff --git a/src/IconViewTimelineSharp.tsx b/src/IconViewTimelineSharp.tsx index 33c97b52c..e4bd1af43 100644 --- a/src/IconViewTimelineSharp.tsx +++ b/src/IconViewTimelineSharp.tsx @@ -8,4 +8,4 @@ const IconViewTimelineSharp: React.FC = ({ ...props }) => ( ) -export { IconViewTimelineSharp as default } +export default IconViewTimelineSharp diff --git a/src/IconViewTimelineSharpFilled.tsx b/src/IconViewTimelineSharpFilled.tsx index 37bec9e8a..14231d3bf 100644 --- a/src/IconViewTimelineSharpFilled.tsx +++ b/src/IconViewTimelineSharpFilled.tsx @@ -8,4 +8,4 @@ const IconViewTimelineSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconViewTimelineSharpFilled as default } +export default IconViewTimelineSharpFilled diff --git a/src/IconViewWeekOutlined.tsx b/src/IconViewWeekOutlined.tsx index 2fc4989d0..e64e13eed 100644 --- a/src/IconViewWeekOutlined.tsx +++ b/src/IconViewWeekOutlined.tsx @@ -8,4 +8,4 @@ const IconViewWeekOutlined: React.FC = ({ ...props }) => ( ) -export { IconViewWeekOutlined as default } +export default IconViewWeekOutlined diff --git a/src/IconViewWeekOutlinedFilled.tsx b/src/IconViewWeekOutlinedFilled.tsx index 067f6dc16..a19a30d19 100644 --- a/src/IconViewWeekOutlinedFilled.tsx +++ b/src/IconViewWeekOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconViewWeekOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconViewWeekOutlinedFilled as default } +export default IconViewWeekOutlinedFilled diff --git a/src/IconViewWeekRounded.tsx b/src/IconViewWeekRounded.tsx index ba450b893..c7850a689 100644 --- a/src/IconViewWeekRounded.tsx +++ b/src/IconViewWeekRounded.tsx @@ -8,4 +8,4 @@ const IconViewWeekRounded: React.FC = ({ ...props }) => ( ) -export { IconViewWeekRounded as default } +export default IconViewWeekRounded diff --git a/src/IconViewWeekRoundedFilled.tsx b/src/IconViewWeekRoundedFilled.tsx index 371a0ac48..a67dbf904 100644 --- a/src/IconViewWeekRoundedFilled.tsx +++ b/src/IconViewWeekRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconViewWeekRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconViewWeekRoundedFilled as default } +export default IconViewWeekRoundedFilled diff --git a/src/IconViewWeekSharp.tsx b/src/IconViewWeekSharp.tsx index defce7134..2337b7d2d 100644 --- a/src/IconViewWeekSharp.tsx +++ b/src/IconViewWeekSharp.tsx @@ -8,4 +8,4 @@ const IconViewWeekSharp: React.FC = ({ ...props }) => ( ) -export { IconViewWeekSharp as default } +export default IconViewWeekSharp diff --git a/src/IconViewWeekSharpFilled.tsx b/src/IconViewWeekSharpFilled.tsx index bb547e78c..f3b989086 100644 --- a/src/IconViewWeekSharpFilled.tsx +++ b/src/IconViewWeekSharpFilled.tsx @@ -8,4 +8,4 @@ const IconViewWeekSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconViewWeekSharpFilled as default } +export default IconViewWeekSharpFilled diff --git a/src/IconVignetteOutlined.tsx b/src/IconVignetteOutlined.tsx index 710374799..7094da2fc 100644 --- a/src/IconVignetteOutlined.tsx +++ b/src/IconVignetteOutlined.tsx @@ -8,4 +8,4 @@ const IconVignetteOutlined: React.FC = ({ ...props }) => ( ) -export { IconVignetteOutlined as default } +export default IconVignetteOutlined diff --git a/src/IconVignetteOutlinedFilled.tsx b/src/IconVignetteOutlinedFilled.tsx index 2a0d73824..4aad425f3 100644 --- a/src/IconVignetteOutlinedFilled.tsx +++ b/src/IconVignetteOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconVignetteOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconVignetteOutlinedFilled as default } +export default IconVignetteOutlinedFilled diff --git a/src/IconVignetteRounded.tsx b/src/IconVignetteRounded.tsx index a585f0fc8..7ba6ce804 100644 --- a/src/IconVignetteRounded.tsx +++ b/src/IconVignetteRounded.tsx @@ -8,4 +8,4 @@ const IconVignetteRounded: React.FC = ({ ...props }) => ( ) -export { IconVignetteRounded as default } +export default IconVignetteRounded diff --git a/src/IconVignetteRoundedFilled.tsx b/src/IconVignetteRoundedFilled.tsx index 72959cba9..34fbb5976 100644 --- a/src/IconVignetteRoundedFilled.tsx +++ b/src/IconVignetteRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconVignetteRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconVignetteRoundedFilled as default } +export default IconVignetteRoundedFilled diff --git a/src/IconVignetteSharp.tsx b/src/IconVignetteSharp.tsx index f1099bdc5..9704caaa6 100644 --- a/src/IconVignetteSharp.tsx +++ b/src/IconVignetteSharp.tsx @@ -8,4 +8,4 @@ const IconVignetteSharp: React.FC = ({ ...props }) => ( ) -export { IconVignetteSharp as default } +export default IconVignetteSharp diff --git a/src/IconVignetteSharpFilled.tsx b/src/IconVignetteSharpFilled.tsx index 81f85693a..a154c8952 100644 --- a/src/IconVignetteSharpFilled.tsx +++ b/src/IconVignetteSharpFilled.tsx @@ -8,4 +8,4 @@ const IconVignetteSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconVignetteSharpFilled as default } +export default IconVignetteSharpFilled diff --git a/src/IconVillaOutlined.tsx b/src/IconVillaOutlined.tsx index 7cbea5230..8466c6e2e 100644 --- a/src/IconVillaOutlined.tsx +++ b/src/IconVillaOutlined.tsx @@ -8,4 +8,4 @@ const IconVillaOutlined: React.FC = ({ ...props }) => ( ) -export { IconVillaOutlined as default } +export default IconVillaOutlined diff --git a/src/IconVillaOutlinedFilled.tsx b/src/IconVillaOutlinedFilled.tsx index 9b87b8a24..e846ea075 100644 --- a/src/IconVillaOutlinedFilled.tsx +++ b/src/IconVillaOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconVillaOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconVillaOutlinedFilled as default } +export default IconVillaOutlinedFilled diff --git a/src/IconVillaRounded.tsx b/src/IconVillaRounded.tsx index cbf523f75..a19060dae 100644 --- a/src/IconVillaRounded.tsx +++ b/src/IconVillaRounded.tsx @@ -8,4 +8,4 @@ const IconVillaRounded: React.FC = ({ ...props }) => ( ) -export { IconVillaRounded as default } +export default IconVillaRounded diff --git a/src/IconVillaRoundedFilled.tsx b/src/IconVillaRoundedFilled.tsx index 06505da8f..3f349ed8c 100644 --- a/src/IconVillaRoundedFilled.tsx +++ b/src/IconVillaRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconVillaRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconVillaRoundedFilled as default } +export default IconVillaRoundedFilled diff --git a/src/IconVillaSharp.tsx b/src/IconVillaSharp.tsx index 3ae5392eb..1e0740bb3 100644 --- a/src/IconVillaSharp.tsx +++ b/src/IconVillaSharp.tsx @@ -8,4 +8,4 @@ const IconVillaSharp: React.FC = ({ ...props }) => ( ) -export { IconVillaSharp as default } +export default IconVillaSharp diff --git a/src/IconVillaSharpFilled.tsx b/src/IconVillaSharpFilled.tsx index e4d31bb2f..c6f2af50b 100644 --- a/src/IconVillaSharpFilled.tsx +++ b/src/IconVillaSharpFilled.tsx @@ -8,4 +8,4 @@ const IconVillaSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconVillaSharpFilled as default } +export default IconVillaSharpFilled diff --git a/src/IconVisibilityLockOutlined.tsx b/src/IconVisibilityLockOutlined.tsx index 318140a79..eabc2234f 100644 --- a/src/IconVisibilityLockOutlined.tsx +++ b/src/IconVisibilityLockOutlined.tsx @@ -8,4 +8,4 @@ const IconVisibilityLockOutlined: React.FC = ({ ...props }) => ( ) -export { IconVisibilityLockOutlined as default } +export default IconVisibilityLockOutlined diff --git a/src/IconVisibilityLockOutlinedFilled.tsx b/src/IconVisibilityLockOutlinedFilled.tsx index 6963c399a..7a9d84df6 100644 --- a/src/IconVisibilityLockOutlinedFilled.tsx +++ b/src/IconVisibilityLockOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconVisibilityLockOutlinedFilled: React.FC = ({ ) -export { IconVisibilityLockOutlinedFilled as default } +export default IconVisibilityLockOutlinedFilled diff --git a/src/IconVisibilityLockRounded.tsx b/src/IconVisibilityLockRounded.tsx index 9d65f86e0..e23f71fb3 100644 --- a/src/IconVisibilityLockRounded.tsx +++ b/src/IconVisibilityLockRounded.tsx @@ -8,4 +8,4 @@ const IconVisibilityLockRounded: React.FC = ({ ...props }) => ( ) -export { IconVisibilityLockRounded as default } +export default IconVisibilityLockRounded diff --git a/src/IconVisibilityLockRoundedFilled.tsx b/src/IconVisibilityLockRoundedFilled.tsx index 7f079b4ae..e8a7522ec 100644 --- a/src/IconVisibilityLockRoundedFilled.tsx +++ b/src/IconVisibilityLockRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconVisibilityLockRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconVisibilityLockRoundedFilled as default } +export default IconVisibilityLockRoundedFilled diff --git a/src/IconVisibilityLockSharp.tsx b/src/IconVisibilityLockSharp.tsx index 21b383769..a73d5bf76 100644 --- a/src/IconVisibilityLockSharp.tsx +++ b/src/IconVisibilityLockSharp.tsx @@ -8,4 +8,4 @@ const IconVisibilityLockSharp: React.FC = ({ ...props }) => ( ) -export { IconVisibilityLockSharp as default } +export default IconVisibilityLockSharp diff --git a/src/IconVisibilityLockSharpFilled.tsx b/src/IconVisibilityLockSharpFilled.tsx index cd7ca6802..956c792bf 100644 --- a/src/IconVisibilityLockSharpFilled.tsx +++ b/src/IconVisibilityLockSharpFilled.tsx @@ -8,4 +8,4 @@ const IconVisibilityLockSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconVisibilityLockSharpFilled as default } +export default IconVisibilityLockSharpFilled diff --git a/src/IconVisibilityOffOutlined.tsx b/src/IconVisibilityOffOutlined.tsx index 822821b1c..29da42cde 100644 --- a/src/IconVisibilityOffOutlined.tsx +++ b/src/IconVisibilityOffOutlined.tsx @@ -8,4 +8,4 @@ const IconVisibilityOffOutlined: React.FC = ({ ...props }) => ( ) -export { IconVisibilityOffOutlined as default } +export default IconVisibilityOffOutlined diff --git a/src/IconVisibilityOffOutlinedFilled.tsx b/src/IconVisibilityOffOutlinedFilled.tsx index 599126f7c..9821e4034 100644 --- a/src/IconVisibilityOffOutlinedFilled.tsx +++ b/src/IconVisibilityOffOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconVisibilityOffOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconVisibilityOffOutlinedFilled as default } +export default IconVisibilityOffOutlinedFilled diff --git a/src/IconVisibilityOffRounded.tsx b/src/IconVisibilityOffRounded.tsx index 71291e924..f8c9d0335 100644 --- a/src/IconVisibilityOffRounded.tsx +++ b/src/IconVisibilityOffRounded.tsx @@ -8,4 +8,4 @@ const IconVisibilityOffRounded: React.FC = ({ ...props }) => ( ) -export { IconVisibilityOffRounded as default } +export default IconVisibilityOffRounded diff --git a/src/IconVisibilityOffRoundedFilled.tsx b/src/IconVisibilityOffRoundedFilled.tsx index 48645c32d..dbbf3c7b3 100644 --- a/src/IconVisibilityOffRoundedFilled.tsx +++ b/src/IconVisibilityOffRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconVisibilityOffRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconVisibilityOffRoundedFilled as default } +export default IconVisibilityOffRoundedFilled diff --git a/src/IconVisibilityOffSharp.tsx b/src/IconVisibilityOffSharp.tsx index f0d07ac4b..640655040 100644 --- a/src/IconVisibilityOffSharp.tsx +++ b/src/IconVisibilityOffSharp.tsx @@ -8,4 +8,4 @@ const IconVisibilityOffSharp: React.FC = ({ ...props }) => ( ) -export { IconVisibilityOffSharp as default } +export default IconVisibilityOffSharp diff --git a/src/IconVisibilityOffSharpFilled.tsx b/src/IconVisibilityOffSharpFilled.tsx index e6c133438..185824392 100644 --- a/src/IconVisibilityOffSharpFilled.tsx +++ b/src/IconVisibilityOffSharpFilled.tsx @@ -8,4 +8,4 @@ const IconVisibilityOffSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconVisibilityOffSharpFilled as default } +export default IconVisibilityOffSharpFilled diff --git a/src/IconVisibilityOutlined.tsx b/src/IconVisibilityOutlined.tsx index 2e0901798..ccf9726eb 100644 --- a/src/IconVisibilityOutlined.tsx +++ b/src/IconVisibilityOutlined.tsx @@ -8,4 +8,4 @@ const IconVisibilityOutlined: React.FC = ({ ...props }) => ( ) -export { IconVisibilityOutlined as default } +export default IconVisibilityOutlined diff --git a/src/IconVisibilityOutlinedFilled.tsx b/src/IconVisibilityOutlinedFilled.tsx index 61ac33f0b..3cfde8099 100644 --- a/src/IconVisibilityOutlinedFilled.tsx +++ b/src/IconVisibilityOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconVisibilityOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconVisibilityOutlinedFilled as default } +export default IconVisibilityOutlinedFilled diff --git a/src/IconVisibilityRounded.tsx b/src/IconVisibilityRounded.tsx index 8cf15e657..6ced87c01 100644 --- a/src/IconVisibilityRounded.tsx +++ b/src/IconVisibilityRounded.tsx @@ -8,4 +8,4 @@ const IconVisibilityRounded: React.FC = ({ ...props }) => ( ) -export { IconVisibilityRounded as default } +export default IconVisibilityRounded diff --git a/src/IconVisibilityRoundedFilled.tsx b/src/IconVisibilityRoundedFilled.tsx index 27e6f2564..988040de2 100644 --- a/src/IconVisibilityRoundedFilled.tsx +++ b/src/IconVisibilityRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconVisibilityRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconVisibilityRoundedFilled as default } +export default IconVisibilityRoundedFilled diff --git a/src/IconVisibilitySharp.tsx b/src/IconVisibilitySharp.tsx index ce8fc53cc..186058259 100644 --- a/src/IconVisibilitySharp.tsx +++ b/src/IconVisibilitySharp.tsx @@ -8,4 +8,4 @@ const IconVisibilitySharp: React.FC = ({ ...props }) => ( ) -export { IconVisibilitySharp as default } +export default IconVisibilitySharp diff --git a/src/IconVisibilitySharpFilled.tsx b/src/IconVisibilitySharpFilled.tsx index f5a51e570..5cedcde7a 100644 --- a/src/IconVisibilitySharpFilled.tsx +++ b/src/IconVisibilitySharpFilled.tsx @@ -8,4 +8,4 @@ const IconVisibilitySharpFilled: React.FC = ({ ...props }) => ( ) -export { IconVisibilitySharpFilled as default } +export default IconVisibilitySharpFilled diff --git a/src/IconVitalSignsOutlined.tsx b/src/IconVitalSignsOutlined.tsx index 321dfaf89..87c970255 100644 --- a/src/IconVitalSignsOutlined.tsx +++ b/src/IconVitalSignsOutlined.tsx @@ -8,4 +8,4 @@ const IconVitalSignsOutlined: React.FC = ({ ...props }) => ( ) -export { IconVitalSignsOutlined as default } +export default IconVitalSignsOutlined diff --git a/src/IconVitalSignsOutlinedFilled.tsx b/src/IconVitalSignsOutlinedFilled.tsx index 0293d0aea..9026b8121 100644 --- a/src/IconVitalSignsOutlinedFilled.tsx +++ b/src/IconVitalSignsOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconVitalSignsOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconVitalSignsOutlinedFilled as default } +export default IconVitalSignsOutlinedFilled diff --git a/src/IconVitalSignsRounded.tsx b/src/IconVitalSignsRounded.tsx index 89ea93cb9..23010ce12 100644 --- a/src/IconVitalSignsRounded.tsx +++ b/src/IconVitalSignsRounded.tsx @@ -8,4 +8,4 @@ const IconVitalSignsRounded: React.FC = ({ ...props }) => ( ) -export { IconVitalSignsRounded as default } +export default IconVitalSignsRounded diff --git a/src/IconVitalSignsRoundedFilled.tsx b/src/IconVitalSignsRoundedFilled.tsx index eb2b53dd8..1691c3712 100644 --- a/src/IconVitalSignsRoundedFilled.tsx +++ b/src/IconVitalSignsRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconVitalSignsRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconVitalSignsRoundedFilled as default } +export default IconVitalSignsRoundedFilled diff --git a/src/IconVitalSignsSharp.tsx b/src/IconVitalSignsSharp.tsx index 003133563..c6bb41528 100644 --- a/src/IconVitalSignsSharp.tsx +++ b/src/IconVitalSignsSharp.tsx @@ -8,4 +8,4 @@ const IconVitalSignsSharp: React.FC = ({ ...props }) => ( ) -export { IconVitalSignsSharp as default } +export default IconVitalSignsSharp diff --git a/src/IconVitalSignsSharpFilled.tsx b/src/IconVitalSignsSharpFilled.tsx index b945a952e..487d16c78 100644 --- a/src/IconVitalSignsSharpFilled.tsx +++ b/src/IconVitalSignsSharpFilled.tsx @@ -8,4 +8,4 @@ const IconVitalSignsSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconVitalSignsSharpFilled as default } +export default IconVitalSignsSharpFilled diff --git a/src/IconVo2MaxOutlined.tsx b/src/IconVo2MaxOutlined.tsx index 33a284f23..7b77f8a77 100644 --- a/src/IconVo2MaxOutlined.tsx +++ b/src/IconVo2MaxOutlined.tsx @@ -8,4 +8,4 @@ const IconVo2MaxOutlined: React.FC = ({ ...props }) => ( ) -export { IconVo2MaxOutlined as default } +export default IconVo2MaxOutlined diff --git a/src/IconVo2MaxOutlinedFilled.tsx b/src/IconVo2MaxOutlinedFilled.tsx index c40dbcbed..6a3672da5 100644 --- a/src/IconVo2MaxOutlinedFilled.tsx +++ b/src/IconVo2MaxOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconVo2MaxOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconVo2MaxOutlinedFilled as default } +export default IconVo2MaxOutlinedFilled diff --git a/src/IconVo2MaxRounded.tsx b/src/IconVo2MaxRounded.tsx index 799fbef26..21af25a0f 100644 --- a/src/IconVo2MaxRounded.tsx +++ b/src/IconVo2MaxRounded.tsx @@ -8,4 +8,4 @@ const IconVo2MaxRounded: React.FC = ({ ...props }) => ( ) -export { IconVo2MaxRounded as default } +export default IconVo2MaxRounded diff --git a/src/IconVo2MaxRoundedFilled.tsx b/src/IconVo2MaxRoundedFilled.tsx index 1ed69a482..cd1324beb 100644 --- a/src/IconVo2MaxRoundedFilled.tsx +++ b/src/IconVo2MaxRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconVo2MaxRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconVo2MaxRoundedFilled as default } +export default IconVo2MaxRoundedFilled diff --git a/src/IconVo2MaxSharp.tsx b/src/IconVo2MaxSharp.tsx index aef1b26df..0ca7b0cd1 100644 --- a/src/IconVo2MaxSharp.tsx +++ b/src/IconVo2MaxSharp.tsx @@ -8,4 +8,4 @@ const IconVo2MaxSharp: React.FC = ({ ...props }) => ( ) -export { IconVo2MaxSharp as default } +export default IconVo2MaxSharp diff --git a/src/IconVo2MaxSharpFilled.tsx b/src/IconVo2MaxSharpFilled.tsx index e38afda61..8f2b0f861 100644 --- a/src/IconVo2MaxSharpFilled.tsx +++ b/src/IconVo2MaxSharpFilled.tsx @@ -8,4 +8,4 @@ const IconVo2MaxSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconVo2MaxSharpFilled as default } +export default IconVo2MaxSharpFilled diff --git a/src/IconVoiceChatOutlined.tsx b/src/IconVoiceChatOutlined.tsx index a9c5e2480..c6227305f 100644 --- a/src/IconVoiceChatOutlined.tsx +++ b/src/IconVoiceChatOutlined.tsx @@ -8,4 +8,4 @@ const IconVoiceChatOutlined: React.FC = ({ ...props }) => ( ) -export { IconVoiceChatOutlined as default } +export default IconVoiceChatOutlined diff --git a/src/IconVoiceChatOutlinedFilled.tsx b/src/IconVoiceChatOutlinedFilled.tsx index 6e010cb38..d06549f90 100644 --- a/src/IconVoiceChatOutlinedFilled.tsx +++ b/src/IconVoiceChatOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconVoiceChatOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconVoiceChatOutlinedFilled as default } +export default IconVoiceChatOutlinedFilled diff --git a/src/IconVoiceChatRounded.tsx b/src/IconVoiceChatRounded.tsx index deb5507ba..bd4644169 100644 --- a/src/IconVoiceChatRounded.tsx +++ b/src/IconVoiceChatRounded.tsx @@ -8,4 +8,4 @@ const IconVoiceChatRounded: React.FC = ({ ...props }) => ( ) -export { IconVoiceChatRounded as default } +export default IconVoiceChatRounded diff --git a/src/IconVoiceChatRoundedFilled.tsx b/src/IconVoiceChatRoundedFilled.tsx index 44171d2da..4fc30890a 100644 --- a/src/IconVoiceChatRoundedFilled.tsx +++ b/src/IconVoiceChatRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconVoiceChatRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconVoiceChatRoundedFilled as default } +export default IconVoiceChatRoundedFilled diff --git a/src/IconVoiceChatSharp.tsx b/src/IconVoiceChatSharp.tsx index f52cffcbc..a189f3daa 100644 --- a/src/IconVoiceChatSharp.tsx +++ b/src/IconVoiceChatSharp.tsx @@ -8,4 +8,4 @@ const IconVoiceChatSharp: React.FC = ({ ...props }) => ( ) -export { IconVoiceChatSharp as default } +export default IconVoiceChatSharp diff --git a/src/IconVoiceChatSharpFilled.tsx b/src/IconVoiceChatSharpFilled.tsx index ae706c937..b3cccd27f 100644 --- a/src/IconVoiceChatSharpFilled.tsx +++ b/src/IconVoiceChatSharpFilled.tsx @@ -8,4 +8,4 @@ const IconVoiceChatSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconVoiceChatSharpFilled as default } +export default IconVoiceChatSharpFilled diff --git a/src/IconVoiceOverOffOutlined.tsx b/src/IconVoiceOverOffOutlined.tsx index 44949c5bf..c5241f5ba 100644 --- a/src/IconVoiceOverOffOutlined.tsx +++ b/src/IconVoiceOverOffOutlined.tsx @@ -8,4 +8,4 @@ const IconVoiceOverOffOutlined: React.FC = ({ ...props }) => ( ) -export { IconVoiceOverOffOutlined as default } +export default IconVoiceOverOffOutlined diff --git a/src/IconVoiceOverOffOutlinedFilled.tsx b/src/IconVoiceOverOffOutlinedFilled.tsx index d648f9fbf..1bcec316e 100644 --- a/src/IconVoiceOverOffOutlinedFilled.tsx +++ b/src/IconVoiceOverOffOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconVoiceOverOffOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconVoiceOverOffOutlinedFilled as default } +export default IconVoiceOverOffOutlinedFilled diff --git a/src/IconVoiceOverOffRounded.tsx b/src/IconVoiceOverOffRounded.tsx index 4b7101922..097922056 100644 --- a/src/IconVoiceOverOffRounded.tsx +++ b/src/IconVoiceOverOffRounded.tsx @@ -8,4 +8,4 @@ const IconVoiceOverOffRounded: React.FC = ({ ...props }) => ( ) -export { IconVoiceOverOffRounded as default } +export default IconVoiceOverOffRounded diff --git a/src/IconVoiceOverOffRoundedFilled.tsx b/src/IconVoiceOverOffRoundedFilled.tsx index db9b89475..629fbadd0 100644 --- a/src/IconVoiceOverOffRoundedFilled.tsx +++ b/src/IconVoiceOverOffRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconVoiceOverOffRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconVoiceOverOffRoundedFilled as default } +export default IconVoiceOverOffRoundedFilled diff --git a/src/IconVoiceOverOffSharp.tsx b/src/IconVoiceOverOffSharp.tsx index 9bc2cceae..99d4f28e1 100644 --- a/src/IconVoiceOverOffSharp.tsx +++ b/src/IconVoiceOverOffSharp.tsx @@ -8,4 +8,4 @@ const IconVoiceOverOffSharp: React.FC = ({ ...props }) => ( ) -export { IconVoiceOverOffSharp as default } +export default IconVoiceOverOffSharp diff --git a/src/IconVoiceOverOffSharpFilled.tsx b/src/IconVoiceOverOffSharpFilled.tsx index e99dd516b..b52642a03 100644 --- a/src/IconVoiceOverOffSharpFilled.tsx +++ b/src/IconVoiceOverOffSharpFilled.tsx @@ -8,4 +8,4 @@ const IconVoiceOverOffSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconVoiceOverOffSharpFilled as default } +export default IconVoiceOverOffSharpFilled diff --git a/src/IconVoiceSelectionOffOutlined.tsx b/src/IconVoiceSelectionOffOutlined.tsx index 231fb81af..965b02a2c 100644 --- a/src/IconVoiceSelectionOffOutlined.tsx +++ b/src/IconVoiceSelectionOffOutlined.tsx @@ -8,4 +8,4 @@ const IconVoiceSelectionOffOutlined: React.FC = ({ ...props }) => ( ) -export { IconVoiceSelectionOffOutlined as default } +export default IconVoiceSelectionOffOutlined diff --git a/src/IconVoiceSelectionOffOutlinedFilled.tsx b/src/IconVoiceSelectionOffOutlinedFilled.tsx index 2bf69c3cb..d636a4b5a 100644 --- a/src/IconVoiceSelectionOffOutlinedFilled.tsx +++ b/src/IconVoiceSelectionOffOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconVoiceSelectionOffOutlinedFilled: React.FC = ({ ) -export { IconVoiceSelectionOffOutlinedFilled as default } +export default IconVoiceSelectionOffOutlinedFilled diff --git a/src/IconVoiceSelectionOffRounded.tsx b/src/IconVoiceSelectionOffRounded.tsx index 61ba5f8dd..65a88a7d2 100644 --- a/src/IconVoiceSelectionOffRounded.tsx +++ b/src/IconVoiceSelectionOffRounded.tsx @@ -8,4 +8,4 @@ const IconVoiceSelectionOffRounded: React.FC = ({ ...props }) => ( ) -export { IconVoiceSelectionOffRounded as default } +export default IconVoiceSelectionOffRounded diff --git a/src/IconVoiceSelectionOffRoundedFilled.tsx b/src/IconVoiceSelectionOffRoundedFilled.tsx index a81ed885b..84a888574 100644 --- a/src/IconVoiceSelectionOffRoundedFilled.tsx +++ b/src/IconVoiceSelectionOffRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconVoiceSelectionOffRoundedFilled: React.FC = ({ ) -export { IconVoiceSelectionOffRoundedFilled as default } +export default IconVoiceSelectionOffRoundedFilled diff --git a/src/IconVoiceSelectionOffSharp.tsx b/src/IconVoiceSelectionOffSharp.tsx index b0fefb5c5..a43f69996 100644 --- a/src/IconVoiceSelectionOffSharp.tsx +++ b/src/IconVoiceSelectionOffSharp.tsx @@ -8,4 +8,4 @@ const IconVoiceSelectionOffSharp: React.FC = ({ ...props }) => ( ) -export { IconVoiceSelectionOffSharp as default } +export default IconVoiceSelectionOffSharp diff --git a/src/IconVoiceSelectionOffSharpFilled.tsx b/src/IconVoiceSelectionOffSharpFilled.tsx index 8ce017e0a..4e178ad31 100644 --- a/src/IconVoiceSelectionOffSharpFilled.tsx +++ b/src/IconVoiceSelectionOffSharpFilled.tsx @@ -10,4 +10,4 @@ const IconVoiceSelectionOffSharpFilled: React.FC = ({ ) -export { IconVoiceSelectionOffSharpFilled as default } +export default IconVoiceSelectionOffSharpFilled diff --git a/src/IconVoiceSelectionOutlined.tsx b/src/IconVoiceSelectionOutlined.tsx index 915a20ea6..914d43def 100644 --- a/src/IconVoiceSelectionOutlined.tsx +++ b/src/IconVoiceSelectionOutlined.tsx @@ -8,4 +8,4 @@ const IconVoiceSelectionOutlined: React.FC = ({ ...props }) => ( ) -export { IconVoiceSelectionOutlined as default } +export default IconVoiceSelectionOutlined diff --git a/src/IconVoiceSelectionOutlinedFilled.tsx b/src/IconVoiceSelectionOutlinedFilled.tsx index c15bb5f1d..f318921fe 100644 --- a/src/IconVoiceSelectionOutlinedFilled.tsx +++ b/src/IconVoiceSelectionOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconVoiceSelectionOutlinedFilled: React.FC = ({ ) -export { IconVoiceSelectionOutlinedFilled as default } +export default IconVoiceSelectionOutlinedFilled diff --git a/src/IconVoiceSelectionRounded.tsx b/src/IconVoiceSelectionRounded.tsx index b1c8ee483..67cb9618e 100644 --- a/src/IconVoiceSelectionRounded.tsx +++ b/src/IconVoiceSelectionRounded.tsx @@ -8,4 +8,4 @@ const IconVoiceSelectionRounded: React.FC = ({ ...props }) => ( ) -export { IconVoiceSelectionRounded as default } +export default IconVoiceSelectionRounded diff --git a/src/IconVoiceSelectionRoundedFilled.tsx b/src/IconVoiceSelectionRoundedFilled.tsx index f0b959031..6add467e6 100644 --- a/src/IconVoiceSelectionRoundedFilled.tsx +++ b/src/IconVoiceSelectionRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconVoiceSelectionRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconVoiceSelectionRoundedFilled as default } +export default IconVoiceSelectionRoundedFilled diff --git a/src/IconVoiceSelectionSharp.tsx b/src/IconVoiceSelectionSharp.tsx index e7c7a442c..f0bdea032 100644 --- a/src/IconVoiceSelectionSharp.tsx +++ b/src/IconVoiceSelectionSharp.tsx @@ -8,4 +8,4 @@ const IconVoiceSelectionSharp: React.FC = ({ ...props }) => ( ) -export { IconVoiceSelectionSharp as default } +export default IconVoiceSelectionSharp diff --git a/src/IconVoiceSelectionSharpFilled.tsx b/src/IconVoiceSelectionSharpFilled.tsx index dd2c043c9..4637bbf15 100644 --- a/src/IconVoiceSelectionSharpFilled.tsx +++ b/src/IconVoiceSelectionSharpFilled.tsx @@ -8,4 +8,4 @@ const IconVoiceSelectionSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconVoiceSelectionSharpFilled as default } +export default IconVoiceSelectionSharpFilled diff --git a/src/IconVoicemailOutlined.tsx b/src/IconVoicemailOutlined.tsx index ed8a9ca94..3df99bf24 100644 --- a/src/IconVoicemailOutlined.tsx +++ b/src/IconVoicemailOutlined.tsx @@ -8,4 +8,4 @@ const IconVoicemailOutlined: React.FC = ({ ...props }) => ( ) -export { IconVoicemailOutlined as default } +export default IconVoicemailOutlined diff --git a/src/IconVoicemailOutlinedFilled.tsx b/src/IconVoicemailOutlinedFilled.tsx index 15e78ad1c..c4c3a9035 100644 --- a/src/IconVoicemailOutlinedFilled.tsx +++ b/src/IconVoicemailOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconVoicemailOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconVoicemailOutlinedFilled as default } +export default IconVoicemailOutlinedFilled diff --git a/src/IconVoicemailRounded.tsx b/src/IconVoicemailRounded.tsx index 76da94a8c..cd06657c3 100644 --- a/src/IconVoicemailRounded.tsx +++ b/src/IconVoicemailRounded.tsx @@ -8,4 +8,4 @@ const IconVoicemailRounded: React.FC = ({ ...props }) => ( ) -export { IconVoicemailRounded as default } +export default IconVoicemailRounded diff --git a/src/IconVoicemailRoundedFilled.tsx b/src/IconVoicemailRoundedFilled.tsx index eb20e1af1..a7548697f 100644 --- a/src/IconVoicemailRoundedFilled.tsx +++ b/src/IconVoicemailRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconVoicemailRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconVoicemailRoundedFilled as default } +export default IconVoicemailRoundedFilled diff --git a/src/IconVoicemailSharp.tsx b/src/IconVoicemailSharp.tsx index b274d5d5c..377effc7c 100644 --- a/src/IconVoicemailSharp.tsx +++ b/src/IconVoicemailSharp.tsx @@ -8,4 +8,4 @@ const IconVoicemailSharp: React.FC = ({ ...props }) => ( ) -export { IconVoicemailSharp as default } +export default IconVoicemailSharp diff --git a/src/IconVoicemailSharpFilled.tsx b/src/IconVoicemailSharpFilled.tsx index 0b9b68916..7bd973f89 100644 --- a/src/IconVoicemailSharpFilled.tsx +++ b/src/IconVoicemailSharpFilled.tsx @@ -8,4 +8,4 @@ const IconVoicemailSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconVoicemailSharpFilled as default } +export default IconVoicemailSharpFilled diff --git a/src/IconVolcanoOutlined.tsx b/src/IconVolcanoOutlined.tsx index c8b087802..967d12612 100644 --- a/src/IconVolcanoOutlined.tsx +++ b/src/IconVolcanoOutlined.tsx @@ -8,4 +8,4 @@ const IconVolcanoOutlined: React.FC = ({ ...props }) => ( ) -export { IconVolcanoOutlined as default } +export default IconVolcanoOutlined diff --git a/src/IconVolcanoOutlinedFilled.tsx b/src/IconVolcanoOutlinedFilled.tsx index c6de30532..50c6b6699 100644 --- a/src/IconVolcanoOutlinedFilled.tsx +++ b/src/IconVolcanoOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconVolcanoOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconVolcanoOutlinedFilled as default } +export default IconVolcanoOutlinedFilled diff --git a/src/IconVolcanoRounded.tsx b/src/IconVolcanoRounded.tsx index 077b55f38..bafa951ec 100644 --- a/src/IconVolcanoRounded.tsx +++ b/src/IconVolcanoRounded.tsx @@ -8,4 +8,4 @@ const IconVolcanoRounded: React.FC = ({ ...props }) => ( ) -export { IconVolcanoRounded as default } +export default IconVolcanoRounded diff --git a/src/IconVolcanoRoundedFilled.tsx b/src/IconVolcanoRoundedFilled.tsx index bd246c423..475fc6256 100644 --- a/src/IconVolcanoRoundedFilled.tsx +++ b/src/IconVolcanoRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconVolcanoRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconVolcanoRoundedFilled as default } +export default IconVolcanoRoundedFilled diff --git a/src/IconVolcanoSharp.tsx b/src/IconVolcanoSharp.tsx index c5a761bbf..7f8bb02c8 100644 --- a/src/IconVolcanoSharp.tsx +++ b/src/IconVolcanoSharp.tsx @@ -8,4 +8,4 @@ const IconVolcanoSharp: React.FC = ({ ...props }) => ( ) -export { IconVolcanoSharp as default } +export default IconVolcanoSharp diff --git a/src/IconVolcanoSharpFilled.tsx b/src/IconVolcanoSharpFilled.tsx index 06c34b094..fb2812a99 100644 --- a/src/IconVolcanoSharpFilled.tsx +++ b/src/IconVolcanoSharpFilled.tsx @@ -8,4 +8,4 @@ const IconVolcanoSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconVolcanoSharpFilled as default } +export default IconVolcanoSharpFilled diff --git a/src/IconVolumeDownAltOutlined.tsx b/src/IconVolumeDownAltOutlined.tsx index 6c3e33d69..77f12f1a0 100644 --- a/src/IconVolumeDownAltOutlined.tsx +++ b/src/IconVolumeDownAltOutlined.tsx @@ -8,4 +8,4 @@ const IconVolumeDownAltOutlined: React.FC = ({ ...props }) => ( ) -export { IconVolumeDownAltOutlined as default } +export default IconVolumeDownAltOutlined diff --git a/src/IconVolumeDownAltOutlinedFilled.tsx b/src/IconVolumeDownAltOutlinedFilled.tsx index 1f89a5118..8bfcca0df 100644 --- a/src/IconVolumeDownAltOutlinedFilled.tsx +++ b/src/IconVolumeDownAltOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconVolumeDownAltOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconVolumeDownAltOutlinedFilled as default } +export default IconVolumeDownAltOutlinedFilled diff --git a/src/IconVolumeDownAltRounded.tsx b/src/IconVolumeDownAltRounded.tsx index 67476fc5c..5c84e17f9 100644 --- a/src/IconVolumeDownAltRounded.tsx +++ b/src/IconVolumeDownAltRounded.tsx @@ -8,4 +8,4 @@ const IconVolumeDownAltRounded: React.FC = ({ ...props }) => ( ) -export { IconVolumeDownAltRounded as default } +export default IconVolumeDownAltRounded diff --git a/src/IconVolumeDownAltRoundedFilled.tsx b/src/IconVolumeDownAltRoundedFilled.tsx index 8fd73bc41..298fe2566 100644 --- a/src/IconVolumeDownAltRoundedFilled.tsx +++ b/src/IconVolumeDownAltRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconVolumeDownAltRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconVolumeDownAltRoundedFilled as default } +export default IconVolumeDownAltRoundedFilled diff --git a/src/IconVolumeDownAltSharp.tsx b/src/IconVolumeDownAltSharp.tsx index 205753473..9c416bd55 100644 --- a/src/IconVolumeDownAltSharp.tsx +++ b/src/IconVolumeDownAltSharp.tsx @@ -8,4 +8,4 @@ const IconVolumeDownAltSharp: React.FC = ({ ...props }) => ( ) -export { IconVolumeDownAltSharp as default } +export default IconVolumeDownAltSharp diff --git a/src/IconVolumeDownAltSharpFilled.tsx b/src/IconVolumeDownAltSharpFilled.tsx index 2d50c6a4a..e6cda5778 100644 --- a/src/IconVolumeDownAltSharpFilled.tsx +++ b/src/IconVolumeDownAltSharpFilled.tsx @@ -8,4 +8,4 @@ const IconVolumeDownAltSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconVolumeDownAltSharpFilled as default } +export default IconVolumeDownAltSharpFilled diff --git a/src/IconVolumeDownOutlined.tsx b/src/IconVolumeDownOutlined.tsx index bc6dbb2ed..44153cd0f 100644 --- a/src/IconVolumeDownOutlined.tsx +++ b/src/IconVolumeDownOutlined.tsx @@ -8,4 +8,4 @@ const IconVolumeDownOutlined: React.FC = ({ ...props }) => ( ) -export { IconVolumeDownOutlined as default } +export default IconVolumeDownOutlined diff --git a/src/IconVolumeDownOutlinedFilled.tsx b/src/IconVolumeDownOutlinedFilled.tsx index 330db36e8..916807af0 100644 --- a/src/IconVolumeDownOutlinedFilled.tsx +++ b/src/IconVolumeDownOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconVolumeDownOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconVolumeDownOutlinedFilled as default } +export default IconVolumeDownOutlinedFilled diff --git a/src/IconVolumeDownRounded.tsx b/src/IconVolumeDownRounded.tsx index 7b4faf464..145ed4209 100644 --- a/src/IconVolumeDownRounded.tsx +++ b/src/IconVolumeDownRounded.tsx @@ -8,4 +8,4 @@ const IconVolumeDownRounded: React.FC = ({ ...props }) => ( ) -export { IconVolumeDownRounded as default } +export default IconVolumeDownRounded diff --git a/src/IconVolumeDownRoundedFilled.tsx b/src/IconVolumeDownRoundedFilled.tsx index 460b9ead0..34117dd68 100644 --- a/src/IconVolumeDownRoundedFilled.tsx +++ b/src/IconVolumeDownRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconVolumeDownRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconVolumeDownRoundedFilled as default } +export default IconVolumeDownRoundedFilled diff --git a/src/IconVolumeDownSharp.tsx b/src/IconVolumeDownSharp.tsx index b702d9f07..fee884cca 100644 --- a/src/IconVolumeDownSharp.tsx +++ b/src/IconVolumeDownSharp.tsx @@ -8,4 +8,4 @@ const IconVolumeDownSharp: React.FC = ({ ...props }) => ( ) -export { IconVolumeDownSharp as default } +export default IconVolumeDownSharp diff --git a/src/IconVolumeDownSharpFilled.tsx b/src/IconVolumeDownSharpFilled.tsx index 3444eb6cb..5c53aeeee 100644 --- a/src/IconVolumeDownSharpFilled.tsx +++ b/src/IconVolumeDownSharpFilled.tsx @@ -8,4 +8,4 @@ const IconVolumeDownSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconVolumeDownSharpFilled as default } +export default IconVolumeDownSharpFilled diff --git a/src/IconVolumeMuteOutlined.tsx b/src/IconVolumeMuteOutlined.tsx index 7cf867414..823f1f7ef 100644 --- a/src/IconVolumeMuteOutlined.tsx +++ b/src/IconVolumeMuteOutlined.tsx @@ -8,4 +8,4 @@ const IconVolumeMuteOutlined: React.FC = ({ ...props }) => ( ) -export { IconVolumeMuteOutlined as default } +export default IconVolumeMuteOutlined diff --git a/src/IconVolumeMuteOutlinedFilled.tsx b/src/IconVolumeMuteOutlinedFilled.tsx index 669eb0e5c..ceb79068b 100644 --- a/src/IconVolumeMuteOutlinedFilled.tsx +++ b/src/IconVolumeMuteOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconVolumeMuteOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconVolumeMuteOutlinedFilled as default } +export default IconVolumeMuteOutlinedFilled diff --git a/src/IconVolumeMuteRounded.tsx b/src/IconVolumeMuteRounded.tsx index b2394d65e..0f77ca9a5 100644 --- a/src/IconVolumeMuteRounded.tsx +++ b/src/IconVolumeMuteRounded.tsx @@ -8,4 +8,4 @@ const IconVolumeMuteRounded: React.FC = ({ ...props }) => ( ) -export { IconVolumeMuteRounded as default } +export default IconVolumeMuteRounded diff --git a/src/IconVolumeMuteRoundedFilled.tsx b/src/IconVolumeMuteRoundedFilled.tsx index 472486d00..4aff9bc3a 100644 --- a/src/IconVolumeMuteRoundedFilled.tsx +++ b/src/IconVolumeMuteRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconVolumeMuteRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconVolumeMuteRoundedFilled as default } +export default IconVolumeMuteRoundedFilled diff --git a/src/IconVolumeMuteSharp.tsx b/src/IconVolumeMuteSharp.tsx index a25b56e3a..a5ef701cf 100644 --- a/src/IconVolumeMuteSharp.tsx +++ b/src/IconVolumeMuteSharp.tsx @@ -8,4 +8,4 @@ const IconVolumeMuteSharp: React.FC = ({ ...props }) => ( ) -export { IconVolumeMuteSharp as default } +export default IconVolumeMuteSharp diff --git a/src/IconVolumeMuteSharpFilled.tsx b/src/IconVolumeMuteSharpFilled.tsx index dd8f93dd9..db5cb2352 100644 --- a/src/IconVolumeMuteSharpFilled.tsx +++ b/src/IconVolumeMuteSharpFilled.tsx @@ -8,4 +8,4 @@ const IconVolumeMuteSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconVolumeMuteSharpFilled as default } +export default IconVolumeMuteSharpFilled diff --git a/src/IconVolumeOffOutlined.tsx b/src/IconVolumeOffOutlined.tsx index fecc498e0..9ae5979d6 100644 --- a/src/IconVolumeOffOutlined.tsx +++ b/src/IconVolumeOffOutlined.tsx @@ -8,4 +8,4 @@ const IconVolumeOffOutlined: React.FC = ({ ...props }) => ( ) -export { IconVolumeOffOutlined as default } +export default IconVolumeOffOutlined diff --git a/src/IconVolumeOffOutlinedFilled.tsx b/src/IconVolumeOffOutlinedFilled.tsx index f12d7eedd..98d210536 100644 --- a/src/IconVolumeOffOutlinedFilled.tsx +++ b/src/IconVolumeOffOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconVolumeOffOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconVolumeOffOutlinedFilled as default } +export default IconVolumeOffOutlinedFilled diff --git a/src/IconVolumeOffRounded.tsx b/src/IconVolumeOffRounded.tsx index 00e784b56..f9c343753 100644 --- a/src/IconVolumeOffRounded.tsx +++ b/src/IconVolumeOffRounded.tsx @@ -8,4 +8,4 @@ const IconVolumeOffRounded: React.FC = ({ ...props }) => ( ) -export { IconVolumeOffRounded as default } +export default IconVolumeOffRounded diff --git a/src/IconVolumeOffRoundedFilled.tsx b/src/IconVolumeOffRoundedFilled.tsx index dc96fbc17..d6e0b8402 100644 --- a/src/IconVolumeOffRoundedFilled.tsx +++ b/src/IconVolumeOffRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconVolumeOffRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconVolumeOffRoundedFilled as default } +export default IconVolumeOffRoundedFilled diff --git a/src/IconVolumeOffSharp.tsx b/src/IconVolumeOffSharp.tsx index 6ece3a10e..6eb5d4b92 100644 --- a/src/IconVolumeOffSharp.tsx +++ b/src/IconVolumeOffSharp.tsx @@ -8,4 +8,4 @@ const IconVolumeOffSharp: React.FC = ({ ...props }) => ( ) -export { IconVolumeOffSharp as default } +export default IconVolumeOffSharp diff --git a/src/IconVolumeOffSharpFilled.tsx b/src/IconVolumeOffSharpFilled.tsx index cc3a7329d..a4187576c 100644 --- a/src/IconVolumeOffSharpFilled.tsx +++ b/src/IconVolumeOffSharpFilled.tsx @@ -8,4 +8,4 @@ const IconVolumeOffSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconVolumeOffSharpFilled as default } +export default IconVolumeOffSharpFilled diff --git a/src/IconVolumeUpOutlined.tsx b/src/IconVolumeUpOutlined.tsx index 96123ab69..acdba90b8 100644 --- a/src/IconVolumeUpOutlined.tsx +++ b/src/IconVolumeUpOutlined.tsx @@ -8,4 +8,4 @@ const IconVolumeUpOutlined: React.FC = ({ ...props }) => ( ) -export { IconVolumeUpOutlined as default } +export default IconVolumeUpOutlined diff --git a/src/IconVolumeUpOutlinedFilled.tsx b/src/IconVolumeUpOutlinedFilled.tsx index 52d6211ad..651a87e3e 100644 --- a/src/IconVolumeUpOutlinedFilled.tsx +++ b/src/IconVolumeUpOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconVolumeUpOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconVolumeUpOutlinedFilled as default } +export default IconVolumeUpOutlinedFilled diff --git a/src/IconVolumeUpRounded.tsx b/src/IconVolumeUpRounded.tsx index 80ba89b25..8d566085a 100644 --- a/src/IconVolumeUpRounded.tsx +++ b/src/IconVolumeUpRounded.tsx @@ -8,4 +8,4 @@ const IconVolumeUpRounded: React.FC = ({ ...props }) => ( ) -export { IconVolumeUpRounded as default } +export default IconVolumeUpRounded diff --git a/src/IconVolumeUpRoundedFilled.tsx b/src/IconVolumeUpRoundedFilled.tsx index 1125c300a..ebcb3f476 100644 --- a/src/IconVolumeUpRoundedFilled.tsx +++ b/src/IconVolumeUpRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconVolumeUpRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconVolumeUpRoundedFilled as default } +export default IconVolumeUpRoundedFilled diff --git a/src/IconVolumeUpSharp.tsx b/src/IconVolumeUpSharp.tsx index 9a7409fc7..4940c834f 100644 --- a/src/IconVolumeUpSharp.tsx +++ b/src/IconVolumeUpSharp.tsx @@ -8,4 +8,4 @@ const IconVolumeUpSharp: React.FC = ({ ...props }) => ( ) -export { IconVolumeUpSharp as default } +export default IconVolumeUpSharp diff --git a/src/IconVolumeUpSharpFilled.tsx b/src/IconVolumeUpSharpFilled.tsx index 1b25bd2de..df5e8f2d3 100644 --- a/src/IconVolumeUpSharpFilled.tsx +++ b/src/IconVolumeUpSharpFilled.tsx @@ -8,4 +8,4 @@ const IconVolumeUpSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconVolumeUpSharpFilled as default } +export default IconVolumeUpSharpFilled diff --git a/src/IconVolunteerActivismOutlined.tsx b/src/IconVolunteerActivismOutlined.tsx index a9ba5a610..500f6d90d 100644 --- a/src/IconVolunteerActivismOutlined.tsx +++ b/src/IconVolunteerActivismOutlined.tsx @@ -8,4 +8,4 @@ const IconVolunteerActivismOutlined: React.FC = ({ ...props }) => ( ) -export { IconVolunteerActivismOutlined as default } +export default IconVolunteerActivismOutlined diff --git a/src/IconVolunteerActivismOutlinedFilled.tsx b/src/IconVolunteerActivismOutlinedFilled.tsx index 0eae1861b..edd2fedc9 100644 --- a/src/IconVolunteerActivismOutlinedFilled.tsx +++ b/src/IconVolunteerActivismOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconVolunteerActivismOutlinedFilled: React.FC = ({ ) -export { IconVolunteerActivismOutlinedFilled as default } +export default IconVolunteerActivismOutlinedFilled diff --git a/src/IconVolunteerActivismRounded.tsx b/src/IconVolunteerActivismRounded.tsx index 6dd5caae0..b8ffbb85e 100644 --- a/src/IconVolunteerActivismRounded.tsx +++ b/src/IconVolunteerActivismRounded.tsx @@ -8,4 +8,4 @@ const IconVolunteerActivismRounded: React.FC = ({ ...props }) => ( ) -export { IconVolunteerActivismRounded as default } +export default IconVolunteerActivismRounded diff --git a/src/IconVolunteerActivismRoundedFilled.tsx b/src/IconVolunteerActivismRoundedFilled.tsx index 0f35a3b9b..3729dd891 100644 --- a/src/IconVolunteerActivismRoundedFilled.tsx +++ b/src/IconVolunteerActivismRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconVolunteerActivismRoundedFilled: React.FC = ({ ) -export { IconVolunteerActivismRoundedFilled as default } +export default IconVolunteerActivismRoundedFilled diff --git a/src/IconVolunteerActivismSharp.tsx b/src/IconVolunteerActivismSharp.tsx index 7a367d365..b1982cc34 100644 --- a/src/IconVolunteerActivismSharp.tsx +++ b/src/IconVolunteerActivismSharp.tsx @@ -8,4 +8,4 @@ const IconVolunteerActivismSharp: React.FC = ({ ...props }) => ( ) -export { IconVolunteerActivismSharp as default } +export default IconVolunteerActivismSharp diff --git a/src/IconVolunteerActivismSharpFilled.tsx b/src/IconVolunteerActivismSharpFilled.tsx index 735e2809f..67376ef60 100644 --- a/src/IconVolunteerActivismSharpFilled.tsx +++ b/src/IconVolunteerActivismSharpFilled.tsx @@ -10,4 +10,4 @@ const IconVolunteerActivismSharpFilled: React.FC = ({ ) -export { IconVolunteerActivismSharpFilled as default } +export default IconVolunteerActivismSharpFilled diff --git a/src/IconVotingChipOutlined.tsx b/src/IconVotingChipOutlined.tsx index 0358c447e..5746418f0 100644 --- a/src/IconVotingChipOutlined.tsx +++ b/src/IconVotingChipOutlined.tsx @@ -8,4 +8,4 @@ const IconVotingChipOutlined: React.FC = ({ ...props }) => ( ) -export { IconVotingChipOutlined as default } +export default IconVotingChipOutlined diff --git a/src/IconVotingChipOutlinedFilled.tsx b/src/IconVotingChipOutlinedFilled.tsx index dc24aa428..b5b889ae0 100644 --- a/src/IconVotingChipOutlinedFilled.tsx +++ b/src/IconVotingChipOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconVotingChipOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconVotingChipOutlinedFilled as default } +export default IconVotingChipOutlinedFilled diff --git a/src/IconVotingChipRounded.tsx b/src/IconVotingChipRounded.tsx index 51f4ea46f..abf933d02 100644 --- a/src/IconVotingChipRounded.tsx +++ b/src/IconVotingChipRounded.tsx @@ -8,4 +8,4 @@ const IconVotingChipRounded: React.FC = ({ ...props }) => ( ) -export { IconVotingChipRounded as default } +export default IconVotingChipRounded diff --git a/src/IconVotingChipRoundedFilled.tsx b/src/IconVotingChipRoundedFilled.tsx index 92e8c236c..47fac1c1b 100644 --- a/src/IconVotingChipRoundedFilled.tsx +++ b/src/IconVotingChipRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconVotingChipRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconVotingChipRoundedFilled as default } +export default IconVotingChipRoundedFilled diff --git a/src/IconVotingChipSharp.tsx b/src/IconVotingChipSharp.tsx index 92046b0b9..58cb5416d 100644 --- a/src/IconVotingChipSharp.tsx +++ b/src/IconVotingChipSharp.tsx @@ -8,4 +8,4 @@ const IconVotingChipSharp: React.FC = ({ ...props }) => ( ) -export { IconVotingChipSharp as default } +export default IconVotingChipSharp diff --git a/src/IconVotingChipSharpFilled.tsx b/src/IconVotingChipSharpFilled.tsx index 646039cba..0aeab96c8 100644 --- a/src/IconVotingChipSharpFilled.tsx +++ b/src/IconVotingChipSharpFilled.tsx @@ -8,4 +8,4 @@ const IconVotingChipSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconVotingChipSharpFilled as default } +export default IconVotingChipSharpFilled diff --git a/src/IconVpnKeyAlertOutlined.tsx b/src/IconVpnKeyAlertOutlined.tsx index 1bf56a8d1..71a8b246d 100644 --- a/src/IconVpnKeyAlertOutlined.tsx +++ b/src/IconVpnKeyAlertOutlined.tsx @@ -8,4 +8,4 @@ const IconVpnKeyAlertOutlined: React.FC = ({ ...props }) => ( ) -export { IconVpnKeyAlertOutlined as default } +export default IconVpnKeyAlertOutlined diff --git a/src/IconVpnKeyAlertOutlinedFilled.tsx b/src/IconVpnKeyAlertOutlinedFilled.tsx index bd3583b47..e89e6895b 100644 --- a/src/IconVpnKeyAlertOutlinedFilled.tsx +++ b/src/IconVpnKeyAlertOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconVpnKeyAlertOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconVpnKeyAlertOutlinedFilled as default } +export default IconVpnKeyAlertOutlinedFilled diff --git a/src/IconVpnKeyAlertRounded.tsx b/src/IconVpnKeyAlertRounded.tsx index 9dde3c6c9..4ad25753e 100644 --- a/src/IconVpnKeyAlertRounded.tsx +++ b/src/IconVpnKeyAlertRounded.tsx @@ -8,4 +8,4 @@ const IconVpnKeyAlertRounded: React.FC = ({ ...props }) => ( ) -export { IconVpnKeyAlertRounded as default } +export default IconVpnKeyAlertRounded diff --git a/src/IconVpnKeyAlertRoundedFilled.tsx b/src/IconVpnKeyAlertRoundedFilled.tsx index a7f88ae74..931b40893 100644 --- a/src/IconVpnKeyAlertRoundedFilled.tsx +++ b/src/IconVpnKeyAlertRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconVpnKeyAlertRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconVpnKeyAlertRoundedFilled as default } +export default IconVpnKeyAlertRoundedFilled diff --git a/src/IconVpnKeyAlertSharp.tsx b/src/IconVpnKeyAlertSharp.tsx index 116a4294f..c69dbb024 100644 --- a/src/IconVpnKeyAlertSharp.tsx +++ b/src/IconVpnKeyAlertSharp.tsx @@ -8,4 +8,4 @@ const IconVpnKeyAlertSharp: React.FC = ({ ...props }) => ( ) -export { IconVpnKeyAlertSharp as default } +export default IconVpnKeyAlertSharp diff --git a/src/IconVpnKeyAlertSharpFilled.tsx b/src/IconVpnKeyAlertSharpFilled.tsx index dd1100f2c..cabcc23c1 100644 --- a/src/IconVpnKeyAlertSharpFilled.tsx +++ b/src/IconVpnKeyAlertSharpFilled.tsx @@ -8,4 +8,4 @@ const IconVpnKeyAlertSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconVpnKeyAlertSharpFilled as default } +export default IconVpnKeyAlertSharpFilled diff --git a/src/IconVpnKeyOffOutlined.tsx b/src/IconVpnKeyOffOutlined.tsx index aa10cabf7..214d5ecea 100644 --- a/src/IconVpnKeyOffOutlined.tsx +++ b/src/IconVpnKeyOffOutlined.tsx @@ -8,4 +8,4 @@ const IconVpnKeyOffOutlined: React.FC = ({ ...props }) => ( ) -export { IconVpnKeyOffOutlined as default } +export default IconVpnKeyOffOutlined diff --git a/src/IconVpnKeyOffOutlinedFilled.tsx b/src/IconVpnKeyOffOutlinedFilled.tsx index 74be1ef7d..ee1c9d02d 100644 --- a/src/IconVpnKeyOffOutlinedFilled.tsx +++ b/src/IconVpnKeyOffOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconVpnKeyOffOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconVpnKeyOffOutlinedFilled as default } +export default IconVpnKeyOffOutlinedFilled diff --git a/src/IconVpnKeyOffRounded.tsx b/src/IconVpnKeyOffRounded.tsx index 8d00a1212..f6dbd35c4 100644 --- a/src/IconVpnKeyOffRounded.tsx +++ b/src/IconVpnKeyOffRounded.tsx @@ -8,4 +8,4 @@ const IconVpnKeyOffRounded: React.FC = ({ ...props }) => ( ) -export { IconVpnKeyOffRounded as default } +export default IconVpnKeyOffRounded diff --git a/src/IconVpnKeyOffRoundedFilled.tsx b/src/IconVpnKeyOffRoundedFilled.tsx index 85cfb34af..f9a2fad2b 100644 --- a/src/IconVpnKeyOffRoundedFilled.tsx +++ b/src/IconVpnKeyOffRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconVpnKeyOffRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconVpnKeyOffRoundedFilled as default } +export default IconVpnKeyOffRoundedFilled diff --git a/src/IconVpnKeyOffSharp.tsx b/src/IconVpnKeyOffSharp.tsx index bd43325b8..4b500fe29 100644 --- a/src/IconVpnKeyOffSharp.tsx +++ b/src/IconVpnKeyOffSharp.tsx @@ -8,4 +8,4 @@ const IconVpnKeyOffSharp: React.FC = ({ ...props }) => ( ) -export { IconVpnKeyOffSharp as default } +export default IconVpnKeyOffSharp diff --git a/src/IconVpnKeyOffSharpFilled.tsx b/src/IconVpnKeyOffSharpFilled.tsx index ef3ef3c04..de4aef31c 100644 --- a/src/IconVpnKeyOffSharpFilled.tsx +++ b/src/IconVpnKeyOffSharpFilled.tsx @@ -8,4 +8,4 @@ const IconVpnKeyOffSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconVpnKeyOffSharpFilled as default } +export default IconVpnKeyOffSharpFilled diff --git a/src/IconVpnKeyOutlined.tsx b/src/IconVpnKeyOutlined.tsx index 8340ccb69..23a1c6dc6 100644 --- a/src/IconVpnKeyOutlined.tsx +++ b/src/IconVpnKeyOutlined.tsx @@ -8,4 +8,4 @@ const IconVpnKeyOutlined: React.FC = ({ ...props }) => ( ) -export { IconVpnKeyOutlined as default } +export default IconVpnKeyOutlined diff --git a/src/IconVpnKeyOutlinedFilled.tsx b/src/IconVpnKeyOutlinedFilled.tsx index 0e46ec503..759c01ca8 100644 --- a/src/IconVpnKeyOutlinedFilled.tsx +++ b/src/IconVpnKeyOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconVpnKeyOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconVpnKeyOutlinedFilled as default } +export default IconVpnKeyOutlinedFilled diff --git a/src/IconVpnKeyRounded.tsx b/src/IconVpnKeyRounded.tsx index 68f54487d..295ce5220 100644 --- a/src/IconVpnKeyRounded.tsx +++ b/src/IconVpnKeyRounded.tsx @@ -8,4 +8,4 @@ const IconVpnKeyRounded: React.FC = ({ ...props }) => ( ) -export { IconVpnKeyRounded as default } +export default IconVpnKeyRounded diff --git a/src/IconVpnKeyRoundedFilled.tsx b/src/IconVpnKeyRoundedFilled.tsx index a8e019e52..4ca42b88f 100644 --- a/src/IconVpnKeyRoundedFilled.tsx +++ b/src/IconVpnKeyRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconVpnKeyRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconVpnKeyRoundedFilled as default } +export default IconVpnKeyRoundedFilled diff --git a/src/IconVpnKeySharp.tsx b/src/IconVpnKeySharp.tsx index 6b03e4028..1771511ed 100644 --- a/src/IconVpnKeySharp.tsx +++ b/src/IconVpnKeySharp.tsx @@ -8,4 +8,4 @@ const IconVpnKeySharp: React.FC = ({ ...props }) => ( ) -export { IconVpnKeySharp as default } +export default IconVpnKeySharp diff --git a/src/IconVpnKeySharpFilled.tsx b/src/IconVpnKeySharpFilled.tsx index 1633b0299..55c01654e 100644 --- a/src/IconVpnKeySharpFilled.tsx +++ b/src/IconVpnKeySharpFilled.tsx @@ -8,4 +8,4 @@ const IconVpnKeySharpFilled: React.FC = ({ ...props }) => ( ) -export { IconVpnKeySharpFilled as default } +export default IconVpnKeySharpFilled diff --git a/src/IconVpnLockOutlined.tsx b/src/IconVpnLockOutlined.tsx index 61d9366ab..2129fb4a2 100644 --- a/src/IconVpnLockOutlined.tsx +++ b/src/IconVpnLockOutlined.tsx @@ -8,4 +8,4 @@ const IconVpnLockOutlined: React.FC = ({ ...props }) => ( ) -export { IconVpnLockOutlined as default } +export default IconVpnLockOutlined diff --git a/src/IconVpnLockOutlinedFilled.tsx b/src/IconVpnLockOutlinedFilled.tsx index 68eaa8e9d..6d6ecefd1 100644 --- a/src/IconVpnLockOutlinedFilled.tsx +++ b/src/IconVpnLockOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconVpnLockOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconVpnLockOutlinedFilled as default } +export default IconVpnLockOutlinedFilled diff --git a/src/IconVpnLockRounded.tsx b/src/IconVpnLockRounded.tsx index 61dbd318a..04216ac16 100644 --- a/src/IconVpnLockRounded.tsx +++ b/src/IconVpnLockRounded.tsx @@ -8,4 +8,4 @@ const IconVpnLockRounded: React.FC = ({ ...props }) => ( ) -export { IconVpnLockRounded as default } +export default IconVpnLockRounded diff --git a/src/IconVpnLockRoundedFilled.tsx b/src/IconVpnLockRoundedFilled.tsx index 5ef7b5640..c9462fcad 100644 --- a/src/IconVpnLockRoundedFilled.tsx +++ b/src/IconVpnLockRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconVpnLockRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconVpnLockRoundedFilled as default } +export default IconVpnLockRoundedFilled diff --git a/src/IconVpnLockSharp.tsx b/src/IconVpnLockSharp.tsx index 5f63bfc93..40a753512 100644 --- a/src/IconVpnLockSharp.tsx +++ b/src/IconVpnLockSharp.tsx @@ -8,4 +8,4 @@ const IconVpnLockSharp: React.FC = ({ ...props }) => ( ) -export { IconVpnLockSharp as default } +export default IconVpnLockSharp diff --git a/src/IconVpnLockSharpFilled.tsx b/src/IconVpnLockSharpFilled.tsx index bdd9f29a4..4c674189e 100644 --- a/src/IconVpnLockSharpFilled.tsx +++ b/src/IconVpnLockSharpFilled.tsx @@ -8,4 +8,4 @@ const IconVpnLockSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconVpnLockSharpFilled as default } +export default IconVpnLockSharpFilled diff --git a/src/IconVr180Create2dOffOutlined.tsx b/src/IconVr180Create2dOffOutlined.tsx index 017f9b9b1..f9b9139dd 100644 --- a/src/IconVr180Create2dOffOutlined.tsx +++ b/src/IconVr180Create2dOffOutlined.tsx @@ -8,4 +8,4 @@ const IconVr180Create2dOffOutlined: React.FC = ({ ...props }) => ( ) -export { IconVr180Create2dOffOutlined as default } +export default IconVr180Create2dOffOutlined diff --git a/src/IconVr180Create2dOffOutlinedFilled.tsx b/src/IconVr180Create2dOffOutlinedFilled.tsx index 811d81481..27d087912 100644 --- a/src/IconVr180Create2dOffOutlinedFilled.tsx +++ b/src/IconVr180Create2dOffOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconVr180Create2dOffOutlinedFilled: React.FC = ({ ) -export { IconVr180Create2dOffOutlinedFilled as default } +export default IconVr180Create2dOffOutlinedFilled diff --git a/src/IconVr180Create2dOffRounded.tsx b/src/IconVr180Create2dOffRounded.tsx index bcb5b9bea..ec9c22539 100644 --- a/src/IconVr180Create2dOffRounded.tsx +++ b/src/IconVr180Create2dOffRounded.tsx @@ -8,4 +8,4 @@ const IconVr180Create2dOffRounded: React.FC = ({ ...props }) => ( ) -export { IconVr180Create2dOffRounded as default } +export default IconVr180Create2dOffRounded diff --git a/src/IconVr180Create2dOffRoundedFilled.tsx b/src/IconVr180Create2dOffRoundedFilled.tsx index bb49877e5..c43ea9a1e 100644 --- a/src/IconVr180Create2dOffRoundedFilled.tsx +++ b/src/IconVr180Create2dOffRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconVr180Create2dOffRoundedFilled: React.FC = ({ ) -export { IconVr180Create2dOffRoundedFilled as default } +export default IconVr180Create2dOffRoundedFilled diff --git a/src/IconVr180Create2dOffSharp.tsx b/src/IconVr180Create2dOffSharp.tsx index 0801c3d7a..773365afb 100644 --- a/src/IconVr180Create2dOffSharp.tsx +++ b/src/IconVr180Create2dOffSharp.tsx @@ -8,4 +8,4 @@ const IconVr180Create2dOffSharp: React.FC = ({ ...props }) => ( ) -export { IconVr180Create2dOffSharp as default } +export default IconVr180Create2dOffSharp diff --git a/src/IconVr180Create2dOffSharpFilled.tsx b/src/IconVr180Create2dOffSharpFilled.tsx index 045216a8a..b129dcdb5 100644 --- a/src/IconVr180Create2dOffSharpFilled.tsx +++ b/src/IconVr180Create2dOffSharpFilled.tsx @@ -8,4 +8,4 @@ const IconVr180Create2dOffSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconVr180Create2dOffSharpFilled as default } +export default IconVr180Create2dOffSharpFilled diff --git a/src/IconVr180Create2dOutlined.tsx b/src/IconVr180Create2dOutlined.tsx index 4fb10ac65..86c47133f 100644 --- a/src/IconVr180Create2dOutlined.tsx +++ b/src/IconVr180Create2dOutlined.tsx @@ -8,4 +8,4 @@ const IconVr180Create2dOutlined: React.FC = ({ ...props }) => ( ) -export { IconVr180Create2dOutlined as default } +export default IconVr180Create2dOutlined diff --git a/src/IconVr180Create2dOutlinedFilled.tsx b/src/IconVr180Create2dOutlinedFilled.tsx index 7c86fb1fe..4af499dfd 100644 --- a/src/IconVr180Create2dOutlinedFilled.tsx +++ b/src/IconVr180Create2dOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconVr180Create2dOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconVr180Create2dOutlinedFilled as default } +export default IconVr180Create2dOutlinedFilled diff --git a/src/IconVr180Create2dRounded.tsx b/src/IconVr180Create2dRounded.tsx index 131ff9801..dcc6b7ee1 100644 --- a/src/IconVr180Create2dRounded.tsx +++ b/src/IconVr180Create2dRounded.tsx @@ -8,4 +8,4 @@ const IconVr180Create2dRounded: React.FC = ({ ...props }) => ( ) -export { IconVr180Create2dRounded as default } +export default IconVr180Create2dRounded diff --git a/src/IconVr180Create2dRoundedFilled.tsx b/src/IconVr180Create2dRoundedFilled.tsx index a835d4b83..3ed7c8a76 100644 --- a/src/IconVr180Create2dRoundedFilled.tsx +++ b/src/IconVr180Create2dRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconVr180Create2dRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconVr180Create2dRoundedFilled as default } +export default IconVr180Create2dRoundedFilled diff --git a/src/IconVr180Create2dSharp.tsx b/src/IconVr180Create2dSharp.tsx index 2ba2d0728..b6ef1d9c3 100644 --- a/src/IconVr180Create2dSharp.tsx +++ b/src/IconVr180Create2dSharp.tsx @@ -8,4 +8,4 @@ const IconVr180Create2dSharp: React.FC = ({ ...props }) => ( ) -export { IconVr180Create2dSharp as default } +export default IconVr180Create2dSharp diff --git a/src/IconVr180Create2dSharpFilled.tsx b/src/IconVr180Create2dSharpFilled.tsx index 0a0c179d1..e1b62c413 100644 --- a/src/IconVr180Create2dSharpFilled.tsx +++ b/src/IconVr180Create2dSharpFilled.tsx @@ -8,4 +8,4 @@ const IconVr180Create2dSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconVr180Create2dSharpFilled as default } +export default IconVr180Create2dSharpFilled diff --git a/src/IconVrpanoOutlined.tsx b/src/IconVrpanoOutlined.tsx index 5a6cb7917..b45caa2dc 100644 --- a/src/IconVrpanoOutlined.tsx +++ b/src/IconVrpanoOutlined.tsx @@ -8,4 +8,4 @@ const IconVrpanoOutlined: React.FC = ({ ...props }) => ( ) -export { IconVrpanoOutlined as default } +export default IconVrpanoOutlined diff --git a/src/IconVrpanoOutlinedFilled.tsx b/src/IconVrpanoOutlinedFilled.tsx index 6e2eb54b8..eb0db7ecc 100644 --- a/src/IconVrpanoOutlinedFilled.tsx +++ b/src/IconVrpanoOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconVrpanoOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconVrpanoOutlinedFilled as default } +export default IconVrpanoOutlinedFilled diff --git a/src/IconVrpanoRounded.tsx b/src/IconVrpanoRounded.tsx index 30c49cd20..a4064e16a 100644 --- a/src/IconVrpanoRounded.tsx +++ b/src/IconVrpanoRounded.tsx @@ -8,4 +8,4 @@ const IconVrpanoRounded: React.FC = ({ ...props }) => ( ) -export { IconVrpanoRounded as default } +export default IconVrpanoRounded diff --git a/src/IconVrpanoRoundedFilled.tsx b/src/IconVrpanoRoundedFilled.tsx index 7e8bc4b98..a84d3e7eb 100644 --- a/src/IconVrpanoRoundedFilled.tsx +++ b/src/IconVrpanoRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconVrpanoRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconVrpanoRoundedFilled as default } +export default IconVrpanoRoundedFilled diff --git a/src/IconVrpanoSharp.tsx b/src/IconVrpanoSharp.tsx index ee1af31de..330208fe8 100644 --- a/src/IconVrpanoSharp.tsx +++ b/src/IconVrpanoSharp.tsx @@ -8,4 +8,4 @@ const IconVrpanoSharp: React.FC = ({ ...props }) => ( ) -export { IconVrpanoSharp as default } +export default IconVrpanoSharp diff --git a/src/IconVrpanoSharpFilled.tsx b/src/IconVrpanoSharpFilled.tsx index d740ff61f..94ea7a774 100644 --- a/src/IconVrpanoSharpFilled.tsx +++ b/src/IconVrpanoSharpFilled.tsx @@ -8,4 +8,4 @@ const IconVrpanoSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconVrpanoSharpFilled as default } +export default IconVrpanoSharpFilled diff --git a/src/IconWallArtOutlined.tsx b/src/IconWallArtOutlined.tsx index c55c447b2..85e8e59cf 100644 --- a/src/IconWallArtOutlined.tsx +++ b/src/IconWallArtOutlined.tsx @@ -8,4 +8,4 @@ const IconWallArtOutlined: React.FC = ({ ...props }) => ( ) -export { IconWallArtOutlined as default } +export default IconWallArtOutlined diff --git a/src/IconWallArtOutlinedFilled.tsx b/src/IconWallArtOutlinedFilled.tsx index 1e0706d68..62b254978 100644 --- a/src/IconWallArtOutlinedFilled.tsx +++ b/src/IconWallArtOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconWallArtOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconWallArtOutlinedFilled as default } +export default IconWallArtOutlinedFilled diff --git a/src/IconWallArtRounded.tsx b/src/IconWallArtRounded.tsx index 6bb34fc96..ec451fbbe 100644 --- a/src/IconWallArtRounded.tsx +++ b/src/IconWallArtRounded.tsx @@ -8,4 +8,4 @@ const IconWallArtRounded: React.FC = ({ ...props }) => ( ) -export { IconWallArtRounded as default } +export default IconWallArtRounded diff --git a/src/IconWallArtRoundedFilled.tsx b/src/IconWallArtRoundedFilled.tsx index d58b2db80..7c0ac4fb3 100644 --- a/src/IconWallArtRoundedFilled.tsx +++ b/src/IconWallArtRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconWallArtRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconWallArtRoundedFilled as default } +export default IconWallArtRoundedFilled diff --git a/src/IconWallArtSharp.tsx b/src/IconWallArtSharp.tsx index 1111a063a..8e2c9b56e 100644 --- a/src/IconWallArtSharp.tsx +++ b/src/IconWallArtSharp.tsx @@ -8,4 +8,4 @@ const IconWallArtSharp: React.FC = ({ ...props }) => ( ) -export { IconWallArtSharp as default } +export default IconWallArtSharp diff --git a/src/IconWallArtSharpFilled.tsx b/src/IconWallArtSharpFilled.tsx index ae355d5dd..b4e04a729 100644 --- a/src/IconWallArtSharpFilled.tsx +++ b/src/IconWallArtSharpFilled.tsx @@ -8,4 +8,4 @@ const IconWallArtSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconWallArtSharpFilled as default } +export default IconWallArtSharpFilled diff --git a/src/IconWallLampOutlined.tsx b/src/IconWallLampOutlined.tsx index c889eeb0b..abca5b169 100644 --- a/src/IconWallLampOutlined.tsx +++ b/src/IconWallLampOutlined.tsx @@ -8,4 +8,4 @@ const IconWallLampOutlined: React.FC = ({ ...props }) => ( ) -export { IconWallLampOutlined as default } +export default IconWallLampOutlined diff --git a/src/IconWallLampOutlinedFilled.tsx b/src/IconWallLampOutlinedFilled.tsx index 4e067ff2e..bee267505 100644 --- a/src/IconWallLampOutlinedFilled.tsx +++ b/src/IconWallLampOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconWallLampOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconWallLampOutlinedFilled as default } +export default IconWallLampOutlinedFilled diff --git a/src/IconWallLampRounded.tsx b/src/IconWallLampRounded.tsx index 107989a5a..e53289314 100644 --- a/src/IconWallLampRounded.tsx +++ b/src/IconWallLampRounded.tsx @@ -8,4 +8,4 @@ const IconWallLampRounded: React.FC = ({ ...props }) => ( ) -export { IconWallLampRounded as default } +export default IconWallLampRounded diff --git a/src/IconWallLampRoundedFilled.tsx b/src/IconWallLampRoundedFilled.tsx index 154f385c7..99660fb76 100644 --- a/src/IconWallLampRoundedFilled.tsx +++ b/src/IconWallLampRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconWallLampRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconWallLampRoundedFilled as default } +export default IconWallLampRoundedFilled diff --git a/src/IconWallLampSharp.tsx b/src/IconWallLampSharp.tsx index d26fbd331..7f1025c68 100644 --- a/src/IconWallLampSharp.tsx +++ b/src/IconWallLampSharp.tsx @@ -8,4 +8,4 @@ const IconWallLampSharp: React.FC = ({ ...props }) => ( ) -export { IconWallLampSharp as default } +export default IconWallLampSharp diff --git a/src/IconWallLampSharpFilled.tsx b/src/IconWallLampSharpFilled.tsx index f7181379c..4f95f3ac2 100644 --- a/src/IconWallLampSharpFilled.tsx +++ b/src/IconWallLampSharpFilled.tsx @@ -8,4 +8,4 @@ const IconWallLampSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconWallLampSharpFilled as default } +export default IconWallLampSharpFilled diff --git a/src/IconWalletOutlined.tsx b/src/IconWalletOutlined.tsx index 14cb1025b..1fee3b411 100644 --- a/src/IconWalletOutlined.tsx +++ b/src/IconWalletOutlined.tsx @@ -8,4 +8,4 @@ const IconWalletOutlined: React.FC = ({ ...props }) => ( ) -export { IconWalletOutlined as default } +export default IconWalletOutlined diff --git a/src/IconWalletOutlinedFilled.tsx b/src/IconWalletOutlinedFilled.tsx index 1c7b620d8..aef55d649 100644 --- a/src/IconWalletOutlinedFilled.tsx +++ b/src/IconWalletOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconWalletOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconWalletOutlinedFilled as default } +export default IconWalletOutlinedFilled diff --git a/src/IconWalletRounded.tsx b/src/IconWalletRounded.tsx index 8f4729e5f..b2a9f075d 100644 --- a/src/IconWalletRounded.tsx +++ b/src/IconWalletRounded.tsx @@ -8,4 +8,4 @@ const IconWalletRounded: React.FC = ({ ...props }) => ( ) -export { IconWalletRounded as default } +export default IconWalletRounded diff --git a/src/IconWalletRoundedFilled.tsx b/src/IconWalletRoundedFilled.tsx index 9cc5fcc93..bb0172863 100644 --- a/src/IconWalletRoundedFilled.tsx +++ b/src/IconWalletRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconWalletRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconWalletRoundedFilled as default } +export default IconWalletRoundedFilled diff --git a/src/IconWalletSharp.tsx b/src/IconWalletSharp.tsx index 0d8a571d3..4a9ac4bb9 100644 --- a/src/IconWalletSharp.tsx +++ b/src/IconWalletSharp.tsx @@ -8,4 +8,4 @@ const IconWalletSharp: React.FC = ({ ...props }) => ( ) -export { IconWalletSharp as default } +export default IconWalletSharp diff --git a/src/IconWalletSharpFilled.tsx b/src/IconWalletSharpFilled.tsx index 65a8b2c16..9e26fe2d2 100644 --- a/src/IconWalletSharpFilled.tsx +++ b/src/IconWalletSharpFilled.tsx @@ -8,4 +8,4 @@ const IconWalletSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconWalletSharpFilled as default } +export default IconWalletSharpFilled diff --git a/src/IconWallpaperOutlined.tsx b/src/IconWallpaperOutlined.tsx index c9dba7f7c..3c051b246 100644 --- a/src/IconWallpaperOutlined.tsx +++ b/src/IconWallpaperOutlined.tsx @@ -8,4 +8,4 @@ const IconWallpaperOutlined: React.FC = ({ ...props }) => ( ) -export { IconWallpaperOutlined as default } +export default IconWallpaperOutlined diff --git a/src/IconWallpaperOutlinedFilled.tsx b/src/IconWallpaperOutlinedFilled.tsx index 53424b0d8..e891fba9d 100644 --- a/src/IconWallpaperOutlinedFilled.tsx +++ b/src/IconWallpaperOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconWallpaperOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconWallpaperOutlinedFilled as default } +export default IconWallpaperOutlinedFilled diff --git a/src/IconWallpaperRounded.tsx b/src/IconWallpaperRounded.tsx index 0356a3747..849f5f207 100644 --- a/src/IconWallpaperRounded.tsx +++ b/src/IconWallpaperRounded.tsx @@ -8,4 +8,4 @@ const IconWallpaperRounded: React.FC = ({ ...props }) => ( ) -export { IconWallpaperRounded as default } +export default IconWallpaperRounded diff --git a/src/IconWallpaperRoundedFilled.tsx b/src/IconWallpaperRoundedFilled.tsx index 872546945..6b8922807 100644 --- a/src/IconWallpaperRoundedFilled.tsx +++ b/src/IconWallpaperRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconWallpaperRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconWallpaperRoundedFilled as default } +export default IconWallpaperRoundedFilled diff --git a/src/IconWallpaperSharp.tsx b/src/IconWallpaperSharp.tsx index 1f31f11c0..6e058e71e 100644 --- a/src/IconWallpaperSharp.tsx +++ b/src/IconWallpaperSharp.tsx @@ -8,4 +8,4 @@ const IconWallpaperSharp: React.FC = ({ ...props }) => ( ) -export { IconWallpaperSharp as default } +export default IconWallpaperSharp diff --git a/src/IconWallpaperSharpFilled.tsx b/src/IconWallpaperSharpFilled.tsx index 69a0d58f7..869ab5ad6 100644 --- a/src/IconWallpaperSharpFilled.tsx +++ b/src/IconWallpaperSharpFilled.tsx @@ -8,4 +8,4 @@ const IconWallpaperSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconWallpaperSharpFilled as default } +export default IconWallpaperSharpFilled diff --git a/src/IconWallpaperSlideshowOutlined.tsx b/src/IconWallpaperSlideshowOutlined.tsx index e0ceb534c..b1ecab380 100644 --- a/src/IconWallpaperSlideshowOutlined.tsx +++ b/src/IconWallpaperSlideshowOutlined.tsx @@ -8,4 +8,4 @@ const IconWallpaperSlideshowOutlined: React.FC = ({ ...props }) => ( ) -export { IconWallpaperSlideshowOutlined as default } +export default IconWallpaperSlideshowOutlined diff --git a/src/IconWallpaperSlideshowOutlinedFilled.tsx b/src/IconWallpaperSlideshowOutlinedFilled.tsx index 4ca9118c3..90beb37f8 100644 --- a/src/IconWallpaperSlideshowOutlinedFilled.tsx +++ b/src/IconWallpaperSlideshowOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconWallpaperSlideshowOutlinedFilled: React.FC = ({ ) -export { IconWallpaperSlideshowOutlinedFilled as default } +export default IconWallpaperSlideshowOutlinedFilled diff --git a/src/IconWallpaperSlideshowRounded.tsx b/src/IconWallpaperSlideshowRounded.tsx index a9fa38879..26bd85a68 100644 --- a/src/IconWallpaperSlideshowRounded.tsx +++ b/src/IconWallpaperSlideshowRounded.tsx @@ -8,4 +8,4 @@ const IconWallpaperSlideshowRounded: React.FC = ({ ...props }) => ( ) -export { IconWallpaperSlideshowRounded as default } +export default IconWallpaperSlideshowRounded diff --git a/src/IconWallpaperSlideshowRoundedFilled.tsx b/src/IconWallpaperSlideshowRoundedFilled.tsx index 12e99a83e..58f9bd910 100644 --- a/src/IconWallpaperSlideshowRoundedFilled.tsx +++ b/src/IconWallpaperSlideshowRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconWallpaperSlideshowRoundedFilled: React.FC = ({ ) -export { IconWallpaperSlideshowRoundedFilled as default } +export default IconWallpaperSlideshowRoundedFilled diff --git a/src/IconWallpaperSlideshowSharp.tsx b/src/IconWallpaperSlideshowSharp.tsx index 947fdded4..1e0e9b448 100644 --- a/src/IconWallpaperSlideshowSharp.tsx +++ b/src/IconWallpaperSlideshowSharp.tsx @@ -8,4 +8,4 @@ const IconWallpaperSlideshowSharp: React.FC = ({ ...props }) => ( ) -export { IconWallpaperSlideshowSharp as default } +export default IconWallpaperSlideshowSharp diff --git a/src/IconWallpaperSlideshowSharpFilled.tsx b/src/IconWallpaperSlideshowSharpFilled.tsx index e7ca77454..667d53c2c 100644 --- a/src/IconWallpaperSlideshowSharpFilled.tsx +++ b/src/IconWallpaperSlideshowSharpFilled.tsx @@ -10,4 +10,4 @@ const IconWallpaperSlideshowSharpFilled: React.FC = ({ ) -export { IconWallpaperSlideshowSharpFilled as default } +export default IconWallpaperSlideshowSharpFilled diff --git a/src/IconWardOutlined.tsx b/src/IconWardOutlined.tsx index 088281f3a..1758e228d 100644 --- a/src/IconWardOutlined.tsx +++ b/src/IconWardOutlined.tsx @@ -8,4 +8,4 @@ const IconWardOutlined: React.FC = ({ ...props }) => ( ) -export { IconWardOutlined as default } +export default IconWardOutlined diff --git a/src/IconWardOutlinedFilled.tsx b/src/IconWardOutlinedFilled.tsx index 3e84e79dc..f30e7cb9f 100644 --- a/src/IconWardOutlinedFilled.tsx +++ b/src/IconWardOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconWardOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconWardOutlinedFilled as default } +export default IconWardOutlinedFilled diff --git a/src/IconWardRounded.tsx b/src/IconWardRounded.tsx index ec3257767..30a26c808 100644 --- a/src/IconWardRounded.tsx +++ b/src/IconWardRounded.tsx @@ -8,4 +8,4 @@ const IconWardRounded: React.FC = ({ ...props }) => ( ) -export { IconWardRounded as default } +export default IconWardRounded diff --git a/src/IconWardRoundedFilled.tsx b/src/IconWardRoundedFilled.tsx index a6fb65dbd..51c0e296c 100644 --- a/src/IconWardRoundedFilled.tsx +++ b/src/IconWardRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconWardRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconWardRoundedFilled as default } +export default IconWardRoundedFilled diff --git a/src/IconWardSharp.tsx b/src/IconWardSharp.tsx index 44126c12a..a26fa6c96 100644 --- a/src/IconWardSharp.tsx +++ b/src/IconWardSharp.tsx @@ -8,4 +8,4 @@ const IconWardSharp: React.FC = ({ ...props }) => ( ) -export { IconWardSharp as default } +export default IconWardSharp diff --git a/src/IconWardSharpFilled.tsx b/src/IconWardSharpFilled.tsx index 7562f25c4..f0352b449 100644 --- a/src/IconWardSharpFilled.tsx +++ b/src/IconWardSharpFilled.tsx @@ -8,4 +8,4 @@ const IconWardSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconWardSharpFilled as default } +export default IconWardSharpFilled diff --git a/src/IconWarehouseOutlined.tsx b/src/IconWarehouseOutlined.tsx index 585b0e305..95a1556c0 100644 --- a/src/IconWarehouseOutlined.tsx +++ b/src/IconWarehouseOutlined.tsx @@ -8,4 +8,4 @@ const IconWarehouseOutlined: React.FC = ({ ...props }) => ( ) -export { IconWarehouseOutlined as default } +export default IconWarehouseOutlined diff --git a/src/IconWarehouseOutlinedFilled.tsx b/src/IconWarehouseOutlinedFilled.tsx index af3693b24..59472927a 100644 --- a/src/IconWarehouseOutlinedFilled.tsx +++ b/src/IconWarehouseOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconWarehouseOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconWarehouseOutlinedFilled as default } +export default IconWarehouseOutlinedFilled diff --git a/src/IconWarehouseRounded.tsx b/src/IconWarehouseRounded.tsx index 1c7aa23fb..7c3aaf0c6 100644 --- a/src/IconWarehouseRounded.tsx +++ b/src/IconWarehouseRounded.tsx @@ -8,4 +8,4 @@ const IconWarehouseRounded: React.FC = ({ ...props }) => ( ) -export { IconWarehouseRounded as default } +export default IconWarehouseRounded diff --git a/src/IconWarehouseRoundedFilled.tsx b/src/IconWarehouseRoundedFilled.tsx index ded3c4648..aede39469 100644 --- a/src/IconWarehouseRoundedFilled.tsx +++ b/src/IconWarehouseRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconWarehouseRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconWarehouseRoundedFilled as default } +export default IconWarehouseRoundedFilled diff --git a/src/IconWarehouseSharp.tsx b/src/IconWarehouseSharp.tsx index c8c9614b8..d198a0e9a 100644 --- a/src/IconWarehouseSharp.tsx +++ b/src/IconWarehouseSharp.tsx @@ -8,4 +8,4 @@ const IconWarehouseSharp: React.FC = ({ ...props }) => ( ) -export { IconWarehouseSharp as default } +export default IconWarehouseSharp diff --git a/src/IconWarehouseSharpFilled.tsx b/src/IconWarehouseSharpFilled.tsx index f627a8af5..667eab33c 100644 --- a/src/IconWarehouseSharpFilled.tsx +++ b/src/IconWarehouseSharpFilled.tsx @@ -8,4 +8,4 @@ const IconWarehouseSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconWarehouseSharpFilled as default } +export default IconWarehouseSharpFilled diff --git a/src/IconWarningOffOutlined.tsx b/src/IconWarningOffOutlined.tsx index 0a91096c8..e7d543fe1 100644 --- a/src/IconWarningOffOutlined.tsx +++ b/src/IconWarningOffOutlined.tsx @@ -8,4 +8,4 @@ const IconWarningOffOutlined: React.FC = ({ ...props }) => ( ) -export { IconWarningOffOutlined as default } +export default IconWarningOffOutlined diff --git a/src/IconWarningOffOutlinedFilled.tsx b/src/IconWarningOffOutlinedFilled.tsx index 2568a66eb..1f3a6e96e 100644 --- a/src/IconWarningOffOutlinedFilled.tsx +++ b/src/IconWarningOffOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconWarningOffOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconWarningOffOutlinedFilled as default } +export default IconWarningOffOutlinedFilled diff --git a/src/IconWarningOffRounded.tsx b/src/IconWarningOffRounded.tsx index 05a09c03b..f312e0d59 100644 --- a/src/IconWarningOffRounded.tsx +++ b/src/IconWarningOffRounded.tsx @@ -8,4 +8,4 @@ const IconWarningOffRounded: React.FC = ({ ...props }) => ( ) -export { IconWarningOffRounded as default } +export default IconWarningOffRounded diff --git a/src/IconWarningOffRoundedFilled.tsx b/src/IconWarningOffRoundedFilled.tsx index 316801a79..ea771daa7 100644 --- a/src/IconWarningOffRoundedFilled.tsx +++ b/src/IconWarningOffRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconWarningOffRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconWarningOffRoundedFilled as default } +export default IconWarningOffRoundedFilled diff --git a/src/IconWarningOffSharp.tsx b/src/IconWarningOffSharp.tsx index acf7c604b..d153bcd3c 100644 --- a/src/IconWarningOffSharp.tsx +++ b/src/IconWarningOffSharp.tsx @@ -8,4 +8,4 @@ const IconWarningOffSharp: React.FC = ({ ...props }) => ( ) -export { IconWarningOffSharp as default } +export default IconWarningOffSharp diff --git a/src/IconWarningOffSharpFilled.tsx b/src/IconWarningOffSharpFilled.tsx index b621fecec..d48494220 100644 --- a/src/IconWarningOffSharpFilled.tsx +++ b/src/IconWarningOffSharpFilled.tsx @@ -8,4 +8,4 @@ const IconWarningOffSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconWarningOffSharpFilled as default } +export default IconWarningOffSharpFilled diff --git a/src/IconWarningOutlined.tsx b/src/IconWarningOutlined.tsx index 1faac9fc9..bf8d08ba7 100644 --- a/src/IconWarningOutlined.tsx +++ b/src/IconWarningOutlined.tsx @@ -8,4 +8,4 @@ const IconWarningOutlined: React.FC = ({ ...props }) => ( ) -export { IconWarningOutlined as default } +export default IconWarningOutlined diff --git a/src/IconWarningOutlinedFilled.tsx b/src/IconWarningOutlinedFilled.tsx index 5bbbb6c9f..4828805db 100644 --- a/src/IconWarningOutlinedFilled.tsx +++ b/src/IconWarningOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconWarningOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconWarningOutlinedFilled as default } +export default IconWarningOutlinedFilled diff --git a/src/IconWarningRounded.tsx b/src/IconWarningRounded.tsx index bef75bb2a..1fc7435a8 100644 --- a/src/IconWarningRounded.tsx +++ b/src/IconWarningRounded.tsx @@ -8,4 +8,4 @@ const IconWarningRounded: React.FC = ({ ...props }) => ( ) -export { IconWarningRounded as default } +export default IconWarningRounded diff --git a/src/IconWarningRoundedFilled.tsx b/src/IconWarningRoundedFilled.tsx index 331edab8d..871f7210f 100644 --- a/src/IconWarningRoundedFilled.tsx +++ b/src/IconWarningRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconWarningRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconWarningRoundedFilled as default } +export default IconWarningRoundedFilled diff --git a/src/IconWarningSharp.tsx b/src/IconWarningSharp.tsx index fb152b76b..2c2edff0d 100644 --- a/src/IconWarningSharp.tsx +++ b/src/IconWarningSharp.tsx @@ -8,4 +8,4 @@ const IconWarningSharp: React.FC = ({ ...props }) => ( ) -export { IconWarningSharp as default } +export default IconWarningSharp diff --git a/src/IconWarningSharpFilled.tsx b/src/IconWarningSharpFilled.tsx index 6ba4e25c9..1f52e6628 100644 --- a/src/IconWarningSharpFilled.tsx +++ b/src/IconWarningSharpFilled.tsx @@ -8,4 +8,4 @@ const IconWarningSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconWarningSharpFilled as default } +export default IconWarningSharpFilled diff --git a/src/IconWashOutlined.tsx b/src/IconWashOutlined.tsx index a594f9e9f..26567495b 100644 --- a/src/IconWashOutlined.tsx +++ b/src/IconWashOutlined.tsx @@ -8,4 +8,4 @@ const IconWashOutlined: React.FC = ({ ...props }) => ( ) -export { IconWashOutlined as default } +export default IconWashOutlined diff --git a/src/IconWashOutlinedFilled.tsx b/src/IconWashOutlinedFilled.tsx index 307b5fbc9..ca1ee3967 100644 --- a/src/IconWashOutlinedFilled.tsx +++ b/src/IconWashOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconWashOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconWashOutlinedFilled as default } +export default IconWashOutlinedFilled diff --git a/src/IconWashRounded.tsx b/src/IconWashRounded.tsx index b14d29a28..a569fd1c0 100644 --- a/src/IconWashRounded.tsx +++ b/src/IconWashRounded.tsx @@ -8,4 +8,4 @@ const IconWashRounded: React.FC = ({ ...props }) => ( ) -export { IconWashRounded as default } +export default IconWashRounded diff --git a/src/IconWashRoundedFilled.tsx b/src/IconWashRoundedFilled.tsx index 28e9465cf..6ed9322f8 100644 --- a/src/IconWashRoundedFilled.tsx +++ b/src/IconWashRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconWashRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconWashRoundedFilled as default } +export default IconWashRoundedFilled diff --git a/src/IconWashSharp.tsx b/src/IconWashSharp.tsx index c8a0dabf9..175173f7e 100644 --- a/src/IconWashSharp.tsx +++ b/src/IconWashSharp.tsx @@ -8,4 +8,4 @@ const IconWashSharp: React.FC = ({ ...props }) => ( ) -export { IconWashSharp as default } +export default IconWashSharp diff --git a/src/IconWashSharpFilled.tsx b/src/IconWashSharpFilled.tsx index 9468778f6..6e227c9cd 100644 --- a/src/IconWashSharpFilled.tsx +++ b/src/IconWashSharpFilled.tsx @@ -8,4 +8,4 @@ const IconWashSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconWashSharpFilled as default } +export default IconWashSharpFilled diff --git a/src/IconWatchButtonPressOutlined.tsx b/src/IconWatchButtonPressOutlined.tsx index d863e3827..1121934f9 100644 --- a/src/IconWatchButtonPressOutlined.tsx +++ b/src/IconWatchButtonPressOutlined.tsx @@ -8,4 +8,4 @@ const IconWatchButtonPressOutlined: React.FC = ({ ...props }) => ( ) -export { IconWatchButtonPressOutlined as default } +export default IconWatchButtonPressOutlined diff --git a/src/IconWatchButtonPressOutlinedFilled.tsx b/src/IconWatchButtonPressOutlinedFilled.tsx index 49d5fe93e..697170792 100644 --- a/src/IconWatchButtonPressOutlinedFilled.tsx +++ b/src/IconWatchButtonPressOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconWatchButtonPressOutlinedFilled: React.FC = ({ ) -export { IconWatchButtonPressOutlinedFilled as default } +export default IconWatchButtonPressOutlinedFilled diff --git a/src/IconWatchButtonPressRounded.tsx b/src/IconWatchButtonPressRounded.tsx index a16fc99fb..780fce5dd 100644 --- a/src/IconWatchButtonPressRounded.tsx +++ b/src/IconWatchButtonPressRounded.tsx @@ -8,4 +8,4 @@ const IconWatchButtonPressRounded: React.FC = ({ ...props }) => ( ) -export { IconWatchButtonPressRounded as default } +export default IconWatchButtonPressRounded diff --git a/src/IconWatchButtonPressRoundedFilled.tsx b/src/IconWatchButtonPressRoundedFilled.tsx index cd4ea9b20..645794f05 100644 --- a/src/IconWatchButtonPressRoundedFilled.tsx +++ b/src/IconWatchButtonPressRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconWatchButtonPressRoundedFilled: React.FC = ({ ) -export { IconWatchButtonPressRoundedFilled as default } +export default IconWatchButtonPressRoundedFilled diff --git a/src/IconWatchButtonPressSharp.tsx b/src/IconWatchButtonPressSharp.tsx index 2af36dd25..402bd8810 100644 --- a/src/IconWatchButtonPressSharp.tsx +++ b/src/IconWatchButtonPressSharp.tsx @@ -8,4 +8,4 @@ const IconWatchButtonPressSharp: React.FC = ({ ...props }) => ( ) -export { IconWatchButtonPressSharp as default } +export default IconWatchButtonPressSharp diff --git a/src/IconWatchButtonPressSharpFilled.tsx b/src/IconWatchButtonPressSharpFilled.tsx index 7146f5bee..15616c32a 100644 --- a/src/IconWatchButtonPressSharpFilled.tsx +++ b/src/IconWatchButtonPressSharpFilled.tsx @@ -8,4 +8,4 @@ const IconWatchButtonPressSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconWatchButtonPressSharpFilled as default } +export default IconWatchButtonPressSharpFilled diff --git a/src/IconWatchCheckOutlined.tsx b/src/IconWatchCheckOutlined.tsx index 00c40a17b..abb60af26 100644 --- a/src/IconWatchCheckOutlined.tsx +++ b/src/IconWatchCheckOutlined.tsx @@ -8,4 +8,4 @@ const IconWatchCheckOutlined: React.FC = ({ ...props }) => ( ) -export { IconWatchCheckOutlined as default } +export default IconWatchCheckOutlined diff --git a/src/IconWatchCheckOutlinedFilled.tsx b/src/IconWatchCheckOutlinedFilled.tsx index e4c939356..652d178ca 100644 --- a/src/IconWatchCheckOutlinedFilled.tsx +++ b/src/IconWatchCheckOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconWatchCheckOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconWatchCheckOutlinedFilled as default } +export default IconWatchCheckOutlinedFilled diff --git a/src/IconWatchCheckRounded.tsx b/src/IconWatchCheckRounded.tsx index 20df6da95..dcc3e8ba4 100644 --- a/src/IconWatchCheckRounded.tsx +++ b/src/IconWatchCheckRounded.tsx @@ -8,4 +8,4 @@ const IconWatchCheckRounded: React.FC = ({ ...props }) => ( ) -export { IconWatchCheckRounded as default } +export default IconWatchCheckRounded diff --git a/src/IconWatchCheckRoundedFilled.tsx b/src/IconWatchCheckRoundedFilled.tsx index ba30a3175..4d05ca2de 100644 --- a/src/IconWatchCheckRoundedFilled.tsx +++ b/src/IconWatchCheckRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconWatchCheckRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconWatchCheckRoundedFilled as default } +export default IconWatchCheckRoundedFilled diff --git a/src/IconWatchCheckSharp.tsx b/src/IconWatchCheckSharp.tsx index e478b2d03..8520cd1da 100644 --- a/src/IconWatchCheckSharp.tsx +++ b/src/IconWatchCheckSharp.tsx @@ -8,4 +8,4 @@ const IconWatchCheckSharp: React.FC = ({ ...props }) => ( ) -export { IconWatchCheckSharp as default } +export default IconWatchCheckSharp diff --git a/src/IconWatchCheckSharpFilled.tsx b/src/IconWatchCheckSharpFilled.tsx index b326dea9e..5e001fbf4 100644 --- a/src/IconWatchCheckSharpFilled.tsx +++ b/src/IconWatchCheckSharpFilled.tsx @@ -8,4 +8,4 @@ const IconWatchCheckSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconWatchCheckSharpFilled as default } +export default IconWatchCheckSharpFilled diff --git a/src/IconWatchOffOutlined.tsx b/src/IconWatchOffOutlined.tsx index b7f608ad3..857203b02 100644 --- a/src/IconWatchOffOutlined.tsx +++ b/src/IconWatchOffOutlined.tsx @@ -8,4 +8,4 @@ const IconWatchOffOutlined: React.FC = ({ ...props }) => ( ) -export { IconWatchOffOutlined as default } +export default IconWatchOffOutlined diff --git a/src/IconWatchOffOutlinedFilled.tsx b/src/IconWatchOffOutlinedFilled.tsx index 2a3e9a7d8..2fdf49d58 100644 --- a/src/IconWatchOffOutlinedFilled.tsx +++ b/src/IconWatchOffOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconWatchOffOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconWatchOffOutlinedFilled as default } +export default IconWatchOffOutlinedFilled diff --git a/src/IconWatchOffRounded.tsx b/src/IconWatchOffRounded.tsx index 0e51eb79d..cd2093ebc 100644 --- a/src/IconWatchOffRounded.tsx +++ b/src/IconWatchOffRounded.tsx @@ -8,4 +8,4 @@ const IconWatchOffRounded: React.FC = ({ ...props }) => ( ) -export { IconWatchOffRounded as default } +export default IconWatchOffRounded diff --git a/src/IconWatchOffRoundedFilled.tsx b/src/IconWatchOffRoundedFilled.tsx index b81ad5161..0741b09ef 100644 --- a/src/IconWatchOffRoundedFilled.tsx +++ b/src/IconWatchOffRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconWatchOffRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconWatchOffRoundedFilled as default } +export default IconWatchOffRoundedFilled diff --git a/src/IconWatchOffSharp.tsx b/src/IconWatchOffSharp.tsx index 36dd8e3c4..63eb3a597 100644 --- a/src/IconWatchOffSharp.tsx +++ b/src/IconWatchOffSharp.tsx @@ -8,4 +8,4 @@ const IconWatchOffSharp: React.FC = ({ ...props }) => ( ) -export { IconWatchOffSharp as default } +export default IconWatchOffSharp diff --git a/src/IconWatchOffSharpFilled.tsx b/src/IconWatchOffSharpFilled.tsx index d80cb4fbf..65b4a7dd0 100644 --- a/src/IconWatchOffSharpFilled.tsx +++ b/src/IconWatchOffSharpFilled.tsx @@ -8,4 +8,4 @@ const IconWatchOffSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconWatchOffSharpFilled as default } +export default IconWatchOffSharpFilled diff --git a/src/IconWatchOutlined.tsx b/src/IconWatchOutlined.tsx index 2316f16ee..f37b3969c 100644 --- a/src/IconWatchOutlined.tsx +++ b/src/IconWatchOutlined.tsx @@ -8,4 +8,4 @@ const IconWatchOutlined: React.FC = ({ ...props }) => ( ) -export { IconWatchOutlined as default } +export default IconWatchOutlined diff --git a/src/IconWatchOutlinedFilled.tsx b/src/IconWatchOutlinedFilled.tsx index a2df84cdf..657b4a47c 100644 --- a/src/IconWatchOutlinedFilled.tsx +++ b/src/IconWatchOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconWatchOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconWatchOutlinedFilled as default } +export default IconWatchOutlinedFilled diff --git a/src/IconWatchRounded.tsx b/src/IconWatchRounded.tsx index 155a2a022..6352f0813 100644 --- a/src/IconWatchRounded.tsx +++ b/src/IconWatchRounded.tsx @@ -8,4 +8,4 @@ const IconWatchRounded: React.FC = ({ ...props }) => ( ) -export { IconWatchRounded as default } +export default IconWatchRounded diff --git a/src/IconWatchRoundedFilled.tsx b/src/IconWatchRoundedFilled.tsx index 883d22e9c..3c0d7e43d 100644 --- a/src/IconWatchRoundedFilled.tsx +++ b/src/IconWatchRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconWatchRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconWatchRoundedFilled as default } +export default IconWatchRoundedFilled diff --git a/src/IconWatchScreentimeOutlined.tsx b/src/IconWatchScreentimeOutlined.tsx index 9c2fc91bc..57bc6dd6c 100644 --- a/src/IconWatchScreentimeOutlined.tsx +++ b/src/IconWatchScreentimeOutlined.tsx @@ -8,4 +8,4 @@ const IconWatchScreentimeOutlined: React.FC = ({ ...props }) => ( ) -export { IconWatchScreentimeOutlined as default } +export default IconWatchScreentimeOutlined diff --git a/src/IconWatchScreentimeOutlinedFilled.tsx b/src/IconWatchScreentimeOutlinedFilled.tsx index 7dea321b5..efa402500 100644 --- a/src/IconWatchScreentimeOutlinedFilled.tsx +++ b/src/IconWatchScreentimeOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconWatchScreentimeOutlinedFilled: React.FC = ({ ) -export { IconWatchScreentimeOutlinedFilled as default } +export default IconWatchScreentimeOutlinedFilled diff --git a/src/IconWatchScreentimeRounded.tsx b/src/IconWatchScreentimeRounded.tsx index 7f926d067..2127caf42 100644 --- a/src/IconWatchScreentimeRounded.tsx +++ b/src/IconWatchScreentimeRounded.tsx @@ -8,4 +8,4 @@ const IconWatchScreentimeRounded: React.FC = ({ ...props }) => ( ) -export { IconWatchScreentimeRounded as default } +export default IconWatchScreentimeRounded diff --git a/src/IconWatchScreentimeRoundedFilled.tsx b/src/IconWatchScreentimeRoundedFilled.tsx index ea98fcbf3..c842bcbc4 100644 --- a/src/IconWatchScreentimeRoundedFilled.tsx +++ b/src/IconWatchScreentimeRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconWatchScreentimeRoundedFilled: React.FC = ({ ) -export { IconWatchScreentimeRoundedFilled as default } +export default IconWatchScreentimeRoundedFilled diff --git a/src/IconWatchScreentimeSharp.tsx b/src/IconWatchScreentimeSharp.tsx index 7c47ad862..5726d4aa8 100644 --- a/src/IconWatchScreentimeSharp.tsx +++ b/src/IconWatchScreentimeSharp.tsx @@ -8,4 +8,4 @@ const IconWatchScreentimeSharp: React.FC = ({ ...props }) => ( ) -export { IconWatchScreentimeSharp as default } +export default IconWatchScreentimeSharp diff --git a/src/IconWatchScreentimeSharpFilled.tsx b/src/IconWatchScreentimeSharpFilled.tsx index fb462ea7e..4df6f0aa5 100644 --- a/src/IconWatchScreentimeSharpFilled.tsx +++ b/src/IconWatchScreentimeSharpFilled.tsx @@ -8,4 +8,4 @@ const IconWatchScreentimeSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconWatchScreentimeSharpFilled as default } +export default IconWatchScreentimeSharpFilled diff --git a/src/IconWatchSharp.tsx b/src/IconWatchSharp.tsx index dc203d7a6..d542f826d 100644 --- a/src/IconWatchSharp.tsx +++ b/src/IconWatchSharp.tsx @@ -8,4 +8,4 @@ const IconWatchSharp: React.FC = ({ ...props }) => ( ) -export { IconWatchSharp as default } +export default IconWatchSharp diff --git a/src/IconWatchSharpFilled.tsx b/src/IconWatchSharpFilled.tsx index fb176704b..3b7fcf59e 100644 --- a/src/IconWatchSharpFilled.tsx +++ b/src/IconWatchSharpFilled.tsx @@ -8,4 +8,4 @@ const IconWatchSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconWatchSharpFilled as default } +export default IconWatchSharpFilled diff --git a/src/IconWatchVibrationOutlined.tsx b/src/IconWatchVibrationOutlined.tsx index 9f64a07f7..5f1b3bd21 100644 --- a/src/IconWatchVibrationOutlined.tsx +++ b/src/IconWatchVibrationOutlined.tsx @@ -8,4 +8,4 @@ const IconWatchVibrationOutlined: React.FC = ({ ...props }) => ( ) -export { IconWatchVibrationOutlined as default } +export default IconWatchVibrationOutlined diff --git a/src/IconWatchVibrationOutlinedFilled.tsx b/src/IconWatchVibrationOutlinedFilled.tsx index 7a1643441..c7aa3116e 100644 --- a/src/IconWatchVibrationOutlinedFilled.tsx +++ b/src/IconWatchVibrationOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconWatchVibrationOutlinedFilled: React.FC = ({ ) -export { IconWatchVibrationOutlinedFilled as default } +export default IconWatchVibrationOutlinedFilled diff --git a/src/IconWatchVibrationRounded.tsx b/src/IconWatchVibrationRounded.tsx index 02581c933..8d09bc933 100644 --- a/src/IconWatchVibrationRounded.tsx +++ b/src/IconWatchVibrationRounded.tsx @@ -8,4 +8,4 @@ const IconWatchVibrationRounded: React.FC = ({ ...props }) => ( ) -export { IconWatchVibrationRounded as default } +export default IconWatchVibrationRounded diff --git a/src/IconWatchVibrationRoundedFilled.tsx b/src/IconWatchVibrationRoundedFilled.tsx index 4529403be..8f1370c14 100644 --- a/src/IconWatchVibrationRoundedFilled.tsx +++ b/src/IconWatchVibrationRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconWatchVibrationRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconWatchVibrationRoundedFilled as default } +export default IconWatchVibrationRoundedFilled diff --git a/src/IconWatchVibrationSharp.tsx b/src/IconWatchVibrationSharp.tsx index 854632256..97254c424 100644 --- a/src/IconWatchVibrationSharp.tsx +++ b/src/IconWatchVibrationSharp.tsx @@ -8,4 +8,4 @@ const IconWatchVibrationSharp: React.FC = ({ ...props }) => ( ) -export { IconWatchVibrationSharp as default } +export default IconWatchVibrationSharp diff --git a/src/IconWatchVibrationSharpFilled.tsx b/src/IconWatchVibrationSharpFilled.tsx index 0f1cf6d7a..2020c27bc 100644 --- a/src/IconWatchVibrationSharpFilled.tsx +++ b/src/IconWatchVibrationSharpFilled.tsx @@ -8,4 +8,4 @@ const IconWatchVibrationSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconWatchVibrationSharpFilled as default } +export default IconWatchVibrationSharpFilled diff --git a/src/IconWatchWakeOutlined.tsx b/src/IconWatchWakeOutlined.tsx index 46a15a689..2cb984c88 100644 --- a/src/IconWatchWakeOutlined.tsx +++ b/src/IconWatchWakeOutlined.tsx @@ -8,4 +8,4 @@ const IconWatchWakeOutlined: React.FC = ({ ...props }) => ( ) -export { IconWatchWakeOutlined as default } +export default IconWatchWakeOutlined diff --git a/src/IconWatchWakeOutlinedFilled.tsx b/src/IconWatchWakeOutlinedFilled.tsx index e4a385d8b..ce349a4c1 100644 --- a/src/IconWatchWakeOutlinedFilled.tsx +++ b/src/IconWatchWakeOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconWatchWakeOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconWatchWakeOutlinedFilled as default } +export default IconWatchWakeOutlinedFilled diff --git a/src/IconWatchWakeRounded.tsx b/src/IconWatchWakeRounded.tsx index a0cb9089c..c69412f6b 100644 --- a/src/IconWatchWakeRounded.tsx +++ b/src/IconWatchWakeRounded.tsx @@ -8,4 +8,4 @@ const IconWatchWakeRounded: React.FC = ({ ...props }) => ( ) -export { IconWatchWakeRounded as default } +export default IconWatchWakeRounded diff --git a/src/IconWatchWakeRoundedFilled.tsx b/src/IconWatchWakeRoundedFilled.tsx index f8c553b37..931480476 100644 --- a/src/IconWatchWakeRoundedFilled.tsx +++ b/src/IconWatchWakeRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconWatchWakeRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconWatchWakeRoundedFilled as default } +export default IconWatchWakeRoundedFilled diff --git a/src/IconWatchWakeSharp.tsx b/src/IconWatchWakeSharp.tsx index ad38b75c4..9a67f9313 100644 --- a/src/IconWatchWakeSharp.tsx +++ b/src/IconWatchWakeSharp.tsx @@ -8,4 +8,4 @@ const IconWatchWakeSharp: React.FC = ({ ...props }) => ( ) -export { IconWatchWakeSharp as default } +export default IconWatchWakeSharp diff --git a/src/IconWatchWakeSharpFilled.tsx b/src/IconWatchWakeSharpFilled.tsx index d8deb91ab..8f38fa6c8 100644 --- a/src/IconWatchWakeSharpFilled.tsx +++ b/src/IconWatchWakeSharpFilled.tsx @@ -8,4 +8,4 @@ const IconWatchWakeSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconWatchWakeSharpFilled as default } +export default IconWatchWakeSharpFilled diff --git a/src/IconWaterBottleLargeOutlined.tsx b/src/IconWaterBottleLargeOutlined.tsx index ebbeafc71..7b0289350 100644 --- a/src/IconWaterBottleLargeOutlined.tsx +++ b/src/IconWaterBottleLargeOutlined.tsx @@ -8,4 +8,4 @@ const IconWaterBottleLargeOutlined: React.FC = ({ ...props }) => ( ) -export { IconWaterBottleLargeOutlined as default } +export default IconWaterBottleLargeOutlined diff --git a/src/IconWaterBottleLargeOutlinedFilled.tsx b/src/IconWaterBottleLargeOutlinedFilled.tsx index 730602823..d650d9f53 100644 --- a/src/IconWaterBottleLargeOutlinedFilled.tsx +++ b/src/IconWaterBottleLargeOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconWaterBottleLargeOutlinedFilled: React.FC = ({ ) -export { IconWaterBottleLargeOutlinedFilled as default } +export default IconWaterBottleLargeOutlinedFilled diff --git a/src/IconWaterBottleLargeRounded.tsx b/src/IconWaterBottleLargeRounded.tsx index 814941b82..08f11b451 100644 --- a/src/IconWaterBottleLargeRounded.tsx +++ b/src/IconWaterBottleLargeRounded.tsx @@ -8,4 +8,4 @@ const IconWaterBottleLargeRounded: React.FC = ({ ...props }) => ( ) -export { IconWaterBottleLargeRounded as default } +export default IconWaterBottleLargeRounded diff --git a/src/IconWaterBottleLargeRoundedFilled.tsx b/src/IconWaterBottleLargeRoundedFilled.tsx index ec15c9311..608265077 100644 --- a/src/IconWaterBottleLargeRoundedFilled.tsx +++ b/src/IconWaterBottleLargeRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconWaterBottleLargeRoundedFilled: React.FC = ({ ) -export { IconWaterBottleLargeRoundedFilled as default } +export default IconWaterBottleLargeRoundedFilled diff --git a/src/IconWaterBottleLargeSharp.tsx b/src/IconWaterBottleLargeSharp.tsx index dea944156..efb768361 100644 --- a/src/IconWaterBottleLargeSharp.tsx +++ b/src/IconWaterBottleLargeSharp.tsx @@ -8,4 +8,4 @@ const IconWaterBottleLargeSharp: React.FC = ({ ...props }) => ( ) -export { IconWaterBottleLargeSharp as default } +export default IconWaterBottleLargeSharp diff --git a/src/IconWaterBottleLargeSharpFilled.tsx b/src/IconWaterBottleLargeSharpFilled.tsx index 5ce16f4a3..3761a20e5 100644 --- a/src/IconWaterBottleLargeSharpFilled.tsx +++ b/src/IconWaterBottleLargeSharpFilled.tsx @@ -8,4 +8,4 @@ const IconWaterBottleLargeSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconWaterBottleLargeSharpFilled as default } +export default IconWaterBottleLargeSharpFilled diff --git a/src/IconWaterBottleOutlined.tsx b/src/IconWaterBottleOutlined.tsx index f01f801f3..81acf9537 100644 --- a/src/IconWaterBottleOutlined.tsx +++ b/src/IconWaterBottleOutlined.tsx @@ -8,4 +8,4 @@ const IconWaterBottleOutlined: React.FC = ({ ...props }) => ( ) -export { IconWaterBottleOutlined as default } +export default IconWaterBottleOutlined diff --git a/src/IconWaterBottleOutlinedFilled.tsx b/src/IconWaterBottleOutlinedFilled.tsx index bf3a4a0c5..637e994fd 100644 --- a/src/IconWaterBottleOutlinedFilled.tsx +++ b/src/IconWaterBottleOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconWaterBottleOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconWaterBottleOutlinedFilled as default } +export default IconWaterBottleOutlinedFilled diff --git a/src/IconWaterBottleRounded.tsx b/src/IconWaterBottleRounded.tsx index 529521196..3234c98b8 100644 --- a/src/IconWaterBottleRounded.tsx +++ b/src/IconWaterBottleRounded.tsx @@ -8,4 +8,4 @@ const IconWaterBottleRounded: React.FC = ({ ...props }) => ( ) -export { IconWaterBottleRounded as default } +export default IconWaterBottleRounded diff --git a/src/IconWaterBottleRoundedFilled.tsx b/src/IconWaterBottleRoundedFilled.tsx index 8141fd8d4..1cb28c569 100644 --- a/src/IconWaterBottleRoundedFilled.tsx +++ b/src/IconWaterBottleRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconWaterBottleRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconWaterBottleRoundedFilled as default } +export default IconWaterBottleRoundedFilled diff --git a/src/IconWaterBottleSharp.tsx b/src/IconWaterBottleSharp.tsx index 1ce2a935f..77e862ceb 100644 --- a/src/IconWaterBottleSharp.tsx +++ b/src/IconWaterBottleSharp.tsx @@ -8,4 +8,4 @@ const IconWaterBottleSharp: React.FC = ({ ...props }) => ( ) -export { IconWaterBottleSharp as default } +export default IconWaterBottleSharp diff --git a/src/IconWaterBottleSharpFilled.tsx b/src/IconWaterBottleSharpFilled.tsx index 13b37e31c..4954977c2 100644 --- a/src/IconWaterBottleSharpFilled.tsx +++ b/src/IconWaterBottleSharpFilled.tsx @@ -8,4 +8,4 @@ const IconWaterBottleSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconWaterBottleSharpFilled as default } +export default IconWaterBottleSharpFilled diff --git a/src/IconWaterDamageOutlined.tsx b/src/IconWaterDamageOutlined.tsx index c3a878727..15b6d5d3c 100644 --- a/src/IconWaterDamageOutlined.tsx +++ b/src/IconWaterDamageOutlined.tsx @@ -8,4 +8,4 @@ const IconWaterDamageOutlined: React.FC = ({ ...props }) => ( ) -export { IconWaterDamageOutlined as default } +export default IconWaterDamageOutlined diff --git a/src/IconWaterDamageOutlinedFilled.tsx b/src/IconWaterDamageOutlinedFilled.tsx index cfda9bc67..b73826e8c 100644 --- a/src/IconWaterDamageOutlinedFilled.tsx +++ b/src/IconWaterDamageOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconWaterDamageOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconWaterDamageOutlinedFilled as default } +export default IconWaterDamageOutlinedFilled diff --git a/src/IconWaterDamageRounded.tsx b/src/IconWaterDamageRounded.tsx index e2d12727b..147011ce3 100644 --- a/src/IconWaterDamageRounded.tsx +++ b/src/IconWaterDamageRounded.tsx @@ -8,4 +8,4 @@ const IconWaterDamageRounded: React.FC = ({ ...props }) => ( ) -export { IconWaterDamageRounded as default } +export default IconWaterDamageRounded diff --git a/src/IconWaterDamageRoundedFilled.tsx b/src/IconWaterDamageRoundedFilled.tsx index c577187f5..d28da2dd7 100644 --- a/src/IconWaterDamageRoundedFilled.tsx +++ b/src/IconWaterDamageRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconWaterDamageRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconWaterDamageRoundedFilled as default } +export default IconWaterDamageRoundedFilled diff --git a/src/IconWaterDamageSharp.tsx b/src/IconWaterDamageSharp.tsx index 31572706c..34f113db9 100644 --- a/src/IconWaterDamageSharp.tsx +++ b/src/IconWaterDamageSharp.tsx @@ -8,4 +8,4 @@ const IconWaterDamageSharp: React.FC = ({ ...props }) => ( ) -export { IconWaterDamageSharp as default } +export default IconWaterDamageSharp diff --git a/src/IconWaterDamageSharpFilled.tsx b/src/IconWaterDamageSharpFilled.tsx index db0bd9a98..980eacfdf 100644 --- a/src/IconWaterDamageSharpFilled.tsx +++ b/src/IconWaterDamageSharpFilled.tsx @@ -8,4 +8,4 @@ const IconWaterDamageSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconWaterDamageSharpFilled as default } +export default IconWaterDamageSharpFilled diff --git a/src/IconWaterDoOutlined.tsx b/src/IconWaterDoOutlined.tsx index 697f43f94..ccbe33298 100644 --- a/src/IconWaterDoOutlined.tsx +++ b/src/IconWaterDoOutlined.tsx @@ -8,4 +8,4 @@ const IconWaterDoOutlined: React.FC = ({ ...props }) => ( ) -export { IconWaterDoOutlined as default } +export default IconWaterDoOutlined diff --git a/src/IconWaterDoOutlinedFilled.tsx b/src/IconWaterDoOutlinedFilled.tsx index 54229b171..14c5d9943 100644 --- a/src/IconWaterDoOutlinedFilled.tsx +++ b/src/IconWaterDoOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconWaterDoOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconWaterDoOutlinedFilled as default } +export default IconWaterDoOutlinedFilled diff --git a/src/IconWaterDoRounded.tsx b/src/IconWaterDoRounded.tsx index fca01494f..4b69d24d5 100644 --- a/src/IconWaterDoRounded.tsx +++ b/src/IconWaterDoRounded.tsx @@ -8,4 +8,4 @@ const IconWaterDoRounded: React.FC = ({ ...props }) => ( ) -export { IconWaterDoRounded as default } +export default IconWaterDoRounded diff --git a/src/IconWaterDoRoundedFilled.tsx b/src/IconWaterDoRoundedFilled.tsx index f720fb806..08c4ca246 100644 --- a/src/IconWaterDoRoundedFilled.tsx +++ b/src/IconWaterDoRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconWaterDoRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconWaterDoRoundedFilled as default } +export default IconWaterDoRoundedFilled diff --git a/src/IconWaterDoSharp.tsx b/src/IconWaterDoSharp.tsx index 6d334348c..85110009a 100644 --- a/src/IconWaterDoSharp.tsx +++ b/src/IconWaterDoSharp.tsx @@ -8,4 +8,4 @@ const IconWaterDoSharp: React.FC = ({ ...props }) => ( ) -export { IconWaterDoSharp as default } +export default IconWaterDoSharp diff --git a/src/IconWaterDoSharpFilled.tsx b/src/IconWaterDoSharpFilled.tsx index 30af61d32..0d92d21f9 100644 --- a/src/IconWaterDoSharpFilled.tsx +++ b/src/IconWaterDoSharpFilled.tsx @@ -8,4 +8,4 @@ const IconWaterDoSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconWaterDoSharpFilled as default } +export default IconWaterDoSharpFilled diff --git a/src/IconWaterDropOutlined.tsx b/src/IconWaterDropOutlined.tsx index 0d4ebf6b1..64783855e 100644 --- a/src/IconWaterDropOutlined.tsx +++ b/src/IconWaterDropOutlined.tsx @@ -8,4 +8,4 @@ const IconWaterDropOutlined: React.FC = ({ ...props }) => ( ) -export { IconWaterDropOutlined as default } +export default IconWaterDropOutlined diff --git a/src/IconWaterDropOutlinedFilled.tsx b/src/IconWaterDropOutlinedFilled.tsx index 6d35197c4..4e1b07fa0 100644 --- a/src/IconWaterDropOutlinedFilled.tsx +++ b/src/IconWaterDropOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconWaterDropOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconWaterDropOutlinedFilled as default } +export default IconWaterDropOutlinedFilled diff --git a/src/IconWaterDropRounded.tsx b/src/IconWaterDropRounded.tsx index 65064e8ec..bca4a40be 100644 --- a/src/IconWaterDropRounded.tsx +++ b/src/IconWaterDropRounded.tsx @@ -8,4 +8,4 @@ const IconWaterDropRounded: React.FC = ({ ...props }) => ( ) -export { IconWaterDropRounded as default } +export default IconWaterDropRounded diff --git a/src/IconWaterDropRoundedFilled.tsx b/src/IconWaterDropRoundedFilled.tsx index 30f105f21..852885fe6 100644 --- a/src/IconWaterDropRoundedFilled.tsx +++ b/src/IconWaterDropRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconWaterDropRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconWaterDropRoundedFilled as default } +export default IconWaterDropRoundedFilled diff --git a/src/IconWaterDropSharp.tsx b/src/IconWaterDropSharp.tsx index 15b25d2e9..a0eebc19c 100644 --- a/src/IconWaterDropSharp.tsx +++ b/src/IconWaterDropSharp.tsx @@ -8,4 +8,4 @@ const IconWaterDropSharp: React.FC = ({ ...props }) => ( ) -export { IconWaterDropSharp as default } +export default IconWaterDropSharp diff --git a/src/IconWaterDropSharpFilled.tsx b/src/IconWaterDropSharpFilled.tsx index 9d660d14b..fac5e85c1 100644 --- a/src/IconWaterDropSharpFilled.tsx +++ b/src/IconWaterDropSharpFilled.tsx @@ -8,4 +8,4 @@ const IconWaterDropSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconWaterDropSharpFilled as default } +export default IconWaterDropSharpFilled diff --git a/src/IconWaterEcOutlined.tsx b/src/IconWaterEcOutlined.tsx index ed5eb9361..6d13c9c76 100644 --- a/src/IconWaterEcOutlined.tsx +++ b/src/IconWaterEcOutlined.tsx @@ -8,4 +8,4 @@ const IconWaterEcOutlined: React.FC = ({ ...props }) => ( ) -export { IconWaterEcOutlined as default } +export default IconWaterEcOutlined diff --git a/src/IconWaterEcOutlinedFilled.tsx b/src/IconWaterEcOutlinedFilled.tsx index db0036dae..27e57e46b 100644 --- a/src/IconWaterEcOutlinedFilled.tsx +++ b/src/IconWaterEcOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconWaterEcOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconWaterEcOutlinedFilled as default } +export default IconWaterEcOutlinedFilled diff --git a/src/IconWaterEcRounded.tsx b/src/IconWaterEcRounded.tsx index aec8d8933..aabe95a69 100644 --- a/src/IconWaterEcRounded.tsx +++ b/src/IconWaterEcRounded.tsx @@ -8,4 +8,4 @@ const IconWaterEcRounded: React.FC = ({ ...props }) => ( ) -export { IconWaterEcRounded as default } +export default IconWaterEcRounded diff --git a/src/IconWaterEcRoundedFilled.tsx b/src/IconWaterEcRoundedFilled.tsx index 3786a3bd5..d7e4aaf7a 100644 --- a/src/IconWaterEcRoundedFilled.tsx +++ b/src/IconWaterEcRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconWaterEcRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconWaterEcRoundedFilled as default } +export default IconWaterEcRoundedFilled diff --git a/src/IconWaterEcSharp.tsx b/src/IconWaterEcSharp.tsx index da95b969d..ada41c32f 100644 --- a/src/IconWaterEcSharp.tsx +++ b/src/IconWaterEcSharp.tsx @@ -8,4 +8,4 @@ const IconWaterEcSharp: React.FC = ({ ...props }) => ( ) -export { IconWaterEcSharp as default } +export default IconWaterEcSharp diff --git a/src/IconWaterEcSharpFilled.tsx b/src/IconWaterEcSharpFilled.tsx index 8ad86f327..7d1563b36 100644 --- a/src/IconWaterEcSharpFilled.tsx +++ b/src/IconWaterEcSharpFilled.tsx @@ -8,4 +8,4 @@ const IconWaterEcSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconWaterEcSharpFilled as default } +export default IconWaterEcSharpFilled diff --git a/src/IconWaterFullOutlined.tsx b/src/IconWaterFullOutlined.tsx index aa81393c7..e7a1d7d6c 100644 --- a/src/IconWaterFullOutlined.tsx +++ b/src/IconWaterFullOutlined.tsx @@ -8,4 +8,4 @@ const IconWaterFullOutlined: React.FC = ({ ...props }) => ( ) -export { IconWaterFullOutlined as default } +export default IconWaterFullOutlined diff --git a/src/IconWaterFullOutlinedFilled.tsx b/src/IconWaterFullOutlinedFilled.tsx index f572ffe83..a3d1896bc 100644 --- a/src/IconWaterFullOutlinedFilled.tsx +++ b/src/IconWaterFullOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconWaterFullOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconWaterFullOutlinedFilled as default } +export default IconWaterFullOutlinedFilled diff --git a/src/IconWaterFullRounded.tsx b/src/IconWaterFullRounded.tsx index 636746676..a95fbeabf 100644 --- a/src/IconWaterFullRounded.tsx +++ b/src/IconWaterFullRounded.tsx @@ -8,4 +8,4 @@ const IconWaterFullRounded: React.FC = ({ ...props }) => ( ) -export { IconWaterFullRounded as default } +export default IconWaterFullRounded diff --git a/src/IconWaterFullRoundedFilled.tsx b/src/IconWaterFullRoundedFilled.tsx index c8b27e872..e1c5f2144 100644 --- a/src/IconWaterFullRoundedFilled.tsx +++ b/src/IconWaterFullRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconWaterFullRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconWaterFullRoundedFilled as default } +export default IconWaterFullRoundedFilled diff --git a/src/IconWaterFullSharp.tsx b/src/IconWaterFullSharp.tsx index c23011930..578c005c4 100644 --- a/src/IconWaterFullSharp.tsx +++ b/src/IconWaterFullSharp.tsx @@ -8,4 +8,4 @@ const IconWaterFullSharp: React.FC = ({ ...props }) => ( ) -export { IconWaterFullSharp as default } +export default IconWaterFullSharp diff --git a/src/IconWaterFullSharpFilled.tsx b/src/IconWaterFullSharpFilled.tsx index 15ae20078..3c4074d70 100644 --- a/src/IconWaterFullSharpFilled.tsx +++ b/src/IconWaterFullSharpFilled.tsx @@ -8,4 +8,4 @@ const IconWaterFullSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconWaterFullSharpFilled as default } +export default IconWaterFullSharpFilled diff --git a/src/IconWaterHeaterOutlined.tsx b/src/IconWaterHeaterOutlined.tsx index 050aa6a8c..085af2975 100644 --- a/src/IconWaterHeaterOutlined.tsx +++ b/src/IconWaterHeaterOutlined.tsx @@ -8,4 +8,4 @@ const IconWaterHeaterOutlined: React.FC = ({ ...props }) => ( ) -export { IconWaterHeaterOutlined as default } +export default IconWaterHeaterOutlined diff --git a/src/IconWaterHeaterOutlinedFilled.tsx b/src/IconWaterHeaterOutlinedFilled.tsx index dabee2020..586c175dd 100644 --- a/src/IconWaterHeaterOutlinedFilled.tsx +++ b/src/IconWaterHeaterOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconWaterHeaterOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconWaterHeaterOutlinedFilled as default } +export default IconWaterHeaterOutlinedFilled diff --git a/src/IconWaterHeaterRounded.tsx b/src/IconWaterHeaterRounded.tsx index ddad0085d..56af9dfaa 100644 --- a/src/IconWaterHeaterRounded.tsx +++ b/src/IconWaterHeaterRounded.tsx @@ -8,4 +8,4 @@ const IconWaterHeaterRounded: React.FC = ({ ...props }) => ( ) -export { IconWaterHeaterRounded as default } +export default IconWaterHeaterRounded diff --git a/src/IconWaterHeaterRoundedFilled.tsx b/src/IconWaterHeaterRoundedFilled.tsx index 570283167..c18389277 100644 --- a/src/IconWaterHeaterRoundedFilled.tsx +++ b/src/IconWaterHeaterRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconWaterHeaterRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconWaterHeaterRoundedFilled as default } +export default IconWaterHeaterRoundedFilled diff --git a/src/IconWaterHeaterSharp.tsx b/src/IconWaterHeaterSharp.tsx index 94de27044..477adb516 100644 --- a/src/IconWaterHeaterSharp.tsx +++ b/src/IconWaterHeaterSharp.tsx @@ -8,4 +8,4 @@ const IconWaterHeaterSharp: React.FC = ({ ...props }) => ( ) -export { IconWaterHeaterSharp as default } +export default IconWaterHeaterSharp diff --git a/src/IconWaterHeaterSharpFilled.tsx b/src/IconWaterHeaterSharpFilled.tsx index bbaf1e33b..fd43eca0a 100644 --- a/src/IconWaterHeaterSharpFilled.tsx +++ b/src/IconWaterHeaterSharpFilled.tsx @@ -8,4 +8,4 @@ const IconWaterHeaterSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconWaterHeaterSharpFilled as default } +export default IconWaterHeaterSharpFilled diff --git a/src/IconWaterLockOutlined.tsx b/src/IconWaterLockOutlined.tsx index 2b676a214..2b6e42b01 100644 --- a/src/IconWaterLockOutlined.tsx +++ b/src/IconWaterLockOutlined.tsx @@ -8,4 +8,4 @@ const IconWaterLockOutlined: React.FC = ({ ...props }) => ( ) -export { IconWaterLockOutlined as default } +export default IconWaterLockOutlined diff --git a/src/IconWaterLockOutlinedFilled.tsx b/src/IconWaterLockOutlinedFilled.tsx index 274f98a9a..05f4f4213 100644 --- a/src/IconWaterLockOutlinedFilled.tsx +++ b/src/IconWaterLockOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconWaterLockOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconWaterLockOutlinedFilled as default } +export default IconWaterLockOutlinedFilled diff --git a/src/IconWaterLockRounded.tsx b/src/IconWaterLockRounded.tsx index 9e2931123..e7bc34e57 100644 --- a/src/IconWaterLockRounded.tsx +++ b/src/IconWaterLockRounded.tsx @@ -8,4 +8,4 @@ const IconWaterLockRounded: React.FC = ({ ...props }) => ( ) -export { IconWaterLockRounded as default } +export default IconWaterLockRounded diff --git a/src/IconWaterLockRoundedFilled.tsx b/src/IconWaterLockRoundedFilled.tsx index 1d8884038..19fe0a4e2 100644 --- a/src/IconWaterLockRoundedFilled.tsx +++ b/src/IconWaterLockRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconWaterLockRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconWaterLockRoundedFilled as default } +export default IconWaterLockRoundedFilled diff --git a/src/IconWaterLockSharp.tsx b/src/IconWaterLockSharp.tsx index b87b7e68a..4f3022b4c 100644 --- a/src/IconWaterLockSharp.tsx +++ b/src/IconWaterLockSharp.tsx @@ -8,4 +8,4 @@ const IconWaterLockSharp: React.FC = ({ ...props }) => ( ) -export { IconWaterLockSharp as default } +export default IconWaterLockSharp diff --git a/src/IconWaterLockSharpFilled.tsx b/src/IconWaterLockSharpFilled.tsx index d41239fe8..621fda744 100644 --- a/src/IconWaterLockSharpFilled.tsx +++ b/src/IconWaterLockSharpFilled.tsx @@ -8,4 +8,4 @@ const IconWaterLockSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconWaterLockSharpFilled as default } +export default IconWaterLockSharpFilled diff --git a/src/IconWaterLossOutlined.tsx b/src/IconWaterLossOutlined.tsx index 33647cbc1..5086c2f6f 100644 --- a/src/IconWaterLossOutlined.tsx +++ b/src/IconWaterLossOutlined.tsx @@ -8,4 +8,4 @@ const IconWaterLossOutlined: React.FC = ({ ...props }) => ( ) -export { IconWaterLossOutlined as default } +export default IconWaterLossOutlined diff --git a/src/IconWaterLossOutlinedFilled.tsx b/src/IconWaterLossOutlinedFilled.tsx index 239390f6f..8d35fe012 100644 --- a/src/IconWaterLossOutlinedFilled.tsx +++ b/src/IconWaterLossOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconWaterLossOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconWaterLossOutlinedFilled as default } +export default IconWaterLossOutlinedFilled diff --git a/src/IconWaterLossRounded.tsx b/src/IconWaterLossRounded.tsx index 432ad06cf..92ba09f93 100644 --- a/src/IconWaterLossRounded.tsx +++ b/src/IconWaterLossRounded.tsx @@ -8,4 +8,4 @@ const IconWaterLossRounded: React.FC = ({ ...props }) => ( ) -export { IconWaterLossRounded as default } +export default IconWaterLossRounded diff --git a/src/IconWaterLossRoundedFilled.tsx b/src/IconWaterLossRoundedFilled.tsx index 721f94987..3f3d47436 100644 --- a/src/IconWaterLossRoundedFilled.tsx +++ b/src/IconWaterLossRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconWaterLossRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconWaterLossRoundedFilled as default } +export default IconWaterLossRoundedFilled diff --git a/src/IconWaterLossSharp.tsx b/src/IconWaterLossSharp.tsx index 08697f86f..74faaf3ae 100644 --- a/src/IconWaterLossSharp.tsx +++ b/src/IconWaterLossSharp.tsx @@ -8,4 +8,4 @@ const IconWaterLossSharp: React.FC = ({ ...props }) => ( ) -export { IconWaterLossSharp as default } +export default IconWaterLossSharp diff --git a/src/IconWaterLossSharpFilled.tsx b/src/IconWaterLossSharpFilled.tsx index 3c7c46f2d..1c06517cc 100644 --- a/src/IconWaterLossSharpFilled.tsx +++ b/src/IconWaterLossSharpFilled.tsx @@ -8,4 +8,4 @@ const IconWaterLossSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconWaterLossSharpFilled as default } +export default IconWaterLossSharpFilled diff --git a/src/IconWaterLuxOutlined.tsx b/src/IconWaterLuxOutlined.tsx index b74e100be..2c3c2f08d 100644 --- a/src/IconWaterLuxOutlined.tsx +++ b/src/IconWaterLuxOutlined.tsx @@ -8,4 +8,4 @@ const IconWaterLuxOutlined: React.FC = ({ ...props }) => ( ) -export { IconWaterLuxOutlined as default } +export default IconWaterLuxOutlined diff --git a/src/IconWaterLuxOutlinedFilled.tsx b/src/IconWaterLuxOutlinedFilled.tsx index f722739b3..16de8acc6 100644 --- a/src/IconWaterLuxOutlinedFilled.tsx +++ b/src/IconWaterLuxOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconWaterLuxOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconWaterLuxOutlinedFilled as default } +export default IconWaterLuxOutlinedFilled diff --git a/src/IconWaterLuxRounded.tsx b/src/IconWaterLuxRounded.tsx index 03c404d1c..6211d0eb7 100644 --- a/src/IconWaterLuxRounded.tsx +++ b/src/IconWaterLuxRounded.tsx @@ -8,4 +8,4 @@ const IconWaterLuxRounded: React.FC = ({ ...props }) => ( ) -export { IconWaterLuxRounded as default } +export default IconWaterLuxRounded diff --git a/src/IconWaterLuxRoundedFilled.tsx b/src/IconWaterLuxRoundedFilled.tsx index 81c79d8b0..2c37e6a1f 100644 --- a/src/IconWaterLuxRoundedFilled.tsx +++ b/src/IconWaterLuxRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconWaterLuxRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconWaterLuxRoundedFilled as default } +export default IconWaterLuxRoundedFilled diff --git a/src/IconWaterLuxSharp.tsx b/src/IconWaterLuxSharp.tsx index 150968933..c0b23ed5d 100644 --- a/src/IconWaterLuxSharp.tsx +++ b/src/IconWaterLuxSharp.tsx @@ -8,4 +8,4 @@ const IconWaterLuxSharp: React.FC = ({ ...props }) => ( ) -export { IconWaterLuxSharp as default } +export default IconWaterLuxSharp diff --git a/src/IconWaterLuxSharpFilled.tsx b/src/IconWaterLuxSharpFilled.tsx index db2334d42..7f57f2b43 100644 --- a/src/IconWaterLuxSharpFilled.tsx +++ b/src/IconWaterLuxSharpFilled.tsx @@ -8,4 +8,4 @@ const IconWaterLuxSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconWaterLuxSharpFilled as default } +export default IconWaterLuxSharpFilled diff --git a/src/IconWaterMediumOutlined.tsx b/src/IconWaterMediumOutlined.tsx index 1d7811f64..13aaec823 100644 --- a/src/IconWaterMediumOutlined.tsx +++ b/src/IconWaterMediumOutlined.tsx @@ -8,4 +8,4 @@ const IconWaterMediumOutlined: React.FC = ({ ...props }) => ( ) -export { IconWaterMediumOutlined as default } +export default IconWaterMediumOutlined diff --git a/src/IconWaterMediumOutlinedFilled.tsx b/src/IconWaterMediumOutlinedFilled.tsx index 5215fe872..02b928864 100644 --- a/src/IconWaterMediumOutlinedFilled.tsx +++ b/src/IconWaterMediumOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconWaterMediumOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconWaterMediumOutlinedFilled as default } +export default IconWaterMediumOutlinedFilled diff --git a/src/IconWaterMediumRounded.tsx b/src/IconWaterMediumRounded.tsx index 899f51ffb..fc54ddc42 100644 --- a/src/IconWaterMediumRounded.tsx +++ b/src/IconWaterMediumRounded.tsx @@ -8,4 +8,4 @@ const IconWaterMediumRounded: React.FC = ({ ...props }) => ( ) -export { IconWaterMediumRounded as default } +export default IconWaterMediumRounded diff --git a/src/IconWaterMediumRoundedFilled.tsx b/src/IconWaterMediumRoundedFilled.tsx index f14c1f0fe..ecbb6a0fb 100644 --- a/src/IconWaterMediumRoundedFilled.tsx +++ b/src/IconWaterMediumRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconWaterMediumRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconWaterMediumRoundedFilled as default } +export default IconWaterMediumRoundedFilled diff --git a/src/IconWaterMediumSharp.tsx b/src/IconWaterMediumSharp.tsx index 5df8a14b5..a6471e7d5 100644 --- a/src/IconWaterMediumSharp.tsx +++ b/src/IconWaterMediumSharp.tsx @@ -8,4 +8,4 @@ const IconWaterMediumSharp: React.FC = ({ ...props }) => ( ) -export { IconWaterMediumSharp as default } +export default IconWaterMediumSharp diff --git a/src/IconWaterMediumSharpFilled.tsx b/src/IconWaterMediumSharpFilled.tsx index 4549918b3..91de4efbf 100644 --- a/src/IconWaterMediumSharpFilled.tsx +++ b/src/IconWaterMediumSharpFilled.tsx @@ -8,4 +8,4 @@ const IconWaterMediumSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconWaterMediumSharpFilled as default } +export default IconWaterMediumSharpFilled diff --git a/src/IconWaterOrpOutlined.tsx b/src/IconWaterOrpOutlined.tsx index 4605ad572..48658bbfb 100644 --- a/src/IconWaterOrpOutlined.tsx +++ b/src/IconWaterOrpOutlined.tsx @@ -8,4 +8,4 @@ const IconWaterOrpOutlined: React.FC = ({ ...props }) => ( ) -export { IconWaterOrpOutlined as default } +export default IconWaterOrpOutlined diff --git a/src/IconWaterOrpOutlinedFilled.tsx b/src/IconWaterOrpOutlinedFilled.tsx index 3d9abf6cd..f193f7e08 100644 --- a/src/IconWaterOrpOutlinedFilled.tsx +++ b/src/IconWaterOrpOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconWaterOrpOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconWaterOrpOutlinedFilled as default } +export default IconWaterOrpOutlinedFilled diff --git a/src/IconWaterOrpRounded.tsx b/src/IconWaterOrpRounded.tsx index ad5927305..ecc86347f 100644 --- a/src/IconWaterOrpRounded.tsx +++ b/src/IconWaterOrpRounded.tsx @@ -8,4 +8,4 @@ const IconWaterOrpRounded: React.FC = ({ ...props }) => ( ) -export { IconWaterOrpRounded as default } +export default IconWaterOrpRounded diff --git a/src/IconWaterOrpRoundedFilled.tsx b/src/IconWaterOrpRoundedFilled.tsx index fe329ea75..b308257ef 100644 --- a/src/IconWaterOrpRoundedFilled.tsx +++ b/src/IconWaterOrpRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconWaterOrpRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconWaterOrpRoundedFilled as default } +export default IconWaterOrpRoundedFilled diff --git a/src/IconWaterOrpSharp.tsx b/src/IconWaterOrpSharp.tsx index 801b3210f..592b86484 100644 --- a/src/IconWaterOrpSharp.tsx +++ b/src/IconWaterOrpSharp.tsx @@ -8,4 +8,4 @@ const IconWaterOrpSharp: React.FC = ({ ...props }) => ( ) -export { IconWaterOrpSharp as default } +export default IconWaterOrpSharp diff --git a/src/IconWaterOrpSharpFilled.tsx b/src/IconWaterOrpSharpFilled.tsx index 5b43f39ca..0bb0a5d44 100644 --- a/src/IconWaterOrpSharpFilled.tsx +++ b/src/IconWaterOrpSharpFilled.tsx @@ -8,4 +8,4 @@ const IconWaterOrpSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconWaterOrpSharpFilled as default } +export default IconWaterOrpSharpFilled diff --git a/src/IconWaterOutlined.tsx b/src/IconWaterOutlined.tsx index 2a2b13766..08326c42e 100644 --- a/src/IconWaterOutlined.tsx +++ b/src/IconWaterOutlined.tsx @@ -8,4 +8,4 @@ const IconWaterOutlined: React.FC = ({ ...props }) => ( ) -export { IconWaterOutlined as default } +export default IconWaterOutlined diff --git a/src/IconWaterOutlinedFilled.tsx b/src/IconWaterOutlinedFilled.tsx index 835920be6..4e98bd561 100644 --- a/src/IconWaterOutlinedFilled.tsx +++ b/src/IconWaterOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconWaterOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconWaterOutlinedFilled as default } +export default IconWaterOutlinedFilled diff --git a/src/IconWaterPhOutlined.tsx b/src/IconWaterPhOutlined.tsx index 20f38c49c..b052ad244 100644 --- a/src/IconWaterPhOutlined.tsx +++ b/src/IconWaterPhOutlined.tsx @@ -8,4 +8,4 @@ const IconWaterPhOutlined: React.FC = ({ ...props }) => ( ) -export { IconWaterPhOutlined as default } +export default IconWaterPhOutlined diff --git a/src/IconWaterPhOutlinedFilled.tsx b/src/IconWaterPhOutlinedFilled.tsx index 09e49933c..bfb901d9c 100644 --- a/src/IconWaterPhOutlinedFilled.tsx +++ b/src/IconWaterPhOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconWaterPhOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconWaterPhOutlinedFilled as default } +export default IconWaterPhOutlinedFilled diff --git a/src/IconWaterPhRounded.tsx b/src/IconWaterPhRounded.tsx index ad5e92d8f..3e726d248 100644 --- a/src/IconWaterPhRounded.tsx +++ b/src/IconWaterPhRounded.tsx @@ -8,4 +8,4 @@ const IconWaterPhRounded: React.FC = ({ ...props }) => ( ) -export { IconWaterPhRounded as default } +export default IconWaterPhRounded diff --git a/src/IconWaterPhRoundedFilled.tsx b/src/IconWaterPhRoundedFilled.tsx index e52f0a519..18e93de99 100644 --- a/src/IconWaterPhRoundedFilled.tsx +++ b/src/IconWaterPhRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconWaterPhRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconWaterPhRoundedFilled as default } +export default IconWaterPhRoundedFilled diff --git a/src/IconWaterPhSharp.tsx b/src/IconWaterPhSharp.tsx index e5f1e7b3f..e40ced8ce 100644 --- a/src/IconWaterPhSharp.tsx +++ b/src/IconWaterPhSharp.tsx @@ -8,4 +8,4 @@ const IconWaterPhSharp: React.FC = ({ ...props }) => ( ) -export { IconWaterPhSharp as default } +export default IconWaterPhSharp diff --git a/src/IconWaterPhSharpFilled.tsx b/src/IconWaterPhSharpFilled.tsx index 044f65374..2ba526c9e 100644 --- a/src/IconWaterPhSharpFilled.tsx +++ b/src/IconWaterPhSharpFilled.tsx @@ -8,4 +8,4 @@ const IconWaterPhSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconWaterPhSharpFilled as default } +export default IconWaterPhSharpFilled diff --git a/src/IconWaterPumpOutlined.tsx b/src/IconWaterPumpOutlined.tsx index 8ec58a7a8..2c9a4eca5 100644 --- a/src/IconWaterPumpOutlined.tsx +++ b/src/IconWaterPumpOutlined.tsx @@ -8,4 +8,4 @@ const IconWaterPumpOutlined: React.FC = ({ ...props }) => ( ) -export { IconWaterPumpOutlined as default } +export default IconWaterPumpOutlined diff --git a/src/IconWaterPumpOutlinedFilled.tsx b/src/IconWaterPumpOutlinedFilled.tsx index ac5dd15a1..3e9e10d70 100644 --- a/src/IconWaterPumpOutlinedFilled.tsx +++ b/src/IconWaterPumpOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconWaterPumpOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconWaterPumpOutlinedFilled as default } +export default IconWaterPumpOutlinedFilled diff --git a/src/IconWaterPumpRounded.tsx b/src/IconWaterPumpRounded.tsx index 33a723ec5..4e531156f 100644 --- a/src/IconWaterPumpRounded.tsx +++ b/src/IconWaterPumpRounded.tsx @@ -8,4 +8,4 @@ const IconWaterPumpRounded: React.FC = ({ ...props }) => ( ) -export { IconWaterPumpRounded as default } +export default IconWaterPumpRounded diff --git a/src/IconWaterPumpRoundedFilled.tsx b/src/IconWaterPumpRoundedFilled.tsx index 7a12c078f..1c3345aa0 100644 --- a/src/IconWaterPumpRoundedFilled.tsx +++ b/src/IconWaterPumpRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconWaterPumpRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconWaterPumpRoundedFilled as default } +export default IconWaterPumpRoundedFilled diff --git a/src/IconWaterPumpSharp.tsx b/src/IconWaterPumpSharp.tsx index 4c993d06d..e7f0400a1 100644 --- a/src/IconWaterPumpSharp.tsx +++ b/src/IconWaterPumpSharp.tsx @@ -8,4 +8,4 @@ const IconWaterPumpSharp: React.FC = ({ ...props }) => ( ) -export { IconWaterPumpSharp as default } +export default IconWaterPumpSharp diff --git a/src/IconWaterPumpSharpFilled.tsx b/src/IconWaterPumpSharpFilled.tsx index b7a959435..cbf0e43dc 100644 --- a/src/IconWaterPumpSharpFilled.tsx +++ b/src/IconWaterPumpSharpFilled.tsx @@ -8,4 +8,4 @@ const IconWaterPumpSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconWaterPumpSharpFilled as default } +export default IconWaterPumpSharpFilled diff --git a/src/IconWaterRounded.tsx b/src/IconWaterRounded.tsx index 49c67e0ce..b6c31ab73 100644 --- a/src/IconWaterRounded.tsx +++ b/src/IconWaterRounded.tsx @@ -8,4 +8,4 @@ const IconWaterRounded: React.FC = ({ ...props }) => ( ) -export { IconWaterRounded as default } +export default IconWaterRounded diff --git a/src/IconWaterRoundedFilled.tsx b/src/IconWaterRoundedFilled.tsx index 43b0c7208..b70d5271d 100644 --- a/src/IconWaterRoundedFilled.tsx +++ b/src/IconWaterRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconWaterRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconWaterRoundedFilled as default } +export default IconWaterRoundedFilled diff --git a/src/IconWaterSharp.tsx b/src/IconWaterSharp.tsx index ff9062530..b4fcc4616 100644 --- a/src/IconWaterSharp.tsx +++ b/src/IconWaterSharp.tsx @@ -8,4 +8,4 @@ const IconWaterSharp: React.FC = ({ ...props }) => ( ) -export { IconWaterSharp as default } +export default IconWaterSharp diff --git a/src/IconWaterSharpFilled.tsx b/src/IconWaterSharpFilled.tsx index 8cf2af468..764d19ee1 100644 --- a/src/IconWaterSharpFilled.tsx +++ b/src/IconWaterSharpFilled.tsx @@ -8,4 +8,4 @@ const IconWaterSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconWaterSharpFilled as default } +export default IconWaterSharpFilled diff --git a/src/IconWaterVocOutlined.tsx b/src/IconWaterVocOutlined.tsx index 19780fbe4..0c31162ee 100644 --- a/src/IconWaterVocOutlined.tsx +++ b/src/IconWaterVocOutlined.tsx @@ -8,4 +8,4 @@ const IconWaterVocOutlined: React.FC = ({ ...props }) => ( ) -export { IconWaterVocOutlined as default } +export default IconWaterVocOutlined diff --git a/src/IconWaterVocOutlinedFilled.tsx b/src/IconWaterVocOutlinedFilled.tsx index a951883a2..b1d5eae07 100644 --- a/src/IconWaterVocOutlinedFilled.tsx +++ b/src/IconWaterVocOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconWaterVocOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconWaterVocOutlinedFilled as default } +export default IconWaterVocOutlinedFilled diff --git a/src/IconWaterVocRounded.tsx b/src/IconWaterVocRounded.tsx index f5ffafb2d..5e452c49e 100644 --- a/src/IconWaterVocRounded.tsx +++ b/src/IconWaterVocRounded.tsx @@ -8,4 +8,4 @@ const IconWaterVocRounded: React.FC = ({ ...props }) => ( ) -export { IconWaterVocRounded as default } +export default IconWaterVocRounded diff --git a/src/IconWaterVocRoundedFilled.tsx b/src/IconWaterVocRoundedFilled.tsx index 2d74213cc..d924a9b1e 100644 --- a/src/IconWaterVocRoundedFilled.tsx +++ b/src/IconWaterVocRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconWaterVocRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconWaterVocRoundedFilled as default } +export default IconWaterVocRoundedFilled diff --git a/src/IconWaterVocSharp.tsx b/src/IconWaterVocSharp.tsx index 77a56b6f5..839118907 100644 --- a/src/IconWaterVocSharp.tsx +++ b/src/IconWaterVocSharp.tsx @@ -8,4 +8,4 @@ const IconWaterVocSharp: React.FC = ({ ...props }) => ( ) -export { IconWaterVocSharp as default } +export default IconWaterVocSharp diff --git a/src/IconWaterVocSharpFilled.tsx b/src/IconWaterVocSharpFilled.tsx index 990c27c12..a57607ff7 100644 --- a/src/IconWaterVocSharpFilled.tsx +++ b/src/IconWaterVocSharpFilled.tsx @@ -8,4 +8,4 @@ const IconWaterVocSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconWaterVocSharpFilled as default } +export default IconWaterVocSharpFilled diff --git a/src/IconWaterfallChartOutlined.tsx b/src/IconWaterfallChartOutlined.tsx index 8b8b9acdd..ed14f5092 100644 --- a/src/IconWaterfallChartOutlined.tsx +++ b/src/IconWaterfallChartOutlined.tsx @@ -8,4 +8,4 @@ const IconWaterfallChartOutlined: React.FC = ({ ...props }) => ( ) -export { IconWaterfallChartOutlined as default } +export default IconWaterfallChartOutlined diff --git a/src/IconWaterfallChartOutlinedFilled.tsx b/src/IconWaterfallChartOutlinedFilled.tsx index 7f9e608aa..240d4ad68 100644 --- a/src/IconWaterfallChartOutlinedFilled.tsx +++ b/src/IconWaterfallChartOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconWaterfallChartOutlinedFilled: React.FC = ({ ) -export { IconWaterfallChartOutlinedFilled as default } +export default IconWaterfallChartOutlinedFilled diff --git a/src/IconWaterfallChartRounded.tsx b/src/IconWaterfallChartRounded.tsx index be62ee619..9202179e4 100644 --- a/src/IconWaterfallChartRounded.tsx +++ b/src/IconWaterfallChartRounded.tsx @@ -8,4 +8,4 @@ const IconWaterfallChartRounded: React.FC = ({ ...props }) => ( ) -export { IconWaterfallChartRounded as default } +export default IconWaterfallChartRounded diff --git a/src/IconWaterfallChartRoundedFilled.tsx b/src/IconWaterfallChartRoundedFilled.tsx index 7fdbe8e3a..c58289d8f 100644 --- a/src/IconWaterfallChartRoundedFilled.tsx +++ b/src/IconWaterfallChartRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconWaterfallChartRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconWaterfallChartRoundedFilled as default } +export default IconWaterfallChartRoundedFilled diff --git a/src/IconWaterfallChartSharp.tsx b/src/IconWaterfallChartSharp.tsx index a31fe2743..15e500068 100644 --- a/src/IconWaterfallChartSharp.tsx +++ b/src/IconWaterfallChartSharp.tsx @@ -8,4 +8,4 @@ const IconWaterfallChartSharp: React.FC = ({ ...props }) => ( ) -export { IconWaterfallChartSharp as default } +export default IconWaterfallChartSharp diff --git a/src/IconWaterfallChartSharpFilled.tsx b/src/IconWaterfallChartSharpFilled.tsx index 8265e8664..7a89e8966 100644 --- a/src/IconWaterfallChartSharpFilled.tsx +++ b/src/IconWaterfallChartSharpFilled.tsx @@ -8,4 +8,4 @@ const IconWaterfallChartSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconWaterfallChartSharpFilled as default } +export default IconWaterfallChartSharpFilled diff --git a/src/IconWavesOutlined.tsx b/src/IconWavesOutlined.tsx index 51b3863e1..f213bce4f 100644 --- a/src/IconWavesOutlined.tsx +++ b/src/IconWavesOutlined.tsx @@ -8,4 +8,4 @@ const IconWavesOutlined: React.FC = ({ ...props }) => ( ) -export { IconWavesOutlined as default } +export default IconWavesOutlined diff --git a/src/IconWavesOutlinedFilled.tsx b/src/IconWavesOutlinedFilled.tsx index a6f0c37b8..a992854cd 100644 --- a/src/IconWavesOutlinedFilled.tsx +++ b/src/IconWavesOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconWavesOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconWavesOutlinedFilled as default } +export default IconWavesOutlinedFilled diff --git a/src/IconWavesRounded.tsx b/src/IconWavesRounded.tsx index b4748ea69..9ad421fa8 100644 --- a/src/IconWavesRounded.tsx +++ b/src/IconWavesRounded.tsx @@ -8,4 +8,4 @@ const IconWavesRounded: React.FC = ({ ...props }) => ( ) -export { IconWavesRounded as default } +export default IconWavesRounded diff --git a/src/IconWavesRoundedFilled.tsx b/src/IconWavesRoundedFilled.tsx index 9cddbf2b7..d8f7af6d4 100644 --- a/src/IconWavesRoundedFilled.tsx +++ b/src/IconWavesRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconWavesRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconWavesRoundedFilled as default } +export default IconWavesRoundedFilled diff --git a/src/IconWavesSharp.tsx b/src/IconWavesSharp.tsx index 084f9506d..2ea66365e 100644 --- a/src/IconWavesSharp.tsx +++ b/src/IconWavesSharp.tsx @@ -8,4 +8,4 @@ const IconWavesSharp: React.FC = ({ ...props }) => ( ) -export { IconWavesSharp as default } +export default IconWavesSharp diff --git a/src/IconWavesSharpFilled.tsx b/src/IconWavesSharpFilled.tsx index 14ce2be02..2f256cd87 100644 --- a/src/IconWavesSharpFilled.tsx +++ b/src/IconWavesSharpFilled.tsx @@ -8,4 +8,4 @@ const IconWavesSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconWavesSharpFilled as default } +export default IconWavesSharpFilled diff --git a/src/IconWavingHandOutlined.tsx b/src/IconWavingHandOutlined.tsx index 352332376..4a247f551 100644 --- a/src/IconWavingHandOutlined.tsx +++ b/src/IconWavingHandOutlined.tsx @@ -8,4 +8,4 @@ const IconWavingHandOutlined: React.FC = ({ ...props }) => ( ) -export { IconWavingHandOutlined as default } +export default IconWavingHandOutlined diff --git a/src/IconWavingHandOutlinedFilled.tsx b/src/IconWavingHandOutlinedFilled.tsx index a99a0ce97..8bdeb4182 100644 --- a/src/IconWavingHandOutlinedFilled.tsx +++ b/src/IconWavingHandOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconWavingHandOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconWavingHandOutlinedFilled as default } +export default IconWavingHandOutlinedFilled diff --git a/src/IconWavingHandRounded.tsx b/src/IconWavingHandRounded.tsx index 4e7d80a75..ed2663e2f 100644 --- a/src/IconWavingHandRounded.tsx +++ b/src/IconWavingHandRounded.tsx @@ -8,4 +8,4 @@ const IconWavingHandRounded: React.FC = ({ ...props }) => ( ) -export { IconWavingHandRounded as default } +export default IconWavingHandRounded diff --git a/src/IconWavingHandRoundedFilled.tsx b/src/IconWavingHandRoundedFilled.tsx index 69ae53d34..b066a3e13 100644 --- a/src/IconWavingHandRoundedFilled.tsx +++ b/src/IconWavingHandRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconWavingHandRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconWavingHandRoundedFilled as default } +export default IconWavingHandRoundedFilled diff --git a/src/IconWavingHandSharp.tsx b/src/IconWavingHandSharp.tsx index eb8ec29cf..412f06562 100644 --- a/src/IconWavingHandSharp.tsx +++ b/src/IconWavingHandSharp.tsx @@ -8,4 +8,4 @@ const IconWavingHandSharp: React.FC = ({ ...props }) => ( ) -export { IconWavingHandSharp as default } +export default IconWavingHandSharp diff --git a/src/IconWavingHandSharpFilled.tsx b/src/IconWavingHandSharpFilled.tsx index b615c5ed3..c27000c17 100644 --- a/src/IconWavingHandSharpFilled.tsx +++ b/src/IconWavingHandSharpFilled.tsx @@ -8,4 +8,4 @@ const IconWavingHandSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconWavingHandSharpFilled as default } +export default IconWavingHandSharpFilled diff --git a/src/IconWbAutoOutlined.tsx b/src/IconWbAutoOutlined.tsx index 39b58e0a8..61a065662 100644 --- a/src/IconWbAutoOutlined.tsx +++ b/src/IconWbAutoOutlined.tsx @@ -8,4 +8,4 @@ const IconWbAutoOutlined: React.FC = ({ ...props }) => ( ) -export { IconWbAutoOutlined as default } +export default IconWbAutoOutlined diff --git a/src/IconWbAutoOutlinedFilled.tsx b/src/IconWbAutoOutlinedFilled.tsx index e7b9dcd67..f768e9be6 100644 --- a/src/IconWbAutoOutlinedFilled.tsx +++ b/src/IconWbAutoOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconWbAutoOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconWbAutoOutlinedFilled as default } +export default IconWbAutoOutlinedFilled diff --git a/src/IconWbAutoRounded.tsx b/src/IconWbAutoRounded.tsx index 2f2c3d9c5..bf811be70 100644 --- a/src/IconWbAutoRounded.tsx +++ b/src/IconWbAutoRounded.tsx @@ -8,4 +8,4 @@ const IconWbAutoRounded: React.FC = ({ ...props }) => ( ) -export { IconWbAutoRounded as default } +export default IconWbAutoRounded diff --git a/src/IconWbAutoRoundedFilled.tsx b/src/IconWbAutoRoundedFilled.tsx index b70502c93..629f52349 100644 --- a/src/IconWbAutoRoundedFilled.tsx +++ b/src/IconWbAutoRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconWbAutoRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconWbAutoRoundedFilled as default } +export default IconWbAutoRoundedFilled diff --git a/src/IconWbAutoSharp.tsx b/src/IconWbAutoSharp.tsx index b10e52101..4966a8fcd 100644 --- a/src/IconWbAutoSharp.tsx +++ b/src/IconWbAutoSharp.tsx @@ -8,4 +8,4 @@ const IconWbAutoSharp: React.FC = ({ ...props }) => ( ) -export { IconWbAutoSharp as default } +export default IconWbAutoSharp diff --git a/src/IconWbAutoSharpFilled.tsx b/src/IconWbAutoSharpFilled.tsx index 067a79c6f..004c2d040 100644 --- a/src/IconWbAutoSharpFilled.tsx +++ b/src/IconWbAutoSharpFilled.tsx @@ -8,4 +8,4 @@ const IconWbAutoSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconWbAutoSharpFilled as default } +export default IconWbAutoSharpFilled diff --git a/src/IconWbIncandescentOutlined.tsx b/src/IconWbIncandescentOutlined.tsx index b638b238e..be6a0626a 100644 --- a/src/IconWbIncandescentOutlined.tsx +++ b/src/IconWbIncandescentOutlined.tsx @@ -8,4 +8,4 @@ const IconWbIncandescentOutlined: React.FC = ({ ...props }) => ( ) -export { IconWbIncandescentOutlined as default } +export default IconWbIncandescentOutlined diff --git a/src/IconWbIncandescentOutlinedFilled.tsx b/src/IconWbIncandescentOutlinedFilled.tsx index c2739917c..9abecb2fc 100644 --- a/src/IconWbIncandescentOutlinedFilled.tsx +++ b/src/IconWbIncandescentOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconWbIncandescentOutlinedFilled: React.FC = ({ ) -export { IconWbIncandescentOutlinedFilled as default } +export default IconWbIncandescentOutlinedFilled diff --git a/src/IconWbIncandescentRounded.tsx b/src/IconWbIncandescentRounded.tsx index 38bd1bb86..2af3866d5 100644 --- a/src/IconWbIncandescentRounded.tsx +++ b/src/IconWbIncandescentRounded.tsx @@ -8,4 +8,4 @@ const IconWbIncandescentRounded: React.FC = ({ ...props }) => ( ) -export { IconWbIncandescentRounded as default } +export default IconWbIncandescentRounded diff --git a/src/IconWbIncandescentRoundedFilled.tsx b/src/IconWbIncandescentRoundedFilled.tsx index bca56efd9..065da96da 100644 --- a/src/IconWbIncandescentRoundedFilled.tsx +++ b/src/IconWbIncandescentRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconWbIncandescentRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconWbIncandescentRoundedFilled as default } +export default IconWbIncandescentRoundedFilled diff --git a/src/IconWbIncandescentSharp.tsx b/src/IconWbIncandescentSharp.tsx index f869a3b6f..60f1d7dce 100644 --- a/src/IconWbIncandescentSharp.tsx +++ b/src/IconWbIncandescentSharp.tsx @@ -8,4 +8,4 @@ const IconWbIncandescentSharp: React.FC = ({ ...props }) => ( ) -export { IconWbIncandescentSharp as default } +export default IconWbIncandescentSharp diff --git a/src/IconWbIncandescentSharpFilled.tsx b/src/IconWbIncandescentSharpFilled.tsx index b00990c73..75027639b 100644 --- a/src/IconWbIncandescentSharpFilled.tsx +++ b/src/IconWbIncandescentSharpFilled.tsx @@ -8,4 +8,4 @@ const IconWbIncandescentSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconWbIncandescentSharpFilled as default } +export default IconWbIncandescentSharpFilled diff --git a/src/IconWbIridescentOutlined.tsx b/src/IconWbIridescentOutlined.tsx index 72f56aa34..6a8d85520 100644 --- a/src/IconWbIridescentOutlined.tsx +++ b/src/IconWbIridescentOutlined.tsx @@ -8,4 +8,4 @@ const IconWbIridescentOutlined: React.FC = ({ ...props }) => ( ) -export { IconWbIridescentOutlined as default } +export default IconWbIridescentOutlined diff --git a/src/IconWbIridescentOutlinedFilled.tsx b/src/IconWbIridescentOutlinedFilled.tsx index f1a475136..e13eb5f44 100644 --- a/src/IconWbIridescentOutlinedFilled.tsx +++ b/src/IconWbIridescentOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconWbIridescentOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconWbIridescentOutlinedFilled as default } +export default IconWbIridescentOutlinedFilled diff --git a/src/IconWbIridescentRounded.tsx b/src/IconWbIridescentRounded.tsx index b913bce77..1e16a5faf 100644 --- a/src/IconWbIridescentRounded.tsx +++ b/src/IconWbIridescentRounded.tsx @@ -8,4 +8,4 @@ const IconWbIridescentRounded: React.FC = ({ ...props }) => ( ) -export { IconWbIridescentRounded as default } +export default IconWbIridescentRounded diff --git a/src/IconWbIridescentRoundedFilled.tsx b/src/IconWbIridescentRoundedFilled.tsx index 17526292b..41333d389 100644 --- a/src/IconWbIridescentRoundedFilled.tsx +++ b/src/IconWbIridescentRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconWbIridescentRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconWbIridescentRoundedFilled as default } +export default IconWbIridescentRoundedFilled diff --git a/src/IconWbIridescentSharp.tsx b/src/IconWbIridescentSharp.tsx index be6521a38..0a67f8ddc 100644 --- a/src/IconWbIridescentSharp.tsx +++ b/src/IconWbIridescentSharp.tsx @@ -8,4 +8,4 @@ const IconWbIridescentSharp: React.FC = ({ ...props }) => ( ) -export { IconWbIridescentSharp as default } +export default IconWbIridescentSharp diff --git a/src/IconWbIridescentSharpFilled.tsx b/src/IconWbIridescentSharpFilled.tsx index f08628ca9..ba9e94faa 100644 --- a/src/IconWbIridescentSharpFilled.tsx +++ b/src/IconWbIridescentSharpFilled.tsx @@ -8,4 +8,4 @@ const IconWbIridescentSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconWbIridescentSharpFilled as default } +export default IconWbIridescentSharpFilled diff --git a/src/IconWbShadeOutlined.tsx b/src/IconWbShadeOutlined.tsx index ce8e7fb04..5f00627bc 100644 --- a/src/IconWbShadeOutlined.tsx +++ b/src/IconWbShadeOutlined.tsx @@ -8,4 +8,4 @@ const IconWbShadeOutlined: React.FC = ({ ...props }) => ( ) -export { IconWbShadeOutlined as default } +export default IconWbShadeOutlined diff --git a/src/IconWbShadeOutlinedFilled.tsx b/src/IconWbShadeOutlinedFilled.tsx index 94560e722..5691e4805 100644 --- a/src/IconWbShadeOutlinedFilled.tsx +++ b/src/IconWbShadeOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconWbShadeOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconWbShadeOutlinedFilled as default } +export default IconWbShadeOutlinedFilled diff --git a/src/IconWbShadeRounded.tsx b/src/IconWbShadeRounded.tsx index 739e828cf..b709ebd4c 100644 --- a/src/IconWbShadeRounded.tsx +++ b/src/IconWbShadeRounded.tsx @@ -8,4 +8,4 @@ const IconWbShadeRounded: React.FC = ({ ...props }) => ( ) -export { IconWbShadeRounded as default } +export default IconWbShadeRounded diff --git a/src/IconWbShadeRoundedFilled.tsx b/src/IconWbShadeRoundedFilled.tsx index bf9244505..1efe2534c 100644 --- a/src/IconWbShadeRoundedFilled.tsx +++ b/src/IconWbShadeRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconWbShadeRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconWbShadeRoundedFilled as default } +export default IconWbShadeRoundedFilled diff --git a/src/IconWbShadeSharp.tsx b/src/IconWbShadeSharp.tsx index 091f84445..635039a34 100644 --- a/src/IconWbShadeSharp.tsx +++ b/src/IconWbShadeSharp.tsx @@ -8,4 +8,4 @@ const IconWbShadeSharp: React.FC = ({ ...props }) => ( ) -export { IconWbShadeSharp as default } +export default IconWbShadeSharp diff --git a/src/IconWbShadeSharpFilled.tsx b/src/IconWbShadeSharpFilled.tsx index 38e3c35e0..beaec2438 100644 --- a/src/IconWbShadeSharpFilled.tsx +++ b/src/IconWbShadeSharpFilled.tsx @@ -8,4 +8,4 @@ const IconWbShadeSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconWbShadeSharpFilled as default } +export default IconWbShadeSharpFilled diff --git a/src/IconWbSunnyOutlined.tsx b/src/IconWbSunnyOutlined.tsx index dfccd42f4..6d27b1a7a 100644 --- a/src/IconWbSunnyOutlined.tsx +++ b/src/IconWbSunnyOutlined.tsx @@ -8,4 +8,4 @@ const IconWbSunnyOutlined: React.FC = ({ ...props }) => ( ) -export { IconWbSunnyOutlined as default } +export default IconWbSunnyOutlined diff --git a/src/IconWbSunnyOutlinedFilled.tsx b/src/IconWbSunnyOutlinedFilled.tsx index 599d5b58d..c6aec2bea 100644 --- a/src/IconWbSunnyOutlinedFilled.tsx +++ b/src/IconWbSunnyOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconWbSunnyOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconWbSunnyOutlinedFilled as default } +export default IconWbSunnyOutlinedFilled diff --git a/src/IconWbSunnyRounded.tsx b/src/IconWbSunnyRounded.tsx index 0bdce6c0a..7a8381a96 100644 --- a/src/IconWbSunnyRounded.tsx +++ b/src/IconWbSunnyRounded.tsx @@ -8,4 +8,4 @@ const IconWbSunnyRounded: React.FC = ({ ...props }) => ( ) -export { IconWbSunnyRounded as default } +export default IconWbSunnyRounded diff --git a/src/IconWbSunnyRoundedFilled.tsx b/src/IconWbSunnyRoundedFilled.tsx index fed4b655b..4ebc50f25 100644 --- a/src/IconWbSunnyRoundedFilled.tsx +++ b/src/IconWbSunnyRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconWbSunnyRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconWbSunnyRoundedFilled as default } +export default IconWbSunnyRoundedFilled diff --git a/src/IconWbSunnySharp.tsx b/src/IconWbSunnySharp.tsx index ec1d72ae7..b56cde4d0 100644 --- a/src/IconWbSunnySharp.tsx +++ b/src/IconWbSunnySharp.tsx @@ -8,4 +8,4 @@ const IconWbSunnySharp: React.FC = ({ ...props }) => ( ) -export { IconWbSunnySharp as default } +export default IconWbSunnySharp diff --git a/src/IconWbSunnySharpFilled.tsx b/src/IconWbSunnySharpFilled.tsx index 191927700..86c95bd9f 100644 --- a/src/IconWbSunnySharpFilled.tsx +++ b/src/IconWbSunnySharpFilled.tsx @@ -8,4 +8,4 @@ const IconWbSunnySharpFilled: React.FC = ({ ...props }) => ( ) -export { IconWbSunnySharpFilled as default } +export default IconWbSunnySharpFilled diff --git a/src/IconWbTwilightOutlined.tsx b/src/IconWbTwilightOutlined.tsx index 79882f5a3..b7f646f04 100644 --- a/src/IconWbTwilightOutlined.tsx +++ b/src/IconWbTwilightOutlined.tsx @@ -8,4 +8,4 @@ const IconWbTwilightOutlined: React.FC = ({ ...props }) => ( ) -export { IconWbTwilightOutlined as default } +export default IconWbTwilightOutlined diff --git a/src/IconWbTwilightOutlinedFilled.tsx b/src/IconWbTwilightOutlinedFilled.tsx index 728b3a264..73b53c541 100644 --- a/src/IconWbTwilightOutlinedFilled.tsx +++ b/src/IconWbTwilightOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconWbTwilightOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconWbTwilightOutlinedFilled as default } +export default IconWbTwilightOutlinedFilled diff --git a/src/IconWbTwilightRounded.tsx b/src/IconWbTwilightRounded.tsx index a0a646460..0118566af 100644 --- a/src/IconWbTwilightRounded.tsx +++ b/src/IconWbTwilightRounded.tsx @@ -8,4 +8,4 @@ const IconWbTwilightRounded: React.FC = ({ ...props }) => ( ) -export { IconWbTwilightRounded as default } +export default IconWbTwilightRounded diff --git a/src/IconWbTwilightRoundedFilled.tsx b/src/IconWbTwilightRoundedFilled.tsx index 21518e802..cd00f2fbe 100644 --- a/src/IconWbTwilightRoundedFilled.tsx +++ b/src/IconWbTwilightRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconWbTwilightRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconWbTwilightRoundedFilled as default } +export default IconWbTwilightRoundedFilled diff --git a/src/IconWbTwilightSharp.tsx b/src/IconWbTwilightSharp.tsx index 85b7d5104..9e3fcdb2f 100644 --- a/src/IconWbTwilightSharp.tsx +++ b/src/IconWbTwilightSharp.tsx @@ -8,4 +8,4 @@ const IconWbTwilightSharp: React.FC = ({ ...props }) => ( ) -export { IconWbTwilightSharp as default } +export default IconWbTwilightSharp diff --git a/src/IconWbTwilightSharpFilled.tsx b/src/IconWbTwilightSharpFilled.tsx index 8b190af28..210f786b7 100644 --- a/src/IconWbTwilightSharpFilled.tsx +++ b/src/IconWbTwilightSharpFilled.tsx @@ -8,4 +8,4 @@ const IconWbTwilightSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconWbTwilightSharpFilled as default } +export default IconWbTwilightSharpFilled diff --git a/src/IconWcOutlined.tsx b/src/IconWcOutlined.tsx index 435dfe404..67073c763 100644 --- a/src/IconWcOutlined.tsx +++ b/src/IconWcOutlined.tsx @@ -8,4 +8,4 @@ const IconWcOutlined: React.FC = ({ ...props }) => ( ) -export { IconWcOutlined as default } +export default IconWcOutlined diff --git a/src/IconWcOutlinedFilled.tsx b/src/IconWcOutlinedFilled.tsx index 244161fa3..bececd17c 100644 --- a/src/IconWcOutlinedFilled.tsx +++ b/src/IconWcOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconWcOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconWcOutlinedFilled as default } +export default IconWcOutlinedFilled diff --git a/src/IconWcRounded.tsx b/src/IconWcRounded.tsx index 8575d4535..5009ae36b 100644 --- a/src/IconWcRounded.tsx +++ b/src/IconWcRounded.tsx @@ -8,4 +8,4 @@ const IconWcRounded: React.FC = ({ ...props }) => ( ) -export { IconWcRounded as default } +export default IconWcRounded diff --git a/src/IconWcRoundedFilled.tsx b/src/IconWcRoundedFilled.tsx index 8feb6933c..fc7fb9441 100644 --- a/src/IconWcRoundedFilled.tsx +++ b/src/IconWcRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconWcRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconWcRoundedFilled as default } +export default IconWcRoundedFilled diff --git a/src/IconWcSharp.tsx b/src/IconWcSharp.tsx index deda852d3..1d0342d21 100644 --- a/src/IconWcSharp.tsx +++ b/src/IconWcSharp.tsx @@ -8,4 +8,4 @@ const IconWcSharp: React.FC = ({ ...props }) => ( ) -export { IconWcSharp as default } +export default IconWcSharp diff --git a/src/IconWcSharpFilled.tsx b/src/IconWcSharpFilled.tsx index 8b637af1a..d9d166643 100644 --- a/src/IconWcSharpFilled.tsx +++ b/src/IconWcSharpFilled.tsx @@ -8,4 +8,4 @@ const IconWcSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconWcSharpFilled as default } +export default IconWcSharpFilled diff --git a/src/IconWeatherHailOutlined.tsx b/src/IconWeatherHailOutlined.tsx index e299f3234..ac5665b26 100644 --- a/src/IconWeatherHailOutlined.tsx +++ b/src/IconWeatherHailOutlined.tsx @@ -8,4 +8,4 @@ const IconWeatherHailOutlined: React.FC = ({ ...props }) => ( ) -export { IconWeatherHailOutlined as default } +export default IconWeatherHailOutlined diff --git a/src/IconWeatherHailOutlinedFilled.tsx b/src/IconWeatherHailOutlinedFilled.tsx index 664436410..a1095b77d 100644 --- a/src/IconWeatherHailOutlinedFilled.tsx +++ b/src/IconWeatherHailOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconWeatherHailOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconWeatherHailOutlinedFilled as default } +export default IconWeatherHailOutlinedFilled diff --git a/src/IconWeatherHailRounded.tsx b/src/IconWeatherHailRounded.tsx index a73dbc82f..be095238c 100644 --- a/src/IconWeatherHailRounded.tsx +++ b/src/IconWeatherHailRounded.tsx @@ -8,4 +8,4 @@ const IconWeatherHailRounded: React.FC = ({ ...props }) => ( ) -export { IconWeatherHailRounded as default } +export default IconWeatherHailRounded diff --git a/src/IconWeatherHailRoundedFilled.tsx b/src/IconWeatherHailRoundedFilled.tsx index bc3b3b879..9001c6b8f 100644 --- a/src/IconWeatherHailRoundedFilled.tsx +++ b/src/IconWeatherHailRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconWeatherHailRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconWeatherHailRoundedFilled as default } +export default IconWeatherHailRoundedFilled diff --git a/src/IconWeatherHailSharp.tsx b/src/IconWeatherHailSharp.tsx index d56e2d62e..174440720 100644 --- a/src/IconWeatherHailSharp.tsx +++ b/src/IconWeatherHailSharp.tsx @@ -8,4 +8,4 @@ const IconWeatherHailSharp: React.FC = ({ ...props }) => ( ) -export { IconWeatherHailSharp as default } +export default IconWeatherHailSharp diff --git a/src/IconWeatherHailSharpFilled.tsx b/src/IconWeatherHailSharpFilled.tsx index c13d2c7b1..ace373571 100644 --- a/src/IconWeatherHailSharpFilled.tsx +++ b/src/IconWeatherHailSharpFilled.tsx @@ -8,4 +8,4 @@ const IconWeatherHailSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconWeatherHailSharpFilled as default } +export default IconWeatherHailSharpFilled diff --git a/src/IconWeatherMixOutlined.tsx b/src/IconWeatherMixOutlined.tsx index b5ce80f12..3efab6ec9 100644 --- a/src/IconWeatherMixOutlined.tsx +++ b/src/IconWeatherMixOutlined.tsx @@ -8,4 +8,4 @@ const IconWeatherMixOutlined: React.FC = ({ ...props }) => ( ) -export { IconWeatherMixOutlined as default } +export default IconWeatherMixOutlined diff --git a/src/IconWeatherMixOutlinedFilled.tsx b/src/IconWeatherMixOutlinedFilled.tsx index 885b0be0f..8467d8e95 100644 --- a/src/IconWeatherMixOutlinedFilled.tsx +++ b/src/IconWeatherMixOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconWeatherMixOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconWeatherMixOutlinedFilled as default } +export default IconWeatherMixOutlinedFilled diff --git a/src/IconWeatherMixRounded.tsx b/src/IconWeatherMixRounded.tsx index 813fefb9b..909de9de6 100644 --- a/src/IconWeatherMixRounded.tsx +++ b/src/IconWeatherMixRounded.tsx @@ -8,4 +8,4 @@ const IconWeatherMixRounded: React.FC = ({ ...props }) => ( ) -export { IconWeatherMixRounded as default } +export default IconWeatherMixRounded diff --git a/src/IconWeatherMixRoundedFilled.tsx b/src/IconWeatherMixRoundedFilled.tsx index e119254f9..ae4edc459 100644 --- a/src/IconWeatherMixRoundedFilled.tsx +++ b/src/IconWeatherMixRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconWeatherMixRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconWeatherMixRoundedFilled as default } +export default IconWeatherMixRoundedFilled diff --git a/src/IconWeatherMixSharp.tsx b/src/IconWeatherMixSharp.tsx index 3411ed32a..d284bef94 100644 --- a/src/IconWeatherMixSharp.tsx +++ b/src/IconWeatherMixSharp.tsx @@ -8,4 +8,4 @@ const IconWeatherMixSharp: React.FC = ({ ...props }) => ( ) -export { IconWeatherMixSharp as default } +export default IconWeatherMixSharp diff --git a/src/IconWeatherMixSharpFilled.tsx b/src/IconWeatherMixSharpFilled.tsx index 7f9352bf6..3e03fe1c7 100644 --- a/src/IconWeatherMixSharpFilled.tsx +++ b/src/IconWeatherMixSharpFilled.tsx @@ -8,4 +8,4 @@ const IconWeatherMixSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconWeatherMixSharpFilled as default } +export default IconWeatherMixSharpFilled diff --git a/src/IconWeatherSnowyOutlined.tsx b/src/IconWeatherSnowyOutlined.tsx index 58faf4683..b1088aec7 100644 --- a/src/IconWeatherSnowyOutlined.tsx +++ b/src/IconWeatherSnowyOutlined.tsx @@ -8,4 +8,4 @@ const IconWeatherSnowyOutlined: React.FC = ({ ...props }) => ( ) -export { IconWeatherSnowyOutlined as default } +export default IconWeatherSnowyOutlined diff --git a/src/IconWeatherSnowyOutlinedFilled.tsx b/src/IconWeatherSnowyOutlinedFilled.tsx index 241148480..5e3115ab4 100644 --- a/src/IconWeatherSnowyOutlinedFilled.tsx +++ b/src/IconWeatherSnowyOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconWeatherSnowyOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconWeatherSnowyOutlinedFilled as default } +export default IconWeatherSnowyOutlinedFilled diff --git a/src/IconWeatherSnowyRounded.tsx b/src/IconWeatherSnowyRounded.tsx index cf48520e2..fec7fb4f5 100644 --- a/src/IconWeatherSnowyRounded.tsx +++ b/src/IconWeatherSnowyRounded.tsx @@ -8,4 +8,4 @@ const IconWeatherSnowyRounded: React.FC = ({ ...props }) => ( ) -export { IconWeatherSnowyRounded as default } +export default IconWeatherSnowyRounded diff --git a/src/IconWeatherSnowyRoundedFilled.tsx b/src/IconWeatherSnowyRoundedFilled.tsx index 9b1bdb1be..fc10c6051 100644 --- a/src/IconWeatherSnowyRoundedFilled.tsx +++ b/src/IconWeatherSnowyRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconWeatherSnowyRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconWeatherSnowyRoundedFilled as default } +export default IconWeatherSnowyRoundedFilled diff --git a/src/IconWeatherSnowySharp.tsx b/src/IconWeatherSnowySharp.tsx index 495da8eb5..f4d17d8b8 100644 --- a/src/IconWeatherSnowySharp.tsx +++ b/src/IconWeatherSnowySharp.tsx @@ -8,4 +8,4 @@ const IconWeatherSnowySharp: React.FC = ({ ...props }) => ( ) -export { IconWeatherSnowySharp as default } +export default IconWeatherSnowySharp diff --git a/src/IconWeatherSnowySharpFilled.tsx b/src/IconWeatherSnowySharpFilled.tsx index a2fd30456..dc87c72e9 100644 --- a/src/IconWeatherSnowySharpFilled.tsx +++ b/src/IconWeatherSnowySharpFilled.tsx @@ -8,4 +8,4 @@ const IconWeatherSnowySharpFilled: React.FC = ({ ...props }) => ( ) -export { IconWeatherSnowySharpFilled as default } +export default IconWeatherSnowySharpFilled diff --git a/src/IconWebAssetOffOutlined.tsx b/src/IconWebAssetOffOutlined.tsx index 2d00b1d52..cb552e1f6 100644 --- a/src/IconWebAssetOffOutlined.tsx +++ b/src/IconWebAssetOffOutlined.tsx @@ -8,4 +8,4 @@ const IconWebAssetOffOutlined: React.FC = ({ ...props }) => ( ) -export { IconWebAssetOffOutlined as default } +export default IconWebAssetOffOutlined diff --git a/src/IconWebAssetOffOutlinedFilled.tsx b/src/IconWebAssetOffOutlinedFilled.tsx index c37fe90a7..42deed046 100644 --- a/src/IconWebAssetOffOutlinedFilled.tsx +++ b/src/IconWebAssetOffOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconWebAssetOffOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconWebAssetOffOutlinedFilled as default } +export default IconWebAssetOffOutlinedFilled diff --git a/src/IconWebAssetOffRounded.tsx b/src/IconWebAssetOffRounded.tsx index 36f65f987..374944568 100644 --- a/src/IconWebAssetOffRounded.tsx +++ b/src/IconWebAssetOffRounded.tsx @@ -8,4 +8,4 @@ const IconWebAssetOffRounded: React.FC = ({ ...props }) => ( ) -export { IconWebAssetOffRounded as default } +export default IconWebAssetOffRounded diff --git a/src/IconWebAssetOffRoundedFilled.tsx b/src/IconWebAssetOffRoundedFilled.tsx index 8bbabffd9..718bd9386 100644 --- a/src/IconWebAssetOffRoundedFilled.tsx +++ b/src/IconWebAssetOffRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconWebAssetOffRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconWebAssetOffRoundedFilled as default } +export default IconWebAssetOffRoundedFilled diff --git a/src/IconWebAssetOffSharp.tsx b/src/IconWebAssetOffSharp.tsx index cc1f28cd1..69ed8cdcd 100644 --- a/src/IconWebAssetOffSharp.tsx +++ b/src/IconWebAssetOffSharp.tsx @@ -8,4 +8,4 @@ const IconWebAssetOffSharp: React.FC = ({ ...props }) => ( ) -export { IconWebAssetOffSharp as default } +export default IconWebAssetOffSharp diff --git a/src/IconWebAssetOffSharpFilled.tsx b/src/IconWebAssetOffSharpFilled.tsx index fb1a9ae8a..e7ddbd886 100644 --- a/src/IconWebAssetOffSharpFilled.tsx +++ b/src/IconWebAssetOffSharpFilled.tsx @@ -8,4 +8,4 @@ const IconWebAssetOffSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconWebAssetOffSharpFilled as default } +export default IconWebAssetOffSharpFilled diff --git a/src/IconWebAssetOutlined.tsx b/src/IconWebAssetOutlined.tsx index 597caf347..8c5caf633 100644 --- a/src/IconWebAssetOutlined.tsx +++ b/src/IconWebAssetOutlined.tsx @@ -8,4 +8,4 @@ const IconWebAssetOutlined: React.FC = ({ ...props }) => ( ) -export { IconWebAssetOutlined as default } +export default IconWebAssetOutlined diff --git a/src/IconWebAssetOutlinedFilled.tsx b/src/IconWebAssetOutlinedFilled.tsx index 308aa7639..18a84f8e9 100644 --- a/src/IconWebAssetOutlinedFilled.tsx +++ b/src/IconWebAssetOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconWebAssetOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconWebAssetOutlinedFilled as default } +export default IconWebAssetOutlinedFilled diff --git a/src/IconWebAssetRounded.tsx b/src/IconWebAssetRounded.tsx index 64d6c1bde..9a8ecc822 100644 --- a/src/IconWebAssetRounded.tsx +++ b/src/IconWebAssetRounded.tsx @@ -8,4 +8,4 @@ const IconWebAssetRounded: React.FC = ({ ...props }) => ( ) -export { IconWebAssetRounded as default } +export default IconWebAssetRounded diff --git a/src/IconWebAssetRoundedFilled.tsx b/src/IconWebAssetRoundedFilled.tsx index b43cf2cf5..9c502bc9b 100644 --- a/src/IconWebAssetRoundedFilled.tsx +++ b/src/IconWebAssetRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconWebAssetRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconWebAssetRoundedFilled as default } +export default IconWebAssetRoundedFilled diff --git a/src/IconWebAssetSharp.tsx b/src/IconWebAssetSharp.tsx index ea0d0d8f9..42d052a3b 100644 --- a/src/IconWebAssetSharp.tsx +++ b/src/IconWebAssetSharp.tsx @@ -8,4 +8,4 @@ const IconWebAssetSharp: React.FC = ({ ...props }) => ( ) -export { IconWebAssetSharp as default } +export default IconWebAssetSharp diff --git a/src/IconWebAssetSharpFilled.tsx b/src/IconWebAssetSharpFilled.tsx index 249f0ab21..0b1476127 100644 --- a/src/IconWebAssetSharpFilled.tsx +++ b/src/IconWebAssetSharpFilled.tsx @@ -8,4 +8,4 @@ const IconWebAssetSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconWebAssetSharpFilled as default } +export default IconWebAssetSharpFilled diff --git a/src/IconWebOutlined.tsx b/src/IconWebOutlined.tsx index d6727b005..545c1317a 100644 --- a/src/IconWebOutlined.tsx +++ b/src/IconWebOutlined.tsx @@ -8,4 +8,4 @@ const IconWebOutlined: React.FC = ({ ...props }) => ( ) -export { IconWebOutlined as default } +export default IconWebOutlined diff --git a/src/IconWebOutlinedFilled.tsx b/src/IconWebOutlinedFilled.tsx index 090fb79f6..be62951cb 100644 --- a/src/IconWebOutlinedFilled.tsx +++ b/src/IconWebOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconWebOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconWebOutlinedFilled as default } +export default IconWebOutlinedFilled diff --git a/src/IconWebRounded.tsx b/src/IconWebRounded.tsx index b8cb1f56f..f4eabeaba 100644 --- a/src/IconWebRounded.tsx +++ b/src/IconWebRounded.tsx @@ -8,4 +8,4 @@ const IconWebRounded: React.FC = ({ ...props }) => ( ) -export { IconWebRounded as default } +export default IconWebRounded diff --git a/src/IconWebRoundedFilled.tsx b/src/IconWebRoundedFilled.tsx index a1b456d6c..e8f3ff489 100644 --- a/src/IconWebRoundedFilled.tsx +++ b/src/IconWebRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconWebRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconWebRoundedFilled as default } +export default IconWebRoundedFilled diff --git a/src/IconWebSharp.tsx b/src/IconWebSharp.tsx index 2fd6f1435..6e0a18cba 100644 --- a/src/IconWebSharp.tsx +++ b/src/IconWebSharp.tsx @@ -8,4 +8,4 @@ const IconWebSharp: React.FC = ({ ...props }) => ( ) -export { IconWebSharp as default } +export default IconWebSharp diff --git a/src/IconWebSharpFilled.tsx b/src/IconWebSharpFilled.tsx index 6f183b567..ac7a9dc8e 100644 --- a/src/IconWebSharpFilled.tsx +++ b/src/IconWebSharpFilled.tsx @@ -8,4 +8,4 @@ const IconWebSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconWebSharpFilled as default } +export default IconWebSharpFilled diff --git a/src/IconWebStoriesOutlined.tsx b/src/IconWebStoriesOutlined.tsx index c539514ff..5bc2da666 100644 --- a/src/IconWebStoriesOutlined.tsx +++ b/src/IconWebStoriesOutlined.tsx @@ -8,4 +8,4 @@ const IconWebStoriesOutlined: React.FC = ({ ...props }) => ( ) -export { IconWebStoriesOutlined as default } +export default IconWebStoriesOutlined diff --git a/src/IconWebStoriesOutlinedFilled.tsx b/src/IconWebStoriesOutlinedFilled.tsx index eefce89b8..3b3728723 100644 --- a/src/IconWebStoriesOutlinedFilled.tsx +++ b/src/IconWebStoriesOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconWebStoriesOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconWebStoriesOutlinedFilled as default } +export default IconWebStoriesOutlinedFilled diff --git a/src/IconWebStoriesRounded.tsx b/src/IconWebStoriesRounded.tsx index 52bc5a9c9..aa52437fd 100644 --- a/src/IconWebStoriesRounded.tsx +++ b/src/IconWebStoriesRounded.tsx @@ -8,4 +8,4 @@ const IconWebStoriesRounded: React.FC = ({ ...props }) => ( ) -export { IconWebStoriesRounded as default } +export default IconWebStoriesRounded diff --git a/src/IconWebStoriesRoundedFilled.tsx b/src/IconWebStoriesRoundedFilled.tsx index 0ef9ab14f..5ba50e33e 100644 --- a/src/IconWebStoriesRoundedFilled.tsx +++ b/src/IconWebStoriesRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconWebStoriesRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconWebStoriesRoundedFilled as default } +export default IconWebStoriesRoundedFilled diff --git a/src/IconWebStoriesSharp.tsx b/src/IconWebStoriesSharp.tsx index 61fcbdaf4..13ed4dadc 100644 --- a/src/IconWebStoriesSharp.tsx +++ b/src/IconWebStoriesSharp.tsx @@ -8,4 +8,4 @@ const IconWebStoriesSharp: React.FC = ({ ...props }) => ( ) -export { IconWebStoriesSharp as default } +export default IconWebStoriesSharp diff --git a/src/IconWebStoriesSharpFilled.tsx b/src/IconWebStoriesSharpFilled.tsx index 8520114a6..35f475eb4 100644 --- a/src/IconWebStoriesSharpFilled.tsx +++ b/src/IconWebStoriesSharpFilled.tsx @@ -8,4 +8,4 @@ const IconWebStoriesSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconWebStoriesSharpFilled as default } +export default IconWebStoriesSharpFilled diff --git a/src/IconWebTrafficOutlined.tsx b/src/IconWebTrafficOutlined.tsx index b201aa3f7..f53c19e13 100644 --- a/src/IconWebTrafficOutlined.tsx +++ b/src/IconWebTrafficOutlined.tsx @@ -8,4 +8,4 @@ const IconWebTrafficOutlined: React.FC = ({ ...props }) => ( ) -export { IconWebTrafficOutlined as default } +export default IconWebTrafficOutlined diff --git a/src/IconWebTrafficOutlinedFilled.tsx b/src/IconWebTrafficOutlinedFilled.tsx index 843411d17..f27f72d53 100644 --- a/src/IconWebTrafficOutlinedFilled.tsx +++ b/src/IconWebTrafficOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconWebTrafficOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconWebTrafficOutlinedFilled as default } +export default IconWebTrafficOutlinedFilled diff --git a/src/IconWebTrafficRounded.tsx b/src/IconWebTrafficRounded.tsx index 7805e10fb..da5691763 100644 --- a/src/IconWebTrafficRounded.tsx +++ b/src/IconWebTrafficRounded.tsx @@ -8,4 +8,4 @@ const IconWebTrafficRounded: React.FC = ({ ...props }) => ( ) -export { IconWebTrafficRounded as default } +export default IconWebTrafficRounded diff --git a/src/IconWebTrafficRoundedFilled.tsx b/src/IconWebTrafficRoundedFilled.tsx index d99fbb6e2..d7cf866fe 100644 --- a/src/IconWebTrafficRoundedFilled.tsx +++ b/src/IconWebTrafficRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconWebTrafficRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconWebTrafficRoundedFilled as default } +export default IconWebTrafficRoundedFilled diff --git a/src/IconWebTrafficSharp.tsx b/src/IconWebTrafficSharp.tsx index 317894b48..f2488df8a 100644 --- a/src/IconWebTrafficSharp.tsx +++ b/src/IconWebTrafficSharp.tsx @@ -8,4 +8,4 @@ const IconWebTrafficSharp: React.FC = ({ ...props }) => ( ) -export { IconWebTrafficSharp as default } +export default IconWebTrafficSharp diff --git a/src/IconWebTrafficSharpFilled.tsx b/src/IconWebTrafficSharpFilled.tsx index 74335a282..a0d5d8580 100644 --- a/src/IconWebTrafficSharpFilled.tsx +++ b/src/IconWebTrafficSharpFilled.tsx @@ -8,4 +8,4 @@ const IconWebTrafficSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconWebTrafficSharpFilled as default } +export default IconWebTrafficSharpFilled diff --git a/src/IconWebhookOutlined.tsx b/src/IconWebhookOutlined.tsx index 41b282589..a20ca897a 100644 --- a/src/IconWebhookOutlined.tsx +++ b/src/IconWebhookOutlined.tsx @@ -8,4 +8,4 @@ const IconWebhookOutlined: React.FC = ({ ...props }) => ( ) -export { IconWebhookOutlined as default } +export default IconWebhookOutlined diff --git a/src/IconWebhookOutlinedFilled.tsx b/src/IconWebhookOutlinedFilled.tsx index 7e97ff25d..57949464f 100644 --- a/src/IconWebhookOutlinedFilled.tsx +++ b/src/IconWebhookOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconWebhookOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconWebhookOutlinedFilled as default } +export default IconWebhookOutlinedFilled diff --git a/src/IconWebhookRounded.tsx b/src/IconWebhookRounded.tsx index 0dc7954da..2f8c35e61 100644 --- a/src/IconWebhookRounded.tsx +++ b/src/IconWebhookRounded.tsx @@ -8,4 +8,4 @@ const IconWebhookRounded: React.FC = ({ ...props }) => ( ) -export { IconWebhookRounded as default } +export default IconWebhookRounded diff --git a/src/IconWebhookRoundedFilled.tsx b/src/IconWebhookRoundedFilled.tsx index 5fa8a6035..7049efa31 100644 --- a/src/IconWebhookRoundedFilled.tsx +++ b/src/IconWebhookRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconWebhookRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconWebhookRoundedFilled as default } +export default IconWebhookRoundedFilled diff --git a/src/IconWebhookSharp.tsx b/src/IconWebhookSharp.tsx index 33f110fe7..acecb14c2 100644 --- a/src/IconWebhookSharp.tsx +++ b/src/IconWebhookSharp.tsx @@ -8,4 +8,4 @@ const IconWebhookSharp: React.FC = ({ ...props }) => ( ) -export { IconWebhookSharp as default } +export default IconWebhookSharp diff --git a/src/IconWebhookSharpFilled.tsx b/src/IconWebhookSharpFilled.tsx index 40defb749..d7e0710d1 100644 --- a/src/IconWebhookSharpFilled.tsx +++ b/src/IconWebhookSharpFilled.tsx @@ -8,4 +8,4 @@ const IconWebhookSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconWebhookSharpFilled as default } +export default IconWebhookSharpFilled diff --git a/src/IconWeekendOutlined.tsx b/src/IconWeekendOutlined.tsx index 78bc31f0e..fb874964e 100644 --- a/src/IconWeekendOutlined.tsx +++ b/src/IconWeekendOutlined.tsx @@ -8,4 +8,4 @@ const IconWeekendOutlined: React.FC = ({ ...props }) => ( ) -export { IconWeekendOutlined as default } +export default IconWeekendOutlined diff --git a/src/IconWeekendOutlinedFilled.tsx b/src/IconWeekendOutlinedFilled.tsx index a0269ae13..e85aee0b6 100644 --- a/src/IconWeekendOutlinedFilled.tsx +++ b/src/IconWeekendOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconWeekendOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconWeekendOutlinedFilled as default } +export default IconWeekendOutlinedFilled diff --git a/src/IconWeekendRounded.tsx b/src/IconWeekendRounded.tsx index f7b8c0095..52f50c5ad 100644 --- a/src/IconWeekendRounded.tsx +++ b/src/IconWeekendRounded.tsx @@ -8,4 +8,4 @@ const IconWeekendRounded: React.FC = ({ ...props }) => ( ) -export { IconWeekendRounded as default } +export default IconWeekendRounded diff --git a/src/IconWeekendRoundedFilled.tsx b/src/IconWeekendRoundedFilled.tsx index 50d41b186..715fb7331 100644 --- a/src/IconWeekendRoundedFilled.tsx +++ b/src/IconWeekendRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconWeekendRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconWeekendRoundedFilled as default } +export default IconWeekendRoundedFilled diff --git a/src/IconWeekendSharp.tsx b/src/IconWeekendSharp.tsx index 9c645092e..6cf9b9d4a 100644 --- a/src/IconWeekendSharp.tsx +++ b/src/IconWeekendSharp.tsx @@ -8,4 +8,4 @@ const IconWeekendSharp: React.FC = ({ ...props }) => ( ) -export { IconWeekendSharp as default } +export default IconWeekendSharp diff --git a/src/IconWeekendSharpFilled.tsx b/src/IconWeekendSharpFilled.tsx index 33b2112a9..de3846b3c 100644 --- a/src/IconWeekendSharpFilled.tsx +++ b/src/IconWeekendSharpFilled.tsx @@ -8,4 +8,4 @@ const IconWeekendSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconWeekendSharpFilled as default } +export default IconWeekendSharpFilled diff --git a/src/IconWeightOutlined.tsx b/src/IconWeightOutlined.tsx index 3aba7a5dc..0ca132d8d 100644 --- a/src/IconWeightOutlined.tsx +++ b/src/IconWeightOutlined.tsx @@ -8,4 +8,4 @@ const IconWeightOutlined: React.FC = ({ ...props }) => ( ) -export { IconWeightOutlined as default } +export default IconWeightOutlined diff --git a/src/IconWeightOutlinedFilled.tsx b/src/IconWeightOutlinedFilled.tsx index 9c415f3f8..bd91e8b46 100644 --- a/src/IconWeightOutlinedFilled.tsx +++ b/src/IconWeightOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconWeightOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconWeightOutlinedFilled as default } +export default IconWeightOutlinedFilled diff --git a/src/IconWeightRounded.tsx b/src/IconWeightRounded.tsx index 26a488b44..9123aff7b 100644 --- a/src/IconWeightRounded.tsx +++ b/src/IconWeightRounded.tsx @@ -8,4 +8,4 @@ const IconWeightRounded: React.FC = ({ ...props }) => ( ) -export { IconWeightRounded as default } +export default IconWeightRounded diff --git a/src/IconWeightRoundedFilled.tsx b/src/IconWeightRoundedFilled.tsx index 9823be2bf..52d1279a7 100644 --- a/src/IconWeightRoundedFilled.tsx +++ b/src/IconWeightRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconWeightRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconWeightRoundedFilled as default } +export default IconWeightRoundedFilled diff --git a/src/IconWeightSharp.tsx b/src/IconWeightSharp.tsx index 4700b06a4..a193272a5 100644 --- a/src/IconWeightSharp.tsx +++ b/src/IconWeightSharp.tsx @@ -8,4 +8,4 @@ const IconWeightSharp: React.FC = ({ ...props }) => ( ) -export { IconWeightSharp as default } +export default IconWeightSharp diff --git a/src/IconWeightSharpFilled.tsx b/src/IconWeightSharpFilled.tsx index b3a04c8d9..9011907ac 100644 --- a/src/IconWeightSharpFilled.tsx +++ b/src/IconWeightSharpFilled.tsx @@ -8,4 +8,4 @@ const IconWeightSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconWeightSharpFilled as default } +export default IconWeightSharpFilled diff --git a/src/IconWestOutlined.tsx b/src/IconWestOutlined.tsx index 2b25f6ee0..abea2d320 100644 --- a/src/IconWestOutlined.tsx +++ b/src/IconWestOutlined.tsx @@ -8,4 +8,4 @@ const IconWestOutlined: React.FC = ({ ...props }) => ( ) -export { IconWestOutlined as default } +export default IconWestOutlined diff --git a/src/IconWestOutlinedFilled.tsx b/src/IconWestOutlinedFilled.tsx index 166098ef7..9195149fc 100644 --- a/src/IconWestOutlinedFilled.tsx +++ b/src/IconWestOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconWestOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconWestOutlinedFilled as default } +export default IconWestOutlinedFilled diff --git a/src/IconWestRounded.tsx b/src/IconWestRounded.tsx index bf80ffd1a..c5355532c 100644 --- a/src/IconWestRounded.tsx +++ b/src/IconWestRounded.tsx @@ -8,4 +8,4 @@ const IconWestRounded: React.FC = ({ ...props }) => ( ) -export { IconWestRounded as default } +export default IconWestRounded diff --git a/src/IconWestRoundedFilled.tsx b/src/IconWestRoundedFilled.tsx index 0618aba50..f5aa6f231 100644 --- a/src/IconWestRoundedFilled.tsx +++ b/src/IconWestRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconWestRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconWestRoundedFilled as default } +export default IconWestRoundedFilled diff --git a/src/IconWestSharp.tsx b/src/IconWestSharp.tsx index 6e464c299..869cea859 100644 --- a/src/IconWestSharp.tsx +++ b/src/IconWestSharp.tsx @@ -8,4 +8,4 @@ const IconWestSharp: React.FC = ({ ...props }) => ( ) -export { IconWestSharp as default } +export default IconWestSharp diff --git a/src/IconWestSharpFilled.tsx b/src/IconWestSharpFilled.tsx index 305828b25..019c614b2 100644 --- a/src/IconWestSharpFilled.tsx +++ b/src/IconWestSharpFilled.tsx @@ -8,4 +8,4 @@ const IconWestSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconWestSharpFilled as default } +export default IconWestSharpFilled diff --git a/src/IconWhatshotOutlined.tsx b/src/IconWhatshotOutlined.tsx index 884303358..f84f8cd2a 100644 --- a/src/IconWhatshotOutlined.tsx +++ b/src/IconWhatshotOutlined.tsx @@ -8,4 +8,4 @@ const IconWhatshotOutlined: React.FC = ({ ...props }) => ( ) -export { IconWhatshotOutlined as default } +export default IconWhatshotOutlined diff --git a/src/IconWhatshotOutlinedFilled.tsx b/src/IconWhatshotOutlinedFilled.tsx index 50964b407..6bd62b7a5 100644 --- a/src/IconWhatshotOutlinedFilled.tsx +++ b/src/IconWhatshotOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconWhatshotOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconWhatshotOutlinedFilled as default } +export default IconWhatshotOutlinedFilled diff --git a/src/IconWhatshotRounded.tsx b/src/IconWhatshotRounded.tsx index 050cc5dac..79bfa717c 100644 --- a/src/IconWhatshotRounded.tsx +++ b/src/IconWhatshotRounded.tsx @@ -8,4 +8,4 @@ const IconWhatshotRounded: React.FC = ({ ...props }) => ( ) -export { IconWhatshotRounded as default } +export default IconWhatshotRounded diff --git a/src/IconWhatshotRoundedFilled.tsx b/src/IconWhatshotRoundedFilled.tsx index da21fd452..f02c71f8d 100644 --- a/src/IconWhatshotRoundedFilled.tsx +++ b/src/IconWhatshotRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconWhatshotRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconWhatshotRoundedFilled as default } +export default IconWhatshotRoundedFilled diff --git a/src/IconWhatshotSharp.tsx b/src/IconWhatshotSharp.tsx index 56ee5811c..bae9d7aa8 100644 --- a/src/IconWhatshotSharp.tsx +++ b/src/IconWhatshotSharp.tsx @@ -8,4 +8,4 @@ const IconWhatshotSharp: React.FC = ({ ...props }) => ( ) -export { IconWhatshotSharp as default } +export default IconWhatshotSharp diff --git a/src/IconWhatshotSharpFilled.tsx b/src/IconWhatshotSharpFilled.tsx index 459fc2704..25c914d36 100644 --- a/src/IconWhatshotSharpFilled.tsx +++ b/src/IconWhatshotSharpFilled.tsx @@ -8,4 +8,4 @@ const IconWhatshotSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconWhatshotSharpFilled as default } +export default IconWhatshotSharpFilled diff --git a/src/IconWheelchairPickupOutlined.tsx b/src/IconWheelchairPickupOutlined.tsx index 0874e252d..78be5bfae 100644 --- a/src/IconWheelchairPickupOutlined.tsx +++ b/src/IconWheelchairPickupOutlined.tsx @@ -8,4 +8,4 @@ const IconWheelchairPickupOutlined: React.FC = ({ ...props }) => ( ) -export { IconWheelchairPickupOutlined as default } +export default IconWheelchairPickupOutlined diff --git a/src/IconWheelchairPickupOutlinedFilled.tsx b/src/IconWheelchairPickupOutlinedFilled.tsx index e615cf91e..193ecaf19 100644 --- a/src/IconWheelchairPickupOutlinedFilled.tsx +++ b/src/IconWheelchairPickupOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconWheelchairPickupOutlinedFilled: React.FC = ({ ) -export { IconWheelchairPickupOutlinedFilled as default } +export default IconWheelchairPickupOutlinedFilled diff --git a/src/IconWheelchairPickupRounded.tsx b/src/IconWheelchairPickupRounded.tsx index eeb1614c7..9588a87fb 100644 --- a/src/IconWheelchairPickupRounded.tsx +++ b/src/IconWheelchairPickupRounded.tsx @@ -8,4 +8,4 @@ const IconWheelchairPickupRounded: React.FC = ({ ...props }) => ( ) -export { IconWheelchairPickupRounded as default } +export default IconWheelchairPickupRounded diff --git a/src/IconWheelchairPickupRoundedFilled.tsx b/src/IconWheelchairPickupRoundedFilled.tsx index d3109f0be..20e6779ff 100644 --- a/src/IconWheelchairPickupRoundedFilled.tsx +++ b/src/IconWheelchairPickupRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconWheelchairPickupRoundedFilled: React.FC = ({ ) -export { IconWheelchairPickupRoundedFilled as default } +export default IconWheelchairPickupRoundedFilled diff --git a/src/IconWheelchairPickupSharp.tsx b/src/IconWheelchairPickupSharp.tsx index 490c1568c..9e0090e98 100644 --- a/src/IconWheelchairPickupSharp.tsx +++ b/src/IconWheelchairPickupSharp.tsx @@ -8,4 +8,4 @@ const IconWheelchairPickupSharp: React.FC = ({ ...props }) => ( ) -export { IconWheelchairPickupSharp as default } +export default IconWheelchairPickupSharp diff --git a/src/IconWheelchairPickupSharpFilled.tsx b/src/IconWheelchairPickupSharpFilled.tsx index cea4d96d2..c223eb78c 100644 --- a/src/IconWheelchairPickupSharpFilled.tsx +++ b/src/IconWheelchairPickupSharpFilled.tsx @@ -8,4 +8,4 @@ const IconWheelchairPickupSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconWheelchairPickupSharpFilled as default } +export default IconWheelchairPickupSharpFilled diff --git a/src/IconWhereToVoteOutlined.tsx b/src/IconWhereToVoteOutlined.tsx index 894571760..44aecdd4d 100644 --- a/src/IconWhereToVoteOutlined.tsx +++ b/src/IconWhereToVoteOutlined.tsx @@ -8,4 +8,4 @@ const IconWhereToVoteOutlined: React.FC = ({ ...props }) => ( ) -export { IconWhereToVoteOutlined as default } +export default IconWhereToVoteOutlined diff --git a/src/IconWhereToVoteOutlinedFilled.tsx b/src/IconWhereToVoteOutlinedFilled.tsx index b54dc68d5..a403452f5 100644 --- a/src/IconWhereToVoteOutlinedFilled.tsx +++ b/src/IconWhereToVoteOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconWhereToVoteOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconWhereToVoteOutlinedFilled as default } +export default IconWhereToVoteOutlinedFilled diff --git a/src/IconWhereToVoteRounded.tsx b/src/IconWhereToVoteRounded.tsx index 914932c6f..32b899ce6 100644 --- a/src/IconWhereToVoteRounded.tsx +++ b/src/IconWhereToVoteRounded.tsx @@ -8,4 +8,4 @@ const IconWhereToVoteRounded: React.FC = ({ ...props }) => ( ) -export { IconWhereToVoteRounded as default } +export default IconWhereToVoteRounded diff --git a/src/IconWhereToVoteRoundedFilled.tsx b/src/IconWhereToVoteRoundedFilled.tsx index c29571ad7..93855f999 100644 --- a/src/IconWhereToVoteRoundedFilled.tsx +++ b/src/IconWhereToVoteRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconWhereToVoteRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconWhereToVoteRoundedFilled as default } +export default IconWhereToVoteRoundedFilled diff --git a/src/IconWhereToVoteSharp.tsx b/src/IconWhereToVoteSharp.tsx index f11818e22..5e198fcdb 100644 --- a/src/IconWhereToVoteSharp.tsx +++ b/src/IconWhereToVoteSharp.tsx @@ -8,4 +8,4 @@ const IconWhereToVoteSharp: React.FC = ({ ...props }) => ( ) -export { IconWhereToVoteSharp as default } +export default IconWhereToVoteSharp diff --git a/src/IconWhereToVoteSharpFilled.tsx b/src/IconWhereToVoteSharpFilled.tsx index 9d4ea7c1b..94d0bc474 100644 --- a/src/IconWhereToVoteSharpFilled.tsx +++ b/src/IconWhereToVoteSharpFilled.tsx @@ -8,4 +8,4 @@ const IconWhereToVoteSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconWhereToVoteSharpFilled as default } +export default IconWhereToVoteSharpFilled diff --git a/src/IconWidgetsOutlined.tsx b/src/IconWidgetsOutlined.tsx index 80c7fdae2..c25250647 100644 --- a/src/IconWidgetsOutlined.tsx +++ b/src/IconWidgetsOutlined.tsx @@ -8,4 +8,4 @@ const IconWidgetsOutlined: React.FC = ({ ...props }) => ( ) -export { IconWidgetsOutlined as default } +export default IconWidgetsOutlined diff --git a/src/IconWidgetsOutlinedFilled.tsx b/src/IconWidgetsOutlinedFilled.tsx index ace04a5f8..d271fec3f 100644 --- a/src/IconWidgetsOutlinedFilled.tsx +++ b/src/IconWidgetsOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconWidgetsOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconWidgetsOutlinedFilled as default } +export default IconWidgetsOutlinedFilled diff --git a/src/IconWidgetsRounded.tsx b/src/IconWidgetsRounded.tsx index 35a1d382a..5ce7174e9 100644 --- a/src/IconWidgetsRounded.tsx +++ b/src/IconWidgetsRounded.tsx @@ -8,4 +8,4 @@ const IconWidgetsRounded: React.FC = ({ ...props }) => ( ) -export { IconWidgetsRounded as default } +export default IconWidgetsRounded diff --git a/src/IconWidgetsRoundedFilled.tsx b/src/IconWidgetsRoundedFilled.tsx index 7f739bd07..d9d12b619 100644 --- a/src/IconWidgetsRoundedFilled.tsx +++ b/src/IconWidgetsRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconWidgetsRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconWidgetsRoundedFilled as default } +export default IconWidgetsRoundedFilled diff --git a/src/IconWidgetsSharp.tsx b/src/IconWidgetsSharp.tsx index 30dc4847d..bb6731f64 100644 --- a/src/IconWidgetsSharp.tsx +++ b/src/IconWidgetsSharp.tsx @@ -8,4 +8,4 @@ const IconWidgetsSharp: React.FC = ({ ...props }) => ( ) -export { IconWidgetsSharp as default } +export default IconWidgetsSharp diff --git a/src/IconWidgetsSharpFilled.tsx b/src/IconWidgetsSharpFilled.tsx index 714fa72a7..efd88399c 100644 --- a/src/IconWidgetsSharpFilled.tsx +++ b/src/IconWidgetsSharpFilled.tsx @@ -8,4 +8,4 @@ const IconWidgetsSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconWidgetsSharpFilled as default } +export default IconWidgetsSharpFilled diff --git a/src/IconWidthFullOutlined.tsx b/src/IconWidthFullOutlined.tsx index 80631548d..0c85934fc 100644 --- a/src/IconWidthFullOutlined.tsx +++ b/src/IconWidthFullOutlined.tsx @@ -8,4 +8,4 @@ const IconWidthFullOutlined: React.FC = ({ ...props }) => ( ) -export { IconWidthFullOutlined as default } +export default IconWidthFullOutlined diff --git a/src/IconWidthFullOutlinedFilled.tsx b/src/IconWidthFullOutlinedFilled.tsx index 8120ccca5..0a9ca462b 100644 --- a/src/IconWidthFullOutlinedFilled.tsx +++ b/src/IconWidthFullOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconWidthFullOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconWidthFullOutlinedFilled as default } +export default IconWidthFullOutlinedFilled diff --git a/src/IconWidthFullRounded.tsx b/src/IconWidthFullRounded.tsx index 56c8dc256..4b7bcd9c4 100644 --- a/src/IconWidthFullRounded.tsx +++ b/src/IconWidthFullRounded.tsx @@ -8,4 +8,4 @@ const IconWidthFullRounded: React.FC = ({ ...props }) => ( ) -export { IconWidthFullRounded as default } +export default IconWidthFullRounded diff --git a/src/IconWidthFullRoundedFilled.tsx b/src/IconWidthFullRoundedFilled.tsx index 2eb918627..542568838 100644 --- a/src/IconWidthFullRoundedFilled.tsx +++ b/src/IconWidthFullRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconWidthFullRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconWidthFullRoundedFilled as default } +export default IconWidthFullRoundedFilled diff --git a/src/IconWidthFullSharp.tsx b/src/IconWidthFullSharp.tsx index cc040ad29..7dded4de3 100644 --- a/src/IconWidthFullSharp.tsx +++ b/src/IconWidthFullSharp.tsx @@ -8,4 +8,4 @@ const IconWidthFullSharp: React.FC = ({ ...props }) => ( ) -export { IconWidthFullSharp as default } +export default IconWidthFullSharp diff --git a/src/IconWidthFullSharpFilled.tsx b/src/IconWidthFullSharpFilled.tsx index 6f9576bb2..5b7d7f17f 100644 --- a/src/IconWidthFullSharpFilled.tsx +++ b/src/IconWidthFullSharpFilled.tsx @@ -8,4 +8,4 @@ const IconWidthFullSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconWidthFullSharpFilled as default } +export default IconWidthFullSharpFilled diff --git a/src/IconWidthNormalOutlined.tsx b/src/IconWidthNormalOutlined.tsx index 7736d8a60..0a5accee5 100644 --- a/src/IconWidthNormalOutlined.tsx +++ b/src/IconWidthNormalOutlined.tsx @@ -8,4 +8,4 @@ const IconWidthNormalOutlined: React.FC = ({ ...props }) => ( ) -export { IconWidthNormalOutlined as default } +export default IconWidthNormalOutlined diff --git a/src/IconWidthNormalOutlinedFilled.tsx b/src/IconWidthNormalOutlinedFilled.tsx index 603922700..4b6fb5f16 100644 --- a/src/IconWidthNormalOutlinedFilled.tsx +++ b/src/IconWidthNormalOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconWidthNormalOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconWidthNormalOutlinedFilled as default } +export default IconWidthNormalOutlinedFilled diff --git a/src/IconWidthNormalRounded.tsx b/src/IconWidthNormalRounded.tsx index f6c899c12..9ce8338b2 100644 --- a/src/IconWidthNormalRounded.tsx +++ b/src/IconWidthNormalRounded.tsx @@ -8,4 +8,4 @@ const IconWidthNormalRounded: React.FC = ({ ...props }) => ( ) -export { IconWidthNormalRounded as default } +export default IconWidthNormalRounded diff --git a/src/IconWidthNormalRoundedFilled.tsx b/src/IconWidthNormalRoundedFilled.tsx index cc75ec591..e3ff68e50 100644 --- a/src/IconWidthNormalRoundedFilled.tsx +++ b/src/IconWidthNormalRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconWidthNormalRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconWidthNormalRoundedFilled as default } +export default IconWidthNormalRoundedFilled diff --git a/src/IconWidthNormalSharp.tsx b/src/IconWidthNormalSharp.tsx index b92a18fea..b70797238 100644 --- a/src/IconWidthNormalSharp.tsx +++ b/src/IconWidthNormalSharp.tsx @@ -8,4 +8,4 @@ const IconWidthNormalSharp: React.FC = ({ ...props }) => ( ) -export { IconWidthNormalSharp as default } +export default IconWidthNormalSharp diff --git a/src/IconWidthNormalSharpFilled.tsx b/src/IconWidthNormalSharpFilled.tsx index 4319cd406..e385e6054 100644 --- a/src/IconWidthNormalSharpFilled.tsx +++ b/src/IconWidthNormalSharpFilled.tsx @@ -8,4 +8,4 @@ const IconWidthNormalSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconWidthNormalSharpFilled as default } +export default IconWidthNormalSharpFilled diff --git a/src/IconWidthOutlined.tsx b/src/IconWidthOutlined.tsx index c61e91663..6cbf5adef 100644 --- a/src/IconWidthOutlined.tsx +++ b/src/IconWidthOutlined.tsx @@ -8,4 +8,4 @@ const IconWidthOutlined: React.FC = ({ ...props }) => ( ) -export { IconWidthOutlined as default } +export default IconWidthOutlined diff --git a/src/IconWidthOutlinedFilled.tsx b/src/IconWidthOutlinedFilled.tsx index bdb990d8f..ca29698c0 100644 --- a/src/IconWidthOutlinedFilled.tsx +++ b/src/IconWidthOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconWidthOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconWidthOutlinedFilled as default } +export default IconWidthOutlinedFilled diff --git a/src/IconWidthRounded.tsx b/src/IconWidthRounded.tsx index 9f4c9b31b..d89f8bb18 100644 --- a/src/IconWidthRounded.tsx +++ b/src/IconWidthRounded.tsx @@ -8,4 +8,4 @@ const IconWidthRounded: React.FC = ({ ...props }) => ( ) -export { IconWidthRounded as default } +export default IconWidthRounded diff --git a/src/IconWidthRoundedFilled.tsx b/src/IconWidthRoundedFilled.tsx index a3c22fdb7..8643f2ad1 100644 --- a/src/IconWidthRoundedFilled.tsx +++ b/src/IconWidthRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconWidthRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconWidthRoundedFilled as default } +export default IconWidthRoundedFilled diff --git a/src/IconWidthSharp.tsx b/src/IconWidthSharp.tsx index 391c63c1e..c170b58b6 100644 --- a/src/IconWidthSharp.tsx +++ b/src/IconWidthSharp.tsx @@ -8,4 +8,4 @@ const IconWidthSharp: React.FC = ({ ...props }) => ( ) -export { IconWidthSharp as default } +export default IconWidthSharp diff --git a/src/IconWidthSharpFilled.tsx b/src/IconWidthSharpFilled.tsx index 6243809ef..1adfad327 100644 --- a/src/IconWidthSharpFilled.tsx +++ b/src/IconWidthSharpFilled.tsx @@ -8,4 +8,4 @@ const IconWidthSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconWidthSharpFilled as default } +export default IconWidthSharpFilled diff --git a/src/IconWidthWideOutlined.tsx b/src/IconWidthWideOutlined.tsx index 6b98a4e76..81c8eb67f 100644 --- a/src/IconWidthWideOutlined.tsx +++ b/src/IconWidthWideOutlined.tsx @@ -8,4 +8,4 @@ const IconWidthWideOutlined: React.FC = ({ ...props }) => ( ) -export { IconWidthWideOutlined as default } +export default IconWidthWideOutlined diff --git a/src/IconWidthWideOutlinedFilled.tsx b/src/IconWidthWideOutlinedFilled.tsx index fa8611ef4..320486864 100644 --- a/src/IconWidthWideOutlinedFilled.tsx +++ b/src/IconWidthWideOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconWidthWideOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconWidthWideOutlinedFilled as default } +export default IconWidthWideOutlinedFilled diff --git a/src/IconWidthWideRounded.tsx b/src/IconWidthWideRounded.tsx index 8efcd48ba..7206afc4f 100644 --- a/src/IconWidthWideRounded.tsx +++ b/src/IconWidthWideRounded.tsx @@ -8,4 +8,4 @@ const IconWidthWideRounded: React.FC = ({ ...props }) => ( ) -export { IconWidthWideRounded as default } +export default IconWidthWideRounded diff --git a/src/IconWidthWideRoundedFilled.tsx b/src/IconWidthWideRoundedFilled.tsx index 0e6574f37..871d8373a 100644 --- a/src/IconWidthWideRoundedFilled.tsx +++ b/src/IconWidthWideRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconWidthWideRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconWidthWideRoundedFilled as default } +export default IconWidthWideRoundedFilled diff --git a/src/IconWidthWideSharp.tsx b/src/IconWidthWideSharp.tsx index d3bc3d8bc..b969a8ddc 100644 --- a/src/IconWidthWideSharp.tsx +++ b/src/IconWidthWideSharp.tsx @@ -8,4 +8,4 @@ const IconWidthWideSharp: React.FC = ({ ...props }) => ( ) -export { IconWidthWideSharp as default } +export default IconWidthWideSharp diff --git a/src/IconWidthWideSharpFilled.tsx b/src/IconWidthWideSharpFilled.tsx index 3d9cec329..f8e749d1a 100644 --- a/src/IconWidthWideSharpFilled.tsx +++ b/src/IconWidthWideSharpFilled.tsx @@ -8,4 +8,4 @@ const IconWidthWideSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconWidthWideSharpFilled as default } +export default IconWidthWideSharpFilled diff --git a/src/IconWifi1BarOutlined.tsx b/src/IconWifi1BarOutlined.tsx index e357b25b6..cc2453f52 100644 --- a/src/IconWifi1BarOutlined.tsx +++ b/src/IconWifi1BarOutlined.tsx @@ -8,4 +8,4 @@ const IconWifi1BarOutlined: React.FC = ({ ...props }) => ( ) -export { IconWifi1BarOutlined as default } +export default IconWifi1BarOutlined diff --git a/src/IconWifi1BarOutlinedFilled.tsx b/src/IconWifi1BarOutlinedFilled.tsx index 3a2b4b46f..bd16377fc 100644 --- a/src/IconWifi1BarOutlinedFilled.tsx +++ b/src/IconWifi1BarOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconWifi1BarOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconWifi1BarOutlinedFilled as default } +export default IconWifi1BarOutlinedFilled diff --git a/src/IconWifi1BarRounded.tsx b/src/IconWifi1BarRounded.tsx index e571b32d3..213271342 100644 --- a/src/IconWifi1BarRounded.tsx +++ b/src/IconWifi1BarRounded.tsx @@ -8,4 +8,4 @@ const IconWifi1BarRounded: React.FC = ({ ...props }) => ( ) -export { IconWifi1BarRounded as default } +export default IconWifi1BarRounded diff --git a/src/IconWifi1BarRoundedFilled.tsx b/src/IconWifi1BarRoundedFilled.tsx index c7bb51800..c923fb98d 100644 --- a/src/IconWifi1BarRoundedFilled.tsx +++ b/src/IconWifi1BarRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconWifi1BarRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconWifi1BarRoundedFilled as default } +export default IconWifi1BarRoundedFilled diff --git a/src/IconWifi1BarSharp.tsx b/src/IconWifi1BarSharp.tsx index bf33f73d1..5400e5d0b 100644 --- a/src/IconWifi1BarSharp.tsx +++ b/src/IconWifi1BarSharp.tsx @@ -8,4 +8,4 @@ const IconWifi1BarSharp: React.FC = ({ ...props }) => ( ) -export { IconWifi1BarSharp as default } +export default IconWifi1BarSharp diff --git a/src/IconWifi1BarSharpFilled.tsx b/src/IconWifi1BarSharpFilled.tsx index 62e224bc0..7dbf565d0 100644 --- a/src/IconWifi1BarSharpFilled.tsx +++ b/src/IconWifi1BarSharpFilled.tsx @@ -8,4 +8,4 @@ const IconWifi1BarSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconWifi1BarSharpFilled as default } +export default IconWifi1BarSharpFilled diff --git a/src/IconWifi2BarOutlined.tsx b/src/IconWifi2BarOutlined.tsx index acffbc29b..ef7fc66da 100644 --- a/src/IconWifi2BarOutlined.tsx +++ b/src/IconWifi2BarOutlined.tsx @@ -8,4 +8,4 @@ const IconWifi2BarOutlined: React.FC = ({ ...props }) => ( ) -export { IconWifi2BarOutlined as default } +export default IconWifi2BarOutlined diff --git a/src/IconWifi2BarOutlinedFilled.tsx b/src/IconWifi2BarOutlinedFilled.tsx index d913e8627..30d5924e6 100644 --- a/src/IconWifi2BarOutlinedFilled.tsx +++ b/src/IconWifi2BarOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconWifi2BarOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconWifi2BarOutlinedFilled as default } +export default IconWifi2BarOutlinedFilled diff --git a/src/IconWifi2BarRounded.tsx b/src/IconWifi2BarRounded.tsx index 2dfc98db4..4d03c014c 100644 --- a/src/IconWifi2BarRounded.tsx +++ b/src/IconWifi2BarRounded.tsx @@ -8,4 +8,4 @@ const IconWifi2BarRounded: React.FC = ({ ...props }) => ( ) -export { IconWifi2BarRounded as default } +export default IconWifi2BarRounded diff --git a/src/IconWifi2BarRoundedFilled.tsx b/src/IconWifi2BarRoundedFilled.tsx index 1f0c58a55..f0fbcada3 100644 --- a/src/IconWifi2BarRoundedFilled.tsx +++ b/src/IconWifi2BarRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconWifi2BarRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconWifi2BarRoundedFilled as default } +export default IconWifi2BarRoundedFilled diff --git a/src/IconWifi2BarSharp.tsx b/src/IconWifi2BarSharp.tsx index e7b693f72..7083ac675 100644 --- a/src/IconWifi2BarSharp.tsx +++ b/src/IconWifi2BarSharp.tsx @@ -8,4 +8,4 @@ const IconWifi2BarSharp: React.FC = ({ ...props }) => ( ) -export { IconWifi2BarSharp as default } +export default IconWifi2BarSharp diff --git a/src/IconWifi2BarSharpFilled.tsx b/src/IconWifi2BarSharpFilled.tsx index f87c98641..d7865d0e0 100644 --- a/src/IconWifi2BarSharpFilled.tsx +++ b/src/IconWifi2BarSharpFilled.tsx @@ -8,4 +8,4 @@ const IconWifi2BarSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconWifi2BarSharpFilled as default } +export default IconWifi2BarSharpFilled diff --git a/src/IconWifiAddOutlined.tsx b/src/IconWifiAddOutlined.tsx index fbb1bb3b4..56fe9a504 100644 --- a/src/IconWifiAddOutlined.tsx +++ b/src/IconWifiAddOutlined.tsx @@ -8,4 +8,4 @@ const IconWifiAddOutlined: React.FC = ({ ...props }) => ( ) -export { IconWifiAddOutlined as default } +export default IconWifiAddOutlined diff --git a/src/IconWifiAddOutlinedFilled.tsx b/src/IconWifiAddOutlinedFilled.tsx index 84379f64d..8c06047b5 100644 --- a/src/IconWifiAddOutlinedFilled.tsx +++ b/src/IconWifiAddOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconWifiAddOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconWifiAddOutlinedFilled as default } +export default IconWifiAddOutlinedFilled diff --git a/src/IconWifiAddRounded.tsx b/src/IconWifiAddRounded.tsx index bb2a45863..c43b8ce3c 100644 --- a/src/IconWifiAddRounded.tsx +++ b/src/IconWifiAddRounded.tsx @@ -8,4 +8,4 @@ const IconWifiAddRounded: React.FC = ({ ...props }) => ( ) -export { IconWifiAddRounded as default } +export default IconWifiAddRounded diff --git a/src/IconWifiAddRoundedFilled.tsx b/src/IconWifiAddRoundedFilled.tsx index 55b3c29b7..475922e0e 100644 --- a/src/IconWifiAddRoundedFilled.tsx +++ b/src/IconWifiAddRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconWifiAddRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconWifiAddRoundedFilled as default } +export default IconWifiAddRoundedFilled diff --git a/src/IconWifiAddSharp.tsx b/src/IconWifiAddSharp.tsx index 111aa6ea2..1b1f9c406 100644 --- a/src/IconWifiAddSharp.tsx +++ b/src/IconWifiAddSharp.tsx @@ -8,4 +8,4 @@ const IconWifiAddSharp: React.FC = ({ ...props }) => ( ) -export { IconWifiAddSharp as default } +export default IconWifiAddSharp diff --git a/src/IconWifiAddSharpFilled.tsx b/src/IconWifiAddSharpFilled.tsx index c9cecf017..2ac6c08ab 100644 --- a/src/IconWifiAddSharpFilled.tsx +++ b/src/IconWifiAddSharpFilled.tsx @@ -8,4 +8,4 @@ const IconWifiAddSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconWifiAddSharpFilled as default } +export default IconWifiAddSharpFilled diff --git a/src/IconWifiCallingBar1Outlined.tsx b/src/IconWifiCallingBar1Outlined.tsx index 0f572ef4f..1c8f46bf1 100644 --- a/src/IconWifiCallingBar1Outlined.tsx +++ b/src/IconWifiCallingBar1Outlined.tsx @@ -8,4 +8,4 @@ const IconWifiCallingBar1Outlined: React.FC = ({ ...props }) => ( ) -export { IconWifiCallingBar1Outlined as default } +export default IconWifiCallingBar1Outlined diff --git a/src/IconWifiCallingBar1OutlinedFilled.tsx b/src/IconWifiCallingBar1OutlinedFilled.tsx index 0d5525c5d..4f44bdfd0 100644 --- a/src/IconWifiCallingBar1OutlinedFilled.tsx +++ b/src/IconWifiCallingBar1OutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconWifiCallingBar1OutlinedFilled: React.FC = ({ ) -export { IconWifiCallingBar1OutlinedFilled as default } +export default IconWifiCallingBar1OutlinedFilled diff --git a/src/IconWifiCallingBar1Rounded.tsx b/src/IconWifiCallingBar1Rounded.tsx index 99827c990..a43a02092 100644 --- a/src/IconWifiCallingBar1Rounded.tsx +++ b/src/IconWifiCallingBar1Rounded.tsx @@ -8,4 +8,4 @@ const IconWifiCallingBar1Rounded: React.FC = ({ ...props }) => ( ) -export { IconWifiCallingBar1Rounded as default } +export default IconWifiCallingBar1Rounded diff --git a/src/IconWifiCallingBar1RoundedFilled.tsx b/src/IconWifiCallingBar1RoundedFilled.tsx index 63b95456c..280e0e0e9 100644 --- a/src/IconWifiCallingBar1RoundedFilled.tsx +++ b/src/IconWifiCallingBar1RoundedFilled.tsx @@ -10,4 +10,4 @@ const IconWifiCallingBar1RoundedFilled: React.FC = ({ ) -export { IconWifiCallingBar1RoundedFilled as default } +export default IconWifiCallingBar1RoundedFilled diff --git a/src/IconWifiCallingBar1Sharp.tsx b/src/IconWifiCallingBar1Sharp.tsx index cd5611f3b..bebc4af5e 100644 --- a/src/IconWifiCallingBar1Sharp.tsx +++ b/src/IconWifiCallingBar1Sharp.tsx @@ -8,4 +8,4 @@ const IconWifiCallingBar1Sharp: React.FC = ({ ...props }) => ( ) -export { IconWifiCallingBar1Sharp as default } +export default IconWifiCallingBar1Sharp diff --git a/src/IconWifiCallingBar1SharpFilled.tsx b/src/IconWifiCallingBar1SharpFilled.tsx index 759a5b16a..a239e178f 100644 --- a/src/IconWifiCallingBar1SharpFilled.tsx +++ b/src/IconWifiCallingBar1SharpFilled.tsx @@ -8,4 +8,4 @@ const IconWifiCallingBar1SharpFilled: React.FC = ({ ...props }) => ( ) -export { IconWifiCallingBar1SharpFilled as default } +export default IconWifiCallingBar1SharpFilled diff --git a/src/IconWifiCallingBar2Outlined.tsx b/src/IconWifiCallingBar2Outlined.tsx index 5994f3756..f6f4d3382 100644 --- a/src/IconWifiCallingBar2Outlined.tsx +++ b/src/IconWifiCallingBar2Outlined.tsx @@ -8,4 +8,4 @@ const IconWifiCallingBar2Outlined: React.FC = ({ ...props }) => ( ) -export { IconWifiCallingBar2Outlined as default } +export default IconWifiCallingBar2Outlined diff --git a/src/IconWifiCallingBar2OutlinedFilled.tsx b/src/IconWifiCallingBar2OutlinedFilled.tsx index 3874b5dc2..5983de6e4 100644 --- a/src/IconWifiCallingBar2OutlinedFilled.tsx +++ b/src/IconWifiCallingBar2OutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconWifiCallingBar2OutlinedFilled: React.FC = ({ ) -export { IconWifiCallingBar2OutlinedFilled as default } +export default IconWifiCallingBar2OutlinedFilled diff --git a/src/IconWifiCallingBar2Rounded.tsx b/src/IconWifiCallingBar2Rounded.tsx index 06bb301d2..5d27326c7 100644 --- a/src/IconWifiCallingBar2Rounded.tsx +++ b/src/IconWifiCallingBar2Rounded.tsx @@ -8,4 +8,4 @@ const IconWifiCallingBar2Rounded: React.FC = ({ ...props }) => ( ) -export { IconWifiCallingBar2Rounded as default } +export default IconWifiCallingBar2Rounded diff --git a/src/IconWifiCallingBar2RoundedFilled.tsx b/src/IconWifiCallingBar2RoundedFilled.tsx index f0e688475..7c53e4b96 100644 --- a/src/IconWifiCallingBar2RoundedFilled.tsx +++ b/src/IconWifiCallingBar2RoundedFilled.tsx @@ -10,4 +10,4 @@ const IconWifiCallingBar2RoundedFilled: React.FC = ({ ) -export { IconWifiCallingBar2RoundedFilled as default } +export default IconWifiCallingBar2RoundedFilled diff --git a/src/IconWifiCallingBar2Sharp.tsx b/src/IconWifiCallingBar2Sharp.tsx index a35a89e49..3fc0c914e 100644 --- a/src/IconWifiCallingBar2Sharp.tsx +++ b/src/IconWifiCallingBar2Sharp.tsx @@ -8,4 +8,4 @@ const IconWifiCallingBar2Sharp: React.FC = ({ ...props }) => ( ) -export { IconWifiCallingBar2Sharp as default } +export default IconWifiCallingBar2Sharp diff --git a/src/IconWifiCallingBar2SharpFilled.tsx b/src/IconWifiCallingBar2SharpFilled.tsx index 6ac1bcf5e..102435a25 100644 --- a/src/IconWifiCallingBar2SharpFilled.tsx +++ b/src/IconWifiCallingBar2SharpFilled.tsx @@ -8,4 +8,4 @@ const IconWifiCallingBar2SharpFilled: React.FC = ({ ...props }) => ( ) -export { IconWifiCallingBar2SharpFilled as default } +export default IconWifiCallingBar2SharpFilled diff --git a/src/IconWifiCallingBar3Outlined.tsx b/src/IconWifiCallingBar3Outlined.tsx index 75f0c2204..f040f05ff 100644 --- a/src/IconWifiCallingBar3Outlined.tsx +++ b/src/IconWifiCallingBar3Outlined.tsx @@ -8,4 +8,4 @@ const IconWifiCallingBar3Outlined: React.FC = ({ ...props }) => ( ) -export { IconWifiCallingBar3Outlined as default } +export default IconWifiCallingBar3Outlined diff --git a/src/IconWifiCallingBar3OutlinedFilled.tsx b/src/IconWifiCallingBar3OutlinedFilled.tsx index 15c494099..07b89a2f5 100644 --- a/src/IconWifiCallingBar3OutlinedFilled.tsx +++ b/src/IconWifiCallingBar3OutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconWifiCallingBar3OutlinedFilled: React.FC = ({ ) -export { IconWifiCallingBar3OutlinedFilled as default } +export default IconWifiCallingBar3OutlinedFilled diff --git a/src/IconWifiCallingBar3Rounded.tsx b/src/IconWifiCallingBar3Rounded.tsx index e0462d434..72a2b69b0 100644 --- a/src/IconWifiCallingBar3Rounded.tsx +++ b/src/IconWifiCallingBar3Rounded.tsx @@ -8,4 +8,4 @@ const IconWifiCallingBar3Rounded: React.FC = ({ ...props }) => ( ) -export { IconWifiCallingBar3Rounded as default } +export default IconWifiCallingBar3Rounded diff --git a/src/IconWifiCallingBar3RoundedFilled.tsx b/src/IconWifiCallingBar3RoundedFilled.tsx index b06b96844..b857e4555 100644 --- a/src/IconWifiCallingBar3RoundedFilled.tsx +++ b/src/IconWifiCallingBar3RoundedFilled.tsx @@ -10,4 +10,4 @@ const IconWifiCallingBar3RoundedFilled: React.FC = ({ ) -export { IconWifiCallingBar3RoundedFilled as default } +export default IconWifiCallingBar3RoundedFilled diff --git a/src/IconWifiCallingBar3Sharp.tsx b/src/IconWifiCallingBar3Sharp.tsx index 5cea6627a..53fb87bfe 100644 --- a/src/IconWifiCallingBar3Sharp.tsx +++ b/src/IconWifiCallingBar3Sharp.tsx @@ -8,4 +8,4 @@ const IconWifiCallingBar3Sharp: React.FC = ({ ...props }) => ( ) -export { IconWifiCallingBar3Sharp as default } +export default IconWifiCallingBar3Sharp diff --git a/src/IconWifiCallingBar3SharpFilled.tsx b/src/IconWifiCallingBar3SharpFilled.tsx index 72bccca1b..3eba865ce 100644 --- a/src/IconWifiCallingBar3SharpFilled.tsx +++ b/src/IconWifiCallingBar3SharpFilled.tsx @@ -8,4 +8,4 @@ const IconWifiCallingBar3SharpFilled: React.FC = ({ ...props }) => ( ) -export { IconWifiCallingBar3SharpFilled as default } +export default IconWifiCallingBar3SharpFilled diff --git a/src/IconWifiCallingOutlined.tsx b/src/IconWifiCallingOutlined.tsx index 38457fbfe..84c8f24cb 100644 --- a/src/IconWifiCallingOutlined.tsx +++ b/src/IconWifiCallingOutlined.tsx @@ -8,4 +8,4 @@ const IconWifiCallingOutlined: React.FC = ({ ...props }) => ( ) -export { IconWifiCallingOutlined as default } +export default IconWifiCallingOutlined diff --git a/src/IconWifiCallingOutlinedFilled.tsx b/src/IconWifiCallingOutlinedFilled.tsx index bc5fcc69a..2df3cb85c 100644 --- a/src/IconWifiCallingOutlinedFilled.tsx +++ b/src/IconWifiCallingOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconWifiCallingOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconWifiCallingOutlinedFilled as default } +export default IconWifiCallingOutlinedFilled diff --git a/src/IconWifiCallingRounded.tsx b/src/IconWifiCallingRounded.tsx index 49eeea5a5..bc66c799c 100644 --- a/src/IconWifiCallingRounded.tsx +++ b/src/IconWifiCallingRounded.tsx @@ -8,4 +8,4 @@ const IconWifiCallingRounded: React.FC = ({ ...props }) => ( ) -export { IconWifiCallingRounded as default } +export default IconWifiCallingRounded diff --git a/src/IconWifiCallingRoundedFilled.tsx b/src/IconWifiCallingRoundedFilled.tsx index f678c6729..a5bb6cf4d 100644 --- a/src/IconWifiCallingRoundedFilled.tsx +++ b/src/IconWifiCallingRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconWifiCallingRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconWifiCallingRoundedFilled as default } +export default IconWifiCallingRoundedFilled diff --git a/src/IconWifiCallingSharp.tsx b/src/IconWifiCallingSharp.tsx index 09ff825f7..8c68ac51a 100644 --- a/src/IconWifiCallingSharp.tsx +++ b/src/IconWifiCallingSharp.tsx @@ -8,4 +8,4 @@ const IconWifiCallingSharp: React.FC = ({ ...props }) => ( ) -export { IconWifiCallingSharp as default } +export default IconWifiCallingSharp diff --git a/src/IconWifiCallingSharpFilled.tsx b/src/IconWifiCallingSharpFilled.tsx index 3ab5b57de..66c035af2 100644 --- a/src/IconWifiCallingSharpFilled.tsx +++ b/src/IconWifiCallingSharpFilled.tsx @@ -8,4 +8,4 @@ const IconWifiCallingSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconWifiCallingSharpFilled as default } +export default IconWifiCallingSharpFilled diff --git a/src/IconWifiChannelOutlined.tsx b/src/IconWifiChannelOutlined.tsx index 3acd92d43..fc9dcf092 100644 --- a/src/IconWifiChannelOutlined.tsx +++ b/src/IconWifiChannelOutlined.tsx @@ -8,4 +8,4 @@ const IconWifiChannelOutlined: React.FC = ({ ...props }) => ( ) -export { IconWifiChannelOutlined as default } +export default IconWifiChannelOutlined diff --git a/src/IconWifiChannelOutlinedFilled.tsx b/src/IconWifiChannelOutlinedFilled.tsx index 13fe43b64..cb81aa184 100644 --- a/src/IconWifiChannelOutlinedFilled.tsx +++ b/src/IconWifiChannelOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconWifiChannelOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconWifiChannelOutlinedFilled as default } +export default IconWifiChannelOutlinedFilled diff --git a/src/IconWifiChannelRounded.tsx b/src/IconWifiChannelRounded.tsx index 6118f9c04..18a3668b1 100644 --- a/src/IconWifiChannelRounded.tsx +++ b/src/IconWifiChannelRounded.tsx @@ -8,4 +8,4 @@ const IconWifiChannelRounded: React.FC = ({ ...props }) => ( ) -export { IconWifiChannelRounded as default } +export default IconWifiChannelRounded diff --git a/src/IconWifiChannelRoundedFilled.tsx b/src/IconWifiChannelRoundedFilled.tsx index 851138ae7..815989b53 100644 --- a/src/IconWifiChannelRoundedFilled.tsx +++ b/src/IconWifiChannelRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconWifiChannelRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconWifiChannelRoundedFilled as default } +export default IconWifiChannelRoundedFilled diff --git a/src/IconWifiChannelSharp.tsx b/src/IconWifiChannelSharp.tsx index 0cc1489c6..ce18b00bb 100644 --- a/src/IconWifiChannelSharp.tsx +++ b/src/IconWifiChannelSharp.tsx @@ -8,4 +8,4 @@ const IconWifiChannelSharp: React.FC = ({ ...props }) => ( ) -export { IconWifiChannelSharp as default } +export default IconWifiChannelSharp diff --git a/src/IconWifiChannelSharpFilled.tsx b/src/IconWifiChannelSharpFilled.tsx index 371d4fd38..4bd731762 100644 --- a/src/IconWifiChannelSharpFilled.tsx +++ b/src/IconWifiChannelSharpFilled.tsx @@ -8,4 +8,4 @@ const IconWifiChannelSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconWifiChannelSharpFilled as default } +export default IconWifiChannelSharpFilled diff --git a/src/IconWifiFindOutlined.tsx b/src/IconWifiFindOutlined.tsx index 05b679253..7ba527b48 100644 --- a/src/IconWifiFindOutlined.tsx +++ b/src/IconWifiFindOutlined.tsx @@ -8,4 +8,4 @@ const IconWifiFindOutlined: React.FC = ({ ...props }) => ( ) -export { IconWifiFindOutlined as default } +export default IconWifiFindOutlined diff --git a/src/IconWifiFindOutlinedFilled.tsx b/src/IconWifiFindOutlinedFilled.tsx index a58de7ac8..7d5cb94ab 100644 --- a/src/IconWifiFindOutlinedFilled.tsx +++ b/src/IconWifiFindOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconWifiFindOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconWifiFindOutlinedFilled as default } +export default IconWifiFindOutlinedFilled diff --git a/src/IconWifiFindRounded.tsx b/src/IconWifiFindRounded.tsx index 57ddd3c8d..fa4ac1186 100644 --- a/src/IconWifiFindRounded.tsx +++ b/src/IconWifiFindRounded.tsx @@ -8,4 +8,4 @@ const IconWifiFindRounded: React.FC = ({ ...props }) => ( ) -export { IconWifiFindRounded as default } +export default IconWifiFindRounded diff --git a/src/IconWifiFindRoundedFilled.tsx b/src/IconWifiFindRoundedFilled.tsx index 974c5d90c..2eed44539 100644 --- a/src/IconWifiFindRoundedFilled.tsx +++ b/src/IconWifiFindRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconWifiFindRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconWifiFindRoundedFilled as default } +export default IconWifiFindRoundedFilled diff --git a/src/IconWifiFindSharp.tsx b/src/IconWifiFindSharp.tsx index 74f6cb8de..edd66de10 100644 --- a/src/IconWifiFindSharp.tsx +++ b/src/IconWifiFindSharp.tsx @@ -8,4 +8,4 @@ const IconWifiFindSharp: React.FC = ({ ...props }) => ( ) -export { IconWifiFindSharp as default } +export default IconWifiFindSharp diff --git a/src/IconWifiFindSharpFilled.tsx b/src/IconWifiFindSharpFilled.tsx index b3497d46c..e413913f3 100644 --- a/src/IconWifiFindSharpFilled.tsx +++ b/src/IconWifiFindSharpFilled.tsx @@ -8,4 +8,4 @@ const IconWifiFindSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconWifiFindSharpFilled as default } +export default IconWifiFindSharpFilled diff --git a/src/IconWifiHomeOutlined.tsx b/src/IconWifiHomeOutlined.tsx index cdceb74ae..83a037f3c 100644 --- a/src/IconWifiHomeOutlined.tsx +++ b/src/IconWifiHomeOutlined.tsx @@ -8,4 +8,4 @@ const IconWifiHomeOutlined: React.FC = ({ ...props }) => ( ) -export { IconWifiHomeOutlined as default } +export default IconWifiHomeOutlined diff --git a/src/IconWifiHomeOutlinedFilled.tsx b/src/IconWifiHomeOutlinedFilled.tsx index 080824ea4..c03ec1195 100644 --- a/src/IconWifiHomeOutlinedFilled.tsx +++ b/src/IconWifiHomeOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconWifiHomeOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconWifiHomeOutlinedFilled as default } +export default IconWifiHomeOutlinedFilled diff --git a/src/IconWifiHomeRounded.tsx b/src/IconWifiHomeRounded.tsx index 3421e96ed..eec768c47 100644 --- a/src/IconWifiHomeRounded.tsx +++ b/src/IconWifiHomeRounded.tsx @@ -8,4 +8,4 @@ const IconWifiHomeRounded: React.FC = ({ ...props }) => ( ) -export { IconWifiHomeRounded as default } +export default IconWifiHomeRounded diff --git a/src/IconWifiHomeRoundedFilled.tsx b/src/IconWifiHomeRoundedFilled.tsx index 56d1318f7..ee4133ccc 100644 --- a/src/IconWifiHomeRoundedFilled.tsx +++ b/src/IconWifiHomeRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconWifiHomeRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconWifiHomeRoundedFilled as default } +export default IconWifiHomeRoundedFilled diff --git a/src/IconWifiHomeSharp.tsx b/src/IconWifiHomeSharp.tsx index 7ae53b52a..6e4a996b2 100644 --- a/src/IconWifiHomeSharp.tsx +++ b/src/IconWifiHomeSharp.tsx @@ -8,4 +8,4 @@ const IconWifiHomeSharp: React.FC = ({ ...props }) => ( ) -export { IconWifiHomeSharp as default } +export default IconWifiHomeSharp diff --git a/src/IconWifiHomeSharpFilled.tsx b/src/IconWifiHomeSharpFilled.tsx index 1e4870a0b..aa6ab6b2f 100644 --- a/src/IconWifiHomeSharpFilled.tsx +++ b/src/IconWifiHomeSharpFilled.tsx @@ -8,4 +8,4 @@ const IconWifiHomeSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconWifiHomeSharpFilled as default } +export default IconWifiHomeSharpFilled diff --git a/src/IconWifiLockOutlined.tsx b/src/IconWifiLockOutlined.tsx index 151736953..cdb4b6dbf 100644 --- a/src/IconWifiLockOutlined.tsx +++ b/src/IconWifiLockOutlined.tsx @@ -8,4 +8,4 @@ const IconWifiLockOutlined: React.FC = ({ ...props }) => ( ) -export { IconWifiLockOutlined as default } +export default IconWifiLockOutlined diff --git a/src/IconWifiLockOutlinedFilled.tsx b/src/IconWifiLockOutlinedFilled.tsx index d8d39970b..b2f1e8126 100644 --- a/src/IconWifiLockOutlinedFilled.tsx +++ b/src/IconWifiLockOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconWifiLockOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconWifiLockOutlinedFilled as default } +export default IconWifiLockOutlinedFilled diff --git a/src/IconWifiLockRounded.tsx b/src/IconWifiLockRounded.tsx index b2a505f68..6d2ee06a9 100644 --- a/src/IconWifiLockRounded.tsx +++ b/src/IconWifiLockRounded.tsx @@ -8,4 +8,4 @@ const IconWifiLockRounded: React.FC = ({ ...props }) => ( ) -export { IconWifiLockRounded as default } +export default IconWifiLockRounded diff --git a/src/IconWifiLockRoundedFilled.tsx b/src/IconWifiLockRoundedFilled.tsx index 10d84b027..4758f244e 100644 --- a/src/IconWifiLockRoundedFilled.tsx +++ b/src/IconWifiLockRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconWifiLockRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconWifiLockRoundedFilled as default } +export default IconWifiLockRoundedFilled diff --git a/src/IconWifiLockSharp.tsx b/src/IconWifiLockSharp.tsx index dd8045a15..9304d6204 100644 --- a/src/IconWifiLockSharp.tsx +++ b/src/IconWifiLockSharp.tsx @@ -8,4 +8,4 @@ const IconWifiLockSharp: React.FC = ({ ...props }) => ( ) -export { IconWifiLockSharp as default } +export default IconWifiLockSharp diff --git a/src/IconWifiLockSharpFilled.tsx b/src/IconWifiLockSharpFilled.tsx index 75b95cac5..4b6e5f08b 100644 --- a/src/IconWifiLockSharpFilled.tsx +++ b/src/IconWifiLockSharpFilled.tsx @@ -8,4 +8,4 @@ const IconWifiLockSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconWifiLockSharpFilled as default } +export default IconWifiLockSharpFilled diff --git a/src/IconWifiNotificationOutlined.tsx b/src/IconWifiNotificationOutlined.tsx index b3a220d97..0a7450e3d 100644 --- a/src/IconWifiNotificationOutlined.tsx +++ b/src/IconWifiNotificationOutlined.tsx @@ -8,4 +8,4 @@ const IconWifiNotificationOutlined: React.FC = ({ ...props }) => ( ) -export { IconWifiNotificationOutlined as default } +export default IconWifiNotificationOutlined diff --git a/src/IconWifiNotificationOutlinedFilled.tsx b/src/IconWifiNotificationOutlinedFilled.tsx index bcc9649e8..324c75e23 100644 --- a/src/IconWifiNotificationOutlinedFilled.tsx +++ b/src/IconWifiNotificationOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconWifiNotificationOutlinedFilled: React.FC = ({ ) -export { IconWifiNotificationOutlinedFilled as default } +export default IconWifiNotificationOutlinedFilled diff --git a/src/IconWifiNotificationRounded.tsx b/src/IconWifiNotificationRounded.tsx index 5df597e17..e61a29313 100644 --- a/src/IconWifiNotificationRounded.tsx +++ b/src/IconWifiNotificationRounded.tsx @@ -8,4 +8,4 @@ const IconWifiNotificationRounded: React.FC = ({ ...props }) => ( ) -export { IconWifiNotificationRounded as default } +export default IconWifiNotificationRounded diff --git a/src/IconWifiNotificationRoundedFilled.tsx b/src/IconWifiNotificationRoundedFilled.tsx index 3c2adb18a..1d513105d 100644 --- a/src/IconWifiNotificationRoundedFilled.tsx +++ b/src/IconWifiNotificationRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconWifiNotificationRoundedFilled: React.FC = ({ ) -export { IconWifiNotificationRoundedFilled as default } +export default IconWifiNotificationRoundedFilled diff --git a/src/IconWifiNotificationSharp.tsx b/src/IconWifiNotificationSharp.tsx index cc276dbc3..b90938b28 100644 --- a/src/IconWifiNotificationSharp.tsx +++ b/src/IconWifiNotificationSharp.tsx @@ -8,4 +8,4 @@ const IconWifiNotificationSharp: React.FC = ({ ...props }) => ( ) -export { IconWifiNotificationSharp as default } +export default IconWifiNotificationSharp diff --git a/src/IconWifiNotificationSharpFilled.tsx b/src/IconWifiNotificationSharpFilled.tsx index 14c82ae2f..c1bc6030a 100644 --- a/src/IconWifiNotificationSharpFilled.tsx +++ b/src/IconWifiNotificationSharpFilled.tsx @@ -8,4 +8,4 @@ const IconWifiNotificationSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconWifiNotificationSharpFilled as default } +export default IconWifiNotificationSharpFilled diff --git a/src/IconWifiOffOutlined.tsx b/src/IconWifiOffOutlined.tsx index 18e3f5c71..390b00e38 100644 --- a/src/IconWifiOffOutlined.tsx +++ b/src/IconWifiOffOutlined.tsx @@ -8,4 +8,4 @@ const IconWifiOffOutlined: React.FC = ({ ...props }) => ( ) -export { IconWifiOffOutlined as default } +export default IconWifiOffOutlined diff --git a/src/IconWifiOffOutlinedFilled.tsx b/src/IconWifiOffOutlinedFilled.tsx index c821ed0f5..dd993e53b 100644 --- a/src/IconWifiOffOutlinedFilled.tsx +++ b/src/IconWifiOffOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconWifiOffOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconWifiOffOutlinedFilled as default } +export default IconWifiOffOutlinedFilled diff --git a/src/IconWifiOffRounded.tsx b/src/IconWifiOffRounded.tsx index 6b6f6e815..a62adec1f 100644 --- a/src/IconWifiOffRounded.tsx +++ b/src/IconWifiOffRounded.tsx @@ -8,4 +8,4 @@ const IconWifiOffRounded: React.FC = ({ ...props }) => ( ) -export { IconWifiOffRounded as default } +export default IconWifiOffRounded diff --git a/src/IconWifiOffRoundedFilled.tsx b/src/IconWifiOffRoundedFilled.tsx index c71659312..0991fc254 100644 --- a/src/IconWifiOffRoundedFilled.tsx +++ b/src/IconWifiOffRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconWifiOffRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconWifiOffRoundedFilled as default } +export default IconWifiOffRoundedFilled diff --git a/src/IconWifiOffSharp.tsx b/src/IconWifiOffSharp.tsx index 3ab132bef..233c47446 100644 --- a/src/IconWifiOffSharp.tsx +++ b/src/IconWifiOffSharp.tsx @@ -8,4 +8,4 @@ const IconWifiOffSharp: React.FC = ({ ...props }) => ( ) -export { IconWifiOffSharp as default } +export default IconWifiOffSharp diff --git a/src/IconWifiOffSharpFilled.tsx b/src/IconWifiOffSharpFilled.tsx index 244350ca8..01acd38ca 100644 --- a/src/IconWifiOffSharpFilled.tsx +++ b/src/IconWifiOffSharpFilled.tsx @@ -8,4 +8,4 @@ const IconWifiOffSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconWifiOffSharpFilled as default } +export default IconWifiOffSharpFilled diff --git a/src/IconWifiOutlined.tsx b/src/IconWifiOutlined.tsx index c39826e47..4a7ba9b72 100644 --- a/src/IconWifiOutlined.tsx +++ b/src/IconWifiOutlined.tsx @@ -8,4 +8,4 @@ const IconWifiOutlined: React.FC = ({ ...props }) => ( ) -export { IconWifiOutlined as default } +export default IconWifiOutlined diff --git a/src/IconWifiOutlinedFilled.tsx b/src/IconWifiOutlinedFilled.tsx index 201078681..b766e4a5b 100644 --- a/src/IconWifiOutlinedFilled.tsx +++ b/src/IconWifiOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconWifiOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconWifiOutlinedFilled as default } +export default IconWifiOutlinedFilled diff --git a/src/IconWifiPasswordOutlined.tsx b/src/IconWifiPasswordOutlined.tsx index 02cd56bfe..8c3ff3a69 100644 --- a/src/IconWifiPasswordOutlined.tsx +++ b/src/IconWifiPasswordOutlined.tsx @@ -8,4 +8,4 @@ const IconWifiPasswordOutlined: React.FC = ({ ...props }) => ( ) -export { IconWifiPasswordOutlined as default } +export default IconWifiPasswordOutlined diff --git a/src/IconWifiPasswordOutlinedFilled.tsx b/src/IconWifiPasswordOutlinedFilled.tsx index 29409c76d..a1533e530 100644 --- a/src/IconWifiPasswordOutlinedFilled.tsx +++ b/src/IconWifiPasswordOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconWifiPasswordOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconWifiPasswordOutlinedFilled as default } +export default IconWifiPasswordOutlinedFilled diff --git a/src/IconWifiPasswordRounded.tsx b/src/IconWifiPasswordRounded.tsx index 703a09a6f..ba968706d 100644 --- a/src/IconWifiPasswordRounded.tsx +++ b/src/IconWifiPasswordRounded.tsx @@ -8,4 +8,4 @@ const IconWifiPasswordRounded: React.FC = ({ ...props }) => ( ) -export { IconWifiPasswordRounded as default } +export default IconWifiPasswordRounded diff --git a/src/IconWifiPasswordRoundedFilled.tsx b/src/IconWifiPasswordRoundedFilled.tsx index 091977677..6c4b3ad84 100644 --- a/src/IconWifiPasswordRoundedFilled.tsx +++ b/src/IconWifiPasswordRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconWifiPasswordRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconWifiPasswordRoundedFilled as default } +export default IconWifiPasswordRoundedFilled diff --git a/src/IconWifiPasswordSharp.tsx b/src/IconWifiPasswordSharp.tsx index 0af599ee9..1a92eed1a 100644 --- a/src/IconWifiPasswordSharp.tsx +++ b/src/IconWifiPasswordSharp.tsx @@ -8,4 +8,4 @@ const IconWifiPasswordSharp: React.FC = ({ ...props }) => ( ) -export { IconWifiPasswordSharp as default } +export default IconWifiPasswordSharp diff --git a/src/IconWifiPasswordSharpFilled.tsx b/src/IconWifiPasswordSharpFilled.tsx index b2db8875e..4c0616e54 100644 --- a/src/IconWifiPasswordSharpFilled.tsx +++ b/src/IconWifiPasswordSharpFilled.tsx @@ -8,4 +8,4 @@ const IconWifiPasswordSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconWifiPasswordSharpFilled as default } +export default IconWifiPasswordSharpFilled diff --git a/src/IconWifiProtectedSetupOutlined.tsx b/src/IconWifiProtectedSetupOutlined.tsx index 6a9ebe871..7e5ee1a57 100644 --- a/src/IconWifiProtectedSetupOutlined.tsx +++ b/src/IconWifiProtectedSetupOutlined.tsx @@ -8,4 +8,4 @@ const IconWifiProtectedSetupOutlined: React.FC = ({ ...props }) => ( ) -export { IconWifiProtectedSetupOutlined as default } +export default IconWifiProtectedSetupOutlined diff --git a/src/IconWifiProtectedSetupOutlinedFilled.tsx b/src/IconWifiProtectedSetupOutlinedFilled.tsx index 0c1e1ada6..74d2cd5ee 100644 --- a/src/IconWifiProtectedSetupOutlinedFilled.tsx +++ b/src/IconWifiProtectedSetupOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconWifiProtectedSetupOutlinedFilled: React.FC = ({ ) -export { IconWifiProtectedSetupOutlinedFilled as default } +export default IconWifiProtectedSetupOutlinedFilled diff --git a/src/IconWifiProtectedSetupRounded.tsx b/src/IconWifiProtectedSetupRounded.tsx index 1ed9bd513..a81f1e46b 100644 --- a/src/IconWifiProtectedSetupRounded.tsx +++ b/src/IconWifiProtectedSetupRounded.tsx @@ -8,4 +8,4 @@ const IconWifiProtectedSetupRounded: React.FC = ({ ...props }) => ( ) -export { IconWifiProtectedSetupRounded as default } +export default IconWifiProtectedSetupRounded diff --git a/src/IconWifiProtectedSetupRoundedFilled.tsx b/src/IconWifiProtectedSetupRoundedFilled.tsx index a56473f7a..0b7a55161 100644 --- a/src/IconWifiProtectedSetupRoundedFilled.tsx +++ b/src/IconWifiProtectedSetupRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconWifiProtectedSetupRoundedFilled: React.FC = ({ ) -export { IconWifiProtectedSetupRoundedFilled as default } +export default IconWifiProtectedSetupRoundedFilled diff --git a/src/IconWifiProtectedSetupSharp.tsx b/src/IconWifiProtectedSetupSharp.tsx index 5a15e8a12..5b7f0777f 100644 --- a/src/IconWifiProtectedSetupSharp.tsx +++ b/src/IconWifiProtectedSetupSharp.tsx @@ -8,4 +8,4 @@ const IconWifiProtectedSetupSharp: React.FC = ({ ...props }) => ( ) -export { IconWifiProtectedSetupSharp as default } +export default IconWifiProtectedSetupSharp diff --git a/src/IconWifiProtectedSetupSharpFilled.tsx b/src/IconWifiProtectedSetupSharpFilled.tsx index 87235f24a..fb907845a 100644 --- a/src/IconWifiProtectedSetupSharpFilled.tsx +++ b/src/IconWifiProtectedSetupSharpFilled.tsx @@ -10,4 +10,4 @@ const IconWifiProtectedSetupSharpFilled: React.FC = ({ ) -export { IconWifiProtectedSetupSharpFilled as default } +export default IconWifiProtectedSetupSharpFilled diff --git a/src/IconWifiProxyOutlined.tsx b/src/IconWifiProxyOutlined.tsx index 545405dbe..e9e792c4d 100644 --- a/src/IconWifiProxyOutlined.tsx +++ b/src/IconWifiProxyOutlined.tsx @@ -8,4 +8,4 @@ const IconWifiProxyOutlined: React.FC = ({ ...props }) => ( ) -export { IconWifiProxyOutlined as default } +export default IconWifiProxyOutlined diff --git a/src/IconWifiProxyOutlinedFilled.tsx b/src/IconWifiProxyOutlinedFilled.tsx index 4ed0ae1aa..a8ee4a275 100644 --- a/src/IconWifiProxyOutlinedFilled.tsx +++ b/src/IconWifiProxyOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconWifiProxyOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconWifiProxyOutlinedFilled as default } +export default IconWifiProxyOutlinedFilled diff --git a/src/IconWifiProxyRounded.tsx b/src/IconWifiProxyRounded.tsx index 5965ba4eb..4d0f1e4cc 100644 --- a/src/IconWifiProxyRounded.tsx +++ b/src/IconWifiProxyRounded.tsx @@ -8,4 +8,4 @@ const IconWifiProxyRounded: React.FC = ({ ...props }) => ( ) -export { IconWifiProxyRounded as default } +export default IconWifiProxyRounded diff --git a/src/IconWifiProxyRoundedFilled.tsx b/src/IconWifiProxyRoundedFilled.tsx index f2a159bf1..ffe3a60a8 100644 --- a/src/IconWifiProxyRoundedFilled.tsx +++ b/src/IconWifiProxyRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconWifiProxyRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconWifiProxyRoundedFilled as default } +export default IconWifiProxyRoundedFilled diff --git a/src/IconWifiProxySharp.tsx b/src/IconWifiProxySharp.tsx index e0f8a72df..3efe44adf 100644 --- a/src/IconWifiProxySharp.tsx +++ b/src/IconWifiProxySharp.tsx @@ -8,4 +8,4 @@ const IconWifiProxySharp: React.FC = ({ ...props }) => ( ) -export { IconWifiProxySharp as default } +export default IconWifiProxySharp diff --git a/src/IconWifiProxySharpFilled.tsx b/src/IconWifiProxySharpFilled.tsx index 1dbd82897..62e498c9b 100644 --- a/src/IconWifiProxySharpFilled.tsx +++ b/src/IconWifiProxySharpFilled.tsx @@ -8,4 +8,4 @@ const IconWifiProxySharpFilled: React.FC = ({ ...props }) => ( ) -export { IconWifiProxySharpFilled as default } +export default IconWifiProxySharpFilled diff --git a/src/IconWifiRounded.tsx b/src/IconWifiRounded.tsx index 0f06f3b01..839da7184 100644 --- a/src/IconWifiRounded.tsx +++ b/src/IconWifiRounded.tsx @@ -8,4 +8,4 @@ const IconWifiRounded: React.FC = ({ ...props }) => ( ) -export { IconWifiRounded as default } +export default IconWifiRounded diff --git a/src/IconWifiRoundedFilled.tsx b/src/IconWifiRoundedFilled.tsx index 90d0a0a32..e6e535b5d 100644 --- a/src/IconWifiRoundedFilled.tsx +++ b/src/IconWifiRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconWifiRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconWifiRoundedFilled as default } +export default IconWifiRoundedFilled diff --git a/src/IconWifiSharp.tsx b/src/IconWifiSharp.tsx index 5cfbf5e89..e8b602217 100644 --- a/src/IconWifiSharp.tsx +++ b/src/IconWifiSharp.tsx @@ -8,4 +8,4 @@ const IconWifiSharp: React.FC = ({ ...props }) => ( ) -export { IconWifiSharp as default } +export default IconWifiSharp diff --git a/src/IconWifiSharpFilled.tsx b/src/IconWifiSharpFilled.tsx index 4b7ef31fc..dfdd75e36 100644 --- a/src/IconWifiSharpFilled.tsx +++ b/src/IconWifiSharpFilled.tsx @@ -8,4 +8,4 @@ const IconWifiSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconWifiSharpFilled as default } +export default IconWifiSharpFilled diff --git a/src/IconWifiTetheringErrorOutlined.tsx b/src/IconWifiTetheringErrorOutlined.tsx index 320ec37d7..9cfaf4ca1 100644 --- a/src/IconWifiTetheringErrorOutlined.tsx +++ b/src/IconWifiTetheringErrorOutlined.tsx @@ -8,4 +8,4 @@ const IconWifiTetheringErrorOutlined: React.FC = ({ ...props }) => ( ) -export { IconWifiTetheringErrorOutlined as default } +export default IconWifiTetheringErrorOutlined diff --git a/src/IconWifiTetheringErrorOutlinedFilled.tsx b/src/IconWifiTetheringErrorOutlinedFilled.tsx index df5492394..5830b4d5d 100644 --- a/src/IconWifiTetheringErrorOutlinedFilled.tsx +++ b/src/IconWifiTetheringErrorOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconWifiTetheringErrorOutlinedFilled: React.FC = ({ ) -export { IconWifiTetheringErrorOutlinedFilled as default } +export default IconWifiTetheringErrorOutlinedFilled diff --git a/src/IconWifiTetheringErrorRounded.tsx b/src/IconWifiTetheringErrorRounded.tsx index 73cfc47db..b8db12303 100644 --- a/src/IconWifiTetheringErrorRounded.tsx +++ b/src/IconWifiTetheringErrorRounded.tsx @@ -8,4 +8,4 @@ const IconWifiTetheringErrorRounded: React.FC = ({ ...props }) => ( ) -export { IconWifiTetheringErrorRounded as default } +export default IconWifiTetheringErrorRounded diff --git a/src/IconWifiTetheringErrorRoundedFilled.tsx b/src/IconWifiTetheringErrorRoundedFilled.tsx index f8737d7c8..4cf2d1372 100644 --- a/src/IconWifiTetheringErrorRoundedFilled.tsx +++ b/src/IconWifiTetheringErrorRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconWifiTetheringErrorRoundedFilled: React.FC = ({ ) -export { IconWifiTetheringErrorRoundedFilled as default } +export default IconWifiTetheringErrorRoundedFilled diff --git a/src/IconWifiTetheringErrorSharp.tsx b/src/IconWifiTetheringErrorSharp.tsx index c58a6213e..de91cde5e 100644 --- a/src/IconWifiTetheringErrorSharp.tsx +++ b/src/IconWifiTetheringErrorSharp.tsx @@ -8,4 +8,4 @@ const IconWifiTetheringErrorSharp: React.FC = ({ ...props }) => ( ) -export { IconWifiTetheringErrorSharp as default } +export default IconWifiTetheringErrorSharp diff --git a/src/IconWifiTetheringErrorSharpFilled.tsx b/src/IconWifiTetheringErrorSharpFilled.tsx index 83bf6cc47..c31f60e8c 100644 --- a/src/IconWifiTetheringErrorSharpFilled.tsx +++ b/src/IconWifiTetheringErrorSharpFilled.tsx @@ -10,4 +10,4 @@ const IconWifiTetheringErrorSharpFilled: React.FC = ({ ) -export { IconWifiTetheringErrorSharpFilled as default } +export default IconWifiTetheringErrorSharpFilled diff --git a/src/IconWifiTetheringOffOutlined.tsx b/src/IconWifiTetheringOffOutlined.tsx index c517e503b..22705af36 100644 --- a/src/IconWifiTetheringOffOutlined.tsx +++ b/src/IconWifiTetheringOffOutlined.tsx @@ -8,4 +8,4 @@ const IconWifiTetheringOffOutlined: React.FC = ({ ...props }) => ( ) -export { IconWifiTetheringOffOutlined as default } +export default IconWifiTetheringOffOutlined diff --git a/src/IconWifiTetheringOffOutlinedFilled.tsx b/src/IconWifiTetheringOffOutlinedFilled.tsx index edafdd67a..579b06a54 100644 --- a/src/IconWifiTetheringOffOutlinedFilled.tsx +++ b/src/IconWifiTetheringOffOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconWifiTetheringOffOutlinedFilled: React.FC = ({ ) -export { IconWifiTetheringOffOutlinedFilled as default } +export default IconWifiTetheringOffOutlinedFilled diff --git a/src/IconWifiTetheringOffRounded.tsx b/src/IconWifiTetheringOffRounded.tsx index 3321b43a6..c212a10cc 100644 --- a/src/IconWifiTetheringOffRounded.tsx +++ b/src/IconWifiTetheringOffRounded.tsx @@ -8,4 +8,4 @@ const IconWifiTetheringOffRounded: React.FC = ({ ...props }) => ( ) -export { IconWifiTetheringOffRounded as default } +export default IconWifiTetheringOffRounded diff --git a/src/IconWifiTetheringOffRoundedFilled.tsx b/src/IconWifiTetheringOffRoundedFilled.tsx index e48e51854..fbc648061 100644 --- a/src/IconWifiTetheringOffRoundedFilled.tsx +++ b/src/IconWifiTetheringOffRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconWifiTetheringOffRoundedFilled: React.FC = ({ ) -export { IconWifiTetheringOffRoundedFilled as default } +export default IconWifiTetheringOffRoundedFilled diff --git a/src/IconWifiTetheringOffSharp.tsx b/src/IconWifiTetheringOffSharp.tsx index d7a1ad89f..9485ab607 100644 --- a/src/IconWifiTetheringOffSharp.tsx +++ b/src/IconWifiTetheringOffSharp.tsx @@ -8,4 +8,4 @@ const IconWifiTetheringOffSharp: React.FC = ({ ...props }) => ( ) -export { IconWifiTetheringOffSharp as default } +export default IconWifiTetheringOffSharp diff --git a/src/IconWifiTetheringOffSharpFilled.tsx b/src/IconWifiTetheringOffSharpFilled.tsx index 50e82f118..54f6554f6 100644 --- a/src/IconWifiTetheringOffSharpFilled.tsx +++ b/src/IconWifiTetheringOffSharpFilled.tsx @@ -8,4 +8,4 @@ const IconWifiTetheringOffSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconWifiTetheringOffSharpFilled as default } +export default IconWifiTetheringOffSharpFilled diff --git a/src/IconWifiTetheringOutlined.tsx b/src/IconWifiTetheringOutlined.tsx index 63994dac7..f71085074 100644 --- a/src/IconWifiTetheringOutlined.tsx +++ b/src/IconWifiTetheringOutlined.tsx @@ -8,4 +8,4 @@ const IconWifiTetheringOutlined: React.FC = ({ ...props }) => ( ) -export { IconWifiTetheringOutlined as default } +export default IconWifiTetheringOutlined diff --git a/src/IconWifiTetheringOutlinedFilled.tsx b/src/IconWifiTetheringOutlinedFilled.tsx index 0d7295d9f..328cff7c3 100644 --- a/src/IconWifiTetheringOutlinedFilled.tsx +++ b/src/IconWifiTetheringOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconWifiTetheringOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconWifiTetheringOutlinedFilled as default } +export default IconWifiTetheringOutlinedFilled diff --git a/src/IconWifiTetheringRounded.tsx b/src/IconWifiTetheringRounded.tsx index 22f8f4978..00ecf7482 100644 --- a/src/IconWifiTetheringRounded.tsx +++ b/src/IconWifiTetheringRounded.tsx @@ -8,4 +8,4 @@ const IconWifiTetheringRounded: React.FC = ({ ...props }) => ( ) -export { IconWifiTetheringRounded as default } +export default IconWifiTetheringRounded diff --git a/src/IconWifiTetheringRoundedFilled.tsx b/src/IconWifiTetheringRoundedFilled.tsx index cae9cabad..e3ef572c5 100644 --- a/src/IconWifiTetheringRoundedFilled.tsx +++ b/src/IconWifiTetheringRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconWifiTetheringRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconWifiTetheringRoundedFilled as default } +export default IconWifiTetheringRoundedFilled diff --git a/src/IconWifiTetheringSharp.tsx b/src/IconWifiTetheringSharp.tsx index ce354a5a7..be552e683 100644 --- a/src/IconWifiTetheringSharp.tsx +++ b/src/IconWifiTetheringSharp.tsx @@ -8,4 +8,4 @@ const IconWifiTetheringSharp: React.FC = ({ ...props }) => ( ) -export { IconWifiTetheringSharp as default } +export default IconWifiTetheringSharp diff --git a/src/IconWifiTetheringSharpFilled.tsx b/src/IconWifiTetheringSharpFilled.tsx index 77c7e281b..5936b7a83 100644 --- a/src/IconWifiTetheringSharpFilled.tsx +++ b/src/IconWifiTetheringSharpFilled.tsx @@ -8,4 +8,4 @@ const IconWifiTetheringSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconWifiTetheringSharpFilled as default } +export default IconWifiTetheringSharpFilled diff --git a/src/IconWindPowerOutlined.tsx b/src/IconWindPowerOutlined.tsx index d599b0b60..ac6483f74 100644 --- a/src/IconWindPowerOutlined.tsx +++ b/src/IconWindPowerOutlined.tsx @@ -8,4 +8,4 @@ const IconWindPowerOutlined: React.FC = ({ ...props }) => ( ) -export { IconWindPowerOutlined as default } +export default IconWindPowerOutlined diff --git a/src/IconWindPowerOutlinedFilled.tsx b/src/IconWindPowerOutlinedFilled.tsx index 17b20cc82..936b66652 100644 --- a/src/IconWindPowerOutlinedFilled.tsx +++ b/src/IconWindPowerOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconWindPowerOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconWindPowerOutlinedFilled as default } +export default IconWindPowerOutlinedFilled diff --git a/src/IconWindPowerRounded.tsx b/src/IconWindPowerRounded.tsx index 51126d809..d878bda2f 100644 --- a/src/IconWindPowerRounded.tsx +++ b/src/IconWindPowerRounded.tsx @@ -8,4 +8,4 @@ const IconWindPowerRounded: React.FC = ({ ...props }) => ( ) -export { IconWindPowerRounded as default } +export default IconWindPowerRounded diff --git a/src/IconWindPowerRoundedFilled.tsx b/src/IconWindPowerRoundedFilled.tsx index 1fba30d07..f1130de03 100644 --- a/src/IconWindPowerRoundedFilled.tsx +++ b/src/IconWindPowerRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconWindPowerRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconWindPowerRoundedFilled as default } +export default IconWindPowerRoundedFilled diff --git a/src/IconWindPowerSharp.tsx b/src/IconWindPowerSharp.tsx index 6168d51f8..43f68ca26 100644 --- a/src/IconWindPowerSharp.tsx +++ b/src/IconWindPowerSharp.tsx @@ -8,4 +8,4 @@ const IconWindPowerSharp: React.FC = ({ ...props }) => ( ) -export { IconWindPowerSharp as default } +export default IconWindPowerSharp diff --git a/src/IconWindPowerSharpFilled.tsx b/src/IconWindPowerSharpFilled.tsx index 5328f2690..46ac084f0 100644 --- a/src/IconWindPowerSharpFilled.tsx +++ b/src/IconWindPowerSharpFilled.tsx @@ -8,4 +8,4 @@ const IconWindPowerSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconWindPowerSharpFilled as default } +export default IconWindPowerSharpFilled diff --git a/src/IconWindowClosedOutlined.tsx b/src/IconWindowClosedOutlined.tsx index bf6c1a14a..0bb37304a 100644 --- a/src/IconWindowClosedOutlined.tsx +++ b/src/IconWindowClosedOutlined.tsx @@ -8,4 +8,4 @@ const IconWindowClosedOutlined: React.FC = ({ ...props }) => ( ) -export { IconWindowClosedOutlined as default } +export default IconWindowClosedOutlined diff --git a/src/IconWindowClosedOutlinedFilled.tsx b/src/IconWindowClosedOutlinedFilled.tsx index 66d925adf..80b8803ab 100644 --- a/src/IconWindowClosedOutlinedFilled.tsx +++ b/src/IconWindowClosedOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconWindowClosedOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconWindowClosedOutlinedFilled as default } +export default IconWindowClosedOutlinedFilled diff --git a/src/IconWindowClosedRounded.tsx b/src/IconWindowClosedRounded.tsx index 70af4f44f..b7c155020 100644 --- a/src/IconWindowClosedRounded.tsx +++ b/src/IconWindowClosedRounded.tsx @@ -8,4 +8,4 @@ const IconWindowClosedRounded: React.FC = ({ ...props }) => ( ) -export { IconWindowClosedRounded as default } +export default IconWindowClosedRounded diff --git a/src/IconWindowClosedRoundedFilled.tsx b/src/IconWindowClosedRoundedFilled.tsx index dc5b0810d..995946969 100644 --- a/src/IconWindowClosedRoundedFilled.tsx +++ b/src/IconWindowClosedRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconWindowClosedRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconWindowClosedRoundedFilled as default } +export default IconWindowClosedRoundedFilled diff --git a/src/IconWindowClosedSharp.tsx b/src/IconWindowClosedSharp.tsx index db8556066..4b56824d3 100644 --- a/src/IconWindowClosedSharp.tsx +++ b/src/IconWindowClosedSharp.tsx @@ -8,4 +8,4 @@ const IconWindowClosedSharp: React.FC = ({ ...props }) => ( ) -export { IconWindowClosedSharp as default } +export default IconWindowClosedSharp diff --git a/src/IconWindowClosedSharpFilled.tsx b/src/IconWindowClosedSharpFilled.tsx index 1d3b7950d..7a71094d8 100644 --- a/src/IconWindowClosedSharpFilled.tsx +++ b/src/IconWindowClosedSharpFilled.tsx @@ -8,4 +8,4 @@ const IconWindowClosedSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconWindowClosedSharpFilled as default } +export default IconWindowClosedSharpFilled diff --git a/src/IconWindowOpenOutlined.tsx b/src/IconWindowOpenOutlined.tsx index b297e8ab1..a3cc55ef0 100644 --- a/src/IconWindowOpenOutlined.tsx +++ b/src/IconWindowOpenOutlined.tsx @@ -8,4 +8,4 @@ const IconWindowOpenOutlined: React.FC = ({ ...props }) => ( ) -export { IconWindowOpenOutlined as default } +export default IconWindowOpenOutlined diff --git a/src/IconWindowOpenOutlinedFilled.tsx b/src/IconWindowOpenOutlinedFilled.tsx index 440e88547..e1fd1d33b 100644 --- a/src/IconWindowOpenOutlinedFilled.tsx +++ b/src/IconWindowOpenOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconWindowOpenOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconWindowOpenOutlinedFilled as default } +export default IconWindowOpenOutlinedFilled diff --git a/src/IconWindowOpenRounded.tsx b/src/IconWindowOpenRounded.tsx index c2c6cb46f..ca2c3537e 100644 --- a/src/IconWindowOpenRounded.tsx +++ b/src/IconWindowOpenRounded.tsx @@ -8,4 +8,4 @@ const IconWindowOpenRounded: React.FC = ({ ...props }) => ( ) -export { IconWindowOpenRounded as default } +export default IconWindowOpenRounded diff --git a/src/IconWindowOpenRoundedFilled.tsx b/src/IconWindowOpenRoundedFilled.tsx index 92c3bdc00..1188566bd 100644 --- a/src/IconWindowOpenRoundedFilled.tsx +++ b/src/IconWindowOpenRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconWindowOpenRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconWindowOpenRoundedFilled as default } +export default IconWindowOpenRoundedFilled diff --git a/src/IconWindowOpenSharp.tsx b/src/IconWindowOpenSharp.tsx index 58e4fbf31..80b994729 100644 --- a/src/IconWindowOpenSharp.tsx +++ b/src/IconWindowOpenSharp.tsx @@ -8,4 +8,4 @@ const IconWindowOpenSharp: React.FC = ({ ...props }) => ( ) -export { IconWindowOpenSharp as default } +export default IconWindowOpenSharp diff --git a/src/IconWindowOpenSharpFilled.tsx b/src/IconWindowOpenSharpFilled.tsx index 784f7159b..492257721 100644 --- a/src/IconWindowOpenSharpFilled.tsx +++ b/src/IconWindowOpenSharpFilled.tsx @@ -8,4 +8,4 @@ const IconWindowOpenSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconWindowOpenSharpFilled as default } +export default IconWindowOpenSharpFilled diff --git a/src/IconWindowOutlined.tsx b/src/IconWindowOutlined.tsx index 329b8851e..de3531840 100644 --- a/src/IconWindowOutlined.tsx +++ b/src/IconWindowOutlined.tsx @@ -8,4 +8,4 @@ const IconWindowOutlined: React.FC = ({ ...props }) => ( ) -export { IconWindowOutlined as default } +export default IconWindowOutlined diff --git a/src/IconWindowOutlinedFilled.tsx b/src/IconWindowOutlinedFilled.tsx index f5470b8f4..8ea60fb8b 100644 --- a/src/IconWindowOutlinedFilled.tsx +++ b/src/IconWindowOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconWindowOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconWindowOutlinedFilled as default } +export default IconWindowOutlinedFilled diff --git a/src/IconWindowRounded.tsx b/src/IconWindowRounded.tsx index 9be1b05fd..551181663 100644 --- a/src/IconWindowRounded.tsx +++ b/src/IconWindowRounded.tsx @@ -8,4 +8,4 @@ const IconWindowRounded: React.FC = ({ ...props }) => ( ) -export { IconWindowRounded as default } +export default IconWindowRounded diff --git a/src/IconWindowRoundedFilled.tsx b/src/IconWindowRoundedFilled.tsx index 692096c31..15dba2147 100644 --- a/src/IconWindowRoundedFilled.tsx +++ b/src/IconWindowRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconWindowRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconWindowRoundedFilled as default } +export default IconWindowRoundedFilled diff --git a/src/IconWindowSensorOutlined.tsx b/src/IconWindowSensorOutlined.tsx index 5ea18759a..d8376414f 100644 --- a/src/IconWindowSensorOutlined.tsx +++ b/src/IconWindowSensorOutlined.tsx @@ -8,4 +8,4 @@ const IconWindowSensorOutlined: React.FC = ({ ...props }) => ( ) -export { IconWindowSensorOutlined as default } +export default IconWindowSensorOutlined diff --git a/src/IconWindowSensorOutlinedFilled.tsx b/src/IconWindowSensorOutlinedFilled.tsx index 7dfb977fe..00621d034 100644 --- a/src/IconWindowSensorOutlinedFilled.tsx +++ b/src/IconWindowSensorOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconWindowSensorOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconWindowSensorOutlinedFilled as default } +export default IconWindowSensorOutlinedFilled diff --git a/src/IconWindowSensorRounded.tsx b/src/IconWindowSensorRounded.tsx index 339c858be..b63e10d86 100644 --- a/src/IconWindowSensorRounded.tsx +++ b/src/IconWindowSensorRounded.tsx @@ -8,4 +8,4 @@ const IconWindowSensorRounded: React.FC = ({ ...props }) => ( ) -export { IconWindowSensorRounded as default } +export default IconWindowSensorRounded diff --git a/src/IconWindowSensorRoundedFilled.tsx b/src/IconWindowSensorRoundedFilled.tsx index 4ced0f732..f77dff4c7 100644 --- a/src/IconWindowSensorRoundedFilled.tsx +++ b/src/IconWindowSensorRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconWindowSensorRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconWindowSensorRoundedFilled as default } +export default IconWindowSensorRoundedFilled diff --git a/src/IconWindowSensorSharp.tsx b/src/IconWindowSensorSharp.tsx index d7b02534b..6b305f628 100644 --- a/src/IconWindowSensorSharp.tsx +++ b/src/IconWindowSensorSharp.tsx @@ -8,4 +8,4 @@ const IconWindowSensorSharp: React.FC = ({ ...props }) => ( ) -export { IconWindowSensorSharp as default } +export default IconWindowSensorSharp diff --git a/src/IconWindowSensorSharpFilled.tsx b/src/IconWindowSensorSharpFilled.tsx index b62de9b52..a7103d5a8 100644 --- a/src/IconWindowSensorSharpFilled.tsx +++ b/src/IconWindowSensorSharpFilled.tsx @@ -8,4 +8,4 @@ const IconWindowSensorSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconWindowSensorSharpFilled as default } +export default IconWindowSensorSharpFilled diff --git a/src/IconWindowSharp.tsx b/src/IconWindowSharp.tsx index 96fccc9e2..628414b71 100644 --- a/src/IconWindowSharp.tsx +++ b/src/IconWindowSharp.tsx @@ -8,4 +8,4 @@ const IconWindowSharp: React.FC = ({ ...props }) => ( ) -export { IconWindowSharp as default } +export default IconWindowSharp diff --git a/src/IconWindowSharpFilled.tsx b/src/IconWindowSharpFilled.tsx index 675116fdf..8eeca9d6d 100644 --- a/src/IconWindowSharpFilled.tsx +++ b/src/IconWindowSharpFilled.tsx @@ -8,4 +8,4 @@ const IconWindowSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconWindowSharpFilled as default } +export default IconWindowSharpFilled diff --git a/src/IconWineBarOutlined.tsx b/src/IconWineBarOutlined.tsx index b96f14447..2edae31ee 100644 --- a/src/IconWineBarOutlined.tsx +++ b/src/IconWineBarOutlined.tsx @@ -8,4 +8,4 @@ const IconWineBarOutlined: React.FC = ({ ...props }) => ( ) -export { IconWineBarOutlined as default } +export default IconWineBarOutlined diff --git a/src/IconWineBarOutlinedFilled.tsx b/src/IconWineBarOutlinedFilled.tsx index 11838c85c..4ce029540 100644 --- a/src/IconWineBarOutlinedFilled.tsx +++ b/src/IconWineBarOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconWineBarOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconWineBarOutlinedFilled as default } +export default IconWineBarOutlinedFilled diff --git a/src/IconWineBarRounded.tsx b/src/IconWineBarRounded.tsx index fee196c88..db3248c11 100644 --- a/src/IconWineBarRounded.tsx +++ b/src/IconWineBarRounded.tsx @@ -8,4 +8,4 @@ const IconWineBarRounded: React.FC = ({ ...props }) => ( ) -export { IconWineBarRounded as default } +export default IconWineBarRounded diff --git a/src/IconWineBarRoundedFilled.tsx b/src/IconWineBarRoundedFilled.tsx index a92854dec..500bacbdd 100644 --- a/src/IconWineBarRoundedFilled.tsx +++ b/src/IconWineBarRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconWineBarRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconWineBarRoundedFilled as default } +export default IconWineBarRoundedFilled diff --git a/src/IconWineBarSharp.tsx b/src/IconWineBarSharp.tsx index 1efdd3fde..4abddeb35 100644 --- a/src/IconWineBarSharp.tsx +++ b/src/IconWineBarSharp.tsx @@ -8,4 +8,4 @@ const IconWineBarSharp: React.FC = ({ ...props }) => ( ) -export { IconWineBarSharp as default } +export default IconWineBarSharp diff --git a/src/IconWineBarSharpFilled.tsx b/src/IconWineBarSharpFilled.tsx index d393f8ba2..6be8e3b7f 100644 --- a/src/IconWineBarSharpFilled.tsx +++ b/src/IconWineBarSharpFilled.tsx @@ -8,4 +8,4 @@ const IconWineBarSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconWineBarSharpFilled as default } +export default IconWineBarSharpFilled diff --git a/src/IconWoman2Outlined.tsx b/src/IconWoman2Outlined.tsx index 304d47a52..32c8b7f06 100644 --- a/src/IconWoman2Outlined.tsx +++ b/src/IconWoman2Outlined.tsx @@ -8,4 +8,4 @@ const IconWoman2Outlined: React.FC = ({ ...props }) => ( ) -export { IconWoman2Outlined as default } +export default IconWoman2Outlined diff --git a/src/IconWoman2OutlinedFilled.tsx b/src/IconWoman2OutlinedFilled.tsx index 09e03808c..f8e0885b6 100644 --- a/src/IconWoman2OutlinedFilled.tsx +++ b/src/IconWoman2OutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconWoman2OutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconWoman2OutlinedFilled as default } +export default IconWoman2OutlinedFilled diff --git a/src/IconWoman2Rounded.tsx b/src/IconWoman2Rounded.tsx index 3e268a25b..035e4861b 100644 --- a/src/IconWoman2Rounded.tsx +++ b/src/IconWoman2Rounded.tsx @@ -8,4 +8,4 @@ const IconWoman2Rounded: React.FC = ({ ...props }) => ( ) -export { IconWoman2Rounded as default } +export default IconWoman2Rounded diff --git a/src/IconWoman2RoundedFilled.tsx b/src/IconWoman2RoundedFilled.tsx index bedf50bdc..738bfc9e0 100644 --- a/src/IconWoman2RoundedFilled.tsx +++ b/src/IconWoman2RoundedFilled.tsx @@ -8,4 +8,4 @@ const IconWoman2RoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconWoman2RoundedFilled as default } +export default IconWoman2RoundedFilled diff --git a/src/IconWoman2Sharp.tsx b/src/IconWoman2Sharp.tsx index a13b06c2b..d4e26d620 100644 --- a/src/IconWoman2Sharp.tsx +++ b/src/IconWoman2Sharp.tsx @@ -8,4 +8,4 @@ const IconWoman2Sharp: React.FC = ({ ...props }) => ( ) -export { IconWoman2Sharp as default } +export default IconWoman2Sharp diff --git a/src/IconWoman2SharpFilled.tsx b/src/IconWoman2SharpFilled.tsx index c596fe95e..d42318a05 100644 --- a/src/IconWoman2SharpFilled.tsx +++ b/src/IconWoman2SharpFilled.tsx @@ -8,4 +8,4 @@ const IconWoman2SharpFilled: React.FC = ({ ...props }) => ( ) -export { IconWoman2SharpFilled as default } +export default IconWoman2SharpFilled diff --git a/src/IconWomanOutlined.tsx b/src/IconWomanOutlined.tsx index 927cd1ca5..ceb4e7253 100644 --- a/src/IconWomanOutlined.tsx +++ b/src/IconWomanOutlined.tsx @@ -8,4 +8,4 @@ const IconWomanOutlined: React.FC = ({ ...props }) => ( ) -export { IconWomanOutlined as default } +export default IconWomanOutlined diff --git a/src/IconWomanOutlinedFilled.tsx b/src/IconWomanOutlinedFilled.tsx index 4feceadd6..e1d009f96 100644 --- a/src/IconWomanOutlinedFilled.tsx +++ b/src/IconWomanOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconWomanOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconWomanOutlinedFilled as default } +export default IconWomanOutlinedFilled diff --git a/src/IconWomanRounded.tsx b/src/IconWomanRounded.tsx index 164b8f8d3..8f58b8f66 100644 --- a/src/IconWomanRounded.tsx +++ b/src/IconWomanRounded.tsx @@ -8,4 +8,4 @@ const IconWomanRounded: React.FC = ({ ...props }) => ( ) -export { IconWomanRounded as default } +export default IconWomanRounded diff --git a/src/IconWomanRoundedFilled.tsx b/src/IconWomanRoundedFilled.tsx index ee7807594..c13285567 100644 --- a/src/IconWomanRoundedFilled.tsx +++ b/src/IconWomanRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconWomanRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconWomanRoundedFilled as default } +export default IconWomanRoundedFilled diff --git a/src/IconWomanSharp.tsx b/src/IconWomanSharp.tsx index 2ca032ba2..47712eb63 100644 --- a/src/IconWomanSharp.tsx +++ b/src/IconWomanSharp.tsx @@ -8,4 +8,4 @@ const IconWomanSharp: React.FC = ({ ...props }) => ( ) -export { IconWomanSharp as default } +export default IconWomanSharp diff --git a/src/IconWomanSharpFilled.tsx b/src/IconWomanSharpFilled.tsx index 29a98b914..cd4e80879 100644 --- a/src/IconWomanSharpFilled.tsx +++ b/src/IconWomanSharpFilled.tsx @@ -8,4 +8,4 @@ const IconWomanSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconWomanSharpFilled as default } +export default IconWomanSharpFilled diff --git a/src/IconWorkAlertOutlined.tsx b/src/IconWorkAlertOutlined.tsx index 392fcb4cd..c8f2d112d 100644 --- a/src/IconWorkAlertOutlined.tsx +++ b/src/IconWorkAlertOutlined.tsx @@ -8,4 +8,4 @@ const IconWorkAlertOutlined: React.FC = ({ ...props }) => ( ) -export { IconWorkAlertOutlined as default } +export default IconWorkAlertOutlined diff --git a/src/IconWorkAlertOutlinedFilled.tsx b/src/IconWorkAlertOutlinedFilled.tsx index 2ed8f7e97..e287cd1b2 100644 --- a/src/IconWorkAlertOutlinedFilled.tsx +++ b/src/IconWorkAlertOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconWorkAlertOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconWorkAlertOutlinedFilled as default } +export default IconWorkAlertOutlinedFilled diff --git a/src/IconWorkAlertRounded.tsx b/src/IconWorkAlertRounded.tsx index 93c8c12de..fa8e1f604 100644 --- a/src/IconWorkAlertRounded.tsx +++ b/src/IconWorkAlertRounded.tsx @@ -8,4 +8,4 @@ const IconWorkAlertRounded: React.FC = ({ ...props }) => ( ) -export { IconWorkAlertRounded as default } +export default IconWorkAlertRounded diff --git a/src/IconWorkAlertRoundedFilled.tsx b/src/IconWorkAlertRoundedFilled.tsx index 64b8899d1..8d540a05b 100644 --- a/src/IconWorkAlertRoundedFilled.tsx +++ b/src/IconWorkAlertRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconWorkAlertRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconWorkAlertRoundedFilled as default } +export default IconWorkAlertRoundedFilled diff --git a/src/IconWorkAlertSharp.tsx b/src/IconWorkAlertSharp.tsx index 58f5f8ad8..4fe64c10b 100644 --- a/src/IconWorkAlertSharp.tsx +++ b/src/IconWorkAlertSharp.tsx @@ -8,4 +8,4 @@ const IconWorkAlertSharp: React.FC = ({ ...props }) => ( ) -export { IconWorkAlertSharp as default } +export default IconWorkAlertSharp diff --git a/src/IconWorkAlertSharpFilled.tsx b/src/IconWorkAlertSharpFilled.tsx index 6fcba067e..66573d4bc 100644 --- a/src/IconWorkAlertSharpFilled.tsx +++ b/src/IconWorkAlertSharpFilled.tsx @@ -8,4 +8,4 @@ const IconWorkAlertSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconWorkAlertSharpFilled as default } +export default IconWorkAlertSharpFilled diff --git a/src/IconWorkHistoryOutlined.tsx b/src/IconWorkHistoryOutlined.tsx index f5b3f5ab6..8b995df94 100644 --- a/src/IconWorkHistoryOutlined.tsx +++ b/src/IconWorkHistoryOutlined.tsx @@ -8,4 +8,4 @@ const IconWorkHistoryOutlined: React.FC = ({ ...props }) => ( ) -export { IconWorkHistoryOutlined as default } +export default IconWorkHistoryOutlined diff --git a/src/IconWorkHistoryOutlinedFilled.tsx b/src/IconWorkHistoryOutlinedFilled.tsx index 002bb496e..332cd7c9b 100644 --- a/src/IconWorkHistoryOutlinedFilled.tsx +++ b/src/IconWorkHistoryOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconWorkHistoryOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconWorkHistoryOutlinedFilled as default } +export default IconWorkHistoryOutlinedFilled diff --git a/src/IconWorkHistoryRounded.tsx b/src/IconWorkHistoryRounded.tsx index 04f4db15d..f953a348a 100644 --- a/src/IconWorkHistoryRounded.tsx +++ b/src/IconWorkHistoryRounded.tsx @@ -8,4 +8,4 @@ const IconWorkHistoryRounded: React.FC = ({ ...props }) => ( ) -export { IconWorkHistoryRounded as default } +export default IconWorkHistoryRounded diff --git a/src/IconWorkHistoryRoundedFilled.tsx b/src/IconWorkHistoryRoundedFilled.tsx index 32d6878c3..d5599d9aa 100644 --- a/src/IconWorkHistoryRoundedFilled.tsx +++ b/src/IconWorkHistoryRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconWorkHistoryRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconWorkHistoryRoundedFilled as default } +export default IconWorkHistoryRoundedFilled diff --git a/src/IconWorkHistorySharp.tsx b/src/IconWorkHistorySharp.tsx index bf933dbf6..a78667519 100644 --- a/src/IconWorkHistorySharp.tsx +++ b/src/IconWorkHistorySharp.tsx @@ -8,4 +8,4 @@ const IconWorkHistorySharp: React.FC = ({ ...props }) => ( ) -export { IconWorkHistorySharp as default } +export default IconWorkHistorySharp diff --git a/src/IconWorkHistorySharpFilled.tsx b/src/IconWorkHistorySharpFilled.tsx index ff93e36b6..5dd9e7cf3 100644 --- a/src/IconWorkHistorySharpFilled.tsx +++ b/src/IconWorkHistorySharpFilled.tsx @@ -8,4 +8,4 @@ const IconWorkHistorySharpFilled: React.FC = ({ ...props }) => ( ) -export { IconWorkHistorySharpFilled as default } +export default IconWorkHistorySharpFilled diff --git a/src/IconWorkOutlined.tsx b/src/IconWorkOutlined.tsx index b84b890b8..9ad472c3d 100644 --- a/src/IconWorkOutlined.tsx +++ b/src/IconWorkOutlined.tsx @@ -8,4 +8,4 @@ const IconWorkOutlined: React.FC = ({ ...props }) => ( ) -export { IconWorkOutlined as default } +export default IconWorkOutlined diff --git a/src/IconWorkOutlinedFilled.tsx b/src/IconWorkOutlinedFilled.tsx index bd83f8f06..519f9e283 100644 --- a/src/IconWorkOutlinedFilled.tsx +++ b/src/IconWorkOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconWorkOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconWorkOutlinedFilled as default } +export default IconWorkOutlinedFilled diff --git a/src/IconWorkRounded.tsx b/src/IconWorkRounded.tsx index 6f7e77d52..ec7cb2963 100644 --- a/src/IconWorkRounded.tsx +++ b/src/IconWorkRounded.tsx @@ -8,4 +8,4 @@ const IconWorkRounded: React.FC = ({ ...props }) => ( ) -export { IconWorkRounded as default } +export default IconWorkRounded diff --git a/src/IconWorkRoundedFilled.tsx b/src/IconWorkRoundedFilled.tsx index b52556d72..cf0483d32 100644 --- a/src/IconWorkRoundedFilled.tsx +++ b/src/IconWorkRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconWorkRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconWorkRoundedFilled as default } +export default IconWorkRoundedFilled diff --git a/src/IconWorkSharp.tsx b/src/IconWorkSharp.tsx index eef34a1a0..a252b0a00 100644 --- a/src/IconWorkSharp.tsx +++ b/src/IconWorkSharp.tsx @@ -8,4 +8,4 @@ const IconWorkSharp: React.FC = ({ ...props }) => ( ) -export { IconWorkSharp as default } +export default IconWorkSharp diff --git a/src/IconWorkSharpFilled.tsx b/src/IconWorkSharpFilled.tsx index 1360dd310..91654ecc7 100644 --- a/src/IconWorkSharpFilled.tsx +++ b/src/IconWorkSharpFilled.tsx @@ -8,4 +8,4 @@ const IconWorkSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconWorkSharpFilled as default } +export default IconWorkSharpFilled diff --git a/src/IconWorkUpdateOutlined.tsx b/src/IconWorkUpdateOutlined.tsx index e9ca7b8eb..01a6992e1 100644 --- a/src/IconWorkUpdateOutlined.tsx +++ b/src/IconWorkUpdateOutlined.tsx @@ -8,4 +8,4 @@ const IconWorkUpdateOutlined: React.FC = ({ ...props }) => ( ) -export { IconWorkUpdateOutlined as default } +export default IconWorkUpdateOutlined diff --git a/src/IconWorkUpdateOutlinedFilled.tsx b/src/IconWorkUpdateOutlinedFilled.tsx index 5e1f06ab8..d94fdcc15 100644 --- a/src/IconWorkUpdateOutlinedFilled.tsx +++ b/src/IconWorkUpdateOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconWorkUpdateOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconWorkUpdateOutlinedFilled as default } +export default IconWorkUpdateOutlinedFilled diff --git a/src/IconWorkUpdateRounded.tsx b/src/IconWorkUpdateRounded.tsx index ef5dc1fce..2c3614469 100644 --- a/src/IconWorkUpdateRounded.tsx +++ b/src/IconWorkUpdateRounded.tsx @@ -8,4 +8,4 @@ const IconWorkUpdateRounded: React.FC = ({ ...props }) => ( ) -export { IconWorkUpdateRounded as default } +export default IconWorkUpdateRounded diff --git a/src/IconWorkUpdateRoundedFilled.tsx b/src/IconWorkUpdateRoundedFilled.tsx index 3d1b1aabb..b3da9e443 100644 --- a/src/IconWorkUpdateRoundedFilled.tsx +++ b/src/IconWorkUpdateRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconWorkUpdateRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconWorkUpdateRoundedFilled as default } +export default IconWorkUpdateRoundedFilled diff --git a/src/IconWorkUpdateSharp.tsx b/src/IconWorkUpdateSharp.tsx index 231a7d328..bcb4bab96 100644 --- a/src/IconWorkUpdateSharp.tsx +++ b/src/IconWorkUpdateSharp.tsx @@ -8,4 +8,4 @@ const IconWorkUpdateSharp: React.FC = ({ ...props }) => ( ) -export { IconWorkUpdateSharp as default } +export default IconWorkUpdateSharp diff --git a/src/IconWorkUpdateSharpFilled.tsx b/src/IconWorkUpdateSharpFilled.tsx index da9192e7a..ced908bb1 100644 --- a/src/IconWorkUpdateSharpFilled.tsx +++ b/src/IconWorkUpdateSharpFilled.tsx @@ -8,4 +8,4 @@ const IconWorkUpdateSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconWorkUpdateSharpFilled as default } +export default IconWorkUpdateSharpFilled diff --git a/src/IconWorkspacePremiumOutlined.tsx b/src/IconWorkspacePremiumOutlined.tsx index f1656cd5a..32e7e13a1 100644 --- a/src/IconWorkspacePremiumOutlined.tsx +++ b/src/IconWorkspacePremiumOutlined.tsx @@ -8,4 +8,4 @@ const IconWorkspacePremiumOutlined: React.FC = ({ ...props }) => ( ) -export { IconWorkspacePremiumOutlined as default } +export default IconWorkspacePremiumOutlined diff --git a/src/IconWorkspacePremiumOutlinedFilled.tsx b/src/IconWorkspacePremiumOutlinedFilled.tsx index 35b1df770..3c9f35628 100644 --- a/src/IconWorkspacePremiumOutlinedFilled.tsx +++ b/src/IconWorkspacePremiumOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconWorkspacePremiumOutlinedFilled: React.FC = ({ ) -export { IconWorkspacePremiumOutlinedFilled as default } +export default IconWorkspacePremiumOutlinedFilled diff --git a/src/IconWorkspacePremiumRounded.tsx b/src/IconWorkspacePremiumRounded.tsx index d119502a5..91bf5a2bb 100644 --- a/src/IconWorkspacePremiumRounded.tsx +++ b/src/IconWorkspacePremiumRounded.tsx @@ -8,4 +8,4 @@ const IconWorkspacePremiumRounded: React.FC = ({ ...props }) => ( ) -export { IconWorkspacePremiumRounded as default } +export default IconWorkspacePremiumRounded diff --git a/src/IconWorkspacePremiumRoundedFilled.tsx b/src/IconWorkspacePremiumRoundedFilled.tsx index da8f4827a..28bcbe967 100644 --- a/src/IconWorkspacePremiumRoundedFilled.tsx +++ b/src/IconWorkspacePremiumRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconWorkspacePremiumRoundedFilled: React.FC = ({ ) -export { IconWorkspacePremiumRoundedFilled as default } +export default IconWorkspacePremiumRoundedFilled diff --git a/src/IconWorkspacePremiumSharp.tsx b/src/IconWorkspacePremiumSharp.tsx index b7a5f6993..c1d002384 100644 --- a/src/IconWorkspacePremiumSharp.tsx +++ b/src/IconWorkspacePremiumSharp.tsx @@ -8,4 +8,4 @@ const IconWorkspacePremiumSharp: React.FC = ({ ...props }) => ( ) -export { IconWorkspacePremiumSharp as default } +export default IconWorkspacePremiumSharp diff --git a/src/IconWorkspacePremiumSharpFilled.tsx b/src/IconWorkspacePremiumSharpFilled.tsx index 684733319..41e29cbea 100644 --- a/src/IconWorkspacePremiumSharpFilled.tsx +++ b/src/IconWorkspacePremiumSharpFilled.tsx @@ -8,4 +8,4 @@ const IconWorkspacePremiumSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconWorkspacePremiumSharpFilled as default } +export default IconWorkspacePremiumSharpFilled diff --git a/src/IconWorkspacesOutlined.tsx b/src/IconWorkspacesOutlined.tsx index 1a5304be4..5ec72ef87 100644 --- a/src/IconWorkspacesOutlined.tsx +++ b/src/IconWorkspacesOutlined.tsx @@ -8,4 +8,4 @@ const IconWorkspacesOutlined: React.FC = ({ ...props }) => ( ) -export { IconWorkspacesOutlined as default } +export default IconWorkspacesOutlined diff --git a/src/IconWorkspacesOutlinedFilled.tsx b/src/IconWorkspacesOutlinedFilled.tsx index 5ef0a3b4e..5c6c77e55 100644 --- a/src/IconWorkspacesOutlinedFilled.tsx +++ b/src/IconWorkspacesOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconWorkspacesOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconWorkspacesOutlinedFilled as default } +export default IconWorkspacesOutlinedFilled diff --git a/src/IconWorkspacesRounded.tsx b/src/IconWorkspacesRounded.tsx index 333e1405c..df4bc6af9 100644 --- a/src/IconWorkspacesRounded.tsx +++ b/src/IconWorkspacesRounded.tsx @@ -8,4 +8,4 @@ const IconWorkspacesRounded: React.FC = ({ ...props }) => ( ) -export { IconWorkspacesRounded as default } +export default IconWorkspacesRounded diff --git a/src/IconWorkspacesRoundedFilled.tsx b/src/IconWorkspacesRoundedFilled.tsx index 8a258a4e7..5e980df4e 100644 --- a/src/IconWorkspacesRoundedFilled.tsx +++ b/src/IconWorkspacesRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconWorkspacesRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconWorkspacesRoundedFilled as default } +export default IconWorkspacesRoundedFilled diff --git a/src/IconWorkspacesSharp.tsx b/src/IconWorkspacesSharp.tsx index cd00e77cf..5e74c2aca 100644 --- a/src/IconWorkspacesSharp.tsx +++ b/src/IconWorkspacesSharp.tsx @@ -8,4 +8,4 @@ const IconWorkspacesSharp: React.FC = ({ ...props }) => ( ) -export { IconWorkspacesSharp as default } +export default IconWorkspacesSharp diff --git a/src/IconWorkspacesSharpFilled.tsx b/src/IconWorkspacesSharpFilled.tsx index 4b4075c5e..c99d8e9da 100644 --- a/src/IconWorkspacesSharpFilled.tsx +++ b/src/IconWorkspacesSharpFilled.tsx @@ -8,4 +8,4 @@ const IconWorkspacesSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconWorkspacesSharpFilled as default } +export default IconWorkspacesSharpFilled diff --git a/src/IconWoundsInjuriesOutlined.tsx b/src/IconWoundsInjuriesOutlined.tsx index 8a00508c9..1c1e65e95 100644 --- a/src/IconWoundsInjuriesOutlined.tsx +++ b/src/IconWoundsInjuriesOutlined.tsx @@ -8,4 +8,4 @@ const IconWoundsInjuriesOutlined: React.FC = ({ ...props }) => ( ) -export { IconWoundsInjuriesOutlined as default } +export default IconWoundsInjuriesOutlined diff --git a/src/IconWoundsInjuriesOutlinedFilled.tsx b/src/IconWoundsInjuriesOutlinedFilled.tsx index 0fb2651e2..ee721585c 100644 --- a/src/IconWoundsInjuriesOutlinedFilled.tsx +++ b/src/IconWoundsInjuriesOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconWoundsInjuriesOutlinedFilled: React.FC = ({ ) -export { IconWoundsInjuriesOutlinedFilled as default } +export default IconWoundsInjuriesOutlinedFilled diff --git a/src/IconWoundsInjuriesRounded.tsx b/src/IconWoundsInjuriesRounded.tsx index d0fdb2681..168d0e3c6 100644 --- a/src/IconWoundsInjuriesRounded.tsx +++ b/src/IconWoundsInjuriesRounded.tsx @@ -8,4 +8,4 @@ const IconWoundsInjuriesRounded: React.FC = ({ ...props }) => ( ) -export { IconWoundsInjuriesRounded as default } +export default IconWoundsInjuriesRounded diff --git a/src/IconWoundsInjuriesRoundedFilled.tsx b/src/IconWoundsInjuriesRoundedFilled.tsx index 663a0d1b1..aadfbb57b 100644 --- a/src/IconWoundsInjuriesRoundedFilled.tsx +++ b/src/IconWoundsInjuriesRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconWoundsInjuriesRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconWoundsInjuriesRoundedFilled as default } +export default IconWoundsInjuriesRoundedFilled diff --git a/src/IconWoundsInjuriesSharp.tsx b/src/IconWoundsInjuriesSharp.tsx index a234a20fe..25d06b561 100644 --- a/src/IconWoundsInjuriesSharp.tsx +++ b/src/IconWoundsInjuriesSharp.tsx @@ -8,4 +8,4 @@ const IconWoundsInjuriesSharp: React.FC = ({ ...props }) => ( ) -export { IconWoundsInjuriesSharp as default } +export default IconWoundsInjuriesSharp diff --git a/src/IconWoundsInjuriesSharpFilled.tsx b/src/IconWoundsInjuriesSharpFilled.tsx index 81a0ce49d..40a5d17b8 100644 --- a/src/IconWoundsInjuriesSharpFilled.tsx +++ b/src/IconWoundsInjuriesSharpFilled.tsx @@ -8,4 +8,4 @@ const IconWoundsInjuriesSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconWoundsInjuriesSharpFilled as default } +export default IconWoundsInjuriesSharpFilled diff --git a/src/IconWrapTextOutlined.tsx b/src/IconWrapTextOutlined.tsx index 4649fe7cf..582d3677c 100644 --- a/src/IconWrapTextOutlined.tsx +++ b/src/IconWrapTextOutlined.tsx @@ -8,4 +8,4 @@ const IconWrapTextOutlined: React.FC = ({ ...props }) => ( ) -export { IconWrapTextOutlined as default } +export default IconWrapTextOutlined diff --git a/src/IconWrapTextOutlinedFilled.tsx b/src/IconWrapTextOutlinedFilled.tsx index 63db658dc..8d35abed6 100644 --- a/src/IconWrapTextOutlinedFilled.tsx +++ b/src/IconWrapTextOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconWrapTextOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconWrapTextOutlinedFilled as default } +export default IconWrapTextOutlinedFilled diff --git a/src/IconWrapTextRounded.tsx b/src/IconWrapTextRounded.tsx index ebb875bed..1f6bc608a 100644 --- a/src/IconWrapTextRounded.tsx +++ b/src/IconWrapTextRounded.tsx @@ -8,4 +8,4 @@ const IconWrapTextRounded: React.FC = ({ ...props }) => ( ) -export { IconWrapTextRounded as default } +export default IconWrapTextRounded diff --git a/src/IconWrapTextRoundedFilled.tsx b/src/IconWrapTextRoundedFilled.tsx index f1d63df0c..b043a8605 100644 --- a/src/IconWrapTextRoundedFilled.tsx +++ b/src/IconWrapTextRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconWrapTextRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconWrapTextRoundedFilled as default } +export default IconWrapTextRoundedFilled diff --git a/src/IconWrapTextSharp.tsx b/src/IconWrapTextSharp.tsx index d96ac6b6f..3e5afe5b9 100644 --- a/src/IconWrapTextSharp.tsx +++ b/src/IconWrapTextSharp.tsx @@ -8,4 +8,4 @@ const IconWrapTextSharp: React.FC = ({ ...props }) => ( ) -export { IconWrapTextSharp as default } +export default IconWrapTextSharp diff --git a/src/IconWrapTextSharpFilled.tsx b/src/IconWrapTextSharpFilled.tsx index 2186a70a5..c15bc1e37 100644 --- a/src/IconWrapTextSharpFilled.tsx +++ b/src/IconWrapTextSharpFilled.tsx @@ -8,4 +8,4 @@ const IconWrapTextSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconWrapTextSharpFilled as default } +export default IconWrapTextSharpFilled diff --git a/src/IconWristOutlined.tsx b/src/IconWristOutlined.tsx index 6f2918359..11a47fba2 100644 --- a/src/IconWristOutlined.tsx +++ b/src/IconWristOutlined.tsx @@ -8,4 +8,4 @@ const IconWristOutlined: React.FC = ({ ...props }) => ( ) -export { IconWristOutlined as default } +export default IconWristOutlined diff --git a/src/IconWristOutlinedFilled.tsx b/src/IconWristOutlinedFilled.tsx index bbc2c9573..0617c0083 100644 --- a/src/IconWristOutlinedFilled.tsx +++ b/src/IconWristOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconWristOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconWristOutlinedFilled as default } +export default IconWristOutlinedFilled diff --git a/src/IconWristRounded.tsx b/src/IconWristRounded.tsx index 4064b486e..2720a60f7 100644 --- a/src/IconWristRounded.tsx +++ b/src/IconWristRounded.tsx @@ -8,4 +8,4 @@ const IconWristRounded: React.FC = ({ ...props }) => ( ) -export { IconWristRounded as default } +export default IconWristRounded diff --git a/src/IconWristRoundedFilled.tsx b/src/IconWristRoundedFilled.tsx index 2cc8e10fb..b2985bf10 100644 --- a/src/IconWristRoundedFilled.tsx +++ b/src/IconWristRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconWristRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconWristRoundedFilled as default } +export default IconWristRoundedFilled diff --git a/src/IconWristSharp.tsx b/src/IconWristSharp.tsx index 3037242e2..314c8c378 100644 --- a/src/IconWristSharp.tsx +++ b/src/IconWristSharp.tsx @@ -8,4 +8,4 @@ const IconWristSharp: React.FC = ({ ...props }) => ( ) -export { IconWristSharp as default } +export default IconWristSharp diff --git a/src/IconWristSharpFilled.tsx b/src/IconWristSharpFilled.tsx index 0c21dccdf..c8e5223b1 100644 --- a/src/IconWristSharpFilled.tsx +++ b/src/IconWristSharpFilled.tsx @@ -8,4 +8,4 @@ const IconWristSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconWristSharpFilled as default } +export default IconWristSharpFilled diff --git a/src/IconWrongLocationOutlined.tsx b/src/IconWrongLocationOutlined.tsx index 36d2edf9e..a58306f16 100644 --- a/src/IconWrongLocationOutlined.tsx +++ b/src/IconWrongLocationOutlined.tsx @@ -8,4 +8,4 @@ const IconWrongLocationOutlined: React.FC = ({ ...props }) => ( ) -export { IconWrongLocationOutlined as default } +export default IconWrongLocationOutlined diff --git a/src/IconWrongLocationOutlinedFilled.tsx b/src/IconWrongLocationOutlinedFilled.tsx index 260fa0426..786ebbb9f 100644 --- a/src/IconWrongLocationOutlinedFilled.tsx +++ b/src/IconWrongLocationOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconWrongLocationOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconWrongLocationOutlinedFilled as default } +export default IconWrongLocationOutlinedFilled diff --git a/src/IconWrongLocationRounded.tsx b/src/IconWrongLocationRounded.tsx index 22899949e..06a5fe11b 100644 --- a/src/IconWrongLocationRounded.tsx +++ b/src/IconWrongLocationRounded.tsx @@ -8,4 +8,4 @@ const IconWrongLocationRounded: React.FC = ({ ...props }) => ( ) -export { IconWrongLocationRounded as default } +export default IconWrongLocationRounded diff --git a/src/IconWrongLocationRoundedFilled.tsx b/src/IconWrongLocationRoundedFilled.tsx index a3b6fadd6..c3bc0efd5 100644 --- a/src/IconWrongLocationRoundedFilled.tsx +++ b/src/IconWrongLocationRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconWrongLocationRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconWrongLocationRoundedFilled as default } +export default IconWrongLocationRoundedFilled diff --git a/src/IconWrongLocationSharp.tsx b/src/IconWrongLocationSharp.tsx index 56d4ef08e..746c59725 100644 --- a/src/IconWrongLocationSharp.tsx +++ b/src/IconWrongLocationSharp.tsx @@ -8,4 +8,4 @@ const IconWrongLocationSharp: React.FC = ({ ...props }) => ( ) -export { IconWrongLocationSharp as default } +export default IconWrongLocationSharp diff --git a/src/IconWrongLocationSharpFilled.tsx b/src/IconWrongLocationSharpFilled.tsx index 98a0e6817..5f98e2a5b 100644 --- a/src/IconWrongLocationSharpFilled.tsx +++ b/src/IconWrongLocationSharpFilled.tsx @@ -8,4 +8,4 @@ const IconWrongLocationSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconWrongLocationSharpFilled as default } +export default IconWrongLocationSharpFilled diff --git a/src/IconWysiwygOutlined.tsx b/src/IconWysiwygOutlined.tsx index 1623f4f65..668a79541 100644 --- a/src/IconWysiwygOutlined.tsx +++ b/src/IconWysiwygOutlined.tsx @@ -8,4 +8,4 @@ const IconWysiwygOutlined: React.FC = ({ ...props }) => ( ) -export { IconWysiwygOutlined as default } +export default IconWysiwygOutlined diff --git a/src/IconWysiwygOutlinedFilled.tsx b/src/IconWysiwygOutlinedFilled.tsx index bf78a64ea..e947ed975 100644 --- a/src/IconWysiwygOutlinedFilled.tsx +++ b/src/IconWysiwygOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconWysiwygOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconWysiwygOutlinedFilled as default } +export default IconWysiwygOutlinedFilled diff --git a/src/IconWysiwygRounded.tsx b/src/IconWysiwygRounded.tsx index 0c57302b8..34952c165 100644 --- a/src/IconWysiwygRounded.tsx +++ b/src/IconWysiwygRounded.tsx @@ -8,4 +8,4 @@ const IconWysiwygRounded: React.FC = ({ ...props }) => ( ) -export { IconWysiwygRounded as default } +export default IconWysiwygRounded diff --git a/src/IconWysiwygRoundedFilled.tsx b/src/IconWysiwygRoundedFilled.tsx index c22ede3c1..aea738979 100644 --- a/src/IconWysiwygRoundedFilled.tsx +++ b/src/IconWysiwygRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconWysiwygRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconWysiwygRoundedFilled as default } +export default IconWysiwygRoundedFilled diff --git a/src/IconWysiwygSharp.tsx b/src/IconWysiwygSharp.tsx index d4bb5c8d4..716d20447 100644 --- a/src/IconWysiwygSharp.tsx +++ b/src/IconWysiwygSharp.tsx @@ -8,4 +8,4 @@ const IconWysiwygSharp: React.FC = ({ ...props }) => ( ) -export { IconWysiwygSharp as default } +export default IconWysiwygSharp diff --git a/src/IconWysiwygSharpFilled.tsx b/src/IconWysiwygSharpFilled.tsx index b3ef71b60..33b2d06ac 100644 --- a/src/IconWysiwygSharpFilled.tsx +++ b/src/IconWysiwygSharpFilled.tsx @@ -8,4 +8,4 @@ const IconWysiwygSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconWysiwygSharpFilled as default } +export default IconWysiwygSharpFilled diff --git a/src/IconYardOutlined.tsx b/src/IconYardOutlined.tsx index d97a3fe8f..ea3afa553 100644 --- a/src/IconYardOutlined.tsx +++ b/src/IconYardOutlined.tsx @@ -8,4 +8,4 @@ const IconYardOutlined: React.FC = ({ ...props }) => ( ) -export { IconYardOutlined as default } +export default IconYardOutlined diff --git a/src/IconYardOutlinedFilled.tsx b/src/IconYardOutlinedFilled.tsx index a7eced9e3..5c100cb99 100644 --- a/src/IconYardOutlinedFilled.tsx +++ b/src/IconYardOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconYardOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconYardOutlinedFilled as default } +export default IconYardOutlinedFilled diff --git a/src/IconYardRounded.tsx b/src/IconYardRounded.tsx index 3924b2158..5993b78d6 100644 --- a/src/IconYardRounded.tsx +++ b/src/IconYardRounded.tsx @@ -8,4 +8,4 @@ const IconYardRounded: React.FC = ({ ...props }) => ( ) -export { IconYardRounded as default } +export default IconYardRounded diff --git a/src/IconYardRoundedFilled.tsx b/src/IconYardRoundedFilled.tsx index ad1b76984..c72010b31 100644 --- a/src/IconYardRoundedFilled.tsx +++ b/src/IconYardRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconYardRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconYardRoundedFilled as default } +export default IconYardRoundedFilled diff --git a/src/IconYardSharp.tsx b/src/IconYardSharp.tsx index f6a91fc52..a4f0eb58a 100644 --- a/src/IconYardSharp.tsx +++ b/src/IconYardSharp.tsx @@ -8,4 +8,4 @@ const IconYardSharp: React.FC = ({ ...props }) => ( ) -export { IconYardSharp as default } +export default IconYardSharp diff --git a/src/IconYardSharpFilled.tsx b/src/IconYardSharpFilled.tsx index 3db9e5247..d8640b86f 100644 --- a/src/IconYardSharpFilled.tsx +++ b/src/IconYardSharpFilled.tsx @@ -8,4 +8,4 @@ const IconYardSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconYardSharpFilled as default } +export default IconYardSharpFilled diff --git a/src/IconYourTripsOutlined.tsx b/src/IconYourTripsOutlined.tsx index 137880fc3..6ec599f96 100644 --- a/src/IconYourTripsOutlined.tsx +++ b/src/IconYourTripsOutlined.tsx @@ -8,4 +8,4 @@ const IconYourTripsOutlined: React.FC = ({ ...props }) => ( ) -export { IconYourTripsOutlined as default } +export default IconYourTripsOutlined diff --git a/src/IconYourTripsOutlinedFilled.tsx b/src/IconYourTripsOutlinedFilled.tsx index 19045a3af..03a6a766d 100644 --- a/src/IconYourTripsOutlinedFilled.tsx +++ b/src/IconYourTripsOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconYourTripsOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconYourTripsOutlinedFilled as default } +export default IconYourTripsOutlinedFilled diff --git a/src/IconYourTripsRounded.tsx b/src/IconYourTripsRounded.tsx index 4c440e6e6..673de10c0 100644 --- a/src/IconYourTripsRounded.tsx +++ b/src/IconYourTripsRounded.tsx @@ -8,4 +8,4 @@ const IconYourTripsRounded: React.FC = ({ ...props }) => ( ) -export { IconYourTripsRounded as default } +export default IconYourTripsRounded diff --git a/src/IconYourTripsRoundedFilled.tsx b/src/IconYourTripsRoundedFilled.tsx index 931fcc715..4df105a55 100644 --- a/src/IconYourTripsRoundedFilled.tsx +++ b/src/IconYourTripsRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconYourTripsRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconYourTripsRoundedFilled as default } +export default IconYourTripsRoundedFilled diff --git a/src/IconYourTripsSharp.tsx b/src/IconYourTripsSharp.tsx index 8a8764ed7..2487f95b7 100644 --- a/src/IconYourTripsSharp.tsx +++ b/src/IconYourTripsSharp.tsx @@ -8,4 +8,4 @@ const IconYourTripsSharp: React.FC = ({ ...props }) => ( ) -export { IconYourTripsSharp as default } +export default IconYourTripsSharp diff --git a/src/IconYourTripsSharpFilled.tsx b/src/IconYourTripsSharpFilled.tsx index 35340840d..3000fadd5 100644 --- a/src/IconYourTripsSharpFilled.tsx +++ b/src/IconYourTripsSharpFilled.tsx @@ -8,4 +8,4 @@ const IconYourTripsSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconYourTripsSharpFilled as default } +export default IconYourTripsSharpFilled diff --git a/src/IconYoutubeActivityOutlined.tsx b/src/IconYoutubeActivityOutlined.tsx index a29e2345c..dee289ed6 100644 --- a/src/IconYoutubeActivityOutlined.tsx +++ b/src/IconYoutubeActivityOutlined.tsx @@ -8,4 +8,4 @@ const IconYoutubeActivityOutlined: React.FC = ({ ...props }) => ( ) -export { IconYoutubeActivityOutlined as default } +export default IconYoutubeActivityOutlined diff --git a/src/IconYoutubeActivityOutlinedFilled.tsx b/src/IconYoutubeActivityOutlinedFilled.tsx index 820e67995..0823b588e 100644 --- a/src/IconYoutubeActivityOutlinedFilled.tsx +++ b/src/IconYoutubeActivityOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconYoutubeActivityOutlinedFilled: React.FC = ({ ) -export { IconYoutubeActivityOutlinedFilled as default } +export default IconYoutubeActivityOutlinedFilled diff --git a/src/IconYoutubeActivityRounded.tsx b/src/IconYoutubeActivityRounded.tsx index 9e252f775..1c0126f8a 100644 --- a/src/IconYoutubeActivityRounded.tsx +++ b/src/IconYoutubeActivityRounded.tsx @@ -8,4 +8,4 @@ const IconYoutubeActivityRounded: React.FC = ({ ...props }) => ( ) -export { IconYoutubeActivityRounded as default } +export default IconYoutubeActivityRounded diff --git a/src/IconYoutubeActivityRoundedFilled.tsx b/src/IconYoutubeActivityRoundedFilled.tsx index a9d5d31f1..52af16190 100644 --- a/src/IconYoutubeActivityRoundedFilled.tsx +++ b/src/IconYoutubeActivityRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconYoutubeActivityRoundedFilled: React.FC = ({ ) -export { IconYoutubeActivityRoundedFilled as default } +export default IconYoutubeActivityRoundedFilled diff --git a/src/IconYoutubeActivitySharp.tsx b/src/IconYoutubeActivitySharp.tsx index 4adc0c178..74fe3440e 100644 --- a/src/IconYoutubeActivitySharp.tsx +++ b/src/IconYoutubeActivitySharp.tsx @@ -8,4 +8,4 @@ const IconYoutubeActivitySharp: React.FC = ({ ...props }) => ( ) -export { IconYoutubeActivitySharp as default } +export default IconYoutubeActivitySharp diff --git a/src/IconYoutubeActivitySharpFilled.tsx b/src/IconYoutubeActivitySharpFilled.tsx index 2ecb1adf1..513ee9617 100644 --- a/src/IconYoutubeActivitySharpFilled.tsx +++ b/src/IconYoutubeActivitySharpFilled.tsx @@ -8,4 +8,4 @@ const IconYoutubeActivitySharpFilled: React.FC = ({ ...props }) => ( ) -export { IconYoutubeActivitySharpFilled as default } +export default IconYoutubeActivitySharpFilled diff --git a/src/IconYoutubeSearchedForOutlined.tsx b/src/IconYoutubeSearchedForOutlined.tsx index f56374d5c..8abf6d934 100644 --- a/src/IconYoutubeSearchedForOutlined.tsx +++ b/src/IconYoutubeSearchedForOutlined.tsx @@ -8,4 +8,4 @@ const IconYoutubeSearchedForOutlined: React.FC = ({ ...props }) => ( ) -export { IconYoutubeSearchedForOutlined as default } +export default IconYoutubeSearchedForOutlined diff --git a/src/IconYoutubeSearchedForOutlinedFilled.tsx b/src/IconYoutubeSearchedForOutlinedFilled.tsx index 7fb1e0b60..67d0bb8ad 100644 --- a/src/IconYoutubeSearchedForOutlinedFilled.tsx +++ b/src/IconYoutubeSearchedForOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconYoutubeSearchedForOutlinedFilled: React.FC = ({ ) -export { IconYoutubeSearchedForOutlinedFilled as default } +export default IconYoutubeSearchedForOutlinedFilled diff --git a/src/IconYoutubeSearchedForRounded.tsx b/src/IconYoutubeSearchedForRounded.tsx index 4838c7167..de5db1d56 100644 --- a/src/IconYoutubeSearchedForRounded.tsx +++ b/src/IconYoutubeSearchedForRounded.tsx @@ -8,4 +8,4 @@ const IconYoutubeSearchedForRounded: React.FC = ({ ...props }) => ( ) -export { IconYoutubeSearchedForRounded as default } +export default IconYoutubeSearchedForRounded diff --git a/src/IconYoutubeSearchedForRoundedFilled.tsx b/src/IconYoutubeSearchedForRoundedFilled.tsx index b3d76b9ed..facedc194 100644 --- a/src/IconYoutubeSearchedForRoundedFilled.tsx +++ b/src/IconYoutubeSearchedForRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconYoutubeSearchedForRoundedFilled: React.FC = ({ ) -export { IconYoutubeSearchedForRoundedFilled as default } +export default IconYoutubeSearchedForRoundedFilled diff --git a/src/IconYoutubeSearchedForSharp.tsx b/src/IconYoutubeSearchedForSharp.tsx index 635e1142d..9e692a19a 100644 --- a/src/IconYoutubeSearchedForSharp.tsx +++ b/src/IconYoutubeSearchedForSharp.tsx @@ -8,4 +8,4 @@ const IconYoutubeSearchedForSharp: React.FC = ({ ...props }) => ( ) -export { IconYoutubeSearchedForSharp as default } +export default IconYoutubeSearchedForSharp diff --git a/src/IconYoutubeSearchedForSharpFilled.tsx b/src/IconYoutubeSearchedForSharpFilled.tsx index 6e2883749..8722d8620 100644 --- a/src/IconYoutubeSearchedForSharpFilled.tsx +++ b/src/IconYoutubeSearchedForSharpFilled.tsx @@ -10,4 +10,4 @@ const IconYoutubeSearchedForSharpFilled: React.FC = ({ ) -export { IconYoutubeSearchedForSharpFilled as default } +export default IconYoutubeSearchedForSharpFilled diff --git a/src/IconZonePersonAlertOutlined.tsx b/src/IconZonePersonAlertOutlined.tsx index cb42ee65f..fd0697613 100644 --- a/src/IconZonePersonAlertOutlined.tsx +++ b/src/IconZonePersonAlertOutlined.tsx @@ -8,4 +8,4 @@ const IconZonePersonAlertOutlined: React.FC = ({ ...props }) => ( ) -export { IconZonePersonAlertOutlined as default } +export default IconZonePersonAlertOutlined diff --git a/src/IconZonePersonAlertOutlinedFilled.tsx b/src/IconZonePersonAlertOutlinedFilled.tsx index 3660930c2..de9510f6d 100644 --- a/src/IconZonePersonAlertOutlinedFilled.tsx +++ b/src/IconZonePersonAlertOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconZonePersonAlertOutlinedFilled: React.FC = ({ ) -export { IconZonePersonAlertOutlinedFilled as default } +export default IconZonePersonAlertOutlinedFilled diff --git a/src/IconZonePersonAlertRounded.tsx b/src/IconZonePersonAlertRounded.tsx index ac35b4ff8..a29a71b95 100644 --- a/src/IconZonePersonAlertRounded.tsx +++ b/src/IconZonePersonAlertRounded.tsx @@ -8,4 +8,4 @@ const IconZonePersonAlertRounded: React.FC = ({ ...props }) => ( ) -export { IconZonePersonAlertRounded as default } +export default IconZonePersonAlertRounded diff --git a/src/IconZonePersonAlertRoundedFilled.tsx b/src/IconZonePersonAlertRoundedFilled.tsx index fabd5c777..a4cfcd728 100644 --- a/src/IconZonePersonAlertRoundedFilled.tsx +++ b/src/IconZonePersonAlertRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconZonePersonAlertRoundedFilled: React.FC = ({ ) -export { IconZonePersonAlertRoundedFilled as default } +export default IconZonePersonAlertRoundedFilled diff --git a/src/IconZonePersonAlertSharp.tsx b/src/IconZonePersonAlertSharp.tsx index a73230dd8..3b35de45b 100644 --- a/src/IconZonePersonAlertSharp.tsx +++ b/src/IconZonePersonAlertSharp.tsx @@ -8,4 +8,4 @@ const IconZonePersonAlertSharp: React.FC = ({ ...props }) => ( ) -export { IconZonePersonAlertSharp as default } +export default IconZonePersonAlertSharp diff --git a/src/IconZonePersonAlertSharpFilled.tsx b/src/IconZonePersonAlertSharpFilled.tsx index 561ae702a..3eead5841 100644 --- a/src/IconZonePersonAlertSharpFilled.tsx +++ b/src/IconZonePersonAlertSharpFilled.tsx @@ -8,4 +8,4 @@ const IconZonePersonAlertSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconZonePersonAlertSharpFilled as default } +export default IconZonePersonAlertSharpFilled diff --git a/src/IconZonePersonIdleOutlined.tsx b/src/IconZonePersonIdleOutlined.tsx index cc25dcc62..9ce011c33 100644 --- a/src/IconZonePersonIdleOutlined.tsx +++ b/src/IconZonePersonIdleOutlined.tsx @@ -8,4 +8,4 @@ const IconZonePersonIdleOutlined: React.FC = ({ ...props }) => ( ) -export { IconZonePersonIdleOutlined as default } +export default IconZonePersonIdleOutlined diff --git a/src/IconZonePersonIdleOutlinedFilled.tsx b/src/IconZonePersonIdleOutlinedFilled.tsx index 4241c9441..74e8dc81f 100644 --- a/src/IconZonePersonIdleOutlinedFilled.tsx +++ b/src/IconZonePersonIdleOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconZonePersonIdleOutlinedFilled: React.FC = ({ ) -export { IconZonePersonIdleOutlinedFilled as default } +export default IconZonePersonIdleOutlinedFilled diff --git a/src/IconZonePersonIdleRounded.tsx b/src/IconZonePersonIdleRounded.tsx index ad00d4708..d2f698538 100644 --- a/src/IconZonePersonIdleRounded.tsx +++ b/src/IconZonePersonIdleRounded.tsx @@ -8,4 +8,4 @@ const IconZonePersonIdleRounded: React.FC = ({ ...props }) => ( ) -export { IconZonePersonIdleRounded as default } +export default IconZonePersonIdleRounded diff --git a/src/IconZonePersonIdleRoundedFilled.tsx b/src/IconZonePersonIdleRoundedFilled.tsx index 1bb9c9943..a0c6c8419 100644 --- a/src/IconZonePersonIdleRoundedFilled.tsx +++ b/src/IconZonePersonIdleRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconZonePersonIdleRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconZonePersonIdleRoundedFilled as default } +export default IconZonePersonIdleRoundedFilled diff --git a/src/IconZonePersonIdleSharp.tsx b/src/IconZonePersonIdleSharp.tsx index 4eb9e3b6e..bb5280fd7 100644 --- a/src/IconZonePersonIdleSharp.tsx +++ b/src/IconZonePersonIdleSharp.tsx @@ -8,4 +8,4 @@ const IconZonePersonIdleSharp: React.FC = ({ ...props }) => ( ) -export { IconZonePersonIdleSharp as default } +export default IconZonePersonIdleSharp diff --git a/src/IconZonePersonIdleSharpFilled.tsx b/src/IconZonePersonIdleSharpFilled.tsx index dea2913a1..2264b25b3 100644 --- a/src/IconZonePersonIdleSharpFilled.tsx +++ b/src/IconZonePersonIdleSharpFilled.tsx @@ -8,4 +8,4 @@ const IconZonePersonIdleSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconZonePersonIdleSharpFilled as default } +export default IconZonePersonIdleSharpFilled diff --git a/src/IconZonePersonUrgentOutlined.tsx b/src/IconZonePersonUrgentOutlined.tsx index d1f6cf3b9..0877121d7 100644 --- a/src/IconZonePersonUrgentOutlined.tsx +++ b/src/IconZonePersonUrgentOutlined.tsx @@ -8,4 +8,4 @@ const IconZonePersonUrgentOutlined: React.FC = ({ ...props }) => ( ) -export { IconZonePersonUrgentOutlined as default } +export default IconZonePersonUrgentOutlined diff --git a/src/IconZonePersonUrgentOutlinedFilled.tsx b/src/IconZonePersonUrgentOutlinedFilled.tsx index 08fa28cd1..385e58435 100644 --- a/src/IconZonePersonUrgentOutlinedFilled.tsx +++ b/src/IconZonePersonUrgentOutlinedFilled.tsx @@ -10,4 +10,4 @@ const IconZonePersonUrgentOutlinedFilled: React.FC = ({ ) -export { IconZonePersonUrgentOutlinedFilled as default } +export default IconZonePersonUrgentOutlinedFilled diff --git a/src/IconZonePersonUrgentRounded.tsx b/src/IconZonePersonUrgentRounded.tsx index 699fc41eb..0a12d3985 100644 --- a/src/IconZonePersonUrgentRounded.tsx +++ b/src/IconZonePersonUrgentRounded.tsx @@ -8,4 +8,4 @@ const IconZonePersonUrgentRounded: React.FC = ({ ...props }) => ( ) -export { IconZonePersonUrgentRounded as default } +export default IconZonePersonUrgentRounded diff --git a/src/IconZonePersonUrgentRoundedFilled.tsx b/src/IconZonePersonUrgentRoundedFilled.tsx index 2396135de..b964f24fc 100644 --- a/src/IconZonePersonUrgentRoundedFilled.tsx +++ b/src/IconZonePersonUrgentRoundedFilled.tsx @@ -10,4 +10,4 @@ const IconZonePersonUrgentRoundedFilled: React.FC = ({ ) -export { IconZonePersonUrgentRoundedFilled as default } +export default IconZonePersonUrgentRoundedFilled diff --git a/src/IconZonePersonUrgentSharp.tsx b/src/IconZonePersonUrgentSharp.tsx index 5dfe1b298..7d42e7ecf 100644 --- a/src/IconZonePersonUrgentSharp.tsx +++ b/src/IconZonePersonUrgentSharp.tsx @@ -8,4 +8,4 @@ const IconZonePersonUrgentSharp: React.FC = ({ ...props }) => ( ) -export { IconZonePersonUrgentSharp as default } +export default IconZonePersonUrgentSharp diff --git a/src/IconZonePersonUrgentSharpFilled.tsx b/src/IconZonePersonUrgentSharpFilled.tsx index 89574dc31..12a85f832 100644 --- a/src/IconZonePersonUrgentSharpFilled.tsx +++ b/src/IconZonePersonUrgentSharpFilled.tsx @@ -8,4 +8,4 @@ const IconZonePersonUrgentSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconZonePersonUrgentSharpFilled as default } +export default IconZonePersonUrgentSharpFilled diff --git a/src/IconZoomInMapOutlined.tsx b/src/IconZoomInMapOutlined.tsx index 170267767..d7a92c731 100644 --- a/src/IconZoomInMapOutlined.tsx +++ b/src/IconZoomInMapOutlined.tsx @@ -8,4 +8,4 @@ const IconZoomInMapOutlined: React.FC = ({ ...props }) => ( ) -export { IconZoomInMapOutlined as default } +export default IconZoomInMapOutlined diff --git a/src/IconZoomInMapOutlinedFilled.tsx b/src/IconZoomInMapOutlinedFilled.tsx index 1d69ff96e..135eb0903 100644 --- a/src/IconZoomInMapOutlinedFilled.tsx +++ b/src/IconZoomInMapOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconZoomInMapOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconZoomInMapOutlinedFilled as default } +export default IconZoomInMapOutlinedFilled diff --git a/src/IconZoomInMapRounded.tsx b/src/IconZoomInMapRounded.tsx index eb3b0cd90..2fb506acc 100644 --- a/src/IconZoomInMapRounded.tsx +++ b/src/IconZoomInMapRounded.tsx @@ -8,4 +8,4 @@ const IconZoomInMapRounded: React.FC = ({ ...props }) => ( ) -export { IconZoomInMapRounded as default } +export default IconZoomInMapRounded diff --git a/src/IconZoomInMapRoundedFilled.tsx b/src/IconZoomInMapRoundedFilled.tsx index d90c3e281..16aa6e513 100644 --- a/src/IconZoomInMapRoundedFilled.tsx +++ b/src/IconZoomInMapRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconZoomInMapRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconZoomInMapRoundedFilled as default } +export default IconZoomInMapRoundedFilled diff --git a/src/IconZoomInMapSharp.tsx b/src/IconZoomInMapSharp.tsx index db19eef9d..773154c80 100644 --- a/src/IconZoomInMapSharp.tsx +++ b/src/IconZoomInMapSharp.tsx @@ -8,4 +8,4 @@ const IconZoomInMapSharp: React.FC = ({ ...props }) => ( ) -export { IconZoomInMapSharp as default } +export default IconZoomInMapSharp diff --git a/src/IconZoomInMapSharpFilled.tsx b/src/IconZoomInMapSharpFilled.tsx index ff0cc34f9..92650a000 100644 --- a/src/IconZoomInMapSharpFilled.tsx +++ b/src/IconZoomInMapSharpFilled.tsx @@ -8,4 +8,4 @@ const IconZoomInMapSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconZoomInMapSharpFilled as default } +export default IconZoomInMapSharpFilled diff --git a/src/IconZoomInOutlined.tsx b/src/IconZoomInOutlined.tsx index 02b6e6ba1..04bfacb02 100644 --- a/src/IconZoomInOutlined.tsx +++ b/src/IconZoomInOutlined.tsx @@ -8,4 +8,4 @@ const IconZoomInOutlined: React.FC = ({ ...props }) => ( ) -export { IconZoomInOutlined as default } +export default IconZoomInOutlined diff --git a/src/IconZoomInOutlinedFilled.tsx b/src/IconZoomInOutlinedFilled.tsx index 6aec42cf9..a4f14121f 100644 --- a/src/IconZoomInOutlinedFilled.tsx +++ b/src/IconZoomInOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconZoomInOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconZoomInOutlinedFilled as default } +export default IconZoomInOutlinedFilled diff --git a/src/IconZoomInRounded.tsx b/src/IconZoomInRounded.tsx index 1e78fb679..edf0d876e 100644 --- a/src/IconZoomInRounded.tsx +++ b/src/IconZoomInRounded.tsx @@ -8,4 +8,4 @@ const IconZoomInRounded: React.FC = ({ ...props }) => ( ) -export { IconZoomInRounded as default } +export default IconZoomInRounded diff --git a/src/IconZoomInRoundedFilled.tsx b/src/IconZoomInRoundedFilled.tsx index 989b5cb3d..1a5d47f5e 100644 --- a/src/IconZoomInRoundedFilled.tsx +++ b/src/IconZoomInRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconZoomInRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconZoomInRoundedFilled as default } +export default IconZoomInRoundedFilled diff --git a/src/IconZoomInSharp.tsx b/src/IconZoomInSharp.tsx index d4b330e22..4bf46fcde 100644 --- a/src/IconZoomInSharp.tsx +++ b/src/IconZoomInSharp.tsx @@ -8,4 +8,4 @@ const IconZoomInSharp: React.FC = ({ ...props }) => ( ) -export { IconZoomInSharp as default } +export default IconZoomInSharp diff --git a/src/IconZoomInSharpFilled.tsx b/src/IconZoomInSharpFilled.tsx index 2d5e2a723..ebd263f23 100644 --- a/src/IconZoomInSharpFilled.tsx +++ b/src/IconZoomInSharpFilled.tsx @@ -8,4 +8,4 @@ const IconZoomInSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconZoomInSharpFilled as default } +export default IconZoomInSharpFilled diff --git a/src/IconZoomOutMapOutlined.tsx b/src/IconZoomOutMapOutlined.tsx index 76c303e4b..58329408a 100644 --- a/src/IconZoomOutMapOutlined.tsx +++ b/src/IconZoomOutMapOutlined.tsx @@ -8,4 +8,4 @@ const IconZoomOutMapOutlined: React.FC = ({ ...props }) => ( ) -export { IconZoomOutMapOutlined as default } +export default IconZoomOutMapOutlined diff --git a/src/IconZoomOutMapOutlinedFilled.tsx b/src/IconZoomOutMapOutlinedFilled.tsx index 488bf37c4..96e553c61 100644 --- a/src/IconZoomOutMapOutlinedFilled.tsx +++ b/src/IconZoomOutMapOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconZoomOutMapOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconZoomOutMapOutlinedFilled as default } +export default IconZoomOutMapOutlinedFilled diff --git a/src/IconZoomOutMapRounded.tsx b/src/IconZoomOutMapRounded.tsx index 6a255bcf6..c8d3a97e6 100644 --- a/src/IconZoomOutMapRounded.tsx +++ b/src/IconZoomOutMapRounded.tsx @@ -8,4 +8,4 @@ const IconZoomOutMapRounded: React.FC = ({ ...props }) => ( ) -export { IconZoomOutMapRounded as default } +export default IconZoomOutMapRounded diff --git a/src/IconZoomOutMapRoundedFilled.tsx b/src/IconZoomOutMapRoundedFilled.tsx index 0033e72f1..044b13356 100644 --- a/src/IconZoomOutMapRoundedFilled.tsx +++ b/src/IconZoomOutMapRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconZoomOutMapRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconZoomOutMapRoundedFilled as default } +export default IconZoomOutMapRoundedFilled diff --git a/src/IconZoomOutMapSharp.tsx b/src/IconZoomOutMapSharp.tsx index fcc192fca..a46317079 100644 --- a/src/IconZoomOutMapSharp.tsx +++ b/src/IconZoomOutMapSharp.tsx @@ -8,4 +8,4 @@ const IconZoomOutMapSharp: React.FC = ({ ...props }) => ( ) -export { IconZoomOutMapSharp as default } +export default IconZoomOutMapSharp diff --git a/src/IconZoomOutMapSharpFilled.tsx b/src/IconZoomOutMapSharpFilled.tsx index 4522d036c..0ec7d58f1 100644 --- a/src/IconZoomOutMapSharpFilled.tsx +++ b/src/IconZoomOutMapSharpFilled.tsx @@ -8,4 +8,4 @@ const IconZoomOutMapSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconZoomOutMapSharpFilled as default } +export default IconZoomOutMapSharpFilled diff --git a/src/IconZoomOutOutlined.tsx b/src/IconZoomOutOutlined.tsx index 899535285..7e065fe06 100644 --- a/src/IconZoomOutOutlined.tsx +++ b/src/IconZoomOutOutlined.tsx @@ -8,4 +8,4 @@ const IconZoomOutOutlined: React.FC = ({ ...props }) => ( ) -export { IconZoomOutOutlined as default } +export default IconZoomOutOutlined diff --git a/src/IconZoomOutOutlinedFilled.tsx b/src/IconZoomOutOutlinedFilled.tsx index 3072b3306..e5044ff31 100644 --- a/src/IconZoomOutOutlinedFilled.tsx +++ b/src/IconZoomOutOutlinedFilled.tsx @@ -8,4 +8,4 @@ const IconZoomOutOutlinedFilled: React.FC = ({ ...props }) => ( ) -export { IconZoomOutOutlinedFilled as default } +export default IconZoomOutOutlinedFilled diff --git a/src/IconZoomOutRounded.tsx b/src/IconZoomOutRounded.tsx index f24f91e51..bf2249441 100644 --- a/src/IconZoomOutRounded.tsx +++ b/src/IconZoomOutRounded.tsx @@ -8,4 +8,4 @@ const IconZoomOutRounded: React.FC = ({ ...props }) => ( ) -export { IconZoomOutRounded as default } +export default IconZoomOutRounded diff --git a/src/IconZoomOutRoundedFilled.tsx b/src/IconZoomOutRoundedFilled.tsx index b691879f5..aefc57476 100644 --- a/src/IconZoomOutRoundedFilled.tsx +++ b/src/IconZoomOutRoundedFilled.tsx @@ -8,4 +8,4 @@ const IconZoomOutRoundedFilled: React.FC = ({ ...props }) => ( ) -export { IconZoomOutRoundedFilled as default } +export default IconZoomOutRoundedFilled diff --git a/src/IconZoomOutSharp.tsx b/src/IconZoomOutSharp.tsx index 707bf4522..c3fececba 100644 --- a/src/IconZoomOutSharp.tsx +++ b/src/IconZoomOutSharp.tsx @@ -8,4 +8,4 @@ const IconZoomOutSharp: React.FC = ({ ...props }) => ( ) -export { IconZoomOutSharp as default } +export default IconZoomOutSharp diff --git a/src/IconZoomOutSharpFilled.tsx b/src/IconZoomOutSharpFilled.tsx index 3d173931c..04c761e3c 100644 --- a/src/IconZoomOutSharpFilled.tsx +++ b/src/IconZoomOutSharpFilled.tsx @@ -8,4 +8,4 @@ const IconZoomOutSharpFilled: React.FC = ({ ...props }) => ( ) -export { IconZoomOutSharpFilled as default } +export default IconZoomOutSharpFilled